From 9be67e3dfc9ce005b2f7bc625ff5e515c88cb005 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 28 Feb 2020 14:07:29 +0000 Subject: [PATCH 001/190] Removed dependency on Cortex fork; Moved to official one. (#2199) Signed-off-by: Bartlomiej Plotka --- go.mod | 10 +++++----- go.sum | 33 ++++++++------------------------- 2 files changed, 13 insertions(+), 30 deletions(-) diff --git a/go.mod b/go.mod index 4351bc37d1c..1b69cd64d19 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/armon/go-metrics v0.3.0 github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b github.com/cespare/xxhash v1.1.0 - github.com/cortexproject/cortex v0.6.1-0.20200212080622-5292538418b1 + github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995 github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb github.com/fatih/structtag v1.1.0 github.com/fortytw2/leaktest v1.3.0 @@ -41,7 +41,7 @@ require ( github.com/prometheus/client_golang v1.4.2-0.20200214154132-b25ce2693a6d github.com/prometheus/client_model v0.2.0 github.com/prometheus/common v0.9.1 - github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 // master ~ v2.15.2 + github.com/prometheus/prometheus v1.8.2-0.20200213233353-b90be6f32a33 github.com/uber/jaeger-client-go v2.20.1+incompatible github.com/uber/jaeger-lib v2.2.0+incompatible go.elastic.co/apm v1.5.0 @@ -57,7 +57,7 @@ require ( google.golang.org/grpc v1.25.1 gopkg.in/alecthomas/kingpin.v2 v2.2.6 gopkg.in/fsnotify.v1 v1.4.7 - gopkg.in/yaml.v2 v2.2.5 + gopkg.in/yaml.v2 v2.2.7 ) // We want to replace the client-go version with a specific commit hash, @@ -66,8 +66,8 @@ require ( replace ( // Mitigation for: https://github.com/Azure/go-autorest/issues/414 github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible - // TODO(bwplotka): Update once https://github.com/cortexproject/cortex/pull/2146 is merged. - github.com/cortexproject/cortex => github.com/bwplotka/cortex v0.0.0-20200218165228-c04fa1c09090 + // Make sure Cortex is not forcing us to some other Prometheus version. + github.com/prometheus/prometheus => github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 // master ~ v2.15.2 k8s.io/api => k8s.io/api v0.0.0-20190620084959-7cf5895f2711 k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190620085554-14e95df34f1f k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719 diff --git a/go.sum b/go.sum index 787df65dae7..0d129cb34ec 100644 --- a/go.sum +++ b/go.sum @@ -56,7 +56,6 @@ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbt github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/Masterminds/squirrel v0.0.0-20161115235646-20f192218cf5/go.mod h1:xnKTFzjGUiZtiOagBsfnvomW+nJg2usB1ZpordQWqNM= github.com/Microsoft/go-winio v0.4.11/go.mod h1:VhR8bwka0BXejwEJY73c50VrPtXAaKcyvVC4A4RozmA= @@ -64,7 +63,6 @@ github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cq github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/OneOfOne/xxhash v1.2.6 h1:U68crOE3y3MPttCMQGywZOLrTeF5HHJ3/vDBCJn9/bA= github.com/OneOfOne/xxhash v1.2.6/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/PuerkitoBio/purell v1.1.0 h1:rmGxhojJlM0tuKtfdvliR84CFHljx9ag64t2xmVkjK4= @@ -88,7 +86,6 @@ github.com/antihax/optional v0.0.0-20180407024304-ca021399b1a6/go.mod h1:V8iCPQY github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e/go.mod h1:3U/XgcO3hCbHZ8TKRvWD2dDTCfh9M9ya+I9JpbB7O8o= github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= -github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/armon/go-metrics v0.3.0 h1:B7AQgHi8QSEi4uHu7Sbsga+IJDU+CENgjxoo81vDUqU= github.com/armon/go-metrics v0.3.0/go.mod h1:zXjbSimjXTd7vOpY8B0/2LpvNvDoXBuplAD+gJD3GYs= github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= @@ -100,7 +97,6 @@ github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a h1:idn718Q4 github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY= github.com/aws/aws-sdk-go v1.15.78/go.mod h1:E3/ieXAlvM0XWO57iftYVDLLvQ824smPP3ATZkfNZeM= github.com/aws/aws-sdk-go v1.17.7/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.22.4/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go v1.25.48 h1:J82DYDGZHOKHdhx6hD24Tm30c2C3GchYGfN0mf9iKUk= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f h1:ZNv7On9kyUzm7fvRZumSyy/IUiSC7AzL0I1jKKtwooA= @@ -116,8 +112,6 @@ github.com/blang/semver v3.5.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnweb github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b h1:L/QXpzIa3pOvUGt1D1lA5KjYhPBAN/3iWdP7xeFS9F0= github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b/go.mod h1:H0wQNHz2YrLsuXOZozoeDmnHXkNCRmMW0gwFWDfEZDA= -github.com/bwplotka/cortex v0.0.0-20200218165228-c04fa1c09090 h1:7epH/EyWMG+W4Om7OwnIsOCUgxfQU1+LVYcfL0pJHKQ= -github.com/bwplotka/cortex v0.0.0-20200218165228-c04fa1c09090/go.mod h1:xArTQk2WBKDQ8YrIUMLfIuecuV0dKWyVVyTgRF/+a1E= github.com/cenkalti/backoff v0.0.0-20181003080854-62661b46c409/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/cenkalti/backoff v1.0.0/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -142,6 +136,8 @@ github.com/coreos/go-systemd v0.0.0-20180511133405-39ca1b05acc7/go.mod h1:F5haX7 github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995 h1:yt8dEfoUiSDnucukhKQiv6lnHWljj7rcIMT/qbpP2e8= +github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995/go.mod h1:3Xa3DjJxtpXqxcMGdk850lcIRb81M0fyY1MQ6udY134= github.com/cznic/b v0.0.0-20180115125044-35e9bbe41f07/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= github.com/cznic/fileutil v0.0.0-20180108211300-6a051e75936f/go.mod h1:8S58EK26zhXSxzv7NQFpnliaOQsmDUxvoQO3rt154Vg= github.com/cznic/golex v0.0.0-20170803123110-4ab7c5e190e4/go.mod h1:+bmmJDNmKlhWNG+gwWCkaBoTy39Fs+bzRxVBzoTQbIc= @@ -194,7 +190,6 @@ github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb/go.mod h1:bH6Xx7IW github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/structtag v1.1.0 h1:6j4mUV/ES2duvnAzKMFkN6/A5mCaNYPD3xfbAkLLOF8= github.com/fatih/structtag v1.1.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94= -github.com/fluent/fluent-logger-golang v1.2.1/go.mod h1:2/HCT/jTy78yGyeNGQLGQsjF3zzzAuy6Xlk6FCMV5eU= github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8vw= github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= @@ -217,8 +212,6 @@ github.com/go-openapi/analysis v0.17.2/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpR github.com/go-openapi/analysis v0.18.0/go.mod h1:IowGgpVeD0vNm45So8nr+IcQ3pxVtpRoBWb8PVZO0ik= github.com/go-openapi/analysis v0.19.2 h1:ophLETFestFZHk3ji7niPEL4d466QjW+0Tdg5VyDq7E= github.com/go-openapi/analysis v0.19.2/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= -github.com/go-openapi/analysis v0.19.4 h1:1TjOzrWkj+9BrjnM1yPAICbaoC0FyfD49oVkTBrSSa0= -github.com/go-openapi/analysis v0.19.4/go.mod h1:3P1osvZa9jKjb8ed2TPng3f0i/UY9snX6gxi44djMjk= github.com/go-openapi/errors v0.17.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= github.com/go-openapi/errors v0.17.2/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= github.com/go-openapi/errors v0.18.0/go.mod h1:LcZQpmvG4wyF5j4IhA73wkLFQg+QJXOQHVjmcZxhka0= @@ -288,6 +281,7 @@ github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.0/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/protobuf v1.3.1 h1:DqDEcV5aeaTmdFBePNpYsp3FlcVH/2ISVVM9Qf8PSls= github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= github.com/gogo/status v1.0.3 h1:WkVBY59mw7qUNTr/bLwO7J2vesJ0rQ2C3tMXrTd3w5M= @@ -345,7 +339,6 @@ github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+ github.com/googleapis/gax-go/v2 v2.0.5 h1:sjZBwGj9Jlw33ImPtvFviGYvseOtDM7hkSKB7+Tv3SM= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gnostic v0.0.0-20170729233727-0c5108395e2d/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= -github.com/googleapis/gnostic v0.3.0/go.mod h1:sJBsCZ4ayReDTBIg8b9dl28c5xFWyhBTVRp3pOg5EKY= github.com/googleapis/gnostic v0.3.1 h1:WeAefnSUHlBb0iJKwxFDZdbfGwkd7xRNuV+IpXMJhYk= github.com/googleapis/gnostic v0.3.1/go.mod h1:on+2t9HRStVgn95RSsFWFz+6Q0Snyqv1awfrALZdbtU= github.com/gophercloud/gophercloud v0.0.0-20190126172459-c818fa66e4c8/go.mod h1:3WdhXV3rUYy9p6AUW8d94kr+HS62Y4VL9mBnFxsD8q4= @@ -415,7 +408,6 @@ github.com/hashicorp/memberlist v0.1.4/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2p github.com/hashicorp/memberlist v0.1.5 h1:AYBsgJOW9gab/toO5tEB8lWetVgDKZycqkebJ8xxpqM= github.com/hashicorp/memberlist v0.1.5/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hashicorp/serf v0.8.3/go.mod h1:UpNcs7fFbpKIyZaUuSW6EPiH+eZC7OuyFD+wc1oal+k= github.com/hashicorp/serf v0.8.5 h1:ZynDUIQiA8usmRgPdGPHFdPnb1wgGI9tK3mO9hcAJjc= github.com/hashicorp/serf v0.8.5/go.mod h1:UpNcs7fFbpKIyZaUuSW6EPiH+eZC7OuyFD+wc1oal+k= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= @@ -433,7 +425,6 @@ github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901 h1:rp+c0RAYOWj8l6qbCUTSiRLG/iKnW3K3/QfPPuSsBt4= github.com/joeshaw/multierror v0.0.0-20140124173710-69b34d4ec901/go.mod h1:Z86h9688Y0wesXCyonoVr47MasHilkuLMqGhRZ4Hpak= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jpillora/backoff v0.0.0-20180909062703-3050d21c67d7/go.mod h1:2iMrUgbbvHEiQClaW2NsSzMyGHqN+rDFqY705q49KG0= github.com/jpillora/backoff v1.0.0 h1:uvFg412JmmHBHw7iwprIxkPMI+sGQ4kzOWsMeHnm2EA= github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= github.com/json-iterator/go v0.0.0-20180701071628-ab8a2e0c74be/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= @@ -488,8 +479,6 @@ github.com/mailru/easyjson v0.0.0-20180823135443-60711f1a8329/go.mod h1:C1wdFJiN github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63 h1:nTT4s92Dgz2HlrB2NaMgvlfqHH39OgMhA7z3PK7PGD4= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e h1:hB2xlXdHp/pmPZq0y3QnmWAArdw9PqbmotexnWx/FU8= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= @@ -580,7 +569,6 @@ github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0Mw github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU= -github.com/philhofer/fwd v0.0.0-20160129035939-98c11a7a6ec8/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= @@ -621,6 +609,7 @@ github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y8 github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= github.com/prometheus/common v0.7.0 h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY= github.com/prometheus/common v0.7.0/go.mod h1:DjGbpBbp5NYNiECxcL/VnbXCCaQpKd3tt26CguLLsqA= +github.com/prometheus/common v0.8.0/go.mod h1:PC/OgXc+UN7B4ALwvn1yzVZmVwvhXp5JsbBv6wSv6i0= github.com/prometheus/common v0.9.1 h1:KOMtN28tlbam3/7ZKEYKHhKoJZYYj3gMH4uc62x7X7U= github.com/prometheus/common v0.9.1/go.mod h1:yhUN8i9wzaXS3w1O07YhxHEBxD+W35wd8bs7vj7HSQ4= github.com/prometheus/procfs v0.0.0-20180612222113-7d6f385de8be/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -635,9 +624,6 @@ github.com/prometheus/procfs v0.0.6 h1:0qbH+Yqu/cj1ViVLvEWCP6qMQ4efWUj6bQqOEA0V0 github.com/prometheus/procfs v0.0.6/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/prometheus/procfs v0.0.8 h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8= github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= -github.com/prometheus/prometheus v0.0.0-20180315085919-58e2a31db8de/go.mod h1:oAIUtOny2rjMX0OWN5vPR5/q/twIROJvdqnQKDdil/s= -github.com/prometheus/prometheus v0.0.0-20190818123050-43acd0e2e93f/go.mod h1:rMTlmxGCvukf2KMu3fClMDKLLoJ5hl61MhcJ7xKakf0= -github.com/prometheus/prometheus v1.8.2-0.20200107122003-4708915ac6ef/go.mod h1:7U90zPoLkWjEIQcy/rweQla82OCTUzxVHE51G3OhJbI= github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711 h1:uEq+8hKI4kfycPLSKNw844YYkdMNpC2eZpov73AvlFk= github.com/prometheus/prometheus v1.8.2-0.20200110114423-1e64d757f711/go.mod h1:7U90zPoLkWjEIQcy/rweQla82OCTUzxVHE51G3OhJbI= github.com/rafaeljusto/redigomock v0.0.0-20190202135759-257e089e14a1/go.mod h1:JaY6n2sDr+z2WTsXkOmNRUfDy6FN0L6Nk7x06ndm4tY= @@ -697,7 +683,6 @@ github.com/thanos-io/thanos v0.8.1-0.20200109203923-552ffa4c1a0d/go.mod h1:usT/T github.com/tidwall/pretty v0.0.0-20180105212114-65a9db5fad51/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4= github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk= -github.com/tinylib/msgp v0.0.0-20161221055906-38a6f61a768d/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= @@ -708,9 +693,8 @@ github.com/uber/jaeger-lib v1.5.1-0.20181102163054-1fc5c315e03c/go.mod h1:ComeND github.com/uber/jaeger-lib v2.2.0+incompatible h1:MxZXOiR2JuoANZ3J6DE/U0kSFv/eJ/GfSYVCjK7dyaw= github.com/uber/jaeger-lib v2.2.0+incompatible/go.mod h1:ComeNDZlWwrWnDv8aPp0Ba6+uUTzImX/AauajbLI56U= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= -github.com/weaveworks/billing-client v0.0.0-20171006123215-be0d55e547b1/go.mod h1:7gGdEUJaCrSlWi/mjd68CZv0sfqektYPDcro9cE+M9k= -github.com/weaveworks/common v0.0.0-20200201141823-27e183090ab1 h1:nhoCrldzSm1le34sZfSNyTELYxIDaAmDw6PPVoEj5Mw= -github.com/weaveworks/common v0.0.0-20200201141823-27e183090ab1/go.mod h1:KLGX4H1D0lPVfHS/hqO9yrKvDzaT0bqYftIW43iLaOc= +github.com/weaveworks/common v0.0.0-20200206153930-760e36ae819a h1:4Sm4LnEnP1yQ2NeNgGqLTuN2xrTvcBOU+EsljpB8Ed0= +github.com/weaveworks/common v0.0.0-20200206153930-760e36ae819a/go.mod h1:6enWAqfQBFrE8X/XdJwZr8IKgh1chStuFR0mjU/UOUw= github.com/weaveworks/promrus v1.2.0 h1:jOLf6pe6/vss4qGHjXmGz4oDJQA+AOCqEL3FvvZGz7M= github.com/weaveworks/promrus v1.2.0/go.mod h1:SaE82+OJ91yqjrE1rsvBWVzNZKcHYFtMUyS1+Ogs/KA= github.com/xanzy/go-gitlab v0.15.0/go.mod h1:8zdQa/ri1dfn8eS3Ir1SyfvOKlw7WBJ8DVThkpGiXrs= @@ -731,7 +715,6 @@ go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.etcd.io/etcd v0.0.0-20190709142735-eb7dd97135a5/go.mod h1:N0RPWo9FXJYZQI4BTkDtQylrstIigYHeR18ONnyTufk= go.mongodb.org/mongo-driver v1.0.3 h1:GKoji1ld3tw2aC+GX1wbr/J2fX13yNacEYoJ8Nhr0yU= go.mongodb.org/mongo-driver v1.0.3/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= -go.mongodb.org/mongo-driver v1.0.4/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= go.mongodb.org/mongo-driver v1.1.0 h1:aeOqSrhl9eDRAap/3T5pCfMBEBxZ0vuXBP+RMtp2KX8= go.mongodb.org/mongo-driver v1.1.0/go.mod h1:u7ryQJ+DOzQmeO7zB6MHyr8jkEQvC8vH7qLUO4lqsUM= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -763,7 +746,6 @@ golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190617133340-57b3e21c3d56/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3H3cr1v9wB50oz8l4C4h62xy7jSTY= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191112222119-e1110fd1c708 h1:pXVtWnwHkrWD9ru3sDxY/qFK/bfc0egRovX91EjWjf4= @@ -997,6 +979,8 @@ gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5 h1:ymVxjfMaHvXD8RqPRmzHHsB3VvucivSkIAvJFDI5O3c= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.7 h1:VUgggvou5XRW9mHwD/yXxIYSMtY0zoKQf/v226p2nyo= +gopkg.in/yaml.v2 v2.2.7/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -1018,7 +1002,6 @@ k8s.io/klog v0.3.1/go.mod h1:Gq+BEi5rUBO/HRz0bTSXDUcqjScdoY3a9IHpCEIOOfk= k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30 h1:TRb4wNWoBVrH9plmkp2q86FIDppkbrEXdXlxU3a3BMI= k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30/go.mod h1:BXM9ceUBTj2QnfH2MK1odQs778ajze1RxcmP6S8RVVc= k8s.io/utils v0.0.0-20190221042446-c2654d5206da/go.mod h1:8k8uAuAQ0rXslZKaEWd0c3oVhZz7sSzSiPnVZayjIX0= -k8s.io/utils v0.0.0-20190809000727-6c36bc71fc4a/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= k8s.io/utils v0.0.0-20191114200735-6ca3b61696b6 h1:p0Ai3qVtkbCG/Af26dBmU0E1W58NID3hSSh7cMyylpM= k8s.io/utils v0.0.0-20191114200735-6ca3b61696b6/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= From 624771af39b2f96007dccb978629013b0486058e Mon Sep 17 00:00:00 2001 From: Peter Date: Fri, 28 Feb 2020 14:40:50 +0000 Subject: [PATCH 002/190] Typo corrections quick-tutorial.md (#2196) * Corrected all Prometheus possessives to read `Prometheus's`, this matches Prometheus's own documentation. * Corrected `simple` to `simply` when describing compactor scanning behaviour Signed-off-by: Peter Avdjian --- docs/quick-tutorial.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/quick-tutorial.md b/docs/quick-tutorial.md index 78a12d786f6..bc039e4593d 100644 --- a/docs/quick-tutorial.md +++ b/docs/quick-tutorial.md @@ -39,9 +39,9 @@ Following the [KISS](https://en.wikipedia.org/wiki/KISS_principle) and Unix phil * Sidecar: connects to Prometheus, reads its data for query and/or uploads it to cloud storage. * Store Gateway: serves metrics inside of a cloud storage bucket. * Compactor: compacts, downsamples and applies retention on the data stored in cloud storage bucket. -* Receiver: receives data from Prometheus' remote-write WAL, exposes it and/or upload it to cloud storage. +* Receiver: receives data from Prometheus's remote-write WAL, exposes it and/or upload it to cloud storage. * Ruler/Rule: evaluates recording and alerting rules against data in Thanos for exposition and/or upload. -* Querier/Query: implements Prometheus' v1 API to aggregate data from the underlying components. +* Querier/Query: implements Prometheus's v1 API to aggregate data from the underlying components. See those components on this diagram: @@ -57,7 +57,7 @@ The Sidecar makes use of the `reload` Prometheus endpoint. Make sure it's enable #### External storage -The following configures the sidecar to write Prometheus' data into a configured object storage: +The following configures the sidecar to write Prometheus's data into a configured object storage: ```bash thanos sidecar \ @@ -208,7 +208,7 @@ The store gateway occupies small amounts of disk space for caching basic informa A local Prometheus installation periodically compacts older data to improve query efficiency. Since the sidecar backs up data as soon as possible, we need a way to apply the same process to data in the object storage. -The compactor component simple scans the object storage and processes compaction where required. At the same time it is responsible for creating downsampled copies of data to speed up queries. +The compactor component simply scans the object storage and processes compaction where required. At the same time it is responsible for creating downsampled copies of data to speed up queries. ```bash thanos compact \ From c4e2541c8a415312e3dfdb23801df7b226a166e6 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 28 Feb 2020 20:43:47 +0000 Subject: [PATCH 003/190] tracing: Simplified creation of spans. (#2202) Signed-off-by: Bartlomiej Plotka --- cmd/thanos/rule.go | 18 ++++++----- pkg/alert/alert.go | 35 ++++++++++----------- pkg/cacheutil/memcached_client.go | 30 +++++++++--------- pkg/receive/handler.go | 30 +++++++++--------- pkg/store/bucket.go | 52 +++++++++++++++---------------- pkg/store/prometheus.go | 27 +++++++++------- pkg/store/proxy.go | 8 +++-- pkg/tracing/tracing.go | 12 +++++-- 8 files changed, 112 insertions(+), 100 deletions(-) diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index b275ba8b368..9db7ba17e76 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -458,7 +458,9 @@ func runRule( g.Add(func() error { for { - sdr.Send(ctx, alertQ.Pop(ctx.Done())) + tracing.DoInSpan(ctx, "/send_alerts", func(ctx context.Context) { + sdr.Send(ctx, alertQ.Pop(ctx.Done())) + }) select { case <-ctx.Done(): @@ -712,18 +714,18 @@ func queryFunc( promClients = append(promClients, promclient.NewClient(logger, q)) } - return func(ctx context.Context, q string, t time.Time) (promql.Vector, error) { + return func(ctx context.Context, q string, t time.Time) (v promql.Vector, err error) { for _, i := range rand.Perm(len(queriers)) { promClient := promClients[i] endpoints := removeDuplicateQueryEndpoints(logger, duplicatedQuery, queriers[i].Endpoints()) for _, i := range rand.Perm(len(endpoints)) { - span, ctx := tracing.StartSpan(ctx, spanID) - v, warns, err := promClient.PromqlQueryInstant(ctx, endpoints[i], q, t, promclient.QueryOptions{ - Deduplicate: true, - PartialResponseStrategy: partialResponseStrategy, + var warns []string + tracing.DoInSpan(ctx, spanID, func(ctx context.Context) { + v, warns, err = promClient.PromqlQueryInstant(ctx, endpoints[i], q, t, promclient.QueryOptions{ + Deduplicate: true, + PartialResponseStrategy: partialResponseStrategy, + }) }) - span.Finish() - if err != nil { level.Error(logger).Log("err", err, "query", q) continue diff --git a/pkg/alert/alert.go b/pkg/alert/alert.go index 418cb5c8314..4ad30b7c03b 100644 --- a/pkg/alert/alert.go +++ b/pkg/alert/alert.go @@ -330,8 +330,6 @@ func toAPILabels(labels labels.Labels) models.LabelSet { // Send an alert batch to all given Alertmanager clients. // TODO(bwplotka): https://github.com/thanos-io/thanos/issues/660. func (s *Sender) Send(ctx context.Context, alerts []*Alert) { - span, ctx := tracing.StartSpan(ctx, "/send_alerts") - defer span.Finish() if len(alerts) == 0 { return } @@ -382,22 +380,23 @@ func (s *Sender) Send(ctx context.Context, alerts []*Alert) { level.Debug(s.logger).Log("msg", "sending alerts", "alertmanager", u.Host, "numAlerts", len(alerts)) start := time.Now() u.Path = path.Join(u.Path, fmt.Sprintf("/api/%s/alerts", string(am.version))) - span, ctx := tracing.StartSpan(ctx, "post_alerts HTTP[client]") - defer span.Finish() - if err := am.postAlerts(ctx, u, bytes.NewReader(payload[am.version])); err != nil { - level.Warn(s.logger).Log( - "msg", "sending alerts failed", - "alertmanager", u.Host, - "alerts", string(payload[am.version]), - "err", err, - ) - s.errs.WithLabelValues(u.Host).Inc() - return - } - s.latency.WithLabelValues(u.Host).Observe(time.Since(start).Seconds()) - s.sent.WithLabelValues(u.Host).Add(float64(len(alerts))) - - atomic.AddUint64(&numSuccess, 1) + + tracing.DoInSpan(ctx, "post_alerts HTTP[client]", func(ctx context.Context) { + if err := am.postAlerts(ctx, u, bytes.NewReader(payload[am.version])); err != nil { + level.Warn(s.logger).Log( + "msg", "sending alerts failed", + "alertmanager", u.Host, + "alerts", string(payload[am.version]), + "err", err, + ) + s.errs.WithLabelValues(u.Host).Inc() + return + } + s.latency.WithLabelValues(u.Host).Observe(time.Since(start).Seconds()) + s.sent.WithLabelValues(u.Host).Add(float64(len(alerts))) + + atomic.AddUint64(&numSuccess, 1) + }) }(am, *u) } } diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 2785f59d004..80c2d1f9fdb 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -252,18 +252,18 @@ func (c *memcachedClient) Stop() { c.workers.Wait() } -func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte, ttl time.Duration) error { +func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte, ttl time.Duration) (err error) { return c.enqueueAsync(func() { start := time.Now() c.operations.WithLabelValues(opSet).Inc() - span, _ := tracing.StartSpan(ctx, "memcached_set") - err := c.client.Set(&memcache.Item{ - Key: key, - Value: value, - Expiration: int32(time.Now().Add(ttl).Unix()), + tracing.DoInSpan(ctx, "memcached_set", func(ctx context.Context) { + err = c.client.Set(&memcache.Item{ + Key: key, + Value: value, + Expiration: int32(time.Now().Add(ttl).Unix()), + }) }) - span.Finish() if err != nil { c.failures.WithLabelValues(opSet).Inc() level.Warn(c.logger).Log("msg", "failed to store item to memcached", "key", key, "err", err) @@ -358,13 +358,14 @@ func (c *memcachedClient) getMultiBatched(ctx context.Context, keys []string) ([ return items, lastErr } -func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (map[string]*memcache.Item, error) { +func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (items map[string]*memcache.Item, err error) { // Wait until we get a free slot from the gate, if the max // concurrency should be enforced. if c.config.MaxGetMultiConcurrency > 0 { - span, _ := tracing.StartSpan(ctx, "memcached_getmulti_gate_ismyturn") - err := c.getMultiGate.IsMyTurn(ctx) - span.Finish() + tracing.DoInSpan(ctx, "memcached_getmulti_gate_ismyturn", func(ctx context.Context) { + // TODO(bwplotka): Consider putting span directly in gate. + err = c.getMultiGate.IsMyTurn(ctx) + }) if err != nil { return nil, errors.Wrapf(err, "failed to wait for turn") } @@ -373,10 +374,9 @@ func (c *memcachedClient) getMultiSingle(ctx context.Context, keys []string) (ma start := time.Now() c.operations.WithLabelValues(opGetMulti).Inc() - - span, _ := tracing.StartSpan(ctx, "memcached_getmulti") - items, err := c.client.GetMulti(keys) - span.Finish() + tracing.DoInSpan(ctx, "memcached_getmulti", func(ctx context.Context) { + items, err = c.client.GetMulti(keys) + }) if err != nil { c.failures.WithLabelValues(opGetMulti).Inc() } else { diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 4be160972af..5b5f7897d72 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -395,24 +395,22 @@ func (h *Handler) parallelizeRequests(ctx context.Context, tenant string, replic ec <- err return } - // Create a span to track the request made to another receive node. - span, ctx := tracing.StartSpan(ctx, "thanos_receive_forward") - defer span.Finish() - - // Actually make the request against the endpoint - // we determined should handle these time series. - _, err = cl.RemoteWrite(ctx, &storepb.WriteRequest{ - Timeseries: wreqs[endpoint].Timeseries, - Tenant: tenant, - Replica: int64(replicas[endpoint].n + 1), // increment replica since on-the-wire format is 1-indexed and 0 indicates unreplicated. + tracing.DoInSpan(ctx, "thanos_receive_forward", func(ctx context.Context) { + // Actually make the request against the endpoint + // we determined should handle these time series. + _, err = cl.RemoteWrite(ctx, &storepb.WriteRequest{ + Timeseries: wreqs[endpoint].Timeseries, + Tenant: tenant, + Replica: int64(replicas[endpoint].n + 1), // increment replica since on-the-wire format is 1-indexed and 0 indicates unreplicated. + }) + if err != nil { + level.Error(h.logger).Log("msg", "forwarding request", "err", err, "endpoint", endpoint) + ec <- err + return + } + ec <- nil }) - if err != nil { - level.Error(h.logger).Log("msg", "forwarding request", "err", err, "endpoint", endpoint) - ec <- err - return - } - ec <- nil }(endpoint) } diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index a3722786a6c..0a91f0032da 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -825,14 +825,13 @@ func debugFoundBlockSetOverview(logger log.Logger, mint, maxt, maxResolutionMill // Series implements the storepb.StoreServer interface. func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_SeriesServer) (err error) { - { - span, _ := tracing.StartSpan(srv.Context(), "store_query_gate_ismyturn") - err := s.queryGate.IsMyTurn(srv.Context()) - span.Finish() - if err != nil { - return errors.Wrapf(err, "failed to wait for turn") - } + tracing.DoInSpan(srv.Context(), "store_query_gate_ismyturn", func(ctx context.Context) { + err = s.queryGate.IsMyTurn(srv.Context()) + }) + if err != nil { + return errors.Wrapf(err, "failed to wait for turn") } + defer s.queryGate.Done() matchers, err := translateMatchers(req.Matchers) @@ -843,10 +842,11 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie req.MaxTime = s.limitMaxTime(req.MaxTime) var ( - stats = &queryStats{} - res []storepb.SeriesSet - mtx sync.Mutex - g, ctx = errgroup.WithContext(srv.Context()) + ctx = srv.Context() + stats = &queryStats{} + res []storepb.SeriesSet + mtx sync.Mutex + g, gctx = errgroup.WithContext(ctx) ) s.mtx.RLock() @@ -871,8 +871,8 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie b := b // We must keep the readers open until all their data has been sent. - indexr := b.indexReader(ctx) - chunkr := b.chunkReader(ctx) + indexr := b.indexReader(gctx) + chunkr := b.chunkReader(gctx) // Defer all closes to the end of Series method. defer runutil.CloseWithLogOnErr(s.logger, indexr, "series block") @@ -924,11 +924,10 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie // Concurrently get data from all blocks. { - span, _ := tracing.StartSpan(srv.Context(), "bucket_store_preload_all") begin := time.Now() - err := g.Wait() - span.Finish() - + tracing.DoInSpan(ctx, "bucket_store_preload_all", func(_ context.Context) { + err = g.Wait() + }) if err != nil { return status.Error(codes.Aborted, err.Error()) } @@ -937,10 +936,7 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.seriesBlocksQueried.Observe(float64(stats.blocksQueried)) } // Merge the sub-results from each selected block. - { - span, _ := tracing.StartSpan(srv.Context(), "bucket_store_merge_all") - defer span.Finish() - + tracing.DoInSpan(ctx, "bucket_store_merge_all", func(ctx context.Context) { begin := time.Now() // Merge series set into an union of all block sets. This exposes all blocks are single seriesSet. @@ -961,17 +957,21 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.chunkSizeBytes.Observe(float64(chunksSize(series.Chunks))) } - if err := srv.Send(storepb.NewSeriesResponse(&series)); err != nil { - return status.Error(codes.Unknown, errors.Wrap(err, "send series response").Error()) + if err = srv.Send(storepb.NewSeriesResponse(&series)); err != nil { + err = status.Error(codes.Unknown, errors.Wrap(err, "send series response").Error()) + return } } if set.Err() != nil { - return status.Error(codes.Unknown, errors.Wrap(set.Err(), "expand series set").Error()) + err = status.Error(codes.Unknown, errors.Wrap(set.Err(), "expand series set").Error()) + return } stats.mergeDuration = time.Since(begin) s.metrics.seriesMergeDuration.Observe(stats.mergeDuration.Seconds()) - } - return nil + + err = nil + }) + return err } func chunksSize(chks []storepb.AggrChunk) (size int) { diff --git a/pkg/store/prometheus.go b/pkg/store/prometheus.go index ed32b389b59..5c3d7979c6a 100644 --- a/pkg/store/prometheus.go +++ b/pkg/store/prometheus.go @@ -366,7 +366,7 @@ func (p *PrometheusStore) handleStreamedPrometheusResponse(s storepb.Store_Serie return nil } -func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.Response) (*prompb.ReadResponse, error) { +func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.Response) (_ *prompb.ReadResponse, err error) { defer runutil.ExhaustCloseWithLogOnErr(p.logger, resp.Body, "prom series request body") b := p.getBuffer() @@ -375,21 +375,24 @@ func (p *PrometheusStore) fetchSampledResponse(ctx context.Context, resp *http.R if _, err := io.Copy(buf, resp.Body); err != nil { return nil, errors.Wrap(err, "copy response") } - spanSnappyDecode, ctx := tracing.StartSpan(ctx, "decompress_response") + sb := p.getBuffer() - decomp, err := snappy.Decode(*sb, buf.Bytes()) - spanSnappyDecode.Finish() + var decomp []byte + tracing.DoInSpan(ctx, "decompress_response", func(ctx context.Context) { + decomp, err = snappy.Decode(*sb, buf.Bytes()) + }) defer p.putBuffer(sb) if err != nil { return nil, errors.Wrap(err, "decompress response") } var data prompb.ReadResponse - spanUnmarshal, _ := tracing.StartSpan(ctx, "unmarshal_response") - if err := proto.Unmarshal(decomp, &data); err != nil { + tracing.DoInSpan(ctx, "unmarshal_response", func(ctx context.Context) { + err = proto.Unmarshal(decomp, &data) + }) + if err != nil { return nil, errors.Wrap(err, "unmarshal response") } - spanUnmarshal.Finish() if len(data.Results) != 1 { return nil, errors.Errorf("unexpected result size %d", len(data.Results)) } @@ -423,7 +426,7 @@ func (p *PrometheusStore) chunkSamples(series *prompb.TimeSeries, maxSamplesPerC return chks, nil } -func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) (*http.Response, error) { +func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) (presp *http.Response, err error) { reqb, err := proto.Marshal(&prompb.ReadRequest{ Queries: []*prompb.Query{q}, AcceptedResponseTypes: p.remoteReadAcceptableResponses, @@ -447,10 +450,10 @@ func (p *PrometheusStore) startPromSeries(ctx context.Context, q *prompb.Query) preq.Header.Add("Content-Encoding", "snappy") preq.Header.Set("Content-Type", "application/x-stream-protobuf") preq.Header.Set("User-Agent", userAgent) - spanReqDo, ctx := tracing.StartSpan(ctx, "query_prometheus_request", opentracing.Tag{Key: "prometheus.query", Value: string(qjson)}) - preq = preq.WithContext(ctx) - presp, err := p.client.Do(preq) - spanReqDo.Finish() + tracing.DoInSpan(ctx, "query_prometheus_request", func(ctx context.Context) { + preq = preq.WithContext(ctx) + presp, err = p.client.Do(preq) + }, opentracing.Tag{Key: "prometheus.query", Value: string(qjson)}) if err != nil { return nil, errors.Wrap(err, "send request") } diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 974a25215d9..4539ec6e093 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -249,9 +249,11 @@ func (s *ProxyStore) Series(r *storepb.SeriesRequest, srv storepb.Store_SeriesSe // We might be able to skip the store if its meta information indicates // it cannot have series matching our query. // NOTE: all matchers are validated in matchesExternalLabels method so we explicitly ignore error. - spanStoreMathes, gctx := tracing.StartSpan(gctx, "store_matches") - ok, _ := storeMatches(st, r.MinTime, r.MaxTime, r.Matchers...) - spanStoreMathes.Finish() + var ok bool + tracing.DoInSpan(gctx, "store_matches", func(ctx context.Context) { + // We can skip error, we already translated matchers once. + ok, _ = storeMatches(st, r.MinTime, r.MaxTime, r.Matchers...) + }) if !ok { storeDebugMsgs = append(storeDebugMsgs, fmt.Sprintf("store %s filtered out", st)) continue diff --git a/pkg/tracing/tracing.go b/pkg/tracing/tracing.go index 9664cbc068a..929f03c7f2b 100644 --- a/pkg/tracing/tracing.go +++ b/pkg/tracing/tracing.go @@ -37,8 +37,8 @@ func tracerFromContext(ctx context.Context) opentracing.Tracer { return nil } -// StartSpan starts and returns span with `operationName` using any Span found within given context. -// It uses traces propagated in context. +// StartSpan starts and returns span with `operationName` and hooking as child to a span found within given context if any. +// It uses opentracing.Tracer propagated in context. If no found, it uses noop tracer without notification. func StartSpan(ctx context.Context, operationName string, opts ...opentracing.StartSpanOption) (opentracing.Span, context.Context) { tracer := tracerFromContext(ctx) if tracer == nil { @@ -53,3 +53,11 @@ func StartSpan(ctx context.Context, operationName string, opts ...opentracing.St span = tracer.StartSpan(operationName, opts...) return span, opentracing.ContextWithSpan(ctx, span) } + +// DoInSpan executes function doFn inside new span with `operationName` name and hooking as child to a span found within given context if any. +// It uses opentracing.Tracer propagated in context. If no found, it uses noop tracer notification. +func DoInSpan(ctx context.Context, operationName string, doFn func(context.Context), opts ...opentracing.StartSpanOption) { + span, newCtx := StartSpan(ctx, operationName, opts...) + defer doFn(newCtx) + defer span.Finish() +} From 92c447030f80c1c4e49f782c7201802ca2936153 Mon Sep 17 00:00:00 2001 From: Roman Grytskiv <3339062+grzkv@users.noreply.github.com> Date: Sat, 29 Feb 2020 11:55:50 +0100 Subject: [PATCH 004/190] Fixed links to dashboards json files. (#2203) Signed-off-by: Roman Grytskiv --- examples/dashboards/dashboards.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/dashboards/dashboards.md b/examples/dashboards/dashboards.md index cc6cf091a26..de2dd484230 100644 --- a/examples/dashboards/dashboards.md +++ b/examples/dashboards/dashboards.md @@ -2,14 +2,14 @@ There exists Grafana dashboards for each component (not all of them complete) targeted for environments running Kubernetes: -- [Thanos Overview](thanos-overview.json) -- [Thanos Compact](thanos-compactor.json) -- [Thanos Querier](thanos-querier.json) -- [Thanos Store](thanos-store.json) -- [Thanos Receiver](thanos-receiver.json) -- [Thanos Sidecar](thanos-sidecar.json) -- [Thanos Ruler](thanos-ruler.json) -- [Thanos Replicate](thanos-bucket-replicate.json) +- [Thanos Overview](overview.json) +- [Thanos Compact](compact.json) +- [Thanos Querier](query.json) +- [Thanos Store](store.json) +- [Thanos Receiver](receive.json) +- [Thanos Sidecar](sidecar.json) +- [Thanos Ruler](rule.json) +- [Thanos Replicate](bucket_replicate.json) You can import them via `Import -> Paste JSON` in Grafana. These dashboards require Grafana 5 or above, importing them in older versions are known not to work. From 6ebc9f0b4c10ea690fcb42889b693ed1281ea840 Mon Sep 17 00:00:00 2001 From: Wim Fournier Date: Mon, 2 Mar 2020 21:50:44 +0100 Subject: [PATCH 005/190] Skip deleting files that we just deleted (#2185) * Skip deleting files that we just deleted We see this happening with Swift. Because the consistency of swift is eventual, swift sometimes didn't process the deletion of the meta file yet, and so it turns up in the bkt.Iter(). The second deletion then causes a 404 and compaction fails. Signed-off-by: Wim Fournier * return, as this is a func. Add debug log and comment Signed-off-by: Wim Fournier * fixing build: wrong parameter name Signed-off-by: Wim Fournier * fix lint Signed-off-by: Wim Fournier * Refactor deleteDir into deleteDirRec and add a parameter for a function that allows to keep certain files. Signed-off-by: Wim Fournier * Fix lint Signed-off-by: Wim Fournier * implementing suggested fixes Signed-off-by: Wim Fournier --- pkg/block/block.go | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkg/block/block.go b/pkg/block/block.go index 740b3d63060..df83f176499 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -145,16 +145,22 @@ func Delete(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid level.Debug(logger).Log("msg", "deleted file", "file", metaFile, "bucket", bkt.Name()) } - return deleteDir(ctx, logger, bkt, id.String()) + // Delete the bucket, but skip the metaFile as we just deleted that. This is required for eventual object storages (list after write). + return deleteDirRec(ctx, logger, bkt, id.String(), func(name string) bool { + return name == metaFile + }) } -// deleteDir removes all objects prefixed with dir from the bucket. +// deleteDirRec removes all objects prefixed with dir from the bucket. It skips objects that return true for the passed keep function. // NOTE: For objects removal use `block.Delete` strictly. -func deleteDir(ctx context.Context, logger log.Logger, bkt objstore.Bucket, dir string) error { +func deleteDirRec(ctx context.Context, logger log.Logger, bkt objstore.Bucket, dir string, keep func(name string) bool) error { return bkt.Iter(ctx, dir, func(name string) error { // If we hit a directory, call DeleteDir recursively. if strings.HasSuffix(name, objstore.DirDelim) { - return deleteDir(ctx, logger, bkt, name) + return deleteDirRec(ctx, logger, bkt, name, keep) + } + if keep(name) { + return nil } if err := bkt.Delete(ctx, name); err != nil { return err From 48c41ebfb69e8eca01c2b1cea1c2ca8fc4ce808e Mon Sep 17 00:00:00 2001 From: Paul Gier Date: Mon, 2 Mar 2020 14:55:03 -0600 Subject: [PATCH 006/190] improve web.route-prefix handling (#2208) This makes the handling of web.route-prefix more similar to the behavior in Prometheus. Correctly handles '/' and prefixes which do not begin with a '/'. Signed-off-by: Paul Gier --- cmd/thanos/query.go | 9 +++++++-- cmd/thanos/rule.go | 8 ++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index 9433f5601db..ddbb315d2a4 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -9,6 +9,7 @@ import ( "math" "net/http" "path" + "strings" "time" "github.com/go-kit/kit/log" @@ -324,11 +325,15 @@ func runQuery( { router := route.New() + // RoutePrefix must always start with '/'. + webRoutePrefix = "/" + strings.Trim(webRoutePrefix, "/") + // Redirect from / to /webRoutePrefix. - if webRoutePrefix != "" { + if webRoutePrefix != "/" { router.Get("/", func(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, webRoutePrefix, http.StatusFound) }) + router = router.WithPrefix(webRoutePrefix) } flagsMap := map[string]string{ @@ -338,7 +343,7 @@ func runQuery( } ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewQueryUI(logger, reg, stores, flagsMap).Register(router.WithPrefix(webRoutePrefix), ins) + ui.NewQueryUI(logger, reg, stores, flagsMap).Register(router, ins) api := v1.NewAPI(logger, reg, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 9db7ba17e76..a9dcc857be5 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -558,11 +558,15 @@ func runRule( { router := route.New() + // RoutePrefix must always start with '/'. + webRoutePrefix = "/" + strings.Trim(webRoutePrefix, "/") + // Redirect from / to /webRoutePrefix. - if webRoutePrefix != "" { + if webRoutePrefix != "/" { router.Get("/", func(w http.ResponseWriter, r *http.Request) { http.Redirect(w, r, webRoutePrefix, http.StatusFound) }) + router = router.WithPrefix(webRoutePrefix) } router.WithPrefix(webRoutePrefix).Post("/-/reload", func(w http.ResponseWriter, r *http.Request) { @@ -577,7 +581,7 @@ func runRule( ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), flagsMap).Register(router.WithPrefix(webRoutePrefix), ins) + ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), flagsMap).Register(router, ins) api := v1.NewAPI(logger, reg, ruleMgr) api.Register(router.WithPrefix(path.Join(webRoutePrefix, "/api/v1")), tracer, logger, ins) From 7336031a1c0de1812fa5ebe1b6182097362c615e Mon Sep 17 00:00:00 2001 From: Matthias Loibl Date: Tue, 3 Mar 2020 12:38:53 +0100 Subject: [PATCH 007/190] Merge release-0.11 back into master (#2212) * Create release v0.11.0-rc.0 (#2156) * Update version to v0.11.0-rc.0 * Update CHANGELOG with all PRs for v0.11 * Improve CHANGELOG by being more explicit * Bumped minio-go library to v6.0.49, fixing an IAM bug in v6.0.45 (#2189) Signed-off-by: Kraig Amador * Create release candidate v0.11.0-rc.1 (#2192) Signed-off-by: Matthias Loibl * Release v0.11.0 (#2205) Signed-off-by: Matthias Loibl * Update VERSION to 0.12.0-dev Signed-off-by: Matthias Loibl * Resolve go.sum merge conflict and run go mod tidy Signed-off-by: Matthias Loibl Co-authored-by: Kraig Amador <508403+bigkraig@users.noreply.github.com> --- CHANGELOG.md | 26 ++++++++++++++----- VERSION | 2 +- go.mod | 2 +- go.sum | 4 +-- .../thanos/1-globalview/courseBase.sh | 4 +-- .../katacoda/thanos/1-globalview/step2.md | 8 +++--- .../katacoda/thanos/1-globalview/step3.md | 2 +- 7 files changed, 30 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26ccc79e8b2..7b77a0cbf77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,18 +11,29 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased +## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0-rc.1) - 2020.03.02 + ### Fixed -- [#2033](https://github.com/thanos-io/thanos/pull/2033) minio-go: Fixed Issue #1494 support Web Identity providers for IAM credentials for AWS EKS -- [#1985](https://github.com/thanos-io/thanos/pull/1985) store gateway: Fixed case where series entry is larger than 64KB in index. -- [#2051](https://github.com/thanos-io/thanos/pull/2051) ruler: Fixed issue where ruler does not expose shipper metrics. -- [#2101](https://github.com/thanos-io/thanos/pull/2101) ruler: Fixed bug where thanos_alert_sender_errors_total was not registered. +- [#2033](https://github.com/thanos-io/thanos/pull/2033) Minio-go: Fixed Issue #1494 support Web Identity providers for IAM credentials for AWS EKS. +- [#1985](https://github.com/thanos-io/thanos/pull/1985) Store Gateway: Fixed case where series entry is larger than 64KB in index. +- [#2051](https://github.com/thanos-io/thanos/pull/2051) Ruler: Fixed issue where ruler does not expose shipper metrics. +- [#2101](https://github.com/thanos-io/thanos/pull/2101) Ruler: Fixed bug where thanos_alert_sender_errors_total was not registered. +- [#1789](https://github.com/thanos-io/thanos/pull/1789) Store Gateway: Improve timeouts. +- [#2139](https://github.com/thanos-io/thanos/pull/2139) Properly handle SIGHUP for reloading. +- [#2040](https://github.com/thanos-io/thanos/pull/2040) UI: Fix URL of alerts in Ruler +- [#2033](https://github.com/thanos-io/thanos/pull/1978) Ruler: Fix tracing in Thanos Ruler ### Added -- [#1969](https://github.com/thanos-io/thanos/pull/1969) Sidecar: allow setting http connection pool size via flags -- [#1967](https://github.com/thanos-io/thanos/issues/1967) Receive: Allow local TSDB compaction -- [#1970](https://github.com/thanos-io/thanos/issues/1970) *breaking* Receive: Use gRPC for forwarding requests between peers. Note that existing values for the `--receive.local-endpoint` flag and the endpoints in the hashring configuration file must now specify the receive gRPC port and must be updated to be a simple `host:port` combination, e.g. `127.0.0.1:10901`, rather than a full HTTP URL, e.g. `http://127.0.0.1:10902/api/v1/receive`. +- [#2003](https://github.com/thanos-io/thanos/pull/2003) Query: Support downsampling for /series. +- [#1952](https://github.com/thanos-io/thanos/pull/1952) Store Gateway: Implemented [binary index header](https://thanos.io/proposals/201912_thanos_binary_index_header.md/). This significantly reduces resource consumption (memory, CPU, net bandwidth) for startup and data loading processes as well as baseline memory. This means that adding more blocks into object storage, without querying them will use almost no resources. This, however, **still means that querying large amounts of data** will result in high spikes of memory and CPU use as before, due to simply fetching large amounts of metrics data. Since we fixed baseline, we are now focusing on query performance optimizations in separate initiatives. To enable experimental `index-header` mode run store with hidden `experimental.enable-index-header` flag. +- [#2009](https://github.com/thanos-io/thanos/pull/2009) Store Gateway: Minimum age of all blocks before they are being read. Set it to a safe value (e.g 30m) if your object storage is eventually consistent. GCS and S3 are (roughly) strongly consistent. +- [#1963](https://github.com/thanos-io/thanos/pull/1963) Mixin: Add Thanos Ruler alerts. +- [#1984](https://github.com/thanos-io/thanos/pull/1984) Query: Add cache-control header to not cache on error. +- [#1870](https://github.com/thanos-io/thanos/pull/1870) UI: Persist settings in query. +- [#1969](https://github.com/thanos-io/thanos/pull/1969) Sidecar: allow setting http connection pool size via flags. +- [#1967](https://github.com/thanos-io/thanos/issues/1967) Receive: Allow local TSDB compaction. - [#1939](https://github.com/thanos-io/thanos/pull/1939) Ruler: Add TLS and authentication support for query endpoints with the `--query.config` and `--query.config-file` CLI flags. See [documentation](docs/components/rule.md/#configuration) for further information. - [#1982](https://github.com/thanos-io/thanos/pull/1982) Ruler: Add support for Alertmanager v2 API endpoints. - [#2030](https://github.com/thanos-io/thanos/pull/2030) Query: Add `thanos_proxy_store_empty_stream_responses_total` metric for number of empty responses from stores. @@ -33,6 +44,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Changed +- [#1970](https://github.com/thanos-io/thanos/issues/1970) *breaking* Receive: Use gRPC for forwarding requests between peers. Note that existing values for the `--receive.local-endpoint` flag and the endpoints in the hashring configuration file must now specify the receive gRPC port and must be updated to be a simple `host:port` combination, e.g. `127.0.0.1:10901`, rather than a full HTTP URL, e.g. `http://127.0.0.1:10902/api/v1/receive`. - [#1933](https://github.com/thanos-io/thanos/pull/1933) Add a flag `--tsdb.wal-compression` to configure whether to enable tsdb wal compression in ruler and receiver. - [#2021](https://github.com/thanos-io/thanos/pull/2021) Rename metric `thanos_query_duplicated_store_address` to `thanos_query_duplicated_store_addresses_total` and `thanos_rule_duplicated_query_address` to `thanos_rule_duplicated_query_addresses_total`. - [#2166](https://github.com/thanos-io/thanos/pull/2166) Improve tooltip for bucket web UI. diff --git a/VERSION b/VERSION index 539f9fc668f..20c48e9965f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.1-dev +0.12.0-dev diff --git a/go.mod b/go.mod index 1b69cd64d19..87e285eaf06 100644 --- a/go.mod +++ b/go.mod @@ -28,7 +28,7 @@ require ( github.com/lightstep/lightstep-tracer-go v0.18.0 github.com/lovoo/gcloud-opentracing v0.3.0 github.com/miekg/dns v1.1.22 - github.com/minio/minio-go/v6 v6.0.45 + github.com/minio/minio-go/v6 v6.0.49 github.com/mozillazg/go-cos v0.13.0 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f github.com/oklog/run v1.0.0 diff --git a/go.sum b/go.sum index 0d129cb34ec..9877fbf2436 100644 --- a/go.sum +++ b/go.sum @@ -500,8 +500,8 @@ github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3N github.com/miekg/dns v1.1.22 h1:Jm64b3bO9kP43ddLjL2EY3Io6bmy1qGb9Xxz6TqS6rc= github.com/miekg/dns v1.1.22/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= github.com/minio/minio-go/v6 v6.0.44/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= -github.com/minio/minio-go/v6 v6.0.45 h1:aY4NI/DOgSbZiwGN3fEF4NAkC9An4bhaIWuJrQrRYew= -github.com/minio/minio-go/v6 v6.0.45/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= +github.com/minio/minio-go/v6 v6.0.49 h1:bU4kIa/qChTLC1jrWZ8F+8gOiw1MClubddAJVR4gW3w= +github.com/minio/minio-go/v6 v6.0.49/go.mod h1:qD0lajrGW49lKZLtXKtCB4X/qkMf0a5tBvN2PaZg7Gg= github.com/minio/sha256-simd v0.1.1 h1:5QHSlgo3nt5yKOJrC7W8w7X+NFl8cMPZm96iu8kKUJU= github.com/minio/sha256-simd v0.1.1/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/mitchellh/cli v1.0.0/go.mod h1:hNIlj7HEI86fIcpObd7a0FcrxTWetlwJDGcceTlRvqc= diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 6bda9cb811d..71000d45196 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash -docker pull quay.io/prometheus/prometheus:v2.14.0 -docker pull quay.io/thanos/thanos:v0.10.0 +docker pull quay.io/prometheus/prometheus:v2.16.0 +docker pull quay.io/thanos/thanos:0.11.0 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index 4982909dfea..cbfb88b82a8 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.10.0 --help +docker run --rm quay.io/thanos/thanos:0.11.0 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index cbe7d5f1922..02d89317167 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.10.0 \ + quay.io/thanos/thanos:v0.11.0 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ From d18e1aec64ca3de143930a87d60bc52fe733e682 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 5 Mar 2020 00:07:57 +0800 Subject: [PATCH 008/190] returns error messages when trigger reload with http (#1848) * returns error messages when trigger reload with http Signed-off-by: arthur yang * use simple reloadRules function instead of magic chan error error Signed-off-by: yapo.yang * add tailing period for comment Signed-off-by: yapo.yang * fix comment Signed-off-by: arthur yang * add white space for better code reading Signed-off-by: arthur yang * collect thanos rule metrics into one struct Signed-off-by: arthur yang * remove termination logic and keep log only Signed-off-by: arthur yang * update changelog for #1848 Signed-off-by: arthur yang * add tailing period Signed-off-by: arthur yang * check whether registry is nil Signed-off-by: arthur yang * tailing period in metrics Signed-off-by: arthur yang * cancel with context Signed-off-by: arthur yang * return ctx.Err() instead of errors.New Signed-off-by: arthur yang * register thanos rule metrics with promauto Signed-off-by: arthur yang * return errs before set success related metrics Signed-off-by: arthur yang * revert go.sum go.mod change Signed-off-by: arthur yang * reload webhandler/sighup in one for loop Signed-off-by: arthur yang * reload with chan chan error Signed-off-by: yapo.yang --- CHANGELOG.md | 1 + cmd/thanos/rule.go | 179 +++++++++++++++++++++++++++------------------ 2 files changed, 109 insertions(+), 71 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b77a0cbf77..c33357a3915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -40,6 +40,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2049](https://github.com/thanos-io/thanos/pull/2049) Tracing: Support sampling on Elastic APM with new sample_rate setting. - [#2008](https://github.com/thanos-io/thanos/pull/2008) Querier, Receiver, Sidecar, Store: Add gRPC [health check](https://github.com/grpc/grpc/blob/master/doc/health-checking.md) endpoints. - [#2145](https://github.com/thanos-io/thanos/pull/2145) Tracing: track query sent to prometheus via remote read api. +- [#1848](https://github.com/thanos-io/thanos/pull/1848) Ruler: Return error messages when trigger reload with http. - [#2113](https://github.com/thanos-io/thanos/pull/2113) Bucket: Added `thanos bucket replicate`. ### Changed diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index a9dcc857be5..972c4bade58 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -20,12 +20,14 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/promql" "github.com/prometheus/prometheus/rules" "github.com/prometheus/prometheus/storage/tsdb" + tsdberrors "github.com/prometheus/prometheus/tsdb/errors" "github.com/prometheus/prometheus/util/strutil" "github.com/thanos-io/thanos/pkg/alert" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -200,6 +202,50 @@ func registerRule(m map[string]setupFunc, app *kingpin.Application) { } } +// RuleMetrics defines thanos rule metrics. +type RuleMetrics struct { + configSuccess prometheus.Gauge + configSuccessTime prometheus.Gauge + duplicatedQuery prometheus.Counter + rulesLoaded *prometheus.GaugeVec + ruleEvalWarnings *prometheus.CounterVec +} + +func newRuleMetrics(reg *prometheus.Registry) *RuleMetrics { + m := new(RuleMetrics) + + factory := promauto.With(reg) + m.configSuccess = factory.NewGauge(prometheus.GaugeOpts{ + Name: "thanos_rule_config_last_reload_successful", + Help: "Whether the last configuration reload attempt was successful.", + }) + m.configSuccessTime = factory.NewGauge(prometheus.GaugeOpts{ + Name: "thanos_rule_config_last_reload_success_timestamp_seconds", + Help: "Timestamp of the last successful configuration reload.", + }) + m.duplicatedQuery = factory.NewCounter(prometheus.CounterOpts{ + Name: "thanos_rule_duplicated_query_addresses_total", + Help: "The number of times a duplicated query addresses is detected from the different configs in rule.", + }) + m.rulesLoaded = factory.NewGaugeVec( + prometheus.GaugeOpts{ + Name: "thanos_rule_loaded_rules", + Help: "Loaded rules partitioned by file and group.", + }, + []string{"strategy", "file", "group"}, + ) + m.ruleEvalWarnings = factory.NewCounterVec( + prometheus.CounterOpts{ + Name: "thanos_rule_evaluation_with_warnings_total", + Help: "The total number of rule evaluation that were successful but had warnings which can indicate partial error.", + }, []string{"strategy"}, + ) + m.ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_ABORT.String())) + m.ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_WARN.String())) + + return m +} + // runRule runs a rule evaluation component that continuously evaluates alerting and recording // rules. It sends alert notifications and writes TSDB data for results like a regular Prometheus server. func runRule( @@ -239,39 +285,7 @@ func runRule( dnsSDResolver string, comp component.Component, ) error { - configSuccess := prometheus.NewGauge(prometheus.GaugeOpts{ - Name: "thanos_rule_config_last_reload_successful", - Help: "Whether the last configuration reload attempt was successful.", - }) - configSuccessTime := prometheus.NewGauge(prometheus.GaugeOpts{ - Name: "thanos_rule_config_last_reload_success_timestamp_seconds", - Help: "Timestamp of the last successful configuration reload.", - }) - duplicatedQuery := prometheus.NewCounter(prometheus.CounterOpts{ - Name: "thanos_rule_duplicated_query_addresses_total", - Help: "The number of times a duplicated query addresses is detected from the different configs in rule", - }) - rulesLoaded := prometheus.NewGaugeVec( - prometheus.GaugeOpts{ - Name: "thanos_rule_loaded_rules", - Help: "Loaded rules partitioned by file and group", - }, - []string{"strategy", "file", "group"}, - ) - ruleEvalWarnings := prometheus.NewCounterVec( - prometheus.CounterOpts{ - Name: "thanos_rule_evaluation_with_warnings_total", - Help: "The total number of rule evaluation that were successful but had warnings which can indicate partial error.", - }, []string{"strategy"}, - ) - ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_ABORT.String())) - ruleEvalWarnings.WithLabelValues(strings.ToLower(storepb.PartialResponseStrategy_WARN.String())) - - reg.MustRegister(configSuccess) - reg.MustRegister(configSuccessTime) - reg.MustRegister(duplicatedQuery) - reg.MustRegister(rulesLoaded) - reg.MustRegister(ruleEvalWarnings) + metrics := newRuleMetrics(reg) var queryCfg []query.Config if len(queryConfigYAML) > 0 { @@ -435,7 +449,7 @@ func runRule( opts := opts opts.Registerer = extprom.WrapRegistererWith(prometheus.Labels{"strategy": strings.ToLower(s.String())}, reg) opts.Context = ctx - opts.QueryFunc = queryFunc(logger, queryClients, duplicatedQuery, ruleEvalWarnings, s) + opts.QueryFunc = queryFunc(logger, queryClients, metrics.duplicatedQuery, metrics.ruleEvalWarnings, s) mgr := rules.NewManager(&opts) ruleMgr.SetRuleManager(s, mgr) @@ -474,52 +488,32 @@ func runRule( } // Handle reload and termination interrupts. - reload := make(chan struct{}, 1) + reloadWebhandler := make(chan chan error) { - cancel := make(chan struct{}) - reload <- struct{}{} // Initial reload. - + ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { + // Initialize rules. + if err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics); err != nil { + level.Error(logger).Log("msg", "initialize rules failed", "err", err) + } for { select { - case <-cancel: - return errors.New("canceled") - case <-reload: case <-reloadSignal: - } - - level.Debug(logger).Log("msg", "configured rule files", "files", strings.Join(ruleFiles, ",")) - var files []string - for _, pat := range ruleFiles { - fs, err := filepath.Glob(pat) + if err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics); err != nil { + level.Error(logger).Log("msg", "reload rules by sighup failed", "err", err) + } + case reloadMsg := <-reloadWebhandler: + err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics) if err != nil { - // The only error can be a bad pattern. - level.Error(logger).Log("msg", "retrieving rule files failed. Ignoring file.", "pattern", pat, "err", err) - continue + level.Error(logger).Log("msg", "reload rules by webhandler failed", "err", err) } - - files = append(files, fs...) - } - - level.Info(logger).Log("msg", "reload rule files", "numFiles", len(files)) - - if err := ruleMgr.Update(evalInterval, files); err != nil { - configSuccess.Set(0) - level.Error(logger).Log("msg", "reloading rules failed", "err", err) - continue - } - - configSuccess.Set(1) - configSuccessTime.SetToCurrentTime() - - rulesLoaded.Reset() - for _, group := range ruleMgr.RuleGroups() { - rulesLoaded.WithLabelValues(group.PartialResponseStrategy.String(), group.File(), group.Name()).Set(float64(len(group.Rules()))) + reloadMsg <- err + case <-ctx.Done(): + return ctx.Err() } - } }, func(error) { - close(cancel) + cancel() }) } @@ -570,7 +564,11 @@ func runRule( } router.WithPrefix(webRoutePrefix).Post("/-/reload", func(w http.ResponseWriter, r *http.Request) { - reload <- struct{}{} + reloadMsg := make(chan error) + reloadWebhandler <- reloadMsg + if err := <-reloadMsg; err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + } }) flagsMap := map[string]string{ @@ -764,3 +762,42 @@ func addDiscoveryGroups(g *run.Group, c *http_util.Client, interval time.Duratio cancel() }) } + +func reloadRules(logger log.Logger, + ruleFiles []string, + ruleMgr *thanosrule.Manager, + evalInterval time.Duration, + metrics *RuleMetrics) error { + level.Debug(logger).Log("msg", "configured rule files", "files", strings.Join(ruleFiles, ",")) + var ( + errs tsdberrors.MultiError + files []string + ) + for _, pat := range ruleFiles { + fs, err := filepath.Glob(pat) + if err != nil { + // The only error can be a bad pattern. + errs.Add(errors.Wrapf(err, "retrieving rule files failed. Ignoring file. pattern %s", pat)) + continue + } + + files = append(files, fs...) + } + + level.Info(logger).Log("msg", "reload rule files", "numFiles", len(files)) + + if err := ruleMgr.Update(evalInterval, files); err != nil { + metrics.configSuccess.Set(0) + errs.Add(errors.Wrap(err, "reloading rules failed")) + return errs.Err() + } + + metrics.configSuccess.Set(1) + metrics.configSuccessTime.Set(float64(time.Now().UnixNano()) / 1e9) + + metrics.rulesLoaded.Reset() + for _, group := range ruleMgr.RuleGroups() { + metrics.rulesLoaded.WithLabelValues(group.PartialResponseStrategy.String(), group.File(), group.Name()).Set(float64(len(group.Rules()))) + } + return errs.Err() +} From 0fc20b677b87e08b9fc197da129221a4fd9dc527 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 5 Mar 2020 12:20:46 +0000 Subject: [PATCH 009/190] Fix error in component status help message (#2216) Signed-off-by: mcsammac Date: Wed Mar 4 13:50:17 2020 -0500 On branch master Changes to be committed: modified: pkg/prober/intrumentation.go Signed-off-by: s320009 --- pkg/prober/intrumentation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/prober/intrumentation.go b/pkg/prober/intrumentation.go index 076996d88f2..e9869750071 100644 --- a/pkg/prober/intrumentation.go +++ b/pkg/prober/intrumentation.go @@ -32,7 +32,7 @@ func NewInstrumentation(component component.Component, logger log.Logger, reg pr logger: logger, status: prometheus.NewGaugeVec(prometheus.GaugeOpts{ Name: "status", - Help: "Represents status (0 indicates success, 1 indicates failure) of the component.", + Help: "Represents status (0 indicates failure, 1 indicates success) of the component.", ConstLabels: map[string]string{"component": component.String()}, }, []string{"check"}, From f332ece9bbe3a77e292326bf28c401479e00c105 Mon Sep 17 00:00:00 2001 From: Paul Gier Date: Fri, 6 Mar 2020 09:58:22 -0600 Subject: [PATCH 010/190] tutorials: fix typo in image version (#2223) Signed-off-by: Paul Gier --- tutorials/katacoda/thanos/1-globalview/courseBase.sh | 2 +- tutorials/katacoda/thanos/1-globalview/step2.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 71000d45196..53bcd979d24 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash docker pull quay.io/prometheus/prometheus:v2.16.0 -docker pull quay.io/thanos/thanos:0.11.0 +docker pull quay.io/thanos/thanos:v0.11.0 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index cbfb88b82a8..03618d2acc5 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:0.11.0 --help +docker run --rm quay.io/thanos/thanos:v0.11.0 --help ```{{execute}} You should see multiple commands that solves different purposes. From d23b6a339af18b644f1398bdb5aa92c884432d67 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 9 Mar 2020 13:00:01 +0000 Subject: [PATCH 011/190] Blocked classic prometheus constructors, moved all to promauto; Removed unnecessary printfs. (#2228) Fixes: https://github.com/thanos-io/thanos/issues/2102 Also blocked them on CI side, thanks to https://github.com/fatih/faillint/pull/8 Signed-off-by: Bartlomiej Plotka --- Makefile | 14 +++-- cmd/thanos/bucket.go | 4 +- cmd/thanos/compact.go | 14 ++--- cmd/thanos/downsample.go | 8 +-- cmd/thanos/main.go | 1 + cmd/thanos/main_test.go | 5 +- cmd/thanos/query.go | 4 +- cmd/thanos/sidecar.go | 6 +- go.mod | 2 +- go.sum | 4 +- pkg/alert/alert.go | 25 ++++---- pkg/block/fetcher.go | 22 +++---- pkg/block/fetcher_test.go | 13 +++-- pkg/cacheutil/memcached_client.go | 11 ++-- .../memcached_server_selector_test.go | 5 +- pkg/compact/clean_test.go | 3 +- pkg/compact/compact.go | 35 ++++------- pkg/discovery/dns/provider.go | 13 ++--- pkg/extgrpc/client.go | 1 - pkg/extprom/http/instrument_server.go | 10 ++-- pkg/extprom/tx_gauge.go | 12 +++- pkg/extprom/tx_gauge_test.go | 6 +- pkg/gate/gate.go | 9 +-- pkg/objstore/objstore.go | 24 ++++---- pkg/prober/http_test.go | 7 ++- pkg/prober/intrumentation.go | 8 +-- pkg/query/api/v1.go | 10 ++-- .../test-storeset-pre-v0.8.0/storeset.go | 8 +-- pkg/receive/config.go | 33 ++++------- pkg/receive/handler.go | 4 +- pkg/replicate/replicater.go | 11 ++-- pkg/replicate/scheme.go | 58 ++++++++----------- pkg/rule/api/v1.go | 4 +- pkg/server/grpc/grpc.go | 4 +- pkg/shipper/shipper.go | 30 ++++------ pkg/store/bucket.go | 57 ++++++------------ pkg/store/bucket_test.go | 3 +- pkg/store/cache/inmemory.go | 44 +++++++------- pkg/store/cache/memcached.go | 9 +-- pkg/store/proxy.go | 8 +-- pkg/ui/ui.go | 8 +-- 41 files changed, 231 insertions(+), 326 deletions(-) diff --git a/Makefile b/Makefile index 95382bb1775..3414f7a6d91 100644 --- a/Makefile +++ b/Makefile @@ -78,9 +78,8 @@ ALERTMANAGER ?= $(GOBIN)/alertmanager-$(ALERTMANAGER_VERSION) MINIO_SERVER_VERSION ?= RELEASE.2018-10-06T00-15-16Z MINIO_SERVER ?=$(GOBIN)/minio-$(MINIO_SERVER_VERSION) -FAILLINT_VERSION ?= v1.0.1 +FAILLINT_VERSION ?= v1.2.0 FAILLINT ?=$(GOBIN)/faillint-$(FAILLINT_VERSION) -MODULES_TO_AVOID ?=errors,github.com/prometheus/tsdb,github.com/prometheus/prometheus/pkg/testutils # fetch_go_bin_version downloads (go gets) the binary from specific version and installs it in $(GOBIN)/- # arguments: @@ -139,7 +138,6 @@ assets: $(GOBINDATA) @$(GOBINDATA) $(bindata_flags) -pkg ui -o pkg/ui/bindata.go -ignore '(.*\.map|bootstrap\.js|bootstrap-theme\.css|bootstrap\.css)' pkg/ui/templates/... pkg/ui/static/... @go fmt ./pkg/ui - .PHONY: build build: ## Builds Thanos binary using `promu`. build: check-git deps $(PROMU) @@ -295,7 +293,15 @@ lint: ## Runs various static analysis against our code. lint: check-git deps $(GOLANGCILINT) $(MISSPELL) $(FAILLINT) $(call require_clean_work_tree,"detected not clean master before running lint") @echo ">> verifying modules being imported" - @$(FAILLINT) -paths $(MODULES_TO_AVOID) ./... + @# TODO(bwplotka): Add, Printf, DefaultRegisterer, NewGaugeFunc and MustRegister once exception are accepted. Add fmt.{Errorf}=github.com/pkg/errors.{Errorf} once https://github.com/fatih/faillint/issues/10 is addressed. + @$(FAILLINT) -paths "errors=github.com/pkg/errors,\ +github.com/prometheus/tsdb=github.com/prometheus/prometheus/tsdb,\ +github.com/prometheus/prometheus/pkg/testutils=github.com/thanos-io/thanos/pkg/testutil,\ +github.com/prometheus/client_golang/prometheus.{DefaultGatherer,DefBuckets,NewUntypedFunc,UntypedFunc},\ +github.com/prometheus/client_golang/prometheus.{NewCounter,NewCounterVec,NewCounterVec,NewGauge,NewGaugeVec,NewGaugeFunc,\ +NewHistorgram,NewHistogramVec,NewSummary,NewSummaryVec}=github.com/prometheus/client_golang/prometheus/promauto.{NewCounter,\ +NewCounterVec,NewCounterVec,NewGauge,NewGaugeVec,NewGaugeFunc,NewHistorgram,NewHistogramVec,NewSummary,NewSummaryVec}" ./... + @$(FAILLINT) -paths "fmt.{Print,Println,Sprint}" -ignore-tests ./... @echo ">> examining all of the Go files" @go vet -stdmethods=false ./pkg/... ./cmd/... && go vet doc.go @echo ">> linting all of the Go files GOGC=${GOGC}" diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index e922057e969..d4ed513cce1 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -269,7 +269,7 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name // Parse selector. selectorLabels, err := parseFlagLabels(*selector) if err != nil { - return fmt.Errorf("error parsing selector flag: %v", err) + return errors.Errorf("error parsing selector flag: %v", err) } confContentYaml, err := objStoreConfig.Content() @@ -523,7 +523,7 @@ func printTable(blockMetas []*metadata.Meta, selectorLabels labels.Labels, sortB for _, col := range sortBy { index := getIndex(header, col) if index == -1 { - return fmt.Errorf("column %s not found", col) + return errors.Errorf("column %s not found", col) } sortByColNum = append(sortByColNum, index) } diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index b0ea2f346cd..c14bbac3a9e 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -19,6 +19,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/indexheader" @@ -170,25 +171,23 @@ func runCompact( concurrency int, selectorRelabelConf *extflag.PathOrContent, ) error { - halted := prometheus.NewGauge(prometheus.GaugeOpts{ + halted := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_compactor_halted", Help: "Set to 1 if the compactor halted due to an unexpected error.", }) halted.Set(0) - retried := prometheus.NewCounter(prometheus.CounterOpts{ + retried := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_retries_total", Help: "Total number of retries after retriable compactor error.", }) - iterations := prometheus.NewCounter(prometheus.CounterOpts{ + iterations := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_iterations_total", Help: "Total number of iterations that were executed successfully.", }) - partialUploadDeleteAttempts := prometheus.NewCounter(prometheus.CounterOpts{ + partialUploadDeleteAttempts := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compactor_aborted_partial_uploads_deletion_attempts_total", Help: "Total number of started deletions of blocks that are assumed aborted and only partially uploaded.", }) - reg.MustRegister(halted, retried, iterations, partialUploadDeleteAttempts) - downsampleMetrics := newDownsampleMetrics(reg) httpProbe := prober.NewHTTP() @@ -390,11 +389,10 @@ func runCompact( // genMissingIndexCacheFiles scans over all blocks, generates missing index cache files and uploads them to object storage. func genMissingIndexCacheFiles(ctx context.Context, logger log.Logger, reg *prometheus.Registry, bkt objstore.Bucket, fetcher block.MetadataFetcher, dir string) error { - genIndex := prometheus.NewCounter(prometheus.CounterOpts{ + genIndex := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - reg.MustRegister(genIndex) if err := os.RemoveAll(dir); err != nil { return errors.Wrap(err, "clean index cache directory") diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index d38ea26273c..d513d2f0a3b 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -16,6 +16,7 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/block" @@ -57,18 +58,15 @@ type DownsampleMetrics struct { func newDownsampleMetrics(reg *prometheus.Registry) *DownsampleMetrics { m := new(DownsampleMetrics) - m.downsamples = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.downsamples = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_downsample_total", Help: "Total number of downsampling attempts.", }, []string{"group"}) - m.downsampleFailures = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.downsampleFailures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_downsample_failures_total", Help: "Total number of failed downsampling attempts.", }, []string{"group"}) - reg.MustRegister(m.downsamples) - reg.MustRegister(m.downsampleFailures) - return m } diff --git a/cmd/thanos/main.go b/cmd/thanos/main.go index f77424d8ced..b407d252bfb 100644 --- a/cmd/thanos/main.go +++ b/cmd/thanos/main.go @@ -119,6 +119,7 @@ func main() { prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{}), ) + // Some packages still use default Register. Replace to have those metrics. prometheus.DefaultRegisterer = metrics // Memberlist uses go-metrics. sink, err := gprom.NewPrometheusSink() diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index 1917a79f208..d44844d7685 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -15,6 +15,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block" @@ -71,12 +72,10 @@ func TestCleanupIndexCacheFolder(t *testing.T) { reg := prometheus.NewRegistry() expReg := prometheus.NewRegistry() - genIndexExp := prometheus.NewCounter(prometheus.CounterOpts{ + genIndexExp := promauto.With(expReg).NewCounter(prometheus.CounterOpts{ Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - expReg.MustRegister(genIndexExp) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) testutil.Ok(t, err) diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index ddbb315d2a4..0d687b02e11 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -18,6 +18,7 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/discovery/file" "github.com/prometheus/prometheus/discovery/targetgroup" @@ -204,11 +205,10 @@ func runQuery( comp component.Component, ) error { // TODO(bplotka in PR #513 review): Move arguments into struct. - duplicatedStores := prometheus.NewCounter(prometheus.CounterOpts{ + duplicatedStores := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_query_duplicated_store_addresses_total", Help: "The number of times a duplicated store addresses is detected from the different configs in query", }) - reg.MustRegister(duplicatedStores) dialOpts, err := extgrpc.StoreClientGRPCOpts(logger, reg, tracer, secure, cert, key, caCert, serverName) if err != nil { diff --git a/cmd/thanos/sidecar.go b/cmd/thanos/sidecar.go index 3780ad1812d..3024b1a7160 100644 --- a/cmd/thanos/sidecar.go +++ b/cmd/thanos/sidecar.go @@ -17,6 +17,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -183,15 +184,14 @@ func runSidecar( // Setup all the concurrent groups. { - promUp := prometheus.NewGauge(prometheus.GaugeOpts{ + promUp := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_sidecar_prometheus_up", Help: "Boolean indicator whether the sidecar can reach its Prometheus peer.", }) - lastHeartbeat := prometheus.NewGauge(prometheus.GaugeOpts{ + lastHeartbeat := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_sidecar_last_heartbeat_success_time_seconds", Help: "Second timestamp of the last successful heartbeat.", }) - reg.MustRegister(promUp, lastHeartbeat) ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { diff --git a/go.mod b/go.mod index 87e285eaf06..d1530f6a045 100644 --- a/go.mod +++ b/go.mod @@ -38,7 +38,7 @@ require ( github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785 github.com/pkg/errors v0.9.1 github.com/prometheus/alertmanager v0.20.0 - github.com/prometheus/client_golang v1.4.2-0.20200214154132-b25ce2693a6d + github.com/prometheus/client_golang v1.5.0 github.com/prometheus/client_model v0.2.0 github.com/prometheus/common v0.9.1 github.com/prometheus/prometheus v1.8.2-0.20200213233353-b90be6f32a33 diff --git a/go.sum b/go.sum index 9877fbf2436..b5031118a94 100644 --- a/go.sum +++ b/go.sum @@ -592,8 +592,8 @@ github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQ github.com/prometheus/client_golang v1.2.0/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= github.com/prometheus/client_golang v1.2.1 h1:JnMpQc6ppsNgw9QPAGF6Dod479itz7lvlsMzzNayLOI= github.com/prometheus/client_golang v1.2.1/go.mod h1:XMU6Z2MjaRKVu/dC1qupJI9SiNkDYzz3xecMgSW/F+U= -github.com/prometheus/client_golang v1.4.2-0.20200214154132-b25ce2693a6d h1:6GpNaEnOxPO8IxMm5zmXdIpCGayuQmp7udttdxB2BbM= -github.com/prometheus/client_golang v1.4.2-0.20200214154132-b25ce2693a6d/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= +github.com/prometheus/client_golang v1.5.0 h1:Ctq0iGpCmr3jeP77kbF2UxgvRwzWWz+4Bh9/vJTyg1A= +github.com/prometheus/client_golang v1.5.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= github.com/prometheus/client_model v0.0.0-20170216185247-6f3806018612/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= diff --git a/pkg/alert/alert.go b/pkg/alert/alert.go index 4ad30b7c03b..0bb500e77a0 100644 --- a/pkg/alert/alert.go +++ b/pkg/alert/alert.go @@ -23,6 +23,7 @@ import ( "github.com/pkg/errors" "github.com/prometheus/alertmanager/api/v2/models" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/runutil" @@ -133,34 +134,31 @@ func NewQueue(logger log.Logger, reg prometheus.Registerer, capacity, maxBatchSi toAddLset: toAdd, toExcludeLabels: toExclude, - dropped: prometheus.NewCounter(prometheus.CounterOpts{ + dropped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_dropped_total", Help: "Total number of alerts that were dropped from the queue.", }), - pushed: prometheus.NewCounter(prometheus.CounterOpts{ + pushed: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_pushed_total", Help: "Total number of alerts pushed to the queue.", }), - popped: prometheus.NewCounter(prometheus.CounterOpts{ + popped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_queue_alerts_popped_total", Help: "Total number of alerts popped from the queue.", }), } - capMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ Name: "thanos_alert_queue_capacity", Help: "Capacity of the alert queue.", }, func() float64 { return float64(q.Cap()) }) - lenMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ Name: "thanos_alert_queue_length", Help: "Length of the alert queue.", }, func() float64 { return float64(q.Len()) }) - if reg != nil { - reg.MustRegister(q.pushed, q.popped, q.dropped, lenMetric, capMetric) - } return q } @@ -292,29 +290,26 @@ func NewSender( alertmanagers: alertmanagers, versions: versions, - sent: prometheus.NewCounterVec(prometheus.CounterOpts{ + sent: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_alert_sender_alerts_sent_total", Help: "Total number of alerts sent by alertmanager.", }, []string{"alertmanager"}), - errs: prometheus.NewCounterVec(prometheus.CounterOpts{ + errs: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_alert_sender_errors_total", Help: "Total number of errors while sending alerts to alertmanager.", }, []string{"alertmanager"}), - dropped: prometheus.NewCounter(prometheus.CounterOpts{ + dropped: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_alert_sender_alerts_dropped_total", Help: "Total number of alerts dropped in case of all sends to alertmanagers failed.", }), - latency: prometheus.NewHistogramVec(prometheus.HistogramOpts{ + latency: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_alert_sender_latency_seconds", Help: "Latency for sending alert notifications (not including dropped notifications).", }, []string{"alertmanager"}), } - if reg != nil { - reg.MustRegister(s.sent, s.errs, s.dropped, s.latency) - } return s } diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index bf288a7ad61..ae4f3b454b1 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -19,6 +19,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" @@ -54,26 +55,26 @@ const ( duplicateMeta = "duplicate" ) -func newSyncMetrics(r prometheus.Registerer) *syncMetrics { +func newSyncMetrics(reg prometheus.Registerer) *syncMetrics { var m syncMetrics - m.syncs = prometheus.NewCounter(prometheus.CounterOpts{ + m.syncs = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Subsystem: syncMetricSubSys, Name: "syncs_total", Help: "Total blocks metadata synchronization attempts", }) - m.syncFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.syncFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Subsystem: syncMetricSubSys, Name: "sync_failures_total", Help: "Total blocks metadata synchronization failures", }) - m.syncDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.syncDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Subsystem: syncMetricSubSys, Name: "sync_duration_seconds", Help: "Duration of the blocks metadata synchronization in seconds", Buckets: []float64{0.01, 1, 10, 100, 1000}, }) - m.synced = extprom.NewTxGaugeVec(prometheus.GaugeOpts{ + m.synced = extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ Subsystem: syncMetricSubSys, Name: "synced", Help: "Number of block metadata synced", @@ -88,14 +89,6 @@ func newSyncMetrics(r prometheus.Registerer) *syncMetrics { []string{timeExcludedMeta}, []string{duplicateMeta}, ) - if r != nil { - r.MustRegister( - m.syncs, - m.syncFailures, - m.syncDuration, - m.synced, - ) - } return &m } @@ -544,13 +537,12 @@ func NewConsistencyDelayMetaFilter(logger log.Logger, consistencyDelay time.Dura if logger == nil { logger = log.NewNopLogger() } - consistencyDelayMetric := prometheus.NewGaugeFunc(prometheus.GaugeOpts{ + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ Name: "consistency_delay_seconds", Help: "Configured consistency delay in seconds.", }, func() float64 { return consistencyDelay.Seconds() }) - reg.MustRegister(consistencyDelayMetric) return &ConsistencyDelayMetaFilter{ logger: logger, diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index eb93a5246b5..d2c4c9b251c 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -22,6 +22,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" @@ -332,7 +333,7 @@ func TestLabelShardedMetaFilter_Filter_Basic(t *testing.T) { ULID(6): input[ULID(6)], } - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) f.Filter(input, synced, false) testutil.Equals(t, 3.0, promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) @@ -427,7 +428,7 @@ func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { } deleted := len(input) - len(expected) - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) f.Filter(input, synced, false) testutil.Equals(t, expected, input) @@ -488,7 +489,7 @@ func TestTimePartitionMetaFilter_Filter(t *testing.T) { ULID(4): input[ULID(4)], } - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) f.Filter(input, synced, false) testutil.Equals(t, 2.0, promtest.ToFloat64(synced.WithLabelValues(timeExcludedMeta))) @@ -819,7 +820,7 @@ func TestDeduplicateFilter_Filter(t *testing.T) { } { f := NewDeduplicateFilter() if ok := t.Run(tcase.name, func(t *testing.T) { - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) metas := make(map[ulid.ULID]*metadata.Meta) inputLen := len(tcase.input) for id, metaInfo := range tcase.input { @@ -932,7 +933,7 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { } t.Run("consistency 0 (turned off)", func(t *testing.T) { - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) expected := map[ulid.ULID]*metadata.Meta{} // Copy all. for _, id := range u.created { @@ -950,7 +951,7 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { }) t.Run("consistency 30m.", func(t *testing.T) { - synced := prometheus.NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) expected := map[ulid.ULID]*metadata.Meta{} // Only certain sources and those with 30m or more age go through. for i, id := range u.created { diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 80c2d1f9fdb..67d93466f7c 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -13,6 +13,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/discovery/dns" "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/gate" @@ -202,29 +203,25 @@ func newMemcachedClient( ), } - c.operations = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.operations = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operations_total", Help: "Total number of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) - c.failures = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.failures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operation_failures_total", Help: "Total number of operations against memcached that failed.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) - c.duration = prometheus.NewHistogramVec(prometheus.HistogramOpts{ + c.duration = promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_memcached_operation_duration_seconds", Help: "Duration of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1}, }, []string{"operation"}) - if reg != nil { - reg.MustRegister(c.operations, c.failures, c.duration) - } - // As soon as the client is created it must ensure that memcached server // addresses are resolved, so we're going to trigger an initial addresses // resolution here. diff --git a/pkg/cacheutil/memcached_server_selector_test.go b/pkg/cacheutil/memcached_server_selector_test.go index a8da4346ca8..ab5848bb077 100644 --- a/pkg/cacheutil/memcached_server_selector_test.go +++ b/pkg/cacheutil/memcached_server_selector_test.go @@ -12,6 +12,7 @@ import ( "github.com/bradfitz/gomemcache/memcache" "github.com/facette/natsort" "github.com/fortytw2/leaktest" + "github.com/pkg/errors" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -144,7 +145,7 @@ func TestMemcachedJumpHashSelector_PickServer_ShouldEvenlyDistributeKeysToServer for addr, count := range distribution { if count < minKeysPerServer { - testutil.Ok(t, fmt.Errorf("expected %s to have received at least %d keys instead it received %d", addr, minKeysPerServer, count)) + testutil.Ok(t, errors.Errorf("expected %s to have received at least %d keys instead it received %d", addr, minKeysPerServer, count)) } } } @@ -199,7 +200,7 @@ func TestMemcachedJumpHashSelector_PickServer_ShouldUseConsistentHashing(t *test maxExpectedMovedPerc := (1.0 / float64(len(servers))) + 0.02 maxExpectedMoved := int(float64(numKeys) * maxExpectedMovedPerc) if moved > maxExpectedMoved { - testutil.Ok(t, fmt.Errorf("expected resharding moved no more then %d keys while %d have been moved", maxExpectedMoved, moved)) + testutil.Ok(t, errors.Errorf("expected resharding moved no more then %d keys while %d have been moved", maxExpectedMoved, moved)) } } diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 85654f8c8a3..90b136be47e 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -14,6 +14,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -57,7 +58,7 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnoreID2.String(), "chunks", "000001"), &fakeChunk)) - deleteAttempts := prometheus.NewCounter(prometheus.CounterOpts{}) + deleteAttempts := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts) testutil.Equals(t, 1.0, promtest.ToFloat64(deleteAttempts)) diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index b268724e108..df9f8492abe 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -18,6 +18,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" terrors "github.com/prometheus/prometheus/tsdb/errors" @@ -67,58 +68,44 @@ type syncerMetrics struct { func newSyncerMetrics(reg prometheus.Registerer) *syncerMetrics { var m syncerMetrics - m.garbageCollectedBlocks = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollectedBlocks = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collected_blocks_total", Help: "Total number of deleted blocks by compactor.", }) - m.garbageCollections = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollections = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collection_total", Help: "Total number of garbage collection operations.", }) - m.garbageCollectionFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.garbageCollectionFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_compact_garbage_collection_failures_total", Help: "Total number of failed garbage collection operations.", }) - m.garbageCollectionDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.garbageCollectionDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_compact_garbage_collection_duration_seconds", Help: "Time it took to perform garbage collection iteration.", Buckets: []float64{0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120, 240, 360, 720}, }) - m.compactions = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compactions_total", Help: "Total number of group compaction attempts that resulted in a new block.", }, []string{"group"}) - m.compactionRunsStarted = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionRunsStarted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compaction_runs_started_total", Help: "Total number of group compaction attempts.", }, []string{"group"}) - m.compactionRunsCompleted = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionRunsCompleted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compaction_runs_completed_total", Help: "Total number of group completed compaction runs. This also includes compactor group runs that resulted with no compaction.", }, []string{"group"}) - m.compactionFailures = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.compactionFailures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_compactions_failures_total", Help: "Total number of failed group compactions.", }, []string{"group"}) - m.verticalCompactions = prometheus.NewCounterVec(prometheus.CounterOpts{ + m.verticalCompactions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_compact_group_vertical_compactions_total", Help: "Total number of group compaction attempts that resulted in a new block based on overlapping blocks.", }, []string{"group"}) - - if reg != nil { - reg.MustRegister( - m.garbageCollectedBlocks, - m.garbageCollections, - m.garbageCollectionFailures, - m.garbageCollectionDuration, - m.compactions, - m.compactionRunsStarted, - m.compactionRunsCompleted, - m.compactionFailures, - m.verticalCompactions, - ) - } return &m } @@ -157,7 +144,7 @@ func UntilNextDownsampling(m *metadata.Meta) (time.Duration, error) { case downsample.ResLevel0: return time.Duration(downsample.DownsampleRange0*time.Millisecond) - timeRange, nil default: - panic(fmt.Errorf("invalid resolution %v", m.Thanos.Downsample.Resolution)) + panic(errors.Errorf("invalid resolution %v", m.Thanos.Downsample.Resolution)) } } diff --git a/pkg/discovery/dns/provider.go b/pkg/discovery/dns/provider.go index 90cf72bfb98..5df9e97320a 100644 --- a/pkg/discovery/dns/provider.go +++ b/pkg/discovery/dns/provider.go @@ -12,6 +12,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/discovery/dns/miekgdns" "github.com/thanos-io/thanos/pkg/extprom" ) @@ -57,26 +58,20 @@ func NewProvider(logger log.Logger, reg prometheus.Registerer, resolverType Reso resolver: NewResolver(resolverType.ToResolver(logger)), resolved: make(map[string][]string), logger: logger, - resolverAddrs: extprom.NewTxGaugeVec(prometheus.GaugeOpts{ + resolverAddrs: extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ Name: "dns_provider_results", Help: "The number of resolved endpoints for each configured address", }, []string{"addr"}), - resolverLookupsCount: prometheus.NewCounter(prometheus.CounterOpts{ + resolverLookupsCount: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "dns_lookups_total", Help: "The number of DNS lookups resolutions attempts", }), - resolverFailuresCount: prometheus.NewCounter(prometheus.CounterOpts{ + resolverFailuresCount: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "dns_failures_total", Help: "The number of DNS lookup failures", }), } - if reg != nil { - reg.MustRegister(p.resolverAddrs) - reg.MustRegister(p.resolverLookupsCount) - reg.MustRegister(p.resolverFailuresCount) - } - return p } diff --git a/pkg/extgrpc/client.go b/pkg/extgrpc/client.go index eb6ac475953..5262b76fed2 100644 --- a/pkg/extgrpc/client.go +++ b/pkg/extgrpc/client.go @@ -43,7 +43,6 @@ func StoreClientGRPCOpts(logger log.Logger, reg *prometheus.Registry, tracer ope ), ), } - if reg != nil { reg.MustRegister(grpcMets) } diff --git a/pkg/extprom/http/instrument_server.go b/pkg/extprom/http/instrument_server.go index 907d3da6e54..c09bb6f8b3d 100644 --- a/pkg/extprom/http/instrument_server.go +++ b/pkg/extprom/http/instrument_server.go @@ -7,6 +7,7 @@ import ( "net/http" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/client_golang/prometheus/promhttp" ) @@ -40,7 +41,7 @@ type defaultInstrumentationMiddleware struct { // NewInstrumentationMiddleware provides default InstrumentationMiddleware. func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMiddleware { ins := defaultInstrumentationMiddleware{ - requestDuration: prometheus.NewHistogramVec( + requestDuration: promauto.With(reg).NewHistogramVec( prometheus.HistogramOpts{ Name: "http_request_duration_seconds", Help: "Tracks the latencies for HTTP requests.", @@ -49,7 +50,7 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), - requestSize: prometheus.NewSummaryVec( + requestSize: promauto.With(reg).NewSummaryVec( prometheus.SummaryOpts{ Name: "http_request_size_bytes", Help: "Tracks the size of HTTP requests.", @@ -57,14 +58,14 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), - requestsTotal: prometheus.NewCounterVec( + requestsTotal: promauto.With(reg).NewCounterVec( prometheus.CounterOpts{ Name: "http_requests_total", Help: "Tracks the number of HTTP requests.", }, []string{"code", "handler", "method"}, ), - responseSize: prometheus.NewSummaryVec( + responseSize: promauto.With(reg).NewSummaryVec( prometheus.SummaryOpts{ Name: "http_response_size_bytes", Help: "Tracks the size of HTTP responses.", @@ -72,7 +73,6 @@ func NewInstrumentationMiddleware(reg prometheus.Registerer) InstrumentationMidd []string{"code", "handler", "method"}, ), } - reg.MustRegister(ins.requestDuration, ins.requestSize, ins.requestsTotal, ins.responseSize) return &ins } diff --git a/pkg/extprom/tx_gauge.go b/pkg/extprom/tx_gauge.go index d85bf4f9215..a619b122e97 100644 --- a/pkg/extprom/tx_gauge.go +++ b/pkg/extprom/tx_gauge.go @@ -7,6 +7,7 @@ import ( "sync" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" ) type TxGaugeVec struct { @@ -24,18 +25,23 @@ type TxGaugeVec struct { // // Additionally it allows to init LabelValues on each transaction. // NOTE: This is quite naive implementation creating new prometheus.GaugeVec on each `ResetTx`, use wisely. -func NewTxGaugeVec(opts prometheus.GaugeOpts, labelNames []string, initLabelValues ...[]string) *TxGaugeVec { +func NewTxGaugeVec(reg prometheus.Registerer, opts prometheus.GaugeOpts, labelNames []string, initLabelValues ...[]string) *TxGaugeVec { + // Nil as we will register it on our own later. f := func() *prometheus.GaugeVec { - g := prometheus.NewGaugeVec(opts, labelNames) + g := promauto.With(nil).NewGaugeVec(opts, labelNames) for _, vals := range initLabelValues { g.WithLabelValues(vals...) } return g } - return &TxGaugeVec{ + tx := &TxGaugeVec{ current: f(), newMetricVal: f, } + if reg != nil { + reg.MustRegister(tx) + } + return tx } // ResetTx starts new transaction. Not goroutine-safe. diff --git a/pkg/extprom/tx_gauge_test.go b/pkg/extprom/tx_gauge_test.go index 4be8b02de42..92af9dc43c5 100644 --- a/pkg/extprom/tx_gauge_test.go +++ b/pkg/extprom/tx_gauge_test.go @@ -4,17 +4,17 @@ package extprom import ( - "fmt" "strings" "testing" + "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" "github.com/thanos-io/thanos/pkg/testutil" ) func TestTxGaugeVec(t *testing.T) { - g := NewTxGaugeVec(prometheus.GaugeOpts{ + g := NewTxGaugeVec(nil, prometheus.GaugeOpts{ Name: "metric", }, []string{"a", "b"}, []string{"a1", "b1"}, []string{"a2", "b2"}) @@ -167,7 +167,7 @@ func toFloat64(t *testing.T, c prometheus.Collector) map[string]float64 { if pb.Untyped != nil { exp[lbToString(pb.GetLabel())] = pb.Untyped.GetValue() } - panic(fmt.Errorf("collected a non-gauge/counter/untyped metric: %s", pb)) + panic(errors.Errorf("collected a non-gauge/counter/untyped metric: %s", pb)) } return exp diff --git a/pkg/gate/gate.go b/pkg/gate/gate.go index 43bc3a47b4c..549b0f3300d 100644 --- a/pkg/gate/gate.go +++ b/pkg/gate/gate.go @@ -8,6 +8,7 @@ import ( "time" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/gate" ) @@ -27,21 +28,17 @@ type Gate struct { func NewGate(maxConcurrent int, reg prometheus.Registerer) *Gate { g := &Gate{ g: gate.New(maxConcurrent), - inflightQueries: prometheus.NewGauge(prometheus.GaugeOpts{ + inflightQueries: promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "gate_queries_in_flight", Help: "Number of queries that are currently in flight.", }), - gateTiming: prometheus.NewHistogram(prometheus.HistogramOpts{ + gateTiming: promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "gate_duration_seconds", Help: "How many seconds it took for queries to wait at the gate.", Buckets: []float64{0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120, 240, 360, 720}, }), } - if reg != nil { - reg.MustRegister(g.inflightQueries, g.gateTiming) - } - return g } diff --git a/pkg/objstore/objstore.go b/pkg/objstore/objstore.go index ef8fc4ca4a2..c5defc43c13 100644 --- a/pkg/objstore/objstore.go +++ b/pkg/objstore/objstore.go @@ -18,6 +18,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/runutil" ) @@ -200,42 +201,39 @@ const ( // BucketWithMetrics takes a bucket and registers metrics with the given registry for // operations run against the bucket. -func BucketWithMetrics(name string, b Bucket, r prometheus.Registerer) Bucket { +func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) Bucket { bkt := &metricBucket{ bkt: b, - ops: prometheus.NewCounterVec(prometheus.CounterOpts{ + ops: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operations_total", Help: "Total number of operations against a bucket.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), - opsFailures: prometheus.NewCounterVec(prometheus.CounterOpts{ + opsFailures: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operation_failures_total", Help: "Total number of operations against a bucket that failed.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), - opsDuration: prometheus.NewHistogramVec(prometheus.HistogramOpts{ + opsDuration: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_objstore_bucket_operation_duration_seconds", Help: "Duration of operations against the bucket", ConstLabels: prometheus.Labels{"bucket": name}, Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }, []string{"operation"}), - lastSuccessfulUploadTime: prometheus.NewGaugeVec(prometheus.GaugeOpts{ + lastSuccessfulUploadTime: promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_objstore_bucket_last_successful_upload_time", Help: "Second timestamp of the last successful upload to the bucket.", }, []string{"bucket"}), } - if r != nil { - r.MustRegister(bkt.ops, bkt.opsFailures, bkt.opsDuration, bkt.lastSuccessfulUploadTime) - for _, op := range []string{iterOp, sizeOp, getOp, getRangeOp, existsOp, uploadOp, deleteOp} { - bkt.ops.WithLabelValues(op) - bkt.opsFailures.WithLabelValues(op) - bkt.opsDuration.WithLabelValues(op) - } - bkt.lastSuccessfulUploadTime.WithLabelValues(b.Name()) + for _, op := range []string{iterOp, sizeOp, getOp, getRangeOp, existsOp, uploadOp, deleteOp} { + bkt.ops.WithLabelValues(op) + bkt.opsFailures.WithLabelValues(op) + bkt.opsDuration.WithLabelValues(op) } + bkt.lastSuccessfulUploadTime.WithLabelValues(b.Name()) return bkt } diff --git a/pkg/prober/http_test.go b/pkg/prober/http_test.go index e31368a0f33..bf09f526f29 100644 --- a/pkg/prober/http_test.go +++ b/pkg/prober/http_test.go @@ -13,6 +13,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/run" + "github.com/pkg/errors" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -29,7 +30,7 @@ func TestHTTPProberReadinessInitialState(t *testing.T) { } func TestHTTPProberHealthyStatusSetting(t *testing.T) { - testError := fmt.Errorf("test error") + testError := errors.Errorf("test error") p := NewHTTP() p.Healthy() @@ -42,7 +43,7 @@ func TestHTTPProberHealthyStatusSetting(t *testing.T) { } func TestHTTPProberReadyStatusSetting(t *testing.T) { - testError := fmt.Errorf("test error") + testError := errors.Errorf("test error") p := NewHTTP() p.Ready() @@ -71,7 +72,7 @@ func TestHTTPProberMuxRegistering(t *testing.T) { var g run.Group g.Add(func() error { - return fmt.Errorf("serve probes %w", http.Serve(l, mux)) + return errors.Errorf("serve probes %w", http.Serve(l, mux)) }, func(err error) { t.Fatalf("server failed: %v", err) }) diff --git a/pkg/prober/intrumentation.go b/pkg/prober/intrumentation.go index e9869750071..6c1d7b65407 100644 --- a/pkg/prober/intrumentation.go +++ b/pkg/prober/intrumentation.go @@ -7,6 +7,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/component" ) @@ -30,7 +31,7 @@ func NewInstrumentation(component component.Component, logger log.Logger, reg pr p := InstrumentationProbe{ component: component, logger: logger, - status: prometheus.NewGaugeVec(prometheus.GaugeOpts{ + status: promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "status", Help: "Represents status (0 indicates failure, 1 indicates success) of the component.", ConstLabels: map[string]string{"component": component.String()}, @@ -38,11 +39,6 @@ func NewInstrumentation(component component.Component, logger log.Logger, reg pr []string{"check"}, ), } - - if reg != nil { - reg.MustRegister(p.status) - } - return &p } diff --git a/pkg/query/api/v1.go b/pkg/query/api/v1.go index cc6a20a0a7c..089f227e0f0 100644 --- a/pkg/query/api/v1.go +++ b/pkg/query/api/v1.go @@ -421,7 +421,7 @@ func (api *API) labelValues(r *http.Request) (interface{}, []error, *ApiError) { name := route.Param(ctx, "name") if !model.LabelNameRE.MatchString(name) { - return nil, nil, &ApiError{errorBadData, fmt.Errorf("invalid label name: %q", name)} + return nil, nil, &ApiError{errorBadData, errors.Errorf("invalid label name: %q", name)} } enablePartialResponse, apiErr := api.parsePartialResponseParam(r) @@ -456,7 +456,7 @@ func (api *API) series(r *http.Request) (interface{}, []error, *ApiError) { } if len(r.Form["match[]"]) == 0 { - return nil, nil, &ApiError{errorBadData, fmt.Errorf("no match[] parameter provided")} + return nil, nil, &ApiError{errorBadData, errors.Errorf("no match[] parameter provided")} } var start time.Time @@ -588,21 +588,21 @@ func parseTime(s string) (time.Time, error) { if t, err := time.Parse(time.RFC3339Nano, s); err == nil { return t, nil } - return time.Time{}, fmt.Errorf("cannot parse %q to a valid timestamp", s) + return time.Time{}, errors.Errorf("cannot parse %q to a valid timestamp", s) } func parseDuration(s string) (time.Duration, error) { if d, err := strconv.ParseFloat(s, 64); err == nil { ts := d * float64(time.Second) if ts > float64(math.MaxInt64) || ts < float64(math.MinInt64) { - return 0, fmt.Errorf("cannot parse %q to a valid duration. It overflows int64", s) + return 0, errors.Errorf("cannot parse %q to a valid duration. It overflows int64", s) } return time.Duration(ts), nil } if d, err := model.ParseDuration(s); err == nil { return time.Duration(d), nil } - return 0, fmt.Errorf("cannot parse %q to a valid duration", s) + return 0, errors.Errorf("cannot parse %q to a valid duration", s) } func (api *API) labelNames(r *http.Request) (interface{}, []error, *ApiError) { diff --git a/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go b/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go index 326c50b80bc..ce0bc729aeb 100644 --- a/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go +++ b/pkg/query/internal/test-storeset-pre-v0.8.0/storeset.go @@ -19,6 +19,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/runutil" @@ -126,12 +127,12 @@ func (c *storeSetNodeCollector) Collect(ch chan<- prometheus.Metric) { // NewStoreSet returns a new set of stores from cluster peers and statically configured ones. func NewStoreSet( logger log.Logger, - reg *prometheus.Registry, + reg prometheus.Registerer, storeSpecs func() []StoreSpec, dialOpts []grpc.DialOption, unhealthyStoreTimeout time.Duration, ) *StoreSet { - storeNodeConnections := prometheus.NewGauge(prometheus.GaugeOpts{ + storeNodeConnections := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_store_nodes_grpc_connections", Help: "Number indicating current number of gRPC connection to store nodes. This indicates also to how many stores query node have access to.", }) @@ -139,9 +140,6 @@ func NewStoreSet( if logger == nil { logger = log.NewNopLogger() } - if reg != nil { - reg.MustRegister(storeNodeConnections) - } if storeSpecs == nil { storeSpecs = func() []StoreSpec { return nil } } diff --git a/pkg/receive/config.go b/pkg/receive/config.go index 782e9a9b115..ed706e0f1f8 100644 --- a/pkg/receive/config.go +++ b/pkg/receive/config.go @@ -16,6 +16,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "gopkg.in/fsnotify.v1" ) @@ -58,7 +59,7 @@ type ConfigWatcher struct { } // NewConfigWatcher creates a new ConfigWatcher. -func NewConfigWatcher(logger log.Logger, r prometheus.Registerer, path string, interval model.Duration) (*ConfigWatcher, error) { +func NewConfigWatcher(logger log.Logger, reg prometheus.Registerer, path string, interval model.Duration) (*ConfigWatcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -77,63 +78,49 @@ func NewConfigWatcher(logger log.Logger, r prometheus.Registerer, path string, i interval: time.Duration(interval), logger: logger, watcher: watcher, - hashGauge: prometheus.NewGauge( + hashGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_hash", Help: "Hash of the currently loaded hashring configuration file.", }), - successGauge: prometheus.NewGauge( + successGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_last_reload_successful", Help: "Whether the last hashring configuration file reload attempt was successful.", }), - lastSuccessTimeGauge: prometheus.NewGauge( + lastSuccessTimeGauge: promauto.With(reg).NewGauge( prometheus.GaugeOpts{ Name: "thanos_receive_config_last_reload_success_timestamp_seconds", Help: "Timestamp of the last successful hashring configuration file reload.", }), - changesCounter: prometheus.NewCounter( + changesCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_changes_total", Help: "The number of times the hashrings configuration file has changed.", }), - errorCounter: prometheus.NewCounter( + errorCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_errors_total", Help: "The number of errors watching the hashrings configuration file.", }), - refreshCounter: prometheus.NewCounter( + refreshCounter: promauto.With(reg).NewCounter( prometheus.CounterOpts{ Name: "thanos_receive_hashrings_file_refreshes_total", Help: "The number of refreshes of the hashrings configuration file.", }), - hashringNodesGauge: prometheus.NewGaugeVec( + hashringNodesGauge: promauto.With(reg).NewGaugeVec( prometheus.GaugeOpts{ Name: "thanos_receive_hashring_nodes", Help: "The number of nodes per hashring.", }, []string{"name"}), - hashringTenantsGauge: prometheus.NewGaugeVec( + hashringTenantsGauge: promauto.With(reg).NewGaugeVec( prometheus.GaugeOpts{ Name: "thanos_receive_hashring_tenants", Help: "The number of tenants per hashring.", }, []string{"name"}), } - - if r != nil { - r.MustRegister( - c.hashGauge, - c.successGauge, - c.lastSuccessTimeGauge, - c.changesCounter, - c.errorCounter, - c.refreshCounter, - c.hashringNodesGauge, - c.hashringTenantsGauge, - ) - } - return c, nil } diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 5b5f7897d72..741e99bfc94 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -22,6 +22,7 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage" @@ -90,7 +91,7 @@ func NewHandler(logger log.Logger, o *Options) *Handler { router: route.New(), options: o, peers: newPeerGroup(o.DialOpts...), - forwardRequestsTotal: prometheus.NewCounterVec( + forwardRequestsTotal: promauto.With(o.Registry).NewCounterVec( prometheus.CounterOpts{ Name: "thanos_receive_forward_requests_total", Help: "The number of forward requests.", @@ -101,7 +102,6 @@ func NewHandler(logger log.Logger, o *Options) *Handler { ins := extpromhttp.NewNopInstrumentationMiddleware() if o.Registry != nil { ins = extpromhttp.NewInstrumentationMiddleware(o.Registry) - o.Registry.MustRegister(h.forwardRequestsTotal) } readyf := h.testReady diff --git a/pkg/replicate/replicater.go b/pkg/replicate/replicater.go index 2a505d4f943..c4428e86966 100644 --- a/pkg/replicate/replicater.go +++ b/pkg/replicate/replicater.go @@ -5,7 +5,6 @@ package replicate import ( "context" - "fmt" "math/rand" "strconv" "strings" @@ -18,6 +17,7 @@ import ( opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/compact" @@ -139,19 +139,16 @@ func RunReplicate( return err } - replicationRunCounter := prometheus.NewCounterVec(prometheus.CounterOpts{ + replicationRunCounter := promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_replicate_replication_runs_total", Help: "The number of replication runs split by success and error.", }, []string{"result"}) - replicationRunDuration := prometheus.NewHistogramVec(prometheus.HistogramOpts{ + replicationRunDuration := promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_replicate_replication_run_duration_seconds", Help: "The Duration of replication runs split by success and error.", }, []string{"result"}) - reg.MustRegister(replicationRunCounter) - reg.MustRegister(replicationRunDuration) - blockFilter := NewBlockFilter( logger, labelSelector, @@ -174,7 +171,7 @@ func RunReplicate( level.Info(logger).Log("msg", "running replication attempt") if err := newReplicationScheme(logger, metrics, blockFilter, fromBkt, toBkt, reg).execute(ctx); err != nil { - return fmt.Errorf("replication execute: %w", err) + return errors.Errorf("replication execute: %w", err) } return nil diff --git a/pkg/replicate/scheme.go b/pkg/replicate/scheme.go index 30be01f0f2a..b237bab5e13 100644 --- a/pkg/replicate/scheme.go +++ b/pkg/replicate/scheme.go @@ -6,7 +6,6 @@ package replicate import ( "bytes" "context" - "fmt" "io" "io/ioutil" "path" @@ -17,6 +16,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" thanosblock "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -124,41 +124,31 @@ type replicationMetrics struct { func newReplicationMetrics(reg prometheus.Registerer) *replicationMetrics { m := &replicationMetrics{ - originIterations: prometheus.NewCounter(prometheus.CounterOpts{ + originIterations: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_origin_iterations_total", Help: "Total number of objects iterated over in the origin bucket.", }), - originMetaLoads: prometheus.NewCounter(prometheus.CounterOpts{ + originMetaLoads: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_origin_meta_loads_total", Help: "Total number of meta.json reads in the origin bucket.", }), - originPartialMeta: prometheus.NewCounter(prometheus.CounterOpts{ + originPartialMeta: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_origin_partial_meta_reads_total", Help: "Total number of partial meta reads encountered.", }), - blocksAlreadyReplicated: prometheus.NewCounter(prometheus.CounterOpts{ + blocksAlreadyReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_blocks_already_replicated_total", Help: "Total number of blocks skipped due to already being replicated.", }), - blocksReplicated: prometheus.NewCounter(prometheus.CounterOpts{ + blocksReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_blocks_replicated_total", Help: "Total number of blocks replicated.", }), - objectsReplicated: prometheus.NewCounter(prometheus.CounterOpts{ + objectsReplicated: promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_replicate_objects_replicated_total", Help: "Total number of objects replicated.", }), } - - if reg != nil { - reg.MustRegister(m.originIterations) - reg.MustRegister(m.originMetaLoads) - reg.MustRegister(m.originPartialMeta) - reg.MustRegister(m.blocksAlreadyReplicated) - reg.MustRegister(m.blocksReplicated) - reg.MustRegister(m.objectsReplicated) - } - return m } @@ -202,7 +192,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { return nil } if err != nil { - return fmt.Errorf("load meta for block %v from origin bucket: %w", id.String(), err) + return errors.Errorf("load meta for block %v from origin bucket: %w", id.String(), err) } if len(meta.Thanos.Labels) == 0 { @@ -217,7 +207,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { return nil }); err != nil { - return fmt.Errorf("iterate over origin bucket: %w", err) + return errors.Errorf("iterate over origin bucket: %w", err) } candidateBlocks := []*metadata.Meta{} @@ -237,7 +227,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { for _, b := range candidateBlocks { if err := rs.ensureBlockIsReplicated(ctx, b.BlockMeta.ULID); err != nil { - return fmt.Errorf("ensure block %v is replicated: %w", b.BlockMeta.ULID.String(), err) + return errors.Errorf("ensure block %v is replicated: %w", b.BlockMeta.ULID.String(), err) } } @@ -256,7 +246,7 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli originMetaFile, err := rs.fromBkt.Get(ctx, metaFile) if err != nil { - return fmt.Errorf("get meta file from origin bucket: %w", err) + return errors.Errorf("get meta file from origin bucket: %w", err) } defer runutil.CloseWithLogOnErr(rs.logger, originMetaFile, "close original meta file") @@ -268,18 +258,18 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli } if err != nil && !rs.toBkt.IsObjNotFoundErr(err) && err != io.EOF { - return fmt.Errorf("get meta file from target bucket: %w", err) + return errors.Errorf("get meta file from target bucket: %w", err) } originMetaFileContent, err := ioutil.ReadAll(originMetaFile) if err != nil { - return fmt.Errorf("read origin meta file: %w", err) + return errors.Errorf("read origin meta file: %w", err) } if targetMetaFile != nil && !rs.toBkt.IsObjNotFoundErr(err) { targetMetaFileContent, err := ioutil.ReadAll(targetMetaFile) if err != nil { - return fmt.Errorf("read target meta file: %w", err) + return errors.Errorf("read target meta file: %w", err) } if bytes.Equal(originMetaFileContent, targetMetaFileContent) { @@ -296,7 +286,7 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli if err := rs.fromBkt.Iter(ctx, chunksDir, func(objectName string) error { err := rs.ensureObjectReplicated(ctx, objectName) if err != nil { - return fmt.Errorf("replicate object %v: %w", objectName, err) + return errors.Errorf("replicate object %v: %w", objectName, err) } return nil @@ -305,13 +295,13 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli } if err := rs.ensureObjectReplicated(ctx, indexFile); err != nil { - return fmt.Errorf("replicate index file: %w", err) + return errors.Errorf("replicate index file: %w", err) } level.Debug(rs.logger).Log("msg", "replicating meta file", "object", metaFile) if err := rs.toBkt.Upload(ctx, metaFile, bytes.NewReader(originMetaFileContent)); err != nil { - return fmt.Errorf("upload meta file: %w", err) + return errors.Errorf("upload meta file: %w", err) } rs.metrics.blocksReplicated.Inc() @@ -326,7 +316,7 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN exists, err := rs.toBkt.Exists(ctx, objectName) if err != nil { - return fmt.Errorf("check if %v exists in target bucket: %w", objectName, err) + return errors.Errorf("check if %v exists in target bucket: %w", objectName, err) } // skip if already exists. @@ -339,13 +329,13 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN r, err := rs.fromBkt.Get(ctx, objectName) if err != nil { - return fmt.Errorf("get %v from origin bucket: %w", objectName, err) + return errors.Errorf("get %v from origin bucket: %w", objectName, err) } defer r.Close() if err = rs.toBkt.Upload(ctx, objectName, r); err != nil { - return fmt.Errorf("upload %v to target bucket: %w", objectName, err) + return errors.Errorf("upload %v to target bucket: %w", objectName, err) } level.Info(rs.logger).Log("msg", "object replicated", "object", objectName) @@ -362,22 +352,22 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN func loadMeta(ctx context.Context, rs *replicationScheme, id ulid.ULID) (*metadata.Meta, bool, error) { fetcher, err := thanosblock.NewMetaFetcher(rs.logger, 32, rs.fromBkt, "", rs.reg) if err != nil { - return nil, false, fmt.Errorf("create meta fetcher with buecket %v: %w", rs.fromBkt, err) + return nil, false, errors.Errorf("create meta fetcher with buecket %v: %w", rs.fromBkt, err) } metas, _, err := fetcher.Fetch(ctx) if err != nil { switch errors.Cause(err) { default: - return nil, false, fmt.Errorf("fetch meta: %w", err) + return nil, false, errors.Errorf("fetch meta: %w", err) case thanosblock.ErrorSyncMetaNotFound: - return nil, true, fmt.Errorf("fetch meta: %w", err) + return nil, true, errors.Errorf("fetch meta: %w", err) } } m, ok := metas[id] if !ok { - return nil, true, fmt.Errorf("fetch meta: %w", err) + return nil, true, errors.Errorf("fetch meta: %w", err) } return m, false, nil diff --git a/pkg/rule/api/v1.go b/pkg/rule/api/v1.go index 682a79d5e77..628d678f708 100644 --- a/pkg/rule/api/v1.go +++ b/pkg/rule/api/v1.go @@ -4,12 +4,12 @@ package v1 import ( - "fmt" "net/http" "strconv" "time" "github.com/NYTimes/gziphandler" + "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/go-kit/kit/log" @@ -111,7 +111,7 @@ func (api *API) rules(r *http.Request) (interface{}, []error, *qapi.ApiError) { Type: "recording", } default: - err := fmt.Errorf("rule %q: unsupported type %T", r.Name(), rule) + err := errors.Errorf("rule %q: unsupported type %T", r.Name(), rule) return nil, nil, &qapi.ApiError{Typ: qapi.ErrorInternal, Err: err} } diff --git a/pkg/server/grpc/grpc.go b/pkg/server/grpc/grpc.go index 34e25a90f24..2e230e82c81 100644 --- a/pkg/server/grpc/grpc.go +++ b/pkg/server/grpc/grpc.go @@ -17,6 +17,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -50,11 +51,10 @@ func New(logger log.Logger, reg prometheus.Registerer, tracer opentracing.Tracer met.EnableHandlingTimeHistogram( grpc_prometheus.WithHistogramBuckets([]float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}), ) - panicsTotal := prometheus.NewCounter(prometheus.CounterOpts{ + panicsTotal := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_grpc_req_panics_recovered_total", Help: "Total number of gRPC requests recovered from internal panic.", }) - reg.MustRegister(met, panicsTotal) grpcPanicRecoveryHandler := func(p interface{}) (err error) { panicsTotal.Inc() diff --git a/pkg/shipper/shipper.go b/pkg/shipper/shipper.go index 39e7d61d868..3055bec8177 100644 --- a/pkg/shipper/shipper.go +++ b/pkg/shipper/shipper.go @@ -20,6 +20,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/fileutil" @@ -37,40 +38,33 @@ type metrics struct { uploadedCompacted prometheus.Gauge } -func newMetrics(r prometheus.Registerer, uploadCompacted bool) *metrics { +func newMetrics(reg prometheus.Registerer, uploadCompacted bool) *metrics { var m metrics - m.dirSyncs = prometheus.NewCounter(prometheus.CounterOpts{ + m.dirSyncs = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_dir_syncs_total", Help: "Total number of dir syncs", }) - m.dirSyncFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.dirSyncFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_dir_sync_failures_total", Help: "Total number of failed dir syncs", }) - m.uploads = prometheus.NewCounter(prometheus.CounterOpts{ + m.uploads = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_uploads_total", Help: "Total number of uploaded blocks", }) - m.uploadFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.uploadFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_shipper_upload_failures_total", Help: "Total number of block upload failures", }) - m.uploadedCompacted = prometheus.NewGauge(prometheus.GaugeOpts{ + uploadCompactedGaugeOpts := prometheus.GaugeOpts{ Name: "thanos_shipper_upload_compacted_done", Help: "If 1 it means shipper uploaded all compacted blocks from the filesystem.", - }) - - if r != nil { - r.MustRegister( - m.dirSyncs, - m.dirSyncFailures, - m.uploads, - m.uploadFailures, - ) - if uploadCompacted { - r.MustRegister(m.uploadedCompacted) - } + } + if uploadCompacted { + m.uploadedCompacted = promauto.With(reg).NewGauge(uploadCompactedGaugeOpts) + } else { + m.uploadedCompacted = promauto.With(nil).NewGauge(uploadCompactedGaugeOpts) } return &m } diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index 0a91f0032da..7c17a2fa957 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -24,6 +24,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/prometheus/prometheus/tsdb/chunks" @@ -101,65 +102,65 @@ type bucketStoreMetrics struct { func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { var m bucketStoreMetrics - m.blockLoads = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockLoads = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_loads_total", Help: "Total number of remote block loading attempts.", }) - m.blockLoadFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockLoadFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_load_failures_total", Help: "Total number of failed remote block loading attempts.", }) - m.blockDrops = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockDrops = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_drops_total", Help: "Total number of local blocks that were dropped.", }) - m.blockDropFailures = prometheus.NewCounter(prometheus.CounterOpts{ + m.blockDropFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_block_drop_failures_total", Help: "Total number of local blocks that failed to be dropped.", }) - m.blocksLoaded = prometheus.NewGauge(prometheus.GaugeOpts{ + m.blocksLoaded = promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_bucket_store_blocks_loaded", Help: "Number of currently loaded blocks.", }) - m.seriesDataTouched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataTouched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_touched", Help: "How many items of a data type in a block were touched for a single series request.", }, []string{"data_type"}) - m.seriesDataFetched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataFetched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_fetched", Help: "How many items of a data type in a block were fetched for a single series request.", }, []string{"data_type"}) - m.seriesDataSizeTouched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataSizeTouched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_size_touched_bytes", Help: "Size of all items of a data type in a block were touched for a single series request.", }, []string{"data_type"}) - m.seriesDataSizeFetched = prometheus.NewSummaryVec(prometheus.SummaryOpts{ + m.seriesDataSizeFetched = promauto.With(reg).NewSummaryVec(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_data_size_fetched_bytes", Help: "Size of all items of a data type in a block were fetched for a single series request.", }, []string{"data_type"}) - m.seriesBlocksQueried = prometheus.NewSummary(prometheus.SummaryOpts{ + m.seriesBlocksQueried = promauto.With(reg).NewSummary(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_blocks_queried", Help: "Number of blocks in a bucket store that were touched to satisfy a query.", }) - m.seriesGetAllDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.seriesGetAllDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_series_get_all_duration_seconds", Help: "Time it takes until all per-block prepares and preloads for a query are finished.", Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }) - m.seriesMergeDuration = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.seriesMergeDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_series_merge_duration_seconds", Help: "Time it takes to merge sub-results from all queried blocks into a single result.", Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }) - m.resultSeriesCount = prometheus.NewSummary(prometheus.SummaryOpts{ + m.resultSeriesCount = promauto.With(reg).NewSummary(prometheus.SummaryOpts{ Name: "thanos_bucket_store_series_result_series", Help: "Number of series observed in the final result of a query.", }) - m.chunkSizeBytes = prometheus.NewHistogram(prometheus.HistogramOpts{ + m.chunkSizeBytes = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ Name: "thanos_bucket_store_sent_chunk_size_bytes", Help: "Size in bytes of the chunks for the single series, which is adequate to the gRPC message size sent to querier.", Buckets: []float64{ @@ -167,40 +168,18 @@ func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { }, }) - m.queriesDropped = prometheus.NewCounter(prometheus.CounterOpts{ + m.queriesDropped = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_queries_dropped_total", Help: "Number of queries that were dropped due to the sample limit.", }) - m.queriesLimit = prometheus.NewGauge(prometheus.GaugeOpts{ + m.queriesLimit = promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_bucket_store_queries_concurrent_max", Help: "Number of maximum concurrent queries.", }) - m.seriesRefetches = prometheus.NewCounter(prometheus.CounterOpts{ + m.seriesRefetches = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_bucket_store_series_refetches_total", Help: fmt.Sprintf("Total number of cases where %v bytes was not enough was to fetch series from index, resulting in refetch.", maxSeriesSize), }) - - if reg != nil { - reg.MustRegister( - m.blockLoads, - m.blockLoadFailures, - m.blockDrops, - m.blockDropFailures, - m.blocksLoaded, - m.seriesDataTouched, - m.seriesDataFetched, - m.seriesDataSizeTouched, - m.seriesDataSizeFetched, - m.seriesBlocksQueried, - m.seriesGetAllDuration, - m.seriesMergeDuration, - m.resultSeriesCount, - m.chunkSizeBytes, - m.queriesDropped, - m.queriesLimit, - m.seriesRefetches, - ) - } return &m } diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index 94550c7b5bc..a95372ec8f0 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -28,6 +28,7 @@ import ( "github.com/leanovate/gopter/prop" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/relabel" @@ -1298,7 +1299,7 @@ func benchSeries(t testutil.TB, number int, dimension Dimension, cases ...int) { partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, chunkPool: chunkPool, - seriesRefetches: prometheus.NewCounter(prometheus.CounterOpts{}), + seriesRefetches: promauto.With(nil).NewCounter(prometheus.CounterOpts{}), } blocks = append(blocks, b) } diff --git a/pkg/store/cache/inmemory.go b/pkg/store/cache/inmemory.go index 739d73b5bbd..abc589f1db7 100644 --- a/pkg/store/cache/inmemory.go +++ b/pkg/store/cache/inmemory.go @@ -16,6 +16,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "gopkg.in/yaml.v2" ) @@ -89,77 +90,74 @@ func NewInMemoryIndexCacheWithConfig(logger log.Logger, reg prometheus.Registere maxItemSizeBytes: uint64(config.MaxItemSize), } - c.evicted = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.evicted = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_evicted_total", Help: "Total number of items that were evicted from the index cache.", }, []string{"item_type"}) c.evicted.WithLabelValues(cacheTypePostings) c.evicted.WithLabelValues(cacheTypeSeries) - c.added = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.added = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_added_total", Help: "Total number of items that were added to the index cache.", }, []string{"item_type"}) c.added.WithLabelValues(cacheTypePostings) c.added.WithLabelValues(cacheTypeSeries) - c.requests = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.requests = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_requests_total", Help: "Total number of requests to the cache.", }, []string{"item_type"}) c.requests.WithLabelValues(cacheTypePostings) c.requests.WithLabelValues(cacheTypeSeries) - c.overflow = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.overflow = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_items_overflowed_total", Help: "Total number of items that could not be added to the cache due to being too big.", }, []string{"item_type"}) c.overflow.WithLabelValues(cacheTypePostings) c.overflow.WithLabelValues(cacheTypeSeries) - c.hits = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.hits = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_hits_total", Help: "Total number of requests to the cache that were a hit.", }, []string{"item_type"}) c.hits.WithLabelValues(cacheTypePostings) c.hits.WithLabelValues(cacheTypeSeries) - c.current = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.current = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_items", Help: "Current number of items in the index cache.", }, []string{"item_type"}) c.current.WithLabelValues(cacheTypePostings) c.current.WithLabelValues(cacheTypeSeries) - c.currentSize = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.currentSize = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_items_size_bytes", Help: "Current byte size of items in the index cache.", }, []string{"item_type"}) c.currentSize.WithLabelValues(cacheTypePostings) c.currentSize.WithLabelValues(cacheTypeSeries) - c.totalCurrentSize = prometheus.NewGaugeVec(prometheus.GaugeOpts{ + c.totalCurrentSize = promauto.With(reg).NewGaugeVec(prometheus.GaugeOpts{ Name: "thanos_store_index_cache_total_size_bytes", Help: "Current byte size of items (both value and key) in the index cache.", }, []string{"item_type"}) c.totalCurrentSize.WithLabelValues(cacheTypePostings) c.totalCurrentSize.WithLabelValues(cacheTypeSeries) - if reg != nil { - reg.MustRegister(prometheus.NewGaugeFunc(prometheus.GaugeOpts{ - Name: "thanos_store_index_cache_max_size_bytes", - Help: "Maximum number of bytes to be held in the index cache.", - }, func() float64 { - return float64(c.maxSizeBytes) - })) - reg.MustRegister(prometheus.NewGaugeFunc(prometheus.GaugeOpts{ - Name: "thanos_store_index_cache_max_item_size_bytes", - Help: "Maximum number of bytes for single entry to be held in the index cache.", - }, func() float64 { - return float64(c.maxItemSizeBytes) - })) - reg.MustRegister(c.requests, c.hits, c.added, c.evicted, c.current, c.currentSize, c.totalCurrentSize, c.overflow) - } + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_store_index_cache_max_size_bytes", + Help: "Maximum number of bytes to be held in the index cache.", + }, func() float64 { + return float64(c.maxSizeBytes) + }) + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_store_index_cache_max_item_size_bytes", + Help: "Maximum number of bytes for single entry to be held in the index cache.", + }, func() float64 { + return float64(c.maxItemSizeBytes) + }) // Initialize LRU cache with a high size limit since we will manage evictions ourselves // based on stored size using `RemoveOldest` method. diff --git a/pkg/store/cache/memcached.go b/pkg/store/cache/memcached.go index db7ec61c635..74ce30299e1 100644 --- a/pkg/store/cache/memcached.go +++ b/pkg/store/cache/memcached.go @@ -11,6 +11,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/cacheutil" ) @@ -36,24 +37,20 @@ func NewMemcachedIndexCache(logger log.Logger, memcached cacheutil.MemcachedClie memcached: memcached, } - c.requests = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.requests = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_requests_total", Help: "Total number of items requests to the cache.", }, []string{"item_type"}) c.requests.WithLabelValues(cacheTypePostings) c.requests.WithLabelValues(cacheTypeSeries) - c.hits = prometheus.NewCounterVec(prometheus.CounterOpts{ + c.hits = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_store_index_cache_hits_total", Help: "Total number of items requests to the cache that were a hit.", }, []string{"item_type"}) c.hits.WithLabelValues(cacheTypePostings) c.hits.WithLabelValues(cacheTypeSeries) - if reg != nil { - reg.MustRegister(c.requests, c.hits) - } - level.Info(logger).Log("msg", "created memcached index cache") return c, nil diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 4539ec6e093..5aeaca32588 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -19,6 +19,7 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -63,16 +64,11 @@ type proxyStoreMetrics struct { func newProxyStoreMetrics(reg prometheus.Registerer) *proxyStoreMetrics { var m proxyStoreMetrics - m.emptyStreamResponses = prometheus.NewCounter(prometheus.CounterOpts{ + m.emptyStreamResponses = promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: "thanos_proxy_store_empty_stream_responses_total", Help: "Total number of empty responses received.", }) - if reg != nil { - reg.MustRegister( - m.emptyStreamResponses, - ) - } return &m } diff --git a/pkg/ui/ui.go b/pkg/ui/ui.go index 1114b8774e9..269b22cd9c1 100644 --- a/pkg/ui/ui.go +++ b/pkg/ui/ui.go @@ -5,7 +5,6 @@ package ui import ( "bytes" - "fmt" "html/template" "io" "net/http" @@ -16,6 +15,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/pkg/errors" "github.com/prometheus/common/route" "github.com/prometheus/common/version" ) @@ -58,15 +58,15 @@ func (bu *BaseUI) serveStaticAsset(w http.ResponseWriter, req *http.Request) { func (bu *BaseUI) getTemplate(name string) (string, error) { baseTmpl, err := Asset("pkg/ui/templates/_base.html") if err != nil { - return "", fmt.Errorf("error reading base template: %s", err) + return "", errors.Errorf("error reading base template: %s", err) } menuTmpl, err := Asset(filepath.Join("pkg/ui/templates", bu.menuTmpl)) if err != nil { - return "", fmt.Errorf("error reading menu template %s: %s", bu.menuTmpl, err) + return "", errors.Errorf("error reading menu template %s: %s", bu.menuTmpl, err) } pageTmpl, err := Asset(filepath.Join("pkg/ui/templates", name)) if err != nil { - return "", fmt.Errorf("error reading page template %s: %s", name, err) + return "", errors.Errorf("error reading page template %s: %s", name, err) } return string(baseTmpl) + string(menuTmpl) + string(pageTmpl), nil } From 45d6bb8d83c927b1e490172a2cb66307b0db2546 Mon Sep 17 00:00:00 2001 From: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> Date: Mon, 9 Mar 2020 20:23:57 +0000 Subject: [PATCH 012/190] ruler: Fix #2204 bug where alert queue is unpoppable causing full queue and dropped alerts (#2238) * Add test for alert queue Pop after multiple Push Signed-off-by: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> * Fix alert queue bug by resignal after Pop (#2204) Signed-off-by: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> * Fix alert queue test and simplify Signed-off-by: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> * Update CHANGELOG.md Signed-off-by: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> * Link to thanos-io/thanos PR in CHANGELOG.md Signed-off-by: Robin Clarke-Williams <43950815+robincw-gr@users.noreply.github.com> --- CHANGELOG.md | 4 ++++ pkg/alert/alert.go | 6 ++++++ pkg/alert/alert_test.go | 25 +++++++++++++++++++++++++ 3 files changed, 35 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c33357a3915..87b84f14d0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased +### Fixed + +- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped + ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0-rc.1) - 2020.03.02 ### Fixed diff --git a/pkg/alert/alert.go b/pkg/alert/alert.go index 0bb500e77a0..0a7b4b30e1f 100644 --- a/pkg/alert/alert.go +++ b/pkg/alert/alert.go @@ -193,6 +193,12 @@ func (q *Queue) Pop(termc <-chan struct{}) []*Alert { q.popped.Add(float64(n)) + if len(q.queue) > 0 { + select { + case q.morec <- struct{}{}: + default: + } + } return as[:n] } diff --git a/pkg/alert/alert_test.go b/pkg/alert/alert_test.go index 7139dfc6528..67f280280d9 100644 --- a/pkg/alert/alert_test.go +++ b/pkg/alert/alert_test.go @@ -19,6 +19,31 @@ import ( "github.com/thanos-io/thanos/pkg/testutil" ) +func TestQueue_Pop_all_Pushed(t *testing.T) { + qcapacity := 10 + batchsize := 1 + pushes := 3 + + q := NewQueue( + nil, nil, qcapacity, batchsize, nil, nil, + ) + for i := 0; i < pushes; i++ { + q.Push([]*Alert{ + {}, + {}, + }) + } + + timeoutc := make(chan struct{}, 1) + time.AfterFunc(time.Second, func() { timeoutc <- struct{}{} }) + popped := 0 + for p := q.Pop(timeoutc); p != nil; p = q.Pop(timeoutc) { + popped += len(p) + } + + testutil.Equals(t, pushes*2, popped) +} + func TestQueue_Push_Relabelled(t *testing.T) { q := NewQueue( nil, nil, 10, 10, From 50ffaaaa013ae229e2274a2ead50363b94391f8b Mon Sep 17 00:00:00 2001 From: Jacob Colvin Date: Tue, 10 Mar 2020 08:15:41 -0400 Subject: [PATCH 013/190] bucket: improve shard label handling (#2219) Signed-off-by: Jacob Colvin --- pkg/ui/bindata.go | 140 ++++++++++++++++++------------------- pkg/ui/static/js/bucket.js | 13 ++-- 2 files changed, 75 insertions(+), 78 deletions(-) diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index e79365fbba2..0e7a59a9091 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -160,7 +160,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -180,7 +180,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1582318785, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -280,7 +280,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -300,7 +300,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -320,7 +320,7 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -340,7 +340,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -360,7 +360,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -380,7 +380,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -400,7 +400,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -420,7 +420,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -440,7 +440,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -460,7 +460,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -480,12 +480,12 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\xdd\x6f\xdb\xba\x15\x7f\xf7\x5f\x71\xae\x16\xc0\x12\x62\x2b\x2e\x30\xec\x21\xb1\x0d\xdc\xa5\x05\x76\x87\xac\x1d\x9a\x3c\x2d\x28\x10\x5a\x3c\xb6\xb8\x50\xa4\x46\x52\x71\xdd\xc0\xff\xfb\x40\x52\x1f\xb4\x22\xbb\x4e\xaf\x10\x04\x16\x79\xce\xef\x7c\x7f\x68\x23\xe5\x86\x63\x9a\xe5\x44\x19\x9d\x72\x49\x68\x3c\xce\x2a\xa5\x50\x98\xf1\x04\x5e\x47\x00\x00\xe3\x92\x64\xcf\x64\x83\x7a\x7c\x0d\x8f\x63\xc3\x0a\xe4\x4c\xe0\xf8\xdb\x68\x9f\xdc\x8c\x0e\x01\x34\x9a\x2f\xe2\x4e\x12\x7a\x4b\x38\x5f\x91\xec\x39\xa6\x8a\x6c\x93\x9b\xd1\x68\x5d\x89\xcc\x30\x29\xc0\x1e\xc4\x49\x0d\xcd\xd6\x10\x9b\x9c\x08\xa9\x53\x85\x6b\x85\x3a\x47\xfa\xbb\x81\xc5\x02\xa2\xd9\x6c\xf6\x61\xea\xfe\x1e\x66\xb3\x6b\xf7\xf7\x9f\xa8\xe1\xb3\x4f\xcd\x87\x4a\xc1\x02\xa2\xfb\x9d\xc8\x72\x25\x05\xfb\xc1\xc4\x06\x56\x5c\x66\xcf\x1a\xd6\x4a\x16\xa0\xb0\x90\x06\x41\x1b\xa9\xc8\x06\xa3\x1b\x07\xb0\x1f\xf5\xe5\x5b\x9c\xdf\x16\x20\x2a\xce\x43\x29\x17\x71\xf4\x17\x54\x2a\x4a\x52\x9d\xcb\x6d\x9c\xa4\x6b\x26\x68\x3c\x4e\x09\x47\x65\xc6\x49\x6a\xf0\xbb\x89\xff\x79\xff\xe5\x73\xaa\x8d\x62\x62\xc3\xd6\xbb\x00\x71\xe2\xf0\x26\xf0\xd7\x24\xb9\x69\x21\x35\x9a\x07\x56\xa0\xac\x4c\xdc\x78\x25\x0e\x45\xda\x87\xcb\x8c\xd8\x8b\x54\xa1\x0b\x4a\xc0\xbe\x9f\xc0\x87\xd9\x6c\x36\xb3\x5e\x75\xef\x80\x5c\xe3\xa0\xca\x39\xa3\x18\x37\x74\xf6\x79\x21\x0a\x32\x29\x0c\x61\x02\xad\xdb\xa8\xcc\xaa\x02\x85\x49\x37\x68\x3e\x71\xb4\x3f\xff\xbe\xfb\x83\xc6\xe3\x5b\x59\x94\xc4\xa9\xa6\xc7\x81\x6c\xc7\x6f\x43\x0d\x0b\x10\xb8\x85\x3a\xfa\x2f\x4c\x57\x84\xb3\x1f\x5e\xe5\x87\x3a\x43\xe2\x56\x52\x0f\x81\x12\x43\x1e\xc8\x8a\xe3\x29\x94\x8f\x0d\x51\xdc\xe3\x36\xcc\x70\xd4\xb0\x80\xd7\x7d\x60\x59\x8b\x99\x12\x4a\x6f\x25\xaf\x0a\x11\xbf\x9a\x5d\x89\xd7\x30\xf6\x91\x19\x4f\x80\xd1\x6b\x18\x7f\xc5\x92\xb3\x8c\x8c\xf7\x01\xee\xf9\xdc\x77\x64\x85\xfc\xfd\xbc\x4a\x72\xfb\x6e\xa4\xe4\x86\x95\x67\xf3\x53\x62\xb0\x91\x7c\x6f\x88\x32\xbf\xc4\xf9\x49\x50\xc7\x37\xcc\xf8\x55\x6e\x75\x93\xb2\xbe\x6e\x0e\x32\x31\x2d\x48\xd9\xe5\x29\xed\x27\xaa\x7d\xae\xae\xe0\xc1\x06\x05\x98\x06\x93\x23\xac\x99\xd2\x06\x32\xa7\x10\xc8\xb5\x3b\x6b\xda\x46\x3a\xc0\x3d\x04\xf8\x3b\x54\x82\xfd\xaf\x42\xf8\xb7\x92\x05\x9a\x1c\x2b\x0d\xdc\xfa\xde\xd6\xbd\x01\x46\x51\x18\xb6\x66\xa8\x01\x49\x96\x83\xce\x89\xa2\x56\x7e\xa5\x91\x0e\xe1\x11\x5d\xab\xe1\xf4\x5c\x43\xa9\x50\xa3\x30\x13\x90\x26\x47\xb5\x65\x1a\x81\x70\xee\x45\x68\x20\x0a\x81\x32\x5d\x72\xb2\x1b\x86\xc3\xef\x06\x95\x20\x9c\xef\x2c\x32\x01\x8e\x1b\x14\xf4\xad\x71\x5e\xde\x02\x8e\x16\x7a\xf3\x04\x9d\xc8\x9b\xf9\xdb\x02\xa2\xe8\x18\x35\xd4\xb5\xf0\x8c\x3b\x5b\xc5\x69\xc8\xa9\x1f\xc3\xb7\x6f\x37\x47\x01\xac\x48\x07\xb0\x80\x4a\x50\x5c\x33\x81\x83\xe1\x3d\xb0\x27\x57\x72\x0b\x4f\xae\x0a\xe0\xe2\x35\x94\xb4\x07\x21\x0d\xac\x65\x25\x28\x30\x01\x17\xaf\x5f\x56\xff\xc5\xcc\xa4\xcf\xb8\xd3\x71\x4f\xc5\x64\xff\x74\x5c\xaf\x37\x0d\x6d\xe8\x51\x68\x2a\x25\xac\x03\x4e\x00\x0d\xde\xfc\x14\xbe\x89\x99\x6f\x34\x8f\x5d\x5f\xef\x1b\xf1\x13\xdf\xd6\x38\xef\xf1\x6e\x2d\xf9\xde\x89\x8c\x43\x07\x7a\x65\x92\x94\xa3\xd8\x98\x1c\x2e\xe1\x43\x72\x5c\x7a\x8b\x75\x52\xfb\xc6\xc4\xf7\x3a\x10\x3a\xf7\x9f\xe0\x7f\xcb\xbb\x3f\x18\x45\xcd\xe3\xb3\x7d\x01\x4f\x1c\x5f\x90\x5f\xc3\xc5\x2b\x4d\xb3\x76\xfa\xa4\xee\x74\x3f\x01\x85\x5a\xf2\xca\x1e\x79\x92\xda\x16\x2a\xb7\x42\x93\xa2\xe4\x98\x76\x14\x43\xc9\x55\x2b\xfc\xe8\x34\x9e\x78\xa9\x13\xd8\xa0\x40\x45\x0c\x3e\xf8\xbe\x1c\xd3\x64\xe2\x26\xd2\x47\x62\x30\xa6\x69\xc1\x84\x1d\x66\xbd\x43\xf2\xdd\x1d\xf6\xa2\xbf\x4f\x42\xeb\xdc\x90\x4c\xdd\xae\xd3\x36\xdb\xf0\xfe\xea\x0a\xee\x73\xb9\x6d\xfb\x48\xdd\x40\x6c\xde\x08\x19\x9c\xfa\x76\xb4\x45\x85\x76\x6d\xe8\xfa\xcb\x9b\x76\xb1\x18\x6a\x17\x76\x13\xf0\xc0\xed\xfe\x72\xa8\xf4\x5a\x2a\x88\x39\x1a\x78\x7c\xc6\xdd\x04\x5e\x08\xaf\xf0\x9b\x6d\xd9\x75\xea\xa1\x30\x8a\x61\x9b\x7d\x43\xf9\x6b\xfb\xc1\x02\x9e\xe6\x46\x2d\x61\x6e\x72\xd0\x99\x2c\x71\x11\x29\xb9\x8d\x96\x17\xaf\x0e\x71\x3f\xbf\x32\xb9\xbd\xa5\xcb\x8b\xd7\x67\xdc\xd9\x77\xba\x84\xf9\x95\x51\xcb\x81\x50\x75\x5a\x83\x71\x5b\x82\x59\x49\xba\x8b\x92\x94\x94\x25\x0a\x1a\x2b\xb9\xed\x99\xd1\xe5\xda\xbe\xde\xee\xf6\xc1\xc6\xd9\x95\x40\x41\xca\xc6\x04\xb7\x49\xd8\xc5\xb1\x5e\x08\xcf\xf5\x84\x85\x38\xd8\x42\xe1\x72\x01\x4f\xde\x2c\x9b\x99\xde\x60\x78\x6a\xd6\xcc\x20\xf7\xcc\xcd\x81\x5a\xfd\xdc\x73\xb3\xf7\x40\x3d\x7f\x11\xae\x69\x99\x42\x62\xb0\xde\xd4\xe2\x88\xb2\x97\xa8\x76\x45\x4d\x9c\x66\x9c\x68\xfd\x99\x14\xb6\x8d\x44\x19\x51\x34\xba\x19\x8d\x3a\xc8\xba\xc1\x1c\x03\xcc\xff\xd6\xe2\x59\xca\xb7\x68\xd3\x1c\x09\x45\x05\x76\xed\x9d\x0a\xb9\x55\xa4\x8c\x42\x06\x26\x04\xaa\x7f\x3c\xfc\xeb\x0e\x16\x7e\x09\x4f\x2b\xce\xe8\x4d\xa7\x01\x13\x6b\x79\x42\x81\x8a\x37\x0a\x58\xc2\x43\xf9\x9c\x69\x33\xdd\x28\x59\x95\xd0\xfd\x9c\xae\x79\xa5\xf3\x28\x90\x50\xa0\x21\x7f\x9c\x96\xc2\x59\x23\xa5\x21\x3e\x26\x69\xca\x0c\x16\x51\x8f\x36\x34\x32\x9a\x97\xcb\xf9\x6a\xe9\x06\xa2\x9e\x5f\xad\x96\xf3\xab\x72\x19\xb5\xca\xb8\xe2\x6c\x76\xdd\x63\xea\xb8\x2c\x6f\x34\xea\x38\x0e\x75\xaa\x4b\xc1\xfe\x9f\xea\x02\x8a\xd5\x74\x16\xbd\x2b\x73\x7d\x38\x0e\x67\x40\x98\xc9\x81\xe0\xce\xc0\xcb\xba\xb4\x7b\xb5\xeb\x5f\xdb\xe2\xa6\xcb\xb0\x96\xf7\x87\xde\xf2\x55\x7b\x9b\x33\x4e\xe3\x4e\x46\xd2\x05\xcc\xae\xaa\x67\x07\xcc\x45\xd8\xb7\xe5\xfa\xeb\xc1\xb5\x65\x6f\x5c\xd3\xaf\x03\x52\xdf\xac\x07\x48\xeb\x2e\x5e\x27\x4e\xa3\xc3\xe9\x3c\x38\x24\x0d\xd3\xa0\x29\xe6\x3b\xfb\xdd\x13\xb9\x55\xdd\x49\xbb\x86\x68\xd2\xe8\x9b\x1a\x79\x27\x33\xc2\xd1\x5e\xd4\x23\x3e\x81\x4b\x88\x20\x82\xcb\x37\x44\xf6\xa5\x21\xaa\x0d\x1a\x90\x7c\xd9\x17\xfd\x49\xd0\x40\xb0\x37\xf2\x27\x82\x7b\x44\xbf\x28\xf8\x63\xa5\x88\x1f\xcf\x56\xb0\x74\x51\xa4\xf5\x59\x5c\xcb\x98\x36\x01\x4a\xf3\xaa\x20\x82\xfd\xc0\xb8\x9d\x9a\x36\x5a\xda\x10\xa3\xcf\x4e\x85\x96\xfa\x8c\xa0\x75\xb4\x27\xa2\x86\xb6\x4e\x9c\xfe\x3e\x47\x1c\x53\x2a\xaa\xc2\xdf\xb4\x1e\xea\x79\x67\x08\xfb\x8d\x7b\xee\xdd\x92\x32\x8c\xee\xaf\xfe\x14\xfc\x6d\x5e\x89\xe7\x41\x74\x7f\x33\x00\x0e\xd0\x39\xbe\x5e\xb8\xce\x76\x7d\x40\x7f\x86\xf3\x43\xea\xe3\xee\xff\x1a\x6c\x78\xad\x19\xa7\xd6\xbc\x01\x5d\x4e\x78\xe8\xce\xaf\x97\x2d\x72\x7f\xc7\x7c\x1f\xda\xbd\xac\x54\x86\x6f\x15\xd5\xee\xbc\xc9\x69\xd6\xef\x7f\x4d\x53\x0c\x67\x5c\x78\xdf\x14\xda\xb1\xfb\x36\x17\x8e\x11\x04\xea\x37\x4a\x34\x9b\x41\x48\xe6\x86\x75\x6f\x73\x08\xef\x59\xc0\xdf\x6c\x2f\x35\x99\xac\x8c\x77\xca\xf0\x36\xe3\xdc\xd3\x0d\xa2\x66\xc0\xd4\x20\xd1\x7c\xb5\xb4\x3d\xc7\x7e\x76\x5e\x42\x64\xe7\xa5\x7d\x75\xa4\xf5\x81\x5a\x46\xa3\xfd\xe8\xff\x01\x00\x00\xff\xff\x48\xba\x37\xe4\x98\x14\x00\x00") +var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xdb\xba\x15\x7f\xf7\xa7\x38\xd5\x8a\x6b\x09\xb1\x15\x17\x18\xf6\x90\xd8\x06\xee\xd2\x02\xbb\x43\x76\x3b\x34\x79\x5a\x50\x20\xb4\x78\x6c\x71\xa1\x48\x8d\xa4\xe2\xba\x81\xbf\xfb\x40\x52\x94\x69\x45\xce\x75\x7b\x89\x20\x88\xc8\x73\x7e\xe7\xff\x9f\x6c\xa4\xdc\x70\xcc\x8b\x92\x28\xa3\x73\x2e\x09\x4d\xc7\x45\xa3\x14\x0a\x33\x9e\xc0\xcb\x08\x00\x60\x5c\x93\xe2\x89\x6c\x50\x8f\xaf\xe0\x61\x6c\x58\x85\x9c\x09\x1c\x7f\x1d\xed\xb3\xeb\xd1\x31\x80\x46\xf3\x59\xdc\x4a\x42\x6f\x08\xe7\x2b\x52\x3c\xa5\x54\x91\x6d\x76\x3d\x1a\xad\x1b\x51\x18\x26\x05\xd8\x8b\x34\x6b\xa1\xd9\x1a\x52\x53\x12\x21\x75\xae\x70\xad\x50\x97\x48\x7f\x35\xb0\x58\x40\x32\x9b\xcd\x3e\x4c\xdd\xcf\xfd\x6c\x76\xe5\x7e\xfe\x93\x04\x3e\x7b\x5a\x3e\x54\x0a\x16\x90\xdc\xed\x44\x51\x2a\x29\xd8\x77\x26\x36\xb0\xe2\xb2\x78\xd2\xb0\x56\xb2\x02\x85\x95\x34\x08\xda\x48\x45\x36\x98\x5c\x3b\x80\xfd\xa8\x2f\xdf\xe2\xbc\x5b\x80\x68\x38\x8f\xa5\xbc\x4f\x93\xbf\xa0\x52\x49\x96\xeb\x52\x6e\xd3\x2c\x5f\x33\x41\xd3\x71\x4e\x38\x2a\x33\xce\x72\x83\xdf\x4c\xfa\xcf\xbb\xcf\xbf\xe7\xda\x28\x26\x36\x6c\xbd\x8b\x10\x27\x0e\x6f\x02\x7f\xcd\xb2\xeb\x0e\x52\xa3\xb9\x67\x15\xca\xc6\xa4\xc1\x2b\x69\x2c\xd2\x1e\x2e\x0b\x62\x1f\x72\x85\x2e\x28\x11\xfb\x7e\x02\x1f\x66\xb3\xd9\xcc\x7a\xd5\x7d\x03\x72\x8d\x83\x2a\x97\x8c\x62\x1a\xe8\xec\x79\x26\x0a\x0a\x29\x0c\x61\x02\xad\xdb\xa8\x2c\x9a\x0a\x85\xc9\x37\x68\x3e\x71\xb4\x7f\xfe\x7d\xf7\x1b\x4d\xc7\x37\xb2\xaa\x89\x53\x4d\x8f\x23\xd9\x8e\xdf\x86\x1a\x16\x20\x70\x0b\x6d\xf4\x9f\x99\x6e\x08\x67\xdf\xbd\xca\xf7\x6d\x86\xa4\x9d\xa4\x1e\x02\x25\x86\xdc\x93\x15\xc7\xb7\x50\x3e\x06\xa2\xb4\xc7\x6d\x98\xe1\xa8\x61\x01\x2f\xfb\xc8\xb2\x0e\x33\x27\x94\xde\x48\xde\x54\x22\x7d\x31\xbb\x1a\xaf\x60\xec\x23\x33\x9e\x00\xa3\x57\x30\xfe\x82\x35\x67\x05\x19\xef\x23\xdc\xf3\xb9\x6f\xc9\x0a\xf9\x8f\xf3\x2a\xc9\xed\xb7\x91\x92\x1b\x56\x9f\xcd\x4f\x89\xc1\x20\xf9\xce\x10\x65\x7e\x8a\xf3\x93\xa0\x8e\x6f\x98\xf1\x8b\xdc\xea\x90\xb2\xbe\x6e\x8e\x32\x31\xaf\x48\x7d\xc8\x53\xda\x4f\x54\x7b\x2e\x2f\xe1\xde\x06\x05\x98\x06\x53\x22\xac\x99\xd2\x06\x0a\xa7\x10\xc8\xb5\xbb\x0b\x6d\x23\x1f\xe0\x1e\x02\xfc\x15\x1a\xc1\xfe\xd7\x20\xfc\x5b\xc9\x0a\x4d\x89\x8d\x06\x6e\x7d\x6f\xeb\xde\x00\xa3\x28\x0c\x5b\x33\xd4\x80\xa4\x28\x41\x97\x44\x51\x2b\xbf\xd1\x48\x87\xf0\x88\x6e\xd5\x70\x7a\xae\xa1\x56\xa8\x51\x98\x09\x48\x53\xa2\xda\x32\x8d\x1e\x5e\x03\x51\x08\x94\xe9\x9a\x93\xdd\x30\x14\x7e\x33\xa8\x04\xe1\x7c\x67\x51\x09\x70\xdc\xa0\xa0\xaf\x0d\xf3\xb2\x16\x70\xb2\xc8\xc3\xb1\x59\xfd\x84\x3b\x58\x84\x9e\xe6\x0d\x7d\xb7\x80\x24\x81\x5f\x7e\x01\x9a\xc7\xf7\xfa\x21\xfe\xfa\x1a\x85\x35\x3e\xb6\xb3\x59\xcc\x77\x0b\x68\x04\xc5\x35\x13\x38\x18\xbb\x70\x14\x9a\x46\x09\xab\xc6\xf5\x20\xcd\xab\x2e\x73\xca\x5a\x5f\x9e\x0f\x87\x6e\xd8\xd3\x3e\xfb\x3a\x2c\x20\x28\xdd\xe2\x9c\xa9\x76\x2c\xf9\xce\x89\x4c\x3f\xaf\xfe\x8b\x85\xc9\x9f\x70\xa7\x3d\x98\xce\x72\x8e\x62\x63\x4a\xb8\x80\x0f\xd9\x69\xe9\x1d\xd6\x9b\xda\x07\x13\x4f\xe3\xec\xff\xc8\xc9\x6f\xf0\xbf\xe6\xdd\x1f\x35\xf0\x70\x7c\x86\x2c\xe0\x91\xe3\x33\xf2\x2b\x78\xff\x42\xf3\xa2\xeb\xd9\xb9\xbb\xdd\x4f\x40\xa1\x96\xbc\xb1\x57\x9e\xa4\xb5\x85\xca\xad\xd0\xa4\xaa\x39\xe6\x07\x8a\xfd\xe3\x6b\x95\x5a\x85\x1f\x9c\xc6\x13\x2f\x75\x02\x1b\x14\xa8\x88\xc1\x7b\xdf\xcd\x52\x9a\x4d\x5c\x1f\xff\x48\x0c\xa6\x34\xaf\x98\xb0\x23\xa0\x77\x49\xbe\xb9\xcb\x5e\xf4\xf7\x59\x6c\x9d\x1b\x2d\xb9\xdb\x10\xba\x16\x15\xbf\x5f\x5e\xc2\x5d\x29\xb7\x5d\x05\xb6\xa5\x67\xf3\x46\xc8\xe8\xd6\x17\xf2\x16\x15\xda\x61\x7b\xa8\xcc\x68\xdc\xb7\x0e\xb4\x25\xd6\xcf\x2f\x3b\x3f\x3d\x70\x37\xf5\x8f\x95\x5e\x4b\x05\x29\x47\x03\x0f\x4f\xb8\x9b\xc0\x33\xe1\x0d\x7e\xb5\x8d\xae\x4d\x3d\x14\x46\x31\xec\xb2\x6f\x28\x7f\x95\xdc\xda\xe8\xcd\x8d\x5a\xc2\xdc\x94\xa0\x0b\x59\xe3\x22\x51\x72\x9b\x2c\xdf\xbf\x38\xc4\xfd\xfc\xd2\x94\xf6\x95\x2e\xdf\xbf\x3c\xe1\xce\x7e\xd3\x25\xcc\x2f\x8d\x5a\x0e\x84\xea\xa0\x35\x18\x37\x5b\xcd\x4a\xd2\x5d\x92\xe5\xa4\xae\x51\xd0\x54\xc9\x6d\xcf\x8c\x43\xae\xed\xdb\x9d\x68\x1f\xed\x69\x87\x12\xa8\x48\x1d\x4c\x70\xf3\xd7\xae\x5b\xed\x1a\x75\xae\x27\x2c\xc4\xd1\xee\x06\x17\x0b\x78\xf4\x66\xd9\xcc\xf4\x06\xc3\x63\x58\xce\xa2\xdc\x33\xd7\x47\x6a\xf5\x73\xcf\x4d\xac\x23\xf5\xfc\x43\xbc\xdc\x14\x0a\x89\xc1\x76\xbf\x49\x13\xca\x9e\x93\xd6\x15\x2d\x71\x5e\x70\xa2\xf5\xef\xa4\xb2\x6d\x24\x29\x88\xa2\xc9\xf5\x68\x74\x80\x6c\x1b\xcc\x29\xc0\xf2\x6f\x1d\x9e\xa5\x7c\x8d\x36\x2d\x91\x50\x54\x60\x97\xc5\xa9\x90\x5b\x45\xea\x24\x66\x60\x42\xa0\xfa\xc7\xfd\xbf\x6e\x61\xe1\x57\xd7\xbc\xe1\x8c\x5e\x1f\x34\x60\x62\x2d\xdf\x50\xa0\xe1\x41\x01\x4b\x78\x2c\x9f\x33\x6d\xa6\x1b\x25\x9b\x1a\x0e\x7f\x4e\xd7\xbc\xd1\x65\x12\x49\xa8\xd0\x90\xdf\xde\x96\xc2\x59\x90\x12\x88\x4f\x49\x9a\x32\x83\x55\xd2\xa3\x8d\x8d\x4c\xe6\xf5\x72\xbe\x5a\xba\x65\x4a\xcf\x2f\x57\xcb\xf9\x65\xbd\x6c\x19\xac\x36\xae\x3a\xc3\x8a\x78\x4a\x1f\x97\xe6\x41\xa5\x03\xc7\xb1\x52\x6d\x2d\xd8\xdf\x53\x5d\x41\xb5\x9a\xce\x7e\x30\x77\x7d\x40\x8e\xa7\x40\x9c\xcb\x91\xe4\x83\x89\x17\x6d\x71\xf7\xaa\xd7\x7f\x76\xe5\x4d\x97\x71\x35\xef\x8f\xfd\xe5\xeb\xf6\xa6\x64\x9c\xa6\x07\x19\x59\x14\x33\xbb\xe3\x9d\x1d\x33\x17\x64\xdf\x99\xdb\xb5\xdb\x75\x66\x6f\x5d\x68\xd9\x11\xa9\xef\xd7\x03\xa4\x6d\x23\x6f\xf5\x08\x3a\x9c\x93\x0a\x1d\x6d\x9c\x0a\xa1\xa0\x6f\xed\x7f\x0c\x89\x5b\x72\x9d\xb8\x2b\x48\x26\x41\xe1\xdc\xc8\x5b\x59\x10\x8e\xf6\xa1\x1d\xf3\x19\x5c\x40\x02\x09\x5c\xbc\x22\xb2\x1f\x81\x28\x3b\x29\xf9\xa2\x2f\xfa\x93\xa0\x91\x60\x6f\xe5\x1f\x08\xee\x11\xfd\xa4\xe0\x8f\x8d\x22\x7e\x44\x5b\xc1\xd2\x85\x91\xb6\x77\x69\x2b\x63\x1a\x22\x94\x97\x4d\x45\x04\xfb\x8e\x69\x16\xa7\x82\x36\xc4\xe8\xb3\x73\xa1\xa3\x3e\x27\x6a\x07\xe2\x37\xc2\x86\xb6\x54\x9c\x01\x3e\x4b\x1c\x53\x2e\x9a\xca\xbf\x74\x2e\xea\xb9\x67\x08\xfb\x95\x7f\xee\xdc\xa6\x32\x8c\xee\x9f\xfe\x14\xfc\x4d\xd9\x88\xa7\x41\x74\xff\x32\x00\x0e\x70\xf0\x7c\xbb\x75\x9d\xed\xfb\x88\xfe\x1c\xef\xc7\xe4\xa7\xfd\xff\x25\xda\xf3\x3a\x3b\xde\x5a\xf6\x06\x94\x79\xc3\x45\xb7\x7e\xc9\xec\x90\xfb\x9b\xe6\x8f\xa1\xdd\xc9\x46\x15\xf8\x5a\x51\xed\xee\x43\x56\xb3\x7e\x0f\x0c\x8d\x31\x9e\x74\xf1\x7b\x28\xb5\x53\xef\x5d\x32\x9c\x22\x88\xd4\x0f\x4a\x84\xfd\x20\x26\x73\x23\xbb\xb7\x3f\xc4\xef\x2c\xe2\x0f\x3b\x4c\x4b\x26\x1b\xe3\x9d\x32\xbc\xd3\x38\xf7\x1c\x86\x51\x18\x32\x2d\x48\x32\x5f\x2d\x6d\xd7\xb1\xff\xd5\x5d\x40\x62\xa7\xa6\xfd\x74\xa4\xed\x85\x5a\x26\xa3\xfd\xe8\xff\x01\x00\x00\xff\xff\x26\x70\x4d\x54\xd4\x13\x00\x00") func pkgUiStaticJsBucketJsBytes() ([]byte, error) { return bindataRead( @@ -500,7 +500,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5272, mode: os.FileMode(420), modTime: time.Unix(1582318785, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5076, mode: os.FileMode(420), modTime: time.Unix(1583435041, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -520,7 +520,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -540,7 +540,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -560,7 +560,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -580,7 +580,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -600,7 +600,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -620,7 +620,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -640,7 +640,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -660,7 +660,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -680,7 +680,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -700,7 +700,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -720,7 +720,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -740,7 +740,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -760,7 +760,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -780,7 +780,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -800,7 +800,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -820,7 +820,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -840,7 +840,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -860,7 +860,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -880,7 +880,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -900,7 +900,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -920,7 +920,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -940,7 +940,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -960,7 +960,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -980,7 +980,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1000,7 +1000,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1020,7 +1020,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1040,7 +1040,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1060,7 +1060,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1080,7 +1080,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1100,7 +1100,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1120,7 +1120,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1140,7 +1140,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1160,7 +1160,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1180,7 +1180,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1200,7 +1200,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1220,7 +1220,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1240,7 +1240,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1260,7 +1260,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1280,7 +1280,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1300,7 +1300,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1320,7 +1320,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1340,7 +1340,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1360,7 +1360,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1380,7 +1380,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1400,7 +1400,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1420,7 +1420,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1582229186, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1440,7 +1440,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1460,7 +1460,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1480,7 +1480,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1500,7 +1500,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1520,7 +1520,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1582228803, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/ui/static/js/bucket.js b/pkg/ui/static/js/bucket.js index e33b057ef02..bb2827d0921 100644 --- a/pkg/ui/static/js/bucket.js +++ b/pkg/ui/static/js/bucket.js @@ -33,16 +33,13 @@ function draw() { // Title is the first column of the timeline. // // A unique Prometheus label that identifies each shard is used - // as the title if present, otherwise all labels are displayed + // as the title if present, otherwise labels are displayed // externally as a legend. title = function() { - if (thanos.label != "") { - var key = d.thanos.labels[thanos.label]; - if (key == undefined) { - throw `Label ${thanos.label} not found in ${Object.keys(d.thanos.labels)}`; - } else { - return key; - } + var key = thanos.label != "" && d.thanos.labels[thanos.label]; + + if (key != undefined) { + return key; } else { title = titles[stringify(d.thanos.labels)]; if (title == undefined) { From 54bfaea70075bbab960eeed04d04222b515e6166 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Tue, 10 Mar 2020 12:16:10 +0000 Subject: [PATCH 014/190] fixing querier deployment kube manifest example 404 error (#2229) Signed-off-by: Rajesh Rajendran --- docs/quick-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quick-tutorial.md b/docs/quick-tutorial.md index bc039e4593d..ee021103ecd 100644 --- a/docs/quick-tutorial.md +++ b/docs/quick-tutorial.md @@ -163,7 +163,7 @@ thanos query \ Go to the configured HTTP address, and you should now be able to query across all Prometheus instances and receive de-duplicated data. -* _[Example Kubernetes manifest](https://github.com/thanos-io/kube-thanos/blob/master/manifests/thanos-querier-deployment.yaml)_ +* _[Example Kubernetes manifest](https://github.com/thanos-io/kube-thanos/blob/master/manifests/thanos-query-deployment.yaml)_ #### Communication Between Components From e6566606ac2f56aac4c0681ef3bf107eb15c59c7 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Wed, 11 Mar 2020 12:50:26 +0100 Subject: [PATCH 015/190] *: Fix misuse of pkg/errors.Errorf and error directive (#2253) * Fix pkg/errors error directive issues Signed-off-by: Kemal Akkoyun * Fix misuse of Errorf Signed-off-by: Kemal Akkoyun --- cmd/thanos/bucket.go | 2 +- cmd/thanos/rule.go | 2 +- pkg/block/block.go | 2 +- .../downsample/streamed_block_writer.go | 2 +- pkg/discovery/dns/miekgdns/lookup.go | 2 +- pkg/discovery/dns/resolver_test.go | 4 +-- pkg/objstore/cos/cos.go | 2 +- pkg/prober/http_test.go | 6 ++-- pkg/query/api/v1.go | 4 +-- pkg/replicate/replicater.go | 2 +- pkg/replicate/scheme.go | 34 +++++++++---------- pkg/store/bucket.go | 2 +- 12 files changed, 32 insertions(+), 32 deletions(-) diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index d4ed513cce1..1a3ea497315 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -269,7 +269,7 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name // Parse selector. selectorLabels, err := parseFlagLabels(*selector) if err != nil { - return errors.Errorf("error parsing selector flag: %v", err) + return errors.Wrap(err, "error parsing selector flag") } confContentYaml, err := objStoreConfig.Content() diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 972c4bade58..cdcf3c3ae13 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -740,7 +740,7 @@ func queryFunc( return v, nil } } - return nil, errors.Errorf("no query API server reachable") + return nil, errors.New("no query API server reachable") } } diff --git a/pkg/block/block.go b/pkg/block/block.go index df83f176499..51b8012974d 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -87,7 +87,7 @@ func Upload(ctx context.Context, logger log.Logger, bkt objstore.Bucket, bdir st } if meta.Thanos.Labels == nil || len(meta.Thanos.Labels) == 0 { - return errors.Errorf("empty external labels are not allowed for Thanos block.") + return errors.New("empty external labels are not allowed for Thanos block.") } if err := objstore.UploadFile(ctx, logger, bkt, path.Join(bdir, MetaFilename), path.Join(DebugMetas, fmt.Sprintf("%s.json", id))); err != nil { diff --git a/pkg/compact/downsample/streamed_block_writer.go b/pkg/compact/downsample/streamed_block_writer.go index 267a93bfabf..a987c6fa959 100644 --- a/pkg/compact/downsample/streamed_block_writer.go +++ b/pkg/compact/downsample/streamed_block_writer.go @@ -108,7 +108,7 @@ func NewStreamedBlockWriter( // labelsValues sets and memPostings to be written on the finalize state in the end of downsampling process. func (w *streamedBlockWriter) WriteSeries(lset labels.Labels, chunks []chunks.Meta) error { if w.finalized || w.ignoreFinalize { - return errors.Errorf("series can't be added, writers has been closed or internal error happened") + return errors.New("series can't be added, writers has been closed or internal error happened") } if len(chunks) == 0 { diff --git a/pkg/discovery/dns/miekgdns/lookup.go b/pkg/discovery/dns/miekgdns/lookup.go index 4e3fb492e2e..b9b95ce9088 100644 --- a/pkg/discovery/dns/miekgdns/lookup.go +++ b/pkg/discovery/dns/miekgdns/lookup.go @@ -140,7 +140,7 @@ func askServerForName(name string, qType dns.Type, client *dns.Client, servAddr if response.Truncated { if client.Net == "tcp" { - return nil, errors.Errorf("got truncated message on TCP (64kiB limit exceeded?)") + return nil, errors.New("got truncated message on TCP (64kiB limit exceeded?)") } // TCP fallback. diff --git a/pkg/discovery/dns/resolver_test.go b/pkg/discovery/dns/resolver_test.go index f7d271d0c89..5663ca7380e 100644 --- a/pkg/discovery/dns/resolver_test.go +++ b/pkg/discovery/dns/resolver_test.go @@ -76,7 +76,7 @@ var ( addr: "test.mycompany.com", qtype: A, expectedResult: nil, - expectedErr: errors.Errorf("missing port in address given for dns lookup: test.mycompany.com"), + expectedErr: errors.New("missing port in address given for dns lookup: test.mycompany.com"), resolver: &mockHostnameResolver{}, }, { @@ -168,7 +168,7 @@ var ( addr: "test.mycompany.com", qtype: "invalid", expectedResult: nil, - expectedErr: errors.Errorf("invalid lookup scheme \"invalid\""), + expectedErr: errors.New("invalid lookup scheme \"invalid\""), resolver: &mockHostnameResolver{}, }, } diff --git a/pkg/objstore/cos/cos.go b/pkg/objstore/cos/cos.go index 65768d46b1b..e336a78fc78 100644 --- a/pkg/objstore/cos/cos.go +++ b/pkg/objstore/cos/cos.go @@ -151,7 +151,7 @@ func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error) err func (b *Bucket) getRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) { if len(name) == 0 { - return nil, errors.Errorf("given object name should not empty") + return nil, errors.New("given object name should not empty") } opts := &cos.ObjectGetOptions{} diff --git a/pkg/prober/http_test.go b/pkg/prober/http_test.go index bf09f526f29..eb3a69f3f61 100644 --- a/pkg/prober/http_test.go +++ b/pkg/prober/http_test.go @@ -30,7 +30,7 @@ func TestHTTPProberReadinessInitialState(t *testing.T) { } func TestHTTPProberHealthyStatusSetting(t *testing.T) { - testError := errors.Errorf("test error") + testError := errors.New("test error") p := NewHTTP() p.Healthy() @@ -43,7 +43,7 @@ func TestHTTPProberHealthyStatusSetting(t *testing.T) { } func TestHTTPProberReadyStatusSetting(t *testing.T) { - testError := errors.Errorf("test error") + testError := errors.New("test error") p := NewHTTP() p.Ready() @@ -72,7 +72,7 @@ func TestHTTPProberMuxRegistering(t *testing.T) { var g run.Group g.Add(func() error { - return errors.Errorf("serve probes %w", http.Serve(l, mux)) + return errors.Wrap(http.Serve(l, mux), "serve probes") }, func(err error) { t.Fatalf("server failed: %v", err) }) diff --git a/pkg/query/api/v1.go b/pkg/query/api/v1.go index 089f227e0f0..2842055a5a9 100644 --- a/pkg/query/api/v1.go +++ b/pkg/query/api/v1.go @@ -347,7 +347,7 @@ func (api *API) queryRange(r *http.Request) (interface{}, []error, *ApiError) { // For safety, limit the number of returned points per timeseries. // This is sufficient for 60s resolution for a week or 1h resolution for a year. if end.Sub(start)/step > 11000 { - err := errors.Errorf("exceeded maximum resolution of 11,000 points per timeseries. Try decreasing the query resolution (?step=XX)") + err := errors.New("exceeded maximum resolution of 11,000 points per timeseries. Try decreasing the query resolution (?step=XX)") return nil, nil, &ApiError{errorBadData, err} } @@ -456,7 +456,7 @@ func (api *API) series(r *http.Request) (interface{}, []error, *ApiError) { } if len(r.Form["match[]"]) == 0 { - return nil, nil, &ApiError{errorBadData, errors.Errorf("no match[] parameter provided")} + return nil, nil, &ApiError{errorBadData, errors.New("no match[] parameter provided")} } var start time.Time diff --git a/pkg/replicate/replicater.go b/pkg/replicate/replicater.go index c4428e86966..73fb35e455f 100644 --- a/pkg/replicate/replicater.go +++ b/pkg/replicate/replicater.go @@ -171,7 +171,7 @@ func RunReplicate( level.Info(logger).Log("msg", "running replication attempt") if err := newReplicationScheme(logger, metrics, blockFilter, fromBkt, toBkt, reg).execute(ctx); err != nil { - return errors.Errorf("replication execute: %w", err) + return errors.Wrap(err, "replication execute") } return nil diff --git a/pkg/replicate/scheme.go b/pkg/replicate/scheme.go index b237bab5e13..71d3ce7f339 100644 --- a/pkg/replicate/scheme.go +++ b/pkg/replicate/scheme.go @@ -192,7 +192,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { return nil } if err != nil { - return errors.Errorf("load meta for block %v from origin bucket: %w", id.String(), err) + return errors.Wrapf(err, "load meta for block %v from origin bucket", id.String()) } if len(meta.Thanos.Labels) == 0 { @@ -207,7 +207,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { return nil }); err != nil { - return errors.Errorf("iterate over origin bucket: %w", err) + return errors.Wrap(err, "iterate over origin bucket") } candidateBlocks := []*metadata.Meta{} @@ -227,7 +227,7 @@ func (rs *replicationScheme) execute(ctx context.Context) error { for _, b := range candidateBlocks { if err := rs.ensureBlockIsReplicated(ctx, b.BlockMeta.ULID); err != nil { - return errors.Errorf("ensure block %v is replicated: %w", b.BlockMeta.ULID.String(), err) + return errors.Wrapf(err, "ensure block %v is replicated", b.BlockMeta.ULID.String()) } } @@ -246,7 +246,7 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli originMetaFile, err := rs.fromBkt.Get(ctx, metaFile) if err != nil { - return errors.Errorf("get meta file from origin bucket: %w", err) + return errors.Wrap(err, "get meta file from origin bucket") } defer runutil.CloseWithLogOnErr(rs.logger, originMetaFile, "close original meta file") @@ -258,18 +258,18 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli } if err != nil && !rs.toBkt.IsObjNotFoundErr(err) && err != io.EOF { - return errors.Errorf("get meta file from target bucket: %w", err) + return errors.Wrap(err, "get meta file from target bucket") } originMetaFileContent, err := ioutil.ReadAll(originMetaFile) if err != nil { - return errors.Errorf("read origin meta file: %w", err) + return errors.Wrap(err, "read origin meta file") } if targetMetaFile != nil && !rs.toBkt.IsObjNotFoundErr(err) { targetMetaFileContent, err := ioutil.ReadAll(targetMetaFile) if err != nil { - return errors.Errorf("read target meta file: %w", err) + return errors.Wrap(err, "read target meta file") } if bytes.Equal(originMetaFileContent, targetMetaFileContent) { @@ -286,7 +286,7 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli if err := rs.fromBkt.Iter(ctx, chunksDir, func(objectName string) error { err := rs.ensureObjectReplicated(ctx, objectName) if err != nil { - return errors.Errorf("replicate object %v: %w", objectName, err) + return errors.Wrapf(err, "replicate object %v", objectName) } return nil @@ -295,13 +295,13 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli } if err := rs.ensureObjectReplicated(ctx, indexFile); err != nil { - return errors.Errorf("replicate index file: %w", err) + return errors.Wrap(err, "replicate index file") } level.Debug(rs.logger).Log("msg", "replicating meta file", "object", metaFile) if err := rs.toBkt.Upload(ctx, metaFile, bytes.NewReader(originMetaFileContent)); err != nil { - return errors.Errorf("upload meta file: %w", err) + return errors.Wrap(err, "upload meta file") } rs.metrics.blocksReplicated.Inc() @@ -316,7 +316,7 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN exists, err := rs.toBkt.Exists(ctx, objectName) if err != nil { - return errors.Errorf("check if %v exists in target bucket: %w", objectName, err) + return errors.Wrapf(err, "check if %v exists in target bucket", objectName) } // skip if already exists. @@ -329,13 +329,13 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN r, err := rs.fromBkt.Get(ctx, objectName) if err != nil { - return errors.Errorf("get %v from origin bucket: %w", objectName, err) + return errors.Wrapf(err, "get %v from origin bucket", objectName) } defer r.Close() if err = rs.toBkt.Upload(ctx, objectName, r); err != nil { - return errors.Errorf("upload %v to target bucket: %w", objectName, err) + return errors.Wrapf(err, "upload %v to target bucket", objectName) } level.Info(rs.logger).Log("msg", "object replicated", "object", objectName) @@ -352,22 +352,22 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN func loadMeta(ctx context.Context, rs *replicationScheme, id ulid.ULID) (*metadata.Meta, bool, error) { fetcher, err := thanosblock.NewMetaFetcher(rs.logger, 32, rs.fromBkt, "", rs.reg) if err != nil { - return nil, false, errors.Errorf("create meta fetcher with buecket %v: %w", rs.fromBkt, err) + return nil, false, errors.Wrapf(err, "create meta fetcher with buecket %v", rs.fromBkt) } metas, _, err := fetcher.Fetch(ctx) if err != nil { switch errors.Cause(err) { default: - return nil, false, errors.Errorf("fetch meta: %w", err) + return nil, false, errors.Wrap(err, "fetch meta") case thanosblock.ErrorSyncMetaNotFound: - return nil, true, errors.Errorf("fetch meta: %w", err) + return nil, true, errors.Wrap(err, "fetch meta") } } m, ok := metas[id] if !ok { - return nil, true, errors.Errorf("fetch meta: %w", err) + return nil, true, errors.Wrap(err, "fetch meta") } return m, false, nil diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index 7c17a2fa957..15f818d9561 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -1854,7 +1854,7 @@ func (r *bucketChunkReader) loadChunks(ctx context.Context, offs []uint32, seq i l, n := binary.Uvarint(cb) if n < 1 { - return errors.Errorf("reading chunk length failed") + return errors.New("reading chunk length failed") } if len(cb) < n+int(l)+1 { return errors.Errorf("preloaded chunk too small, expecting %d", n+int(l)+1) From 9c0d4676b666643976d70c35485d44022d8f1e08 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Wed, 11 Mar 2020 18:48:17 +0100 Subject: [PATCH 016/190] Fix false metric name in Store GW e2e test (#2256) Signed-off-by: Kemal Akkoyun --- test/e2e/store_gateway_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/store_gateway_test.go b/test/e2e/store_gateway_test.go index 6b39db23eda..d663c71e710 100644 --- a/test/e2e/store_gateway_test.go +++ b/test/e2e/store_gateway_test.go @@ -102,7 +102,7 @@ func TestStoreGateway(t *testing.T) { // Wait for store to sync blocks. // thanos_blocks_meta_synced: 2x loadedMeta 1x labelExcludedMeta 1x TooFreshMeta. testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(4), "thanos_blocks_meta_synced")) - testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2), "thanos_bucket_store_blocks_loaded")) testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_drops_total")) From ab2a0cf2698e7b9fdcef1e36736ac12ea98fa3b3 Mon Sep 17 00:00:00 2001 From: Lawrence Li Date: Thu, 12 Mar 2020 01:55:15 +0800 Subject: [PATCH 017/190] Add scheme to the alertmanagers.url in ruler example (#2255) Signed-off-by: gitlawr --- docs/components/rule.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/rule.md b/docs/components/rule.md index ffa3dfa6fcb..85c7ed5b0b4 100644 --- a/docs/components/rule.md +++ b/docs/components/rule.md @@ -25,7 +25,7 @@ $ thanos rule \ --eval-interval "30s" \ --rule-file "/path/to/rules/*.rules.yaml" \ --alert.query-url "http://0.0.0.0:9090" \ # This tells what query URL to link to in UI. - --alertmanagers.url "alert.thanos.io" \ + --alertmanagers.url "http://alert.thanos.io" \ --query "query.example.org" \ --query "query2.example.org" \ --objstore.config-file "bucket.yml" \ From 739191c4a7aea1521acd974e923794dd18ca5bee Mon Sep 17 00:00:00 2001 From: Paul Traylor Date: Thu, 12 Mar 2020 05:55:43 +0900 Subject: [PATCH 018/190] Sort chunks by thanos.downsample.resolution for better grouping (#2231) Signed-off-by: Paul Traylor --- CHANGELOG.md | 3 +- pkg/ui/bindata.go | 140 ++++++++++++++++++------------------- pkg/ui/static/js/bucket.js | 1 + 3 files changed, 73 insertions(+), 71 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b84f14d0e..6836b87c481 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,8 +14,9 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped +- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping -## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0-rc.1) - 2020.03.02 +## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 ### Fixed diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index 0e7a59a9091..8401b766228 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -160,7 +160,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -180,7 +180,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1582880322, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -280,7 +280,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -300,7 +300,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -320,7 +320,7 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -340,7 +340,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -360,7 +360,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -380,7 +380,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -400,7 +400,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -420,7 +420,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -440,7 +440,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -460,7 +460,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -480,12 +480,12 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xdb\xba\x15\x7f\xf7\xa7\x38\xd5\x8a\x6b\x09\xb1\x15\x17\x18\xf6\x90\xd8\x06\xee\xd2\x02\xbb\x43\x76\x3b\x34\x79\x5a\x50\x20\xb4\x78\x6c\x71\xa1\x48\x8d\xa4\xe2\xba\x81\xbf\xfb\x40\x52\x94\x69\x45\xce\x75\x7b\x89\x20\x88\xc8\x73\x7e\xe7\xff\x9f\x6c\xa4\xdc\x70\xcc\x8b\x92\x28\xa3\x73\x2e\x09\x4d\xc7\x45\xa3\x14\x0a\x33\x9e\xc0\xcb\x08\x00\x60\x5c\x93\xe2\x89\x6c\x50\x8f\xaf\xe0\x61\x6c\x58\x85\x9c\x09\x1c\x7f\x1d\xed\xb3\xeb\xd1\x31\x80\x46\xf3\x59\xdc\x4a\x42\x6f\x08\xe7\x2b\x52\x3c\xa5\x54\x91\x6d\x76\x3d\x1a\xad\x1b\x51\x18\x26\x05\xd8\x8b\x34\x6b\xa1\xd9\x1a\x52\x53\x12\x21\x75\xae\x70\xad\x50\x97\x48\x7f\x35\xb0\x58\x40\x32\x9b\xcd\x3e\x4c\xdd\xcf\xfd\x6c\x76\xe5\x7e\xfe\x93\x04\x3e\x7b\x5a\x3e\x54\x0a\x16\x90\xdc\xed\x44\x51\x2a\x29\xd8\x77\x26\x36\xb0\xe2\xb2\x78\xd2\xb0\x56\xb2\x02\x85\x95\x34\x08\xda\x48\x45\x36\x98\x5c\x3b\x80\xfd\xa8\x2f\xdf\xe2\xbc\x5b\x80\x68\x38\x8f\xa5\xbc\x4f\x93\xbf\xa0\x52\x49\x96\xeb\x52\x6e\xd3\x2c\x5f\x33\x41\xd3\x71\x4e\x38\x2a\x33\xce\x72\x83\xdf\x4c\xfa\xcf\xbb\xcf\xbf\xe7\xda\x28\x26\x36\x6c\xbd\x8b\x10\x27\x0e\x6f\x02\x7f\xcd\xb2\xeb\x0e\x52\xa3\xb9\x67\x15\xca\xc6\xa4\xc1\x2b\x69\x2c\xd2\x1e\x2e\x0b\x62\x1f\x72\x85\x2e\x28\x11\xfb\x7e\x02\x1f\x66\xb3\xd9\xcc\x7a\xd5\x7d\x03\x72\x8d\x83\x2a\x97\x8c\x62\x1a\xe8\xec\x79\x26\x0a\x0a\x29\x0c\x61\x02\xad\xdb\xa8\x2c\x9a\x0a\x85\xc9\x37\x68\x3e\x71\xb4\x7f\xfe\x7d\xf7\x1b\x4d\xc7\x37\xb2\xaa\x89\x53\x4d\x8f\x23\xd9\x8e\xdf\x86\x1a\x16\x20\x70\x0b\x6d\xf4\x9f\x99\x6e\x08\x67\xdf\xbd\xca\xf7\x6d\x86\xa4\x9d\xa4\x1e\x02\x25\x86\xdc\x93\x15\xc7\xb7\x50\x3e\x06\xa2\xb4\xc7\x6d\x98\xe1\xa8\x61\x01\x2f\xfb\xc8\xb2\x0e\x33\x27\x94\xde\x48\xde\x54\x22\x7d\x31\xbb\x1a\xaf\x60\xec\x23\x33\x9e\x00\xa3\x57\x30\xfe\x82\x35\x67\x05\x19\xef\x23\xdc\xf3\xb9\x6f\xc9\x0a\xf9\x8f\xf3\x2a\xc9\xed\xb7\x91\x92\x1b\x56\x9f\xcd\x4f\x89\xc1\x20\xf9\xce\x10\x65\x7e\x8a\xf3\x93\xa0\x8e\x6f\x98\xf1\x8b\xdc\xea\x90\xb2\xbe\x6e\x8e\x32\x31\xaf\x48\x7d\xc8\x53\xda\x4f\x54\x7b\x2e\x2f\xe1\xde\x06\x05\x98\x06\x53\x22\xac\x99\xd2\x06\x0a\xa7\x10\xc8\xb5\xbb\x0b\x6d\x23\x1f\xe0\x1e\x02\xfc\x15\x1a\xc1\xfe\xd7\x20\xfc\x5b\xc9\x0a\x4d\x89\x8d\x06\x6e\x7d\x6f\xeb\xde\x00\xa3\x28\x0c\x5b\x33\xd4\x80\xa4\x28\x41\x97\x44\x51\x2b\xbf\xd1\x48\x87\xf0\x88\x6e\xd5\x70\x7a\xae\xa1\x56\xa8\x51\x98\x09\x48\x53\xa2\xda\x32\x8d\x1e\x5e\x03\x51\x08\x94\xe9\x9a\x93\xdd\x30\x14\x7e\x33\xa8\x04\xe1\x7c\x67\x51\x09\x70\xdc\xa0\xa0\xaf\x0d\xf3\xb2\x16\x70\xb2\xc8\xc3\xb1\x59\xfd\x84\x3b\x58\x84\x9e\xe6\x0d\x7d\xb7\x80\x24\x81\x5f\x7e\x01\x9a\xc7\xf7\xfa\x21\xfe\xfa\x1a\x85\x35\x3e\xb6\xb3\x59\xcc\x77\x0b\x68\x04\xc5\x35\x13\x38\x18\xbb\x70\x14\x9a\x46\x09\xab\xc6\xf5\x20\xcd\xab\x2e\x73\xca\x5a\x5f\x9e\x0f\x87\x6e\xd8\xd3\x3e\xfb\x3a\x2c\x20\x28\xdd\xe2\x9c\xa9\x76\x2c\xf9\xce\x89\x4c\x3f\xaf\xfe\x8b\x85\xc9\x9f\x70\xa7\x3d\x98\xce\x72\x8e\x62\x63\x4a\xb8\x80\x0f\xd9\x69\xe9\x1d\xd6\x9b\xda\x07\x13\x4f\xe3\xec\xff\xc8\xc9\x6f\xf0\xbf\xe6\xdd\x1f\x35\xf0\x70\x7c\x86\x2c\xe0\x91\xe3\x33\xf2\x2b\x78\xff\x42\xf3\xa2\xeb\xd9\xb9\xbb\xdd\x4f\x40\xa1\x96\xbc\xb1\x57\x9e\xa4\xb5\x85\xca\xad\xd0\xa4\xaa\x39\xe6\x07\x8a\xfd\xe3\x6b\x95\x5a\x85\x1f\x9c\xc6\x13\x2f\x75\x02\x1b\x14\xa8\x88\xc1\x7b\xdf\xcd\x52\x9a\x4d\x5c\x1f\xff\x48\x0c\xa6\x34\xaf\x98\xb0\x23\xa0\x77\x49\xbe\xb9\xcb\x5e\xf4\xf7\x59\x6c\x9d\x1b\x2d\xb9\xdb\x10\xba\x16\x15\xbf\x5f\x5e\xc2\x5d\x29\xb7\x5d\x05\xb6\xa5\x67\xf3\x46\xc8\xe8\xd6\x17\xf2\x16\x15\xda\x61\x7b\xa8\xcc\x68\xdc\xb7\x0e\xb4\x25\xd6\xcf\x2f\x3b\x3f\x3d\x70\x37\xf5\x8f\x95\x5e\x4b\x05\x29\x47\x03\x0f\x4f\xb8\x9b\xc0\x33\xe1\x0d\x7e\xb5\x8d\xae\x4d\x3d\x14\x46\x31\xec\xb2\x6f\x28\x7f\x95\xdc\xda\xe8\xcd\x8d\x5a\xc2\xdc\x94\xa0\x0b\x59\xe3\x22\x51\x72\x9b\x2c\xdf\xbf\x38\xc4\xfd\xfc\xd2\x94\xf6\x95\x2e\xdf\xbf\x3c\xe1\xce\x7e\xd3\x25\xcc\x2f\x8d\x5a\x0e\x84\xea\xa0\x35\x18\x37\x5b\xcd\x4a\xd2\x5d\x92\xe5\xa4\xae\x51\xd0\x54\xc9\x6d\xcf\x8c\x43\xae\xed\xdb\x9d\x68\x1f\xed\x69\x87\x12\xa8\x48\x1d\x4c\x70\xf3\xd7\xae\x5b\xed\x1a\x75\xae\x27\x2c\xc4\xd1\xee\x06\x17\x0b\x78\xf4\x66\xd9\xcc\xf4\x06\xc3\x63\x58\xce\xa2\xdc\x33\xd7\x47\x6a\xf5\x73\xcf\x4d\xac\x23\xf5\xfc\x43\xbc\xdc\x14\x0a\x89\xc1\x76\xbf\x49\x13\xca\x9e\x93\xd6\x15\x2d\x71\x5e\x70\xa2\xf5\xef\xa4\xb2\x6d\x24\x29\x88\xa2\xc9\xf5\x68\x74\x80\x6c\x1b\xcc\x29\xc0\xf2\x6f\x1d\x9e\xa5\x7c\x8d\x36\x2d\x91\x50\x54\x60\x97\xc5\xa9\x90\x5b\x45\xea\x24\x66\x60\x42\xa0\xfa\xc7\xfd\xbf\x6e\x61\xe1\x57\xd7\xbc\xe1\x8c\x5e\x1f\x34\x60\x62\x2d\xdf\x50\xa0\xe1\x41\x01\x4b\x78\x2c\x9f\x33\x6d\xa6\x1b\x25\x9b\x1a\x0e\x7f\x4e\xd7\xbc\xd1\x65\x12\x49\xa8\xd0\x90\xdf\xde\x96\xc2\x59\x90\x12\x88\x4f\x49\x9a\x32\x83\x55\xd2\xa3\x8d\x8d\x4c\xe6\xf5\x72\xbe\x5a\xba\x65\x4a\xcf\x2f\x57\xcb\xf9\x65\xbd\x6c\x19\xac\x36\xae\x3a\xc3\x8a\x78\x4a\x1f\x97\xe6\x41\xa5\x03\xc7\xb1\x52\x6d\x2d\xd8\xdf\x53\x5d\x41\xb5\x9a\xce\x7e\x30\x77\x7d\x40\x8e\xa7\x40\x9c\xcb\x91\xe4\x83\x89\x17\x6d\x71\xf7\xaa\xd7\x7f\x76\xe5\x4d\x97\x71\x35\xef\x8f\xfd\xe5\xeb\xf6\xa6\x64\x9c\xa6\x07\x19\x59\x14\x33\xbb\xe3\x9d\x1d\x33\x17\x64\xdf\x99\xdb\xb5\xdb\x75\x66\x6f\x5d\x68\xd9\x11\xa9\xef\xd7\x03\xa4\x6d\x23\x6f\xf5\x08\x3a\x9c\x93\x0a\x1d\x6d\x9c\x0a\xa1\xa0\x6f\xed\x7f\x0c\x89\x5b\x72\x9d\xb8\x2b\x48\x26\x41\xe1\xdc\xc8\x5b\x59\x10\x8e\xf6\xa1\x1d\xf3\x19\x5c\x40\x02\x09\x5c\xbc\x22\xb2\x1f\x81\x28\x3b\x29\xf9\xa2\x2f\xfa\x93\xa0\x91\x60\x6f\xe5\x1f\x08\xee\x11\xfd\xa4\xe0\x8f\x8d\x22\x7e\x44\x5b\xc1\xd2\x85\x91\xb6\x77\x69\x2b\x63\x1a\x22\x94\x97\x4d\x45\x04\xfb\x8e\x69\x16\xa7\x82\x36\xc4\xe8\xb3\x73\xa1\xa3\x3e\x27\x6a\x07\xe2\x37\xc2\x86\xb6\x54\x9c\x01\x3e\x4b\x1c\x53\x2e\x9a\xca\xbf\x74\x2e\xea\xb9\x67\x08\xfb\x95\x7f\xee\xdc\xa6\x32\x8c\xee\x9f\xfe\x14\xfc\x4d\xd9\x88\xa7\x41\x74\xff\x32\x00\x0e\x70\xf0\x7c\xbb\x75\x9d\xed\xfb\x88\xfe\x1c\xef\xc7\xe4\xa7\xfd\xff\x25\xda\xf3\x3a\x3b\xde\x5a\xf6\x06\x94\x79\xc3\x45\xb7\x7e\xc9\xec\x90\xfb\x9b\xe6\x8f\xa1\xdd\xc9\x46\x15\xf8\x5a\x51\xed\xee\x43\x56\xb3\x7e\x0f\x0c\x8d\x31\x9e\x74\xf1\x7b\x28\xb5\x53\xef\x5d\x32\x9c\x22\x88\xd4\x0f\x4a\x84\xfd\x20\x26\x73\x23\xbb\xb7\x3f\xc4\xef\x2c\xe2\x0f\x3b\x4c\x4b\x26\x1b\xe3\x9d\x32\xbc\xd3\x38\xf7\x1c\x86\x51\x18\x32\x2d\x48\x32\x5f\x2d\x6d\xd7\xb1\xff\xd5\x5d\x40\x62\xa7\xa6\xfd\x74\xa4\xed\x85\x5a\x26\xa3\xfd\xe8\xff\x01\x00\x00\xff\xff\x26\x70\x4d\x54\xd4\x13\x00\x00") +var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xdb\xba\x15\x7f\xf7\xa7\x38\xd5\x8a\x6b\x09\xb1\x15\x17\x18\xf6\x90\xd8\x06\xee\xd2\x02\xbb\x43\x76\x3b\x34\x79\x5a\x50\x20\xb4\x78\x6c\x71\xa1\x48\x8d\xa4\xe2\xba\x81\xbf\xfb\x40\x4a\x94\x68\x59\xf6\x75\x7b\x89\xa2\x88\xc8\x73\x7e\xe7\xff\x1f\x6f\xa4\xdc\x70\x4c\xb3\x9c\x28\xa3\x53\x2e\x09\x8d\xc7\x59\xa5\x14\x0a\x33\x9e\xc0\xdb\x08\x00\x60\x5c\x92\xec\x85\x6c\x50\x8f\x6f\xe0\x69\x6c\x58\x81\x9c\x09\x1c\x7f\x1d\xed\x93\xdb\xd1\x21\x80\x46\xf3\x59\xdc\x4b\x42\xef\x08\xe7\x2b\x92\xbd\xc4\x54\x91\x6d\x72\x3b\x1a\xad\x2b\x91\x19\x26\x05\xd8\x8b\x38\x69\xa0\xd9\x1a\x62\x93\x13\x21\x75\xaa\x70\xad\x50\xe7\x48\x7f\x35\xb0\x58\x40\x34\x9b\xcd\x3e\x4c\xdd\xbf\xc7\xd9\xec\xc6\xfd\xfb\x4f\xe4\xf9\xec\x69\xf8\x50\x29\x58\x40\xf4\xb0\x13\x59\xae\xa4\x60\xdf\x99\xd8\xc0\x8a\xcb\xec\x45\xc3\x5a\xc9\x02\x14\x16\xd2\x20\x68\x23\x15\xd9\x60\x74\xeb\x00\xf6\xa3\xbe\x7c\x8b\xf3\x6e\x01\xa2\xe2\x3c\x94\xf2\x3e\x8e\xfe\x82\x4a\x45\x49\xaa\x73\xb9\x8d\x93\x74\xcd\x04\x8d\xc7\x29\xe1\xa8\xcc\x38\x49\x0d\x7e\x33\xf1\x3f\x1f\x3e\xff\x9e\x6a\xa3\x98\xd8\xb0\xf5\x2e\x40\x9c\x38\xbc\x09\xfc\x35\x49\x6e\x5b\x48\x8d\xe6\x91\x15\x28\x2b\x13\x7b\xaf\xc4\xa1\x48\x7b\xb8\xcc\x88\x7d\x48\x15\xba\xa0\x04\xec\xfb\x09\x7c\x98\xcd\x66\x33\xeb\x55\xf7\x0d\xc8\x35\x0e\xaa\x9c\x33\x8a\xb1\xa7\xb3\xe7\x95\x28\xc8\xa4\x30\x84\x09\xb4\x6e\xa3\x32\xab\x0a\x14\x26\xdd\xa0\xf9\xc4\xd1\xfe\xf9\xf7\xdd\x6f\x34\x1e\xdf\xc9\xa2\x24\x4e\x35\x3d\x0e\x64\x3b\x7e\x1b\x6a\x58\x80\xc0\x2d\x34\xd1\x7f\x65\xba\x22\x9c\x7d\xaf\x55\x7e\x6c\x32\x24\x6e\x25\xf5\x10\x28\x31\xe4\x91\xac\x38\x9e\x43\xf9\xe8\x89\xe2\x1e\xb7\x61\x86\xa3\x86\x05\xbc\xed\x03\xcb\x5a\xcc\x94\x50\x7a\x27\x79\x55\x88\xf8\xcd\xec\x4a\xbc\x81\x71\x1d\x99\xf1\x04\x18\xbd\x81\xf1\x17\x2c\x39\xcb\xc8\x78\x1f\xe0\x5e\xce\x7d\x4f\x56\xc8\x7f\x9c\x57\x49\x6e\xbf\x8d\x94\xdc\xb0\xf2\x62\x7e\x4a\x0c\x7a\xc9\x0f\x86\x28\xf3\x53\x9c\x9f\x04\x75\x7c\xc3\x8c\x5f\xe4\x56\xfb\x94\xad\xeb\xe6\x20\x13\x53\x2d\x95\x89\x63\x32\x81\x55\x02\x8b\x25\x90\xb4\xa1\xa5\x72\x2b\x34\x29\x4a\x8e\xa9\x42\x2d\x79\xe5\xca\x7b\x0a\xab\xb3\x04\xc9\x21\x78\x41\xca\xae\x08\x68\xbf\x0a\xec\xb9\xbe\x86\x47\x1b\x71\x60\x1a\x4c\x8e\xb0\x66\x4a\x1b\xc8\x9c\xb5\x20\xd7\xee\xce\xf7\xa4\x74\x80\x7b\x08\xf0\x57\xa8\x04\xfb\x5f\x85\xf0\x6f\x25\x0b\x34\x39\x56\x1a\xb8\x0d\xac\x6d\x2a\x06\x18\x45\x61\xd8\x9a\xa1\x06\x24\x59\x0e\x3a\x27\x8a\x5a\xf9\x95\x46\x3a\x84\x47\x74\xa3\x86\xd3\x73\x0d\xa5\x42\x8d\xc2\x4c\x40\x9a\x1c\xd5\x96\x69\xac\xe1\x35\x10\x85\x40\x99\x2e\x39\xd9\x0d\x43\xe1\x37\x83\x4a\x10\xce\x77\x16\x95\x00\xc7\x0d\x0a\x7a\x6c\x58\x2d\x6b\x01\x27\x3b\x88\x3f\xb6\x64\x5e\x70\x07\x0b\xdf\x30\x6b\x43\xdf\x2d\x20\x8a\xe0\x97\x5f\x80\xa6\xe1\xbd\x7e\x0a\xbf\xbe\x06\x39\x13\x1e\xdb\x36\x2d\xe6\xbb\x05\x54\x82\xe2\x9a\x09\x1c\x8c\x9d\x3f\x0a\x4d\xa5\x84\x55\xe3\x76\x90\xe6\xa8\x85\x9d\xb2\xb6\xae\xfd\xa7\xae\xd5\xf6\xb4\x4f\xbe\x0e\x0b\xf0\x4a\x37\x38\x17\xaa\x1d\x4a\x7e\x70\x22\xe3\xcf\xab\xff\x62\x66\xd2\x17\xdc\xe9\x1a\x4c\x27\x29\x47\xb1\x31\x39\x5c\xc1\x87\xe4\xb4\xf4\x16\xeb\xac\xf6\xde\xc4\xd3\x38\xfb\x3f\x72\xf2\x19\xfe\x63\xde\xfd\xc1\x74\xf0\xa7\xce\x90\x05\x3c\x73\x7c\x45\x7e\x03\xef\xdf\x68\x9a\xb5\x03\x21\x75\xb7\xfb\x09\x74\x45\x5d\x93\x9c\x2b\xfb\xfd\xf3\xb1\x4a\x8d\xc2\x4f\x4e\xe3\x49\x2d\x75\x02\x1b\x14\xa8\x88\xc1\xc7\xba\x55\xc6\x34\x99\xb8\x21\xf1\x91\x18\x8c\x69\x5a\x30\x61\xe7\x4b\xef\x92\x7c\x73\x97\xbd\xe8\xef\x93\xd0\x3a\x37\xb7\x52\xb7\x7e\xb4\xfd\x2f\x7c\xbf\xbe\x86\x87\x5c\x6e\xdb\x0a\x6c\x4a\xcf\xe6\x8d\x90\xc1\x6d\x5d\xc8\x5b\x54\x68\x27\x79\x57\x99\xc1\x2e\xd1\x38\xd0\x96\x58\x3f\xbf\xec\x70\xae\x81\xdb\x95\xe2\x50\xe9\xb5\x54\x10\x73\x34\xf0\xf4\x82\xbb\x09\xbc\x12\x5e\xe1\x57\xdb\xe8\x9a\xd4\x43\x61\x14\xc3\x36\xfb\x86\xf2\x57\xc9\xad\x8d\xde\xdc\xa8\x25\xcc\x4d\x0e\x3a\x93\x25\x2e\x22\x25\xb7\xd1\xf2\xfd\x9b\x43\xdc\xcf\xaf\x4d\x6e\x5f\xe9\xf2\xfd\xdb\x0b\xee\xec\x37\x5d\xc2\xfc\xda\xa8\xe5\x40\xa8\x3a\xad\xc1\xb8\xc1\x6d\x56\x92\xee\xa2\x24\x25\x65\x89\x82\xc6\x4a\x6e\x7b\x66\x74\xb9\xb6\x6f\x16\xae\x7d\xb0\x04\x76\x25\x50\x90\xd2\x9b\xe0\x86\xbb\xdd\xe5\x9a\x1d\xed\x52\x4f\x58\x88\x83\xc5\x10\xae\x16\xf0\x5c\x9b\x65\x33\xb3\x36\x18\x9e\xfd\xe6\x17\xe4\x9e\xb9\x3d\x50\xab\x9f\x7b\x6e\x1c\x1e\xa8\x57\x3f\x84\x9b\x53\xa6\x90\x18\x6c\x96\xa7\x38\xa2\xec\x35\x6a\x5c\xd1\x10\xa7\x19\x27\x5a\xff\x4e\x0a\xdb\x46\xa2\x8c\x28\x1a\xdd\x8e\x46\x1d\x64\xd3\x60\x4e\x01\xe6\x7f\x6b\xf1\x2c\xe5\x31\xda\x34\x47\x42\x51\x81\xdd\x44\xa7\x42\x6e\x15\x29\xa3\x90\x81\x09\x81\xea\x1f\x8f\xff\xba\x87\x45\xbd\x17\xa7\x15\x67\xf4\xb6\xd3\x80\x89\xb5\x3c\xa3\x40\xc5\xbd\x02\x96\xf0\x50\x3e\x67\xda\x4c\x37\x4a\x56\x25\x74\x7f\x4e\xd7\xbc\xd2\x79\x14\x48\x28\xd0\x90\xdf\xce\x4b\xe1\xcc\x4b\xf1\xc4\xa7\x24\x4d\x99\xc1\x22\xea\xd1\x86\x46\x46\xf3\x72\x39\x5f\x2d\xdd\xa6\xa6\xe7\xd7\xab\xe5\xfc\xba\x5c\x36\x0c\x56\x1b\x57\x9d\x7e\xff\x3c\xa5\x8f\x4b\x73\xaf\x52\xc7\x71\xa8\x54\x53\x0b\xf6\xff\xa9\x2e\xa0\x58\x4d\x67\x3f\x98\xbb\x75\x40\x0e\xa7\x40\x98\xcb\x81\xe4\xce\xc4\xab\xa6\xb8\x7b\xd5\x5b\x7f\xb6\xe5\x4d\x97\x61\x35\xef\x0f\xfd\x55\xd7\xed\x5d\xce\x38\x8d\x3b\x19\x49\x10\x33\xbb\x40\x5e\x1c\x33\x17\xe4\xba\x33\x37\x3b\xbd\xeb\xcc\xb5\x75\xbe\x65\x07\xa4\x75\xbf\x1e\x20\x6d\x1a\x79\xa3\x87\xd7\xe1\x92\x54\x68\x69\xc3\x54\xf0\x05\x7d\x6f\x7f\x8e\x44\x6e\x83\x76\xe2\x6e\x20\x9a\x78\x85\x53\x23\xef\x65\x46\x38\xda\x87\x66\xcc\x27\x70\x05\x11\x44\x70\x75\x44\x64\x3f\x3c\x51\x72\x52\xf2\x55\x5f\xf4\x27\x41\x03\xc1\xb5\x95\x7f\x20\xb8\x47\xf4\x93\x82\x3f\x56\x8a\xd4\x23\xda\x0a\x96\x2e\x8c\xb4\xb9\x8b\x1b\x19\x53\x1f\xa1\x34\xaf\x0a\x22\xd8\x77\x8c\x93\x30\x15\xb4\x21\x46\x5f\x9c\x0b\x2d\xf5\x25\x51\xeb\x88\xcf\x84\x0d\x6d\xa9\x38\x03\xea\x2c\x71\x4c\xa9\xa8\x8a\xfa\xa5\x75\x51\xcf\x3d\x43\xd8\x47\xfe\x79\x70\x9b\xca\x30\x7a\xfd\xf4\xa7\xe0\xef\xf2\x4a\xbc\x0c\xa2\xd7\x2f\x03\xe0\x00\x9d\xe7\x9b\xad\xeb\x62\xdf\x07\xf4\x97\x78\x3f\x24\x3f\xed\xff\x2f\xc1\x9e\xd7\xda\x71\xf6\x37\xde\x39\xf4\x23\x17\xdd\xd7\x4b\x66\x8b\xdc\xdf\x34\x7f\x0c\xed\x41\x56\x2a\xc3\x63\x45\xb5\xbb\xf7\x59\xcd\xfa\x3d\xd0\x37\xc6\x70\xd2\x85\xef\xbe\xd4\x4e\xbd\xb7\xc9\x70\x8a\x20\x50\xdf\x2b\xe1\xf7\x83\x90\xcc\x8d\xec\xde\xfe\x10\xbe\xb3\x80\xdf\xef\x30\x0d\x99\xac\x4c\xed\x94\xe1\x9d\xc6\xb9\xa7\x1b\x46\x7e\xc8\x34\x20\xd1\x7c\xb5\xb4\x5d\xc7\xfe\xaa\xbb\x82\xc8\x4e\x4d\xfb\xe9\x48\x9b\x0b\xb5\x8c\x46\xfb\xd1\xff\x03\x00\x00\xff\xff\x96\x06\x7b\xc3\x31\x14\x00\x00") func pkgUiStaticJsBucketJsBytes() ([]byte, error) { return bindataRead( @@ -500,7 +500,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5076, mode: os.FileMode(420), modTime: time.Unix(1583435041, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5169, mode: os.FileMode(420), modTime: time.Unix(1583883963, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -520,7 +520,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -540,7 +540,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -560,7 +560,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -580,7 +580,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -600,7 +600,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -620,7 +620,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -640,7 +640,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -660,7 +660,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -680,7 +680,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -700,7 +700,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -720,7 +720,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -740,7 +740,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -760,7 +760,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -780,7 +780,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -800,7 +800,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -820,7 +820,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -840,7 +840,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -860,7 +860,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -880,7 +880,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -900,7 +900,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -920,7 +920,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -940,7 +940,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -960,7 +960,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -980,7 +980,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1000,7 +1000,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1020,7 +1020,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1040,7 +1040,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1060,7 +1060,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1080,7 +1080,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1100,7 +1100,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1120,7 +1120,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1140,7 +1140,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1160,7 +1160,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1180,7 +1180,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1200,7 +1200,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1220,7 +1220,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1240,7 +1240,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1260,7 +1260,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1280,7 +1280,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1300,7 +1300,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1320,7 +1320,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1340,7 +1340,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1360,7 +1360,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1380,7 +1380,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1400,7 +1400,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1420,7 +1420,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1440,7 +1440,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1460,7 +1460,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1480,7 +1480,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1500,7 +1500,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1520,7 +1520,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1583426981, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/ui/static/js/bucket.js b/pkg/ui/static/js/bucket.js index bb2827d0921..8ad6a40e511 100644 --- a/pkg/ui/static/js/bucket.js +++ b/pkg/ui/static/js/bucket.js @@ -29,6 +29,7 @@ function draw() { dataTable.addColumn({type: 'date', id: 'End'}); dataTable.addRows(thanos.blocks + .sort((a, b) => a.thanos.downsample.resolution - b.thanos.downsample.resolution) .map(function(d) { // Title is the first column of the timeline. // From b08c0ea62abfe4dcf1400da0e37598f0cd8fa8cf Mon Sep 17 00:00:00 2001 From: Richard Poole Date: Wed, 11 Mar 2020 21:48:15 +0000 Subject: [PATCH 019/190] Remove duplicate log.level arg in quickstart.sh (#2148) Signed-off-by: Richard Poole --- scripts/quickstart.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/quickstart.sh b/scripts/quickstart.sh index 0c26831e098..898455bc2cb 100755 --- a/scripts/quickstart.sh +++ b/scripts/quickstart.sh @@ -166,7 +166,6 @@ if [ -n "${REMOTE_WRITE_ENABLED}" ]; then ${THANOS_EXECUTABLE} receive \ --debug.name receive \ --log.level debug \ - --log.level debug \ --tsdb.path "./data/remote-write-receive-data" \ --grpc-address 0.0.0.0:10907 \ --grpc-grace-period 1s \ From 8a6746298ec39ccb40108e5517535e944d3920d3 Mon Sep 17 00:00:00 2001 From: John Chen Date: Thu, 12 Mar 2020 04:38:31 -0400 Subject: [PATCH 020/190] tutorials: fix incorrect query (#2239) You would have to query `prometheus_tsdb_head_series` instead of `sum(prometheus_tsdb_head_series)` in order to get the 5 results when deduplicating. Signed-off-by: John Chen --- tutorials/katacoda/thanos/1-globalview/step3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index 02d89317167..bd69c30c2ec 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -68,7 +68,7 @@ prometheus_tsdb_head_series{cluster="us1",instance="127.0.0.1:9092",job="prometh Now, as you remember we configured Prometheus 0 US1 and Prometheus 1 US1 to scrape the same things. We also connect Querier to both, so how Querier knows what is an HA group? -Try to query the same query as before: `sum(prometheus_tsdb_head_series)` +Try to query the same query as before: `prometheus_tsdb_head_series` Now turn off deduplication (`deduplication` button on Querier UI) and hit `Execute` again. Now you should see 5 results: From c0418a2e21fbcbd3599a8f2024d7d5f6180daf44 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Fri, 13 Mar 2020 11:07:15 +0100 Subject: [PATCH 021/190] Use new go jsonnet formatter (#2258) Signed-off-by: Kemal Akkoyun --- Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 3414f7a6d91..ca5193f4546 100644 --- a/Makefile +++ b/Makefile @@ -44,8 +44,9 @@ MISSPELL ?= $(GOBIN)/misspell-$(MISSPELL_VERSION) GOJSONTOYAML_VERSION ?= e8bd32d46b3d764bef60f12b3bada1c132c4be55 GOJSONTOYAML ?= $(GOBIN)/gojsontoyaml-$(GOJSONTOYAML_VERSION) # v0.14.0 -JSONNET_VERSION ?= fbde25be2182caa4345b03f1532450911ac7d1f3 +JSONNET_VERSION ?= 724650d358b67909a7bea00ea443e23afc3d2a17 JSONNET ?= $(GOBIN)/jsonnet-$(JSONNET_VERSION) +JSONNETFMT ?= $(GOBIN)/jsonnetfmt-$(JSONNET_VERSION) JSONNET_BUNDLER_VERSION ?= efe0c9e864431e93d5c3376bd5931d0fb9b2a296 JSONNET_BUNDLER ?= $(GOBIN)/jb-$(JSONNET_BUNDLER_VERSION) # Prometheus v2.14.0 @@ -371,19 +372,17 @@ jsonnet-vendor: $(JSONNET_BUNDLER) $(MIXIN_ROOT)/jsonnetfile.json $(MIXIN_ROOT)/ rm -rf ${JSONNET_VENDOR_DIR} cd ${MIXIN_ROOT} && $(JSONNET_BUNDLER) install -JSONNET_FMT := jsonnetfmt -n 2 --max-blank-lines 2 --string-style s --comment-style s +JSONNETFMT_CMD := $(JSONNETFMT) -n 2 --max-blank-lines 2 --string-style s --comment-style s .PHONY: jsonnet-format -jsonnet-format: - @which jsonnetfmt 2>&1 >/dev/null || ( \ - echo "Cannot find jsonnetfmt command, please install from https://github.com/google/jsonnet/releases.\nIf your C++ does not support GLIBCXX_3.4.20, please use xxx-in-container target like jsonnet-format-in-container." \ - && exit 1) +jsonnet-format: $(JSONNETFMT) find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \ - xargs -n 1 -- $(JSONNET_FMT) -i + xargs -n 1 -- $(JSONNETFMT_CMD) -i .PHONY: jsonnet-format-in-container jsonnet-format-in-container: - $(JSONNET_CONTAINER_CMD) make $(MFLAGS) jsonnet-format + $(JSONNET_CONTAINER_CMD) find . -name 'vendor' -prune -o -name '*.libsonnet' -print -o -name '*.jsonnet' -print | \ + xargs -n 1 -- jsonnetfmt -n 2 --max-blank-lines 2 --string-style s --comment-style s -i .PHONY: example-rules-lint example-rules-lint: $(PROMTOOL) examples/alerts/alerts.yaml examples/alerts/rules.yaml @@ -447,6 +446,9 @@ $(PROTOC): $(JSONNET): $(call fetch_go_bin_version,github.com/google/go-jsonnet/cmd/jsonnet,$(JSONNET_VERSION)) +$(JSONNETFMT): + $(call fetch_go_bin_version,github.com/google/go-jsonnet/cmd/jsonnetfmt,$(JSONNET_VERSION)) + $(GOJSONTOYAML): $(call fetch_go_bin_version,github.com/brancz/gojsontoyaml,$(GOJSONTOYAML_VERSION)) From 081d7493473a7e108c9bbfeba6be7876e19259d9 Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Fri, 13 Mar 2020 22:09:26 +0800 Subject: [PATCH 022/190] docs: Document Thanos Sharding (#1922) * docs: Document Thanos Sharding Signed-off-by: Xiang Dai <764524258@qq.com> * Add time partitioning Signed-off-by: Xiang Dai <764524258@qq.com> * feedback Signed-off-by: Xiang Dai <764524258@qq.com> --- docs/sharding.md | 63 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 docs/sharding.md diff --git a/docs/sharding.md b/docs/sharding.md new file mode 100644 index 00000000000..28131b2a5c1 --- /dev/null +++ b/docs/sharding.md @@ -0,0 +1,63 @@ +--- +title: Sharding +type: docs +menu: thanos +slug: /sharding.md +--- + +# Background + +Currently all components that read from object store assume that all the operations and functionality should be done based +on **all** the available blocks that are present in the certain bucket's root directory. + +This is in most cases totally fine, however with time and allowance of storing blocks from multiple `Sources` into the same bucket, +the number of objects in a bucket can grow drastically. + +This means that with time you might want to scale out certain components e.g: + +* Compactor: Larger number of objects does not matter much, however compactor has to scale (CPU, network, disk, memory) with number of Sources pushing blocks to the object storage. + +# Relabelling + +Similar to [promtail](https://github.com/grafana/loki/blob/master/docs/promtail.md#scrape-configs) this config will follow native +[Prometheus relabel-config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) syntax. + +The relabel config defines filtering process done on **every** synchronization with object storage. + +We will allow potentially manipulating with several of inputs: + +* External labels: + * `` + +Output: + +* If output is empty, drop block. + +By default, on empty relabel-config, all external labels are assumed. + +Example usages would be: + +* Drop blocks which contains external labels cluster=A + +```yaml +- action: drop + regex: "A" + source_labels: + - cluster +``` + +* Keep only blocks which contains external labels cluster=A +```yaml +- action: keep + regex: "A" + source_labels: + - cluster +``` + +We can shard by adjusting which labels should be included in the blocks. + +# Time Partitioning + +For store gateway, we can specify `--min-time` and `--max-time` flags to filter for what blocks store gateway should be responsible for. + +More details can refer to "Time based partitioning" chapter in [Store gateway](components/store.md). From b475d33d858cc03b40ee2489310bfd39f711f9d3 Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Sun, 15 Mar 2020 21:09:08 +0800 Subject: [PATCH 023/190] Sharding: document supported relabel action and add store gateway backgroud (#2272) * Sharding: document supported relabel action and add store gateway background Signed-off-by: Xiang Dai <764524258@qq.com> * add hashmod Signed-off-by: Xiang Dai <764524258@qq.com> --- docs/sharding.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/sharding.md b/docs/sharding.md index 28131b2a5c1..f42ea71cb0b 100644 --- a/docs/sharding.md +++ b/docs/sharding.md @@ -17,11 +17,21 @@ This means that with time you might want to scale out certain components e.g: * Compactor: Larger number of objects does not matter much, however compactor has to scale (CPU, network, disk, memory) with number of Sources pushing blocks to the object storage. +* Store Gateway: Queries against store gateway which are touching large number of Sources might be expensive, so it has to scale up with number of Sources if we assume those queries. + * Orthogonally we did not advertise any labels on Store Gateway's Info. This means that querier was not able to do any pre-filtering, so all store gateways in system are always touched for each query. + # Relabelling Similar to [promtail](https://github.com/grafana/loki/blob/master/docs/promtail.md#scrape-configs) this config will follow native [Prometheus relabel-config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) syntax. +Now, thanos only support following relabel actions: +* keep +* drop +* hashmod + * `externa labels` for all components + * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/master/environments/openshift/manifests/observatorium-template.yaml#L1511) + The relabel config defines filtering process done on **every** synchronization with object storage. We will allow potentially manipulating with several of inputs: From cf7c8e07178d85fbe1f6764abb2bcd1f0276fdf9 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Sun, 15 Mar 2020 17:44:15 +0100 Subject: [PATCH 024/190] Add wait-interval flag (#2265) Signed-off-by: Kemal Akkoyun --- CHANGELOG.md | 4 ++++ cmd/thanos/compact.go | 8 +++++++- docs/components/compact.md | 2 ++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6836b87c481..32923c9c5a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping +### Added + +- [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. + ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 ### Fixed diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index c14bbac3a9e..7d54845e76b 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -103,9 +103,13 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { retention5m := modelDuration(cmd.Flag("retention.resolution-5m", "How long to retain samples of resolution 1 (5 minutes) in bucket. Setting this to 0d will retain samples of this resolution forever").Default("0d")) retention1h := modelDuration(cmd.Flag("retention.resolution-1h", "How long to retain samples of resolution 2 (1 hour) in bucket. Setting this to 0d will retain samples of this resolution forever").Default("0d")) + // TODO(kakkoyun): https://github.com/thanos-io/thanos/issues/2266. wait := cmd.Flag("wait", "Do not exit after all compactions have been processed and wait for new work."). Short('w').Bool() + waitInterval := cmd.Flag("wait-interval", "Wait interval between consecutive compaction runs. Only works when --wait flag specified."). + Default("5m").Duration() + generateMissingIndexCacheFiles := cmd.Flag("index.generate-missing-cache-file", "If enabled, on startup compactor runs an on-off job that scans all the blocks to find all blocks with missing index cache file. It generates those if needed and upload."). Hidden().Default("false").Bool() @@ -146,6 +150,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { *blockSyncConcurrency, *compactionConcurrency, selectorRelabelConf, + *waitInterval, ) } } @@ -170,6 +175,7 @@ func runCompact( blockSyncConcurrency int, concurrency int, selectorRelabelConf *extflag.PathOrContent, + waitInterval time.Duration, ) error { halted := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_compactor_halted", @@ -348,7 +354,7 @@ func runCompact( } // --wait=true is specified. - return runutil.Repeat(5*time.Minute, ctx.Done(), func() error { + return runutil.Repeat(waitInterval, ctx.Done(), func() error { err := compactMainFn() if err == nil { iterations.Inc() diff --git a/docs/components/compact.md b/docs/components/compact.md index edd71eb7b11..4199daeed2f 100644 --- a/docs/components/compact.md +++ b/docs/components/compact.md @@ -121,6 +121,8 @@ Flags: samples of this resolution forever -w, --wait Do not exit after all compactions have been processed and wait for new work. + --wait-interval=5m Wait interval between consecutive compaction + runs. Only works when --wait flag specified. --downsampling.disable Disables downsampling. This is not recommended as querying long time ranges without non-downsampled data is not efficient and useful e.g it is not From 60b9b9542f043c6403f06110bf1178e308009d07 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 16 Mar 2020 09:13:16 +0000 Subject: [PATCH 025/190] store: Optimized labels conversion on store.Series; Added unsafe labels conversion. (#2230) ## Changes * method TranslateLables CPU Optimized (streamed sorting). * All store GW label conversation to []storepb.Label are now alloc-less. ``` go test -bench=BenchmarkUnsafeVSSafeLabelsConversion -run=^$ -benchmem -timeout 2h -benchtime 10s ./pkg/store/storepb/... goos: linux goarch: amd64 pkg: github.com/thanos-io/thanos/pkg/store/storepb BenchmarkUnsafeVSSafeLabelsConversion/safe-12 34822 339076 ns/op 655368 B/op 2 allocs/op BenchmarkUnsafeVSSafeLabelsConversion/unsafe-12 1000000000 2.32 ns/op 0 B/op 0 allocs/op PASS ``` TODO: Do the same on Querier. Signed-off-by: Bartlomiej Plotka --- go.mod | 2 +- go.sum | 11 +- pkg/receive/handler.go | 2 +- pkg/receive/handler_test.go | 5 +- pkg/receive/hashring.go | 2 +- pkg/receive/hashring_test.go | 2 +- pkg/receive/writer.go | 3 +- pkg/store/prometheus.go | 51 +- pkg/store/prometheus_test.go | 2 +- pkg/store/storepb/custom.go | 44 + pkg/store/storepb/custom_test.go | 56 + pkg/store/storepb/prompb/README.md | 11 + pkg/store/storepb/prompb/remote.pb.go | 1590 +++++++++++++++++ pkg/store/storepb/prompb/remote.proto | 91 + pkg/store/storepb/prompb/types.pb.go | 2272 +++++++++++++++++++++++++ pkg/store/storepb/prompb/types.proto | 94 + pkg/store/storepb/rpc.pb.go | 121 +- pkg/store/storepb/rpc.proto | 4 +- scripts/genproto.sh | 10 +- 19 files changed, 4266 insertions(+), 107 deletions(-) create mode 100644 pkg/store/storepb/prompb/README.md create mode 100644 pkg/store/storepb/prompb/remote.pb.go create mode 100644 pkg/store/storepb/prompb/remote.proto create mode 100644 pkg/store/storepb/prompb/types.pb.go create mode 100644 pkg/store/storepb/prompb/types.proto diff --git a/go.mod b/go.mod index d1530f6a045..fbc1020c09f 100644 --- a/go.mod +++ b/go.mod @@ -51,7 +51,7 @@ require ( golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e golang.org/x/text v0.3.2 - golang.org/x/tools v0.0.0-20200221224223-e1da425f72fd // indirect + golang.org/x/tools v0.0.0-20200306191617-51e69f71924f // indirect google.golang.org/api v0.14.0 google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9 google.golang.org/grpc v1.25.1 diff --git a/go.sum b/go.sum index b5031118a94..80a19ed222b 100644 --- a/go.sum +++ b/go.sum @@ -771,8 +771,8 @@ golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee h1:WG0RUwxtNT4qqaXX3DPA8zHFNm/D9xaBpxzHt1WcA/E= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0 h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -803,6 +803,8 @@ golang.org/x/net v0.0.0-20191002035440-2ec189313ef0/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20191004110552-13f9640d40b9/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191112182307-2180aed22343 h1:00ohfJ4K98s3m6BGUoBd8nyfp4Yl0GoIKvw5abItTjI= golang.org/x/net v0.0.0-20191112182307-2180aed22343/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b h1:0mm1VjtFUOIlE1SbDlwjYaDxZVDP2S5ou6y0gSgXHu8= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -897,8 +899,9 @@ golang.org/x/tools v0.0.0-20191111182352-50fa39b762bc/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2 h1:EtTFh6h4SAKemS+CURDMTDIANuduG5zKEXShyy18bGA= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20200221224223-e1da425f72fd h1:hHkvGJK23seRCflePJnVa9IMv8fsuavSCWKd11kDQFs= -golang.org/x/tools v0.0.0-20200221224223-e1da425f72fd/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20200306191617-51e69f71924f h1:bFIWQKTZ5vXyr7xMDvzbWUj5Y/WBE4a4sf35MAyZjx0= +golang.org/x/tools v0.0.0-20200306191617-51e69f71924f/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 741e99bfc94..a1545232d36 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -24,9 +24,9 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/route" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "google.golang.org/grpc" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/pkg/receive/handler_test.go b/pkg/receive/handler_test.go index 5d48e32f21f..f4f39d611b6 100644 --- a/pkg/receive/handler_test.go +++ b/pkg/receive/handler_test.go @@ -19,12 +19,11 @@ import ( "github.com/golang/snappy" "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" - "google.golang.org/grpc" - "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" + "google.golang.org/grpc" ) func TestCountCause(t *testing.T) { diff --git a/pkg/receive/hashring.go b/pkg/receive/hashring.go index 83b0bdc18eb..ef6c94390a9 100644 --- a/pkg/receive/hashring.go +++ b/pkg/receive/hashring.go @@ -11,7 +11,7 @@ import ( "github.com/cespare/xxhash" "github.com/pkg/errors" - "github.com/prometheus/prometheus/prompb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) const sep = '\xff' diff --git a/pkg/receive/hashring_test.go b/pkg/receive/hashring_test.go index b2a50fdc4bb..a7d6fdbb258 100644 --- a/pkg/receive/hashring_test.go +++ b/pkg/receive/hashring_test.go @@ -6,7 +6,7 @@ package receive import ( "testing" - "github.com/prometheus/prometheus/prompb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) func TestHash(t *testing.T) { diff --git a/pkg/receive/writer.go b/pkg/receive/writer.go index aeccbfbfbee..17a98a0ea4f 100644 --- a/pkg/receive/writer.go +++ b/pkg/receive/writer.go @@ -9,11 +9,10 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" - "github.com/prometheus/prometheus/prompb" - "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) // Appendable returns an Appender. diff --git a/pkg/store/prometheus.go b/pkg/store/prometheus.go index 5c3d7979c6a..8d041dab94e 100644 --- a/pkg/store/prometheus.go +++ b/pkg/store/prometheus.go @@ -29,13 +29,13 @@ import ( "github.com/prometheus/common/version" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/storage/remote" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/exthttp" "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/tracing" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" @@ -178,12 +178,7 @@ func (p *PrometheusStore) Series(r *storepb.SeriesRequest, s storepb.Store_Serie for k, v := range lbm { lset = append(lset, storepb.Label{Name: k, Value: v}) } - for _, l := range externalLabels { - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) - } + lset = append(lset, storepb.PromLabelsToLabelsUnsafe(externalLabels)...) sort.Slice(lset, func(i, j int) bool { return lset[i].Name < lset[j].Name }) @@ -518,32 +513,34 @@ func (p *PrometheusStore) encodeChunk(ss []prompb.Sample) (storepb.Chunk_Encodin // translateAndExtendLabels transforms a metrics into a protobuf label set. It additionally // attaches the given labels to it, overwriting existing ones on collision. +// Both input labels are expected to be sorted. +// +// NOTE(bwplotka): Don't use modify passed slices as we reuse underlying memory. func (p *PrometheusStore) translateAndExtendLabels(m []prompb.Label, extend labels.Labels) []storepb.Label { + pbLabels := storepb.PrompbLabelsToLabelsUnsafe(m) + pbExtend := storepb.PromLabelsToLabelsUnsafe(extend) + lset := make([]storepb.Label, 0, len(m)+len(extend)) + ei := 0 - for _, l := range m { - if extend.Get(l.Name) != "" { - continue +Outer: + for _, l := range pbLabels { + for ei < len(pbExtend) { + if l.Name < pbExtend[ei].Name { + break + } + lset = append(lset, pbExtend[ei]) + ei++ + if l.Name == pbExtend[ei-1].Name { + continue Outer + } } - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) + lset = append(lset, l) } - - return extendLset(lset, extend) -} - -func extendLset(lset []storepb.Label, extend labels.Labels) []storepb.Label { - for _, l := range extend { - lset = append(lset, storepb.Label{ - Name: l.Name, - Value: l.Value, - }) + for ei < len(pbExtend) { + lset = append(lset, pbExtend[ei]) + ei++ } - sort.Slice(lset, func(i, j int) bool { - return lset[i].Name < lset[j].Name - }) return lset } diff --git a/pkg/store/prometheus_test.go b/pkg/store/prometheus_test.go index 703d52f687c..ebcec0126dc 100644 --- a/pkg/store/prometheus_test.go +++ b/pkg/store/prometheus_test.go @@ -14,13 +14,13 @@ import ( "github.com/fortytw2/leaktest" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" - "github.com/prometheus/prometheus/prompb" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/chunkenc" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/testutil" ) diff --git a/pkg/store/storepb/custom.go b/pkg/store/storepb/custom.go index ea13089be43..ae5a099e6ed 100644 --- a/pkg/store/storepb/custom.go +++ b/pkg/store/storepb/custom.go @@ -5,8 +5,10 @@ package storepb import ( "strings" + "unsafe" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) var PartialResponseStrategyValues = func() []string { @@ -166,15 +168,57 @@ func (s *mergedSeriesSet) Next() bool { return true } +// LabelsToPromLabels converts Thanos proto labels to Prometheus labels in type safe manner. func LabelsToPromLabels(lset []Label) labels.Labels { ret := make(labels.Labels, len(lset)) for i, l := range lset { ret[i] = labels.Label{Name: l.Name, Value: l.Value} } + return ret +} + +// LabelsToPromLabelsUnsafe converts Thanos proto labels to Prometheus labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed []Labels. +// +// NOTE: This depends on order of struct fields etc, so use with extreme care. +func LabelsToPromLabelsUnsafe(lset []Label) labels.Labels { + return *(*[]labels.Label)(unsafe.Pointer(&lset)) +} +// PromLabelsToLabels converts Prometheus labels to Thanos proto labels in type safe manner. +func PromLabelsToLabels(lset labels.Labels) []Label { + ret := make([]Label, len(lset)) + for i, l := range lset { + ret[i] = Label{Name: l.Name, Value: l.Value} + } return ret } +// PromLabelsToLabelsUnsafe converts Prometheus labels to Thanos proto labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed labels.Labels. +// +// // NOTE: This depends on order of struct fields etc, so use with extreme care. +func PromLabelsToLabelsUnsafe(lset labels.Labels) []Label { + return *(*[]Label)(unsafe.Pointer(&lset)) +} + +// PrompbLabelsToLabels converts Prometheus labels to Thanos proto labels in type safe manner. +func PrompbLabelsToLabels(lset []prompb.Label) []Label { + ret := make([]Label, len(lset)) + for i, l := range lset { + ret[i] = Label{Name: l.Name, Value: l.Value} + } + return ret +} + +// PrompbLabelsToLabelsUnsafe converts Prometheus proto labels to Thanos proto labels in type unsafe manner. +// It reuses the same memory. Caller should abort using passed labels.Labels. +// +// // NOTE: This depends on order of struct fields etc, so use with extreme care. +func PrompbLabelsToLabelsUnsafe(lset []prompb.Label) []Label { + return *(*[]Label)(unsafe.Pointer(&lset)) +} + func LabelsToString(lset []Label) string { var s []string for _, l := range lset { diff --git a/pkg/store/storepb/custom_test.go b/pkg/store/storepb/custom_test.go index 3132b28f975..cbeaed69500 100644 --- a/pkg/store/storepb/custom_test.go +++ b/pkg/store/storepb/custom_test.go @@ -12,6 +12,7 @@ import ( "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb/chunkenc" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -328,3 +329,58 @@ func BenchmarkMergedSeriesSet(b *testing.B) { } } } + +var testLsetMap = map[string]string{ + "a": "1", + "c": "2", + "d": "dsfsdfsdfsdf123414234", + "124134235423534534ffdasdfsf": "1", + "": "", + "b": "", +} + +func TestPromLabelsToLabelsUnsafe(t *testing.T) { + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PromLabelsToLabelsUnsafe(labels.FromMap(testLsetMap))) +} + +func TestLabelsToPromLabelsUnsafe(t *testing.T) { + testutil.Equals(t, labels.FromMap(testLsetMap), LabelsToPromLabels(PromLabelsToLabels(labels.FromMap(testLsetMap)))) + testutil.Equals(t, labels.FromMap(testLsetMap), LabelsToPromLabelsUnsafe(PromLabelsToLabels(labels.FromMap(testLsetMap)))) +} + +func TestPrompbLabelsToLabelsUnsafe(t *testing.T) { + var pb []prompb.Label + for _, l := range labels.FromMap(testLsetMap) { + pb = append(pb, prompb.Label{Name: l.Name, Value: l.Value}) + } + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PrompbLabelsToLabels(pb)) + testutil.Equals(t, PromLabelsToLabels(labels.FromMap(testLsetMap)), PrompbLabelsToLabelsUnsafe(pb)) +} + +func BenchmarkUnsafeVSSafeLabelsConversion(b *testing.B) { + const ( + fmtLbl = "%07daaaaaaaaaabbbbbbbbbbccccccccccdddddddddd" + num = 10000 + ) + lbls := make([]labels.Label, 0, num) + for i := 0; i < num; i++ { + lbls = append(lbls, labels.Label{Name: fmt.Sprintf(fmtLbl, i), Value: fmt.Sprintf(fmtLbl, i)}) + } + + var converted labels.Labels + b.Run("safe", func(b *testing.B) { + b.ResetTimer() + for i := 0; i < b.N; i++ { + converted = LabelsToPromLabels(PromLabelsToLabels(lbls)) + } + }) + testutil.Equals(b, num, len(converted)) + b.Run("unsafe", func(b *testing.B) { + b.ResetTimer() + for i := 0; i < b.N; i++ { + converted = LabelsToPromLabelsUnsafe(PromLabelsToLabelsUnsafe(lbls)) + } + }) + testutil.Equals(b, num, len(converted)) + +} diff --git a/pkg/store/storepb/prompb/README.md b/pkg/store/storepb/prompb/README.md new file mode 100644 index 00000000000..b68a8c8ba42 --- /dev/null +++ b/pkg/store/storepb/prompb/README.md @@ -0,0 +1,11 @@ +NOTE(bwplotka): This excerpt of "github.com/prometheus/prometheus/prompb" reconstructed to avoid XXX fields for unsafe conversion to safe allocs. + +The compiled protobufs are version controlled and you won't normally need to +re-compile them when building Prometheus. + +If however you have modified the defs and do need to re-compile, run +`make proto` from the parent dir. + +In order for the script to run, you'll need `protoc` (version 3.5.1) in your +PATH. + diff --git a/pkg/store/storepb/prompb/remote.pb.go b/pkg/store/storepb/prompb/remote.pb.go new file mode 100644 index 00000000000..83902b37be8 --- /dev/null +++ b/pkg/store/storepb/prompb/remote.pb.go @@ -0,0 +1,1590 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: remote.proto + +package prompb + +import ( + fmt "fmt" + io "io" + math "math" + math_bits "math/bits" + + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +type ReadRequest_ResponseType int32 + +const ( + // Server will return a single ReadResponse message with matched series that includes list of raw samples. + // It's recommended to use streamed response types instead. + // + // Response headers: + // Content-Type: "application/x-protobuf" + // Content-Encoding: "snappy" + ReadRequest_SAMPLES ReadRequest_ResponseType = 0 + // Server will stream a delimited ChunkedReadResponse message that contains XOR encoded chunks for a single series. + // Each message is following varint size and fixed size bigendian uint32 for CRC32 Castagnoli checksum. + // + // Response headers: + // Content-Type: "application/x-streamed-protobuf; proto=prometheus.ChunkedReadResponse" + // Content-Encoding: "" + ReadRequest_STREAMED_XOR_CHUNKS ReadRequest_ResponseType = 1 +) + +var ReadRequest_ResponseType_name = map[int32]string{ + 0: "SAMPLES", + 1: "STREAMED_XOR_CHUNKS", +} + +var ReadRequest_ResponseType_value = map[string]int32{ + "SAMPLES": 0, + "STREAMED_XOR_CHUNKS": 1, +} + +func (x ReadRequest_ResponseType) String() string { + return proto.EnumName(ReadRequest_ResponseType_name, int32(x)) +} + +func (ReadRequest_ResponseType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{1, 0} +} + +type WriteRequest struct { + Timeseries []TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries"` +} + +func (m *WriteRequest) Reset() { *m = WriteRequest{} } +func (m *WriteRequest) String() string { return proto.CompactTextString(m) } +func (*WriteRequest) ProtoMessage() {} +func (*WriteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{0} +} +func (m *WriteRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_WriteRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *WriteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_WriteRequest.Merge(m, src) +} +func (m *WriteRequest) XXX_Size() int { + return m.Size() +} +func (m *WriteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_WriteRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_WriteRequest proto.InternalMessageInfo + +func (m *WriteRequest) GetTimeseries() []TimeSeries { + if m != nil { + return m.Timeseries + } + return nil +} + +// ReadRequest represents a remote read request. +type ReadRequest struct { + Queries []*Query `protobuf:"bytes,1,rep,name=queries,proto3" json:"queries,omitempty"` + // accepted_response_types allows negotiating the content type of the response. + // + // Response types are taken from the list in the FIFO order. If no response type in `accepted_response_types` is + // implemented by server, error is returned. + // For request that do not contain `accepted_response_types` field the SAMPLES response type will be used. + AcceptedResponseTypes []ReadRequest_ResponseType `protobuf:"varint,2,rep,packed,name=accepted_response_types,json=acceptedResponseTypes,proto3,enum=prometheus_copy.ReadRequest_ResponseType" json:"accepted_response_types,omitempty"` +} + +func (m *ReadRequest) Reset() { *m = ReadRequest{} } +func (m *ReadRequest) String() string { return proto.CompactTextString(m) } +func (*ReadRequest) ProtoMessage() {} +func (*ReadRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{1} +} +func (m *ReadRequest) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadRequest.Merge(m, src) +} +func (m *ReadRequest) XXX_Size() int { + return m.Size() +} +func (m *ReadRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ReadRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadRequest proto.InternalMessageInfo + +func (m *ReadRequest) GetQueries() []*Query { + if m != nil { + return m.Queries + } + return nil +} + +func (m *ReadRequest) GetAcceptedResponseTypes() []ReadRequest_ResponseType { + if m != nil { + return m.AcceptedResponseTypes + } + return nil +} + +// ReadResponse is a response when response_type equals SAMPLES. +type ReadResponse struct { + // In same order as the request's queries. + Results []*QueryResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"` +} + +func (m *ReadResponse) Reset() { *m = ReadResponse{} } +func (m *ReadResponse) String() string { return proto.CompactTextString(m) } +func (*ReadResponse) ProtoMessage() {} +func (*ReadResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{2} +} +func (m *ReadResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadResponse.Merge(m, src) +} +func (m *ReadResponse) XXX_Size() int { + return m.Size() +} +func (m *ReadResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ReadResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadResponse proto.InternalMessageInfo + +func (m *ReadResponse) GetResults() []*QueryResult { + if m != nil { + return m.Results + } + return nil +} + +type Query struct { + StartTimestampMs int64 `protobuf:"varint,1,opt,name=start_timestamp_ms,json=startTimestampMs,proto3" json:"start_timestamp_ms,omitempty"` + EndTimestampMs int64 `protobuf:"varint,2,opt,name=end_timestamp_ms,json=endTimestampMs,proto3" json:"end_timestamp_ms,omitempty"` + Matchers []*LabelMatcher `protobuf:"bytes,3,rep,name=matchers,proto3" json:"matchers,omitempty"` + Hints *ReadHints `protobuf:"bytes,4,opt,name=hints,proto3" json:"hints,omitempty"` +} + +func (m *Query) Reset() { *m = Query{} } +func (m *Query) String() string { return proto.CompactTextString(m) } +func (*Query) ProtoMessage() {} +func (*Query) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{3} +} +func (m *Query) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Query.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Query) XXX_Merge(src proto.Message) { + xxx_messageInfo_Query.Merge(m, src) +} +func (m *Query) XXX_Size() int { + return m.Size() +} +func (m *Query) XXX_DiscardUnknown() { + xxx_messageInfo_Query.DiscardUnknown(m) +} + +var xxx_messageInfo_Query proto.InternalMessageInfo + +func (m *Query) GetStartTimestampMs() int64 { + if m != nil { + return m.StartTimestampMs + } + return 0 +} + +func (m *Query) GetEndTimestampMs() int64 { + if m != nil { + return m.EndTimestampMs + } + return 0 +} + +func (m *Query) GetMatchers() []*LabelMatcher { + if m != nil { + return m.Matchers + } + return nil +} + +func (m *Query) GetHints() *ReadHints { + if m != nil { + return m.Hints + } + return nil +} + +type QueryResult struct { + // Samples within a time series must be ordered by time. + Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries,omitempty"` +} + +func (m *QueryResult) Reset() { *m = QueryResult{} } +func (m *QueryResult) String() string { return proto.CompactTextString(m) } +func (*QueryResult) ProtoMessage() {} +func (*QueryResult) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{4} +} +func (m *QueryResult) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_QueryResult.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *QueryResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryResult.Merge(m, src) +} +func (m *QueryResult) XXX_Size() int { + return m.Size() +} +func (m *QueryResult) XXX_DiscardUnknown() { + xxx_messageInfo_QueryResult.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryResult proto.InternalMessageInfo + +func (m *QueryResult) GetTimeseries() []*TimeSeries { + if m != nil { + return m.Timeseries + } + return nil +} + +// ChunkedReadResponse is a response when response_type equals STREAMED_XOR_CHUNKS. +// We strictly stream full series after series, optionally split by time. This means that a single frame can contain +// partition of the single series, but once a new series is started to be streamed it means that no more chunks will +// be sent for previous one. +type ChunkedReadResponse struct { + ChunkedSeries []*ChunkedSeries `protobuf:"bytes,1,rep,name=chunked_series,json=chunkedSeries,proto3" json:"chunked_series,omitempty"` + // query_index represents an index of the query from ReadRequest.queries these chunks relates to. + QueryIndex int64 `protobuf:"varint,2,opt,name=query_index,json=queryIndex,proto3" json:"query_index,omitempty"` +} + +func (m *ChunkedReadResponse) Reset() { *m = ChunkedReadResponse{} } +func (m *ChunkedReadResponse) String() string { return proto.CompactTextString(m) } +func (*ChunkedReadResponse) ProtoMessage() {} +func (*ChunkedReadResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_eefc82927d57d89b, []int{5} +} +func (m *ChunkedReadResponse) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ChunkedReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ChunkedReadResponse.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ChunkedReadResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChunkedReadResponse.Merge(m, src) +} +func (m *ChunkedReadResponse) XXX_Size() int { + return m.Size() +} +func (m *ChunkedReadResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ChunkedReadResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ChunkedReadResponse proto.InternalMessageInfo + +func (m *ChunkedReadResponse) GetChunkedSeries() []*ChunkedSeries { + if m != nil { + return m.ChunkedSeries + } + return nil +} + +func (m *ChunkedReadResponse) GetQueryIndex() int64 { + if m != nil { + return m.QueryIndex + } + return 0 +} + +func init() { + proto.RegisterEnum("prometheus_copy.ReadRequest_ResponseType", ReadRequest_ResponseType_name, ReadRequest_ResponseType_value) + proto.RegisterType((*WriteRequest)(nil), "prometheus_copy.WriteRequest") + proto.RegisterType((*ReadRequest)(nil), "prometheus_copy.ReadRequest") + proto.RegisterType((*ReadResponse)(nil), "prometheus_copy.ReadResponse") + proto.RegisterType((*Query)(nil), "prometheus_copy.Query") + proto.RegisterType((*QueryResult)(nil), "prometheus_copy.QueryResult") + proto.RegisterType((*ChunkedReadResponse)(nil), "prometheus_copy.ChunkedReadResponse") +} + +func init() { proto.RegisterFile("remote.proto", fileDescriptor_eefc82927d57d89b) } + +var fileDescriptor_eefc82927d57d89b = []byte{ + // 486 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xcd, 0x6e, 0xd3, 0x40, + 0x10, 0x80, 0xed, 0xa6, 0x6d, 0xd0, 0x38, 0x84, 0x68, 0x0b, 0x34, 0x0a, 0xe0, 0x46, 0x3e, 0x19, + 0x09, 0x85, 0x2a, 0x20, 0x24, 0xc4, 0x29, 0x2d, 0x41, 0x05, 0x1a, 0xa0, 0xeb, 0x20, 0x10, 0x17, + 0xcb, 0xb1, 0x47, 0x8d, 0x45, 0xfd, 0xd3, 0xdd, 0xb5, 0x84, 0x0f, 0xbc, 0x03, 0x8f, 0xd5, 0x03, + 0x87, 0x1e, 0x7b, 0x42, 0x28, 0x79, 0x11, 0xe4, 0x75, 0x1c, 0x6d, 0x08, 0x1c, 0x7a, 0xdb, 0xcc, + 0x7c, 0xf3, 0xed, 0xce, 0x64, 0x0c, 0x0d, 0x86, 0x51, 0x22, 0xb0, 0x97, 0xb2, 0x44, 0x24, 0xe4, + 0x56, 0xca, 0x92, 0x08, 0xc5, 0x14, 0x33, 0xee, 0xfa, 0x49, 0x9a, 0x77, 0x0c, 0x91, 0xa7, 0xc8, + 0xcb, 0x6c, 0xe7, 0xf6, 0x69, 0x72, 0x9a, 0xc8, 0xe3, 0xe3, 0xe2, 0x54, 0x46, 0xad, 0x13, 0x68, + 0x7c, 0x62, 0xa1, 0x40, 0x8a, 0xe7, 0x19, 0x72, 0x41, 0x06, 0x00, 0x22, 0x8c, 0x90, 0x23, 0x0b, + 0x91, 0xb7, 0xf5, 0x6e, 0xcd, 0x36, 0xfa, 0xf7, 0x7a, 0x7f, 0x89, 0x7b, 0xe3, 0x30, 0x42, 0x47, + 0x22, 0x07, 0x9b, 0x17, 0xbf, 0xf6, 0x34, 0xaa, 0x14, 0x59, 0x57, 0x3a, 0x18, 0x14, 0xbd, 0xa0, + 0x52, 0xee, 0x43, 0xfd, 0x3c, 0x53, 0x7d, 0x77, 0xd7, 0x7c, 0x27, 0x19, 0xb2, 0x9c, 0x56, 0x18, + 0xf1, 0x60, 0xd7, 0xf3, 0x7d, 0x4c, 0x05, 0x06, 0x2e, 0x43, 0x9e, 0x26, 0x31, 0x47, 0x57, 0xf6, + 0xd2, 0xde, 0xe8, 0xd6, 0xec, 0x66, 0xff, 0xe1, 0x9a, 0x41, 0xb9, 0xb0, 0x47, 0x17, 0x25, 0xe3, + 0x3c, 0x45, 0x7a, 0xa7, 0x32, 0xa9, 0x51, 0x6e, 0x3d, 0x85, 0x86, 0x1a, 0x20, 0x06, 0xd4, 0x9d, + 0xc1, 0xe8, 0xc3, 0xf1, 0xd0, 0x69, 0x69, 0x64, 0x17, 0x76, 0x9c, 0x31, 0x1d, 0x0e, 0x46, 0xc3, + 0x97, 0xee, 0xe7, 0xf7, 0xd4, 0x3d, 0x3c, 0xfa, 0xf8, 0xee, 0xad, 0xd3, 0xd2, 0xad, 0x57, 0x45, + 0x95, 0xb7, 0x54, 0x91, 0x67, 0x50, 0x67, 0xc8, 0xb3, 0x33, 0x51, 0xb5, 0x76, 0xff, 0x3f, 0xad, + 0x49, 0x88, 0x56, 0xb0, 0xf5, 0x53, 0x87, 0x2d, 0x99, 0x20, 0x8f, 0x80, 0x70, 0xe1, 0x31, 0xe1, + 0xca, 0x01, 0x0a, 0x2f, 0x4a, 0xdd, 0xa8, 0x90, 0xe9, 0x76, 0x8d, 0xb6, 0x64, 0x66, 0x5c, 0x25, + 0x46, 0x9c, 0xd8, 0xd0, 0xc2, 0x38, 0x58, 0x65, 0x37, 0x24, 0xdb, 0xc4, 0x38, 0x50, 0xc9, 0xe7, + 0x70, 0x23, 0xf2, 0x84, 0x3f, 0x45, 0xc6, 0xdb, 0x35, 0xf9, 0xb4, 0x07, 0x6b, 0x4f, 0x3b, 0xf6, + 0x26, 0x78, 0x36, 0x2a, 0x29, 0xba, 0xc4, 0xc9, 0x3e, 0x6c, 0x4d, 0xc3, 0x58, 0xf0, 0xf6, 0x66, + 0x57, 0xb7, 0x8d, 0x7e, 0xe7, 0x9f, 0xb3, 0x3e, 0x2a, 0x08, 0x5a, 0x82, 0xd6, 0x1b, 0x30, 0x94, + 0x36, 0xc9, 0x8b, 0x6b, 0xee, 0xd0, 0xca, 0xf6, 0x7c, 0x87, 0x9d, 0xc3, 0x69, 0x16, 0x7f, 0x2d, + 0xfe, 0x30, 0x65, 0xd2, 0x43, 0x68, 0xfa, 0x65, 0xd8, 0x5d, 0xf1, 0x9a, 0x6b, 0xde, 0x45, 0xf5, + 0x42, 0x7d, 0xd3, 0x57, 0x7f, 0x92, 0x3d, 0x30, 0x8a, 0x25, 0xcb, 0xdd, 0x30, 0x0e, 0xf0, 0xdb, + 0x62, 0x76, 0x20, 0x43, 0xaf, 0x8b, 0xc8, 0x41, 0xf7, 0x62, 0x66, 0xea, 0x97, 0x33, 0x53, 0xff, + 0x3d, 0x33, 0xf5, 0x1f, 0x73, 0x53, 0xbb, 0x9c, 0x9b, 0xda, 0xd5, 0xdc, 0xd4, 0xbe, 0x6c, 0x17, + 0x17, 0xa5, 0x93, 0xc9, 0xb6, 0xfc, 0x70, 0x9e, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0x4b, 0x5c, + 0x76, 0xc3, 0x7c, 0x03, 0x00, 0x00, +} + +func (m *WriteRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *WriteRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *WriteRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Timeseries) > 0 { + for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ReadRequest) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadRequest) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.AcceptedResponseTypes) > 0 { + dAtA2 := make([]byte, len(m.AcceptedResponseTypes)*10) + var j1 int + for _, num := range m.AcceptedResponseTypes { + for num >= 1<<7 { + dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) + num >>= 7 + j1++ + } + dAtA2[j1] = uint8(num) + j1++ + } + i -= j1 + copy(dAtA[i:], dAtA2[:j1]) + i = encodeVarintRemote(dAtA, i, uint64(j1)) + i-- + dAtA[i] = 0x12 + } + if len(m.Queries) > 0 { + for iNdEx := len(m.Queries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Queries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ReadResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Results) > 0 { + for iNdEx := len(m.Results) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Results[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *Query) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Query) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Hints != nil { + { + size, err := m.Hints.MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x22 + } + if len(m.Matchers) > 0 { + for iNdEx := len(m.Matchers) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Matchers[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x1a + } + } + if m.EndTimestampMs != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.EndTimestampMs)) + i-- + dAtA[i] = 0x10 + } + if m.StartTimestampMs != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.StartTimestampMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *QueryResult) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *QueryResult) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *QueryResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Timeseries) > 0 { + for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *ChunkedReadResponse) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ChunkedReadResponse) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ChunkedReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.QueryIndex != 0 { + i = encodeVarintRemote(dAtA, i, uint64(m.QueryIndex)) + i-- + dAtA[i] = 0x10 + } + if len(m.ChunkedSeries) > 0 { + for iNdEx := len(m.ChunkedSeries) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.ChunkedSeries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintRemote(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintRemote(dAtA []byte, offset int, v uint64) int { + offset -= sovRemote(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *WriteRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Timeseries) > 0 { + for _, e := range m.Timeseries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *ReadRequest) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Queries) > 0 { + for _, e := range m.Queries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if len(m.AcceptedResponseTypes) > 0 { + l = 0 + for _, e := range m.AcceptedResponseTypes { + l += sovRemote(uint64(e)) + } + n += 1 + sovRemote(uint64(l)) + l + } + return n +} + +func (m *ReadResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Results) > 0 { + for _, e := range m.Results { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *Query) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.StartTimestampMs != 0 { + n += 1 + sovRemote(uint64(m.StartTimestampMs)) + } + if m.EndTimestampMs != 0 { + n += 1 + sovRemote(uint64(m.EndTimestampMs)) + } + if len(m.Matchers) > 0 { + for _, e := range m.Matchers { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if m.Hints != nil { + l = m.Hints.Size() + n += 1 + l + sovRemote(uint64(l)) + } + return n +} + +func (m *QueryResult) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Timeseries) > 0 { + for _, e := range m.Timeseries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + return n +} + +func (m *ChunkedReadResponse) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.ChunkedSeries) > 0 { + for _, e := range m.ChunkedSeries { + l = e.Size() + n += 1 + l + sovRemote(uint64(l)) + } + } + if m.QueryIndex != 0 { + n += 1 + sovRemote(uint64(m.QueryIndex)) + } + return n +} + +func sovRemote(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozRemote(x uint64) (n int) { + return sovRemote(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *WriteRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: WriteRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: WriteRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Timeseries = append(m.Timeseries, TimeSeries{}) + if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadRequest) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadRequest: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadRequest: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Queries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Queries = append(m.Queries, &Query{}) + if err := m.Queries[len(m.Queries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType == 0 { + var v ReadRequest_ResponseType + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= ReadRequest_ResponseType(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) + } else if wireType == 2 { + var packedLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + packedLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if packedLen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + packedLen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + var elementCount int + if elementCount != 0 && len(m.AcceptedResponseTypes) == 0 { + m.AcceptedResponseTypes = make([]ReadRequest_ResponseType, 0, elementCount) + } + for iNdEx < postIndex { + var v ReadRequest_ResponseType + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= ReadRequest_ResponseType(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) + } + } else { + return fmt.Errorf("proto: wrong wireType = %d for field AcceptedResponseTypes", wireType) + } + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Results", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Results = append(m.Results, &QueryResult{}) + if err := m.Results[len(m.Results)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Query) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Query: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Query: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartTimestampMs", wireType) + } + m.StartTimestampMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartTimestampMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EndTimestampMs", wireType) + } + m.EndTimestampMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EndTimestampMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Matchers", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Matchers = append(m.Matchers, &LabelMatcher{}) + if err := m.Matchers[len(m.Matchers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Hints", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + if m.Hints == nil { + m.Hints = &ReadHints{} + } + if err := m.Hints.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *QueryResult) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: QueryResult: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: QueryResult: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Timeseries = append(m.Timeseries, &TimeSeries{}) + if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ChunkedReadResponse) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ChunkedReadResponse: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ChunkedReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field ChunkedSeries", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthRemote + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthRemote + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.ChunkedSeries = append(m.ChunkedSeries, &ChunkedSeries{}) + if err := m.ChunkedSeries[len(m.ChunkedSeries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field QueryIndex", wireType) + } + m.QueryIndex = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowRemote + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.QueryIndex |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipRemote(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthRemote + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipRemote(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowRemote + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthRemote + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupRemote + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthRemote + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthRemote = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowRemote = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupRemote = fmt.Errorf("proto: unexpected end of group") +) diff --git a/pkg/store/storepb/prompb/remote.proto b/pkg/store/storepb/prompb/remote.proto new file mode 100644 index 00000000000..e72d94bb011 --- /dev/null +++ b/pkg/store/storepb/prompb/remote.proto @@ -0,0 +1,91 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +// Copyright 2016 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; +package prometheus_copy; + +option go_package = "prompb"; + +import "types.proto"; +import "gogoproto/gogo.proto"; + +// Do not generate XXX fields to reduce memory footprint and opening a door +// for zero-copy casts to/from prometheus data types. +option (gogoproto.goproto_unkeyed_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; +option (gogoproto.goproto_sizecache_all) = false; + +message WriteRequest { + repeated TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; +} + +// ReadRequest represents a remote read request. +message ReadRequest { + repeated Query queries = 1; + + enum ResponseType { + // Server will return a single ReadResponse message with matched series that includes list of raw samples. + // It's recommended to use streamed response types instead. + // + // Response headers: + // Content-Type: "application/x-protobuf" + // Content-Encoding: "snappy" + SAMPLES = 0; + // Server will stream a delimited ChunkedReadResponse message that contains XOR encoded chunks for a single series. + // Each message is following varint size and fixed size bigendian uint32 for CRC32 Castagnoli checksum. + // + // Response headers: + // Content-Type: "application/x-streamed-protobuf; proto=prometheus.ChunkedReadResponse" + // Content-Encoding: "" + STREAMED_XOR_CHUNKS = 1; + } + + // accepted_response_types allows negotiating the content type of the response. + // + // Response types are taken from the list in the FIFO order. If no response type in `accepted_response_types` is + // implemented by server, error is returned. + // For request that do not contain `accepted_response_types` field the SAMPLES response type will be used. + repeated ResponseType accepted_response_types = 2; +} + +// ReadResponse is a response when response_type equals SAMPLES. +message ReadResponse { + // In same order as the request's queries. + repeated QueryResult results = 1; +} + +message Query { + int64 start_timestamp_ms = 1; + int64 end_timestamp_ms = 2; + repeated LabelMatcher matchers = 3; + ReadHints hints = 4; +} + +message QueryResult { + // Samples within a time series must be ordered by time. + repeated TimeSeries timeseries = 1; +} + +// ChunkedReadResponse is a response when response_type equals STREAMED_XOR_CHUNKS. +// We strictly stream full series after series, optionally split by time. This means that a single frame can contain +// partition of the single series, but once a new series is started to be streamed it means that no more chunks will +// be sent for previous one. +message ChunkedReadResponse { + repeated ChunkedSeries chunked_series = 1; + + // query_index represents an index of the query from ReadRequest.queries these chunks relates to. + int64 query_index = 2; +} diff --git a/pkg/store/storepb/prompb/types.pb.go b/pkg/store/storepb/prompb/types.pb.go new file mode 100644 index 00000000000..c9a0775b637 --- /dev/null +++ b/pkg/store/storepb/prompb/types.pb.go @@ -0,0 +1,2272 @@ +// Code generated by protoc-gen-gogo. DO NOT EDIT. +// source: types.proto + +package prompb + +import ( + encoding_binary "encoding/binary" + fmt "fmt" + io "io" + math "math" + math_bits "math/bits" + + _ "github.com/gogo/protobuf/gogoproto" + proto "github.com/gogo/protobuf/proto" +) + +// Reference imports to suppress errors if they are not otherwise used. +var _ = proto.Marshal +var _ = fmt.Errorf +var _ = math.Inf + +// This is a compile-time assertion to ensure that this generated file +// is compatible with the proto package it is being compiled against. +// A compilation error at this line likely means your copy of the +// proto package needs to be updated. +const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package + +type LabelMatcher_Type int32 + +const ( + LabelMatcher_EQ LabelMatcher_Type = 0 + LabelMatcher_NEQ LabelMatcher_Type = 1 + LabelMatcher_RE LabelMatcher_Type = 2 + LabelMatcher_NRE LabelMatcher_Type = 3 +) + +var LabelMatcher_Type_name = map[int32]string{ + 0: "EQ", + 1: "NEQ", + 2: "RE", + 3: "NRE", +} + +var LabelMatcher_Type_value = map[string]int32{ + "EQ": 0, + "NEQ": 1, + "RE": 2, + "NRE": 3, +} + +func (x LabelMatcher_Type) String() string { + return proto.EnumName(LabelMatcher_Type_name, int32(x)) +} + +func (LabelMatcher_Type) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{4, 0} +} + +// We require this to match chunkenc.Encoding. +type Chunk_Encoding int32 + +const ( + Chunk_UNKNOWN Chunk_Encoding = 0 + Chunk_XOR Chunk_Encoding = 1 +) + +var Chunk_Encoding_name = map[int32]string{ + 0: "UNKNOWN", + 1: "XOR", +} + +var Chunk_Encoding_value = map[string]int32{ + "UNKNOWN": 0, + "XOR": 1, +} + +func (x Chunk_Encoding) String() string { + return proto.EnumName(Chunk_Encoding_name, int32(x)) +} + +func (Chunk_Encoding) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{6, 0} +} + +type Sample struct { + Value float64 `protobuf:"fixed64,1,opt,name=value,proto3" json:"value,omitempty"` + Timestamp int64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` +} + +func (m *Sample) Reset() { *m = Sample{} } +func (m *Sample) String() string { return proto.CompactTextString(m) } +func (*Sample) ProtoMessage() {} +func (*Sample) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{0} +} +func (m *Sample) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Sample) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Sample.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Sample) XXX_Merge(src proto.Message) { + xxx_messageInfo_Sample.Merge(m, src) +} +func (m *Sample) XXX_Size() int { + return m.Size() +} +func (m *Sample) XXX_DiscardUnknown() { + xxx_messageInfo_Sample.DiscardUnknown(m) +} + +var xxx_messageInfo_Sample proto.InternalMessageInfo + +func (m *Sample) GetValue() float64 { + if m != nil { + return m.Value + } + return 0 +} + +func (m *Sample) GetTimestamp() int64 { + if m != nil { + return m.Timestamp + } + return 0 +} + +// TimeSeries represents samples and labels for a single time series. +type TimeSeries struct { + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` + Samples []Sample `protobuf:"bytes,2,rep,name=samples,proto3" json:"samples"` +} + +func (m *TimeSeries) Reset() { *m = TimeSeries{} } +func (m *TimeSeries) String() string { return proto.CompactTextString(m) } +func (*TimeSeries) ProtoMessage() {} +func (*TimeSeries) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{1} +} +func (m *TimeSeries) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *TimeSeries) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_TimeSeries.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *TimeSeries) XXX_Merge(src proto.Message) { + xxx_messageInfo_TimeSeries.Merge(m, src) +} +func (m *TimeSeries) XXX_Size() int { + return m.Size() +} +func (m *TimeSeries) XXX_DiscardUnknown() { + xxx_messageInfo_TimeSeries.DiscardUnknown(m) +} + +var xxx_messageInfo_TimeSeries proto.InternalMessageInfo + +func (m *TimeSeries) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +func (m *TimeSeries) GetSamples() []Sample { + if m != nil { + return m.Samples + } + return nil +} + +type Label struct { + Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *Label) Reset() { *m = Label{} } +func (m *Label) String() string { return proto.CompactTextString(m) } +func (*Label) ProtoMessage() {} +func (*Label) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{2} +} +func (m *Label) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Label) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Label.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Label) XXX_Merge(src proto.Message) { + xxx_messageInfo_Label.Merge(m, src) +} +func (m *Label) XXX_Size() int { + return m.Size() +} +func (m *Label) XXX_DiscardUnknown() { + xxx_messageInfo_Label.DiscardUnknown(m) +} + +var xxx_messageInfo_Label proto.InternalMessageInfo + +func (m *Label) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *Label) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +type Labels struct { + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` +} + +func (m *Labels) Reset() { *m = Labels{} } +func (m *Labels) String() string { return proto.CompactTextString(m) } +func (*Labels) ProtoMessage() {} +func (*Labels) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{3} +} +func (m *Labels) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Labels) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Labels.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Labels) XXX_Merge(src proto.Message) { + xxx_messageInfo_Labels.Merge(m, src) +} +func (m *Labels) XXX_Size() int { + return m.Size() +} +func (m *Labels) XXX_DiscardUnknown() { + xxx_messageInfo_Labels.DiscardUnknown(m) +} + +var xxx_messageInfo_Labels proto.InternalMessageInfo + +func (m *Labels) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +// Matcher specifies a rule, which can match or set of labels or not. +type LabelMatcher struct { + Type LabelMatcher_Type `protobuf:"varint,1,opt,name=type,proto3,enum=prometheus_copy.LabelMatcher_Type" json:"type,omitempty"` + Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` + Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` +} + +func (m *LabelMatcher) Reset() { *m = LabelMatcher{} } +func (m *LabelMatcher) String() string { return proto.CompactTextString(m) } +func (*LabelMatcher) ProtoMessage() {} +func (*LabelMatcher) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{4} +} +func (m *LabelMatcher) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *LabelMatcher) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_LabelMatcher.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *LabelMatcher) XXX_Merge(src proto.Message) { + xxx_messageInfo_LabelMatcher.Merge(m, src) +} +func (m *LabelMatcher) XXX_Size() int { + return m.Size() +} +func (m *LabelMatcher) XXX_DiscardUnknown() { + xxx_messageInfo_LabelMatcher.DiscardUnknown(m) +} + +var xxx_messageInfo_LabelMatcher proto.InternalMessageInfo + +func (m *LabelMatcher) GetType() LabelMatcher_Type { + if m != nil { + return m.Type + } + return LabelMatcher_EQ +} + +func (m *LabelMatcher) GetName() string { + if m != nil { + return m.Name + } + return "" +} + +func (m *LabelMatcher) GetValue() string { + if m != nil { + return m.Value + } + return "" +} + +type ReadHints struct { + StepMs int64 `protobuf:"varint,1,opt,name=step_ms,json=stepMs,proto3" json:"step_ms,omitempty"` + Func string `protobuf:"bytes,2,opt,name=func,proto3" json:"func,omitempty"` + StartMs int64 `protobuf:"varint,3,opt,name=start_ms,json=startMs,proto3" json:"start_ms,omitempty"` + EndMs int64 `protobuf:"varint,4,opt,name=end_ms,json=endMs,proto3" json:"end_ms,omitempty"` + Grouping []string `protobuf:"bytes,5,rep,name=grouping,proto3" json:"grouping,omitempty"` + By bool `protobuf:"varint,6,opt,name=by,proto3" json:"by,omitempty"` + RangeMs int64 `protobuf:"varint,7,opt,name=range_ms,json=rangeMs,proto3" json:"range_ms,omitempty"` +} + +func (m *ReadHints) Reset() { *m = ReadHints{} } +func (m *ReadHints) String() string { return proto.CompactTextString(m) } +func (*ReadHints) ProtoMessage() {} +func (*ReadHints) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{5} +} +func (m *ReadHints) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ReadHints) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ReadHints.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ReadHints) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadHints.Merge(m, src) +} +func (m *ReadHints) XXX_Size() int { + return m.Size() +} +func (m *ReadHints) XXX_DiscardUnknown() { + xxx_messageInfo_ReadHints.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadHints proto.InternalMessageInfo + +func (m *ReadHints) GetStepMs() int64 { + if m != nil { + return m.StepMs + } + return 0 +} + +func (m *ReadHints) GetFunc() string { + if m != nil { + return m.Func + } + return "" +} + +func (m *ReadHints) GetStartMs() int64 { + if m != nil { + return m.StartMs + } + return 0 +} + +func (m *ReadHints) GetEndMs() int64 { + if m != nil { + return m.EndMs + } + return 0 +} + +func (m *ReadHints) GetGrouping() []string { + if m != nil { + return m.Grouping + } + return nil +} + +func (m *ReadHints) GetBy() bool { + if m != nil { + return m.By + } + return false +} + +func (m *ReadHints) GetRangeMs() int64 { + if m != nil { + return m.RangeMs + } + return 0 +} + +// Chunk represents a TSDB chunk. +// Time range [min, max] is inclusive. +type Chunk struct { + MinTimeMs int64 `protobuf:"varint,1,opt,name=min_time_ms,json=minTimeMs,proto3" json:"min_time_ms,omitempty"` + MaxTimeMs int64 `protobuf:"varint,2,opt,name=max_time_ms,json=maxTimeMs,proto3" json:"max_time_ms,omitempty"` + Type Chunk_Encoding `protobuf:"varint,3,opt,name=type,proto3,enum=prometheus_copy.Chunk_Encoding" json:"type,omitempty"` + Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` +} + +func (m *Chunk) Reset() { *m = Chunk{} } +func (m *Chunk) String() string { return proto.CompactTextString(m) } +func (*Chunk) ProtoMessage() {} +func (*Chunk) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{6} +} +func (m *Chunk) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *Chunk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_Chunk.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *Chunk) XXX_Merge(src proto.Message) { + xxx_messageInfo_Chunk.Merge(m, src) +} +func (m *Chunk) XXX_Size() int { + return m.Size() +} +func (m *Chunk) XXX_DiscardUnknown() { + xxx_messageInfo_Chunk.DiscardUnknown(m) +} + +var xxx_messageInfo_Chunk proto.InternalMessageInfo + +func (m *Chunk) GetMinTimeMs() int64 { + if m != nil { + return m.MinTimeMs + } + return 0 +} + +func (m *Chunk) GetMaxTimeMs() int64 { + if m != nil { + return m.MaxTimeMs + } + return 0 +} + +func (m *Chunk) GetType() Chunk_Encoding { + if m != nil { + return m.Type + } + return Chunk_UNKNOWN +} + +func (m *Chunk) GetData() []byte { + if m != nil { + return m.Data + } + return nil +} + +// ChunkedSeries represents single, encoded time series. +type ChunkedSeries struct { + // Labels should be sorted. + Labels []Label `protobuf:"bytes,1,rep,name=labels,proto3" json:"labels"` + // Chunks will be in start time order and may overlap. + Chunks []Chunk `protobuf:"bytes,2,rep,name=chunks,proto3" json:"chunks"` +} + +func (m *ChunkedSeries) Reset() { *m = ChunkedSeries{} } +func (m *ChunkedSeries) String() string { return proto.CompactTextString(m) } +func (*ChunkedSeries) ProtoMessage() {} +func (*ChunkedSeries) Descriptor() ([]byte, []int) { + return fileDescriptor_d938547f84707355, []int{7} +} +func (m *ChunkedSeries) XXX_Unmarshal(b []byte) error { + return m.Unmarshal(b) +} +func (m *ChunkedSeries) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + if deterministic { + return xxx_messageInfo_ChunkedSeries.Marshal(b, m, deterministic) + } else { + b = b[:cap(b)] + n, err := m.MarshalToSizedBuffer(b) + if err != nil { + return nil, err + } + return b[:n], nil + } +} +func (m *ChunkedSeries) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChunkedSeries.Merge(m, src) +} +func (m *ChunkedSeries) XXX_Size() int { + return m.Size() +} +func (m *ChunkedSeries) XXX_DiscardUnknown() { + xxx_messageInfo_ChunkedSeries.DiscardUnknown(m) +} + +var xxx_messageInfo_ChunkedSeries proto.InternalMessageInfo + +func (m *ChunkedSeries) GetLabels() []Label { + if m != nil { + return m.Labels + } + return nil +} + +func (m *ChunkedSeries) GetChunks() []Chunk { + if m != nil { + return m.Chunks + } + return nil +} + +func init() { + proto.RegisterEnum("prometheus_copy.LabelMatcher_Type", LabelMatcher_Type_name, LabelMatcher_Type_value) + proto.RegisterEnum("prometheus_copy.Chunk_Encoding", Chunk_Encoding_name, Chunk_Encoding_value) + proto.RegisterType((*Sample)(nil), "prometheus_copy.Sample") + proto.RegisterType((*TimeSeries)(nil), "prometheus_copy.TimeSeries") + proto.RegisterType((*Label)(nil), "prometheus_copy.Label") + proto.RegisterType((*Labels)(nil), "prometheus_copy.Labels") + proto.RegisterType((*LabelMatcher)(nil), "prometheus_copy.LabelMatcher") + proto.RegisterType((*ReadHints)(nil), "prometheus_copy.ReadHints") + proto.RegisterType((*Chunk)(nil), "prometheus_copy.Chunk") + proto.RegisterType((*ChunkedSeries)(nil), "prometheus_copy.ChunkedSeries") +} + +func init() { proto.RegisterFile("types.proto", fileDescriptor_d938547f84707355) } + +var fileDescriptor_d938547f84707355 = []byte{ + // 561 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x53, 0xc1, 0x6e, 0xd3, 0x40, + 0x10, 0xcd, 0xda, 0x89, 0x9d, 0x4c, 0x4a, 0x89, 0x56, 0xa5, 0x35, 0x15, 0x72, 0x2d, 0x9f, 0x7c, + 0x0a, 0xa2, 0xad, 0xe0, 0x82, 0x38, 0x14, 0x45, 0x42, 0xa2, 0x4e, 0xd5, 0x6d, 0x11, 0x88, 0x4b, + 0xb4, 0x89, 0x17, 0xc7, 0x22, 0x5e, 0x5b, 0xde, 0x0d, 0x6a, 0xd4, 0x9f, 0xe0, 0xcc, 0x5f, 0xc0, + 0x57, 0xf4, 0xd8, 0x23, 0x27, 0x84, 0x92, 0x1f, 0x41, 0xbb, 0x76, 0x12, 0x44, 0x73, 0xa2, 0xb7, + 0x99, 0x79, 0x6f, 0xde, 0x3c, 0xef, 0x8c, 0xa1, 0x2d, 0x67, 0x39, 0x13, 0xdd, 0xbc, 0xc8, 0x64, + 0x86, 0x1f, 0xe6, 0x45, 0x96, 0x32, 0x39, 0x66, 0x53, 0x31, 0x18, 0x65, 0xf9, 0x6c, 0x7f, 0x27, + 0xce, 0xe2, 0x4c, 0x63, 0x4f, 0x55, 0x54, 0xd2, 0xfc, 0x97, 0x60, 0x5d, 0xd0, 0x34, 0x9f, 0x30, + 0xbc, 0x03, 0x8d, 0x2f, 0x74, 0x32, 0x65, 0x0e, 0xf2, 0x50, 0x80, 0x48, 0x99, 0xe0, 0x27, 0xd0, + 0x92, 0x49, 0xca, 0x84, 0xa4, 0x69, 0xee, 0x18, 0x1e, 0x0a, 0x4c, 0xb2, 0x2e, 0xf8, 0xd7, 0x00, + 0x97, 0x49, 0xca, 0x2e, 0x58, 0x91, 0x30, 0x81, 0x8f, 0xc1, 0x9a, 0xd0, 0x21, 0x9b, 0x08, 0x07, + 0x79, 0x66, 0xd0, 0x3e, 0xdc, 0xed, 0xfe, 0xe3, 0xa1, 0x7b, 0xaa, 0xe0, 0x93, 0xfa, 0xcd, 0xaf, + 0x83, 0x1a, 0xa9, 0xb8, 0xf8, 0x05, 0xd8, 0x42, 0x3b, 0x10, 0x8e, 0xa1, 0xdb, 0xf6, 0xee, 0xb4, + 0x95, 0x0e, 0xab, 0xbe, 0x25, 0xdb, 0x7f, 0x06, 0x0d, 0xad, 0x87, 0x31, 0xd4, 0x39, 0x4d, 0x4b, + 0xe3, 0x2d, 0xa2, 0xe3, 0xf5, 0xd7, 0x18, 0xba, 0x58, 0x26, 0xfe, 0x2b, 0xb0, 0x4e, 0xcb, 0xa9, + 0xff, 0xe5, 0xd5, 0xff, 0x86, 0x60, 0x4b, 0xd7, 0x43, 0x2a, 0x47, 0x63, 0x56, 0xe0, 0xe7, 0x50, + 0x57, 0x8f, 0xae, 0x47, 0x6f, 0x1f, 0xfa, 0x9b, 0x45, 0x2a, 0x72, 0xf7, 0x72, 0x96, 0x33, 0xa2, + 0xf9, 0x2b, 0xcb, 0xc6, 0x26, 0xcb, 0xe6, 0xdf, 0x96, 0x03, 0xa8, 0xab, 0x3e, 0x6c, 0x81, 0xd1, + 0x3b, 0xef, 0xd4, 0xb0, 0x0d, 0x66, 0xbf, 0x77, 0xde, 0x41, 0xaa, 0x40, 0x7a, 0x1d, 0x43, 0x17, + 0x48, 0xaf, 0x63, 0xfa, 0xdf, 0x11, 0xb4, 0x08, 0xa3, 0xd1, 0x9b, 0x84, 0x4b, 0x81, 0xf7, 0xc0, + 0x16, 0x92, 0xe5, 0x83, 0x54, 0x68, 0x73, 0x26, 0xb1, 0x54, 0x1a, 0x0a, 0x35, 0xfa, 0xd3, 0x94, + 0x8f, 0x96, 0xa3, 0x55, 0x8c, 0x1f, 0x43, 0x53, 0x48, 0x5a, 0x48, 0xc5, 0x36, 0x35, 0xdb, 0xd6, + 0x79, 0x28, 0xf0, 0x23, 0xb0, 0x18, 0x8f, 0x14, 0x50, 0xd7, 0x40, 0x83, 0xf1, 0x28, 0x14, 0x78, + 0x1f, 0x9a, 0x71, 0x91, 0x4d, 0xf3, 0x84, 0xc7, 0x4e, 0xc3, 0x33, 0x83, 0x16, 0x59, 0xe5, 0x78, + 0x1b, 0x8c, 0xe1, 0xcc, 0xb1, 0x3c, 0x14, 0x34, 0x89, 0x31, 0x9c, 0x29, 0xf5, 0x82, 0xf2, 0x98, + 0x29, 0x11, 0xbb, 0x54, 0xd7, 0x79, 0x28, 0xfc, 0x1f, 0x08, 0x1a, 0xaf, 0xc7, 0x53, 0xfe, 0x19, + 0xbb, 0xd0, 0x4e, 0x13, 0x3e, 0x50, 0xb7, 0xb5, 0xf6, 0xdc, 0x4a, 0x13, 0xae, 0x0e, 0x2c, 0x14, + 0x1a, 0xa7, 0x57, 0x2b, 0xbc, 0x3a, 0xc5, 0x94, 0x5e, 0x55, 0xf8, 0x51, 0xb5, 0x09, 0x53, 0x6f, + 0xe2, 0xe0, 0xce, 0x26, 0xf4, 0x94, 0x6e, 0x8f, 0x8f, 0xb2, 0x28, 0xe1, 0xf1, 0x7a, 0x0d, 0x11, + 0x95, 0x54, 0x7f, 0xda, 0x16, 0xd1, 0xb1, 0xef, 0x41, 0x73, 0xc9, 0xc2, 0x6d, 0xb0, 0xdf, 0xf5, + 0xdf, 0xf6, 0xcf, 0xde, 0xf7, 0xcb, 0x97, 0xff, 0x70, 0x46, 0x3a, 0xc8, 0xbf, 0x86, 0x07, 0x5a, + 0x8d, 0x45, 0xf7, 0x3a, 0xfc, 0x63, 0xb0, 0x46, 0x4a, 0x66, 0x79, 0xf7, 0xbb, 0x9b, 0x3d, 0x2f, + 0xbb, 0x4a, 0xee, 0x89, 0x77, 0x33, 0x77, 0xd1, 0xed, 0xdc, 0x45, 0xbf, 0xe7, 0x2e, 0xfa, 0xba, + 0x70, 0x6b, 0xb7, 0x0b, 0xb7, 0xf6, 0x73, 0xe1, 0xd6, 0x3e, 0x5a, 0xaa, 0x3d, 0x1f, 0x0e, 0x2d, + 0xfd, 0x67, 0x1f, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x73, 0xda, 0x4a, 0x37, 0x0f, 0x04, 0x00, + 0x00, +} + +func (m *Sample) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Sample) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Sample) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.Timestamp != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Timestamp)) + i-- + dAtA[i] = 0x10 + } + if m.Value != 0 { + i -= 8 + encoding_binary.LittleEndian.PutUint64(dAtA[i:], uint64(math.Float64bits(float64(m.Value)))) + i-- + dAtA[i] = 0x9 + } + return len(dAtA) - i, nil +} + +func (m *TimeSeries) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TimeSeries) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *TimeSeries) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Samples) > 0 { + for iNdEx := len(m.Samples) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Samples[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *Label) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Label) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Label) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x12 + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0xa + } + return len(dAtA) - i, nil +} + +func (m *Labels) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Labels) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Labels) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func (m *LabelMatcher) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *LabelMatcher) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *LabelMatcher) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Value) > 0 { + i -= len(m.Value) + copy(dAtA[i:], m.Value) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Value))) + i-- + dAtA[i] = 0x1a + } + if len(m.Name) > 0 { + i -= len(m.Name) + copy(dAtA[i:], m.Name) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Name))) + i-- + dAtA[i] = 0x12 + } + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ReadHints) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ReadHints) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ReadHints) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if m.RangeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.RangeMs)) + i-- + dAtA[i] = 0x38 + } + if m.By { + i-- + if m.By { + dAtA[i] = 1 + } else { + dAtA[i] = 0 + } + i-- + dAtA[i] = 0x30 + } + if len(m.Grouping) > 0 { + for iNdEx := len(m.Grouping) - 1; iNdEx >= 0; iNdEx-- { + i -= len(m.Grouping[iNdEx]) + copy(dAtA[i:], m.Grouping[iNdEx]) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Grouping[iNdEx]))) + i-- + dAtA[i] = 0x2a + } + } + if m.EndMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.EndMs)) + i-- + dAtA[i] = 0x20 + } + if m.StartMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.StartMs)) + i-- + dAtA[i] = 0x18 + } + if len(m.Func) > 0 { + i -= len(m.Func) + copy(dAtA[i:], m.Func) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Func))) + i-- + dAtA[i] = 0x12 + } + if m.StepMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.StepMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *Chunk) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *Chunk) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *Chunk) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Data) > 0 { + i -= len(m.Data) + copy(dAtA[i:], m.Data) + i = encodeVarintTypes(dAtA, i, uint64(len(m.Data))) + i-- + dAtA[i] = 0x22 + } + if m.Type != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.Type)) + i-- + dAtA[i] = 0x18 + } + if m.MaxTimeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.MaxTimeMs)) + i-- + dAtA[i] = 0x10 + } + if m.MinTimeMs != 0 { + i = encodeVarintTypes(dAtA, i, uint64(m.MinTimeMs)) + i-- + dAtA[i] = 0x8 + } + return len(dAtA) - i, nil +} + +func (m *ChunkedSeries) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalToSizedBuffer(dAtA[:size]) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *ChunkedSeries) MarshalTo(dAtA []byte) (int, error) { + size := m.Size() + return m.MarshalToSizedBuffer(dAtA[:size]) +} + +func (m *ChunkedSeries) MarshalToSizedBuffer(dAtA []byte) (int, error) { + i := len(dAtA) + _ = i + var l int + _ = l + if len(m.Chunks) > 0 { + for iNdEx := len(m.Chunks) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Chunks[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0x12 + } + } + if len(m.Labels) > 0 { + for iNdEx := len(m.Labels) - 1; iNdEx >= 0; iNdEx-- { + { + size, err := m.Labels[iNdEx].MarshalToSizedBuffer(dAtA[:i]) + if err != nil { + return 0, err + } + i -= size + i = encodeVarintTypes(dAtA, i, uint64(size)) + } + i-- + dAtA[i] = 0xa + } + } + return len(dAtA) - i, nil +} + +func encodeVarintTypes(dAtA []byte, offset int, v uint64) int { + offset -= sovTypes(v) + base := offset + for v >= 1<<7 { + dAtA[offset] = uint8(v&0x7f | 0x80) + v >>= 7 + offset++ + } + dAtA[offset] = uint8(v) + return base +} +func (m *Sample) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Value != 0 { + n += 9 + } + if m.Timestamp != 0 { + n += 1 + sovTypes(uint64(m.Timestamp)) + } + return n +} + +func (m *TimeSeries) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.Samples) > 0 { + for _, e := range m.Samples { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *Label) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + l = len(m.Name) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *Labels) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func (m *LabelMatcher) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + l = len(m.Name) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + l = len(m.Value) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ReadHints) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.StepMs != 0 { + n += 1 + sovTypes(uint64(m.StepMs)) + } + l = len(m.Func) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + if m.StartMs != 0 { + n += 1 + sovTypes(uint64(m.StartMs)) + } + if m.EndMs != 0 { + n += 1 + sovTypes(uint64(m.EndMs)) + } + if len(m.Grouping) > 0 { + for _, s := range m.Grouping { + l = len(s) + n += 1 + l + sovTypes(uint64(l)) + } + } + if m.By { + n += 2 + } + if m.RangeMs != 0 { + n += 1 + sovTypes(uint64(m.RangeMs)) + } + return n +} + +func (m *Chunk) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if m.MinTimeMs != 0 { + n += 1 + sovTypes(uint64(m.MinTimeMs)) + } + if m.MaxTimeMs != 0 { + n += 1 + sovTypes(uint64(m.MaxTimeMs)) + } + if m.Type != 0 { + n += 1 + sovTypes(uint64(m.Type)) + } + l = len(m.Data) + if l > 0 { + n += 1 + l + sovTypes(uint64(l)) + } + return n +} + +func (m *ChunkedSeries) Size() (n int) { + if m == nil { + return 0 + } + var l int + _ = l + if len(m.Labels) > 0 { + for _, e := range m.Labels { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + if len(m.Chunks) > 0 { + for _, e := range m.Chunks { + l = e.Size() + n += 1 + l + sovTypes(uint64(l)) + } + } + return n +} + +func sovTypes(x uint64) (n int) { + return (math_bits.Len64(x|1) + 6) / 7 +} +func sozTypes(x uint64) (n int) { + return sovTypes(uint64((x << 1) ^ uint64((int64(x) >> 63)))) +} +func (m *Sample) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Sample: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Sample: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 1 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var v uint64 + if (iNdEx + 8) > l { + return io.ErrUnexpectedEOF + } + v = uint64(encoding_binary.LittleEndian.Uint64(dAtA[iNdEx:])) + iNdEx += 8 + m.Value = float64(math.Float64frombits(v)) + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Timestamp", wireType) + } + m.Timestamp = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Timestamp |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TimeSeries) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TimeSeries: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TimeSeries: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Samples", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Samples = append(m.Samples, Sample{}) + if err := m.Samples[len(m.Samples)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Label) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Label: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Label: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Labels) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Labels: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Labels: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *LabelMatcher) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: LabelMatcher: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: LabelMatcher: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= LabelMatcher_Type(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Name", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Name = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Value = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ReadHints) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ReadHints: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ReadHints: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StepMs", wireType) + } + m.StepMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StepMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Func", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Func = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field StartMs", wireType) + } + m.StartMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.StartMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field EndMs", wireType) + } + m.EndMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.EndMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 5: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Grouping", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Grouping = append(m.Grouping, string(dAtA[iNdEx:postIndex])) + iNdEx = postIndex + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field By", wireType) + } + var v int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + m.By = bool(v != 0) + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RangeMs", wireType) + } + m.RangeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.RangeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *Chunk) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: Chunk: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: Chunk: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MinTimeMs", wireType) + } + m.MinTimeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MinTimeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field MaxTimeMs", wireType) + } + m.MaxTimeMs = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.MaxTimeMs |= int64(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field Type", wireType) + } + m.Type = 0 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + m.Type |= Chunk_Encoding(b&0x7F) << shift + if b < 0x80 { + break + } + } + case 4: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Data", wireType) + } + var byteLen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + byteLen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if byteLen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + byteLen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Data = append(m.Data[:0], dAtA[iNdEx:postIndex]...) + if m.Data == nil { + m.Data = []byte{} + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *ChunkedSeries) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: ChunkedSeries: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: ChunkedSeries: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Labels", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Labels = append(m.Labels, Label{}) + if err := m.Labels[len(m.Labels)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field Chunks", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowTypes + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= int(b&0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthTypes + } + postIndex := iNdEx + msglen + if postIndex < 0 { + return ErrInvalidLengthTypes + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.Chunks = append(m.Chunks, Chunk{}) + if err := m.Chunks[len(m.Chunks)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipTypes(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) < 0 { + return ErrInvalidLengthTypes + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func skipTypes(dAtA []byte) (n int, err error) { + l := len(dAtA) + iNdEx := 0 + depth := 0 + for iNdEx < l { + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + wireType := int(wire & 0x7) + switch wireType { + case 0: + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + iNdEx++ + if dAtA[iNdEx-1] < 0x80 { + break + } + } + case 1: + iNdEx += 8 + case 2: + var length int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return 0, ErrIntOverflowTypes + } + if iNdEx >= l { + return 0, io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + length |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if length < 0 { + return 0, ErrInvalidLengthTypes + } + iNdEx += length + case 3: + depth++ + case 4: + if depth == 0 { + return 0, ErrUnexpectedEndOfGroupTypes + } + depth-- + case 5: + iNdEx += 4 + default: + return 0, fmt.Errorf("proto: illegal wireType %d", wireType) + } + if iNdEx < 0 { + return 0, ErrInvalidLengthTypes + } + if depth == 0 { + return iNdEx, nil + } + } + return 0, io.ErrUnexpectedEOF +} + +var ( + ErrInvalidLengthTypes = fmt.Errorf("proto: negative length found during unmarshaling") + ErrIntOverflowTypes = fmt.Errorf("proto: integer overflow") + ErrUnexpectedEndOfGroupTypes = fmt.Errorf("proto: unexpected end of group") +) diff --git a/pkg/store/storepb/prompb/types.proto b/pkg/store/storepb/prompb/types.proto new file mode 100644 index 00000000000..698a19a48ac --- /dev/null +++ b/pkg/store/storepb/prompb/types.proto @@ -0,0 +1,94 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +// Copyright 2017 Prometheus Team +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +syntax = "proto3"; +package prometheus_copy; + +option go_package = "prompb"; + +import "gogoproto/gogo.proto"; + +// Do not generate XXX fields to reduce memory footprint and opening a door +// for zero-copy casts to/from prometheus data types. +option (gogoproto.goproto_unkeyed_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; +option (gogoproto.goproto_sizecache_all) = false; + +message Sample { + double value = 1; + int64 timestamp = 2; +} + +// TimeSeries represents samples and labels for a single time series. +message TimeSeries { + repeated Label labels = 1 [(gogoproto.nullable) = false]; + repeated Sample samples = 2 [(gogoproto.nullable) = false]; +} + +message Label { + string name = 1; + string value = 2; +} + +message Labels { + repeated Label labels = 1 [(gogoproto.nullable) = false]; +} + +// Matcher specifies a rule, which can match or set of labels or not. +message LabelMatcher { + enum Type { + EQ = 0; + NEQ = 1; + RE = 2; + NRE = 3; + } + Type type = 1; + string name = 2; + string value = 3; +} + +message ReadHints { + int64 step_ms = 1; // Query step size in milliseconds. + string func = 2; // String representation of surrounding function or aggregation. + int64 start_ms = 3; // Start time in milliseconds. + int64 end_ms = 4; // End time in milliseconds. + repeated string grouping = 5; // List of label names used in aggregation. + bool by = 6; // Indicate whether it is without or by. + int64 range_ms = 7; // Range vector selector range in milliseconds. +} + +// Chunk represents a TSDB chunk. +// Time range [min, max] is inclusive. +message Chunk { + int64 min_time_ms = 1; + int64 max_time_ms = 2; + + // We require this to match chunkenc.Encoding. + enum Encoding { + UNKNOWN = 0; + XOR = 1; + } + Encoding type = 3; + bytes data = 4; +} + +// ChunkedSeries represents single, encoded time series. +message ChunkedSeries { + // Labels should be sorted. + repeated Label labels = 1 [(gogoproto.nullable) = false]; + // Chunks will be in start time order and may overlap. + repeated Chunk chunks = 2 [(gogoproto.nullable) = false]; +} diff --git a/pkg/store/storepb/rpc.pb.go b/pkg/store/storepb/rpc.pb.go index 63f1ab4974e..dc6d8357539 100644 --- a/pkg/store/storepb/rpc.pb.go +++ b/pkg/store/storepb/rpc.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" - prompb "github.com/prometheus/prometheus/prompb" + prompb "github.com/thanos-io/thanos/pkg/store/storepb/prompb" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -635,66 +635,65 @@ func init() { func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } var fileDescriptor_77a6da22d6a3feb1 = []byte{ - // 934 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcb, 0x6e, 0x23, 0x45, - 0x14, 0x75, 0xbb, 0xfd, 0xbc, 0x4e, 0x4c, 0x4f, 0xc5, 0xc9, 0x74, 0x8c, 0xe4, 0x58, 0x2d, 0x21, - 0x59, 0x01, 0x39, 0xe0, 0x11, 0x20, 0xd0, 0x6c, 0x6c, 0x8f, 0x47, 0x63, 0x31, 0x71, 0xa0, 0x6c, - 0x8f, 0x79, 0x2c, 0x4c, 0xdb, 0x29, 0xda, 0xad, 0x71, 0x3f, 0xe8, 0x2a, 0x93, 0x64, 0xc3, 0x82, - 0x2f, 0x60, 0xcb, 0x3f, 0xf0, 0x17, 0x6c, 0xb2, 0x9c, 0x25, 0x6c, 0x10, 0x24, 0x3f, 0x82, 0xaa, - 0xba, 0xda, 0xee, 0x0e, 0x49, 0xa4, 0x51, 0x76, 0x75, 0xcf, 0xb9, 0xbe, 0x8f, 0x53, 0xf7, 0x76, - 0x19, 0x8a, 0x81, 0x3f, 0x6f, 0xfa, 0x81, 0xc7, 0x3c, 0x94, 0x63, 0x0b, 0xd3, 0xf5, 0x68, 0xb5, - 0xc4, 0x2e, 0x7c, 0x42, 0x43, 0xb0, 0x5a, 0xb1, 0x3c, 0xcb, 0x13, 0xc7, 0x23, 0x7e, 0x92, 0xe8, - 0x13, 0xcb, 0x66, 0x8b, 0xd5, 0xac, 0x39, 0xf7, 0x9c, 0x23, 0x3f, 0xf0, 0x1c, 0xc2, 0x16, 0x64, - 0x45, 0x6f, 0x1e, 0xfd, 0xd9, 0x51, 0x2c, 0x94, 0xf1, 0x0e, 0x6c, 0x4f, 0x02, 0x9b, 0x11, 0x4c, - 0xa8, 0xef, 0xb9, 0x94, 0x18, 0x3f, 0xc3, 0x96, 0x04, 0x7e, 0x5c, 0x11, 0xca, 0xd0, 0x53, 0x00, - 0x66, 0x3b, 0x84, 0x92, 0xc0, 0x26, 0x54, 0x57, 0xea, 0x6a, 0xa3, 0xd4, 0xda, 0x6b, 0x6e, 0x82, - 0x36, 0x47, 0xb6, 0x43, 0x86, 0x82, 0xed, 0x64, 0x2e, 0xff, 0x3e, 0x48, 0xe1, 0x98, 0x3f, 0xda, - 0x83, 0x1c, 0x23, 0xae, 0xe9, 0x32, 0x3d, 0x5d, 0x57, 0x1a, 0x45, 0x2c, 0x2d, 0xa4, 0x43, 0x3e, - 0x20, 0xfe, 0xd2, 0x9e, 0x9b, 0xba, 0x5a, 0x57, 0x1a, 0x2a, 0x8e, 0x4c, 0x63, 0x1b, 0x4a, 0x7d, - 0xf7, 0x07, 0x4f, 0xa6, 0x37, 0xfe, 0x52, 0x60, 0x2b, 0xb4, 0xc3, 0xfa, 0xd0, 0xfb, 0x90, 0x5b, - 0x9a, 0x33, 0xb2, 0x8c, 0x6a, 0xd9, 0x6e, 0x86, 0x0a, 0x35, 0x5f, 0x72, 0x54, 0x96, 0x20, 0x5d, - 0xd0, 0x3e, 0x14, 0x1c, 0xdb, 0x9d, 0xf2, 0x82, 0x44, 0x01, 0x2a, 0xce, 0x3b, 0xb6, 0xcb, 0x2b, - 0x16, 0x94, 0x79, 0x1e, 0x52, 0xb2, 0x04, 0xc7, 0x3c, 0x17, 0xd4, 0x11, 0x14, 0x29, 0xf3, 0x02, - 0x32, 0xba, 0xf0, 0x89, 0x9e, 0xa9, 0x2b, 0x8d, 0x72, 0xeb, 0x51, 0x94, 0x65, 0x18, 0x11, 0x78, - 0xe3, 0x83, 0x3e, 0x06, 0x10, 0x09, 0xa7, 0x94, 0x30, 0xaa, 0x67, 0x45, 0x5d, 0x5a, 0xa2, 0xae, - 0x21, 0x61, 0xb2, 0xb4, 0xe2, 0x52, 0xda, 0xd4, 0xf8, 0x14, 0x0a, 0x11, 0xf9, 0x56, 0x6d, 0x19, - 0xbf, 0xa9, 0xb0, 0x1d, 0x4a, 0x1e, 0xdd, 0x52, 0xbc, 0x51, 0xe5, 0xee, 0x46, 0xd3, 0xc9, 0x46, - 0x3f, 0xe1, 0x14, 0x9b, 0x2f, 0x48, 0x40, 0x75, 0x55, 0xa4, 0xad, 0x24, 0xd2, 0x1e, 0x87, 0xa4, - 0xcc, 0xbe, 0xf6, 0x45, 0x2d, 0xd8, 0xe5, 0x21, 0x03, 0x42, 0xbd, 0xe5, 0x8a, 0xd9, 0x9e, 0x3b, - 0x3d, 0xb3, 0xdd, 0x53, 0xef, 0x4c, 0x88, 0xa5, 0xe2, 0x1d, 0xc7, 0x3c, 0xc7, 0x6b, 0x6e, 0x22, - 0x28, 0xf4, 0x01, 0x80, 0x69, 0x59, 0x01, 0xb1, 0x4c, 0x46, 0x42, 0x8d, 0xca, 0xad, 0xad, 0x28, - 0x5b, 0xdb, 0xb2, 0x02, 0x1c, 0xe3, 0xd1, 0xe7, 0xb0, 0xef, 0x9b, 0x01, 0xb3, 0xcd, 0x25, 0xcf, - 0x22, 0x6e, 0x7e, 0x7a, 0x6a, 0x53, 0x73, 0xb6, 0x24, 0xa7, 0x7a, 0xae, 0xae, 0x34, 0x0a, 0xf8, - 0xb1, 0x74, 0x88, 0x26, 0xe3, 0x99, 0xa4, 0xd1, 0x77, 0xb7, 0xfc, 0x96, 0xb2, 0xc0, 0x64, 0xc4, - 0xba, 0xd0, 0xf3, 0xe2, 0x3a, 0x0f, 0xa2, 0xc4, 0x5f, 0x26, 0x63, 0x0c, 0xa5, 0xdb, 0xff, 0x82, - 0x47, 0x04, 0x3a, 0x80, 0x12, 0x7d, 0x6d, 0xfb, 0xd3, 0xf9, 0x62, 0xe5, 0xbe, 0xa6, 0x7a, 0x41, - 0x94, 0x02, 0x1c, 0xea, 0x0a, 0xc4, 0xf8, 0x1e, 0xca, 0xd1, 0xd5, 0xc8, 0x89, 0x6d, 0x40, 0x6e, - 0xbd, 0x3d, 0x4a, 0xa3, 0xd4, 0x2a, 0xaf, 0x67, 0x49, 0xa0, 0x2f, 0x52, 0x58, 0xf2, 0xa8, 0x0a, - 0xf9, 0x33, 0x33, 0x70, 0x6d, 0xd7, 0x0a, 0xd7, 0xe5, 0x45, 0x0a, 0x47, 0x40, 0xa7, 0x00, 0xb9, - 0x80, 0xd0, 0xd5, 0x92, 0x19, 0xbf, 0x2b, 0xf0, 0x48, 0x5c, 0xcf, 0xc0, 0x74, 0x36, 0x13, 0x70, - 0xaf, 0x62, 0xca, 0x03, 0x14, 0x4b, 0x3f, 0x4c, 0x31, 0xe3, 0x39, 0xa0, 0x78, 0xb5, 0x52, 0x94, - 0x0a, 0x64, 0x5d, 0x0e, 0x88, 0x71, 0x2f, 0xe2, 0xd0, 0x40, 0x55, 0x28, 0xc8, 0x7e, 0xa9, 0x9e, - 0x16, 0xc4, 0xda, 0x36, 0xfe, 0x50, 0x64, 0xa0, 0x57, 0xe6, 0x72, 0xb5, 0xe9, 0xbb, 0x02, 0x59, - 0xb1, 0x15, 0xa2, 0xc7, 0x22, 0x0e, 0x8d, 0xfb, 0xd5, 0x48, 0x3f, 0x40, 0x0d, 0xf5, 0x81, 0x6a, - 0xf4, 0x61, 0x27, 0xd1, 0x84, 0x94, 0x63, 0x0f, 0x72, 0x3f, 0x09, 0x44, 0xea, 0x21, 0xad, 0xfb, - 0x04, 0x39, 0xc4, 0x50, 0x5c, 0x7f, 0x8d, 0x50, 0x09, 0xf2, 0xe3, 0xc1, 0x17, 0x83, 0x93, 0xc9, - 0x40, 0x4b, 0xa1, 0x22, 0x64, 0xbf, 0x1a, 0xf7, 0xf0, 0x37, 0x9a, 0x82, 0x0a, 0x90, 0xc1, 0xe3, - 0x97, 0x3d, 0x2d, 0xcd, 0x3d, 0x86, 0xfd, 0x67, 0xbd, 0x6e, 0x1b, 0x6b, 0x2a, 0xf7, 0x18, 0x8e, - 0x4e, 0x70, 0x4f, 0xcb, 0x70, 0x1c, 0xf7, 0xba, 0xbd, 0xfe, 0xab, 0x9e, 0x96, 0x3d, 0x6c, 0xc2, - 0xe3, 0x3b, 0x5a, 0xe2, 0x91, 0x26, 0x6d, 0x2c, 0xc3, 0xb7, 0x3b, 0x27, 0x78, 0xa4, 0x29, 0x87, - 0x1d, 0xc8, 0xf0, 0xdd, 0x45, 0x79, 0x50, 0x71, 0x7b, 0x12, 0x72, 0xdd, 0x93, 0xf1, 0x60, 0xa4, - 0x29, 0x1c, 0x1b, 0x8e, 0x8f, 0xb5, 0x34, 0x3f, 0x1c, 0xf7, 0x07, 0x9a, 0x2a, 0x0e, 0xed, 0xaf, - 0xc3, 0x9c, 0xc2, 0xab, 0x87, 0xb5, 0x6c, 0xeb, 0x97, 0x34, 0x64, 0x45, 0x23, 0xe8, 0x23, 0xc8, - 0xf0, 0x6f, 0x3d, 0xda, 0x89, 0xe4, 0x8d, 0xbd, 0x04, 0xd5, 0x4a, 0x12, 0x94, 0xc2, 0x7d, 0x06, - 0xb9, 0x70, 0x8d, 0xd0, 0x6e, 0x72, 0xad, 0xa2, 0x9f, 0xed, 0xdd, 0x84, 0xc3, 0x1f, 0x7e, 0xa8, - 0xa0, 0x2e, 0xc0, 0x66, 0x30, 0xd1, 0x7e, 0xe2, 0xcb, 0x17, 0x5f, 0xad, 0x6a, 0xf5, 0x36, 0x4a, - 0xe6, 0x7f, 0x0e, 0xa5, 0xd8, 0x7d, 0xa2, 0xa4, 0x6b, 0x62, 0x52, 0xab, 0xef, 0xde, 0xca, 0x85, - 0x71, 0x5a, 0x03, 0x28, 0x8b, 0x67, 0x97, 0x8f, 0x60, 0x28, 0xc6, 0x53, 0x28, 0x61, 0xe2, 0x78, - 0x8c, 0x08, 0x1c, 0xad, 0xdb, 0x8f, 0xbf, 0xce, 0xd5, 0xdd, 0x1b, 0xa8, 0x7c, 0xc4, 0x53, 0x9d, - 0xf7, 0x2e, 0xff, 0xad, 0xa5, 0x2e, 0xaf, 0x6a, 0xca, 0x9b, 0xab, 0x9a, 0xf2, 0xcf, 0x55, 0x4d, - 0xf9, 0xf5, 0xba, 0x96, 0x7a, 0x73, 0x5d, 0x4b, 0xfd, 0x79, 0x5d, 0x4b, 0x7d, 0x9b, 0x17, 0x6f, - 0x97, 0x3f, 0x9b, 0xe5, 0xc4, 0xbf, 0x80, 0x27, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x67, 0x56, - 0x73, 0x8e, 0x72, 0x08, 0x00, 0x00, + // 927 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcd, 0x6e, 0x23, 0x45, + 0x10, 0x76, 0x7b, 0xfc, 0x5b, 0xde, 0x98, 0xd9, 0x8e, 0x93, 0x9d, 0x78, 0x25, 0xc7, 0x1a, 0x09, + 0xc9, 0x0a, 0xc8, 0x01, 0x23, 0x40, 0x20, 0x2e, 0xb6, 0xd7, 0xab, 0xb5, 0xd8, 0x38, 0xd0, 0xb6, + 0xd7, 0xfc, 0x1c, 0xcc, 0xd8, 0x69, 0x9c, 0xd1, 0xce, 0x1f, 0xd3, 0x6d, 0x92, 0x5c, 0xe1, 0x05, + 0xb8, 0xf2, 0x0e, 0xbc, 0x05, 0x97, 0x1c, 0xf7, 0x08, 0x17, 0x04, 0xc9, 0x8b, 0xa0, 0xee, 0xe9, + 0x71, 0x66, 0x96, 0x6c, 0x24, 0x94, 0x5b, 0xd7, 0xf7, 0x55, 0x77, 0x55, 0x7d, 0x5d, 0x35, 0x3d, + 0x50, 0x0e, 0x83, 0x65, 0x3b, 0x08, 0x7d, 0xee, 0xe3, 0x02, 0x3f, 0xb5, 0x3c, 0x9f, 0xd5, 0x2b, + 0xfc, 0x22, 0xa0, 0x2c, 0x02, 0xeb, 0xb5, 0x95, 0xbf, 0xf2, 0xe5, 0xf2, 0x50, 0xac, 0x14, 0x8a, + 0x83, 0xd0, 0x77, 0x83, 0xc5, 0x61, 0xc2, 0xd3, 0x7c, 0x0b, 0xb6, 0x66, 0xa1, 0xcd, 0x29, 0xa1, + 0x2c, 0xf0, 0x3d, 0x46, 0xcd, 0x9f, 0x11, 0x3c, 0x50, 0xc8, 0x0f, 0x6b, 0xca, 0x38, 0xee, 0x02, + 0x70, 0xdb, 0xa5, 0x8c, 0x86, 0x36, 0x65, 0x06, 0x6a, 0x6a, 0xad, 0x4a, 0xe7, 0xb1, 0xd8, 0xed, + 0x52, 0x7e, 0x4a, 0xd7, 0x6c, 0xbe, 0xf4, 0x83, 0x8b, 0xf6, 0xc4, 0x76, 0xe9, 0x58, 0xba, 0xf4, + 0x72, 0x97, 0x7f, 0xed, 0x67, 0x48, 0x62, 0x13, 0xde, 0x85, 0x02, 0xa7, 0x9e, 0xe5, 0x71, 0x23, + 0xdb, 0x44, 0xad, 0x32, 0x51, 0x16, 0x36, 0xa0, 0x18, 0xd2, 0xc0, 0xb1, 0x97, 0x96, 0xa1, 0x35, + 0x51, 0x4b, 0x23, 0xb1, 0x69, 0x6e, 0x41, 0x65, 0xe8, 0x7d, 0xef, 0xab, 0x1c, 0xcc, 0x3f, 0x11, + 0x3c, 0x88, 0xec, 0x28, 0x4b, 0xfc, 0x0e, 0x14, 0x1c, 0x6b, 0x41, 0x9d, 0x38, 0xa1, 0xad, 0x76, + 0x24, 0x43, 0xfb, 0xb9, 0x40, 0x55, 0x0a, 0xca, 0x05, 0xef, 0x41, 0xc9, 0xb5, 0xbd, 0xb9, 0x48, + 0x48, 0x26, 0xa0, 0x91, 0xa2, 0x6b, 0x7b, 0x22, 0x63, 0x49, 0x59, 0xe7, 0x11, 0xa5, 0x52, 0x70, + 0xad, 0x73, 0x49, 0x1d, 0x42, 0x99, 0x71, 0x3f, 0xa4, 0x93, 0x8b, 0x80, 0x1a, 0xb9, 0x26, 0x6a, + 0x55, 0x3b, 0x0f, 0xe3, 0x28, 0xe3, 0x98, 0x20, 0x37, 0x3e, 0xf8, 0x43, 0x00, 0x19, 0x70, 0xce, + 0x28, 0x67, 0x46, 0x5e, 0xe6, 0xa5, 0xa7, 0xf2, 0x1a, 0x53, 0xae, 0x52, 0x2b, 0x3b, 0xca, 0x66, + 0xe6, 0xc7, 0x50, 0x8a, 0xc9, 0xff, 0x55, 0x96, 0xf9, 0xab, 0x06, 0x5b, 0x91, 0xe4, 0xf1, 0x55, + 0x25, 0x0b, 0x45, 0x6f, 0x2e, 0x34, 0x9b, 0x2e, 0xf4, 0x23, 0x41, 0xf1, 0xe5, 0x29, 0x0d, 0x99, + 0xa1, 0xc9, 0xb0, 0xb5, 0x54, 0xd8, 0xa3, 0x88, 0x54, 0xd1, 0x37, 0xbe, 0xb8, 0x03, 0x3b, 0xe2, + 0xc8, 0x90, 0x32, 0xdf, 0x59, 0x73, 0xdb, 0xf7, 0xe6, 0x67, 0xb6, 0x77, 0xe2, 0x9f, 0x49, 0xb1, + 0x34, 0xb2, 0xed, 0x5a, 0xe7, 0x64, 0xc3, 0xcd, 0x24, 0x85, 0xdf, 0x05, 0xb0, 0x56, 0xab, 0x90, + 0xae, 0x2c, 0x4e, 0x23, 0x8d, 0xaa, 0x9d, 0x07, 0x71, 0xb4, 0xee, 0x6a, 0x15, 0x92, 0x04, 0x8f, + 0x3f, 0x85, 0xbd, 0xc0, 0x0a, 0xb9, 0x6d, 0x39, 0x22, 0x8a, 0xbc, 0xf9, 0xf9, 0x89, 0xcd, 0xac, + 0x85, 0x43, 0x4f, 0x8c, 0x42, 0x13, 0xb5, 0x4a, 0xe4, 0x91, 0x72, 0x88, 0x3b, 0xe3, 0x89, 0xa2, + 0xf1, 0xb7, 0xb7, 0xec, 0x65, 0x3c, 0xb4, 0x38, 0x5d, 0x5d, 0x18, 0x45, 0x79, 0x9d, 0xfb, 0x71, + 0xe0, 0x2f, 0xd2, 0x67, 0x8c, 0x95, 0xdb, 0x7f, 0x0e, 0x8f, 0x09, 0xbc, 0x0f, 0x15, 0xf6, 0xd2, + 0x0e, 0xe6, 0xcb, 0xd3, 0xb5, 0xf7, 0x92, 0x19, 0x25, 0x99, 0x0a, 0x08, 0xa8, 0x2f, 0x11, 0xf3, + 0x3b, 0xa8, 0xc6, 0x57, 0xa3, 0x3a, 0xb6, 0x05, 0x85, 0xcd, 0x08, 0xa1, 0x56, 0xa5, 0x53, 0xdd, + 0xf4, 0x92, 0x44, 0x9f, 0x65, 0x88, 0xe2, 0x71, 0x1d, 0x8a, 0x67, 0x56, 0xe8, 0xd9, 0xde, 0x2a, + 0x1a, 0x97, 0x67, 0x19, 0x12, 0x03, 0xbd, 0x12, 0x14, 0x42, 0xca, 0xd6, 0x0e, 0x37, 0x7f, 0x43, + 0xf0, 0x50, 0x5e, 0xcf, 0xc8, 0x72, 0x6f, 0x3a, 0xe0, 0x4e, 0xc5, 0xd0, 0x3d, 0x14, 0xcb, 0xde, + 0x4f, 0x31, 0xf3, 0x29, 0xe0, 0x64, 0xb6, 0x4a, 0x94, 0x1a, 0xe4, 0x3d, 0x01, 0xc8, 0x76, 0x2f, + 0x93, 0xc8, 0xc0, 0x75, 0x28, 0xa9, 0x7a, 0x99, 0x91, 0x95, 0xc4, 0xc6, 0x36, 0x7f, 0x47, 0xea, + 0xa0, 0x17, 0x96, 0xb3, 0xbe, 0xa9, 0xbb, 0x06, 0x79, 0x39, 0x15, 0xb2, 0xc6, 0x32, 0x89, 0x8c, + 0xbb, 0xd5, 0xc8, 0xde, 0x43, 0x0d, 0xed, 0x9e, 0x6a, 0x0c, 0x61, 0x3b, 0x55, 0x84, 0x92, 0x63, + 0x17, 0x0a, 0x3f, 0x4a, 0x44, 0xe9, 0xa1, 0xac, 0xbb, 0x04, 0x39, 0x20, 0x50, 0xde, 0x7c, 0x8d, + 0x70, 0x05, 0x8a, 0xd3, 0xd1, 0xe7, 0xa3, 0xe3, 0xd9, 0x48, 0xcf, 0xe0, 0x32, 0xe4, 0xbf, 0x9c, + 0x0e, 0xc8, 0xd7, 0x3a, 0xc2, 0x25, 0xc8, 0x91, 0xe9, 0xf3, 0x81, 0x9e, 0x15, 0x1e, 0xe3, 0xe1, + 0x93, 0x41, 0xbf, 0x4b, 0x74, 0x4d, 0x78, 0x8c, 0x27, 0xc7, 0x64, 0xa0, 0xe7, 0x04, 0x4e, 0x06, + 0xfd, 0xc1, 0xf0, 0xc5, 0x40, 0xcf, 0x1f, 0xb4, 0xe1, 0xd1, 0x1b, 0x4a, 0x12, 0x27, 0xcd, 0xba, + 0x44, 0x1d, 0xdf, 0xed, 0x1d, 0x93, 0x89, 0x8e, 0x0e, 0x7a, 0x90, 0x13, 0xb3, 0x8b, 0x8b, 0xa0, + 0x91, 0xee, 0x2c, 0xe2, 0xfa, 0xc7, 0xd3, 0xd1, 0x44, 0x47, 0x02, 0x1b, 0x4f, 0x8f, 0xf4, 0xac, + 0x58, 0x1c, 0x0d, 0x47, 0xba, 0x26, 0x17, 0xdd, 0xaf, 0xa2, 0x98, 0xd2, 0x6b, 0x40, 0xf4, 0x7c, + 0xe7, 0xa7, 0x2c, 0xe4, 0x65, 0x21, 0xf8, 0x7d, 0xc8, 0x89, 0x6f, 0x3d, 0xde, 0x8e, 0xe5, 0x4d, + 0xbc, 0x04, 0xf5, 0x5a, 0x1a, 0x54, 0xc2, 0x7d, 0x02, 0x85, 0x68, 0x8c, 0xf0, 0x4e, 0x7a, 0xac, + 0xe2, 0x6d, 0xbb, 0xaf, 0xc3, 0xd1, 0xc6, 0xf7, 0x10, 0xee, 0x03, 0xdc, 0x34, 0x26, 0xde, 0x4b, + 0x7d, 0xf9, 0x92, 0xa3, 0x55, 0xaf, 0xdf, 0x46, 0xa9, 0xf8, 0x4f, 0xa1, 0x92, 0xb8, 0x4f, 0x9c, + 0x76, 0x4d, 0x75, 0x6a, 0xfd, 0xf1, 0xad, 0x5c, 0x74, 0x4e, 0x67, 0x04, 0x55, 0xf9, 0xf6, 0x8a, + 0x16, 0x8c, 0xc4, 0xf8, 0x0c, 0x2a, 0x84, 0xba, 0x3e, 0xa7, 0x12, 0xc7, 0x9b, 0xf2, 0x93, 0x4f, + 0x74, 0x7d, 0xe7, 0x35, 0x54, 0x3d, 0xe5, 0x99, 0xde, 0xdb, 0x97, 0xff, 0x34, 0x32, 0x97, 0x57, + 0x0d, 0xf4, 0xea, 0xaa, 0x81, 0xfe, 0xbe, 0x6a, 0xa0, 0x5f, 0xae, 0x1b, 0x99, 0x57, 0xd7, 0x8d, + 0xcc, 0x1f, 0xd7, 0x8d, 0xcc, 0x37, 0x45, 0xf9, 0x76, 0x05, 0x8b, 0x45, 0x41, 0xfe, 0x0b, 0x7c, + 0xf0, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x85, 0xb9, 0xc1, 0x57, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/pkg/store/storepb/rpc.proto b/pkg/store/storepb/rpc.proto index c314c40f080..3cd02e17e28 100644 --- a/pkg/store/storepb/rpc.proto +++ b/pkg/store/storepb/rpc.proto @@ -6,7 +6,7 @@ package thanos; import "types.proto"; import "gogoproto/gogo.proto"; -import "github.com/prometheus/prometheus/prompb/types.proto"; +import "prompb/types.proto"; option go_package = "storepb"; @@ -53,7 +53,7 @@ message WriteResponse { } message WriteRequest { - repeated prometheus.TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; + repeated prometheus_copy.TimeSeries timeseries = 1 [(gogoproto.nullable) = false]; string tenant = 2; int64 replica = 3; } diff --git a/scripts/genproto.sh b/scripts/genproto.sh index 2df48ba70fc..77f6aae5c36 100755 --- a/scripts/genproto.sh +++ b/scripts/genproto.sh @@ -24,18 +24,22 @@ GO111MODULE=on go install "github.com/gogo/protobuf/protoc-gen-gogofast" GOGOPROTO_ROOT="$(GO111MODULE=on go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)" GOGOPROTO_PATH="${GOGOPROTO_ROOT}:${GOGOPROTO_ROOT}/protobuf" -DIRS="pkg/store/storepb" +DIRS="pkg/store/storepb pkg/store/storepb/prompb" echo "generating code" for dir in ${DIRS}; do pushd ${dir} - ${PROTOC_BIN} --gogofast_out=plugins=grpc:. -I=. \ + ${PROTOC_BIN} --gogofast_out=plugins=grpc:. \ + -I=. \ -I="${GOGOPROTO_PATH}" \ - -I="../../../vendor" \ + -I="${GOGOPROTO_PATH}" \ *.proto sed -i.bak -E 's/import _ \"gogoproto\"//g' *.pb.go sed -i.bak -E 's/import _ \"google\/protobuf\"//g' *.pb.go + # Hacky hack. + sed -i.bak -E 's/prompb \"prompb\"/prompb \"github.com\/thanos-io\/thanos\/pkg\/store\/storepb\/prompb\"/g' *.pb.go + rm -f *.bak ${GOIMPORTS_BIN} -w *.pb.go popd From de3f2825d556404756cd7135f121e0acc0f24287 Mon Sep 17 00:00:00 2001 From: Kush Trivedi <44091822+kushthedude@users.noreply.github.com> Date: Mon, 16 Mar 2020 16:16:08 +0530 Subject: [PATCH 026/190] fix: Ignore the OS-X Trash (#2274) Signed-off-by: kushthedude --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 15bdae29c76..b836edf5fe3 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,6 @@ website/docs-pre-processed/ tmp/bin examples/tmp/ + +# Ignore the MacOS Trash (DS-Store) +.DS_Store From f6921dcd9ad563d2422822bd82cf7c6f63016bea Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Mon, 16 Mar 2020 18:48:46 +0800 Subject: [PATCH 027/190] docs/sharding.md: fix a typo (#2273) Signed-off-by: Xiang Dai <764524258@qq.com> --- docs/sharding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sharding.md b/docs/sharding.md index f42ea71cb0b..79da90454fd 100644 --- a/docs/sharding.md +++ b/docs/sharding.md @@ -29,7 +29,7 @@ Now, thanos only support following relabel actions: * keep * drop * hashmod - * `externa labels` for all components + * `external labels` for all components * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/master/environments/openshift/manifests/observatorium-template.yaml#L1511) The relabel config defines filtering process done on **every** synchronization with object storage. From 2a95d7a7fd924c6b6e7135a0d477e24a8d30f939 Mon Sep 17 00:00:00 2001 From: Ben Ye Date: Mon, 16 Mar 2020 13:04:45 -0400 Subject: [PATCH 028/190] fix replicate duplicate metrics (#2254) Signed-off-by: yeya24 --- CHANGELOG.md | 1 + .../{replicater.go => replicator.go} | 8 +++++++- pkg/replicate/scheme.go | 19 ++++++++++++------- pkg/replicate/scheme_test.go | 8 +++++--- 4 files changed, 25 insertions(+), 11 deletions(-) rename pkg/replicate/{replicater.go => replicator.go} (95%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32923c9c5a3..4fba305299c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping +- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate ### Added diff --git a/pkg/replicate/replicater.go b/pkg/replicate/replicator.go similarity index 95% rename from pkg/replicate/replicater.go rename to pkg/replicate/replicator.go index 73fb35e455f..1e674fa6a49 100644 --- a/pkg/replicate/replicater.go +++ b/pkg/replicate/replicator.go @@ -20,6 +20,7 @@ import ( "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" + thanosblock "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" @@ -149,6 +150,11 @@ func RunReplicate( Help: "The Duration of replication runs split by success and error.", }, []string{"result"}) + fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg) + if err != nil { + return errors.Wrapf(err, "create meta fetcher with bucket %v", fromBkt) + } + blockFilter := NewBlockFilter( logger, labelSelector, @@ -170,7 +176,7 @@ func RunReplicate( logger := log.With(logger, "replication-run-id", ulid.String()) level.Info(logger).Log("msg", "running replication attempt") - if err := newReplicationScheme(logger, metrics, blockFilter, fromBkt, toBkt, reg).execute(ctx); err != nil { + if err := newReplicationScheme(logger, metrics, blockFilter, fetcher, fromBkt, toBkt, reg).execute(ctx); err != nil { return errors.Wrap(err, "replication execute") } diff --git a/pkg/replicate/scheme.go b/pkg/replicate/scheme.go index 71d3ce7f339..ba5fa113ba3 100644 --- a/pkg/replicate/scheme.go +++ b/pkg/replicate/scheme.go @@ -105,6 +105,7 @@ type replicationScheme struct { toBkt objstore.Bucket blockFilter blockFilterFunc + fetcher thanosblock.MetadataFetcher logger log.Logger metrics *replicationMetrics @@ -152,7 +153,15 @@ func newReplicationMetrics(reg prometheus.Registerer) *replicationMetrics { return m } -func newReplicationScheme(logger log.Logger, metrics *replicationMetrics, blockFilter blockFilterFunc, from objstore.BucketReader, to objstore.Bucket, reg prometheus.Registerer) *replicationScheme { +func newReplicationScheme( + logger log.Logger, + metrics *replicationMetrics, + blockFilter blockFilterFunc, + fetcher thanosblock.MetadataFetcher, + from objstore.BucketReader, + to objstore.Bucket, + reg prometheus.Registerer, +) *replicationScheme { if logger == nil { logger = log.NewNopLogger() } @@ -160,6 +169,7 @@ func newReplicationScheme(logger log.Logger, metrics *replicationMetrics, blockF return &replicationScheme{ logger: logger, blockFilter: blockFilter, + fetcher: fetcher, fromBkt: from, toBkt: to, metrics: metrics, @@ -350,12 +360,7 @@ func (rs *replicationScheme) ensureObjectReplicated(ctx context.Context, objectN // partial, this is just a temporary failure, as the block is still being // uploaded to the origin bucket. func loadMeta(ctx context.Context, rs *replicationScheme, id ulid.ULID) (*metadata.Meta, bool, error) { - fetcher, err := thanosblock.NewMetaFetcher(rs.logger, 32, rs.fromBkt, "", rs.reg) - if err != nil { - return nil, false, errors.Wrapf(err, "create meta fetcher with buecket %v", rs.fromBkt) - } - - metas, _, err := fetcher.Fetch(ctx) + metas, _, err := rs.fetcher.Fetch(ctx) if err != nil { switch errors.Cause(err) { default: diff --git a/pkg/replicate/scheme_test.go b/pkg/replicate/scheme_test.go index c8ca4e05980..9aaf9cff058 100644 --- a/pkg/replicate/scheme_test.go +++ b/pkg/replicate/scheme_test.go @@ -19,6 +19,7 @@ import ( "github.com/oklog/ulid" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" + "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/objstore" @@ -302,9 +303,7 @@ func TestReplicationSchemeAll(t *testing.T) { c.prepare(ctx, t, originBucket, targetBucket) matcher, err := labels.NewMatcher(labels.MatchEqual, "test-labelname", "test-labelvalue") - if err != nil { - t.Fatal("Failed to create a matcher.") - } + testutil.Ok(t, err) selector := labels.Selector{ matcher, @@ -314,11 +313,14 @@ func TestReplicationSchemeAll(t *testing.T) { } filter := NewBlockFilter(logger, selector, compact.ResolutionLevelRaw, 1).Filter + fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil) + testutil.Ok(t, err) r := newReplicationScheme( logger, newReplicationMetrics(nil), filter, + fetcher, originBucket, targetBucket, nil, From cc0b7e62b8b2c6f0879e5bfdd9881a1f7d699fc4 Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Tue, 17 Mar 2020 01:31:24 +0800 Subject: [PATCH 029/190] Document downsample component (#2090) * scripts/genflagdocs.sh: Generate downsample flag Signed-off-by: Xiang Dai <764524258@qq.com> * Document downsample component Signed-off-by: Xiang Dai <764524258@qq.com> * Move downsample as bucket sub-command Signed-off-by: Xiang Dai <764524258@qq.com> * update docs Signed-off-by: Xiang Dai <764524258@qq.com> * feedback Signed-off-by: Xiang Dai <764524258@qq.com> --- cmd/thanos/bucket.go | 16 +++++++++ cmd/thanos/downsample.go | 20 +---------- cmd/thanos/main.go | 1 - docs/components/bucket.md | 71 +++++++++++++++++++++++++++++++++++++++ scripts/genflagdocs.sh | 2 +- 5 files changed, 89 insertions(+), 21 deletions(-) diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 1a3ea497315..57cb41b6d22 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -73,6 +73,7 @@ func registerBucket(m map[string]setupFunc, app *kingpin.Application, name strin registerBucketInspect(m, cmd, name, objStoreConfig) registerBucketWeb(m, cmd, name, objStoreConfig) registerBucketReplicate(m, cmd, name, objStoreConfig) + registerBucketDownsample(m, cmd, name, objStoreConfig) } func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { @@ -424,6 +425,21 @@ func registerBucketReplicate(m map[string]setupFunc, root *kingpin.CmdClause, na } +func registerBucketDownsample(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { + + comp := component.Downsample + cmd := root.Command(comp.String(), "continuously downsamples blocks in an object store bucket") + + httpAddr, httpGracePeriod := regHTTPFlags(cmd) + + dataDir := cmd.Flag("data-dir", "Data directory in which to cache blocks and process downsamplings."). + Default("./data").String() + + m[name+" "+comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { + return RunDownsample(g, logger, reg, *httpAddr, time.Duration(*httpGracePeriod), *dataDir, objStoreConfig, comp) + } +} + // refresh metadata from remote storage periodically and update UI. func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, duration time.Duration, timeout time.Duration, name string, reg *prometheus.Registry, objStoreConfig *extflag.PathOrContent) error { confContentYaml, err := objStoreConfig.Content() diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index d513d2f0a3b..293ef59adf8 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -13,7 +13,6 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/run" "github.com/oklog/ulid" - opentracing "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" @@ -31,25 +30,8 @@ import ( "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/runutil" httpserver "github.com/thanos-io/thanos/pkg/server/http" - kingpin "gopkg.in/alecthomas/kingpin.v2" ) -func registerDownsample(m map[string]setupFunc, app *kingpin.Application) { - comp := component.Downsample - cmd := app.Command(comp.String(), "continuously downsamples blocks in an object store bucket") - - httpAddr, httpGracePeriod := regHTTPFlags(cmd) - - dataDir := cmd.Flag("data-dir", "Data directory in which to cache blocks and process downsamplings."). - Default("./data").String() - - objStoreConfig := regCommonObjStoreFlags(cmd, "", true) - - m[comp.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { - return runDownsample(g, logger, reg, *httpAddr, time.Duration(*httpGracePeriod), *dataDir, objStoreConfig, comp) - } -} - type DownsampleMetrics struct { downsamples *prometheus.CounterVec downsampleFailures *prometheus.CounterVec @@ -70,7 +52,7 @@ func newDownsampleMetrics(reg *prometheus.Registry) *DownsampleMetrics { return m } -func runDownsample( +func RunDownsample( g *run.Group, logger log.Logger, reg *prometheus.Registry, diff --git a/cmd/thanos/main.go b/cmd/thanos/main.go index b407d252bfb..cad3f26d936 100644 --- a/cmd/thanos/main.go +++ b/cmd/thanos/main.go @@ -61,7 +61,6 @@ func main() { registerRule(cmds, app) registerCompact(cmds, app) registerBucket(cmds, app, "bucket") - registerDownsample(cmds, app) registerReceive(cmds, app) registerChecks(cmds, app, "check") diff --git a/docs/components/bucket.md b/docs/components/bucket.md index 3dc3c7aaf91..8c2149f40b9 100644 --- a/docs/components/bucket.md +++ b/docs/components/bucket.md @@ -78,6 +78,9 @@ Subcommands: Replicate data from one object storage to another. NOTE: Currently it works only with Thanos blocks (meta.json has to have Thanos metadata). + bucket downsample [] + continuously downsamples blocks in an object store bucket + ``` @@ -389,3 +392,71 @@ Flags: --single-run Run replication only one time, then exit. ``` + +### Downsample + +The downsample component of Thanos implements the downsample API on top of historical data in an object storage bucket. It continuously downsamples blocks in an object store bucket as a service. + +```bash +$ thanos downsample \ + --data-dir "/local/state/data/dir" \ + --objstore.config-file "bucket.yml" +``` + +The content of `bucket.yml`: + +```yaml +type: GCS +config: + bucket: example-bucket +``` + +#### Flags + +[embedmd]:# (flags/bucket_downsample.txt $) +```$ +usage: thanos bucket downsample [] + +continuously downsamples blocks in an object store bucket + +Flags: + -h, --help Show context-sensitive help (also try --help-long + and --help-man). + --version Show application version. + --log.level=info Log filtering level. + --log.format=logfmt Log format to use. Possible options: logfmt or + json. + --tracing.config-file= + Path to YAML file with tracing configuration. See + format details: + https://thanos.io/tracing.md/#configuration + --tracing.config= + Alternative to 'tracing.config-file' flag (lower + priority). Content of YAML file with tracing + configuration. See format details: + https://thanos.io/tracing.md/#configuration + --objstore.config-file= + Path to YAML file that contains object store + configuration. See format details: + https://thanos.io/storage.md/#configuration + --objstore.config= + Alternative to 'objstore.config-file' flag (lower + priority). Content of YAML file that contains + object store configuration. See format details: + https://thanos.io/storage.md/#configuration + --http-address="0.0.0.0:10902" + Listen host:port for HTTP endpoints. + --http-grace-period=2m Time to wait after an interrupt received for HTTP + Server. + --data-dir="./data" Data directory in which to cache blocks and + process downsamplings. + +``` + +#### Probes + +- Thanos downsample exposes two endpoints for probing. + - `/-/healthy` starts as soon as initial setup completed. + - `/-/ready` starts after all the bootstrapping completed (e.g object store bucket connection) and ready to serve traffic. + +> NOTE: Metric endpoint starts immediately so, make sure you set up readiness probe on designated HTTP `/-/ready` path. diff --git a/scripts/genflagdocs.sh b/scripts/genflagdocs.sh index 9583934f42d..cfd09bbbb6e 100755 --- a/scripts/genflagdocs.sh +++ b/scripts/genflagdocs.sh @@ -40,7 +40,7 @@ for x in "${commands[@]}"; do ./thanos "${x}" --help &> "docs/components/flags/${x}.txt" done -bucketCommands=("verify" "ls" "inspect" "web" "replicate") +bucketCommands=("verify" "ls" "inspect" "web" "replicate" "downsample") for x in "${bucketCommands[@]}"; do ./thanos bucket "${x}" --help &> "docs/components/flags/bucket_${x}.txt" done From 70c318ae96b7883ca9b981860b5a05f11fb52f7d Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Tue, 17 Mar 2020 06:49:24 +0000 Subject: [PATCH 030/190] Crashing error messages now will print stacktrace. (#2277) Signed-off-by: Bartlomiej Plotka --- cmd/thanos/main.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cmd/thanos/main.go b/cmd/thanos/main.go index cad3f26d936..0207cd1a86d 100644 --- a/cmd/thanos/main.go +++ b/cmd/thanos/main.go @@ -182,7 +182,8 @@ func main() { reloadCh := make(chan struct{}, 1) if err := cmds[cmd](&g, logger, metrics, tracer, reloadCh, *logLevel == "debug"); err != nil { - level.Error(logger).Log("err", errors.Wrapf(err, "%s command failed", cmd)) + // Use %+v for github.com/pkg/errors error to print with stack. + level.Error(logger).Log("err", fmt.Sprintf("%+v", errors.Wrapf(err, "preparing %s command failed", cmd))) os.Exit(1) } @@ -207,7 +208,8 @@ func main() { } if err := g.Run(); err != nil { - level.Error(logger).Log("msg", "running command failed", "err", err) + // Use %+v for github.com/pkg/errors error to print with stack. + level.Error(logger).Log("err", fmt.Sprintf("%+v", errors.Wrapf(err, "%s command failed", cmd))) os.Exit(1) } level.Info(logger).Log("msg", "exiting") From a5528575b906d4c663583d5f507c0355e03a8375 Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Tue, 17 Mar 2020 18:57:57 +0800 Subject: [PATCH 031/190] Downsample: update changelog (#2278) * Downsample: update changelog Signed-off-by: Xiang Dai <764524258@qq.com> * feedback Signed-off-by: Xiang Dai <764524258@qq.com> --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fba305299c..884c316a96d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. +### Changed + +- [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. + ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 ### Fixed From 9bb8172862bfb01dd2207ec497ee505c6c99440f Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Tue, 17 Mar 2020 21:04:00 +0800 Subject: [PATCH 032/190] thanos-mixin: clear units/axis (#2279) * thanos-mixin: clear units/axis Signed-off-by: Xiang Dai <764524258@qq.com> * fix nits Signed-off-by: Xiang Dai <764524258@qq.com> --- examples/dashboards/compact.json | 2 +- examples/dashboards/query.json | 2 +- examples/dashboards/receive.json | 2 +- examples/dashboards/rule.json | 2 +- examples/dashboards/sidecar.json | 2 +- examples/dashboards/store.json | 7 ++++--- mixin/thanos/dashboards/store.libsonnet | 4 ++-- mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet | 2 +- 8 files changed, 12 insertions(+), 11 deletions(-) diff --git a/examples/dashboards/compact.json b/examples/dashboards/compact.json index 44fe9a625d2..9d321458302 100644 --- a/examples/dashboards/compact.json +++ b/examples/dashboards/compact.json @@ -1215,7 +1215,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/query.json b/examples/dashboards/query.json index 9f1bfa7ef24..d64f1f625d3 100644 --- a/examples/dashboards/query.json +++ b/examples/dashboards/query.json @@ -2147,7 +2147,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/receive.json b/examples/dashboards/receive.json index 1c3081d0cf8..6a2dc294683 100644 --- a/examples/dashboards/receive.json +++ b/examples/dashboards/receive.json @@ -2002,7 +2002,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/rule.json b/examples/dashboards/rule.json index 897b168dc2d..55c0498172b 100644 --- a/examples/dashboards/rule.json +++ b/examples/dashboards/rule.json @@ -1680,7 +1680,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/sidecar.json b/examples/dashboards/sidecar.json index fca87f47d25..a408b048df7 100644 --- a/examples/dashboards/sidecar.json +++ b/examples/dashboards/sidecar.json @@ -1555,7 +1555,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/examples/dashboards/store.json b/examples/dashboards/store.json index 13d3e4b9df2..231f327cd56 100644 --- a/examples/dashboards/store.json +++ b/examples/dashboards/store.json @@ -2056,7 +2056,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Chunk Size", + "title": "Chunk Size (bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2217,6 +2217,7 @@ "dashLength": 10, "dashes": false, "datasource": "$datasource", + "description": "Show the size of data fetched, in bytes", "fill": 1, "id": 26, "legend": { @@ -2270,7 +2271,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Data Fetched", + "title": "Data Fetched (bytes)", "tooltip": { "shared": false, "sort": 0, @@ -2781,7 +2782,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used", + "title": "Memory Used (Bytes)", "tooltip": { "shared": false, "sort": 0, diff --git a/mixin/thanos/dashboards/store.libsonnet b/mixin/thanos/dashboards/store.libsonnet index 756578989b5..ba06753e048 100644 --- a/mixin/thanos/dashboards/store.libsonnet +++ b/mixin/thanos/dashboards/store.libsonnet @@ -165,7 +165,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; .addRow( g.row('Store Sent') .addPanel( - g.panel('Chunk Size', 'Shows size of chunks that have sent to the bucket, in bytes.') + + g.panel('Chunk Size (bytes)', 'Shows size of chunks that have sent to the bucket, in bytes.') + g.queryPanel( [ 'histogram_quantile(0.99, sum(rate(thanos_bucket_store_sent_chunk_size_bytes_bucket{namespace="$namespace",job=~"$job"}[$interval])) by (job, le))', @@ -198,7 +198,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; ) ) .addPanel( - g.panel('Data Fetched') + + g.panel('Data Fetched (bytes)', 'Show the size of data fetched, in bytes') + g.queryPanel( [ 'thanos_bucket_store_series_data_fetched{namespace="$namespace",job=~"$job",quantile="0.99"}', diff --git a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet index a68e8065b33..8fb734739b1 100644 --- a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet +++ b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet @@ -150,7 +150,7 @@ local template = grafana.template; resourceUtilizationRow():: $.row('Resources') .addPanel( - $.panel('Memory Used') + + $.panel('Memory Used (Bytes)') + $.queryPanel( [ 'go_memstats_alloc_bytes{namespace="$namespace",job=~"$job",kubernetes_pod_name=~"$pod"}', From e8bcb57444de22327d8674f888acd4a3faef543e Mon Sep 17 00:00:00 2001 From: khyatisoneji <31898080+khyatisoneji@users.noreply.github.com> Date: Tue, 17 Mar 2020 19:15:41 +0530 Subject: [PATCH 033/190] store, compact, bucket: Delay deletes by scheduling block deletion with deletion-mark.json file (#2136) Signed-off-by: khyatisoneji --- CHANGELOG.md | 3 + cmd/thanos/bucket.go | 10 ++- cmd/thanos/compact.go | 43 ++++++++- cmd/thanos/store.go | 11 +++ docs/components/bucket.md | 24 +++-- docs/components/compact.md | 28 ++++-- docs/components/store.md | 5 +- .../201901-read-write-operations-bucket.md | 6 +- pkg/block/block.go | 30 +++++++ pkg/block/block_test.go | 55 ++++++++++++ pkg/block/fetcher.go | 84 +++++++++++++++-- pkg/block/fetcher_test.go | 89 ++++++++++++++++--- pkg/block/metadata/deletionmark.go | 76 ++++++++++++++++ pkg/block/metadata/deletionmark_test.go | 78 ++++++++++++++++ pkg/compact/blocks_cleaner.go | 58 ++++++++++++ pkg/compact/clean.go | 5 +- pkg/compact/clean_test.go | 10 ++- pkg/compact/compact.go | 64 ++++++++----- pkg/compact/compact_e2e_test.go | 23 ++++- pkg/compact/retention.go | 8 +- pkg/compact/retention_test.go | 19 +++- pkg/shipper/shipper.go | 1 + pkg/verifier/duplicated_compaction.go | 4 +- pkg/verifier/index_issue.go | 5 +- pkg/verifier/overlapped_blocks.go | 3 +- pkg/verifier/safe_delete.go | 41 ++++++--- pkg/verifier/verify.go | 66 +++++++++----- 27 files changed, 736 insertions(+), 113 deletions(-) create mode 100644 pkg/block/metadata/deletionmark.go create mode 100644 pkg/block/metadata/deletionmark_test.go create mode 100644 pkg/compact/blocks_cleaner.go diff --git a/CHANGELOG.md b/CHANGELOG.md index 884c316a96d..20b1ac5c5d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Changed +- [#2136](https://github.com/thanos-io/thanos/pull/2136) store, compact, bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. +Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. + - [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 57cb41b6d22..9ca8d3cb0d1 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -85,6 +85,12 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name Short('i').Default(verifier.IndexIssueID, verifier.OverlappedBlocksIssueID).Strings() idWhitelist := cmd.Flag("id-whitelist", "Block IDs to verify (and optionally repair) only. "+ "If none is specified, all blocks will be verified. Repeated field").Strings() + deleteDelay := modelDuration(cmd.Flag("delete-delay", "Duration after which blocks marked for deletion would be deleted permanently from source bucket by compactor component. "+ + "If delete-delay is non zero, blocks will be marked for deletion and compactor component is required to delete blocks from source bucket. "+ + "If delete-delay is 0, blocks will be deleted straight away. Use this if you want to get rid of or move the block immediately. "+ + "Note that deleting blocks immediately can cause query failures, if store gateway still has the block loaded, "+ + "or compactor is ignoring the deletion because it's compacting the block at the same time."). + Default("0s")) m[name+" verify"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { confContentYaml, err := objStoreConfig.Content() if err != nil { @@ -140,9 +146,9 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name } if *repair { - v = verifier.NewWithRepair(logger, bkt, backupBkt, fetcher, issues) + v = verifier.NewWithRepair(logger, reg, bkt, backupBkt, fetcher, time.Duration(*deleteDelay), issues) } else { - v = verifier.New(logger, bkt, fetcher, issues) + v = verifier.New(logger, reg, bkt, fetcher, time.Duration(*deleteDelay), issues) } var idMatcher func(ulid.ULID) bool = nil diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 7d54845e76b..03f15243307 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -126,6 +126,13 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { compactionConcurrency := cmd.Flag("compact.concurrency", "Number of goroutines to use when compacting groups."). Default("1").Int() + deleteDelay := modelDuration(cmd.Flag("delete-delay", "Time before a block marked for deletion is deleted from bucket. "+ + "If delete-delay is non zero, blocks will be marked for deletion and compactor component will delete blocks marked for deletion from the bucket. "+ + "If delete-delay is 0, blocks will be deleted straight away. "+ + "Note that deleting blocks immediately can cause query failures, if store gateway still has the block loaded, "+ + "or compactor is ignoring the deletion because it's compacting the block at the same time."). + Default("48h")) + selectorRelabelConf := regSelectorRelabelFlags(cmd) m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { @@ -135,6 +142,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { *dataDir, objStoreConfig, time.Duration(*consistencyDelay), + time.Duration(*deleteDelay), *haltOnError, *acceptMalformedIndex, *wait, @@ -164,6 +172,7 @@ func runCompact( dataDir string, objStoreConfig *extflag.PathOrContent, consistencyDelay time.Duration, + deleteDelay time.Duration, haltOnError bool, acceptMalformedIndex bool, wait bool, @@ -194,6 +203,25 @@ func runCompact( Name: "thanos_compactor_aborted_partial_uploads_deletion_attempts_total", Help: "Total number of started deletions of blocks that are assumed aborted and only partially uploaded.", }) + blocksCleaned := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_blocks_cleaned_total", + Help: "Total number of blocks deleted in compactor.", + }) + blockCleanupFailures := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_block_cleanup_failures_total", + Help: "Failures encountered while deleting blocks in compactor.", + }) + blocksMarkedForDeletion := promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_compactor_blocks_marked_for_deletion_total", + Help: "Total number of blocks marked for deletion in compactor.", + }) + _ = promauto.With(reg).NewGaugeFunc(prometheus.GaugeOpts{ + Name: "thanos_delete_delay_seconds", + Help: "Configured delete delay in seconds.", + }, func() float64 { + return deleteDelay.Seconds() + }) + downsampleMetrics := newDownsampleMetrics(reg) httpProbe := prober.NewHTTP() @@ -245,18 +273,22 @@ func runCompact( } }() + // While fetching blocks, we filter out blocks that were marked for deletion by using IgnoreDeletionMarkFilter. + // The delay of deleteDelay/2 is added to ensure we fetch blocks that are meant to be deleted but do not have a replacement yet. + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, time.Duration(deleteDelay.Seconds()/2)*time.Second) duplicateBlocksFilter := block.NewDeduplicateFilter() prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", prometheusRegisterer, block.NewLabelShardedMetaFilter(relabelConfig).Filter, block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer).Filter, + ignoreDeletionMarkFilter.Filter, duplicateBlocksFilter.Filter, ) if err != nil { return errors.Wrap(err, "create meta fetcher") } - sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, duplicateBlocksFilter, blockSyncConcurrency, acceptMalformedIndex, false) + sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, false) if err != nil { return errors.Wrap(err, "create syncer") } @@ -290,6 +322,7 @@ func runCompact( return errors.Wrap(err, "clean working downsample directory") } + blocksCleaner := compact.NewBlocksCleaner(logger, bkt, ignoreDeletionMarkFilter, deleteDelay, blocksCleaned, blockCleanupFailures) compactor, err := compact.NewBucketCompactor(logger, sy, comp, compactDir, bkt, concurrency) if err != nil { cancel() @@ -331,11 +364,15 @@ func runCompact( level.Warn(logger).Log("msg", "downsampling was explicitly disabled") } - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, retentionByResolution); err != nil { + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, retentionByResolution, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, fmt.Sprintf("retention failed")) } - compact.BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, partialUploadDeleteAttempts) + if err := blocksCleaner.DeleteMarkedBlocks(ctx); err != nil { + return errors.Wrap(err, "error cleaning blocks") + } + + compact.BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) return nil } diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 90ecbce6046..7a4f88a038a 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -84,6 +84,13 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { consistencyDelay := modelDuration(cmd.Flag("consistency-delay", "Minimum age of all blocks before they are being read. Set it to safe value (e.g 30m) if your object storage is eventually consistent. GCS and S3 are (roughly) strongly consistent."). Default("0s")) + ignoreDeletionMarksDelay := modelDuration(cmd.Flag("ignore-deletion-marks-delay", "Duration after which the blocks marked for deletion will be filtered out while fetching blocks. "+ + "The idea of ignore-deletion-marks-delay is to ignore blocks that are marked for deletion with some delay. This ensures store can still serve blocks that are meant to be deleted but do not have a replacement yet. "+ + "If delete-delay duration is provided to compactor or bucket verify component, it will upload deletion-mark.json file to mark after what duration the block should be deleted rather than deleting the block straight away. "+ + "If delete-delay is non-zero for compactor or bucket verify component, ignore-deletion-marks-delay should be set to (delete-delay)/2 so that blocks marked for deletion are filtered out while fetching blocks before being deleted from bucket. "+ + "Default is 24h, half of the default value for --delete-delay on compactor."). + Default("24h")) + m[component.Store.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, debugLogging bool) error { if minTime.PrometheusTimestamp() > maxTime.PrometheusTimestamp() { return errors.Errorf("invalid argument: --min-time '%s' can't be greater than --max-time '%s'", @@ -120,6 +127,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { *advertiseCompatibilityLabel, *enableIndexHeader, time.Duration(*consistencyDelay), + time.Duration(*ignoreDeletionMarksDelay), ) } } @@ -153,6 +161,7 @@ func runStore( advertiseCompatibilityLabel bool, enableIndexHeader bool, consistencyDelay time.Duration, + ignoreDeletionMarksDelay time.Duration, ) error { grpcProbe := prober.NewGRPC() httpProbe := prober.NewHTTP() @@ -225,11 +234,13 @@ func runStore( return errors.Wrap(err, "create index cache") } + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, ignoreDeletionMarksDelay) prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, prometheusRegisterer, block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime).Filter, block.NewLabelShardedMetaFilter(relabelConfig).Filter, block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer).Filter, + ignoreDeletionMarkFilter.Filter, block.NewDeduplicateFilter().Filter, ) if err != nil { diff --git a/docs/components/bucket.md b/docs/components/bucket.md index 8c2149f40b9..fcb492b30fd 100644 --- a/docs/components/bucket.md +++ b/docs/components/bucket.md @@ -26,11 +26,12 @@ config: Bucket can be extended to add more subcommands that will be helpful when working with object storage buckets by adding a new command within `/cmd/thanos/bucket.go`. - ## Deployment + ## Flags -[embedmd]:# (flags/bucket.txt $) +[embedmd]: # "flags/bucket.txt $" + ```$ usage: thanos bucket [] [ ...] @@ -98,7 +99,8 @@ Example: $ thanos bucket web --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_web.txt) +[embedmd]: # "flags/bucket_web.txt" + ```txt usage: thanos bucket web [] @@ -170,7 +172,8 @@ Example: $ thanos bucket verify --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_verify.txt) +[embedmd]: # "flags/bucket_verify.txt" + ```txt usage: thanos bucket verify [] @@ -222,7 +225,11 @@ Flags: Block IDs to verify (and optionally repair) only. If none is specified, all blocks will be verified. Repeated field - + --delete-delay=0s Duration after which blocks marked for deletion would be deleted permanently from source bucket by compactor component. + If delete-delay is non zero, blocks will be marked for deletion and compactor component is required to delete blocks from source bucket. + If delete-delay is 0, blocks will be deleted straight away. Use this if you want to get rid of or move the block immediately. + Note that deleting blocks immediately can cause query failures, if store gateway still has the block + loaded, or compactor is ignoring the deletion because it's compacting the block at the same time. ``` ### ls @@ -235,7 +242,8 @@ Example: $ thanos bucket ls -o json --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_ls.txt) +[embedmd]: # "flags/bucket_ls.txt" + ```txt usage: thanos bucket ls [] @@ -276,11 +284,13 @@ Flags: `bucket inspect` is used to inspect buckets in a detailed way using stdout in ASCII table format. Example: + ``` $ thanos bucket inspect -l environment=\"prod\" --objstore.config-file="..." ``` -[embedmd]:# (flags/bucket_inspect.txt) +[embedmd]: # "flags/bucket_inspect.txt" + ```txt usage: thanos bucket inspect [] diff --git a/docs/components/compact.md b/docs/components/compact.md index 4199daeed2f..bff5f29931b 100644 --- a/docs/components/compact.md +++ b/docs/components/compact.md @@ -11,8 +11,8 @@ It is generally not semantically concurrency safe and must be deployed as a sing It is also responsible for downsampling of data: -* creating 5m downsampling for blocks larger than **40 hours** (2d, 2w) -* creating 1h downsampling for blocks larger than **10 days** (2w). +- creating 5m downsampling for blocks larger than **40 hours** (2d, 2w) +- creating 1h downsampling for blocks larger than **10 days** (2w). Example: @@ -35,9 +35,9 @@ On-disk data is safe to delete between restarts and should be the first attempt Resolution - distance between data points on your graphs. E.g. -* raw - the same as scrape interval at the moment of data ingestion -* 5m - data point is every 5 minutes -* 1h - data point is every 1h +- raw - the same as scrape interval at the moment of data ingestion +- 5m - data point is every 5 minutes +- 1h - data point is every 1h Keep in mind, that the initial goal of downsampling is not saving disk space (Read further for elaboration on storage space consumption). The goal of downsampling is providing an opportunity to get fast results for range queries of big time intervals like months or years. In other words, if you set `--retention.resolution-raw` less then `--retention.resolution-5m` and `--retention.resolution-1h` - you might run into a problem of not being able to "zoom in" to your historical data. @@ -64,9 +64,18 @@ your Prometheus instances, so that the compactor will be able to group blocks by By _persistent_, we mean that one Prometheus instance must keep the same labels if it restarts, so that the compactor will keep compacting blocks from an instance even when a Prometheus instance goes down for some time. +## Block Deletion + +Depending on the Object Storage provider like S3, GCS, Ceph etc; we can divide the storages into strongly consistent or eventually consistent. +Since there are no consistency guarantees provided by some Object Storage providers, we have to make sure that we have a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. + +In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading +`deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. + ## Flags -[embedmd]:# (flags/compact.txt $) +[embedmd]: # "flags/compact.txt $" + ```$ usage: thanos compact [] @@ -146,5 +155,10 @@ Flags: selecting blocks. It follows native Prometheus relabel-config syntax. See format details: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config - + --delete-delay=48h Time before a block marked for deletion is deleted from bucket. + If delete-delay is non zero, blocks will be marked for deletion and compactor component will delete blocks marked for deletion from the bucket. + If delete-delay is 0, blocks will be deleted straight away. + Use this if you want to get rid of or move the block immediately. + Note that deleting blocks immediately can cause query failures, if store gateway still has the block + loaded, or compactor is ignoring the deletion because it's compacting the block at the same time. ``` diff --git a/docs/components/store.md b/docs/components/store.md index f1e900212e1..c24d5288a6d 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -139,7 +139,10 @@ Flags: details: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config --consistency-delay=30m Minimum age of all blocks before they are being read. - + --ignore-deletion-marks-delay=24h + Duration after which the blocks marked for deletion will be filtered out while fetching blocks. + The idea of ignore-deletion-marks-delay is to ignore blocks that are marked for deletion with some delay. This ensures store can still serve blocks that are meant to be deleted but do not have a replacement yet. If delete-delay duration is provided to compactor or bucket verify component, it will upload deletion-mark.json file to mark after what duration the block should be deleted rather than deleting the block straight away. + If delete-delay is non-zero for compactor or bucket verify component, ignore-deletion-marks-delay should be set to (delete-delay)/2 so that blocks marked for deletion are filtered out while fetching blocks before being deleted from bucket. Default is 24h, half of the default value for --delete-delay on compactor. ``` ## Time based partitioning diff --git a/docs/proposals/201901-read-write-operations-bucket.md b/docs/proposals/201901-read-write-operations-bucket.md index 4658e095e76..326fe79200c 100644 --- a/docs/proposals/201901-read-write-operations-bucket.md +++ b/docs/proposals/201901-read-write-operations-bucket.md @@ -2,7 +2,7 @@ title: Read-Write coordination free operational contract for object storage type: proposal menu: proposals -status: accepted +status: complete owner: bwplotka --- @@ -179,7 +179,7 @@ We schedule deletions instead of doing them straight away for 3 reasons: * In further delete steps, starting with meta.json first ensures integrity mark being deleted first, so in case of deletion process being stopped, we can treat this block as partial block (rule 4th) and delete it gracefully. Along with this, we also store information about when the block was scheduled to be deleted so that it can be deleted at a later point in time. -To do so, we create a file `compactor-meta.json` where we store information about when the block was scheduled to be deleted. +To do so, we create a file `deletion-mark.json` where we store information about when the block was scheduled to be deleted. Storing the information in a file makes it resilient to failures that result in restarts. There might be exception for malformed blocks that blocks compaction or reader operations. Since we may need to unblock the system @@ -189,7 +189,7 @@ immediately the block can be forcibly removed meaning that query failures may oc This is to make sure we don't forcibly remove block which is still loaded on reader side. -We check the `compactor-meta.json` file to identify if the block has to be deleted. After 15 minutes of marking the block to be deleted, we are ok to delete the whole block directory. +We check the `deletion-mark.json` file to identify if the block has to be deleted. After 15 minutes of marking the block to be deleted, we are ok to delete the whole block directory. ## Risks diff --git a/pkg/block/block.go b/pkg/block/block.go index 51b8012974d..62433d0799d 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -6,6 +6,7 @@ package block import ( + "bytes" "context" "encoding/json" "fmt" @@ -14,6 +15,7 @@ import ( "path" "path/filepath" "strings" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" @@ -126,6 +128,34 @@ func cleanUp(logger log.Logger, bkt objstore.Bucket, id ulid.ULID, err error) er return err } +// MarkForDeletion creates a file which stores information about when the block was marked for deletion. +func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid.ULID) error { + deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) + deletionMarkExists, err := objstore.Exists(ctx, bkt, deletionMarkFile) + if err != nil { + return errors.Wrapf(err, "check exists %s in bucket", deletionMarkFile) + } + if deletionMarkExists { + return errors.Errorf("file %s already exists in bucket", deletionMarkFile) + } + + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: id, + DeletionTime: time.Now().Unix(), + Version: metadata.DeletionMarkVersion1, + }) + if err != nil { + return errors.Wrap(err, "json encode deletion mark") + } + + if err := bkt.Upload(ctx, deletionMarkFile, bytes.NewReader(deletionMark)); err != nil { + return errors.Wrapf(err, "upload file %s to bucket", deletionMarkFile) + } + + level.Info(logger).Log("msg", "block has been marked for deletion", "block", id) + return nil +} + // Delete removes directory that is meant to be block directory. // NOTE: Always prefer this method for deleting blocks. // * We have to delete block's files in the certain order (meta.json first) diff --git a/pkg/block/block_test.go b/pkg/block/block_test.go index e6bdfc8ce13..6e2193b5d7a 100644 --- a/pkg/block/block_test.go +++ b/pkg/block/block_test.go @@ -4,7 +4,10 @@ package block import ( + "bytes" "context" + "encoding/json" + "fmt" "io/ioutil" "os" "path" @@ -15,6 +18,7 @@ import ( "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" @@ -218,3 +222,54 @@ func TestDelete(t *testing.T) { testutil.Equals(t, 2, len(bkt.Objects())) } } + +func TestMarkForDeletion(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + + tmpDir, err := ioutil.TempDir("", "test-block-mark-for-delete") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() + + bkt := inmem.NewBucket() + { + blockWithoutDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ + {{Name: "a", Value: "1"}}, + {{Name: "a", Value: "2"}}, + {{Name: "a", Value: "3"}}, + {{Name: "a", Value: "4"}}, + {{Name: "b", Value: "1"}}, + }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) + testutil.Ok(t, err) + testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithoutDeletionMark.String()))) + + testutil.Ok(t, MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithoutDeletionMark)) + exists, err := bkt.Exists(ctx, path.Join(blockWithoutDeletionMark.String(), metadata.DeletionMarkFilename)) + testutil.Ok(t, err) + testutil.Equals(t, true, exists) + } + { + blockWithDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ + {{Name: "a", Value: "1"}}, + {{Name: "a", Value: "2"}}, + {{Name: "a", Value: "3"}}, + {{Name: "a", Value: "4"}}, + {{Name: "b", Value: "1"}}, + }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) + testutil.Ok(t, err) + testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithDeletionMark.String()))) + + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: blockWithDeletionMark, + DeletionTime: time.Now().Unix(), + Version: metadata.DeletionMarkVersion1, + }) + testutil.Ok(t, err) + testutil.Ok(t, bkt.Upload(ctx, path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename), bytes.NewReader(deletionMark))) + + err = MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithDeletionMark) + testutil.NotOk(t, err) + testutil.Equals(t, fmt.Sprintf("file %s already exists in bucket", path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename)), err.Error()) + } +} diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index ae4f3b454b1..2ab188bd0fe 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -53,6 +53,10 @@ const ( timeExcludedMeta = "time-excluded" tooFreshMeta = "too-fresh" duplicateMeta = "duplicate" + + // Blocks that are marked for deletion can be loaded as well. This is done to make sure that we load blocks that are meant to be deleted, + // but don't have a replacement block yet. + markedForDeletionMeta = "marked-for-deletion" ) func newSyncMetrics(reg prometheus.Registerer) *syncMetrics { @@ -88,6 +92,7 @@ func newSyncMetrics(reg prometheus.Registerer) *syncMetrics { []string{labelExcludedMeta}, []string{timeExcludedMeta}, []string{duplicateMeta}, + []string{markedForDeletionMeta}, ) return &m } @@ -100,9 +105,10 @@ type GaugeLabeled interface { WithLabelValues(lvs ...string) prometheus.Gauge } -type MetaFetcherFilter func(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) +type MetaFetcherFilter func(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) error // MetaFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. +// Not go-routine safe. type MetaFetcher struct { logger log.Logger concurrency int @@ -345,7 +351,9 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. for _, f := range s.filters { // NOTE: filter can update synced metric accordingly to the reason of the exclude. - f(metas, s.metrics.synced, incompleteView) + if err := f(ctx, metas, s.metrics.synced, incompleteView); err != nil { + return nil, nil, errors.Wrap(err, "filter metas") + } } s.metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) @@ -362,6 +370,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. var _ MetaFetcherFilter = (&TimePartitionMetaFilter{}).Filter // TimePartitionMetaFilter is a MetaFetcher filter that filters out blocks that are outside of specified time range. +// Not go-routine safe. type TimePartitionMetaFilter struct { minTime, maxTime model.TimeOrDurationValue } @@ -372,7 +381,7 @@ func NewTimePartitionMetaFilter(MinTime, MaxTime model.TimeOrDurationValue) *Tim } // Filter filters out blocks that are outside of specified time range. -func (f *TimePartitionMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +func (f *TimePartitionMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { for id, m := range metas { if m.MaxTime >= f.minTime.PrometheusTimestamp() && m.MinTime <= f.maxTime.PrometheusTimestamp() { continue @@ -380,11 +389,13 @@ func (f *TimePartitionMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, syn synced.WithLabelValues(timeExcludedMeta).Inc() delete(metas, id) } + return nil } var _ MetaFetcherFilter = (&LabelShardedMetaFilter{}).Filter // LabelShardedMetaFilter represents struct that allows sharding. +// Not go-routine safe. type LabelShardedMetaFilter struct { relabelConfig []*relabel.Config } @@ -398,7 +409,7 @@ func NewLabelShardedMetaFilter(relabelConfig []*relabel.Config) *LabelShardedMet const blockIDLabel = "__block_id" // Filter filters out blocks that have no labels after relabelling of each block external (Thanos) labels. -func (f *LabelShardedMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +func (f *LabelShardedMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { var lbls labels.Labels for id, m := range metas { lbls = lbls[:0] @@ -412,9 +423,11 @@ func (f *LabelShardedMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, sync delete(metas, id) } } + return nil } // DeduplicateFilter is a MetaFetcher filter that filters out older blocks that have exactly the same data. +// Not go-routine safe. type DeduplicateFilter struct { duplicateIDs []ulid.ULID } @@ -426,7 +439,7 @@ func NewDeduplicateFilter() *DeduplicateFilter { // Filter filters out duplicate blocks that can be formed // from two or more overlapping blocks that fully submatches the source blocks of the older blocks. -func (f *DeduplicateFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { var wg sync.WaitGroup metasByResolution := make(map[int64][]*metadata.Meta) @@ -448,6 +461,8 @@ func (f *DeduplicateFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced Ga } wg.Wait() + + return nil } func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, res int64, synced GaugeLabeled) { @@ -476,8 +491,7 @@ func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadat } } -// DuplicateIDs returns slice of block ids -// that are filtered out by DeduplicateFilter. +// DuplicateIDs returns slice of block ids that are filtered out by DeduplicateFilter. func (f *DeduplicateFilter) DuplicateIDs() []ulid.ULID { return f.duplicateIDs } @@ -527,6 +541,7 @@ func contains(s1 []ulid.ULID, s2 []ulid.ULID) bool { } // ConsistencyDelayMetaFilter is a MetaFetcher filter that filters out blocks that are created before a specified consistency delay. +// Not go-routine safe. type ConsistencyDelayMetaFilter struct { logger log.Logger consistencyDelay time.Duration @@ -551,7 +566,7 @@ func NewConsistencyDelayMetaFilter(logger log.Logger, consistencyDelay time.Dura } // Filter filters out blocks that filters blocks that have are created before a specified consistency delay. -func (f *ConsistencyDelayMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) { +func (f *ConsistencyDelayMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { for id, meta := range metas { // TODO(khyatisoneji): Remove the checks about Thanos Source // by implementing delete delay to fetch metas. @@ -566,4 +581,57 @@ func (f *ConsistencyDelayMetaFilter) Filter(metas map[ulid.ULID]*metadata.Meta, delete(metas, id) } } + + return nil +} + +// IgnoreDeletionMarkFilter is a filter that filters out the blocks that are marked for deletion after a given delay. +// The delay duration is to make sure that the replacement block can be fetched before we filter out the old block. +// Delay is not considered when computing DeletionMarkBlocks map. +// Not go-routine safe. +type IgnoreDeletionMarkFilter struct { + logger log.Logger + delay time.Duration + bkt objstore.BucketReader + deletionMarkMap map[ulid.ULID]*metadata.DeletionMark +} + +// NewIgnoreDeletionMarkFilter creates IgnoreDeletionMarkFilter. +func NewIgnoreDeletionMarkFilter(logger log.Logger, bkt objstore.BucketReader, delay time.Duration) *IgnoreDeletionMarkFilter { + return &IgnoreDeletionMarkFilter{ + logger: logger, + bkt: bkt, + delay: delay, + } +} + +// DeletionMarkBlocks returns block ids that were marked for deletion. +func (f *IgnoreDeletionMarkFilter) DeletionMarkBlocks() map[ulid.ULID]*metadata.DeletionMark { + return f.deletionMarkMap +} + +// Filter filters out blocks that are marked for deletion after a given delay. +// It also returns the blocks that can be deleted since they were uploaded delay duration before current time. +func (f *IgnoreDeletionMarkFilter) Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { + f.deletionMarkMap = make(map[ulid.ULID]*metadata.DeletionMark) + + for id := range metas { + deletionMark, err := metadata.ReadDeletionMark(ctx, f.bkt, f.logger, id.String()) + if err == metadata.ErrorDeletionMarkNotFound { + continue + } + if errors.Cause(err) == metadata.ErrorUnmarshalDeletionMark { + level.Warn(f.logger).Log("msg", "found partial deletion-mark.json; if we will see it happening often for the same block, consider manually deleting deletion-mark.json from the object storage", "block", id, "err", err) + continue + } + if err != nil { + return err + } + f.deletionMarkMap[id] = deletionMark + if time.Since(time.Unix(deletionMark.DeletionTime, 0)).Seconds() > f.delay.Seconds() { + synced.WithLabelValues(markedForDeletionMeta).Inc() + delete(metas, id) + } + } + return nil } diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index d2c4c9b251c..3c181886dd4 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -57,11 +57,12 @@ func TestMetaFetcher_Fetch(t *testing.T) { var ulidToDelete ulid.ULID r := prometheus.NewRegistry() - f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, func(metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) { + f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, func(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { if _, ok := metas[ulidToDelete]; ok { synced.WithLabelValues("filtered").Inc() delete(metas, ulidToDelete) } + return nil }) testutil.Ok(t, err) @@ -280,6 +281,9 @@ func TestMetaFetcher_Fetch(t *testing.T) { } func TestLabelShardedMetaFilter_Filter_Basic(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + relabelContentYaml := ` - action: drop regex: "A" @@ -334,14 +338,16 @@ func TestLabelShardedMetaFilter_Filter_Basic(t *testing.T) { } synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - f.Filter(input, synced, false) - + testutil.Ok(t, f.Filter(ctx, input, synced, false)) testutil.Equals(t, 3.0, promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) testutil.Equals(t, expected, input) } func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + relabelContentYamlFmt := ` - action: hashmod source_labels: ["%s"] @@ -429,8 +435,7 @@ func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { deleted := len(input) - len(expected) synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - f.Filter(input, synced, false) - + testutil.Ok(t, f.Filter(ctx, input, synced, false)) testutil.Equals(t, expected, input) testutil.Equals(t, float64(deleted), promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) @@ -440,6 +445,9 @@ func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { } func TestTimePartitionMetaFilter_Filter(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + mint := time.Unix(0, 1*time.Millisecond.Nanoseconds()) maxt := time.Unix(0, 10*time.Millisecond.Nanoseconds()) f := NewTimePartitionMetaFilter(model.TimeOrDurationValue{Time: &mint}, model.TimeOrDurationValue{Time: &maxt}) @@ -490,8 +498,7 @@ func TestTimePartitionMetaFilter_Filter(t *testing.T) { } synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - f.Filter(input, synced, false) - + testutil.Ok(t, f.Filter(ctx, input, synced, false)) testutil.Equals(t, 2.0, promtest.ToFloat64(synced.WithLabelValues(timeExcludedMeta))) testutil.Equals(t, expected, input) @@ -503,6 +510,9 @@ type sourcesAndResolution struct { } func TestDeduplicateFilter_Filter(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + for _, tcase := range []struct { name string input map[ulid.ULID]*sourcesAndResolution @@ -838,8 +848,7 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, } } - f.Filter(metas, synced, false) - + testutil.Ok(t, f.Filter(ctx, metas, synced, false)) compareSliceWithMapKeys(t, metas, tcase.expected) testutil.Equals(t, float64(inputLen-len(tcase.expected)), promtest.ToFloat64(synced.WithLabelValues(duplicateMeta))) }); !ok { @@ -890,6 +899,9 @@ func (u *ulidBuilder) ULID(t time.Time) ulid.ULID { } func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + u := &ulidBuilder{} now := time.Now() @@ -944,8 +956,7 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { f := NewConsistencyDelayMetaFilter(nil, 0*time.Second, reg) testutil.Equals(t, map[string]float64{"consistency_delay_seconds": 0.0}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) - f.Filter(input, synced, false) - + testutil.Ok(t, f.Filter(ctx, input, synced, false)) testutil.Equals(t, 0.0, promtest.ToFloat64(synced.WithLabelValues(tooFreshMeta))) testutil.Equals(t, expected, input) }) @@ -970,9 +981,61 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { f := NewConsistencyDelayMetaFilter(nil, 30*time.Minute, reg) testutil.Equals(t, map[string]float64{"consistency_delay_seconds": (30 * time.Minute).Seconds()}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) - f.Filter(input, synced, false) - + testutil.Ok(t, f.Filter(ctx, input, synced, false)) testutil.Equals(t, float64(len(u.created)-len(expected)), promtest.ToFloat64(synced.WithLabelValues(tooFreshMeta))) testutil.Equals(t, expected, input) }) } + +func TestIgnoreDeletionMarkFilter_Filter(t *testing.T) { + objtesting.ForeachStore(t, func(t *testing.T, bkt objstore.Bucket) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + + now := time.Now() + f := &IgnoreDeletionMarkFilter{ + logger: log.NewNopLogger(), + bkt: bkt, + delay: 48 * time.Hour, + } + + shouldFetch := &metadata.DeletionMark{ + ID: ULID(1), + DeletionTime: now.Add(-15 * time.Hour).Unix(), + Version: 1, + } + + shouldIgnore := &metadata.DeletionMark{ + ID: ULID(2), + DeletionTime: now.Add(-60 * time.Hour).Unix(), + Version: 1, + } + + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&shouldFetch)) + testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldFetch.ID.String(), metadata.DeletionMarkFilename), &buf)) + + testutil.Ok(t, json.NewEncoder(&buf).Encode(&shouldIgnore)) + testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnore.ID.String(), metadata.DeletionMarkFilename), &buf)) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(ULID(3).String(), metadata.DeletionMarkFilename), bytes.NewBufferString("not a valid deletion-mark.json"))) + + input := map[ulid.ULID]*metadata.Meta{ + ULID(1): {}, + ULID(2): {}, + ULID(3): {}, + ULID(4): {}, + } + + expected := map[ulid.ULID]*metadata.Meta{ + ULID(1): {}, + ULID(3): {}, + ULID(4): {}, + } + + synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + testutil.Ok(t, f.Filter(ctx, input, synced, false)) + testutil.Equals(t, 1.0, promtest.ToFloat64(synced.WithLabelValues(markedForDeletionMeta))) + testutil.Equals(t, expected, input) + }) +} diff --git a/pkg/block/metadata/deletionmark.go b/pkg/block/metadata/deletionmark.go new file mode 100644 index 00000000000..bda97e92c6c --- /dev/null +++ b/pkg/block/metadata/deletionmark.go @@ -0,0 +1,76 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package metadata + +import ( + "context" + "encoding/json" + "io/ioutil" + "path" + + "github.com/go-kit/kit/log" + "github.com/oklog/ulid" + "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/runutil" +) + +const ( + // DeletionMarkFilename is the known json filename to store details about when block is marked for deletion. + DeletionMarkFilename = "deletion-mark.json" + + // DeletionMarkVersion1 is the version of deletion-mark file supported by Thanos. + DeletionMarkVersion1 = 1 +) + +// ErrorDeletionMarkNotFound is the error when deletion-mark.json file is not found. +var ErrorDeletionMarkNotFound = errors.New("deletion-mark.json not found") + +// ErrorUnmarshalDeletionMark is the error when unmarshalling deletion-mark.json file. +// This error can occur because deletion-mark.json has been partially uploaded to block storage +// or the deletion-mark.json file is not a valid json file. +var ErrorUnmarshalDeletionMark = errors.New("unmarshal deletion-mark.json") + +// DeletionMark stores block id and when block was marked for deletion. +type DeletionMark struct { + // ID of the tsdb block. + ID ulid.ULID `json:"id"` + + // DeletionTime is a unix timestamp of when the block was marked to be deleted. + DeletionTime int64 `json:"deletion_time"` + + // Version of the file. + Version int `json:"version"` +} + +// ReadDeletionMark reads the given deletion mark file from /deletion-mark.json in bucket. +func ReadDeletionMark(ctx context.Context, bkt objstore.BucketReader, logger log.Logger, dir string) (*DeletionMark, error) { + deletionMarkFile := path.Join(dir, DeletionMarkFilename) + + r, err := bkt.Get(ctx, deletionMarkFile) + if err != nil { + if bkt.IsObjNotFoundErr(err) { + return nil, ErrorDeletionMarkNotFound + } + return nil, errors.Wrapf(err, "get file: %s", deletionMarkFile) + } + + defer runutil.CloseWithLogOnErr(logger, r, "close bkt deletion-mark reader") + + metaContent, err := ioutil.ReadAll(r) + if err != nil { + return nil, errors.Wrapf(err, "read file: %s", deletionMarkFile) + } + + deletionMark := DeletionMark{} + if err := json.Unmarshal(metaContent, &deletionMark); err != nil { + return nil, errors.Wrapf(ErrorUnmarshalDeletionMark, "file: %s; err: %v", deletionMarkFile, err.Error()) + } + + if deletionMark.Version != DeletionMarkVersion1 { + return nil, errors.Errorf("unexpected deletion-mark file version %d", deletionMark.Version) + } + + return &deletionMark, nil +} diff --git a/pkg/block/metadata/deletionmark_test.go b/pkg/block/metadata/deletionmark_test.go new file mode 100644 index 00000000000..73f632e9af4 --- /dev/null +++ b/pkg/block/metadata/deletionmark_test.go @@ -0,0 +1,78 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package metadata + +import ( + "bytes" + "context" + "encoding/json" + "io/ioutil" + "os" + "path" + "testing" + "time" + + "github.com/fortytw2/leaktest" + "github.com/oklog/ulid" + "github.com/pkg/errors" + "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestReadDeletionMark(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + + tmpDir, err := ioutil.TempDir("", "test-read-deletion-mark") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() + + bkt := inmem.NewBucket() + { + blockWithoutDeletionMark := ulid.MustNew(uint64(1), nil) + _, err := ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithoutDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, ErrorDeletionMarkNotFound, err) + } + { + blockWithPartialDeletionMark := ulid.MustNew(uint64(2), nil) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithPartialDeletionMark.String(), DeletionMarkFilename), bytes.NewBufferString("not a valid deletion-mark.json"))) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithPartialDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, ErrorUnmarshalDeletionMark, errors.Cause(err)) + } + { + blockWithDifferentVersionDeletionMark := ulid.MustNew(uint64(3), nil) + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&DeletionMark{ + ID: blockWithDifferentVersionDeletionMark, + DeletionTime: time.Now().Unix(), + Version: 2, + })) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithDifferentVersionDeletionMark.String(), DeletionMarkFilename), &buf)) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithDifferentVersionDeletionMark.String())) + + testutil.NotOk(t, err) + testutil.Equals(t, "unexpected deletion-mark file version 2", err.Error()) + } + { + blockWithValidDeletionMark := ulid.MustNew(uint64(3), nil) + var buf bytes.Buffer + testutil.Ok(t, json.NewEncoder(&buf).Encode(&DeletionMark{ + ID: blockWithValidDeletionMark, + DeletionTime: time.Now().Unix(), + Version: 1, + })) + + testutil.Ok(t, bkt.Upload(ctx, path.Join(tmpDir, blockWithValidDeletionMark.String(), DeletionMarkFilename), &buf)) + _, err = ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithValidDeletionMark.String())) + + testutil.Ok(t, err) + } +} diff --git a/pkg/compact/blocks_cleaner.go b/pkg/compact/blocks_cleaner.go new file mode 100644 index 00000000000..820346a1bf9 --- /dev/null +++ b/pkg/compact/blocks_cleaner.go @@ -0,0 +1,58 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package compact + +import ( + "context" + "time" + + "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" + "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/objstore" +) + +// BlocksCleaner is a struct that deletes blocks from bucket which are marked for deletion. +type BlocksCleaner struct { + logger log.Logger + ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter + bkt objstore.Bucket + deleteDelay time.Duration + blocksCleaned prometheus.Counter + blockCleanupFailures prometheus.Counter +} + +// NewBlocksCleaner creates a new BlocksCleaner. +func NewBlocksCleaner(logger log.Logger, bkt objstore.Bucket, ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter, deleteDelay time.Duration, blocksCleaned prometheus.Counter, blockCleanupFailures prometheus.Counter) *BlocksCleaner { + return &BlocksCleaner{ + logger: logger, + ignoreDeletionMarkFilter: ignoreDeletionMarkFilter, + bkt: bkt, + deleteDelay: deleteDelay, + blocksCleaned: blocksCleaned, + blockCleanupFailures: blockCleanupFailures, + } +} + +// DeleteMarkedBlocks uses ignoreDeletionMarkFilter to delete the blocks that are marked for deletion. +func (s *BlocksCleaner) DeleteMarkedBlocks(ctx context.Context) error { + level.Info(s.logger).Log("msg", "started cleaning of blocks marked for deletion") + + deletionMarkMap := s.ignoreDeletionMarkFilter.DeletionMarkBlocks() + for _, deletionMark := range deletionMarkMap { + if time.Since(time.Unix(deletionMark.DeletionTime, 0)).Seconds() > s.deleteDelay.Seconds() { + if err := block.Delete(ctx, s.logger, s.bkt, deletionMark.ID); err != nil { + s.blockCleanupFailures.Inc() + return errors.Wrap(err, "delete block") + } + s.blocksCleaned.Inc() + level.Info(s.logger).Log("msg", "deleted block marked for deletion", "block", deletionMark.ID) + } + } + + level.Info(s.logger).Log("msg", "cleaning of blocks marked for deletion done") + return nil +} diff --git a/pkg/compact/clean.go b/pkg/compact/clean.go index af681a940e4..14fdfc4d7cb 100644 --- a/pkg/compact/clean.go +++ b/pkg/compact/clean.go @@ -21,7 +21,7 @@ const ( PartialUploadThresholdAge = 2 * 24 * time.Hour ) -func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger, fetcher block.MetadataFetcher, bkt objstore.Bucket, deleteAttempts prometheus.Counter) { +func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger, fetcher block.MetadataFetcher, bkt objstore.Bucket, deleteAttempts prometheus.Counter, blocksMarkedForDeletion prometheus.Counter) { level.Info(logger).Log("msg", "started cleaning of aborted partial uploads") _, partial, err := fetcher.Fetch(ctx) if err != nil { @@ -41,10 +41,11 @@ func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger } deleteAttempts.Inc() - if err := block.Delete(ctx, logger, bkt, id); err != nil { + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { level.Warn(logger).Log("msg", "failed to delete aborted partial upload; skipping", "block", id, "thresholdAge", PartialUploadThresholdAge, "err", err) return } + blocksMarkedForDeletion.Inc() level.Info(logger).Log("msg", "deleted aborted partial upload", "block", id, "thresholdAge", PartialUploadThresholdAge) } level.Info(logger).Log("msg", "cleaning of aborted partial uploads done") diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 90b136be47e..74cfbaaf5ab 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -59,12 +59,18 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnoreID2.String(), "chunks", "000001"), &fakeChunk)) deleteAttempts := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) - BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts, blocksMarkedForDeletion) testutil.Equals(t, 1.0, promtest.ToFloat64(deleteAttempts)) exists, err := bkt.Exists(ctx, path.Join(shouldDeleteID.String(), "chunks", "000001")) testutil.Ok(t, err) - testutil.Equals(t, false, exists) + testutil.Equals(t, true, exists) + + exists, err = bkt.Exists(ctx, path.Join(shouldDeleteID.String(), metadata.DeletionMarkFilename)) + testutil.Ok(t, err) + testutil.Equals(t, true, exists) + testutil.Equals(t, 1.0, promtest.ToFloat64(blocksMarkedForDeletion)) exists, err = bkt.Exists(ctx, path.Join(shouldIgnoreID1.String(), "chunks", "000001")) testutil.Ok(t, err) diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index df9f8492abe..7e6040d37b3 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -51,6 +51,7 @@ type Syncer struct { acceptMalformedIndex bool enableVerticalCompaction bool duplicateBlocksFilter *block.DeduplicateFilter + ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter } type syncerMetrics struct { @@ -63,9 +64,10 @@ type syncerMetrics struct { compactionRunsCompleted *prometheus.CounterVec compactionFailures *prometheus.CounterVec verticalCompactions *prometheus.CounterVec + blocksMarkedForDeletion prometheus.Counter } -func newSyncerMetrics(reg prometheus.Registerer) *syncerMetrics { +func newSyncerMetrics(reg prometheus.Registerer, blocksMarkedForDeletion prometheus.Counter) *syncerMetrics { var m syncerMetrics m.garbageCollectedBlocks = promauto.With(reg).NewCounter(prometheus.CounterOpts{ @@ -106,25 +108,28 @@ func newSyncerMetrics(reg prometheus.Registerer) *syncerMetrics { Name: "thanos_compact_group_vertical_compactions_total", Help: "Total number of group compaction attempts that resulted in a new block based on overlapping blocks.", }, []string{"group"}) + m.blocksMarkedForDeletion = blocksMarkedForDeletion + return &m } // NewMetaSyncer returns a new Syncer for the given Bucket and directory. // Blocks must be at least as old as the sync delay for being considered. -func NewSyncer(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, duplicateBlocksFilter *block.DeduplicateFilter, blockSyncConcurrency int, acceptMalformedIndex bool, enableVerticalCompaction bool) (*Syncer, error) { +func NewSyncer(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, duplicateBlocksFilter *block.DeduplicateFilter, ignoreDeletionMarkFilter *block.IgnoreDeletionMarkFilter, blocksMarkedForDeletion prometheus.Counter, blockSyncConcurrency int, acceptMalformedIndex bool, enableVerticalCompaction bool) (*Syncer, error) { if logger == nil { logger = log.NewNopLogger() } return &Syncer{ - logger: logger, - reg: reg, - bkt: bkt, - fetcher: fetcher, - blocks: map[ulid.ULID]*metadata.Meta{}, - metrics: newSyncerMetrics(reg), - duplicateBlocksFilter: duplicateBlocksFilter, - blockSyncConcurrency: blockSyncConcurrency, - acceptMalformedIndex: acceptMalformedIndex, + logger: logger, + reg: reg, + bkt: bkt, + fetcher: fetcher, + blocks: map[ulid.ULID]*metadata.Meta{}, + metrics: newSyncerMetrics(reg, blocksMarkedForDeletion), + duplicateBlocksFilter: duplicateBlocksFilter, + ignoreDeletionMarkFilter: ignoreDeletionMarkFilter, + blockSyncConcurrency: blockSyncConcurrency, + acceptMalformedIndex: acceptMalformedIndex, // The syncer offers an option to enable vertical compaction, even if it's // not currently used by Thanos, because the compactor is also used by Cortex // which needs vertical compaction. @@ -195,6 +200,7 @@ func (s *Syncer) Groups() (res []*Group, err error) { s.metrics.compactionFailures.WithLabelValues(groupKey), s.metrics.verticalCompactions.WithLabelValues(groupKey), s.metrics.garbageCollectedBlocks, + s.metrics.blocksMarkedForDeletion, ) if err != nil { return nil, errors.Wrap(err, "create compaction group") @@ -221,8 +227,19 @@ func (s *Syncer) GarbageCollect(ctx context.Context) error { begin := time.Now() - garbageIds := s.duplicateBlocksFilter.DuplicateIDs() - for _, id := range garbageIds { + duplicateIDs := s.duplicateBlocksFilter.DuplicateIDs() + deletionMarkMap := s.ignoreDeletionMarkFilter.DeletionMarkBlocks() + + // GarbageIDs contains the duplicateIDs, since these blocks can be replaced with other blocks. + // We also remove ids present in deletionMarkMap since these blocks are already marked for deletion. + garbageIDs := []ulid.ULID{} + for _, id := range duplicateIDs { + if _, exists := deletionMarkMap[id]; !exists { + garbageIDs = append(garbageIDs, id) + } + } + + for _, id := range garbageIDs { if ctx.Err() != nil { return ctx.Err() } @@ -230,14 +247,15 @@ func (s *Syncer) GarbageCollect(ctx context.Context) error { // Spawn a new context so we always delete a block in full on shutdown. delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) - level.Info(s.logger).Log("msg", "deleting outdated block", "block", id) + level.Info(s.logger).Log("msg", "marking outdated block for deletion", "block", id) - err := block.Delete(delCtx, s.logger, s.bkt, id) + err := block.MarkForDeletion(delCtx, s.logger, s.bkt, id) cancel() if err != nil { s.metrics.garbageCollectionFailures.Inc() return retry(errors.Wrapf(err, "delete block %s from bucket", id)) } + s.metrics.blocksMarkedForDeletion.Inc() // Immediately update our in-memory state so no further call to SyncMetas is needed // after running garbage collection. @@ -266,6 +284,7 @@ type Group struct { compactionFailures prometheus.Counter verticalCompactions prometheus.Counter groupGarbageCollectedBlocks prometheus.Counter + blocksMarkedForDeletion prometheus.Counter } // newGroup returns a new compaction group. @@ -282,6 +301,7 @@ func newGroup( compactionFailures prometheus.Counter, verticalCompactions prometheus.Counter, groupGarbageCollectedBlocks prometheus.Counter, + blocksMarkedForDeletion prometheus.Counter, ) (*Group, error) { if logger == nil { logger = log.NewNopLogger() @@ -300,6 +320,7 @@ func newGroup( compactionFailures: compactionFailures, verticalCompactions: verticalCompactions, groupGarbageCollectedBlocks: groupGarbageCollectedBlocks, + blocksMarkedForDeletion: blocksMarkedForDeletion, } return g, nil } @@ -495,7 +516,7 @@ func (cg *Group) areBlocksOverlapping(include *metadata.Meta, excludeDirs ...str } // RepairIssue347 repairs the https://github.com/prometheus/tsdb/issues/347 issue when having issue347Error. -func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, issue347Err error) error { +func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, blocksMarkedForDeletion prometheus.Counter, issue347Err error) error { ie, ok := errors.Cause(issue347Err).(Issue347Error) if !ok { return errors.Errorf("Given error is not an issue347 error: %v", issue347Err) @@ -546,10 +567,10 @@ func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, defer cancel() // TODO(bplotka): Issue with this will introduce overlap that will halt compactor. Automate that (fix duplicate overlaps caused by this). - if err := block.Delete(delCtx, logger, bkt, ie.id); err != nil { + if err := block.MarkForDeletion(delCtx, logger, bkt, ie.id); err != nil { return errors.Wrapf(err, "deleting old block %s failed. You need to delete this block manually", ie.id) } - + blocksMarkedForDeletion.Inc() return nil } @@ -747,10 +768,11 @@ func (cg *Group) deleteBlock(b string) error { // Spawn a new context so we always delete a block in full on shutdown. delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) defer cancel() - level.Info(cg.logger).Log("msg", "deleting compacted block", "old_block", id) - if err := block.Delete(delCtx, cg.logger, cg.bkt, id); err != nil { + level.Info(cg.logger).Log("msg", "marking compacted block for deletion", "old_block", id) + if err := block.MarkForDeletion(delCtx, cg.logger, cg.bkt, id); err != nil { return errors.Wrapf(err, "delete block %s from bucket", id) } + cg.blocksMarkedForDeletion.Inc() return nil } @@ -824,7 +846,7 @@ func (c *BucketCompactor) Compact(ctx context.Context) error { } if IsIssue347Error(err) { - if err := RepairIssue347(workCtx, c.logger, c.bkt, err); err == nil { + if err := RepairIssue347(workCtx, c.logger, c.bkt, c.sy.metrics.blocksMarkedForDeletion, err); err == nil { mtx.Lock() finishedAllGroups = false mtx.Unlock() diff --git a/pkg/compact/compact_e2e_test.go b/pkg/compact/compact_e2e_test.go index 43ce2974341..5520a9a8487 100644 --- a/pkg/compact/compact_e2e_test.go +++ b/pkg/compact/compact_e2e_test.go @@ -19,6 +19,7 @@ import ( "github.com/go-kit/kit/log" "github.com/oklog/ulid" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/tsdb" @@ -94,7 +95,9 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { ) testutil.Ok(t, err) - sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, 1, false, false) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(nil, nil, 48*time.Hour) + sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, 1, false, false) testutil.Ok(t, err) // Do one initial synchronization with the bucket. @@ -103,7 +106,16 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { var rem []ulid.ULID err = bkt.Iter(ctx, "", func(n string) error { - rem = append(rem, ulid.MustParse(n[:len(n)-1])) + id := ulid.MustParse(n[:len(n)-1]) + deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) + + exists, err := bkt.Exists(ctx, deletionMarkFile) + if err != nil { + return err + } + if !exists { + rem = append(rem, id) + } return nil }) testutil.Ok(t, err) @@ -164,13 +176,16 @@ func TestGroup_Compact_e2e(t *testing.T) { reg := prometheus.NewRegistry() + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, 48*time.Hour) duplicateBlocksFilter := block.NewDeduplicateFilter() metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, + ignoreDeletionMarkFilter.Filter, duplicateBlocksFilter.Filter, ) testutil.Ok(t, err) - sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, 5, false, false) + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + sy, err := NewSyncer(nil, nil, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, 5, false, false) testutil.Ok(t, err) comp, err := tsdb.NewLeveledCompactor(ctx, reg, logger, []int64{1000, 3000}, nil) @@ -182,6 +197,7 @@ func TestGroup_Compact_e2e(t *testing.T) { // Compaction on empty should not fail. testutil.Ok(t, bComp.Compact(ctx)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectedBlocks)) + testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.blocksMarkedForDeletion)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectionFailures)) testutil.Equals(t, 0, MetricCount(sy.metrics.compactions)) testutil.Equals(t, 0, MetricCount(sy.metrics.compactionRunsStarted)) @@ -270,6 +286,7 @@ func TestGroup_Compact_e2e(t *testing.T) { testutil.Ok(t, bComp.Compact(ctx)) testutil.Equals(t, 5.0, promtest.ToFloat64(sy.metrics.garbageCollectedBlocks)) + testutil.Equals(t, 5.0, promtest.ToFloat64(sy.metrics.blocksMarkedForDeletion)) testutil.Equals(t, 0.0, promtest.ToFloat64(sy.metrics.garbageCollectionFailures)) testutil.Equals(t, 4, MetricCount(sy.metrics.compactions)) testutil.Equals(t, 1.0, promtest.ToFloat64(sy.metrics.compactions.WithLabelValues(GroupKey(metas[0].Thanos)))) diff --git a/pkg/compact/retention.go b/pkg/compact/retention.go index 47f61f0cfbf..eb07507d9d7 100644 --- a/pkg/compact/retention.go +++ b/pkg/compact/retention.go @@ -10,13 +10,14 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" ) // ApplyRetentionPolicyByResolution removes blocks depending on the specified retentionByResolution based on blocks MaxTime. // A value of 0 disables the retention for its resolution. -func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher block.MetadataFetcher, retentionByResolution map[ResolutionLevel]time.Duration) error { +func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher block.MetadataFetcher, retentionByResolution map[ResolutionLevel]time.Duration, blocksMarkedForDeletion prometheus.Counter) error { level.Info(logger).Log("msg", "start optional retention") metas, _, err := fetcher.Fetch(ctx) if err != nil { @@ -31,10 +32,11 @@ func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bk maxTime := time.Unix(m.MaxTime/1000, 0) if time.Now().After(maxTime.Add(retentionDuration)) { - level.Info(logger).Log("msg", "applying retention: deleting block", "id", id, "maxTime", maxTime.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { + level.Info(logger).Log("msg", "applying retention: marking block for deletion", "id", id, "maxTime", maxTime.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { return errors.Wrap(err, "delete block") } + blocksMarkedForDeletion.Inc() } } diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index 371d3c4152a..5c9813c1172 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -7,12 +7,16 @@ import ( "bytes" "context" "encoding/json" + "path/filepath" "strings" "testing" "time" "github.com/go-kit/kit/log" "github.com/oklog/ulid" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -244,17 +248,28 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil) testutil.Ok(t, err) - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, tt.retentionByResolution); (err != nil) != tt.wantErr { + blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, tt.retentionByResolution, blocksMarkedForDeletion); (err != nil) != tt.wantErr { t.Errorf("ApplyRetentionPolicyByResolution() error = %v, wantErr %v", err, tt.wantErr) } got := []string{} + gotMarkedBlocksCount := 0.0 testutil.Ok(t, bkt.Iter(context.TODO(), "", func(name string) error { - got = append(got, name) + exists, err := bkt.Exists(ctx, filepath.Join(name, metadata.DeletionMarkFilename)) + if err != nil { + return err + } + if !exists { + got = append(got, name) + return nil + } + gotMarkedBlocksCount += 1.0 return nil })) testutil.Equals(t, got, tt.want) + testutil.Equals(t, gotMarkedBlocksCount, promtest.ToFloat64(blocksMarkedForDeletion)) }) } } diff --git a/pkg/shipper/shipper.go b/pkg/shipper/shipper.go index 3055bec8177..a865ac5c71d 100644 --- a/pkg/shipper/shipper.go +++ b/pkg/shipper/shipper.go @@ -342,6 +342,7 @@ func (s *Shipper) Sync(ctx context.Context) (uploaded int, err error) { } // sync uploads the block if not exists in remote storage. +// TODO(khyatisoneji): Double check if block does not have deletion-mark.json for some reason, otherwise log it or return error. func (s *Shipper) upload(ctx context.Context, meta *metadata.Meta) error { level.Info(s.logger).Log("msg", "upload new block", "id", meta.ULID) diff --git a/pkg/verifier/duplicated_compaction.go b/pkg/verifier/duplicated_compaction.go index c7cd94b4a79..029aa93caff 100644 --- a/pkg/verifier/duplicated_compaction.go +++ b/pkg/verifier/duplicated_compaction.go @@ -27,7 +27,7 @@ const DuplicatedCompactionIssueID = "duplicated_compaction" // until sync-delay passes. // The expected print of this are same overlapped blocks with exactly the same sources, time ranges and stats. // If repair is enabled, all but one duplicates are safely deleted. -func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", DuplicatedCompactionIssueID) } @@ -84,7 +84,7 @@ func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objst } for i, id := range toKill { - if err := BackupAndDelete(ctx, logger, bkt, backupBkt, id); err != nil { + if err := BackupAndDelete(ctx, logger, bkt, backupBkt, id, deleteDelay, metrics.blocksMarkedForDeletion); err != nil { return err } level.Info(logger).Log("msg", "Removed duplicated block", "id", id, "to-be-removed", len(toKill)-(i+1), "removed", i+1, "issue", DuplicatedCompactionIssueID) diff --git a/pkg/verifier/index_issue.go b/pkg/verifier/index_issue.go index 828be214449..0982ec8ba8f 100644 --- a/pkg/verifier/index_issue.go +++ b/pkg/verifier/index_issue.go @@ -10,6 +10,7 @@ import ( "os" "path" "path/filepath" + "time" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -28,7 +29,7 @@ const IndexIssueID = "index_issue" // If the replacement was created successfully it is uploaded to the bucket and the input // block is deleted. // NOTE: This also verifies all indexes against chunks mismatches and duplicates. -func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", IndexIssueID) metas, _, err := fetcher.Fetch(ctx) @@ -115,7 +116,7 @@ func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, bac } level.Info(logger).Log("msg", "safe deleting broken block", "id", id, "issue", IndexIssueID) - if err := BackupAndDeleteDownloaded(ctx, logger, filepath.Join(tmpdir, id.String()), bkt, backupBkt, id); err != nil { + if err := BackupAndDeleteDownloaded(ctx, logger, filepath.Join(tmpdir, id.String()), bkt, backupBkt, id, deleteDelay, metrics.blocksMarkedForDeletion); err != nil { return errors.Wrapf(err, "safe deleting old block %s failed", id) } level.Info(logger).Log("msg", "all good, continuing", "id", id, "issue", IndexIssueID) diff --git a/pkg/verifier/overlapped_blocks.go b/pkg/verifier/overlapped_blocks.go index 61e291ac783..3fcce7a1518 100644 --- a/pkg/verifier/overlapped_blocks.go +++ b/pkg/verifier/overlapped_blocks.go @@ -6,6 +6,7 @@ package verifier import ( "context" "sort" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" @@ -21,7 +22,7 @@ const OverlappedBlocksIssueID = "overlapped_blocks" // OverlappedBlocksIssue checks bucket for blocks with overlapped time ranges. // No repair is available for this issue. -func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error { +func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", OverlappedBlocksIssueID) } diff --git a/pkg/verifier/safe_delete.go b/pkg/verifier/safe_delete.go index b6c882cbc98..b124317e290 100644 --- a/pkg/verifier/safe_delete.go +++ b/pkg/verifier/safe_delete.go @@ -9,11 +9,13 @@ import ( "io/ioutil" "os" "path/filepath" + "time" "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" ) @@ -32,10 +34,12 @@ func TSDBBlockExistsInBucket(ctx context.Context, bkt objstore.Bucket, id ulid.U } // BackupAndDelete moves a TSDB block to a backup bucket and on success removes -// it from the source bucket. It returns error if block dir already exists in +// it from the source bucket. If deleteDelay is zero, block is removed from source bucket. +// else the block is marked for deletion. +// It returns error if block dir already exists in // the backup bucket (blocks should be immutable) or if any of the operations // fail. -func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objstore.Bucket, id ulid.ULID) error { +func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objstore.Bucket, id ulid.ULID, deleteDelay time.Duration, blocksMarkedForDeletion prometheus.Counter) error { // Does this TSDB block exist in backupBkt already? found, err := TSDBBlockExistsInBucket(ctx, backupBkt, id) if err != nil { @@ -68,20 +72,29 @@ func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objs } // Block uploaded, so we are ok to remove from src bucket. - level.Info(logger).Log("msg", "Deleting block", "id", id.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { - return errors.Wrap(err, "delete from source") + if deleteDelay.Seconds() == 0 { + level.Info(logger).Log("msg", "Deleting block", "id", id.String()) + if err := block.Delete(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "delete from source") + } + } + + level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "marking delete from source") } + blocksMarkedForDeletion.Inc() return nil } // BackupAndDeleteDownloaded works much like BackupAndDelete in that it will -// move a TSDB block from a bucket to a backup bucket. The bdir parameter +// move a TSDB block from a bucket to a backup bucket. If deleteDelay param is zero, block is removed from source bucket. +// else the block is marked for deletion. The bdir parameter // points to the location on disk where the TSDB block was previously // downloaded allowing this function to avoid downloading the TSDB block from // the source bucket again. An error is returned if any operation fails. -func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir string, bkt, backupBkt objstore.Bucket, id ulid.ULID) error { +func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir string, bkt, backupBkt objstore.Bucket, id ulid.ULID, deleteDelay time.Duration, blocksMarkedForDeletion prometheus.Counter) error { // Does this TSDB block exist in backupBkt already? found, err := TSDBBlockExistsInBucket(ctx, backupBkt, id) if err != nil { @@ -97,11 +110,19 @@ func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir stri } // Block uploaded, so we are ok to remove from src bucket. - level.Info(logger).Log("msg", "Deleting block", "id", id.String()) - if err := block.Delete(ctx, logger, bkt, id); err != nil { - return errors.Wrap(err, "delete from source") + if deleteDelay.Seconds() == 0 { + level.Info(logger).Log("msg", "Deleting block", "id", id.String()) + if err := block.Delete(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "delete from source") + } + return nil } + level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) + if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + return errors.Wrap(err, "marking delete from source") + } + blocksMarkedForDeletion.Inc() return nil } diff --git a/pkg/verifier/verify.go b/pkg/verifier/verify.go index 06f54f97d36..77cd646b1bd 100644 --- a/pkg/verifier/verify.go +++ b/pkg/verifier/verify.go @@ -5,6 +5,7 @@ package verifier import ( "context" + "time" "github.com/thanos-io/thanos/pkg/block" @@ -12,43 +13,66 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/thanos-io/thanos/pkg/objstore" ) +type verifierMetrics struct { + blocksMarkedForDeletion prometheus.Counter +} + +func newVerifierMetrics(reg prometheus.Registerer) *verifierMetrics { + var m verifierMetrics + + m.blocksMarkedForDeletion = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_verify_blocks_marked_for_deletion_total", + Help: "Total number of blocks marked for deletion by verify.", + }) + + return &m +} + // Issue is an function that does verification and repair only if repair arg is true. // It should log affected blocks using warn level logs. It should be safe for issue to run on healthy bucket. -type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher) error +type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error // Verifier runs given issues to verify if bucket is healthy. type Verifier struct { - logger log.Logger - bkt objstore.Bucket - backupBkt objstore.Bucket - issues []Issue - repair bool - fetcher *block.MetaFetcher + logger log.Logger + bkt objstore.Bucket + backupBkt objstore.Bucket + issues []Issue + repair bool + fetcher *block.MetaFetcher + deleteDelay time.Duration + metrics *verifierMetrics } // New returns verifier that only logs affected blocks. -func New(logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher, issues []Issue) *Verifier { +func New(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher *block.MetaFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ - logger: logger, - bkt: bkt, - issues: issues, - fetcher: fetcher, - repair: false, + logger: logger, + bkt: bkt, + issues: issues, + fetcher: fetcher, + repair: false, + deleteDelay: deleteDelay, + metrics: newVerifierMetrics(reg), } } // NewWithRepair returns verifier that logs affected blocks and attempts to repair them. -func NewWithRepair(logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher *block.MetaFetcher, issues []Issue) *Verifier { +func NewWithRepair(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher *block.MetaFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ - logger: logger, - bkt: bkt, - backupBkt: backupBkt, - issues: issues, - fetcher: fetcher, - repair: true, + logger: logger, + bkt: bkt, + backupBkt: backupBkt, + issues: issues, + fetcher: fetcher, + repair: true, + deleteDelay: deleteDelay, + metrics: newVerifierMetrics(reg), } } @@ -67,7 +91,7 @@ func (v *Verifier) Verify(ctx context.Context, idMatcher func(ulid.ULID) bool) e // TODO(blotka): Wrap bucket with BucketWithMetrics and print metrics after each issue (e.g how many blocks where touched). // TODO(bplotka): Implement disk "bucket" to allow this verify to work on local disk space as well. for _, issueFn := range v.issues { - err := issueFn(ctx, v.logger, v.bkt, v.backupBkt, v.repair, idMatcher, v.fetcher) + err := issueFn(ctx, v.logger, v.bkt, v.backupBkt, v.repair, idMatcher, v.fetcher, v.deleteDelay, v.metrics) if err != nil { return errors.Wrap(err, "verify") } From 5cb3c8758f07fa65ad6a0e97ea69732b14136adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Tue, 17 Mar 2020 19:12:43 +0100 Subject: [PATCH 034/190] Use maxInt instead of math.MaxInt64 (#2268) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit math.MaxInt64 doesn't work on 32-bit systems (like linux/arm builds) Signed-off-by: Peter Štibraný --- pkg/store/cache/inmemory.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkg/store/cache/inmemory.go b/pkg/store/cache/inmemory.go index abc589f1db7..075982a4733 100644 --- a/pkg/store/cache/inmemory.go +++ b/pkg/store/cache/inmemory.go @@ -5,7 +5,6 @@ package storecache import ( "context" - "math" "reflect" "sync" "unsafe" @@ -28,6 +27,8 @@ var ( } ) +const maxInt = int(^uint(0) >> 1) + type InMemoryIndexCache struct { mtx sync.Mutex @@ -161,7 +162,7 @@ func NewInMemoryIndexCacheWithConfig(logger log.Logger, reg prometheus.Registere // Initialize LRU cache with a high size limit since we will manage evictions ourselves // based on stored size using `RemoveOldest` method. - l, err := lru.NewLRU(math.MaxInt64, c.onEvict) + l, err := lru.NewLRU(maxInt, c.onEvict) if err != nil { return nil, err } @@ -171,7 +172,7 @@ func NewInMemoryIndexCacheWithConfig(logger log.Logger, reg prometheus.Registere "msg", "created in-memory index cache", "maxItemSizeBytes", c.maxItemSizeBytes, "maxSizeBytes", c.maxSizeBytes, - "maxItems", "math.MaxInt64", + "maxItems", "maxInt", ) return c, nil } From 2d7b214376d5ff2c1b322cecc9b96ed1127dddd7 Mon Sep 17 00:00:00 2001 From: khyatisoneji <31898080+khyatisoneji@users.noreply.github.com> Date: Wed, 18 Mar 2020 15:49:37 +0530 Subject: [PATCH 035/190] Replace objstore.Exists function calls with bkt.Exists (#2284) Signed-off-by: khyatisoneji --- cmd/thanos/compact.go | 2 +- pkg/block/block.go | 2 +- pkg/objstore/objstore.go | 17 ----------------- 3 files changed, 2 insertions(+), 19 deletions(-) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 03f15243307..e926b6fa4e0 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -497,7 +497,7 @@ func generateIndexCacheFile( cachePath := filepath.Join(bdir, block.IndexCacheFilename) cache := path.Join(meta.ULID.String(), block.IndexCacheFilename) - ok, err := objstore.Exists(ctx, bkt, cache) + ok, err := bkt.Exists(ctx, cache) if ok { return nil } diff --git a/pkg/block/block.go b/pkg/block/block.go index 62433d0799d..40398cf3d9f 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -131,7 +131,7 @@ func cleanUp(logger log.Logger, bkt objstore.Bucket, id ulid.ULID, err error) er // MarkForDeletion creates a file which stores information about when the block was marked for deletion. func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid.ULID) error { deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) - deletionMarkExists, err := objstore.Exists(ctx, bkt, deletionMarkFile) + deletionMarkExists, err := bkt.Exists(ctx, deletionMarkFile) if err != nil { return errors.Wrapf(err, "check exists %s in bucket", deletionMarkFile) } diff --git a/pkg/objstore/objstore.go b/pkg/objstore/objstore.go index c5defc43c13..ff63a9018aa 100644 --- a/pkg/objstore/objstore.go +++ b/pkg/objstore/objstore.go @@ -172,23 +172,6 @@ func DownloadDir(ctx context.Context, logger log.Logger, bkt BucketReader, src, return nil } -// Exists returns true, if file exists, otherwise false and nil error if presence IsObjNotFoundErr, otherwise false with -// returning error. -func Exists(ctx context.Context, bkt Bucket, src string) (bool, error) { - rc, err := bkt.Get(ctx, src) - if rc != nil { - _ = rc.Close() - } - if err != nil { - if bkt.IsObjNotFoundErr(err) { - return false, nil - } - return false, errors.Wrap(err, "stat object") - } - - return true, nil -} - const ( iterOp = "iter" sizeOp = "objectsize" From d2bdc687be9dadfdb95784cdf8da5a0f9a0b3352 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 19 Mar 2020 13:58:30 +0000 Subject: [PATCH 036/190] Added Xiang to Triage Role. (#2289) Signed-off-by: Bartlomiej Plotka --- MAINTAINERS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index c36e87defae..054484fa1a6 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -32,6 +32,7 @@ Full list of triage persons is displayed below: | Ben Ye | `@yeya24` | [@yeya24](https://github.com/yeya24) | | Martin Chodur | `@FUSAKLA` | [@fusakla](https://github.com/fusakla) | | Michael Dai | `@jojohappy` | [@jojohappy](https://github.com/jojohappy) | +| Xiang Dai | `@daixiang0` | [@daixiang0](https://github.com/daixiang0) | Please reach any of the maintainer on slack or email if you want to help as well. From 06982e7c56159319f4012620c88b6e5c7e0587d4 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Thu, 19 Mar 2020 15:13:31 +0100 Subject: [PATCH 037/190] Enrich Memcached client logs (#2292) * Enrich Memcached client logs Signed-off-by: Marco Pracucci * Update pkg/cacheutil/memcached_client.go Signed-off-by: Marco Pracucci Co-Authored-By: Bartlomiej Plotka * Update pkg/cacheutil/memcached_client.go Signed-off-by: Marco Pracucci Co-Authored-By: Bartlomiej Plotka Co-authored-by: Bartlomiej Plotka --- pkg/cacheutil/memcached_client.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 67d93466f7c..d4b8e832f60 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -263,7 +263,7 @@ func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte }) if err != nil { c.failures.WithLabelValues(opSet).Inc() - level.Warn(c.logger).Log("msg", "failed to store item to memcached", "key", key, "err", err) + level.Warn(c.logger).Log("msg", "failed to store item to memcached", "key", key, "sizeBytes", len(value), "err", err) return } @@ -272,9 +272,13 @@ func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte } func (c *memcachedClient) GetMulti(ctx context.Context, keys []string) map[string][]byte { + if len(keys) == 0 { + return nil + } + batches, err := c.getMultiBatched(ctx, keys) if err != nil { - level.Warn(c.logger).Log("msg", "failed to fetch items from memcached", "err", err) + level.Warn(c.logger).Log("msg", "failed to fetch items from memcached", "numKeys", len(keys), "firstKey", keys[0], "err", err) // In case we have both results and an error, it means some batch requests // failed and other succeeded. In this case we prefer to log it and move on, From a87ed1b2f13af69f51904938e060489f64972702 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 19 Mar 2020 14:30:38 +0000 Subject: [PATCH 038/190] Added Kemal to Triage Role. (#2293) Signed-off-by: Bartlomiej Plotka --- MAINTAINERS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 054484fa1a6..f87c26a3379 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -32,6 +32,7 @@ Full list of triage persons is displayed below: | Ben Ye | `@yeya24` | [@yeya24](https://github.com/yeya24) | | Martin Chodur | `@FUSAKLA` | [@fusakla](https://github.com/fusakla) | | Michael Dai | `@jojohappy` | [@jojohappy](https://github.com/jojohappy) | +| Kemal Akkoyun | `@kakkoyun` | [@kakkoyun](https://github.com/kakkoyun) | | Xiang Dai | `@daixiang0` | [@daixiang0](https://github.com/daixiang0) | Please reach any of the maintainer on slack or email if you want to help as well. From b53e337249b5056536dffdaa4987c34d502dfa24 Mon Sep 17 00:00:00 2001 From: Jacob Colvin Date: Thu, 19 Mar 2020 16:25:07 -0400 Subject: [PATCH 039/190] bucket: handle instances where no blocks are loaded (#2271) * bucket: handle instances where no blocks are loaded Signed-off-by: Jacob Colvin * bucket: reject all falsy label values Signed-off-by: Jacob Colvin * bucket: update changelog Signed-off-by: Jacob Colvin --- CHANGELOG.md | 1 + cmd/thanos/bucket.go | 4 +- pkg/ui/bindata.go | 140 ++++++++++++++++++------------------- pkg/ui/static/js/bucket.js | 5 +- 4 files changed, 78 insertions(+), 72 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20b1ac5c5d7..2b5bd7bf009 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping - [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate +- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty ### Added diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 9ca8d3cb0d1..9eaf8d2ce5a 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -486,7 +486,7 @@ func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, durati }) } -func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) (blocks []metadata.Meta, err error) { +func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) ([]metadata.Meta, error) { level.Info(logger).Log("msg", "synchronizing block metadata") metas, _, err := fetcher.Fetch(ctx) @@ -494,6 +494,8 @@ func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetch return nil, err } + blocks := []metadata.Meta{} + for _, meta := range metas { blocks = append(blocks, *meta) } diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index 8401b766228..ae7caaa7008 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -160,7 +160,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -180,7 +180,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1582880322, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -280,7 +280,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -300,7 +300,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -320,7 +320,7 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -340,7 +340,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -360,7 +360,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -380,7 +380,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -400,7 +400,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -420,7 +420,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -440,7 +440,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -460,7 +460,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -480,12 +480,12 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1578439092, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xdb\xba\x15\x7f\xf7\xa7\x38\xd5\x8a\x6b\x09\xb1\x15\x17\x18\xf6\x90\xd8\x06\xee\xd2\x02\xbb\x43\x76\x3b\x34\x79\x5a\x50\x20\xb4\x78\x6c\x71\xa1\x48\x8d\xa4\xe2\xba\x81\xbf\xfb\x40\x4a\x94\x68\x59\xf6\x75\x7b\x89\xa2\x88\xc8\x73\x7e\xe7\xff\x1f\x6f\xa4\xdc\x70\x4c\xb3\x9c\x28\xa3\x53\x2e\x09\x8d\xc7\x59\xa5\x14\x0a\x33\x9e\xc0\xdb\x08\x00\x60\x5c\x92\xec\x85\x6c\x50\x8f\x6f\xe0\x69\x6c\x58\x81\x9c\x09\x1c\x7f\x1d\xed\x93\xdb\xd1\x21\x80\x46\xf3\x59\xdc\x4b\x42\xef\x08\xe7\x2b\x92\xbd\xc4\x54\x91\x6d\x72\x3b\x1a\xad\x2b\x91\x19\x26\x05\xd8\x8b\x38\x69\xa0\xd9\x1a\x62\x93\x13\x21\x75\xaa\x70\xad\x50\xe7\x48\x7f\x35\xb0\x58\x40\x34\x9b\xcd\x3e\x4c\xdd\xbf\xc7\xd9\xec\xc6\xfd\xfb\x4f\xe4\xf9\xec\x69\xf8\x50\x29\x58\x40\xf4\xb0\x13\x59\xae\xa4\x60\xdf\x99\xd8\xc0\x8a\xcb\xec\x45\xc3\x5a\xc9\x02\x14\x16\xd2\x20\x68\x23\x15\xd9\x60\x74\xeb\x00\xf6\xa3\xbe\x7c\x8b\xf3\x6e\x01\xa2\xe2\x3c\x94\xf2\x3e\x8e\xfe\x82\x4a\x45\x49\xaa\x73\xb9\x8d\x93\x74\xcd\x04\x8d\xc7\x29\xe1\xa8\xcc\x38\x49\x0d\x7e\x33\xf1\x3f\x1f\x3e\xff\x9e\x6a\xa3\x98\xd8\xb0\xf5\x2e\x40\x9c\x38\xbc\x09\xfc\x35\x49\x6e\x5b\x48\x8d\xe6\x91\x15\x28\x2b\x13\x7b\xaf\xc4\xa1\x48\x7b\xb8\xcc\x88\x7d\x48\x15\xba\xa0\x04\xec\xfb\x09\x7c\x98\xcd\x66\x33\xeb\x55\xf7\x0d\xc8\x35\x0e\xaa\x9c\x33\x8a\xb1\xa7\xb3\xe7\x95\x28\xc8\xa4\x30\x84\x09\xb4\x6e\xa3\x32\xab\x0a\x14\x26\xdd\xa0\xf9\xc4\xd1\xfe\xf9\xf7\xdd\x6f\x34\x1e\xdf\xc9\xa2\x24\x4e\x35\x3d\x0e\x64\x3b\x7e\x1b\x6a\x58\x80\xc0\x2d\x34\xd1\x7f\x65\xba\x22\x9c\x7d\xaf\x55\x7e\x6c\x32\x24\x6e\x25\xf5\x10\x28\x31\xe4\x91\xac\x38\x9e\x43\xf9\xe8\x89\xe2\x1e\xb7\x61\x86\xa3\x86\x05\xbc\xed\x03\xcb\x5a\xcc\x94\x50\x7a\x27\x79\x55\x88\xf8\xcd\xec\x4a\xbc\x81\x71\x1d\x99\xf1\x04\x18\xbd\x81\xf1\x17\x2c\x39\xcb\xc8\x78\x1f\xe0\x5e\xce\x7d\x4f\x56\xc8\x7f\x9c\x57\x49\x6e\xbf\x8d\x94\xdc\xb0\xf2\x62\x7e\x4a\x0c\x7a\xc9\x0f\x86\x28\xf3\x53\x9c\x9f\x04\x75\x7c\xc3\x8c\x5f\xe4\x56\xfb\x94\xad\xeb\xe6\x20\x13\x53\x2d\x95\x89\x63\x32\x81\x55\x02\x8b\x25\x90\xb4\xa1\xa5\x72\x2b\x34\x29\x4a\x8e\xa9\x42\x2d\x79\xe5\xca\x7b\x0a\xab\xb3\x04\xc9\x21\x78\x41\xca\xae\x08\x68\xbf\x0a\xec\xb9\xbe\x86\x47\x1b\x71\x60\x1a\x4c\x8e\xb0\x66\x4a\x1b\xc8\x9c\xb5\x20\xd7\xee\xce\xf7\xa4\x74\x80\x7b\x08\xf0\x57\xa8\x04\xfb\x5f\x85\xf0\x6f\x25\x0b\x34\x39\x56\x1a\xb8\x0d\xac\x6d\x2a\x06\x18\x45\x61\xd8\x9a\xa1\x06\x24\x59\x0e\x3a\x27\x8a\x5a\xf9\x95\x46\x3a\x84\x47\x74\xa3\x86\xd3\x73\x0d\xa5\x42\x8d\xc2\x4c\x40\x9a\x1c\xd5\x96\x69\xac\xe1\x35\x10\x85\x40\x99\x2e\x39\xd9\x0d\x43\xe1\x37\x83\x4a\x10\xce\x77\x16\x95\x00\xc7\x0d\x0a\x7a\x6c\x58\x2d\x6b\x01\x27\x3b\x88\x3f\xb6\x64\x5e\x70\x07\x0b\xdf\x30\x6b\x43\xdf\x2d\x20\x8a\xe0\x97\x5f\x80\xa6\xe1\xbd\x7e\x0a\xbf\xbe\x06\x39\x13\x1e\xdb\x36\x2d\xe6\xbb\x05\x54\x82\xe2\x9a\x09\x1c\x8c\x9d\x3f\x0a\x4d\xa5\x84\x55\xe3\x76\x90\xe6\xa8\x85\x9d\xb2\xb6\xae\xfd\xa7\xae\xd5\xf6\xb4\x4f\xbe\x0e\x0b\xf0\x4a\x37\x38\x17\xaa\x1d\x4a\x7e\x70\x22\xe3\xcf\xab\xff\x62\x66\xd2\x17\xdc\xe9\x1a\x4c\x27\x29\x47\xb1\x31\x39\x5c\xc1\x87\xe4\xb4\xf4\x16\xeb\xac\xf6\xde\xc4\xd3\x38\xfb\x3f\x72\xf2\x19\xfe\x63\xde\xfd\xc1\x74\xf0\xa7\xce\x90\x05\x3c\x73\x7c\x45\x7e\x03\xef\xdf\x68\x9a\xb5\x03\x21\x75\xb7\xfb\x09\x74\x45\x5d\x93\x9c\x2b\xfb\xfd\xf3\xb1\x4a\x8d\xc2\x4f\x4e\xe3\x49\x2d\x75\x02\x1b\x14\xa8\x88\xc1\xc7\xba\x55\xc6\x34\x99\xb8\x21\xf1\x91\x18\x8c\x69\x5a\x30\x61\xe7\x4b\xef\x92\x7c\x73\x97\xbd\xe8\xef\x93\xd0\x3a\x37\xb7\x52\xb7\x7e\xb4\xfd\x2f\x7c\xbf\xbe\x86\x87\x5c\x6e\xdb\x0a\x6c\x4a\xcf\xe6\x8d\x90\xc1\x6d\x5d\xc8\x5b\x54\x68\x27\x79\x57\x99\xc1\x2e\xd1\x38\xd0\x96\x58\x3f\xbf\xec\x70\xae\x81\xdb\x95\xe2\x50\xe9\xb5\x54\x10\x73\x34\xf0\xf4\x82\xbb\x09\xbc\x12\x5e\xe1\x57\xdb\xe8\x9a\xd4\x43\x61\x14\xc3\x36\xfb\x86\xf2\x57\xc9\xad\x8d\xde\xdc\xa8\x25\xcc\x4d\x0e\x3a\x93\x25\x2e\x22\x25\xb7\xd1\xf2\xfd\x9b\x43\xdc\xcf\xaf\x4d\x6e\x5f\xe9\xf2\xfd\xdb\x0b\xee\xec\x37\x5d\xc2\xfc\xda\xa8\xe5\x40\xa8\x3a\xad\xc1\xb8\xc1\x6d\x56\x92\xee\xa2\x24\x25\x65\x89\x82\xc6\x4a\x6e\x7b\x66\x74\xb9\xb6\x6f\x16\xae\x7d\xb0\x04\x76\x25\x50\x90\xd2\x9b\xe0\x86\xbb\xdd\xe5\x9a\x1d\xed\x52\x4f\x58\x88\x83\xc5\x10\xae\x16\xf0\x5c\x9b\x65\x33\xb3\x36\x18\x9e\xfd\xe6\x17\xe4\x9e\xb9\x3d\x50\xab\x9f\x7b\x6e\x1c\x1e\xa8\x57\x3f\x84\x9b\x53\xa6\x90\x18\x6c\x96\xa7\x38\xa2\xec\x35\x6a\x5c\xd1\x10\xa7\x19\x27\x5a\xff\x4e\x0a\xdb\x46\xa2\x8c\x28\x1a\xdd\x8e\x46\x1d\x64\xd3\x60\x4e\x01\xe6\x7f\x6b\xf1\x2c\xe5\x31\xda\x34\x47\x42\x51\x81\xdd\x44\xa7\x42\x6e\x15\x29\xa3\x90\x81\x09\x81\xea\x1f\x8f\xff\xba\x87\x45\xbd\x17\xa7\x15\x67\xf4\xb6\xd3\x80\x89\xb5\x3c\xa3\x40\xc5\xbd\x02\x96\xf0\x50\x3e\x67\xda\x4c\x37\x4a\x56\x25\x74\x7f\x4e\xd7\xbc\xd2\x79\x14\x48\x28\xd0\x90\xdf\xce\x4b\xe1\xcc\x4b\xf1\xc4\xa7\x24\x4d\x99\xc1\x22\xea\xd1\x86\x46\x46\xf3\x72\x39\x5f\x2d\xdd\xa6\xa6\xe7\xd7\xab\xe5\xfc\xba\x5c\x36\x0c\x56\x1b\x57\x9d\x7e\xff\x3c\xa5\x8f\x4b\x73\xaf\x52\xc7\x71\xa8\x54\x53\x0b\xf6\xff\xa9\x2e\xa0\x58\x4d\x67\x3f\x98\xbb\x75\x40\x0e\xa7\x40\x98\xcb\x81\xe4\xce\xc4\xab\xa6\xb8\x7b\xd5\x5b\x7f\xb6\xe5\x4d\x97\x61\x35\xef\x0f\xfd\x55\xd7\xed\x5d\xce\x38\x8d\x3b\x19\x49\x10\x33\xbb\x40\x5e\x1c\x33\x17\xe4\xba\x33\x37\x3b\xbd\xeb\xcc\xb5\x75\xbe\x65\x07\xa4\x75\xbf\x1e\x20\x6d\x1a\x79\xa3\x87\xd7\xe1\x92\x54\x68\x69\xc3\x54\xf0\x05\x7d\x6f\x7f\x8e\x44\x6e\x83\x76\xe2\x6e\x20\x9a\x78\x85\x53\x23\xef\x65\x46\x38\xda\x87\x66\xcc\x27\x70\x05\x11\x44\x70\x75\x44\x64\x3f\x3c\x51\x72\x52\xf2\x55\x5f\xf4\x27\x41\x03\xc1\xb5\x95\x7f\x20\xb8\x47\xf4\x93\x82\x3f\x56\x8a\xd4\x23\xda\x0a\x96\x2e\x8c\xb4\xb9\x8b\x1b\x19\x53\x1f\xa1\x34\xaf\x0a\x22\xd8\x77\x8c\x93\x30\x15\xb4\x21\x46\x5f\x9c\x0b\x2d\xf5\x25\x51\xeb\x88\xcf\x84\x0d\x6d\xa9\x38\x03\xea\x2c\x71\x4c\xa9\xa8\x8a\xfa\xa5\x75\x51\xcf\x3d\x43\xd8\x47\xfe\x79\x70\x9b\xca\x30\x7a\xfd\xf4\xa7\xe0\xef\xf2\x4a\xbc\x0c\xa2\xd7\x2f\x03\xe0\x00\x9d\xe7\x9b\xad\xeb\x62\xdf\x07\xf4\x97\x78\x3f\x24\x3f\xed\xff\x2f\xc1\x9e\xd7\xda\x71\xf6\x37\xde\x39\xf4\x23\x17\xdd\xd7\x4b\x66\x8b\xdc\xdf\x34\x7f\x0c\xed\x41\x56\x2a\xc3\x63\x45\xb5\xbb\xf7\x59\xcd\xfa\x3d\xd0\x37\xc6\x70\xd2\x85\xef\xbe\xd4\x4e\xbd\xb7\xc9\x70\x8a\x20\x50\xdf\x2b\xe1\xf7\x83\x90\xcc\x8d\xec\xde\xfe\x10\xbe\xb3\x80\xdf\xef\x30\x0d\x99\xac\x4c\xed\x94\xe1\x9d\xc6\xb9\xa7\x1b\x46\x7e\xc8\x34\x20\xd1\x7c\xb5\xb4\x5d\xc7\xfe\xaa\xbb\x82\xc8\x4e\x4d\xfb\xe9\x48\x9b\x0b\xb5\x8c\x46\xfb\xd1\xff\x03\x00\x00\xff\xff\x96\x06\x7b\xc3\x31\x14\x00\x00") +var _pkgUiStaticJsBucketJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x5f\x6f\xe2\x3a\x16\x7f\xef\xa7\x38\x93\x1d\x5d\x12\x15\x52\x46\x5a\xed\x43\x0b\x48\x77\x3b\x23\xed\x5d\x75\x67\x56\xd3\x3e\x6d\x35\x52\x4d\x7c\x20\x5e\x1c\x9b\xb5\x9d\x32\x4c\xc5\x77\x5f\xd9\x8e\x83\x09\x81\xcb\xdc\x1b\x21\x44\xec\x73\x7e\xe7\xff\x1f\x96\x52\x2e\x39\xe6\x45\x49\x94\xd1\x39\x97\x84\xa6\x83\xa2\x56\x0a\x85\x19\x0c\xe1\xed\x0a\x00\x60\xb0\x26\xc5\x8a\x2c\x51\x0f\x6e\xe1\x79\x60\x58\x85\x9c\x09\x1c\x7c\xbb\xda\x65\x77\x57\x87\x00\x1a\xcd\x17\xf1\x20\x09\xbd\x27\x9c\xcf\x49\xb1\x4a\xa9\x22\x9b\xec\xee\xea\x6a\x51\x8b\xc2\x30\x29\xc0\x1e\xa4\x59\x03\xcd\x16\x90\x9a\x92\x08\xa9\x73\x85\x0b\x85\xba\x44\xfa\xab\x81\xe9\x14\x92\xf1\x78\xfc\x61\xe4\x3e\x4f\xe3\xf1\xad\xfb\xfc\x27\x09\x7c\xf6\x69\xf8\x50\x29\x98\x42\xf2\xb8\x15\x45\xa9\xa4\x60\x3f\x98\x58\xc2\x9c\xcb\x62\xa5\x61\xa1\x64\x05\x0a\x2b\x69\x10\xb4\x91\x8a\x2c\x31\xb9\x73\x00\x3b\xf7\x8d\x5c\xa3\xd3\xe1\x5d\x04\xf6\xcb\x2f\x01\xda\xa3\xe4\x1c\xc5\xd2\x94\x56\xa9\xf1\x69\xf9\x9f\x65\x10\x4a\x14\x42\xe3\x42\xbe\x05\xeb\x52\xa4\xad\xd4\xae\xd5\x96\xfb\xdd\x14\x44\xcd\x79\x8c\xfd\x3e\x4d\xfe\x82\x4a\x25\x59\xae\x4b\xb9\x49\xb3\x7c\xc1\x04\x4d\x07\x39\xe1\xa8\xcc\x20\xcb\x0d\x7e\x37\xe9\x3f\x1f\xbf\x7c\xce\xb5\x51\x4c\x2c\xd9\x62\x1b\x21\x0e\x1d\xde\x10\xfe\x9a\x65\x77\x2d\xa4\x46\xf3\xc4\x2a\x94\xb5\x49\x43\x2c\xd2\x58\xa4\x7d\xb8\x2c\x88\xbd\xc8\x15\xba\x54\x88\xd8\x77\x43\xf8\x30\x1e\x8f\xc7\x36\x96\xee\xdd\x3b\xaf\x4f\xe5\x92\x51\x4c\x03\x9d\x7d\x5e\x89\x82\x42\x0a\x43\x98\x40\xeb\x2c\x2a\x8b\xba\x42\x61\xf2\x25\x9a\x4f\x1c\xed\xcf\xbf\x6f\x7f\xa3\xe9\xe0\x5e\x56\x6b\xe2\x54\xd3\x83\x48\xb6\xe3\xb7\x09\x06\x53\x10\xb8\x81\x26\xe7\x5e\x99\xae\x09\x67\x3f\xbc\xca\x4f\x4d\x5e\xa6\xad\xa4\x0e\x02\x25\x86\x3c\x91\x39\xc7\x73\x28\x1f\x03\x51\xda\xe1\x36\xcc\x70\xd4\x30\x85\xb7\x5d\x64\x59\x8b\x99\x13\x4a\xef\x25\xaf\x2b\x91\xbe\x99\xed\x1a\x6f\x61\xe0\x23\x33\x18\x02\xa3\xb7\x30\xf8\x8a\x6b\xce\x0a\x32\xd8\x45\xb8\x97\x73\x3f\x90\x39\xf2\x9f\xe7\x55\x92\xdb\x77\x23\x25\x37\x6c\x7d\x31\x3f\x25\x06\x83\xe4\x47\x43\x94\xf9\x43\x9c\x9f\x04\x75\x7c\xfd\x8c\x5f\xe5\x46\xa7\x07\x75\x76\x90\x89\xb9\x96\xca\xa4\x29\x19\xc2\x3c\x83\xe9\x0c\x48\xde\xd0\x52\xb9\x11\x9a\x54\x6b\x8e\xb9\x42\x2d\x79\xed\x9a\xca\x08\xe6\x67\x09\xb2\x43\xf0\x8a\xac\xf7\x45\x40\xbb\x55\x60\x9f\x9b\x1b\x78\xb2\x11\x07\xa6\xc1\x94\x08\x0b\xa6\xb4\x81\xc2\x59\x0b\x72\xe1\xce\x42\x27\xcc\x7b\xb8\xfb\x00\x7f\x85\x5a\xb0\xff\xd5\x08\xff\x56\xb2\x42\x53\x62\xad\x81\xdb\xc0\xda\x56\x62\x80\x51\x14\x86\x2d\x18\x6a\x40\x52\x94\xa0\x4b\xa2\xa8\x95\x5f\x6b\xa4\x7d\x78\x44\x37\x6a\x38\x3d\x17\xb0\x56\xa8\x51\x98\x21\x48\x53\xa2\xda\x30\x8d\x1e\xde\xb7\x24\xca\xf4\x9a\x93\x6d\x3f\x14\x7e\x37\xa8\x04\xe1\x7c\x6b\x51\x09\x70\x5c\xa2\xa0\xc7\x86\x79\x59\x53\x38\xd9\x41\xc2\x63\x4b\x66\x85\x5b\x98\x86\x36\xe9\x0d\x7d\x37\x85\x24\xb1\x1d\x96\xe6\xf1\xb9\x7e\x8e\xdf\xbe\x45\x39\x13\x3f\xb6\x6d\xae\x70\x7b\x4a\xa4\x7d\x14\x9a\x5a\x09\x2b\xf9\xae\x97\xe6\xa8\x6b\x9d\x32\xd0\x97\xfb\xf3\xbe\xbb\x76\x14\xce\xbe\xf5\x0b\x08\x7a\x36\x38\x53\xa8\x05\xc5\x05\x13\xd8\x9b\x65\x7d\x92\x1f\x9d\xc8\xf4\xcb\xfc\xbf\x58\x98\x7c\x85\x5b\xed\xc1\x74\x16\x06\xd1\x35\x7c\xc8\x4e\x4b\x6f\xb1\xce\x6a\x1f\x4c\x3c\x8d\xb3\xfb\x3d\x27\x9f\xe1\x3f\xe6\xdd\x1d\x0c\x84\xf0\xf8\xa4\x98\xc2\x0b\xc7\x57\xe4\xb7\xf0\xfe\x8d\xe6\x45\x3b\x03\x72\x77\xba\x1b\xc2\xbe\x8e\x3d\xc9\xb9\x4a\xdf\xbd\x1c\xab\xd4\x28\xfc\xec\x34\x1e\x7a\xa9\x43\x58\xa2\x40\x45\x0c\x3e\xf9\xee\x98\xd2\x6c\xe8\xe6\xc2\x47\x62\x30\xa5\x79\xc5\x84\x1d\x29\x9d\x43\xf2\xdd\x1d\x76\xa2\xbf\xcb\x62\xeb\xdc\xa8\xca\xdd\x9e\xd3\xb6\xbc\xf8\xfe\xe6\x06\x1e\x4b\xb9\x69\x8b\xae\xa9\x36\x9b\x37\x42\x46\xa7\xbe\x76\x37\xa8\xd0\x0e\xef\x7d\x31\x46\xeb\x43\xe3\x40\x5b\x55\xdd\xfc\xb2\xf3\xd8\x03\xb7\x5b\xc4\xa1\xd2\x0b\xa9\x20\xe5\x68\xe0\x79\x85\xdb\x21\xbc\x12\x5e\xe3\x37\xdb\xdb\x9a\xd4\x43\x61\x14\xc3\x36\xfb\xfa\xf2\x57\xc9\x8d\x8d\xde\xc4\xa8\x19\x4c\x4c\x09\xba\x90\x6b\x9c\x26\x4a\x6e\x92\xd9\xfb\x37\x87\xb8\x9b\xdc\x98\xd2\xde\xd2\xd9\xfb\xb7\x15\x6e\xed\x3b\x9d\xc1\xe4\xc6\xa8\x59\x4f\xa8\xf6\x5a\x83\x71\xb3\xda\xcc\x25\xdd\x26\x59\x4e\xd6\x6b\x14\x34\x55\x72\xd3\x31\x63\x9f\x6b\xbb\x66\xc7\xda\x45\xdb\xe6\xbe\x04\x2a\xb2\x0e\x26\xb8\x79\x6e\x97\xb6\x66\x2d\xbb\xd4\x13\x16\xe2\x60\x03\x84\xeb\x29\xbc\x78\xb3\x6c\x66\x7a\x83\xe1\x25\x5e\x31\x43\xb1\xdc\x1d\xa8\xd5\xcd\x3d\x37\x01\x0f\xd4\xf3\x17\xf1\xb2\x54\x28\x24\x06\x9b\x7d\x29\x4d\x28\x7b\x4d\x1a\x57\x34\xc4\x79\xc1\x89\xd6\x9f\x49\x65\xdb\x48\x52\x10\x65\xd7\xce\xab\x3d\x64\xd3\x60\x4e\x01\x96\x7f\x6b\xf1\x2c\xe5\x31\xda\xa8\x44\x42\x51\x81\x5d\x3e\x47\x42\x6e\x14\x59\x27\x31\x03\x13\x02\xd5\x3f\x9e\xfe\xf5\x00\x53\xbf\x0b\xe7\x35\x67\xf4\x6e\xaf\x01\x13\x0b\x79\x46\x81\x9a\x07\x05\x2c\xe1\xa1\x7c\xce\xb4\x19\x2d\x95\xac\xd7\xb0\xff\x39\x5a\xf0\x5a\x97\x49\x24\xa1\x42\x43\x7e\x3b\x2f\x85\xb3\x20\x25\x10\x9f\x92\x34\x62\x06\xab\xa4\x43\x1b\x1b\x99\x4c\xd6\xb3\xc9\x7c\xe6\x96\x33\x3d\xb9\x99\xcf\x26\x37\xeb\x59\xc3\x60\xb5\x71\xd5\x19\x56\xce\x53\xfa\xb8\x34\x0f\x2a\xed\x39\x0e\x95\x6a\x6a\xc1\x7e\x8f\x74\x05\xd5\x7c\x34\xfe\xc9\xdc\xf5\x01\x39\x9c\x02\x71\x2e\x47\x92\xf7\x26\x5e\x37\xc5\xdd\xa9\x5e\xff\xda\x96\x37\x9d\xc5\xd5\xbc\x3b\xf4\x97\xaf\xdb\xfb\x92\x71\x9a\xee\x65\x64\x51\xcc\xec\xce\x78\x71\xcc\x5c\x90\x7d\x67\x6e\xd6\x78\xd7\x99\xbd\x75\xa1\x65\x47\xa4\xbe\x5f\xf7\x90\x36\x8d\xbc\xd1\x23\xe8\x70\x49\x2a\xb4\xb4\x71\x2a\x84\x82\x7e\xb0\xff\x40\x12\xb7\x34\x3b\x71\xb7\x90\x0c\x83\xc2\xb9\x91\x0f\xb2\x20\x1c\xed\x45\x33\xe6\x33\xb8\x86\x04\x12\xb8\x3e\x22\xb2\x2f\x81\x28\x3b\x29\xf9\xba\x2b\xfa\x93\xa0\x91\x60\x6f\xe5\xef\x08\xee\x10\xfd\x41\xc1\x1f\x6b\x45\xfc\x88\xb6\x82\xa5\x0b\x23\x6d\xce\xd2\x46\xc6\x28\x44\x28\x2f\xeb\x8a\x08\xf6\x03\xd3\x2c\x4e\x05\x6d\x88\xd1\x17\xe7\x42\x4b\x7d\x49\xd4\xf6\xc4\x67\xc2\x86\xb6\x54\x9c\x01\x3e\x4b\x1c\x53\x2e\xea\xca\xdf\xb4\x2e\xea\xb8\xa7\x0f\xfb\xc8\x3f\x8f\x6e\x53\xe9\x47\xf7\x57\x7f\x0a\xfe\xbe\xac\xc5\xaa\x17\xdd\xdf\xf4\x80\x03\xec\x3d\xdf\x6c\x5d\x17\xfb\x3e\xa2\xbf\xc4\xfb\x31\xf9\x69\xff\x7f\x8d\xf6\xbc\xd6\x8e\xb3\x7f\xeb\xce\xa1\x1f\xb9\xe8\xc1\x2f\x99\x2d\x72\x77\xd3\xfc\x39\xb4\x47\x59\xab\x02\x8f\x15\xd5\xee\x3c\x64\x35\xeb\xf6\xc0\xd0\x18\xe3\x49\x17\xdf\x87\x52\x3b\x75\xdf\x26\xc3\x29\x82\x48\xfd\xa0\x44\xd8\x0f\x62\x32\x37\xb2\x3b\xfb\x43\x7c\xcf\x22\xfe\xb0\xc3\x34\x64\xb2\x36\xde\x29\xfd\x3b\x8d\x73\xcf\x7e\x18\x85\x21\xd3\x80\x24\x93\xf9\xcc\x76\x1d\xfb\xe7\xf0\x1a\x12\x3b\x35\xed\xab\x23\x6d\x0e\xd4\x2c\xb9\xda\x5d\xfd\x3f\x00\x00\xff\xff\xe7\x65\x3f\x08\x9a\x14\x00\x00") func pkgUiStaticJsBucketJsBytes() ([]byte, error) { return bindataRead( @@ -500,7 +500,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5169, mode: os.FileMode(420), modTime: time.Unix(1583883963, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1584478576, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -520,7 +520,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1580893858, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -540,7 +540,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -560,7 +560,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -580,7 +580,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -600,7 +600,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -620,7 +620,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -640,7 +640,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -660,7 +660,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -680,7 +680,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -700,7 +700,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -720,7 +720,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1575530671, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -740,7 +740,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -760,7 +760,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -780,7 +780,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -800,7 +800,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -820,7 +820,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -840,7 +840,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -860,7 +860,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -880,7 +880,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -900,7 +900,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -920,7 +920,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -940,7 +940,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -960,7 +960,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -980,7 +980,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1000,7 +1000,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1020,7 +1020,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1040,7 +1040,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1060,7 +1060,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1080,7 +1080,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1100,7 +1100,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1120,7 +1120,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1140,7 +1140,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1160,7 +1160,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1180,7 +1180,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1200,7 +1200,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1220,7 +1220,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1240,7 +1240,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1260,7 +1260,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1280,7 +1280,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1300,7 +1300,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1320,7 +1320,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1340,7 +1340,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1360,7 +1360,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1380,7 +1380,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1400,7 +1400,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1420,7 +1420,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1564126560, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1440,7 +1440,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1460,7 +1460,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1480,7 +1480,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1500,7 +1500,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1520,7 +1520,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1542613404, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/ui/static/js/bucket.js b/pkg/ui/static/js/bucket.js index 8ad6a40e511..15fd9bc217f 100644 --- a/pkg/ui/static/js/bucket.js +++ b/pkg/ui/static/js/bucket.js @@ -7,6 +7,9 @@ function draw() { if (thanos.refreshedAt == "0001-01-01T00:00:00Z") { thanos.err = "Synchronizing blocks from remote storage"; } + else if (!thanos.err && thanos.blocks.length == 0) { + thanos.err = "No blocks are currently loaded"; + } if (thanos.err != null) { $("#err").show().find('.alert').text(JSON.stringify(thanos.err, null, 4)); @@ -39,7 +42,7 @@ function draw() { title = function() { var key = thanos.label != "" && d.thanos.labels[thanos.label]; - if (key != undefined) { + if (key) { return key; } else { title = titles[stringify(d.thanos.labels)]; From a7aa2986678309790d3fd2cc6810e42cd81603ab Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Fri, 20 Mar 2020 10:51:53 +0100 Subject: [PATCH 040/190] docs/sharding.md: Replace example floating link with permalink (#2296) Signed-off-by: Frederic Branczyk --- docs/sharding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sharding.md b/docs/sharding.md index 79da90454fd..34eca303186 100644 --- a/docs/sharding.md +++ b/docs/sharding.md @@ -30,7 +30,7 @@ Now, thanos only support following relabel actions: * drop * hashmod * `external labels` for all components - * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/master/environments/openshift/manifests/observatorium-template.yaml#L1511) + * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/bf1304b0d7bce2ae3fefa80412bb358f9aa176fb/environments/openshift/manifests/observatorium-template.yaml#L1514-L1521) The relabel config defines filtering process done on **every** synchronization with object storage. From 594fed94846ed9caedffd66dacdef8446c8b7582 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Sun, 22 Mar 2020 09:40:31 +0000 Subject: [PATCH 041/190] Added latest release badge. (#2300) I think there are NOT enough badges, so added one more! Signed-off-by: Bartlomiej Plotka --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2f4240bcca8..cc5f75d2c83 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@

Thanos Logo

+[![Latest Release](https://img.shields.io/github/release/thanos-io/thanos.svg?style=flat-square)](https://github.com/thanos-io/thanos/releases/latest) [![CI](https://circleci.com/gh/thanos-io/thanos.svg?style=svg)](https://circleci.com/gh/thanos-io/thanos) [![Cross Build](https://github.com/thanos-io/thanos/workflows/cross-build/badge.svg)](https://github.com/thanos-io/thanos/actions?query=workflow%3Across-build) [![End-to-End Tests](https://github.com/thanos-io/thanos/workflows/e2e/badge.svg)](https://github.com/thanos-io/thanos/actions?query=workflow%3Ae2e) From 29251fe3febc33ef4fb8e6969d421529a5bd6944 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Mon, 23 Mar 2020 17:12:10 +0100 Subject: [PATCH 042/190] store: Postings fetching optimizations (#2294) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Avoid fetching duplicate keys. Simplified groups with add/remove keys. Signed-off-by: Peter Štibraný * Added shortcuts Signed-off-by: Peter Štibraný * Optimize away fetching of ALL postings, if possible. Only remove postings for each key once. Signed-off-by: Peter Štibraný * Don't do individual index.Without, but merge them first. Signed-off-by: Peter Štibraný * Don't use map for fetching postings, but return slice instead. This is in line with original code. Using a map was nicer, but more expensive in terms of allocations and hashing labels. Signed-off-by: Peter Štibraný * Renamed 'all' to 'allRequested'. Signed-off-by: Peter Štibraný * Typo Signed-off-by: Peter Štibraný * Make linter happy. Signed-off-by: Peter Štibraný * Added comment to fetchPostings. Signed-off-by: Peter Štibraný * Group vars Signed-off-by: Peter Štibraný * Comments Signed-off-by: Peter Štibraný * Use allPostings and emptyPostings variables for special cases. Signed-off-by: Peter Štibraný * Unify terminology to "special All postings" Signed-off-by: Peter Štibraný * Address feedback. Signed-off-by: Peter Štibraný * Added CHANGELOG.md entry. Signed-off-by: Peter Štibraný * Fix check for empty group. Signed-off-by: Peter Štibraný * Comment Signed-off-by: Peter Štibraný * Special All postings is now added as a new group No special handling required anymore. Signed-off-by: Peter Štibraný * Updated comment Signed-off-by: Peter Štibraný --- CHANGELOG.md | 1 + pkg/store/bucket.go | 217 ++++++++++++++++++++++++++------------------ 2 files changed, 129 insertions(+), 89 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b5bd7bf009..c62c7f4a448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. - [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. +- [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index 15f818d9561..b9689f4f6b5 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -1310,7 +1310,12 @@ func newBucketIndexReader(ctx context.Context, block *bucketBlock) *bucketIndexR // chunk where the series contains the matching label-value pair for a given block of data. Postings can be fetched by // single label name=value. func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, error) { - var postingGroups []*postingGroup + var ( + postingGroups []*postingGroup + allRequested = false + hasAdds = false + keys []labels.Label + ) // NOTE: Derived from tsdb.PostingsForMatchers. for _, m := range ms { @@ -1320,23 +1325,71 @@ func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, er return nil, errors.Wrap(err, "toPostingGroup") } + // If this groups adds nothing, it's an empty group. We can shortcut this, since intersection with empty + // postings would return no postings anyway. + // E.g. label="non-existing-value" returns empty group. + if !pg.addAll && len(pg.addKeys) == 0 { + return nil, nil + } + postingGroups = append(postingGroups, pg) + allRequested = allRequested || pg.addAll + hasAdds = hasAdds || len(pg.addKeys) > 0 + + // Postings returned by fetchPostings will be in the same order as keys + // so it's important that we iterate them in the same order later. + // We don't have any other way of pairing keys and fetched postings. + keys = append(keys, pg.addKeys...) + keys = append(keys, pg.removeKeys...) } if len(postingGroups) == 0 { return nil, nil } - if err := r.fetchPostings(postingGroups); err != nil { + // We only need special All postings if there are no other adds. If there are, we can skip fetching + // special All postings completely. + if allRequested && !hasAdds { + // add group with label to fetch "special All postings". + name, value := index.AllPostingsKey() + allPostingsLabel := labels.Label{Name: name, Value: value} + + postingGroups = append(postingGroups, newPostingGroup(true, []labels.Label{allPostingsLabel}, nil)) + keys = append(keys, allPostingsLabel) + } + + fetchedPostings, err := r.fetchPostings(keys) + if err != nil { return nil, errors.Wrap(err, "get postings") } - var postings []index.Postings + // Get "add" and "remove" postings from groups. We iterate over postingGroups and their keys + // again, and this is exactly the same order as before (when building the groups), so we can simply + // use one incrementing index to fetch postings from returned slice. + postingIndex := 0 + + var groupAdds, groupRemovals []index.Postings for _, g := range postingGroups { - postings = append(postings, g.Postings()) + // We cannot add empty set to groupAdds, since they are intersected. + if len(g.addKeys) > 0 { + toMerge := make([]index.Postings, 0, len(g.addKeys)) + for _, l := range g.addKeys { + toMerge = append(toMerge, checkNilPosting(l, fetchedPostings[postingIndex])) + postingIndex++ + } + + groupAdds = append(groupAdds, index.Merge(toMerge...)) + } + + for _, l := range g.removeKeys { + groupRemovals = append(groupRemovals, checkNilPosting(l, fetchedPostings[postingIndex])) + postingIndex++ + } } - ps, err := index.ExpandPostings(index.Intersect(postings...)) + result := index.Without(index.Intersect(groupAdds...), index.Merge(groupRemovals...)) + + ps, err := index.ExpandPostings(result) if err != nil { return nil, errors.Wrap(err, "expand") } @@ -1352,82 +1405,71 @@ func (r *bucketIndexReader) ExpandedPostings(ms []*labels.Matcher) ([]uint64, er return ps, nil } +// postingGroup keeps posting keys for single matcher. Logical result of the group is: +// If addAll is set: special All postings minus postings for removeKeys labels. No need to merge postings for addKeys in this case. +// If addAll is not set: Merge of postings for "addKeys" labels minus postings for removeKeys labels +// This computation happens in ExpandedPostings. type postingGroup struct { - keys labels.Labels - postings []index.Postings - - aggregate func(postings []index.Postings) index.Postings + addAll bool + addKeys []labels.Label + removeKeys []labels.Label } -func newPostingGroup(keys labels.Labels, aggr func(postings []index.Postings) index.Postings) *postingGroup { +func newPostingGroup(addAll bool, addKeys, removeKeys []labels.Label) *postingGroup { return &postingGroup{ - keys: keys, - postings: make([]index.Postings, len(keys)), - aggregate: aggr, + addAll: addAll, + addKeys: addKeys, + removeKeys: removeKeys, } } -func (p *postingGroup) Fill(i int, posting index.Postings) { - p.postings[i] = posting -} - -func (p *postingGroup) Postings() index.Postings { - if len(p.keys) == 0 { - return index.EmptyPostings() +func checkNilPosting(l labels.Label, p index.Postings) index.Postings { + if p == nil { + // This should not happen. Debug for https://github.com/thanos-io/thanos/issues/874. + return index.ErrPostings(errors.Errorf("postings is nil for %s. It was never fetched.", l)) } - - for i, posting := range p.postings { - if posting == nil { - // This should not happen. Debug for https://github.com/thanos-io/thanos/issues/874. - return index.ErrPostings(errors.Errorf("at least one of %d postings is nil for %s. It was never fetched.", i, p.keys[i])) - } - } - - return p.aggregate(p.postings) -} - -func merge(p []index.Postings) index.Postings { - return index.Merge(p...) + return p } -func allWithout(p []index.Postings) index.Postings { - return index.Without(p[0], index.Merge(p[1:]...)) -} +var ( + allPostingsGroup = newPostingGroup(true, nil, nil) + emptyPostingsGroup = newPostingGroup(false, nil, nil) +) // NOTE: Derived from tsdb.postingsForMatcher. index.Merge is equivalent to map duplication. func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Matcher) (*postingGroup, error) { - var matchingLabels labels.Labels + // This matches any label value, and also series that don't have this label at all. + if m.Type == labels.MatchRegexp && (m.Value == ".*" || m.Value == "^.*$") { + return allPostingsGroup, nil + } + + // NOT matching any value = match nothing. We can shortcut this easily. + if m.Type == labels.MatchNotRegexp && (m.Value == ".*" || m.Value == "^.*$") { + return emptyPostingsGroup, nil + } // If the matcher selects an empty value, it selects all the series which don't // have the label name set too. See: https://github.com/prometheus/prometheus/issues/3575 // and https://github.com/prometheus/prometheus/pull/3578#issuecomment-351653555. if m.Matches("") { - allName, allValue := index.AllPostingsKey() - - matchingLabels = append(matchingLabels, labels.Label{Name: allName, Value: allValue}) vals, err := lvalsFn(m.Name) if err != nil { return nil, err } + + var toRemove []labels.Label for _, val := range vals { if !m.Matches(val) { - matchingLabels = append(matchingLabels, labels.Label{Name: m.Name, Value: val}) + toRemove = append(toRemove, labels.Label{Name: m.Name, Value: val}) } } - if len(matchingLabels) == 1 { - // This is known hack to return all series. - // Ask for x != . Allow for that as Prometheus does, - // even though it is expensive. - return newPostingGroup(matchingLabels, merge), nil - } - - return newPostingGroup(matchingLabels, allWithout), nil + return newPostingGroup(true, nil, toRemove), nil } // Fast-path for equal matching. if m.Type == labels.MatchEqual { - return newPostingGroup(labels.Labels{{Name: m.Name, Value: m.Value}}, merge), nil + return newPostingGroup(false, []labels.Label{{Name: m.Name, Value: m.Value}}, nil), nil } vals, err := lvalsFn(m.Name) @@ -1435,67 +1477,64 @@ func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Match return nil, err } + var toAdd []labels.Label for _, val := range vals { if m.Matches(val) { - matchingLabels = append(matchingLabels, labels.Label{Name: m.Name, Value: val}) + toAdd = append(toAdd, labels.Label{Name: m.Name, Value: val}) } } - return newPostingGroup(matchingLabels, merge), nil + return newPostingGroup(false, toAdd, nil), nil } type postingPtr struct { - groupID int - keyID int - ptr index.Range + keyID int + ptr index.Range } // fetchPostings fill postings requested by posting groups. -func (r *bucketIndexReader) fetchPostings(groups []*postingGroup) error { +// It returns one postings for each key, in the same order. +// If postings for given key is not fetched, entry at given index will be nil. +func (r *bucketIndexReader) fetchPostings(keys []labels.Label) ([]index.Postings, error) { var ptrs []postingPtr - // Fetch postings from the cache with a single call. - keys := make([]labels.Label, 0) - for _, g := range groups { - keys = append(keys, g.keys...) - } + output := make([]index.Postings, len(keys)) + // Fetch postings from the cache with a single call. fromCache, _ := r.block.indexCache.FetchMultiPostings(r.ctx, r.block.meta.ULID, keys) // Iterate over all groups and fetch posting from cache. // If we have a miss, mark key to be fetched in `ptrs` slice. // Overlaps are well handled by partitioner, so we don't need to deduplicate keys. - for i, g := range groups { - for j, key := range g.keys { - // Get postings for the given key from cache first. - if b, ok := fromCache[key]; ok { - r.stats.postingsTouched++ - r.stats.postingsTouchedSizeSum += len(b) - - _, l, err := r.dec.Postings(b) - if err != nil { - return errors.Wrap(err, "decode postings") - } + for ix, key := range keys { + // Get postings for the given key from cache first. + if b, ok := fromCache[key]; ok { + r.stats.postingsTouched++ + r.stats.postingsTouchedSizeSum += len(b) - g.Fill(j, l) - continue + _, l, err := r.dec.Postings(b) + if err != nil { + return nil, errors.Wrap(err, "decode postings") } - // Cache miss; save pointer for actual posting in index stored in object store. - ptr, err := r.block.indexHeaderReader.PostingsOffset(key.Name, key.Value) - if err == indexheader.NotFoundRangeErr { - // This block does not have any posting for given key. - g.Fill(j, index.EmptyPostings()) - continue - } + output[ix] = l + continue + } - if err != nil { - return errors.Wrap(err, "index header PostingsOffset") - } + // Cache miss; save pointer for actual posting in index stored in object store. + ptr, err := r.block.indexHeaderReader.PostingsOffset(key.Name, key.Value) + if err == indexheader.NotFoundRangeErr { + // This block does not have any posting for given key. + output[ix] = index.EmptyPostings() + continue + } - r.stats.postingsToFetch++ - ptrs = append(ptrs, postingPtr{ptr: ptr, groupID: i, keyID: j}) + if err != nil { + return nil, errors.Wrap(err, "index header PostingsOffset") } + + r.stats.postingsToFetch++ + ptrs = append(ptrs, postingPtr{ptr: ptr, keyID: ix}) } sort.Slice(ptrs, func(i, j int) bool { @@ -1543,8 +1582,8 @@ func (r *bucketIndexReader) fetchPostings(groups []*postingGroup) error { r.mtx.Lock() // Return postings and fill LRU cache. // Truncate first 4 bytes which are length of posting. - groups[p.groupID].Fill(p.keyID, newBigEndianPostings(pBytes[4:])) - r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, groups[p.groupID].keys[p.keyID], pBytes) + output[p.keyID] = newBigEndianPostings(pBytes[4:]) + r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, keys[p.keyID], pBytes) // If we just fetched it we still have to update the stats for touched postings. r.stats.postingsTouched++ @@ -1555,7 +1594,7 @@ func (r *bucketIndexReader) fetchPostings(groups []*postingGroup) error { }) } - return g.Wait() + return output, g.Wait() } func resizePostings(b []byte) ([]byte, error) { From d89a497d03a3d41781c26cf6f248f214f08bace7 Mon Sep 17 00:00:00 2001 From: Henrik Schmidt Date: Mon, 23 Mar 2020 17:25:27 +0100 Subject: [PATCH 043/190] cmd/thanos/receive: Remove unused TLSClientConfig from Options (#2299) Signed-off-by: mrIncompetent --- cmd/thanos/receive.go | 5 ----- pkg/receive/handler.go | 1 - 2 files changed, 6 deletions(-) diff --git a/cmd/thanos/receive.go b/cmd/thanos/receive.go index 25b11ada648..59db2ed840c 100644 --- a/cmd/thanos/receive.go +++ b/cmd/thanos/receive.go @@ -190,10 +190,6 @@ func runReceive( if err != nil { return err } - rwTLSClientConfig, err := tls.NewClientConfig(logger, rwClientCert, rwClientKey, rwClientServerCA, rwClientServerName) - if err != nil { - return err - } dialOpts, err := extgrpc.StoreClientGRPCOpts(logger, reg, tracer, rwServerCert != "", rwClientCert, rwClientKey, rwClientServerCA, rwClientServerName) if err != nil { return err @@ -208,7 +204,6 @@ func runReceive( ReplicationFactor: replicationFactor, Tracer: tracer, TLSConfig: rwTLSConfig, - TLSClientConfig: rwTLSClientConfig, DialOpts: dialOpts, }) diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index a1545232d36..733086e17df 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -60,7 +60,6 @@ type Options struct { ReplicationFactor uint64 Tracer opentracing.Tracer TLSConfig *tls.Config - TLSClientConfig *tls.Config DialOpts []grpc.DialOption } From 94b58829ade0ce4582cc4a3125c32fc23ddac40c Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Tue, 24 Mar 2020 11:52:12 +0100 Subject: [PATCH 044/190] compactor: Add ReplicaLabelRemover as MetaFetcher filter to enable offline vertical compaction/deduplication for replicated data (#2250) * Create ReplicaLabelsFilter to allow for offline deduplication Signed-off-by: Matthias Loibl * Start adding a e2e test for offline-deduplication with Thanos compact Signed-off-by: Matthias Loibl * Address issues that have discovered after review Signed-off-by: Kemal Akkoyun * Fix e2e test service issue Signed-off-by: Kemal Akkoyun * Improve fetcher unit tests Signed-off-by: Kemal Akkoyun * Add simple compactor e2e tests with replica remover Signed-off-by: Kemal Akkoyun * Remove unnecessary interface Signed-off-by: Kemal Akkoyun * Address review issues Signed-off-by: Kemal Akkoyun * Add more test cases Signed-off-by: Kemal Akkoyun * Improve and stabilize e2e tests Signed-off-by: Kemal Akkoyun * Address review issues Signed-off-by: Kemal Akkoyun * Increase ruler sd refresh interval Signed-off-by: Kemal Akkoyun * Address review issues Signed-off-by: Kemal Akkoyun * Separate filters and modifiers Signed-off-by: Kemal Akkoyun Co-authored-by: Matthias Loibl --- .github/workflows/e2e.yaml | 2 +- CHANGELOG.md | 6 +- Makefile | 17 +- cmd/thanos/bucket.go | 8 +- cmd/thanos/compact.go | 29 +- cmd/thanos/downsample.go | 2 +- cmd/thanos/main_test.go | 4 +- cmd/thanos/store.go | 14 +- pkg/block/fetcher.go | 118 +++++-- pkg/block/fetcher_test.go | 123 +++++-- pkg/compact/clean_test.go | 2 +- pkg/compact/compact_e2e_test.go | 14 +- pkg/compact/retention_test.go | 2 +- pkg/replicate/replicator.go | 2 +- pkg/replicate/scheme_test.go | 2 +- pkg/store/bucket_e2e_test.go | 8 +- pkg/store/bucket_test.go | 8 +- test/e2e/compact_test.go | 559 ++++++++++++++++++++++++++++++++ test/e2e/e2ethanos/services.go | 106 +++++- test/e2e/rule_test.go | 6 +- 20 files changed, 911 insertions(+), 121 deletions(-) create mode 100644 test/e2e/compact_test.go diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 1cc20d0dc21..d3af4113282 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -25,4 +25,4 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - name: Run e2e docker-based tests. - run: make test-e2e + run: make test-e2e-ci diff --git a/CHANGELOG.md b/CHANGELOG.md index c62c7f4a448..1185e4f3d49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,12 +21,12 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Added - [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. +- [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. ### Changed -- [#2136](https://github.com/thanos-io/thanos/pull/2136) store, compact, bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. -Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. - +- [#2136](https://github.com/thanos-io/thanos/pull/2136) *breaking* store, compact, bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. +Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. If you want to keep existing behavior, you should add `--delete-delay=0s` as a flag. - [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. - [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. diff --git a/Makefile b/Makefile index ca5193f4546..47c81e63357 100644 --- a/Makefile +++ b/Makefile @@ -245,8 +245,23 @@ test-local: .PHONY: test-e2e test-e2e: ## Runs all Thanos e2e docker-based e2e tests from test/e2e. Required access to docker daemon. test-e2e: docker + @echo ">> cleaning docker environment." + @docker system prune -f --volumes + @echo ">> cleaning e2e test garbage." + @rm -rf ./test/e2e/e2e_integration_test* @echo ">> running /test/e2e tests." - @go test -v ./test/e2e/... + @go test -failfast -timeout 5m -v ./test/e2e/... + +.PHONY: test-e2e-ci +test-e2e-ci: ## Runs all Thanos e2e docker-based e2e tests from test/e2e, using limited resources. Required access to docker daemon. +test-e2e-ci: docker + @echo ">> cleaning docker environment." + @docker system prune -f --volumes + @echo ">> cleaning e2e test garbage." + @rm -rf ./test/e2e/e2e_integration_test* + @echo ">> running /test/e2e tests." + @go clean -testcache + @go test -failfast -parallel 1 -timeout 5m -v ./test/e2e/... .PHONY: install-deps install-deps: ## Installs dependencies for integration tests. It installs supported versions of Prometheus and alertmanager to test against in integration tests. diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 9eaf8d2ce5a..2f321ef9acf 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -140,7 +140,7 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name issues = append(issues, issueFn) } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) if err != nil { return err } @@ -189,7 +189,7 @@ func registerBucketLs(m map[string]setupFunc, root *kingpin.CmdClause, name stri return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) if err != nil { return err } @@ -289,7 +289,7 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) if err != nil { return err } @@ -458,7 +458,7 @@ func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, durati return errors.Wrap(err, "bucket client") } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg)) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) if err != nil { return err } diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index e926b6fa4e0..6fe4ddbd182 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -133,6 +133,12 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { "or compactor is ignoring the deletion because it's compacting the block at the same time."). Default("48h")) + dedupReplicaLabels := cmd.Flag("deduplication.replica-label", "Label to treat as a replica indicator of blocks that can be deduplicated (repeated flag). This will merge multiple replica blocks into one. This process is irreversible."+ + "Experimental. When it is set true, this will given labels from blocks so that vertical compaction could merge blocks."+ + "Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together)."+ + "This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication."). + Hidden().Strings() + selectorRelabelConf := regSelectorRelabelFlags(cmd) m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { @@ -157,6 +163,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { *maxCompactionLevel, *blockSyncConcurrency, *compactionConcurrency, + *dedupReplicaLabels, selectorRelabelConf, *waitInterval, ) @@ -183,6 +190,7 @@ func runCompact( maxCompactionLevel int, blockSyncConcurrency int, concurrency int, + dedupReplicaLabels []string, selectorRelabelConf *extflag.PathOrContent, waitInterval time.Duration, ) error { @@ -278,17 +286,26 @@ func runCompact( ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, time.Duration(deleteDelay.Seconds()/2)*time.Second) duplicateBlocksFilter := block.NewDeduplicateFilter() prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", prometheusRegisterer, - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer).Filter, - ignoreDeletionMarkFilter.Filter, - duplicateBlocksFilter.Filter, + + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", prometheusRegisterer, []block.MetadataFilter{ + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer), + ignoreDeletionMarkFilter, + duplicateBlocksFilter, + }, + block.NewReplicaLabelRemover(logger, dedupReplicaLabels), ) if err != nil { return errors.Wrap(err, "create meta fetcher") } - sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, false) + enableVerticalCompaction := false + if len(dedupReplicaLabels) > 0 { + enableVerticalCompaction = true + level.Info(logger).Log("msg", "deduplication.replica-label specified, vertical compaction is enabled", "dedupReplicaLabels", strings.Join(dedupReplicaLabels, ",")) + } + + sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, enableVerticalCompaction) if err != nil { return errors.Wrap(err, "create syncer") } diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index 293ef59adf8..beb45b95a9f 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -72,7 +72,7 @@ func RunDownsample( return err } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg)) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg), nil) if err != nil { return errors.Wrap(err, "create meta fetcher") } diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index d44844d7685..58e340db3d0 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -76,7 +76,7 @@ func TestCleanupIndexCacheFolder(t *testing.T) { Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) testutil.Ok(t, err) testutil.Ok(t, genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, dir)) @@ -116,7 +116,7 @@ func TestCleanupDownsampleCacheFolder(t *testing.T) { metrics := newDownsampleMetrics(prometheus.NewRegistry()) testutil.Equals(t, 0.0, promtest.ToFloat64(metrics.downsamples.WithLabelValues(compact.GroupKey(meta.Thanos)))) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) testutil.Ok(t, err) testutil.Ok(t, downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dir)) diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 7a4f88a038a..8031cd84e84 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -236,13 +236,13 @@ func runStore( ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, ignoreDeletionMarksDelay) prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) - metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, prometheusRegisterer, - block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer).Filter, - ignoreDeletionMarkFilter.Filter, - block.NewDeduplicateFilter().Filter, - ) + metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, prometheusRegisterer, []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer), + ignoreDeletionMarkFilter, + block.NewDeduplicateFilter(), + }) if err != nil { return errors.Wrap(err, "meta fetcher") } diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index 2ab188bd0fe..a2a5be2723c 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -32,54 +32,67 @@ import ( "github.com/thanos-io/thanos/pkg/runutil" ) -type syncMetrics struct { +type fetcherMetrics struct { syncs prometheus.Counter syncFailures prometheus.Counter syncDuration prometheus.Histogram - synced *extprom.TxGaugeVec + synced *extprom.TxGaugeVec + modified *extprom.TxGaugeVec +} + +func (s *fetcherMetrics) submit() { + s.synced.Submit() + s.modified.Submit() +} + +func (s *fetcherMetrics) resetTx() { + s.synced.ResetTx() + s.modified.ResetTx() } const ( - syncMetricSubSys = "blocks_meta" + fetcherSubSys = "blocks_meta" corruptedMeta = "corrupted-meta-json" noMeta = "no-meta-json" loadedMeta = "loaded" failedMeta = "failed" - // Filter's label values. + // Synced label values. labelExcludedMeta = "label-excluded" timeExcludedMeta = "time-excluded" tooFreshMeta = "too-fresh" duplicateMeta = "duplicate" - // Blocks that are marked for deletion can be loaded as well. This is done to make sure that we load blocks that are meant to be deleted, // but don't have a replacement block yet. markedForDeletionMeta = "marked-for-deletion" + + // Modified label values. + replicaRemovedMeta = "replica-label-removed" ) -func newSyncMetrics(reg prometheus.Registerer) *syncMetrics { - var m syncMetrics +func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { + var m fetcherMetrics m.syncs = promauto.With(reg).NewCounter(prometheus.CounterOpts{ - Subsystem: syncMetricSubSys, + Subsystem: fetcherSubSys, Name: "syncs_total", Help: "Total blocks metadata synchronization attempts", }) m.syncFailures = promauto.With(reg).NewCounter(prometheus.CounterOpts{ - Subsystem: syncMetricSubSys, + Subsystem: fetcherSubSys, Name: "sync_failures_total", Help: "Total blocks metadata synchronization failures", }) m.syncDuration = promauto.With(reg).NewHistogram(prometheus.HistogramOpts{ - Subsystem: syncMetricSubSys, + Subsystem: fetcherSubSys, Name: "sync_duration_seconds", Help: "Duration of the blocks metadata synchronization in seconds", Buckets: []float64{0.01, 1, 10, 100, 1000}, }) m.synced = extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ - Subsystem: syncMetricSubSys, + Subsystem: fetcherSubSys, Name: "synced", Help: "Number of block metadata synced", }, @@ -94,6 +107,14 @@ func newSyncMetrics(reg prometheus.Registerer) *syncMetrics { []string{duplicateMeta}, []string{markedForDeletionMeta}, ) + m.modified = extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ + Subsystem: fetcherSubSys, + Name: "modified", + Help: "Number of blocks that their metadata modified", + }, + []string{"modified"}, + []string{replicaRemovedMeta}, + ) return &m } @@ -101,11 +122,13 @@ type MetadataFetcher interface { Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) } -type GaugeLabeled interface { - WithLabelValues(lvs ...string) prometheus.Gauge +type MetadataFilter interface { + Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, incompleteView bool) error } -type MetaFetcherFilter func(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, incompleteView bool) error +type MetadataModifier interface { + Modify(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, incompleteView bool) error +} // MetaFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. // Not go-routine safe. @@ -116,15 +139,16 @@ type MetaFetcher struct { // Optional local directory to cache meta.json files. cacheDir string - metrics *syncMetrics + metrics *fetcherMetrics - filters []MetaFetcherFilter + filters []MetadataFilter + modifiers []MetadataModifier cached map[ulid.ULID]*metadata.Meta } // NewMetaFetcher constructs MetaFetcher. -func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, r prometheus.Registerer, filters ...MetaFetcherFilter) (*MetaFetcher, error) { +func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, r prometheus.Registerer, filters []MetadataFilter, modifiers ...MetadataModifier) (*MetaFetcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -142,8 +166,9 @@ func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReade concurrency: concurrency, bkt: bkt, cacheDir: cacheDir, - metrics: newSyncMetrics(r), + metrics: newFetcherMetrics(r), filters: filters, + modifiers: modifiers, cached: map[ulid.ULID]*metadata.Meta{}, }, nil } @@ -254,7 +279,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. metaErrs tsdberrors.MultiError ) - s.metrics.synced.ResetTx() + s.metrics.resetTx() for i := 0; i < s.concurrency; i++ { wg.Add(1) @@ -351,13 +376,20 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. for _, f := range s.filters { // NOTE: filter can update synced metric accordingly to the reason of the exclude. - if err := f(ctx, metas, s.metrics.synced, incompleteView); err != nil { + if err := f.Filter(ctx, metas, s.metrics.synced, incompleteView); err != nil { return nil, nil, errors.Wrap(err, "filter metas") } } + for _, m := range s.modifiers { + // NOTE: modifier can update modified metric accordingly to the reason of the modification. + if err := m.Modify(ctx, metas, s.metrics.modified, incompleteView); err != nil { + return nil, nil, errors.Wrap(err, "modify metas") + } + } + s.metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) - s.metrics.synced.Submit() + s.metrics.submit() if incompleteView { return metas, partial, errors.Wrap(metaErrs, "incomplete view") @@ -367,7 +399,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. return metas, partial, nil } -var _ MetaFetcherFilter = (&TimePartitionMetaFilter{}).Filter +var _ MetadataFilter = &TimePartitionMetaFilter{} // TimePartitionMetaFilter is a MetaFetcher filter that filters out blocks that are outside of specified time range. // Not go-routine safe. @@ -381,7 +413,7 @@ func NewTimePartitionMetaFilter(MinTime, MaxTime model.TimeOrDurationValue) *Tim } // Filter filters out blocks that are outside of specified time range. -func (f *TimePartitionMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { +func (f *TimePartitionMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { for id, m := range metas { if m.MaxTime >= f.minTime.PrometheusTimestamp() && m.MinTime <= f.maxTime.PrometheusTimestamp() { continue @@ -392,7 +424,7 @@ func (f *TimePartitionMetaFilter) Filter(_ context.Context, metas map[ulid.ULID] return nil } -var _ MetaFetcherFilter = (&LabelShardedMetaFilter{}).Filter +var _ MetadataFilter = &LabelShardedMetaFilter{} // LabelShardedMetaFilter represents struct that allows sharding. // Not go-routine safe. @@ -409,7 +441,7 @@ func NewLabelShardedMetaFilter(relabelConfig []*relabel.Config) *LabelShardedMet const blockIDLabel = "__block_id" // Filter filters out blocks that have no labels after relabelling of each block external (Thanos) labels. -func (f *LabelShardedMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { +func (f *LabelShardedMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { var lbls labels.Labels for id, m := range metas { lbls = lbls[:0] @@ -439,7 +471,7 @@ func NewDeduplicateFilter() *DeduplicateFilter { // Filter filters out duplicate blocks that can be formed // from two or more overlapping blocks that fully submatches the source blocks of the older blocks. -func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { +func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { var wg sync.WaitGroup metasByResolution := make(map[int64][]*metadata.Meta) @@ -465,7 +497,7 @@ func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metad return nil } -func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, res int64, synced GaugeLabeled) { +func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, res int64, synced *extprom.TxGaugeVec) { sort.Slice(metaSlice, func(i, j int) bool { ilen := len(metaSlice[i].Compaction.Sources) jlen := len(metaSlice[j].Compaction.Sources) @@ -540,6 +572,34 @@ func contains(s1 []ulid.ULID, s2 []ulid.ULID) bool { return true } +// ReplicaLabelRemover is a MetaFetcher modifier modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. +type ReplicaLabelRemover struct { + logger log.Logger + + replicaLabels []string +} + +// NewReplicaLabelRemover creates a ReplicaLabelRemover. +func NewReplicaLabelRemover(logger log.Logger, replicaLabels []string) *ReplicaLabelRemover { + return &ReplicaLabelRemover{logger: logger, replicaLabels: replicaLabels} +} + +// Modify modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. +func (r *ReplicaLabelRemover) Modify(_ context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, view bool) error { + for u, meta := range metas { + labels := meta.Thanos.Labels + for _, replicaLabel := range r.replicaLabels { + if _, exists := labels[replicaLabel]; exists { + level.Debug(r.logger).Log("msg", "replica label removed", "label", replicaLabel) + delete(labels, replicaLabel) + modified.WithLabelValues(replicaRemovedMeta).Inc() + } + } + metas[u].Thanos.Labels = labels + } + return nil +} + // ConsistencyDelayMetaFilter is a MetaFetcher filter that filters out blocks that are created before a specified consistency delay. // Not go-routine safe. type ConsistencyDelayMetaFilter struct { @@ -566,7 +626,7 @@ func NewConsistencyDelayMetaFilter(logger log.Logger, consistencyDelay time.Dura } // Filter filters out blocks that filters blocks that have are created before a specified consistency delay. -func (f *ConsistencyDelayMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { +func (f *ConsistencyDelayMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { for id, meta := range metas { // TODO(khyatisoneji): Remove the checks about Thanos Source // by implementing delete delay to fetch metas. @@ -612,7 +672,7 @@ func (f *IgnoreDeletionMarkFilter) DeletionMarkBlocks() map[ulid.ULID]*metadata. // Filter filters out blocks that are marked for deletion after a given delay. // It also returns the blocks that can be deleted since they were uploaded delay duration before current time. -func (f *IgnoreDeletionMarkFilter) Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { +func (f *IgnoreDeletionMarkFilter) Filter(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, _ bool) error { f.deletionMarkMap = make(map[ulid.ULID]*metadata.DeletionMark) for id := range metas { diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index 3c181886dd4..99920b8e5fc 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -22,7 +22,6 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" - "github.com/prometheus/client_golang/prometheus/promauto" promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/relabel" "github.com/prometheus/prometheus/tsdb" @@ -35,6 +34,25 @@ import ( "gopkg.in/yaml.v2" ) +func newTestFetcherMetrics() *fetcherMetrics { + return &fetcherMetrics{ + synced: extprom.NewTxGaugeVec(nil, prometheus.GaugeOpts{}, []string{"state"}), + modified: extprom.NewTxGaugeVec(nil, prometheus.GaugeOpts{}, []string{"modified"}), + } +} + +type ulidFilter struct { + ulidToDelete *ulid.ULID +} + +func (f *ulidFilter) Filter(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec, incompleteView bool) error { + if _, ok := metas[*f.ulidToDelete]; ok { + synced.WithLabelValues("filtered").Inc() + delete(metas, *f.ulidToDelete) + } + return nil +} + func ULID(i int) ulid.ULID { return ulid.MustNew(uint64(i), nil) } func ULIDs(is ...int) []ulid.ULID { @@ -57,12 +75,8 @@ func TestMetaFetcher_Fetch(t *testing.T) { var ulidToDelete ulid.ULID r := prometheus.NewRegistry() - f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, func(_ context.Context, metas map[ulid.ULID]*metadata.Meta, synced GaugeLabeled, _ bool) error { - if _, ok := metas[ulidToDelete]; ok { - synced.WithLabelValues("filtered").Inc() - delete(metas, ulidToDelete) - } - return nil + f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, []MetadataFilter{ + &ulidFilter{ulidToDelete: &ulidToDelete}, }) testutil.Ok(t, err) @@ -337,9 +351,10 @@ func TestLabelShardedMetaFilter_Filter_Basic(t *testing.T) { ULID(6): input[ULID(6)], } - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) - testutil.Equals(t, 3.0, promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + + testutil.Equals(t, 3.0, promtest.ToFloat64(m.synced.WithLabelValues(labelExcludedMeta))) testutil.Equals(t, expected, input) } @@ -434,10 +449,11 @@ func TestLabelShardedMetaFilter_Filter_Hashmod(t *testing.T) { } deleted := len(input) - len(expected) - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, expected, input) - testutil.Equals(t, float64(deleted), promtest.ToFloat64(synced.WithLabelValues(labelExcludedMeta))) + testutil.Equals(t, float64(deleted), promtest.ToFloat64(m.synced.WithLabelValues(labelExcludedMeta))) }) @@ -497,9 +513,10 @@ func TestTimePartitionMetaFilter_Filter(t *testing.T) { ULID(4): input[ULID(4)], } - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) - testutil.Equals(t, 2.0, promtest.ToFloat64(synced.WithLabelValues(timeExcludedMeta))) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + + testutil.Equals(t, 2.0, promtest.ToFloat64(m.synced.WithLabelValues(timeExcludedMeta))) testutil.Equals(t, expected, input) } @@ -830,7 +847,7 @@ func TestDeduplicateFilter_Filter(t *testing.T) { } { f := NewDeduplicateFilter() if ok := t.Run(tcase.name, func(t *testing.T) { - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + m := newTestFetcherMetrics() metas := make(map[ulid.ULID]*metadata.Meta) inputLen := len(tcase.input) for id, metaInfo := range tcase.input { @@ -848,15 +865,65 @@ func TestDeduplicateFilter_Filter(t *testing.T) { }, } } - testutil.Ok(t, f.Filter(ctx, metas, synced, false)) + testutil.Ok(t, f.Filter(ctx, metas, m.synced, false)) compareSliceWithMapKeys(t, metas, tcase.expected) - testutil.Equals(t, float64(inputLen-len(tcase.expected)), promtest.ToFloat64(synced.WithLabelValues(duplicateMeta))) + testutil.Equals(t, float64(inputLen-len(tcase.expected)), promtest.ToFloat64(m.synced.WithLabelValues(duplicateMeta))) }); !ok { return } } } +func TestReplicaLabelRemover_Modify(t *testing.T) { + ctx, cancel := context.WithTimeout(context.Background(), 120*time.Second) + defer cancel() + rm := NewReplicaLabelRemover(log.NewNopLogger(), []string{"replica", "rule_replica"}) + + for _, tcase := range []struct { + name string + input map[ulid.ULID]*metadata.Meta + expected map[ulid.ULID]*metadata.Meta + modified float64 + }{ + { + name: "without replica labels", + input: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something1"}}}, + }, + expected: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something1"}}}, + }, + modified: 0, + }, + { + name: "with replica labels", + input: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "rule_replica": "rule1", "message": "something"}}}, + ULID(4): {Thanos: metadata.Thanos{Labels: map[string]string{"replica": "cluster1", "rule_replica": "rule1"}}}, + }, + expected: map[ulid.ULID]*metadata.Meta{ + ULID(1): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(2): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(3): {Thanos: metadata.Thanos{Labels: map[string]string{"message": "something"}}}, + ULID(4): {Thanos: metadata.Thanos{Labels: map[string]string{}}}, + }, + modified: 5.0, + }, + } { + m := newTestFetcherMetrics() + testutil.Ok(t, rm.Modify(ctx, tcase.input, m.modified, false)) + + testutil.Equals(t, tcase.modified, promtest.ToFloat64(m.modified.WithLabelValues(replicaRemovedMeta))) + testutil.Equals(t, tcase.expected, tcase.input) + } +} + func compareSliceWithMapKeys(tb testing.TB, m map[ulid.ULID]*metadata.Meta, s []ulid.ULID) { _, file, line, _ := runtime.Caller(1) matching := true @@ -945,7 +1012,7 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { } t.Run("consistency 0 (turned off)", func(t *testing.T) { - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + m := newTestFetcherMetrics() expected := map[ulid.ULID]*metadata.Meta{} // Copy all. for _, id := range u.created { @@ -956,13 +1023,13 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { f := NewConsistencyDelayMetaFilter(nil, 0*time.Second, reg) testutil.Equals(t, map[string]float64{"consistency_delay_seconds": 0.0}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) - testutil.Equals(t, 0.0, promtest.ToFloat64(synced.WithLabelValues(tooFreshMeta))) + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, 0.0, promtest.ToFloat64(m.synced.WithLabelValues(tooFreshMeta))) testutil.Equals(t, expected, input) }) t.Run("consistency 30m.", func(t *testing.T) { - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) + m := newTestFetcherMetrics() expected := map[ulid.ULID]*metadata.Meta{} // Only certain sources and those with 30m or more age go through. for i, id := range u.created { @@ -981,8 +1048,8 @@ func TestConsistencyDelayMetaFilter_Filter_0(t *testing.T) { f := NewConsistencyDelayMetaFilter(nil, 30*time.Minute, reg) testutil.Equals(t, map[string]float64{"consistency_delay_seconds": (30 * time.Minute).Seconds()}, extprom.CurrentGaugeValuesFor(t, reg, "consistency_delay_seconds")) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) - testutil.Equals(t, float64(len(u.created)-len(expected)), promtest.ToFloat64(synced.WithLabelValues(tooFreshMeta))) + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, float64(len(u.created)-len(expected)), promtest.ToFloat64(m.synced.WithLabelValues(tooFreshMeta))) testutil.Equals(t, expected, input) }) } @@ -1033,9 +1100,9 @@ func TestIgnoreDeletionMarkFilter_Filter(t *testing.T) { ULID(4): {}, } - synced := promauto.With(nil).NewGaugeVec(prometheus.GaugeOpts{}, []string{"state"}) - testutil.Ok(t, f.Filter(ctx, input, synced, false)) - testutil.Equals(t, 1.0, promtest.ToFloat64(synced.WithLabelValues(markedForDeletionMeta))) + m := newTestFetcherMetrics() + testutil.Ok(t, f.Filter(ctx, input, m.synced, false)) + testutil.Equals(t, 1.0, promtest.ToFloat64(m.synced.WithLabelValues(markedForDeletionMeta))) testutil.Equals(t, expected, input) }) } diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 74cfbaaf5ab..4507b3f5a50 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -29,7 +29,7 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { bkt := inmem.NewBucket() logger := log.NewNopLogger() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) testutil.Ok(t, err) // 1. No meta, old block, should be removed. diff --git a/pkg/compact/compact_e2e_test.go b/pkg/compact/compact_e2e_test.go index 5520a9a8487..52e4147623f 100644 --- a/pkg/compact/compact_e2e_test.go +++ b/pkg/compact/compact_e2e_test.go @@ -90,9 +90,9 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { } duplicateBlocksFilter := block.NewDeduplicateFilter() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, - duplicateBlocksFilter.Filter, - ) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + duplicateBlocksFilter, + }) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) @@ -178,10 +178,10 @@ func TestGroup_Compact_e2e(t *testing.T) { ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, 48*time.Hour) duplicateBlocksFilter := block.NewDeduplicateFilter() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, - ignoreDeletionMarkFilter.Filter, - duplicateBlocksFilter.Filter, - ) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + ignoreDeletionMarkFilter, + duplicateBlocksFilter, + }) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index 5c9813c1172..980b883839e 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -245,7 +245,7 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { uploadMockBlock(t, bkt, b.id, b.minTime, b.maxTime, int64(b.resolution)) } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil, nil) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) diff --git a/pkg/replicate/replicator.go b/pkg/replicate/replicator.go index 1e674fa6a49..d419681f853 100644 --- a/pkg/replicate/replicator.go +++ b/pkg/replicate/replicator.go @@ -150,7 +150,7 @@ func RunReplicate( Help: "The Duration of replication runs split by success and error.", }, []string{"result"}) - fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg) + fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg, nil) if err != nil { return errors.Wrapf(err, "create meta fetcher with bucket %v", fromBkt) } diff --git a/pkg/replicate/scheme_test.go b/pkg/replicate/scheme_test.go index 9aaf9cff058..6b441a572ba 100644 --- a/pkg/replicate/scheme_test.go +++ b/pkg/replicate/scheme_test.go @@ -313,7 +313,7 @@ func TestReplicationSchemeAll(t *testing.T) { } filter := NewBlockFilter(logger, selector, compact.ResolutionLevelRaw, 1).Filter - fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil) + fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil, nil) testutil.Ok(t, err) r := newReplicationScheme( diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 6bdc6a5950a..821cd70d278 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -147,10 +147,10 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m maxTime: maxTime, } - metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, - block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConfig).Filter, - ) + metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConfig), + }) testutil.Ok(t, err) store, err := NewBucketStore( diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index a95372ec8f0..75cf4466435 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -710,10 +710,10 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul testutil.Ok(t, yaml.Unmarshal([]byte(sc.relabel), &relabelConf)) rec := &recorder{Bucket: bkt} - metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, - block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime).Filter, - block.NewLabelShardedMetaFilter(relabelConf).Filter, - ) + metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConf), + }) testutil.Ok(t, err) bucketStore, err := NewBucketStore( diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go new file mode 100644 index 00000000000..a9061179051 --- /dev/null +++ b/test/e2e/compact_test.go @@ -0,0 +1,559 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package e2e_test + +import ( + "context" + "os" + "path" + "path/filepath" + "strconv" + "testing" + "time" + + "github.com/cortexproject/cortex/integration/e2e" + e2edb "github.com/cortexproject/cortex/integration/e2e/db" + "github.com/go-kit/kit/log" + "github.com/oklog/ulid" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/pkg/timestamp" + "github.com/prometheus/prometheus/tsdb" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/objstore/client" + "github.com/thanos-io/thanos/pkg/objstore/s3" + "github.com/thanos-io/thanos/pkg/promclient" + "github.com/thanos-io/thanos/pkg/testutil" + "github.com/thanos-io/thanos/pkg/testutil/e2eutil" + "github.com/thanos-io/thanos/test/e2e/e2ethanos" +) + +func TestCompact(t *testing.T) { + t.Parallel() + + l := log.NewLogfmtLogger(os.Stdout) + + // blockDesc describes a recipe to generate blocks from the given series and external labels. + type blockDesc struct { + series []labels.Labels + extLset labels.Labels + mint int64 + maxt int64 + samplesPerSeries int + } + + type retention struct { + resRaw string + res5m string + res1h string + } + + delay := 30 * time.Minute + now := time.Now() + + for i, tcase := range []struct { + name string + blocks []blockDesc + replicaLabels []string + downsamplingEnabled bool + retention *retention + query string + + expected []model.Metric + expectNumModBlocks float64 + expectNumBlocks uint64 + expectedStats tsdb.BlockStats + }{ + { + name: "(full) vertically overlapping blocks with replica labels", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + }, + replicaLabels: []string{"replica", "rule_replica"}, + downsamplingEnabled: true, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + }, + }, + expectNumModBlocks: 3, + expectNumBlocks: 1, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 1, + NumSamples: 120, + }, + }, + { + name: "(full) vertically overlapping blocks without replica labels", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 12, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 12, + }, + }, + downsamplingEnabled: true, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "1", + }, + { + "a": "1", + "b": "2", + "ext1": "value1", + "replica": "2", + }, + }, + expectNumModBlocks: 0, + expectNumBlocks: 2, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 2, + NumSamples: 24, + }, + }, + { + name: "(full) vertically overlapping blocks with replica labels downsampling disabled", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1", "ext2", "value2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + }, + replicaLabels: []string{"replica", "rule_replica"}, + downsamplingEnabled: false, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "ext2": "value2", + }, + }, + expectNumModBlocks: 3, + expectNumBlocks: 1, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 1, + NumSamples: 120, + }, + }, + { + name: "(full) vertically overlapping blocks with replica labels, downsampling disabled and extra blocks", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1", "ext2", "value2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("c", "1", "d", "2")}, + extLset: labels.FromStrings("ext1", "value1", "ext2", "value2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("c", "1", "d", "2")}, + extLset: labels.FromStrings("ext3", "value3"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + }, + replicaLabels: []string{"replica", "rule_replica"}, + downsamplingEnabled: false, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "ext2": "value2", + }, + }, + expectNumModBlocks: 3, + expectNumBlocks: 2, + expectedStats: tsdb.BlockStats{ + NumChunks: 6, + NumSeries: 3, + NumSamples: 360, + }, + }, + { + name: "(partial) vertically overlapping blocks with replica labels", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 119, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(1 * time.Hour)), + samplesPerSeries: 59, + }, + }, + replicaLabels: []string{"replica"}, + downsamplingEnabled: true, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + "ext2": "value2", + }, + }, + expectNumModBlocks: 2, + expectNumBlocks: 1, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 1, + NumSamples: 119, + }, + }, + { + name: "(shifted) vertically overlapping blocks with replica labels", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "1"), + mint: timestamp.FromTime(now.Add(30 * time.Minute)), + maxt: timestamp.FromTime(now.Add(150 * time.Minute)), + samplesPerSeries: 119, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(120 * time.Minute)), + samplesPerSeries: 119, + }, + }, + replicaLabels: []string{"replica"}, + downsamplingEnabled: true, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + }, + }, + expectNumModBlocks: 2, + expectNumBlocks: 1, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 1, + NumSamples: 149, + }, + }, + { + name: "(full) vertically overlapping blocks with replica labels retention specified", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 120, + }, + }, + replicaLabels: []string{"replica", "rule_replica"}, + downsamplingEnabled: true, + retention: &retention{ + resRaw: "0d", + res5m: "5m", + res1h: "5m", + }, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + }, + }, + expectNumModBlocks: 3, + expectNumBlocks: 1, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 1, + NumSamples: 120, + }, + }, + { + name: "(full) vertically overlapping blocks without replica labels", + blocks: []blockDesc{ + { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 2, + }, { + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("ext1", "value2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + samplesPerSeries: 2, + }, + }, + replicaLabels: []string{"replica"}, + downsamplingEnabled: true, + query: "{a=\"1\"}", + + expected: []model.Metric{ + { + "a": "1", + "b": "2", + "ext1": "value1", + }, + { + "a": "1", + "b": "2", + "ext1": "value2", + }, + }, + expectNumModBlocks: 0, + expectNumBlocks: 2, + expectedStats: tsdb.BlockStats{ + NumChunks: 2, + NumSeries: 2, + NumSamples: 4, + }, + }, + } { + i := i + tcase := tcase + t.Run(tcase.name, func(t *testing.T) { + s, err := e2e.NewScenario("e2e_test_compact_" + strconv.Itoa(i)) + testutil.Ok(t, err) + defer s.Close() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + dir := filepath.Join(s.SharedDir(), "tmp_"+strconv.Itoa(i)) + testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), dir), os.ModePerm)) + + bucket := "thanos_" + strconv.Itoa(i) + + // TODO(kakkoyun): Move to shared minio to improve test speed. + m := e2edb.NewMinio(8080+i, bucket) + testutil.Ok(t, s.StartAndWaitReady(m)) + + bkt, err := s3.NewBucketWithConfig(l, s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.HTTPEndpoint(), // We need separate client config, when connecting to minio from outside. + Insecure: true, + }, "test-feed") + testutil.Ok(t, err) + + ctx, cancel := context.WithTimeout(context.Background(), 90*time.Second) + defer cancel() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + var rawBlockIds []ulid.ULID + for _, b := range tcase.blocks { + id, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, b.samplesPerSeries, b.mint, b.maxt, delay, b.extLset, 0) + testutil.Ok(t, err) + testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id.String()), id.String())) + rawBlockIds = append(rawBlockIds, id) + } + + dedupFlags := make([]string, 0, len(tcase.replicaLabels)) + for _, l := range tcase.replicaLabels { + dedupFlags = append(dedupFlags, "--deduplication.replica-label="+l) + } + + retenFlags := make([]string, 0, 3) + if tcase.retention != nil { + retenFlags = append(retenFlags, "--retention.resolution-raw="+tcase.retention.resRaw) + retenFlags = append(retenFlags, "--retention.resolution-5m="+tcase.retention.res5m) + retenFlags = append(retenFlags, "--retention.resolution-1h="+tcase.retention.res1h) + } + + cmpt, err := e2ethanos.NewCompactor(s.SharedDir(), strconv.Itoa(i), client.BucketConfig{ + Type: client.S3, + Config: s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.NetworkHTTPEndpoint(), + Insecure: true, + }, + }, + nil, // relabel configs. + tcase.downsamplingEnabled, + append(dedupFlags, retenFlags...)..., + ) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(cmpt)) + testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIds))), "thanos_blocks_meta_synced")) + testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(tcase.expectNumModBlocks), "thanos_blocks_meta_modified")) + + str, err := e2ethanos.NewStoreGW(s.SharedDir(), "compact_"+strconv.Itoa(i), client.BucketConfig{ + Type: client.S3, + Config: s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.NetworkHTTPEndpoint(), + Insecure: true, + }, + }) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(str)) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(tcase.expectNumBlocks)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + q, err := e2ethanos.NewQuerier(s.SharedDir(), "compact_"+strconv.Itoa(i), []string{str.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + queryAndAssert(t, ctx, q.HTTPEndpoint(), + tcase.query, + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. + }, + tcase.expected, + ) + + var ( + actualNumBlocks uint64 + actual tsdb.BlockStats + sources []ulid.ULID + ) + testutil.Ok(t, bkt.Iter(ctx, "", func(n string) error { + id, ok := block.IsBlockDir(n) + if !ok { + return nil + } + + actualNumBlocks += 1 + + meta, err := block.DownloadMeta(ctx, l, bkt, id) + if err != nil { + return err + } + + actual.NumChunks += meta.Stats.NumChunks + actual.NumSeries += meta.Stats.NumSeries + actual.NumSamples += meta.Stats.NumSamples + sources = append(sources, meta.Compaction.Sources...) + return nil + })) + + // Make sure only necessary amount of blocks fetched from store, to observe affects of offline deduplication. + testutil.Equals(t, tcase.expectNumBlocks, actualNumBlocks) + if len(rawBlockIds) < int(tcase.expectNumBlocks) { // check sources only if compacted. + testutil.Equals(t, rawBlockIds, sources) + } + testutil.Equals(t, tcase.expectedStats.NumChunks, actual.NumChunks) + testutil.Equals(t, tcase.expectedStats.NumSeries, actual.NumSeries) + testutil.Equals(t, tcase.expectedStats.NumSamples, actual.NumSamples) + }) + } +} diff --git a/test/e2e/e2ethanos/services.go b/test/e2e/e2ethanos/services.go index afd20b6edcf..49887505ba9 100644 --- a/test/e2e/e2ethanos/services.go +++ b/test/e2e/e2ethanos/services.go @@ -10,8 +10,10 @@ import ( "os" "path/filepath" "strconv" + "time" "github.com/cortexproject/cortex/integration/e2e" + "github.com/cortexproject/cortex/pkg/util" "github.com/pkg/errors" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/discovery/targetgroup" @@ -25,6 +27,11 @@ import ( const logLevel = "info" +var defaultBackoffConfig = util.BackoffConfig{ + MinBackoff: 300 * time.Millisecond, + MaxBackoff: 15 * time.Second, +} + // TODO(bwplotka): Run against multiple? func DefaultPrometheusImage() string { return "quay.io/prometheus/prometheus:v2.16.0" @@ -69,6 +76,7 @@ func NewPrometheus(sharedDir string, name string, config, promImage string) (*e2 9090, ) prom.SetUser("root") + prom.SetBackoff(defaultBackoffConfig) return prom, container, nil } @@ -78,6 +86,7 @@ func NewPrometheusWithSidecar(sharedDir string, netName string, name string, con if err != nil { return nil, nil, err } + prom.SetBackoff(defaultBackoffConfig) sidecar := NewService( fmt.Sprintf("sidecar-%s", name), @@ -95,6 +104,8 @@ func NewPrometheusWithSidecar(sharedDir string, netName string, name string, con 80, 9091, ) + sidecar.SetBackoff(defaultBackoffConfig) + return prom, sidecar, nil } @@ -109,6 +120,7 @@ func NewQuerier(sharedDir string, name string, storeAddresses []string, fileSDSt "--query.replica-label": replicaLabel, "--store.sd-dns-interval": "5s", "--log.level": logLevel, + "--query.max-concurrent": "1", "--store.sd-interval": "5s", }) for _, addr := range storeAddresses { @@ -139,14 +151,17 @@ func NewQuerier(sharedDir string, name string, storeAddresses []string, fileSDSt args = append(args, "--store.sd-files="+filepath.Join(container, "filesd.yaml")) } - return NewService( + querier := NewService( fmt.Sprintf("querier-%v", name), DefaultImage(), e2e.NewCommand("query", args...), e2e.NewReadinessProbe(80, "/-/ready", 200), 80, 9091, - ), nil + ) + querier.SetBackoff(defaultBackoffConfig) + + return querier, nil } func RemoteWriteEndpoint(addr string) string { return fmt.Sprintf("http://%s/api/v1/receive", addr) } @@ -171,7 +186,7 @@ func NewReceiver(sharedDir string, networkName string, name string, replicationF return nil, errors.Wrap(err, "creating receive config") } - return NewService( + receiver := NewService( fmt.Sprintf("receive-%v", name), DefaultImage(), // TODO(bwplotka): BuildArgs should be interface. @@ -193,7 +208,10 @@ func NewReceiver(sharedDir string, networkName string, name string, replicationF 80, 9091, 81, - ), nil + ) + receiver.SetBackoff(defaultBackoffConfig) + + return receiver, nil } func NewRuler(sharedDir string, name string, ruleSubDir string, amCfg []alert.AlertmanagerConfig, queryCfg []query.Config) (*Service, error) { @@ -215,7 +233,7 @@ func NewRuler(sharedDir string, name string, ruleSubDir string, amCfg []alert.Al return nil, errors.Wrapf(err, "generate query file: %v", queryCfg) } - return NewService( + ruler := NewService( fmt.Sprintf("rule-%v", name), DefaultImage(), e2e.NewCommand("rule", e2e.BuildArgs(map[string]string{ @@ -226,7 +244,7 @@ func NewRuler(sharedDir string, name string, ruleSubDir string, amCfg []alert.Al "--label": fmt.Sprintf(`replica="%s"`, name), "--data-dir": container, "--rule-file": filepath.Join(e2e.ContainerSharedDir, ruleSubDir, "*.yaml"), - "--eval-interval": "1s", + "--eval-interval": "3s", "--alertmanagers.config": string(amCfgBytes), "--alertmanagers.sd-dns-interval": "1s", "--log.level": logLevel, @@ -237,7 +255,10 @@ func NewRuler(sharedDir string, name string, ruleSubDir string, amCfg []alert.Al e2e.NewReadinessProbe(80, "/-/ready", 200), 80, 9091, - ), nil + ) + ruler.SetBackoff(defaultBackoffConfig) + + return ruler, nil } func NewAlertmanager(sharedDir string, name string) (*e2e.HTTPService, error) { @@ -263,15 +284,19 @@ receivers: fmt.Sprintf("alertmanager-%v", name), DefaultAlertmanagerImage(), e2e.NewCommandWithoutEntrypoint("/bin/alertmanager", e2e.BuildArgs(map[string]string{ - "--config.file": filepath.Join(container, "config.yaml"), - "--web.listen-address": "0.0.0.0:80", - "--log.level": logLevel, - "--storage.path": container, + "--config.file": filepath.Join(container, "config.yaml"), + "--web.listen-address": "0.0.0.0:80", + "--log.level": logLevel, + "--storage.path": container, + "--web.get-concurrency": "1", + "--web.timeout": "2m", })...), e2e.NewReadinessProbe(80, "/-/ready", 200), 80, ) s.SetUser("root") + s.SetBackoff(defaultBackoffConfig) + return s, nil } @@ -292,7 +317,7 @@ func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, return nil, errors.Wrapf(err, "generate store relabel file: %v", relabelConfig) } - return NewService( + store := NewService( fmt.Sprintf("store-gw-%v", name), DefaultImage(), e2e.NewCommand("store", append(e2e.BuildArgs(map[string]string{ @@ -304,12 +329,61 @@ func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, "--data-dir": container, "--objstore.config": string(bktConfigBytes), // Accelerated sync time for quicker test (3m by default). - "--sync-block-duration": "1s", - "--selector.relabel-config": string(relabelConfigBytes), - "--consistency-delay": "30m", + "--sync-block-duration": "3s", + "--block-sync-concurrency": "1", + "--store.grpc.series-max-concurrency": "1", + "--selector.relabel-config": string(relabelConfigBytes), + "--consistency-delay": "30m", }), "--experimental.enable-index-header")...), e2e.NewReadinessProbe(80, "/-/ready", 200), 80, 9091, - ), nil + ) + store.SetBackoff(defaultBackoffConfig) + + return store, nil +} + +func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfig, relabelConfig []relabel.Config, downsamplingEnabled bool, extArgs ...string) (*e2e.HTTPService, error) { + dir := filepath.Join(sharedDir, "data", "compact", name) + container := filepath.Join(e2e.ContainerSharedDir, "data", "compact", name) + + if err := os.MkdirAll(dir, 0777); err != nil { + return nil, errors.Wrap(err, "create compact dir") + } + + bktConfigBytes, err := yaml.Marshal(bucketConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate compact config file: %v", bucketConfig) + } + + relabelConfigBytes, err := yaml.Marshal(relabelConfig) + if err != nil { + return nil, errors.Wrapf(err, "generate compact relabel file: %v", relabelConfig) + } + + if !downsamplingEnabled { + extArgs = append(extArgs, "--downsampling.disable") + } + + compactor := e2e.NewHTTPService( + fmt.Sprintf("compact-%s", name), + DefaultImage(), + e2e.NewCommand("compact", append(e2e.BuildArgs(map[string]string{ + "--debug.name": fmt.Sprintf("compact-%s", name), + "--log.level": logLevel, + "--data-dir": container, + "--objstore.config": string(bktConfigBytes), + "--http-address": ":80", + "--delete-delay": "0s", + "--block-sync-concurrency": "1", + "--selector.relabel-config": string(relabelConfigBytes), + "--wait": "", + }), extArgs...)...), + e2e.NewReadinessProbe(80, "/-/ready", 200), + 80, + ) + compactor.SetBackoff(defaultBackoffConfig) + + return compactor, nil } diff --git a/test/e2e/rule_test.go b/test/e2e/rule_test.go index 5e41c5f941d..a6d7d845add 100644 --- a/test/e2e/rule_test.go +++ b/test/e2e/rule_test.go @@ -179,8 +179,6 @@ func (m *mockAlertmanager) ServeHTTP(resp http.ResponseWriter, req *http.Request func TestRule_AlertmanagerHTTPClient(t *testing.T) { t.Skip("TODO: Allow HTTP ports from binaries running on host to be accessible.") - t.Parallel() - s, err := e2e.NewScenario("e2e_test_rule_am_http_client") testutil.Ok(t, err) defer s.Close() @@ -312,7 +310,7 @@ func TestRule(t *testing.T) { { // FileSD which will be used to register discover dynamically q. Files: []string{filepath.Join(e2e.ContainerSharedDir, queryTargetsSubDir, "*.yaml")}, - RefreshInterval: model.Duration(time.Hour), + RefreshInterval: model.Duration(time.Second), }, }, Scheme: "http", @@ -435,7 +433,7 @@ func TestRule(t *testing.T) { testutil.Ok(t, r.WaitSumMetrics(e2e.Equals(1), "thanos_ruler_alertmanagers_dns_provider_results")) }) - ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute) + ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) defer cancel() queryAndAssert(t, ctx, q.HTTPEndpoint(), "ALERTS", promclient.QueryOptions{ From 95135298dd40a7724454bd75bcf336dd9a894cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 24 Mar 2020 13:50:14 +0100 Subject: [PATCH 045/190] docs/release: squat to release v0.12.0 (#2312) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- docs/release-process.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/release-process.md b/docs/release-process.md index f6e4c52210d..774a24f8e25 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -32,7 +32,8 @@ Release shepherd responsibilities: | Release | Time of first RC | Shepherd (GitHub handle) | |-----------|--------------------------|--------------------------| -| v0.12.0 | (planned) 2020.04.01 | TBD | +| v0.13.0 | (planned) 2020.05.13 | `TBD` | +| v0.12.0 | (planned) 2020.04.01 | `@squat` | | v0.11.0 | 2020.02.19 | `@metalmatze` | | v0.10.0 | 2020.01.08 | `@GiedriusS` | | v0.9.0 | 2019.11.26 | `@bwplotka` | From 65b49afed4096e20692edcb0cec841d31cfd9174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 24 Mar 2020 13:50:46 +0100 Subject: [PATCH 046/190] cmd/thanos/receive: Serve TLS when TLSConfig is given (#2311) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: mrIncompetent Signed-off-by: Lucas Servén Marín Co-authored-by: mrIncompetent --- pkg/receive/handler.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 733086e17df..35e254e943a 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -191,6 +191,13 @@ func (h *Handler) Run() error { TLSConfig: h.options.TLSConfig, } + if h.options.TLSConfig != nil { + level.Info(h.logger).Log("msg", "Serving HTTPS", "address", h.options.ListenAddress) + // Cert & Key are already being passed in via TLSConfig. + return httpSrv.ServeTLS(h.listener, "", "") + } + + level.Info(h.logger).Log("msg", "Serving plain HTTP", "address", h.options.ListenAddress) return httpSrv.Serve(h.listener) } From 4bd19b16a752e9ceb1836c21d4156bdeb517fe50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 24 Mar 2020 14:55:43 +0100 Subject: [PATCH 047/190] cmd/thanos/compact: add bucket UI (#1714) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit enhances the compact component so that it runs the bucket UI whenever the --wait flag is also passed. In order to reduce the overhead of running the UI in addition to the compactor, this commit also refactors the compactor and bucket commands a bit in order to re-use a single meta fetcher. Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 1 + cmd/thanos/bucket.go | 47 +++++------ cmd/thanos/compact.go | 31 ++++++- docs/components/compact.md | 166 ++++++++++++++++++++++--------------- 4 files changed, 151 insertions(+), 94 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1185e4f3d49..9098f88925f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. - [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. +- [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. ### Changed diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 2f321ef9acf..1b19fece343 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -328,8 +328,6 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str label := cmd.Flag("label", "Prometheus label to use as timeline title").String() m[name+" web"] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, _ opentracing.Tracer, _ <-chan struct{}, _ bool) error { - ctx, cancel := context.WithCancel(context.Background()) - comp := component.Bucket httpProbe := prober.NewHTTP() statusProber := prober.Combine( @@ -365,10 +363,26 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str level.Warn(logger).Log("msg", "Refresh interval should be at least 2 times the timeout") } + confContentYaml, err := objStoreConfig.Content() + if err != nil { + return err + } + + bkt, err := client.NewBucket(logger, confContentYaml, reg, component.Bucket.String()) + if err != nil { + return errors.Wrap(err, "bucket client") + } + + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) + if err != nil { + return err + } + + ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { statusProber.Ready() - - return refresh(ctx, logger, bucketUI, *interval, *timeout, name, reg, objStoreConfig) + defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") + return refresh(ctx, logger, bucketUI, *interval, *timeout, fetcher) }, func(error) { cancel() }) @@ -432,7 +446,6 @@ func registerBucketReplicate(m map[string]setupFunc, root *kingpin.CmdClause, na } func registerBucketDownsample(m map[string]setupFunc, root *kingpin.CmdClause, name string, objStoreConfig *extflag.PathOrContent) { - comp := component.Downsample cmd := root.Command(comp.String(), "continuously downsamples blocks in an object store bucket") @@ -446,30 +459,14 @@ func registerBucketDownsample(m map[string]setupFunc, root *kingpin.CmdClause, n } } -// refresh metadata from remote storage periodically and update UI. -func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, duration time.Duration, timeout time.Duration, name string, reg *prometheus.Registry, objStoreConfig *extflag.PathOrContent) error { - confContentYaml, err := objStoreConfig.Content() - if err != nil { - return err - } - - bkt, err := client.NewBucket(logger, confContentYaml, reg, name) - if err != nil { - return errors.Wrap(err, "bucket client") - } - - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) - if err != nil { - return err - } - - defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") +// refresh metadata from remote storage periodically and update the UI. +func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, duration time.Duration, timeout time.Duration, fetcher *block.MetaFetcher) error { return runutil.Repeat(duration, ctx.Done(), func() error { return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { iterCtx, iterCancel := context.WithTimeout(ctx, timeout) defer iterCancel() - blocks, err := download(iterCtx, logger, bkt, fetcher) + blocks, err := download(iterCtx, logger, fetcher) if err != nil { bucketUI.Set("[]", err) return err @@ -486,7 +483,7 @@ func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, durati }) } -func download(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) ([]metadata.Meta, error) { +func download(ctx context.Context, logger log.Logger, fetcher *block.MetaFetcher) ([]metadata.Meta, error) { level.Info(logger).Log("msg", "synchronizing block metadata") metas, _, err := fetcher.Fetch(ctx) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 6fe4ddbd182..704b387a77f 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -20,6 +20,7 @@ import ( "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" + "github.com/prometheus/common/route" "github.com/prometheus/prometheus/tsdb" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/indexheader" @@ -29,11 +30,13 @@ import ( "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extprom" + extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/runutil" httpserver "github.com/thanos-io/thanos/pkg/server/http" + "github.com/thanos-io/thanos/pkg/ui" "gopkg.in/alecthomas/kingpin.v2" ) @@ -107,7 +110,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { wait := cmd.Flag("wait", "Do not exit after all compactions have been processed and wait for new work."). Short('w').Bool() - waitInterval := cmd.Flag("wait-interval", "Wait interval between consecutive compaction runs. Only works when --wait flag specified."). + waitInterval := cmd.Flag("wait-interval", "Wait interval between consecutive compaction runs and bucket refreshes. Only works when --wait flag specified."). Default("5m").Duration() generateMissingIndexCacheFiles := cmd.Flag("index.generate-missing-cache-file", "If enabled, on startup compactor runs an on-off job that scans all the blocks to find all blocks with missing index cache file. It generates those if needed and upload."). @@ -141,6 +144,15 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { selectorRelabelConf := regSelectorRelabelFlags(cmd) + webExternalPrefix := cmd.Flag("web.external-prefix", "Static prefix for all HTML links and redirect URLs in the bucket web UI interface. Actual endpoints are still served on / or the web.route-prefix. This allows thanos bucket web UI to be served behind a reverse proxy that strips a URL sub-path.").Default("").String() + webPrefixHeaderName := cmd.Flag("web.prefix-header", "Name of HTTP request header used for dynamic prefixing of UI links and redirects. This option is ignored if web.external-prefix argument is set. Security risk: enable this option only if a reverse proxy in front of thanos is resetting the header. The --web.prefix-header=X-Forwarded-Prefix option can be useful, for example, if Thanos UI is served via Traefik reverse proxy with PathPrefixStrip option enabled, which sends the stripped prefix value in X-Forwarded-Prefix header. This allows thanos UI to be served on a sub-path.").Default("").String() + flagsMap := map[string]string{ + "web.external-prefix": *webExternalPrefix, + "web.prefix-header": *webPrefixHeaderName, + } + + label := cmd.Flag("bucket-web-label", "Prometheus label to use as timeline title in the bucket web UI").String() + m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { return runCompact(g, logger, reg, *httpAddr, @@ -166,6 +178,8 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { *dedupReplicaLabels, selectorRelabelConf, *waitInterval, + *label, + flagsMap, ) } } @@ -193,6 +207,8 @@ func runCompact( dedupReplicaLabels []string, selectorRelabelConf *extflag.PathOrContent, waitInterval time.Duration, + label string, + flagsMap map[string]string, ) error { halted := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_compactor_halted", @@ -442,6 +458,19 @@ func runCompact( cancel() }) + if wait { + router := route.New() + bucketUI := ui.NewBucketUI(logger, label, flagsMap) + bucketUI.Register(router, extpromhttp.NewInstrumentationMiddleware(reg)) + srv.Handle("/", router) + + g.Add(func() error { + return refresh(ctx, logger, bucketUI, waitInterval, time.Minute, metaFetcher) + }, func(error) { + cancel() + }) + } + level.Info(logger).Log("msg", "starting compact node") statusProber.Ready() return nil diff --git a/docs/components/compact.md b/docs/components/compact.md index bff5f29931b..2fd3d80883f 100644 --- a/docs/components/compact.md +++ b/docs/components/compact.md @@ -82,83 +82,113 @@ usage: thanos compact [] continuously compacts blocks in an object store bucket Flags: - -h, --help Show context-sensitive help (also try --help-long - and --help-man). - --version Show application version. - --log.level=info Log filtering level. - --log.format=logfmt Log format to use. Possible options: logfmt or - json. + -h, --help Show context-sensitive help (also try + --help-long and --help-man). + --version Show application version. + --log.level=info Log filtering level. + --log.format=logfmt Log format to use. Possible options: logfmt or + json. --tracing.config-file= - Path to YAML file with tracing configuration. See - format details: - https://thanos.io/tracing.md/#configuration + Path to YAML file with tracing configuration. + See format details: + https://thanos.io/tracing.md/#configuration --tracing.config= - Alternative to 'tracing.config-file' flag (lower - priority). Content of YAML file with tracing - configuration. See format details: - https://thanos.io/tracing.md/#configuration + Alternative to 'tracing.config-file' flag (lower + priority). Content of YAML file with tracing + configuration. See format details: + https://thanos.io/tracing.md/#configuration --http-address="0.0.0.0:10902" - Listen host:port for HTTP endpoints. - --http-grace-period=2m Time to wait after an interrupt received for HTTP - Server. - --data-dir="./data" Data directory in which to cache blocks and - process compactions. + Listen host:port for HTTP endpoints. + --http-grace-period=2m Time to wait after an interrupt received for + HTTP Server. + --data-dir="./data" Data directory in which to cache blocks and + process compactions. --objstore.config-file= - Path to YAML file that contains object store - configuration. See format details: - https://thanos.io/storage.md/#configuration + Path to YAML file that contains object store + configuration. See format details: + https://thanos.io/storage.md/#configuration --objstore.config= - Alternative to 'objstore.config-file' flag (lower - priority). Content of YAML file that contains - object store configuration. See format details: - https://thanos.io/storage.md/#configuration - --consistency-delay=30m Minimum age of fresh (non-compacted) blocks - before they are being processed. Malformed blocks - older than the maximum of consistency-delay and - 48h0m0s will be removed. + Alternative to 'objstore.config-file' flag + (lower priority). Content of YAML file that + contains object store configuration. See format + details: + https://thanos.io/storage.md/#configuration + --consistency-delay=30m Minimum age of fresh (non-compacted) blocks + before they are being processed. Malformed + blocks older than the maximum of + consistency-delay and 48h0m0s will be removed. --retention.resolution-raw=0d - How long to retain raw samples in bucket. Setting - this to 0d will retain samples of this resolution - forever + How long to retain raw samples in bucket. + Setting this to 0d will retain samples of this + resolution forever --retention.resolution-5m=0d - How long to retain samples of resolution 1 (5 - minutes) in bucket. Setting this to 0d will - retain samples of this resolution forever + How long to retain samples of resolution 1 (5 + minutes) in bucket. Setting this to 0d will + retain samples of this resolution forever --retention.resolution-1h=0d - How long to retain samples of resolution 2 (1 - hour) in bucket. Setting this to 0d will retain - samples of this resolution forever - -w, --wait Do not exit after all compactions have been - processed and wait for new work. - --wait-interval=5m Wait interval between consecutive compaction - runs. Only works when --wait flag specified. - --downsampling.disable Disables downsampling. This is not recommended as - querying long time ranges without non-downsampled - data is not efficient and useful e.g it is not - possible to render all samples for a human eye - anyway + How long to retain samples of resolution 2 (1 + hour) in bucket. Setting this to 0d will retain + samples of this resolution forever + -w, --wait Do not exit after all compactions have been + processed and wait for new work. + --wait-interval=5m Wait interval between consecutive compaction + runs and bucket refreshes. Only works when + --wait flag specified. + --downsampling.disable Disables downsampling. This is not recommended + as querying long time ranges without + non-downsampled data is not efficient and useful + e.g it is not possible to render all samples for + a human eye anyway --block-sync-concurrency=20 - Number of goroutines to use when syncing block - metadata from object storage. - --compact.concurrency=1 Number of goroutines to use when compacting - groups. + Number of goroutines to use when syncing block + metadata from object storage. + --compact.concurrency=1 Number of goroutines to use when compacting + groups. + --delete-delay=48h Time before a block marked for deletion is + deleted from bucket. If delete-delay is non + zero, blocks will be marked for deletion and + compactor component will delete blocks marked + for deletion from the bucket. If delete-delay is + 0, blocks will be deleted straight away. Note + that deleting blocks immediately can cause query + failures, if store gateway still has the block + loaded, or compactor is ignoring the deletion + because it's compacting the block at the same + time. --selector.relabel-config-file= - Path to YAML file that contains relabeling - configuration that allows selecting blocks. It - follows native Prometheus relabel-config syntax. - See format details: - https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + Path to YAML file that contains relabeling + configuration that allows selecting blocks. It + follows native Prometheus relabel-config syntax. + See format details: + https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config --selector.relabel-config= - Alternative to 'selector.relabel-config-file' - flag (lower priority). Content of YAML file that - contains relabeling configuration that allows - selecting blocks. It follows native Prometheus - relabel-config syntax. See format details: - https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config - --delete-delay=48h Time before a block marked for deletion is deleted from bucket. - If delete-delay is non zero, blocks will be marked for deletion and compactor component will delete blocks marked for deletion from the bucket. - If delete-delay is 0, blocks will be deleted straight away. - Use this if you want to get rid of or move the block immediately. - Note that deleting blocks immediately can cause query failures, if store gateway still has the block - loaded, or compactor is ignoring the deletion because it's compacting the block at the same time. + Alternative to 'selector.relabel-config-file' + flag (lower priority). Content of YAML file that + contains relabeling configuration that allows + selecting blocks. It follows native Prometheus + relabel-config syntax. See format details: + https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config + --web.external-prefix="" Static prefix for all HTML links and redirect + URLs in the bucket web UI interface. Actual + endpoints are still served on / or the + web.route-prefix. This allows thanos bucket web + UI to be served behind a reverse proxy that + strips a URL sub-path. + --web.prefix-header="" Name of HTTP request header used for dynamic + prefixing of UI links and redirects. This option + is ignored if web.external-prefix argument is + set. Security risk: enable this option only if a + reverse proxy in front of thanos is resetting + the header. The + --web.prefix-header=X-Forwarded-Prefix option + can be useful, for example, if Thanos UI is + served via Traefik reverse proxy with + PathPrefixStrip option enabled, which sends the + stripped prefix value in X-Forwarded-Prefix + header. This allows thanos UI to be served on a + sub-path. + --bucket-web-label=BUCKET-WEB-LABEL + Prometheus label to use as timeline title in the + bucket web UI + ``` From 64ab3284058d83d6585cc8688d6bc3eee5ff5212 Mon Sep 17 00:00:00 2001 From: Arthur Date: Wed, 25 Mar 2020 04:38:10 +0800 Subject: [PATCH 048/190] reloadRules initlialization should fail (#2301) Signed-off-by: arthur yang --- CHANGELOG.md | 1 + cmd/thanos/rule.go | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9098f88925f..4fa0b167357 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,6 +30,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. If you want to keep existing behavior, you should add `--delete-delay=0s` as a flag. - [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. - [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. +- [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: initlialization fails with filepath bad pattern error and rule manager update error. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index cdcf3c3ae13..87afc357d3f 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -495,6 +495,7 @@ func runRule( // Initialize rules. if err := reloadRules(logger, ruleFiles, ruleMgr, evalInterval, metrics); err != nil { level.Error(logger).Log("msg", "initialize rules failed", "err", err) + return err } for { select { From b678671927417154c3f5a7a1646396e8292addab Mon Sep 17 00:00:00 2001 From: Michael Dai Date: Wed, 25 Mar 2020 18:34:06 +0800 Subject: [PATCH 049/190] Fixed inconsistent metrics and methods (#2319) Signed-off-by: jojohappy --- cmd/thanos/bucket.go | 2 +- cmd/thanos/compact.go | 2 +- cmd/thanos/downsample.go | 2 +- cmd/thanos/query.go | 2 +- cmd/thanos/receive.go | 3 ++- cmd/thanos/rule.go | 2 +- cmd/thanos/sidecar.go | 3 ++- cmd/thanos/store.go | 2 +- pkg/replicate/replicator.go | 3 ++- 9 files changed, 12 insertions(+), 9 deletions(-) diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 1b19fece343..124586c5cb7 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -332,7 +332,7 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, comp, httpProbe, diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 704b387a77f..3485da1758f 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -251,7 +251,7 @@ func runCompact( httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(component, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(component, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, component, httpProbe, diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index beb45b95a9f..f2dd7c82dd7 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -87,7 +87,7 @@ func RunDownsample( httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) metrics := newDownsampleMetrics(reg) diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index 0d687b02e11..ed266904e71 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -318,7 +318,7 @@ func runQuery( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, reg), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) // Start query API + UI HTTP server. diff --git a/cmd/thanos/receive.go b/cmd/thanos/receive.go index 59db2ed840c..2296e4649eb 100644 --- a/cmd/thanos/receive.go +++ b/cmd/thanos/receive.go @@ -24,6 +24,7 @@ import ( "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extgrpc" + "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/receive" @@ -212,7 +213,7 @@ func runReceive( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) confContentYaml, err := objStoreConfig.Content() diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 87afc357d3f..290ec41c00b 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -523,7 +523,7 @@ func runRule( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) // Start gRPC server. diff --git a/cmd/thanos/sidecar.go b/cmd/thanos/sidecar.go index 3024b1a7160..caed499963d 100644 --- a/cmd/thanos/sidecar.go +++ b/cmd/thanos/sidecar.go @@ -24,6 +24,7 @@ import ( "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/exthttp" + "github.com/thanos-io/thanos/pkg/extprom" thanosmodel "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" @@ -163,7 +164,7 @@ func runSidecar( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(comp, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(comp, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, comp, httpProbe, diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 8031cd84e84..79c7315c3db 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -168,7 +168,7 @@ func runStore( statusProber := prober.Combine( httpProbe, grpcProbe, - prober.NewInstrumentation(component, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(component, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) srv := httpserver.New(logger, reg, component, httpProbe, diff --git a/pkg/replicate/replicator.go b/pkg/replicate/replicator.go index d419681f853..198faf8162d 100644 --- a/pkg/replicate/replicator.go +++ b/pkg/replicate/replicator.go @@ -24,6 +24,7 @@ import ( "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" + "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" "github.com/thanos-io/thanos/pkg/runutil" @@ -81,7 +82,7 @@ func RunReplicate( httpProbe := prober.NewHTTP() statusProber := prober.Combine( httpProbe, - prober.NewInstrumentation(component.Replicate, logger, prometheus.WrapRegistererWithPrefix("thanos_", reg)), + prober.NewInstrumentation(component.Replicate, logger, extprom.WrapRegistererWithPrefix("thanos_", reg)), ) s := http.New(logger, reg, component.Replicate, httpProbe, From 2262f2601a2b04d0be7a951d1d962e698520c44e Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Wed, 25 Mar 2020 19:35:44 +0000 Subject: [PATCH 050/190] e2e: Refactored compactor test; Fixed flakiness. (#2313) Also: * Reduced number of services for e2e for latency * Fixed halting * Improved logging. * Improved test cases (e.g added test for compaction and halting) Signed-off-by: Bartlomiej Plotka --- .github/workflows/e2e.yaml | 2 +- Makefile | 15 +- cmd/thanos/compact.go | 2 +- pkg/block/fetcher.go | 10 +- pkg/compact/compact.go | 11 +- pkg/compact/compact_test.go | 2 + pkg/promclient/promclient.go | 10 +- pkg/testutil/e2eutil/prometheus.go | 112 ++-- test/e2e/compact_test.go | 892 +++++++++++++---------------- test/e2e/e2ethanos/services.go | 12 +- test/e2e/query_test.go | 42 +- test/e2e/receive_test.go | 6 +- test/e2e/rule_test.go | 2 +- test/e2e/store_gateway_test.go | 10 +- 14 files changed, 502 insertions(+), 626 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index d3af4113282..1cc20d0dc21 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -25,4 +25,4 @@ jobs: key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - name: Run e2e docker-based tests. - run: make test-e2e-ci + run: make test-e2e diff --git a/Makefile b/Makefile index 47c81e63357..6ad246287b0 100644 --- a/Makefile +++ b/Makefile @@ -250,18 +250,9 @@ test-e2e: docker @echo ">> cleaning e2e test garbage." @rm -rf ./test/e2e/e2e_integration_test* @echo ">> running /test/e2e tests." - @go test -failfast -timeout 5m -v ./test/e2e/... - -.PHONY: test-e2e-ci -test-e2e-ci: ## Runs all Thanos e2e docker-based e2e tests from test/e2e, using limited resources. Required access to docker daemon. -test-e2e-ci: docker - @echo ">> cleaning docker environment." - @docker system prune -f --volumes - @echo ">> cleaning e2e test garbage." - @rm -rf ./test/e2e/e2e_integration_test* - @echo ">> running /test/e2e tests." - @go clean -testcache - @go test -failfast -parallel 1 -timeout 5m -v ./test/e2e/... + # NOTE(bwplotka): + # * If you see errors on CI (timeouts), but not locally, try to add -parallel 1 to limit to single CPU to reproduce small 1CPU machine. + @go test -failfast -timeout 10m -v ./test/e2e/... .PHONY: install-deps install-deps: ## Installs dependencies for integration tests. It installs supported versions of Prometheus and alertmanager to test against in integration tests. diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 3485da1758f..eb3a6ae012e 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -374,7 +374,7 @@ func runCompact( compactMainFn := func() error { if err := compactor.Compact(ctx); err != nil { - return errors.Wrap(err, "compaction failed") + return errors.Wrap(err, "compaction") } if !disableDownsampling { diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index a2a5be2723c..80377041d9a 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -585,17 +585,17 @@ func NewReplicaLabelRemover(logger log.Logger, replicaLabels []string) *ReplicaL } // Modify modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. -func (r *ReplicaLabelRemover) Modify(_ context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, view bool) error { +func (r *ReplicaLabelRemover) Modify(_ context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, _ bool) error { for u, meta := range metas { - labels := meta.Thanos.Labels + l := meta.Thanos.Labels for _, replicaLabel := range r.replicaLabels { - if _, exists := labels[replicaLabel]; exists { + if _, exists := l[replicaLabel]; exists { level.Debug(r.logger).Log("msg", "replica label removed", "label", replicaLabel) - delete(labels, replicaLabel) + delete(l, replicaLabel) modified.WithLabelValues(replicaRemovedMeta).Inc() } } - metas[u].Thanos.Labels = labels + metas[u].Thanos.Labels = l } return nil } diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index 7e6040d37b3..6443ba5ae80 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -187,10 +187,11 @@ func (s *Syncer) Groups() (res []*Group, err error) { groupKey := GroupKey(m.Thanos) g, ok := groups[groupKey] if !ok { + lbls := labels.FromMap(m.Thanos.Labels) g, err = newGroup( - log.With(s.logger, "compactionGroup", groupKey), + log.With(s.logger, "compactionGroup", fmt.Sprintf("%d@%v", m.Thanos.Downsample.Resolution, lbls.String()), "compactionGroupKey", groupKey), s.bkt, - labels.FromMap(m.Thanos.Labels), + lbls, m.Thanos.Downsample.Resolution, s.acceptMalformedIndex, s.enableVerticalCompaction, @@ -435,7 +436,7 @@ func (e HaltError) Error() string { // IsHaltError returns true if the base error is a HaltError. // If a multierror is passed, any halt error will return true. func IsHaltError(err error) bool { - if multiErr, ok := err.(terrors.MultiError); ok { + if multiErr, ok := errors.Cause(err).(terrors.MultiError); ok { for _, err := range multiErr { if _, ok := errors.Cause(err).(HaltError); ok { return true @@ -581,6 +582,8 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( // Check for overlapped blocks. overlappingBlocks := false if err := cg.areBlocksOverlapping(nil); err != nil { + // TODO(bwplotka): It would really nice if we could still check for other overlaps than replica. In fact this should be checked + // in syncer itself. Otherwise with vertical compaction enabled we will sacrifice this important check. if !cg.enableVerticalCompaction { return false, ulid.ULID{}, halt(errors.Wrap(err, "pre compaction overlap check")) } @@ -853,7 +856,7 @@ func (c *BucketCompactor) Compact(ctx context.Context) error { continue } } - errChan <- errors.Wrap(err, fmt.Sprintf("compaction failed for group %s", g.Key())) + errChan <- errors.Wrapf(err, "group %s", g.Key()) return } }() diff --git a/pkg/compact/compact_test.go b/pkg/compact/compact_test.go index a3c51f61c07..29ecba297de 100644 --- a/pkg/compact/compact_test.go +++ b/pkg/compact/compact_test.go @@ -36,6 +36,8 @@ func TestHaltMultiError(t *testing.T) { errs.Add(haltErr) testutil.Assert(t, IsHaltError(errs), "if any halt errors are present this should return true") + testutil.Assert(t, IsHaltError(errors.Wrap(errs, "wrap")), "halt error with wrap") + } func TestRetryMultiError(t *testing.T) { diff --git a/pkg/promclient/promclient.go b/pkg/promclient/promclient.go index d5f27e32b6a..b735ecbd259 100644 --- a/pkg/promclient/promclient.go +++ b/pkg/promclient/promclient.go @@ -349,6 +349,11 @@ func (c *Client) QueryInstant(ctx context.Context, base *url.URL, query string, } defer runutil.ExhaustCloseWithLogOnErr(c.logger, resp.Body, "query body") + body, err := ioutil.ReadAll(resp.Body) + if err != nil { + return nil, nil, errors.Wrap(err, "read query instant response") + } + // Decode only ResultType and load Result only as RawJson since we don't know // structure of the Result yet. var m struct { @@ -363,11 +368,6 @@ func (c *Client) QueryInstant(ctx context.Context, base *url.URL, query string, Warnings []string `json:"warnings"` } - body, err := ioutil.ReadAll(resp.Body) - if err != nil { - return nil, nil, errors.Wrap(err, "read query instant response") - } - if err = json.Unmarshal(body, &m); err != nil { return nil, nil, errors.Wrap(err, "unmarshal query instant response") } diff --git a/pkg/testutil/e2eutil/prometheus.go b/pkg/testutil/e2eutil/prometheus.go index fcc6ad2db5b..86d4805eff2 100644 --- a/pkg/testutil/e2eutil/prometheus.go +++ b/pkg/testutil/e2eutil/prometheus.go @@ -4,6 +4,7 @@ package e2eutil import ( + "bytes" "context" "encoding/json" "fmt" @@ -25,6 +26,7 @@ import ( "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/pkg/timestamp" "github.com/prometheus/prometheus/tsdb" "github.com/prometheus/prometheus/tsdb/index" "github.com/thanos-io/thanos/pkg/block/metadata" @@ -333,81 +335,22 @@ func CreateEmptyBlock(dir string, mint int64, maxt int64, extLset labels.Labels, return uid, nil } -// CreateBlockWithBlockDelay writes a block with the given series and numSamples samples each. -// Samples will be in the time range [mint, maxt) -// Block ID will be created with a delay of time duration blockDelay. -func CreateBlockWithBlockDelay( +// CreateBlock writes a block with the given series and numSamples samples each. +// Samples will be in the time range [mint, maxt). +func CreateBlock( ctx context.Context, dir string, series []labels.Labels, numSamples int, mint, maxt int64, - blockDelay time.Duration, extLset labels.Labels, resolution int64, ) (id ulid.ULID, err error) { - blockID, err := createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, false) - if err != nil { - return id, errors.Wrap(err, "block creation") - } - - id, err = ulid.New(uint64(time.Unix(int64(blockID.Time()), 0).Add(-blockDelay*1000).Unix()), nil) - if err != nil { - return id, errors.Wrap(err, "create block id") - } - - if blockID.Compare(id) == 0 { - return - } - - metaFile := path.Join(dir, blockID.String(), "meta.json") - r, err := os.Open(metaFile) - if err != nil { - return id, errors.Wrap(err, "open meta file") - } - - metaContent, err := ioutil.ReadAll(r) - if err != nil { - return id, errors.Wrap(err, "read meta file") - } - - m := &metadata.Meta{} - if err := json.Unmarshal(metaContent, m); err != nil { - return id, errors.Wrap(err, "meta.json corrupted") - } - m.ULID = id - m.Compaction.Sources = []ulid.ULID{id} - - if err := os.MkdirAll(path.Join(dir, id.String()), 0777); err != nil { - return id, errors.Wrap(err, "create directory") - } - - err = copyRecursive(path.Join(dir, blockID.String()), path.Join(dir, id.String())) - if err != nil { - return id, errors.Wrap(err, "copy directory") - } - - err = os.RemoveAll(path.Join(dir, blockID.String())) - if err != nil { - return id, errors.Wrap(err, "delete directory") - } - - jsonMeta, err := json.MarshalIndent(m, "", "\t") - if err != nil { - return id, errors.Wrap(err, "meta marshal") - } - - err = ioutil.WriteFile(path.Join(dir, id.String(), "meta.json"), jsonMeta, 0644) - if err != nil { - return id, errors.Wrap(err, "write meta.json file") - } - - return + return createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, false) } -// CreateBlock writes a block with the given series and numSamples samples each. -// Samples will be in the time range [mint, maxt). -func CreateBlock( +// CreateBlockWithTombstone is same as CreateBlock but leaves tombstones which mimics the Prometheus local block. +func CreateBlockWithTombstone( ctx context.Context, dir string, series []labels.Labels, @@ -416,20 +359,45 @@ func CreateBlock( extLset labels.Labels, resolution int64, ) (id ulid.ULID, err error) { - return createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, false) + return createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, true) } -// CreateBlockWithTombstone is same as CreateBlock but leaves tombstones which mimics the Prometheus local block. -func CreateBlockWithTombstone( +// CreateBlockWithBlockDelay writes a block with the given series and numSamples samples each. +// Samples will be in the time range [mint, maxt) +// Block ID will be created with a delay of time duration blockDelay. +func CreateBlockWithBlockDelay( ctx context.Context, dir string, series []labels.Labels, numSamples int, mint, maxt int64, + blockDelay time.Duration, extLset labels.Labels, resolution int64, -) (id ulid.ULID, err error) { - return createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, true) +) (ulid.ULID, error) { + blockID, err := createBlock(ctx, dir, series, numSamples, mint, maxt, extLset, resolution, false) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "block creation") + } + + id, err := ulid.New(uint64(timestamp.FromTime(timestamp.Time(int64(blockID.Time())).Add(-blockDelay))), bytes.NewReader(blockID.Entropy())) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "create block id") + } + + m, err := metadata.Read(path.Join(dir, blockID.String())) + if err != nil { + return ulid.ULID{}, errors.Wrap(err, "open meta file") + } + + m.ULID = id + m.Compaction.Sources = []ulid.ULID{id} + + if err := metadata.Write(log.NewNopLogger(), path.Join(dir, blockID.String()), m); err != nil { + return ulid.ULID{}, errors.Wrap(err, "write meta.json file") + } + + return id, os.Rename(path.Join(dir, blockID.String()), path.Join(dir, id.String())) } func createBlock( @@ -497,6 +465,10 @@ func createBlock( return id, errors.Wrap(err, "write block") } + if id.Compare(ulid.ULID{}) == 0 { + return id, errors.Errorf("nothing to write, asked for %d samples", numSamples) + } + if _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(dir, id.String()), metadata.Thanos{ Labels: extLset.Map(), Downsample: metadata.ThanosDownsample{Resolution: resolution}, diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go index a9061179051..f47dbf6d2dc 100644 --- a/test/e2e/compact_test.go +++ b/test/e2e/compact_test.go @@ -5,10 +5,10 @@ package e2e_test import ( "context" + "fmt" "os" "path" "path/filepath" - "strconv" "testing" "time" @@ -19,8 +19,6 @@ import ( "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" - "github.com/prometheus/prometheus/tsdb" - "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/objstore/s3" @@ -30,530 +28,428 @@ import ( "github.com/thanos-io/thanos/test/e2e/e2ethanos" ) -func TestCompact(t *testing.T) { +func TestCompactWithStoreGateway(t *testing.T) { t.Parallel() l := log.NewLogfmtLogger(os.Stdout) - - // blockDesc describes a recipe to generate blocks from the given series and external labels. type blockDesc struct { - series []labels.Labels - extLset labels.Labels - mint int64 - maxt int64 - samplesPerSeries int - } - - type retention struct { - resRaw string - res5m string - res1h string + series []labels.Labels + extLset labels.Labels + mint int64 + maxt int64 } delay := 30 * time.Minute - now := time.Now() - - for i, tcase := range []struct { - name string - blocks []blockDesc - replicaLabels []string - downsamplingEnabled bool - retention *retention - query string - - expected []model.Metric - expectNumModBlocks float64 - expectNumBlocks uint64 - expectedStats tsdb.BlockStats - }{ + // Make sure to take realistic timestamp for start. This is to align blocks as if they would be aligned on Prometheus. + // To have deterministic compaction, let's have fixed date: + now, err := time.Parse(time.RFC3339, "2020-03-25T08:00:00Z") + testutil.Ok(t, err) + + // Simulate real scenario, including more complex cases like overlaps if needed. + // TODO(bwplotka): Add blocks to downsample and test delayed delete. + blocks := []blockDesc{ + // Non overlapping blocks, not ready for compaction. { - name: "(full) vertically overlapping blocks with replica labels", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - }, - replicaLabels: []string{"replica", "rule_replica"}, - downsamplingEnabled: true, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - }, - }, - expectNumModBlocks: 3, - expectNumBlocks: 1, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 1, - NumSamples: 120, - }, + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), }, { - name: "(full) vertically overlapping blocks without replica labels", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 12, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 12, - }, - }, - downsamplingEnabled: true, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - "replica": "1", - }, - { - "a": "1", - "b": "2", - "ext1": "value1", - "replica": "2", - }, - }, - expectNumModBlocks: 0, - expectNumBlocks: 2, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 2, - NumSamples: 24, - }, + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), }, { - name: "(full) vertically overlapping blocks with replica labels downsampling disabled", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1", "ext2", "value2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - }, - replicaLabels: []string{"replica", "rule_replica"}, - downsamplingEnabled: false, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - "ext2": "value2", - }, - }, - expectNumModBlocks: 3, - expectNumBlocks: 1, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 1, - NumSamples: 120, - }, + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "no-compaction", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), }, - { - name: "(full) vertically overlapping blocks with replica labels, downsampling disabled and extra blocks", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1", "ext2", "value2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("c", "1", "d", "2")}, - extLset: labels.FromStrings("ext1", "value1", "ext2", "value2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("c", "1", "d", "2")}, - extLset: labels.FromStrings("ext3", "value3"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - }, - replicaLabels: []string{"replica", "rule_replica"}, - downsamplingEnabled: false, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - "ext2": "value2", - }, - }, - expectNumModBlocks: 3, - expectNumBlocks: 2, - expectedStats: tsdb.BlockStats{ - NumChunks: 6, - NumSeries: 3, - NumSamples: 360, - }, + } + blocks = append(blocks, + // Non overlapping blocks, ready for compaction. + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), }, - { - name: "(partial) vertically overlapping blocks with replica labels", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "ext2", "value2", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 119, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext2", "value2", "ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(1 * time.Hour)), - samplesPerSeries: 59, - }, - }, - replicaLabels: []string{"replica"}, - downsamplingEnabled: true, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - "ext2": "value2", - }, - }, - expectNumModBlocks: 2, - expectNumBlocks: 1, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 1, - NumSamples: 119, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "3")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "4")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "5")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(6 * time.Hour)), + maxt: timestamp.FromTime(now.Add(8 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "6")}, + extLset: labels.FromStrings("case", "compaction-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(8 * time.Hour)), + maxt: timestamp.FromTime(now.Add(10 * time.Hour)), + }, + + // Non overlapping blocks, ready for compaction, only after deduplication. + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "3")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "4")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "5")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "2"), + mint: timestamp.FromTime(now.Add(6 * time.Hour)), + maxt: timestamp.FromTime(now.Add(8 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "6")}, + extLset: labels.FromStrings("case", "compaction-ready-after-dedup", "replica", "1"), + mint: timestamp.FromTime(now.Add(8 * time.Hour)), + maxt: timestamp.FromTime(now.Add(10 * time.Hour)), + }, + + // Replica partial overlapping blocks, not ready for compaction, among no-overlapping blocks. + // NOTE: We put a- in front to make sure this will be compacted as first one (: + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), }, - { - name: "(shifted) vertically overlapping blocks with replica labels", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "1"), - mint: timestamp.FromTime(now.Add(30 * time.Minute)), - maxt: timestamp.FromTime(now.Add(150 * time.Minute)), - samplesPerSeries: 119, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(120 * time.Minute)), - samplesPerSeries: 119, - }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), }, - replicaLabels: []string{"replica"}, - downsamplingEnabled: true, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "2"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), }, - expectNumModBlocks: 2, - expectNumBlocks: 1, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 1, - NumSamples: 149, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "3"), + mint: timestamp.FromTime(now.Add(3 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), }, + extLset: labels.FromStrings("case", "a-partial-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), }, - { - name: "(full) vertically overlapping blocks with replica labels retention specified", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "replica", "2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1", "rule_replica", "1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 120, - }, + + // Multi-Replica partial overlapping blocks, not ready for compaction, among no-overlapping blocks. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), }, - replicaLabels: []string{"replica", "rule_replica"}, - downsamplingEnabled: true, - retention: &retention{ - resRaw: "0d", - res5m: "5m", - res1h: "5m", + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), }, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - }, + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "2", "replica", "1"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), }, - expectNumModBlocks: 3, - expectNumBlocks: 1, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 1, - NumSamples: 120, + // TODO(bwplotka): This is wrong, but let's fix in next PR. We should error out in this case as we should + // never support overlaps before we modify dedup labels. This probably means another check in fetcher. + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now.Add(1 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), }, + extLset: labels.FromStrings("case", "partial-multi-replica-overlap-dedup-ready", "rule_replica", "1", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), }, - { - name: "(full) vertically overlapping blocks without replica labels", - blocks: []blockDesc{ - { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value1"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 2, - }, { - series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, - extLset: labels.FromStrings("ext1", "value2"), - mint: timestamp.FromTime(now), - maxt: timestamp.FromTime(now.Add(2 * time.Hour)), - samplesPerSeries: 2, - }, + + // Replica full overlapping blocks, not ready for compaction, among no-overlapping blocks. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "1"), + labels.FromStrings("a", "1", "b", "2"), }, - replicaLabels: []string{"replica"}, - downsamplingEnabled: true, - query: "{a=\"1\"}", - - expected: []model.Metric{ - { - "a": "1", - "b": "2", - "ext1": "value1", - }, - { - "a": "1", - "b": "2", - "ext1": "value2", - }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "3"), }, - expectNumModBlocks: 0, - expectNumBlocks: 2, - expectedStats: tsdb.BlockStats{ - NumChunks: 2, - NumSeries: 2, - NumSamples: 4, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "2"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + }, + // Extra. + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "4"), }, + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(2 * time.Hour)), + maxt: timestamp.FromTime(now.Add(4 * time.Hour)), }, - } { - i := i - tcase := tcase - t.Run(tcase.name, func(t *testing.T) { - s, err := e2e.NewScenario("e2e_test_compact_" + strconv.Itoa(i)) - testutil.Ok(t, err) - defer s.Close() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. - - dir := filepath.Join(s.SharedDir(), "tmp_"+strconv.Itoa(i)) - testutil.Ok(t, os.MkdirAll(filepath.Join(s.SharedDir(), dir), os.ModePerm)) - - bucket := "thanos_" + strconv.Itoa(i) - - // TODO(kakkoyun): Move to shared minio to improve test speed. - m := e2edb.NewMinio(8080+i, bucket) - testutil.Ok(t, s.StartAndWaitReady(m)) - - bkt, err := s3.NewBucketWithConfig(l, s3.Config{ - Bucket: bucket, - AccessKey: e2edb.MinioAccessKey, - SecretKey: e2edb.MinioSecretKey, - Endpoint: m.HTTPEndpoint(), // We need separate client config, when connecting to minio from outside. - Insecure: true, - }, "test-feed") - testutil.Ok(t, err) - - ctx, cancel := context.WithTimeout(context.Background(), 90*time.Second) - defer cancel() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. - - var rawBlockIds []ulid.ULID - for _, b := range tcase.blocks { - id, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, b.samplesPerSeries, b.mint, b.maxt, delay, b.extLset, 0) - testutil.Ok(t, err) - testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id.String()), id.String())) - rawBlockIds = append(rawBlockIds, id) - } - - dedupFlags := make([]string, 0, len(tcase.replicaLabels)) - for _, l := range tcase.replicaLabels { - dedupFlags = append(dedupFlags, "--deduplication.replica-label="+l) - } - - retenFlags := make([]string, 0, 3) - if tcase.retention != nil { - retenFlags = append(retenFlags, "--retention.resolution-raw="+tcase.retention.resRaw) - retenFlags = append(retenFlags, "--retention.resolution-5m="+tcase.retention.res5m) - retenFlags = append(retenFlags, "--retention.resolution-1h="+tcase.retention.res1h) - } - - cmpt, err := e2ethanos.NewCompactor(s.SharedDir(), strconv.Itoa(i), client.BucketConfig{ - Type: client.S3, - Config: s3.Config{ - Bucket: bucket, - AccessKey: e2edb.MinioAccessKey, - SecretKey: e2edb.MinioSecretKey, - Endpoint: m.NetworkHTTPEndpoint(), - Insecure: true, - }, + blockDesc{ + series: []labels.Labels{ + labels.FromStrings("a", "1", "b", "2"), + labels.FromStrings("a", "1", "b", "5"), }, - nil, // relabel configs. - tcase.downsamplingEnabled, - append(dedupFlags, retenFlags...)..., - ) - testutil.Ok(t, err) - testutil.Ok(t, s.StartAndWaitReady(cmpt)) - testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIds))), "thanos_blocks_meta_synced")) - testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) - testutil.Ok(t, cmpt.WaitSumMetrics(e2e.Equals(tcase.expectNumModBlocks), "thanos_blocks_meta_modified")) - - str, err := e2ethanos.NewStoreGW(s.SharedDir(), "compact_"+strconv.Itoa(i), client.BucketConfig{ - Type: client.S3, - Config: s3.Config{ - Bucket: bucket, - AccessKey: e2edb.MinioAccessKey, - SecretKey: e2edb.MinioSecretKey, - Endpoint: m.NetworkHTTPEndpoint(), - Insecure: true, - }, - }) - testutil.Ok(t, err) - testutil.Ok(t, s.StartAndWaitReady(str)) - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(tcase.expectNumBlocks)), "thanos_blocks_meta_synced")) - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) - - q, err := e2ethanos.NewQuerier(s.SharedDir(), "compact_"+strconv.Itoa(i), []string{str.GRPCNetworkEndpoint()}, nil) - testutil.Ok(t, err) - testutil.Ok(t, s.StartAndWaitReady(q)) - - ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) - defer cancel() - - queryAndAssert(t, ctx, q.HTTPEndpoint(), - tcase.query, - promclient.QueryOptions{ - Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. - }, - tcase.expected, - ) - - var ( - actualNumBlocks uint64 - actual tsdb.BlockStats - sources []ulid.ULID - ) - testutil.Ok(t, bkt.Iter(ctx, "", func(n string) error { - id, ok := block.IsBlockDir(n) - if !ok { - return nil - } - - actualNumBlocks += 1 - - meta, err := block.DownloadMeta(ctx, l, bkt, id) - if err != nil { - return err - } - - actual.NumChunks += meta.Stats.NumChunks - actual.NumSeries += meta.Stats.NumSeries - actual.NumSamples += meta.Stats.NumSamples - sources = append(sources, meta.Compaction.Sources...) - return nil - })) - - // Make sure only necessary amount of blocks fetched from store, to observe affects of offline deduplication. - testutil.Equals(t, tcase.expectNumBlocks, actualNumBlocks) - if len(rawBlockIds) < int(tcase.expectNumBlocks) { // check sources only if compacted. - testutil.Equals(t, rawBlockIds, sources) - } - testutil.Equals(t, tcase.expectedStats.NumChunks, actual.NumChunks) - testutil.Equals(t, tcase.expectedStats.NumSeries, actual.NumSeries) - testutil.Equals(t, tcase.expectedStats.NumSamples, actual.NumSamples) - }) + extLset: labels.FromStrings("case", "full-replica-overlap-dedup-ready", "replica", "1"), + mint: timestamp.FromTime(now.Add(4 * time.Hour)), + maxt: timestamp.FromTime(now.Add(6 * time.Hour)), + }, + ) + + s, err := e2e.NewScenario("e2e_test_compact") + testutil.Ok(t, err) + defer s.Close() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + dir := filepath.Join(s.SharedDir(), "tmp") + testutil.Ok(t, os.MkdirAll(dir, os.ModePerm)) + + const bucket = "compact_test" + m := e2edb.NewMinio(8080, bucket) + testutil.Ok(t, s.StartAndWaitReady(m)) + + bkt, err := s3.NewBucketWithConfig(l, s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.HTTPEndpoint(), // We need separate client config, when connecting to minio from outside. + Insecure: true, + }, "test-feed") + testutil.Ok(t, err) + + ctx, cancel := context.WithTimeout(context.Background(), 90*time.Second) + defer cancel() // TODO(kakkoyun): Change with t.CleanUp after go 1.14 update. + + rawBlockIDs := map[ulid.ULID]struct{}{} + for _, b := range blocks { + id, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, 120, b.mint, b.maxt, delay, b.extLset, 0) + testutil.Ok(t, err) + testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id.String()), id.String())) + rawBlockIDs[id] = struct{}{} } + + svcConfig := client.BucketConfig{ + Type: client.S3, + Config: s3.Config{ + Bucket: bucket, + AccessKey: e2edb.MinioAccessKey, + SecretKey: e2edb.MinioSecretKey, + Endpoint: m.NetworkHTTPEndpoint(), + Insecure: true, + }, + } + str, err := e2ethanos.NewStoreGW(s.SharedDir(), "1", svcConfig) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(str)) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + + q, err := e2ethanos.NewQuerier(s.SharedDir(), "1", []string{str.GRPCNetworkEndpoint()}, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(q)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + // Check if query detects current series, even if overlapped. + queryAndAssert(t, ctx, q.HTTPEndpoint(), + fmt.Sprintf(`count_over_time({a="1"}[12h] offset %ds)`, int64(-1*time.Since(now.Add(12*time.Hour)).Seconds())), + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. + }, + model.Vector{ + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "3"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready", "replica": "3"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 320, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready", "replica": "2"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + }, + ) + + t.Run("no replica label with overlaps should halt compactor", func(t *testing.T) { + c, err := e2ethanos.NewCompactor(s.SharedDir(), "expect-to-halt", svcConfig, nil) + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(c)) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + + // Expect compactor halted. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(1), "thanos_compactor_halted")) + + // We expect no ops. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_iterations_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_vertical_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(1), "thanos_compact_group_compactions_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_compaction_runs_started_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compact_group_compaction_runs_completed_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + testutil.Ok(t, s.Stop(c)) + }) + t.Run("native vertical deduplication should kick in", func(t *testing.T) { + c, err := e2ethanos.NewCompactor(s.SharedDir(), "working", svcConfig, nil, "--deduplication.replica-label=replica", "--deduplication.replica-label=rule_replica") + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(c)) + + // NOTE: We cannot assert on intermediate `thanos_blocks_meta_` metrics as those are gauge and change dynamically due to many + // compaction groups. Wait for at least first compaction iteration (next is in 5m). + testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_marked_for_deletion_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(5), "thanos_compact_group_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_vertical_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_started_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_completed_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + + // We had 8 deletions based on 3 compactios, so 3 new blocks. + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_halted")) + // Make sure compactor does not modify anything else over time. + testutil.Ok(t, s.Stop(c)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + // Check if query detects new blocks. + queryAndAssert(t, ctx, q.HTTPEndpoint(), + fmt.Sprintf(`count_over_time({a="1"}[12h] offset %ds)`, int64(-1*time.Since(now.Add(12*time.Hour)).Seconds())), + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. + }, + model.Vector{ + // NOTE(bwplotka): Even after deduplication some series has still replica labels. This is because those blocks did not overlap yet with anything. + // This is fine as querier deduplication will remove it if needed. + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + }, + ) + + // Store view: + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + }) } diff --git a/test/e2e/e2ethanos/services.go b/test/e2e/e2ethanos/services.go index 49887505ba9..4ddc51e2ba9 100644 --- a/test/e2e/e2ethanos/services.go +++ b/test/e2e/e2ethanos/services.go @@ -27,9 +27,11 @@ import ( const logLevel = "info" +// Same as default for now. var defaultBackoffConfig = util.BackoffConfig{ MinBackoff: 300 * time.Millisecond, - MaxBackoff: 15 * time.Second, + MaxBackoff: 600 * time.Millisecond, + MaxRetries: 50, } // TODO(bwplotka): Run against multiple? @@ -344,7 +346,7 @@ func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, return store, nil } -func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfig, relabelConfig []relabel.Config, downsamplingEnabled bool, extArgs ...string) (*e2e.HTTPService, error) { +func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfig, relabelConfig []relabel.Config, extArgs ...string) (*e2e.HTTPService, error) { dir := filepath.Join(sharedDir, "data", "compact", name) container := filepath.Join(e2e.ContainerSharedDir, "data", "compact", name) @@ -362,10 +364,6 @@ func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfi return nil, errors.Wrapf(err, "generate compact relabel file: %v", relabelConfig) } - if !downsamplingEnabled { - extArgs = append(extArgs, "--downsampling.disable") - } - compactor := e2e.NewHTTPService( fmt.Sprintf("compact-%s", name), DefaultImage(), @@ -376,7 +374,7 @@ func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfi "--objstore.config": string(bktConfigBytes), "--http-address": ":80", "--delete-delay": "0s", - "--block-sync-concurrency": "1", + "--block-sync-concurrency": "20", "--selector.relabel-config": string(relabelConfigBytes), "--wait": "", }), extArgs...)...), diff --git a/test/e2e/query_test.go b/test/e2e/query_test.go index 914d1c6a929..7ef16cc39d4 100644 --- a/test/e2e/query_test.go +++ b/test/e2e/query_test.go @@ -7,11 +7,13 @@ import ( "context" "fmt" "net/url" + "os" "sort" "testing" "time" "github.com/cortexproject/cortex/integration/e2e" + "github.com/go-kit/kit/log" "github.com/pkg/errors" "github.com/prometheus/common/model" "github.com/thanos-io/thanos/pkg/promclient" @@ -97,7 +99,7 @@ func TestQuery(t *testing.T) { testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(5), "thanos_store_nodes_grpc_connections")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: false, }, []model.Metric{ { @@ -129,7 +131,7 @@ func TestQuery(t *testing.T) { }) // With deduplication. - queryAndAssert(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: true, }, []model.Metric{ { @@ -159,35 +161,47 @@ func urlParse(t *testing.T, addr string) *url.URL { return u } -func queryAndAssert(t *testing.T, ctx context.Context, addr string, query string, opts promclient.QueryOptions, expected []model.Metric) { +func instantQuery(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expectedSeriesLen int) model.Vector { t.Helper() - fmt.Println("queryAndAssert: Waiting for", len(expected), "results for query", query) + fmt.Println("queryAndAssert: Waiting for", expectedSeriesLen, "results for query", q) var result model.Vector - testutil.Ok(t, runutil.Retry(time.Second, ctx.Done(), func() error { - res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, "http://"+addr), query, time.Now(), opts) + testutil.Ok(t, runutil.RetryWithLog(log.NewLogfmtLogger(os.Stdout), time.Second, ctx.Done(), func() error { + res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, "http://"+addr), q, time.Now(), opts) if err != nil { return err } if len(warnings) > 0 { - // we don't expect warnings. return errors.Errorf("unexpected warnings %s", warnings) } - if len(result) != len(res) { - fmt.Println("queryAndAssert: New result:", res) - } - - if len(res) != len(expected) { - return errors.Errorf("unexpected result size, expected %d; result: %v", len(expected), res) + if len(res) != expectedSeriesLen { + return errors.Errorf("unexpected result size, expected %d; result %d: %v", expectedSeriesLen, len(res), res) } result = res return nil })) - sortResults(result) + return result +} + +func queryAndAssertSeries(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expected []model.Metric) { + t.Helper() + + result := instantQuery(t, ctx, addr, q, opts, len(expected)) for i, exp := range expected { testutil.Equals(t, exp, result[i].Metric) } } + +func queryAndAssert(t *testing.T, ctx context.Context, addr string, q string, opts promclient.QueryOptions, expected model.Vector) { + t.Helper() + + sortResults(expected) + result := instantQuery(t, ctx, addr, q, opts, len(expected)) + for _, r := range result { + r.Timestamp = 0 // Does not matter for us. + } + testutil.Equals(t, expected, result) +} diff --git a/test/e2e/receive_test.go b/test/e2e/receive_test.go index fda1f595912..9c741c91155 100644 --- a/test/e2e/receive_test.go +++ b/test/e2e/receive_test.go @@ -73,7 +73,7 @@ func TestReceive(t *testing.T) { testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(3), "thanos_store_nodes_grpc_connections")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: false, }, []model.Metric{ { @@ -145,7 +145,7 @@ func TestReceive(t *testing.T) { testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(3), "thanos_store_nodes_grpc_connections")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: false, }, []model.Metric{ { @@ -214,7 +214,7 @@ func TestReceive(t *testing.T) { testutil.Ok(t, q.WaitSumMetrics(e2e.Equals(2), "thanos_store_nodes_grpc_connections")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), queryUpWithoutInstance, promclient.QueryOptions{ Deduplicate: false, }, []model.Metric{ { diff --git a/test/e2e/rule_test.go b/test/e2e/rule_test.go index a6d7d845add..3a601608b8a 100644 --- a/test/e2e/rule_test.go +++ b/test/e2e/rule_test.go @@ -436,7 +436,7 @@ func TestRule(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 3*time.Minute) defer cancel() - queryAndAssert(t, ctx, q.HTTPEndpoint(), "ALERTS", promclient.QueryOptions{ + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "ALERTS", promclient.QueryOptions{ Deduplicate: false, }, []model.Metric{ { diff --git a/test/e2e/store_gateway_test.go b/test/e2e/store_gateway_test.go index d663c71e710..27d736eaa99 100644 --- a/test/e2e/store_gateway_test.go +++ b/test/e2e/store_gateway_test.go @@ -109,7 +109,7 @@ func TestStoreGateway(t *testing.T) { testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) t.Run("query works", func(t *testing.T) { - queryAndAssert(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", promclient.QueryOptions{ Deduplicate: false, }, @@ -134,7 +134,7 @@ func TestStoreGateway(t *testing.T) { testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(6), "thanos_bucket_store_series_data_fetched")) testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(2), "thanos_bucket_store_series_blocks_queried")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", promclient.QueryOptions{ Deduplicate: true, }, @@ -164,7 +164,7 @@ func TestStoreGateway(t *testing.T) { testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) // TODO(bwplotka): Entries are still in LRU cache. - queryAndAssert(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", promclient.QueryOptions{ Deduplicate: false, }, @@ -193,7 +193,7 @@ func TestStoreGateway(t *testing.T) { testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1), "thanos_bucket_store_block_drops_total")) testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", promclient.QueryOptions{ Deduplicate: false, }, @@ -226,7 +226,7 @@ func TestStoreGateway(t *testing.T) { testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(1+1), "thanos_bucket_store_block_drops_total")) testutil.Ok(t, s1.WaitSumMetrics(e2e.Equals(0), "thanos_bucket_store_block_load_failures_total")) - queryAndAssert(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", + queryAndAssertSeries(t, ctx, q.HTTPEndpoint(), "{a=\"1\"}", promclient.QueryOptions{ Deduplicate: false, }, From c0406576a9a0b8fa69b7402632d29d3136c1cfa9 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 25 Mar 2020 20:39:13 +0100 Subject: [PATCH 051/190] pkg/store: Report no data if no stores discovered (#2310) * pkg/store: Report no data if no stores discovered Signed-off-by: Frederic Branczyk * CHANGELOG.md: Add timespan reported on empty stores Signed-off-by: Frederic Branczyk --- CHANGELOG.md | 1 + pkg/store/proxy.go | 4 ++-- pkg/store/proxy_test.go | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4fa0b167357..e40362fd540 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ Since there are no consistency guarantees provided by some Object Storage provid - [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. - [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. - [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: initlialization fails with filepath bad pattern error and rule manager update error. +- [#2310](https://github.com/thanos-io/thanos/pull/2310) query: Report timespan 0 to 0 when discovering no stores. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 5aeaca32588..8440de2f966 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -109,9 +109,9 @@ func (s *ProxyStore) Info(ctx context.Context, r *storepb.InfoRequest) (*storepb maxTime := int64(0) stores := s.stores() - // Edge case: we have all of the data if there are no stores. + // Edge case: we have no data if there are no stores. if len(stores) == 0 { - res.MaxTime = math.MaxInt64 + res.MaxTime = 0 res.MinTime = 0 return res, nil diff --git a/pkg/store/proxy_test.go b/pkg/store/proxy_test.go index c90247ee396..1e49cce4564 100644 --- a/pkg/store/proxy_test.go +++ b/pkg/store/proxy_test.go @@ -7,7 +7,6 @@ import ( "context" "fmt" "io" - "math" "os" "sort" "testing" @@ -69,7 +68,7 @@ func TestProxyStore_Info(t *testing.T) { testutil.Equals(t, []storepb.LabelSet(nil), resp.LabelSets) testutil.Equals(t, storepb.StoreType_QUERY, resp.StoreType) testutil.Equals(t, int64(0), resp.MinTime) - testutil.Equals(t, int64(math.MaxInt64), resp.MaxTime) + testutil.Equals(t, int64(0), resp.MaxTime) } func TestProxyStore_Series(t *testing.T) { From c1d7f43ec05d9137e7e7b42d6ab47e644fd99344 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Wed, 25 Mar 2020 20:43:07 +0100 Subject: [PATCH 052/190] Added max_item_size to Memcached client (#2304) * Added max_item_size to Memcached client Signed-off-by: Marco Pracucci * Changed imports order and splitted tests Signed-off-by: Marco Pracucci * Fixed type casting Signed-off-by: Marco Pracucci * Changed imports grouping Signed-off-by: Marco Pracucci * Changed memcached max_item_size default from 0 to 1MB Signed-off-by: Marco Pracucci * Increased e2e tests timeout Signed-off-by: Marco Pracucci * Fixed typo in CHANGELOG Signed-off-by: Marco Pracucci * Reverted Makefile changes Signed-off-by: Marco Pracucci --- CHANGELOG.md | 1 + cmd/thanos/store.go | 2 +- docs/components/store.md | 2 ++ pkg/cacheutil/memcached_client.go | 25 +++++++++++++-- pkg/cacheutil/memcached_client_test.go | 40 +++++++++++++++++++++++- pkg/{store/cache => model}/units.go | 2 +- pkg/{store/cache => model}/units_test.go | 2 +- pkg/store/cache/inmemory.go | 5 +-- 8 files changed, 71 insertions(+), 8 deletions(-) rename pkg/{store/cache => model}/units.go (96%) rename pkg/{store/cache => model}/units_test.go (96%) diff --git a/CHANGELOG.md b/CHANGELOG.md index e40362fd540..3f80a55e1da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. - [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. - [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. +- [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: Added `max_item_size` config option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. ### Changed diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 79c7315c3db..b3609440aaa 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -226,7 +226,7 @@ func runStore( indexCache, err = storecache.NewIndexCache(logger, indexCacheContentYaml, reg) } else { indexCache, err = storecache.NewInMemoryIndexCacheWithConfig(logger, reg, storecache.InMemoryIndexCacheConfig{ - MaxSize: storecache.Bytes(indexCacheSizeBytes), + MaxSize: model.Bytes(indexCacheSizeBytes), MaxItemSize: storecache.DefaultInMemoryIndexCacheConfig.MaxItemSize, }) } diff --git a/docs/components/store.md b/docs/components/store.md index c24d5288a6d..f5195229807 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -212,6 +212,7 @@ config: max_idle_connections: 0 max_async_concurrency: 0 max_async_buffer_size: 0 + max_item_size: 1MiB max_get_multi_concurrency: 0 max_get_multi_batch_size: 0 dns_provider_update_interval: 0s @@ -229,6 +230,7 @@ While the remaining settings are **optional**: - `max_async_buffer_size`: maximum number of enqueued asynchronous operations allowed. - `max_get_multi_concurrency`: maximum number of concurrent connections when fetching keys. If set to `0`, the concurrency is unlimited. - `max_get_multi_batch_size`: maximum number of keys a single underlying operation should fetch. If more keys are specified, internally keys are splitted into multiple batches and fetched concurrently, honoring `max_get_multi_concurrency`. If set to `0`, the batch size is unlimited. +- `max_item_size`: maximum size of an item to be stored in memcached. This option should be set to the same value of memcached `-I` flag (defaults to 1MB) in order to avoid wasting network round trips to store items larger than the max item size allowed in memcached. If set to `0`, the item size is unlimited. - `dns_provider_update_interval`: the DNS discovery update interval. ## Index Header diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index d4b8e832f60..9c522bcc7ca 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -17,13 +17,15 @@ import ( "github.com/thanos-io/thanos/pkg/discovery/dns" "github.com/thanos-io/thanos/pkg/extprom" "github.com/thanos-io/thanos/pkg/gate" + "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/tracing" yaml "gopkg.in/yaml.v2" ) const ( - opSet = "set" - opGetMulti = "getmulti" + opSet = "set" + opGetMulti = "getmulti" + reasonMaxItemSize = "max-item-size" ) var ( @@ -35,6 +37,7 @@ var ( MaxIdleConnections: 100, MaxAsyncConcurrency: 20, MaxAsyncBufferSize: 10000, + MaxItemSize: model.Bytes(1024 * 1024), MaxGetMultiConcurrency: 100, MaxGetMultiBatchSize: 0, DNSProviderUpdateInterval: 10 * time.Second, @@ -88,6 +91,11 @@ type MemcachedClientConfig struct { // running GetMulti() operations. If set to 0, concurrency is unlimited. MaxGetMultiConcurrency int `yaml:"max_get_multi_concurrency"` + // MaxItemSize specifies the maximum size of an item stored in memcached. Bigger + // items are skipped to be stored by the client. If set to 0, no maximum size is + // enforced. + MaxItemSize model.Bytes `yaml:"max_item_size"` + // MaxGetMultiBatchSize specifies the maximum number of keys a single underlying // GetMulti() should run. If more keys are specified, internally keys are splitted // into multiple batches and fetched concurrently, honoring MaxGetMultiConcurrency @@ -140,6 +148,7 @@ type memcachedClient struct { // Tracked metrics. operations *prometheus.CounterVec failures *prometheus.CounterVec + skipped *prometheus.CounterVec duration *prometheus.HistogramVec } @@ -215,6 +224,12 @@ func newMemcachedClient( ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) + c.skipped = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_memcached_operation_skipped_total", + Help: "Total number of operations against memcached that have been skipped.", + ConstLabels: prometheus.Labels{"name": name}, + }, []string{"operation", "reason"}) + c.duration = promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_memcached_operation_duration_seconds", Help: "Duration of operations against memcached.", @@ -250,6 +265,12 @@ func (c *memcachedClient) Stop() { } func (c *memcachedClient) SetAsync(ctx context.Context, key string, value []byte, ttl time.Duration) (err error) { + // Skip hitting memcached at all if the item is bigger than the max allowed size. + if c.config.MaxItemSize > 0 && uint64(len(value)) > uint64(c.config.MaxItemSize) { + c.skipped.WithLabelValues(opSet, reasonMaxItemSize).Inc() + return nil + } + return c.enqueueAsync(func() { start := time.Now() c.operations.WithLabelValues(opSet).Inc() diff --git a/pkg/cacheutil/memcached_client_test.go b/pkg/cacheutil/memcached_client_test.go index ffee115cfe4..ede486a1a13 100644 --- a/pkg/cacheutil/memcached_client_test.go +++ b/pkg/cacheutil/memcached_client_test.go @@ -14,6 +14,7 @@ import ( "github.com/go-kit/kit/log" "github.com/pkg/errors" prom_testutil "github.com/prometheus/client_golang/prometheus/testutil" + "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -76,6 +77,7 @@ addresses: testutil.Equals(t, defaultMemcachedClientConfig.DNSProviderUpdateInterval, cache.config.DNSProviderUpdateInterval) testutil.Equals(t, defaultMemcachedClientConfig.MaxGetMultiConcurrency, cache.config.MaxGetMultiConcurrency) testutil.Equals(t, defaultMemcachedClientConfig.MaxGetMultiBatchSize, cache.config.MaxGetMultiBatchSize) + testutil.Equals(t, defaultMemcachedClientConfig.MaxItemSize, cache.config.MaxItemSize) // Should instance a memcached client with configured YAML config. conf = []byte(` @@ -87,6 +89,7 @@ max_idle_connections: 1 max_async_concurrency: 1 max_async_buffer_size: 1 max_get_multi_concurrency: 1 +max_item_size: 1MiB max_get_multi_batch_size: 1 dns_provider_update_interval: 1s `) @@ -102,6 +105,7 @@ dns_provider_update_interval: 1s testutil.Equals(t, 1*time.Second, cache.config.DNSProviderUpdateInterval) testutil.Equals(t, 1, cache.config.MaxGetMultiConcurrency) testutil.Equals(t, 1, cache.config.MaxGetMultiBatchSize) + testutil.Equals(t, model.Bytes(1024*1024), cache.config.MaxItemSize) } func TestMemcachedClient_SetAsync(t *testing.T) { @@ -120,9 +124,43 @@ func TestMemcachedClient_SetAsync(t *testing.T) { testutil.Ok(t, client.SetAsync(ctx, "key-2", []byte("value-2"), time.Second)) testutil.Ok(t, backendMock.waitItems(2)) + actual, err := client.getMultiSingle(ctx, []string{"key-1", "key-2"}) + testutil.Ok(t, err) + testutil.Equals(t, []byte("value-1"), actual["key-1"].Value) + testutil.Equals(t, []byte("value-2"), actual["key-2"].Value) + testutil.Equals(t, 2.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opSet))) - testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) + testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.failures.WithLabelValues(opSet))) + testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.skipped.WithLabelValues(opSet, reasonMaxItemSize))) +} + +func TestMemcachedClient_SetAsyncWithCustomMaxItemSize(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second)() + + ctx := context.Background() + config := defaultMemcachedClientConfig + config.Addresses = []string{"127.0.0.1:11211"} + config.MaxItemSize = model.Bytes(10) + backendMock := newMemcachedClientBackendMock() + + client, err := prepare(config, backendMock) + testutil.Ok(t, err) + defer client.Stop() + + testutil.Ok(t, client.SetAsync(ctx, "key-1", []byte("value-1"), time.Second)) + testutil.Ok(t, client.SetAsync(ctx, "key-2", []byte("value-2-too-long-to-be-stored"), time.Second)) + testutil.Ok(t, backendMock.waitItems(1)) + + actual, err := client.getMultiSingle(ctx, []string{"key-1", "key-2"}) + testutil.Ok(t, err) + testutil.Equals(t, []byte("value-1"), actual["key-1"].Value) + testutil.Equals(t, (*memcache.Item)(nil), actual["key-2"]) + + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opSet))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.operations.WithLabelValues(opGetMulti))) testutil.Equals(t, 0.0, prom_testutil.ToFloat64(client.failures.WithLabelValues(opSet))) + testutil.Equals(t, 1.0, prom_testutil.ToFloat64(client.skipped.WithLabelValues(opSet, reasonMaxItemSize))) } func TestMemcachedClient_GetMulti(t *testing.T) { diff --git a/pkg/store/cache/units.go b/pkg/model/units.go similarity index 96% rename from pkg/store/cache/units.go rename to pkg/model/units.go index 156ea54ddbd..cd4944f6d7e 100644 --- a/pkg/store/cache/units.go +++ b/pkg/model/units.go @@ -1,7 +1,7 @@ // Copyright (c) The Thanos Authors. // Licensed under the Apache License 2.0. -package storecache +package model import ( "github.com/alecthomas/units" diff --git a/pkg/store/cache/units_test.go b/pkg/model/units_test.go similarity index 96% rename from pkg/store/cache/units_test.go rename to pkg/model/units_test.go index bde202a2f17..1b3f53f18da 100644 --- a/pkg/store/cache/units_test.go +++ b/pkg/model/units_test.go @@ -1,7 +1,7 @@ // Copyright (c) The Thanos Authors. // Licensed under the Apache License 2.0. -package storecache +package model import ( "testing" diff --git a/pkg/store/cache/inmemory.go b/pkg/store/cache/inmemory.go index 075982a4733..f91ec5de48e 100644 --- a/pkg/store/cache/inmemory.go +++ b/pkg/store/cache/inmemory.go @@ -17,6 +17,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/prometheus/pkg/labels" + "github.com/thanos-io/thanos/pkg/model" "gopkg.in/yaml.v2" ) @@ -52,9 +53,9 @@ type InMemoryIndexCache struct { // InMemoryIndexCacheConfig holds the in-memory index cache config. type InMemoryIndexCacheConfig struct { // MaxSize represents overall maximum number of bytes cache can contain. - MaxSize Bytes `yaml:"max_size"` + MaxSize model.Bytes `yaml:"max_size"` // MaxItemSize represents maximum size of single item. - MaxItemSize Bytes `yaml:"max_item_size"` + MaxItemSize model.Bytes `yaml:"max_item_size"` } // parseInMemoryIndexCacheConfig unmarshals a buffer into a InMemoryIndexCacheConfig with default values. From e623a33f3fb2c5af7f3961ceba2de0d8f8984654 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 26 Mar 2020 10:05:51 +0000 Subject: [PATCH 053/190] tesutil: Enchanced testutil, refactored for our needs. (#2325) Changed LICENSE as we no longer use version we copied back then. Most of it was reimplemented. Why? * Much richer diff (inspired by testify packages * Consistent API * Less indentation. Signed-off-by: Bartlomiej Plotka --- go.mod | 2 + pkg/testutil/testutil.go | 140 +++++++++++++++++++++++++++------------ 2 files changed, 98 insertions(+), 44 deletions(-) diff --git a/go.mod b/go.mod index fbc1020c09f..fd4b6e3d848 100644 --- a/go.mod +++ b/go.mod @@ -11,6 +11,7 @@ require ( github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b github.com/cespare/xxhash v1.1.0 github.com/cortexproject/cortex v0.6.1-0.20200228110116-92ab6cbe0995 + github.com/davecgh/go-spew v1.1.1 github.com/facette/natsort v0.0.0-20181210072756-2cd4dd1e2dcb github.com/fatih/structtag v1.1.0 github.com/fortytw2/leaktest v1.3.0 @@ -37,6 +38,7 @@ require ( github.com/opentracing/basictracer-go v1.0.0 github.com/opentracing/opentracing-go v1.1.1-0.20200124165624-2876d2018785 github.com/pkg/errors v0.9.1 + github.com/pmezard/go-difflib v1.0.0 github.com/prometheus/alertmanager v0.20.0 github.com/prometheus/client_golang v1.5.0 github.com/prometheus/client_model v0.2.0 diff --git a/pkg/testutil/testutil.go b/pkg/testutil/testutil.go index f4a3933fb41..e1ba298d7eb 100644 --- a/pkg/testutil/testutil.go +++ b/pkg/testutil/testutil.go @@ -1,24 +1,5 @@ -// The MIT License (MIT) - -// Copyright (c) 2014 Ben Johnson - -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: - -// The above copyright notice and this permission notice shall be included in all -// copies or substantial portions of the Software. - -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -// SOFTWARE. +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. package testutil @@ -29,50 +10,121 @@ import ( "runtime" "testing" + "github.com/davecgh/go-spew/spew" + "github.com/pmezard/go-difflib/difflib" "github.com/prometheus/client_golang/prometheus" dto "github.com/prometheus/client_model/go" ) // Assert fails the test if the condition is false. -func Assert(tb testing.TB, condition bool, msg string, v ...interface{}) { - if !condition { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: "+msg+"\033[39m\n\n", append([]interface{}{filepath.Base(file), line}, v...)...) - tb.FailNow() +func Assert(tb testing.TB, condition bool, v ...interface{}) { + if condition { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d: "+msg+"\033[39m\n\n", append([]interface{}{filepath.Base(file), line}, v...)...) } // Ok fails the test if an err is not nil. -func Ok(tb testing.TB, err error) { - if err != nil { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: unexpected error: %s\033[39m\n\n", filepath.Base(file), line, err.Error()) - tb.FailNow() +func Ok(tb testing.TB, err error, v ...interface{}) { + if err == nil { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n unexpected error: %s\033[39m\n\n", filepath.Base(file), line, err.Error()) } // NotOk fails the test if an err is nil. -func NotOk(tb testing.TB, err error) { - if err == nil { - _, file, line, _ := runtime.Caller(1) - fmt.Printf("\033[31m%s:%d: expected error, got nothing \033[39m\n\n", filepath.Base(file), line) - tb.FailNow() +func NotOk(tb testing.TB, err error, v ...interface{}) { + if err != nil { + return } + _, file, line, _ := runtime.Caller(1) + + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n expected error, got nothing \033[39m\n\n", filepath.Base(file), line) } // Equals fails the test if exp is not equal to act. func Equals(tb testing.TB, exp, act interface{}, v ...interface{}) { - if !reflect.DeepEqual(exp, act) { - _, file, line, _ := runtime.Caller(1) + if reflect.DeepEqual(exp, act) { + return + } + _, file, line, _ := runtime.Caller(1) - var msg string - if len(v) > 0 { - msg = fmt.Sprintf(v[0].(string), v[1:]...) - } + var msg string + if len(v) > 0 { + msg = fmt.Sprintf(v[0].(string), v[1:]...) + } + tb.Fatalf("\033[31m%s:%d:"+msg+"\n\n\texp: %#v\n\n\tgot: %#v%s\033[39m\n\n", filepath.Base(file), line, exp, act, diff(exp, act)) +} + +func typeAndKind(v interface{}) (reflect.Type, reflect.Kind) { + t := reflect.TypeOf(v) + k := t.Kind() - fmt.Printf("\033[31m%s:%d:"+msg+"\n\n\texp: %#v\n\n\tgot: %#v\033[39m\n\n", filepath.Base(file), line, exp, act) - tb.FailNow() + if k == reflect.Ptr { + t = t.Elem() + k = t.Kind() } + return t, k +} + +// diff returns a diff of both values as long as both are of the same type and +// are a struct, map, slice, array or string. Otherwise it returns an empty string. +func diff(expected interface{}, actual interface{}) string { + if expected == nil || actual == nil { + return "" + } + + et, ek := typeAndKind(expected) + at, _ := typeAndKind(actual) + if et != at { + return "" + } + + if ek != reflect.Struct && ek != reflect.Map && ek != reflect.Slice && ek != reflect.Array && ek != reflect.String { + return "" + } + + var e, a string + c := spew.ConfigState{ + Indent: " ", + DisablePointerAddresses: true, + DisableCapacities: true, + SortKeys: true, + } + if et != reflect.TypeOf("") { + e = c.Sdump(expected) + a = c.Sdump(actual) + } else { + e = reflect.ValueOf(expected).String() + a = reflect.ValueOf(actual).String() + } + + diff, _ := difflib.GetUnifiedDiffString(difflib.UnifiedDiff{ + A: difflib.SplitLines(e), + B: difflib.SplitLines(a), + FromFile: "Expected", + FromDate: "", + ToFile: "Actual", + ToDate: "", + Context: 1, + }) + return "\n\nDiff:\n" + diff } // GatherAndCompare compares the metrics of a Gatherers pair. From 0b80f4cd26fefdb05ea80908bb05b7b6a608d9e1 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Thu, 26 Mar 2020 11:09:49 +0100 Subject: [PATCH 054/190] make, ci: Check example alerts and rules in CI (#2318) * Check example alerts and rules in CI Signed-off-by: Kemal Akkoyun * Add require clean tree Signed-off-by: Kemal Akkoyun --- .circleci/config.yml | 1 + Makefile | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3d14b5489c5..d5593d759ae 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,6 +31,7 @@ jobs: - run: make deps - run: make lint - run: make check-docs + - run: make check-examples - run: make format - run: name: "Run unit tests." diff --git a/Makefile b/Makefile index 6ad246287b0..0376f310bcf 100644 --- a/Makefile +++ b/Makefile @@ -352,7 +352,7 @@ examples-in-container: examples .PHONY: examples -examples: jsonnet-format $(EMBEDMD) ${THANOS_MIXIN}/README.md examples/alerts/alerts.md examples/alerts/alerts.yaml examples/alerts/rules.yaml examples/dashboards examples/tmp +examples: jsonnet-vendor jsonnet-format $(EMBEDMD) ${THANOS_MIXIN}/README.md examples/alerts/alerts.md examples/alerts/alerts.yaml examples/alerts/rules.yaml examples/dashboards examples/tmp $(EMBEDMD) -w examples/alerts/alerts.md $(EMBEDMD) -w ${THANOS_MIXIN}/README.md @@ -395,6 +395,10 @@ example-rules-lint: $(PROMTOOL) examples/alerts/alerts.yaml examples/alerts/rule $(PROMTOOL) check rules examples/alerts/alerts.yaml examples/alerts/rules.yaml $(PROMTOOL) test rules examples/alerts/tests.yaml +.PHONY: check-examples +check-examples: examples example-rules-lint + $(call require_clean_work_tree,'all generated files should be committed,check examples') + .PHONY: examples-clean examples-clean: rm -f examples/alerts/alerts.yaml From 4dc16845dbac5542e32ca73c81dbe2bea79013bd Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Thu, 26 Mar 2020 11:18:43 +0100 Subject: [PATCH 055/190] Fix latency alerts (#2316) Signed-off-by: Kemal Akkoyun --- examples/alerts/alerts.md | 12 ++++++------ examples/alerts/alerts.yaml | 12 ++++++------ mixin/thanos/alerts/bucket_replicate.libsonnet | 2 +- mixin/thanos/alerts/query.libsonnet | 4 ++-- mixin/thanos/alerts/receive.libsonnet | 2 +- mixin/thanos/alerts/store.libsonnet | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index 39b4c57bfab..ef8823f05f0 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -198,7 +198,7 @@ rules: }} seconds for store series gate requests. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -225,7 +225,7 @@ rules: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 15 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -336,7 +336,7 @@ rules: }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) @@ -349,7 +349,7 @@ rules: }} seconds for range queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-query.*", handler="query_range"}[5m])) > 0 ) @@ -383,7 +383,7 @@ rules: }} seconds for requests. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"}[5m]))) > 10 and sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receive.*", handler="receive"}[5m])) > 0 ) @@ -461,7 +461,7 @@ rules: $value }} seconds for the replicate operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"})) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 120 and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 ) diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index 400414da890..1d50297f926 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -125,7 +125,7 @@ groups: }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) @@ -138,7 +138,7 @@ groups: }} seconds for range queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query_range"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-query.*", handler="query_range"}[5m])) > 0 ) @@ -166,7 +166,7 @@ groups: $value }} seconds for requests. expr: | ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-receive.*", handler="receive"}[5m]))) > 10 and sum by (job) (rate(http_request_duration_seconds_count{job=~"thanos-receive.*", handler="receive"}[5m])) > 0 ) @@ -250,7 +250,7 @@ groups: }} seconds for store series gate requests. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -277,7 +277,7 @@ groups: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 15 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -468,7 +468,7 @@ groups: $value }} seconds for the replicate operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"})) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 120 and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/bucket_replicate.libsonnet b/mixin/thanos/alerts/bucket_replicate.libsonnet index fa6bdfbe27a..b46ff18e83b 100644 --- a/mixin/thanos/alerts/bucket_replicate.libsonnet +++ b/mixin/thanos/alerts/bucket_replicate.libsonnet @@ -46,7 +46,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s})) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m]))) > 120 and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/query.libsonnet b/mixin/thanos/alerts/query.libsonnet index 88c682c4114..f563ab14fdd 100644 --- a/mixin/thanos/alerts/query.libsonnet +++ b/mixin/thanos/alerts/query.libsonnet @@ -102,7 +102,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="query"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m])) > 0 ) @@ -119,7 +119,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="query_range"})) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query_range"}[5m]))) > 90 and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="query_range"}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/receive.libsonnet b/mixin/thanos/alerts/receive.libsonnet index 94c6410d358..7a5451ac3d9 100644 --- a/mixin/thanos/alerts/receive.libsonnet +++ b/mixin/thanos/alerts/receive.libsonnet @@ -33,7 +33,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (http_request_duration_seconds_bucket{%(selector)s, handler="receive"})) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="receive"}[5m]))) > 10 and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="receive"}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/store.libsonnet b/mixin/thanos/alerts/store.libsonnet index 77ff1baedd7..961870496c6 100644 --- a/mixin/thanos/alerts/store.libsonnet +++ b/mixin/thanos/alerts/store.libsonnet @@ -34,7 +34,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s})) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s}[5m]))) > 2 and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{%(selector)s}[5m])) > 0 ) @@ -69,7 +69,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s})) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s}[5m]))) > 15 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{%(selector)s}[5m])) > 0 ) From b60b3e9e05b1e56032a65f21d10446187e454644 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 26 Mar 2020 10:19:50 +0000 Subject: [PATCH 056/190] Fixed e2e. (#2327) Sorry, was late when we merged the fix. Funny bug: It would start to fail exactly 12h AFTER 25.03 8:00 GMT Should be fine now... and in future until changed ;p Signed-off-by: Bartlomiej Plotka --- test/e2e/compact_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go index f47dbf6d2dc..12559615220 100644 --- a/test/e2e/compact_test.go +++ b/test/e2e/compact_test.go @@ -42,7 +42,7 @@ func TestCompactWithStoreGateway(t *testing.T) { delay := 30 * time.Minute // Make sure to take realistic timestamp for start. This is to align blocks as if they would be aligned on Prometheus. // To have deterministic compaction, let's have fixed date: - now, err := time.Parse(time.RFC3339, "2020-03-25T08:00:00Z") + now, err := time.Parse(time.RFC3339, "2020-03-24T08:00:00Z") testutil.Ok(t, err) // Simulate real scenario, including more complex cases like overlaps if needed. @@ -311,7 +311,7 @@ func TestCompactWithStoreGateway(t *testing.T) { // Check if query detects current series, even if overlapped. queryAndAssert(t, ctx, q.HTTPEndpoint(), - fmt.Sprintf(`count_over_time({a="1"}[12h] offset %ds)`, int64(-1*time.Since(now.Add(12*time.Hour)).Seconds())), + fmt.Sprintf(`count_over_time({a="1"}[13h] offset %ds)`, int64(time.Since(now.Add(12*time.Hour)).Seconds())), promclient.QueryOptions{ Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. }, @@ -408,7 +408,7 @@ func TestCompactWithStoreGateway(t *testing.T) { // Check if query detects new blocks. queryAndAssert(t, ctx, q.HTTPEndpoint(), - fmt.Sprintf(`count_over_time({a="1"}[12h] offset %ds)`, int64(-1*time.Since(now.Add(12*time.Hour)).Seconds())), + fmt.Sprintf(`count_over_time({a="1"}[13h] offset %ds)`, int64(time.Since(now.Add(12*time.Hour)).Seconds())), promclient.QueryOptions{ Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. }, From 214ff4480e93f89a8e39b29fd4a43ccea1f61d3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Thu, 26 Mar 2020 11:59:47 +0100 Subject: [PATCH 057/190] store: added option to reencode and compress postings before storing them to the cache (#2297) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added "diff+varint+snappy" codec for postings. Signed-off-by: Peter Štibraný * Added option to reencode and compress postings stored in cache Signed-off-by: Peter Štibraný * Expose enablePostingsCompression flag as CLI parameter. Signed-off-by: Peter Štibraný * Use "github.com/pkg/errors" instead of "errors" package. Signed-off-by: Peter Štibraný * remove break Signed-off-by: Peter Štibraný * Removed empty branch Signed-off-by: Peter Štibraný * Added copyright headers. Signed-off-by: Peter Štibraný * Added CHANGELOG.md entry Signed-off-by: Peter Štibraný * Added comments. Signed-off-by: Peter Štibraný * Use Encbuf and Decbuf. Signed-off-by: Peter Štibraný * Fix comments in test file. Signed-off-by: Peter Štibraný * Another comment... Signed-off-by: Peter Štibraný * Removed diffVarintSnappyEncode function. Signed-off-by: Peter Štibraný * Comment on usage with in-memory cache. Signed-off-by: Peter Štibraný * var block Signed-off-by: Peter Štibraný * Removed extra comment. Signed-off-by: Peter Štibraný * Move comment to error message. Signed-off-by: Peter Štibraný * Separated snappy compression and postings reencoding into two functions. There is now header only for snappy-compressed postings. Signed-off-by: Peter Štibraný * Added comment on using diff+varint+snappy. Signed-off-by: Peter Štibraný * Shorten header Signed-off-by: Peter Štibraný * Lint... Signed-off-by: Peter Štibraný * Changed experimental.enable-postings-compression to experimental.enable-index-cache-postings-compression Signed-off-by: Peter Štibraný * Added metrics for postings compression Signed-off-by: Peter Štibraný * Added metrics for postings decompression Signed-off-by: Peter Štibraný * Reorder metrics Signed-off-by: Peter Štibraný * Fixed comment. Signed-off-by: Peter Štibraný * Fixed comment. Signed-off-by: Peter Štibraný * Use encode/decode labels. Signed-off-by: Peter Štibraný --- CHANGELOG.md | 1 + cmd/thanos/store.go | 6 + pkg/store/bucket.go | 141 ++++++++++++++++++++--- pkg/store/bucket_e2e_test.go | 1 + pkg/store/bucket_test.go | 33 +++--- pkg/store/postings_codec.go | 135 +++++++++++++++++++++++ pkg/store/postings_codec_test.go | 184 +++++++++++++++++++++++++++++++ 7 files changed, 472 insertions(+), 29 deletions(-) create mode 100644 pkg/store/postings_codec.go create mode 100644 pkg/store/postings_codec_test.go diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f80a55e1da..ab743e683e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. - [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. - [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: Added `max_item_size` config option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. +- [#2297](https://github.com/thanos-io/thanos/pull/2297) Store Gateway: Add `--experimental.enable-index-cache-postings-compression` flag to enable reencoding and compressing postings before storing them into cache. Compressed postings take about 10% of the original size. ### Changed diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index b3609440aaa..18e95f81a1e 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -81,6 +81,9 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { enableIndexHeader := cmd.Flag("experimental.enable-index-header", "If true, Store Gateway will recreate index-header instead of index-cache.json for each block. This will replace index-cache.json permanently once it will be out of experimental stage."). Hidden().Default("false").Bool() + enablePostingsCompression := cmd.Flag("experimental.enable-index-cache-postings-compression", "If true, Store Gateway will reencode and compress postings before storing them into cache. Compressed postings take about 10% of the original size."). + Hidden().Default("false").Bool() + consistencyDelay := modelDuration(cmd.Flag("consistency-delay", "Minimum age of all blocks before they are being read. Set it to safe value (e.g 30m) if your object storage is eventually consistent. GCS and S3 are (roughly) strongly consistent."). Default("0s")) @@ -126,6 +129,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { selectorRelabelConf, *advertiseCompatibilityLabel, *enableIndexHeader, + *enablePostingsCompression, time.Duration(*consistencyDelay), time.Duration(*ignoreDeletionMarksDelay), ) @@ -160,6 +164,7 @@ func runStore( selectorRelabelConf *extflag.PathOrContent, advertiseCompatibilityLabel bool, enableIndexHeader bool, + enablePostingsCompression bool, consistencyDelay time.Duration, ignoreDeletionMarksDelay time.Duration, ) error { @@ -265,6 +270,7 @@ func runStore( filterConf, advertiseCompatibilityLabel, enableIndexHeader, + enablePostingsCompression, ) if err != nil { return errors.Wrap(err, "create object storage store") diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index b9689f4f6b5..81dcb4ff1e2 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -97,6 +97,12 @@ type bucketStoreMetrics struct { queriesDropped prometheus.Counter queriesLimit prometheus.Gauge seriesRefetches prometheus.Counter + + cachedPostingsCompressions *prometheus.CounterVec + cachedPostingsCompressionErrors *prometheus.CounterVec + cachedPostingsCompressionTimeSeconds *prometheus.CounterVec + cachedPostingsOriginalSizeBytes prometheus.Counter + cachedPostingsCompressedSizeBytes prometheus.Counter } func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { @@ -180,6 +186,28 @@ func newBucketStoreMetrics(reg prometheus.Registerer) *bucketStoreMetrics { Name: "thanos_bucket_store_series_refetches_total", Help: fmt.Sprintf("Total number of cases where %v bytes was not enough was to fetch series from index, resulting in refetch.", maxSeriesSize), }) + + m.cachedPostingsCompressions = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compressions_total", + Help: "Number of postings compressions before storing to index cache.", + }, []string{"op"}) + m.cachedPostingsCompressionErrors = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compression_errors_total", + Help: "Number of postings compression errors.", + }, []string{"op"}) + m.cachedPostingsCompressionTimeSeconds = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compression_time_seconds", + Help: "Time spent compressing postings before storing them into postings cache.", + }, []string{"op"}) + m.cachedPostingsOriginalSizeBytes = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_original_size_bytes_total", + Help: "Original size of postings stored into cache.", + }) + m.cachedPostingsCompressedSizeBytes = promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Name: "thanos_bucket_store_cached_postings_compressed_size_bytes_total", + Help: "Compressed size of postings stored into cache.", + }) + return &m } @@ -220,6 +248,11 @@ type BucketStore struct { advLabelSets []storepb.LabelSet enableCompatibilityLabel bool enableIndexHeader bool + + // Reencode postings using diff+varint+snappy when storing to cache. + // This makes them smaller, but takes extra CPU and memory. + // When used with in-memory cache, memory usage should decrease overall, thanks to postings being smaller. + enablePostingsCompression bool } // NewBucketStore creates a new bucket backed store that implements the store API against @@ -239,6 +272,7 @@ func NewBucketStore( filterConfig *FilterConfig, enableCompatibilityLabel bool, enableIndexHeader bool, + enablePostingsCompression bool, ) (*BucketStore, error) { if logger == nil { logger = log.NewNopLogger() @@ -270,10 +304,11 @@ func NewBucketStore( maxConcurrent, extprom.WrapRegistererWithPrefix("thanos_bucket_store_series_", reg), ), - samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), - partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, - enableCompatibilityLabel: enableCompatibilityLabel, - enableIndexHeader: enableIndexHeader, + samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + enableCompatibilityLabel: enableCompatibilityLabel, + enableIndexHeader: enableIndexHeader, + enablePostingsCompression: enablePostingsCompression, } s.metrics = metrics @@ -455,6 +490,7 @@ func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err er indexHeaderReader, s.partitioner, s.metrics.seriesRefetches, + s.enablePostingsCompression, ) if err != nil { return errors.Wrap(err, "new bucket block") @@ -896,6 +932,14 @@ func (s *BucketStore) Series(req *storepb.SeriesRequest, srv storepb.Store_Serie s.metrics.seriesDataSizeTouched.WithLabelValues("chunks").Observe(float64(stats.chunksTouchedSizeSum)) s.metrics.seriesDataSizeFetched.WithLabelValues("chunks").Observe(float64(stats.chunksFetchedSizeSum)) s.metrics.resultSeriesCount.Observe(float64(stats.mergedSeriesCount)) + s.metrics.cachedPostingsCompressions.WithLabelValues("encode").Add(float64(stats.cachedPostingsCompressions)) + s.metrics.cachedPostingsCompressions.WithLabelValues("decode").Add(float64(stats.cachedPostingsDecompressions)) + s.metrics.cachedPostingsCompressionErrors.WithLabelValues("encode").Add(float64(stats.cachedPostingsCompressionErrors)) + s.metrics.cachedPostingsCompressionErrors.WithLabelValues("decode").Add(float64(stats.cachedPostingsDecompressionErrors)) + s.metrics.cachedPostingsCompressionTimeSeconds.WithLabelValues("encode").Add(stats.cachedPostingsCompressionTimeSum.Seconds()) + s.metrics.cachedPostingsCompressionTimeSeconds.WithLabelValues("decode").Add(stats.cachedPostingsDecompressionTimeSum.Seconds()) + s.metrics.cachedPostingsOriginalSizeBytes.Add(float64(stats.cachedPostingsOriginalSizeSum)) + s.metrics.cachedPostingsCompressedSizeBytes.Add(float64(stats.cachedPostingsCompressedSizeSum)) level.Debug(s.logger).Log("msg", "stats query processed", "stats", fmt.Sprintf("%+v", stats), "err", err) @@ -1183,6 +1227,8 @@ type bucketBlock struct { partitioner partitioner seriesRefetches prometheus.Counter + + enablePostingsCompression bool } func newBucketBlock( @@ -1196,17 +1242,19 @@ func newBucketBlock( indexHeadReader indexheader.Reader, p partitioner, seriesRefetches prometheus.Counter, + enablePostingsCompression bool, ) (b *bucketBlock, err error) { b = &bucketBlock{ - logger: logger, - bkt: bkt, - indexCache: indexCache, - chunkPool: chunkPool, - dir: dir, - partitioner: p, - meta: meta, - indexHeaderReader: indexHeadReader, - seriesRefetches: seriesRefetches, + logger: logger, + bkt: bkt, + indexCache: indexCache, + chunkPool: chunkPool, + dir: dir, + partitioner: p, + meta: meta, + indexHeaderReader: indexHeadReader, + seriesRefetches: seriesRefetches, + enablePostingsCompression: enablePostingsCompression, } // Get object handles for all chunk files. @@ -1512,7 +1560,24 @@ func (r *bucketIndexReader) fetchPostings(keys []labels.Label) ([]index.Postings r.stats.postingsTouched++ r.stats.postingsTouchedSizeSum += len(b) - _, l, err := r.dec.Postings(b) + // Even if this instance is not using compression, there may be compressed + // entries in the cache written by other stores. + var ( + l index.Postings + err error + ) + if isDiffVarintSnappyEncodedPostings(b) { + s := time.Now() + l, err = diffVarintSnappyDecode(b) + r.stats.cachedPostingsDecompressions += 1 + r.stats.cachedPostingsDecompressionTimeSum += time.Since(s) + if err != nil { + r.stats.cachedPostingsDecompressionErrors += 1 + } + } else { + _, l, err = r.dec.Postings(b) + } + if err != nil { return nil, errors.Wrap(err, "decode postings") } @@ -1579,15 +1644,43 @@ func (r *bucketIndexReader) fetchPostings(keys []labels.Label) ([]index.Postings return err } + dataToCache := pBytes + + compressionTime := time.Duration(0) + compressions, compressionErrors, compressedSize := 0, 0, 0 + + if r.block.enablePostingsCompression { + // Reencode postings before storing to cache. If that fails, we store original bytes. + // This can only fail, if postings data was somehow corrupted, + // and there is nothing we can do about it. + // Errors from corrupted postings will be reported when postings are used. + compressions++ + s := time.Now() + data, err := diffVarintSnappyEncode(newBigEndianPostings(pBytes[4:])) + compressionTime = time.Since(s) + if err == nil { + dataToCache = data + compressedSize = len(data) + } else { + compressionErrors = 1 + } + } + r.mtx.Lock() // Return postings and fill LRU cache. // Truncate first 4 bytes which are length of posting. output[p.keyID] = newBigEndianPostings(pBytes[4:]) - r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, keys[p.keyID], pBytes) + + r.block.indexCache.StorePostings(r.ctx, r.block.meta.ULID, keys[p.keyID], dataToCache) // If we just fetched it we still have to update the stats for touched postings. r.stats.postingsTouched++ r.stats.postingsTouchedSizeSum += len(pBytes) + r.stats.cachedPostingsCompressions += compressions + r.stats.cachedPostingsCompressionErrors += compressionErrors + r.stats.cachedPostingsOriginalSizeSum += len(pBytes) + r.stats.cachedPostingsCompressedSizeSum += compressedSize + r.stats.cachedPostingsCompressionTimeSum += compressionTime r.mtx.Unlock() } return nil @@ -1961,6 +2054,15 @@ type queryStats struct { postingsFetchCount int postingsFetchDurationSum time.Duration + cachedPostingsCompressions int + cachedPostingsCompressionErrors int + cachedPostingsOriginalSizeSum int + cachedPostingsCompressedSizeSum int + cachedPostingsCompressionTimeSum time.Duration + cachedPostingsDecompressions int + cachedPostingsDecompressionErrors int + cachedPostingsDecompressionTimeSum time.Duration + seriesTouched int seriesTouchedSizeSum int seriesFetched int @@ -1991,6 +2093,15 @@ func (s queryStats) merge(o *queryStats) *queryStats { s.postingsFetchCount += o.postingsFetchCount s.postingsFetchDurationSum += o.postingsFetchDurationSum + s.cachedPostingsCompressions += o.cachedPostingsCompressions + s.cachedPostingsCompressionErrors += o.cachedPostingsCompressionErrors + s.cachedPostingsOriginalSizeSum += o.cachedPostingsOriginalSizeSum + s.cachedPostingsCompressedSizeSum += o.cachedPostingsCompressedSizeSum + s.cachedPostingsCompressionTimeSum += o.cachedPostingsCompressionTimeSum + s.cachedPostingsDecompressions += o.cachedPostingsDecompressions + s.cachedPostingsDecompressionErrors += o.cachedPostingsDecompressionErrors + s.cachedPostingsDecompressionTimeSum += o.cachedPostingsDecompressionTimeSum + s.seriesTouched += o.seriesTouched s.seriesTouchedSizeSum += o.seriesTouchedSizeSum s.seriesFetched += o.seriesFetched diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 821cd70d278..2721c7544e3 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -168,6 +168,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m filterConf, true, true, + true, ) testutil.Ok(t, err) s.store = store diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index 75cf4466435..a7829bf0523 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -480,6 +480,7 @@ func TestBucketStore_Info(t *testing.T) { allowAllFilterConf, true, true, + true, ) testutil.Ok(t, err) @@ -731,6 +732,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul allowAllFilterConf, true, true, + true, ) testutil.Ok(t, err) @@ -932,7 +934,23 @@ func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket, series in logger := log.NewNopLogger() - app := h.Appender() + appendTestData(t, h.Appender(), series) + + testutil.Ok(t, os.MkdirAll(filepath.Join(tmpDir, "tmp"), os.ModePerm)) + id := createBlockFromHead(t, filepath.Join(tmpDir, "tmp"), h) + + _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(tmpDir, "tmp", id.String()), metadata.Thanos{ + Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), + Downsample: metadata.ThanosDownsample{Resolution: 0}, + Source: metadata.TestSource, + }, nil) + testutil.Ok(t, err) + testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(tmpDir, "tmp", id.String()))) + + return id +} + +func appendTestData(t testing.TB, app tsdb.Appender, series int) { addSeries := func(l labels.Labels) { _, err := app.Add(l, 0, 0) testutil.Ok(t, err) @@ -950,19 +968,6 @@ func uploadTestBlock(t testing.TB, tmpDir string, bkt objstore.Bucket, series in } } testutil.Ok(t, app.Commit()) - - testutil.Ok(t, os.MkdirAll(filepath.Join(tmpDir, "tmp"), os.ModePerm)) - id := createBlockFromHead(t, filepath.Join(tmpDir, "tmp"), h) - - _, err = metadata.InjectThanos(log.NewNopLogger(), filepath.Join(tmpDir, "tmp", id.String()), metadata.Thanos{ - Labels: labels.Labels{{Name: "ext1", Value: "1"}}.Map(), - Downsample: metadata.ThanosDownsample{Resolution: 0}, - Source: metadata.TestSource, - }, nil) - testutil.Ok(t, err) - testutil.Ok(t, block.Upload(context.Background(), logger, bkt, filepath.Join(tmpDir, "tmp", id.String()))) - - return id } func createBlockFromHead(t testing.TB, dir string, head *tsdb.Head) ulid.ULID { diff --git a/pkg/store/postings_codec.go b/pkg/store/postings_codec.go new file mode 100644 index 00000000000..246d8bab81b --- /dev/null +++ b/pkg/store/postings_codec.go @@ -0,0 +1,135 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "bytes" + + "github.com/golang/snappy" + "github.com/pkg/errors" + "github.com/prometheus/prometheus/tsdb/encoding" + "github.com/prometheus/prometheus/tsdb/index" +) + +// This file implements encoding and decoding of postings using diff (or delta) + varint +// number encoding. On top of that, we apply Snappy compression. +// +// On its own, Snappy compressing raw postings doesn't really help, because there is no +// repetition in raw data. Using diff (delta) between postings entries makes values small, +// and Varint is very efficient at encoding small values (values < 128 are encoded as +// single byte, values < 16384 are encoded as two bytes). Diff + varint reduces postings size +// significantly (to about 20% of original), snappy then halves it to ~10% of the original. + +const ( + codecHeaderSnappy = "dvs" // As in "diff+varint+snappy". +) + +// isDiffVarintSnappyEncodedPostings returns true, if input looks like it has been encoded by diff+varint+snappy codec. +func isDiffVarintSnappyEncodedPostings(input []byte) bool { + return bytes.HasPrefix(input, []byte(codecHeaderSnappy)) +} + +// diffVarintSnappyEncode encodes postings into diff+varint representation, +// and applies snappy compression on the result. +// Returned byte slice starts with codecHeaderSnappy header. +func diffVarintSnappyEncode(p index.Postings) ([]byte, error) { + buf, err := diffVarintEncodeNoHeader(p) + if err != nil { + return nil, err + } + + // Make result buffer large enough to hold our header and compressed block. + result := make([]byte, len(codecHeaderSnappy)+snappy.MaxEncodedLen(len(buf))) + copy(result, codecHeaderSnappy) + + compressed := snappy.Encode(result[len(codecHeaderSnappy):], buf) + + // Slice result buffer based on compressed size. + result = result[:len(codecHeaderSnappy)+len(compressed)] + return result, nil +} + +// diffVarintEncodeNoHeader encodes postings into diff+varint representation. +// It doesn't add any header to the output bytes. +func diffVarintEncodeNoHeader(p index.Postings) ([]byte, error) { + buf := encoding.Encbuf{} + + prev := uint64(0) + for p.Next() { + v := p.At() + if v < prev { + return nil, errors.Errorf("postings entries must be in increasing order, current: %d, previous: %d", v, prev) + } + + // This is the 'diff' part -- compute difference from previous value. + buf.PutUvarint64(v - prev) + prev = v + } + if p.Err() != nil { + return nil, p.Err() + } + + return buf.B, nil +} + +func diffVarintSnappyDecode(input []byte) (index.Postings, error) { + if !isDiffVarintSnappyEncodedPostings(input) { + return nil, errors.New("header not found") + } + + raw, err := snappy.Decode(nil, input[len(codecHeaderSnappy):]) + if err != nil { + return nil, errors.Errorf("snappy decode: %w", err) + } + + return newDiffVarintPostings(raw), nil +} + +func newDiffVarintPostings(input []byte) *diffVarintPostings { + return &diffVarintPostings{buf: &encoding.Decbuf{B: input}} +} + +// diffVarintPostings is an implementation of index.Postings based on diff+varint encoded data. +type diffVarintPostings struct { + buf *encoding.Decbuf + cur uint64 +} + +func (it *diffVarintPostings) At() uint64 { + return it.cur +} + +func (it *diffVarintPostings) Next() bool { + if it.buf.Err() != nil || it.buf.Len() == 0 { + return false + } + + val := it.buf.Uvarint64() + if it.buf.Err() != nil { + return false + } + + it.cur = it.cur + val + return true +} + +func (it *diffVarintPostings) Seek(x uint64) bool { + if it.cur >= x { + return true + } + + // We cannot do any search due to how values are stored, + // so we simply advance until we find the right value. + for it.Next() { + if it.At() >= x { + return true + } + } + + return false +} + +func (it *diffVarintPostings) Err() error { + return it.buf.Err() +} diff --git a/pkg/store/postings_codec_test.go b/pkg/store/postings_codec_test.go new file mode 100644 index 00000000000..adb9f57d4b7 --- /dev/null +++ b/pkg/store/postings_codec_test.go @@ -0,0 +1,184 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "testing" + + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/tsdb" + "github.com/prometheus/prometheus/tsdb/index" + + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestDiffVarintCodec(t *testing.T) { + h, err := tsdb.NewHead(nil, nil, nil, 1000) + testutil.Ok(t, err) + defer func() { + testutil.Ok(t, h.Close()) + }() + + appendTestData(t, h.Appender(), 1e6) + + idx, err := h.Index() + testutil.Ok(t, err) + defer func() { + testutil.Ok(t, idx.Close()) + }() + + postingsMap := map[string]index.Postings{ + "all": allPostings(t, idx), + `n="1"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchEqual, "n", "1"+postingsBenchSuffix)), + `j="foo"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchEqual, "j", "foo")), + `j!="foo"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "j", "foo")), + `i=~".*"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", ".*")), + `i=~".+"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", ".+")), + `i=~"1.+"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", "1.+")), + `i=~"^$"'`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchRegexp, "i", "^$")), + `i!~""`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "i", "")), + `n!="2"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotEqual, "n", "2"+postingsBenchSuffix)), + `i!~"2.*"`: matchPostings(t, idx, labels.MustNewMatcher(labels.MatchNotRegexp, "i", "^2.*$")), + } + + codecs := map[string]struct { + codingFunction func(index.Postings) ([]byte, error) + decodingFunction func([]byte) (index.Postings, error) + }{ + "raw": {codingFunction: diffVarintEncodeNoHeader, decodingFunction: func(bytes []byte) (index.Postings, error) { return newDiffVarintPostings(bytes), nil }}, + "snappy": {codingFunction: diffVarintSnappyEncode, decodingFunction: diffVarintSnappyDecode}, + } + + for postingName, postings := range postingsMap { + p, err := toUint64Postings(postings) + testutil.Ok(t, err) + + for cname, codec := range codecs { + name := cname + "/" + postingName + + t.Run(name, func(t *testing.T) { + t.Log("postings entries:", p.len()) + t.Log("original size (4*entries):", 4*p.len(), "bytes") + p.reset() // We reuse postings between runs, so we need to reset iterator. + + data, err := codec.codingFunction(p) + testutil.Ok(t, err) + + t.Log("encoded size", len(data), "bytes") + t.Logf("ratio: %0.3f", (float64(len(data)) / float64(4*p.len()))) + + decodedPostings, err := codec.decodingFunction(data) + testutil.Ok(t, err) + + p.reset() + comparePostings(t, p, decodedPostings) + }) + } + } +} + +func comparePostings(t *testing.T, p1, p2 index.Postings) { + for p1.Next() { + if !p2.Next() { + t.Log("p1 has more values") + t.Fail() + return + } + + if p1.At() != p2.At() { + t.Logf("values differ: %d, %d", p1.At(), p2.At()) + t.Fail() + return + } + } + + if p2.Next() { + t.Log("p2 has more values") + t.Fail() + return + } + + testutil.Ok(t, p1.Err()) + testutil.Ok(t, p2.Err()) +} + +func allPostings(t testing.TB, ix tsdb.IndexReader) index.Postings { + k, v := index.AllPostingsKey() + p, err := ix.Postings(k, v) + testutil.Ok(t, err) + return p +} + +func matchPostings(t testing.TB, ix tsdb.IndexReader, m *labels.Matcher) index.Postings { + vals, err := ix.LabelValues(m.Name) + testutil.Ok(t, err) + + matching := []string(nil) + for _, v := range vals { + if m.Matches(v) { + matching = append(matching, v) + } + } + + p, err := ix.Postings(m.Name, matching...) + testutil.Ok(t, err) + return p +} + +func toUint64Postings(p index.Postings) (*uint64Postings, error) { + var vals []uint64 + for p.Next() { + vals = append(vals, p.At()) + } + return &uint64Postings{vals: vals, ix: -1}, p.Err() +} + +// Postings with no decoding step. +type uint64Postings struct { + vals []uint64 + ix int +} + +func (p *uint64Postings) At() uint64 { + if p.ix < 0 || p.ix >= len(p.vals) { + return 0 + } + return p.vals[p.ix] +} + +func (p *uint64Postings) Next() bool { + if p.ix < len(p.vals)-1 { + p.ix++ + return true + } + return false +} + +func (p *uint64Postings) Seek(x uint64) bool { + if p.At() >= x { + return true + } + + // We cannot do any search due to how values are stored, + // so we simply advance until we find the right value. + for p.Next() { + if p.At() >= x { + return true + } + } + + return false +} + +func (p *uint64Postings) Err() error { + return nil +} + +func (p *uint64Postings) reset() { + p.ix = -1 +} + +func (p *uint64Postings) len() int { + return len(p.vals) +} From 14c9403e6b5d25a782a544ebc7792c1573cf8074 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Thu, 26 Mar 2020 15:06:45 +0100 Subject: [PATCH 058/190] mixin: Make alert threshold values parametric (#2317) * Make alert threshold values parametric Signed-off-by: Kemal Akkoyun * Rename variable Signed-off-by: Kemal Akkoyun * Adjsut default values for latency thresholds Signed-off-by: Kemal Akkoyun --- examples/alerts/alerts.md | 6 +++--- examples/alerts/alerts.yaml | 6 +++--- .../thanos/alerts/bucket_replicate.libsonnet | 6 ++++-- mixin/thanos/alerts/compact.libsonnet | 6 ++++-- mixin/thanos/alerts/query.libsonnet | 19 ++++++++++++------- mixin/thanos/alerts/receive.libsonnet | 12 ++++++++---- mixin/thanos/alerts/rule.libsonnet | 12 ++++++++---- mixin/thanos/alerts/store.libsonnet | 13 +++++++++---- 8 files changed, 51 insertions(+), 29 deletions(-) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index ef8823f05f0..5efd2809b94 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -225,7 +225,7 @@ rules: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -336,7 +336,7 @@ rules: }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 40 and sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) @@ -461,7 +461,7 @@ rules: $value }} seconds for the replicate operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 20 and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 ) diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index 1d50297f926..bdb7abcb161 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -125,7 +125,7 @@ groups: }} seconds for instant queries. expr: | ( - histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m]))) > 40 and sum by (job) (rate(http_request_duration_seconds_bucket{job=~"thanos-query.*", handler="query"}[5m])) > 0 ) @@ -277,7 +277,7 @@ groups: {{ $value }} seconds for the bucket operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{job=~"thanos-store.*"}[5m]))) > 2 and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{job=~"thanos-store.*"}[5m])) > 0 ) @@ -468,7 +468,7 @@ groups: $value }} seconds for the replicate operations. expr: | ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m]))) > 20 and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{job=~"thanos-bucket-replicate.*"}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/bucket_replicate.libsonnet b/mixin/thanos/alerts/bucket_replicate.libsonnet index b46ff18e83b..4c1a2f27df7 100644 --- a/mixin/thanos/alerts/bucket_replicate.libsonnet +++ b/mixin/thanos/alerts/bucket_replicate.libsonnet @@ -3,6 +3,8 @@ bucket_replicate+:: { jobPrefix: error 'must provide job prefix for Thanos Bucket Replicate dashboard', selector: error 'must provide selector for Thanos Bucket Replicate dashboard', + errorThreshold: 10, + p99LatencyThreshold: 20, }, prometheusAlerts+:: { groups+: [ @@ -32,7 +34,7 @@ sum(rate(thanos_replicate_replication_runs_total{result="error", %(selector)s}[5m])) / on (namespace) group_left sum(rate(thanos_replicate_replication_runs_total{%(selector)s}[5m])) - ) * 100 >= 10 + ) * 100 >= %(errorThreshold)s ||| % thanos.bucket_replicate, 'for': '5m', labels: { @@ -46,7 +48,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m]))) > 120 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m]))) > %(p99LatencyThreshold)s and sum by (job) (rate(thanos_replicate_replication_run_duration_seconds_bucket{%(selector)s}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/compact.libsonnet b/mixin/thanos/alerts/compact.libsonnet index 04c1115f2d5..fd5b82f7d33 100644 --- a/mixin/thanos/alerts/compact.libsonnet +++ b/mixin/thanos/alerts/compact.libsonnet @@ -3,6 +3,8 @@ compact+:: { jobPrefix: error 'must provide job prefix for Thanos Compact alerts', selector: error 'must provide selector for Thanos Compact alerts', + compactionErrorThreshold: 5, + bucketOpsErrorThreshold: 5, }, prometheusAlerts+:: { groups+: [ @@ -41,7 +43,7 @@ sum by (job) (rate(thanos_compact_group_compactions_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_compact_group_compactions_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(compactionErrorThreshold)s ) ||| % thanos.compact, 'for': '15m', @@ -59,7 +61,7 @@ sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_objstore_bucket_operations_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(bucketOpsErrorThreshold)s ) ||| % thanos.compact, 'for': '15m', diff --git a/mixin/thanos/alerts/query.libsonnet b/mixin/thanos/alerts/query.libsonnet index f563ab14fdd..4cfd7ab0319 100644 --- a/mixin/thanos/alerts/query.libsonnet +++ b/mixin/thanos/alerts/query.libsonnet @@ -3,6 +3,11 @@ query+:: { jobPrefix: error 'must provide job prefix for Thanos Query alerts', selector: error 'must provide selector for Thanos Query alerts', + httpErrorThreshold: 5, + grpcErrorThreshold: 5, + dnsErrorThreshold: 1, + p99QueryLatencyThreshold: 40, + p99QueryRangeLatencyThreshold: 90, }, prometheusAlerts+:: { groups+: [ @@ -19,7 +24,7 @@ sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="query"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="query"}[5m])) - ) * 100 > 5 + ) * 100 > %(httpErrorThreshold)s ||| % thanos.query, 'for': '5m', labels: { @@ -36,7 +41,7 @@ sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="query_range"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="query_range"}[5m])) - ) * 100 > 5 + ) * 100 > %(httpErrorThreshold)s ||| % thanos.query, 'for': '5m', labels: { @@ -53,7 +58,7 @@ sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) / sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(grpcErrorThreshold)s ) ||| % thanos.query, 'for': '5m', @@ -71,7 +76,7 @@ sum by (job) (rate(grpc_client_handled_total{grpc_code!="OK", %(selector)s}[5m])) / sum by (job) (rate(grpc_client_started_total{%(selector)s}[5m])) - ) * 100 > 5 + ) * 100 > %(grpcErrorThreshold)s ||| % thanos.query, 'for': '5m', labels: { @@ -88,7 +93,7 @@ sum by (job) (rate(thanos_querier_store_apis_dns_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_querier_store_apis_dns_lookups_total{%(selector)s}[5m])) - ) * 100 > 1 + ) * 100 > %(dnsErrorThreshold)s ||| % thanos.query, 'for': '15m', labels: { @@ -102,7 +107,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m]))) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m]))) > %(p99QueryLatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query"}[5m])) > 0 ) @@ -119,7 +124,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query_range"}[5m]))) > 90 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="query_range"}[5m]))) > %(p99QueryRangeLatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="query_range"}[5m])) > 0 ) diff --git a/mixin/thanos/alerts/receive.libsonnet b/mixin/thanos/alerts/receive.libsonnet index 7a5451ac3d9..b9920e6552e 100644 --- a/mixin/thanos/alerts/receive.libsonnet +++ b/mixin/thanos/alerts/receive.libsonnet @@ -3,6 +3,10 @@ receive+:: { jobPrefix: error 'must provide job prefix for Thanos Receive alerts', selector: error 'must provide selector for Thanos Receive alerts', + httpErrorThreshold: 5, + forwardErrorThreshold: 5, + refreshErrorThreshold: 0, + p99LatencyThreshold: 10, }, prometheusAlerts+:: { groups+: [ @@ -19,7 +23,7 @@ sum(rate(http_requests_total{code=~"5..", %(selector)s, handler="receive"}[5m])) / sum(rate(http_requests_total{%(selector)s, handler="receive"}[5m])) - ) * 100 > 5 + ) * 100 > %(httpErrorThreshold)s ||| % thanos.receive, 'for': '5m', labels: { @@ -33,7 +37,7 @@ }, expr: ||| ( - histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="receive"}[5m]))) > 10 + histogram_quantile(0.99, sum by (job, le) (rate(http_request_duration_seconds_bucket{%(selector)s, handler="receive"}[5m]))) > %(p99LatencyThreshold)s and sum by (job) (rate(http_request_duration_seconds_count{%(selector)s, handler="receive"}[5m])) > 0 ) @@ -53,7 +57,7 @@ sum by (job) (rate(thanos_receive_forward_requests_total{result="error", %(selector)s}[5m])) / sum by (job) (rate(thanos_receive_forward_requests_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(forwardErrorThreshold)s ) ||| % thanos.receive, 'for': '5m', @@ -71,7 +75,7 @@ sum by (job) (rate(thanos_receive_hashrings_file_errors_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_receive_hashrings_file_refreshes_total{%(selector)s}[5m])) - > 0 + > %(refreshErrorThreshold)s ) ||| % thanos.receive, 'for': '15m', diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet index 6d562bc9d47..d9795eefa8b 100644 --- a/mixin/thanos/alerts/rule.libsonnet +++ b/mixin/thanos/alerts/rule.libsonnet @@ -3,6 +3,10 @@ rule+:: { jobPrefix: error 'must provide job prefix for Thanos Rule alerts', selector: error 'must provide selector for Thanos Rule alerts', + grpcErrorThreshold: 5, + rulerDnsErrorThreshold: 1, + alertManagerDnsErrorThreshold: 1, + evalErrorThreshold: 5, }, prometheusAlerts+:: { groups+: [ @@ -45,7 +49,7 @@ sum by (job) (rate(prometheus_rule_evaluation_failures_total{%(selector)s}[5m])) / sum by (job) (rate(prometheus_rule_evaluations_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(evalErrorThreshold)s ) ||| % thanos.rule, @@ -95,7 +99,7 @@ sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) / sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(grpcErrorThreshold)s ) ||| % thanos.rule, 'for': '5m', @@ -124,7 +128,7 @@ sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_ruler_query_apis_dns_lookups_total{%(selector)s}[5m])) - * 100 > 1 + * 100 > %(rulerDnsErrorThreshold)s ) ||| % thanos.rule, 'for': '15m', @@ -142,7 +146,7 @@ sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_ruler_alertmanagers_dns_lookups_total{%(selector)s}[5m])) - * 100 > 1 + * 100 > %(alertManagerDnsErrorThreshold)s ) ||| % thanos.rule, 'for': '15m', diff --git a/mixin/thanos/alerts/store.libsonnet b/mixin/thanos/alerts/store.libsonnet index 961870496c6..a30f71c95d9 100644 --- a/mixin/thanos/alerts/store.libsonnet +++ b/mixin/thanos/alerts/store.libsonnet @@ -3,6 +3,11 @@ store+:: { jobPrefix: error 'must provide job prefix for Thanos Store alerts', selector: error 'must provide selector for Thanos Store alerts', + grpcErrorThreshold: 5, + compactionErrorThreshold: 5, + seriesGateErrorThreshold: 2, + bucketOpsErrorThreshold: 5, + bucketOpsP99LatencyThreshold: 2, }, prometheusAlerts+:: { groups+: [ @@ -19,7 +24,7 @@ sum by (job) (rate(grpc_server_handled_total{grpc_code=~"Unknown|ResourceExhausted|Internal|Unavailable|DataLoss|DeadlineExceeded", %(selector)s}[5m])) / sum by (job) (rate(grpc_server_started_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(grpcErrorThreshold)s ) ||| % thanos.store, 'for': '5m', @@ -34,7 +39,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s}[5m]))) > 2 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_bucket_store_series_gate_duration_seconds_bucket{%(selector)s}[5m]))) > %(seriesGateErrorThreshold)s and sum by (job) (rate(thanos_bucket_store_series_gate_duration_seconds_count{%(selector)s}[5m])) > 0 ) @@ -54,7 +59,7 @@ sum by (job) (rate(thanos_objstore_bucket_operation_failures_total{%(selector)s}[5m])) / sum by (job) (rate(thanos_objstore_bucket_operations_total{%(selector)s}[5m])) - * 100 > 5 + * 100 > %(bucketOpsErrorThreshold)s ) ||| % thanos.store, 'for': '15m', @@ -69,7 +74,7 @@ }, expr: ||| ( - histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s}[5m]))) > 15 + histogram_quantile(0.9, sum by (job, le) (rate(thanos_objstore_bucket_operation_duration_seconds_bucket{%(selector)s}[5m]))) > %(bucketOpsP99LatencyThreshold)s and sum by (job) (rate(thanos_objstore_bucket_operation_duration_seconds_count{%(selector)s}[5m])) > 0 ) From 1a2695953221a717bc7de04bc50705754af4d3d4 Mon Sep 17 00:00:00 2001 From: Povilas Versockas Date: Fri, 27 Mar 2020 11:03:30 +0200 Subject: [PATCH 059/190] Update UW logo (#2329) Signed-off-by: Povilas Versockas --- website/data/adopters.yml | 4 ++-- website/static/logos/utilitywarehouse.png | Bin 15948 -> 7475 bytes 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/website/data/adopters.yml b/website/data/adopters.yml index c0a498564a7..45a7199f3ba 100644 --- a/website/data/adopters.yml +++ b/website/data/adopters.yml @@ -3,8 +3,8 @@ adopters: - name: Monzo url: https://www.monzo.com logo: monzo.png -- name: Utility Warehouse - url: https://www.utilitywarehouse.co.uk +- name: UW + url: https://uw.co.uk/ logo: utilitywarehouse.png - name: Adform url: https://site.adform.com diff --git a/website/static/logos/utilitywarehouse.png b/website/static/logos/utilitywarehouse.png index cc2a1a5bdadc1e030dc376b8993ed0e9ca081572..6c63094f9e291ba849bdd843eb584cf2b1438eef 100644 GIT binary patch literal 7475 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 literal 15948 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 Date: Fri, 27 Mar 2020 17:39:56 +0800 Subject: [PATCH 060/190] block fetcher with errgroup (#2309) * block fetcher with errgroup Signed-off-by: arthur yang * errorgroup goroutine defer close Signed-off-by: arthur yang --- pkg/block/fetcher.go | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index 80377041d9a..bda9998e45f 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -30,6 +30,7 @@ import ( "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/runutil" + "golang.org/x/sync/errgroup" ) type fetcherMetrics struct { @@ -272,7 +273,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. partial = make(map[ulid.ULID]error) var ( - wg sync.WaitGroup + eg errgroup.Group ch = make(chan ulid.ULID, s.concurrency) mtx sync.Mutex @@ -282,10 +283,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. s.metrics.resetTx() for i := 0; i < s.concurrency; i++ { - wg.Add(1) - go func() { - defer wg.Done() - + eg.Go(func() error { for id := range ch { meta, err := s.loadMeta(ctx, id) if err == nil { @@ -312,28 +310,30 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. partial[id] = err mtx.Unlock() } - }() + return nil + }) } // Workers scheduled, distribute blocks. - err = s.bkt.Iter(ctx, "", func(name string) error { - id, ok := IsBlockDir(name) - if !ok { - return nil - } + eg.Go(func() error { + defer close(ch) + return s.bkt.Iter(ctx, "", func(name string) error { + id, ok := IsBlockDir(name) + if !ok { + return nil + } - select { - case <-ctx.Done(): - return ctx.Err() - case ch <- id: - } + select { + case <-ctx.Done(): + return ctx.Err() + case ch <- id: + } - return nil + return nil + }) }) - close(ch) - wg.Wait() - if err != nil { + if err := eg.Wait(); err != nil { return nil, nil, errors.Wrap(err, "MetaFetcher: iter bucket") } From d1f7547c78b99c483b4d5cc9b065e8523c61f2c5 Mon Sep 17 00:00:00 2001 From: Prem Kumar Date: Fri, 27 Mar 2020 15:12:19 +0530 Subject: [PATCH 061/190] website: fix 404 on root of sections (#2328) Signed-off-by: Prem Kumar --- docs/components/_index.md | 3 +++ docs/operating/_index.md | 3 +++ docs/proposals/_index.md | 3 +++ website/layouts/_default/list.html | 21 +++++++++++++++++++++ 4 files changed, 30 insertions(+) create mode 100644 docs/components/_index.md create mode 100644 docs/operating/_index.md create mode 100644 docs/proposals/_index.md create mode 100644 website/layouts/_default/list.html diff --git a/docs/components/_index.md b/docs/components/_index.md new file mode 100644 index 00000000000..869b07d88a7 --- /dev/null +++ b/docs/components/_index.md @@ -0,0 +1,3 @@ +--- +title: "Components:" +--- diff --git a/docs/operating/_index.md b/docs/operating/_index.md new file mode 100644 index 00000000000..1e0094aab9b --- /dev/null +++ b/docs/operating/_index.md @@ -0,0 +1,3 @@ +--- +title: "Operating Guides:" +--- diff --git a/docs/proposals/_index.md b/docs/proposals/_index.md new file mode 100644 index 00000000000..906e867f16e --- /dev/null +++ b/docs/proposals/_index.md @@ -0,0 +1,3 @@ +--- +title: "Proposals:" +--- diff --git a/website/layouts/_default/list.html b/website/layouts/_default/list.html new file mode 100644 index 00000000000..792dcb15af2 --- /dev/null +++ b/website/layouts/_default/list.html @@ -0,0 +1,21 @@ +{{ define "main" }} +
+
+
+ {{ partial "_default/sidemenu.html" . }} +
+
+

{{ .Title }}

+
    + + {{ range .Pages }} +
  • +

    {{.Title}}

    +
  • + {{ end }} +
+ {{ replace .Content "" "
" | safeHTML }} + + + +{{ end }} From 465b55aa3f975eedf32ade60ed36a279a1862a98 Mon Sep 17 00:00:00 2001 From: Daniel Rataj Date: Fri, 27 Mar 2020 11:42:04 +0100 Subject: [PATCH 062/190] Add mallgroup.com to adopters (#2331) Signed-off-by: Daniel Rataj Co-authored-by: Daniel Rataj --- website/data/adopters.yml | 3 +++ website/static/logos/mallgroup.png | Bin 0 -> 8643 bytes 2 files changed, 3 insertions(+) create mode 100644 website/static/logos/mallgroup.png diff --git a/website/data/adopters.yml b/website/data/adopters.yml index 45a7199f3ba..26f753c48c9 100644 --- a/website/data/adopters.yml +++ b/website/data/adopters.yml @@ -90,3 +90,6 @@ adopters: - name: Ozon url: https://www.ozon.ru logo: ozon.png +- name: MALL Group + url: https://www.mallgroup.com/ + logo: mallgroup.png diff --git a/website/static/logos/mallgroup.png b/website/static/logos/mallgroup.png new file mode 100644 index 0000000000000000000000000000000000000000..82d47b2ed274c1a61f2687d073f86203f57f39fd GIT binary patch literal 8643 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 literal 0 HcmV?d00001 From 316d26d8e0ecabc92c224d64e7aff3f37e61fd9f Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 27 Mar 2020 16:26:27 +0000 Subject: [PATCH 063/190] store: Binary index header is now production ready and enabled by default (#2330) * store: Binary index header is now production ready and enabled by default. Signed-off-by: Bartlomiej Plotka * Fixed typo. Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 1 + cmd/thanos/store.go | 13 +++++++------ test/e2e/e2ethanos/services.go | 4 ++-- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab743e683e5..fbfe3cf048a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -34,6 +34,7 @@ Since there are no consistency guarantees provided by some Object Storage provid - [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. - [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: initlialization fails with filepath bad pattern error and rule manager update error. - [#2310](https://github.com/thanos-io/thanos/pull/2310) query: Report timespan 0 to 0 when discovering no stores. +- [#2330](https://github.com/thanos-io/thanos/pull/2330) store: index-header is no longer experimental. It is enabled by default for store Gateway. You can disable it with new hidden flag: `--store.disable-index-header`. `--experimental.enable-index-header` flag was removed. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 18e95f81a1e..d6d865533c6 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -78,7 +78,8 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { selectorRelabelConf := regSelectorRelabelFlags(cmd) - enableIndexHeader := cmd.Flag("experimental.enable-index-header", "If true, Store Gateway will recreate index-header instead of index-cache.json for each block. This will replace index-cache.json permanently once it will be out of experimental stage."). + // TODO(bwplotka): Remove in v0.13.0 if no issues. + disableIndexHeader := cmd.Flag("store.disable-index-header", "If specified, Store Gateway will use index-cache.json for each block instead of recreating binary index-header"). Hidden().Default("false").Bool() enablePostingsCompression := cmd.Flag("experimental.enable-index-cache-postings-compression", "If true, Store Gateway will reencode and compress postings before storing them into cache. Compressed postings take about 10% of the original size."). @@ -117,7 +118,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { uint64(*indexCacheSize), uint64(*chunkPoolSize), uint64(*maxSampleCount), - int(*maxConcurrent), + *maxConcurrent, component.Store, debugLogging, *syncInterval, @@ -128,7 +129,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { }, selectorRelabelConf, *advertiseCompatibilityLabel, - *enableIndexHeader, + *disableIndexHeader, *enablePostingsCompression, time.Duration(*consistencyDelay), time.Duration(*ignoreDeletionMarksDelay), @@ -163,7 +164,7 @@ func runStore( filterConf *store.FilterConfig, selectorRelabelConf *extflag.PathOrContent, advertiseCompatibilityLabel bool, - enableIndexHeader bool, + disableIndexHeader bool, enablePostingsCompression bool, consistencyDelay time.Duration, ignoreDeletionMarksDelay time.Duration, @@ -252,7 +253,7 @@ func runStore( return errors.Wrap(err, "meta fetcher") } - if enableIndexHeader { + if !disableIndexHeader { level.Info(logger).Log("msg", "index-header instead of index-cache.json enabled") } bs, err := store.NewBucketStore( @@ -269,7 +270,7 @@ func runStore( blockSyncConcurrency, filterConf, advertiseCompatibilityLabel, - enableIndexHeader, + !disableIndexHeader, enablePostingsCompression, ) if err != nil { diff --git a/test/e2e/e2ethanos/services.go b/test/e2e/e2ethanos/services.go index 4ddc51e2ba9..c014a36d7b8 100644 --- a/test/e2e/e2ethanos/services.go +++ b/test/e2e/e2ethanos/services.go @@ -322,7 +322,7 @@ func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, store := NewService( fmt.Sprintf("store-gw-%v", name), DefaultImage(), - e2e.NewCommand("store", append(e2e.BuildArgs(map[string]string{ + e2e.NewCommand("store", e2e.BuildArgs(map[string]string{ "--debug.name": fmt.Sprintf("store-gw-%v", name), "--grpc-address": ":9091", "--grpc-grace-period": "0s", @@ -336,7 +336,7 @@ func NewStoreGW(sharedDir string, name string, bucketConfig client.BucketConfig, "--store.grpc.series-max-concurrency": "1", "--selector.relabel-config": string(relabelConfigBytes), "--consistency-delay": "30m", - }), "--experimental.enable-index-header")...), + })...), e2e.NewReadinessProbe(80, "/-/ready", 200), 80, 9091, From 4e5c2f251b5b73e804883d9b42cd9246d32328db Mon Sep 17 00:00:00 2001 From: Guillaume Chenuet Date: Fri, 27 Mar 2020 22:23:20 +0100 Subject: [PATCH 064/190] Add leboncoin company as adopter (#2333) Signed-off-by: Guillaume Chenuet --- website/data/adopters.yml | 3 +++ website/static/logos/leboncoin.png | Bin 0 -> 38399 bytes 2 files changed, 3 insertions(+) create mode 100755 website/static/logos/leboncoin.png diff --git a/website/data/adopters.yml b/website/data/adopters.yml index 26f753c48c9..aa5b28c9769 100644 --- a/website/data/adopters.yml +++ b/website/data/adopters.yml @@ -93,3 +93,6 @@ adopters: - name: MALL Group url: https://www.mallgroup.com/ logo: mallgroup.png +- name: leboncoin + url: https://www.leboncoin.fr/ + logo: leboncoin.png diff --git a/website/static/logos/leboncoin.png b/website/static/logos/leboncoin.png new file mode 100755 index 0000000000000000000000000000000000000000..04469dd76b14d0333340410e0a337ef35d463ff5 GIT binary patch literal 38399 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

85IJW{c>pFbnD2rt@EoF3ur6MVQK*Rh) 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 BMs@%I literal 0 HcmV?d00001 From 601d4cf57a1e940208714b2c309f990834df958d Mon Sep 17 00:00:00 2001 From: Prem Kumar Date: Mon, 30 Mar 2020 03:48:07 +0530 Subject: [PATCH 065/190] website: Collapsible menu sections (#2336) * website: make sidemenu collapsed by default Signed-off-by: Prem Kumar * website: add caret svg in expandble sidemenu Signed-off-by: Prem Kumar * website: expand current section's sidemenu by default Signed-off-by: Prem Kumar --- .../layouts/partials/_default/sidemenu.html | 82 +++++++++++++------ website/static/expand.svg | 4 + website/static/main.css | 34 +++++++- 3 files changed, 93 insertions(+), 27 deletions(-) create mode 100644 website/static/expand.svg diff --git a/website/layouts/partials/_default/sidemenu.html b/website/layouts/partials/_default/sidemenu.html index bf45f265ff7..8c9e373922a 100644 --- a/website/layouts/partials/_default/sidemenu.html +++ b/website/layouts/partials/_default/sidemenu.html @@ -5,34 +5,64 @@

\ No newline at end of file + diff --git a/website/static/expand.svg b/website/static/expand.svg new file mode 100644 index 00000000000..e98e7b97f01 --- /dev/null +++ b/website/static/expand.svg @@ -0,0 +1,4 @@ + + + + diff --git a/website/static/main.css b/website/static/main.css index 3124bd995e0..3d39d261bed 100644 --- a/website/static/main.css +++ b/website/static/main.css @@ -70,4 +70,36 @@ pre { } .header-anchor { font-size: 100%; visibility: hidden;} -h1:hover a, h2:hover a, h3:hover a, h4:hover a { visibility: visible} \ No newline at end of file +h1:hover a, h2:hover a, h3:hover a, h4:hover a { visibility: visible} + +/* SideMenu Collapse */ +.menuinput { + display: none; +} + +.menulabel-thanos { + cursor: pointer; + display: flex; + align-items: center; +} + +.caret-expand { + width: 16px; + margin-left: 8px; + margin-bottom: 0.2rem; + transition: transform 0.2s ease-out; +} + +.menuinput:checked + label .caret-expand { + transform: rotateX(180deg); +} + +.sidemenu-thanos .list-group { + transform: scaleY(0); + height: 0; +} + +.menuinput:checked ~ .list-group { + transform: scaleY(1); + height: auto; +} From b9943f4d5aed3e8b511e007a1a906a3119ab5fcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Mon, 30 Mar 2020 11:18:15 +0300 Subject: [PATCH 066/190] ui: fix store never removed from /stores page bug (#2339) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ui: fix store never removed from /stores page bug We need to update `LastCheck` only if the error is non-nil. That field is used in the cleanup function to know when to remove the StoreAPI from the UI. If we always update it, even if an error has happened, that means that `--store.unhealthy-timeout` is never respected. Signed-off-by: Giedrius Statkevičius * query: fix storeset Update() test Now let's start with a proper state where LastCheck is not 0 at the beginning and we have 2 active stores, 3 store statuses just like the original author had intended. Signed-off-by: Giedrius Statkevičius --- CHANGELOG.md | 1 + pkg/query/storeset.go | 3 +- pkg/query/storeset_test.go | 9 ++- pkg/ui/bindata.go | 140 +++++++++++++++++------------------ pkg/ui/templates/stores.html | 2 +- 5 files changed, 79 insertions(+), 76 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fbfe3cf048a..58681c6367f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping - [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate - [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty +- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected ### Added diff --git a/pkg/query/storeset.go b/pkg/query/storeset.go index 978a3485ed5..b92a7af4696 100644 --- a/pkg/query/storeset.go +++ b/pkg/query/storeset.go @@ -457,10 +457,9 @@ func (s *StoreSet) updateStoreStatus(store *storeRef, err error) { } status.LastError = err - status.LastCheck = time.Now() if err == nil { - + status.LastCheck = time.Now() mint, maxt := store.TimeRange() status.LabelSets = store.LabelSets() status.StoreType = store.StoreType() diff --git a/pkg/query/storeset_test.go b/pkg/query/storeset_test.go index b3dd853dd52..00e218140d0 100644 --- a/pkg/query/storeset_test.go +++ b/pkg/query/storeset_test.go @@ -174,9 +174,6 @@ func TestStoreSet_Update(t *testing.T) { discoveredStoreAddr := stores.StoreAddresses() - // Start with one not available. - stores.CloseOne(discoveredStoreAddr[2]) - // Testing if duplicates can cause weird results. discoveredStoreAddr = append(discoveredStoreAddr, discoveredStoreAddr[0]) storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { @@ -188,6 +185,12 @@ func TestStoreSet_Update(t *testing.T) { storeSet.gRPCInfoCallTimeout = 2 * time.Second defer storeSet.Close() + // Initial update. + storeSet.Update(context.Background()) + + // Start with one not available. + stores.CloseOne(discoveredStoreAddr[2]) + // Should not matter how many of these we run. storeSet.Update(context.Background()) storeSet.Update(context.Background()) diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index ae7caaa7008..a238355c9c5 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -160,7 +160,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -180,7 +180,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -200,7 +200,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -220,7 +220,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -240,7 +240,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -260,7 +260,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -280,7 +280,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -300,7 +300,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -320,12 +320,12 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiTemplatesStoresHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x41\x6b\xeb\x38\x10\xbe\xe7\x57\x0c\xa2\xd7\xc4\xd0\xcb\xc2\xe2\x78\x59\x96\xc2\x1e\xda\xf2\x20\x7d\xbd\x3e\x14\x6b\x12\x8b\x2a\x92\x91\xc6\x6d\x82\xd0\x7f\x7f\xc8\xb1\x13\xb9\x76\xd2\xf4\x5d\x0c\x1a\xcd\xcc\x37\x9e\xef\x9b\xb1\xbd\x17\xb8\x91\x1a\x81\x55\xc8\x05\x0b\x61\x96\x2b\xa9\xdf\x80\x0e\x35\x2e\x19\xe1\x9e\xb2\xd2\x39\x06\x16\xd5\x92\x39\x3a\x28\x74\x15\x22\x31\xa8\x2c\x6e\x96\xcc\x7b\xa8\x39\x55\x3f\x2c\x6e\xe4\x1e\x42\xc8\x1c\x71\x92\x65\x8c\xc9\x6c\xa3\xd0\x2d\x4a\xe7\xfe\x79\x5f\x7a\x0f\xeb\x46\x2a\xf1\x8a\xd6\x49\xa3\x21\x04\x56\xcc\xbc\x47\x2d\x42\x98\xcd\xce\x45\x94\x46\x13\x6a\x6a\xeb\x10\xf2\x1d\x4a\xc5\x9d\x5b\xb6\x66\x2e\x35\xda\xf9\x46\x35\x52\xb0\x62\x06\x00\xe0\xbd\xe5\x7a\x8b\x70\xe7\xc8\x58\x7c\x39\xd4\x08\x7f\x2f\x61\xb1\x32\x8d\x2d\xd1\x85\xd0\x39\xc9\x4d\xe2\xd1\x59\xf3\xea\xbe\xf0\x9e\x24\xa9\x34\x7c\xb1\x22\x2b\xf5\x36\x84\x3c\xab\xee\x7b\x0c\x54\x2e\x8d\xfa\xa9\xdf\xb4\xf9\xd0\x10\xfd\x07\x6e\xed\xab\xb4\x5e\xc4\xd7\x0a\xfb\xd2\x8f\x87\xf6\x39\x5f\x1b\x2b\xd0\x62\x5f\xff\xd1\x39\xf6\x3d\x3d\xdb\xf3\xa1\x73\x28\x1e\xb4\xa8\x8d\xd4\x94\x67\x54\x8d\x6f\x57\xc4\xa9\x71\xd3\x77\xff\x6a\x6d\x1a\x5d\xa2\x80\x47\xbe\x46\xb5\x42\xba\xe0\xf8\x24\x35\xbc\xc8\x1d\x5e\xb8\xe5\xfb\x2b\xb7\x8f\xdc\x11\xfc\x8f\x5c\x51\x05\xff\x55\x58\xbe\x5d\x71\x7b\x42\xe7\xf8\xf6\x53\xa2\x3c\x4b\xdf\x3a\xde\x7d\xea\xc9\xda\x88\xc3\xf9\x3c\xe4\x3d\x72\x2e\xb5\xc0\x3d\xdc\x2d\x56\xd1\xe0\xc6\x74\x5f\xe8\xac\x28\xbc\x3f\xfa\x2e\x9e\xf9\x0e\x23\xef\x24\x46\x4e\x3d\x93\x51\xda\xc8\x86\xd7\xd0\x2b\x4c\x1b\xea\x60\x17\xf1\x3d\x1f\xac\x35\x36\x01\x3f\xa5\x73\x35\xd7\x7d\x42\xae\xd0\x12\xb4\xcf\xb9\x6b\xca\x12\x9d\x83\x16\xe4\x97\xd4\x42\x96\x9c\x8c\x85\x38\x81\xf3\xa6\xae\xd1\x96\xdc\x21\x2b\x9a\x3a\xcf\x62\x8e\xa9\x32\x12\xa5\xde\x84\x29\x62\x17\xed\x97\x90\xc2\x7c\xe8\x2b\xa0\x27\xdd\x27\xfc\x8d\x9b\x38\x0e\xfd\xd6\x98\x9c\x83\x86\x52\x38\xd7\xd1\x49\x42\xf5\x32\x8f\xb2\x38\x11\xd2\xd9\xa6\x9a\xf3\x59\x15\x57\x6b\x1e\x43\xb5\x30\x27\xd0\x23\xd4\x14\xce\x29\x6d\x4a\xc6\x9a\x8b\x2d\x42\xfb\x9c\xd7\x56\xee\xb8\x3d\xb0\x28\xc9\x36\x5f\x27\xc9\xb8\x63\x3b\xc3\x2b\x57\x0d\x86\xc0\x2e\x91\x01\x17\x08\x39\x61\x8f\x88\x81\xd1\xf0\x7d\x95\x27\xcf\x2e\x30\x90\x67\x2d\x79\xc5\x0d\x52\xf0\x7e\x63\xec\x8e\x53\xdc\x28\x8e\xf8\xae\xee\x89\x7a\x92\x3a\xda\x2e\xcc\xe1\x95\x38\xbe\xbf\x1e\xe7\xa4\x2e\x31\x9d\xcf\x76\x4d\x85\x00\x7c\x6b\x6e\x94\x6b\xf2\x1d\xb9\x3a\xe1\xf0\xfd\x89\x9b\xd0\xf9\x11\xf1\x56\xb8\x3f\x1e\xce\x21\xf7\xa3\x0d\x32\xb5\x32\xa1\x34\x2a\xc2\x2d\xd9\x5f\x13\x75\x3f\x1b\x70\xc7\x1d\x6c\x71\x2b\x1d\xc5\x31\xfe\x0e\xfe\xa0\xde\x81\xd6\x06\xfa\x1a\x57\xba\x4e\x3f\x20\xc9\x9f\x43\xda\xfd\x0f\x6e\xb5\xd4\x5b\x56\x4c\x55\x99\x67\x42\xbe\x0f\x3f\xe6\x9d\xa9\x3f\xfe\x0e\x00\x00\xff\xff\xf7\x7e\x17\x21\x2b\x09\x00\x00") +var _pkgUiTemplatesStoresHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x41\x6b\xeb\x38\x10\xbe\xe7\x57\x0c\xa2\xd7\xc4\xd0\xcb\xc2\xe2\x78\x59\x96\xc2\x1e\xda\xf2\x20\x7d\xbd\x3e\x14\x6b\x12\x8b\x2a\x92\x91\xc6\x6d\x82\xd0\x7f\x7f\xc8\xb1\x13\xb9\x76\xd2\xf4\x5d\x0c\x1a\xcd\xcc\x37\x99\xef\x9b\x51\xbc\x17\xb8\x91\x1a\x81\x55\xc8\x05\x0b\x61\x96\x2b\xa9\xdf\x80\x0e\x35\x2e\x19\xe1\x9e\xb2\xd2\x39\x06\x16\xd5\x92\x39\x3a\x28\x74\x15\x22\x31\xa8\x2c\x6e\x96\xcc\x7b\xa8\x39\x55\x3f\x2c\x6e\xe4\x1e\x42\xc8\x1c\x71\x92\x65\x8c\xc9\x6c\xa3\xd0\x2d\x4a\xe7\xfe\x79\x5f\x7a\x0f\xeb\x46\x2a\xf1\x8a\xd6\x49\xa3\x21\x04\x56\xcc\xbc\x47\x2d\x42\x98\xcd\xce\x45\x94\x46\x13\x6a\x6a\xeb\x10\xf2\x1d\x4a\xc5\x9d\x5b\xb6\x66\x2e\x35\xda\xf9\x46\x35\x52\xb0\x62\x06\x00\xe0\xbd\xe5\x7a\x8b\x70\xe7\xc8\x58\x7c\x39\xd4\x08\x7f\x2f\x61\xb1\x32\x8d\x2d\xd1\x85\xd0\x39\xc9\x4d\xe2\xd1\x59\xf3\xea\xbe\xf0\x9e\x24\xa9\x34\x7c\xb1\x22\x2b\xf5\x36\x84\x3c\xab\xee\x7b\x0c\x54\x2e\x8d\xfa\xa9\xdf\xb4\xf9\xd0\x10\xfd\x07\x6e\xed\x4f\x69\xbd\x88\xaf\x15\xf6\xa5\x1f\x0f\xed\x77\xbe\x36\x56\xa0\xc5\xbe\xfe\xa3\x73\xec\x7b\x7a\xb6\xe7\x43\xe7\x50\x3c\x68\x51\x1b\xa9\x29\xcf\xa8\x1a\xdf\xae\x88\x53\xe3\xa6\xef\xfe\xd5\xda\x34\xba\x44\x01\x8f\x7c\x8d\x6a\x85\x74\xc1\xf1\x49\x6a\x78\x91\x3b\xbc\x70\xcb\xf7\x57\x6e\x1f\xb9\x23\x58\x35\x65\x89\xce\x6d\x1a\x05\xff\x23\x57\x54\xc1\x7f\x15\x96\x6f\x57\x22\x9e\xd0\x39\xbe\xfd\x94\x33\xcf\xd2\x06\xc4\xbb\x4f\xed\x59\x1b\x71\x38\x9f\x87\x12\x88\xf4\x4b\x2d\x70\x0f\x77\x8b\x55\x34\xb8\x31\xf3\x17\x9a\x2c\x0a\xef\x8f\xbe\x8b\x67\xbe\xc3\x28\x01\x12\x23\xa7\x9e\xd4\xa8\x72\x64\xc3\x6b\xe8\xc5\xa6\x0d\x75\xb0\x8b\xf8\x3b\x1f\xac\x35\x36\x01\x3f\xa5\x73\x35\xd7\x7d\x42\xae\xd0\x12\xb4\xdf\xb9\x3b\x76\x12\x5a\x90\x5f\x52\x0b\x59\x72\x32\x16\xe2\x30\xce\x9b\xba\x46\x5b\x72\x87\xac\x68\xea\x3c\x8b\x39\xa6\xca\x48\x44\x7b\x13\xa6\x88\x5d\xb4\x5f\x42\x0a\xf3\xa1\xaf\x80\x9e\x46\x20\xe1\x6f\xdc\xc4\x71\xe8\xb7\x26\xe6\x1c\x34\x94\xc2\xb9\x8e\x4e\x12\xaa\x57\x7c\x94\xc5\x89\x90\xce\x36\xd5\x9c\xcf\xaa\xb8\x5a\xf3\x18\xaa\x85\x39\x81\x1e\xa1\xa6\x70\x4e\x69\x53\x32\xd6\x5c\x6c\x11\xda\xef\xbc\xb6\x72\xc7\xed\x81\x45\x49\xb6\xf9\x3a\x49\xc6\x75\xdb\x19\x5e\xb9\x6a\x30\x04\x76\x89\x0c\xb8\x40\xc8\x09\x7b\x44\x0c\x8c\x86\xef\xab\x3c\x79\x76\x81\x81\x3c\x6b\xc9\x2b\x6e\x90\x82\xf7\x1b\x63\x77\x9c\xe2\x72\x71\xc4\x77\x75\x4f\xd4\x93\xd4\xd1\x76\x61\x0e\xaf\xc4\xf1\xfd\xf5\x38\x27\x75\x89\xe9\x7c\xb6\x6b\x2a\x04\xe0\x5b\x73\xa3\x5c\x93\x27\xe5\xea\x84\xc3\xf7\x27\x6e\x42\xe7\x47\xc4\x5b\xe1\xfe\x78\x38\x87\xdc\x8f\x36\xc8\xd4\xca\x84\xd2\xa8\x08\xb7\x64\x7f\x4d\xd4\xfd\x6c\xc0\x1d\x77\xb0\xc5\xad\x74\x14\xc7\xf8\x3b\xf8\x83\x7a\x07\x5a\x1b\xe8\x6b\x5c\xe9\x3a\x7d\x40\x92\x3f\x11\x69\xf7\x3f\xb8\xd5\x52\x6f\x59\x31\x55\x65\x9e\x09\xf9\x3e\x7c\xd7\x3b\x53\x7f\xfc\x1d\x00\x00\xff\xff\xff\x5c\x1c\xa9\x36\x09\x00\x00") func pkgUiTemplatesStoresHtmlBytes() ([]byte, error) { return bindataRead( @@ -340,7 +340,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2347, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2358, mode: os.FileMode(420), modTime: time.Unix(1585516941, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -360,7 +360,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -380,7 +380,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -400,7 +400,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -420,7 +420,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -440,7 +440,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -460,7 +460,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -480,7 +480,7 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -500,7 +500,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1584478576, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1585516433, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -520,7 +520,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -540,7 +540,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -560,7 +560,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -580,7 +580,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -600,7 +600,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -620,7 +620,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -640,7 +640,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -660,7 +660,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -680,7 +680,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -700,7 +700,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -720,7 +720,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -740,7 +740,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -760,7 +760,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -780,7 +780,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -800,7 +800,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -820,7 +820,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -840,7 +840,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -860,7 +860,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -880,7 +880,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -900,7 +900,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -920,7 +920,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -940,7 +940,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -960,7 +960,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -980,7 +980,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1000,7 +1000,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1020,7 +1020,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1040,7 +1040,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1060,7 +1060,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1080,7 +1080,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1100,7 +1100,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1120,7 +1120,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1140,7 +1140,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1160,7 +1160,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1180,7 +1180,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1200,7 +1200,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1220,7 +1220,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1240,7 +1240,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1260,7 +1260,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1280,7 +1280,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1300,7 +1300,7 @@ func pkgUiStaticVendorJsJquery331MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.3.1.min.js", size: 86927, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1320,7 +1320,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1340,7 +1340,7 @@ func pkgUiStaticVendorJsJqueryMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.min.js", size: 86671, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1360,7 +1360,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1380,7 +1380,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1400,7 +1400,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1420,7 +1420,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1440,7 +1440,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1460,7 +1460,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1480,7 +1480,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1500,7 +1500,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1520,7 +1520,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1584129190, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/pkg/ui/templates/stores.html b/pkg/ui/templates/stores.html index c4cb297493b..e6b0d617568 100644 --- a/pkg/ui/templates/stores.html +++ b/pkg/ui/templates/stores.html @@ -18,7 +18,7 @@

Unknown Type

- + From 1e5d3e1b32cf935bbda78a34535a974021e3b87b Mon Sep 17 00:00:00 2001 From: Alastair Firth Date: Mon, 30 Mar 2020 14:51:29 +0200 Subject: [PATCH 067/190] fix typo in readme (#2342) data -> date Signed-off-by: afirth --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cc5f75d2c83..e163a9cc970 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ The philosophy of Thanos and our community is borrowing much from UNIX philosoph ## Releases -Master should be stable and usable. Every commit to master builds docker image named `master--` in [quay.io/thanos/thanos](https://quay.io/repository/thanos/thanos) and [thanosio/thanos dockerhub (mirror)](https://hub.docker.com/r/thanosio/thanos) +Master should be stable and usable. Every commit to master builds docker image named `master--` in [quay.io/thanos/thanos](https://quay.io/repository/thanos/thanos) and [thanosio/thanos dockerhub (mirror)](https://hub.docker.com/r/thanosio/thanos) We also perform minor releases every 6 weeks. From 39fb215f639ed47272af371e3a3b1f028f55a2c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Mon, 30 Mar 2020 19:53:32 +0300 Subject: [PATCH 068/190] query: add --store-strict flag (#2337) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * query: add --store-strict flag Add a new flag called `--store-strict` as agreed per https://thanos.io/proposals/202001_thanos_query_health_handling.md/ I have updated the proposal to reflect the reality. Third time's the charm, I believe it :-) Now the flag is called `--store-strict` which only accepts statically defined nodes. I guess the code is even simpler now. I have also fixed one small issue where `%w` was used in `errors.Errorf`. Couldn't compile Thanos locally with Go 1.14 without this fix. Signed-off-by: Giedrius Statkevičius * CHANGELOG: fix changelog item Signed-off-by: Giedrius Statkevičius --- CHANGELOG.md | 1 + cmd/thanos/query.go | 19 +++- docs/components/query.md | 5 + .../202001_thanos_query_health_handling.md | 11 ++- pkg/discovery/dns/provider.go | 27 ++++-- pkg/discovery/dns/provider_test.go | 32 +++++++ pkg/query/storeset.go | 57 ++++++++---- pkg/query/storeset_test.go | 92 ++++++++++++++++++- pkg/store/postings_codec.go | 2 +- 9 files changed, 208 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58681c6367f..c03b1462f66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Added +- [#2252](https://github.com/thanos-io/thanos/pull/2252) Query: add new `--store-strict` flag. More information available [here](/docs/proposals/202001_thanos_query_health_handling.md). - [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. - [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. - [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index ed266904e71..4a352f35aac 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -78,6 +78,9 @@ func registerQuery(m map[string]setupFunc, app *kingpin.Application) { stores := cmd.Flag("store", "Addresses of statically configured store API servers (repeatable). The scheme may be prefixed with 'dns+' or 'dnssrv+' to detect store API servers through respective DNS lookups."). PlaceHolder("").Strings() + strictStores := cmd.Flag("store-strict", "Addresses of only statically configured store API servers that are always used, even if the health check fails. Useful if you have a caching layer on top."). + PlaceHolder("").Strings() + fileSDFiles := cmd.Flag("store.sd-files", "Path to files that contain addresses of store API servers. The path can be a glob pattern (repeatable)."). PlaceHolder("").Strings() @@ -162,6 +165,7 @@ func registerQuery(m map[string]setupFunc, app *kingpin.Application) { *dnsSDResolver, time.Duration(*unhealthyStoreTimeout), time.Duration(*instantDefaultMaxSourceResolution), + *strictStores, component.Query, ) } @@ -202,6 +206,7 @@ func runQuery( dnsSDResolver string, unhealthyStoreTimeout time.Duration, instantDefaultMaxSourceResolution time.Duration, + strictStores []string, comp component.Component, ) error { // TODO(bplotka in PR #513 review): Move arguments into struct. @@ -222,14 +227,24 @@ func runQuery( dns.ResolverType(dnsSDResolver), ) + for _, store := range strictStores { + if dns.IsDynamicNode(store) { + return errors.Errorf("%s is a dynamically specified store i.e. it uses SD and that is not permitted under strict mode. Use --store for this", store) + } + } + var ( stores = query.NewStoreSet( logger, reg, func() (specs []query.StoreSpec) { - // Add DNS resolved addresses from static flags and file SD. + // Add DNS resolved addresses. for _, addr := range dnsProvider.Addresses() { - specs = append(specs, query.NewGRPCStoreSpec(addr)) + specs = append(specs, query.NewGRPCStoreSpec(addr, false)) + } + // Add strict & static nodes. + for _, addr := range strictStores { + specs = append(specs, query.NewGRPCStoreSpec(addr, true)) } specs = removeDuplicateStoreSpecs(logger, duplicatedStores, specs) diff --git a/docs/components/query.md b/docs/components/query.md index 96f12e3217e..563fd5ce4be 100644 --- a/docs/components/query.md +++ b/docs/components/query.md @@ -327,6 +327,11 @@ Flags: prefixed with 'dns+' or 'dnssrv+' to detect store API servers through respective DNS lookups. + --store-strict= ... + Addresses of only statically configured store + API servers that are always used, even if the + health check fails. Useful if you have a + caching layer on top. --store.sd-files= ... Path to files that contain addresses of store API servers. The path can be a glob pattern diff --git a/docs/proposals/202001_thanos_query_health_handling.md b/docs/proposals/202001_thanos_query_health_handling.md index 3782d4b6cb2..a07b19b2a47 100644 --- a/docs/proposals/202001_thanos_query_health_handling.md +++ b/docs/proposals/202001_thanos_query_health_handling.md @@ -2,7 +2,7 @@ title: Thanos Query store nodes healthiness handling type: proposal menu: proposals -status: accepted +status: complete owner: GiedriusS --- @@ -35,6 +35,7 @@ Thus, this logic needs to be changed somehow. There are a few possible options: 2. Another option could be introduced such as `--store.hold-timeout` which would be `--store.unhealthy-timeout`'s brother and we would hold the StoreAPI nodes for `max(hold_timeout, unhealthy_timeout)`. 3. Another option such as `--store.strict-mode` could be introduced which means that we would always retain the last information of the StoreAPI nodes of the last successful check. 4. The StoreAPI node specification format that is used in `--store` could be extended to include another flag which would let specify the previous option per-specific node. +5. Instead of extending the specification format, we could move the same inforamtion to the command line options themselves. This would increase the explicitness of this new mode i.e. that it only applies to statically defined nodes. Lets look through their pros and cons: @@ -47,10 +48,10 @@ If we were to graph these choices in terms of their incisiveness and complexity ```text Most incisive / Least Complex ------------ Least incisive / Most Complex #1 #2 #4 - #3 + #3 #5 ``` -After careful consideration and with the rationale in this proposal, we have decided to go with the third option. It should provide a sweet spot between being too invasive and providing our users the ability to fall-back to the old behavior. +After careful consideration and with the rationale in this proposal, we have decided to go with the fifth option. It should provide a sweet spot between being too invasive and providing our users the ability to fall-back to the old behavior. ## Goals @@ -77,7 +78,7 @@ The way this will need to be done should be as generic as possible so the design ## Proposal -* Add a new flag to Thanos Query `--store.strict-mode` which will make it always retain the last successfully retrieved information via the `Info()` gRPC method of **statically** defined nodes and thus always consider them part of the active store set. +* Add a new flag to Thanos Query `--store-strict` which will only accept statically specified nodes and Thanos Query will always retain the last successfully retrieved information of them via the `Info()` gRPC method. Thus, they will always be considered as part of the active store set. ## Risk @@ -85,7 +86,7 @@ The way this will need to be done should be as generic as possible so the design ## Work Plan -* Implement the new flag `--store.strict-mode` in Thanos Query which will make it keep around statically defined nodes. It will be disabled by default to reduce surprises when upgrading. +* Implement the new flag `--store-strict` in Thanos Query which will only accept statically defined nodes that will be permanently kept around. It is optional to use so there will be no surprises when upgrading. * Implement tests with dummy store nodes. * Document the new behavior. diff --git a/pkg/discovery/dns/provider.go b/pkg/discovery/dns/provider.go index 5df9e97320a..0ef944574dd 100644 --- a/pkg/discovery/dns/provider.go +++ b/pkg/discovery/dns/provider.go @@ -87,6 +87,23 @@ func (p *Provider) Clone() *Provider { } } +// IsDynamicNode returns if the specified StoreAPI addr uses +// any kind of SD mechanism. +func IsDynamicNode(addr string) bool { + qtype, _ := GetQTypeName(addr) + return qtype != "" +} + +// GetQTypeName splits the provided addr into two parts: the QType (if any) +// and the name. +func GetQTypeName(addr string) (qtype string, name string) { + qtypeAndName := strings.SplitN(addr, "+", 2) + if len(qtypeAndName) != 2 { + return "", addr + } + return qtypeAndName[0], qtypeAndName[1] +} + // Resolve stores a list of provided addresses or their DNS records if requested. // Addresses prefixed with `dns+` or `dnssrv+` will be resolved through respective DNS lookup (A/AAAA or SRV). // defaultPort is used for non-SRV records when a port is not supplied. @@ -100,14 +117,12 @@ func (p *Provider) Resolve(ctx context.Context, addrs []string) { resolvedAddrs := map[string][]string{} for _, addr := range addrs { var resolved []string - qtypeAndName := strings.SplitN(addr, "+", 2) - if len(qtypeAndName) != 2 { - // No lookup specified. Add to results and continue to the next address. - resolvedAddrs[addr] = []string{addr} - p.resolverAddrs.WithLabelValues(addr).Set(1.0) + qtype, name := GetQTypeName(addr) + if qtype == "" { + resolvedAddrs[name] = []string{name} + p.resolverAddrs.WithLabelValues(name).Set(1.0) continue } - qtype, name := qtypeAndName[0], qtypeAndName[1] resolved, err := p.resolver.Resolve(ctx, name, QType(qtype)) p.resolverLookupsCount.Inc() diff --git a/pkg/discovery/dns/provider_test.go b/pkg/discovery/dns/provider_test.go index 41f4e86cc5e..585a7afb222 100644 --- a/pkg/discovery/dns/provider_test.go +++ b/pkg/discovery/dns/provider_test.go @@ -102,3 +102,35 @@ func (d *mockResolver) Resolve(_ context.Context, name string, _ QType) ([]strin } return d.res[name], nil } + +// TestIsDynamicNode tests whether we properly catch dynamically defined nodes. +func TestIsDynamicNode(t *testing.T) { + for _, tcase := range []struct { + node string + isDynamic bool + }{ + { + node: "1.2.3.4", + isDynamic: false, + }, + { + node: "gibberish+1.1.1.1+noa", + isDynamic: true, + }, + { + node: "", + isDynamic: false, + }, + { + node: "dns+aaa", + isDynamic: true, + }, + { + node: "dnssrv+asdasdsa", + isDynamic: true, + }, + } { + isDynamic := IsDynamicNode(tcase.node) + testutil.Equals(t, tcase.isDynamic, isDynamic, "mismatch between results") + } +} diff --git a/pkg/query/storeset.go b/pkg/query/storeset.go index b92a7af4696..aafb003f3fa 100644 --- a/pkg/query/storeset.go +++ b/pkg/query/storeset.go @@ -36,6 +36,8 @@ type StoreSpec interface { // NOTE: It is implementation responsibility to retry until context timeout, but a caller responsibility to manage // given store connection. Metadata(ctx context.Context, client storepb.StoreClient) (labelSets []storepb.LabelSet, mint int64, maxt int64, storeType component.StoreAPI, err error) + // StrictStatic returns true if the StoreAPI has been statically defined and it is under a strict mode. + StrictStatic() bool } type StoreStatus struct { @@ -49,13 +51,19 @@ type StoreStatus struct { } type grpcStoreSpec struct { - addr string + addr string + strictstatic bool } // NewGRPCStoreSpec creates store pure gRPC spec. // It uses Info gRPC call to get Metadata. -func NewGRPCStoreSpec(addr string) StoreSpec { - return &grpcStoreSpec{addr: addr} +func NewGRPCStoreSpec(addr string, strictstatic bool) StoreSpec { + return &grpcStoreSpec{addr: addr, strictstatic: strictstatic} +} + +// StrictStatic returns true if the StoreAPI has been statically defined and it is under a strict mode. +func (s *grpcStoreSpec) StrictStatic() bool { + return s.strictstatic } func (s *grpcStoreSpec) Addr() string { @@ -320,7 +328,7 @@ func newStoreAPIStats() map[component.StoreAPI]map[string]int { } // Update updates the store set. It fetches current list of store specs from function and updates the fresh metadata -// from all stores. +// from all stores. Keeps around statically defined nodes that were defined with the strict mode. func (s *StoreSet) Update(ctx context.Context) { s.updateMtx.Lock() defer s.updateMtx.Unlock() @@ -334,14 +342,14 @@ func (s *StoreSet) Update(ctx context.Context) { level.Debug(s.logger).Log("msg", "starting updating storeAPIs", "cachedStores", len(stores)) - healthyStores := s.getHealthyStores(ctx, stores) - level.Debug(s.logger).Log("msg", "checked requested storeAPIs", "healthyStores", len(healthyStores), "cachedStores", len(stores)) + activeStores := s.getActiveStores(ctx, stores) + level.Debug(s.logger).Log("msg", "checked requested storeAPIs", "activeStores", len(activeStores), "cachedStores", len(stores)) stats := newStoreAPIStats() - // Close stores that where not healthy this time (are not in healthy stores map). + // Close stores that where not active this time (are not in active stores map). for addr, st := range stores { - if _, ok := healthyStores[addr]; ok { + if _, ok := activeStores[addr]; ok { stats[st.StoreType()][st.LabelSetsString()]++ continue } @@ -353,7 +361,7 @@ func (s *StoreSet) Update(ctx context.Context) { } // Add stores that are not yet in stores. - for addr, st := range healthyStores { + for addr, st := range activeStores { if _, ok := stores[addr]; ok { continue } @@ -384,15 +392,15 @@ func (s *StoreSet) Update(ctx context.Context) { s.cleanUpStoreStatuses(stores) } -func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*storeRef) map[string]*storeRef { +func (s *StoreSet) getActiveStores(ctx context.Context, stores map[string]*storeRef) map[string]*storeRef { var ( - unique = make(map[string]struct{}) - healthyStores = make(map[string]*storeRef, len(stores)) - mtx sync.Mutex - wg sync.WaitGroup + unique = make(map[string]struct{}) + activeStores = make(map[string]*storeRef, len(stores)) + mtx sync.Mutex + wg sync.WaitGroup ) - // Gather healthy stores map concurrently. Build new store if does not exist already. + // Gather active stores map concurrently. Build new store if does not exist already. for _, storeSpec := range s.storeSpecs() { if _, ok := unique[storeSpec.Addr()]; ok { level.Warn(s.logger).Log("msg", "duplicated address in store nodes", "address", storeSpec.Addr()) @@ -411,7 +419,7 @@ func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*stor st, seenAlready := stores[addr] if !seenAlready { - // New store or was unhealthy and was removed in the past - create new one. + // New store or was unactive and was removed in the past - create new one. conn, err := grpc.DialContext(ctx, addr, s.dialOpts...) if err != nil { s.updateStoreStatus(&storeRef{addr: addr}, err) @@ -425,25 +433,36 @@ func (s *StoreSet) getHealthyStores(ctx context.Context, stores map[string]*stor labelSets, minTime, maxTime, storeType, err := spec.Metadata(ctx, st.StoreClient) if err != nil { if !seenAlready { - // Close only if new. Unhealthy `s.stores` will be closed later on. + // Close only if new. Unactive `s.stores` will be closed later on. st.Close() } s.updateStoreStatus(st, err) level.Warn(s.logger).Log("msg", "update of store node failed", "err", errors.Wrap(err, "getting metadata"), "address", addr) + + if !spec.StrictStatic() { + return + } + + // Still keep it around if static & strict mode enabled. + mtx.Lock() + defer mtx.Unlock() + + activeStores[addr] = st return } + s.updateStoreStatus(st, nil) st.Update(labelSets, minTime, maxTime, storeType) mtx.Lock() defer mtx.Unlock() - healthyStores[addr] = st + activeStores[addr] = st }(storeSpec) } wg.Wait() - return healthyStores + return activeStores } func (s *StoreSet) updateStoreStatus(store *storeRef, err error) { diff --git a/pkg/query/storeset_test.go b/pkg/query/storeset_test.go index 00e218140d0..5bd98fd2338 100644 --- a/pkg/query/storeset_test.go +++ b/pkg/query/storeset_test.go @@ -51,8 +51,9 @@ func (s *testStore) LabelValues(ctx context.Context, r *storepb.LabelValuesReque } type testStoreMeta struct { - extlsetFn func(addr string) []storepb.LabelSet - storeType component.StoreAPI + extlsetFn func(addr string) []storepb.LabelSet + storeType component.StoreAPI + minTime, maxTime int64 } type testStores struct { @@ -78,6 +79,8 @@ func startTestStores(storeMetas []testStoreMeta) (*testStores, error) { storeSrv := &testStore{ info: storepb.InfoResponse{ LabelSets: meta.extlsetFn(listener.Addr().String()), + MaxTime: meta.maxTime, + MinTime: meta.minTime, }, } if meta.storeType != nil { @@ -178,7 +181,7 @@ func TestStoreSet_Update(t *testing.T) { discoveredStoreAddr = append(discoveredStoreAddr, discoveredStoreAddr[0]) storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { for _, addr := range discoveredStoreAddr { - specs = append(specs, NewGRPCStoreSpec(addr)) + specs = append(specs, NewGRPCStoreSpec(addr, false)) } return specs }, testGRPCOpts, time.Minute) @@ -526,7 +529,7 @@ func TestStoreSet_Update_NoneAvailable(t *testing.T) { storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { for _, addr := range initialStoreAddr { - specs = append(specs, NewGRPCStoreSpec(addr)) + specs = append(specs, NewGRPCStoreSpec(addr, false)) } return specs }, testGRPCOpts, time.Minute) @@ -535,10 +538,89 @@ func TestStoreSet_Update_NoneAvailable(t *testing.T) { // Should not matter how many of these we run. storeSet.Update(context.Background()) storeSet.Update(context.Background()) - testutil.Assert(t, len(storeSet.stores) == 0, "none of services should respond just fine, so we expect no client to be ready.") + testutil.Equals(t, 0, len(storeSet.stores), "none of services should respond just fine, so we expect no client to be ready.") // Leak test will ensure that we don't keep client connection around. expected := newStoreAPIStats() testutil.Equals(t, expected, storeSet.storesMetric.storeNodes) } + +// TestQuerierStrict tests what happens when the strict mode is enabled/disabled. +func TestQuerierStrict(t *testing.T) { + defer leaktest.CheckTimeout(t, 5*time.Second)() + + st, err := startTestStores([]testStoreMeta{ + { + minTime: 12345, + maxTime: 54321, + extlsetFn: func(addr string) []storepb.LabelSet { + return []storepb.LabelSet{ + { + Labels: []storepb.Label{ + { + Name: "addr", + Value: addr, + }, + }, + }, + } + }, + storeType: component.Sidecar, + }, + { + minTime: 66666, + maxTime: 77777, + extlsetFn: func(addr string) []storepb.LabelSet { + return []storepb.LabelSet{ + { + Labels: []storepb.Label{ + { + Name: "addr", + Value: addr, + }, + }, + }, + } + }, + storeType: component.Sidecar, + }, + }) + + testutil.Ok(t, err) + defer st.Close() + + staticStoreAddr := st.StoreAddresses()[0] + storeSet := NewStoreSet(nil, nil, func() (specs []StoreSpec) { + return []StoreSpec{ + NewGRPCStoreSpec(st.StoreAddresses()[0], true), + NewGRPCStoreSpec(st.StoreAddresses()[1], false), + } + }, testGRPCOpts, time.Minute) + defer storeSet.Close() + storeSet.gRPCInfoCallTimeout = 1 * time.Second + + // Initial update. + storeSet.Update(context.Background()) + testutil.Equals(t, 2, len(storeSet.stores), "two clients must be available for running store nodes") + + // The store is statically defined + strict mode is enabled + // so its client + information must be retained. + curMin, curMax := storeSet.stores[staticStoreAddr].minTime, storeSet.stores[staticStoreAddr].maxTime + testutil.Equals(t, int64(12345), curMin, "got incorrect minimum time") + testutil.Equals(t, int64(54321), curMax, "got incorrect minimum time") + + // Turn off the stores. + st.Close() + + // Update again many times. Should not matter WRT the static one. + storeSet.Update(context.Background()) + storeSet.Update(context.Background()) + storeSet.Update(context.Background()) + + // Check that the information is the same. + testutil.Equals(t, 1, len(storeSet.stores), "one client must remain available for a store node that is down") + testutil.Equals(t, curMin, storeSet.stores[staticStoreAddr].minTime, "minimum time reported by the store node is different") + testutil.Equals(t, curMax, storeSet.stores[staticStoreAddr].maxTime, "minimum time reported by the store node is different") + testutil.NotOk(t, storeSet.storeStatuses[staticStoreAddr].LastError) +} diff --git a/pkg/store/postings_codec.go b/pkg/store/postings_codec.go index 246d8bab81b..7b1aaff477d 100644 --- a/pkg/store/postings_codec.go +++ b/pkg/store/postings_codec.go @@ -80,7 +80,7 @@ func diffVarintSnappyDecode(input []byte) (index.Postings, error) { raw, err := snappy.Decode(nil, input[len(codecHeaderSnappy):]) if err != nil { - return nil, errors.Errorf("snappy decode: %w", err) + return nil, errors.Wrap(err, "snappy decode") } return newDiffVarintPostings(raw), nil From 4ed07072f087c42bbabd2f95ca6485158fce4fd8 Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Tue, 31 Mar 2020 09:57:26 +0200 Subject: [PATCH 069/190] Register grpc prometheus middleware metrics (#2347) Signed-off-by: Kemal Akkoyun --- pkg/server/grpc/grpc.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/server/grpc/grpc.go b/pkg/server/grpc/grpc.go index 2e230e82c81..c8ba582728b 100644 --- a/pkg/server/grpc/grpc.go +++ b/pkg/server/grpc/grpc.go @@ -83,6 +83,7 @@ func New(logger log.Logger, reg prometheus.Registerer, tracer opentracing.Tracer storepb.RegisterStoreServer(s, storeSrv) met.InitializeMetrics(s) + reg.MustRegister(met) grpc_health.RegisterHealthServer(s, probe.HealthServer()) From 2f0e4ed25f3011d134396c14455c1e7e0b71eedb Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Tue, 31 Mar 2020 13:07:06 +0100 Subject: [PATCH 070/190] website: Enabled two scripts to fix Google analytics. (#2346) * website: Enabled two scripts to fix Google analytics. Signed-off-by: Bartlomiej Plotka * Fixed also inline style. Signed-off-by: Bartlomiej Plotka --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 9d97ed3cc21..3d471bd9d0b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -30,7 +30,7 @@ command = "(env && make web HUGO=$(which hugo) WEBSITE_BASE_URL=${DEPLOY_PRIME_U # Force HTTPS only. Strict-Transport-Security = "max-age=31536000; includeSubDomains" # Load scripts only via HTTPS and from allowed domains. - Content-Security-Policy = "default-src https:" + Content-Security-Policy = "default-src https:; script-src https: 'self' 'sha256-3qFt4qPvMCWVUpjUxP5X57GBKae6RHYZ0rMjn9WuNF4='; style-src https: 'self' 'sha256-ouaL9aaaKO9mYd9/M+uyzYAL1CrOXJVRjV2nFgbGI2E='; object-src 'self'" # Only send referred when HTTPS is used. Referrer-Policy = "strict-origin-when-cross-origin" # Disable certain magic features, lol. From 83314038af4b43c5743a48bf552ebf57040bc074 Mon Sep 17 00:00:00 2001 From: ryaneorth Date: Tue, 31 Mar 2020 07:51:12 -0700 Subject: [PATCH 071/190] Added Workfront as adopter (#2351) Signed-off-by: Ryan Orth Co-authored-by: Ryan Orth --- website/data/adopters.yml | 3 +++ website/static/logos/workfront.png | Bin 0 -> 6444 bytes 2 files changed, 3 insertions(+) create mode 100644 website/static/logos/workfront.png diff --git a/website/data/adopters.yml b/website/data/adopters.yml index aa5b28c9769..17b6c5725d1 100644 --- a/website/data/adopters.yml +++ b/website/data/adopters.yml @@ -96,3 +96,6 @@ adopters: - name: leboncoin url: https://www.leboncoin.fr/ logo: leboncoin.png +- name: Workfront + url: https://www.workfront.com/ + logo: workfront.png \ No newline at end of file diff --git a/website/static/logos/workfront.png b/website/static/logos/workfront.png new file mode 100644 index 0000000000000000000000000000000000000000..a0ad765f91d3000947a6b7f0c607f80df25e8b7a GIT binary patch literal 6444 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 Date: Tue, 31 Mar 2020 19:01:45 +0100 Subject: [PATCH 072/190] compact: Fixed minor logging issues. (#2353) Fixes: https://github.com/thanos-io/thanos/issues/2322 Signed-off-by: Bartlomiej Plotka --- pkg/block/block.go | 2 +- pkg/compact/compact.go | 7 ++++--- pkg/objstore/objstore.go | 20 +++++++++++++++++++- pkg/objstore/oss/oss.go | 22 ++++++---------------- pkg/objstore/s3/s3.go | 26 ++++++++------------------ 5 files changed, 38 insertions(+), 39 deletions(-) diff --git a/pkg/block/block.go b/pkg/block/block.go index 40398cf3d9f..ddc877fb57c 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -148,7 +148,7 @@ func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket return errors.Wrap(err, "json encode deletion mark") } - if err := bkt.Upload(ctx, deletionMarkFile, bytes.NewReader(deletionMark)); err != nil { + if err := bkt.Upload(ctx, deletionMarkFile, bytes.NewBuffer(deletionMark)); err != nil { return errors.Wrapf(err, "upload file %s to bucket", deletionMarkFile) } diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index 6443ba5ae80..24d2c86ce1e 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -189,7 +189,7 @@ func (s *Syncer) Groups() (res []*Group, err error) { if !ok { lbls := labels.FromMap(m.Thanos.Labels) g, err = newGroup( - log.With(s.logger, "compactionGroup", fmt.Sprintf("%d@%v", m.Thanos.Downsample.Resolution, lbls.String()), "compactionGroupKey", groupKey), + log.With(s.logger, "group", fmt.Sprintf("%d@%v", m.Thanos.Downsample.Resolution, lbls.String()), "groupKey", groupKey), s.bkt, lbls, m.Thanos.Downsample.Resolution, @@ -613,6 +613,8 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( return false, ulid.ULID{}, nil } + level.Info(cg.logger).Log("msg", "compaction available and planned; downloading blocks", "plan", fmt.Sprintf("%v", plan)) + // Due to #183 we verify that none of the blocks in the plan have overlapping sources. // This is one potential source of how we could end up with duplicated chunks. uniqueSources := map[ulid.ULID]struct{}{} @@ -670,8 +672,7 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( "block id %s, try running with --debug.accept-malformed-index", id) } } - level.Debug(cg.logger).Log("msg", "downloaded and verified blocks", - "blocks", fmt.Sprintf("%v", plan), "duration", time.Since(begin)) + level.Info(cg.logger).Log("msg", "downloaded and verified blocks; compacting blocks", "plan", fmt.Sprintf("%v", plan), "duration", time.Since(begin)) begin = time.Now() diff --git a/pkg/objstore/objstore.go b/pkg/objstore/objstore.go index ff63a9018aa..23926054ad2 100644 --- a/pkg/objstore/objstore.go +++ b/pkg/objstore/objstore.go @@ -4,6 +4,7 @@ package objstore import ( + "bytes" "context" "fmt" "io" @@ -40,6 +41,24 @@ type Bucket interface { Name() string } +// TryToGetSize tries to get upfront size from reader. +// TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. +func TryToGetSize(r io.Reader) (int64, error) { + switch f := r.(type) { + case *os.File: + fileInfo, err := f.Stat() + if err != nil { + return 0, errors.Wrap(err, "os.File.Stat()") + } + return fileInfo.Size(), nil + case *bytes.Buffer: + return int64(f.Len()), nil + case *strings.Reader: + return f.Size(), nil + } + return 0, errors.New("unsupported type of io.Reader") +} + // BucketReader provides read access to an object storage bucket. type BucketReader interface { // Iter calls f for each entry in the given directory (not recursive.). The argument to f is the full @@ -53,7 +72,6 @@ type BucketReader interface { GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) // Exists checks if the given object exists in the bucket. - // TODO(bplotka): Consider removing Exists in favor of helper that do Get & IsObjNotFoundErr (less code to maintain). Exists(ctx context.Context, name string) (bool, error) // IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations. diff --git a/pkg/objstore/oss/oss.go b/pkg/objstore/oss/oss.go index effc1e217aa..5c081d7a5a1 100644 --- a/pkg/objstore/oss/oss.go +++ b/pkg/objstore/oss/oss.go @@ -65,26 +65,16 @@ func NewTestBucket(t testing.TB) (objstore.Bucket, func(), error) { return NewTestBucketFromConfig(t, c, false) } -func calculateChunks(name string, r io.Reader) (int, int64, error) { - switch f := r.(type) { - case *os.File: - if fileInfo, err := f.Stat(); err == nil { - s := fileInfo.Size() - return int(math.Floor(float64(s) / PartSize)), s % PartSize, nil - } - case *strings.Reader: - return int(math.Floor(float64(f.Size()) / PartSize)), f.Size() % PartSize, nil - } - return -1, 0, errors.New("unsupported implement of io.Reader") -} - // Upload the contents of the reader as an object into the bucket. -func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { - chunksnum, lastslice, err := calculateChunks(name, r) +func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error { + // TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. + size, err := objstore.TryToGetSize(r) if err != nil { - return err + return errors.Wrapf(err, "failed to get size apriori to upload %s", name) } + chunksnum, lastslice := int(math.Floor(float64(size)/PartSize)), size%PartSize + ncloser := ioutil.NopCloser(r) switch chunksnum { case 0: diff --git a/pkg/objstore/s3/s3.go b/pkg/objstore/s3/s3.go index d924eeb01f3..59098125d0f 100644 --- a/pkg/objstore/s3/s3.go +++ b/pkg/objstore/s3/s3.go @@ -287,7 +287,7 @@ func (b *Bucket) GetRange(ctx context.Context, name string, off, length int64) ( } // Exists checks if the given object exists. -func (b *Bucket) Exists(ctx context.Context, name string) (bool, error) { +func (b *Bucket) Exists(_ context.Context, name string) (bool, error) { _, err := b.client.StatObject(b.name, name, minio.StatObjectOptions{}) if err != nil { if b.IsObjNotFoundErr(err) { @@ -299,24 +299,14 @@ func (b *Bucket) Exists(ctx context.Context, name string) (bool, error) { return true, nil } -func (b *Bucket) guessFileSize(name string, r io.Reader) int64 { - if f, ok := r.(*os.File); ok { - fileInfo, err := f.Stat() - if err == nil { - return fileInfo.Size() - } - level.Warn(b.logger).Log("msg", "could not stat file for multipart upload", "name", name, "err", err) - return -1 - } - - level.Warn(b.logger).Log("msg", "could not guess file size for multipart upload", "name", name) - return -1 -} - // Upload the contents of the reader as an object into the bucket. func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { // TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. - size := b.guessFileSize(name, r) + size, err := objstore.TryToGetSize(r) + if err != nil { + level.Warn(b.logger).Log("msg", "could not guess file size for multipart upload; upload might be not optimized", "name", name, "err", err) + size = -1 + } // partSize cannot be larger than object size. partSize := b.partSize @@ -342,7 +332,7 @@ func (b *Bucket) Upload(ctx context.Context, name string, r io.Reader) error { } // ObjectSize returns the size of the specified object. -func (b *Bucket) ObjectSize(ctx context.Context, name string) (uint64, error) { +func (b *Bucket) ObjectSize(_ context.Context, name string) (uint64, error) { objInfo, err := b.client.StatObject(b.name, name, minio.StatObjectOptions{}) if err != nil { return 0, err @@ -351,7 +341,7 @@ func (b *Bucket) ObjectSize(ctx context.Context, name string) (uint64, error) { } // Delete removes the object with the given name. -func (b *Bucket) Delete(ctx context.Context, name string) error { +func (b *Bucket) Delete(_ context.Context, name string) error { return b.client.RemoveObject(b.name, name) } From 0aa995458671b40b5ce7a10a9741f45230324a60 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Wed, 1 Apr 2020 12:16:16 +0100 Subject: [PATCH 073/190] fetcher: Made metaFetcher go routine safe; Fixed multiple bucket UI + fetcher issues. (#2354) Fixed https://github.com/thanos-io/thanos/issues/2349 Fixed races (we were reusing fetcher by both bucket UI and compaction syncs... Fixed logging Added singleflight to ensure we don't synchronize too often. Signed-off-by: Bartlomiej Plotka --- cmd/thanos/bucket.go | 53 +---- cmd/thanos/compact.go | 31 ++- cmd/thanos/downsample.go | 4 +- cmd/thanos/main_test.go | 4 +- cmd/thanos/store.go | 16 +- go.mod | 1 + pkg/block/fetcher.go | 302 ++++++++++++++++---------- pkg/block/fetcher_test.go | 31 +-- pkg/compact/clean_test.go | 2 +- pkg/compact/compact_e2e_test.go | 4 +- pkg/compact/retention_test.go | 2 +- pkg/replicate/replicator.go | 2 +- pkg/replicate/scheme_test.go | 2 +- pkg/store/bucket_e2e_test.go | 2 +- pkg/store/bucket_test.go | 2 +- pkg/ui/bucket.go | 42 +++- pkg/verifier/duplicated_compaction.go | 4 +- pkg/verifier/index_issue.go | 2 +- pkg/verifier/overlapped_blocks.go | 6 +- pkg/verifier/verify.go | 8 +- 20 files changed, 297 insertions(+), 223 deletions(-) diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 124586c5cb7..2a46098c7ca 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -140,7 +140,7 @@ func registerBucketVerify(m map[string]setupFunc, root *kingpin.CmdClause, name issues = append(issues, issueFn) } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -189,7 +189,7 @@ func registerBucketLs(m map[string]setupFunc, root *kingpin.CmdClause, name stri return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -289,7 +289,7 @@ func registerBucketInspect(m map[string]setupFunc, root *kingpin.CmdClause, name return err } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -373,7 +373,8 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str return errors.Wrap(err, "bucket client") } - fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil) + // TODO(bwplotka): Allow Bucket UI to visualisate the state of block as well. + fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } @@ -382,7 +383,7 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str g.Add(func() error { statusProber.Ready() defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") - return refresh(ctx, logger, bucketUI, *interval, *timeout, fetcher) + return bucketUI.RunRefreshLoop(ctx, fetcher, *interval, *timeout) }, func(error) { cancel() }) @@ -459,48 +460,6 @@ func registerBucketDownsample(m map[string]setupFunc, root *kingpin.CmdClause, n } } -// refresh metadata from remote storage periodically and update the UI. -func refresh(ctx context.Context, logger log.Logger, bucketUI *ui.Bucket, duration time.Duration, timeout time.Duration, fetcher *block.MetaFetcher) error { - return runutil.Repeat(duration, ctx.Done(), func() error { - return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { - iterCtx, iterCancel := context.WithTimeout(ctx, timeout) - defer iterCancel() - - blocks, err := download(iterCtx, logger, fetcher) - if err != nil { - bucketUI.Set("[]", err) - return err - } - - data, err := json.Marshal(blocks) - if err != nil { - bucketUI.Set("[]", err) - return err - } - bucketUI.Set(string(data), nil) - return nil - }) - }) -} - -func download(ctx context.Context, logger log.Logger, fetcher *block.MetaFetcher) ([]metadata.Meta, error) { - level.Info(logger).Log("msg", "synchronizing block metadata") - - metas, _, err := fetcher.Fetch(ctx) - if err != nil { - return nil, err - } - - blocks := []metadata.Meta{} - - for _, meta := range metas { - blocks = append(blocks, *meta) - } - - level.Info(logger).Log("msg", "downloaded blocks meta.json", "num", len(blocks)) - return blocks, nil -} - func printTable(blockMetas []*metadata.Meta, selectorLabels labels.Labels, sortBy []string) error { header := inspectColumns diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index eb3a6ae012e..409cbe8d2f8 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -301,27 +301,25 @@ func runCompact( // The delay of deleteDelay/2 is added to ensure we fetch blocks that are meant to be deleted but do not have a replacement yet. ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, time.Duration(deleteDelay.Seconds()/2)*time.Second) duplicateBlocksFilter := block.NewDeduplicateFilter() - prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", prometheusRegisterer, []block.MetadataFilter{ + baseMetaFetcher, err := block.NewBaseFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg)) + if err != nil { + return errors.Wrap(err, "create meta fetcher") + } + metaFetcherFilters := []block.MetadataFilter{ block.NewLabelShardedMetaFilter(relabelConfig), - block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), ignoreDeletionMarkFilter, duplicateBlocksFilter, - }, - block.NewReplicaLabelRemover(logger, dedupReplicaLabels), - ) - if err != nil { - return errors.Wrap(err, "create meta fetcher") } - + compactFetcher := baseMetaFetcher.WithFilters(extprom.WrapRegistererWithPrefix("thanos_", reg), metaFetcherFilters, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}) enableVerticalCompaction := false if len(dedupReplicaLabels) > 0 { enableVerticalCompaction = true level.Info(logger).Log("msg", "deduplication.replica-label specified, vertical compaction is enabled", "dedupReplicaLabels", strings.Join(dedupReplicaLabels, ",")) } - sy, err := compact.NewSyncer(logger, reg, bkt, metaFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, enableVerticalCompaction) + sy, err := compact.NewSyncer(logger, reg, bkt, compactFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, enableVerticalCompaction) if err != nil { return errors.Wrap(err, "create syncer") } @@ -383,13 +381,13 @@ func runCompact( // for 5m downsamplings created in the first run. level.Info(logger).Log("msg", "start first pass of downsampling") - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, metaFetcher, downsamplingDir); err != nil { + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { return errors.Wrap(err, "first pass of downsampling failed") } level.Info(logger).Log("msg", "start second pass of downsampling") - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, metaFetcher, downsamplingDir); err != nil { + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { return errors.Wrap(err, "second pass of downsampling failed") } level.Info(logger).Log("msg", "downsampling iterations done") @@ -397,7 +395,7 @@ func runCompact( level.Warn(logger).Log("msg", "downsampling was explicitly disabled") } - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, retentionByResolution, blocksMarkedForDeletion); err != nil { + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, compactFetcher, retentionByResolution, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, fmt.Sprintf("retention failed")) } @@ -405,7 +403,7 @@ func runCompact( return errors.Wrap(err, "error cleaning blocks") } - compact.BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) + compact.BestEffortCleanAbortedPartialUploads(ctx, logger, compactFetcher, bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) return nil } @@ -414,7 +412,7 @@ func runCompact( // Generate index file. if generateMissingIndexCacheFiles { - if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, indexCacheDir); err != nil { + if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, compactFetcher, indexCacheDir); err != nil { return err } } @@ -465,7 +463,8 @@ func runCompact( srv.Handle("/", router) g.Add(func() error { - return refresh(ctx, logger, bucketUI, waitInterval, time.Minute, metaFetcher) + // TODO(bwplotka): Allow Bucket UI to visualisate the state of the block as well. + return bucketUI.RunRefreshLoop(ctx, baseMetaFetcher.WithFilters(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), metaFetcherFilters, nil), waitInterval, time.Minute) }, func(error) { cancel() }) diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index f2dd7c82dd7..c98335fd0cf 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -72,7 +72,9 @@ func RunDownsample( return err } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg), nil) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ + block.NewDeduplicateFilter(), + }, nil) if err != nil { return errors.Wrap(err, "create meta fetcher") } diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index 58e340db3d0..a9930139959 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -76,7 +76,7 @@ func TestCleanupIndexCacheFolder(t *testing.T) { Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, }) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) testutil.Ok(t, genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, dir)) @@ -116,7 +116,7 @@ func TestCleanupDownsampleCacheFolder(t *testing.T) { metrics := newDownsampleMetrics(prometheus.NewRegistry()) testutil.Equals(t, 0.0, promtest.ToFloat64(metrics.downsamples.WithLabelValues(compact.GroupKey(meta.Thanos)))) - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) testutil.Ok(t, downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dir)) diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index d6d865533c6..446077530c4 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -241,14 +241,14 @@ func runStore( } ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, ignoreDeletionMarksDelay) - prometheusRegisterer := extprom.WrapRegistererWithPrefix("thanos_", reg) - metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, prometheusRegisterer, []block.MetadataFilter{ - block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), - block.NewLabelShardedMetaFilter(relabelConfig), - block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, prometheusRegisterer), - ignoreDeletionMarkFilter, - block.NewDeduplicateFilter(), - }) + metaFetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, dataDir, extprom.WrapRegistererWithPrefix("thanos_", reg), + []block.MetadataFilter{ + block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), + ignoreDeletionMarkFilter, + block.NewDeduplicateFilter(), + }, nil) if err != nil { return errors.Wrap(err, "meta fetcher") } diff --git a/go.mod b/go.mod index fd4b6e3d848..620eda6f711 100644 --- a/go.mod +++ b/go.mod @@ -19,6 +19,7 @@ require ( github.com/go-kit/kit v0.9.0 github.com/go-openapi/strfmt v0.19.2 github.com/gogo/protobuf v1.3.1 + github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 github.com/golang/snappy v0.0.1 github.com/googleapis/gax-go v2.0.2+incompatible github.com/gophercloud/gophercloud v0.6.0 diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index bda9998e45f..10ca88e17bc 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -16,6 +16,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/golang/groupcache/singleflight" "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" @@ -92,11 +93,13 @@ func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { Help: "Duration of the blocks metadata synchronization in seconds", Buckets: []float64{0.01, 1, 10, 100, 1000}, }) - m.synced = extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ - Subsystem: fetcherSubSys, - Name: "synced", - Help: "Number of block metadata synced", - }, + m.synced = extprom.NewTxGaugeVec( + reg, + prometheus.GaugeOpts{ + Subsystem: fetcherSubSys, + Name: "synced", + Help: "Number of block metadata synced", + }, []string{"state"}, []string{corruptedMeta}, []string{noMeta}, @@ -108,11 +111,13 @@ func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { []string{duplicateMeta}, []string{markedForDeletionMeta}, ) - m.modified = extprom.NewTxGaugeVec(reg, prometheus.GaugeOpts{ - Subsystem: fetcherSubSys, - Name: "modified", - Help: "Number of blocks that their metadata modified", - }, + m.modified = extprom.NewTxGaugeVec( + reg, + prometheus.GaugeOpts{ + Subsystem: fetcherSubSys, + Name: "modified", + Help: "Number of blocks that their metadata modified", + }, []string{"modified"}, []string{replicaRemovedMeta}, ) @@ -131,25 +136,22 @@ type MetadataModifier interface { Modify(ctx context.Context, metas map[ulid.ULID]*metadata.Meta, modified *extprom.TxGaugeVec, incompleteView bool) error } -// MetaFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. -// Not go-routine safe. -type MetaFetcher struct { +// BaseFetcher is a struct that synchronizes filtered metadata of all block in the object storage with the local state. +// Go-routine safe. +type BaseFetcher struct { logger log.Logger concurrency int bkt objstore.BucketReader // Optional local directory to cache meta.json files. cacheDir string - metrics *fetcherMetrics - - filters []MetadataFilter - modifiers []MetadataModifier - - cached map[ulid.ULID]*metadata.Meta + cached map[ulid.ULID]*metadata.Meta + syncs prometheus.Counter + g singleflight.Group } -// NewMetaFetcher constructs MetaFetcher. -func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, r prometheus.Registerer, filters []MetadataFilter, modifiers ...MetadataModifier) (*MetaFetcher, error) { +// NewBaseFetcher constructs BaseFetcher. +func NewBaseFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer) (*BaseFetcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -162,18 +164,34 @@ func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReade } } - return &MetaFetcher{ - logger: log.With(logger, "component", "block.MetaFetcher"), + return &BaseFetcher{ + logger: log.With(logger, "component", "block.BaseFetcher"), concurrency: concurrency, bkt: bkt, cacheDir: cacheDir, - metrics: newFetcherMetrics(r), - filters: filters, - modifiers: modifiers, cached: map[ulid.ULID]*metadata.Meta{}, + syncs: promauto.With(reg).NewCounter(prometheus.CounterOpts{ + Subsystem: fetcherSubSys, + Name: "base_syncs_total", + Help: "Total blocks metadata synchronization attempts by base Fetcher", + }), }, nil } +// NewMetaFetcher returns meta fetcher. +func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) (*MetaFetcher, error) { + b, err := NewBaseFetcher(logger, concurrency, bkt, dir, reg) + if err != nil { + return nil, err + } + return b.WithFilters(reg, filters, modifiers), nil +} + +// WithFilters transforms BaseFetcher into actually usable MetadataFetcher. +func (f *BaseFetcher) WithFilters(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) *MetaFetcher { + return &MetaFetcher{metrics: newFetcherMetrics(reg), wrapped: f, filters: filters, modifiers: modifiers} +} + var ( ErrorSyncMetaNotFound = errors.New("meta.json not found") ErrorSyncMetaCorrupted = errors.New("meta.json corrupted") @@ -181,16 +199,16 @@ var ( // loadMeta returns metadata from object storage or error. // It returns `ErrorSyncMetaNotFound` and `ErrorSyncMetaCorrupted` sentinel errors in those cases. -func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Meta, error) { +func (f *BaseFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Meta, error) { var ( metaFile = path.Join(id.String(), MetaFilename) - cachedBlockDir = filepath.Join(s.cacheDir, id.String()) + cachedBlockDir = filepath.Join(f.cacheDir, id.String()) ) // TODO(bwplotka): If that causes problems (obj store rate limits), add longer ttl to cached items. // For 1y and 100 block sources this generates ~1.5-3k HEAD RPM. AWS handles 330k RPM per prefix. // TODO(bwplotka): Consider filtering by consistency delay here (can't do until compactor healthyOverride work). - ok, err := s.bkt.Exists(ctx, metaFile) + ok, err := f.bkt.Exists(ctx, metaFile) if err != nil { return nil, errors.Wrapf(err, "meta.json file exists: %v", metaFile) } @@ -198,27 +216,27 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met return nil, ErrorSyncMetaNotFound } - if m, seen := s.cached[id]; seen { + if m, seen := f.cached[id]; seen { return m, nil } // Best effort load from local dir. - if s.cacheDir != "" { + if f.cacheDir != "" { m, err := metadata.Read(cachedBlockDir) if err == nil { return m, nil } if !errors.Is(err, os.ErrNotExist) { - level.Warn(s.logger).Log("msg", "best effort read of the local meta.json failed; removing cached block dir", "dir", cachedBlockDir, "err", err) + level.Warn(f.logger).Log("msg", "best effort read of the local meta.json failed; removing cached block dir", "dir", cachedBlockDir, "err", err) if err := os.RemoveAll(cachedBlockDir); err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) + level.Warn(f.logger).Log("msg", "best effort remove of cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } } - r, err := s.bkt.Get(ctx, metaFile) - if s.bkt.IsObjNotFoundErr(err) { + r, err := f.bkt.Get(ctx, metaFile) + if f.bkt.IsObjNotFoundErr(err) { // Meta.json was deleted between bkt.Exists and here. return nil, errors.Wrapf(ErrorSyncMetaNotFound, "%v", err) } @@ -226,7 +244,7 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met return nil, errors.Wrapf(err, "get meta file: %v", metaFile) } - defer runutil.CloseWithLogOnErr(s.logger, r, "close bkt meta get") + defer runutil.CloseWithLogOnErr(f.logger, r, "close bkt meta get") metaContent, err := ioutil.ReadAll(r) if err != nil { @@ -243,71 +261,71 @@ func (s *MetaFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met } // Best effort cache in local dir. - if s.cacheDir != "" { + if f.cacheDir != "" { if err := os.MkdirAll(cachedBlockDir, os.ModePerm); err != nil { - level.Warn(s.logger).Log("msg", "best effort mkdir of the meta.json block dir failed; ignoring", "dir", cachedBlockDir, "err", err) + level.Warn(f.logger).Log("msg", "best effort mkdir of the meta.json block dir failed; ignoring", "dir", cachedBlockDir, "err", err) } - if err := metadata.Write(s.logger, cachedBlockDir, m); err != nil { - level.Warn(s.logger).Log("msg", "best effort save of the meta.json to local dir failed; ignoring", "dir", cachedBlockDir, "err", err) + if err := metadata.Write(f.logger, cachedBlockDir, m); err != nil { + level.Warn(f.logger).Log("msg", "best effort save of the meta.json to local dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } return m, nil } -// Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. -// It's caller responsibility to not change the returned metadata files. Maps can be modified. -// -// Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing. -func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) { - start := time.Now() - defer func() { - s.metrics.syncDuration.Observe(time.Since(start).Seconds()) - if err != nil { - s.metrics.syncFailures.Inc() - } - }() - s.metrics.syncs.Inc() +type response struct { + metas map[ulid.ULID]*metadata.Meta + partial map[ulid.ULID]error + // If metaErr > 0 it means incomplete view, so some metas, failed to be loaded. + metaErrs tsdberrors.MultiError - metas = make(map[ulid.ULID]*metadata.Meta) - partial = make(map[ulid.ULID]error) + noMetas float64 + corruptedMetas float64 + + incompleteView bool +} + +func (f *BaseFetcher) fetchMetadata(ctx context.Context) (interface{}, error) { + f.syncs.Inc() var ( + resp = response{ + metas: make(map[ulid.ULID]*metadata.Meta), + partial: make(map[ulid.ULID]error), + } eg errgroup.Group - ch = make(chan ulid.ULID, s.concurrency) + ch = make(chan ulid.ULID, f.concurrency) mtx sync.Mutex - - metaErrs tsdberrors.MultiError ) - - s.metrics.resetTx() - - for i := 0; i < s.concurrency; i++ { + for i := 0; i < f.concurrency; i++ { eg.Go(func() error { for id := range ch { - meta, err := s.loadMeta(ctx, id) + meta, err := f.loadMeta(ctx, id) if err == nil { mtx.Lock() - metas[id] = meta + resp.metas[id] = meta mtx.Unlock() continue } switch errors.Cause(err) { default: - s.metrics.synced.WithLabelValues(failedMeta).Inc() mtx.Lock() - metaErrs.Add(err) + resp.metaErrs.Add(err) mtx.Unlock() continue case ErrorSyncMetaNotFound: - s.metrics.synced.WithLabelValues(noMeta).Inc() + mtx.Lock() + resp.noMetas++ + mtx.Unlock() case ErrorSyncMetaCorrupted: - s.metrics.synced.WithLabelValues(corruptedMeta).Inc() + mtx.Lock() + resp.corruptedMetas++ + mtx.Unlock() } mtx.Lock() - partial[id] = err + resp.partial[id] = err mtx.Unlock() } return nil @@ -317,7 +335,7 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. // Workers scheduled, distribute blocks. eg.Go(func() error { defer close(ch) - return s.bkt.Iter(ctx, "", func(name string) error { + return f.bkt.Iter(ctx, "", func(name string) error { id, ok := IsBlockDir(name) if !ok { return nil @@ -334,74 +352,124 @@ func (s *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata. }) if err := eg.Wait(); err != nil { - return nil, nil, errors.Wrap(err, "MetaFetcher: iter bucket") + return nil, errors.Wrap(err, "BaseFetcher: iter bucket") } - incompleteView := len(metaErrs) > 0 + if len(resp.metaErrs) > 0 { + return resp, nil + } // Only for complete view of blocks update the cache. - if !incompleteView { - cached := make(map[ulid.ULID]*metadata.Meta, len(metas)) - for id, m := range metas { - cached[id] = m - } - s.cached = cached - - // Best effort cleanup of disk-cached metas. - if s.cacheDir != "" { - names, err := fileutil.ReadDir(s.cacheDir) - if err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dirs failed; ignoring", "err", err) - } else { - for _, n := range names { - id, ok := IsBlockDir(n) - if !ok { - continue - } - - if _, ok := metas[id]; ok { - continue - } - - cachedBlockDir := filepath.Join(s.cacheDir, id.String()) - - // No such block loaded, remove the local dir. - if err := os.RemoveAll(cachedBlockDir); err != nil { - level.Warn(s.logger).Log("msg", "best effort remove of not needed cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) - } + cached := make(map[ulid.ULID]*metadata.Meta, len(resp.metas)) + for id, m := range resp.metas { + cached[id] = m + } + f.cached = cached + + // Best effort cleanup of disk-cached metas. + if f.cacheDir != "" { + names, err := fileutil.ReadDir(f.cacheDir) + if err != nil { + level.Warn(f.logger).Log("msg", "best effort remove of not needed cached dirs failed; ignoring", "err", err) + } else { + for _, n := range names { + id, ok := IsBlockDir(n) + if !ok { + continue + } + + if _, ok := resp.metas[id]; ok { + continue + } + + cachedBlockDir := filepath.Join(f.cacheDir, id.String()) + + // No such block loaded, remove the local dir. + if err := os.RemoveAll(cachedBlockDir); err != nil { + level.Warn(f.logger).Log("msg", "best effort remove of not needed cached dir failed; ignoring", "dir", cachedBlockDir, "err", err) } } } } + return resp, nil +} + +func (f *BaseFetcher) fetch(ctx context.Context, metrics *fetcherMetrics, filters []MetadataFilter, modifiers []MetadataModifier) (_ map[ulid.ULID]*metadata.Meta, _ map[ulid.ULID]error, err error) { + start := time.Now() + defer func() { + metrics.syncDuration.Observe(time.Since(start).Seconds()) + if err != nil { + metrics.syncFailures.Inc() + } + }() + metrics.syncs.Inc() + metrics.resetTx() + + // Run this in thread safe run group. + // TODO(bwplotka): Consider custom singleflight with ttl. + v, err := f.g.Do("", func() (i interface{}, err error) { + // NOTE: First go routine context will go through. + return f.fetchMetadata(ctx) + }) + if err != nil { + return nil, nil, err + } + resp := v.(response) + + // Copy as same response might be reused by different goroutines. + metas := make(map[ulid.ULID]*metadata.Meta, len(resp.metas)) + for id, m := range resp.metas { + metas[id] = m + } - for _, f := range s.filters { + metrics.synced.WithLabelValues(failedMeta).Set(float64(len(resp.metaErrs))) + metrics.synced.WithLabelValues(noMeta).Set(resp.noMetas) + metrics.synced.WithLabelValues(corruptedMeta).Set(resp.corruptedMetas) + + for _, filter := range filters { // NOTE: filter can update synced metric accordingly to the reason of the exclude. - if err := f.Filter(ctx, metas, s.metrics.synced, incompleteView); err != nil { + if err := filter.Filter(ctx, metas, metrics.synced, resp.incompleteView); err != nil { return nil, nil, errors.Wrap(err, "filter metas") } } - for _, m := range s.modifiers { + for _, m := range modifiers { // NOTE: modifier can update modified metric accordingly to the reason of the modification. - if err := m.Modify(ctx, metas, s.metrics.modified, incompleteView); err != nil { + if err := m.Modify(ctx, metas, metrics.modified, resp.incompleteView); err != nil { return nil, nil, errors.Wrap(err, "modify metas") } } - s.metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) - s.metrics.submit() + metrics.synced.WithLabelValues(loadedMeta).Set(float64(len(metas))) + metrics.submit() - if incompleteView { - return metas, partial, errors.Wrap(metaErrs, "incomplete view") + if len(resp.metaErrs) > 0 { + return metas, resp.partial, errors.Wrap(resp.metaErrs, "incomplete view") } - level.Debug(s.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(s.cached), "returned", len(metas), "partial", len(partial)) - return metas, partial, nil + level.Debug(f.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(f.cached), "returned", len(metas), "partial", len(resp.partial)) + return metas, resp.partial, nil +} + +type MetaFetcher struct { + wrapped *BaseFetcher + metrics *fetcherMetrics + + filters []MetadataFilter + modifiers []MetadataModifier +} + +// Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. +// It's caller responsibility to not change the returned metadata files. Maps can be modified. +// +// Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing. +func (f *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) { + return f.wrapped.fetch(ctx, f.metrics, f.filters, f.modifiers) } var _ MetadataFilter = &TimePartitionMetaFilter{} -// TimePartitionMetaFilter is a MetaFetcher filter that filters out blocks that are outside of specified time range. +// TimePartitionMetaFilter is a BaseFetcher filter that filters out blocks that are outside of specified time range. // Not go-routine safe. type TimePartitionMetaFilter struct { minTime, maxTime model.TimeOrDurationValue @@ -458,7 +526,9 @@ func (f *LabelShardedMetaFilter) Filter(_ context.Context, metas map[ulid.ULID]* return nil } -// DeduplicateFilter is a MetaFetcher filter that filters out older blocks that have exactly the same data. +var _ MetadataFilter = &DeduplicateFilter{} + +// DeduplicateFilter is a BaseFetcher filter that filters out older blocks that have exactly the same data. // Not go-routine safe. type DeduplicateFilter struct { duplicateIDs []ulid.ULID @@ -572,7 +642,9 @@ func contains(s1 []ulid.ULID, s2 []ulid.ULID) bool { return true } -// ReplicaLabelRemover is a MetaFetcher modifier modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. +var _ MetadataModifier = &ReplicaLabelRemover{} + +// ReplicaLabelRemover is a BaseFetcher modifier modifies external labels of existing blocks, it removes given replica labels from the metadata of blocks that have it. type ReplicaLabelRemover struct { logger log.Logger @@ -600,7 +672,7 @@ func (r *ReplicaLabelRemover) Modify(_ context.Context, metas map[ulid.ULID]*met return nil } -// ConsistencyDelayMetaFilter is a MetaFetcher filter that filters out blocks that are created before a specified consistency delay. +// ConsistencyDelayMetaFilter is a BaseFetcher filter that filters out blocks that are created before a specified consistency delay. // Not go-routine safe. type ConsistencyDelayMetaFilter struct { logger log.Logger diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index 99920b8e5fc..cd7b3ffade4 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -75,11 +75,13 @@ func TestMetaFetcher_Fetch(t *testing.T) { var ulidToDelete ulid.ULID r := prometheus.NewRegistry() - f, err := NewMetaFetcher(log.NewNopLogger(), 20, bkt, dir, r, []MetadataFilter{ - &ulidFilter{ulidToDelete: &ulidToDelete}, - }) + baseFetcher, err := NewBaseFetcher(log.NewNopLogger(), 20, bkt, dir, r) testutil.Ok(t, err) + fetcher := baseFetcher.WithFilters(r, []MetadataFilter{ + &ulidFilter{ulidToDelete: &ulidToDelete}, + }, nil) + for i, tcase := range []struct { name string do func() @@ -133,7 +135,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { { name: "fresh cache", do: func() { - f.cached = map[ulid.ULID]*metadata.Meta{} + baseFetcher.cached = map[ulid.ULID]*metadata.Meta{} }, expectedMetas: ULIDs(1, 2, 3), @@ -143,7 +145,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { { name: "fresh cache: meta 2 and 3 have corrupted data on disk ", do: func() { - f.cached = map[ulid.ULID]*metadata.Meta{} + baseFetcher.cached = map[ulid.ULID]*metadata.Meta{} testutil.Ok(t, os.Remove(filepath.Join(dir, "meta-syncer", ULID(2).String(), MetaFilename))) @@ -238,7 +240,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { tcase.do() ulidToDelete = tcase.filterULID - metas, partial, err := f.Fetch(ctx) + metas, partial, err := fetcher.Fetch(ctx) if tcase.expectedMetaErr != nil { testutil.NotOk(t, err) testutil.Equals(t, tcase.expectedMetaErr.Error(), err.Error()) @@ -279,14 +281,15 @@ func TestMetaFetcher_Fetch(t *testing.T) { if tcase.expectedMetaErr != nil { expectedFailures = 1 } - testutil.Equals(t, float64(i+1), promtest.ToFloat64(f.metrics.syncs)) - testutil.Equals(t, float64(len(tcase.expectedMetas)), promtest.ToFloat64(f.metrics.synced.WithLabelValues(loadedMeta))) - testutil.Equals(t, float64(len(tcase.expectedNoMeta)), promtest.ToFloat64(f.metrics.synced.WithLabelValues(noMeta))) - testutil.Equals(t, float64(tcase.expectedFiltered), promtest.ToFloat64(f.metrics.synced.WithLabelValues("filtered"))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(labelExcludedMeta))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(timeExcludedMeta))) - testutil.Equals(t, float64(expectedFailures), promtest.ToFloat64(f.metrics.synced.WithLabelValues(failedMeta))) - testutil.Equals(t, 0.0, promtest.ToFloat64(f.metrics.synced.WithLabelValues(tooFreshMeta))) + testutil.Equals(t, float64(i+1), promtest.ToFloat64(baseFetcher.syncs)) + testutil.Equals(t, float64(i+1), promtest.ToFloat64(fetcher.metrics.syncs)) + testutil.Equals(t, float64(len(tcase.expectedMetas)), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(loadedMeta))) + testutil.Equals(t, float64(len(tcase.expectedNoMeta)), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(noMeta))) + testutil.Equals(t, float64(tcase.expectedFiltered), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues("filtered"))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(labelExcludedMeta))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(timeExcludedMeta))) + testutil.Equals(t, float64(expectedFailures), promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(failedMeta))) + testutil.Equals(t, 0.0, promtest.ToFloat64(fetcher.metrics.synced.WithLabelValues(tooFreshMeta))) }); !ok { return } diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 4507b3f5a50..9a7889ead8e 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -29,7 +29,7 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { bkt := inmem.NewBucket() logger := log.NewNopLogger() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil) + metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) // 1. No meta, old block, should be removed. diff --git a/pkg/compact/compact_e2e_test.go b/pkg/compact/compact_e2e_test.go index 52e4147623f..21de5cfca76 100644 --- a/pkg/compact/compact_e2e_test.go +++ b/pkg/compact/compact_e2e_test.go @@ -92,7 +92,7 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { duplicateBlocksFilter := block.NewDeduplicateFilter() metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ duplicateBlocksFilter, - }) + }, nil) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) @@ -181,7 +181,7 @@ func TestGroup_Compact_e2e(t *testing.T) { metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ ignoreDeletionMarkFilter, duplicateBlocksFilter, - }) + }, nil) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index 980b883839e..0a1431996e8 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -245,7 +245,7 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { uploadMockBlock(t, bkt, b.id, b.minTime, b.maxTime, int64(b.resolution)) } - metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil, nil) + metaFetcher, err := block.NewMetaFetcher(logger, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) diff --git a/pkg/replicate/replicator.go b/pkg/replicate/replicator.go index 198faf8162d..82455be46d1 100644 --- a/pkg/replicate/replicator.go +++ b/pkg/replicate/replicator.go @@ -151,7 +151,7 @@ func RunReplicate( Help: "The Duration of replication runs split by success and error.", }, []string{"result"}) - fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg, nil) + fetcher, err := thanosblock.NewMetaFetcher(logger, 32, fromBkt, "", reg, nil, nil) if err != nil { return errors.Wrapf(err, "create meta fetcher with bucket %v", fromBkt) } diff --git a/pkg/replicate/scheme_test.go b/pkg/replicate/scheme_test.go index 6b441a572ba..26c83aafb64 100644 --- a/pkg/replicate/scheme_test.go +++ b/pkg/replicate/scheme_test.go @@ -313,7 +313,7 @@ func TestReplicationSchemeAll(t *testing.T) { } filter := NewBlockFilter(logger, selector, compact.ResolutionLevelRaw, 1).Filter - fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil, nil) + fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil, nil, nil) testutil.Ok(t, err) r := newReplicationScheme( diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 2721c7544e3..8bcf3216c08 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -150,7 +150,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, []block.MetadataFilter{ block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), block.NewLabelShardedMetaFilter(relabelConfig), - }) + }, nil) testutil.Ok(t, err) store, err := NewBucketStore( diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index a7829bf0523..516bf684c3a 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -714,7 +714,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, []block.MetadataFilter{ block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime), block.NewLabelShardedMetaFilter(relabelConf), - }) + }, nil) testutil.Ok(t, err) bucketStore, err := NewBucketStore( diff --git a/pkg/ui/bucket.go b/pkg/ui/bucket.go index 75e8c7b8b60..fdd1aeba432 100644 --- a/pkg/ui/bucket.go +++ b/pkg/ui/bucket.go @@ -4,13 +4,19 @@ package ui import ( + "context" + "encoding/json" "html/template" "net/http" "time" "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" "github.com/prometheus/common/route" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/block/metadata" extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" + "github.com/thanos-io/thanos/pkg/runutil" ) // Bucket is a web UI representing state of buckets as a timeline. @@ -27,7 +33,7 @@ type Bucket struct { func NewBucketUI(logger log.Logger, label string, flagsMap map[string]string) *Bucket { return &Bucket{ - BaseUI: NewBaseUI(logger, "bucket_menu.html", queryTmplFuncs()), + BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs()), Blocks: "[]", Label: label, flagsMap: flagsMap, @@ -52,6 +58,38 @@ func (b *Bucket) root(w http.ResponseWriter, r *http.Request) { func (b *Bucket) Set(data string, err error) { b.RefreshedAt = time.Now() - b.Blocks = template.JS(string(data)) + b.Blocks = template.JS(data) b.Err = err } + +// RunRefreshLoop refreshes periodically metadata from remote storage periodically and update the UI. +func (b *Bucket) RunRefreshLoop(ctx context.Context, fetcher block.MetadataFetcher, interval time.Duration, loopTimeout time.Duration) error { + return runutil.Repeat(interval, ctx.Done(), func() error { + return runutil.RetryWithLog(b.logger, time.Minute, ctx.Done(), func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, loopTimeout) + defer iterCancel() + + level.Debug(b.logger).Log("msg", "synchronizing block metadata") + metas, _, err := fetcher.Fetch(iterCtx) + if err != nil { + level.Error(b.logger).Log("msg", "failed to sync metas", "err", err) + b.Set("[]", err) + return err + } + blocks := make([]metadata.Meta, 0, len(metas)) + for _, meta := range metas { + blocks = append(blocks, *meta) + } + level.Debug(b.logger).Log("msg", "downloaded blocks meta.json", "num", len(blocks)) + + data, err := json.Marshal(blocks) + if err != nil { + b.Set("[]", err) + return err + } + // TODO(bwplotka): Allow setting info about partial blocks as well. + b.Set(string(data), nil) + return nil + }) + }) +} diff --git a/pkg/verifier/duplicated_compaction.go b/pkg/verifier/duplicated_compaction.go index 029aa93caff..d5ccdb73c29 100644 --- a/pkg/verifier/duplicated_compaction.go +++ b/pkg/verifier/duplicated_compaction.go @@ -27,14 +27,14 @@ const DuplicatedCompactionIssueID = "duplicated_compaction" // until sync-delay passes. // The expected print of this are same overlapped blocks with exactly the same sources, time ranges and stats. // If repair is enabled, all but one duplicates are safely deleted. -func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { +func DuplicatedCompactionIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", DuplicatedCompactionIssueID) } level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", DuplicatedCompactionIssueID) - overlaps, err := fetchOverlaps(ctx, logger, bkt, fetcher) + overlaps, err := fetchOverlaps(ctx, fetcher) if err != nil { return errors.Wrap(err, DuplicatedCompactionIssueID) } diff --git a/pkg/verifier/index_issue.go b/pkg/verifier/index_issue.go index 0982ec8ba8f..a6a5035ebe3 100644 --- a/pkg/verifier/index_issue.go +++ b/pkg/verifier/index_issue.go @@ -29,7 +29,7 @@ const IndexIssueID = "index_issue" // If the replacement was created successfully it is uploaded to the bucket and the input // block is deleted. // NOTE: This also verifies all indexes against chunks mismatches and duplicates. -func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { +func IndexIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", IndexIssueID) metas, _, err := fetcher.Fetch(ctx) diff --git a/pkg/verifier/overlapped_blocks.go b/pkg/verifier/overlapped_blocks.go index 3fcce7a1518..ac767348786 100644 --- a/pkg/verifier/overlapped_blocks.go +++ b/pkg/verifier/overlapped_blocks.go @@ -22,14 +22,14 @@ const OverlappedBlocksIssueID = "overlapped_blocks" // OverlappedBlocksIssue checks bucket for blocks with overlapped time ranges. // No repair is available for this issue. -func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error { +func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, _ objstore.Bucket, _ objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, _ time.Duration, _ *verifierMetrics) error { if idMatcher != nil { return errors.Errorf("id matching is not supported by issue %s verifier", OverlappedBlocksIssueID) } level.Info(logger).Log("msg", "started verifying issue", "with-repair", repair, "issue", OverlappedBlocksIssueID) - overlaps, err := fetchOverlaps(ctx, logger, bkt, fetcher) + overlaps, err := fetchOverlaps(ctx, fetcher) if err != nil { return errors.Wrap(err, OverlappedBlocksIssueID) } @@ -49,7 +49,7 @@ func OverlappedBlocksIssue(ctx context.Context, logger log.Logger, bkt objstore. return nil } -func fetchOverlaps(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher *block.MetaFetcher) (map[string]tsdb.Overlaps, error) { +func fetchOverlaps(ctx context.Context, fetcher block.MetadataFetcher) (map[string]tsdb.Overlaps, error) { metas, _, err := fetcher.Fetch(ctx) if err != nil { return nil, err diff --git a/pkg/verifier/verify.go b/pkg/verifier/verify.go index 77cd646b1bd..6149a6450b4 100644 --- a/pkg/verifier/verify.go +++ b/pkg/verifier/verify.go @@ -35,7 +35,7 @@ func newVerifierMetrics(reg prometheus.Registerer) *verifierMetrics { // Issue is an function that does verification and repair only if repair arg is true. // It should log affected blocks using warn level logs. It should be safe for issue to run on healthy bucket. -type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher *block.MetaFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error +type Issue func(ctx context.Context, logger log.Logger, bkt objstore.Bucket, backupBkt objstore.Bucket, repair bool, idMatcher func(ulid.ULID) bool, fetcher block.MetadataFetcher, deleteDelay time.Duration, metrics *verifierMetrics) error // Verifier runs given issues to verify if bucket is healthy. type Verifier struct { @@ -44,13 +44,13 @@ type Verifier struct { backupBkt objstore.Bucket issues []Issue repair bool - fetcher *block.MetaFetcher + fetcher block.MetadataFetcher deleteDelay time.Duration metrics *verifierMetrics } // New returns verifier that only logs affected blocks. -func New(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher *block.MetaFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { +func New(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetcher block.MetadataFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ logger: logger, bkt: bkt, @@ -63,7 +63,7 @@ func New(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, fetc } // NewWithRepair returns verifier that logs affected blocks and attempts to repair them. -func NewWithRepair(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher *block.MetaFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { +func NewWithRepair(logger log.Logger, reg prometheus.Registerer, bkt objstore.Bucket, backupBkt objstore.Bucket, fetcher block.MetadataFetcher, deleteDelay time.Duration, issues []Issue) *Verifier { return &Verifier{ logger: logger, bkt: bkt, From e4090adce2c56d5917edfccb8592520d17d2f205 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 1 Apr 2020 16:15:29 +0200 Subject: [PATCH 074/190] test/e2e: Add timestamp to e2e test log output (#2358) Signed-off-by: Frederic Branczyk --- test/e2e/query_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/query_test.go b/test/e2e/query_test.go index 7ef16cc39d4..553ae4d602f 100644 --- a/test/e2e/query_test.go +++ b/test/e2e/query_test.go @@ -166,7 +166,9 @@ func instantQuery(t *testing.T, ctx context.Context, addr string, q string, opts fmt.Println("queryAndAssert: Waiting for", expectedSeriesLen, "results for query", q) var result model.Vector - testutil.Ok(t, runutil.RetryWithLog(log.NewLogfmtLogger(os.Stdout), time.Second, ctx.Done(), func() error { + logger := log.NewLogfmtLogger(os.Stdout) + logger = log.With(logger, "ts", log.DefaultTimestampUTC) + testutil.Ok(t, runutil.RetryWithLog(logger, time.Second, ctx.Done(), func() error { res, warnings, err := promclient.QueryInstant(ctx, nil, urlParse(t, "http://"+addr), q, time.Now(), opts) if err != nil { return err From 8f492a9f073f819019dd9f044e346a1e1fa730bc Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Wed, 1 Apr 2020 16:04:01 +0100 Subject: [PATCH 075/190] store & compact: For components that operates on blocks - expose the UI on /loaded-blocks (#2357) Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 1 + cmd/thanos/bucket.go | 25 ++++++++---- cmd/thanos/compact.go | 62 ++++++++++++++++++---------- cmd/thanos/query.go | 9 +--- cmd/thanos/rule.go | 9 +--- cmd/thanos/store.go | 31 +++++++++----- pkg/block/fetcher.go | 30 ++++++++++---- pkg/block/fetcher_test.go | 2 +- pkg/ui/bucket.go | 75 ++++++++++++---------------------- pkg/ui/query.go | 27 ++++++------ pkg/ui/rule.go | 21 +++++----- pkg/ui/ui.go | 8 ++-- test/e2e/compact_test.go | 14 +++++++ test/e2e/store_gateway_test.go | 3 ++ 14 files changed, 178 insertions(+), 139 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c03b1462f66..8d33abdb766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. - [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: Added `max_item_size` config option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. - [#2297](https://github.com/thanos-io/thanos/pull/2297) Store Gateway: Add `--experimental.enable-index-cache-postings-compression` flag to enable reencoding and compressing postings before storing them into cache. Compressed postings take about 10% of the original size. +- [#2357](https://github.com/thanos-io/thanos/pull/2357) Compactor and Store Gateway now have serve BucketUI on `:/loaded` and shows exactly the blocks that are currently seen by compactor and store gateway. Compactor also serves different BucketUI on `:/global` that shows the status of object storage without any filters. ### Changed diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 2a46098c7ca..375814fc68b 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -340,15 +340,10 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str httpserver.WithGracePeriod(time.Duration(*httpGracePeriod)), ) - flagsMap := map[string]string{ - "web.external-prefix": *webExternalPrefix, - "web.prefix-header": *webPrefixHeaderName, - } - router := route.New() - bucketUI := ui.NewBucketUI(logger, *label, flagsMap) - bucketUI.Register(router.WithPrefix(*webExternalPrefix), extpromhttp.NewInstrumentationMiddleware(reg)) + bucketUI := ui.NewBucketUI(logger, *label, *webExternalPrefix, *webPrefixHeaderName) + bucketUI.Register(router, extpromhttp.NewInstrumentationMiddleware(reg)) srv.Handle("/", router) if *interval < 5*time.Minute { @@ -373,17 +368,29 @@ func registerBucketWeb(m map[string]setupFunc, root *kingpin.CmdClause, name str return errors.Wrap(err, "bucket client") } - // TODO(bwplotka): Allow Bucket UI to visualisate the state of block as well. + // TODO(bwplotka): Allow Bucket UI to visualize the state of block as well. fetcher, err := block.NewMetaFetcher(logger, fetcherConcurrency, bkt, "", extprom.WrapRegistererWithPrefix(extpromPrefix, reg), nil, nil) if err != nil { return err } + fetcher.UpdateOnChange(bucketUI.Set) ctx, cancel := context.WithCancel(context.Background()) g.Add(func() error { statusProber.Ready() defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") - return bucketUI.RunRefreshLoop(ctx, fetcher, *interval, *timeout) + return runutil.Repeat(*interval, ctx.Done(), func() error { + return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, *timeout) + defer iterCancel() + + _, _, err := fetcher.Fetch(iterCtx) + if err != nil { + return err + } + return nil + }) + }) }, func(error) { cancel() }) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 409cbe8d2f8..0b1c22769f6 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -146,11 +146,6 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { webExternalPrefix := cmd.Flag("web.external-prefix", "Static prefix for all HTML links and redirect URLs in the bucket web UI interface. Actual endpoints are still served on / or the web.route-prefix. This allows thanos bucket web UI to be served behind a reverse proxy that strips a URL sub-path.").Default("").String() webPrefixHeaderName := cmd.Flag("web.prefix-header", "Name of HTTP request header used for dynamic prefixing of UI links and redirects. This option is ignored if web.external-prefix argument is set. Security risk: enable this option only if a reverse proxy in front of thanos is resetting the header. The --web.prefix-header=X-Forwarded-Prefix option can be useful, for example, if Thanos UI is served via Traefik reverse proxy with PathPrefixStrip option enabled, which sends the stripped prefix value in X-Forwarded-Prefix header. This allows thanos UI to be served on a sub-path.").Default("").String() - flagsMap := map[string]string{ - "web.external-prefix": *webExternalPrefix, - "web.prefix-header": *webPrefixHeaderName, - } - label := cmd.Flag("bucket-web-label", "Prometheus label to use as timeline title in the bucket web UI").String() m[component.Compact.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { @@ -179,7 +174,8 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { selectorRelabelConf, *waitInterval, *label, - flagsMap, + *webExternalPrefix, + *webPrefixHeaderName, ) } } @@ -194,21 +190,17 @@ func runCompact( objStoreConfig *extflag.PathOrContent, consistencyDelay time.Duration, deleteDelay time.Duration, - haltOnError bool, - acceptMalformedIndex bool, - wait bool, - generateMissingIndexCacheFiles bool, + haltOnError, acceptMalformedIndex, wait, generateMissingIndexCacheFiles bool, retentionByResolution map[compact.ResolutionLevel]time.Duration, component component.Component, disableDownsampling bool, - maxCompactionLevel int, - blockSyncConcurrency int, + maxCompactionLevel, blockSyncConcurrency int, concurrency int, dedupReplicaLabels []string, selectorRelabelConf *extflag.PathOrContent, waitInterval time.Duration, label string, - flagsMap map[string]string, + externalPrefix, prefixHeader string, ) error { halted := promauto.With(reg).NewGauge(prometheus.GaugeOpts{ Name: "thanos_compactor_halted", @@ -306,13 +298,12 @@ func runCompact( if err != nil { return errors.Wrap(err, "create meta fetcher") } - metaFetcherFilters := []block.MetadataFilter{ + compactFetcher := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ block.NewLabelShardedMetaFilter(relabelConfig), block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), ignoreDeletionMarkFilter, duplicateBlocksFilter, - } - compactFetcher := baseMetaFetcher.WithFilters(extprom.WrapRegistererWithPrefix("thanos_", reg), metaFetcherFilters, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}) + }, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}) enableVerticalCompaction := false if len(dedupReplicaLabels) > 0 { enableVerticalCompaction = true @@ -457,14 +448,41 @@ func runCompact( }) if wait { - router := route.New() - bucketUI := ui.NewBucketUI(logger, label, flagsMap) - bucketUI.Register(router, extpromhttp.NewInstrumentationMiddleware(reg)) - srv.Handle("/", router) + r := route.New() + + ins := extpromhttp.NewInstrumentationMiddleware(reg) + compactorView := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/loaded"), prefixHeader) + compactorView.Register(r, ins) + compactFetcher.UpdateOnChange(compactorView.Set) + + global := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/global"), prefixHeader) + global.Register(r, ins) + + // Separate fetcher for global view. + // TODO(bwplotka): Allow Bucket UI to visualize the state of the block as well. + f := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), nil, nil) + f.UpdateOnChange(global.Set) + + srv.Handle("/", r) g.Add(func() error { - // TODO(bwplotka): Allow Bucket UI to visualisate the state of the block as well. - return bucketUI.RunRefreshLoop(ctx, baseMetaFetcher.WithFilters(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), metaFetcherFilters, nil), waitInterval, time.Minute) + iterCtx, iterCancel := context.WithTimeout(ctx, waitInterval) + _, _, _ = f.Fetch(iterCtx) + iterCancel() + + // For /global state make sure to fetch periodically. + return runutil.Repeat(time.Minute, ctx.Done(), func() error { + return runutil.RetryWithLog(logger, time.Minute, ctx.Done(), func() error { + iterCtx, iterCancel := context.WithTimeout(ctx, waitInterval) + defer iterCancel() + + _, _, err := f.Fetch(iterCtx) + if err != nil { + return err + } + return nil + }) + }) }, func(error) { cancel() }) diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index 4a352f35aac..a21565c59a4 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -351,14 +351,9 @@ func runQuery( router = router.WithPrefix(webRoutePrefix) } - flagsMap := map[string]string{ - // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. - "web.external-prefix": webExternalPrefix, - "web.prefix-header": webPrefixHeaderName, - } - ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewQueryUI(logger, reg, stores, flagsMap).Register(router, ins) + // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. + ui.NewQueryUI(logger, reg, stores, webExternalPrefix, webPrefixHeaderName).Register(router, ins) api := v1.NewAPI(logger, reg, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 290ec41c00b..553272282b6 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -572,15 +572,10 @@ func runRule( } }) - flagsMap := map[string]string{ - // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. - "web.external-prefix": webExternalPrefix, - "web.prefix-header": webPrefixHeaderName, - } - ins := extpromhttp.NewInstrumentationMiddleware(reg) - ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), flagsMap).Register(router, ins) + // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. + ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), webExternalPrefix, webPrefixHeaderName).Register(router, ins) api := v1.NewAPI(logger, reg, ruleMgr) api.Register(router.WithPrefix(path.Join(webRoutePrefix, "/api/v1")), tracer, logger, ins) diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 446077530c4..54421d6e490 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -5,6 +5,7 @@ package main import ( "context" + "path" "time" "github.com/go-kit/kit/log" @@ -13,11 +14,13 @@ import ( "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/common/route" "github.com/prometheus/prometheus/pkg/relabel" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/component" "github.com/thanos-io/thanos/pkg/extflag" "github.com/thanos-io/thanos/pkg/extprom" + extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/prober" @@ -27,6 +30,7 @@ import ( "github.com/thanos-io/thanos/pkg/store" storecache "github.com/thanos-io/thanos/pkg/store/cache" "github.com/thanos-io/thanos/pkg/tls" + "github.com/thanos-io/thanos/pkg/ui" "gopkg.in/alecthomas/kingpin.v2" yaml "gopkg.in/yaml.v2" ) @@ -95,6 +99,9 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { "Default is 24h, half of the default value for --delete-delay on compactor."). Default("24h")) + webExternalPrefix := cmd.Flag("web.external-prefix", "Static prefix for all HTML links and redirect URLs in the bucket web UI interface. Actual endpoints are still served on / or the web.route-prefix. This allows thanos bucket web UI to be served behind a reverse proxy that strips a URL sub-path.").Default("").String() + webPrefixHeaderName := cmd.Flag("web.prefix-header", "Name of HTTP request header used for dynamic prefixing of UI links and redirects. This option is ignored if web.external-prefix argument is set. Security risk: enable this option only if a reverse proxy in front of thanos is resetting the header. The --web.prefix-header=X-Forwarded-Prefix option can be useful, for example, if Thanos UI is served via Traefik reverse proxy with PathPrefixStrip option enabled, which sends the stripped prefix value in X-Forwarded-Prefix header. This allows thanos UI to be served on a sub-path.").Default("").String() + m[component.Store.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, debugLogging bool) error { if minTime.PrometheusTimestamp() > maxTime.PrometheusTimestamp() { return errors.Errorf("invalid argument: --min-time '%s' can't be greater than --max-time '%s'", @@ -133,6 +140,8 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { *enablePostingsCompression, time.Duration(*consistencyDelay), time.Duration(*ignoreDeletionMarksDelay), + *webExternalPrefix, + *webPrefixHeaderName, ) } } @@ -148,14 +157,9 @@ func runStore( dataDir string, grpcBindAddr string, grpcGracePeriod time.Duration, - grpcCert string, - grpcKey string, - grpcClientCA string, - httpBindAddr string, + grpcCert, grpcKey, grpcClientCA, httpBindAddr string, httpGracePeriod time.Duration, - indexCacheSizeBytes uint64, - chunkPoolSizeBytes uint64, - maxSampleCount uint64, + indexCacheSizeBytes, chunkPoolSizeBytes, maxSampleCount uint64, maxConcurrency int, component component.Component, verbose bool, @@ -163,11 +167,10 @@ func runStore( blockSyncConcurrency int, filterConf *store.FilterConfig, selectorRelabelConf *extflag.PathOrContent, - advertiseCompatibilityLabel bool, - disableIndexHeader bool, - enablePostingsCompression bool, + advertiseCompatibilityLabel, disableIndexHeader, enablePostingsCompression bool, consistencyDelay time.Duration, ignoreDeletionMarksDelay time.Duration, + externalPrefix, prefixHeader string, ) error { grpcProbe := prober.NewGRPC() httpProbe := prober.NewHTTP() @@ -328,6 +331,14 @@ func runStore( s.Shutdown(err) }) } + // Add bucket UI for loaded blocks. + { + r := route.New() + compactorView := ui.NewBucketUI(logger, "", path.Join(externalPrefix, "/loaded"), prefixHeader) + compactorView.Register(r, extpromhttp.NewInstrumentationMiddleware(reg)) + metaFetcher.UpdateOnChange(compactorView.Set) + srv.Handle("/", r) + } level.Info(logger).Log("msg", "starting store node") return nil diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index 10ca88e17bc..e83bc5633dd 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -116,7 +116,7 @@ func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { prometheus.GaugeOpts{ Subsystem: fetcherSubSys, Name: "modified", - Help: "Number of blocks that their metadata modified", + Help: "Number of blocks whose metadata changed", }, []string{"modified"}, []string{replicaRemovedMeta}, @@ -126,6 +126,7 @@ func newFetcherMetrics(reg prometheus.Registerer) *fetcherMetrics { type MetadataFetcher interface { Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) + UpdateOnChange(func([]metadata.Meta, error)) } type MetadataFilter interface { @@ -184,11 +185,11 @@ func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReade if err != nil { return nil, err } - return b.WithFilters(reg, filters, modifiers), nil + return b.NewMetaFetcher(reg, filters, modifiers), nil } -// WithFilters transforms BaseFetcher into actually usable MetadataFetcher. -func (f *BaseFetcher) WithFilters(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) *MetaFetcher { +// NewMetaFetcher transforms BaseFetcher into actually usable *MetaFetcher. +func (f *BaseFetcher) NewMetaFetcher(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) *MetaFetcher { return &MetaFetcher{metrics: newFetcherMetrics(reg), wrapped: f, filters: filters, modifiers: modifiers} } @@ -457,6 +458,8 @@ type MetaFetcher struct { filters []MetadataFilter modifiers []MetadataModifier + + listener func([]metadata.Meta, error) } // Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. @@ -464,7 +467,20 @@ type MetaFetcher struct { // // Returned error indicates a failure in fetching metadata. Returned meta can be assumed as correct, with some blocks missing. func (f *MetaFetcher) Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) { - return f.wrapped.fetch(ctx, f.metrics, f.filters, f.modifiers) + metas, partial, err = f.wrapped.fetch(ctx, f.metrics, f.filters, f.modifiers) + if f.listener != nil { + blocks := make([]metadata.Meta, 0, len(metas)) + for _, meta := range metas { + blocks = append(blocks, *meta) + } + f.listener(blocks, err) + } + return metas, partial, err +} + +// UpdateOnChange allows to add listener that will be update on every change. +func (f *MetaFetcher) UpdateOnChange(listener func([]metadata.Meta, error)) { + f.listener = listener } var _ MetadataFilter = &TimePartitionMetaFilter{} @@ -558,7 +574,7 @@ func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metad BlockMeta: tsdb.BlockMeta{ ULID: ulid.MustNew(uint64(0), nil), }, - }), metasByResolution[res], metas, res, synced) + }), metasByResolution[res], metas, synced) }(res) } @@ -567,7 +583,7 @@ func (f *DeduplicateFilter) Filter(_ context.Context, metas map[ulid.ULID]*metad return nil } -func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, res int64, synced *extprom.TxGaugeVec) { +func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadata.Meta, metas map[ulid.ULID]*metadata.Meta, synced *extprom.TxGaugeVec) { sort.Slice(metaSlice, func(i, j int) bool { ilen := len(metaSlice[i].Compaction.Sources) jlen := len(metaSlice[j].Compaction.Sources) diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index cd7b3ffade4..953ed93f4fe 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -78,7 +78,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { baseFetcher, err := NewBaseFetcher(log.NewNopLogger(), 20, bkt, dir, r) testutil.Ok(t, err) - fetcher := baseFetcher.WithFilters(r, []MetadataFilter{ + fetcher := baseFetcher.NewMetaFetcher(r, []MetadataFilter{ &ulidFilter{ulidToDelete: &ulidToDelete}, }, nil) diff --git a/pkg/ui/bucket.go b/pkg/ui/bucket.go index fdd1aeba432..2901b3cb0c7 100644 --- a/pkg/ui/bucket.go +++ b/pkg/ui/bucket.go @@ -4,25 +4,22 @@ package ui import ( - "context" "encoding/json" "html/template" "net/http" "time" "github.com/go-kit/kit/log" - "github.com/go-kit/kit/log/level" "github.com/prometheus/common/route" - "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" - "github.com/thanos-io/thanos/pkg/runutil" ) // Bucket is a web UI representing state of buckets as a timeline. type Bucket struct { *BaseUI - flagsMap map[string]string + + externalPrefix, prefixHeader string // Unique Prometheus label that identifies each shard, used as the title. If // not present, all labels are displayed externally as a legend. Label string @@ -31,65 +28,45 @@ type Bucket struct { Err error } -func NewBucketUI(logger log.Logger, label string, flagsMap map[string]string) *Bucket { +func NewBucketUI(logger log.Logger, label, externalPrefix, prefixHeader string) *Bucket { return &Bucket{ - BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs()), - Blocks: "[]", - Label: label, - flagsMap: flagsMap, + BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs()), + Blocks: "[]", + Label: label, + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, } } // Register registers http routes for bucket UI. func (b *Bucket) Register(r *route.Router, ins extpromhttp.InstrumentationMiddleware) { instrf := func(name string, next func(w http.ResponseWriter, r *http.Request)) http.HandlerFunc { - return ins.NewHandler(name, http.HandlerFunc(next)) + return ins.NewHandler(b.externalPrefix+name, http.HandlerFunc(next)) } - - r.Get("/", instrf("root", b.root)) - r.Get("/static/*filepath", instrf("static", b.serveStaticAsset)) + r.WithPrefix(b.externalPrefix).Get("/", instrf("root", b.root)) + r.WithPrefix(b.externalPrefix).Get("/static/*filepath", instrf("static", b.serveStaticAsset)) } // Handle / of bucket UIs. func (b *Bucket) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(b.logger, b.flagsMap, r) - b.executeTemplate(w, "bucket.html", prefix, b) + b.executeTemplate(w, "bucket.html", GetWebPrefix(b.logger, b.externalPrefix, b.prefixHeader, r), b) } -func (b *Bucket) Set(data string, err error) { +func (b *Bucket) Set(blocks []metadata.Meta, err error) { + if err != nil { + // Last view is maintained. + b.RefreshedAt = time.Now() + b.Err = err + return + } + + data := "[]" + dataB, err := json.Marshal(blocks) + if err == nil { + data = string(dataB) + } + b.RefreshedAt = time.Now() b.Blocks = template.JS(data) b.Err = err } - -// RunRefreshLoop refreshes periodically metadata from remote storage periodically and update the UI. -func (b *Bucket) RunRefreshLoop(ctx context.Context, fetcher block.MetadataFetcher, interval time.Duration, loopTimeout time.Duration) error { - return runutil.Repeat(interval, ctx.Done(), func() error { - return runutil.RetryWithLog(b.logger, time.Minute, ctx.Done(), func() error { - iterCtx, iterCancel := context.WithTimeout(ctx, loopTimeout) - defer iterCancel() - - level.Debug(b.logger).Log("msg", "synchronizing block metadata") - metas, _, err := fetcher.Fetch(iterCtx) - if err != nil { - level.Error(b.logger).Log("msg", "failed to sync metas", "err", err) - b.Set("[]", err) - return err - } - blocks := make([]metadata.Meta, 0, len(metas)) - for _, meta := range metas { - blocks = append(blocks, *meta) - } - level.Debug(b.logger).Log("msg", "downloaded blocks meta.json", "num", len(blocks)) - - data, err := json.Marshal(blocks) - if err != nil { - b.Set("[]", err) - return err - } - // TODO(bwplotka): Allow setting info about partial blocks as well. - b.Set(string(data), nil) - return nil - }) - }) -} diff --git a/pkg/ui/query.go b/pkg/ui/query.go index 37660c05bf2..9f1f8accba2 100644 --- a/pkg/ui/query.go +++ b/pkg/ui/query.go @@ -26,7 +26,7 @@ type Query struct { *BaseUI storeSet *query.StoreSet - flagsMap map[string]string + externalPrefix, prefixHeader string cwd string birth time.Time @@ -43,19 +43,20 @@ type thanosVersion struct { GoVersion string `json:"goVersion"` } -func NewQueryUI(logger log.Logger, reg prometheus.Registerer, storeSet *query.StoreSet, flagsMap map[string]string) *Query { +func NewQueryUI(logger log.Logger, reg prometheus.Registerer, storeSet *query.StoreSet, externalPrefix, prefixHeader string) *Query { cwd, err := os.Getwd() if err != nil { cwd = "" } return &Query{ - BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs()), - storeSet: storeSet, - flagsMap: flagsMap, - cwd: cwd, - birth: time.Now(), - reg: reg, - now: model.Now, + BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs()), + storeSet: storeSet, + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, + cwd: cwd, + birth: time.Now(), + reg: reg, + now: model.Now, } } @@ -90,19 +91,19 @@ func (q *Query) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew // Root redirects "/" requests to "/graph", taking into account the path prefix value. func (q *Query) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) http.Redirect(w, r, path.Join(prefix, "/graph"), http.StatusFound) } func (q *Query) graph(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) q.executeTemplate(w, "graph.html", prefix, nil) } func (q *Query) status(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) q.executeTemplate(w, "status.html", prefix, struct { Birth time.Time @@ -123,7 +124,7 @@ func (q *Query) status(w http.ResponseWriter, r *http.Request) { } func (q *Query) stores(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(q.logger, q.flagsMap, r) + prefix := GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r) statuses := make(map[component.StoreAPI][]query.StoreStatus) for _, status := range q.storeSet.GetStoreStatus() { statuses[status.StoreType] = append(statuses[status.StoreType], status) diff --git a/pkg/ui/rule.go b/pkg/ui/rule.go index 22ab0f3ba6e..18828291293 100644 --- a/pkg/ui/rule.go +++ b/pkg/ui/rule.go @@ -23,20 +23,21 @@ import ( type Rule struct { *BaseUI - flagsMap map[string]string + externalPrefix, prefixHeader string ruleManager *thanosrule.Manager queryURL string reg prometheus.Registerer } -func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrule.Manager, queryURL string, flagsMap map[string]string) *Rule { +func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrule.Manager, queryURL string, externalPrefix, prefixHeader string) *Rule { return &Rule{ - BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL)), - flagsMap: flagsMap, - ruleManager: ruleManager, - queryURL: queryURL, - reg: reg, + BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL)), + externalPrefix: externalPrefix, + prefixHeader: prefixHeader, + ruleManager: ruleManager, + queryURL: queryURL, + reg: reg, } } @@ -133,14 +134,14 @@ func (ru *Rule) alerts(w http.ResponseWriter, r *http.Request) { Counts: alertCounts(groups), } - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) // TODO(bwplotka): Update HTML to include partial response. ru.executeTemplate(w, "alerts.html", prefix, alertStatus) } func (ru *Rule) rules(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) // TODO(bwplotka): Update HTML to include partial response. ru.executeTemplate(w, "rules.html", prefix, ru.ruleManager) @@ -148,7 +149,7 @@ func (ru *Rule) rules(w http.ResponseWriter, r *http.Request) { // Root redirects / requests to /graph, taking into account the path prefix value. func (ru *Rule) root(w http.ResponseWriter, r *http.Request) { - prefix := GetWebPrefix(ru.logger, ru.flagsMap, r) + prefix := GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r) http.Redirect(w, r, path.Join(prefix, "/alerts"), http.StatusFound) } diff --git a/pkg/ui/ui.go b/pkg/ui/ui.go index 269b22cd9c1..aded58c7413 100644 --- a/pkg/ui/ui.go +++ b/pkg/ui/ui.go @@ -92,13 +92,13 @@ func (bu *BaseUI) executeTemplate(w http.ResponseWriter, name string, prefix str // GetWebPrefix sanitizes an external URL path prefix value. // A value provided by web.external-prefix flag is preferred over the one supplied through an HTTP header. -func GetWebPrefix(logger log.Logger, flagsMap map[string]string, r *http.Request) string { +func GetWebPrefix(logger log.Logger, externalPrefix, prefixHeader string, r *http.Request) string { // Ignore web.prefix-header value if web.external-prefix is defined. - if len(flagsMap["web.external-prefix"]) > 0 { - return flagsMap["web.external-prefix"] + if len(externalPrefix) > 0 { + return externalPrefix } - prefix := r.Header.Get(flagsMap["web.prefix-header"]) + prefix := r.Header.Get(prefixHeader) // Even if rfc2616 suggests that Location header "value consists of a single absolute URI", browsers // support relative location too. So for extra security, scheme and host parts are stripped from a dynamic prefix. diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go index 12559615220..5e4b601dcff 100644 --- a/test/e2e/compact_test.go +++ b/test/e2e/compact_test.go @@ -6,6 +6,7 @@ package e2e_test import ( "context" "fmt" + "net/http" "os" "path" "path/filepath" @@ -372,6 +373,11 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + + // Ensure bucket UI. + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(c.HTTPEndpoint(), "global")) + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(c.HTTPEndpoint(), "loaded")) + testutil.Ok(t, s.Stop(c)) }) t.Run("native vertical deduplication should kick in", func(t *testing.T) { @@ -453,3 +459,11 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) }) } + +func ensureGETStatusCode(t testing.TB, code int, url string) { + t.Helper() + + r, err := http.Get(url) + testutil.Ok(t, err) + testutil.Equals(t, code, r.StatusCode) +} diff --git a/test/e2e/store_gateway_test.go b/test/e2e/store_gateway_test.go index 27d736eaa99..64a0b352e46 100644 --- a/test/e2e/store_gateway_test.go +++ b/test/e2e/store_gateway_test.go @@ -5,6 +5,7 @@ package e2e_test import ( "context" + "net/http" "os" "path" "path/filepath" @@ -56,6 +57,8 @@ func TestStoreGateway(t *testing.T) { }) testutil.Ok(t, err) testutil.Ok(t, s.StartAndWaitReady(s1)) + // Ensure bucket UI. + ensureGETStatusCode(t, http.StatusOK, "http://"+path.Join(s1.HTTPEndpoint(), "loaded")) q, err := e2ethanos.NewQuerier( s.SharedDir(), "1", From fc754db9075dda3e3278f5aaf528f3b822e2946c Mon Sep 17 00:00:00 2001 From: Tobiasz Heller Date: Wed, 1 Apr 2020 17:10:00 +0200 Subject: [PATCH 076/190] rule: fix query addr parsing (#2288) * rule: fix query addr parsing Signed-off-by: Tobiasz Heller * CR: support different schemas Signed-off-by: Tobiasz Heller * CR: docs and err Signed-off-by: Tobiasz Heller * CR: improve error handling and more TC Signed-off-by: Tobiasz Heller --- CHANGELOG.md | 1 + cmd/thanos/rule.go | 26 +++++------ pkg/query/config.go | 34 ++++++++++++++ pkg/query/config_test.go | 95 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 142 insertions(+), 14 deletions(-) create mode 100644 pkg/query/config_test.go diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d33abdb766..017ec2e4154 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed +- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: Fixes issue #2281 bug in ruler with parsing query addr with path prefix - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping - [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 553272282b6..3c021dec2b6 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -288,17 +288,16 @@ func runRule( metrics := newRuleMetrics(reg) var queryCfg []query.Config + var err error if len(queryConfigYAML) > 0 { - var err error queryCfg, err = query.LoadConfigs(queryConfigYAML) if err != nil { return err } } else { - for _, addr := range queryAddrs { - if addr == "" { - return errors.New("static querier address cannot be empty") - } + queryCfg, err = query.BuildQueryConfig(queryAddrs) + if err != nil { + return err } // Build the query configuration from the legacy query flags. @@ -308,16 +307,15 @@ func runRule( Files: querySDFiles, RefreshInterval: model.Duration(querySDInterval), }) - } - queryCfg = append(queryCfg, - query.Config{ - EndpointsConfig: http_util.EndpointsConfig{ - Scheme: "http", - StaticAddresses: queryAddrs, - FileSDConfigs: fileSDConfigs, + queryCfg = append(queryCfg, + query.Config{ + EndpointsConfig: http_util.EndpointsConfig{ + Scheme: "http", + FileSDConfigs: fileSDConfigs, + }, }, - }, - ) + ) + } } queryProvider := dns.NewProvider( diff --git a/pkg/query/config.go b/pkg/query/config.go index 37876954101..12918e614f1 100644 --- a/pkg/query/config.go +++ b/pkg/query/config.go @@ -4,8 +4,13 @@ package query import ( + "fmt" + "net/url" + "strings" + "gopkg.in/yaml.v2" + "github.com/pkg/errors" http_util "github.com/thanos-io/thanos/pkg/http" ) @@ -39,3 +44,32 @@ func LoadConfigs(confYAML []byte) ([]Config, error) { } return queryCfg, nil } + +// BuildQueryConfig returns a query client configuration from a static address. +func BuildQueryConfig(queryAddrs []string) ([]Config, error) { + configs := make([]Config, 0, len(queryAddrs)) + for i, addr := range queryAddrs { + if addr == "" { + return nil, errors.Errorf("static querier address cannot be empty at index %d", i) + } + // If addr is missing schema, add http. + if !strings.Contains(addr, "://") { + addr = fmt.Sprintf("http://%s", addr) + } + u, err := url.Parse(addr) + if err != nil { + return nil, errors.Wrapf(err, "failed to parse addr %q", addr) + } + if u.Scheme != "http" && u.Scheme != "https" { + return nil, errors.Errorf("%q is not supported scheme for querier address", u.Scheme) + } + configs = append(configs, Config{ + EndpointsConfig: http_util.EndpointsConfig{ + Scheme: u.Scheme, + StaticAddresses: []string{u.Host}, + PathPrefix: u.Path, + }, + }) + } + return configs, nil +} diff --git a/pkg/query/config_test.go b/pkg/query/config_test.go new file mode 100644 index 00000000000..1169df04989 --- /dev/null +++ b/pkg/query/config_test.go @@ -0,0 +1,95 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package query + +import ( + "testing" + + "github.com/thanos-io/thanos/pkg/http" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestBuildQueryConfig(t *testing.T) { + for _, tc := range []struct { + desc string + addresses []string + err bool + expected []Config + }{ + { + desc: "single addr without path", + addresses: []string{"localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }}, + }, + { + desc: "1st addr without path, 2nd with", + addresses: []string{"localhost:9093", "localhost:9094/prefix"}, + expected: []Config{ + { + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }, + { + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9094"}, + Scheme: "http", + PathPrefix: "/prefix", + }, + }, + }, + }, + { + desc: "single addr with path and http scheme", + addresses: []string{"http://localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "http", + }, + }}, + }, + { + desc: "single addr with path and https scheme", + addresses: []string{"https://localhost:9093"}, + expected: []Config{{ + EndpointsConfig: http.EndpointsConfig{ + StaticAddresses: []string{"localhost:9093"}, + Scheme: "https", + }, + }}, + }, + { + desc: "not supported scheme", + addresses: []string{"ttp://localhost:9093"}, + err: true, + }, + { + desc: "invalid addr", + addresses: []string{"this is not a valid addr"}, + err: true, + }, + { + desc: "empty addr", + addresses: []string{""}, + err: true, + }, + } { + t.Run(tc.desc, func(t *testing.T) { + cfg, err := BuildQueryConfig(tc.addresses) + if tc.err { + testutil.NotOk(t, err) + return + } + + testutil.Equals(t, tc.expected, cfg) + }) + } +} From 9de564088d42b10f9352e734d7d03e36bebcdc43 Mon Sep 17 00:00:00 2001 From: Lili Cosic Date: Thu, 2 Apr 2020 11:48:08 +0200 Subject: [PATCH 077/190] mixin: Remove unused jobPrefix field (#2364) Signed-off-by: Lili Cosic --- mixin/thanos/alerts/bucket_replicate.libsonnet | 1 - mixin/thanos/alerts/compact.libsonnet | 1 - mixin/thanos/alerts/query.libsonnet | 1 - mixin/thanos/alerts/receive.libsonnet | 1 - mixin/thanos/alerts/rule.libsonnet | 1 - mixin/thanos/alerts/sidecar.libsonnet | 1 - mixin/thanos/alerts/store.libsonnet | 1 - 7 files changed, 7 deletions(-) diff --git a/mixin/thanos/alerts/bucket_replicate.libsonnet b/mixin/thanos/alerts/bucket_replicate.libsonnet index 4c1a2f27df7..7517187c4e2 100644 --- a/mixin/thanos/alerts/bucket_replicate.libsonnet +++ b/mixin/thanos/alerts/bucket_replicate.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, bucket_replicate+:: { - jobPrefix: error 'must provide job prefix for Thanos Bucket Replicate dashboard', selector: error 'must provide selector for Thanos Bucket Replicate dashboard', errorThreshold: 10, p99LatencyThreshold: 20, diff --git a/mixin/thanos/alerts/compact.libsonnet b/mixin/thanos/alerts/compact.libsonnet index fd5b82f7d33..87bcfa13a77 100644 --- a/mixin/thanos/alerts/compact.libsonnet +++ b/mixin/thanos/alerts/compact.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, compact+:: { - jobPrefix: error 'must provide job prefix for Thanos Compact alerts', selector: error 'must provide selector for Thanos Compact alerts', compactionErrorThreshold: 5, bucketOpsErrorThreshold: 5, diff --git a/mixin/thanos/alerts/query.libsonnet b/mixin/thanos/alerts/query.libsonnet index 4cfd7ab0319..6326c846a7c 100644 --- a/mixin/thanos/alerts/query.libsonnet +++ b/mixin/thanos/alerts/query.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, query+:: { - jobPrefix: error 'must provide job prefix for Thanos Query alerts', selector: error 'must provide selector for Thanos Query alerts', httpErrorThreshold: 5, grpcErrorThreshold: 5, diff --git a/mixin/thanos/alerts/receive.libsonnet b/mixin/thanos/alerts/receive.libsonnet index b9920e6552e..a52bc193dec 100644 --- a/mixin/thanos/alerts/receive.libsonnet +++ b/mixin/thanos/alerts/receive.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, receive+:: { - jobPrefix: error 'must provide job prefix for Thanos Receive alerts', selector: error 'must provide selector for Thanos Receive alerts', httpErrorThreshold: 5, forwardErrorThreshold: 5, diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet index d9795eefa8b..eb3df1ddeed 100644 --- a/mixin/thanos/alerts/rule.libsonnet +++ b/mixin/thanos/alerts/rule.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, rule+:: { - jobPrefix: error 'must provide job prefix for Thanos Rule alerts', selector: error 'must provide selector for Thanos Rule alerts', grpcErrorThreshold: 5, rulerDnsErrorThreshold: 1, diff --git a/mixin/thanos/alerts/sidecar.libsonnet b/mixin/thanos/alerts/sidecar.libsonnet index 58aee3bb0b3..c81e2ba0a91 100644 --- a/mixin/thanos/alerts/sidecar.libsonnet +++ b/mixin/thanos/alerts/sidecar.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, sidecar+:: { - jobPrefix: error 'must provide job prefix for Thanos Sidecar alerts', selector: error 'must provide selector for Thanos Sidecar alerts', }, prometheusAlerts+:: { diff --git a/mixin/thanos/alerts/store.libsonnet b/mixin/thanos/alerts/store.libsonnet index a30f71c95d9..04d723ffaa5 100644 --- a/mixin/thanos/alerts/store.libsonnet +++ b/mixin/thanos/alerts/store.libsonnet @@ -1,7 +1,6 @@ { local thanos = self, store+:: { - jobPrefix: error 'must provide job prefix for Thanos Store alerts', selector: error 'must provide selector for Thanos Store alerts', grpcErrorThreshold: 5, compactionErrorThreshold: 5, From b2f6129ae814361d445ccf8045132bc52d8ffa18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Thu, 2 Apr 2020 18:13:24 +0200 Subject: [PATCH 078/190] Create release v0.12.0-rc.0 (#2360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 52 +++++++++++-------- VERSION | 2 +- .../thanos/1-globalview/courseBase.sh | 2 +- .../katacoda/thanos/1-globalview/step2.md | 8 +-- .../katacoda/thanos/1-globalview/step3.md | 2 +- 5 files changed, 38 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 017ec2e4154..53734cf467e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,34 +11,46 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased +## [v0.12.0-rc.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0-rc.0) - 2020.04.01 + ### Fixed -- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: Fixes issue #2281 bug in ruler with parsing query addr with path prefix -- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped -- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping -- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate -- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty -- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected +- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: fixes issue #2281, a bug causing incorrect parsing of query address with path prefix. +- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: fixed issue #2204, where a bug in alert queue signaling filled up the queue and alerts were dropped. +- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web: sort chunks by thanos.downsample.resolution for better grouping. +- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: fix issue where metrics were registered multiple times in bucket replicate. +- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: fixed issue #2260, where the bucket passes null when storage is empty. +- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected. +- [#2208](https://github.com/thanos-io/thanos/pull/2208) Query and Rule: fix handling of `web.route-prefix` to correctly handle `/` and prefixes that do not begin with a `/`. +- [#2311](https://github.com/thanos-io/thanos/pull/2311) Receive: ensure receive component serves TLS when TLS configuration is provided. +- [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. ### Added - [#2252](https://github.com/thanos-io/thanos/pull/2252) Query: add new `--store-strict` flag. More information available [here](/docs/proposals/202001_thanos_query_health_handling.md). -- [#2265](https://github.com/thanos-io/thanos/pull/2265) Compactor: Add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` enabled. -- [#2250](https://github.com/thanos-io/thanos/pull/2250) Compactor: Enable vertical compaction for offline deduplication (Experimental). Uses `--deduplication.replica-label` flag to specify the replica label to deduplicate on (Hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. -- [#1714](https://github.com/thanos-io/thanos/pull/1714) Run the bucket web UI in the compact component when it is run as a long-lived process. -- [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: Added `max_item_size` config option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. -- [#2297](https://github.com/thanos-io/thanos/pull/2297) Store Gateway: Add `--experimental.enable-index-cache-postings-compression` flag to enable reencoding and compressing postings before storing them into cache. Compressed postings take about 10% of the original size. -- [#2357](https://github.com/thanos-io/thanos/pull/2357) Compactor and Store Gateway now have serve BucketUI on `:/loaded` and shows exactly the blocks that are currently seen by compactor and store gateway. Compactor also serves different BucketUI on `:/global` that shows the status of object storage without any filters. +- [#2265](https://github.com/thanos-io/thanos/pull/2265) Compact: add `--wait-interval` to specify compaction wait interval between consecutive compact runs when `--wait` is enabled. +- [#2250](https://github.com/thanos-io/thanos/pull/2250) Compact: enable vertical compaction for offline deduplication (experimental). Uses `--deduplication.replica-label` flag to specify the replica label on which to deduplicate (hidden). Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together). This works well for deduplication of blocks with **precisely the same samples** like those produced by Receiver replication. We plan to add a smarter algorithm in the following weeks. +- [#1714](https://github.com/thanos-io/thanos/pull/1714) Compact: the compact component now exposes the bucket web UI when it is run as a long-lived process. +- [#2304](https://github.com/thanos-io/thanos/pull/2304) Store: added `max_item_size` configuration option to memcached-based index cache. This should be set to the max item size configured in memcached (`-I` flag) in order to not waste network round-trips to cache items larger than the limit configured in memcached. +- [#2297](https://github.com/thanos-io/thanos/pull/2297) Store: add `--experimental.enable-index-cache-postings-compression` flag to enable re-encoding and compressing postings before storing them into the cache. Compressed postings take about 10% of the original size. +- [#2357](https://github.com/thanos-io/thanos/pull/2357) Compact and Store: the compact and store components now serve the bucket UI on `:/loaded`, which shows exactly the blocks that are currently seen by compactor and the store gateway. The compactor also serves a different bucket UI on `:/global`, which shows the status of object storage without any filters. +- [#2166](https://github.com/thanos-io/thanos/pull/2166) Bucket Web: improve the tooltip for the bucket UI; it was reconstructed and now exposes much more information about blocks. +- [#2172](https://github.com/thanos-io/thanos/pull/2172) Store: add support for sharding the store component based on the label hash. +- [#2113](https://github.com/thanos-io/thanos/pull/2113) Bucket: added `thanos bucket replicate` command to replicate blocks from one bucket to another. +- [#1922](https://github.com/thanos-io/thanos/pull/1922) Docs: create a new document to explain sharding in Thanos. +- [#2230](https://github.com/thanos-io/thanos/pull/2230) Store: optimize conversion of labels. ### Changed -- [#2136](https://github.com/thanos-io/thanos/pull/2136) *breaking* store, compact, bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. -Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading `deletion-mark.json` file for the block that was chosen to be deleted. This file contains unix time of when the block was marked for deletion. If you want to keep existing behavior, you should add `--delete-delay=0s` as a flag. -- [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved as the `thanos bucket` sub-command, and cannot be called via `thanos downsample` any more. -- [#2294](https://github.com/thanos-io/thanos/pull/2294) store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. -- [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: initlialization fails with filepath bad pattern error and rule manager update error. -- [#2310](https://github.com/thanos-io/thanos/pull/2310) query: Report timespan 0 to 0 when discovering no stores. -- [#2330](https://github.com/thanos-io/thanos/pull/2330) store: index-header is no longer experimental. It is enabled by default for store Gateway. You can disable it with new hidden flag: `--store.disable-index-header`. `--experimental.enable-index-header` flag was removed. +- [#2136](https://github.com/thanos-io/thanos/pull/2136) *breaking* Store, Compact, Bucket: schedule block deletion by adding deletion-mark.json. This adds a consistent way for multiple readers and writers to access object storage. +Since there are no consistency guarantees provided by some Object Storage providers, this PR adds a consistent lock-free way of dealing with Object Storage irrespective of the choice of object storage. In order to achieve this co-ordination, blocks are not deleted directly. Instead, blocks are marked for deletion by uploading the `deletion-mark.json` file for the block that was chosen to be deleted. This file contains Unix time of when the block was marked for deletion. If you want to keep existing behavior, you should add `--delete-delay=0s` as a flag. +- [#2090](https://github.com/thanos-io/thanos/issues/2090) *breaking* Downsample command: the `downsample` command has moved and is now a sub-command of the `thanos bucket` sub-command; it cannot be called via `thanos downsample` any more. +- [#2294](https://github.com/thanos-io/thanos/pull/2294) Store: optimizations for fetching postings. Queries using `=~".*"` matchers or negation matchers (`!=...` or `!~...`) benefit the most. +- [#2301](https://github.com/thanos-io/thanos/pull/2301) Ruler: exit with an error when initialization fails. +- [#2310](https://github.com/thanos-io/thanos/pull/2310) Query: report timespan 0 to 0 when discovering no stores. +- [#2330](https://github.com/thanos-io/thanos/pull/2330) Store: index-header is no longer experimental. It is enabled by default for store Gateway. You can disable it with new hidden flag: `--store.disable-index-header`. The `--experimental.enable-index-header` flag was removed. +- [#1848](https://github.com/thanos-io/thanos/pull/1848) Ruler: allow returning error messages when a reload is triggered via HTTP. +- [#2270](https://github.com/thanos-io/thanos/pull/2277) All: Thanos components will now print stack traces when they error out. ## [v0.11.0](https://github.com/thanos-io/thanos/releases/tag/v0.11.0) - 2020.03.02 @@ -69,8 +81,6 @@ Since there are no consistency guarantees provided by some Object Storage provid - [#2049](https://github.com/thanos-io/thanos/pull/2049) Tracing: Support sampling on Elastic APM with new sample_rate setting. - [#2008](https://github.com/thanos-io/thanos/pull/2008) Querier, Receiver, Sidecar, Store: Add gRPC [health check](https://github.com/grpc/grpc/blob/master/doc/health-checking.md) endpoints. - [#2145](https://github.com/thanos-io/thanos/pull/2145) Tracing: track query sent to prometheus via remote read api. -- [#1848](https://github.com/thanos-io/thanos/pull/1848) Ruler: Return error messages when trigger reload with http. -- [#2113](https://github.com/thanos-io/thanos/pull/2113) Bucket: Added `thanos bucket replicate`. ### Changed diff --git a/VERSION b/VERSION index 20c48e9965f..68f8b769413 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.0-dev +0.12.0-rc.0 diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 53bcd979d24..5ee8a52718a 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash docker pull quay.io/prometheus/prometheus:v2.16.0 -docker pull quay.io/thanos/thanos:v0.11.0 +docker pull quay.io/thanos/thanos:v0.12.0-rc.0 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index 03618d2acc5..e1497b52f3d 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.11.0 --help +docker run --rm quay.io/thanos/thanos:v0.12.0-rc.0 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.11.0 \ + quay.io/thanos/thanos:v0.12.0-rc.0 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.11.0 \ + quay.io/thanos/thanos:v0.12.0-rc.0 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.11.0 \ + quay.io/thanos/thanos:v0.12.0-rc.0 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index bd69c30c2ec..641ddc29473 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.11.0 \ + quay.io/thanos/thanos:v0.12.0-rc.0 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ From 84495fa9869e0351ec89badbd6b0215142d49e15 Mon Sep 17 00:00:00 2001 From: Jakob Kartschall Date: Thu, 2 Apr 2020 19:49:35 +0200 Subject: [PATCH 079/190] Allow more connection reuse than the default of 2 (#2343) Signed-off-by: Jakob Kartschall --- pkg/objstore/s3/s3.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/objstore/s3/s3.go b/pkg/objstore/s3/s3.go index 59098125d0f..285bebaf7d1 100644 --- a/pkg/objstore/s3/s3.go +++ b/pkg/objstore/s3/s3.go @@ -149,6 +149,7 @@ func NewBucketWithConfig(logger log.Logger, config Config, component string) (*B DualStack: true, }).DialContext, MaxIdleConns: 100, + MaxIdleConnsPerHost: 100, IdleConnTimeout: time.Duration(config.HTTPConfig.IdleConnTimeout), TLSHandshakeTimeout: 10 * time.Second, ExpectContinueTimeout: 1 * time.Second, From 8591434856ced5803e399b4d9d1bf2d1459c0ee0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Fri, 3 Apr 2020 09:06:01 +0200 Subject: [PATCH 080/190] Makefile: ignore GCS in CI (#2368) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We got booted from the GCS account, so skip this in CI for now. Signed-off-by: Lucas Servén Marín --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0376f310bcf..bcd463bffda 100644 --- a/Makefile +++ b/Makefile @@ -231,7 +231,7 @@ test: check-git install-deps .PHONY: test-ci test-ci: ## Runs test for CI, so excluding object storage integrations that we don't have configured yet. -test-ci: export THANOS_TEST_OBJSTORE_SKIP=AZURE,SWIFT,COS,ALIYUNOSS +test-ci: export THANOS_TEST_OBJSTORE_SKIP=AZURE,SWIFT,COS,ALIYUNOSS,GCS test-ci: @echo ">> Skipping ${THANOS_TEST_OBJSTORE_SKIP} tests" $(MAKE) test From 58458f1b0a652b6ba7f98cd72dbe9272af9c7982 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 3 Apr 2020 17:01:17 +0100 Subject: [PATCH 081/190] Revert "Makefile: ignore GCS in CI (#2368)" (#2373) This reverts commit 8591434856ced5803e399b4d9d1bf2d1459c0ee0. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bcd463bffda..0376f310bcf 100644 --- a/Makefile +++ b/Makefile @@ -231,7 +231,7 @@ test: check-git install-deps .PHONY: test-ci test-ci: ## Runs test for CI, so excluding object storage integrations that we don't have configured yet. -test-ci: export THANOS_TEST_OBJSTORE_SKIP=AZURE,SWIFT,COS,ALIYUNOSS,GCS +test-ci: export THANOS_TEST_OBJSTORE_SKIP=AZURE,SWIFT,COS,ALIYUNOSS test-ci: @echo ">> Skipping ${THANOS_TEST_OBJSTORE_SKIP} tests" $(MAKE) test From 6b5bbc111aa6c8c4b279f76a794f8b3f0bdabfab Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 3 Apr 2020 19:06:14 +0100 Subject: [PATCH 082/190] mixin: Added critical Rules alerts. (#2374) * mixin: Added critical Rules alerts. Signed-off-by: Bartlomiej Plotka * Addressed comments. Signed-off-by: Bartlomiej Plotka --- examples/alerts/alerts.md | 30 ++++++++++++++++++++----- examples/alerts/alerts.yaml | 26 ++++++++++++++++++--- mixin/thanos/alerts/rule.libsonnet | 36 +++++++++++++++++++++++++++--- 3 files changed, 81 insertions(+), 11 deletions(-) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index 5efd2809b94..8a4dc61d9cc 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -97,7 +97,7 @@ rules: ) for: 5m labels: - severity: warning + severity: critical - alert: ThanosRuleHighRuleEvaluationWarnings annotations: message: Thanos Rule {{$labels.job}} {{$labels.pod}} has high number of evaluation @@ -144,8 +144,8 @@ rules: severity: info - alert: ThanosRuleQueryHighDNSFailures annotations: - message: Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing - DNS queries for query endpoints. + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS + queries for query endpoints. expr: | ( sum by (job) (rate(thanos_ruler_query_apis_dns_failures_total{job=~"thanos-rule.*"}[5m])) @@ -158,8 +158,8 @@ rules: severity: warning - alert: ThanosRuleAlertmanagerHighDNSFailures annotations: - message: Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing - DNS queries for Alertmanager endpoints. + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS + queries for Alertmanager endpoints. expr: | ( sum by (job) (rate(thanos_ruler_alertmanagers_dns_failures_total{job=~"thanos-rule.*"}[5m])) @@ -170,6 +170,26 @@ rules: for: 15m labels: severity: warning +- alert: ThanosRuleNoEvaluationFor10Intervals + annotations: + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups + that did not evaluate for at least 10x of their expected interval. + expr: | + time() - prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"} + > + 10 * prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"} + for: 5m + labels: + severity: critical +- alert: ThanosRuleTSDBNotIngestingSamples + annotations: + message: Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 + minutes. + expr: | + rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m]) <= 0 + for: 10m + labels: + severity: critical ``` ## Store Gateway diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index bdb7abcb161..705b07f835d 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -316,7 +316,7 @@ groups: ) for: 5m labels: - severity: warning + severity: critical - alert: ThanosRuleHighRuleEvaluationWarnings annotations: message: Thanos Rule {{$labels.job}} {{$labels.pod}} has high number of evaluation @@ -363,7 +363,7 @@ groups: severity: info - alert: ThanosRuleQueryHighDNSFailures annotations: - message: Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for query endpoints. expr: | ( @@ -377,7 +377,7 @@ groups: severity: warning - alert: ThanosRuleAlertmanagerHighDNSFailures annotations: - message: Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints. expr: | ( @@ -389,6 +389,26 @@ groups: for: 15m labels: severity: warning + - alert: ThanosRuleNoEvaluationFor10Intervals + annotations: + message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups + that did not evaluate for at least 10x of their expected interval. + expr: | + time() - prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"} + > + 10 * prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"} + for: 5m + labels: + severity: critical + - alert: ThanosRuleTSDBNotIngestingSamples + annotations: + message: Thanos Rule {{$labels.job}} did not ingest any samples for the last + 15 minutes. + expr: | + rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m]) <= 0 + for: 10m + labels: + severity: critical - name: thanos-component-absent.rules rules: - alert: ThanosCompactIsDown diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet index eb3df1ddeed..b9207abbc8f 100644 --- a/mixin/thanos/alerts/rule.libsonnet +++ b/mixin/thanos/alerts/rule.libsonnet @@ -54,7 +54,7 @@ 'for': '5m', labels: { - severity: 'warning', + severity: 'critical', }, }, { @@ -120,7 +120,7 @@ { alert: 'ThanosRuleQueryHighDNSFailures', annotations: { - message: 'Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for query endpoints.', + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for query endpoints.', }, expr: ||| ( @@ -138,7 +138,7 @@ { alert: 'ThanosRuleAlertmanagerHighDNSFailures', annotations: { - message: 'Thanos Rule {{$labels.job}} have {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints.', + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% of failing DNS queries for Alertmanager endpoints.', }, expr: ||| ( @@ -153,6 +153,36 @@ severity: 'warning', }, }, + { + // NOTE: This alert will give false positive if no rules are configured. + alert: 'ThanosRuleNoEvaluationFor10Intervals', + annotations: { + message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups that did not evaluate for at least 10x of their expected interval.', + }, + expr: ||| + time() - prometheus_rule_group_last_evaluation_timestamp_seconds{%(selector)s} + > + 10 * prometheus_rule_group_interval_seconds{%(selector)s} + ||| % thanos.rule, + 'for': '5m', + labels: { + severity: 'critical', + }, + }, + { + // NOTE: This alert will give false positive if no rules are configured. + alert: 'ThanosRuleTSDBNotIngestingSamples', + annotations: { + message: 'Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 minutes.', + }, + expr: ||| + rate(prometheus_tsdb_head_samples_appended_total{%(selector)s}[5m]) <= 0 + ||| % thanos.rule, + 'for': '10m', + labels: { + severity: 'critical', + }, + }, ], }, ], From 7da8da931a86806ed5373e08b074cc8164928467 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Fri, 3 Apr 2020 19:30:09 +0100 Subject: [PATCH 083/190] mixin: Made sure Rule alerts are not firing if one replica is failing. (#2375) Signed-off-by: Bartlomiej Plotka --- examples/alerts/alerts.md | 8 ++++---- examples/alerts/alerts.yaml | 8 ++++---- mixin/thanos/alerts/rule.libsonnet | 9 +++++---- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index 8a4dc61d9cc..89d76acda30 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -175,18 +175,18 @@ rules: message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups that did not evaluate for at least 10x of their expected interval. expr: | - time() - prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"} + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"}) > - 10 * prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"} + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) for: 5m labels: - severity: critical + severity: info - alert: ThanosRuleTSDBNotIngestingSamples annotations: message: Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 minutes. expr: | - rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m]) <= 0 + sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m])) <= 0 for: 10m labels: severity: critical diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index 705b07f835d..8b66f884999 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -394,18 +394,18 @@ groups: message: Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups that did not evaluate for at least 10x of their expected interval. expr: | - time() - prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"} + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{job=~"thanos-rule.*"}) > - 10 * prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"} + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{job=~"thanos-rule.*"}) for: 5m labels: - severity: critical + severity: info - alert: ThanosRuleTSDBNotIngestingSamples annotations: message: Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 minutes. expr: | - rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m]) <= 0 + sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m])) <= 0 for: 10m labels: severity: critical diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet index b9207abbc8f..c2be54c45f9 100644 --- a/mixin/thanos/alerts/rule.libsonnet +++ b/mixin/thanos/alerts/rule.libsonnet @@ -160,13 +160,14 @@ message: 'Thanos Rule {{$labels.job}} has {{ $value | humanize }}% rule groups that did not evaluate for at least 10x of their expected interval.', }, expr: ||| - time() - prometheus_rule_group_last_evaluation_timestamp_seconds{%(selector)s} + time() - max by (job, group) (prometheus_rule_group_last_evaluation_timestamp_seconds{%(selector)s}) > - 10 * prometheus_rule_group_interval_seconds{%(selector)s} + 10 * max by (job, group) (prometheus_rule_group_interval_seconds{%(selector)s}) ||| % thanos.rule, 'for': '5m', labels: { - severity: 'critical', + // TODO(bwplotka): Move to critical once we gain more confidence in this, it's not trivial as it looks. + severity: 'info', }, }, { @@ -176,7 +177,7 @@ message: 'Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 minutes.', }, expr: ||| - rate(prometheus_tsdb_head_samples_appended_total{%(selector)s}[5m]) <= 0 + sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{%(selector)s}[5m])) <= 0 ||| % thanos.rule, 'for': '10m', labels: { From cc6c5b54baf7ea92edef84da475a1e97ab1d21ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Carvalho?= Date: Sun, 5 Apr 2020 13:22:46 +0100 Subject: [PATCH 084/190] Update S3 endpoint mapping link (#2377) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The link for the AWS Region Endpoint Mappings for S3 was out of date, this PR updates it to point to the new location. Signed-off-by: João Carvalho --- docs/storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/storage.md b/docs/storage.md index 999e0b156f6..bb0a55a0f01 100644 --- a/docs/storage.md +++ b/docs/storage.md @@ -97,7 +97,7 @@ config: At a minimum, you will need to provide a value for the `bucket`, `endpoint`, `access_key`, and `secret_key` keys. The rest of the keys are optional. -The AWS region to endpoint mapping can be found in this [link](https://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region). +The AWS region to endpoint mapping can be found in this [link](https://docs.aws.amazon.com/general/latest/gr/s3.html). Make sure you use a correct signature version. Currently AWS requires signature v4, so it needs `signature-version2: false`. If you don't specify it, you will get an `Access Denied` error. On the other hand, several S3 compatible APIs use `signature-version2: true`. From e1b1d716adfc838f776036ba132090c7644bed9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 6 Apr 2020 13:03:33 +0200 Subject: [PATCH 085/190] Fix2213 0.12 (#2382) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * binaryHeader: Fixed partial write issue for index-header. Fixes https://github.com/thanos-io/thanos/issues/2213 This caused was indicated as regression of latency, and also causes potential critical issue for store GW, where manual delete of index-header from local storage was required. This might be considered as blocker for 0.12, so it would be worth to port it to 0.12 TBH @squat. Signed-off-by: Bartlomiej Plotka * binary_reader: ensure fs is synced before renaming Signed-off-by: Lucas Servén Marín Co-authored-by: Bartlomiej Plotka --- pkg/block/indexheader/binary_reader.go | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/pkg/block/indexheader/binary_reader.go b/pkg/block/indexheader/binary_reader.go index 9005cd443b8..e14e98be3f6 100644 --- a/pkg/block/indexheader/binary_reader.go +++ b/pkg/block/indexheader/binary_reader.go @@ -71,20 +71,21 @@ type BinaryTOC struct { } // WriteBinary build index-header file from the pieces of index in object storage. -func WriteBinary(ctx context.Context, bkt objstore.BucketReader, id ulid.ULID, fn string) (err error) { +func WriteBinary(ctx context.Context, bkt objstore.BucketReader, id ulid.ULID, filename string) (err error) { ir, indexVersion, err := newChunkedIndexReader(ctx, bkt, id) if err != nil { return errors.Wrap(err, "new index reader") } + tmpFilename := filename + ".tmp" // Buffer for copying and encbuffers. // This also will control the size of file writer buffer. buf := make([]byte, 32*1024) - bw, err := newBinaryWriter(fn, buf) + bw, err := newBinaryWriter(tmpFilename, buf) if err != nil { return errors.Wrap(err, "new binary index header writer") } - defer runutil.CloseWithErrCapture(&err, bw, "close binary writer for %s", fn) + defer runutil.CloseWithErrCapture(&err, bw, "close binary writer for %s", tmpFilename) if err := bw.AddIndexMeta(indexVersion, ir.toc.PostingsTable); err != nil { return errors.Wrap(err, "add index meta") @@ -109,7 +110,17 @@ func WriteBinary(ctx context.Context, bkt objstore.BucketReader, id ulid.ULID, f if err := bw.WriteTOC(); err != nil { return errors.Wrap(err, "write index header TOC") } - return nil + + if err := bw.f.Flush(); err != nil { + return errors.Wrap(err, "flush") + } + + if err := bw.f.f.Sync(); err != nil { + return errors.Wrap(err, "sync") + } + + // Create index-header in atomic way, to avoid partial writes (e.g during restart or crash of store GW). + return os.Rename(tmpFilename, filename) } type chunkedIndexReader struct { From c05daeeace272a94fae81fd0c15ff70adab50e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 6 Apr 2020 14:20:45 +0200 Subject: [PATCH 086/190] objstore: Added WithExpectedErrs which allows to control instrumentation (e.g not increment failures for expected not found) (#2383) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * objstore: Added WithExpectedErrs to Reader which allows to control instrumentation (e.g not increment failures for expected not found). This allows to not wake up oncall in the middle of night, becuase of expeced, properly handled case (: Also: Has to move inmem to objstore for testing. Signed-off-by: Bartlomiej Plotka * pkg/objstore: fix NewBucket comments. This commit fixes the documentation comments for the NewBucket funcs. Signed-off-by: Lucas Servén Marín Co-authored-by: Bartlomiej Plotka --- cmd/thanos/main_test.go | 6 +- pkg/block/block_test.go | 8 +- pkg/block/fetcher.go | 12 +- pkg/block/fetcher_test.go | 4 +- pkg/block/indexheader/json_reader.go | 4 +- pkg/block/metadata/deletionmark.go | 4 +- pkg/block/metadata/deletionmark_test.go | 4 +- pkg/compact/clean_test.go | 4 +- pkg/compact/compact_e2e_test.go | 6 +- pkg/compact/retention_test.go | 3 +- pkg/objstore/client/factory.go | 2 +- pkg/objstore/cos/cos.go | 1 + pkg/objstore/{inmem => }/inmem.go | 47 ++-- pkg/objstore/objstore.go | 254 +++++++++++------- pkg/objstore/objstore_test.go | 64 +++++ .../objtesting/acceptance_e2e_test.go | 144 +--------- pkg/objstore/objtesting/foreach.go | 3 +- pkg/objstore/testing.go | 173 ++++++++++++ pkg/replicate/scheme.go | 6 +- pkg/replicate/scheme_test.go | 53 ++-- pkg/shipper/shipper_e2e_test.go | 3 +- pkg/store/bucket.go | 6 +- pkg/store/bucket_e2e_test.go | 7 +- pkg/store/bucket_test.go | 13 +- pkg/testutil/testutil.go | 6 +- 25 files changed, 497 insertions(+), 340 deletions(-) rename pkg/objstore/{inmem => }/inmem.go (71%) create mode 100644 pkg/objstore/objstore_test.go diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index a9930139959..ff0aa2863b7 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -22,7 +22,7 @@ import ( "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/compact/downsample" - "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" ) @@ -36,7 +36,7 @@ func TestCleanupIndexCacheFolder(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() - bkt := inmem.NewBucket() + bkt := objstore.WithNoopInstr(objstore.NewInMemBucket()) // Upload one compaction lvl = 2 block, one compaction lvl = 1. // We generate index cache files only for lvl > 1 blocks. @@ -97,7 +97,7 @@ func TestCleanupDownsampleCacheFolder(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() - bkt := inmem.NewBucket() + bkt := objstore.WithNoopInstr(objstore.NewInMemBucket()) var id ulid.ULID { id, err = e2eutil.CreateBlock( diff --git a/pkg/block/block_test.go b/pkg/block/block_test.go index 6e2193b5d7a..503d09db75d 100644 --- a/pkg/block/block_test.go +++ b/pkg/block/block_test.go @@ -19,7 +19,7 @@ import ( "github.com/go-kit/kit/log" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block/metadata" - "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/testutil" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" @@ -81,7 +81,7 @@ func TestUpload(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() b1, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ {{Name: "a", Value: "1"}}, {{Name: "a", Value: "2"}}, @@ -185,7 +185,7 @@ func TestDelete(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() { b1, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ {{Name: "a", Value: "1"}}, @@ -232,7 +232,7 @@ func TestMarkForDeletion(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() { blockWithoutDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ {{Name: "a", Value: "1"}}, diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index e83bc5633dd..0a8ca111966 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -142,7 +142,7 @@ type MetadataModifier interface { type BaseFetcher struct { logger log.Logger concurrency int - bkt objstore.BucketReader + bkt objstore.InstrumentedBucketReader // Optional local directory to cache meta.json files. cacheDir string @@ -152,7 +152,7 @@ type BaseFetcher struct { } // NewBaseFetcher constructs BaseFetcher. -func NewBaseFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer) (*BaseFetcher, error) { +func NewBaseFetcher(logger log.Logger, concurrency int, bkt objstore.InstrumentedBucketReader, dir string, reg prometheus.Registerer) (*BaseFetcher, error) { if logger == nil { logger = log.NewNopLogger() } @@ -180,7 +180,7 @@ func NewBaseFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReade } // NewMetaFetcher returns meta fetcher. -func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.BucketReader, dir string, reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) (*MetaFetcher, error) { +func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.InstrumentedBucketReader, dir string, reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) (*MetaFetcher, error) { b, err := NewBaseFetcher(logger, concurrency, bkt, dir, reg) if err != nil { return nil, err @@ -236,7 +236,7 @@ func (f *BaseFetcher) loadMeta(ctx context.Context, id ulid.ULID) (*metadata.Met } } - r, err := f.bkt.Get(ctx, metaFile) + r, err := f.bkt.ReaderWithExpectedErrs(f.bkt.IsObjNotFoundErr).Get(ctx, metaFile) if f.bkt.IsObjNotFoundErr(err) { // Meta.json was deleted between bkt.Exists and here. return nil, errors.Wrapf(ErrorSyncMetaNotFound, "%v", err) @@ -740,12 +740,12 @@ func (f *ConsistencyDelayMetaFilter) Filter(_ context.Context, metas map[ulid.UL type IgnoreDeletionMarkFilter struct { logger log.Logger delay time.Duration - bkt objstore.BucketReader + bkt objstore.InstrumentedBucketReader deletionMarkMap map[ulid.ULID]*metadata.DeletionMark } // NewIgnoreDeletionMarkFilter creates IgnoreDeletionMarkFilter. -func NewIgnoreDeletionMarkFilter(logger log.Logger, bkt objstore.BucketReader, delay time.Duration) *IgnoreDeletionMarkFilter { +func NewIgnoreDeletionMarkFilter(logger log.Logger, bkt objstore.InstrumentedBucketReader, delay time.Duration) *IgnoreDeletionMarkFilter { return &IgnoreDeletionMarkFilter{ logger: logger, bkt: bkt, diff --git a/pkg/block/fetcher_test.go b/pkg/block/fetcher_test.go index 953ed93f4fe..094c5a61474 100644 --- a/pkg/block/fetcher_test.go +++ b/pkg/block/fetcher_test.go @@ -75,7 +75,7 @@ func TestMetaFetcher_Fetch(t *testing.T) { var ulidToDelete ulid.ULID r := prometheus.NewRegistry() - baseFetcher, err := NewBaseFetcher(log.NewNopLogger(), 20, bkt, dir, r) + baseFetcher, err := NewBaseFetcher(log.NewNopLogger(), 20, objstore.WithNoopInstr(bkt), dir, r) testutil.Ok(t, err) fetcher := baseFetcher.NewMetaFetcher(r, []MetadataFilter{ @@ -1065,7 +1065,7 @@ func TestIgnoreDeletionMarkFilter_Filter(t *testing.T) { now := time.Now() f := &IgnoreDeletionMarkFilter{ logger: log.NewNopLogger(), - bkt: bkt, + bkt: objstore.WithNoopInstr(bkt), delay: 48 * time.Hour, } diff --git a/pkg/block/indexheader/json_reader.go b/pkg/block/indexheader/json_reader.go index 5a3654f4d60..fe54534972f 100644 --- a/pkg/block/indexheader/json_reader.go +++ b/pkg/block/indexheader/json_reader.go @@ -199,7 +199,7 @@ type JSONReader struct { } // NewJSONReader loads or builds new index-cache.json if not present on disk or object storage. -func NewJSONReader(ctx context.Context, logger log.Logger, bkt objstore.BucketReader, dir string, id ulid.ULID) (*JSONReader, error) { +func NewJSONReader(ctx context.Context, logger log.Logger, bkt objstore.InstrumentedBucketReader, dir string, id ulid.ULID) (*JSONReader, error) { cachefn := filepath.Join(dir, id.String(), block.IndexCacheFilename) jr, err := newFileJSONReader(logger, cachefn) if err == nil { @@ -216,7 +216,7 @@ func NewJSONReader(ctx context.Context, logger log.Logger, bkt objstore.BucketRe } // Try to download index cache file from object store. - if err = objstore.DownloadFile(ctx, logger, bkt, filepath.Join(id.String(), block.IndexCacheFilename), cachefn); err == nil { + if err = objstore.DownloadFile(ctx, logger, bkt.ReaderWithExpectedErrs(bkt.IsObjNotFoundErr), filepath.Join(id.String(), block.IndexCacheFilename), cachefn); err == nil { return newFileJSONReader(logger, cachefn) } diff --git a/pkg/block/metadata/deletionmark.go b/pkg/block/metadata/deletionmark.go index bda97e92c6c..5f2a9f04adc 100644 --- a/pkg/block/metadata/deletionmark.go +++ b/pkg/block/metadata/deletionmark.go @@ -45,10 +45,10 @@ type DeletionMark struct { } // ReadDeletionMark reads the given deletion mark file from /deletion-mark.json in bucket. -func ReadDeletionMark(ctx context.Context, bkt objstore.BucketReader, logger log.Logger, dir string) (*DeletionMark, error) { +func ReadDeletionMark(ctx context.Context, bkt objstore.InstrumentedBucketReader, logger log.Logger, dir string) (*DeletionMark, error) { deletionMarkFile := path.Join(dir, DeletionMarkFilename) - r, err := bkt.Get(ctx, deletionMarkFile) + r, err := bkt.ReaderWithExpectedErrs(bkt.IsObjNotFoundErr).Get(ctx, deletionMarkFile) if err != nil { if bkt.IsObjNotFoundErr(err) { return nil, ErrorDeletionMarkNotFound diff --git a/pkg/block/metadata/deletionmark_test.go b/pkg/block/metadata/deletionmark_test.go index 73f632e9af4..02f259f856d 100644 --- a/pkg/block/metadata/deletionmark_test.go +++ b/pkg/block/metadata/deletionmark_test.go @@ -16,7 +16,7 @@ import ( "github.com/fortytw2/leaktest" "github.com/oklog/ulid" "github.com/pkg/errors" - "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -29,7 +29,7 @@ func TestReadDeletionMark(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() - bkt := inmem.NewBucket() + bkt := objstore.WithNoopInstr(objstore.NewInMemBucket()) { blockWithoutDeletionMark := ulid.MustNew(uint64(1), nil) _, err := ReadDeletionMark(ctx, bkt, nil, path.Join(tmpDir, blockWithoutDeletionMark.String())) diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 9a7889ead8e..7d80b032015 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -18,7 +18,7 @@ import ( promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/thanos-io/thanos/pkg/block" "github.com/thanos-io/thanos/pkg/block/metadata" - "github.com/thanos-io/thanos/pkg/objstore/inmem" + "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -26,7 +26,7 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) defer cancel() - bkt := inmem.NewBucket() + bkt := objstore.WithNoopInstr(objstore.NewInMemBucket()) logger := log.NewNopLogger() metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) diff --git a/pkg/compact/compact_e2e_test.go b/pkg/compact/compact_e2e_test.go index 21de5cfca76..a6650fec0ff 100644 --- a/pkg/compact/compact_e2e_test.go +++ b/pkg/compact/compact_e2e_test.go @@ -90,7 +90,7 @@ func TestSyncer_GarbageCollect_e2e(t *testing.T) { } duplicateBlocksFilter := block.NewDeduplicateFilter() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + metaFetcher, err := block.NewMetaFetcher(nil, 32, objstore.WithNoopInstr(bkt), "", nil, []block.MetadataFilter{ duplicateBlocksFilter, }, nil) testutil.Ok(t, err) @@ -176,9 +176,9 @@ func TestGroup_Compact_e2e(t *testing.T) { reg := prometheus.NewRegistry() - ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, 48*time.Hour) + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, objstore.WithNoopInstr(bkt), 48*time.Hour) duplicateBlocksFilter := block.NewDeduplicateFilter() - metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, []block.MetadataFilter{ + metaFetcher, err := block.NewMetaFetcher(nil, 32, objstore.WithNoopInstr(bkt), "", nil, []block.MetadataFilter{ ignoreDeletionMarkFilter, duplicateBlocksFilter, }, nil) diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index 0a1431996e8..ca27429890e 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -22,7 +22,6 @@ import ( "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/objstore" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -240,7 +239,7 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { }, } { t.Run(tt.name, func(t *testing.T) { - bkt := inmem.NewBucket() + bkt := objstore.WithNoopInstr(objstore.NewInMemBucket()) for _, b := range tt.blocks { uploadMockBlock(t, bkt, b.id, b.minTime, b.maxTime, int64(b.resolution)) } diff --git a/pkg/objstore/client/factory.go b/pkg/objstore/client/factory.go index 6caf7f8ee43..2a4716fb83d 100644 --- a/pkg/objstore/client/factory.go +++ b/pkg/objstore/client/factory.go @@ -42,7 +42,7 @@ type BucketConfig struct { // NewBucket initializes and returns new object storage clients. // NOTE: confContentYaml can contain secrets. -func NewBucket(logger log.Logger, confContentYaml []byte, reg prometheus.Registerer, component string) (objstore.Bucket, error) { +func NewBucket(logger log.Logger, confContentYaml []byte, reg prometheus.Registerer, component string) (objstore.InstrumentedBucket, error) { level.Info(logger).Log("msg", "loading bucket configuration") bucketConf := &BucketConfig{} if err := yaml.UnmarshalStrict(confContentYaml, bucketConf); err != nil { diff --git a/pkg/objstore/cos/cos.go b/pkg/objstore/cos/cos.go index e336a78fc78..6db898f6ca9 100644 --- a/pkg/objstore/cos/cos.go +++ b/pkg/objstore/cos/cos.go @@ -52,6 +52,7 @@ func (conf *Config) validate() error { return nil } +// NewBucket returns a new Bucket using the provided cos configuration. func NewBucket(logger log.Logger, conf []byte, component string) (*Bucket, error) { if logger == nil { logger = log.NewNopLogger() diff --git a/pkg/objstore/inmem/inmem.go b/pkg/objstore/inmem.go similarity index 71% rename from pkg/objstore/inmem/inmem.go rename to pkg/objstore/inmem.go index 7f430c3c97b..0233f795f0f 100644 --- a/pkg/objstore/inmem/inmem.go +++ b/pkg/objstore/inmem.go @@ -1,7 +1,7 @@ // Copyright (c) The Thanos Authors. // Licensed under the Apache License 2.0. -package inmem +package objstore import ( "bytes" @@ -13,37 +13,36 @@ import ( "sync" "github.com/pkg/errors" - "github.com/thanos-io/thanos/pkg/objstore" ) var errNotFound = errors.New("inmem: object not found") -// Bucket implements the objstore.Bucket interfaces against local memory. +// InMemBucket implements the objstore.Bucket interfaces against local memory. // Methods from Bucket interface are thread-safe. Objects are assumed to be immutable. -type Bucket struct { +type InMemBucket struct { mtx sync.RWMutex objects map[string][]byte } -// NewBucket returns a new in memory Bucket. +// NewInMemBucket returns a new in memory Bucket. // NOTE: Returned bucket is just a naive in memory bucket implementation. For test use cases only. -func NewBucket() *Bucket { - return &Bucket{objects: map[string][]byte{}} +func NewInMemBucket() *InMemBucket { + return &InMemBucket{objects: map[string][]byte{}} } // Objects returns internally stored objects. // NOTE: For assert purposes. -func (b *Bucket) Objects() map[string][]byte { +func (b *InMemBucket) Objects() map[string][]byte { return b.objects } // Iter calls f for each entry in the given directory. The argument to f is the full // object name including the prefix of the inspected directory. -func (b *Bucket) Iter(_ context.Context, dir string, f func(string) error) error { +func (b *InMemBucket) Iter(_ context.Context, dir string, f func(string) error) error { unique := map[string]struct{}{} var dirPartsCount int - dirParts := strings.SplitAfter(dir, objstore.DirDelim) + dirParts := strings.SplitAfter(dir, DirDelim) for _, p := range dirParts { if p == "" { continue @@ -57,7 +56,7 @@ func (b *Bucket) Iter(_ context.Context, dir string, f func(string) error) error continue } - parts := strings.SplitAfter(filename, objstore.DirDelim) + parts := strings.SplitAfter(filename, DirDelim) unique[strings.Join(parts[:dirPartsCount+1], "")] = struct{}{} } b.mtx.RUnlock() @@ -67,13 +66,13 @@ func (b *Bucket) Iter(_ context.Context, dir string, f func(string) error) error keys = append(keys, n) } sort.Slice(keys, func(i, j int) bool { - if strings.HasSuffix(keys[i], objstore.DirDelim) && strings.HasSuffix(keys[j], objstore.DirDelim) { + if strings.HasSuffix(keys[i], DirDelim) && strings.HasSuffix(keys[j], DirDelim) { return strings.Compare(keys[i], keys[j]) < 0 } - if strings.HasSuffix(keys[i], objstore.DirDelim) { + if strings.HasSuffix(keys[i], DirDelim) { return false } - if strings.HasSuffix(keys[j], objstore.DirDelim) { + if strings.HasSuffix(keys[j], DirDelim) { return true } @@ -89,7 +88,7 @@ func (b *Bucket) Iter(_ context.Context, dir string, f func(string) error) error } // Get returns a reader for the given object name. -func (b *Bucket) Get(_ context.Context, name string) (io.ReadCloser, error) { +func (b *InMemBucket) Get(_ context.Context, name string) (io.ReadCloser, error) { if name == "" { return nil, errors.New("inmem: object name is empty") } @@ -105,7 +104,7 @@ func (b *Bucket) Get(_ context.Context, name string) (io.ReadCloser, error) { } // GetRange returns a new range reader for the given object name and range. -func (b *Bucket) GetRange(_ context.Context, name string, off, length int64) (io.ReadCloser, error) { +func (b *InMemBucket) GetRange(_ context.Context, name string, off, length int64) (io.ReadCloser, error) { if name == "" { return nil, errors.New("inmem: object name is empty") } @@ -138,7 +137,7 @@ func (b *Bucket) GetRange(_ context.Context, name string, off, length int64) (io } // Exists checks if the given directory exists in memory. -func (b *Bucket) Exists(_ context.Context, name string) (bool, error) { +func (b *InMemBucket) Exists(_ context.Context, name string) (bool, error) { b.mtx.RLock() defer b.mtx.RUnlock() _, ok := b.objects[name] @@ -146,7 +145,7 @@ func (b *Bucket) Exists(_ context.Context, name string) (bool, error) { } // ObjectSize returns the size of the specified object. -func (b *Bucket) ObjectSize(_ context.Context, name string) (uint64, error) { +func (b *InMemBucket) ObjectSize(_ context.Context, name string) (uint64, error) { b.mtx.RLock() file, ok := b.objects[name] b.mtx.RUnlock() @@ -157,7 +156,7 @@ func (b *Bucket) ObjectSize(_ context.Context, name string) (uint64, error) { } // Upload writes the file specified in src to into the memory. -func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error { +func (b *InMemBucket) Upload(_ context.Context, name string, r io.Reader) error { b.mtx.Lock() defer b.mtx.Unlock() body, err := ioutil.ReadAll(r) @@ -169,7 +168,7 @@ func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error { } // Delete removes all data prefixed with the dir. -func (b *Bucket) Delete(_ context.Context, name string) error { +func (b *InMemBucket) Delete(_ context.Context, name string) error { b.mtx.Lock() defer b.mtx.Unlock() if _, ok := b.objects[name]; !ok { @@ -180,13 +179,13 @@ func (b *Bucket) Delete(_ context.Context, name string) error { } // IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations. -func (b *Bucket) IsObjNotFoundErr(err error) bool { - return err == errNotFound +func (b *InMemBucket) IsObjNotFoundErr(err error) bool { + return errors.Cause(err) == errNotFound } -func (b *Bucket) Close() error { return nil } +func (b *InMemBucket) Close() error { return nil } // Name returns the bucket name. -func (b *Bucket) Name() string { +func (b *InMemBucket) Name() string { return "inmem" } diff --git a/pkg/objstore/objstore.go b/pkg/objstore/objstore.go index 23926054ad2..c1bb44d0792 100644 --- a/pkg/objstore/objstore.go +++ b/pkg/objstore/objstore.go @@ -6,13 +6,10 @@ package objstore import ( "bytes" "context" - "fmt" "io" - "math/rand" "os" "path/filepath" "strings" - "testing" "time" "github.com/go-kit/kit/log" @@ -41,22 +38,18 @@ type Bucket interface { Name() string } -// TryToGetSize tries to get upfront size from reader. -// TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. -func TryToGetSize(r io.Reader) (int64, error) { - switch f := r.(type) { - case *os.File: - fileInfo, err := f.Stat() - if err != nil { - return 0, errors.Wrap(err, "os.File.Stat()") - } - return fileInfo.Size(), nil - case *bytes.Buffer: - return int64(f.Len()), nil - case *strings.Reader: - return f.Size(), nil - } - return 0, errors.New("unsupported type of io.Reader") +// InstrumentedBucket is a Bucket with optional instrumentation control on reader. +type InstrumentedBucket interface { + Bucket + + // WithExpectedErrs allows to specify a filter that marks certain errors as expected, so it will not increment + // thanos_objstore_bucket_operation_failures_total metric. + WithExpectedErrs(IsOpFailureExpectedFunc) Bucket + + // ReaderWithExpectedErrs allows to specify a filter that marks certain errors as expected, so it will not increment + // thanos_objstore_bucket_operation_failures_total metric. + // TODO(bwplotka): Remove this when moved to Go 1.14 and replace with InstrumentedBucketReader. + ReaderWithExpectedErrs(IsOpFailureExpectedFunc) BucketReader } // BucketReader provides read access to an object storage bucket. @@ -81,6 +74,33 @@ type BucketReader interface { ObjectSize(ctx context.Context, name string) (uint64, error) } +// InstrumentedBucket is a BucketReader with optional instrumentation control. +type InstrumentedBucketReader interface { + BucketReader + + // ReaderWithExpectedErrs allows to specify a filter that marks certain errors as expected, so it will not increment + // thanos_objstore_bucket_operation_failures_total metric. + ReaderWithExpectedErrs(IsOpFailureExpectedFunc) BucketReader +} + +// TryToGetSize tries to get upfront size from reader. +// TODO(https://github.com/thanos-io/thanos/issues/678): Remove guessing length when minio provider will support multipart upload without this. +func TryToGetSize(r io.Reader) (int64, error) { + switch f := r.(type) { + case *os.File: + fileInfo, err := f.Stat() + if err != nil { + return 0, errors.Wrap(err, "os.File.Stat()") + } + return fileInfo.Size(), nil + case *bytes.Buffer: + return int64(f.Len()), nil + case *strings.Reader: + return f.Size(), nil + } + return 0, errors.New("unsupported type of io.Reader") +} + // UploadDir uploads all files in srcdir to the bucket with into a top-level directory // named dstdir. It is a caller responsibility to clean partial upload in case of failure. func UploadDir(ctx context.Context, logger log.Logger, bkt Bucket, srcdir, dstdir string) error { @@ -200,27 +220,32 @@ const ( deleteOp = "delete" ) +// IsOpFailureExpectedFunc allows to mark certain errors as expected, so they will not increment thanos_objstore_bucket_operation_failures_total metric. +type IsOpFailureExpectedFunc func(error) bool + +var _ InstrumentedBucket = &metricBucket{} + // BucketWithMetrics takes a bucket and registers metrics with the given registry for // operations run against the bucket. -func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) Bucket { +func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) *metricBucket { bkt := &metricBucket{ - bkt: b, - + bkt: b, + isOpFailureExpected: func(err error) bool { return false }, ops: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operations_total", - Help: "Total number of operations against a bucket.", + Help: "Total number of all attempted operations against a bucket.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), opsFailures: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_objstore_bucket_operation_failures_total", - Help: "Total number of operations against a bucket that failed.", + Help: "Total number of operations against a bucket that failed, but were not expected to fail in certain way from caller perspective. Those errors have to be investigated.", ConstLabels: prometheus.Labels{"bucket": name}, }, []string{"operation"}), opsDuration: promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_objstore_bucket_operation_duration_seconds", - Help: "Duration of operations against the bucket", + Help: "Duration of successful operations against the bucket", ConstLabels: prometheus.Labels{"bucket": name}, Buckets: []float64{0.001, 0.01, 0.1, 0.3, 0.6, 1, 3, 6, 9, 20, 30, 60, 90, 120}, }, []string{"operation"}), @@ -229,7 +254,15 @@ func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) Bucket Help: "Second timestamp of the last successful upload to the bucket.", }, []string{"bucket"}), } - for _, op := range []string{iterOp, sizeOp, getOp, getRangeOp, existsOp, uploadOp, deleteOp} { + for _, op := range []string{ + iterOp, + sizeOp, + getOp, + getRangeOp, + existsOp, + uploadOp, + deleteOp, + } { bkt.ops.WithLabelValues(op) bkt.opsFailures.WithLabelValues(op) bkt.opsDuration.WithLabelValues(op) @@ -241,107 +274,142 @@ func BucketWithMetrics(name string, b Bucket, reg prometheus.Registerer) Bucket type metricBucket struct { bkt Bucket - ops *prometheus.CounterVec - opsFailures *prometheus.CounterVec + ops *prometheus.CounterVec + opsFailures *prometheus.CounterVec + isOpFailureExpected IsOpFailureExpectedFunc + opsDuration *prometheus.HistogramVec lastSuccessfulUploadTime *prometheus.GaugeVec } +func (b *metricBucket) WithExpectedErrs(fn IsOpFailureExpectedFunc) Bucket { + return &metricBucket{ + bkt: b.bkt, + ops: b.ops, + opsFailures: b.opsFailures, + isOpFailureExpected: fn, + opsDuration: b.opsDuration, + lastSuccessfulUploadTime: b.lastSuccessfulUploadTime, + } +} + +func (b *metricBucket) ReaderWithExpectedErrs(fn IsOpFailureExpectedFunc) BucketReader { + return b.WithExpectedErrs(fn) +} + func (b *metricBucket) Iter(ctx context.Context, dir string, f func(name string) error) error { + const op = iterOp + b.ops.WithLabelValues(op).Inc() + err := b.bkt.Iter(ctx, dir, f) - if err != nil { - b.opsFailures.WithLabelValues(iterOp).Inc() + if err != nil && !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() } - b.ops.WithLabelValues(iterOp).Inc() - return err } -// ObjectSize returns the size of the specified object. func (b *metricBucket) ObjectSize(ctx context.Context, name string) (uint64, error) { - b.ops.WithLabelValues(sizeOp).Inc() - start := time.Now() + const op = sizeOp + b.ops.WithLabelValues(op).Inc() + start := time.Now() rc, err := b.bkt.ObjectSize(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(sizeOp).Inc() + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } return 0, err } - b.opsDuration.WithLabelValues(sizeOp).Observe(time.Since(start).Seconds()) + b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) return rc, nil } func (b *metricBucket) Get(ctx context.Context, name string) (io.ReadCloser, error) { - b.ops.WithLabelValues(getOp).Inc() + const op = getOp + b.ops.WithLabelValues(op).Inc() rc, err := b.bkt.Get(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(getOp).Inc() + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } return nil, err } return newTimingReadCloser( rc, - getOp, + op, b.opsDuration, b.opsFailures, + b.isOpFailureExpected, ), nil } func (b *metricBucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) { - b.ops.WithLabelValues(getRangeOp).Inc() + const op = getRangeOp + b.ops.WithLabelValues(op).Inc() rc, err := b.bkt.GetRange(ctx, name, off, length) if err != nil { - b.opsFailures.WithLabelValues(getRangeOp).Inc() + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } return nil, err } return newTimingReadCloser( rc, - getRangeOp, + op, b.opsDuration, b.opsFailures, + b.isOpFailureExpected, ), nil } func (b *metricBucket) Exists(ctx context.Context, name string) (bool, error) { - start := time.Now() + const op = existsOp + b.ops.WithLabelValues(op).Inc() + start := time.Now() ok, err := b.bkt.Exists(ctx, name) if err != nil { - b.opsFailures.WithLabelValues(existsOp).Inc() + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } + return false, err } - b.ops.WithLabelValues(existsOp).Inc() - b.opsDuration.WithLabelValues(existsOp).Observe(time.Since(start).Seconds()) - - return ok, err + b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + return ok, nil } func (b *metricBucket) Upload(ctx context.Context, name string, r io.Reader) error { - start := time.Now() + const op = uploadOp + b.ops.WithLabelValues(op).Inc() - err := b.bkt.Upload(ctx, name, r) - if err != nil { - b.opsFailures.WithLabelValues(uploadOp).Inc() - } else { - b.lastSuccessfulUploadTime.WithLabelValues(b.bkt.Name()).SetToCurrentTime() + start := time.Now() + if err := b.bkt.Upload(ctx, name, r); err != nil { + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } + return err } - b.ops.WithLabelValues(uploadOp).Inc() - b.opsDuration.WithLabelValues(uploadOp).Observe(time.Since(start).Seconds()) - - return err + b.lastSuccessfulUploadTime.WithLabelValues(b.bkt.Name()).SetToCurrentTime() + b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) + return nil } func (b *metricBucket) Delete(ctx context.Context, name string) error { - start := time.Now() + const op = deleteOp + b.ops.WithLabelValues(op).Inc() - err := b.bkt.Delete(ctx, name) - if err != nil { - b.opsFailures.WithLabelValues(deleteOp).Inc() + start := time.Now() + if err := b.bkt.Delete(ctx, name); err != nil { + if !b.isOpFailureExpected(err) { + b.opsFailures.WithLabelValues(op).Inc() + } + return err } - b.ops.WithLabelValues(deleteOp).Inc() - b.opsDuration.WithLabelValues(deleteOp).Observe(time.Since(start).Seconds()) + b.opsDuration.WithLabelValues(op).Observe(time.Since(start).Seconds()) - return err + return nil } func (b *metricBucket) IsObjNotFoundErr(err error) bool { @@ -359,53 +427,49 @@ func (b *metricBucket) Name() string { type timingReadCloser struct { io.ReadCloser - ok bool - start time.Time - op string - duration *prometheus.HistogramVec - failed *prometheus.CounterVec + alreadyGotErr bool + + start time.Time + op string + duration *prometheus.HistogramVec + failed *prometheus.CounterVec + isFailureExpected IsOpFailureExpectedFunc } -func newTimingReadCloser(rc io.ReadCloser, op string, dur *prometheus.HistogramVec, failed *prometheus.CounterVec) *timingReadCloser { +func newTimingReadCloser(rc io.ReadCloser, op string, dur *prometheus.HistogramVec, failed *prometheus.CounterVec, isFailureExpected IsOpFailureExpectedFunc) *timingReadCloser { // Initialize the metrics with 0. dur.WithLabelValues(op) failed.WithLabelValues(op) return &timingReadCloser{ - ReadCloser: rc, - ok: true, - start: time.Now(), - op: op, - duration: dur, - failed: failed, + ReadCloser: rc, + start: time.Now(), + op: op, + duration: dur, + failed: failed, + isFailureExpected: isFailureExpected, } } func (rc *timingReadCloser) Close() error { err := rc.ReadCloser.Close() - rc.duration.WithLabelValues(rc.op).Observe(time.Since(rc.start).Seconds()) - if rc.ok && err != nil { + if !rc.alreadyGotErr && err != nil { rc.failed.WithLabelValues(rc.op).Inc() - rc.ok = false + } + if !rc.alreadyGotErr && err == nil { + rc.duration.WithLabelValues(rc.op).Observe(time.Since(rc.start).Seconds()) + rc.alreadyGotErr = true } return err } func (rc *timingReadCloser) Read(b []byte) (n int, err error) { n, err = rc.ReadCloser.Read(b) - if rc.ok && err != nil && err != io.EOF { - rc.failed.WithLabelValues(rc.op).Inc() - rc.ok = false + // Report metric just once. + if !rc.alreadyGotErr && err != nil && err != io.EOF { + if !rc.isFailureExpected(err) { + rc.failed.WithLabelValues(rc.op).Inc() + } + rc.alreadyGotErr = true } return n, err } - -func CreateTemporaryTestBucketName(t testing.TB) string { - src := rand.NewSource(time.Now().UnixNano()) - - // Bucket name need to conform: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-s3-bucket-naming-requirements.html. - name := strings.Replace(strings.Replace(fmt.Sprintf("test_%x_%s", src.Int63(), strings.ToLower(t.Name())), "_", "-", -1), "/", "-", -1) - if len(name) >= 63 { - name = name[:63] - } - return name -} diff --git a/pkg/objstore/objstore_test.go b/pkg/objstore/objstore_test.go new file mode 100644 index 00000000000..f78d8550d94 --- /dev/null +++ b/pkg/objstore/objstore_test.go @@ -0,0 +1,64 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package objstore + +import ( + "testing" + + promtest "github.com/prometheus/client_golang/prometheus/testutil" + "github.com/thanos-io/thanos/pkg/testutil" +) + +func TestMetricBucket_Close(t *testing.T) { + bkt := BucketWithMetrics("abc", NewInMemBucket(), nil) + // Expected initialized metrics. + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.ops)) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsFailures)) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsDuration)) + + AcceptanceTest(t, bkt.WithExpectedErrs(bkt.IsObjNotFoundErr)) + testutil.Equals(t, float64(6), promtest.ToFloat64(bkt.ops.WithLabelValues(iterOp))) + testutil.Equals(t, float64(2), promtest.ToFloat64(bkt.ops.WithLabelValues(sizeOp))) + testutil.Equals(t, float64(3), promtest.ToFloat64(bkt.ops.WithLabelValues(getOp))) + testutil.Equals(t, float64(3), promtest.ToFloat64(bkt.ops.WithLabelValues(getRangeOp))) + testutil.Equals(t, float64(2), promtest.ToFloat64(bkt.ops.WithLabelValues(existsOp))) + testutil.Equals(t, float64(6), promtest.ToFloat64(bkt.ops.WithLabelValues(uploadOp))) + testutil.Equals(t, float64(2), promtest.ToFloat64(bkt.ops.WithLabelValues(deleteOp))) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.ops)) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(iterOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(sizeOp))) + testutil.Equals(t, float64(1), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(getOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(getRangeOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(existsOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(uploadOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(deleteOp))) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsFailures)) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsDuration)) + lastUpload := promtest.ToFloat64(bkt.lastSuccessfulUploadTime) + testutil.Assert(t, lastUpload > 0, "last upload not greater than 0, val: %f", lastUpload) + + // Clear bucket, but don't clear metrics to ensure we use same. + bkt.bkt = NewInMemBucket() + AcceptanceTest(t, bkt) + testutil.Equals(t, float64(12), promtest.ToFloat64(bkt.ops.WithLabelValues(iterOp))) + testutil.Equals(t, float64(4), promtest.ToFloat64(bkt.ops.WithLabelValues(sizeOp))) + testutil.Equals(t, float64(6), promtest.ToFloat64(bkt.ops.WithLabelValues(getOp))) + testutil.Equals(t, float64(6), promtest.ToFloat64(bkt.ops.WithLabelValues(getRangeOp))) + testutil.Equals(t, float64(4), promtest.ToFloat64(bkt.ops.WithLabelValues(existsOp))) + testutil.Equals(t, float64(12), promtest.ToFloat64(bkt.ops.WithLabelValues(uploadOp))) + testutil.Equals(t, float64(4), promtest.ToFloat64(bkt.ops.WithLabelValues(deleteOp))) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.ops)) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(iterOp))) + // Not expected not found error here. + testutil.Equals(t, float64(1), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(sizeOp))) + // Not expected not found errors, this should increment failure metric on get for not found as well, so +2. + testutil.Equals(t, float64(3), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(getOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(getRangeOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(existsOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(uploadOp))) + testutil.Equals(t, float64(0), promtest.ToFloat64(bkt.opsFailures.WithLabelValues(deleteOp))) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsFailures)) + testutil.Equals(t, 7, promtest.CollectAndCount(bkt.opsDuration)) + testutil.Assert(t, promtest.ToFloat64(bkt.lastSuccessfulUploadTime) > lastUpload) +} diff --git a/pkg/objstore/objtesting/acceptance_e2e_test.go b/pkg/objstore/objtesting/acceptance_e2e_test.go index 86045424eea..4cfda44c337 100644 --- a/pkg/objstore/objtesting/acceptance_e2e_test.go +++ b/pkg/objstore/objtesting/acceptance_e2e_test.go @@ -4,14 +4,9 @@ package objtesting import ( - "context" - "io/ioutil" - "sort" - "strings" "testing" "github.com/thanos-io/thanos/pkg/objstore" - "github.com/thanos-io/thanos/pkg/testutil" ) // TestObjStoreAcceptanceTest_e2e tests all known implementation against interface behaviour contract we agreed on. @@ -19,142 +14,5 @@ import ( // NOTE: This test assumes strong consistency, but in the same way it does not guarantee that if it passes, the // used object store is strongly consistent. func TestObjStore_AcceptanceTest_e2e(t *testing.T) { - ForeachStore(t, func(t *testing.T, bkt objstore.Bucket) { - ctx := context.Background() - - _, err := bkt.Get(ctx, "") - testutil.NotOk(t, err) - testutil.Assert(t, !bkt.IsObjNotFoundErr(err), "expected user error got not found %s", err) - - _, err = bkt.Get(ctx, "id1/obj_1.some") - testutil.NotOk(t, err) - testutil.Assert(t, bkt.IsObjNotFoundErr(err), "expected not found error got %s", err) - - ok, err := bkt.Exists(ctx, "id1/obj_1.some") - testutil.Ok(t, err) - testutil.Assert(t, !ok, "expected not exits") - - _, err = bkt.ObjectSize(ctx, "id1/obj_1.some") - testutil.NotOk(t, err) - testutil.Assert(t, bkt.IsObjNotFoundErr(err), "expected not found error but got %s", err) - - // Upload first object. - testutil.Ok(t, bkt.Upload(ctx, "id1/obj_1.some", strings.NewReader("@test-data@"))) - - // Double check we can immediately read it. - rc1, err := bkt.Get(ctx, "id1/obj_1.some") - testutil.Ok(t, err) - defer func() { testutil.Ok(t, rc1.Close()) }() - content, err := ioutil.ReadAll(rc1) - testutil.Ok(t, err) - testutil.Equals(t, "@test-data@", string(content)) - - // Check if we can get the correct size. - sz, err := bkt.ObjectSize(ctx, "id1/obj_1.some") - testutil.Ok(t, err) - testutil.Assert(t, sz == 11, "expected size to be equal to 11") - - rc2, err := bkt.GetRange(ctx, "id1/obj_1.some", 1, 3) - testutil.Ok(t, err) - defer func() { testutil.Ok(t, rc2.Close()) }() - content, err = ioutil.ReadAll(rc2) - testutil.Ok(t, err) - testutil.Equals(t, "tes", string(content)) - - // Unspecified range with offset. - rcUnspecifiedLen, err := bkt.GetRange(ctx, "id1/obj_1.some", 1, -1) - testutil.Ok(t, err) - defer func() { testutil.Ok(t, rcUnspecifiedLen.Close()) }() - content, err = ioutil.ReadAll(rcUnspecifiedLen) - testutil.Ok(t, err) - testutil.Equals(t, "test-data@", string(content)) - - // Out of band offset. Do not rely on outcome. - // NOTE: For various providers we have different outcome. - // * GCS is giving 416 status code - // * S3 errors immdiately with invalid range error. - // * inmem and filesystem are returning 0 bytes. - //rcOffset, err := bkt.GetRange(ctx, "id1/obj_1.some", 124141, 3) - - // Out of band length. We expect to read file fully. - rcLength, err := bkt.GetRange(ctx, "id1/obj_1.some", 3, 9999) - testutil.Ok(t, err) - defer func() { testutil.Ok(t, rcLength.Close()) }() - content, err = ioutil.ReadAll(rcLength) - testutil.Ok(t, err) - testutil.Equals(t, "st-data@", string(content)) - - ok, err = bkt.Exists(ctx, "id1/obj_1.some") - testutil.Ok(t, err) - testutil.Assert(t, ok, "expected exits") - - // Upload other objects. - testutil.Ok(t, bkt.Upload(ctx, "id1/obj_2.some", strings.NewReader("@test-data2@"))) - // Upload should be idempotent. - testutil.Ok(t, bkt.Upload(ctx, "id1/obj_2.some", strings.NewReader("@test-data2@"))) - testutil.Ok(t, bkt.Upload(ctx, "id1/obj_3.some", strings.NewReader("@test-data3@"))) - testutil.Ok(t, bkt.Upload(ctx, "id2/obj_4.some", strings.NewReader("@test-data4@"))) - testutil.Ok(t, bkt.Upload(ctx, "obj_5.some", strings.NewReader("@test-data5@"))) - - // Can we iter over items from top dir? - var seen []string - testutil.Ok(t, bkt.Iter(ctx, "", func(fn string) error { - seen = append(seen, fn) - return nil - })) - expected := []string{"obj_5.some", "id1/", "id2/"} - sort.Strings(expected) - sort.Strings(seen) - testutil.Equals(t, expected, seen) - - // Can we iter over items from id1/ dir? - seen = []string{} - testutil.Ok(t, bkt.Iter(ctx, "id1/", func(fn string) error { - seen = append(seen, fn) - return nil - })) - testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_2.some", "id1/obj_3.some"}, seen) - - // Can we iter over items from id1 dir? - seen = []string{} - testutil.Ok(t, bkt.Iter(ctx, "id1", func(fn string) error { - seen = append(seen, fn) - return nil - })) - testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_2.some", "id1/obj_3.some"}, seen) - - // Can we iter over items from not existing dir? - testutil.Ok(t, bkt.Iter(ctx, "id0", func(fn string) error { - t.Error("Not expected to loop through not existing directory") - t.FailNow() - - return nil - })) - - testutil.Ok(t, bkt.Delete(ctx, "id1/obj_2.some")) - - // Delete is expected to fail on non existing object. - // NOTE: Don't rely on this. S3 is not complying with this as GCS is. - // testutil.NotOk(t, bkt.Delete(ctx, "id1/obj_2.some")) - - // Can we iter over items from id1/ dir and see obj2 being deleted? - seen = []string{} - testutil.Ok(t, bkt.Iter(ctx, "id1/", func(fn string) error { - seen = append(seen, fn) - return nil - })) - testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_3.some"}, seen) - - testutil.Ok(t, bkt.Delete(ctx, "id2/obj_4.some")) - - seen = []string{} - testutil.Ok(t, bkt.Iter(ctx, "", func(fn string) error { - seen = append(seen, fn) - return nil - })) - expected = []string{"obj_5.some", "id1/"} - sort.Strings(expected) - sort.Strings(seen) - testutil.Equals(t, expected, seen) - }) + ForeachStore(t, objstore.AcceptanceTest) } diff --git a/pkg/objstore/objtesting/foreach.go b/pkg/objstore/objtesting/foreach.go index 97b0490977c..e0c28cb4f6d 100644 --- a/pkg/objstore/objtesting/foreach.go +++ b/pkg/objstore/objtesting/foreach.go @@ -16,7 +16,6 @@ import ( "github.com/thanos-io/thanos/pkg/objstore/azure" "github.com/thanos-io/thanos/pkg/objstore/cos" "github.com/thanos-io/thanos/pkg/objstore/gcs" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/objstore/oss" "github.com/thanos-io/thanos/pkg/objstore/s3" "github.com/thanos-io/thanos/pkg/objstore/swift" @@ -48,7 +47,7 @@ func ForeachStore(t *testing.T, testFn func(t *testing.T, bkt objstore.Bucket)) // Mandatory Inmem. Not parallel, to detect problem early. if ok := t.Run("inmem", func(t *testing.T) { - testFn(t, inmem.NewBucket()) + testFn(t, objstore.NewInMemBucket()) }); !ok { return } diff --git a/pkg/objstore/testing.go b/pkg/objstore/testing.go index 9e9a864b915..a33475db095 100644 --- a/pkg/objstore/testing.go +++ b/pkg/objstore/testing.go @@ -5,11 +5,29 @@ package objstore import ( "context" + "fmt" + "io/ioutil" + "math/rand" + "sort" "strings" "sync" "testing" + "time" + + "github.com/thanos-io/thanos/pkg/testutil" ) +func CreateTemporaryTestBucketName(t testing.TB) string { + src := rand.NewSource(time.Now().UnixNano()) + + // Bucket name need to conform: https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-s3-bucket-naming-requirements.html. + name := strings.Replace(strings.Replace(fmt.Sprintf("test_%x_%s", src.Int63(), strings.ToLower(t.Name())), "_", "-", -1), "/", "-", -1) + if len(name) >= 63 { + name = name[:63] + } + return name +} + // EmptyBucket deletes all objects from bucket. This operation is required to properly delete bucket as a whole. // It is used for testing only. // TODO(bplotka): Add retries. @@ -44,3 +62,158 @@ func EmptyBucket(t testing.TB, ctx context.Context, bkt Bucket) { } wg.Wait() } + +func WithNoopInstr(bkt Bucket) InstrumentedBucket { + return noopInstrumentedBucket{Bucket: bkt} +} + +type noopInstrumentedBucket struct { + Bucket +} + +func (b noopInstrumentedBucket) WithExpectedErrs(IsOpFailureExpectedFunc) Bucket { + return b +} + +func (b noopInstrumentedBucket) ReaderWithExpectedErrs(IsOpFailureExpectedFunc) BucketReader { + return b +} + +func AcceptanceTest(t *testing.T, bkt Bucket) { + ctx := context.Background() + + _, err := bkt.Get(ctx, "") + testutil.NotOk(t, err) + testutil.Assert(t, !bkt.IsObjNotFoundErr(err), "expected user error got not found %s", err) + + _, err = bkt.Get(ctx, "id1/obj_1.some") + testutil.NotOk(t, err) + testutil.Assert(t, bkt.IsObjNotFoundErr(err), "expected not found error got %s", err) + + ok, err := bkt.Exists(ctx, "id1/obj_1.some") + testutil.Ok(t, err) + testutil.Assert(t, !ok, "expected not exits") + + _, err = bkt.ObjectSize(ctx, "id1/obj_1.some") + testutil.NotOk(t, err) + testutil.Assert(t, bkt.IsObjNotFoundErr(err), "expected not found error but got %s", err) + + // Upload first object. + testutil.Ok(t, bkt.Upload(ctx, "id1/obj_1.some", strings.NewReader("@test-data@"))) + + // Double check we can immediately read it. + rc1, err := bkt.Get(ctx, "id1/obj_1.some") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, rc1.Close()) }() + content, err := ioutil.ReadAll(rc1) + testutil.Ok(t, err) + testutil.Equals(t, "@test-data@", string(content)) + + // Check if we can get the correct size. + sz, err := bkt.ObjectSize(ctx, "id1/obj_1.some") + testutil.Ok(t, err) + testutil.Assert(t, sz == 11, "expected size to be equal to 11") + + rc2, err := bkt.GetRange(ctx, "id1/obj_1.some", 1, 3) + testutil.Ok(t, err) + defer func() { testutil.Ok(t, rc2.Close()) }() + content, err = ioutil.ReadAll(rc2) + testutil.Ok(t, err) + testutil.Equals(t, "tes", string(content)) + + // Unspecified range with offset. + rcUnspecifiedLen, err := bkt.GetRange(ctx, "id1/obj_1.some", 1, -1) + testutil.Ok(t, err) + defer func() { testutil.Ok(t, rcUnspecifiedLen.Close()) }() + content, err = ioutil.ReadAll(rcUnspecifiedLen) + testutil.Ok(t, err) + testutil.Equals(t, "test-data@", string(content)) + + // Out of band offset. Do not rely on outcome. + // NOTE: For various providers we have different outcome. + // * GCS is giving 416 status code + // * S3 errors immdiately with invalid range error. + // * inmem and filesystem are returning 0 bytes. + //rcOffset, err := bkt.GetRange(ctx, "id1/obj_1.some", 124141, 3) + + // Out of band length. We expect to read file fully. + rcLength, err := bkt.GetRange(ctx, "id1/obj_1.some", 3, 9999) + testutil.Ok(t, err) + defer func() { testutil.Ok(t, rcLength.Close()) }() + content, err = ioutil.ReadAll(rcLength) + testutil.Ok(t, err) + testutil.Equals(t, "st-data@", string(content)) + + ok, err = bkt.Exists(ctx, "id1/obj_1.some") + testutil.Ok(t, err) + testutil.Assert(t, ok, "expected exits") + + // Upload other objects. + testutil.Ok(t, bkt.Upload(ctx, "id1/obj_2.some", strings.NewReader("@test-data2@"))) + // Upload should be idempotent. + testutil.Ok(t, bkt.Upload(ctx, "id1/obj_2.some", strings.NewReader("@test-data2@"))) + testutil.Ok(t, bkt.Upload(ctx, "id1/obj_3.some", strings.NewReader("@test-data3@"))) + testutil.Ok(t, bkt.Upload(ctx, "id2/obj_4.some", strings.NewReader("@test-data4@"))) + testutil.Ok(t, bkt.Upload(ctx, "obj_5.some", strings.NewReader("@test-data5@"))) + + // Can we iter over items from top dir? + var seen []string + testutil.Ok(t, bkt.Iter(ctx, "", func(fn string) error { + seen = append(seen, fn) + return nil + })) + expected := []string{"obj_5.some", "id1/", "id2/"} + sort.Strings(expected) + sort.Strings(seen) + testutil.Equals(t, expected, seen) + + // Can we iter over items from id1/ dir? + seen = []string{} + testutil.Ok(t, bkt.Iter(ctx, "id1/", func(fn string) error { + seen = append(seen, fn) + return nil + })) + testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_2.some", "id1/obj_3.some"}, seen) + + // Can we iter over items from id1 dir? + seen = []string{} + testutil.Ok(t, bkt.Iter(ctx, "id1", func(fn string) error { + seen = append(seen, fn) + return nil + })) + testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_2.some", "id1/obj_3.some"}, seen) + + // Can we iter over items from not existing dir? + testutil.Ok(t, bkt.Iter(ctx, "id0", func(fn string) error { + t.Error("Not expected to loop through not existing directory") + t.FailNow() + + return nil + })) + + testutil.Ok(t, bkt.Delete(ctx, "id1/obj_2.some")) + + // Delete is expected to fail on non existing object. + // NOTE: Don't rely on this. S3 is not complying with this as GCS is. + // testutil.NotOk(t, bkt.Delete(ctx, "id1/obj_2.some")) + + // Can we iter over items from id1/ dir and see obj2 being deleted? + seen = []string{} + testutil.Ok(t, bkt.Iter(ctx, "id1/", func(fn string) error { + seen = append(seen, fn) + return nil + })) + testutil.Equals(t, []string{"id1/obj_1.some", "id1/obj_3.some"}, seen) + + testutil.Ok(t, bkt.Delete(ctx, "id2/obj_4.some")) + + seen = []string{} + testutil.Ok(t, bkt.Iter(ctx, "", func(fn string) error { + seen = append(seen, fn) + return nil + })) + expected = []string{"obj_5.some", "id1/"} + sort.Strings(expected) + sort.Strings(seen) + testutil.Equals(t, expected, seen) +} diff --git a/pkg/replicate/scheme.go b/pkg/replicate/scheme.go index ba5fa113ba3..5402dd9a78e 100644 --- a/pkg/replicate/scheme.go +++ b/pkg/replicate/scheme.go @@ -101,7 +101,7 @@ type blockFilterFunc func(b *metadata.Meta) bool // TODO: Add filters field. type replicationScheme struct { - fromBkt objstore.BucketReader + fromBkt objstore.InstrumentedBucketReader toBkt objstore.Bucket blockFilter blockFilterFunc @@ -158,7 +158,7 @@ func newReplicationScheme( metrics *replicationMetrics, blockFilter blockFilterFunc, fetcher thanosblock.MetadataFetcher, - from objstore.BucketReader, + from objstore.InstrumentedBucketReader, to objstore.Bucket, reg prometheus.Registerer, ) *replicationScheme { @@ -254,7 +254,7 @@ func (rs *replicationScheme) ensureBlockIsReplicated(ctx context.Context, id uli level.Debug(rs.logger).Log("msg", "ensuring block is replicated", "block_uuid", blockID) - originMetaFile, err := rs.fromBkt.Get(ctx, metaFile) + originMetaFile, err := rs.fromBkt.ReaderWithExpectedErrs(rs.fromBkt.IsObjNotFoundErr).Get(ctx, metaFile) if err != nil { return errors.Wrap(err, "get meta file from origin bucket") } diff --git a/pkg/replicate/scheme_test.go b/pkg/replicate/scheme_test.go index 26c83aafb64..fc9e66943d2 100644 --- a/pkg/replicate/scheme_test.go +++ b/pkg/replicate/scheme_test.go @@ -23,7 +23,6 @@ import ( "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/compact" "github.com/thanos-io/thanos/pkg/objstore" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/testutil" ) @@ -66,20 +65,20 @@ func TestReplicationSchemeAll(t *testing.T) { var cases = []struct { name string selector labels.Selector - prepare func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) - assert func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) + prepare func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) + assert func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) }{ { name: "EmptyOrigin", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) {}, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) {}, + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) {}, + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) {}, }, { name: "NoMeta", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { _ = originBucket.Upload(ctx, path.Join(testULID(0).String(), "chunks", "000001"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { if len(targetBucket.Objects()) != 0 { t.Fatal("TargetBucket should have been empty but is not.") } @@ -87,10 +86,10 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "PartialMeta", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { _ = originBucket.Upload(ctx, path.Join(testULID(0).String(), "meta.json"), bytes.NewReader([]byte("{"))) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { if len(targetBucket.Objects()) != 0 { t.Fatal("TargetBucket should have been empty but is not.") } @@ -98,7 +97,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "FullBlock", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) @@ -108,7 +107,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { if len(targetBucket.Objects()) != 3 { t.Fatal("TargetBucket should have one block made up of three objects replicated.") } @@ -116,7 +115,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "PreviousPartialUpload", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) @@ -130,7 +129,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = targetBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = targetBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { for k := range originBucket.Objects() { if !bytes.Equal(originBucket.Objects()[k], targetBucket.Objects()[k]) { t.Fatalf("Object %s not equal in origin and target bucket.", k) @@ -140,7 +139,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "OnlyUploadsRaw", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) @@ -160,7 +159,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { expected := 3 got := len(targetBucket.Objects()) if got != expected { @@ -170,7 +169,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "UploadMultipleCandidatesWhenPresent", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) @@ -189,7 +188,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { expected := 6 got := len(targetBucket.Objects()) if got != expected { @@ -199,7 +198,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "LabelSelector", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) @@ -219,7 +218,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { expected := 3 got := len(targetBucket.Objects()) if got != expected { @@ -229,7 +228,7 @@ func TestReplicationSchemeAll(t *testing.T) { }, { name: "NonZeroCompaction", - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { ulid := testULID(0) meta := testMeta(ulid) meta.BlockMeta.Compaction.Level = 2 @@ -240,7 +239,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join(ulid.String(), "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join(ulid.String(), "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { if len(targetBucket.Objects()) != 0 { t.Fatal("TargetBucket should have been empty but is not.") } @@ -249,7 +248,7 @@ func TestReplicationSchemeAll(t *testing.T) { { name: "Regression", selector: labels.Selector{}, - prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket objstore.Bucket) { + prepare: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { b := []byte(`{ "ulid": "01DQYXMK8G108CEBQ79Y84DYVY", "minTime": 1571911200000, @@ -282,7 +281,7 @@ func TestReplicationSchemeAll(t *testing.T) { _ = originBucket.Upload(ctx, path.Join("01DQYXMK8G108CEBQ79Y84DYVY", "chunks", "000001"), bytes.NewReader(nil)) _ = originBucket.Upload(ctx, path.Join("01DQYXMK8G108CEBQ79Y84DYVY", "index"), bytes.NewReader(nil)) }, - assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *inmem.Bucket) { + assert: func(ctx context.Context, t *testing.T, originBucket, targetBucket *objstore.InMemBucket) { if len(targetBucket.Objects()) != 3 { t.Fatal("TargetBucket should have one block does not.") } @@ -296,8 +295,8 @@ func TestReplicationSchemeAll(t *testing.T) { for _, c := range cases { ctx := context.Background() - originBucket := inmem.NewBucket() - targetBucket := inmem.NewBucket() + originBucket := objstore.NewInMemBucket() + targetBucket := objstore.NewInMemBucket() logger := testLogger(t.Name() + "/" + c.name) c.prepare(ctx, t, originBucket, targetBucket) @@ -313,7 +312,7 @@ func TestReplicationSchemeAll(t *testing.T) { } filter := NewBlockFilter(logger, selector, compact.ResolutionLevelRaw, 1).Filter - fetcher, err := block.NewMetaFetcher(logger, 32, originBucket, "", nil, nil, nil) + fetcher, err := block.NewMetaFetcher(logger, 32, objstore.WithNoopInstr(originBucket), "", nil, nil, nil) testutil.Ok(t, err) r := newReplicationScheme( @@ -321,7 +320,7 @@ func TestReplicationSchemeAll(t *testing.T) { newReplicationMetrics(nil), filter, fetcher, - originBucket, + objstore.WithNoopInstr(originBucket), targetBucket, nil, ) diff --git a/pkg/shipper/shipper_e2e_test.go b/pkg/shipper/shipper_e2e_test.go index 19695426f23..b307b165328 100644 --- a/pkg/shipper/shipper_e2e_test.go +++ b/pkg/shipper/shipper_e2e_test.go @@ -15,7 +15,6 @@ import ( "testing" "time" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/testutil/e2eutil" "github.com/go-kit/kit/log" @@ -180,7 +179,7 @@ func TestShipper_SyncBlocksWithMigrating_e2e(t *testing.T) { testutil.Ok(t, os.RemoveAll(dir)) }() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() ctx, cancel := context.WithCancel(context.Background()) defer cancel() diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index 81dcb4ff1e2..4d2704b1fea 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -221,7 +221,7 @@ type FilterConfig struct { type BucketStore struct { logger log.Logger metrics *bucketStoreMetrics - bkt objstore.BucketReader + bkt objstore.InstrumentedBucketReader fetcher block.MetadataFetcher dir string indexCache storecache.IndexCache @@ -260,7 +260,7 @@ type BucketStore struct { func NewBucketStore( logger log.Logger, reg prometheus.Registerer, - bucket objstore.BucketReader, + bkt objstore.InstrumentedBucketReader, fetcher block.MetadataFetcher, dir string, indexCache storecache.IndexCache, @@ -290,7 +290,7 @@ func NewBucketStore( metrics := newBucketStoreMetrics(reg) s := &BucketStore{ logger: logger, - bkt: bucket, + bkt: bkt, fetcher: fetcher, dir: dir, indexCache: indexCache, diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 8bcf3216c08..8b0e4e9070e 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -21,7 +21,6 @@ import ( "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/objstore/objtesting" storecache "github.com/thanos-io/thanos/pkg/store/cache" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -147,7 +146,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m maxTime: maxTime, } - metaFetcher, err := block.NewMetaFetcher(s.logger, 20, bkt, dir, nil, []block.MetadataFilter{ + metaFetcher, err := block.NewMetaFetcher(s.logger, 20, objstore.WithNoopInstr(bkt), dir, nil, []block.MetadataFilter{ block.NewTimePartitionMetaFilter(filterConf.MinTime, filterConf.MaxTime), block.NewLabelShardedMetaFilter(relabelConfig), }, nil) @@ -156,7 +155,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m store, err := NewBucketStore( s.logger, nil, - bkt, + objstore.WithNoopInstr(bkt), metaFetcher, dir, s.cache, @@ -497,7 +496,7 @@ func TestBucketStore_ManyParts_e2e(t *testing.T) { func TestBucketStore_TimePartitioning_e2e(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() dir, err := ioutil.TempDir("", "test_bucket_time_part_e2e") testutil.Ok(t, err) diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index 516bf684c3a..d9c7bffd642 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -43,7 +43,6 @@ import ( "github.com/thanos-io/thanos/pkg/compact/downsample" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/filesystem" - "github.com/thanos-io/thanos/pkg/objstore/inmem" "github.com/thanos-io/thanos/pkg/pool" storecache "github.com/thanos-io/thanos/pkg/store/cache" "github.com/thanos-io/thanos/pkg/store/storepb" @@ -526,7 +525,7 @@ func TestBucketStore_Sharding(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(dir)) }() - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() series := []labels.Labels{labels.FromStrings("a", "1", "b", "1")} id1, err := e2eutil.CreateBlock(ctx, dir, series, 10, 0, 1000, labels.Labels{{Name: "cluster", Value: "a"}, {Name: "region", Value: "r1"}}, 0) @@ -711,7 +710,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul testutil.Ok(t, yaml.Unmarshal([]byte(sc.relabel), &relabelConf)) rec := &recorder{Bucket: bkt} - metaFetcher, err := block.NewMetaFetcher(logger, 20, bkt, dir, nil, []block.MetadataFilter{ + metaFetcher, err := block.NewMetaFetcher(logger, 20, objstore.WithNoopInstr(bkt), dir, nil, []block.MetadataFilter{ block.NewTimePartitionMetaFilter(allowAllFilterConf.MinTime, allowAllFilterConf.MaxTime), block.NewLabelShardedMetaFilter(relabelConf), }, nil) @@ -720,7 +719,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul bucketStore, err := NewBucketStore( logger, nil, - rec, + objstore.WithNoopInstr(rec), metaFetcher, dir, noopCache{}, @@ -813,7 +812,7 @@ func expectedTouchedBlockOps(all []ulid.ULID, expected []ulid.ULID, cached []uli // Regression tests against: https://github.com/thanos-io/thanos/issues/1983. func TestReadIndexCache_LoadSeries(t *testing.T) { - bkt := inmem.NewBucket() + bkt := objstore.NewInMemBucket() s := newBucketStoreMetrics(nil) b := &bucketBlock{ @@ -1310,7 +1309,7 @@ func benchSeries(t testutil.TB, number int, dimension Dimension, cases ...int) { } store := &BucketStore{ - bkt: bkt, + bkt: objstore.WithNoopInstr(bkt), logger: logger, indexCache: noopCache{}, metrics: newBucketStoreMetrics(nil), @@ -1551,7 +1550,7 @@ func TestSeries_OneBlock_InMemIndexCacheSegfault(t *testing.T) { } store := &BucketStore{ - bkt: bkt, + bkt: objstore.WithNoopInstr(bkt), logger: logger, indexCache: indexCache, metrics: newBucketStoreMetrics(nil), diff --git a/pkg/testutil/testutil.go b/pkg/testutil/testutil.go index e1ba298d7eb..8b1e8e1d4f1 100644 --- a/pkg/testutil/testutil.go +++ b/pkg/testutil/testutil.go @@ -18,6 +18,7 @@ import ( // Assert fails the test if the condition is false. func Assert(tb testing.TB, condition bool, v ...interface{}) { + tb.Helper() if condition { return } @@ -27,11 +28,12 @@ func Assert(tb testing.TB, condition bool, v ...interface{}) { if len(v) > 0 { msg = fmt.Sprintf(v[0].(string), v[1:]...) } - tb.Fatalf("\033[31m%s:%d: "+msg+"\033[39m\n\n", append([]interface{}{filepath.Base(file), line}, v...)...) + tb.Fatalf("\033[31m%s:%d: "+msg+"\033[39m\n\n", filepath.Base(file), line) } // Ok fails the test if an err is not nil. func Ok(tb testing.TB, err error, v ...interface{}) { + tb.Helper() if err == nil { return } @@ -46,6 +48,7 @@ func Ok(tb testing.TB, err error, v ...interface{}) { // NotOk fails the test if an err is nil. func NotOk(tb testing.TB, err error, v ...interface{}) { + tb.Helper() if err != nil { return } @@ -60,6 +63,7 @@ func NotOk(tb testing.TB, err error, v ...interface{}) { // Equals fails the test if exp is not equal to act. func Equals(tb testing.TB, exp, act interface{}, v ...interface{}) { + tb.Helper() if reflect.DeepEqual(exp, act) { return } From e75979fc1b6fd01a1e6da7ef8f5730d5b40fa1e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 6 Apr 2020 14:55:42 +0200 Subject: [PATCH 087/190] pkge/receive: trace TSDB ingestion (#2384) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit adds a tracing span around the writing of remote-write requests into TSDB. This will help us differentiate between the latencies in the forwarding of requests around the hashring and the latencies of appending to the database. This commit also removes the `thanos_` prefix from the forwarding span to better align with the span naming in the rest of the project. Signed-off-by: Lucas Servén Marín --- pkg/receive/handler.go | 8 ++++++-- pkg/receive/writer.go | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkg/receive/handler.go b/pkg/receive/handler.go index 35e254e943a..fa31ae58d7d 100644 --- a/pkg/receive/handler.go +++ b/pkg/receive/handler.go @@ -362,7 +362,11 @@ func (h *Handler) parallelizeRequests(ctx context.Context, tenant string, replic if h.writer == nil { err = errors.New("storage is not ready") } else { - err = h.writer.Write(wreqs[endpoint]) + // Create a span to track writing the request into TSDB. + tracing.DoInSpan(ctx, "receive_tsdb_write", func(ctx context.Context) { + + err = h.writer.Write(wreqs[endpoint]) + }) // When a MultiError is added to another MultiError, the error slices are concatenated, not nested. // To avoid breaking the counting logic, we need to flatten the error. if errs, ok := err.(terrors.MultiError); ok { @@ -402,7 +406,7 @@ func (h *Handler) parallelizeRequests(ctx context.Context, tenant string, replic return } // Create a span to track the request made to another receive node. - tracing.DoInSpan(ctx, "thanos_receive_forward", func(ctx context.Context) { + tracing.DoInSpan(ctx, "receive_forward", func(ctx context.Context) { // Actually make the request against the endpoint // we determined should handle these time series. _, err = cl.RemoteWrite(ctx, &storepb.WriteRequest{ diff --git a/pkg/receive/writer.go b/pkg/receive/writer.go index 17a98a0ea4f..920e8c1c069 100644 --- a/pkg/receive/writer.go +++ b/pkg/receive/writer.go @@ -12,6 +12,7 @@ import ( "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/storage" terrors "github.com/prometheus/prometheus/tsdb/errors" + "github.com/thanos-io/thanos/pkg/store/storepb/prompb" ) From 7b9d72d2f0e4890fb79700de2f569834a0759730 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 6 Apr 2020 17:27:36 +0100 Subject: [PATCH 088/190] compact: Made MarkForDeletion less strict; Added more debugability to block deletion logic, made meta sync explicit. (#2385) Also: * Changed order: Now BestEffortCleanAbortedPartialUploads is before DeleteMarkedBlocks. * Increment markedForDeletion counter only when we actually uploaded block. * Fixed logging issues. Signed-off-by: Bartlomiej Plotka --- cmd/thanos/compact.go | 88 +++++++++++++++++++++++------------ cmd/thanos/downsample.go | 21 +++++---- cmd/thanos/main_test.go | 8 +++- pkg/block/block.go | 9 ++-- pkg/block/block_test.go | 82 +++++++++++++++++--------------- pkg/block/fetcher.go | 8 ++-- pkg/compact/blocks_cleaner.go | 3 +- pkg/compact/clean.go | 17 ++++--- pkg/compact/clean_test.go | 6 ++- pkg/compact/compact.go | 51 ++++++++++++-------- pkg/compact/retention.go | 20 ++++---- pkg/compact/retention_test.go | 6 ++- pkg/verifier/safe_delete.go | 7 +-- 13 files changed, 197 insertions(+), 129 deletions(-) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 0b1c22769f6..1bad45f773e 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -16,6 +16,7 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/oklog/run" + "github.com/oklog/ulid" "github.com/opentracing/opentracing-go" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" @@ -113,7 +114,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { waitInterval := cmd.Flag("wait-interval", "Wait interval between consecutive compaction runs and bucket refreshes. Only works when --wait flag specified."). Default("5m").Duration() - generateMissingIndexCacheFiles := cmd.Flag("index.generate-missing-cache-file", "If enabled, on startup compactor runs an on-off job that scans all the blocks to find all blocks with missing index cache file. It generates those if needed and upload."). + generateMissingIndexCacheFiles := cmd.Flag("index.generate-missing-cache-file", "DEPRECATED flag. Will be removed in next release. If enabled, on startup compactor runs an on-off job that scans all the blocks to find all blocks with missing index cache file. It generates those if needed and upload."). Hidden().Default("false").Bool() disableDownsampling := cmd.Flag("downsampling.disable", "Disables downsampling. This is not recommended "+ @@ -290,29 +291,48 @@ func runCompact( }() // While fetching blocks, we filter out blocks that were marked for deletion by using IgnoreDeletionMarkFilter. - // The delay of deleteDelay/2 is added to ensure we fetch blocks that are meant to be deleted but do not have a replacement yet. - ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, time.Duration(deleteDelay.Seconds()/2)*time.Second) + // The delay of deleteDelay/2 is added to ensure we fetch blocks that are meant to be deleted but do not have a replacement yet. + // This is to make sure compactor will not accidentally perform compactions with gap instead. + ignoreDeletionMarkFilter := block.NewIgnoreDeletionMarkFilter(logger, bkt, deleteDelay/2) duplicateBlocksFilter := block.NewDeduplicateFilter() baseMetaFetcher, err := block.NewBaseFetcher(logger, 32, bkt, "", extprom.WrapRegistererWithPrefix("thanos_", reg)) if err != nil { return errors.Wrap(err, "create meta fetcher") } - compactFetcher := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ - block.NewLabelShardedMetaFilter(relabelConfig), - block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), - ignoreDeletionMarkFilter, - duplicateBlocksFilter, - }, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}) + enableVerticalCompaction := false if len(dedupReplicaLabels) > 0 { enableVerticalCompaction = true level.Info(logger).Log("msg", "deduplication.replica-label specified, vertical compaction is enabled", "dedupReplicaLabels", strings.Join(dedupReplicaLabels, ",")) } - sy, err := compact.NewSyncer(logger, reg, bkt, compactFetcher, duplicateBlocksFilter, ignoreDeletionMarkFilter, blocksMarkedForDeletion, blockSyncConcurrency, acceptMalformedIndex, enableVerticalCompaction) - if err != nil { - return errors.Wrap(err, "create syncer") + compactorView := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/loaded"), prefixHeader) + var sy *compact.Syncer + { + // Make sure all compactor meta syncs are done through Syncer.SyncMeta for readability. + cf := baseMetaFetcher.NewMetaFetcher( + extprom.WrapRegistererWithPrefix("thanos_", reg), []block.MetadataFilter{ + block.NewLabelShardedMetaFilter(relabelConfig), + block.NewConsistencyDelayMetaFilter(logger, consistencyDelay, extprom.WrapRegistererWithPrefix("thanos_", reg)), + ignoreDeletionMarkFilter, + duplicateBlocksFilter, + }, []block.MetadataModifier{block.NewReplicaLabelRemover(logger, dedupReplicaLabels)}, + ) + cf.UpdateOnChange(compactorView.Set) + sy, err = compact.NewSyncer( + logger, + reg, + bkt, + cf, + duplicateBlocksFilter, + ignoreDeletionMarkFilter, + blocksMarkedForDeletion, + blockSyncConcurrency, + acceptMalformedIndex, enableVerticalCompaction) + if err != nil { + return errors.Wrap(err, "create syncer") + } } levels, err := compactions.levels(maxCompactionLevel) @@ -371,39 +391,52 @@ func runCompact( // We run two passes of this to ensure that the 1h downsampling is generated // for 5m downsamplings created in the first run. level.Info(logger).Log("msg", "start first pass of downsampling") - - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { + if err := sy.SyncMetas(ctx); err != nil { + return errors.Wrap(err, "sync before first pass of downsampling") + } + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, sy.Metas(), downsamplingDir); err != nil { return errors.Wrap(err, "first pass of downsampling failed") } level.Info(logger).Log("msg", "start second pass of downsampling") - - if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, compactFetcher, downsamplingDir); err != nil { + if err := sy.SyncMetas(ctx); err != nil { + return errors.Wrap(err, "sync before second pass of downsampling") + } + if err := downsampleBucket(ctx, logger, downsampleMetrics, bkt, sy.Metas(), downsamplingDir); err != nil { return errors.Wrap(err, "second pass of downsampling failed") } level.Info(logger).Log("msg", "downsampling iterations done") } else { - level.Warn(logger).Log("msg", "downsampling was explicitly disabled") + level.Info(logger).Log("msg", "downsampling was explicitly disabled") } - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, compactFetcher, retentionByResolution, blocksMarkedForDeletion); err != nil { + // TODO(bwplotka): Find a way to avoid syncing if no op was done. + if err := sy.SyncMetas(ctx); err != nil { + return errors.Wrap(err, "sync before first pass of downsampling") + } + + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, sy.Metas(), retentionByResolution, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, fmt.Sprintf("retention failed")) } + // No need to resync before partial uploads and delete marked blocks. Last sync should be valid. + compact.BestEffortCleanAbortedPartialUploads(ctx, logger, sy.Partial(), bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) if err := blocksCleaner.DeleteMarkedBlocks(ctx); err != nil { return errors.Wrap(err, "error cleaning blocks") } - - compact.BestEffortCleanAbortedPartialUploads(ctx, logger, compactFetcher, bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) return nil } g.Add(func() error { defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") - // Generate index file. + // Generate index files. + // TODO(bwplotka): Remove this in next release. if generateMissingIndexCacheFiles { - if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, compactFetcher, indexCacheDir); err != nil { + if err := sy.SyncMetas(ctx); err != nil { + return err + } + if err := genMissingIndexCacheFiles(ctx, logger, reg, bkt, sy.Metas(), indexCacheDir); err != nil { return err } } @@ -451,16 +484,14 @@ func runCompact( r := route.New() ins := extpromhttp.NewInstrumentationMiddleware(reg) - compactorView := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/loaded"), prefixHeader) compactorView.Register(r, ins) - compactFetcher.UpdateOnChange(compactorView.Set) global := ui.NewBucketUI(logger, label, path.Join(externalPrefix, "/global"), prefixHeader) global.Register(r, ins) // Separate fetcher for global view. // TODO(bwplotka): Allow Bucket UI to visualize the state of the block as well. - f := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), nil, nil) + f := baseMetaFetcher.NewMetaFetcher(extprom.WrapRegistererWithPrefix("thanos_bucket_ui", reg), nil, nil, "component", "globalBucketUI") f.UpdateOnChange(global.Set) srv.Handle("/", r) @@ -494,7 +525,7 @@ func runCompact( } // genMissingIndexCacheFiles scans over all blocks, generates missing index cache files and uploads them to object storage. -func genMissingIndexCacheFiles(ctx context.Context, logger log.Logger, reg *prometheus.Registry, bkt objstore.Bucket, fetcher block.MetadataFetcher, dir string) error { +func genMissingIndexCacheFiles(ctx context.Context, logger log.Logger, reg *prometheus.Registry, bkt objstore.Bucket, metas map[ulid.ULID]*metadata.Meta, dir string) error { genIndex := promauto.With(reg).NewCounter(prometheus.CounterOpts{ Name: metricIndexGenerateName, Help: metricIndexGenerateHelp, @@ -515,11 +546,6 @@ func genMissingIndexCacheFiles(ctx context.Context, logger log.Logger, reg *prom level.Info(logger).Log("msg", "start index cache processing") - metas, _, err := fetcher.Fetch(ctx) - if err != nil { - return errors.Wrap(err, "fetch metas") - } - for _, meta := range metas { // New version of compactor pushes index cache along with data block. // Skip uncompacted blocks. diff --git a/cmd/thanos/downsample.go b/cmd/thanos/downsample.go index c98335fd0cf..13e1aa8a685 100644 --- a/cmd/thanos/downsample.go +++ b/cmd/thanos/downsample.go @@ -102,14 +102,20 @@ func RunDownsample( statusProber.Ready() level.Info(logger).Log("msg", "start first pass of downsampling") - - if err := downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dataDir); err != nil { + metas, _, err := metaFetcher.Fetch(ctx) + if err != nil { + return errors.Wrap(err, "sync before first pass of downsampling") + } + if err := downsampleBucket(ctx, logger, metrics, bkt, metas, dataDir); err != nil { return errors.Wrap(err, "downsampling failed") } level.Info(logger).Log("msg", "start second pass of downsampling") - - if err := downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dataDir); err != nil { + metas, _, err = metaFetcher.Fetch(ctx) + if err != nil { + return errors.Wrap(err, "sync before second pass of downsampling") + } + if err := downsampleBucket(ctx, logger, metrics, bkt, metas, dataDir); err != nil { return errors.Wrap(err, "downsampling failed") } @@ -144,7 +150,7 @@ func downsampleBucket( logger log.Logger, metrics *DownsampleMetrics, bkt objstore.Bucket, - fetcher block.MetadataFetcher, + metas map[ulid.ULID]*metadata.Meta, dir string, ) error { if err := os.RemoveAll(dir); err != nil { @@ -160,11 +166,6 @@ func downsampleBucket( } }() - metas, _, err := fetcher.Fetch(ctx) - if err != nil { - return errors.Wrap(err, "downsampling meta fetch") - } - // mapping from a hash over all source IDs to blocks. We don't need to downsample a block // if a downsampled version with the same hash already exists. sources5m := map[ulid.ULID]struct{}{} diff --git a/cmd/thanos/main_test.go b/cmd/thanos/main_test.go index ff0aa2863b7..ffd6598bd81 100644 --- a/cmd/thanos/main_test.go +++ b/cmd/thanos/main_test.go @@ -79,7 +79,9 @@ func TestCleanupIndexCacheFolder(t *testing.T) { metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) - testutil.Ok(t, genMissingIndexCacheFiles(ctx, logger, reg, bkt, metaFetcher, dir)) + metas, _, err := metaFetcher.Fetch(ctx) + testutil.Ok(t, err) + testutil.Ok(t, genMissingIndexCacheFiles(ctx, logger, reg, bkt, metas, dir)) genIndexExp.Inc() testutil.GatherAndCompare(t, expReg, reg, metricIndexGenerateName) @@ -119,7 +121,9 @@ func TestCleanupDownsampleCacheFolder(t *testing.T) { metaFetcher, err := block.NewMetaFetcher(nil, 32, bkt, "", nil, nil, nil) testutil.Ok(t, err) - testutil.Ok(t, downsampleBucket(ctx, logger, metrics, bkt, metaFetcher, dir)) + metas, _, err := metaFetcher.Fetch(ctx) + testutil.Ok(t, err) + testutil.Ok(t, downsampleBucket(ctx, logger, metrics, bkt, metas, dir)) testutil.Equals(t, 1.0, promtest.ToFloat64(metrics.downsamples.WithLabelValues(compact.GroupKey(meta.Thanos)))) _, err = os.Stat(dir) diff --git a/pkg/block/block.go b/pkg/block/block.go index ddc877fb57c..2bc7f86aaea 100644 --- a/pkg/block/block.go +++ b/pkg/block/block.go @@ -21,6 +21,7 @@ import ( "github.com/go-kit/kit/log/level" "github.com/oklog/ulid" "github.com/pkg/errors" + "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore" @@ -129,14 +130,15 @@ func cleanUp(logger log.Logger, bkt objstore.Bucket, id ulid.ULID, err error) er } // MarkForDeletion creates a file which stores information about when the block was marked for deletion. -func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid.ULID) error { +func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid.ULID, markedForDeletion prometheus.Counter) error { deletionMarkFile := path.Join(id.String(), metadata.DeletionMarkFilename) deletionMarkExists, err := bkt.Exists(ctx, deletionMarkFile) if err != nil { return errors.Wrapf(err, "check exists %s in bucket", deletionMarkFile) } if deletionMarkExists { - return errors.Errorf("file %s already exists in bucket", deletionMarkFile) + level.Warn(logger).Log("msg", "requested to mark for deletion, but file already exists; this should not happen; investigate", "err", errors.Errorf("file %s already exists in bucket", deletionMarkFile)) + return nil } deletionMark, err := json.Marshal(metadata.DeletionMark{ @@ -151,7 +153,7 @@ func MarkForDeletion(ctx context.Context, logger log.Logger, bkt objstore.Bucket if err := bkt.Upload(ctx, deletionMarkFile, bytes.NewBuffer(deletionMark)); err != nil { return errors.Wrapf(err, "upload file %s to bucket", deletionMarkFile) } - + markedForDeletion.Inc() level.Info(logger).Log("msg", "block has been marked for deletion", "block", id) return nil } @@ -168,6 +170,7 @@ func Delete(ctx context.Context, logger log.Logger, bkt objstore.Bucket, id ulid if err != nil { return errors.Wrapf(err, "stat %s", metaFile) } + if ok { if err := bkt.Delete(ctx, metaFile); err != nil { return errors.Wrapf(err, "delete %s", metaFile) diff --git a/pkg/block/block_test.go b/pkg/block/block_test.go index 503d09db75d..2c35197e7c9 100644 --- a/pkg/block/block_test.go +++ b/pkg/block/block_test.go @@ -7,7 +7,6 @@ import ( "bytes" "context" "encoding/json" - "fmt" "io/ioutil" "os" "path" @@ -17,6 +16,9 @@ import ( "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" + promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/prometheus/prometheus/pkg/labels" "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore" @@ -232,44 +234,50 @@ func TestMarkForDeletion(t *testing.T) { testutil.Ok(t, err) defer func() { testutil.Ok(t, os.RemoveAll(tmpDir)) }() - bkt := objstore.NewInMemBucket() - { - blockWithoutDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ - {{Name: "a", Value: "1"}}, - {{Name: "a", Value: "2"}}, - {{Name: "a", Value: "3"}}, - {{Name: "a", Value: "4"}}, - {{Name: "b", Value: "1"}}, - }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) - testutil.Ok(t, err) - testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithoutDeletionMark.String()))) + for _, tcase := range []struct { + name string + preUpload func(t testing.TB, id ulid.ULID, bkt objstore.Bucket) - testutil.Ok(t, MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithoutDeletionMark)) - exists, err := bkt.Exists(ctx, path.Join(blockWithoutDeletionMark.String(), metadata.DeletionMarkFilename)) - testutil.Ok(t, err) - testutil.Equals(t, true, exists) - } - { - blockWithDeletionMark, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ - {{Name: "a", Value: "1"}}, - {{Name: "a", Value: "2"}}, - {{Name: "a", Value: "3"}}, - {{Name: "a", Value: "4"}}, - {{Name: "b", Value: "1"}}, - }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) - testutil.Ok(t, err) - testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, blockWithDeletionMark.String()))) + blocksMarked int + }{ + { + name: "block marked for deletion", + preUpload: func(t testing.TB, id ulid.ULID, bkt objstore.Bucket) {}, + blocksMarked: 1, + }, + { + name: "block with deletion mark already, expected log and no metric increment", + preUpload: func(t testing.TB, id ulid.ULID, bkt objstore.Bucket) { + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: id, + DeletionTime: time.Now().Unix(), + Version: metadata.DeletionMarkVersion1, + }) + testutil.Ok(t, err) + testutil.Ok(t, bkt.Upload(ctx, path.Join(id.String(), metadata.DeletionMarkFilename), bytes.NewReader(deletionMark))) + }, + blocksMarked: 0, + }, + } { + t.Run(tcase.name, func(t *testing.T) { + bkt := objstore.NewInMemBucket() + id, err := e2eutil.CreateBlock(ctx, tmpDir, []labels.Labels{ + {{Name: "a", Value: "1"}}, + {{Name: "a", Value: "2"}}, + {{Name: "a", Value: "3"}}, + {{Name: "a", Value: "4"}}, + {{Name: "b", Value: "1"}}, + }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "val1"}}, 124) + testutil.Ok(t, err) - deletionMark, err := json.Marshal(metadata.DeletionMark{ - ID: blockWithDeletionMark, - DeletionTime: time.Now().Unix(), - Version: metadata.DeletionMarkVersion1, - }) - testutil.Ok(t, err) - testutil.Ok(t, bkt.Upload(ctx, path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename), bytes.NewReader(deletionMark))) + tcase.preUpload(t, id, bkt) - err = MarkForDeletion(ctx, log.NewNopLogger(), bkt, blockWithDeletionMark) - testutil.NotOk(t, err) - testutil.Equals(t, fmt.Sprintf("file %s already exists in bucket", path.Join(blockWithDeletionMark.String(), metadata.DeletionMarkFilename)), err.Error()) + testutil.Ok(t, Upload(ctx, log.NewNopLogger(), bkt, path.Join(tmpDir, id.String()))) + + c := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + err = MarkForDeletion(ctx, log.NewNopLogger(), bkt, id, c) + testutil.Ok(t, err) + testutil.Equals(t, float64(tcase.blocksMarked), promtest.ToFloat64(c)) + }) } } diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index 0a8ca111966..7f21d4d8016 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -189,8 +189,8 @@ func NewMetaFetcher(logger log.Logger, concurrency int, bkt objstore.Instrumente } // NewMetaFetcher transforms BaseFetcher into actually usable *MetaFetcher. -func (f *BaseFetcher) NewMetaFetcher(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier) *MetaFetcher { - return &MetaFetcher{metrics: newFetcherMetrics(reg), wrapped: f, filters: filters, modifiers: modifiers} +func (f *BaseFetcher) NewMetaFetcher(reg prometheus.Registerer, filters []MetadataFilter, modifiers []MetadataModifier, logTags ...interface{}) *MetaFetcher { + return &MetaFetcher{metrics: newFetcherMetrics(reg), wrapped: f, filters: filters, modifiers: modifiers, logger: log.With(f.logger, logTags...)} } var ( @@ -448,7 +448,7 @@ func (f *BaseFetcher) fetch(ctx context.Context, metrics *fetcherMetrics, filter return metas, resp.partial, errors.Wrap(resp.metaErrs, "incomplete view") } - level.Debug(f.logger).Log("msg", "successfully fetched block metadata", "duration", time.Since(start).String(), "cached", len(f.cached), "returned", len(metas), "partial", len(resp.partial)) + level.Info(f.logger).Log("msg", "successfully synchronized block metadata", "duration", time.Since(start).String(), "cached", len(f.cached), "returned", len(metas), "partial", len(resp.partial)) return metas, resp.partial, nil } @@ -460,6 +460,8 @@ type MetaFetcher struct { modifiers []MetadataModifier listener func([]metadata.Meta, error) + + logger log.Logger } // Fetch returns all block metas as well as partial blocks (blocks without or with corrupted meta file) from the bucket. diff --git a/pkg/compact/blocks_cleaner.go b/pkg/compact/blocks_cleaner.go index 820346a1bf9..73815051185 100644 --- a/pkg/compact/blocks_cleaner.go +++ b/pkg/compact/blocks_cleaner.go @@ -37,7 +37,8 @@ func NewBlocksCleaner(logger log.Logger, bkt objstore.Bucket, ignoreDeletionMark } } -// DeleteMarkedBlocks uses ignoreDeletionMarkFilter to delete the blocks that are marked for deletion. +// DeleteMarkedBlocks uses ignoreDeletionMarkFilter to gather the blocks that are marked for deletion and deletes those +// if older than given deleteDelay. func (s *BlocksCleaner) DeleteMarkedBlocks(ctx context.Context) error { level.Info(s.logger).Log("msg", "started cleaning of blocks marked for deletion") diff --git a/pkg/compact/clean.go b/pkg/compact/clean.go index 14fdfc4d7cb..53cfb169083 100644 --- a/pkg/compact/clean.go +++ b/pkg/compact/clean.go @@ -21,12 +21,15 @@ const ( PartialUploadThresholdAge = 2 * 24 * time.Hour ) -func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger, fetcher block.MetadataFetcher, bkt objstore.Bucket, deleteAttempts prometheus.Counter, blocksMarkedForDeletion prometheus.Counter) { +func BestEffortCleanAbortedPartialUploads( + ctx context.Context, + logger log.Logger, + partial map[ulid.ULID]error, + bkt objstore.Bucket, + deleteAttempts prometheus.Counter, + blocksMarkedForDeletion prometheus.Counter, +) { level.Info(logger).Log("msg", "started cleaning of aborted partial uploads") - _, partial, err := fetcher.Fetch(ctx) - if err != nil { - level.Warn(logger).Log("msg", "failed to fetch metadata for cleaning of aborted partial uploads; skipping", "err", err) - } // Delete partial blocks that are older than partialUploadThresholdAge. // TODO(bwplotka): This is can cause data loss if blocks are: @@ -41,11 +44,11 @@ func BestEffortCleanAbortedPartialUploads(ctx context.Context, logger log.Logger } deleteAttempts.Inc() - if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + level.Info(logger).Log("msg", "found partially uploaded block; marking for deletion", "block", id) + if err := block.MarkForDeletion(ctx, logger, bkt, id, blocksMarkedForDeletion); err != nil { level.Warn(logger).Log("msg", "failed to delete aborted partial upload; skipping", "block", id, "thresholdAge", PartialUploadThresholdAge, "err", err) return } - blocksMarkedForDeletion.Inc() level.Info(logger).Log("msg", "deleted aborted partial upload", "block", id, "thresholdAge", PartialUploadThresholdAge) } level.Info(logger).Log("msg", "cleaning of aborted partial uploads done") diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 7d80b032015..1321c888ba6 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -60,7 +60,11 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { deleteAttempts := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) - BestEffortCleanAbortedPartialUploads(ctx, logger, metaFetcher, bkt, deleteAttempts, blocksMarkedForDeletion) + + _, partial, err := metaFetcher.Fetch(ctx) + testutil.Ok(t, err) + + BestEffortCleanAbortedPartialUploads(ctx, logger, partial, bkt, deleteAttempts, blocksMarkedForDeletion) testutil.Equals(t, 1.0, promtest.ToFloat64(deleteAttempts)) exists, err := bkt.Exists(ctx, path.Join(shouldDeleteID.String(), "chunks", "000001")) diff --git a/pkg/compact/compact.go b/pkg/compact/compact.go index 24d2c86ce1e..c0bb41b9643 100644 --- a/pkg/compact/compact.go +++ b/pkg/compact/compact.go @@ -46,6 +46,7 @@ type Syncer struct { fetcher block.MetadataFetcher mtx sync.Mutex blocks map[ulid.ULID]*metadata.Meta + partial map[ulid.ULID]error blockSyncConcurrency int metrics *syncerMetrics acceptMalformedIndex bool @@ -153,19 +154,36 @@ func UntilNextDownsampling(m *metadata.Meta) (time.Duration, error) { } } +// SyncMetas synchronises local state of block metas with what we have in the bucket. func (s *Syncer) SyncMetas(ctx context.Context) error { s.mtx.Lock() defer s.mtx.Unlock() - metas, _, err := s.fetcher.Fetch(ctx) + metas, partial, err := s.fetcher.Fetch(ctx) if err != nil { return retry(err) } s.blocks = metas - + s.partial = partial return nil } +// Partial returns partial blocks since last sync. +func (s *Syncer) Partial() map[ulid.ULID]error { + s.mtx.Lock() + defer s.mtx.Unlock() + + return s.partial +} + +// Metas returns loaded metadata blocks since last sync. +func (s *Syncer) Metas() map[ulid.ULID]*metadata.Meta { + s.mtx.Lock() + defer s.mtx.Unlock() + + return s.blocks +} + // GroupKey returns a unique identifier for the group the block belongs to. It considers // the downsampling resolution and the block's labels. func GroupKey(meta metadata.Thanos) string { @@ -228,16 +246,18 @@ func (s *Syncer) GarbageCollect(ctx context.Context) error { begin := time.Now() - duplicateIDs := s.duplicateBlocksFilter.DuplicateIDs() + // Ignore filter exists before deduplicate filter. deletionMarkMap := s.ignoreDeletionMarkFilter.DeletionMarkBlocks() + duplicateIDs := s.duplicateBlocksFilter.DuplicateIDs() // GarbageIDs contains the duplicateIDs, since these blocks can be replaced with other blocks. // We also remove ids present in deletionMarkMap since these blocks are already marked for deletion. garbageIDs := []ulid.ULID{} for _, id := range duplicateIDs { - if _, exists := deletionMarkMap[id]; !exists { - garbageIDs = append(garbageIDs, id) + if _, exists := deletionMarkMap[id]; exists { + continue } + garbageIDs = append(garbageIDs, id) } for _, id := range garbageIDs { @@ -249,14 +269,12 @@ func (s *Syncer) GarbageCollect(ctx context.Context) error { delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) level.Info(s.logger).Log("msg", "marking outdated block for deletion", "block", id) - - err := block.MarkForDeletion(delCtx, s.logger, s.bkt, id) + err := block.MarkForDeletion(delCtx, s.logger, s.bkt, id, s.metrics.blocksMarkedForDeletion) cancel() if err != nil { s.metrics.garbageCollectionFailures.Inc() - return retry(errors.Wrapf(err, "delete block %s from bucket", id)) + return retry(errors.Wrapf(err, "mark block %s for deletion", id)) } - s.metrics.blocksMarkedForDeletion.Inc() // Immediately update our in-memory state so no further call to SyncMetas is needed // after running garbage collection. @@ -568,10 +586,9 @@ func RepairIssue347(ctx context.Context, logger log.Logger, bkt objstore.Bucket, defer cancel() // TODO(bplotka): Issue with this will introduce overlap that will halt compactor. Automate that (fix duplicate overlaps caused by this). - if err := block.MarkForDeletion(delCtx, logger, bkt, ie.id); err != nil { + if err := block.MarkForDeletion(delCtx, logger, bkt, ie.id, blocksMarkedForDeletion); err != nil { return errors.Wrapf(err, "deleting old block %s failed. You need to delete this block manually", ie.id) } - blocksMarkedForDeletion.Inc() return nil } @@ -702,7 +719,7 @@ func (cg *Group) compact(ctx context.Context, dir string, comp tsdb.Compactor) ( if overlappingBlocks { cg.verticalCompactions.Inc() } - level.Info(cg.logger).Log("msg", "compacted blocks", + level.Info(cg.logger).Log("msg", "compacted blocks", "new", compID, "blocks", fmt.Sprintf("%v", plan), "duration", time.Since(begin), "overlapping_blocks", overlappingBlocks) bdir := filepath.Join(dir, compID.String()) @@ -773,10 +790,9 @@ func (cg *Group) deleteBlock(b string) error { delCtx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) defer cancel() level.Info(cg.logger).Log("msg", "marking compacted block for deletion", "old_block", id) - if err := block.MarkForDeletion(delCtx, cg.logger, cg.bkt, id); err != nil { + if err := block.MarkForDeletion(delCtx, cg.logger, cg.bkt, id, cg.blocksMarkedForDeletion); err != nil { return errors.Wrapf(err, "delete block %s from bucket", id) } - cg.blocksMarkedForDeletion.Inc() return nil } @@ -869,29 +885,26 @@ func (c *BucketCompactor) Compact(ctx context.Context) error { } level.Info(c.logger).Log("msg", "start sync of metas") - if err := c.sy.SyncMetas(ctx); err != nil { return errors.Wrap(err, "sync") } level.Info(c.logger).Log("msg", "start of GC") - // Blocks that were compacted are garbage collected after each Compaction. // However if compactor crashes we need to resolve those on startup. if err := c.sy.GarbageCollect(ctx); err != nil { return errors.Wrap(err, "garbage") } - level.Info(c.logger).Log("msg", "start of compaction") - groups, err := c.sy.Groups() if err != nil { return errors.Wrap(err, "build compaction groups") } + level.Info(c.logger).Log("msg", "start of compactions") + // Send all groups found during this pass to the compaction workers. var groupErrs terrors.MultiError - groupLoop: for _, g := range groups { select { diff --git a/pkg/compact/retention.go b/pkg/compact/retention.go index eb07507d9d7..8d1ba7d5fb7 100644 --- a/pkg/compact/retention.go +++ b/pkg/compact/retention.go @@ -9,21 +9,25 @@ import ( "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" + "github.com/oklog/ulid" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore" ) // ApplyRetentionPolicyByResolution removes blocks depending on the specified retentionByResolution based on blocks MaxTime. // A value of 0 disables the retention for its resolution. -func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket, fetcher block.MetadataFetcher, retentionByResolution map[ResolutionLevel]time.Duration, blocksMarkedForDeletion prometheus.Counter) error { +func ApplyRetentionPolicyByResolution( + ctx context.Context, + logger log.Logger, + bkt objstore.Bucket, + metas map[ulid.ULID]*metadata.Meta, + retentionByResolution map[ResolutionLevel]time.Duration, + blocksMarkedForDeletion prometheus.Counter, +) error { level.Info(logger).Log("msg", "start optional retention") - metas, _, err := fetcher.Fetch(ctx) - if err != nil { - return errors.Wrap(err, "fetch metas") - } - for id, m := range metas { retentionDuration := retentionByResolution[ResolutionLevel(m.Thanos.Downsample.Resolution)] if retentionDuration.Seconds() == 0 { @@ -33,13 +37,11 @@ func ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bk maxTime := time.Unix(m.MaxTime/1000, 0) if time.Now().After(maxTime.Add(retentionDuration)) { level.Info(logger).Log("msg", "applying retention: marking block for deletion", "id", id, "maxTime", maxTime.String()) - if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + if err := block.MarkForDeletion(ctx, logger, bkt, id, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, "delete block") } - blocksMarkedForDeletion.Inc() } } - level.Info(logger).Log("msg", "optional retention apply done") return nil } diff --git a/pkg/compact/retention_test.go b/pkg/compact/retention_test.go index ca27429890e..8d3cee397d8 100644 --- a/pkg/compact/retention_test.go +++ b/pkg/compact/retention_test.go @@ -248,7 +248,11 @@ func TestApplyRetentionPolicyByResolution(t *testing.T) { testutil.Ok(t, err) blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) - if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metaFetcher, tt.retentionByResolution, blocksMarkedForDeletion); (err != nil) != tt.wantErr { + + metas, _, err := metaFetcher.Fetch(ctx) + testutil.Ok(t, err) + + if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, metas, tt.retentionByResolution, blocksMarkedForDeletion); (err != nil) != tt.wantErr { t.Errorf("ApplyRetentionPolicyByResolution() error = %v, wantErr %v", err, tt.wantErr) } diff --git a/pkg/verifier/safe_delete.go b/pkg/verifier/safe_delete.go index b124317e290..5e5e5e53161 100644 --- a/pkg/verifier/safe_delete.go +++ b/pkg/verifier/safe_delete.go @@ -80,11 +80,9 @@ func BackupAndDelete(ctx context.Context, logger log.Logger, bkt, backupBkt objs } level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) - if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + if err := block.MarkForDeletion(ctx, logger, bkt, id, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, "marking delete from source") } - blocksMarkedForDeletion.Inc() - return nil } @@ -119,10 +117,9 @@ func BackupAndDeleteDownloaded(ctx context.Context, logger log.Logger, bdir stri } level.Info(logger).Log("msg", "Marking block as deleted", "id", id.String()) - if err := block.MarkForDeletion(ctx, logger, bkt, id); err != nil { + if err := block.MarkForDeletion(ctx, logger, bkt, id, blocksMarkedForDeletion); err != nil { return errors.Wrap(err, "marking delete from source") } - blocksMarkedForDeletion.Inc() return nil } From eedbaa27b27fae803c0668ed54af29fe28b8d06e Mon Sep 17 00:00:00 2001 From: Xiang Dai <764524258@qq.com> Date: Tue, 7 Apr 2020 00:48:28 +0800 Subject: [PATCH 089/190] Compactor: Document reasons and solutions about overlaps (#2191) * troubleshooting.md: document overlaps Signed-off-by: Xiang Dai <764524258@qq.com> * feedback Signed-off-by: Xiang Dai <764524258@qq.com> * feedback Signed-off-by: Xiang Dai <764524258@qq.com> --- docs/operating/troubleshooting.md | 36 ++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/docs/operating/troubleshooting.md b/docs/operating/troubleshooting.md index 58fb4b0ff60..444b34fced8 100644 --- a/docs/operating/troubleshooting.md +++ b/docs/operating/troubleshooting.md @@ -5,4 +5,38 @@ menu: operating slug: /troubleshooting.md --- -Work in progress (: +# Troubleshooting; Common cases + + +## Overlaps + +**Block overlap**: Set of blocks with exactly the same external labels in meta.json and for the same time or overlapping time period. + +Thanos is designed to never end up with overlapped blocks. This means that (uncontrolled) block overlap should never happen in a healthy and well configured Thanos system. That's why there is no automatic repair for this. Since it's an unexpected incident: +* All reader components like Store Gateway will handle this gracefully (overlapped samples will be deduplicated). +* Thanos compactor will stop all activities and HALT or crash (with metric and will error log). This is because it cannot perform compactions and downsampling. In the overlap situation, we know something unexpected happened (e.g manual block upload, some malformed data etc), so it's safer to stop or crash loop (it's configurable). + +Let's take an example: + +- `msg="critical error detected; halting" err="compaction failed: compaction: pre compaction overlap check: overlaps found while gathering blocks. [mint: 1555128000000, maxt: 1555135200000, range: 2h0m0s, blocks: 2]: , ` + +In this halted example, we can read that compactor detected 2 overlapped blocks. What's interesting is that those two blocks look like they are "similar". They are exactly for the same period of time. This might mean that potential reasons are: + +* Duplicated upload with different ULID (non-persistent storage for Prometheus can cause this) +* 2 Prometheus instances are misconfigured and they are uploading the data with exactly the same external labels. This is wrong, they should be unique. + +Checking producers log for such ULID, and checking meta.json (e.g if sample stats are the same or not) helps. Checksum the index and chunks files as well to reveal if data is exactly the same, thus ok to be removed manually. + +### Reasons + +- Misconfiguraiton of sidecar/ruler: Same external labels or no external labels across many block producers. +- Running multiple compactors for single block "stream", even for short duration. +- Manually uploading blocks to the bucket. +- Eventually consistent block storage until we fully implement [RW for bucket](https://thanos.io/proposals/201901-read-write-operations-bucket.md) + +### Solutions + +- Compactor can be blocked for some time, but if it is urgent. Mitigate by removing overlap or better: Backing up somewhere else (you can rename block ULID to non-ulid). +- Who uploaded the block? Search for logs with this ULID across all sidecars/rulers. Check access logs to object storage. Check debug/metas or meta.json of problematic block to see how blocks looks like and what is the `source`. +- Determine what you misconfigured. +- If all looks sane and you double-checked everything: Then post an issue on Github, Bugs can happen but we heavily test against such problems. From 6d7e33e6808438555bd6c0fafc8c4855b27f0248 Mon Sep 17 00:00:00 2001 From: Ben Ye Date: Mon, 6 Apr 2020 17:11:47 -0400 Subject: [PATCH 090/190] add reminder label to stale bot config (#2378) Signed-off-by: yeya24 --- .github/stale.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index ab344e9349f..d2431d4911e 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -12,7 +12,9 @@ onlyLabels: [] # Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable. # We want stale bot to notify us that something is stale so we can revisit it. -exemptLabels: [] +# If one issue is marked as 'reminder' by the reminder bot, we don't mark it as 'stale' again. +exemptLabels: + - reminder # Set to true to ignore issues in a project (defaults to false) exemptProjects: false From 1a2edf19475b854181e5abaa4b6f1c9caf2a1547 Mon Sep 17 00:00:00 2001 From: Ben Ye Date: Mon, 6 Apr 2020 18:00:18 -0400 Subject: [PATCH 091/190] fix sharding docs style; fix promtail link (#2379) Signed-off-by: yeya24 --- docs/sharding.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/sharding.md b/docs/sharding.md index 34eca303186..6fc3bcc3809 100644 --- a/docs/sharding.md +++ b/docs/sharding.md @@ -22,14 +22,18 @@ This means that with time you might want to scale out certain components e.g: # Relabelling -Similar to [promtail](https://github.com/grafana/loki/blob/master/docs/promtail.md#scrape-configs) this config will follow native +Similar to [promtail](https://github.com/grafana/loki/blob/master/docs/clients/promtail/configuration.md#relabel_config) this config will follow native [Prometheus relabel-config](https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config) syntax. Now, thanos only support following relabel actions: + * keep + * drop + * hashmod * `external labels` for all components + * `__block_id` for store gateway, see this [example](https://github.com/observatorium/configuration/blob/bf1304b0d7bce2ae3fefa80412bb358f9aa176fb/environments/openshift/manifests/observatorium-template.yaml#L1514-L1521) The relabel config defines filtering process done on **every** synchronization with object storage. From c0b91790b6059be230e9dd0a06ead0402fef1092 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Wed, 8 Apr 2020 09:52:37 +0100 Subject: [PATCH 092/190] store: Fixed binary header bug that was causing all postings to be kept in memory instead of 1/32 as we meant. (#2390) * store: Fixed binary header bug that was causing all postings to be kept in memory instead of 1/32 as we meant. Spotted by @mkabischev! Thanks to you and @d-ulyanov as well! Epic finding +1 Test output before fix: testutil.Equals(t, 1, br.version) testutil.Equals(t, 2, br.indexVersion) testutil.Equals(t, &BinaryTOC{Symbols: headerLen, PostingsOffsetTable: 66}, br.toc) testutil.Equals(t, int64(626), br.indexLastPostingEnd) testutil.Equals(t, 8, br.symbols.Size()) testutil.Equals(t, map[string]*postingValueOffsets{ "": { offsets: []postingOffset{{value: "", tableOff: 4}}, lastValOffset: 392, }, "a": { offsets: []postingOffset{ {value: "1", tableOff: 9}, {value: "11", tableOff: 16}, {value: "12", tableOff: 24}, {value: "2", tableOff: 32}, {value: "3", tableOff: 39}, {value: "4", tableOff: 46}, {value: "5", tableOff: 53}, {value: "6", tableOff: 60}, {value: "7", tableOff: 67}, {value: "8", tableOff: 74}, {value: "9", tableOff: 81}, }, lastValOffset: 572, }, "longer-string": { offsets: []postingOffset{{value: "1", tableOff: 88}}, lastValOffset: 622, }, }, br.postings) testutil.Equals(t, 0, len(br.postingsV1)) testutil.Equals(t, 2, len(br.nameSymbols)) Signed-off-by: Bartlomiej Plotka * Added CHANGELOG item. Signed-off-by: Bartlomiej Plotka * Fixed build errs. Signed-off-by: Bartlomiej Plotka * Addressed Lucas comment. Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 2 ++ cmd/thanos/store.go | 9 +++++ pkg/block/indexheader/binary_reader.go | 46 +++++++++++++++----------- pkg/block/indexheader/header_test.go | 46 +++++++++++++++++++++----- pkg/store/bucket.go | 28 ++++++++++------ pkg/store/bucket_e2e_test.go | 1 + pkg/store/bucket_test.go | 12 ++++--- 7 files changed, 100 insertions(+), 44 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53734cf467e..5e3beefc4a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,6 +24,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2208](https://github.com/thanos-io/thanos/pull/2208) Query and Rule: fix handling of `web.route-prefix` to correctly handle `/` and prefixes that do not begin with a `/`. - [#2311](https://github.com/thanos-io/thanos/pull/2311) Receive: ensure receive component serves TLS when TLS configuration is provided. - [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. +- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: Fixed bug which was causing all posting offsets to be used instead of 1/32 as it was meant. +Added hidden flag to control this behavior. ### Added diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 54421d6e490..7f716562bad 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -5,6 +5,7 @@ package main import ( "context" + "fmt" "path" "time" @@ -86,6 +87,11 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { disableIndexHeader := cmd.Flag("store.disable-index-header", "If specified, Store Gateway will use index-cache.json for each block instead of recreating binary index-header"). Hidden().Default("false").Bool() + postingOffsetsInMemSampling := cmd.Flag("store.index-header-posting-offsets-in-mem-sampling", "Controls what is the ratio of postings offsets store will hold in memory. "+ + "Larger value will keep less offsets, which will increase CPU cycles needed for query touching those postings. It's meant for setups that want low baseline memory pressure and where less traffic is expected. "+ + "On the contrary, smaller value will increase baseline memory usage, but improve latency slightly. 1 will keep all in memory. Default value is the same as in Prometheus which gives a good balance. This works only when --store.disable-index-header is NOT specified."). + Hidden().Default(fmt.Sprintf("%v", store.DefaultPostingOffsetInMemorySampling)).Int() + enablePostingsCompression := cmd.Flag("experimental.enable-index-cache-postings-compression", "If true, Store Gateway will reencode and compress postings before storing them into cache. Compressed postings take about 10% of the original size."). Hidden().Default("false").Bool() @@ -142,6 +148,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { time.Duration(*ignoreDeletionMarksDelay), *webExternalPrefix, *webPrefixHeaderName, + *postingOffsetsInMemSampling, ) } } @@ -171,6 +178,7 @@ func runStore( consistencyDelay time.Duration, ignoreDeletionMarksDelay time.Duration, externalPrefix, prefixHeader string, + postingOffsetsInMemSampling int, ) error { grpcProbe := prober.NewGRPC() httpProbe := prober.NewHTTP() @@ -275,6 +283,7 @@ func runStore( advertiseCompatibilityLabel, !disableIndexHeader, enablePostingsCompression, + postingOffsetsInMemSampling, ) if err != nil { return errors.Wrap(err, "create object storage store") diff --git a/pkg/block/indexheader/binary_reader.go b/pkg/block/indexheader/binary_reader.go index e14e98be3f6..02641f6edff 100644 --- a/pkg/block/indexheader/binary_reader.go +++ b/pkg/block/indexheader/binary_reader.go @@ -42,8 +42,6 @@ const ( // MagicIndex are 4 bytes at the head of an index-header file. MagicIndex = 0xBAAAD792 - symbolFactor = 32 - postingLengthFieldSize = 4 ) @@ -428,11 +426,12 @@ type BinaryReader struct { c io.Closer // Map of LabelName to a list of some LabelValues's position in the offset table. - // The first and last values for each name are always present. + // The first and last values for each name are always present, we keep only 1/postingOffsetsInMemSampling of the rest. postings map[string]*postingValueOffsets // For the v1 format, labelname -> labelvalue -> offset. postingsV1 map[string]map[string]index.Range + // Symbols struct that keeps only 1/postingOffsetsInMemSampling in the memory, then looks up the rest via mmap. symbols *index.Symbols nameSymbols map[uint32]string // Cache of the label name symbol lookups, // as there are not many and they are half of all lookups. @@ -442,12 +441,14 @@ type BinaryReader struct { version int indexVersion int indexLastPostingEnd int64 + + postingOffsetsInMemSampling int } // NewBinaryReader loads or builds new index-header if not present on disk. -func NewBinaryReader(ctx context.Context, logger log.Logger, bkt objstore.BucketReader, dir string, id ulid.ULID) (*BinaryReader, error) { +func NewBinaryReader(ctx context.Context, logger log.Logger, bkt objstore.BucketReader, dir string, id ulid.ULID, postingOffsetsInMemSampling int) (*BinaryReader, error) { binfn := filepath.Join(dir, id.String(), block.IndexHeaderFilename) - br, err := newFileBinaryReader(binfn) + br, err := newFileBinaryReader(binfn, postingOffsetsInMemSampling) if err == nil { return br, nil } @@ -460,11 +461,10 @@ func NewBinaryReader(ctx context.Context, logger log.Logger, bkt objstore.Bucket } level.Debug(logger).Log("msg", "built index-header file", "path", binfn, "elapsed", time.Since(start)) - - return newFileBinaryReader(binfn) + return newFileBinaryReader(binfn, postingOffsetsInMemSampling) } -func newFileBinaryReader(path string) (bw *BinaryReader, err error) { +func newFileBinaryReader(path string, postingOffsetsInMemSampling int) (bw *BinaryReader, err error) { f, err := fileutil.OpenMmapFile(path) if err != nil { return nil, err @@ -476,9 +476,10 @@ func newFileBinaryReader(path string) (bw *BinaryReader, err error) { }() r := &BinaryReader{ - b: realByteSlice(f.Bytes()), - c: f, - postings: map[string]*postingValueOffsets{}, + b: realByteSlice(f.Bytes()), + c: f, + postings: map[string]*postingValueOffsets{}, + postingOffsetsInMemSampling: postingOffsetsInMemSampling, } // Verify header. @@ -502,6 +503,7 @@ func newFileBinaryReader(path string) (bw *BinaryReader, err error) { return nil, errors.Wrap(err, "read index header TOC") } + // TODO(bwplotka): Consider contributing to Prometheus to allow specifying custom number for symbolsFactor. r.symbols, err = index.NewSymbols(r.b, r.indexVersion, int(r.toc.Symbols)) if err != nil { return nil, errors.Wrap(err, "read symbols") @@ -551,11 +553,12 @@ func newFileBinaryReader(path string) (bw *BinaryReader, err error) { } if _, ok := r.postings[key[0]]; !ok { - // Next label name. + // Not seen before label name. r.postings[key[0]] = &postingValueOffsets{} if lastKey != nil { - if valueCount%symbolFactor != 0 { - // Always include last value for each label name. + // Always include last value for each label name, unless it was just added in previous iteration based + // on valueCount. + if (valueCount-1)%postingOffsetsInMemSampling != 0 { r.postings[lastKey[0]].offsets = append(r.postings[lastKey[0]].offsets, postingOffset{value: lastKey[1], tableOff: lastTableOff}) } r.postings[lastKey[0]].lastValOffset = int64(off - crc32.Size) @@ -565,21 +568,24 @@ func newFileBinaryReader(path string) (bw *BinaryReader, err error) { } lastKey = key - if valueCount%symbolFactor == 0 { + lastTableOff = tableOff + valueCount++ + + if (valueCount-1)%postingOffsetsInMemSampling == 0 { r.postings[key[0]].offsets = append(r.postings[key[0]].offsets, postingOffset{value: key[1], tableOff: tableOff}) - return nil } - lastTableOff = tableOff - valueCount++ return nil }); err != nil { return nil, errors.Wrap(err, "read postings table") } if lastKey != nil { - if valueCount%symbolFactor != 0 { + if (valueCount-1)%postingOffsetsInMemSampling != 0 { + // Always include last value for each label name if not included already based on valueCount. r.postings[lastKey[0]].offsets = append(r.postings[lastKey[0]].offsets, postingOffset{value: lastKey[1], tableOff: lastTableOff}) } + // In any case lastValOffset is unknown as don't have next posting anymore. Guess from TOC table. + // In worst case we will overfetch a few bytes. r.postings[lastKey[0]].lastValOffset = r.indexLastPostingEnd - crc32.Size } // Trim any extra space in the slices. @@ -787,7 +793,7 @@ func (r BinaryReader) LabelValues(name string) ([]string, error) { if len(e.offsets) == 0 { return nil, nil } - values := make([]string, 0, len(e.offsets)*symbolFactor) + values := make([]string, 0, len(e.offsets)*r.postingOffsetsInMemSampling) d := encoding.NewDecbufAt(r.b, int(r.toc.PostingsOffsetTable), nil) d.Skip(e.offsets[0].tableOff) diff --git a/pkg/block/indexheader/header_test.go b/pkg/block/indexheader/header_test.go index c0cc76d3f83..cc897919f18 100644 --- a/pkg/block/indexheader/header_test.go +++ b/pkg/block/indexheader/header_test.go @@ -45,6 +45,15 @@ func TestReaders(t *testing.T) { {{Name: "a", Value: "2"}}, {{Name: "a", Value: "3"}}, {{Name: "a", Value: "4"}}, + {{Name: "a", Value: "5"}}, + {{Name: "a", Value: "6"}}, + {{Name: "a", Value: "7"}}, + {{Name: "a", Value: "8"}}, + {{Name: "a", Value: "9"}}, + // Missing 10 on purpose. + {{Name: "a", Value: "11"}}, + {{Name: "a", Value: "12"}}, + {{Name: "a", Value: "13"}}, {{Name: "a", Value: "1"}, {Name: "longer-string", Value: "1"}}, }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "1"}}, 124) testutil.Ok(t, err) @@ -92,7 +101,7 @@ func TestReaders(t *testing.T) { fn := filepath.Join(tmpDir, id.String(), block.IndexHeaderFilename) testutil.Ok(t, WriteBinary(ctx, bkt, id, fn)) - br, err := NewBinaryReader(ctx, log.NewNopLogger(), nil, tmpDir, id) + br, err := NewBinaryReader(ctx, log.NewNopLogger(), nil, tmpDir, id, 3) testutil.Ok(t, err) defer func() { testutil.Ok(t, br.Close()) }() @@ -100,10 +109,29 @@ func TestReaders(t *testing.T) { if id == id1 { testutil.Equals(t, 1, br.version) testutil.Equals(t, 2, br.indexVersion) - testutil.Equals(t, &BinaryTOC{Symbols: headerLen, PostingsOffsetTable: 50}, br.toc) - testutil.Equals(t, int64(330), br.indexLastPostingEnd) + testutil.Equals(t, &BinaryTOC{Symbols: headerLen, PostingsOffsetTable: 69}, br.toc) + testutil.Equals(t, int64(666), br.indexLastPostingEnd) testutil.Equals(t, 8, br.symbols.Size()) - testutil.Equals(t, 3, len(br.postings)) + testutil.Equals(t, map[string]*postingValueOffsets{ + "": { + offsets: []postingOffset{{value: "", tableOff: 4}}, + lastValOffset: 416, + }, + "a": { + offsets: []postingOffset{ + {value: "1", tableOff: 9}, + {value: "13", tableOff: 32}, + {value: "4", tableOff: 54}, + {value: "7", tableOff: 75}, + {value: "9", tableOff: 89}, + }, + lastValOffset: 612, + }, + "longer-string": { + offsets: []postingOffset{{value: "1", tableOff: 96}}, + lastValOffset: 662, + }, + }, br.postings) testutil.Equals(t, 0, len(br.postingsV1)) testutil.Equals(t, 2, len(br.nameSymbols)) } @@ -121,9 +149,9 @@ func TestReaders(t *testing.T) { defer func() { testutil.Ok(t, jr.Close()) }() if id == id1 { - testutil.Equals(t, 6, len(jr.symbols)) + testutil.Equals(t, 14, len(jr.symbols)) testutil.Equals(t, 2, len(jr.lvals)) - testutil.Equals(t, 6, len(jr.postings)) + testutil.Equals(t, 14, len(jr.postings)) } compareIndexToHeader(t, b, jr) @@ -224,12 +252,14 @@ func compareIndexToHeader(t *testing.T, indexByteSlice index.ByteSlice, headerRe testutil.Equals(t, expRanges[labels.Label{Name: "", Value: ""}].Start, ptr.Start) testutil.Equals(t, expRanges[labels.Label{Name: "", Value: ""}].End, ptr.End) + // Check not existing. vals, err := indexReader.LabelValues("not-existing") testutil.Ok(t, err) testutil.Equals(t, []string(nil), vals) - _, err = headerReader.PostingsOffset("not-existing", "1") testutil.NotOk(t, err) + _, err = headerReader.PostingsOffset("a", "10") + testutil.NotOk(t, err) } func prepareIndexV2Block(t testing.TB, tmpDir string, bkt objstore.Bucket) *metadata.Meta { @@ -392,7 +422,7 @@ func BenchmarkBinaryReader(t *testing.B) { t.ResetTimer() for i := 0; i < t.N; i++ { - br, err := newFileBinaryReader(fn) + br, err := newFileBinaryReader(fn, 32) testutil.Ok(t, err) testutil.Ok(t, br.Close()) } diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index 4d2704b1fea..e0a10843122 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -59,10 +59,8 @@ const ( // because you barely get any improvements in compression when the number of samples is beyond this. // Take a look at Figure 6 in this whitepaper http://www.vldb.org/pvldb/vol8/p1816-teller.pdf. maxSamplesPerChunk = 120 - - maxChunkSize = 16000 - - maxSeriesSize = 64 * 1024 + maxChunkSize = 16000 + maxSeriesSize = 64 * 1024 // CompatibilityTypeLabelName is an artificial label that Store Gateway can optionally advertise. This is required for compatibility // with pre v0.8.0 Querier. Previous Queriers was strict about duplicated external labels of all StoreAPIs that had any labels. @@ -76,6 +74,11 @@ const ( // TODO(bwplotka): Remove it at some point. CompatibilityTypeLabelName = "@thanos_compatibility_store_type" + // DefaultPostingOffsetInMemorySampling represents default value for --store.index-header-posting-offsets-in-mem-sampling. + // 32 value is chosen as it's a good balance for common setups. Sampling that is not too large (too many CPU cycles) and + // not too small (too much memory). + DefaultPostingOffsetInMemorySampling = 32 + partitionerMaxGapSize = 512 * 1024 ) @@ -252,7 +255,8 @@ type BucketStore struct { // Reencode postings using diff+varint+snappy when storing to cache. // This makes them smaller, but takes extra CPU and memory. // When used with in-memory cache, memory usage should decrease overall, thanks to postings being smaller. - enablePostingsCompression bool + enablePostingsCompression bool + postingOffsetsInMemSampling int } // NewBucketStore creates a new bucket backed store that implements the store API against @@ -273,6 +277,7 @@ func NewBucketStore( enableCompatibilityLabel bool, enableIndexHeader bool, enablePostingsCompression bool, + postingOffsetsInMemSampling int, ) (*BucketStore, error) { if logger == nil { logger = log.NewNopLogger() @@ -304,11 +309,12 @@ func NewBucketStore( maxConcurrent, extprom.WrapRegistererWithPrefix("thanos_bucket_store_series_", reg), ), - samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), - partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, - enableCompatibilityLabel: enableCompatibilityLabel, - enableIndexHeader: enableIndexHeader, - enablePostingsCompression: enablePostingsCompression, + samplesLimiter: NewLimiter(maxSampleCount, metrics.queriesDropped), + partitioner: gapBasedPartitioner{maxGapSize: partitionerMaxGapSize}, + enableCompatibilityLabel: enableCompatibilityLabel, + enableIndexHeader: enableIndexHeader, + enablePostingsCompression: enablePostingsCompression, + postingOffsetsInMemSampling: postingOffsetsInMemSampling, } s.metrics = metrics @@ -463,7 +469,7 @@ func (s *BucketStore) addBlock(ctx context.Context, meta *metadata.Meta) (err er var indexHeaderReader indexheader.Reader if s.enableIndexHeader { - indexHeaderReader, err = indexheader.NewBinaryReader(ctx, s.logger, s.bkt, s.dir, meta.ULID) + indexHeaderReader, err = indexheader.NewBinaryReader(ctx, s.logger, s.bkt, s.dir, meta.ULID, s.postingOffsetsInMemSampling) if err != nil { return errors.Wrap(err, "create index header reader") } diff --git a/pkg/store/bucket_e2e_test.go b/pkg/store/bucket_e2e_test.go index 8b0e4e9070e..25ceda8ef21 100644 --- a/pkg/store/bucket_e2e_test.go +++ b/pkg/store/bucket_e2e_test.go @@ -168,6 +168,7 @@ func prepareStoreWithTestBlocks(t testing.TB, dir string, bkt objstore.Bucket, m true, true, true, + DefaultPostingOffsetInMemorySampling, ) testutil.Ok(t, err) s.store = store diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index d9c7bffd642..331660db80c 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -480,6 +480,7 @@ func TestBucketStore_Info(t *testing.T) { true, true, true, + DefaultPostingOffsetInMemorySampling, ) testutil.Ok(t, err) @@ -732,6 +733,7 @@ func testSharding(t *testing.T, reuseDisk string, bkt objstore.Bucket, all ...ul true, true, true, + DefaultPostingOffsetInMemorySampling, ) testutil.Ok(t, err) @@ -895,7 +897,7 @@ func TestBucketIndexReader_ExpandedPostings(t *testing.T) { id := uploadTestBlock(tb, tmpDir, bkt, 500) - r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) + r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id, DefaultPostingOffsetInMemorySampling) testutil.Ok(tb, err) benchmarkExpandedPostings(tb, bkt, id, r, 500) @@ -913,7 +915,7 @@ func BenchmarkBucketIndexReader_ExpandedPostings(b *testing.B) { defer func() { testutil.Ok(tb, bkt.Close()) }() id := uploadTestBlock(tb, tmpDir, bkt, 50e5) - r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id) + r, err := indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, id, DefaultPostingOffsetInMemorySampling) testutil.Ok(tb, err) benchmarkExpandedPostings(tb, bkt, id, r, 50e5) @@ -1321,7 +1323,7 @@ func benchSeries(t testutil.TB, number int, dimension Dimension, cases ...int) { } for _, block := range blocks { - block.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, block.meta.ULID) + block.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, block.meta.ULID, DefaultPostingOffsetInMemorySampling) testutil.Ok(t, err) } @@ -1507,7 +1509,7 @@ func TestSeries_OneBlock_InMemIndexCacheSegfault(t *testing.T) { chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, chunkPool: chunkPool, } - b1.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b1.meta.ULID) + b1.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b1.meta.ULID, DefaultPostingOffsetInMemorySampling) testutil.Ok(t, err) } @@ -1545,7 +1547,7 @@ func TestSeries_OneBlock_InMemIndexCacheSegfault(t *testing.T) { chunkObjs: []string{filepath.Join(id.String(), "chunks", "000001")}, chunkPool: chunkPool, } - b2.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b2.meta.ULID) + b2.indexHeaderReader, err = indexheader.NewBinaryReader(context.Background(), log.NewNopLogger(), bkt, tmpDir, b2.meta.ULID, DefaultPostingOffsetInMemorySampling) testutil.Ok(t, err) } From 9ab13575100a9a6d104136d1b8ad8d940b14667c Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Wed, 8 Apr 2020 12:49:51 +0100 Subject: [PATCH 093/190] store: Fixed critical bug, when certain not-existing value queried was causing "invalid size" error. (#2393) Reason why we could not reproduce it locally was that for most of non-existing value we were lucky that buffer was still long enough and we could read and decode some (malformed) variadic type. For certain rare cases, buffer was not long enough. Fixed and spotted thanks to amazing @mkabischev! * Added more regression tests for binary header. Without the fix it fails with: ``` header_test.go:154: header_test.go:154: exp: range not found got: get postings offset entry: invalid size ``` Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 1 + pkg/block/indexheader/binary_reader.go | 111 +++++++++++++++++-------- pkg/block/indexheader/header_test.go | 57 +++++++++---- 3 files changed, 118 insertions(+), 51 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e3beefc4a3..d1511528ad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. - [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: Fixed bug which was causing all posting offsets to be used instead of 1/32 as it was meant. Added hidden flag to control this behavior. +- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: Fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. ### Added diff --git a/pkg/block/indexheader/binary_reader.go b/pkg/block/indexheader/binary_reader.go index 02641f6edff..a070d9275b3 100644 --- a/pkg/block/indexheader/binary_reader.go +++ b/pkg/block/indexheader/binary_reader.go @@ -653,6 +653,18 @@ func (r BinaryReader) PostingsOffset(name string, value string) (index.Range, er return rngs[0], nil } +func skipNAndName(d *encoding.Decbuf, buf *int) { + if *buf == 0 { + // Keycount+LabelName are always the same number of bytes, + // and it's faster to skip than parse. + *buf = d.Len() + d.Uvarint() // Keycount. + d.UvarintBytes() // Label name. + *buf -= d.Len() + return + } + d.Skip(*buf) +} func (r BinaryReader) postingsOffset(name string, values ...string) ([]index.Range, error) { rngs := make([]index.Range, 0, len(values)) if r.indexVersion == index.FormatV1 { @@ -679,76 +691,107 @@ func (r BinaryReader) postingsOffset(name string, values ...string) ([]index.Ran return nil, nil } - skip := 0 + buf := 0 valueIndex := 0 for valueIndex < len(values) && values[valueIndex] < e.offsets[0].value { // Discard values before the start. valueIndex++ } - var tmpRngs []index.Range // The start, end offsets in the postings table in the original index file. + var newSameRngs []index.Range // The start, end offsets in the postings table in the original index file. for valueIndex < len(values) { - value := values[valueIndex] + wantedValue := values[valueIndex] - i := sort.Search(len(e.offsets), func(i int) bool { return e.offsets[i].value >= value }) + i := sort.Search(len(e.offsets), func(i int) bool { return e.offsets[i].value >= wantedValue }) if i == len(e.offsets) { // We're past the end. break } - if i > 0 && e.offsets[i].value != value { + if i > 0 && e.offsets[i].value != wantedValue { // Need to look from previous entry. i-- } + // Don't Crc32 the entire postings offset table, this is very slow // so hope any issues were caught at startup. d := encoding.NewDecbufAt(r.b, int(r.toc.PostingsOffsetTable), nil) d.Skip(e.offsets[i].tableOff) - tmpRngs = tmpRngs[:0] // Iterate on the offset table. + newSameRngs = newSameRngs[:0] for d.Err() == nil { - if skip == 0 { - // These are always the same number of bytes, - // and it's faster to skip than parse. - skip = d.Len() - d.Uvarint() // Keycount. - d.UvarintBytes() // Label name. - skip -= d.Len() - } else { - d.Skip(skip) + // Posting format entry is as follows: + // │ ┌────────────────────────────────────────┐ │ + // │ │ n = 2 <1b> │ │ + // │ ├──────────────────────┬─────────────────┤ │ + // │ │ len(name) │ name │ │ + // │ ├──────────────────────┼─────────────────┤ │ + // │ │ len(value) │ value │ │ + // │ ├──────────────────────┴─────────────────┤ │ + // │ │ offset │ │ + // │ └────────────────────────────────────────┘ │ + // First, let's skip n and name. + skipNAndName(&d, &buf) + value := d.UvarintBytes() // Label value. + postingOffset := int64(d.Uvarint64()) + + if len(newSameRngs) > 0 { + // We added some ranges in previous iteration. Use next posting offset as end of all our new ranges. + for j := range newSameRngs { + newSameRngs[j].End = postingOffset - crc32.Size + } + rngs = append(rngs, newSameRngs...) + newSameRngs = newSameRngs[:0] } - v := d.UvarintBytes() // Label value. - postingOffset := int64(d.Uvarint64()) // Offset. - for string(v) >= value { - if string(v) == value { - tmpRngs = append(tmpRngs, index.Range{Start: postingOffset + postingLengthFieldSize}) + + for string(value) >= wantedValue { + // If wantedValue is equals of greater than current value, loop over all given wanted values in the values until + // this is no longer true or there are no more values wanted. + // This ensures we cover case when someone asks for postingsOffset(name, value1, value1, value1). + + // Record on the way if wanted value is equal to the current value. + if string(value) == wantedValue { + newSameRngs = append(newSameRngs, index.Range{Start: postingOffset + postingLengthFieldSize}) } valueIndex++ if valueIndex == len(values) { break } - value = values[valueIndex] + wantedValue = values[valueIndex] } + if i+1 == len(e.offsets) { - for i := range tmpRngs { - tmpRngs[i].End = e.lastValOffset + // No more offsets for this name. + // Break this loop and record lastOffset on the way for ranges we just added if any. + for j := range newSameRngs { + newSameRngs[j].End = e.lastValOffset } - rngs = append(rngs, tmpRngs...) - // Need to go to a later postings offset entry, if there is one. + rngs = append(rngs, newSameRngs...) break } - if value >= e.offsets[i+1].value || valueIndex == len(values) { - d.Skip(skip) - d.UvarintBytes() // Label value. - postingOffset := int64(d.Uvarint64()) // Offset. - for j := range tmpRngs { - tmpRngs[j].End = postingOffset - crc32.Size + if valueIndex != len(values) && wantedValue <= e.offsets[i+1].value { + // wantedValue is smaller or same as the next offset we know about, let's iterate further to add those. + continue + } + + // Nothing wanted or wantedValue is larger than next offset we know about. + // Let's exit and do binary search again / exit if nothing wanted. + + if len(newSameRngs) > 0 { + // We added some ranges in this iteration. Use next posting offset as the end of our ranges. + // We know it exists as we never go further in this loop than e.offsets[i, i+1]. + + skipNAndName(&d, &buf) + d.UvarintBytes() // Label value. + postingOffset := int64(d.Uvarint64()) + + for j := range newSameRngs { + newSameRngs[j].End = postingOffset - crc32.Size } - rngs = append(rngs, tmpRngs...) - // Need to go to a later postings offset entry, if there is one. - break + rngs = append(rngs, newSameRngs...) } + break } if d.Err() != nil { return nil, errors.Wrap(d.Err(), "get postings offset entry") diff --git a/pkg/block/indexheader/header_test.go b/pkg/block/indexheader/header_test.go index cc897919f18..2b1e2d802b6 100644 --- a/pkg/block/indexheader/header_test.go +++ b/pkg/block/indexheader/header_test.go @@ -55,6 +55,7 @@ func TestReaders(t *testing.T) { {{Name: "a", Value: "12"}}, {{Name: "a", Value: "13"}}, {{Name: "a", Value: "1"}, {Name: "longer-string", Value: "1"}}, + {{Name: "a", Value: "1"}, {Name: "longer-string", Value: "2"}}, }, 100, 0, 1000, labels.Labels{{Name: "ext1", Value: "1"}}, 124) testutil.Ok(t, err) @@ -110,12 +111,14 @@ func TestReaders(t *testing.T) { testutil.Equals(t, 1, br.version) testutil.Equals(t, 2, br.indexVersion) testutil.Equals(t, &BinaryTOC{Symbols: headerLen, PostingsOffsetTable: 69}, br.toc) - testutil.Equals(t, int64(666), br.indexLastPostingEnd) + testutil.Equals(t, int64(710), br.indexLastPostingEnd) testutil.Equals(t, 8, br.symbols.Size()) + testutil.Equals(t, 0, len(br.postingsV1)) + testutil.Equals(t, 2, len(br.nameSymbols)) testutil.Equals(t, map[string]*postingValueOffsets{ "": { offsets: []postingOffset{{value: "", tableOff: 4}}, - lastValOffset: 416, + lastValOffset: 440, }, "a": { offsets: []postingOffset{ @@ -125,15 +128,44 @@ func TestReaders(t *testing.T) { {value: "7", tableOff: 75}, {value: "9", tableOff: 89}, }, - lastValOffset: 612, + lastValOffset: 640, }, "longer-string": { - offsets: []postingOffset{{value: "1", tableOff: 96}}, - lastValOffset: 662, + offsets: []postingOffset{ + {value: "1", tableOff: 96}, + {value: "2", tableOff: 115}, + }, + lastValOffset: 706, }, }, br.postings) - testutil.Equals(t, 0, len(br.postingsV1)) - testutil.Equals(t, 2, len(br.nameSymbols)) + + vals, err := br.LabelValues("not-existing") + testutil.Ok(t, err) + testutil.Equals(t, []string(nil), vals) + + // Regression tests for https://github.com/thanos-io/thanos/issues/2213. + // Most of not existing value was working despite bug, except in certain unlucky cases + // it was causing "invalid size" errors. + _, err = br.PostingsOffset("not-existing", "1") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("a", "0") + testutil.Equals(t, NotFoundRangeErr, err) + // Unlucky case, because the bug was causing unnecessary read & decode requiring more bytes than + // available. For rest cases read was noop wrong, but at least not failing. + _, err = br.PostingsOffset("a", "10") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("a", "121") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("a", "131") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("a", "91") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("longer-string", "0") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("longer-string", "11") + testutil.Equals(t, NotFoundRangeErr, err) + _, err = br.PostingsOffset("longer-string", "21") + testutil.Equals(t, NotFoundRangeErr, err) } compareIndexToHeader(t, b, br) @@ -151,7 +183,7 @@ func TestReaders(t *testing.T) { if id == id1 { testutil.Equals(t, 14, len(jr.symbols)) testutil.Equals(t, 2, len(jr.lvals)) - testutil.Equals(t, 14, len(jr.postings)) + testutil.Equals(t, 15, len(jr.postings)) } compareIndexToHeader(t, b, jr) @@ -251,15 +283,6 @@ func compareIndexToHeader(t *testing.T, indexByteSlice index.ByteSlice, headerRe testutil.Ok(t, err) testutil.Equals(t, expRanges[labels.Label{Name: "", Value: ""}].Start, ptr.Start) testutil.Equals(t, expRanges[labels.Label{Name: "", Value: ""}].End, ptr.End) - - // Check not existing. - vals, err := indexReader.LabelValues("not-existing") - testutil.Ok(t, err) - testutil.Equals(t, []string(nil), vals) - _, err = headerReader.PostingsOffset("not-existing", "1") - testutil.NotOk(t, err) - _, err = headerReader.PostingsOffset("a", "10") - testutil.NotOk(t, err) } func prepareIndexV2Block(t testing.TB, tmpDir string, bkt objstore.Bucket) *metadata.Meta { From 0a074d585ef007cd028e19b2764a25076c687dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 8 Apr 2020 15:09:53 +0200 Subject: [PATCH 094/190] VERSION: cut v0.12.0-rc.1 (#2396) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 9 +++++---- VERSION | 2 +- tutorials/katacoda/thanos/1-globalview/courseBase.sh | 2 +- tutorials/katacoda/thanos/1-globalview/step2.md | 8 ++++---- tutorials/katacoda/thanos/1-globalview/step3.md | 2 +- 5 files changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1511528ad8..a0412938f25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased -## [v0.12.0-rc.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0-rc.0) - 2020.04.01 +## [v0.12.0-rc.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.0-rc.1) - 2020.04.08 ### Fixed @@ -24,9 +24,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2208](https://github.com/thanos-io/thanos/pull/2208) Query and Rule: fix handling of `web.route-prefix` to correctly handle `/` and prefixes that do not begin with a `/`. - [#2311](https://github.com/thanos-io/thanos/pull/2311) Receive: ensure receive component serves TLS when TLS configuration is provided. - [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. -- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: Fixed bug which was causing all posting offsets to be used instead of 1/32 as it was meant. -Added hidden flag to control this behavior. -- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: Fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. +- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: fixed bug that was causing all posting offsets to be used instead of only 1/32 as intended; added hidden flag to control this behavior. +- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. +- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixex bug causing partial writes of index-header. +- [#2383](https://github.com/thanos-io/thanos/pull/2383) Store: handle expected errors correctly, e.g. do not increment failure counters. ### Added diff --git a/VERSION b/VERSION index 68f8b769413..7a5dd6c28d6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.0-rc.0 +0.12.0-rc.1 diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 5ee8a52718a..afc4ccc382c 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash docker pull quay.io/prometheus/prometheus:v2.16.0 -docker pull quay.io/thanos/thanos:v0.12.0-rc.0 +docker pull quay.io/thanos/thanos:v0.12.0-rc.1 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index e1497b52f3d..aecbe515dfc 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.12.0-rc.0 --help +docker run --rm quay.io/thanos/thanos:v0.12.0-rc.1 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.0 \ + quay.io/thanos/thanos:v0.12.0-rc.1 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.0 \ + quay.io/thanos/thanos:v0.12.0-rc.1 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.0 \ + quay.io/thanos/thanos:v0.12.0-rc.1 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index 641ddc29473..9e3d65df1a8 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.12.0-rc.0 \ + quay.io/thanos/thanos:v0.12.0-rc.1 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ From 7864bf2bd289bb80b7c3f52b4a90989597b0ed35 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Wed, 8 Apr 2020 20:06:04 +0200 Subject: [PATCH 095/190] mixin: Change critical rule alert to be symtom based (#2398) This change makes the critical (typically paging) alert more symptom based, rather than observing data written to disk. Additionally after this change the alert will only fire if there are actually rules loaded. Additionally to no rules loaded the previous alert was also prone to rules that legitimately are not writing data. Signed-off-by: Frederic Branczyk --- examples/alerts/alerts.md | 11 ++++++----- examples/alerts/alerts.yaml | 11 ++++++----- mixin/thanos/alerts/rule.libsonnet | 10 +++++----- 3 files changed, 17 insertions(+), 15 deletions(-) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index 89d76acda30..61098e7cee1 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -181,13 +181,14 @@ rules: for: 5m labels: severity: info -- alert: ThanosRuleTSDBNotIngestingSamples +- alert: ThanosNoRuleEvaluations annotations: - message: Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 - minutes. + message: Thanos Rule {{$labels.job}} did not perform any rule evaluations in the + past 2 minutes. expr: | - sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m])) <= 0 - for: 10m + sum(rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{job=~"thanos-rule.*"}) > 0 labels: severity: critical ``` diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index 8b66f884999..f9c3d099450 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -400,13 +400,14 @@ groups: for: 5m labels: severity: info - - alert: ThanosRuleTSDBNotIngestingSamples + - alert: ThanosNoRuleEvaluations annotations: - message: Thanos Rule {{$labels.job}} did not ingest any samples for the last - 15 minutes. + message: Thanos Rule {{$labels.job}} did not perform any rule evaluations in + the past 2 minutes. expr: | - sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{job=~"thanos-rule.*"}[5m])) <= 0 - for: 10m + sum(rate(prometheus_rule_evaluations_total{job=~"thanos-rule.*"}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{job=~"thanos-rule.*"}) > 0 labels: severity: critical - name: thanos-component-absent.rules diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/thanos/alerts/rule.libsonnet index c2be54c45f9..c0106bcfb06 100644 --- a/mixin/thanos/alerts/rule.libsonnet +++ b/mixin/thanos/alerts/rule.libsonnet @@ -171,15 +171,15 @@ }, }, { - // NOTE: This alert will give false positive if no rules are configured. - alert: 'ThanosRuleTSDBNotIngestingSamples', + alert: 'ThanosNoRuleEvaluations', annotations: { - message: 'Thanos Rule {{$labels.job}} did not ingest any samples for the last 15 minutes.', + message: 'Thanos Rule {{$labels.job}} did not perform any rule evaluations in the past 2 minutes.', }, expr: ||| - sum by (job) (rate(prometheus_tsdb_head_samples_appended_total{%(selector)s}[5m])) <= 0 + sum(rate(prometheus_rule_evaluations_total{%(selector)s}[2m])) <= 0 + and + sum(thanos_rule_loaded_rules{%(selector)s}) > 0 ||| % thanos.rule, - 'for': '10m', labels: { severity: 'critical', }, From 40526f52f54d4501737e5246c0e71e56dd7e0b2d Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 9 Apr 2020 10:13:16 +0100 Subject: [PATCH 096/190] scripts: Added grpcurl script useful for Thanos debugging. (#2403) Signed-off-by: Bartlomiej Plotka --- scripts/genproto.sh | 1 - scripts/insecure_grpcurl_series.sh | 62 ++++++++++++++++++++++++++++++ 2 files changed, 62 insertions(+), 1 deletion(-) create mode 100755 scripts/insecure_grpcurl_series.sh diff --git a/scripts/genproto.sh b/scripts/genproto.sh index 77f6aae5c36..c5660502a73 100755 --- a/scripts/genproto.sh +++ b/scripts/genproto.sh @@ -32,7 +32,6 @@ for dir in ${DIRS}; do ${PROTOC_BIN} --gogofast_out=plugins=grpc:. \ -I=. \ -I="${GOGOPROTO_PATH}" \ - -I="${GOGOPROTO_PATH}" \ *.proto sed -i.bak -E 's/import _ \"gogoproto\"//g' *.pb.go diff --git a/scripts/insecure_grpcurl_series.sh b/scripts/insecure_grpcurl_series.sh new file mode 100755 index 00000000000..2e6ad269fc6 --- /dev/null +++ b/scripts/insecure_grpcurl_series.sh @@ -0,0 +1,62 @@ +#!/usr/bin/env bash + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +HELP=' +insecure_grpcurl_series.sh allows you to use call StoreAPI.Series gRPC method and receive streamed series in JSON format. + +Usage: + # Start some example Thanos component that exposes gRPC or use existing one. To start example one run: `thanos query &` + bash scripts/insecure_grpcurl_series.sh localhost:10901 '"'"'[{"type": 0, "name": "__name__", "value":"go_goroutines"}]'"'"' 0 10 +' + +STORE_API_HOSTPORT=$1 +if [ -z "${STORE_API_HOSTPORT}" ]; then + echo "\$1 is missing (STORE_API_HOSTPORT). Expected host:port string for the target StoreAPI to grpcurl against, e.g. localhost:10901" + echo "${HELP}" + exit 1 +fi + +REQUESTED_MATCHERS=$2 +if [ -z "${REQUESTED_MATCHERS}" ]; then + echo '$2 is missing (REQUESTED_MATCHERS). Expected matchers in form of JSON matchers: e.g [{"type": 0, "name": "__name__", "value":"go_goroutines"}]' + echo "${HELP}" + exit 1 +fi + +REQUESTED_MIN_TIME=$3 +if [ -z "${REQUESTED_MIN_TIME}" ]; then + echo '$3 is missing (REQUESTED_MIN_TIME). Expected min time in unix_timestamp.' + echo "${HELP}" + exit 1 +fi + +REQUESTED_MAX_TIME=$4 +if [ -z "${REQUESTED_MAX_TIME}" ]; then + echo '$4 is missing (REQUESTED_MAX_TIME). Expected max time in unix_timestamp.' + echo "${HELP}" + exit 1 +fi + +go install github.com/fullstorydev/grpcurl/cmd/grpcurl + +SERIES_REQUEST='{ + "min_time": '${REQUESTED_MIN_TIME}', + "max_time": '${REQUESTED_MAX_TIME}', + "matchers": '${REQUESTED_MATCHERS}', + "max_resolution_window": 0, + "aggregates": [], + "partial_response_strategy": 0, + "skip_chunks": false +}' + +GOGOPROTO_ROOT="$(GO111MODULE=on go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)" + +pushd ${DIR}/../pkg/store/storepb/ +grpcurl \ + -import-path="${GOGOPROTO_ROOT}" \ + -import-path=. \ + -proto=rpc.proto \ + -plaintext \ + -d="${SERIES_REQUEST}" "${STORE_API_HOSTPORT}" thanos.Store/Series +popd From 1de45524fc09209da1288a9a9693f8a1db149838 Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Sun, 12 Apr 2020 01:20:36 +0900 Subject: [PATCH 097/190] bucket docs: fix "thanos downsample" remnant (#2409) and follow formatting of the other bucket commands Signed-off-by: John Belmonte --- docs/components/bucket.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/components/bucket.md b/docs/components/bucket.md index fcb492b30fd..dd3f064c113 100644 --- a/docs/components/bucket.md +++ b/docs/components/bucket.md @@ -403,12 +403,13 @@ Flags: ``` -### Downsample +### downsample -The downsample component of Thanos implements the downsample API on top of historical data in an object storage bucket. It continuously downsamples blocks in an object store bucket as a service. +`bucket downsample` is used to continuously downsample blocks in an object store bucket as a service. +It implements the downsample API on top of historical data in an object storage bucket. ```bash -$ thanos downsample \ +$ thanos bucket downsample \ --data-dir "/local/state/data/dir" \ --objstore.config-file "bucket.yml" ``` @@ -421,8 +422,6 @@ config: bucket: example-bucket ``` -#### Flags - [embedmd]:# (flags/bucket_downsample.txt $) ```$ usage: thanos bucket downsample [] @@ -465,7 +464,7 @@ Flags: #### Probes -- Thanos downsample exposes two endpoints for probing. +- The downsample service exposes two endpoints for probing: - `/-/healthy` starts as soon as initial setup completed. - `/-/ready` starts after all the bootstrapping completed (e.g object store bucket connection) and ready to serve traffic. From c4fe34f2fc87edd73981d0dcc06b83b7500b795b Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Sun, 12 Apr 2020 21:44:38 +0100 Subject: [PATCH 098/190] docs: Added Thanos Go style guide and some development tips. (#2359) * docs: Added Thanos Go style guide and some development tips. Signed-off-by: Bartlomiej Plotka * Addressed comments; added TOC and image. Signed-off-by: Bartlomiej Plotka * Added more rules. Signed-off-by: Bartlomiej Plotka * Grammarly fixes! Signed-off-by: Bartlomiej Plotka --- CONTRIBUTING.md | 93 +- Makefile | 2 +- docs/contributing/coding-style-guide.md | 1111 +++++++++++++++++++++++ docs/img/go-in-thanos.jpg | Bin 0 -> 803922 bytes scripts/websitepreprocess.sh | 3 + 5 files changed, 1189 insertions(+), 20 deletions(-) create mode 100644 docs/contributing/coding-style-guide.md create mode 100644 docs/img/go-in-thanos.jpg diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a595ef4513f..e65ccb5b217 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,23 @@ This document explain the process of contributing to the Thanos project. First of all please follow the [code of conduct](CODE_OF_CONDUCT.md) in all your interactions with the project. +## TOC + +- [Contributing](#contributing) + * [TOC](#toc) + * [Thanos Philosophy](#thanos-philosophy) + * [Feedback / Issues](#feedback---issues) + * [Adding New Features / Components](#adding-new-features---components) + * [Components Naming](#components-naming) + * [Development](#development) + + [Prerequisites](#prerequisites) + + [First steps](#first-steps) + + [Pull Request Process](#pull-request-process) + + [Dependency management](#dependency-management) + + [Advanced testing](#advanced-testing) + +Table of contents generated with markdown-toc + ## Thanos Philosophy The philosophy of Thanos and our community is borrowing much from UNIX philosophy and the golang programming language. @@ -36,10 +53,6 @@ method with the owners of this repository before making a change. Adding a large new feature or/and component to Thanos should be done by first creating a [proposal](docs/proposals) document outlining the design decisions of the change, motivations for the change, and any alternatives that might have been considered. -## Prerequisites - -* It is strongly recommended that you use OSX or popular Linux distributions systems e.g. Ubuntu, Redhat, or OpenSUSE for development. - ## Components Naming Thanos is a distributed system composed with several services and CLI tools as listed [here](cmd/thanos). @@ -61,12 +74,28 @@ However, when speaking about those or explaining we use `actor` noun form: `stor * Documentation * Code comments -## Pull Request Process +## Development + +The following section explains various suggestions and procedures to note during development of Thanos. + +### Prerequisites + +* It is strongly recommended that you use Linux distributions systems or OSX for development. +* Go 1.13.9 or newer installed. + +### First Steps + +It's key to get familiarized with style guide and mechanics of Thanos, especially if your contribution touches more than one +component of the Thanos distributed system. We recommend: + +* Reading the [getting started docs](docs/getting-started.md) and working through them, or alternatively working through the [Thanos tutorial](https://katacoda.com/thanos). +* Familiarizing yourself with our [coding style guidelines.](docs/contributing/coding-style-guide.md). +* Familiarizing yourself with the [Makefile](Makefile) commands, for example `format`, `build`, `proto`, `docker` and `test`. +`make help` will print most of available commands with details. + +### Pull Request Process -1. Read [getting started docs](docs/getting-started.md) and prepare Thanos. -2. Familiarize yourself with Go standard style guides Thanos follows: [this](https://golang.org/doc/effective_go.html) and [this](https://github.com/golang/go/wiki/CodeReviewComments). -3. Familiarize yourself with [Makefile](Makefile) commands like `format`, `build`, `proto` and `test`. -4. Fork thanos-io/thanos.git and start development from your own fork. Here are sample steps to setup your development environment: +1. Fork thanos-io/thanos.git and start development from your own fork. Here are sample steps to setup your development environment: ```console $ mkdir -p $GOPATH/src/github.com/thanos-io @@ -80,7 +109,8 @@ $ make build $ ./thanos -h ``` -5. Keep PRs as small as possible. For each of your PR, you create one branch based on the latest master. Chain them if needed (base PR on other PRs). Here are sample steps you can follow. You can get more details about the workflow from [here](https://gist.github.com/Chaser324/ce0505fbed06b947d962). +1. Keep PRs as small as possible. For each of your PRs, you create a new branch based on the latest master. +Chain them if needed (base one PR on other PRs). You can read more details about the workflow from [here](https://gist.github.com/Chaser324/ce0505fbed06b947d962). ```console $ git checkout master @@ -92,19 +122,21 @@ $ $ git push origin ``` -6. Add unit tests for new functionalities. Add e2e tests if functionality is major. -7. If you don't have a live object store ready add this envvar to skip tests for these: -- THANOS_TEST_OBJSTORE_SKIP=GCS,S3,AZURE,SWIFT,COS,ALIYUNOSS +1. Add unit tests for new functionality. Add e2e tests for major changes to functionality. +1. If you don't have a live object store ready, you can use the `make test-local` command. -If you skip all of these, the store specific tests will be run against memory object storage only. -CI runs GCS and inmem tests only for now. Not having these variables will produce auth errors against GCS, AWS, Azure or COS tests. +NOTE: this command skips tests against live object storage systems by specifying environment variables; this causes the +store-specific tests to be run against memory and filesystem object storages only. The CI tests run `make test-ci` instead +(uses GCS, AWS). -8. If your change affects users (adds or removes feature) consider adding the item to [CHANGELOG](CHANGELOG.md) -9. You may merge the Pull Request in once you have the sign-off of at least one developers with write access, or if you +Not specifying these variables will result in auth errors against GCS, AWS, Azure, COS etc. + +1. If your change affects users (adds or removes feature) consider adding the item to the [CHANGELOG](CHANGELOG.md). +1. You may merge the Pull Request once you have the sign-off of at least one developer with write access, or if you do not have permission to do that, you may request the second reviewer to merge it for you. -10. If you feel like your PR waits too long for a review, feel free to ping [`#thanos-prs`](https://slack.cncf.io/) channel on our slack for review! +1. If you feel like your PR is waiting too long for a review, feel free to ping the [`#thanos-prs`](https://slack.cncf.io/) channel on our slack for a review! -## Dependency management +### Dependency management The Thanos project uses [Go modules](https://golang.org/cmd/go/#hdr-Modules__module_versions__and_more) to manage dependencies on external packages. This requires a working Go environment with version 1.11 or greater and git installed. @@ -127,3 +159,26 @@ git commit ``` You have to commit the changes to `go.mod` and `go.sum` before submitting the pull request. + +### Advanced testing + +At some point during development it is useful, in addition to running unit or e2e tests, to run and play with Thanos components manually. While you +can run any component manually by crafting specific flags for a test setup, there are already some nice tools and scripts available. +Consider the following methods: + +* [quickstart.sh](https://github.com/thanos-io/thanos/blob/b08c0ea62abfe4dcf1400da0e37598f0cd8fa8cf/scripts/quickstart.sh): this script spins +up a simple example setup. Do `make build` before running the script to build the `thanos` binary first. +* `make test-e2e`: the e2e tests cover most of the setups and functionality Thanos offers. It's extremely easy to add `time.Sleep(10* time.Minutes)` +at certain points in the tests (e.g for compactor [here](https://github.com/thanos-io/thanos/blob/8f492a9f073f819019dd9f044e346a1e1fa730bc/test/e2e/compact_test.go#L379)). +This way when you run `make test-e2e`, the test will sleep for some time, allowing you to connect to the setup manually using the port printed in the logs. For example: + +```bash +querier-1: level=info name=querier-1 ts=2020-04-01T12:53:56.101029491Z caller=http.go:56 service=http/server component=query msg="listening for requests and metrics" address=:80 +querier-1: level=info name=querier-1 ts=2020-04-01T12:53:56.101106805Z caller=intrumentation.go:48 msg="changing probe status" status=ready +querier-1: level=info name=querier-1 ts=2020-04-01T12:53:56.101290229Z caller=grpc.go:106 service=gRPC/server component=query msg="listening for StoreAPI gRPC" address=:9091 +Ports for container: e2e_test_store_gateway-querier-1 Mapping: map[80:32825 9091:32824] +``` + +This output indicates that the HTTP (`80`) endpoint will be available on `http://localhost:32825`. You can quickly craft your own test case with our framework as well! + +NOTE: `make docker` has to work in order for `make test-e2e` to run. This currently might not work properly on macOS. diff --git a/Makefile b/Makefile index 0376f310bcf..408832355f3 100644 --- a/Makefile +++ b/Makefile @@ -125,7 +125,7 @@ define require_clean_work_tree endef help: ## Displays help. - @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n\nTargets:\n"} /^[a-zA-Z_-]+:.*?##/ { printf " \033[36m%-10s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST) + @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n\nTargets:\n"} /^[a-z0-9A-Z_-]+:.*?##/ { printf " \033[36m%-10s\033[0m %s\n", $$1, $$2 }' $(MAKEFILE_LIST) .PHONY: all all: format build diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md new file mode 100644 index 00000000000..2cb9e1b3d49 --- /dev/null +++ b/docs/contributing/coding-style-guide.md @@ -0,0 +1,1111 @@ +--- +title: Coding Style Guide +type: docs +menu: contributing +--- + +# Thanos Coding Style Guide + +This document details the official style guides for the various languages we use in the Thanos project. +Feel free to familiarize yourself with and refer to this document during code reviews. If something in our codebase does not match the style, it means it +was missed or it was written before this document. Help wanted to fix it! (: + +Generally, we care about: + +* Readability, so low [Cognitive Load](https://www.dabapps.com/blog/cognitive-load-programming/). +* Maintainability. We avoid the code that **surprises**. +* Performance only for critical path and without compromising readability. +* Testability. Even if it means some changes to the production code, like `timeNow func() time.Time` mock. +* Consistency: If some pattern repeats, it means fewer surprises. + +Some style is enforced by our linters and is covered in separate smaller sections. Please look there if you want to +embrace some of the rules in your own project! For Thanos developers, we recommend reading sections about rules to manually apply during +development. Some of those are currently impossible to detect with linters. Ideally, everything would be automated. (: + +## TOC + +- [Thanos Coding Style Guide](#thanos-coding-style-guide) + * [TOC](#toc) +- [Go](#go) + * [Development / Code Review](#development---code-review) + + [Reliability](#reliability) + - [Defers: Don't Forget to Check Returned Errors](#defers--don-t-forget-to-check-returned-errors) + - [Exhaust Readers](#exhaust-readers) + - [Avoid Globals](#avoid-globals) + - [Never Use Panics](#never-use-panics) + - [Avoid Using the `reflect` or `unsafe` Packages](#avoid-using-the--reflect--or--unsafe--packages) + - [Avoid variable shadowing](#avoid-variable-shadowing) + + [Performance](#performance) + - [Pre-allocating Slices and Maps](#pre-allocating-slices-and-maps) + - [Reuse arrays](#reuse-arrays) + + [Readability](#readability) + - [Keep the Interface Narrow; Avoid Shallow Functions](#keep-the-interface-narrow--avoid-shallow-functions) + - [Use Named Return Parameters Carefully](#use-named-return-parameters-carefully) + - [Clean Defer Only if Function Fails](#clean-defer-only-if-function-fails) + - [Explicitly Handled Returned Errors](#explicitly-handled-returned-errors) + - [Avoid Defining Variables Used Only Once.](#avoid-defining-variables-used-only-once) + - [Only Two Ways of Formatting Functions/Methods](#only-two-ways-of-formatting-functions-methods) + - [Control Structure: Prefer early returns and avoid `else`](#control-structure--prefer-early-returns-and-avoid--else-) + - [Wrap Errors for More Context; Don't Repeat "failed ..." There.](#wrap-errors-for-more-context--don-t-repeat--failed---there) + - [Use the Blank Identifier `_`](#use-the-blank-identifier----) + - [Rules for Log Messages](#rules-for-log-messages) + - [Comment Necessary Surprises](#comment-necessary-surprises) + + [Testing](#testing) + - [Table Tests](#table-tests) + - [Tests for Packages / Structs That Involve `time` package.](#tests-for-packages---structs-that-involve--time--package) + * [Ensured by linters](#ensured-by-linters) + - [Avoid Prints.](#avoid-prints) + - [Ensure Prometheus Metric Registration](#ensure-prometheus-metric-registration) + - [go vet](#go-vet) + - [golangci-lint](#golangci-lint) + - [misspell](#misspell) + - [Commentaries Should we a Full Sentence.](#commentaries-should-we-a-full-sentence) +- [Bash](#bash) + +Table of contents generated with markdown-toc + +# Go + +For code written in [Go](https://golang.org/) we use the standard Go style guides ([Effective Go](https://golang.org/doc/effective_go.html), +[CodeReviewComments](https://github.com/golang/go/wiki/CodeReviewComments)) with a few additional rules that make certain areas stricter +than the standard guides. This ensures even better consistency in modern distributed system databases like Thanos, where reliability, performance, +and maintainability are extremely important. + +Go in Thanos + + + +## Development / Code Review + +In this section, we will go through rules that on top of the standard guides that we apply during development and code reviews. + +NOTE: If you know that any of those rules can be enabled by some linter, automatically, let us know! (: + +### Reliability + +The coding style is not purely about what is ugly and what is not. It's mainly to make sure programs are reliable for +running on production 24h per day without causing incidents. The following rules are describing some unhealthy patterns +we have seen across the Go community that are often forgotten. Those things can be considered bugs or can significantly +increase the chances of introducing a bug. + +#### Defers: Don't Forget to Check Returned Errors + +It's easy to forget to check the error returned by a `Close` method that we deferred. + +```go +f, err := os.Open(...) +if err != nil { + // handle.. +} +defer f.Close() // What if an error occurs here? + +// Write something to file... etc. +``` + +Unchecked errors like this can lead to major bugs. Consider the above example: the `*os.File` `Close` method can be responsible +for actually flushing to the file, so if an error occurs at that point, the whole **write might be aborted!** 😱 + +Always check errors! To make it consistent and not distracting, use our [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.11.0/pkg/runutil?tab=doc) +helper package, e.g.: + +```go +// Use `CloseWithErrCapture` if you want to close and fail the function or +// method on a `f.Close` error (make sure thr `error` return argument is +// named as `err`). If the error is already present, `CloseWithErrCapture` +// will append (not wrap) the `f.Close` error if any. +defer runutil.CloseWithErrCapture(&err, f, "close file") + +// Use `CloseWithLogOnErr` if you want to close and log error on `Warn` +// level on a `f.Close` error. +defer runutil.CloseWithLogOnErr(logger, f, "close file") +``` + +
Announced LabelSets Min Time Max TimeLast Health CheckLast Successful Health Check Last Message
+ + + +
Avoid 🔥
+ +```go +func writeToFile(...) error { + f, err := os.Open(...) + if err != nil { + return err + } + defer f.Close() // What if an error occurs here? + + // Write something to file... + return nil +} +``` + +
+ + + + +
Better 🤓
+ +```go +func writeToFile(...) (err error) { + f, err := os.Open(...) + if err != nil { + return err + } + // Now all is handled well. + defer runutil.CloseWithErrCapture(&err, f, "close file") + + // Write something to file... + return nil +} +``` + +
+ +#### Exhaust Readers + +One of the most common bugs is forgetting to close or fully read the bodies of HTTP requests and responses, especially on +error. If you read the body of such structures, you can use the [runutil](https://pkg.go.dev/github.com/thanos-io/thanos@v0.11.0/pkg/runutil?tab=doc) +helper as well: + +```go +defer runutil.ExhaustCloseWithLogOnErr(logger, resp.Body, "close response") +``` + + + + + +
Avoid 🔥
+ +```go +resp, err := http.Get("http://example.com/") +if err != nil { + // handle... +} +defer runutil.CloseWithLogOnErr(logger, resp.Body, "close response") + +scanner := bufio.NewScanner(resp.Body) +// If any error happens and we return in the middle of scanning +// body, we can end up with unread buffer, which +// will use memory and hold TCP connection! +for scanner.Scan() { +``` + +
+ + + + +
Better 🤓
+ +```go +resp, err := http.Get("http://example.com/") +if err != nil { + // handle... +} +defer runutil.ExhaustCloseWithLogOnErr(logger, resp.Body, "close response") + +scanner := bufio.NewScanner(resp.Body) +// If any error happens and we return in the middle of scanning body, +// defer will handle all well. +for scanner.Scan() { +``` + +
+ +#### Avoid Globals + +No globals other than `const` are allowed. Period. +This means also, no `init` functions. + +#### Never Use Panics + +Never use them. If some dependency uses it, use [recover](https://golang.org/doc/effective_go.html#recover). Also, consider +avoiding that dependency. 🙈 + +#### Avoid Using the `reflect` or `unsafe` Packages + +Use those only for very specific, critical cases. Especially `reflect` tend to be very slow. For testing code, it's fine to use reflect. + +#### Avoid variable shadowing + +Variable shadowing is when you use the same variable name in a smaller scope that "shadows". This is very +dangerous as it leads to many surprises. It's extremely hard to debug such problems as they might appear in unrelated parts of the code. +And what's broken is tiny `:` or lack of it. + + + + + +
Avoid 🔥
+ +```go + var client ClientInterface + if clientTypeASpecified { + // Ups - typo, should be =` + client, err := clienttypea.NewClient(...) + if err != nil { + // handle err + } + level.Info(logger).Log("msg", "created client", "type", client.Type) + } else { + // Ups - typo, should be =` + client, err := clienttypea.NewClient(...) + level.Info(logger).Log("msg", "noop client will be used", "type", client.Type) + } + + // In some further deeper part of the code... + resp, err := client.Call(....) // nil pointer panic! +``` + +
+ + + + +
Better 🤓
+ +```go + var client ClientInterface = NewNoop(...) + if clientTypeASpecified { + c, err := clienttypea.NewClient(...) + if err != nil { + // handle err + } + client = c + } + level.Info(logger).Log("msg", "created client", "type", c.Type) + + resp, err := client.Call(....) +``` + +
+ +This is also why we recommend to scope errors if you can: + +```go + if err := doSomething; err != nil { + // handle err + } +``` + +While it's not yet configured, we might think consider not permitting variable shadowing with [`golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow`](https://godoc.org/golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow) +in future. There was even Go 2 proposal for [disabling this in the language itself, but was rejected](https://github.com/golang/go/issues/21114): + +Similar to this problem is the package name shadowing. While it is less dangerous, it can cause similar issues, so avoid package shadowing if you can. + +### Performance + +After all, Thanos system is a database that has to perform queries over terabytes of data within human friendly response times. +This might require some additional patterns in our code. With those patterns, we try to not sacrifice the readability and apply those only +on the critical code paths. + +**Keep in mind to always measure the results.** The Go performance relies on many hidden things and tweaks, so the good +micro benchmark, following with the real system load test is in most times required to tell if optimization makes sense. + +#### Pre-allocating Slices and Maps + +Try to always preallocate slices and map. If you know the number of elements you want to put +apriori, use that knowledge! This significantly improves the latency of such code. Consider this as micro optimization, +however, it's a good pattern to do it always, as it does not add much complexity. Performance wise, it's only relevant for critical, +code paths with big arrays. + +NOTE: This is because, in very simple view, the Go runtime allocates 2 times the current size. So if you expect million of elements, Go will do many allocations +on `append` in between instead of just one if you preallocate. + + + + + +
Avoid 🔥
+ +```go +func copyIntoSliceAndMap(biggy []string) (a []string, b map[string]struct{}) + b = map[string]struct{}{} + + for _, item := range biggy { + a = append(a, item) + b[item] = struct{} + } +} +``` + +
+ + + + +
Better 🤓
+ +```go +func copyIntoSliceAndMap(biggy []string) (a []string, b map[string]struct{}) + b = make(map[string]struct{}, len(biggy)) + a = make([]string, len(biggy)) + + // Copy will not even work without pre-allocation. + copy(a, biggy) + for _, item := range biggy { + b[item] = struct{} + } +} +``` + +
+ +#### Reuse arrays + +To extend the above point, there are cases where you don't need to allocate new space in memory all the time. If you repeat +the certain operation on slices sequentially and you just release the array on every iteration, it's reasonable to reuse +the underlying array for those. This can give quite enormous gains for critical paths. +Unfortunately, currently there is no way to reuse the underlying array for maps. + +NOTE: Why you cannot just allocate slice and release and in new iteration allocate and release again etc? Go should know it has +available space and just reuses that no? (: Well, it's not that easy. TL;DR is that Go Garbage Collection runs periodically or on certain cases +(big heap), but definitely not on every iteration of your loop (that would be super slow). Read more in details [here](https://about.sourcegraph.com/go/gophercon-2018-allocator-wrestling). + + + + + +
Avoid 🔥
+ +```go +var messages []string{} +for _, msg := range recv { + messages = append(messages, msg) + + if len(messages) > maxMessageLen { + marshalAndSend(messages) + // This creates new array. Previous array + // will be garbage collected only after + // some time (seconds), which + // can create enormous memory pressure. + messages = []string{} + } +} +``` + +
+ + + + +
Better 🤓
+ +```go +var messages []string{} +for _, msg := range recv { + messages = append(messages, msg) + + if len(messages) > maxMessageLen { + marshalAndSend(messages) + // Instead of new array, reuse + // the same, with the same capacity, + // just length equals to zero. + messages = messages[:0] + } +} +``` + +
+ +### Readability + +The part that all Gophers love ❤️ How to make code more readable? + +For the Thanos Team, readability is about programming in a way that does not surprise the reader of the code. All the details +and inconsistencies can distract or mislead the reader, so every character or newline might matter. That's why we might be spending +more time on every Pull Requests' review, especially in the beginning, but for a good reason! To make sure we can quickly understand, +extend and fix problems with our system. + +#### Keep the Interface Narrow; Avoid Shallow Functions + +This is connected more to the API design than coding, but even during small coding decisions it matter. For example how you define functions +or methods. There are two general rules: + +* Simpler (usually it means smaller) interfaces are better. This might mean a smaller, simpler function signature as well as fewer methods +in the interfaces. Try to group interfaces based on functionality to expose at max 1-3 methods if possible. + + + + + +
Avoid 🔥
+ +```go +// Compactor aka: The Big Boy. Such big interface is really useless ): +type Compactor interface { + Compact(ctx context.Context) error + FetchMeta(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) + UpdateOnMetaChange(func([]metadata.Meta, error)) + SyncMetas(ctx context.Context) error + Groups() (res []*Group, err error) + GarbageCollect(ctx context.Context) error + ApplyRetentionPolicyByResolution(ctx context.Context, logger log.Logger, bkt objstore.Bucket) error + BestEffortCleanAbortedPartialUploads(ctx context.Context, bkt objstore.Bucket) + DeleteMarkedBlocks(ctx context.Context) error + Downsample(ctx context.Context, logger log.Logger, metrics *DownsampleMetrics, bkt objstore.Bucket) error +} +``` + +
+ + + + +
Better 🤓
+ +```go +// Smaller interfaces with a smaller number of arguments allow functional grouping, clean composition and clear testability. +type Compactor interface { + Compact(ctx context.Context) error + +} + +type Downsampler interface { + Downsample(ctx context.Context) error +} + +type MetaFetcher interface { + Fetch(ctx context.Context) (metas map[ulid.ULID]*metadata.Meta, partial map[ulid.ULID]error, err error) + UpdateOnChange(func([]metadata.Meta, error)) +} + +type Syncer interface { + SyncMetas(ctx context.Context) error + Groups() (res []*Group, err error) + GarbageCollect(ctx context.Context) error +} + +type RetentionKeeper interface { + Apply(ctx context.Context) error +} + +type Cleaner interface { + DeleteMarkedBlocks(ctx context.Context) error + BestEffortCleanAbortedPartialUploads(ctx context.Context) +} +``` + +
+ +* It's better if you can hide more unnecessary complexity from the user. This means that having shallow function introduce +more cognitive load to understand the function name or navigate to implementation to understand it better. It might be much +more readable to inline those few lines directly on the caller side. + + + + + +
Avoid 🔥
+ +```go + // Some code... + s.doSomethingAndHandleError() + + // Some code... +} + +func (s *myStruct) doSomethingAndHandleError() { + if err := doSomething; err != nil { + level.Error(s.logger).Log("msg" "failed to do something; sorry", "err", err) + } +} +``` + +
+ + + + +
Better 🤓
+ + +```go + // Some code... + if err := doSomething; err != nil { + level.Error(s.logger).Log("msg" "failed to do something; sorry", "err", err) + } + + // Some code... +} +``` + +
+ +This is a little bit connected to `There should be one-- and preferably only one --obvious way to do it` and [`DRY`](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) +rules. If you have more ways of doing something than one, it means you have a wider interface, allowing more opportunities for +errors, ambiguity and maintenance burden. + + + + + +
Avoid 🔥
+ +```go +// We have here SIX potential how caller can get an ID. Can you find all of them? + +type Block struct { + // Things... + ID ulid.ULID + + mtx sync.Mutex +} + +func (b *Block) Lock() { b.mtx.Lock() } + +func (b *Block) Unlock() { b.mtx.Unlock() } + +func (b *Block) ID() ulid.ULID { + b.mtx.Lock() + defer b.mtx.Unlock() + return b.ID +} + +func (b *Block) IDNoLock() ulid.ULID { return b.ID } +``` + +
+ + + + +
Better 🤓
+ +```go +type Block struct { + // Things... + + id ulid.ULID + mtx sync.Mutex +} + +func (b *Block) ID() ulid.ULID { + b.mtx.Lock() + defer b.mtx.Unlock() + return b.id +} +``` + +
+ +#### Use Named Return Parameters Carefully + +It's OK to name return parameters if the types do not give enough information about what function or method actually returns. +Another use case is when you want to define a variable, e.g. a slice. + +**IMPORTANT:** never use naked `return` statements with named return parameters. This compiles but it makes returning values +implicit and thus more prone to surprises. + +#### Clean Defer Only if Function Fails + +There is a way to sacrifice defer in order to properly close all on each error. Repetitions makes it easier to make error +and forget something when changing the code, so on-error deferring is doable: + + + + + +
Avoid 🔥
+ +```go +func OpenSomeFileAndDoSomeStuff() (*os.File, error) { + f, err := os.OpenFile("file.txt", os.O_RDONLY, 0) + if err != nil { + return nil, err + } + + if err := doStuff1(); err != nil { + runutil.CloseWithErrCapture(&err, f, "close file") + return nil, err + } + if err := doStuff2(); err != nil { + runutil.CloseWithErrCapture(&err, f, "close file") + return nil, err + } + if err := doStuff232241(); err != nil { + // Ups.. forgot to close file here. + return nil, err + } + return f, nil +} +``` + +
+ + + + +
Better 🤓
+ +```go +func OpenSomeFileAndDoSomeStuff() (f *os.File, err error) { + f, err = os.OpenFile("file.txt", os.O_RDONLY, 0) + if err != nil { + return nil, err + } + defer func() { + if err != nil { + runutil.CloseWithErrCapture(&err, f, "close file") + } + } + + if err := doStuff1(); err != nil { + return nil, err + } + if err := doStuff2(); err != nil { + return nil, err + } + if err := doStuff232241(); err != nil { + return nil, err + } + return f, nil +} +``` +
+ +#### Explicitly Handled Returned Errors + +Always handle returned errors. It does not mean you cannot "ignore" the error for some reason, e.g. if we know implementation +will not return anything meaningful. You can ignore the error, but do so explicitly: + + + + + +
Avoid 🔥
+ +```go +someMethodThatReturnsError(...) +``` + +
+ + + + +
Better 🤓
+ + +```go +_ = someMethodThatReturnsError(...) +``` + +
+ +The exception: well-known cases such as `level.Debug|Warn` etc and `fmt.Fprint*` + +#### Avoid Defining Variables Used Only Once. + +It's tempting to define a variable as an intermittent step to create something bigger. Avoid defining +such a variable if it's used only once. When you create a variable *the reader* expects some other usage of this variable than +one, so it can be annoying to every time double check that and realize that it's only used once. + + + + + +
Avoid 🔥
+ +```go + someConfig := a.GetConfig() + address124 := someConfig.Addresses[124] + addressStr := fmt.Sprintf("%s:%d", address124.Host, address124.Port) + + c := &MyType{HostPort: addressStr, SomeOther: thing} + return c +``` + +
+ + + + +
Better 🤓
+ +```go + // This variable is required for potentially consistent results. It is used twice. + someConfig := a.FetchConfig() + return &MyType{ + HostPort: fmt.Sprintf("%s:%d", someConfig.Addresses[124].Host, someConfig.Addresses[124].Port), + SomeOther: thing, + } +``` + +
+ +#### Only Two Ways of Formatting Functions/Methods + +Prefer function/method definitions with arguments in a single line. If it's too wide, put each argument on a new line. + + + + + +
Avoid 🔥
+ +```go +func function(argument1 int, argument2 string, + argument3 time.Duration, argument4 someType, + argument5 float64, argument6 time.Time, +) (ret int, err error) { +``` + +
+ + + + +
Better 🤓
+ +```go +func function( + argument1 int, + argument2 string, + argument3 time.Duration, + argument4 someType, + argument5 float64, + argument6 time.Time, +) (ret int, err error) +``` + +
+ +#### Control Structure: Prefer early returns and avoid `else` + +In most of the cases, you don't need `else`. You can usually use `continue`, `break` or `return` to end an `if` block. +This enables having one less indent and netter consistency so code is more readable. + + + + + +
Avoid 🔥
+ +```go +for _, elem := range elems { + if a == 1 { + something[i] = "yes" + } else + something[i] = "no" + } +} +``` + +
+ + + + +
Better 🤓
+ +```go +for _, elem := range elems { + if a == 1 { + something[i] = "yes" + continue + } + something[i] = "no" +} +``` + +
+ +#### Wrap Errors for More Context; Don't Repeat "failed ..." There. + +We use [`pkg/errors`](https://github.com/pkg/errors) package for `errors`. We prefer it over standard wrapping with `fmt.Errorf` + `%w`, +as `errors.Wrap` is explicit. It's easy to by accident replace `%w` with `%v` or to add extra inconsistent characters to the string. + +Use [`pkg/errors.Wrap`](https://github.com/pkg/errors) to wrap errors for future context when errors occur. It's recommended +to add more interesting variables to add context using `errors.Wrapf`, e.g. file names, IDs or things that fail, etc. + +NOTE: never prefix wrap messages with wording like `failed ... ` or `error occurred while...`. Just describe what we +wanted to do when the failure occurred. Those prefixes are just noise. We are wrapping error, so it's obvious that some error +occurred, right? (: Improve readability and consider avoiding those. + + + + + +
Avoid 🔥
+ +```go +if err != nil { + return fmt.Errorf("error while reading from file %s: %w", f.Name, err) +} +``` + +
+ + + + +
Better 🤓
+ +```go +if err != nil { + return errors.Wrapf(err, "read file %s", f.Name) +} +``` + +
+ +#### Use the Blank Identifier `_` + +Black identifiers are very useful to mark variables that are not used. Consider the following cases: + +```go +// We don't need the second return parameter. +// Let's use the blank identifier instead. +a, _, err := function1(...) +if err != nil { + // handle err +} +``` + +```go +// We don't need to use this variable, we +// just want to make sure TypeA implements InterfaceA. +var _ InterfaceA = TypeA +``` + +```go +// We don't use context argument; let's use the blank +// identifier to make it clear. +func (t *Type) SomeMethod(_ context.Context, abc int) error { +``` + +#### Rules for Log Messages + +We use [go-kit logger](https://github.com/go-kit/kit/tree/master/log) in Thanos. This means that we expect log lines +to have a certain structure. Structure means that instead of adding variables to the message, those should be passed as +separate fields. Keep in mind that all log lines in Thanos should be `lowercase` (readability and consistency) and +all struct keys are using `camelCase`. It's suggested to keep key names short and consistent. For example, if +we always use `block` for block ID, let's not use in the other single log message `id`. + + + + + +
Avoid 🔥
+ +```go +level.Info(logger).Log("msg", fmt.Sprintf("Found something epic during compaction number %v. This looks amazing.", compactionNumber), + "block_id", id, "elapsed-time", timeElapsed) +``` + +
+ + + + +
Better 🤓
+ +```go +level.Info(logger).Log("msg", "found something epic during compaction; this looks amazing", "compNumber", compNumber, +"block", id, "elapsed", timeElapsed) +``` + +
+ +Additionally, there are certain rules we suggest while using different log levels: + +* level.Info: Should always have `msg` field. It should be used only for important events that we expect to happen not too +often. +* level.Debug: Should always have `msg` field. It can be a bit more spammy, but should not be everywhere as well. Use it +only when you want to really dive into some problems in certain areas. +* level.Warn: Should have either `msg` or `err` or both fields. They should warn about events that are suspicious and to investigate +but the process can gracefully mitigate it. Always try to describe *how* it was mitigated, what action will be performed e.g. `value will be skipped` +* level.Error: Should have either `msg` or `err` or both fields. Use it only for a critical event. + +#### Comment Necessary Surprises + +Comments are not the best. They age quickly and the compiler does not fail if you will forget to update them. So use comments +only when necessary. **And it is necessary to comment on code that can surprise the user.** Sometimes, complexity +is necessary, for example for performance. Comment in this case why such optimization was needed. If something +was done temporarily add `TODO(): `. + +### Testing + +#### Table Tests + +Use table-driven tests that use [t.Run](https://blog.golang.org/subtests) for readability. They are easy to read +and allows to add a clean description of each test case. Adding or adapting test cases is also easier. + + + + + +
Avoid 🔥
+ +```go +host, port, err := net.SplitHostPort("1.2.3.4:1234") +testutil.Ok(t, err) +testutil.Equals(t, "1.2.3.4", host) +testutil.Equals(t, "1234", port) + +host, port, err = net.SplitHostPort("1.2.3.4:something") +testutil.Ok(t, err) +testutil.Equals(t, "1.2.3.4", host) +testutil.Equals(t, "http", port) + +host, port, err = net.SplitHostPort(":1234") +testutil.Ok(t, err) +testutil.Equals(t, "", host) +testutil.Equals(t, "1234", port) + +host, port, err = net.SplitHostPort("yolo") +testutil.NotOk(t, err) +``` + +
+ + + + +
Better 🤓
+ +```go +for _, tcase := range []struct{ + name string + + input string + + expectedHost string + expectedPort string + expectedErr error +}{ + { + name: "host and port", + + input: "1.2.3.4:1234", + expectedHost: "1.2.3.4", + expectedPort: "1234", + }, + { + name: "host and named port", + + input: "1.2.3.4:something", + expectedHost: "1.2.3.4", + expectedPort: "something", + }, + { + name: "just port", + + input: ":1234", + expectedHost: "", + expectedPort: "1234", + }, + { + name: "not valid hostport", + + input: "yolo", + expectedErr: errors.New("") + }, +}{ + t.Run(tcase.name, func(t *testing.T) { + host, port, err := net.SplitHostPort(tcase.input) + if tcase.expectedErr != nil { + testutil.NotOk(t, err) + testutil.Equals(t, tcase.expectedErr, err) + return + } + testutil.Ok(t, err) + testutil.Equals(t, tcase.expectedHost, host) + testutil.Equals(t, tcase.expectedPort, port) + }) +} +``` + +
+ +#### Tests for Packages / Structs That Involve `time` package. + +Avoid unit testing based on real-time. Always try to mock time that is used within struct by using for example `timeNow func() time.Time` field. +For production code, you can initialize the field with `time.Now`. For test code, you can set a custom time that will be used by the struct. + + + + + +
Avoid 🔥
+ +```go +func (s *SomeType) IsExpired(created time.Time) bool { + // Code is hardly testable. + return time.Since(created) >= s.expiryDuration +} +``` + +
+ + + + +
Better 🤓
+ +```go +func (s *SomeType) IsExpired(created time.Time) bool { + // s.timeNow is time.Now on production, mocked in tests. + return created.Add(s.expiryDuration).After(s.timeNow()) +} +``` + +
+ +## Ensured by linters + +This is the list of rules we ensure automatically. This section is for those who are curious why such linting rules +were added or want similar ones in their Go project. 🤗 + +#### Avoid Prints. + +Never use `print`. Always use a passed `go-kit/log.Logger`. + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L311). + +#### Ensure Prometheus Metric Registration + +It's very easy to forget to add Prometheus metric (e.g `prometheus.Counter`) into `registry.MustRegister` function. +To avoid this we ensure all metrics are created via `promtest.With(r).New*` and old type of registration is not allowed. +Read more about the problem [here](https://github.com/thanos-io/thanos/issues/2102). + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L308). + +#### go vet + +Standard Go vet is quite strict, but for a good reason. Always vet your Go code! + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L313). + +#### golangci-lint + +[golangci-lint](https://github.com/golangci/golangci-lint) is an amazing tool that allows running set of different custom +linters across Go community against your code. Give it a Star and use it. (: + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L315) with +[those linters](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/.golangci.yml#L31) enabled. + +#### misspell + +Misspell is amazing, it catches some typos in comments or docs. + +No Grammarly plugin for this yet ): (We wish). + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L317). + +#### Commentaries Should we a Full Sentence. + +All comments should be a full sentence. Should start with Uppercase letter and end with a period. + +Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L194). + +# Bash + +Overall try to NOT use bash. For scripts longer than 30 lines, consider writing it in Go as we did [here](https://github.com/thanos-io/thanos/blob/55cb8ca38b3539381dc6a781e637df15c694e50a/scripts/copyright/copyright.go). + +If you have to, we follow the Google Shell style guide: https://google.github.io/styleguide/shellguide.html diff --git a/docs/img/go-in-thanos.jpg b/docs/img/go-in-thanos.jpg new file mode 100644 index 0000000000000000000000000000000000000000..abd6e1d243d3d16a3bce23c73487047f19ed109c GIT binary patch literal 803922 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 z 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

+Vu2Z*$kuFK=Lu7nrF<+ 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

OpY2hIrLm#FVp&Mc?YH}n`C`OWKQV4G{(M&o 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 literal 0 HcmV?d00001 diff --git a/scripts/websitepreprocess.sh b/scripts/websitepreprocess.sh index c4bc3954988..1ecb22a81b7 100755 --- a/scripts/websitepreprocess.sh +++ b/scripts/websitepreprocess.sh @@ -94,5 +94,8 @@ perl -pi -e 's/]\(\//]\(https:\/\/github.com\/thanos-io\/thanos\/tree\/'${COMMIT perl -pi -e 's/]\((?!http)/]\(..\//g' ${ALL_DOC_CONTENT_FILES} # All the relative links in src= needs to have ../ as well. perl -pi -e 's/src=\"(?!http)/src=\"..\//g' ${ALL_DOC_CONTENT_FILES} +# "Mask" bug in blackfriday that does not generate code snippets in tables. +perl -pi -e 's/```([a-z]+)/{{< highlight $1 >}}/g' ${OUTPUT_CONTENT_DIR}/contributing/coding-style-guide.md +perl -pi -e 's/```/{{< \/highlight >}}/g' ${OUTPUT_CONTENT_DIR}/contributing/coding-style-guide.md From 1c045393f01e8aa65a7c256db6221df99a405c29 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 13 Apr 2020 10:45:55 +0100 Subject: [PATCH 099/190] docs: Fixed table formatting for coding style guide. (#2421) Signed-off-by: Bartlomiej Plotka --- docs/contributing/coding-style-guide.md | 172 ++++++++++-------------- 1 file changed, 70 insertions(+), 102 deletions(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 2cb9e1b3d49..4245cbaa608 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -4,6 +4,25 @@ type: docs menu: contributing --- + + # Thanos Coding Style Guide This document details the official style guides for the various languages we use in the Thanos project. @@ -122,9 +141,9 @@ defer runutil.CloseWithErrCapture(&err, f, "close file") defer runutil.CloseWithLogOnErr(logger, f, "close file") ``` - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -141,10 +160,7 @@ func writeToFile(...) error { ```
- - - +
Better 🤓
Better 🤓
```go @@ -174,9 +190,9 @@ helper as well: defer runutil.ExhaustCloseWithLogOnErr(logger, resp.Body, "close response") ``` - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -194,10 +210,7 @@ for scanner.Scan() { ```
- - - +
Better 🤓
Better 🤓
```go @@ -236,9 +249,9 @@ Variable shadowing is when you use the same variable name in a smaller scope tha dangerous as it leads to many surprises. It's extremely hard to debug such problems as they might appear in unrelated parts of the code. And what's broken is tiny `:` or lack of it. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -261,10 +274,7 @@ And what's broken is tiny `:` or lack of it. ```
- - - +
Better 🤓
Better 🤓
```go @@ -316,9 +326,9 @@ code paths with big arrays. NOTE: This is because, in very simple view, the Go runtime allocates 2 times the current size. So if you expect million of elements, Go will do many allocations on `append` in between instead of just one if you preallocate. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -333,10 +343,7 @@ func copyIntoSliceAndMap(biggy []string) (a []string, b map[string]struct{}) ```
- - - +
Better 🤓
Better 🤓
```go @@ -366,9 +373,9 @@ NOTE: Why you cannot just allocate slice and release and in new iteration alloca available space and just reuses that no? (: Well, it's not that easy. TL;DR is that Go Garbage Collection runs periodically or on certain cases (big heap), but definitely not on every iteration of your loop (that would be super slow). Read more in details [here](https://about.sourcegraph.com/go/gophercon-2018-allocator-wrestling). - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -388,10 +395,7 @@ for _, msg := range recv { ```
- - - +
Better 🤓
Better 🤓
```go @@ -429,9 +433,9 @@ or methods. There are two general rules: * Simpler (usually it means smaller) interfaces are better. This might mean a smaller, simpler function signature as well as fewer methods in the interfaces. Try to group interfaces based on functionality to expose at max 1-3 methods if possible. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -451,10 +455,7 @@ type Compactor interface { ```
- - - +
Better 🤓
Better 🤓
```go @@ -496,9 +497,9 @@ type Cleaner interface { more cognitive load to understand the function name or navigate to implementation to understand it better. It might be much more readable to inline those few lines directly on the caller side. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -516,10 +517,7 @@ func (s *myStruct) doSomethingAndHandleError() { ```
- - - +
Better 🤓
Better 🤓
@@ -540,9 +538,9 @@ This is a little bit connected to `There should be one-- and preferably only one rules. If you have more ways of doing something than one, it means you have a wider interface, allowing more opportunities for errors, ambiguity and maintenance burden. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -569,10 +567,7 @@ func (b *Block) IDNoLock() ulid.ULID { return b.ID } ```
- - - +
Better 🤓
Better 🤓
```go @@ -606,9 +601,9 @@ implicit and thus more prone to surprises. There is a way to sacrifice defer in order to properly close all on each error. Repetitions makes it easier to make error and forget something when changing the code, so on-error deferring is doable: - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -635,10 +630,7 @@ func OpenSomeFileAndDoSomeStuff() (*os.File, error) { ```
- - - +
Better 🤓
Better 🤓
```go @@ -673,9 +665,9 @@ func OpenSomeFileAndDoSomeStuff() (f *os.File, err error) { Always handle returned errors. It does not mean you cannot "ignore" the error for some reason, e.g. if we know implementation will not return anything meaningful. You can ignore the error, but do so explicitly: - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -683,10 +675,7 @@ someMethodThatReturnsError(...) ```
- - - +'); + fragments.push(''); + rowStarted = true; + } + + fragments.push( + '' + + '' + ); + } + + if (rowStarted) fragments.push(''); + + if (fragments.length == 0) return; + + var table = '
Better 🤓
Better 🤓
@@ -705,9 +694,9 @@ It's tempting to define a variable as an intermittent step to create something b such a variable if it's used only once. When you create a variable *the reader* expects some other usage of this variable than one, so it can be annoying to every time double check that and realize that it's only used once. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -720,10 +709,7 @@ one, so it can be annoying to every time double check that and realize that it's ```
- - - + + + + {alertMgrs.map(({ url }) => { + const { origin, pathname } = new URL(url); + return ( + + + + ); + })} + + ); + }, + }, + droppedAlertmanagers: { skip: true }, +}; + +export const StatusContent: FC = ({ data, title }) => { + return ( + <> +

{title}

+
Better 🤓
Better 🤓
```go @@ -742,9 +728,9 @@ one, so it can be annoying to every time double check that and realize that it's Prefer function/method definitions with arguments in a single line. If it's too wide, put each argument on a new line. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -755,10 +741,7 @@ func function(argument1 int, argument2 string, ```
- - - ++ + + + + {this.state.error && {this.state.error}} + + + + + + + {options.type === 'table' && ( + <> +
+ +
+ + + )} +
+ + {this.props.options.type === 'graph' && ( + <> + + + + )} + +
+ + + + + + + + + ); + } +} + +export default Panel; diff --git a/pkg/ui/react-app/src/pages/graph/PanelList.test.tsx b/pkg/ui/react-app/src/pages/graph/PanelList.test.tsx new file mode 100755 index 00000000000..833921ef02b --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/PanelList.test.tsx @@ -0,0 +1,34 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import PanelList, { PanelListContent } from './PanelList'; +import Checkbox from '../../components/Checkbox'; +import { Button } from 'reactstrap'; +import Panel from './Panel'; + +describe('PanelList', () => { + it('renders query history and local time checkboxes', () => { + [ + { id: 'query-history-checkbox', label: 'Enable query history' }, + { id: 'use-local-time-checkbox', label: 'Use local time' }, + ].forEach((cb, idx) => { + const panelList = shallow(); + const checkbox = panelList.find(Checkbox).at(idx); + expect(checkbox.prop('id')).toEqual(cb.id); + expect(checkbox.prop('defaultChecked')).toBe(false); + expect(checkbox.children().text()).toBe(cb.label); + }); + }); + + it('renders panels', () => { + const panelList = shallow(); + const panels = panelList.find(Panel); + expect(panels.length).toBeGreaterThan(0); + }); + + it('renders a button to add a panel', () => { + const panelList = shallow(); + const btn = panelList.find(Button); + expect(btn.prop('color')).toEqual('primary'); + expect(btn.children().text()).toEqual('Add Panel'); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/PanelList.tsx b/pkg/ui/react-app/src/pages/graph/PanelList.tsx new file mode 100644 index 00000000000..d321b9ed365 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/PanelList.tsx @@ -0,0 +1,196 @@ +import React, { FC, useState, useEffect } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Alert, Button } from 'reactstrap'; + +import Panel, { PanelOptions, PanelDefaultOptions } from './Panel'; +import Checkbox from '../../components/Checkbox'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { generateID, decodePanelOptionsFromQueryString, encodePanelOptionsToQueryString, callAll } from '../../utils'; +import { useFetch } from '../../hooks/useFetch'; +import { useLocalStorage } from '../../hooks/useLocalStorage'; + +export type PanelMeta = { key: string; options: PanelOptions; id: string }; + +export const updateURL = (nextPanels: PanelMeta[]) => { + const query = encodePanelOptionsToQueryString(nextPanels); + window.history.pushState({}, '', query); +}; + +interface PanelListProps extends PathPrefixProps, RouteComponentProps { + panels: PanelMeta[]; + metrics: string[]; + useLocalTime: boolean; + queryHistoryEnabled: boolean; + useDeduplication: boolean; + usePartialResponse: boolean; +} + +export const PanelListContent: FC = ({ + metrics = [], + useLocalTime, + useDeduplication, + usePartialResponse, + pathPrefix, + queryHistoryEnabled, + ...rest +}) => { + const [panels, setPanels] = useState(rest.panels); + const [historyItems, setLocalStorageHistoryItems] = useLocalStorage('history', []); + + useEffect(() => { + !panels.length && addPanel(); + window.onpopstate = () => { + const panels = decodePanelOptionsFromQueryString(window.location.search); + if (panels.length > 0) { + setPanels(panels); + } + }; + // We want useEffect to act only as componentDidMount, but react still complains about the empty dependencies list. + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []); + + const handleExecuteQuery = (query: string) => { + const isSimpleMetric = metrics.indexOf(query) !== -1; + if (isSimpleMetric || !query.length) { + return; + } + const extendedItems = historyItems.reduce( + (acc, metric) => { + return metric === query ? acc : [...acc, metric]; // Prevent adding query twice. + }, + [query] + ); + setLocalStorageHistoryItems(extendedItems.slice(0, 50)); + }; + + const addPanel = () => { + callAll(setPanels, updateURL)([ + ...panels, + { + id: generateID(), + key: `${panels.length}`, + options: PanelDefaultOptions, + }, + ]); + }; + + return ( + <> + {panels.map(({ id, options }) => ( + + callAll(setPanels, updateURL)(panels.map(p => (id === p.id ? { ...p, options: opts } : p))) + } + removePanel={() => + callAll(setPanels, updateURL)( + panels.reduce( + (acc, panel) => (panel.id !== id ? [...acc, { ...panel, key: `${acc.length}` }] : acc), + [] + ) + ) + } + useLocalTime={useLocalTime} + useDeduplication={useDeduplication} + usePartialResponse={usePartialResponse} + metricNames={metrics} + pastQueries={queryHistoryEnabled ? historyItems : []} + pathPrefix={pathPrefix} + /> + ))} + + + ); +}; + +const PanelList: FC = ({ pathPrefix = '' }) => { + const [delta, setDelta] = useState(0); + const [useLocalTime, setUseLocalTime] = useLocalStorage('use-local-time', false); + const [enableQueryHistory, setEnableQueryHistory] = useLocalStorage('enable-query-history', false); + const [useDeduplication, setUseDeduplication] = useLocalStorage('use-deduplication', true); + const [usePartialResponse, setUsePartialResponse] = useLocalStorage('use-partial-response', false); + + const { response: metricsRes, error: metricsErr } = useFetch(`${pathPrefix}/api/v1/label/__name__/values`); + + const browserTime = new Date().getTime() / 1000; + const { response: timeRes, error: timeErr } = useFetch<{ result: number[] }>(`${pathPrefix}/api/v1/query?query=time()`); + + useEffect(() => { + if (timeRes.data) { + const serverTime = timeRes.data.result[0]; + setDelta(Math.abs(browserTime - serverTime)); + } + /** + * React wants to include browserTime to useEffect dependencies list which will cause a delta change on every re-render + * Basically it's not recommended to disable this rule, but this is the only way to take control over the useEffect + * dependencies and to not include the browserTime variable. + **/ + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [timeRes.data]); + + return ( + <> + setEnableQueryHistory(target.checked)} + defaultChecked={enableQueryHistory} + > + Enable query history + + setUseLocalTime(target.checked)} + defaultChecked={useLocalTime} + > + Use local time + + setUseDeduplication(target.checked)} + defaultChecked={useDeduplication} + > + Use Deduplication + + setUsePartialResponse(target.checked)} + defaultChecked={usePartialResponse} + > + Use Partial Response + + {(delta > 30 || timeErr) && ( + + Warning: + {timeErr && `Unexpected response status when fetching server time: ${timeErr.message}`} + {delta >= 30 && + `Error fetching server time: Detected ${delta} seconds time difference between your browser and the server. Thanos relies on accurate time and time drift might cause unexpected query results.`} + + )} + {metricsErr && ( + + Warning: + Error fetching metrics list: Unexpected response status when fetching metric names: {metricsErr.message} + + )} + + + ); +}; + +export default PanelList; diff --git a/pkg/ui/react-app/src/pages/graph/QueryStatsView.css b/pkg/ui/react-app/src/pages/graph/QueryStatsView.css new file mode 100644 index 00000000000..4484eb1c1ea --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/QueryStatsView.css @@ -0,0 +1,5 @@ +.query-stats{ + flex-grow: 1; + font-size: 0.7rem; + color: #71808e; +} diff --git a/pkg/ui/react-app/src/pages/graph/QueryStatsView.test.tsx b/pkg/ui/react-app/src/pages/graph/QueryStatsView.test.tsx new file mode 100755 index 00000000000..e04c914e1a3 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/QueryStatsView.test.tsx @@ -0,0 +1,17 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import QueryStatsView from './QueryStatsView'; + +describe('QueryStatsView', () => { + it('renders props as query stats', () => { + const queryStatsProps = { + loadTime: 100, + resolution: 5, + resultSeries: 10000, + }; + const queryStatsView = shallow(); + expect(queryStatsView.prop('className')).toEqual('query-stats'); + expect(queryStatsView.children().prop('className')).toEqual('float-right'); + expect(queryStatsView.children().text()).toEqual('Load time: 100ms   Resolution: 5s   Result series: 10000'); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/QueryStatsView.tsx b/pkg/ui/react-app/src/pages/graph/QueryStatsView.tsx new file mode 100644 index 00000000000..ba6db013cd1 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/QueryStatsView.tsx @@ -0,0 +1,22 @@ +import React, { FC } from 'react'; +import './QueryStatsView.css'; + +export interface QueryStats { + loadTime: number; + resolution: number; + resultSeries: number; +} + +const QueryStatsView: FC = props => { + const { loadTime, resolution, resultSeries } = props; + + return ( +
+ + Load time: {loadTime}ms   Resolution: {resolution}s   Result series: {resultSeries} + +
+ ); +}; + +export default QueryStatsView; diff --git a/pkg/ui/react-app/src/pages/graph/SeriesName.test.tsx b/pkg/ui/react-app/src/pages/graph/SeriesName.test.tsx new file mode 100755 index 00000000000..4eaf68105c8 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/SeriesName.test.tsx @@ -0,0 +1,81 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import SeriesName from './SeriesName'; + +describe('SeriesName', () => { + describe('with labels=null', () => { + const seriesNameProps = { + labels: null, + format: false, + }; + const seriesName = shallow(); + it('renders the string "scalar"', () => { + expect(seriesName.text()).toEqual('scalar'); + }); + }); + + describe('with labels defined and format false', () => { + const seriesNameProps = { + labels: { + __name__: 'metric_name', + label1: 'value_1', + label2: 'value_2', + label3: 'value_3', + }, + format: false, + }; + const seriesName = shallow(); + it('renders the series name as a string', () => { + expect(seriesName.text()).toEqual('metric_name{label1="value_1", label2="value_2", label3="value_3"}'); + }); + }); + + describe('with labels defined and format true', () => { + const seriesNameProps = { + labels: { + __name__: 'metric_name', + label1: 'value_1', + label2: 'value_2', + label3: 'value_3', + }, + format: true, + }; + const seriesName = shallow(); + it('renders the series name as a series of spans', () => { + expect(seriesName.children()).toHaveLength(6); + const testCases = [ + { name: 'metric_name', className: 'legend-metric-name' }, + { name: '{', className: 'legend-label-brace' }, + { name: 'label1', value: 'value_1', className: 'legend-label-name' }, + { name: 'label2', value: 'value_2', className: 'legend-label-name' }, + { name: 'label3', value: 'value_3', className: 'legend-label-name' }, + { name: '}', className: 'legend-label-brace' }, + ]; + testCases.forEach((tc, i) => { + const child = seriesName.childAt(i); + const text = child + .children() + .map(ch => ch.text()) + .join(''); + switch (child.children().length) { + case 1: + expect(text).toEqual(tc.name); + expect(child.prop('className')).toEqual(tc.className); + break; + case 3: + expect(text).toEqual(`${tc.name}="${tc.value}"`); + expect(child.childAt(0).prop('className')).toEqual('legend-label-name'); + expect(child.childAt(2).prop('className')).toEqual('legend-label-value'); + break; + case 4: + expect(text).toEqual(`, ${tc.name}="${tc.value}"`); + expect(child.childAt(1).prop('className')).toEqual('legend-label-name'); + expect(child.childAt(3).prop('className')).toEqual('legend-label-value'); + break; + default: + fail('incorrect number of children: ' + child.children().length); + } + }); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/SeriesName.tsx b/pkg/ui/react-app/src/pages/graph/SeriesName.tsx new file mode 100644 index 00000000000..0fb8bd285b6 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/SeriesName.tsx @@ -0,0 +1,52 @@ +import React, { FC } from 'react'; +import { metricToSeriesName } from '../../utils'; + +interface SeriesNameProps { + labels: { [key: string]: string } | null; + format: boolean; +} + +const SeriesName: FC = ({ labels, format }) => { + const renderFormatted = (): React.ReactElement => { + const labelNodes: React.ReactElement[] = []; + let first = true; + for (const label in labels) { + if (label === '__name__') { + continue; + } + + labelNodes.push( + + {!first && ', '} + {label}="{labels[label]}" + + ); + + if (first) { + first = false; + } + } + + return ( +
+ {labels!.__name__ || ''} + {'{'} + {labelNodes} + {'}'} +
+ ); + }; + + if (labels === null) { + return <>scalar; + } + + if (format) { + return renderFormatted(); + } + // Return a simple text node. This is much faster to scroll through + // for longer lists (hundreds of items). + return <>{metricToSeriesName(labels!)}; +}; + +export default SeriesName; diff --git a/pkg/ui/react-app/src/pages/graph/TimeInput.test.tsx b/pkg/ui/react-app/src/pages/graph/TimeInput.test.tsx new file mode 100644 index 00000000000..9c59c8014c1 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/TimeInput.test.tsx @@ -0,0 +1,60 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import sinon from 'sinon'; +import TimeInput from './TimeInput'; +import { Button, InputGroup, InputGroupAddon, Input } from 'reactstrap'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faChevronLeft, faChevronRight, faTimes } from '@fortawesome/free-solid-svg-icons'; + +describe('TimeInput', () => { + const timeInputProps = { + time: 1572102237932, + range: 60 * 60 * 7, + placeholder: 'time input', + onChangeTime: (): void => { + // Do nothing. + }, + }; + const timeInput = shallow(); + it('renders the string "scalar"', () => { + const inputGroup = timeInput.find(InputGroup); + expect(inputGroup.prop('className')).toEqual('time-input'); + expect(inputGroup.prop('size')).toEqual('sm'); + }); + + it('renders buttons to adjust time', () => { + [ + { + position: 'prepend', + title: 'Decrease time', + icon: faChevronLeft, + }, + { + position: 'append', + title: 'Clear time', + icon: faTimes, + }, + { + position: 'append', + title: 'Increase time', + icon: faChevronRight, + }, + ].forEach(button => { + const onChangeTime = sinon.spy(); + const timeInput = shallow(); + const addon = timeInput.find(InputGroupAddon).filterWhere(addon => addon.prop('addonType') === button.position); + const btn = addon.find(Button).filterWhere(btn => btn.prop('title') === button.title); + const icon = btn.find(FontAwesomeIcon); + expect(icon.prop('icon')).toEqual(button.icon); + expect(icon.prop('fixedWidth')).toBe(true); + btn.simulate('click'); + expect(onChangeTime.calledOnce).toBe(true); + }); + }); + + it('renders an Input', () => { + const input = timeInput.find(Input); + expect(input.prop('placeholder')).toEqual(timeInputProps.placeholder); + expect(input.prop('innerRef')).toEqual({ current: null }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/TimeInput.tsx b/pkg/ui/react-app/src/pages/graph/TimeInput.tsx new file mode 100644 index 00000000000..6f502abe709 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/TimeInput.tsx @@ -0,0 +1,139 @@ +import $ from 'jquery'; +import React, { Component } from 'react'; +import { Button, InputGroup, InputGroupAddon, Input } from 'reactstrap'; + +import moment from 'moment-timezone'; + +import 'tempusdominus-core'; +import 'tempusdominus-bootstrap-4'; +import '../../../node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css'; + +import { dom, library } from '@fortawesome/fontawesome-svg-core'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { + faChevronLeft, + faChevronRight, + faCalendarCheck, + faArrowUp, + faArrowDown, + faTimes, +} from '@fortawesome/free-solid-svg-icons'; + +library.add(faChevronLeft, faChevronRight, faCalendarCheck, faArrowUp, faArrowDown, faTimes); +// Sadly needed to also replace within the date picker, since it's not a React component. +dom.watch(); + +interface TimeInputProps { + time: number | null; // Timestamp in milliseconds. + useLocalTime: boolean; + range: number; // Range in seconds. + placeholder: string; + onChangeTime: (time: number | null) => void; +} + +class TimeInput extends Component { + private timeInputRef = React.createRef(); + private $time: any = null; + + getBaseTime = (): number => { + return this.props.time || moment().valueOf(); + }; + + calcShiftRange = () => (this.props.range * 1000) / 2; + + increaseTime = (): void => { + const time = this.getBaseTime() + this.calcShiftRange(); + this.props.onChangeTime(time); + }; + + decreaseTime = (): void => { + const time = this.getBaseTime() - this.calcShiftRange(); + this.props.onChangeTime(time); + }; + + clearTime = (): void => { + this.props.onChangeTime(null); + }; + + timezone = (): string => { + return this.props.useLocalTime ? moment.tz.guess() : 'UTC'; + }; + + componentDidMount() { + this.$time = $(this.timeInputRef.current!); + + this.$time.datetimepicker({ + icons: { + today: 'fas fa-calendar-check', + }, + buttons: { + //showClear: true, + showClose: true, + showToday: true, + }, + sideBySide: true, + format: 'YYYY-MM-DD HH:mm:ss', + locale: 'en', + timeZone: this.timezone(), + defaultDate: this.props.time, + }); + + this.$time.on('change.datetimepicker', (e: any) => { + if (e.date) { + this.props.onChangeTime(e.date.valueOf()); + } + }); + } + + componentWillUnmount() { + this.$time.datetimepicker('destroy'); + } + + componentDidUpdate(prevProps: TimeInputProps) { + const { time, useLocalTime } = this.props; + if (prevProps.time !== time) { + this.$time.datetimepicker('date', time ? moment(time) : null); + } + if (prevProps.useLocalTime !== useLocalTime) { + this.$time.datetimepicker('options', { timeZone: this.timezone(), defaultDate: null }); + } + } + + render() { + return ( + + + + + + this.$time.datetimepicker('show')} + onBlur={() => this.$time.datetimepicker('hide')} + onKeyDown={e => ['Escape', 'Enter'].includes(e.key) && this.$time.datetimepicker('hide')} + /> + + {/* CAUTION: While the datetimepicker also has an option to show a 'clear' button, + that functionality is broken, so we create an external solution instead. */} + {this.props.time && ( + + + + )} + + + + + + ); + } +} + +export default TimeInput; diff --git a/pkg/ui/react-app/src/pages/index.ts b/pkg/ui/react-app/src/pages/index.ts new file mode 100644 index 00000000000..d6f07d798d0 --- /dev/null +++ b/pkg/ui/react-app/src/pages/index.ts @@ -0,0 +1,11 @@ +import Alerts from './alerts/Alerts'; +import Config from './config/Config'; +import Flags from './flags/Flags'; +import Rules from './rules/Rules'; +import ServiceDiscovery from './serviceDiscovery/Services'; +import Status from './status/Status'; +import Targets from './targets/Targets'; +import PanelList from './graph/PanelList'; +import TSDBStatus from './tsdbStatus/TSDBStatus'; + +export { Alerts, Config, Flags, Rules, ServiceDiscovery, Status, Targets, TSDBStatus, PanelList }; diff --git a/pkg/ui/react-app/src/pages/rules/Rules.tsx b/pkg/ui/react-app/src/pages/rules/Rules.tsx new file mode 100644 index 00000000000..a44a721f534 --- /dev/null +++ b/pkg/ui/react-app/src/pages/rules/Rules.tsx @@ -0,0 +1,16 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { useFetch } from '../../hooks/useFetch'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import { RulesMap, RulesContent } from './RulesContent'; + +const RulesWithStatusIndicator = withStatusIndicator(RulesContent); + +const Rules: FC = ({ pathPrefix }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/rules`); + + return ; +}; + +export default Rules; diff --git a/pkg/ui/react-app/src/pages/rules/RulesContent.tsx b/pkg/ui/react-app/src/pages/rules/RulesContent.tsx new file mode 100644 index 00000000000..1144e435172 --- /dev/null +++ b/pkg/ui/react-app/src/pages/rules/RulesContent.tsx @@ -0,0 +1,131 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { APIResponse } from '../../hooks/useFetch'; +import { Alert, Table, Badge } from 'reactstrap'; +import { Link } from '@reach/router'; +import { formatRelative, createExpressionLink, humanizeDuration } from '../../utils'; +import { Rule } from '../../types/types'; +import { now } from 'moment'; + +interface RulesContentProps { + response: APIResponse; +} + +interface RuleGroup { + name: string; + file: string; + rules: Rule[]; + evaluationTime: string; + lastEvaluation: string; +} + +export interface RulesMap { + groups: RuleGroup[]; +} + +const GraphExpressionLink: FC<{ expr: string; title: string }> = props => { + return ( + <> + {props.title}: + + {props.expr} + +
+ + ); +}; + +export const RulesContent: FC = ({ response }) => { + const getBadgeColor = (state: string) => { + switch (state) { + case 'ok': + return 'success'; + + case 'err': + return 'danger'; + + case 'unknown': + return 'warning'; + } + }; + + if (response.data) { + const groups: RuleGroup[] = response.data.groups; + return ( + <> +

Rules

+ {groups.map((g, i) => { + return ( +
Better 🤓
Better 🤓
```go @@ -780,9 +763,9 @@ func function( In most of the cases, you don't need `else`. You can usually use `continue`, `break` or `return` to end an `if` block. This enables having one less indent and netter consistency so code is more readable. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -796,10 +779,7 @@ for _, elem := range elems { ```
- - - + + + + + ); + } + ); + limited = rows.length !== data.result.length; + break; + case 'matrix': + rows = (limitSeries(data.result) as RangeSamples[]).map((s, index) => { + const valueText = s.values + .map(v => { + return v[1] + ' @' + v[0]; + }) + .join('\n'); + return ( + + + + + ); + }); + limited = rows.length !== data.result.length; + break; + case 'scalar': + rows.push( + + + + + ); + break; + case 'string': + rows.push( + + + + + ); + break; + default: + return Unsupported result value type; + } + + return ( + <> + {limited && ( + + Warning: Fetched {data.result.length} metrics, only displaying first {rows.length}. + + )} + {!doFormat && ( + + Notice: Showing more than {maxFormattableSize} series, turning off label formatting for + performance reasons. + + )} +
Better 🤓
Better 🤓
```go @@ -827,9 +807,9 @@ NOTE: never prefix wrap messages with wording like `failed ... ` or `error occur wanted to do when the failure occurred. Those prefixes are just noise. We are wrapping error, so it's obvious that some error occurred, right? (: Improve readability and consider avoiding those. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -839,10 +819,7 @@ if err != nil { ```
- - - + + + + + + + + ); +}; + +export default CollapsibleAlertPanel; diff --git a/pkg/ui/react-app/src/pages/config/Config.css b/pkg/ui/react-app/src/pages/config/Config.css new file mode 100644 index 00000000000..afe3aad7f17 --- /dev/null +++ b/pkg/ui/react-app/src/pages/config/Config.css @@ -0,0 +1,10 @@ +.config-yaml { + display: block; + padding: 10px; + font-size: 13px; + color: #333; + word-break: break-all; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} diff --git a/pkg/ui/react-app/src/pages/config/Config.tsx b/pkg/ui/react-app/src/pages/config/Config.tsx new file mode 100644 index 00000000000..1636668e6c3 --- /dev/null +++ b/pkg/ui/react-app/src/pages/config/Config.tsx @@ -0,0 +1,52 @@ +import React, { useState, FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Button } from 'reactstrap'; +import CopyToClipboard from 'react-copy-to-clipboard'; +import PathPrefixProps from '../../types/PathPrefixProps'; + +import './Config.css'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import { useFetch } from '../../hooks/useFetch'; + +type YamlConfig = { yaml?: string }; + +interface ConfigContentProps { + error?: Error; + data?: YamlConfig; +} + +const YamlContent = ({ yaml }: YamlConfig) =>
{yaml}
; +YamlContent.displayName = 'Config'; + +const ConfigWithStatusIndicator = withStatusIndicator(YamlContent); + +export const ConfigContent: FC = ({ error, data }) => { + const [copied, setCopied] = useState(false); + const config = data && data.yaml; + return ( + <> +

+ Configuration  + { + setCopied(result); + setTimeout(setCopied, 1500); + }} + > + + +

+ + + ); +}; + +const Config: FC = ({ pathPrefix }) => { + const { response, error } = useFetch(`${pathPrefix}/api/v1/status/config`); + return ; +}; + +export default Config; diff --git a/pkg/ui/react-app/src/pages/flags/Flags.test.tsx b/pkg/ui/react-app/src/pages/flags/Flags.test.tsx new file mode 100644 index 00000000000..6c8c254c765 --- /dev/null +++ b/pkg/ui/react-app/src/pages/flags/Flags.test.tsx @@ -0,0 +1,65 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import { FlagsContent } from './Flags'; +import { Table } from 'reactstrap'; +import toJson from 'enzyme-to-json'; + +const sampleFlagsResponse = { + 'alertmanager.notification-queue-capacity': '10000', + 'alertmanager.timeout': '10s', + 'config.file': './documentation/examples/prometheus.yml', + 'log.format': 'logfmt', + 'log.level': 'info', + 'query.lookback-delta': '5m', + 'query.max-concurrency': '20', + 'query.max-samples': '50000000', + 'query.timeout': '2m', + 'rules.alert.for-grace-period': '10m', + 'rules.alert.for-outage-tolerance': '1h', + 'rules.alert.resend-delay': '1m', + 'storage.remote.flush-deadline': '1m', + 'storage.remote.read-concurrent-limit': '10', + 'storage.remote.read-max-bytes-in-frame': '1048576', + 'storage.remote.read-sample-limit': '50000000', + 'storage.tsdb.allow-overlapping-blocks': 'false', + 'storage.tsdb.max-block-duration': '36h', + 'storage.tsdb.min-block-duration': '2h', + 'storage.tsdb.no-lockfile': 'false', + 'storage.tsdb.path': 'data/', + 'storage.tsdb.retention': '0s', + 'storage.tsdb.retention.size': '0B', + 'storage.tsdb.retention.time': '0s', + 'storage.tsdb.wal-compression': 'false', + 'storage.tsdb.wal-segment-size': '0B', + 'web.console.libraries': 'console_libraries', + 'web.console.templates': 'consoles', + 'web.cors.origin': '.*', + 'web.enable-admin-api': 'false', + 'web.enable-lifecycle': 'false', + 'web.external-url': '', + 'web.listen-address': '0.0.0.0:9090', + 'web.max-connections': '512', + 'web.page-title': 'Prometheus Time Series Collection and Processing Server', + 'web.read-timeout': '5m', + 'web.route-prefix': '/', + 'web.user-assets': '', +}; + +describe('Flags', () => { + it('renders a table with properly configured props', () => { + const w = shallow(); + const table = w.find(Table); + expect(table.props()).toMatchObject({ + bordered: true, + size: 'sm', + striped: true, + }); + }); + it('should not fail if data is missing', () => { + expect(shallow()).toHaveLength(1); + }); + it('should match snapshot', () => { + const w = shallow(); + expect(toJson(w)).toMatchSnapshot(); + }); +}); diff --git a/pkg/ui/react-app/src/pages/flags/Flags.tsx b/pkg/ui/react-app/src/pages/flags/Flags.tsx new file mode 100644 index 00000000000..5f0a409650f --- /dev/null +++ b/pkg/ui/react-app/src/pages/flags/Flags.tsx @@ -0,0 +1,42 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Table } from 'reactstrap'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import { useFetch } from '../../hooks/useFetch'; +import PathPrefixProps from '../../types/PathPrefixProps'; + +interface FlagMap { + [key: string]: string; +} + +interface FlagsProps { + data?: FlagMap; +} + +export const FlagsContent: FC = ({ data = {} }) => { + return ( + <> +

Command-Line Flags

+
Better 🤓
Better 🤓
```go @@ -887,9 +864,9 @@ separate fields. Keep in mind that all log lines in Thanos should be `lowercase` all struct keys are using `camelCase`. It's suggested to keep key names short and consistent. For example, if we always use `block` for block ID, let's not use in the other single log message `id`. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -898,10 +875,7 @@ level.Info(logger).Log("msg", fmt.Sprintf("Found something epic during compactio ```
- - - + +
Better 🤓
Better 🤓
```go @@ -936,9 +910,9 @@ was done temporarily add `TODO(): -
Avoid 🔥
+ -
Avoid 🔥
```go @@ -962,10 +936,7 @@ testutil.NotOk(t, err) ```
- - - +
Better 🤓
Better 🤓
```go @@ -1028,9 +999,9 @@ for _, tcase := range []struct{ Avoid unit testing based on real-time. Always try to mock time that is used within struct by using for example `timeNow func() time.Time` field. For production code, you can initialize the field with `time.Now`. For test code, you can set a custom time that will be used by the struct. - - +
Avoid 🔥
+ -
Avoid 🔥
```go @@ -1041,10 +1012,7 @@ func (s *SomeType) IsExpired(created time.Time) bool { ```
- - - +
Better 🤓
Better 🤓
```go From 52c7eaff6ccd0fedd9554e7ede8cf19d4c8048e2 Mon Sep 17 00:00:00 2001 From: kadern0 Date: Mon, 13 Apr 2020 20:20:44 +1000 Subject: [PATCH 100/190] Added extra check for sorting time Duration and int strings (#2416) Signed-off-by: kadern0 --- CHANGELOG.md | 2 +- cmd/thanos/bucket.go | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 017ec2e4154..72a13749da1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased ### Fixed - +- [#2416](https://github.com/thanos-io/thanos/pull/2416) Bucket: Fixes issue #2416 bug in `inspect --sort-by` doesn't work correctly in all cases - [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: Fixes issue #2281 bug in ruler with parsing query addr with path prefix - [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped - [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping diff --git a/cmd/thanos/bucket.go b/cmd/thanos/bucket.go index 375814fc68b..0b75fa55d32 100644 --- a/cmd/thanos/bucket.go +++ b/cmd/thanos/bucket.go @@ -582,10 +582,21 @@ func (t Table) Less(i, j int) bool { } func compare(s1, s2 string) bool { + // Values can be either Time, Duration, comma-delimited integers or strings. s1Time, s1Err := time.Parse("02-01-2006 15:04:05", s1) s2Time, s2Err := time.Parse("02-01-2006 15:04:05", s2) if s1Err != nil || s2Err != nil { - return s1 < s2 + s1Duration, s1Err := time.ParseDuration(s1) + s2Duration, s2Err := time.ParseDuration(s2) + if s1Err != nil || s2Err != nil { + s1Int, s1Err := strconv.ParseUint(strings.Replace(s1, ",", "", -1), 10, 64) + s2Int, s2Err := strconv.ParseUint(strings.Replace(s2, ",", "", -1), 10, 64) + if s1Err != nil || s2Err != nil { + return s1 < s2 + } + return s1Int < s2Int + } + return s1Duration < s2Duration } return s1Time.Before(s2Time) } From 0bb3b3bd12ca0f77ee3cbc3b7b3149f6f460e9c6 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 13 Apr 2020 11:30:03 +0100 Subject: [PATCH 101/190] docs: Added minor note to single rule. (#2422) Signed-off-by: Bartlomiej Plotka --- docs/contributing/coding-style-guide.md | 36 +++++++++++-------------- 1 file changed, 15 insertions(+), 21 deletions(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 4245cbaa608..96dd3c607d6 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -4,25 +4,6 @@ type: docs menu: contributing --- - - # Thanos Coding Style Guide This document details the official style guides for the various languages we use in the Thanos project. @@ -373,9 +354,9 @@ NOTE: Why you cannot just allocate slice and release and in new iteration alloca available space and just reuses that no? (: Well, it's not that easy. TL;DR is that Go Garbage Collection runs periodically or on certain cases (big heap), but definitely not on every iteration of your loop (that would be super slow). Read more in details [here](https://about.sourcegraph.com/go/gophercon-2018-allocator-wrestling). - +
- +
Avoid 🔥
Avoid 🔥
```go @@ -758,6 +739,19 @@ func function(
+This applies for both calling and defining method / function. + +NOTE: One exception would be when you expect the variadic (e.g. `...string`) arguments to be filled in pairs, e.g: + +```go +level.Info(logger).Log( + "msg", "found something epic during compaction; this looks amazing", + "compNumber", compNumber, + "block", id, + "elapsed", timeElapsed, +) +``` + #### Control Structure: Prefer early returns and avoid `else` In most of the cases, you don't need `else`. You can usually use `continue`, `break` or `return` to end an `if` block. From 33a1344983c4c1e85a070a501fa6e3afb29679dd Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 13 Apr 2020 15:15:06 +0100 Subject: [PATCH 102/190] Fixed TOC. (#2424) Signed-off-by: Bartlomiej Plotka --- docs/contributing/coding-style-guide.md | 74 ++++++++++++------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 96dd3c607d6..bdf6f7c7600 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -24,43 +24,43 @@ development. Some of those are currently impossible to detect with linters. Idea ## TOC -- [Thanos Coding Style Guide](#thanos-coding-style-guide) - * [TOC](#toc) -- [Go](#go) - * [Development / Code Review](#development---code-review) - + [Reliability](#reliability) - - [Defers: Don't Forget to Check Returned Errors](#defers--don-t-forget-to-check-returned-errors) - - [Exhaust Readers](#exhaust-readers) - - [Avoid Globals](#avoid-globals) - - [Never Use Panics](#never-use-panics) - - [Avoid Using the `reflect` or `unsafe` Packages](#avoid-using-the--reflect--or--unsafe--packages) - - [Avoid variable shadowing](#avoid-variable-shadowing) - + [Performance](#performance) - - [Pre-allocating Slices and Maps](#pre-allocating-slices-and-maps) - - [Reuse arrays](#reuse-arrays) - + [Readability](#readability) - - [Keep the Interface Narrow; Avoid Shallow Functions](#keep-the-interface-narrow--avoid-shallow-functions) - - [Use Named Return Parameters Carefully](#use-named-return-parameters-carefully) - - [Clean Defer Only if Function Fails](#clean-defer-only-if-function-fails) - - [Explicitly Handled Returned Errors](#explicitly-handled-returned-errors) - - [Avoid Defining Variables Used Only Once.](#avoid-defining-variables-used-only-once) - - [Only Two Ways of Formatting Functions/Methods](#only-two-ways-of-formatting-functions-methods) - - [Control Structure: Prefer early returns and avoid `else`](#control-structure--prefer-early-returns-and-avoid--else-) - - [Wrap Errors for More Context; Don't Repeat "failed ..." There.](#wrap-errors-for-more-context--don-t-repeat--failed---there) - - [Use the Blank Identifier `_`](#use-the-blank-identifier----) - - [Rules for Log Messages](#rules-for-log-messages) - - [Comment Necessary Surprises](#comment-necessary-surprises) - + [Testing](#testing) - - [Table Tests](#table-tests) - - [Tests for Packages / Structs That Involve `time` package.](#tests-for-packages---structs-that-involve--time--package) - * [Ensured by linters](#ensured-by-linters) - - [Avoid Prints.](#avoid-prints) - - [Ensure Prometheus Metric Registration](#ensure-prometheus-metric-registration) - - [go vet](#go-vet) - - [golangci-lint](#golangci-lint) - - [misspell](#misspell) - - [Commentaries Should we a Full Sentence.](#commentaries-should-we-a-full-sentence) -- [Bash](#bash) +- [Thanos Coding Style Guide](coding-style-guide.md#thanos-coding-style-guide) + * [TOC](coding-style-guide.md#toc) +- [Go](coding-style-guide.md#go) + * [Development / Code Review](coding-style-guide.md#development-code-review) + + [Reliability](coding-style-guide.md#reliability) + - [Defers: Don't Forget to Check Returned Errors](coding-style-guide.md#defers-don-t-forget-to-check-returned-errors) + - [Exhaust Readers](coding-style-guide.md#exhaust-readers) + - [Avoid Globals](coding-style-guide.md#avoid-globals) + - [Never Use Panics](coding-style-guide.md#never-use-panics) + - [Avoid Using the `reflect` or `unsafe` Packages](coding-style-guide.md#avoid-using-the-reflect-or-unsafe-packages) + - [Avoid variable shadowing](coding-style-guide.md#avoid-variable-shadowing) + + [Performance](coding-style-guide.md#performance) + - [Pre-allocating Slices and Maps](coding-style-guide.md#pre-allocating-slices-and-maps) + - [Reuse arrays](coding-style-guide.md#reuse-arrays) + + [Readability](coding-style-guide.md#readability) + - [Keep the Interface Narrow; Avoid Shallow Functions](coding-style-guide.md#keep-the-interface-narrow-avoid-shallow-functions) + - [Use Named Return Parameters Carefully](coding-style-guide.md#use-named-return-parameters-carefully) + - [Clean Defer Only if Function Fails](coding-style-guide.md#clean-defer-only-if-function-fails) + - [Explicitly Handled Returned Errors](coding-style-guide.md#explicitly-handled-returned-errors) + - [Avoid Defining Variables Used Only Once.](coding-style-guide.md#avoid-defining-variables-used-only-once) + - [Only Two Ways of Formatting Functions/Methods](coding-style-guide.md#only-two-ways-of-formatting-functions-methods) + - [Control Structure: Prefer early returns and avoid `else`](coding-style-guide.md#control-structure-prefer-early-returns-and-avoid-else) + - [Wrap Errors for More Context; Don't Repeat "failed ..." There.](coding-style-guide.md#wrap-errors-for-more-context-don-t-repeat-failed-there) + - [Use the Blank Identifier `_`](coding-style-guide.md#use-the-blank-identifier) + - [Rules for Log Messages](coding-style-guide.md#rules-for-log-messages) + - [Comment Necessary Surprises](coding-style-guide.md#comment-necessary-surprises) + + [Testing](coding-style-guide.md#testing) + - [Table Tests](coding-style-guide.md#table-tests) + - [Tests for Packages / Structs That Involve `time` package.](coding-style-guide.md#tests-for-packages-structs-that-involve-time-package) + * [Ensured by linters](coding-style-guide.md#ensured-by-linters) + - [Avoid Prints.](coding-style-guide.md#avoid-prints) + - [Ensure Prometheus Metric Registration](coding-style-guide.md#ensure-prometheus-metric-registration) + - [go vet](coding-style-guide.md#go-vet) + - [golangci-lint](coding-style-guide.md#golangci-lint) + - [misspell](coding-style-guide.md#misspell) + - [Commentaries Should we a Full Sentence.](coding-style-guide.md#commentaries-should-we-a-full-sentence) +- [Bash](coding-style-guide.md#bash) Table of contents generated with markdown-toc From 088817f3169bf36430d255944064e4a3b615e582 Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Tue, 14 Apr 2020 15:44:03 +0900 Subject: [PATCH 103/190] store dashboard: fix gRPC streamed detail panels (#2426) Fixes #2425 Signed-off-by: John Belmonte --- examples/dashboards/store.json | 10 +++++----- mixin/thanos/dashboards/store.libsonnet | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/dashboards/store.json b/examples/dashboards/store.json index 231f327cd56..df5f4cfaf9a 100644 --- a/examples/dashboards/store.json +++ b/examples/dashboards/store.json @@ -865,7 +865,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(grpc_client_handled_total{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)", + "expr": "sum(rate(grpc_server_handled_total{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{grpc_method}} {{grpc_code}}", @@ -942,7 +942,7 @@ "steppedLine": false, "targets": [ { - "expr": "sum(rate(grpc_client_handled_total{grpc_code!=\"OK\",namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)\n", + "expr": "sum(rate(grpc_server_handled_total{grpc_code!=\"OK\",namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, grpc_code)\n", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{job}} {{grpc_method}} {{grpc_code}}", @@ -1019,7 +1019,7 @@ "steppedLine": false, "targets": [ { - "expr": "histogram_quantile(0.99, sum(rate(grpc_client_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", + "expr": "histogram_quantile(0.99, sum(rate(grpc_server_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P99 {{job}} {{grpc_method}}", @@ -1027,7 +1027,7 @@ "step": 10 }, { - "expr": "sum(rate(grpc_client_handling_seconds_sum{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job) * 1\n/\nsum(rate(grpc_client_handling_seconds_count{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job)\n", + "expr": "sum(rate(grpc_server_handling_seconds_sum{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job) * 1\n/\nsum(rate(grpc_server_handling_seconds_count{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job)\n", "format": "time_series", "intervalFactor": 2, "legendFormat": "mean {{job}} {{grpc_method}}", @@ -1035,7 +1035,7 @@ "step": 10 }, { - "expr": "histogram_quantile(0.50, sum(rate(grpc_client_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", + "expr": "histogram_quantile(0.50, sum(rate(grpc_server_handling_seconds_bucket{namespace=\"$namespace\",job=~\"$job\",grpc_type=\"server_stream\"}[$interval])) by (job, grpc_method, le)) * 1", "format": "time_series", "intervalFactor": 2, "legendFormat": "P50 {{job}} {{grpc_method}}", diff --git a/mixin/thanos/dashboards/store.libsonnet b/mixin/thanos/dashboards/store.libsonnet index ba06753e048..6ff060d0f22 100644 --- a/mixin/thanos/dashboards/store.libsonnet +++ b/mixin/thanos/dashboards/store.libsonnet @@ -60,15 +60,15 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; g.row('Detailed') .addPanel( g.panel('Rate', 'Shows rate of handled Streamed gRPC requests from queriers.') + - g.grpcQpsPanelDetailed('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcQpsPanelDetailed('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) .addPanel( g.panel('Errors', 'Shows ratio of errors compared to the total number of handled requests from queriers.') + - g.grpcErrDetailsPanel('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcErrDetailsPanel('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) .addPanel( g.panel('Duration', 'Shows how long has it taken to handle requests from queriers, in quantiles.') + - g.grpcLatencyPanelDetailed('client', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') + g.grpcLatencyPanelDetailed('server', 'namespace="$namespace",job=~"$job",grpc_type="server_stream"') ) + g.collapse ) From b1852418e7e0cdd98d3dd4593c53000ce62d42f9 Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Tue, 14 Apr 2020 15:44:45 +0900 Subject: [PATCH 104/190] use bytes unit where appropriate on grafana dashboards (#2423) Signed-off-by: John Belmonte --- examples/dashboards/compact.json | 4 +-- examples/dashboards/query.json | 4 +-- examples/dashboards/receive.json | 4 +-- examples/dashboards/rule.json | 4 +-- examples/dashboards/sidecar.json | 4 +-- examples/dashboards/store.json | 36 +++++-------------- mixin/thanos/dashboards/store.libsonnet | 13 +++---- .../thanos-grafana-builder/builder.libsonnet | 5 +-- 8 files changed, 29 insertions(+), 45 deletions(-) diff --git a/examples/dashboards/compact.json b/examples/dashboards/compact.json index 9d321458302..b3acd314ba4 100644 --- a/examples/dashboards/compact.json +++ b/examples/dashboards/compact.json @@ -1215,7 +1215,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -1231,7 +1231,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/examples/dashboards/query.json b/examples/dashboards/query.json index d64f1f625d3..6b4b9a09103 100644 --- a/examples/dashboards/query.json +++ b/examples/dashboards/query.json @@ -2147,7 +2147,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -2163,7 +2163,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/examples/dashboards/receive.json b/examples/dashboards/receive.json index 6a2dc294683..7744a142873 100644 --- a/examples/dashboards/receive.json +++ b/examples/dashboards/receive.json @@ -2002,7 +2002,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -2018,7 +2018,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/examples/dashboards/rule.json b/examples/dashboards/rule.json index 55c0498172b..f197768b9c9 100644 --- a/examples/dashboards/rule.json +++ b/examples/dashboards/rule.json @@ -1680,7 +1680,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -1696,7 +1696,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/examples/dashboards/sidecar.json b/examples/dashboards/sidecar.json index a408b048df7..05dc6fc300c 100644 --- a/examples/dashboards/sidecar.json +++ b/examples/dashboards/sidecar.json @@ -1555,7 +1555,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -1571,7 +1571,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/examples/dashboards/store.json b/examples/dashboards/store.json index df5f4cfaf9a..9c9c1e23894 100644 --- a/examples/dashboards/store.json +++ b/examples/dashboards/store.json @@ -2002,7 +2002,7 @@ "dashLength": 10, "dashes": false, "datasource": "$datasource", - "description": "Shows size of chunks that have sent to the bucket, in bytes.", + "description": "Shows size of chunks that have sent to the bucket.", "fill": 1, "id": 24, "legend": { @@ -2056,7 +2056,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Chunk Size (bytes)", + "title": "Chunk Size", "tooltip": { "shared": false, "sort": 0, @@ -2072,7 +2072,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, @@ -2095,25 +2095,7 @@ "repeatRowId": null, "showTitle": true, "title": "Store Sent", - "titleSize": "h6", - "yaxes": [ - { - "format": "decbytes", - "label": null, - "logBase": 1, - "max": null, - "min": 0, - "show": true - }, - { - "format": "short", - "label": null, - "logBase": 1, - "max": null, - "min": null, - "show": false - } - ] + "titleSize": "h6" }, { "collapse": false, @@ -2217,7 +2199,7 @@ "dashLength": 10, "dashes": false, "datasource": "$datasource", - "description": "Show the size of data fetched, in bytes", + "description": "Show the size of data fetched", "fill": 1, "id": 26, "legend": { @@ -2271,7 +2253,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Data Fetched (bytes)", + "title": "Data Fetched", "tooltip": { "shared": false, "sort": 0, @@ -2287,7 +2269,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, @@ -2782,7 +2764,7 @@ "thresholds": [ ], "timeFrom": null, "timeShift": null, - "title": "Memory Used (Bytes)", + "title": "Memory Used", "tooltip": { "shared": false, "sort": 0, @@ -2798,7 +2780,7 @@ }, "yaxes": [ { - "format": "short", + "format": "bytes", "label": null, "logBase": 1, "max": null, diff --git a/mixin/thanos/dashboards/store.libsonnet b/mixin/thanos/dashboards/store.libsonnet index 6ff060d0f22..7b3a8df815f 100644 --- a/mixin/thanos/dashboards/store.libsonnet +++ b/mixin/thanos/dashboards/store.libsonnet @@ -165,7 +165,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; .addRow( g.row('Store Sent') .addPanel( - g.panel('Chunk Size (bytes)', 'Shows size of chunks that have sent to the bucket, in bytes.') + + g.panel('Chunk Size', 'Shows size of chunks that have sent to the bucket.') + g.queryPanel( [ 'histogram_quantile(0.99, sum(rate(thanos_bucket_store_sent_chunk_size_bytes_bucket{namespace="$namespace",job=~"$job"}[$interval])) by (job, le))', @@ -177,9 +177,9 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; 'mean', 'P50', ], - ) - ) + - { yaxes: g.yaxes('decbytes') }, + ) + + { yaxes: g.yaxes('bytes') } + ), ) .addRow( g.row('Series Operations') @@ -198,7 +198,7 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; ) ) .addPanel( - g.panel('Data Fetched (bytes)', 'Show the size of data fetched, in bytes') + + g.panel('Data Fetched', 'Show the size of data fetched') + g.queryPanel( [ 'thanos_bucket_store_series_data_fetched{namespace="$namespace",job=~"$job",quantile="0.99"}', @@ -209,7 +209,8 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet'; 'mean {{job}}', 'P50', ], - ) + ) + + { yaxes: g.yaxes('bytes') } ) .addPanel( g.panel('Result series') + diff --git a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet index 8fb734739b1..4153b6ad858 100644 --- a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet +++ b/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet @@ -150,7 +150,7 @@ local template = grafana.template; resourceUtilizationRow():: $.row('Resources') .addPanel( - $.panel('Memory Used (Bytes)') + + $.panel('Memory Used') + $.queryPanel( [ 'go_memstats_alloc_bytes{namespace="$namespace",job=~"$job",kubernetes_pod_name=~"$pod"}', @@ -168,7 +168,8 @@ local template = grafana.template; 'inuse stack {{pod}}', 'inuse heap {{pod}}', ] - ), + ) + + { yaxes: $.yaxes('bytes') }, ) .addPanel( $.panel('Goroutines') + From 8370209df098ef03c872308b6ab30e36c5ad48bd Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Tue, 14 Apr 2020 17:11:39 +0900 Subject: [PATCH 105/190] bucket verify: document that compactor should be disabled (#2418) Signed-off-by: John Belmonte --- docs/components/bucket.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/components/bucket.md b/docs/components/bucket.md index dd3f064c113..4922b740d5b 100644 --- a/docs/components/bucket.md +++ b/docs/components/bucket.md @@ -172,6 +172,8 @@ Example: $ thanos bucket verify --objstore.config-file="..." ``` +When using the `--repair` option, make sure that the compactor job is disabled first. + [embedmd]: # "flags/bucket_verify.txt" ```txt From 5dbfb5a3cae02526bafeeb95e1e3e389e6406d32 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Tue, 14 Apr 2020 09:13:23 +0100 Subject: [PATCH 106/190] docs: Fixed typo in coding guide. (#2427) Signed-off-by: Bartlomiej Plotka --- docs/contributing/coding-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index bdf6f7c7600..85d22a80f64 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -827,7 +827,7 @@ if err != nil { #### Use the Blank Identifier `_` -Black identifiers are very useful to mark variables that are not used. Consider the following cases: +Blank identifiers are very useful to mark variables that are not used. Consider the following cases: ```go // We don't need the second return parameter. From d0d54d3f5aa90303daedf371748baf123890744b Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Tue, 14 Apr 2020 09:29:07 +0100 Subject: [PATCH 107/190] Added Marco as Thanos Maintainer (#2428) Also, reordered list alphabetically. Signed-off-by: Bartlomiej Plotka --- MAINTAINERS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index f87c26a3379..346b668580f 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -5,12 +5,13 @@ | Bartłomiej Płotka | bwplotka@gmail.com | `@bwplotka` | [@bwplotka](https://github.com/bwplotka) | Red Hat | | Frederic Branczyk | fbranczyk@gmail.com | `@brancz` | [@brancz](https://github.com/brancz) | Red Hat | | Giedrius Statkevičius | giedriuswork@gmail.com | `@Giedrius Statkevičius` | [@GiedriusS](https://github.com/GiedriusS) | AdForm | +| Lucas Servén Marín | lserven@gmail.com | `@squat` | [@squat](https://github.com/squat) | Red Hat | | Povilas Versockas | p.versockas@gmail.com | `@povilasv` | [@povilasv](https://github.com/povilasv) | Utility Warehouse | +| Marco Pracucci | marco@pracucci.com | `@pracucci` | [@pracucci](https://github.com/pracucci) | Grafana Labs | | Matthias Loibl | mail@matthiasloibl.com | `@metalmatze` | [@metalmatze](https://github.com/metalmatze)| Red Hat | -| Lucas Servén Marín | lserven@gmail.com | `@squat` | [@squat](https://github.com/squat) | Red Hat | We are bunch of people from different companies with various interests and skills. -We are from different parts of Europe: Germany, Lithuania, Poland and UK. +We are from different parts of Europe: Germany, Italy, Lithuania, Poland and UK. We have something in common though: We all share the love for OpenSource, Go, Prometheus, :coffee: and Observability topics. As either Software Developers or SRE (or both!) we've chosen to maintain (mostly in our free time) Thanos, the de facto way to scale awesome [Prometheus](https://prometheus.io) project. From 91f5960a3becdbd13c296c1e57bdbf57c329eeed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Tue, 14 Apr 2020 15:17:00 +0300 Subject: [PATCH 108/190] store: proxy: fix queries never timing out bug (#2411) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * store: proxy: add test for deadlocking problem Signed-off-by: Giedrius Statkevičius * store: proxy: add fix for timeouts Checking here if the series context has ended is the correct fix here. We want to check it because if any of the other Series() calls error out then the context is canceled. So, it is equal to checking for errors "downstream", in `mergedSeriesSet`. Also, `handleErr()` here is the correct function to use because in such a case we want to set `s.err` -- if `io.EOF` still hasn't been received then it means that StoreAPI still has some data that it wants to send but hasn't yet. With this, the previously added test passes. Signed-off-by: Giedrius Statkevičius --- CHANGELOG.md | 1 + pkg/store/proxy.go | 7 ++++- pkg/store/proxy_test.go | 66 ++++++++++++++++++++++++++++++++++++++++- 3 files changed, 72 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72a13749da1..934bb47306b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate - [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty - [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected +- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs ### Added diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 8440de2f966..c071848c051 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -434,7 +434,12 @@ func startStreamSeriesSet( s.warnCh.send(storepb.NewWarnSeriesResponse(errors.New(w))) continue } - s.recvCh <- rr.r.GetSeries() + select { + case s.recvCh <- rr.r.GetSeries(): + case <-ctx.Done(): + s.handleErr(errors.Wrapf(ctx.Err(), "failed to receive any data from %s", s.name), done) + return + } } }() return s diff --git a/pkg/store/proxy_test.go b/pkg/store/proxy_test.go index 1e49cce4564..8e8b6022d4e 100644 --- a/pkg/store/proxy_test.go +++ b/pkg/store/proxy_test.go @@ -462,6 +462,60 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { expectedErr error expectedWarningsLen int }{ + { + title: "partial response disabled; 1st errors out after some delay; 2nd store is fast", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 2 * time.Second, + SlowSeriesIndex: 1, + injectedError: errors.New("test"), + injectedErrorIndex: 1, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedErr: errors.New("test: receive series from test: test"), + }, { title: "partial response disabled; 1st store is slow, 2nd store is fast;", storeAPIs: []Client{ @@ -1349,6 +1403,10 @@ type mockedStoreAPI struct { LastSeriesReq *storepb.SeriesRequest LastLabelValuesReq *storepb.LabelValuesRequest LastLabelNamesReq *storepb.LabelNamesRequest + + // injectedError will be injected into Recv() if not nil. + injectedError error + injectedErrorIndex int } func (s *mockedStoreAPI) Info(ctx context.Context, req *storepb.InfoRequest, _ ...grpc.CallOption) (*storepb.InfoResponse, error) { @@ -1358,7 +1416,7 @@ func (s *mockedStoreAPI) Info(ctx context.Context, req *storepb.InfoRequest, _ . func (s *mockedStoreAPI) Series(ctx context.Context, req *storepb.SeriesRequest, _ ...grpc.CallOption) (storepb.Store_SeriesClient, error) { s.LastSeriesReq = req - return &StoreSeriesClient{ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration, slowSeriesIndex: s.SlowSeriesIndex}, s.RespError + return &StoreSeriesClient{injectedErrorIndex: s.injectedErrorIndex, injectedError: s.injectedError, ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration, slowSeriesIndex: s.SlowSeriesIndex}, s.RespError } func (s *mockedStoreAPI) LabelNames(ctx context.Context, req *storepb.LabelNamesRequest, _ ...grpc.CallOption) (*storepb.LabelNamesResponse, error) { @@ -1382,12 +1440,18 @@ type StoreSeriesClient struct { respSet []*storepb.SeriesResponse respDur time.Duration slowSeriesIndex int + + injectedError error + injectedErrorIndex int } func (c *StoreSeriesClient) Recv() (*storepb.SeriesResponse, error) { if c.respDur != 0 && (c.slowSeriesIndex == c.i || c.slowSeriesIndex == 0) { time.Sleep(c.respDur) } + if c.injectedError != nil && (c.injectedErrorIndex == c.i || c.injectedErrorIndex == 0) { + return nil, c.injectedError + } if c.i >= len(c.respSet) { return nil, io.EOF From d8b70f617126beb3c97c18bc3d4a73b06cc915c9 Mon Sep 17 00:00:00 2001 From: Stephan Kirsten Date: Tue, 14 Apr 2020 16:45:24 +0200 Subject: [PATCH 109/190] docs: fixed typo in coding style guide (#2431) Signed-off-by: Stephan Kirsten --- docs/contributing/coding-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 85d22a80f64..65746e06aec 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -1060,7 +1060,7 @@ No Grammarly plugin for this yet ): (We wish). Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L317). -#### Commentaries Should we a Full Sentence. +#### Commentaries Should be a Full Sentence. All comments should be a full sentence. Should start with Uppercase letter and end with a period. From f9b1cbce5c7fd95d427c1c0d66922a8a9f649789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 14 Apr 2020 17:28:52 +0200 Subject: [PATCH 110/190] docs/release-process: make shell command copyable (#2433) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In general, I think it is easier for users of guides when shell commands are listed without a preceeding `$`, otherwise the commands cannot be directly copied and pasted into a terminal. Signed-off-by: Lucas Servén Marín --- docs/release-process.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/release-process.md b/docs/release-process.md index 774a24f8e25..c22074d1af1 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -89,9 +89,9 @@ Release is happening on separate `release-.` branch. 1. After review, merge the PR and immediately after this tag a version: ```bash - $ tag=$(cat VERSION) - $ git tag -s "v${tag}" -m "v${tag}" - $ git push origin "v${tag}" + tag=$(cat VERSION) + git tag -s "v${tag}" -m "v${tag}" + git push origin "v${tag}" ``` Signing a tag with a GPG key is appreciated, but in case you can't add a GPG key to your Github account using the following [procedure](https://help.github.com/articles/generating-a-gpg-key/), you can replace the `-s` flag by `-a` flag of the `git tag` command to only annotate the tag without signing. From 9db99a04bf08a1058fd77c3bf6a033c391d2e0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 14 Apr 2020 17:29:22 +0200 Subject: [PATCH 111/190] docs/contributing: clean up style guide grammar (#2432) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit makes some small grammar fixes to the coding style guide. Signed-off-by: Lucas Servén Marín --- docs/contributing/coding-style-guide.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 65746e06aec..5ed4ddad674 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -53,13 +53,13 @@ development. Some of those are currently impossible to detect with linters. Idea + [Testing](coding-style-guide.md#testing) - [Table Tests](coding-style-guide.md#table-tests) - [Tests for Packages / Structs That Involve `time` package.](coding-style-guide.md#tests-for-packages-structs-that-involve-time-package) - * [Ensured by linters](coding-style-guide.md#ensured-by-linters) - - [Avoid Prints.](coding-style-guide.md#avoid-prints) + * [Enforced by Linters](coding-style-guide.md#enforced-by-linters) + - [Avoid Prints](coding-style-guide.md#avoid-prints) - [Ensure Prometheus Metric Registration](coding-style-guide.md#ensure-prometheus-metric-registration) - [go vet](coding-style-guide.md#go-vet) - [golangci-lint](coding-style-guide.md#golangci-lint) - [misspell](coding-style-guide.md#misspell) - - [Commentaries Should we a Full Sentence.](coding-style-guide.md#commentaries-should-we-a-full-sentence) + - [Comments Should be Full Sentences](coding-style-guide.md#comments-should-be-full-sentences) - [Bash](coding-style-guide.md#bash) Table of contents generated with markdown-toc @@ -1019,12 +1019,12 @@ func (s *SomeType) IsExpired(created time.Time) bool {
-## Ensured by linters +## Enforced by Linters This is the list of rules we ensure automatically. This section is for those who are curious why such linting rules were added or want similar ones in their Go project. 🤗 -#### Avoid Prints. +#### Avoid Prints Never use `print`. Always use a passed `go-kit/log.Logger`. @@ -1032,8 +1032,8 @@ Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246 #### Ensure Prometheus Metric Registration -It's very easy to forget to add Prometheus metric (e.g `prometheus.Counter`) into `registry.MustRegister` function. -To avoid this we ensure all metrics are created via `promtest.With(r).New*` and old type of registration is not allowed. +It's very easy to forget to add Prometheus metrics (e.g a `prometheus.Counter`) into a `registry.MustRegister` function. +To avoid this, we ensure all metrics are created via `promtest.With(r).New*` and we disallow the old type of registration. Read more about the problem [here](https://github.com/thanos-io/thanos/issues/2102). Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L308). @@ -1046,23 +1046,23 @@ Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246 #### golangci-lint -[golangci-lint](https://github.com/golangci/golangci-lint) is an amazing tool that allows running set of different custom -linters across Go community against your code. Give it a Star and use it. (: +[golangci-lint](https://github.com/golangci/golangci-lint) is an amazing tool that allows running a set of different custom +linters from the Go community against your code. Give it a star and use it. (: Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L315) with [those linters](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/.golangci.yml#L31) enabled. #### misspell -Misspell is amazing, it catches some typos in comments or docs. +Misspell is amazing, it catches typos in comments and docs. No Grammarly plugin for this yet ): (We wish). Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L317). -#### Commentaries Should be a Full Sentence. +#### Comments Should be Full Sentences -All comments should be a full sentence. Should start with Uppercase letter and end with a period. +All comments should be full sentences. They should start with an uppercase letter and end with a period. Ensured [here](https://github.com/thanos-io/thanos/blob/40526f52f54d4501737e5246c0e71e56dd7e0b2d/Makefile#L194). From 69f9c4e604d20b2e640f790957414cf3d19ecafa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 15 Apr 2020 11:10:13 +0200 Subject: [PATCH 112/190] cut v0.12.0 (#2437) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 4 ++-- VERSION | 2 +- tutorials/katacoda/thanos/1-globalview/courseBase.sh | 2 +- tutorials/katacoda/thanos/1-globalview/step2.md | 8 ++++---- tutorials/katacoda/thanos/1-globalview/step3.md | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0412938f25..ebbc4899939 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased -## [v0.12.0-rc.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.0-rc.1) - 2020.04.08 +## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 ### Fixed @@ -26,7 +26,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. - [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: fixed bug that was causing all posting offsets to be used instead of only 1/32 as intended; added hidden flag to control this behavior. - [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. -- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixex bug causing partial writes of index-header. +- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixed bug causing partial writes of index-header. - [#2383](https://github.com/thanos-io/thanos/pull/2383) Store: handle expected errors correctly, e.g. do not increment failure counters. ### Added diff --git a/VERSION b/VERSION index 7a5dd6c28d6..ac454c6a1fc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.0-rc.1 +0.12.0 diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index afc4ccc382c..53b64d03ff0 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash docker pull quay.io/prometheus/prometheus:v2.16.0 -docker pull quay.io/thanos/thanos:v0.12.0-rc.1 +docker pull quay.io/thanos/thanos:v0.12.0 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index aecbe515dfc..ed8bcc1576f 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.12.0-rc.1 --help +docker run --rm quay.io/thanos/thanos:v0.12.0 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.1 \ + quay.io/thanos/thanos:v0.12.0 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.1 \ + quay.io/thanos/thanos:v0.12.0 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0-rc.1 \ + quay.io/thanos/thanos:v0.12.0 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index 9e3d65df1a8..c7635b46071 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.12.0-rc.1 \ + quay.io/thanos/thanos:v0.12.0 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ From c92c30243b786eab156331ebac4e977e1361998f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 15 Apr 2020 15:24:58 +0200 Subject: [PATCH 113/190] .circleci: use consistent ci image tags (#2440) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We were not using the latest thanos-ci image tag for every part of the CI pipeline: we were using 0.3.0 for tests but 0.2.0 for all builds. Signed-off-by: Lucas Servén Marín --- .circleci/config.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d5593d759ae..ac2336fe091 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,13 @@ # NOTE: Current plan gives 1500 build minutes per month. version: 2 +# https://circleci.com/blog/circleci-hacks-reuse-yaml-in-your-circleci-config-with-yaml/ +defaults: &defaults + docker: + # Built by Thanos make docker-ci + - image: quay.io/thanos/thanos-ci:v0.3.0 jobs: test: - docker: - # Build by Thanos make docker-ci - - image: quay.io/thanos/thanos-ci:v0.3.0 + <<: *defaults working_directory: /go/src/github.com/thanos-io/thanos environment: GO111MODULE: 'on' @@ -58,9 +61,7 @@ jobs: - .build publish_master: - docker: - # Build by Thanos make docker-ci - - image: quay.io/thanos/thanos-ci:v0.2.0 + <<: *defaults working_directory: /go/src/github.com/thanos-io/thanos steps: - checkout @@ -78,9 +79,7 @@ jobs: - run: make docker-push publish_release: - docker: - # Build by Thanos make docker-ci - - image: quay.io/thanos/thanos-ci:v0.2.0 + <<: *defaults working_directory: /go/src/github.com/thanos-io/thanos environment: GOBIN: "/go/bin" From 80d050e577c0b2050dce65eea65679f7cd3aab52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 15 Apr 2020 15:37:41 +0200 Subject: [PATCH 114/190] CHANGELOG.md: fix changelog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The changelog in the release-0.12 branch is correct, but somewhere in the merge back into master, the changelog was mangled. This puts the fixes in their correct places. Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40ffaf31d1a..eb99c025323 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,13 +13,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed -- [#2208](https://github.com/thanos-io/thanos/pull/2208) Query and Rule: fix handling of `web.route-prefix` to correctly handle `/` and prefixes that do not begin with a `/`. -- [#2311](https://github.com/thanos-io/thanos/pull/2311) Receive: ensure receive component serves TLS when TLS configuration is provided. -- [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. -- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: fixed bug that was causing all posting offsets to be used instead of only 1/32 as intended; added hidden flag to control this behavior. -- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. -- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixed bug causing partial writes of index-header. -- [#2383](https://github.com/thanos-io/thanos/pull/2383) Store: handle expected errors correctly, e.g. do not increment failure counters. +- [#2416](https://github.com/thanos-io/thanos/pull/2416) Bucket: fixes issue #2416 bug in `inspect --sort-by` doesn't work correctly in all cases +- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs ### Added @@ -29,14 +24,20 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed -- [#2416](https://github.com/thanos-io/thanos/pull/2416) Bucket: Fixes issue #2416 bug in `inspect --sort-by` doesn't work correctly in all cases -- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: Fixes issue #2281 bug in ruler with parsing query addr with path prefix -- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: Fixed Issue #2204 bug in alert queue signalling filled up queue and alerts were dropped -- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web - Sort chunks by thanos.downsample.resolution for better grouping -- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: Fix metrics registered multiple times in bucket replicate -- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: Fixed Issue #2260 bucket passes null when storage is empty -- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected -- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs +- [#2288](https://github.com/thanos-io/thanos/pull/2288) Ruler: fixes issue #2281, a bug causing incorrect parsing of query address with path prefix. +- [#2238](https://github.com/thanos-io/thanos/pull/2238) Ruler: fixed issue #2204, where a bug in alert queue signaling filled up the queue and alerts were dropped. +- [#2231](https://github.com/thanos-io/thanos/pull/2231) Bucket Web: sort chunks by thanos.downsample.resolution for better grouping. +- [#2254](https://github.com/thanos-io/thanos/pull/2254) Bucket: fix issue where metrics were registered multiple times in bucket replicate. +- [#2271](https://github.com/thanos-io/thanos/pull/2271) Bucket Web: fixed issue #2260, where the bucket passes null when storage is empty. +- [#2339](https://github.com/thanos-io/thanos/pull/2339) Query: fix a bug where `--store.unhealthy-timeout` was never respected. +- [#2208](https://github.com/thanos-io/thanos/pull/2208) Query and Rule: fix handling of `web.route-prefix` to correctly handle `/` and prefixes that do not begin with a `/`. +- [#2311](https://github.com/thanos-io/thanos/pull/2311) Receive: ensure receive component serves TLS when TLS configuration is provided. +- [#2319](https://github.com/thanos-io/thanos/pull/2319) Query: fixed inconsistent naming of metrics. +- [#2390](https://github.com/thanos-io/thanos/pull/2390) Store: fixed bug that was causing all posting offsets to be used instead of only 1/32 as intended; added hidden flag to control this behavior. +- [#2393](https://github.com/thanos-io/thanos/pull/2393) Store: fixed bug causing certain not-existing label values queried to fail with "invalid-size" error from binary header. +- [#2382](https://github.com/thanos-io/thanos/pull/2382) Store: fixed bug causing partial writes of index-header. +- [#2383](https://github.com/thanos-io/thanos/pull/2383) Store: handle expected errors correctly, e.g. do not increment failure counters. + ### Added From c983b0b51c894b201db9ed240eff81186a0556aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 15 Apr 2020 16:24:07 +0200 Subject: [PATCH 115/190] store: proxy: fix queries never timing out bug (#2411) (#2443) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * store: proxy: add test for deadlocking problem Signed-off-by: Giedrius Statkevičius * store: proxy: add fix for timeouts Checking here if the series context has ended is the correct fix here. We want to check it because if any of the other Series() calls error out then the context is canceled. So, it is equal to checking for errors "downstream", in `mergedSeriesSet`. Also, `handleErr()` here is the correct function to use because in such a case we want to set `s.err` -- if `io.EOF` still hasn't been received then it means that StoreAPI still has some data that it wants to send but hasn't yet. With this, the previously added test passes. Signed-off-by: Giedrius Statkevičius Co-authored-by: Giedrius Statkevičius --- CHANGELOG.md | 4 +++ pkg/store/proxy.go | 7 ++++- pkg/store/proxy_test.go | 66 ++++++++++++++++++++++++++++++++++++++++- 3 files changed, 75 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebbc4899939..a1ea3d9713b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel ## Unreleased +### Fixed + +- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs + ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 ### Fixed diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index 8440de2f966..c071848c051 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -434,7 +434,12 @@ func startStreamSeriesSet( s.warnCh.send(storepb.NewWarnSeriesResponse(errors.New(w))) continue } - s.recvCh <- rr.r.GetSeries() + select { + case s.recvCh <- rr.r.GetSeries(): + case <-ctx.Done(): + s.handleErr(errors.Wrapf(ctx.Err(), "failed to receive any data from %s", s.name), done) + return + } } }() return s diff --git a/pkg/store/proxy_test.go b/pkg/store/proxy_test.go index 1e49cce4564..8e8b6022d4e 100644 --- a/pkg/store/proxy_test.go +++ b/pkg/store/proxy_test.go @@ -462,6 +462,60 @@ func TestProxyStore_SeriesSlowStores(t *testing.T) { expectedErr error expectedWarningsLen int }{ + { + title: "partial response disabled; 1st errors out after some delay; 2nd store is fast", + storeAPIs: []Client{ + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("a", "b"), []sample{{1, 1}, {2, 2}, {3, 3}}), + }, + RespDuration: 2 * time.Second, + SlowSeriesIndex: 1, + injectedError: errors.New("test"), + injectedErrorIndex: 1, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + &testClient{ + StoreClient: &mockedStoreAPI{ + RespSeries: []*storepb.SeriesResponse{ + storepb.NewWarnSeriesResponse(errors.New("warning")), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + storeSeriesResponse(t, labels.FromStrings("b", "a"), []sample{{4, 1}, {5, 2}, {6, 3}}), + }, + }, + labelSets: []storepb.LabelSet{{Labels: []storepb.Label{{Name: "ext", Value: "1"}}}}, + minTime: 1, + maxTime: 300, + }, + }, + req: &storepb.SeriesRequest{ + MinTime: 1, + MaxTime: 300, + Matchers: []storepb.LabelMatcher{{Name: "ext", Value: "1", Type: storepb.LabelMatcher_EQ}}, + PartialResponseDisabled: true, + }, + expectedErr: errors.New("test: receive series from test: test"), + }, { title: "partial response disabled; 1st store is slow, 2nd store is fast;", storeAPIs: []Client{ @@ -1349,6 +1403,10 @@ type mockedStoreAPI struct { LastSeriesReq *storepb.SeriesRequest LastLabelValuesReq *storepb.LabelValuesRequest LastLabelNamesReq *storepb.LabelNamesRequest + + // injectedError will be injected into Recv() if not nil. + injectedError error + injectedErrorIndex int } func (s *mockedStoreAPI) Info(ctx context.Context, req *storepb.InfoRequest, _ ...grpc.CallOption) (*storepb.InfoResponse, error) { @@ -1358,7 +1416,7 @@ func (s *mockedStoreAPI) Info(ctx context.Context, req *storepb.InfoRequest, _ . func (s *mockedStoreAPI) Series(ctx context.Context, req *storepb.SeriesRequest, _ ...grpc.CallOption) (storepb.Store_SeriesClient, error) { s.LastSeriesReq = req - return &StoreSeriesClient{ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration, slowSeriesIndex: s.SlowSeriesIndex}, s.RespError + return &StoreSeriesClient{injectedErrorIndex: s.injectedErrorIndex, injectedError: s.injectedError, ctx: ctx, respSet: s.RespSeries, respDur: s.RespDuration, slowSeriesIndex: s.SlowSeriesIndex}, s.RespError } func (s *mockedStoreAPI) LabelNames(ctx context.Context, req *storepb.LabelNamesRequest, _ ...grpc.CallOption) (*storepb.LabelNamesResponse, error) { @@ -1382,12 +1440,18 @@ type StoreSeriesClient struct { respSet []*storepb.SeriesResponse respDur time.Duration slowSeriesIndex int + + injectedError error + injectedErrorIndex int } func (c *StoreSeriesClient) Recv() (*storepb.SeriesResponse, error) { if c.respDur != 0 && (c.slowSeriesIndex == c.i || c.slowSeriesIndex == 0) { time.Sleep(c.respDur) } + if c.injectedError != nil && (c.injectedErrorIndex == c.i || c.injectedErrorIndex == 0) { + return nil, c.injectedError + } if c.i >= len(c.respSet) { return nil, io.EOF From c77d7ca57f6b444539e3fd466951008960740f67 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 16 Apr 2020 10:12:01 +0100 Subject: [PATCH 116/190] proposal: Added proposal for new Thanos component: Thanos Frontend. (#2434) * proposal: Added proposal for new Thanos component: Thanos Frontend. Signed-off-by: Bartlomiej Plotka * Added more rationales for separate binary. Signed-off-by: Bartlomiej Plotka * Addressed Marco comments. Signed-off-by: Bartlomiej Plotka * Addressed lucas comments. Signed-off-by: Bartlomiej Plotka * Changed to approved. Signed-off-by: Bartlomiej Plotka * Moved to query-frontend command. Signed-off-by: Bartlomiej Plotka --- .../202004_embedd_cortex_frontend.md | 128 ++++++++++++++++++ docs/proposals/_index.md | 10 ++ 2 files changed, 138 insertions(+) create mode 100644 docs/proposals/202004_embedd_cortex_frontend.md diff --git a/docs/proposals/202004_embedd_cortex_frontend.md b/docs/proposals/202004_embedd_cortex_frontend.md new file mode 100644 index 00000000000..da07c0e222a --- /dev/null +++ b/docs/proposals/202004_embedd_cortex_frontend.md @@ -0,0 +1,128 @@ +--- +title: Adding a New Thanos Component that Embeds Cortex Query Frontend +type: proposal +menu: proposals +status: approved +owner: bwplotka +--- + +### Related Tickets + +* Response caching: https://github.com/thanos-io/thanos/issues/1651 +* Moving query frontend to separate repo: https://github.com/cortexproject/Cortex/issues/1672 +* Discussion about naming: https://cloud-native.slack.com/archives/CK5RSSC10/p1586939369171300 + +## Summary + +This proposal describes addition of a new Thanos command (component) into `cmd/thanos` called `query-frontend` +This component will literally import a certain version of Cortex [frontend package](https://github.com/cortexproject/Cortex/tree/4410bed704e7d8f63418b02b328ddb93d99fad0b/pkg/querier/frontend). + +We will go through rationales, and potential alternatives. + +## Motivation + +[Cortex Frontend](https://www.youtube.com/watch?v=eyBbImSDOrI&t=2s) was introduced by Tom in August 2019. It was designed +to be deployed in front of Prometheus Query API in order to ensure: + +* Query split by time. +* Query step alignment. +* Query retry logic +* Query limit logic +* Query response cache in memory, Memcached or Redis. + +Since the nature of Cortex backend is really similar to Thanos, with exactly the same PromQL API, and long term capabilities, the caching +work done for Cortex fits to Thanos. Given also our good collaboration in the past, it feels natural to reuse Cortex's code. +We even started discussion to move it to separate repo, but there was no motivation towards this, since there is no issue on using +the Cortex one, as Cortex is happy to take generalized contributions. + +At the end we were advertising to use Cortex query frontend on production on top of Thanos and this works considerably well, with some +problems on edge cases and for downsampled data as mentioned [here](https://github.com/thanos-io/thanos/issues/1651). + +However, we realized recently that asking users to install suddenly Cortex component on top of Thanos system is extremely confusing: + +* Cortex has totally different way of configuring services. It requires deciding what module you have in single YAML file. Thanos in opposite +have flags and different subcommand for each component. +* Cortex has bit different way of configuring memcached, which is inconsistent with what we have in Thanos Store Gateway. +* There are many Cortex specific configuration items which can confuse Thanos user and increase complexity overall. +* We have many ideas how to improve Cortex Query Frontend on top of Thanos, but adding Thanos specific configuration options will increase +complexity on Cortex side as well. +* Cortex has no good example or tutorial on how to use frontend either. We have only [Observatorium example](https://github.com/observatorium/configuration/blob/5129a8beb9507f29aec05566ca9a0f2ad82bbf76/environments/openshift/manifests/observatorium-template.yaml#L515). + +All of this were causing confusion and questions like [this](https://cloud-native.slack.com/archives/CK5RSSC10/p1586504362400300?thread_ts=1586492170.387900&cid=CK5RSSC10). + +At the end we decided with Thanos and Cortex maintainers that, ultimately, it would be awesome to create a new Thanos service called `query-frontend`. + +## Use Cases + +* User can cache responses for query range. +* User can split query range queries. +* User can rate limit and retry range queries. + +## Goals of this design + +* Enable response caching that will easy to use for Thanos users. +* Keep it extensible and scalable for future improvements like advanced query planning, queuing, rate limiting etc. +* Reuse as much as possible between projects, contribute. +* Use the same configuration patterns as rest of Thanos components. + +## Non Goals + +* Create Thanos specific response caching from scratch. + +## Proposal + +The idea is to create `thanos query-frontend` component that allows specifying following options: + +* `--query-range.split-interval`, `time.Duration` +* `--query-range.max-retries-per-request`, `int`, default = `5` +* `--query-range.disable-step-align`, `bool` +* `--query-range.response-cache-ttl` `time.Duration` +* `--query-range.response-cache-max-freshness` `time.Duration` default = `1m` +* `--query-range.response-cache-config(-file)` `pathorcontent` + [CacheConfig](https://github.com/thanos-io/thanos/blob/55cb8ca38b3539381dc6a781e637df15c694e50a/pkg/store/cache/factory.go#L32) + +We plan to have in-mem, fifo and memcached support for now. Cache config will be exactly the same as the one used for Store Gateway. + +This command will be placeholder for any query planning or queueing logic that we might want to add at some point. It will be not part of any gRPC API. + +To make this happen we will propose a small refactor in Cortex code to avoid unnecessary package dependencies. + +### Alternatives + +#### Don't add anything, document Cortex query frontend and add examples of usage + +Unfortunately we tried this path already without success. Reasons were mentioned in [Motivation](202004_embedd_cortex_frontend.md#Motivation) + +#### Add response caching to Querier itself, in the same process. + +This will definitely simplify deployment if Querier would allow caching directly. However, this way is not really scalable. + +Furthermore, eventually frontend will be responsible for more than just caching. It is meant to do query planning like splitting or even +advanced query parallelization (query sharding). This might mean future improvements in terms of query scheduling, queuing and retrying. +This means that at some point we would need an ability to scale query part and caching/query planner totally separately. + +Last but not least splitting queries allows to perform request in parallel. Only if used in single binary we can achieve load balancing of those requests. + +NOTE: We can still consider just simple response caching inside the Querier if user will request so. + +#### Write response caching from scratch. + +I think this does not need to be explained. Response caching has proven to be not trivial. It's really amazing that we +have opportunity to work towards something that works with experts in the field like @tomwilkie and others from Loki and Cortex Team. + +Overall, [Reusing is caring](https://www.bwplotka.dev/2020/how-to-became-oss-maintainer/#5-want-more-help-give-back-help-others). + +## Work Plan + +1. Refactor [IndexCacheConfig](https://github.com/thanos-io/thanos/blob/55cb8ca38b3539381dc6a781e637df15c694e50a/pkg/store/cache/factory.go#L32) to generic cache config so we can reuse. +Make it implement Cortex cache.Cache interface. +1. Add necessary changes to Cortex frontend + * Metric generalization (they are globals now). + * Avoid unnecessary dependencies. +1. Add `thanos query-frontend` subcommand. +1. Add proper e2e test using cache. +1. Document new subcommand +1. Add to [kube-thanos](https://github.com/thanos-io/kube-thanos) + +## Future Work + +Improvements to Cortex query frontend, so Thanos `query-frontend` as described [here](https://github.com/thanos-io/thanos/issues/1651) diff --git a/docs/proposals/_index.md b/docs/proposals/_index.md index 906e867f16e..7a77eb8108a 100644 --- a/docs/proposals/_index.md +++ b/docs/proposals/_index.md @@ -1,3 +1,13 @@ --- title: "Proposals:" --- + +List of current proposals. + +Proposals can have 5 Statuses (`.Params.Status`): + +* accepted +* complete +* rejected +* in-review +* draft \ No newline at end of file From b391ca115ed8bf572b83398a9e98dad9351af0b6 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Thu, 16 Apr 2020 13:21:06 +0200 Subject: [PATCH 117/190] Fixed memcached client metrics initialization (#2446) Signed-off-by: Marco Pracucci --- pkg/cacheutil/memcached_client.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 9c522bcc7ca..29f124b6c3c 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -217,18 +217,24 @@ func newMemcachedClient( Help: "Total number of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) + c.operations.WithLabelValues(opGetMulti) + c.operations.WithLabelValues(opSet) c.failures = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operation_failures_total", Help: "Total number of operations against memcached that failed.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation"}) + c.failures.WithLabelValues(opGetMulti) + c.failures.WithLabelValues(opSet) c.skipped = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ Name: "thanos_memcached_operation_skipped_total", Help: "Total number of operations against memcached that have been skipped.", ConstLabels: prometheus.Labels{"name": name}, }, []string{"operation", "reason"}) + c.skipped.WithLabelValues(opGetMulti, reasonMaxItemSize) + c.skipped.WithLabelValues(opSet, reasonMaxItemSize) c.duration = promauto.With(reg).NewHistogramVec(prometheus.HistogramOpts{ Name: "thanos_memcached_operation_duration_seconds", @@ -236,6 +242,8 @@ func newMemcachedClient( ConstLabels: prometheus.Labels{"name": name}, Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1}, }, []string{"operation"}) + c.duration.WithLabelValues(opGetMulti) + c.duration.WithLabelValues(opSet) // As soon as the client is created it must ensure that memcached server // addresses are resolved, so we're going to trigger an initial addresses From 6452f5dac969d06985a86e969e6a7454d6c80000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Fri, 17 Apr 2020 10:48:20 +0200 Subject: [PATCH 118/190] store: Added regex-set optimization to ExpandedPostings (#2450) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added regex-set optimization to ExpandedPostings Signed-off-by: Peter Štibraný * Fixed capitalization. Signed-off-by: Peter Štibraný * CHANGELOG.md Signed-off-by: Peter Štibraný * Removed unnecessary change. Signed-off-by: Peter Štibraný * Remove whitespace Signed-off-by: Peter Štibraný * Use testutil instead of testify. Signed-off-by: Peter Štibraný * Added copyright header, from original Prometheus querier.go Signed-off-by: Peter Štibraný * Use Thanos copyright header. :facepalm: Signed-off-by: Peter Štibraný * Added · at the end of the sentence. :exploding_head:. I will randomly add emojis and GitHub emoji markup to commit messages that fix frustrating checks like this one. And intentionally not break the line. Let's see how lint deals with that! Ha. Signed-off-by: Peter Štibraný --- CHANGELOG.md | 1 + pkg/store/bucket.go | 9 ++++++ pkg/store/bucket_test.go | 2 ++ pkg/store/opts.go | 63 ++++++++++++++++++++++++++++++++++++++++ pkg/store/opts_test.go | 53 +++++++++++++++++++++++++++++++++ 5 files changed, 128 insertions(+) create mode 100644 pkg/store/opts.go create mode 100644 pkg/store/opts_test.go diff --git a/CHANGELOG.md b/CHANGELOG.md index eb99c025323..5edf441d56d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Added ### Changed +- [#2450](https://github.com/thanos-io/thanos/pull/2450) Store: regex-set optimization for `label=~"a|b|c"` matchers. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index e0a10843122..c7d81098a78 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -1502,6 +1502,15 @@ func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Match return emptyPostingsGroup, nil } + if m.Type == labels.MatchRegexp && len(findSetMatches(m.Value)) > 0 { + vals := findSetMatches(m.Value) + toAdd := make([]labels.Label, 0, len(vals)) + for _, val := range vals { + toAdd = append(toAdd, labels.Label{Name: m.Name, Value: val}) + } + return newPostingGroup(false, toAdd, nil), nil + } + // If the matcher selects an empty value, it selects all the series which don't // have the label name set too. See: https://github.com/prometheus/prometheus/issues/3575 // and https://github.com/prometheus/prometheus/pull/3578#issuecomment-351653555. diff --git a/pkg/store/bucket_test.go b/pkg/store/bucket_test.go index 331660db80c..0e5ccd7d643 100644 --- a/pkg/store/bucket_test.go +++ b/pkg/store/bucket_test.go @@ -1005,6 +1005,7 @@ func benchmarkExpandedPostings( iNotEmpty := labels.MustNewMatcher(labels.MatchNotEqual, "i", "") iNot2 := labels.MustNewMatcher(labels.MatchNotEqual, "n", "2"+postingsBenchSuffix) iNot2Star := labels.MustNewMatcher(labels.MatchNotRegexp, "i", "^2.*$") + iRegexSet := labels.MustNewMatcher(labels.MatchRegexp, "i", "0"+postingsBenchSuffix+"|1"+postingsBenchSuffix+"|2"+postingsBenchSuffix) series = series / 5 cases := []struct { @@ -1029,6 +1030,7 @@ func benchmarkExpandedPostings( {`n="1",i=~"1.+",j="foo"`, []*labels.Matcher{n1, i1Plus, jFoo}, int(float64(series) * 0.011111)}, {`n="1",i=~".+",i!="2",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2, jFoo}, int(float64(series) * 0.1)}, {`n="1",i=~".+",i!~"2.*",j="foo"`, []*labels.Matcher{n1, iPlus, iNot2Star, jFoo}, int(1 + float64(series)*0.088888)}, + {`i=~"0|1|2"`, []*labels.Matcher{iRegexSet}, 150}, // 50 series for "1", 50 for "2" and 50 for "3". } for _, c := range cases { diff --git a/pkg/store/opts.go b/pkg/store/opts.go new file mode 100644 index 00000000000..e95a623a706 --- /dev/null +++ b/pkg/store/opts.go @@ -0,0 +1,63 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "strings" + "unicode/utf8" +) + +// Bitmap used by func isRegexMetaCharacter to check whether a character needs to be escaped. +var regexMetaCharacterBytes [16]byte + +// isRegexMetaCharacter reports whether byte b needs to be escaped. +func isRegexMetaCharacter(b byte) bool { + return b < utf8.RuneSelf && regexMetaCharacterBytes[b%16]&(1<<(b/16)) != 0 +} + +func init() { + for _, b := range []byte(`.+*?()|[]{}^$`) { + regexMetaCharacterBytes[b%16] |= 1 << (b / 16) + } +} + +// Copied from Prometheus querier.go, removed check for Prometheus wrapper. +// Returns list of values that can regex matches. +func findSetMatches(pattern string) []string { + escaped := false + sets := []*strings.Builder{{}} + for i := 0; i < len(pattern); i++ { + if escaped { + switch { + case isRegexMetaCharacter(pattern[i]): + sets[len(sets)-1].WriteByte(pattern[i]) + case pattern[i] == '\\': + sets[len(sets)-1].WriteByte('\\') + default: + return nil + } + escaped = false + } else { + switch { + case isRegexMetaCharacter(pattern[i]): + if pattern[i] == '|' { + sets = append(sets, &strings.Builder{}) + } else { + return nil + } + case pattern[i] == '\\': + escaped = true + default: + sets[len(sets)-1].WriteByte(pattern[i]) + } + } + } + matches := make([]string, 0, len(sets)) + for _, s := range sets { + if s.Len() > 0 { + matches = append(matches, s.String()) + } + } + return matches +} diff --git a/pkg/store/opts_test.go b/pkg/store/opts_test.go new file mode 100644 index 00000000000..e79fdf35bc4 --- /dev/null +++ b/pkg/store/opts_test.go @@ -0,0 +1,53 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package store + +import ( + "testing" + + "github.com/thanos-io/thanos/pkg/testutil" +) + +// Refer to https://github.com/prometheus/prometheus/issues/2651. +func TestFindSetMatches(t *testing.T) { + cases := []struct { + pattern string + exp []string + }{ + // Simple sets. + { + pattern: "foo|bar|baz", + exp: []string{ + "foo", + "bar", + "baz", + }, + }, + // Simple sets containing escaped characters. + { + pattern: "fo\\.o|bar\\?|\\^baz", + exp: []string{ + "fo.o", + "bar?", + "^baz", + }, + }, + // Simple sets containing special characters without escaping. + { + pattern: "fo.o|bar?|^baz", + exp: nil, + }, + { + pattern: "foo\\|bar\\|baz", + exp: []string{ + "foo|bar|baz", + }, + }, + } + + for _, c := range cases { + matches := findSetMatches(c.pattern) + testutil.Equals(t, c.exp, matches) + } +} From 762d1ad4d136d7e4b3c90879c9c46d33017e33cf Mon Sep 17 00:00:00 2001 From: Davor Kapsa Date: Fri, 17 Apr 2020 19:16:18 +0200 Subject: [PATCH 119/190] docs/contributing: use Before for IsExpired (#2456) Signed-off-by: Davor Kapsa --- docs/contributing/coding-style-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/coding-style-guide.md b/docs/contributing/coding-style-guide.md index 5ed4ddad674..a99192ca6cc 100644 --- a/docs/contributing/coding-style-guide.md +++ b/docs/contributing/coding-style-guide.md @@ -1012,7 +1012,7 @@ func (s *SomeType) IsExpired(created time.Time) bool { ```go func (s *SomeType) IsExpired(created time.Time) bool { // s.timeNow is time.Now on production, mocked in tests. - return created.Add(s.expiryDuration).After(s.timeNow()) + return created.Add(s.expiryDuration).Before(s.timeNow()) } ``` From b5f96ee41ec780245115401d918023403b51cb5c Mon Sep 17 00:00:00 2001 From: Davor Kapsa Date: Sat, 18 Apr 2020 18:10:08 +0200 Subject: [PATCH 120/190] cmd/thanos: clean gosimple S1039 (#2464) Signed-off-by: Davor Kapsa --- cmd/thanos/compact.go | 2 +- cmd/thanos/flags.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 1bad45f773e..5e297632df7 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -416,7 +416,7 @@ func runCompact( } if err := compact.ApplyRetentionPolicyByResolution(ctx, logger, bkt, sy.Metas(), retentionByResolution, blocksMarkedForDeletion); err != nil { - return errors.Wrap(err, fmt.Sprintf("retention failed")) + return errors.Wrap(err, "retention failed") } // No need to resync before partial uploads and delete marked blocks. Last sync should be valid. diff --git a/cmd/thanos/flags.go b/cmd/thanos/flags.go index fac85c125ad..c850f8825b1 100644 --- a/cmd/thanos/flags.go +++ b/cmd/thanos/flags.go @@ -60,7 +60,7 @@ func regCommonTracingFlags(app *kingpin.Application) *extflag.PathOrContent { return extflag.RegisterPathOrContent( app, "tracing.config", - fmt.Sprintf("YAML file with tracing configuration. See format details: https://thanos.io/tracing.md/#configuration "), + "YAML file with tracing configuration. See format details: https://thanos.io/tracing.md/#configuration ", false, ) } From 392c843429ff16ecf2e6d0f7b5e4af74ad7967e1 Mon Sep 17 00:00:00 2001 From: Ranjith Kumar Date: Sun, 19 Apr 2020 15:39:04 +0530 Subject: [PATCH 121/190] docs: Update CONTRIBUTING.md with DCO (#2465) * docs: Update CONTRIBUTING.md with DCO Signed-off-by: ranjithkumar007 * Update CONTRIBUTING.md Co-Authored-By: Bartlomiej Plotka Signed-off-by: ranjithkumar007 Co-authored-by: Bartlomiej Plotka --- CONTRIBUTING.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e65ccb5b217..a741a472955 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -109,6 +109,19 @@ $ make build $ ./thanos -h ``` +1. Signing your work: DCO (Developer Certificate of Origin) Process. + +By contributing to this project you agree to the [Developer Certificate of Origin](https://developercertificate.org/)(DCO). This document was created by the Linux Kernel community and is a simple statement that you, as a contributor, have the legal right to make the contribution. + +To signoff, you need to add `Signed-off-by: Your Name ` at the end of your commit messages. You can do this using [`git commit -s`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt--s). For example: +``` +$ git commit -s -m 'This is my commit message' +``` + +You can also alias ``commit`` as `commit -s` in your `~/.gitconfig` to signoff all your future commits. + +If you have authored an unsigned commit, you can update it using ``git commit --amend --signoff``. If you've pushed your changes to GitHub already you'll need to force push your branch after this with ``git push -f``. + 1. Keep PRs as small as possible. For each of your PRs, you create a new branch based on the latest master. Chain them if needed (base one PR on other PRs). You can read more details about the workflow from [here](https://gist.github.com/Chaser324/ce0505fbed06b947d962). From 7c5bea680a5cdebbf127fa4f318f53c0818bd31c Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 20 Apr 2020 08:34:45 +0100 Subject: [PATCH 122/190] Added tests to reproduce #2459. (#2462) Related to: https://github.com/thanos-io/thanos/issues/2459 Signed-off-by: Bartlomiej Plotka --- test/e2e/compact_test.go | 236 +++++++++++++++++++++++++-------- test/e2e/e2ethanos/services.go | 1 - 2 files changed, 183 insertions(+), 54 deletions(-) diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go index 5e4b601dcff..9524b960dd7 100644 --- a/test/e2e/compact_test.go +++ b/test/e2e/compact_test.go @@ -4,7 +4,9 @@ package e2e_test import ( + "bytes" "context" + "encoding/json" "fmt" "net/http" "os" @@ -17,9 +19,13 @@ import ( e2edb "github.com/cortexproject/cortex/integration/e2e/db" "github.com/go-kit/kit/log" "github.com/oklog/ulid" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/common/model" "github.com/prometheus/prometheus/pkg/labels" "github.com/prometheus/prometheus/pkg/timestamp" + "github.com/thanos-io/thanos/pkg/block" + "github.com/thanos-io/thanos/pkg/block/metadata" "github.com/thanos-io/thanos/pkg/objstore" "github.com/thanos-io/thanos/pkg/objstore/client" "github.com/thanos-io/thanos/pkg/objstore/s3" @@ -29,18 +35,26 @@ import ( "github.com/thanos-io/thanos/test/e2e/e2ethanos" ) +type blockDesc struct { + series []labels.Labels + extLset labels.Labels + mint int64 + maxt int64 +} + +func (b *blockDesc) Create(ctx context.Context, dir string, delay time.Duration) (ulid.ULID, error) { + if delay == 0*time.Second { + return e2eutil.CreateBlock(ctx, dir, b.series, 120, b.mint, b.maxt, b.extLset, 0) + } + return e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, 120, b.mint, b.maxt, delay, b.extLset, 0) +} + func TestCompactWithStoreGateway(t *testing.T) { t.Parallel() - l := log.NewLogfmtLogger(os.Stdout) - type blockDesc struct { - series []labels.Labels - extLset labels.Labels - mint int64 - maxt int64 - } + logger := log.NewLogfmtLogger(os.Stdout) - delay := 30 * time.Minute + justAfterConsistencyDelay := 30 * time.Minute // Make sure to take realistic timestamp for start. This is to align blocks as if they would be aligned on Prometheus. // To have deterministic compaction, let's have fixed date: now, err := time.Parse(time.RFC3339, "2020-03-24T08:00:00Z") @@ -266,7 +280,7 @@ func TestCompactWithStoreGateway(t *testing.T) { m := e2edb.NewMinio(8080, bucket) testutil.Ok(t, s.StartAndWaitReady(m)) - bkt, err := s3.NewBucketWithConfig(l, s3.Config{ + bkt, err := s3.NewBucketWithConfig(logger, s3.Config{ Bucket: bucket, AccessKey: e2edb.MinioAccessKey, SecretKey: e2edb.MinioSecretKey, @@ -280,11 +294,73 @@ func TestCompactWithStoreGateway(t *testing.T) { rawBlockIDs := map[ulid.ULID]struct{}{} for _, b := range blocks { - id, err := e2eutil.CreateBlockWithBlockDelay(ctx, dir, b.series, 120, b.mint, b.maxt, delay, b.extLset, 0) + id, err := b.Create(ctx, dir, justAfterConsistencyDelay) testutil.Ok(t, err) - testutil.Ok(t, objstore.UploadDir(ctx, l, bkt, path.Join(dir, id.String()), id.String())) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) rawBlockIDs[id] = struct{}{} } + { + // On top of that, add couple of other tricky cases with different meta. + malformedBase := blockDesc{ + series: []labels.Labels{labels.FromStrings("a", "1", "b", "2")}, + extLset: labels.FromStrings("case", "malformed-things", "replica", "101"), + mint: timestamp.FromTime(now), + maxt: timestamp.FromTime(now.Add(2 * time.Hour)), + } + + // New Partial block. + id, err := malformedBase.Create(ctx, dir, 0*time.Second) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // New Partial block + deletion mark. + id, err = malformedBase.Create(ctx, dir, 0*time.Second) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, block.MarkForDeletion(ctx, logger, bkt, id, promauto.With(nil).NewCounter(prometheus.CounterOpts{}))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // Partial block after consistency delay. + id, err = malformedBase.Create(ctx, dir, justAfterConsistencyDelay) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // Partial block after consistency delay + deletion mark. + id, err = malformedBase.Create(ctx, dir, justAfterConsistencyDelay) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, block.MarkForDeletion(ctx, logger, bkt, id, promauto.With(nil).NewCounter(prometheus.CounterOpts{}))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // Partial block after consistency delay + old deletion mark ready to be deleted. + id, err = malformedBase.Create(ctx, dir, justAfterConsistencyDelay) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + deletionMark, err := json.Marshal(metadata.DeletionMark{ + ID: id, + // Deletion threshold is usually 2 days. + DeletionTime: time.Now().Add(-50 * time.Hour).Unix(), + Version: metadata.DeletionMarkVersion1, + }) + testutil.Ok(t, err) + testutil.Ok(t, bkt.Upload(ctx, path.Join(id.String(), metadata.DeletionMarkFilename), bytes.NewBuffer(deletionMark))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // Partial block after delete threshold. + id, err = malformedBase.Create(ctx, dir, 50*time.Hour) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + + // Partial block after delete threshold + deletion mark. + id, err = malformedBase.Create(ctx, dir, 50*time.Hour) + testutil.Ok(t, err) + testutil.Ok(t, os.Remove(path.Join(dir, id.String(), metadata.MetaFilename))) + testutil.Ok(t, block.MarkForDeletion(ctx, logger, bkt, id, promauto.With(nil).NewCounter(prometheus.CounterOpts{}))) + testutil.Ok(t, objstore.UploadDir(ctx, logger, bkt, path.Join(dir, id.String()), id.String())) + } svcConfig := client.BucketConfig{ Type: client.S3, @@ -299,7 +375,7 @@ func TestCompactWithStoreGateway(t *testing.T) { str, err := e2ethanos.NewStoreGW(s.SharedDir(), "1", svcConfig) testutil.Ok(t, err) testutil.Ok(t, s.StartAndWaitReady(str)) - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7)), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) @@ -349,12 +425,50 @@ func TestCompactWithStoreGateway(t *testing.T) { {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, }, ) + // Store view: + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + + expectedEndVector := model.Vector{ + // NOTE(bwplotka): Even after deduplication some series has still replica labels. This is because those blocks did not overlap yet with anything. + // This is fine as querier deduplication will remove it if needed. + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + } t.Run("no replica label with overlaps should halt compactor", func(t *testing.T) { c, err := e2ethanos.NewCompactor(s.SharedDir(), "expect-to-halt", svcConfig, nil) testutil.Ok(t, err) testutil.Ok(t, s.StartAndWaitReady(c)) - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs))), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7)), "thanos_blocks_meta_synced")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) @@ -365,6 +479,7 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_iterations_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_vertical_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(1), "thanos_compact_group_compactions_failures_total")) @@ -380,7 +495,8 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, s.Stop(c)) }) - t.Run("native vertical deduplication should kick in", func(t *testing.T) { + t.Run("dedup enabled; compactor should work as expected", func(t *testing.T) { + // We expect 2x 4-block compaction, 2-block vertical compaction, 2x 3-block compaction. c, err := e2ethanos.NewCompactor(s.SharedDir(), "working", svcConfig, nil, "--deduplication.replica-label=replica", "--deduplication.replica-label=rule_replica") testutil.Ok(t, err) testutil.Ok(t, s.StartAndWaitReady(c)) @@ -388,11 +504,11 @@ func TestCompactWithStoreGateway(t *testing.T) { // NOTE: We cannot assert on intermediate `thanos_blocks_meta_` metrics as those are gauge and change dynamically due to many // compaction groups. Wait for at least first compaction iteration (next is in 5m). testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) - - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_cleaned_total")) - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_marked_for_deletion_total")) - + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) // This should be 1 [BUG no 1]. TODO: fix. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2*4+2+2*3+1), "thanos_compactor_blocks_marked_for_deletion_total")) // 17. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) // We should have 1. testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(5), "thanos_compact_group_compactions_total")) + // TODO(bwplotka): This is confusing, should be either normal compaction or vertical not both (?) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_vertical_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_started_total")) @@ -401,8 +517,10 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) - // We had 8 deletions based on 3 compactios, so 3 new blocks. - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64( + len(rawBlockIDs)+7+ + 5, // 5 compactions, 5 newly added blocks. + )), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_halted")) @@ -418,43 +536,55 @@ func TestCompactWithStoreGateway(t *testing.T) { promclient.QueryOptions{ Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. }, - model.Vector{ - // NOTE(bwplotka): Even after deduplication some series has still replica labels. This is because those blocks did not overlap yet with anything. - // This is fine as querier deduplication will remove it if needed. - {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "no-compaction", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "compaction-ready-after-dedup"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "compaction-ready-after-dedup"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "compaction-ready-after-dedup"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "compaction-ready-after-dedup"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "6", "case": "compaction-ready-after-dedup", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "a-partial-overlap-dedup-ready"}}, - {Value: 360, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "a-partial-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "a-partial-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "a-partial-overlap-dedup-ready", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "partial-multi-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, - {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "partial-multi-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "partial-multi-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "partial-multi-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "partial-multi-replica-overlap-dedup-ready", "replica": "1", "rule_replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "1", "case": "full-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready"}}, - {Value: 240, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "2", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "3", "case": "full-replica-overlap-dedup-ready"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "4", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, - {Value: 120, Metric: map[model.LabelName]model.LabelValue{"a": "1", "b": "5", "case": "full-replica-overlap-dedup-ready", "replica": "1"}}, + expectedEndVector, + ) + // Store view: + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) + }) + + t.Run("dedup enabled; no delete delay; compactor should work and remove things as expected", func(t *testing.T) { + c, err := e2ethanos.NewCompactor(s.SharedDir(), "working", svcConfig, nil, "--deduplication.replica-label=replica", "--deduplication.replica-label=rule_replica", "--delete-delay=0s") + testutil.Ok(t, err) + testutil.Ok(t, s.StartAndWaitReady(c)) + + // NOTE: We cannot assert on intermediate `thanos_blocks_meta_` metrics as those are gauge and change dynamically due to many + // compaction groups. Wait for at least first compaction iteration (next is in 5m). + testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) // We should have 1. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_vertical_compactions_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(6), "thanos_compact_group_compaction_runs_started_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(6), "thanos_compact_group_compaction_runs_completed_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) + + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5-16)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) + + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_halted")) + // Make sure compactor does not modify anything else over time. + testutil.Ok(t, s.Stop(c)) + + ctx, cancel = context.WithTimeout(context.Background(), 3*time.Minute) + defer cancel() + + // Check if query detects new blocks. + queryAndAssert(t, ctx, q.HTTPEndpoint(), + fmt.Sprintf(`count_over_time({a="1"}[13h] offset %ds)`, int64(time.Since(now.Add(12*time.Hour)).Seconds())), + promclient.QueryOptions{ + Deduplicate: false, // This should be false, so that we can be sure deduplication was offline. }, + expectedEndVector, ) // Store view: - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7-16+5)), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) }) diff --git a/test/e2e/e2ethanos/services.go b/test/e2e/e2ethanos/services.go index c014a36d7b8..c0d4bc7f354 100644 --- a/test/e2e/e2ethanos/services.go +++ b/test/e2e/e2ethanos/services.go @@ -373,7 +373,6 @@ func NewCompactor(sharedDir string, name string, bucketConfig client.BucketConfi "--data-dir": container, "--objstore.config": string(bktConfigBytes), "--http-address": ":80", - "--delete-delay": "0s", "--block-sync-concurrency": "20", "--selector.relabel-config": string(relabelConfigBytes), "--wait": "", From 853175a5b74d9ba347746a8078f396fb47c764d5 Mon Sep 17 00:00:00 2001 From: Yash Sharma Date: Mon, 20 Apr 2020 13:16:43 +0530 Subject: [PATCH 123/190] Added a page for documenting beginner issues (#2461) * Added some documentation for beginner issues Signed-off-by: Yash * Edited some lines Signed-off-by: Yash * Update docs/operating/troubleshooting.md Co-Authored-By: Bartlomiej Plotka Signed-off-by: Yash Co-authored-by: Bartlomiej Plotka --- docs/operating/troubleshooting.md | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/docs/operating/troubleshooting.md b/docs/operating/troubleshooting.md index 444b34fced8..5e2b9fa3bb3 100644 --- a/docs/operating/troubleshooting.md +++ b/docs/operating/troubleshooting.md @@ -40,3 +40,39 @@ Checking producers log for such ULID, and checking meta.json (e.g if sample stat - Who uploaded the block? Search for logs with this ULID across all sidecars/rulers. Check access logs to object storage. Check debug/metas or meta.json of problematic block to see how blocks looks like and what is the `source`. - Determine what you misconfigured. - If all looks sane and you double-checked everything: Then post an issue on Github, Bugs can happen but we heavily test against such problems. + +# Sidecar + +## Connection Refused + +### Description + +```shell +level=warn ts=2020-04-18T03:07:00.512902927Z caller=intrumentation.go:54 msg="changing probe status" status=not-ready reason="request flags against http://localhost:9090/api/v1/status/config: Get \"http://localhost:9090/api/v1/status/config\": dial tcp 127.0.0.1:9090: connect: connection refused" +``` +* This issue might happen when thanos is not configured properly. + +### Possible Solution + +* Make sure that prometheus is running while thanos is started. The `connection_refused` states that there is no server running in the `localhost:9090`, which is the address for prometheus in this case. + + +## Thanos not identifying Prometheus + +### Description + +```shell +level=info ts=2020-04-18T03:16:32.158536285Z caller=grpc.go:137 service=gRPC/server component=sidecar msg="internal server shutdown" err="no external labels configured on Prometheus server, uniquely identifying external labels must be configured" +``` +* This issue happens when thanos doesn't recognise prometheus + +### Possible Solution + +* Thanos requires **unique** `external_labels` for further processing. So make sure that the `external_labels` are not empty and globally unique in the prometheus config file. A possible example - + +```yml +global: + external_labels: + cluster: eu1 + replica: 0 +``` From 7250c6bb1685f766d7df7f2b3022ea7a8c5e2c3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 20 Apr 2020 16:03:58 +0200 Subject: [PATCH 124/190] pkg/block/fetcher: fix concurrent map usage (#2474) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes: #2471 This commit fixes an issue where multiple goroutines in the block fetcher filtering were concurrently accessing the same map. The goroutines were concurrently writing AND reading to the shared metas map. This commit guards this concurrent access by giving the DeduplicateFilter struct a mutex. Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 1 + pkg/block/fetcher.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1ea3d9713b..0bbf1c31a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed - [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs +- [#2474](https://github.com/thanos-io/thanos/pull/2474) Store: fix a panic caused by concurrent memory access during block filtering. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/pkg/block/fetcher.go b/pkg/block/fetcher.go index 7f21d4d8016..29d67735e2a 100644 --- a/pkg/block/fetcher.go +++ b/pkg/block/fetcher.go @@ -550,6 +550,7 @@ var _ MetadataFilter = &DeduplicateFilter{} // Not go-routine safe. type DeduplicateFilter struct { duplicateIDs []ulid.ULID + mu sync.Mutex } // NewDeduplicateFilter creates DeduplicateFilter. @@ -603,11 +604,13 @@ func (f *DeduplicateFilter) filterForResolution(root *Node, metaSlice []*metadat duplicateULIDs := getNonRootIDs(root) for _, id := range duplicateULIDs { + f.mu.Lock() if metas[id] != nil { f.duplicateIDs = append(f.duplicateIDs, id) } synced.WithLabelValues(duplicateMeta).Inc() delete(metas, id) + f.mu.Unlock() } } From 2654a10c3f02a89fa34a01c6af5bb28540ce6c40 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 20 Apr 2020 15:39:10 +0100 Subject: [PATCH 125/190] Reverted addition of deletion mark for partial uploads. (#2472) Fixes https://github.com/thanos-io/thanos/issues/2459 (quick fix). This keeps the logic from the 0.11.0 which was good enough. Some improvement for future: https://github.com/thanos-io/thanos/issues/2470 Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 3 ++- cmd/thanos/compact.go | 2 +- pkg/compact/clean.go | 14 ++++++++++---- pkg/compact/clean_test.go | 15 ++++++--------- test/e2e/compact_test.go | 21 ++++++++++++--------- 5 files changed, 31 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bbf1c31a51..448162c6287 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,9 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed -- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs +- [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs. - [#2474](https://github.com/thanos-io/thanos/pull/2474) Store: fix a panic caused by concurrent memory access during block filtering. +- [#2472](https://github.com/thanos-io/thanos/pull/2472) compact: Fixed bug where partial blocks were never deleted and causing spam of warnings. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index 1bad45f773e..627010f1795 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -420,7 +420,7 @@ func runCompact( } // No need to resync before partial uploads and delete marked blocks. Last sync should be valid. - compact.BestEffortCleanAbortedPartialUploads(ctx, logger, sy.Partial(), bkt, partialUploadDeleteAttempts, blocksMarkedForDeletion) + compact.BestEffortCleanAbortedPartialUploads(ctx, logger, sy.Partial(), bkt, partialUploadDeleteAttempts, blocksCleaned, blockCleanupFailures) if err := blocksCleaner.DeleteMarkedBlocks(ctx); err != nil { return errors.Wrap(err, "error cleaning blocks") } diff --git a/pkg/compact/clean.go b/pkg/compact/clean.go index 53cfb169083..8d99927d515 100644 --- a/pkg/compact/clean.go +++ b/pkg/compact/clean.go @@ -27,7 +27,8 @@ func BestEffortCleanAbortedPartialUploads( partial map[ulid.ULID]error, bkt objstore.Bucket, deleteAttempts prometheus.Counter, - blocksMarkedForDeletion prometheus.Counter, + blockCleanups prometheus.Counter, + blockCleanupFailures prometheus.Counter, ) { level.Info(logger).Log("msg", "started cleaning of aborted partial uploads") @@ -45,10 +46,15 @@ func BestEffortCleanAbortedPartialUploads( deleteAttempts.Inc() level.Info(logger).Log("msg", "found partially uploaded block; marking for deletion", "block", id) - if err := block.MarkForDeletion(ctx, logger, bkt, id, blocksMarkedForDeletion); err != nil { - level.Warn(logger).Log("msg", "failed to delete aborted partial upload; skipping", "block", id, "thresholdAge", PartialUploadThresholdAge, "err", err) - return + // We don't gather any information about deletion marks for partial blocks, so let's simply remove it. We waited + // long PartialUploadThresholdAge already. + // TODO(bwplotka): Fix some edge cases: https://github.com/thanos-io/thanos/issues/2470 . + if err := block.Delete(ctx, logger, bkt, id); err != nil { + blockCleanupFailures.Inc() + level.Warn(logger).Log("msg", "failed to delete aborted partial upload; will retry in next iteration", "block", id, "thresholdAge", PartialUploadThresholdAge, "err", err) + continue } + blockCleanups.Inc() level.Info(logger).Log("msg", "deleted aborted partial upload", "block", id, "thresholdAge", PartialUploadThresholdAge) } level.Info(logger).Log("msg", "cleaning of aborted partial uploads done") diff --git a/pkg/compact/clean_test.go b/pkg/compact/clean_test.go index 1321c888ba6..ea0f840c696 100644 --- a/pkg/compact/clean_test.go +++ b/pkg/compact/clean_test.go @@ -59,22 +59,19 @@ func TestBestEffortCleanAbortedPartialUploads(t *testing.T) { testutil.Ok(t, bkt.Upload(ctx, path.Join(shouldIgnoreID2.String(), "chunks", "000001"), &fakeChunk)) deleteAttempts := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) - blocksMarkedForDeletion := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) - + blockCleanups := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) + blockCleanupFailures := promauto.With(nil).NewCounter(prometheus.CounterOpts{}) _, partial, err := metaFetcher.Fetch(ctx) testutil.Ok(t, err) - BestEffortCleanAbortedPartialUploads(ctx, logger, partial, bkt, deleteAttempts, blocksMarkedForDeletion) + BestEffortCleanAbortedPartialUploads(ctx, logger, partial, bkt, deleteAttempts, blockCleanups, blockCleanupFailures) testutil.Equals(t, 1.0, promtest.ToFloat64(deleteAttempts)) + testutil.Equals(t, 1.0, promtest.ToFloat64(blockCleanups)) + testutil.Equals(t, 0.0, promtest.ToFloat64(blockCleanupFailures)) exists, err := bkt.Exists(ctx, path.Join(shouldDeleteID.String(), "chunks", "000001")) testutil.Ok(t, err) - testutil.Equals(t, true, exists) - - exists, err = bkt.Exists(ctx, path.Join(shouldDeleteID.String(), metadata.DeletionMarkFilename)) - testutil.Ok(t, err) - testutil.Equals(t, true, exists) - testutil.Equals(t, 1.0, promtest.ToFloat64(blocksMarkedForDeletion)) + testutil.Equals(t, false, exists) exists, err = bkt.Exists(ctx, path.Join(shouldIgnoreID1.String(), "chunks", "000001")) testutil.Ok(t, err) diff --git a/test/e2e/compact_test.go b/test/e2e/compact_test.go index 9524b960dd7..9f4dd0d65fb 100644 --- a/test/e2e/compact_test.go +++ b/test/e2e/compact_test.go @@ -478,6 +478,7 @@ func TestCompactWithStoreGateway(t *testing.T) { // We expect no ops. testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_iterations_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_block_cleanup_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) @@ -504,11 +505,11 @@ func TestCompactWithStoreGateway(t *testing.T) { // NOTE: We cannot assert on intermediate `thanos_blocks_meta_` metrics as those are gauge and change dynamically due to many // compaction groups. Wait for at least first compaction iteration (next is in 5m). testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_cleaned_total")) // This should be 1 [BUG no 1]. TODO: fix. - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2*4+2+2*3+1), "thanos_compactor_blocks_marked_for_deletion_total")) // 17. - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) // We should have 1. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_block_cleanup_failures_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2*4+2+2*3), "thanos_compactor_blocks_marked_for_deletion_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(5), "thanos_compact_group_compactions_total")) - // TODO(bwplotka): This is confusing, should be either normal compaction or vertical not both (?) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(3), "thanos_compact_group_vertical_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(12), "thanos_compact_group_compaction_runs_started_total")) @@ -519,7 +520,8 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64( len(rawBlockIDs)+7+ - 5, // 5 compactions, 5 newly added blocks. + 5+ // 5 compactions, 5 newly added blocks. + -2, // Partial block removed. )), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) @@ -539,7 +541,7 @@ func TestCompactWithStoreGateway(t *testing.T) { expectedEndVector, ) // Store view: - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5-2)), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) }) @@ -553,8 +555,9 @@ func TestCompactWithStoreGateway(t *testing.T) { // compaction groups. Wait for at least first compaction iteration (next is in 5m). testutil.Ok(t, c.WaitSumMetrics(e2e.Greater(0), "thanos_compactor_iterations_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(16), "thanos_compactor_blocks_cleaned_total")) + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_block_cleanup_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_blocks_marked_for_deletion_total")) - testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(2), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) // We should have 1. + testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_aborted_partial_uploads_deletion_attempts_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_vertical_compactions_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_group_compactions_failures_total")) @@ -564,7 +567,7 @@ func TestCompactWithStoreGateway(t *testing.T) { testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compact_downsample_failures_total")) - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5-16)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7+5-16-2)), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, c.WaitSumMetrics(e2e.Equals(0), "thanos_compactor_halted")) @@ -584,7 +587,7 @@ func TestCompactWithStoreGateway(t *testing.T) { ) // Store view: - testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7-16+5)), "thanos_blocks_meta_synced")) + testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(float64(len(rawBlockIDs)+7-16+5-2)), "thanos_blocks_meta_synced")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_sync_failures_total")) testutil.Ok(t, str.WaitSumMetrics(e2e.Equals(0), "thanos_blocks_meta_modified")) }) From 4d41d36ea6642a1fecbfa3ec72e848e209f3a981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Mon, 20 Apr 2020 18:21:11 +0200 Subject: [PATCH 126/190] Remove optimizations for label=~".*" and label!~".*". (#2475) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Remove optimizations for label=~".*" and label!~".*". They are not correct. Signed-off-by: Peter Štibraný * CHANGELOG.md Signed-off-by: Peter Štibraný --- CHANGELOG.md | 1 + pkg/store/bucket.go | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5edf441d56d..d64e6410890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Changed - [#2450](https://github.com/thanos-io/thanos/pull/2450) Store: regex-set optimization for `label=~"a|b|c"` matchers. +- [#2475](https://github.com/thanos-io/thanos/pull/2475) Store: remove incorrect optimizations for queries with `=~".*"` and `!=~".*"` matchers. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/pkg/store/bucket.go b/pkg/store/bucket.go index c7d81098a78..ba5f0548ef2 100644 --- a/pkg/store/bucket.go +++ b/pkg/store/bucket.go @@ -1485,23 +1485,8 @@ func checkNilPosting(l labels.Label, p index.Postings) index.Postings { return p } -var ( - allPostingsGroup = newPostingGroup(true, nil, nil) - emptyPostingsGroup = newPostingGroup(false, nil, nil) -) - // NOTE: Derived from tsdb.postingsForMatcher. index.Merge is equivalent to map duplication. func toPostingGroup(lvalsFn func(name string) ([]string, error), m *labels.Matcher) (*postingGroup, error) { - // This matches any label value, and also series that don't have this label at all. - if m.Type == labels.MatchRegexp && (m.Value == ".*" || m.Value == "^.*$") { - return allPostingsGroup, nil - } - - // NOT matching any value = match nothing. We can shortcut this easily. - if m.Type == labels.MatchNotRegexp && (m.Value == ".*" || m.Value == "^.*$") { - return emptyPostingsGroup, nil - } - if m.Type == labels.MatchRegexp && len(findSetMatches(m.Value)) > 0 { vals := findSetMatches(m.Value) toAdd := make([]labels.Label, 0, len(vals)) From 6ebdb92ee8919446315033105afb8b36c27f28b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Mon, 20 Apr 2020 19:26:57 +0200 Subject: [PATCH 127/190] cut v0.12.1 (#2476) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- CHANGELOG.md | 4 ++-- VERSION | 2 +- docs/release-process.md | 2 +- tutorials/katacoda/thanos/1-globalview/courseBase.sh | 2 +- tutorials/katacoda/thanos/1-globalview/step2.md | 8 ++++---- tutorials/katacoda/thanos/1-globalview/step3.md | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 448162c6287..3a384f92ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,13 +9,13 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan We use *breaking* word for marking changes that are not backward compatible (relates only to v0.y.z releases.) -## Unreleased +## [v0.12.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.1) - 2020.04.20 ### Fixed - [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs. - [#2474](https://github.com/thanos-io/thanos/pull/2474) Store: fix a panic caused by concurrent memory access during block filtering. -- [#2472](https://github.com/thanos-io/thanos/pull/2472) compact: Fixed bug where partial blocks were never deleted and causing spam of warnings. +- [#2472](https://github.com/thanos-io/thanos/pull/2472) Compact: fix a bug where partial blocks were never deleted, causing spam of warnings. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/VERSION b/VERSION index ac454c6a1fc..34a83616bb5 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.12.0 +0.12.1 diff --git a/docs/release-process.md b/docs/release-process.md index 774a24f8e25..018ad110c2a 100644 --- a/docs/release-process.md +++ b/docs/release-process.md @@ -33,7 +33,7 @@ Release shepherd responsibilities: | Release | Time of first RC | Shepherd (GitHub handle) | |-----------|--------------------------|--------------------------| | v0.13.0 | (planned) 2020.05.13 | `TBD` | -| v0.12.0 | (planned) 2020.04.01 | `@squat` | +| v0.12.0 | 2020.04.15 | `@squat` | | v0.11.0 | 2020.02.19 | `@metalmatze` | | v0.10.0 | 2020.01.08 | `@GiedriusS` | | v0.9.0 | 2019.11.26 | `@bwplotka` | diff --git a/tutorials/katacoda/thanos/1-globalview/courseBase.sh b/tutorials/katacoda/thanos/1-globalview/courseBase.sh index 53b64d03ff0..c06dec0cf94 100644 --- a/tutorials/katacoda/thanos/1-globalview/courseBase.sh +++ b/tutorials/katacoda/thanos/1-globalview/courseBase.sh @@ -1,4 +1,4 @@ #!/usr/bin/env bash docker pull quay.io/prometheus/prometheus:v2.16.0 -docker pull quay.io/thanos/thanos:v0.12.0 +docker pull quay.io/thanos/thanos:v0.12.1 diff --git a/tutorials/katacoda/thanos/1-globalview/step2.md b/tutorials/katacoda/thanos/1-globalview/step2.md index ed8bcc1576f..af4b9d15b67 100644 --- a/tutorials/katacoda/thanos/1-globalview/step2.md +++ b/tutorials/katacoda/thanos/1-globalview/step2.md @@ -10,7 +10,7 @@ component and can be invoked in a single command. Let's take a look at all the Thanos commands: ``` -docker run --rm quay.io/thanos/thanos:v0.12.0 --help +docker run --rm quay.io/thanos/thanos:v0.12.1 --help ```{{execute}} You should see multiple commands that solves different purposes. @@ -53,7 +53,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_eu1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-eu1 \ -u root \ - quay.io/thanos/thanos:v0.12.0 \ + quay.io/thanos/thanos:v0.12.1 \ sidecar \ --http-address 0.0.0.0:19090 \ --grpc-address 0.0.0.0:19190 \ @@ -68,7 +68,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus0_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-0-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0 \ + quay.io/thanos/thanos:v0.12.1 \ sidecar \ --http-address 0.0.0.0:19091 \ --grpc-address 0.0.0.0:19191 \ @@ -81,7 +81,7 @@ docker run -d --net=host --rm \ -v $(pwd)/prometheus1_us1.yml:/etc/prometheus/prometheus.yml \ --name prometheus-1-sidecar-us1 \ -u root \ - quay.io/thanos/thanos:v0.12.0 \ + quay.io/thanos/thanos:v0.12.1 \ sidecar \ --http-address 0.0.0.0:19092 \ --grpc-address 0.0.0.0:19192 \ diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index c7635b46071..8d4b17e84df 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -28,7 +28,7 @@ Click below snippet to start the Querier. ``` docker run -d --net=host --rm \ --name querier \ - quay.io/thanos/thanos:v0.12.0 \ + quay.io/thanos/thanos:v0.12.1 \ query \ --http-address 0.0.0.0:29090 \ --query.replica-label replica \ From 60a2c9e4f09e760b678b9f39c731d3a6ccb650bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Tue, 21 Apr 2020 13:42:51 +0200 Subject: [PATCH 128/190] fix thanos web route prefix register twice (#2489) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: yeya24 Signed-off-by: Lucas Servén Marín Co-authored-by: yeya24 --- CHANGELOG.md | 1 + cmd/thanos/query.go | 3 +-- cmd/thanos/rule.go | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a384f92ab7..2626392037c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs. - [#2474](https://github.com/thanos-io/thanos/pull/2474) Store: fix a panic caused by concurrent memory access during block filtering. - [#2472](https://github.com/thanos-io/thanos/pull/2472) Compact: fix a bug where partial blocks were never deleted, causing spam of warnings. +- [#2484](https://github.com/thanos-io/thanos/pull/2484) Query/Ruler: fix issue #2483, when web.route-prefix is set, it is added twice in HTTP router prefix. ## [v0.12.0](https://github.com/thanos-io/thanos/releases/tag/v0.12.0) - 2020.04.15 diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index a21565c59a4..2735cd76c20 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -8,7 +8,6 @@ import ( "fmt" "math" "net/http" - "path" "strings" "time" @@ -357,7 +356,7 @@ func runQuery( api := v1.NewAPI(logger, reg, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) - api.Register(router.WithPrefix(path.Join(webRoutePrefix, "/api/v1")), tracer, logger, ins) + api.Register(router.WithPrefix("/api/v1"), tracer, logger, ins) srv := httpserver.New(logger, reg, comp, httpProbe, httpserver.WithListen(httpBindAddr), diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index 3c021dec2b6..33889f7c996 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -8,7 +8,6 @@ import ( "math/rand" "net/http" "net/url" - "path" "path/filepath" "strconv" "strings" @@ -576,7 +575,7 @@ func runRule( ui.NewRuleUI(logger, reg, ruleMgr, alertQueryURL.String(), webExternalPrefix, webPrefixHeaderName).Register(router, ins) api := v1.NewAPI(logger, reg, ruleMgr) - api.Register(router.WithPrefix(path.Join(webRoutePrefix, "/api/v1")), tracer, logger, ins) + api.Register(router.WithPrefix("/api/v1"), tracer, logger, ins) srv := httpserver.New(logger, reg, comp, httpProbe, httpserver.WithListen(httpBindAddr), From 822bc7c111a1620e2bb837e994cb74716b33dfb1 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Wed, 22 Apr 2020 09:56:27 +0200 Subject: [PATCH 129/190] Do not lock DNS Provider.Address() while Resolve() is running (#2492) Signed-off-by: Marco Pracucci --- pkg/discovery/dns/provider.go | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/pkg/discovery/dns/provider.go b/pkg/discovery/dns/provider.go index 0ef944574dd..1dad2ada9ac 100644 --- a/pkg/discovery/dns/provider.go +++ b/pkg/discovery/dns/provider.go @@ -19,7 +19,7 @@ import ( // Provider is a stateful cache for asynchronous DNS resolutions. It provides a way to resolve addresses and obtain them. type Provider struct { - sync.Mutex + sync.RWMutex resolver Resolver // A map from domain name to a slice of resolved targets. resolved map[string][]string @@ -108,19 +108,12 @@ func GetQTypeName(addr string) (qtype string, name string) { // Addresses prefixed with `dns+` or `dnssrv+` will be resolved through respective DNS lookup (A/AAAA or SRV). // defaultPort is used for non-SRV records when a port is not supplied. func (p *Provider) Resolve(ctx context.Context, addrs []string) { - p.Lock() - defer p.Unlock() - - p.resolverAddrs.ResetTx() - defer p.resolverAddrs.Submit() - resolvedAddrs := map[string][]string{} for _, addr := range addrs { var resolved []string qtype, name := GetQTypeName(addr) if qtype == "" { resolvedAddrs[name] = []string{name} - p.resolverAddrs.WithLabelValues(name).Set(1.0) continue } @@ -131,18 +124,31 @@ func (p *Provider) Resolve(ctx context.Context, addrs []string) { p.resolverFailuresCount.Inc() level.Error(p.logger).Log("msg", "dns resolution failed", "addr", addr, "err", err) // Use cached values. + p.RLock() resolved = p.resolved[addr] + p.RUnlock() } resolvedAddrs[addr] = resolved - p.resolverAddrs.WithLabelValues(addr).Set(float64(len(resolved))) } + + // All addresses have been resolved. We can now take an exclusive lock to + // update the resolved addresses metric and update the local state. + p.Lock() + defer p.Unlock() + + p.resolverAddrs.ResetTx() + for name, addrs := range resolvedAddrs { + p.resolverAddrs.WithLabelValues(name).Set(float64(len(addrs))) + } + p.resolverAddrs.Submit() + p.resolved = resolvedAddrs } // Addresses returns the latest addresses present in the Provider. func (p *Provider) Addresses() []string { - p.Lock() - defer p.Unlock() + p.RLock() + defer p.RUnlock() var result []string for _, addrs := range p.resolved { From d8c2a332a7ebaecf9b1b08bfa3428ea8f063f6b1 Mon Sep 17 00:00:00 2001 From: Johnathan Falk Date: Wed, 22 Apr 2020 13:11:23 -0400 Subject: [PATCH 130/190] Compact: Update compact documentation to better clarify dedupeReplicaLabels. (#2481) * Update compact documentation to better clarify dedupeReplicaLabels. Signed-off-by: Johnathan Falk * Fix capitalization. Signed-off-by: Johnathan Falk --- cmd/thanos/compact.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/thanos/compact.go b/cmd/thanos/compact.go index fb1b2b207d7..60dc702b298 100644 --- a/cmd/thanos/compact.go +++ b/cmd/thanos/compact.go @@ -138,7 +138,7 @@ func registerCompact(m map[string]setupFunc, app *kingpin.Application) { Default("48h")) dedupReplicaLabels := cmd.Flag("deduplication.replica-label", "Label to treat as a replica indicator of blocks that can be deduplicated (repeated flag). This will merge multiple replica blocks into one. This process is irreversible."+ - "Experimental. When it is set true, this will given labels from blocks so that vertical compaction could merge blocks."+ + "Experimental. When it is set to true, compactor will ignore the given labels so that vertical compaction can merge the blocks."+ "Please note that this uses a NAIVE algorithm for merging (no smart replica deduplication, just chaining samples together)."+ "This works well for deduplication of blocks with **precisely the same samples** like produced by Receiver replication."). Hidden().Strings() From 0bb67bcbc3a75fb274c1649dcfdb13a8c2db4024 Mon Sep 17 00:00:00 2001 From: Marco Pracucci Date: Wed, 22 Apr 2020 19:25:55 +0200 Subject: [PATCH 131/190] Gracefully handle additional oneof fields in SeriesResponse (#2501) * Gracefully handle additional oneof fields in SeriesResponse Signed-off-by: Marco Pracucci * Removed unnecessary continue Signed-off-by: Marco Pracucci * Updated CHANGELOG Signed-off-by: Marco Pracucci --- CHANGELOG.md | 6 ++++++ pkg/query/querier.go | 8 +++++--- pkg/store/proxy.go | 14 ++++++++------ pkg/store/proxy_test.go | 8 +++++--- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d595b0c7a05..90a7713d05f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ NOTE: As semantic versioning states all 0.y.z releases can contain breaking chan We use *breaking* word for marking changes that are not backward compatible (relates only to v0.y.z releases.) +## Unreleased + +### Fixed + +- [#2501](https://github.com/thanos-io/thanos/pull/2501) Query: gracefully handle additional fields in `SeriesResponse` protobuf message that may be added in the future. + ## [v0.12.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.1) - 2020.04.20 ### Fixed diff --git a/pkg/query/querier.go b/pkg/query/querier.go index 898db30fc1b..0299374d3fe 100644 --- a/pkg/query/querier.go +++ b/pkg/query/querier.go @@ -124,10 +124,12 @@ func (s *seriesServer) Send(r *storepb.SeriesResponse) error { return nil } - if r.GetSeries() == nil { - return errors.New("no seriesSet") + if r.GetSeries() != nil { + s.seriesSet = append(s.seriesSet, *r.GetSeries()) + return nil } - s.seriesSet = append(s.seriesSet, *r.GetSeries()) + + // Unsupported field, skip. return nil } diff --git a/pkg/store/proxy.go b/pkg/store/proxy.go index c071848c051..36da2e62fdd 100644 --- a/pkg/store/proxy.go +++ b/pkg/store/proxy.go @@ -432,13 +432,15 @@ func startStreamSeriesSet( if w := rr.r.GetWarning(); w != "" { s.warnCh.send(storepb.NewWarnSeriesResponse(errors.New(w))) - continue } - select { - case s.recvCh <- rr.r.GetSeries(): - case <-ctx.Done(): - s.handleErr(errors.Wrapf(ctx.Err(), "failed to receive any data from %s", s.name), done) - return + + if series := rr.r.GetSeries(); series != nil { + select { + case s.recvCh <- series: + case <-ctx.Done(): + s.handleErr(errors.Wrapf(ctx.Err(), "failed to receive any data from %s", s.name), done) + return + } } } }() diff --git a/pkg/store/proxy_test.go b/pkg/store/proxy_test.go index 8e8b6022d4e..32416d8b292 100644 --- a/pkg/store/proxy_test.go +++ b/pkg/store/proxy_test.go @@ -1379,10 +1379,12 @@ func (s *storeSeriesServer) Send(r *storepb.SeriesResponse) error { return nil } - if r.GetSeries() == nil { - return errors.New("no seriesSet") + if r.GetSeries() != nil { + s.SeriesSet = append(s.SeriesSet, *r.GetSeries()) + return nil } - s.SeriesSet = append(s.SeriesSet, *r.GetSeries()) + + // Unsupported field, skip. return nil } From bafd90ed201d66976dc814e5c07eb219cc7a6c01 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 23 Apr 2020 10:31:08 +0800 Subject: [PATCH 132/190] fix typo (#2509) Signed-off-by: arthur yang --- pkg/store/storepb/rpc.proto | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/store/storepb/rpc.proto b/pkg/store/storepb/rpc.proto index 3cd02e17e28..4aba405741b 100644 --- a/pkg/store/storepb/rpc.proto +++ b/pkg/store/storepb/rpc.proto @@ -21,7 +21,7 @@ option (gogoproto.goproto_unkeyed_all) = false; option (gogoproto.goproto_unrecognized_all) = false; option (gogoproto.goproto_sizecache_all) = false; -/// Store reprents API against instance that stores XOR encoded values with label set metadata (e.g Prometheus metrics). +/// Store represents API against instance that stores XOR encoded values with label set metadata (e.g Prometheus metrics). service Store { /// Info returns meta information about a store e.g labels that makes that store unique as well as time range that is /// available. @@ -43,7 +43,7 @@ service Store { rpc LabelValues(LabelValuesRequest) returns (LabelValuesResponse); } -/// WriteableStore reprents API against instance that stores XOR encoded values with label set metadata (e.g Prometheus metrics). +/// WriteableStore represents API against instance that stores XOR encoded values with label set metadata (e.g Prometheus metrics). service WriteableStore { // WriteRequest allows you to write metrics to this store via remote write rpc RemoteWrite(WriteRequest) returns (WriteResponse) {} From ebee995dc24987f58e43157d48ef51f451d66a4e Mon Sep 17 00:00:00 2001 From: Kemal Akkoyun Date: Thu, 23 Apr 2020 09:52:56 +0200 Subject: [PATCH 133/190] Adjust memcached operation buckets (#2504) Signed-off-by: Kemal Akkoyun --- pkg/cacheutil/memcached_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cacheutil/memcached_client.go b/pkg/cacheutil/memcached_client.go index 29f124b6c3c..99fc545786d 100644 --- a/pkg/cacheutil/memcached_client.go +++ b/pkg/cacheutil/memcached_client.go @@ -240,7 +240,7 @@ func newMemcachedClient( Name: "thanos_memcached_operation_duration_seconds", Help: "Duration of operations against memcached.", ConstLabels: prometheus.Labels{"name": name}, - Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1}, + Buckets: []float64{0.001, 0.005, 0.01, 0.025, 0.05, 0.1, 0.2, 0.5, 1, 3, 6, 10}, }, []string{"operation"}) c.duration.WithLabelValues(opGetMulti) c.duration.WithLabelValues(opSet) From 66dd2fbbcc2ab85236a56e45f01f5c2932e34543 Mon Sep 17 00:00:00 2001 From: Simon Pasquier Date: Thu, 23 Apr 2020 10:29:36 +0200 Subject: [PATCH 134/190] pkg/query: remove obsolete 'thanos_store_node_info' metric (#2505) Signed-off-by: Simon Pasquier --- CHANGELOG.md | 7 ++++--- pkg/query/storeset.go | 16 ++-------------- 2 files changed, 6 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90a7713d05f..66fe87b6c0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2501](https://github.com/thanos-io/thanos/pull/2501) Query: gracefully handle additional fields in `SeriesResponse` protobuf message that may be added in the future. +### Changed + +- [#2505](https://github.com/thanos.io/thanos/pull/2505) Store: remove obsolete `thanos_store_node_info` metric. + ## [v0.12.1](https://github.com/thanos-io/thanos/releases/tag/v0.12.1) - 2020.04.20 ### Fixed @@ -23,9 +27,6 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2474](https://github.com/thanos-io/thanos/pull/2474) Store: fix a panic caused by concurrent memory access during block filtering. - [#2472](https://github.com/thanos-io/thanos/pull/2472) Compact: fix a bug where partial blocks were never deleted, causing spam of warnings. - [#2484](https://github.com/thanos-io/thanos/pull/2484) Query/Ruler: fix issue #2483, when web.route-prefix is set, it is added twice in HTTP router prefix. - -### Fixed - - [#2416](https://github.com/thanos-io/thanos/pull/2416) Bucket: fixes issue #2416 bug in `inspect --sort-by` doesn't work correctly in all cases - [#2411](https://github.com/thanos-io/thanos/pull/2411) Query: fix a bug where queries might not time out sometimes due to issues with one or more StoreAPIs diff --git a/pkg/query/storeset.go b/pkg/query/storeset.go index aafb003f3fa..aa9430178a3 100644 --- a/pkg/query/storeset.go +++ b/pkg/query/storeset.go @@ -85,15 +85,14 @@ func (s *grpcStoreSpec) Metadata(ctx context.Context, client storepb.StoreClient return resp.LabelSets, resp.MinTime, resp.MaxTime, component.FromProto(resp.StoreType), nil } -// storeSetNodeCollector is metric collector for Guge indicated number of available storeAPIs for Querier. -// Collector is requires as we want atomic updates for all 'thanos_store_nodes_grpc_connections' series. +// storeSetNodeCollector is a metric collector reporting the number of available storeAPIs for Querier. +// A Collector is required as we want atomic updates for all 'thanos_store_nodes_grpc_connections' series. type storeSetNodeCollector struct { mtx sync.Mutex storeNodes map[component.StoreAPI]map[string]int storePerExtLset map[string]int connectionsDesc *prometheus.Desc - nodeInfoDesc *prometheus.Desc } func newStoreSetNodeCollector() *storeSetNodeCollector { @@ -104,13 +103,6 @@ func newStoreSetNodeCollector() *storeSetNodeCollector { "Number of gRPC connection to Store APIs. Opened connection means healthy store APIs available for Querier.", []string{"external_labels", "store_type"}, nil, ), - // TODO(bwplotka): Obsolete; Replaced by thanos_store_nodes_grpc_connections. - // Remove in next minor release. - nodeInfoDesc: prometheus.NewDesc( - "thanos_store_node_info", - "Deprecated, use thanos_store_nodes_grpc_connections instead.", - []string{"external_labels"}, nil, - ), } } @@ -134,7 +126,6 @@ func (c *storeSetNodeCollector) Update(nodes map[component.StoreAPI]map[string]i func (c *storeSetNodeCollector) Describe(ch chan<- *prometheus.Desc) { ch <- c.connectionsDesc - ch <- c.nodeInfoDesc } func (c *storeSetNodeCollector) Collect(ch chan<- prometheus.Metric) { @@ -150,9 +141,6 @@ func (c *storeSetNodeCollector) Collect(ch chan<- prometheus.Metric) { ch <- prometheus.MustNewConstMetric(c.connectionsDesc, prometheus.GaugeValue, float64(occurrences), externalLabels, storeTypeStr) } } - for externalLabels, occur := range c.storePerExtLset { - ch <- prometheus.MustNewConstMetric(c.nodeInfoDesc, prometheus.GaugeValue, float64(occur), externalLabels) - } } // StoreSet maintains a set of active stores. It is backed up by Store Specifications that are dynamically fetched on From 28ea33b5d3d396f45f231a7879b25646b45dbcec Mon Sep 17 00:00:00 2001 From: Povilas Versockas Date: Thu, 23 Apr 2020 12:06:55 +0300 Subject: [PATCH 135/190] Add Community information (#2510) * Add Community information Signed-off-by: Povilas Versockas * Fixes after review Signed-off-by: Povilas Versockas * Move to contributing menu Signed-off-by: Povilas Versockas --- docs/community.md | 40 ++++++++++++++++++++++++++++++++++++++ website/layouts/index.html | 12 +++++++++++- 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 docs/community.md diff --git a/docs/community.md b/docs/community.md new file mode 100644 index 00000000000..f6eb7b85986 --- /dev/null +++ b/docs/community.md @@ -0,0 +1,40 @@ +--- +title: Community +type: docs +menu: contributing +slug: /community.md +--- + +# General + +Thanos is an open source project and we value and welcome new contributors and members of the community. Here are ways to get in touch with the community: + +## Thanos Community meeting + +Thanos Community Meeting is a **public** and **recorded** monthly meeting every second Wednesday 12:00 UTC ([Time zone converter](https://www.thetimezoneconverter.com/?t=12%3A00%20pm&tz=UTC%20(Coordinated%20Universal%20Time)&)). + +Thanos maintainers & the community meet to discuss open issues, features and other Thanos related things. +Everyone is welcome to join & add items to the agenda. The meeting happens in Zoom. Right now meeting is in a Webinar format, where only small amount of people will have ability to speak and video share, due to recent [Zoombombing](https://en.wikipedia.org/wiki/Zoombombing) issues. + +* When: Monthly, every second Wednesday 12:00 UTC ([Time zone converter](https:// www.thetimezoneconverter.com/?t=12%3A00%20pm&tz=UTC%20(Coordinated%20Universal%20Time)&)). +* Google Calendar: [Google Calendar](https://calendar.google.com/calendar/embed?src=go39q7eu71vvu3gfrkbup6b254%40group.calendar.google.com) +* Agenda: [https://bit.ly/thanos-community-agenda](https://bit.ly/thanos-community-agenda) +* Link to join zoom webinar: [https://zoom.us/j/96476403386](https://zoom.us/j/96476403386) + +If you have any suggestions, how we can run the meeting better, please let @povilasv know in CNCF slack. + +## Slack + +* General channel: [#thanos](https://slack.cncf.io/) +* Development related channel: [#thanos-dev](https://slack.cncf.io/) +* Thanos PR discussion & review: [#thanos-prs](https://slack.cncf.io/) + +## Prometheus Community & Ecosystem Meeting + +The Prometheus & The Ecosystem community meeting is intended to provide a holistic overview of community activities, critical release information, and governance updates for Prometheus & the Ecosystem projects. + +Thanos Maintainers regularly join and give announcements and updates. + +Meeting details: [https://bit.ly/prometheus-community-agenda](https://bit.ly/prometheus-community-agenda) + + diff --git a/website/layouts/index.html b/website/layouts/index.html index ffb4d7f1837..9767ab6dac0 100644 --- a/website/layouts/index.html +++ b/website/layouts/index.html @@ -14,6 +14,11 @@

Open source, highly available Prometheus setup with long term s Getting Started +
  • + + Community + +
  • Download @@ -102,9 +107,14 @@

    Used By

    -

    Join the community !

    +

    Join the community !

    Join users and companies that are using Thanos in production.

  • ```go -// We have here SIX potential how caller can get an ID. Can you find all of them? +// We have here SIX potential ways the caller can get an ID. Can you find all of them? type Block struct { // Things... @@ -641,7 +641,7 @@ func OpenSomeFileAndDoSomeStuff() (f *os.File, err error) {
    -#### Explicitly Handled Returned Errors +#### Explicitly Handle Returned Errors Always handle returned errors. It does not mean you cannot "ignore" the error for some reason, e.g. if we know implementation will not return anything meaningful. You can ignore the error, but do so explicitly: @@ -755,7 +755,7 @@ level.Info(logger).Log( #### Control Structure: Prefer early returns and avoid `else` In most of the cases, you don't need `else`. You can usually use `continue`, `break` or `return` to end an `if` block. -This enables having one less indent and netter consistency so code is more readable. +This enables having one less indent and better consistency so code is more readable. @@ -990,7 +990,7 @@ for _, tcase := range []struct{ #### Tests for Packages / Structs That Involve `time` package. -Avoid unit testing based on real-time. Always try to mock time that is used within struct by using for example `timeNow func() time.Time` field. +Avoid unit testing based on real-time. Always try to mock time that is used within struct by using, for example, a `timeNow func() time.Time` field. For production code, you can initialize the field with `time.Now`. For test code, you can set a custom time that will be used by the struct.
    From cfced59c652aca5c311baa22b519e107a20ba422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Mon, 11 May 2020 10:30:38 +0300 Subject: [PATCH 173/190] quickstart: fix bucket web after recent changes (#2580) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The subcommand is called now `tools bucket web` after the recent changes. Without this, the quickstart script outputs: ``` Error parsing commandline arguments: expected command but got "bucket" thanos: error: expected command but got "bucket" ``` Signed-off-by: Giedrius Statkevičius --- scripts/quickstart.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/quickstart.sh b/scripts/quickstart.sh index 813b4623b5e..de98dab72f4 100755 --- a/scripts/quickstart.sh +++ b/scripts/quickstart.sh @@ -250,7 +250,7 @@ done sleep 0.5 if [ -n "${GCS_BUCKET}" -o -n "${S3_ENDPOINT}" ]; then - ${THANOS_EXECUTABLE} bucket web \ + ${THANOS_EXECUTABLE} tools bucket web \ --debug.name bucket-web \ --log.level debug \ --http-address 0.0.0.0:10933 \ From 71460e30803c81ef5309d6065aec29de5485b112 Mon Sep 17 00:00:00 2001 From: Joel Bastos Date: Mon, 11 May 2020 12:36:28 +0100 Subject: [PATCH 174/190] Fix typo on reload function (#2584) Signed-off-by: Joel Bastos --- cmd/thanos/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/thanos/main.go b/cmd/thanos/main.go index 87048a0070e..c5b22d74d77 100644 --- a/cmd/thanos/main.go +++ b/cmd/thanos/main.go @@ -235,7 +235,7 @@ func reload(logger log.Logger, cancel <-chan struct{}, r chan<- struct{}) error level.Info(logger).Log("msg", "caught signal. Reloading.", "signal", s) select { case r <- struct{}{}: - level.Info(logger).Log("msg", "relaod dispatched.") + level.Info(logger).Log("msg", "reload dispatched.") default: } case <-cancel: From a384c439bac7e34097a33d790b7c7bf3befbba7a Mon Sep 17 00:00:00 2001 From: Philip Gough Date: Mon, 11 May 2020 12:43:55 +0100 Subject: [PATCH 175/190] Refactor of commands and flag parsing for sidecar (#2267) Signed-off-by: Philip Gough --- cmd/thanos/config.go | 127 ++++++++++++++++++++++++++++++++++++++ cmd/thanos/flags.go | 3 +- cmd/thanos/sidecar.go | 138 ++++++++++++++++-------------------------- 3 files changed, 181 insertions(+), 87 deletions(-) create mode 100644 cmd/thanos/config.go diff --git a/cmd/thanos/config.go b/cmd/thanos/config.go new file mode 100644 index 00000000000..da80f24cde9 --- /dev/null +++ b/cmd/thanos/config.go @@ -0,0 +1,127 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package main + +import ( + "net/url" + "time" + + "github.com/prometheus/common/model" + "gopkg.in/alecthomas/kingpin.v2" +) + +type grpcConfig struct { + bindAddress string + gracePeriod model.Duration + tlsSrvCert string + tlsSrvKey string + tlsSrvClientCA string +} + +func (gc *grpcConfig) registerFlag(cmd *kingpin.CmdClause) *grpcConfig { + cmd.Flag("grpc-address", + "Listen ip:port address for gRPC endpoints (StoreAPI). Make sure this address is routable from other components."). + Default("0.0.0.0:10901").StringVar(&gc.bindAddress) + cmd.Flag("grpc-grace-period", + "Time to wait after an interrupt received for GRPC Server."). + Default("2m").SetValue(&gc.gracePeriod) + cmd.Flag("grpc-server-tls-cert", + "TLS Certificate for gRPC server, leave blank to disable TLS"). + Default("").StringVar(&gc.tlsSrvCert) + cmd.Flag("grpc-server-tls-key", + "TLS Key for the gRPC server, leave blank to disable TLS"). + Default("").StringVar(&gc.tlsSrvKey) + cmd.Flag("grpc-server-tls-client-ca", + "TLS CA to verify clients against. If no client CA is specified, there is no client verification on server side. (tls.NoClientCert)"). + Default("").StringVar(&gc.tlsSrvClientCA) + return gc +} + +type httpConfig struct { + bindAddress string + gracePeriod model.Duration +} + +func (hc *httpConfig) registerFlag(cmd *kingpin.CmdClause) *httpConfig { + cmd.Flag("http-address", + "Listen host:port for HTTP endpoints."). + Default("0.0.0.0:10902").StringVar(&hc.bindAddress) + cmd.Flag("http-grace-period", + "Time to wait after an interrupt received for HTTP Server."). + Default("2m").SetValue(&hc.gracePeriod) + return hc +} + +type prometheusConfig struct { + url *url.URL + readyTimeout time.Duration +} + +func (pc *prometheusConfig) registerFlag(cmd *kingpin.CmdClause) *prometheusConfig { + cmd.Flag("prometheus.url", + "URL at which to reach Prometheus's API. For better performance use local network."). + Default("http://localhost:9090").URLVar(&pc.url) + cmd.Flag("prometheus.ready_timeout", + "Maximum time to wait for the Prometheus instance to start up"). + Default("10m").DurationVar(&pc.readyTimeout) + return pc +} + +type connConfig struct { + maxIdleConns int + maxIdleConnsPerHost int +} + +func (cc *connConfig) registerFlag(cmd *kingpin.CmdClause) *connConfig { + cmd.Flag("receive.connection-pool-size", + "Controls the http MaxIdleConns. Default is 0, which is unlimited"). + IntVar(&cc.maxIdleConns) + cmd.Flag("receive.connection-pool-size-per-host", + "Controls the http MaxIdleConnsPerHost"). + Default("100").IntVar(&cc.maxIdleConnsPerHost) + return cc +} + +type tsdbConfig struct { + path string +} + +func (tc *tsdbConfig) registerFlag(cmd *kingpin.CmdClause) *tsdbConfig { + cmd.Flag("tsdb.path", "Data directory of TSDB.").Default("./data").StringVar(&tc.path) + return tc +} + +type reloaderConfig struct { + confFile string + envVarConfFile string + ruleDirectories []string +} + +func (rc *reloaderConfig) registerFlag(cmd *kingpin.CmdClause) *reloaderConfig { + cmd.Flag("reloader.config-file", + "Config file watched by the reloader."). + Default("").StringVar(&rc.confFile) + cmd.Flag("reloader.config-envsubst-file", + "Output file for environment variable substituted config file."). + Default("").StringVar(&rc.envVarConfFile) + cmd.Flag("reloader.rule-dir", + "Rule directories for the reloader to refresh (repeated field)."). + StringsVar(&rc.ruleDirectories) + return rc +} + +type shipperConfig struct { + uploadCompacted bool + ignoreBlockSize bool +} + +func (sc *shipperConfig) registerFlag(cmd *kingpin.CmdClause) *shipperConfig { + cmd.Flag("shipper.upload-compacted", + "If true sidecar will try to upload compacted blocks as well. Useful for migration purposes. Works only if compaction is disabled on Prometheus. Do it once and then disable the flag when done."). + Default("false").BoolVar(&sc.uploadCompacted) + cmd.Flag("shipper.ignore-unequal-block-size", + "If true sidecar will not require prometheus min and max block size flags to be set to the same value. Only use this if you want to keep long retention and compaction enabled on your Prometheus instance, as in the worst case it can result in ~2h data loss for your Thanos bucket storage."). + Default("false").Hidden().BoolVar(&sc.ignoreBlockSize) + return sc +} diff --git a/cmd/thanos/flags.go b/cmd/thanos/flags.go index c850f8825b1..d5f9ddf12a1 100644 --- a/cmd/thanos/flags.go +++ b/cmd/thanos/flags.go @@ -7,9 +7,8 @@ import ( "fmt" "strings" - "github.com/thanos-io/thanos/pkg/extflag" - "github.com/prometheus/common/model" + "github.com/thanos-io/thanos/pkg/extflag" "gopkg.in/alecthomas/kingpin.v2" ) diff --git a/cmd/thanos/sidecar.go b/cmd/thanos/sidecar.go index 82411ded419..e16f7534bc9 100644 --- a/cmd/thanos/sidecar.go +++ b/cmd/thanos/sidecar.go @@ -44,47 +44,17 @@ import ( func registerSidecar(m map[string]setupFunc, app *kingpin.Application) { cmd := app.Command(component.Sidecar.String(), "sidecar for Prometheus server") - - httpBindAddr, httpGracePeriod := regHTTPFlags(cmd) - grpcBindAddr, grpcGracePeriod, grpcCert, grpcKey, grpcClientCA := regGRPCFlags(cmd) - - promURL := cmd.Flag("prometheus.url", "URL at which to reach Prometheus's API. For better performance use local network."). - Default("http://localhost:9090").URL() - - promReadyTimeout := cmd.Flag("prometheus.ready_timeout", "Maximum time to wait for the Prometheus instance to start up"). - Default("10m").Duration() - - connectionPoolSize := cmd.Flag("receive.connection-pool-size", "Controls the http MaxIdleConns. Default is 0, which is unlimited").Int() - connectionPoolSizePerHost := cmd.Flag("receive.connection-pool-size-per-host", "Controls the http MaxIdleConnsPerHost").Default("100").Int() - - dataDir := cmd.Flag("tsdb.path", "Data directory of TSDB."). - Default("./data").String() - - reloaderCfgFile := cmd.Flag("reloader.config-file", "Config file watched by the reloader."). - Default("").String() - - reloaderCfgOutputFile := cmd.Flag("reloader.config-envsubst-file", "Output file for environment variable substituted config file."). - Default("").String() - - reloaderRuleDirs := cmd.Flag("reloader.rule-dir", "Rule directories for the reloader to refresh (repeated field).").Strings() - - objStoreConfig := regCommonObjStoreFlags(cmd, "", false) - - uploadCompacted := cmd.Flag("shipper.upload-compacted", "If true sidecar will try to upload compacted blocks as well. Useful for migration purposes. Works only if compaction is disabled on Prometheus. Do it once and then disable the flag when done.").Default("false").Bool() - - ignoreBlockSize := cmd.Flag("shipper.ignore-unequal-block-size", "If true sidecar will not require prometheus min and max block size flags to be set to the same value. Only use this if you want to keep long retention and compaction enabled on your Prometheus instance, as in the worst case it can result in ~2h data loss for your Thanos bucket storage.").Default("false").Hidden().Bool() - - minTime := thanosmodel.TimeOrDuration(cmd.Flag("min-time", "Start of time range limit to serve. Thanos sidecar will serve only metrics, which happened later than this value. Option can be a constant time in RFC3339 format or time duration relative to current time, such as -1d or 2h45m. Valid duration units are ms, s, m, h, d, w, y."). - Default("0000-01-01T00:00:00Z")) + conf := &sidecarConfig{} + conf.registerFlag(cmd) m[component.Sidecar.String()] = func(g *run.Group, logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, _ <-chan struct{}, _ bool) error { rl := reloader.New( log.With(logger, "component", "reloader"), extprom.WrapRegistererWithPrefix("thanos_sidecar_", reg), - reloader.ReloadURLFromBase(*promURL), - *reloaderCfgFile, - *reloaderCfgOutputFile, - *reloaderRuleDirs, + reloader.ReloadURLFromBase(conf.prometheus.url), + conf.reloader.confFile, + conf.reloader.envVarConfFile, + conf.reloader.ruleDirectories, ) return runSidecar( @@ -92,24 +62,9 @@ func registerSidecar(m map[string]setupFunc, app *kingpin.Application) { logger, reg, tracer, - *grpcBindAddr, - time.Duration(*grpcGracePeriod), - *grpcCert, - *grpcKey, - *grpcClientCA, - *httpBindAddr, - time.Duration(*httpGracePeriod), - *promURL, - *promReadyTimeout, - *dataDir, - objStoreConfig, rl, - *uploadCompacted, - *ignoreBlockSize, component.Sidecar, - *minTime, - *connectionPoolSize, - *connectionPoolSizePerHost, + *conf, ) } } @@ -119,37 +74,22 @@ func runSidecar( logger log.Logger, reg *prometheus.Registry, tracer opentracing.Tracer, - grpcBindAddr string, - grpcGracePeriod time.Duration, - grpcCert string, - grpcKey string, - grpcClientCA string, - httpBindAddr string, - httpGracePeriod time.Duration, - promURL *url.URL, - promReadyTimeout time.Duration, - dataDir string, - objStoreConfig *extflag.PathOrContent, reloader *reloader.Reloader, - uploadCompacted bool, - ignoreBlockSize bool, comp component.Component, - limitMinTime thanosmodel.TimeOrDurationValue, - connectionPoolSize int, - connectionPoolSizePerHost int, + conf sidecarConfig, ) error { var m = &promMetadata{ - promURL: promURL, + promURL: conf.prometheus.url, // Start out with the full time range. The shipper will constrain it later. // TODO(fabxc): minimum timestamp is never adjusted if shipping is disabled. - mint: limitMinTime.PrometheusTimestamp(), + mint: conf.limitMinTime.PrometheusTimestamp(), maxt: math.MaxInt64, - limitMinTime: limitMinTime, + limitMinTime: conf.limitMinTime, } - confContentYaml, err := objStoreConfig.Content() + confContentYaml, err := conf.objStore.Content() if err != nil { return errors.Wrap(err, "getting object store config") } @@ -169,8 +109,8 @@ func runSidecar( ) srv := httpserver.New(logger, reg, comp, httpProbe, - httpserver.WithListen(httpBindAddr), - httpserver.WithGracePeriod(httpGracePeriod), + httpserver.WithListen(conf.http.bindAddress), + httpserver.WithGracePeriod(time.Duration(conf.http.gracePeriod)), ) g.Add(func() error { @@ -200,7 +140,7 @@ func runSidecar( // Only check Prometheus's flags when upload is enabled. if uploads { // Check prometheus's flags to ensure sane sidecar flags. - if err := validatePrometheus(ctx, logger, ignoreBlockSize, m); err != nil { + if err := validatePrometheus(ctx, logger, conf.shipper.ignoreBlockSize, m); err != nil { return errors.Wrap(err, "validate Prometheus flags") } } @@ -266,23 +206,24 @@ func runSidecar( { t := exthttp.NewTransport() - t.MaxIdleConnsPerHost = connectionPoolSizePerHost - t.MaxIdleConns = connectionPoolSize + t.MaxIdleConnsPerHost = conf.connection.maxIdleConnsPerHost + t.MaxIdleConns = conf.connection.maxIdleConns c := &http.Client{Transport: tracing.HTTPTripperware(logger, t)} - promStore, err := store.NewPrometheusStore(logger, c, promURL, component.Sidecar, m.Labels, m.Timestamps) + promStore, err := store.NewPrometheusStore(logger, c, conf.prometheus.url, component.Sidecar, m.Labels, m.Timestamps) if err != nil { return errors.Wrap(err, "create Prometheus store") } - tlsCfg, err := tls.NewServerConfig(log.With(logger, "protocol", "gRPC"), grpcCert, grpcKey, grpcClientCA) + tlsCfg, err := tls.NewServerConfig(log.With(logger, "protocol", "gRPC"), + conf.grpc.tlsSrvCert, conf.grpc.tlsSrvKey, conf.grpc.tlsSrvClientCA) if err != nil { return errors.Wrap(err, "setup gRPC server") } s := grpcserver.New(logger, reg, tracer, comp, grpcProbe, promStore, - grpcserver.WithListen(grpcBindAddr), - grpcserver.WithGracePeriod(grpcGracePeriod), + grpcserver.WithListen(conf.grpc.bindAddress), + grpcserver.WithGracePeriod(time.Duration(conf.grpc.gracePeriod)), grpcserver.WithTLSConfig(tlsCfg), ) g.Add(func() error { @@ -309,7 +250,7 @@ func runSidecar( } }() - if err := promclient.IsWALDirAccessible(dataDir); err != nil { + if err := promclient.IsWALDirAccessible(conf.tsdb.path); err != nil { level.Error(logger).Log("err", err) } @@ -317,6 +258,7 @@ func runSidecar( g.Add(func() error { defer runutil.CloseWithLogOnErr(logger, bkt, "bucket client") + promReadyTimeout := conf.prometheus.readyTimeout extLabelsCtx, cancel := context.WithTimeout(ctx, promReadyTimeout) defer cancel() @@ -330,10 +272,10 @@ func runSidecar( } var s *shipper.Shipper - if uploadCompacted { - s = shipper.NewWithCompacted(logger, reg, dataDir, bkt, m.Labels, metadata.SidecarSource) + if conf.shipper.uploadCompacted { + s = shipper.NewWithCompacted(logger, reg, conf.tsdb.path, bkt, m.Labels, metadata.SidecarSource) } else { - s = shipper.New(logger, reg, dataDir, bkt, m.Labels, metadata.SidecarSource) + s = shipper.New(logger, reg, conf.tsdb.path, bkt, m.Labels, metadata.SidecarSource) } return runutil.Repeat(30*time.Second, ctx.Done(), func() error { @@ -458,3 +400,29 @@ func (s *promMetadata) Timestamps() (mint int64, maxt int64) { return s.mint, s.maxt } + +type sidecarConfig struct { + http httpConfig + grpc grpcConfig + prometheus prometheusConfig + connection connConfig + tsdb tsdbConfig + reloader reloaderConfig + objStore extflag.PathOrContent + shipper shipperConfig + limitMinTime thanosmodel.TimeOrDurationValue +} + +func (sc *sidecarConfig) registerFlag(cmd *kingpin.CmdClause) *sidecarConfig { + sc.http.registerFlag(cmd) + sc.grpc.registerFlag(cmd) + sc.prometheus.registerFlag(cmd) + sc.connection.registerFlag(cmd) + sc.tsdb.registerFlag(cmd) + sc.reloader.registerFlag(cmd) + sc.objStore = *regCommonObjStoreFlags(cmd, "", false) + sc.shipper.registerFlag(cmd) + cmd.Flag("min-time", "Start of time range limit to serve. Thanos sidecar will serve only metrics, which happened later than this value. Option can be a constant time in RFC3339 format or time duration relative to current time, such as -1d or 2h45m. Valid duration units are ms, s, m, h, d, w, y."). + Default("0000-01-01T00:00:00Z").SetValue(&sc.limitMinTime) + return sc +} From f6921345b6c46a4364da42cc9f1dfb325e36f2a1 Mon Sep 17 00:00:00 2001 From: Prem Kumar Date: Mon, 11 May 2020 19:54:46 +0530 Subject: [PATCH 176/190] ui: add new React UI from Prometheus (#2412) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ui: add React UI from upstream Prometheus Signed-off-by: Adrien Fillon * ui: incorporate new changes from Prometheus React UI Signed-off-by: Prem Kumar * ui: adapted the React UI to Thanos Signed-off-by: Prem Kumar Co-authored-by: Adrien Fillon Co-authored-by: Giedrius Statkevičius --- .circleci/config.yml | 1 + .gitignore | 3 + CHANGELOG.md | 1 + CONTRIBUTING.md | 1 + Makefile | 72 +- cmd/thanos/query.go | 2 +- pkg/query/api/v1.go | 13 + pkg/query/storeset.go | 14 +- pkg/ui/bindata.go | 110 +- pkg/ui/bucket.go | 13 +- pkg/ui/query.go | 12 +- pkg/ui/react-app/.eslintrc.json | 31 + pkg/ui/react-app/.gitignore | 23 + pkg/ui/react-app/README.md | 83 + pkg/ui/react-app/package.json | 96 + pkg/ui/react-app/public/favicon.ico | Bin 0 -> 16958 bytes pkg/ui/react-app/public/index.html | 50 + pkg/ui/react-app/public/manifest.json | 15 + pkg/ui/react-app/src/App.css | 253 + pkg/ui/react-app/src/App.test.tsx | 24 + pkg/ui/react-app/src/App.tsx | 39 + pkg/ui/react-app/src/Navbar.test.tsx | 30 + pkg/ui/react-app/src/Navbar.tsx | 87 + .../src/components/Checkbox.test.tsx | 65 + pkg/ui/react-app/src/components/Checkbox.tsx | 19 + .../src/components/ToggleMoreLess.test.tsx | 33 + .../src/components/ToggleMoreLess.tsx | 28 + .../src/components/withStatusIndicator.tsx | 46 + pkg/ui/react-app/src/globals.ts | 4 + pkg/ui/react-app/src/hooks/useFetch.ts | 34 + .../src/hooks/useLocalStorage.test.tsx | 27 + .../react-app/src/hooks/useLocalStorage.tsx | 13 + pkg/ui/react-app/src/index.tsx | 25 + .../src/pages/alerts/AlertContents.tsx | 136 + pkg/ui/react-app/src/pages/alerts/Alerts.tsx | 26 + .../pages/alerts/CollapsibleAlertPanel.tsx | 123 + pkg/ui/react-app/src/pages/config/Config.css | 10 + pkg/ui/react-app/src/pages/config/Config.tsx | 52 + .../react-app/src/pages/flags/Flags.test.tsx | 65 + pkg/ui/react-app/src/pages/flags/Flags.tsx | 42 + .../flags/__snapshots__/Flags.test.tsx.snap | 395 + .../src/pages/graph/DataTable.test.tsx | 301 + .../react-app/src/pages/graph/DataTable.tsx | 137 + .../src/pages/graph/ExpressionInput.test.tsx | 252 + .../src/pages/graph/ExpressionInput.tsx | 194 + .../react-app/src/pages/graph/Graph.test.tsx | 268 + pkg/ui/react-app/src/pages/graph/Graph.tsx | 145 + .../src/pages/graph/GraphControls.test.tsx | 173 + .../src/pages/graph/GraphControls.tsx | 150 + .../src/pages/graph/GraphHelpers.test.ts | 206 + .../react-app/src/pages/graph/GraphHelpers.ts | 197 + .../src/pages/graph/GraphTabContent.test.tsx | 45 + .../src/pages/graph/GraphTabContent.tsx | 27 + pkg/ui/react-app/src/pages/graph/Legend.tsx | 77 + .../react-app/src/pages/graph/Panel.test.tsx | 140 + pkg/ui/react-app/src/pages/graph/Panel.tsx | 322 + .../src/pages/graph/PanelList.test.tsx | 34 + .../react-app/src/pages/graph/PanelList.tsx | 196 + .../src/pages/graph/QueryStatsView.css | 5 + .../src/pages/graph/QueryStatsView.test.tsx | 17 + .../src/pages/graph/QueryStatsView.tsx | 22 + .../src/pages/graph/SeriesName.test.tsx | 81 + .../react-app/src/pages/graph/SeriesName.tsx | 52 + .../src/pages/graph/TimeInput.test.tsx | 60 + .../react-app/src/pages/graph/TimeInput.tsx | 139 + pkg/ui/react-app/src/pages/index.ts | 11 + pkg/ui/react-app/src/pages/rules/Rules.tsx | 16 + .../src/pages/rules/RulesContent.tsx | 131 + .../pages/serviceDiscovery/LabelsTable.tsx | 65 + .../src/pages/serviceDiscovery/Services.tsx | 120 + .../src/pages/status/Status.test.tsx | 49 + pkg/ui/react-app/src/pages/status/Status.tsx | 112 + .../status/__snapshots__/Status.test.tsx.snap | 77 + .../src/pages/targets/EndpointLink.test.tsx | 38 + .../src/pages/targets/EndpointLink.tsx | 39 + .../src/pages/targets/Filter.module.css | 4 + .../src/pages/targets/Filter.test.tsx | 45 + pkg/ui/react-app/src/pages/targets/Filter.tsx | 39 + .../src/pages/targets/ScrapePoolList.test.tsx | 83 + .../src/pages/targets/ScrapePoolList.tsx | 48 + .../pages/targets/ScrapePoolPanel.module.css | 43 + .../pages/targets/ScrapePoolPanel.test.tsx | 129 + .../src/pages/targets/ScrapePoolPanel.tsx | 84 + .../src/pages/targets/TargetLabels.module.css | 3 + .../src/pages/targets/TargetLabels.test.tsx | 50 + .../src/pages/targets/TargetLabels.tsx | 49 + .../src/pages/targets/Targets.test.tsx | 33 + .../react-app/src/pages/targets/Targets.tsx | 22 + .../__snapshots__/TargetLabels.test.tsx.snap | 81 + .../pages/targets/__testdata__/testdata.ts | 220 + .../src/pages/targets/target.test.ts | 44 + pkg/ui/react-app/src/pages/targets/target.ts | 54 + .../src/pages/tsdbStatus/TSDBStatus.test.tsx | 103 + .../src/pages/tsdbStatus/TSDBStatus.tsx | 81 + pkg/ui/react-app/src/react-app-env.d.ts | 1 + pkg/ui/react-app/src/setupTests.ts | 9 + pkg/ui/react-app/src/thanos/Navbar.tsx | 49 + pkg/ui/react-app/src/thanos/pages/index.tsx | 1 + .../src/thanos/types/ThanosComponentProps.ts | 5 + pkg/ui/react-app/src/types/PathPrefixProps.ts | 5 + pkg/ui/react-app/src/types/index.d.ts | 68 + pkg/ui/react-app/src/types/types.ts | 26 + pkg/ui/react-app/src/utils/index.ts | 212 + pkg/ui/react-app/src/utils/utils.test.ts | 241 + .../src/vendor/flot/jquery.flot.crosshair.js | 191 + .../react-app/src/vendor/flot/jquery.flot.js | 3412 +++++ .../src/vendor/flot/jquery.flot.stack.js | 205 + .../src/vendor/flot/jquery.flot.time.js | 482 + pkg/ui/react-app/tsconfig.json | 25 + pkg/ui/react-app/yarn.lock | 11424 ++++++++++++++++ pkg/ui/rule.go | 12 +- pkg/ui/templates/query_menu.html | 3 + pkg/ui/ui.go | 91 +- scripts/build-react-app.sh | 17 + 114 files changed, 23610 insertions(+), 98 deletions(-) create mode 100644 pkg/ui/react-app/.eslintrc.json create mode 100755 pkg/ui/react-app/.gitignore create mode 100755 pkg/ui/react-app/README.md create mode 100644 pkg/ui/react-app/package.json create mode 100644 pkg/ui/react-app/public/favicon.ico create mode 100755 pkg/ui/react-app/public/index.html create mode 100755 pkg/ui/react-app/public/manifest.json create mode 100644 pkg/ui/react-app/src/App.css create mode 100755 pkg/ui/react-app/src/App.test.tsx create mode 100755 pkg/ui/react-app/src/App.tsx create mode 100644 pkg/ui/react-app/src/Navbar.test.tsx create mode 100644 pkg/ui/react-app/src/Navbar.tsx create mode 100755 pkg/ui/react-app/src/components/Checkbox.test.tsx create mode 100644 pkg/ui/react-app/src/components/Checkbox.tsx create mode 100644 pkg/ui/react-app/src/components/ToggleMoreLess.test.tsx create mode 100644 pkg/ui/react-app/src/components/ToggleMoreLess.tsx create mode 100644 pkg/ui/react-app/src/components/withStatusIndicator.tsx create mode 100644 pkg/ui/react-app/src/globals.ts create mode 100644 pkg/ui/react-app/src/hooks/useFetch.ts create mode 100644 pkg/ui/react-app/src/hooks/useLocalStorage.test.tsx create mode 100644 pkg/ui/react-app/src/hooks/useLocalStorage.tsx create mode 100755 pkg/ui/react-app/src/index.tsx create mode 100644 pkg/ui/react-app/src/pages/alerts/AlertContents.tsx create mode 100644 pkg/ui/react-app/src/pages/alerts/Alerts.tsx create mode 100644 pkg/ui/react-app/src/pages/alerts/CollapsibleAlertPanel.tsx create mode 100644 pkg/ui/react-app/src/pages/config/Config.css create mode 100644 pkg/ui/react-app/src/pages/config/Config.tsx create mode 100644 pkg/ui/react-app/src/pages/flags/Flags.test.tsx create mode 100644 pkg/ui/react-app/src/pages/flags/Flags.tsx create mode 100644 pkg/ui/react-app/src/pages/flags/__snapshots__/Flags.test.tsx.snap create mode 100755 pkg/ui/react-app/src/pages/graph/DataTable.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/DataTable.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/ExpressionInput.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/Graph.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/Graph.tsx create mode 100755 pkg/ui/react-app/src/pages/graph/GraphControls.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/GraphControls.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/GraphHelpers.test.ts create mode 100644 pkg/ui/react-app/src/pages/graph/GraphHelpers.ts create mode 100644 pkg/ui/react-app/src/pages/graph/GraphTabContent.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/GraphTabContent.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/Legend.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/Panel.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/Panel.tsx create mode 100755 pkg/ui/react-app/src/pages/graph/PanelList.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/PanelList.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/QueryStatsView.css create mode 100755 pkg/ui/react-app/src/pages/graph/QueryStatsView.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/QueryStatsView.tsx create mode 100755 pkg/ui/react-app/src/pages/graph/SeriesName.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/SeriesName.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/TimeInput.test.tsx create mode 100644 pkg/ui/react-app/src/pages/graph/TimeInput.tsx create mode 100644 pkg/ui/react-app/src/pages/index.ts create mode 100644 pkg/ui/react-app/src/pages/rules/Rules.tsx create mode 100644 pkg/ui/react-app/src/pages/rules/RulesContent.tsx create mode 100644 pkg/ui/react-app/src/pages/serviceDiscovery/LabelsTable.tsx create mode 100644 pkg/ui/react-app/src/pages/serviceDiscovery/Services.tsx create mode 100644 pkg/ui/react-app/src/pages/status/Status.test.tsx create mode 100644 pkg/ui/react-app/src/pages/status/Status.tsx create mode 100644 pkg/ui/react-app/src/pages/status/__snapshots__/Status.test.tsx.snap create mode 100644 pkg/ui/react-app/src/pages/targets/EndpointLink.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/EndpointLink.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/Filter.module.css create mode 100644 pkg/ui/react-app/src/pages/targets/Filter.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/Filter.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/ScrapePoolList.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/ScrapePoolList.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.module.css create mode 100644 pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/TargetLabels.module.css create mode 100644 pkg/ui/react-app/src/pages/targets/TargetLabels.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/TargetLabels.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/Targets.test.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/Targets.tsx create mode 100644 pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap create mode 100644 pkg/ui/react-app/src/pages/targets/__testdata__/testdata.ts create mode 100644 pkg/ui/react-app/src/pages/targets/target.test.ts create mode 100644 pkg/ui/react-app/src/pages/targets/target.ts create mode 100644 pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.test.tsx create mode 100644 pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.tsx create mode 100644 pkg/ui/react-app/src/react-app-env.d.ts create mode 100644 pkg/ui/react-app/src/setupTests.ts create mode 100644 pkg/ui/react-app/src/thanos/Navbar.tsx create mode 100644 pkg/ui/react-app/src/thanos/pages/index.tsx create mode 100644 pkg/ui/react-app/src/thanos/types/ThanosComponentProps.ts create mode 100644 pkg/ui/react-app/src/types/PathPrefixProps.ts create mode 100644 pkg/ui/react-app/src/types/index.d.ts create mode 100644 pkg/ui/react-app/src/types/types.ts create mode 100644 pkg/ui/react-app/src/utils/index.ts create mode 100644 pkg/ui/react-app/src/utils/utils.test.ts create mode 100644 pkg/ui/react-app/src/vendor/flot/jquery.flot.crosshair.js create mode 100644 pkg/ui/react-app/src/vendor/flot/jquery.flot.js create mode 100644 pkg/ui/react-app/src/vendor/flot/jquery.flot.stack.js create mode 100644 pkg/ui/react-app/src/vendor/flot/jquery.flot.time.js create mode 100644 pkg/ui/react-app/tsconfig.json create mode 100644 pkg/ui/react-app/yarn.lock create mode 100755 scripts/build-react-app.sh diff --git a/.circleci/config.yml b/.circleci/config.yml index 0133c5d6b9a..df0f972bc27 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,6 +45,7 @@ jobs: exit fi taskset 2 make test-ci + taskset 2 make react-app-test # Cross build is needed for publish_release but needs to be done outside of docker. cross_build: diff --git a/.gitignore b/.gitignore index 04fc8996642..4e1783a9b8d 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,9 @@ website/public/ website/docs-pre-processed/ !website/data +# React build assets +pkg/ui/static/react + tmp/bin examples/tmp/ diff --git a/CHANGELOG.md b/CHANGELOG.md index cf26150cd29..855c3518a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2502](https://github.com/thanos-io/thanos/pull/2502) Added `hints` field to `SeriesResponse`. Hints in an opaque data structure that can be used to carry additional information from the store and its content is implementation specific. - [#2521](https://github.com/thanos-io/thanos/pull/2521) Sidecar: add `thanos_sidecar_reloader_reloads_failed_total`, `thanos_sidecar_reloader_reloads_total`, `thanos_sidecar_reloader_watch_errors_total`, `thanos_sidecar_reloader_watch_events_total` and `thanos_sidecar_reloader_watches` metrics. +- [#2412](https://github.com/thanos-io/thanos/pull/2412) ui: add React UI from Prometheus upstream. Currently only accessible from Query component as only `/graph` endpoint is migrated. - [#2532](https://github.com/thanos-io/thanos/pull/2532) Store: Added hidden option for experimental caching bucket, that can cache chunks into shared memcached. This can speed up querying and reduce number of requests to object storage. ### Changed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a741a472955..fa2b1c04db1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,6 +82,7 @@ The following section explains various suggestions and procedures to note during * It is strongly recommended that you use Linux distributions systems or OSX for development. * Go 1.13.9 or newer installed. +* For React UI, you will need a working NodeJS environment and the Yarn package manager to compile the Web UI assets ### First Steps diff --git a/Makefile b/Makefile index 72585c00315..fbbe4df4c5f 100644 --- a/Makefile +++ b/Makefile @@ -84,6 +84,11 @@ MINIO_SERVER ?=$(GOBIN)/minio-$(MINIO_SERVER_VERSION) FAILLINT_VERSION ?= v1.2.0 FAILLINT ?=$(GOBIN)/faillint-$(FAILLINT_VERSION) +REACT_APP_PATH = pkg/ui/react-app +REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json) +REACT_APP_OUTPUT_DIR = pkg/ui/static/react +REACT_APP_NODE_MODULES_PATH = $(REACT_APP_PATH)/node_modules + # fetch_go_bin_version downloads (go gets) the binary from specific version and installs it in $(GOBIN)/- # arguments: # $(1): Install path. (e.g github.com/campoy/embedmd) @@ -95,9 +100,9 @@ define fetch_go_bin_version @echo ">> fetching $(1)@$(2) revision/version" @if [ ! -d '$(TMP_GOPATH)/src/$(1)' ]; then \ - GOPATH='$(TMP_GOPATH)' GO111MODULE='off' go get -d -u '$(1)/...'; \ + GOPATH='$(TMP_GOPATH)' GO111MODULE='off' go get -d -u '$(1)/...'; \ else \ - CDPATH='' cd -- '$(TMP_GOPATH)/src/$(1)' && git fetch; \ + CDPATH='' cd -- '$(TMP_GOPATH)/src/$(1)' && git fetch; \ fi @CDPATH='' cd -- '$(TMP_GOPATH)/src/$(1)' && git checkout -f -q '$(2)' @echo ">> installing $(1)@$(2)" @@ -110,19 +115,19 @@ endef define require_clean_work_tree @git update-index -q --ignore-submodules --refresh - @if ! git diff-files --quiet --ignore-submodules --; then \ - echo >&2 "cannot $1: you have unstaged changes."; \ - git diff-files --name-status -r --ignore-submodules -- >&2; \ - echo >&2 "Please commit or stash them."; \ - exit 1; \ - fi + @if ! git diff-files --quiet --ignore-submodules --; then \ + echo >&2 "cannot $1: you have unstaged changes."; \ + git diff-files --name-status -r --ignore-submodules -- >&2; \ + echo >&2 "Please commit or stash them."; \ + exit 1; \ + fi - @if ! git diff-index --cached --quiet HEAD --ignore-submodules --; then \ - echo >&2 "cannot $1: your index contains uncommitted changes."; \ - git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2; \ - echo >&2 "Please commit or stash them."; \ - exit 1; \ - fi + @if ! git diff-index --cached --quiet HEAD --ignore-submodules --; then \ + echo >&2 "cannot $1: your index contains uncommitted changes."; \ + git diff-index --cached --name-status -r --ignore-submodules HEAD -- >&2; \ + echo >&2 "Please commit or stash them."; \ + exit 1; \ + fi endef @@ -132,15 +137,42 @@ help: ## Displays help. .PHONY: all all: format build +$(REACT_APP_NODE_MODULES_PATH): $(REACT_APP_PATH)/package.json $(REACT_APP_PATH)/yarn.lock + cd $(REACT_APP_PATH) && yarn --frozen-lockfile + +$(REACT_APP_OUTPUT_DIR): $(REACT_APP_NODE_MODULES_PATH) $(REACT_APP_SOURCE_FILES) + @echo ">> building React app" + @./scripts/build-react-app.sh + .PHONY: assets assets: # Repacks all static assets into go file for easier deploy. -assets: $(GOBINDATA) +assets: $(GOBINDATA) $(REACT_APP_OUTPUT_DIR) @echo ">> deleting asset file" @rm pkg/ui/bindata.go || true @echo ">> writing assets" @$(GOBINDATA) $(bindata_flags) -pkg ui -o pkg/ui/bindata.go -ignore '(.*\.map|bootstrap\.js|bootstrap-theme\.css|bootstrap\.css)' pkg/ui/templates/... pkg/ui/static/... @go fmt ./pkg/ui +.PHONY: react-app-lint +react-app-lint: $(REACT_APP_NODE_MODULES_PATH) + @echo ">> running React app linting" + cd $(REACT_APP_PATH) && yarn lint:ci + +.PHONY: react-app-lint-fix +react-app-lint-fix: + @echo ">> running React app linting and fixing errors where possible" + cd $(REACT_APP_PATH) && yarn lint + +.PHONY: react-app-test +react-app-test: | $(REACT_APP_NODE_MODULES_PATH) react-app-lint + @echo ">> running React app tests" + cd $(REACT_APP_PATH) && export CI=true && yarn test --no-watch --coverage + +.PHONY: react-app-start +react-app-start: $(REACT_APP_NODE_MODULES_PATH) + @echo ">> running React app" + cd $(REACT_APP_PATH) && yarn start + .PHONY: build build: ## Builds Thanos binary using `promu`. build: check-git deps $(PROMU) @@ -294,13 +326,17 @@ web: web-pre-process $(HUGO) # TODO(bwplotka): Make it --gc @cd $(WEB_DIR) && HUGO_ENV=production $(HUGO) --config hugo.yaml --minify -v -b $(WEBSITE_BASE_URL) +.PHONY:lint +lint: ## Runs various static analysis against our code. +lint: go-lint react-app-lint + # PROTIP: # Add # --cpu-profile-path string Path to CPU profile output file # --mem-profile-path string Path to memory profile output file # to debug big allocations during linting. -lint: ## Runs various static analysis against our code. -lint: check-git deps $(GOLANGCILINT) $(MISSPELL) $(FAILLINT) +.PHONY: go-lint +go-lint: check-git deps $(GOLANGCILINT) $(MISSPELL) $(FAILLINT) $(call require_clean_work_tree,"detected not clean master before running lint") @echo ">> verifying modules being imported" @# TODO(bwplotka): Add, Printf, DefaultRegisterer, NewGaugeFunc and MustRegister once exception are accepted. Add fmt.{Errorf}=github.com/pkg/errors.{Errorf} once https://github.com/fatih/faillint/issues/10 is addressed. @@ -317,7 +353,7 @@ NewCounterVec,NewCounterVec,NewGauge,NewGaugeVec,NewGaugeFunc,NewHistorgram,NewH @echo ">> linting all of the Go files GOGC=${GOGC}" @$(GOLANGCILINT) run @echo ">> detecting misspells" - @find . -type f | grep -v vendor/ | grep -vE '\./\..*' | xargs $(MISSPELL) -error + @find . -type f | grep -v vendor/ | grep -v pkg/ui/react-app/node_modules | grep -v pkg/ui/static | grep -vE '\./\..*' | xargs $(MISSPELL) -error @echo ">> detecting white noise" @find . -type f \( -name "*.md" -o -name "*.go" \) | SED_BIN="$(SED)" xargs scripts/cleanup-white-noise.sh $(call require_clean_work_tree,"detected white noise") diff --git a/cmd/thanos/query.go b/cmd/thanos/query.go index 2735cd76c20..41c44d18da3 100644 --- a/cmd/thanos/query.go +++ b/cmd/thanos/query.go @@ -354,7 +354,7 @@ func runQuery( // TODO(bplotka in PR #513 review): pass all flags, not only the flags needed by prefix rewriting. ui.NewQueryUI(logger, reg, stores, webExternalPrefix, webPrefixHeaderName).Register(router, ins) - api := v1.NewAPI(logger, reg, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) + api := v1.NewAPI(logger, reg, stores, engine, queryableCreator, enableAutodownsampling, enablePartialResponse, replicaLabels, instantDefaultMaxSourceResolution) api.Register(router.WithPrefix("/api/v1"), tracer, logger, ins) diff --git a/pkg/query/api/v1.go b/pkg/query/api/v1.go index 2842055a5a9..1c2531117dd 100644 --- a/pkg/query/api/v1.go +++ b/pkg/query/api/v1.go @@ -107,6 +107,7 @@ type API struct { enablePartialResponse bool replicaLabels []string reg prometheus.Registerer + storeSet *query.StoreSet defaultInstantQueryMaxSourceResolution time.Duration now func() time.Time @@ -116,6 +117,7 @@ type API struct { func NewAPI( logger log.Logger, reg *prometheus.Registry, + storeSet *query.StoreSet, qe *promql.Engine, c query.QueryableCreator, enableAutodownsampling bool, @@ -131,6 +133,7 @@ func NewAPI( enablePartialResponse: enablePartialResponse, replicaLabels: replicaLabels, reg: reg, + storeSet: storeSet, defaultInstantQueryMaxSourceResolution: defaultInstantQueryMaxSourceResolution, now: time.Now, @@ -168,6 +171,8 @@ func (api *API) Register(r *route.Router, tracer opentracing.Tracer, logger log. r.Get("/labels", instr("label_names", api.labelNames)) r.Post("/labels", instr("label_names", api.labelNames)) + + r.Get("/stores", instr("stores", api.stores)) } type queryData struct { @@ -626,3 +631,11 @@ func (api *API) labelNames(r *http.Request) (interface{}, []error, *ApiError) { return names, warnings, nil } + +func (api *API) stores(r *http.Request) (interface{}, []error, *ApiError) { + statuses := make(map[string][]query.StoreStatus) + for _, status := range api.storeSet.GetStoreStatus() { + statuses[status.StoreType.String()] = append(statuses[status.StoreType.String()], status) + } + return statuses, nil, nil +} diff --git a/pkg/query/storeset.go b/pkg/query/storeset.go index d91f549b509..fd1c2b335e5 100644 --- a/pkg/query/storeset.go +++ b/pkg/query/storeset.go @@ -41,13 +41,13 @@ type StoreSpec interface { } type StoreStatus struct { - Name string - LastCheck time.Time - LastError error - LabelSets []storepb.LabelSet - StoreType component.StoreAPI - MinTime int64 - MaxTime int64 + Name string `json:"name"` + LastCheck time.Time `json:"last_check"` + LastError error `json:"last_error"` + LabelSets []storepb.LabelSet `json:"label_sets"` + StoreType component.StoreAPI `json:"store_type"` + MinTime int64 `json:"min_time"` + MaxTime int64 `json:"max_time"` } type grpcStoreSpec struct { diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index 23409eb0cad..cbdeab31507 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -24,12 +24,12 @@ // pkg/ui/static/react/favicon.ico // pkg/ui/static/react/index.html // pkg/ui/static/react/manifest.json -// pkg/ui/static/react/precache-manifest.13e764b9739a0bc43bda80653214998a.js +// pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js // pkg/ui/static/react/service-worker.js // pkg/ui/static/react/static/css/2.3f5e1097.chunk.css -// pkg/ui/static/react/static/css/main.a6053568.chunk.css -// pkg/ui/static/react/static/js/2.42f57af3.chunk.js -// pkg/ui/static/react/static/js/main.a7db5187.chunk.js +// pkg/ui/static/react/static/css/main.61ef2226.chunk.css +// pkg/ui/static/react/static/js/2.926cad18.chunk.js +// pkg/ui/static/react/static/js/main.ba725b9f.chunk.js // pkg/ui/static/react/static/js/runtime-main.56ad181a.js // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css @@ -170,7 +170,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1588276545, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -255,7 +255,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return a, nil } -var _pkgUiTemplatesQuery_menuHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xb1\x6e\xdc\x30\x0c\xdd\xf3\x15\x84\x02\x74\x73\xb4\xb7\xb6\x87\x2e\x6d\xb7\xa2\xc9\x5e\xd0\x27\xda\x16\x22\x4b\x82\x44\x5f\x53\x18\xfe\xf7\x42\xba\x3b\xe3\xec\x9c\x0f\xc8\xd0\x49\x10\x41\x3e\xbe\x27\x3e\x6a\x9a\x14\xb5\xda\x12\x08\x8b\x47\x31\xcf\x0f\x00\x00\xa5\xc5\x23\x1c\x0c\xc6\x58\xa5\x70\x83\x01\x5a\xfd\x46\xaa\x60\xe7\xe1\x14\x28\xe8\xcd\xa3\x55\x45\x1c\x2e\x01\x85\xe1\x15\x9a\x2e\x9f\xa2\xce\x38\x19\x4b\xe9\x05\xeb\xe0\x2c\xa3\xb6\x14\x8a\xd6\x8c\x5a\x5d\x65\xe5\xcc\x66\x64\x76\x16\xf8\xaf\xa7\x4a\x9c\x2e\x62\x4d\xa3\x60\xd7\x75\x86\x82\x00\x85\x8c\xe7\x5b\xc2\x35\x06\x7d\xa4\x4b\x18\x43\x47\x5c\x89\x47\x8b\xc7\x22\xf5\x24\xcb\x02\x30\x68\x3c\xb3\x26\x55\x89\x16\x4d\x2a\xc8\xd1\x94\x13\x9c\x39\xb5\xd9\x54\x18\x6c\xc8\x54\xe2\x25\xb7\x4a\x5a\x75\x87\xac\x9d\xdd\x90\xcf\x02\xa2\x47\x7b\x9b\x70\xa1\x0f\xa9\xa4\x94\x29\x65\x23\x5b\x9e\xa4\x6e\xa2\xb8\x01\x6a\x02\x5a\x25\xa0\x0f\xd4\x56\x62\x9a\xc0\x23\xf7\x3f\x03\xb5\xfa\x0d\xe6\x59\x8a\xfa\xa5\x47\xeb\x62\x29\x71\x83\x93\x9e\x5f\xab\x8d\xb2\x35\xf4\xe5\xf9\x60\x79\xc7\x1b\xda\x46\xb3\xa9\x4a\x7e\x79\x9f\x97\x73\x8d\xbe\xca\x2d\x34\xd3\x20\xea\x95\xa0\xc2\x68\xfb\xba\x2b\xa6\x0b\xe8\x7b\x51\x7f\x4b\x47\x12\x54\x4a\xa3\xff\x4f\xa7\xc8\x2e\x50\x14\xf5\x73\x3e\x3f\xdc\x0b\x54\x70\x5e\xb9\x3f\xb7\xcc\x70\x35\xc8\x53\xf3\x47\xb1\xa5\xb5\x94\x9f\x5d\xb2\x71\xf5\x02\x0e\xc1\x99\xab\x8d\xc8\xb6\xec\x31\x7a\xe7\x47\x5f\x09\x0e\x23\xed\xb8\xbb\x7e\x66\xe4\x31\xae\x8d\x79\xc0\x40\xbc\x58\xf1\x9d\x61\xde\x99\xe7\x5c\xb6\x70\x1d\xc8\x8e\x77\xf4\xc2\xca\xbc\x4b\x55\x1e\xcd\xfe\x18\x12\x4d\x51\xff\x1a\x2d\xeb\x81\xe0\x13\x0e\xfe\x0b\x7c\x1d\xb5\x51\xf0\xc3\xb6\x2e\x0c\x79\xe5\xee\x73\x95\x4a\x1f\x77\x26\xf7\x31\xff\xdc\x1b\xe5\x8e\xb1\x7a\x66\x1f\x3f\x4b\xc9\x79\x09\x9f\xb4\x93\x1d\x31\x6b\xdb\x15\x91\x31\x30\xa9\xa7\x41\x49\x01\x97\x8f\xe9\x77\x63\xd0\xbe\x8a\xfa\x3b\x19\xbf\x2b\xea\x36\xeb\x52\x8e\x66\xfb\x7f\xac\x84\x5f\x5d\x4b\x69\xf1\x58\x3f\x4c\x13\x59\x35\xcf\x0f\xff\x02\x00\x00\xff\xff\x43\xdf\x18\x28\xeb\x05\x00\x00") +var _pkgUiTemplatesQuery_menuHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x31\x6f\xdc\x3c\x0c\xdd\xf3\x2b\x08\x05\xf8\x36\x47\xfb\xd7\xb3\x87\x2e\x6d\x96\xa2\x68\xd2\xb9\xa0\x4f\xb4\x2d\x44\x96\x04\x89\xbe\xa4\x30\xfc\xdf\x0b\xe9\xee\x8c\xb3\x73\x0e\x70\x43\x26\x41\x04\xf9\xf8\x9e\xf8\xa8\x71\x54\xd4\x68\x4b\x20\x2c\x1e\xc4\x34\xdd\x01\x00\xec\x2c\x1e\x60\x6f\x30\xc6\x32\x85\x6b\x0c\xd0\xe8\x37\x52\x05\x3b\x0f\xc7\x40\x41\x6f\x1e\xad\x2a\x62\x7f\x0e\x28\x0c\x2f\x50\xb7\xf9\x14\x55\xc6\xc9\x58\x4a\xcf\x58\x7b\x67\x19\xb5\xa5\x50\x34\x66\xd0\xea\x22\x2b\x67\xd6\x03\xb3\xb3\xc0\x7f\x3d\x95\xe2\x78\x11\x4b\x1a\x05\xbb\xb6\x35\x14\x04\x28\x64\x3c\xdd\x12\xae\x31\xe8\x23\x9d\xc3\x18\x5a\xe2\x52\xdc\x5b\x3c\x14\xa9\x27\x59\x16\x80\x41\xe3\x89\x35\xa9\x52\x34\x68\x52\x41\x8e\xa6\x9c\xe0\xcc\xb1\xcd\xaa\xc2\x60\x4d\xa6\x14\xcf\xb9\x55\xd2\xaa\x5b\x64\xed\xec\x8a\x7c\x16\x10\x3d\xda\xeb\x84\x0b\xbd\x4f\x25\x3b\x99\x52\x56\xb2\xe5\x51\xea\x2a\x8a\x2b\xa0\x3a\xa0\x55\x02\xba\x40\x4d\x29\xc6\x11\x3c\x72\xf7\x33\x50\xa3\xdf\x60\x9a\xa4\xa8\x9e\x3b\xb4\x2e\xee\x24\xae\x70\xd2\xf3\x6b\xb5\x52\xb6\x84\x3e\x3f\x1f\xcc\xef\x78\x45\xdb\x60\x56\x55\xc9\x2f\xef\xf3\x72\xae\xd1\x17\xb9\x85\x66\xea\x45\xb5\x10\x54\x18\x6d\x5f\x36\xc5\xb4\x01\x7d\x27\xaa\x6f\xe9\x48\x82\x76\xd2\xe8\xcf\xe9\x14\xd9\x05\x8a\xa2\x7a\xca\xe7\xcd\xbd\x40\x05\xe7\x95\x7b\xbd\x66\x86\x8b\x41\x1e\x9b\xdf\x8b\x35\xad\xb9\xfc\xe4\x92\x95\xab\x67\x70\x08\xce\x5c\x6c\x44\xb6\x65\x87\xd1\x3b\x3f\xf8\x52\x70\x18\x68\xc3\xdd\xd5\x13\x23\x0f\x71\x69\xcc\x3d\x06\xe2\xd9\x8a\xef\x0c\xf3\xce\x3c\xa7\xb2\x99\x6b\x4f\x76\xf8\x40\x2f\x2c\xcc\x3b\x57\xe5\xd1\x6c\x8f\x21\xd1\x14\xd5\xaf\xc1\xb2\xee\x09\xfe\xc3\xde\x7f\x81\xaf\x83\x36\x0a\x1e\x6d\xe3\x42\x9f\x57\xee\x63\xae\x52\xe9\xc3\xc6\xe4\x6e\xf3\xcf\x47\xa3\xdc\x30\x56\xc7\xec\xe3\xff\x52\x72\x5e\xc2\x07\xed\x64\x4b\xcc\xda\xb6\x45\x64\x0c\x4c\xea\xa1\x57\x52\xc0\xf9\x63\xfa\x53\x1b\xb4\x2f\xa2\xfa\x4e\xc6\x6f\x8a\xfa\x7c\xd6\x8b\x39\x4c\x93\xb4\xf4\x7a\x85\xe4\x0f\x7a\x85\xdf\x8f\x37\xd2\xdc\xc9\xc1\xac\xbf\xb9\xc5\x7c\x2e\xae\x3b\x69\xf1\x50\xdd\x8d\x23\x59\x35\x4d\x77\xff\x02\x00\x00\xff\xff\x2a\xda\xc1\xa0\x92\x06\x00\x00") func pkgUiTemplatesQuery_menuHtmlBytes() ([]byte, error) { return bindataRead( @@ -270,7 +270,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1588275300, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1682, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -555,7 +555,7 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return a, nil } -var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xdd\x6e\xbb\x20\x00\xc5\xef\x7d\x0a\xe2\xf5\xbf\x28\x22\xa2\xff\x57\x59\x76\x81\x88\x11\x5b\xa9\x01\xba\x8f\x2c\x7d\xf7\x05\x67\x57\xfc\xea\xcc\xb2\x4b\xe0\xfc\x0e\x9c\x03\x7c\x04\x00\x84\xb5\x3c\x09\x13\xfe\x07\x6e\x00\x40\xd8\x31\xa9\x20\x37\x6e\x26\x84\x91\xb1\xcc\x4a\x1e\x71\x63\xa2\x61\x81\x65\x31\xc1\x24\xcb\x21\x6f\x2e\xea\x38\xe8\xfe\x79\x5c\x3b\xc5\xda\x1b\x45\xab\x92\xa0\x9c\x8e\x54\x3b\x87\x60\xc7\xfa\x7d\xe0\xa0\x1c\x61\x7d\x51\x56\x76\xe2\xb0\xb1\xf3\x64\x99\x64\xac\x42\x39\x62\xde\xde\x33\x7c\xed\x0c\x5b\x16\xfe\x29\xbc\x86\x12\x88\x6b\x22\x50\x5c\x50\xaf\x9e\x79\x8d\xab\xa2\xa9\x57\xeb\x54\x69\x52\x13\xca\x6a\x7c\xef\x6c\x76\xb8\x35\xc9\x1e\x9f\xb5\xa0\x5b\xb2\xd1\x4f\xaa\x4a\xbc\xc1\xc6\x76\xa7\x2f\xd0\x1b\x8f\x8a\x5e\x0b\xce\x78\xe3\xaa\x52\xb2\x16\xc6\x42\x84\x05\xcd\xd2\xb2\xa0\xb8\x60\x71\xc9\x53\x5c\x56\x2c\x8f\x33\x82\x13\x94\x16\x45\xce\xbe\x13\xfd\x0e\xbd\x25\x15\xfa\x45\x72\x71\x78\x3d\xeb\xa3\xd0\xf7\x96\x16\xd3\xfb\x6e\x6b\xd1\xcd\x43\xe1\xd2\x73\xe3\x8f\xac\xda\x3e\xd2\x06\x00\x5c\x9d\x7b\x28\x94\xd5\xef\xfd\x59\x2a\xeb\x92\x3d\xcd\xaf\xf7\xa7\x37\xfe\x27\xef\x6e\x77\xcc\xa5\xdd\xc6\xef\x0f\x00\x78\x0e\xae\x9f\x01\x00\x00\xff\xff\x99\x22\xb7\xbe\x7e\x04\x00\x00") +var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xdb\x72\xb3\x20\x14\x85\xef\x7d\x0a\xc6\xeb\x3f\x04\xc9\x2f\x6a\x5f\xa5\xd3\x0b\xc4\xcd\x88\x89\xc4\x01\xd2\xc3\x74\xf2\xee\x1d\xac\x6d\xf0\x94\x3a\x9d\x5e\x02\xeb\x5b\x7b\xef\x05\xbc\x47\x08\xc5\x52\x9d\xc0\xc6\x0f\xc8\x2f\x10\x8a\x5b\xae\x34\x16\xd6\xef\xc4\x78\x6f\x1d\x77\x4a\xec\x85\xb5\xfb\xfe\x80\x25\x20\x29\xa5\x0c\x8b\xfa\xa2\x8f\xbd\xee\x5f\xc0\x35\x63\xac\x19\xa8\x92\x67\x34\x2d\x0b\x39\x50\xcd\x14\xc2\x2d\xef\xb6\x81\xbd\x72\x80\xcd\x45\x3b\xd5\xc2\x6e\xa5\xf2\xe8\x38\x65\xbc\x4a\xf2\x84\x07\xb5\x27\xf8\x52\x0f\x6b\x16\x61\x17\x41\x42\x14\x1f\x64\x0a\x09\x29\xb2\x20\x9e\x69\x8c\x8b\xa2\xb1\x57\xe3\x55\x05\x65\xc2\x17\xbc\x65\x36\x69\x6e\x49\xb2\xc5\x67\x69\xd0\x35\xd9\xe0\xa7\x74\x05\xaf\xb8\x76\xed\xe9\x13\x0c\xd6\x83\xa2\x33\x20\xb8\xa8\x7d\x54\x5a\x49\xb0\x0e\x8b\x8c\x51\xca\xca\xff\x84\x94\x24\xcf\x28\x03\x52\x92\x03\xcf\x38\x91\x2c\x3f\x80\xa8\xbe\x27\xfa\x1d\xfa\x35\x29\x98\x67\x25\x60\xf7\x72\x36\x47\x30\xb7\x94\x66\xdb\xdb\x6e\x6b\x96\xcd\x5d\xe1\xdc\x73\xe5\x8f\x2c\xda\xde\xd3\x46\x08\x5d\xbd\x7b\x0c\xda\x99\xb7\xee\xac\xb4\xf3\x93\x3d\x4e\xaf\xf7\xa7\x37\xfe\x27\xef\x6e\xf3\x98\x73\xbb\x95\xdf\x1f\x21\xf4\x14\x5d\x3f\x02\x00\x00\xff\xff\x16\x36\xf7\x56\x7e\x04\x00\x00") func pkgUiStaticReactAssetManifestJsonBytes() ([]byte, error) { return bindataRead( @@ -570,7 +570,7 @@ func pkgUiStaticReactAssetManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -590,12 +590,12 @@ func pkgUiStaticReactFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 16958, mode: os.FileMode(420), modTime: time.Unix(1587714246, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 16958, mode: os.FileMode(420), modTime: time.Unix(1588400914, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x71\x6f\xdb\xb6\x13\xfd\x2a\xb2\x7e\x80\x2a\x22\x34\x6d\xa7\x4d\x93\x9f\x6d\x66\x68\x87\x6e\x5d\xd1\x36\xc1\x92\x3f\x36\x08\x42\xc0\x50\xa7\x88\x09\x4d\x6a\x47\xca\x69\xe0\xe8\xbb\x0f\x94\x2c\x3b\xed\x9a\xad\x41\x60\x53\xe4\xbd\xc7\xc7\x77\xa7\xa3\x97\xa3\xc2\x4a\xff\x50\x43\x54\xf9\x95\x3e\x5d\x86\xcf\x48\x0b\x73\xc3\x63\x30\xf1\xe9\xb2\x02\x51\x9c\x2e\x57\xe0\x45\x24\x2b\x81\x0e\x3c\x8f\x1b\x5f\x8e\x4f\xe2\xc9\xe9\x52\x2b\x73\x17\x21\x68\x1e\xbb\xca\xa2\x97\x8d\x8f\x94\xb4\x26\x8e\x2a\x84\x92\xc7\x6c\x52\x8a\x75\x98\x60\x4a\xda\x10\xdf\xd1\x18\xb1\x02\x1e\xaf\x15\xdc\xd7\x16\x7d\x1c\x49\x6b\x3c\x18\xcf\xe3\x7b\x55\xf8\x8a\x17\xb0\x56\x12\xc6\xdd\x03\x55\x46\x79\x25\xf4\xd8\x49\xa1\x81\xcf\xa8\xab\x50\x99\xbb\xb1\xb7\xe3\x52\x79\x6e\xbe\x25\xf5\x15\xac\x60\x2c\xad\xb6\xf8\x84\xf7\x7f\xd3\xee\x2f\xc4\x3a\x89\xaa\xf6\xa7\xd2\x1a\xe7\xa3\x5f\x3f\x9e\xbd\x7d\xf3\xf1\xea\xfc\xcd\xe5\xfb\xab\xf3\xdf\xdf\xfd\xf2\xdb\x1f\xfc\xc5\x8b\xc5\x72\xb2\x0d\xfa\x3a\xf8\xf2\xfd\x9b\xcf\x67\x17\x57\x3f\x9f\x7d\x3a\x3f\xfb\xfc\xee\xf3\x25\x7f\xf1\x57\x03\xf8\xf0\x34\x7e\xef\xc6\x4a\x18\x55\x82\xf3\x7b\x23\x86\x19\x76\xeb\xac\x09\x4a\xbc\xf2\x1a\x4e\x2f\x2b\x61\xac\x8b\xde\x7d\xa9\x11\x9c\x53\xd6\x44\x6f\xd1\xde\x3b\xc0\xe5\xa4\x0f\xe8\x49\x07\x16\xe7\x85\x57\x72\x22\x9d\x9b\x1c\xb2\x97\xe5\x11\xcc\xa6\xff\x3f\x66\xb2\x6a\xcc\x1d\x93\xce\xc5\xdb\x5c\xf8\x07\x0d\xae\x02\xf0\xf1\xf3\xf8\x95\x50\x86\x89\xd7\xd3\xa3\x97\x47\xaf\x4f\xfe\x9d\x62\xd2\xd7\xc0\xb5\x2d\x1e\x4e\x97\xc6\x6e\x8f\xfb\xa7\x6d\x22\x03\x50\x44\xde\x46\x60\xc4\xb5\x86\xe8\x83\x58\x8b\x8b\x6e\x35\x4c\x62\x63\x22\x5f\x29\x17\x89\xba\x66\xcb\xc9\x0e\xb8\x2c\xd4\x3a\x52\x05\x8f\xd1\xda\x8e\xbe\x50\xeb\x9d\xd9\xa3\xb2\x31\xd2\x2b\x6b\xd2\x9a\x6c\x86\x71\x04\x29\x90\x4d\x69\x31\x5d\x0b\x8c\x90\x7a\x6a\x38\x64\xd3\x9c\x5a\x0e\xd9\x2c\xa7\x0d\x87\xec\x30\xa7\x9a\x4f\xa9\xe0\x59\xbe\xd0\x4b\xc3\x34\x98\x1b\x5f\x2d\xf4\xc1\x01\xf1\xdc\x64\x3a\xa7\x67\xd7\xb7\x20\x3d\xab\xd1\x7a\x1b\x0a\x9e\x55\xc2\x9d\xdd\x9b\x73\xb4\x35\xa0\x7f\x60\x52\x68\x9d\x2a\xea\x49\x92\xa8\xcc\xe7\x49\x22\x58\xdd\xb8\x2a\x0d\x0f\xd9\x34\x27\x34\x0c\xf8\x74\x11\x74\x60\xa4\x4c\x64\xc9\x0f\x51\x5a\x8a\x24\x49\xd2\x3a\xc3\x9c\xdb\x0c\x73\xd2\x31\xb8\x24\x71\x29\x90\x85\x18\x94\x12\xc1\x5c\xa5\x4a\x9f\x92\x94\x2c\x10\x7c\x83\x26\x92\x9d\x02\x26\xea\x5a\x3f\xa4\x92\x36\x8f\x8f\x59\x4e\x68\x99\x92\x76\x67\x4d\x99\xee\x9d\x01\x8a\x7c\xba\xc0\xa5\x1c\x38\xf1\xe0\x60\xbf\xea\xb9\xcc\x30\xa7\x86\x8f\xa6\xd4\xf2\xd9\xc2\x2e\xfd\x10\x67\x43\x5c\x88\x69\xb8\xcf\x6c\xbe\x98\x8e\x38\x57\x59\x93\x27\x49\x6a\xf8\x68\x46\x5a\x93\x24\xa9\x64\xae\xd6\x4a\x42\x8a\xe3\x31\x9d\x11\x0a\x5c\xa7\x9a\x39\xee\x83\x39\xa4\xdd\x4a\x86\xb6\xdf\x6b\xd3\x52\xc5\x37\xb3\xf9\xb4\xa5\x32\xe4\x64\x27\x58\x87\x5c\xaa\x32\xf5\x19\xe4\x64\x0b\x0a\x63\x06\x5f\x42\x3f\x70\x8b\x2e\xc7\x3c\x4c\xf1\x8d\x9a\x03\xd5\xf3\xd1\x8c\x6e\x17\xe7\x9b\xb6\x1d\xcc\xa9\x03\xa8\x73\x18\x07\x2c\x45\xba\x1f\x6b\x42\x91\xe9\x70\xda\xdd\x5c\xab\xd9\x8a\xd7\x54\x33\xc9\x3d\xd5\xac\xe0\xbb\x6a\x03\x8a\xd4\x93\x8d\x66\x36\x0c\xc9\xe3\xe3\x36\xb5\x05\x94\xca\xc0\x90\xd0\x2e\x6c\x03\xa6\x59\x01\x86\x8a\x9f\x8f\xa6\xf4\x06\xfc\xdc\xb7\xa4\xa5\x9a\xe1\x13\x3e\xb2\x89\x1b\xd3\xa3\x8b\x78\xc4\x43\x75\xd8\x32\xba\x78\x58\x5d\x5b\x9d\x24\xfd\x37\xf3\xf6\xc2\xa3\x32\x37\x97\xe2\x26\x49\x9e\xdb\xf1\x9f\xb1\x74\xb3\x16\xba\x81\x79\xfc\xc9\x16\x8d\x86\xb8\x25\xf4\x39\x70\x7c\x75\x05\x6e\x1b\x36\xc0\x46\xd3\x5e\xae\xdf\xcb\x45\xda\x27\x65\x96\x40\x92\xa4\xc8\x75\x8a\x84\xd0\x93\x04\x86\x0c\xe1\x42\x95\xe9\xab\xb0\x1a\xdb\x6e\xab\x98\x0f\x67\xc2\x24\x09\xff\x6c\xbf\xd3\x1e\xd4\xd7\xc2\x56\x9c\x44\x10\x1e\x52\xd3\x68\x4d\x02\x9d\x66\x98\xfa\xe7\xa4\x7b\x1a\x17\x50\x8a\x46\xfb\xf8\x5b\xc7\xfb\x53\x60\x4b\xe8\x61\x27\xc8\x75\xbe\xec\x4d\x46\x32\x94\xbc\x09\xaf\x29\x12\xcd\x8a\xd4\x53\x43\x9f\x66\x67\x90\x98\x41\xde\xb2\x6b\x65\x8a\x4e\x17\x35\x64\xf7\xf2\xf9\xe0\x91\xf9\x2a\xa5\x7d\x69\x42\x92\xc0\x93\xd3\xfe\xb4\x8b\xd8\xb1\x02\xdb\x6a\x6f\xe7\xdf\x59\xdc\x55\x70\xd0\x85\x34\x16\x31\x45\x42\x31\x6c\x67\xbf\xaa\xc8\x1d\xe4\x87\xfa\x4c\x00\x04\x8e\x3a\x74\xfa\x78\x78\x8d\x2a\xe5\xd8\x3d\x5c\xd7\x42\xde\x7d\x70\xd6\xd4\x37\x28\xea\xea\x99\xe9\xd0\x5e\xa8\xe1\xd8\x77\x9d\xce\x14\x24\x8b\xfe\x91\x87\xe6\x82\xcc\x75\x1d\xa0\x6f\x61\x61\x07\xcb\xa7\x0b\xbb\xc4\xa7\x8d\x04\x52\xcc\x6c\x4e\x3a\x01\x8e\x9b\x45\x68\x57\x69\x96\x93\x6f\x2f\xd6\xc8\xa1\x7c\x72\x29\xdd\x86\x3b\xed\xd5\x61\x79\x74\x2c\xca\x97\xdb\x0b\xe9\xd6\x85\xfb\xe1\xbf\x60\xfd\x55\x76\x5c\x5c\x1f\xcd\x4e\x8e\xbf\x8b\x9c\xf4\x77\xd7\xa4\xfb\x89\xf3\x77\x00\x00\x00\xff\xff\xfe\xa4\x02\xff\xf2\x08\x00\x00") +var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x7f\x6f\xdb\xb6\x16\xfd\x2a\xb2\x1e\xa0\x8a\x08\x4d\xff\x78\xaf\xbf\x6c\x33\x0f\xed\xd0\xad\x2b\xda\x26\x58\xf2\xc7\x06\x41\x08\x68\xea\x2a\x62\x42\x93\xda\x25\xe5\x34\x70\xf4\xdd\x07\x4a\x96\x9d\x76\xcd\xd6\x20\xb0\x29\xf2\x9e\xc3\xc3\x73\xaf\x2e\xbd\x1a\x15\x56\xfa\xfb\x1a\xa2\xca\x6f\xf4\xe9\x2a\x7c\x46\x5a\x98\x6b\x1e\x83\x89\x4f\x57\x15\x88\xe2\x74\xb5\x01\x2f\x22\x59\x09\x74\xe0\x79\xdc\xf8\x72\xfc\x2a\x9e\x9c\xae\xb4\x32\xb7\x11\x82\xe6\xb1\xab\x2c\x7a\xd9\xf8\x48\x49\x6b\xe2\xa8\x42\x28\x79\xcc\x26\xa5\xd8\x86\x09\xa6\xa4\x0d\xf1\x1d\x8d\x11\x1b\xe0\xf1\x56\xc1\x5d\x6d\xd1\xc7\x91\xb4\xc6\x83\xf1\x3c\xbe\x53\x85\xaf\x78\x01\x5b\x25\x61\xdc\x3d\x50\x65\x94\x57\x42\x8f\x9d\x14\x1a\xf8\x8c\xba\x0a\x95\xb9\x1d\x7b\x3b\x2e\x95\xe7\xe6\x5b\x52\x5f\xc1\x06\xc6\xd2\x6a\x8b\x8f\x78\xff\x33\xed\xfe\x42\xac\x93\xa8\x6a\x7f\x2a\xad\x71\x3e\xfa\xe5\xe3\xd9\xdb\x37\x1f\xaf\xce\xdf\x5c\xbe\xbf\x3a\xff\xed\xdd\xcf\xbf\xfe\xce\x9f\x3d\x5b\xae\x26\xfb\xa0\xaf\x83\x2f\xdf\xbf\xf9\x7c\x76\x71\xf5\xd3\xd9\xa7\xf3\xb3\xcf\xef\x3e\x5f\xf2\x67\x7f\x36\x80\xf7\x8f\xe3\x8f\x6e\x6c\x84\x51\x25\x38\x7f\x34\x62\x98\x61\x37\xce\x9a\xa0\xc4\x2b\xaf\xe1\xf4\xb2\x12\xc6\xba\xe8\xdd\x97\x1a\xc1\x39\x65\x4d\xf4\x16\xed\x9d\x03\x5c\x4d\xfa\x80\x9e\x74\x60\x71\x5e\x78\x25\x27\xd2\xb9\xc9\x9c\xfd\xb7\x7c\x0e\xb3\xe9\xeb\x97\x4c\x56\x8d\xb9\x65\xd2\xb9\x78\x9f\x0b\x7f\xaf\xc1\x55\x00\x3e\x7e\x1a\xbf\x11\xca\xb0\x17\x33\x28\xe7\xf3\xf9\x8b\x7f\xa6\x98\xf4\x35\xb0\xb6\xc5\xfd\xe9\xca\xd8\xfd\x71\xff\xb0\x4d\x64\x00\x8a\xc8\xdb\x08\x8c\x58\x6b\x88\x3e\x88\xad\xb8\xe8\x56\xc3\x24\x36\x26\xf2\x95\x72\x91\xa8\x6b\xb6\x9a\x1c\x80\xab\x42\x6d\x23\x55\xf0\x18\xad\xed\xe8\x0b\xb5\x3d\x98\x3d\x2a\x1b\x23\xbd\xb2\x26\xad\xc9\x6e\x18\x47\x90\x02\xd9\x95\x16\xd3\xad\xc0\x08\xa9\xa7\x86\x43\x36\xcd\xa9\xe5\x90\xcd\x72\xda\x70\xc8\xe6\x39\xd5\x7c\x4a\x05\xcf\xf2\xa5\x5e\x19\xa6\xc1\x5c\xfb\x6a\xa9\x4f\x4e\x88\xe7\x26\xd3\x39\x3d\x5b\xdf\x80\xf4\xac\x46\xeb\x6d\x28\x78\x56\x09\x77\x76\x67\xce\xd1\xd6\x80\xfe\x9e\x49\xa1\x75\xaa\xa8\x27\x49\xa2\x32\x9f\x27\x89\x60\x75\xe3\xaa\x34\x3c\x64\xd3\x9c\xd0\x30\xe0\xd3\x65\xd0\x81\x91\x32\x91\x25\x3f\x44\x69\x29\x92\x24\x49\xeb\x0c\x73\x6e\x33\xcc\x49\xc7\xe0\x92\xc4\xa5\x40\x96\x62\x50\x4a\x04\x73\x95\x2a\x7d\x4a\x52\xb2\x44\xf0\x0d\x9a\x48\x76\x0a\x98\xa8\x6b\x7d\x9f\x4a\xda\x3c\x3c\x64\x39\xa1\x65\x4a\xda\x83\x35\x65\x7a\x74\x06\x28\xf2\xe9\x12\x57\x72\xe0\xc4\x93\x93\xe3\xaa\xe7\x32\xc3\x9c\x1a\x3e\x9a\x52\xcb\x67\x4b\xbb\xf2\x43\x9c\x0d\x71\x21\xa6\xe1\x3e\xb3\xf9\x72\x3a\xe2\x5c\x65\x4d\x9e\x24\xa9\xe1\xa3\x19\x69\x4d\x92\xa4\x92\xb9\x5a\x2b\x09\x29\x8e\xc7\x74\x46\x28\x70\x9d\x6a\xe6\xb8\x0f\xe6\x90\x76\x2f\x19\xda\x7e\xaf\x5d\x4b\x15\xdf\xcd\x16\xd3\x96\xca\x90\x93\x83\x60\x1d\x72\xa9\xca\xd4\x67\x90\x93\x3d\x28\x8c\x19\x7c\x09\xfd\xc0\x2d\xbb\x1c\xf3\x30\xc5\x77\x6a\x01\x54\x2f\x46\x33\xba\x5f\x5c\xec\xda\x76\x30\xa7\x0e\xa0\xce\x61\x1c\xb0\x14\xe9\x71\xac\x09\x45\xa6\xc3\x69\x0f\x73\xad\x66\x1b\x5e\x53\xcd\x24\xf7\x54\xb3\x82\x1f\xaa\x0d\x28\x52\x4f\x76\x9a\xd9\x30\x24\x0f\x0f\xfb\xd4\x16\x50\x2a\x03\x43\x42\xbb\xb0\x1d\x98\x66\x03\x18\x2a\x7e\x31\x9a\xd2\x6b\xf0\x0b\xdf\x92\x96\x6a\x86\x8f\xf8\xc8\x2e\x6e\x4c\x8f\x2e\xe2\x11\x0f\xd5\x61\xcb\xe8\xe2\x7e\xb3\xb6\x3a\x49\xfa\x6f\xe6\xed\x85\x47\x65\xae\x2f\xc5\x75\x92\x3c\xb5\xe3\xdf\x63\xe9\x6e\x2b\x74\x03\x8b\xf8\x93\x2d\x1a\x0d\x71\x4b\xe8\x53\xe0\xf8\xea\x0a\xdc\x3e\x6c\x80\x8d\xa6\xbd\x5c\x7f\x94\x8b\xb4\x4f\xca\x2c\x81\x24\x49\x91\xeb\x14\x09\xa1\xaf\x12\x18\x32\x84\x4b\x55\xa6\xff\x0b\xab\xb1\xed\xb6\x8a\xf9\x70\x26\x4c\x92\xf0\xcf\x8e\x3b\x1d\x41\x7d\x2d\xec\xc5\x49\x04\xe1\x21\x35\x8d\xd6\x24\xd0\x69\x86\xa9\x7f\x4a\xba\xa7\x71\x01\xa5\x68\xb4\x8f\xbf\x75\xbc\x3f\x05\xb6\x84\xce\x3b\x41\xae\xf3\xe5\x68\x32\x92\xa1\xe4\x4d\x78\x4d\x91\x68\x56\xa4\x9e\x1a\xfa\x38\x3b\x83\xc4\x0c\xf2\x96\xad\x95\x29\x3a\x5d\xd4\x90\xc3\xcb\xe7\x83\x47\xe6\xab\x94\xf6\xa5\x09\x49\x02\x8f\x4e\xfb\xff\x43\xc4\x81\x15\xd8\x5e\x7b\xbb\xf8\xce\xe2\xa1\x82\x83\x2e\xa4\xb1\x88\x29\x12\x8a\x61\x3b\xfb\x55\x45\x1e\x20\x3f\xd4\x67\x02\x20\x70\xd4\xa1\xd3\xc7\xc3\x6b\x54\x29\xc7\xee\x60\x5d\x0b\x79\xfb\xc1\x59\x53\x5f\xa3\xa8\xab\x27\xa6\x43\x7b\xa1\x86\x63\xdf\x75\x3a\x53\x90\x2c\xfb\x47\x1e\x9a\x0b\x32\xd7\x75\x80\xbe\x85\x85\x1d\x2c\x9f\x2e\xed\x0a\x1f\x37\x12\x48\x31\xb3\x39\xe9\x04\x38\x6e\x96\xa1\x5d\xa5\x59\x4e\xbe\xbd\x58\x23\x87\xf2\xd1\xa5\x74\x13\xee\xb4\xd7\xf3\x17\x52\x14\xb3\x57\xfb\x0b\xe9\xc6\x85\xfb\xe1\xdf\x60\xdd\x55\xb6\x16\x2f\xe7\xcf\xd7\xaf\xcb\xef\x22\x27\xfd\xdd\x35\xe9\x7e\xe2\xfc\x15\x00\x00\xff\xff\xac\x81\x9d\xe2\xf2\x08\x00\x00") func pkgUiStaticReactIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -610,12 +610,12 @@ func pkgUiStaticReactIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2290, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2290, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x0a\x2b\x5c\x61\xb0\xae\xea\x61\x6f\xb0\x33\x20\x0e\x08\x55\x5e\xea\xae\x11\x6d\x3c\x39\xd9\x94\x31\xed\xdd\x91\x13\x24\x10\x3e\xf8\xe0\xef\xf3\xaf\xff\x6a\x00\x6c\x9c\x58\x52\x1f\x70\x21\xbb\x05\xfb\x32\x61\xe0\x08\xaf\x3b\x7b\xaf\xf0\xdf\xf9\x99\xe4\x4c\x02\x6f\xb4\x87\x5d\x48\x24\x23\x3a\xaa\xa2\x77\x1c\xa2\xdd\xc2\xbb\x01\x00\xb8\x96\xad\xe1\xe2\xf4\x7d\xc4\xb3\x0a\x2b\xef\xb8\xe8\x95\xf9\x2f\xd2\x17\xdb\xb5\xb9\x6b\x61\xd3\xe4\x4d\x03\x4d\x9b\x9b\x16\xd6\x5d\x5e\x77\xbf\x66\xba\x1c\x4b\x0b\xbf\xe0\x81\x1e\xf3\x83\x66\xd9\x02\x6f\x06\xe0\xa3\x14\x88\x09\x25\xf5\x27\x99\x55\x5c\xd5\x52\x83\x8f\xc7\x19\x2f\x7a\x89\x09\xc3\x80\x33\x87\x9f\xbe\x69\xa2\x85\x7a\xc7\x33\x8b\xe2\xbb\xa7\x32\x95\xed\xd1\x7d\x1e\x84\x4f\x61\xf8\x23\x8c\x65\xac\xb9\x99\xef\x00\x00\x00\xff\xff\x73\xe2\xd3\x43\x36\x01\x00\x00") +var _pkgUiStaticReactManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x0a\xcb\x5c\x61\xb0\xae\xea\x61\xcf\xc1\x0d\xa1\xca\x4b\xdd\x35\x22\x8d\xa7\x24\x83\x8c\x69\xef\x8e\x9c\x20\xc1\x7c\xc8\xc1\xdf\xe7\x3f\xff\xd5\x00\x60\x5a\x24\xe6\x31\xd0\xca\xb8\x07\x7c\x5d\x28\x48\xc2\x47\x25\xf7\x3b\xf8\xe2\x03\xb8\x90\x39\xce\x64\xb9\x19\xce\x4a\x48\xb8\x87\x37\x03\x00\x70\xad\xaf\x46\x46\xab\x77\x33\x7d\xaa\xb0\x71\x56\xaa\xde\x98\xfb\x66\x3d\xc1\xa1\x2f\x43\x0f\xbb\xae\xec\x3a\xe8\xfa\xd2\xf5\xb0\x1d\xca\x76\xf8\x33\xf3\xe5\x54\xbf\x77\x2b\x1d\xf9\xb9\x3c\x69\x16\x56\x78\x33\x00\xef\xb5\x40\xca\x14\xf3\x78\x8e\x5e\xc5\x4d\x2b\x35\xb9\x74\xf2\x74\xd1\x4d\xca\x14\x26\xf2\x12\x7e\xfb\xe6\x85\x57\x1e\xad\x78\x89\x8a\x1f\x5e\xea\x34\x76\x20\xfb\x71\x8c\x72\x0e\xd3\x3f\x61\xae\x83\xe6\x66\x7e\x02\x00\x00\xff\xff\x64\xee\x72\x4e\x2c\x01\x00\x00") func pkgUiStaticReactManifestJsonBytes() ([]byte, error) { return bindataRead( @@ -630,32 +630,32 @@ func pkgUiStaticReactManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 310, mode: os.FileMode(493), modTime: time.Unix(1587714246, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 300, mode: os.FileMode(493), modTime: time.Unix(1588400914, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8f\xd1\x6e\xea\x30\x0c\x40\xdf\xfb\x15\x51\x9f\x40\xe2\x86\xa6\xc1\x4e\x72\xaf\xee\x27\xec\x0b\x10\x42\xae\xeb\x88\x30\x08\x53\x53\xa6\x49\x63\xff\x3e\xb1\x8d\xa7\x6d\x88\x49\x7b\xb6\x7d\x8e\x4f\x91\x5d\xd4\xeb\xf5\xc3\x20\x4c\xbc\x91\x3b\xca\x29\x4a\x19\xd5\x7f\x35\xf9\x6e\x74\x3a\xa9\xe5\x6a\xaa\xf9\x90\x99\xc6\xc9\xb2\x52\xea\xb9\x52\x4a\xa9\x7a\x90\xc7\x54\xd2\x21\xd7\x7f\x55\x0d\x1c\x2d\x44\x62\xc1\xd6\x45\xf2\xe8\x3b\x1f\x0c\x92\x63\x68\x02\x33\x34\xf5\xec\xfd\xe6\x38\xec\xce\xeb\x7a\x9e\x72\x2f\x4f\x7a\x33\xee\x77\x75\xa5\xd4\xcb\xec\x6b\x6c\x04\xb2\x2d\x92\x78\x66\xdf\x07\x91\x10\xac\xfd\x84\x2a\x23\x8d\x89\xe7\x5c\xca\xbc\xd5\x36\x82\x98\x26\x38\xcd\x9b\x63\xbe\xd7\x5c\xca\x35\x7e\x0f\x60\x1a\x06\x27\x5d\xc0\x28\x68\x1c\x76\xe1\x1a\x7f\x4f\x29\x6b\xc2\x06\x2c\xa0\xbf\x4d\xf1\x93\x84\xed\xb9\x60\xd1\x46\x70\x14\xed\x07\x7e\xfb\x6b\x01\xdb\xcb\xff\xae\xef\xc0\x78\x77\x93\x80\x90\x9c\x13\x69\x68\xd1\xb5\x7d\x87\x41\x80\xf0\x8a\x60\x38\xe6\x31\xed\xe5\xcf\x9b\x08\x90\x7a\xe3\x0d\x5d\x14\xd5\x6a\xfa\xef\x35\x00\x00\xff\xff\xdc\xe9\xed\x64\x81\x02\x00\x00") +var _pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8f\x51\x4e\x02\x31\x10\x86\xdf\xf7\x14\xcd\x3e\x41\x82\x85\x4e\xdb\xd9\xad\xc6\x23\x78\x02\x42\xc8\x6c\x3b\x0d\x45\x28\x66\xbb\x18\x13\xf1\xee\x06\xc5\xc4\x04\x25\x98\xf8\xdc\xce\xf7\xfd\x5f\xe1\x4d\x94\xcb\xe5\x53\xcf\x9e\xfc\x8a\x1f\x28\xa7\xc8\x65\x10\xf7\x62\xf4\xdb\xd3\xe1\x20\xe6\x8b\xb1\xf4\xbb\xec\x69\x18\xcd\x2b\x21\x5e\x2b\x21\x84\xa8\x7b\x7e\x4e\x25\xed\x72\x7d\x2b\x6a\x83\xd6\xba\x68\xa2\x25\x15\x14\x38\x6c\x83\x89\x11\x9c\x01\xa3\x81\xc8\xe9\x7a\xf2\x79\xb3\xef\x37\xc7\xef\x72\x9a\x72\xe0\x17\xb9\x1a\xb6\x9b\xba\x12\xe2\x6d\xf2\x33\xb6\xd3\xa8\x1b\xdb\x22\x5a\x0d\x46\x63\x00\x02\x3e\x43\x95\x81\x86\xe4\xa7\xbe\x94\x29\x48\x1d\x2d\xab\x99\x6b\xa4\x5f\xed\xf3\xa3\xf4\xa5\x5c\xe2\x7b\x50\xc1\x07\x33\x0b\xae\xb1\xd0\x3a\x50\x11\xce\xa7\x7e\xe3\x6f\x29\x65\x89\x8a\x23\x00\xe0\x75\x8a\xbf\x24\xac\x8f\x05\x0e\xd0\x53\x50\xed\x09\xbf\xfe\xb7\x80\xf5\x69\x7f\x47\x0d\xd8\xce\xc5\xab\x04\x84\xd4\x34\xcc\x33\x32\x1d\x84\x0e\x1d\x5b\xc2\x0b\x82\x7e\x9f\x87\xb4\xe5\x9b\x0f\x91\xc5\x63\x87\xa2\x2f\x45\xb5\x18\xdf\xbd\x07\x00\x00\xff\xff\x7e\x77\x6d\xf1\x81\x02\x00\x00") -func pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJsBytes() ([]byte, error) { +func pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJs, - "pkg/ui/static/react/precache-manifest.13e764b9739a0bc43bda80653214998a.js", + _pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, + "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js", ) } -func pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJs() (*asset, error) { - bytes, err := pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJsBytes() +func pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs() (*asset, error) { + bytes, err := pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.13e764b9739a0bc43bda80653214998a.js", size: 641, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js", size: 641, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x71\x6f\xdb\x36\x10\xc5\xff\xd7\xa7\xb8\x19\x43\x6d\xa7\x0e\xd9\xd4\x59\x5b\x37\xf0\x86\xa2\xdb\xba\xa0\x59\x91\xda\x29\x8c\xc1\x71\x02\x8a\x3c\x49\x9c\x29\x9e\xc6\xa3\xe2\x1a\x6d\xbf\xfb\x40\x45\x49\xb7\x6e\xf9\x53\xe4\xdd\x8f\xf7\xee\x3d\xc9\x83\x83\x0c\x0e\x60\x85\x4e\x53\x8d\x10\x09\xf6\xd4\x06\x58\x51\xd8\xe6\xf4\xf1\xb0\xa1\x1d\x06\x34\xc0\x18\x6e\xac\x46\xd8\x51\xd8\x62\xf8\x2e\x83\xae\xeb\x0f\x6a\x87\xce\x81\x47\x34\xa9\x33\x60\x69\x39\x62\x80\x58\x59\x86\xc2\x3a\x04\xeb\x6f\x79\x3b\xcc\x41\x35\x0d\x28\x6f\xd2\x01\x70\x45\xad\x33\x89\x61\x2c\xab\xdc\x21\xfc\x76\x71\x71\x0e\x5a\xe9\xca\xfa\x12\x0a\xfa\x27\x24\x12\x89\x54\xba\x44\x84\x2a\xc6\x86\x5f\x4a\x59\x12\x89\xd2\x49\x5f\xbd\xaf\xde\x34\xfd\x38\x17\x15\x42\x40\x8e\x40\x05\xc4\x0a\x41\x93\x41\xb0\x0c\xaa\x8d\x74\x58\xa2\xc7\xa0\x22\x1a\x01\xe7\x0e\x15\x23\x18\xf2\xc3\x08\x6d\x63\x54\xc4\xaf\xaf\xdd\xce\x14\x50\x47\xb7\x3f\x01\xeb\x39\xa2\x32\x13\xa8\xd5\x16\x41\x57\xca\x97\xc8\xdf\x6e\x09\xf2\xd6\x3a\x03\x9a\x7c\x61\xcb\x36\xa8\x68\xc9\x27\x4c\x12\x1b\xf0\x30\xb4\xfd\x12\x6e\xcb\x9a\x40\x1a\x99\x1f\x52\xf4\x54\x2d\x7e\xe6\x2a\x83\x03\x99\x65\xb6\x6e\x28\xc4\xa5\x0e\xb6\x89\x3c\x1a\xdc\x55\x72\xa4\xa0\x4a\x14\x25\x51\xe9\x50\x35\x96\x85\xa6\x5a\xee\x7a\xcf\xb4\xf1\x32\x60\xa7\x91\xe5\xb1\x98\x8a\xa3\xfb\x2b\xde\x89\x3f\x79\x30\x3e\xf9\x16\x9d\x01\x0c\x84\x6c\x02\x26\x03\xf0\xb0\x56\xde\x16\xc8\x51\x1c\x4d\xf1\xf9\xb3\xe3\x7c\xf6\x7c\x3a\x53\x4f\x72\x7d\x3c\xcd\x8d\x7a\xf1\xe4\xd9\x0f\xd3\xa7\x47\xc7\xb3\xd9\x0b\x95\x68\x59\xc2\x31\xba\x42\x28\x63\x7e\xb9\x41\x1f\xcf\x52\x0a\x3c\x86\xd1\xb0\x46\x66\x55\xe2\x70\x02\x23\x4c\x37\x63\x98\xff\x08\x9f\x32\x00\x5b\xf4\x27\xc2\xa8\xa8\xe0\xd1\x23\xf8\xfa\x25\xe2\xbe\x41\x98\xcf\xe7\x30\x5c\xbe\x3d\x3d\xbf\x5e\xbd\x3a\xbd\x38\x7d\xf7\x66\x38\xee\x3a\x01\xba\xb7\x78\x6b\x9b\x95\xb2\xd1\xfa\x72\x34\x3e\xc9\x00\xbe\x64\x5f\xd2\x20\xbd\x52\xa1\x29\xa0\xd0\xce\xa2\x8f\xfc\xda\x29\x5b\xa7\xaa\xac\x4f\x7b\x0a\x4a\x5f\xb8\x5c\x89\x3b\xd9\xaf\xbc\x59\x50\x1b\x71\x34\x86\x1a\x63\x45\x06\xb0\x28\xac\x4e\x08\xb7\xef\xa2\x89\xdc\x7b\xca\x0d\x79\x93\x72\x90\x68\x01\xff\x6a\x91\x23\x77\xa9\xfd\xb0\x38\xe3\x94\xfa\x94\xbf\xfb\x35\x3e\x60\xf5\x72\xf6\x7e\xa1\xf2\xce\xea\x4e\xd3\xf5\xf5\xdd\x28\xbf\xf7\x9d\x30\x87\xf5\x46\x68\xf2\x5a\xc5\xd1\x43\x35\x9f\x3f\xc3\x7a\x33\x3e\xb9\x97\xde\x17\x58\x5f\xfe\x57\xda\x03\x8c\x09\x7c\xfa\xd7\xf6\x02\xb5\x69\xb3\xe2\xee\x8f\x7e\xa7\x6e\x6c\xd9\xe5\xfa\x16\xf3\x3f\x4f\x95\x18\x5f\x27\xe4\x5b\xdc\xff\x4a\xe1\xc3\xe2\x6c\x34\x10\xd2\x7a\x83\x1f\x45\x15\x6b\x37\x18\x4f\x3a\xfb\x32\x80\xdc\x29\xbd\x75\x96\xe3\x4b\x58\xcb\xab\x4b\x79\x2d\x27\xf2\x52\xae\xaf\xe4\x4f\x9b\xc7\x97\x62\x7d\x25\x37\x8f\xbf\x97\x9b\x49\xe7\xe7\xdf\x01\x00\x00\xff\xff\x3a\xdc\x23\x1d\x9f\x04\x00\x00") +var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x71\x6f\xdb\x36\x10\xc5\xff\xd7\xa7\xb8\x19\x43\x6d\xa7\x0e\xe9\x25\x45\xd2\x35\xf0\x86\xa2\xdb\xba\xa0\x59\x91\xda\x29\x8c\xc1\x71\x02\x8a\x3c\x49\x9c\x29\x9e\xc6\xa3\xe2\x1a\x6d\xbf\xfb\x40\x45\x49\xb7\xae\xfe\x53\xe4\xdd\x8f\xf7\xee\x3d\xc9\x83\x83\x0c\x0e\x60\x89\x4e\x53\x8d\x10\x09\x76\xd4\x06\x58\x52\xd8\xe4\xf4\xe1\xb0\xa1\x2d\x06\x34\xc0\x18\xee\xac\x46\xd8\x52\xd8\x60\xf8\x2e\x83\xae\xeb\x4f\x6a\x87\xce\x81\x47\x34\xa9\x33\x60\x69\x39\x62\x80\x58\x59\x86\xc2\x3a\x04\xeb\xef\x79\x5b\xcc\x41\x35\x0d\x28\x6f\xd2\x01\x70\x45\xad\x33\x89\x61\x2c\xab\xdc\x21\xfc\x7e\x75\x75\x09\x5a\xe9\xca\xfa\x12\x0a\xfa\x37\x24\x12\x89\x54\xba\x40\x84\x2a\xc6\x86\x5f\x48\x59\x12\x89\xd2\x49\x5f\xbd\xab\x5e\x37\xfd\x38\x57\x15\x42\x40\x8e\x40\x05\xc4\x0a\x41\x93\x41\xb0\x0c\xaa\x8d\x74\x58\xa2\xc7\xa0\x22\x1a\x01\x97\x0e\x15\x23\x18\xf2\xc3\x08\x6d\x63\x54\xc4\x2f\xaf\xdd\xcf\x14\x50\x47\xb7\x3b\x03\xeb\x39\xa2\x32\x13\xa8\xd5\x06\x41\x57\xca\x97\xc8\x5f\x6f\x09\xf2\xd6\x3a\x03\x9a\x7c\x61\xcb\x36\xa8\x68\xc9\x27\x4c\x12\x1b\xf0\x30\xb4\xfd\x12\xee\xcb\x9a\x40\x1a\x99\xf7\x29\x3a\x52\xf3\x5f\xb8\xca\xe0\x40\x66\x99\xad\x1b\x0a\x71\xa1\x83\x6d\x22\x8f\x06\x0f\x95\x1c\x29\xa8\x12\x45\x49\x54\x3a\x54\x8d\x65\xa1\xa9\x96\xdb\xde\x33\x6d\xbc\x0c\xd8\x69\x64\xf9\x4c\x1c\x8b\x1f\x1e\xaf\x78\x2b\xfe\xe2\xc1\xf8\xec\x6b\x74\x06\x30\x10\xb2\x09\x98\x0c\xc0\xc3\x5a\x79\x5b\x20\x47\xa1\x4f\x4f\x8e\x8e\x4e\xf2\x67\xd3\x69\x3e\x7d\x7e\x7a\x74\x82\xd3\x7c\x7a\xac\x4e\xd5\xb4\x38\x79\x7e\x8c\xda\x24\x5a\x96\x70\x8c\xae\x10\xca\x98\x5f\xef\xd0\xc7\x8b\x94\x02\x8f\x61\x34\xac\x91\x59\x95\x38\x9c\xc0\x08\xd3\xcd\x18\x66\x3f\xc1\xc7\x0c\xc0\x16\xfd\x89\x30\x2a\x2a\x78\xf2\x04\xbe\x7c\x89\xb8\x6b\x10\x66\xb3\x19\x0c\x17\x6f\xce\x2f\x6f\x97\x2f\xcf\xaf\xce\xdf\xbe\x1e\x8e\xbb\x4e\x80\xee\x2d\xde\xd8\x66\xa9\x6c\xb4\xbe\x1c\x8d\xcf\x32\x80\xcf\xd9\xe7\x34\x48\xaf\x54\x68\x0a\x28\xb4\xb3\xe8\x23\xbf\x72\xca\xd6\xa9\x2a\xeb\xd3\x9e\x82\xd2\x17\x2e\x96\xe2\x41\xf6\x4b\x6f\xe6\xd4\x46\x1c\x8d\xa1\xc6\x58\x91\x01\x2c\x0a\xab\x13\xc2\xed\xba\x68\x22\xf7\x9e\x72\x43\xde\xa4\x1c\x24\x5a\xc0\xbf\x5b\xe4\xc8\x5d\x6a\xdf\xcf\x2f\x38\xa5\x3e\xe5\xef\x71\x8d\x7b\xac\x5e\xfc\xf8\x6e\xae\xf2\xce\xea\x4e\xd3\xed\xed\xc3\x28\x7f\xf4\x9d\x30\x83\xd5\x5a\x68\xf2\x5a\xc5\xd1\xbe\x9a\x4f\x9f\x60\xb5\x1e\x9f\x3d\x4a\xef\x0b\xac\x2f\xff\x2f\x6d\x0f\x63\x02\x1f\xff\xb3\xbd\x40\x6d\xda\xac\x78\xf8\xa3\xdf\xaa\x3b\x5b\x76\xb9\xbe\xc7\x7c\xe3\xa9\x12\xe3\xab\x84\x7c\x83\xbb\xdf\x28\xbc\x9f\x5f\x8c\x06\x42\x5a\x6f\xf0\x83\xa8\x62\xed\x06\xe3\x49\x67\x5f\x06\x90\x3b\xa5\x37\xce\x72\x7c\x01\x2b\x79\x73\x2d\x6f\xe5\x44\x5e\xcb\xd5\x8d\xfc\x79\xfd\xf4\x5a\xac\x6e\xe4\xfa\xe9\xf7\x72\x3d\xe9\xfc\xfc\x27\x00\x00\xff\xff\x6c\xa2\x27\xed\x9f\x04\x00\x00") func pkgUiStaticReactServiceWorkerJsBytes() ([]byte, error) { return bindataRead( @@ -670,7 +670,7 @@ func pkgUiStaticReactServiceWorkerJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1183, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1183, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -690,67 +690,67 @@ func pkgUiStaticReactStaticCss23f5e1097ChunkCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", size: 151031, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", size: 151031, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticCssMainA6053568ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x6d\x8f\xa4\xb8\x11\xfe\x9e\x5f\x41\xb4\x89\x74\x7b\x19\x73\xc0\x4c\xf7\xf4\x82\x76\xa4\x9c\xa2\xe4\x94\x6c\xa2\x53\x36\x59\x29\x39\x9d\x90\xc1\x05\xf8\xc6\xd8\x3e\xbb\x98\xa6\x17\xf5\x7f\x8f\x6c\x5e\x86\xee\x66\xef\xa2\x96\x18\xb0\xcb\xe5\x7a\x79\xea\xa9\x9a\x50\x53\x09\x62\x68\xa9\xa9\xb9\x24\x85\x42\x54\x6d\x9a\x44\xba\x3f\x73\xa9\x3b\xfc\x01\x4f\x1a\xde\x97\x0d\x94\xcf\x85\xea\x7f\x4c\xfd\x1b\xb0\x3f\x08\x5a\x80\x18\x4a\x25\x94\x49\xdf\x24\x87\x7d\xf4\x2e\x3a\x87\x65\x67\x51\xb5\xa4\x54\x12\x8d\x12\x64\x92\xe9\x8c\x55\x26\xd5\x8a\x4b\x04\x73\x0e\x51\xd5\xb5\x00\x63\xc9\xd1\x50\xad\xc1\x04\x61\xa5\x4c\x4b\x6a\xa3\x3a\x7d\x65\x46\xb8\x33\xd0\x9e\x7f\xa8\x94\xf9\xdd\x7b\x32\x9d\xfb\x71\xf3\x96\x94\x56\x08\xe6\xee\xff\x12\x2d\xa0\x52\x06\x06\x54\x3a\x0d\x93\x83\x81\x36\x13\x50\x61\x4a\xe2\xf0\xde\x7d\x1c\x39\xc3\x26\x8d\xc3\x38\x71\x5f\x0d\xf0\xba\xc1\xf9\xf3\x1c\x96\x54\x73\xa4\x82\x7f\x06\x82\x1c\x05\xa4\x15\x37\x16\x89\x00\x44\x30\x03\x42\x8f\x04\x0d\x95\xd6\xf9\x94\xbe\x0a\x9f\x43\xe8\xb5\x01\x6b\xb9\x92\xc4\x07\xf6\xca\xd5\xd8\x45\xfc\x46\x28\x70\x0a\xa9\x01\x3a\x18\xb0\xfc\x33\xa4\x52\x49\xc8\xd4\x0b\x98\x4a\xa8\x63\xda\x70\xc6\x40\x9e\x8b\x0e\x51\xc9\x10\x7a\x28\x3b\x04\x52\xa0\x1c\x46\x27\x0e\x0f\x4e\x29\x15\x60\x70\x7c\x12\x46\x65\x0d\x66\xf3\x6e\x49\x5f\x08\xd2\xc2\x06\xfe\x4d\x70\xf9\x7c\x9b\x3a\x5a\xf8\x58\x82\xc4\xa1\x50\x86\x81\x21\x3e\x74\xb1\xee\x03\xab\x04\x67\xc1\x1b\x06\x90\xc0\x3e\x9b\x76\xcd\x18\xbc\x2f\x6d\xcf\xf7\xdf\xec\x6b\xca\x18\x97\xf5\x64\xd9\xea\xda\x60\xf4\xe3\xca\x81\xe8\x1c\x32\x8a\xd4\x99\x2f\x20\xf4\xcf\x49\xc2\x6b\x08\xa2\x20\x71\x7a\x5e\x65\x9e\xb0\x50\xec\xf4\x84\xe6\x09\xd9\x30\x5f\xb6\xf3\x92\xee\x79\xd0\x7d\x56\x29\x89\xc4\xc7\x3c\x3c\x40\x7b\x13\xf3\x90\x76\xa8\x6c\x57\xd7\x60\x91\x30\xa3\x34\x53\x47\x39\x68\x65\x39\x72\x25\x53\x5a\x58\x25\x3a\x84\xc9\xd3\xb5\x8b\x25\xb0\x07\x46\xb3\x82\x96\xcf\x0e\xf3\x92\x91\xa9\x8a\xaa\xaa\xca\xa6\xd7\x87\x77\xbb\x68\xf7\xb8\xb2\x21\x76\x58\xfc\x4c\xb8\x64\xd0\xa7\x71\x14\x45\x23\x66\x77\x7b\xdd\x67\x53\x2c\x1c\x9e\xc9\xde\x27\x7c\xc3\x34\x22\xb8\xc5\xc5\xd5\x68\x3a\x94\x46\x99\x5b\x27\x16\x4f\x62\x04\xd7\x2f\x9c\x0e\x04\x9f\x70\x15\x47\xd1\xef\x97\x1c\x85\x89\xab\xd2\x20\xf6\xc5\x9a\x95\x02\xa8\x49\x0b\x85\x4d\x76\x6c\x38\x02\xb1\x9a\x96\x4e\xb5\xab\xf6\x5b\xa7\xb9\xe4\xc8\xa9\x98\xc3\x14\x65\x8c\x5b\x2d\xe8\x29\x2d\x84\x2a\x9f\x7f\xd9\x98\xed\xcd\x06\x28\x03\x33\xdc\x86\xb7\xa8\x18\x54\xd5\x3a\xa6\x91\xee\x33\xc1\x25\x90\xa5\xc8\x77\xd9\x55\x05\x77\x8e\xa1\x4a\x6a\x61\xdc\xa0\x82\xd7\x32\x2d\x61\x2c\x87\xda\x50\xdd\xcc\xe4\x62\xef\x46\xe0\x2d\xdf\x9b\x45\x76\x79\x24\xf0\x45\x7e\x7d\x70\x5c\x1d\x7e\xf5\xc2\x20\x34\xae\x9a\x27\xa6\x18\x0f\x8d\xf9\xd9\x8d\x65\xc3\xdb\xcb\xcd\x8b\xa2\x1c\x93\xfd\x2a\x33\x1d\x4d\x1e\x23\xdd\xff\x96\xb7\x5a\x19\xa4\x12\xb7\x2d\x0e\x0d\x78\x78\xbf\x92\xd9\x78\xf8\xdd\x86\x8f\x4f\xa9\x54\xf8\xd5\x44\x93\x65\xc3\x05\x7b\x3b\x47\xc6\x43\x38\xd9\x8a\x4b\xe8\x61\x44\xbc\x75\x05\xca\x9b\x08\x5d\xed\xaf\xb2\x3d\x96\xd1\x9a\x9c\x3c\x65\x4e\x0b\xae\x46\x36\x4a\xf1\x4b\x6c\x34\xed\x5f\x14\xe5\x6c\xab\x80\x1a\x24\x5b\x68\x66\x24\x0f\xff\x67\xb7\xbb\xa4\x8f\xc7\x1d\xb4\x17\x8c\xe6\x38\x66\x01\x3a\x97\x1e\x82\x13\xde\x47\xad\x84\x23\xb4\x57\xec\xbb\x1c\xa8\x04\xf4\x8b\x3a\xcf\x57\x0b\xdb\x52\xc6\x3b\x9b\xde\xdf\xc0\xfa\xf1\x42\x71\xc0\xf8\xcb\xe0\xb4\xf8\x0e\x9c\xba\xc7\xb2\x6f\x8f\x14\xcb\x66\x68\xb9\x24\x63\x4a\x1f\x75\x3f\xf7\x40\xf7\xaa\x3a\xf4\xaa\x55\x55\x59\xf0\xcc\x3e\x2f\xb9\xea\x59\x45\xae\x2c\x67\x8a\xd9\x8f\x84\xea\x28\x38\x88\x7e\xdd\xed\xb4\x71\x54\xbb\xce\xa8\xa9\x0b\xfa\x55\x74\xe7\x7e\x61\x7c\x78\xbb\x48\xb7\x80\x86\x97\x44\xd2\x76\x66\xfb\xd7\x7e\xb3\x08\xf9\x96\x3f\xca\xf8\x94\x1c\x27\x5f\xa2\x68\x4a\xe4\x9c\x41\x1f\xc9\x05\x88\x0d\x35\x38\x4c\x7e\xef\x22\x47\x14\x2b\xe6\xab\xb8\x10\x1b\x1c\xed\xfa\xc4\x85\x82\x20\xac\x84\x42\xe2\xfc\x11\xf4\x34\xe7\xb3\x34\xca\xda\x86\xf2\xa5\x9e\x51\x29\x81\x5c\x7f\xc9\xe5\xc3\xdb\x6c\xd5\x20\xfc\x75\x15\x6d\xb9\x38\xa5\x7f\x34\x9c\x8a\xbb\xef\x40\xbc\x00\xf2\x92\xde\x59\x2a\x2d\xb1\x60\xf8\x05\xcb\x25\xce\xf8\x5b\x2a\x9e\x11\x74\xd8\xc2\xcf\x95\x69\x41\xe8\xc3\x68\x87\x95\xda\xf8\x1a\x65\xf1\xc6\x31\x06\x48\xb9\x98\x51\xb5\x95\xfb\x25\xae\xaf\x38\x1b\x99\x92\x32\x46\xfc\x68\xea\x0b\x7c\x63\x3c\x0d\x91\x9a\x1a\xd0\x13\xfe\x75\x6e\x57\xfe\x0b\x27\xe5\x0c\x53\x9d\x26\x5c\x56\x6a\xb8\x28\xa4\x9f\x3a\x8b\xbc\x3a\xcd\xf3\x45\xea\x63\x44\x0a\xc0\x23\x80\xcc\x6e\x29\xfc\x6a\x34\x29\x28\xab\x61\x19\x65\x9f\xac\xa6\xf2\x12\x8b\x3b\xdf\xa0\xfb\x39\x4a\xa3\xe5\xa6\x13\x60\x6f\x0d\xdf\x3b\x50\xba\xbd\xbc\x04\x21\x86\x75\xd2\xb4\x01\xb2\xdd\x41\xdf\x54\x3b\xf7\xbb\x6c\x9c\x17\x30\x69\x95\x54\x5e\xcb\x39\xfc\xb9\x03\x73\x22\x16\x29\xda\x91\x01\x6a\xa3\x8e\x69\x7c\xc1\x56\xbe\x8b\x8f\xaa\x1f\xe3\x43\x74\x80\x73\x58\x2a\x59\xf1\x9a\x9c\x68\x2b\x86\xcb\x7b\xd6\xd1\x58\x83\xce\x71\xd0\xa4\xe4\xfe\xfe\x3e\x3b\x2a\xc3\x48\x61\x80\x3e\xa7\xfe\x49\xa8\x10\x5f\x76\x65\x63\x66\x2a\xcb\x2b\x90\xfa\xc9\xf6\xcf\x5c\x20\x98\xbc\x40\x99\xe7\xf1\xa9\x61\xf5\xb0\x9a\x85\xc2\x3d\xb4\xd7\x09\xf4\x25\xfe\xb1\x34\x54\xc3\xf7\x4a\x89\xef\x1d\xbe\x72\x97\x7a\xca\x25\x98\x3c\x4f\x5a\x5a\xb6\x6b\x25\x24\x4e\xb6\x8e\xf8\xd1\x3f\xcf\x63\xad\xff\xf2\xd3\xaa\x28\x92\x25\x0a\x2b\x28\x5e\x0f\xd1\xd7\xba\xc6\x91\x3c\xcf\xff\xab\xbe\x7b\xde\xcf\xff\x51\x55\xc9\x43\xfc\x10\x6f\x5c\xec\xfa\x60\x9e\xc7\x1f\x99\x89\x57\xc3\xd8\x86\x53\x20\x44\x9e\xdf\x7f\xf8\x54\xe4\x33\x8f\xb9\x71\x69\xcc\x84\xe7\xfd\x31\x11\xee\x7b\x33\x3d\xb7\x2a\x41\x32\xef\x44\x9e\xc7\xff\x78\xa8\xfb\xbb\x1b\x81\x91\x24\xf2\x3c\xfe\xf4\xa9\x2f\xe6\x79\x62\xb7\x61\x9c\xa0\x6e\xe6\xf4\x8b\x79\x1e\xbf\x4b\x3e\xfd\xed\x56\x99\x03\x29\xe4\x79\xf2\xed\xcf\x7f\xea\x17\x4f\x37\x74\x81\x31\xca\xd8\x3c\x4f\xfe\xfa\xed\xcb\x7f\x26\xc1\x7b\x27\xf8\x2f\x4f\x0f\x1f\x46\x9b\x18\xb7\xa5\xe3\x61\x60\x79\x9e\xc0\x47\xf1\x30\xdc\x52\xe2\xf9\x37\xdf\x7c\xfd\x26\xb0\xaa\x33\x25\xfc\x9d\x6a\xcd\x65\xfd\xef\x7f\x7e\x78\xdf\x52\x2e\x43\xba\x8f\x76\xf7\xbb\xfd\x21\x2c\x9b\x4e\x3e\x87\xa5\xb5\x61\x4b\x75\xf0\xf5\x37\xff\x0b\x00\x00\xff\xff\xe7\xbc\xf2\x18\x3f\x0f\x00\x00") +var _pkgUiStaticReactStaticCssMain61ef2226ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x6d\x8f\xa4\xb8\x11\xfe\x9e\x5f\x41\xb4\x89\x74\x7b\x19\x73\xc0\x4c\xf7\xf4\xd2\xda\x91\x72\x8a\x92\x53\xb2\x89\x4e\xd9\x64\xa5\xe4\x74\x42\x06\x17\xe0\x1b\x63\xfb\xec\x62\x9a\x5e\xd4\xff\x3d\xb2\x79\x19\xe8\x66\xef\xa2\x91\x98\xc6\x2e\x97\xeb\xe5\xa9\xa7\x8a\xf0\xe7\x16\xcc\x99\x58\xa4\x68\xfb\x52\x40\x47\x2a\xa3\x4e\x69\x7c\x2c\x95\x44\x62\xf9\x67\x48\xc3\x47\x03\xcd\xb1\x50\x42\x99\xf4\xcd\x63\x7c\x88\x0e\x70\x09\x0b\x25\x4b\x5e\x91\x33\x6d\x44\xcf\xb8\xd5\x82\x9e\xd3\x5c\xa8\xe2\xf9\xa8\x29\x63\x5c\x56\x69\x1c\xe9\x6e\xa1\x25\xbe\xd7\xdd\xa4\xe4\xfe\xfe\xfe\x78\x52\x86\x91\xdc\x00\x7d\x4e\xfd\x93\x50\x21\x8e\x39\x2d\x9e\x2b\xa3\x5a\xc9\xc8\x28\x5a\xee\xdc\xdf\x31\x57\x86\x81\x49\x63\xdd\x05\x56\x09\xce\x82\x37\x45\x51\x8c\xab\xc4\x50\xc6\x5b\x9b\x3e\xe8\xee\x12\xfe\x99\x0b\x04\x93\xe5\x28\xb3\x2c\x3e\xd7\xac\xea\x1b\x6a\x2a\x2e\x09\x2a\x9d\x86\x7b\x68\x8e\xe3\x7b\xae\x10\x55\x93\xc6\x3b\x77\xea\x63\x61\xa8\x86\xef\x95\x12\xdf\x53\x09\x22\x2b\x94\x44\xca\x25\x98\x2c\x4b\x1a\x5a\x34\x4b\x25\x24\x4e\xb6\x8e\x20\x47\x01\x59\x16\x6b\xfd\x97\x9f\xfa\x57\xb7\x93\x39\x0a\x27\xe0\x55\x8d\xe9\x63\x14\x1d\x8b\xd6\x58\x65\x52\xad\xb8\x44\x30\xb7\xba\x18\x95\x95\xbb\xfb\xbf\xea\xbb\xe7\x7d\x3f\x45\x22\x79\x88\x1f\xe2\x8d\x8b\x69\xee\x2f\xfe\xc8\x4c\xdc\x9f\x38\xc3\x3a\x8d\xa3\xe8\xf7\x1b\x4e\x81\x10\x59\x76\xff\xe1\x53\x9e\xf5\xf5\x60\x0c\x6d\x51\x0d\x99\x38\x19\xaa\xc7\x44\xb8\xf7\xcd\xf4\xdc\xaa\x04\xc9\xbc\x13\x59\x16\xff\xe3\xa1\xea\xee\x6e\x04\x04\xcd\x41\xd8\x2c\x8b\x3f\x7d\xea\xf2\xd1\xba\x64\xb7\x61\x9c\xa0\x16\x89\xf5\x8b\x59\x16\xbf\x4b\x3e\xfd\xed\x56\x99\x03\x29\x64\x59\xf2\xed\xcf\x7f\xea\x66\x4f\x37\x74\x81\x31\xca\xd8\x2c\x4b\xfe\xfa\xed\xcb\x7f\x46\xc1\x7b\x27\xf8\x2f\x6a\x2a\xc0\x0f\x83\x4d\x8c\xdb\x42\xbd\x80\x01\x96\x65\x09\x7c\x14\x0f\xfd\xa9\xe6\x08\xc4\x6a\x5a\x40\x2a\x95\x8b\xc8\x25\xd4\x4e\x63\xbf\xc6\x8c\xcb\xe9\x85\x4b\xdd\xe2\x0f\x78\xd6\xf0\xbe\xa8\xa1\x78\xce\x55\xf7\x63\xea\x7f\x01\xfb\x83\x77\x7b\x4a\x5c\x72\xd8\x47\xef\xa2\x4b\x58\xb4\x16\x55\x43\x1c\xb6\x8c\x12\x64\x94\xb9\x82\x02\xaa\xaa\x12\x60\xac\x4f\x88\x06\x13\x84\xa5\x32\x8d\x2b\xca\x56\x5f\x99\x11\xee\x0c\x34\x97\x1f\x4a\x65\x7e\xf7\x9e\x8c\xe7\x7e\xdc\xbc\x25\xa5\x25\x82\xb9\xfb\xbf\x44\x73\x28\x95\x81\xde\x97\x4b\x72\x70\x95\x2f\xa0\xc4\x94\xc4\xe1\xbd\x7b\x19\xc3\x1e\xc6\x89\x7b\x1b\x61\x34\xbe\x5e\xc2\x82\x6a\x8e\x54\xf0\xcf\x40\x7c\x3d\xa4\x25\x37\x16\x89\x00\x44\x30\x3d\x42\x87\x04\x0d\x95\xd6\xf9\x94\xbe\x0a\x5f\x42\xe8\xb4\x01\x6b\xb9\x92\xc4\x07\xf6\xca\x55\xc7\x25\xb7\x42\x81\x53\x48\x0d\xd0\xde\x80\x2f\x36\xa9\x24\x1c\x5d\x4e\x4b\xa1\x4e\x69\xcd\x19\x03\x79\xc9\x5b\x44\x25\x43\xe8\xa0\x68\x11\x48\x8e\x72\x84\xc4\xc1\x13\x06\x15\x60\x70\x78\x92\xa1\xee\x36\xef\x96\xf4\x85\x20\xcd\x6d\xe0\x7f\x09\x2e\x9f\x6f\x53\x47\x73\x1f\x4b\x90\xd8\x8f\xcc\xe4\x43\xb7\x20\x2d\x06\x90\xc0\x7e\xe6\xad\x21\x78\x5f\xda\x9e\xee\xbf\xd9\x5f\x32\xec\xea\xda\x60\xf0\xe3\xca\x81\xe8\x12\x32\x8a\x94\x78\xa2\x08\xfd\x73\x94\xf0\x1a\x82\x28\xf0\x84\xf6\x2a\xf3\x84\xb9\x62\xe7\x27\x34\x4f\xc8\xfa\xe9\xb2\x9d\x97\x74\xcf\xc3\x8a\xd7\xc3\x03\x34\x37\x31\x0f\x1d\xb1\xd8\xb6\xaa\xc0\x22\x61\x46\x69\xa6\x4e\xb2\xd7\xca\x72\xe4\x4a\xa6\x34\xb7\x4a\xb4\x08\x5b\xb4\x0e\xec\x81\xd1\xad\x46\x50\x96\x53\xfb\x78\x78\xb7\x8b\x76\x8f\xcb\xde\xe2\xb0\xf8\x99\x70\xc9\xa0\x73\xe4\x17\x0d\x98\xdd\xed\x75\x77\x5c\x32\xf7\xde\x27\x7c\xc3\x34\x22\xb8\xc5\xd9\xd5\x68\x3c\x94\x46\x47\xb7\x4e\x2c\x9e\xc5\x00\xae\x5f\x38\x1d\x08\xbe\x60\xdf\x39\x47\x61\xe2\xaa\x34\x88\x7d\xb1\x1e\x0b\x01\xd4\xa4\xb9\xc2\xfa\x78\x4b\x36\xb7\x4e\x73\xc9\x91\x53\x31\x85\x29\x3a\xae\x3a\xed\x2f\x1b\xb3\xbd\x59\x03\x65\x60\xfa\xdb\xf0\xe6\x25\x83\xb2\x5c\xc6\xd4\x35\x2e\xc1\x25\x90\xb9\xc8\x77\xc7\xab\x0a\x6e\x1d\x43\x15\xd4\xc2\xb0\x41\x05\xaf\x64\x5a\xc0\x50\x0e\x95\xa1\xba\x9e\xc8\xc5\xde\x0d\xc0\x9b\xdf\x37\x8b\x6c\x7d\x24\xf0\x45\x7e\x7d\x70\x58\xed\x7f\xf5\xc2\x20\x34\xae\x9a\x47\xa6\x18\x0e\x0d\xf9\xd9\x0d\x65\xc3\x9b\xf5\xe6\xaa\x28\x87\x64\xbf\xca\x4c\xad\xeb\x31\xd2\xdd\x6f\x79\xa3\x95\x41\x2a\x71\xdb\xe2\xd0\x80\x87\xf7\x2b\x99\x0d\x87\xdf\x6d\xf8\xf8\x94\x4a\x85\x5f\x8d\x34\x59\xd4\x5c\xb0\xb7\x53\x64\x3c\x84\x93\xad\xb8\x84\x1e\x46\xc4\x5b\x97\xa3\xbc\x89\xd0\xd5\xfe\x22\xdb\x43\x19\x2d\xc9\xc9\x53\xe6\xb8\xe0\x6a\x64\xa3\x14\xbf\xc4\x46\xe3\xfe\xaa\x28\x27\x5b\x05\x54\x20\xd9\x4c\x33\x03\x79\xf8\x7f\xbb\xdd\x9a\x3e\x1e\x77\xd0\xac\x18\xcd\x71\xcc\x0c\x74\x2e\x3d\x04\x47\xbc\x0f\x5a\x09\x47\x68\xae\xd8\x77\x3e\xe0\x46\xd8\x59\x9d\xe7\xab\xab\x29\xf1\xfe\x06\xd6\x8f\x2b\xc5\x01\xe3\x2f\xc3\x20\xec\x47\xa2\x61\x0a\x18\xf7\xed\x89\x62\x51\xf7\x0d\x97\x64\x48\xe9\xa3\xee\xa6\x1e\xe8\x7e\xaa\x16\xbd\x6a\x55\x96\x16\x3c\xb3\x4f\x4b\xae\x7a\xd6\xb3\xeb\x18\x9a\xfd\x40\xa8\x8e\x82\x83\xe8\xd7\xdd\x4e\x6b\x47\xb5\xcb\x8c\x9a\x2a\xa7\x5f\x45\x77\xee\x2f\x8c\x0f\x6f\x67\xe9\x06\xd0\xf0\x82\x48\xda\x4c\x6c\xff\xda\x6f\x66\x21\xdf\xf2\x07\x99\xab\x19\x75\x4c\xe4\x94\x41\x1f\xc9\x19\x88\x35\x35\x38\x8d\x90\xbb\xc8\x11\xc5\x82\xf9\x4a\x2e\xc4\x06\x47\xbb\x3e\xb1\x52\x10\x84\xa5\x50\x48\x9c\x3f\x82\x9e\xa7\x7c\x16\x46\x59\x5b\x53\x3e\xd7\x33\x2a\x25\x90\xeb\x2f\xb9\x7c\x78\x7b\x5c\x34\x08\x7f\x5d\x49\x1b\x2e\xce\xe9\x1f\x0d\xa7\xe2\xee\x3b\x10\x2f\x80\xbc\xa0\x77\x96\x4a\x4b\x2c\x18\xbe\x62\xb9\xc4\x19\x7f\x4b\xc5\x13\x82\x0e\x5b\xf8\xb9\x32\x2d\x08\x87\x29\x77\x31\xf5\xc7\xf1\x35\xca\xe2\x8d\x63\x0c\x90\x72\x31\xa1\x6a\x2b\xf7\x73\x5c\x5f\x71\x36\x30\x25\x65\x8c\xf8\xd1\xd4\x17\xf8\xc6\x78\x1a\xa2\x9f\x75\x3d\xe1\x5f\xe7\x76\xe1\xbf\x70\x52\xce\x30\xd5\x6a\xc2\x65\xa9\xfa\x55\x21\xfd\xd4\x5a\xe4\xe5\x79\x9a\x2f\x52\x1f\x23\x92\x03\x9e\x00\xe4\xf5\x97\x94\x33\x72\x3d\x9a\xe4\x94\x55\x30\x8f\xb2\x4f\x56\x53\xb9\xc6\xe2\xce\x37\xe8\x6e\x8a\xd2\x60\xb9\x69\x05\xd8\x5b\xc3\xf7\x0e\x94\x6e\xcf\x7f\xc8\xac\x86\x75\x6d\x80\x6c\x77\xd0\xe9\xfb\x71\xfd\x89\xba\x84\x49\xa3\xa4\xf2\x5a\x2e\xbf\xf9\xe6\xeb\x37\x81\x55\xad\x29\xe0\xef\x54\x6b\x2e\xab\x7f\xff\xf3\xc3\xfb\x86\x72\x19\xee\x63\x28\x93\x24\xd9\x87\x45\xdd\xca\xe7\xb0\xb0\x36\x6c\xa8\x0e\xbe\xfe\xe6\x7f\x01\x00\x00\xff\xff\xaf\xfb\xb2\xbb\x3f\x0f\x00\x00") -func pkgUiStaticReactStaticCssMainA6053568ChunkCssBytes() ([]byte, error) { +func pkgUiStaticReactStaticCssMain61ef2226ChunkCssBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticCssMainA6053568ChunkCss, - "pkg/ui/static/react/static/css/main.a6053568.chunk.css", + _pkgUiStaticReactStaticCssMain61ef2226ChunkCss, + "pkg/ui/static/react/static/css/main.61ef2226.chunk.css", ) } -func pkgUiStaticReactStaticCssMainA6053568ChunkCss() (*asset, error) { - bytes, err := pkgUiStaticReactStaticCssMainA6053568ChunkCssBytes() +func pkgUiStaticReactStaticCssMain61ef2226ChunkCss() (*asset, error) { + bytes, err := pkgUiStaticReactStaticCssMain61ef2226ChunkCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.a6053568.chunk.css", size: 3903, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.61ef2226.chunk.css", size: 3903, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJs242f57af3ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x93\xdb\x36\xb2\x30\xfa\x57\x24\xae\x3f\x86\xb0\x20\x0e\x29\x69\x5e\x94\x61\x95\xd7\x76\x36\xc9\xf1\x24\x7b\x12\x6f\xb2\x67\x39\x74\x3e\x8e\x08\x8d\xb8\xa1\x48\x85\x84\xc6\xf3\xa0\xf6\xb7\xdf\xea\x06\x48\x82\x14\x65\x67\xf3\xe5\x3b\xe7\xd6\xad\x5b\x65\x8f\x48\x10\xcf\x46\xa3\xd1\xe8\x17\x2c\xb1\x8e\x0b\xfb\x23\xbf\xd9\x86\xcb\x5f\xbe\x29\xb2\x74\x7b\x9b\x87\xdb\x35\xeb\x4f\x2e\x4b\x3f\x20\xf6\x76\x57\xac\x2d\xdf\x9f\x04\xd4\x5f\xed\xd2\xa5\x88\xb3\xd4\xe2\x54\xd0\x94\x3c\x19\xbb\x82\x0f\x0a\x91\xc7\x4b\x61\xcc\xb9\xcd\xef\xb7\x59\x2e\x0a\x96\x5a\xae\xe3\x92\x3d\xed\x66\x6f\xe7\x38\x23\x56\x4f\x9e\x56\x95\xa9\x1d\x59\x82\x1a\xb7\x06\xb5\xea\x7c\xe4\x29\xe7\x62\x97\xa7\x83\xe5\x9e\x10\xaa\x72\xac\x7b\x73\x24\x5a\x8e\xb8\x37\xc7\x4e\xcb\x91\xf4\xe6\x58\x69\x39\xc2\xde\x1c\x6b\x2d\xc7\x2f\xbd\x39\x6e\xb4\x1c\xff\xec\xcd\xb1\xd1\x72\xf0\xde\x1c\x57\x5a\x8e\x65\x6f\x8e\x5b\x2d\x47\xd4\x9b\xe3\x4e\xcb\x71\xd3\x9b\xe3\x41\xcb\xb1\xea\xcd\xf1\xb8\x27\x64\x7e\x17\xe6\x83\x9c\x66\x2c\xb5\x2e\xce\x08\x8d\x59\x6a\xa7\x56\x46\x68\x08\xf3\x4a\x68\x81\xef\x21\x99\x57\xa5\x07\x4b\x98\xdd\xa6\x1b\x59\x1c\x0d\x1c\xc6\x18\x37\x4d\x8b\x33\xc3\x20\xb4\x4e\x12\xa6\x69\x09\x96\x13\x2a\x16\xdc\x2e\xb6\x49\x2c\x2c\x63\x60\x10\x7b\x13\x6e\xad\xa6\x37\xbc\xae\x4b\xf8\x3c\x28\x4b\xbe\x27\xc4\xfe\x67\x16\xa7\x98\xd9\xe3\xfb\xba\xe5\x44\xb6\x0c\x1d\x4e\xd9\xd3\x7e\xae\x8a\x7d\x77\xf3\x4f\xbe\x14\xf6\x2f\xfc\xa1\xb0\x38\xb1\x57\x59\xfe\x36\x5c\xae\xb5\x16\x72\xf2\x34\x76\xa1\x3f\x76\x9c\x46\xfc\xfe\xbb\x95\x95\x13\xd3\xb4\x52\x3f\x0f\x18\xf7\xf3\x80\x20\xa0\x9a\x76\x76\xb2\x9d\x55\x96\x5b\xd8\x16\xcd\xd9\xab\x3c\x0f\x1f\xec\xb8\xc0\x5f\x4b\x90\x85\xf0\x7c\x11\xd0\x8c\xe5\x76\xc2\xd3\x5b\xb1\xa6\x31\xf4\x28\x7b\xe9\xcc\x49\xec\xa7\x2c\xf7\xb3\x31\x73\x03\xa8\x3f\x0d\xaa\x8e\xc6\x7b\xa8\x6e\x0b\x19\xeb\xb6\x56\x30\xfe\x2d\x0e\xdc\x32\x76\x69\xc4\x57\x71\xca\x23\x63\xc8\x98\x78\xd8\xf2\x6c\x35\x58\x66\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x11\x33\x32\x84\x83\xc1\xea\xa2\x1f\xe3\x34\xca\x3e\x9a\xa6\xfc\xb5\xdf\x26\x7c\xc3\x53\x51\x96\x1a\x22\x68\x3d\x59\x57\xab\x36\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\xe9\x12\xaa\x8a\x08\x51\x83\x48\xf9\xc7\xc1\x5b\xec\x82\xf1\x75\x7a\x17\x26\x71\x34\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xd1\x40\x64\x90\x96\x8e\x8c\xff\x6d\x0f\xde\xde\x6f\xf9\x52\x70\x95\x55\x64\x83\x1b\x3e\x08\xd3\x41\xd5\xc0\x20\x5b\x0d\x54\xef\xec\xc1\x8f\x50\x67\x28\x81\x13\xc6\x09\x8f\x6c\x43\x0e\xf1\x86\x15\x76\x68\x67\x29\xff\x6e\xf5\xfe\x61\xcb\x2d\x1f\x5e\x81\xba\xa4\xb7\x14\x1e\x61\x24\x74\x8d\x8f\xc5\x3a\xdc\x72\xeb\x69\xb9\xcb\x73\x9e\x0a\x0f\x92\xc2\xf4\x61\x4f\x02\x42\x37\x7d\xb5\x60\xd1\x4e\x75\xaa\x8e\x67\xcf\x24\x34\xb1\x92\xe2\x61\x73\x93\x25\x34\xe7\x69\xc4\x73\xaf\x2a\xb9\x27\x58\x20\x04\xdc\xf8\x6e\x65\xfd\x5f\xa8\x3f\x20\xd0\xf5\x2b\xf6\xf4\x65\x18\x71\xcf\x3d\x75\xe8\xeb\x2c\x49\xc2\x6d\xc1\xbd\xe9\xa9\x43\xaf\xb2\x28\x4c\xbc\xa9\xe3\xd0\xd7\x61\x9e\xed\x0a\x9e\x78\x67\x8e\xb3\xa7\xb7\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x6d\x2a\x78\x6e\x50\x63\x97\x56\x09\xf7\xb1\x30\xa8\x11\x6e\xb7\x3c\x84\x0f\x5c\x65\xe0\x32\x5d\xc4\x1b\x9e\xed\xe0\x29\xab\xcb\xaa\xa7\x38\xbd\x6d\x5e\x78\x24\x9f\x65\x29\xf9\x50\x67\xb8\x8f\x05\x8f\x8c\x80\xde\xb1\xa7\xb7\xdf\xbe\x7f\xfb\xfd\xd7\xdf\xfe\xc5\x93\x0d\x61\x16\x4c\x7b\xfb\x46\x25\x41\x4d\x6f\xff\xfe\xf5\x7b\x99\xa9\xaa\x06\x52\x30\x8b\xac\x6b\x4f\x1f\x98\x6f\x84\x3b\x91\x8d\x0b\x11\xe6\x38\x82\x9d\xc8\xd4\xcf\x98\xa7\xd0\x1d\x91\x6d\xeb\xaf\x22\xdb\xaa\x14\xf9\x2d\x8f\x6f\xd7\xa2\xfe\x8a\x6f\x75\xaa\xcc\x71\x93\x09\x91\x6d\x5a\x2f\x4d\x6a\x55\x30\xe1\xab\x2a\x3f\x3c\x56\x29\xf2\x73\x40\x5f\xb1\xa1\xbe\xa4\xbb\xeb\xb2\x2c\x87\x6a\x61\x46\xd9\x72\x27\x57\x66\x37\xc5\x5e\xe6\x3c\x14\x5c\xad\x0d\x8d\x08\x7f\xd4\xc8\x66\xba\x4b\x92\xa1\x24\xc0\x6d\x32\xc5\x49\x59\xbe\x32\x4d\x23\xdd\x6d\x6e\x78\xae\x75\x80\x2b\xa2\x45\x1a\x9a\xf7\x08\x15\xc2\x2a\x13\x4c\xa7\xcc\xf1\xaa\x87\x50\x0f\xad\x21\x2f\xcb\x8a\xde\x34\xa4\x8a\x13\xd3\x34\xd4\x9a\x33\xe2\x74\xc0\xf7\x16\xaf\xe9\x06\xb7\xd5\x97\x79\xbc\xb2\x62\x8b\xe8\x9f\x2c\x02\x89\x86\x5c\x1c\x7a\x3f\x4d\xf3\x55\xd5\xab\x1a\x24\xbf\xee\x78\xfe\xf0\x03\x4f\xf8\x52\x64\xf9\xab\x24\xb1\x38\x96\x16\x6a\x4c\x65\x69\x7d\x2a\xb3\xf1\x27\x63\xc4\x09\xa1\xc3\x2a\x3f\x11\xeb\x3c\xfb\xa8\x93\xb5\xf7\x6b\x3e\x10\x61\x7e\xcb\xc5\xe0\x0b\x63\xc4\x47\xc6\x17\x83\x65\xb6\x4b\xa2\x41\x9a\x09\x20\x5c\x71\xc4\x53\x11\xaf\x80\xc6\xc5\xe9\x40\xac\xf9\x20\xca\x36\x74\x20\xe2\xad\x37\x58\xae\xf9\xf2\x97\x41\xb1\xe5\x49\x02\x43\x21\x15\xe9\x17\xfb\x6a\xac\x00\x93\x2a\xf5\x23\xee\x24\xbe\x13\x78\x62\xff\x19\xee\xa9\x9e\xa8\xbc\xde\xbe\xad\x9c\xa9\xad\x2f\x2c\x8a\xf8\x36\xd5\x08\x3b\x6f\x76\x2f\xc1\xdc\xb9\x78\x11\xe6\xb7\x08\x90\x42\x8d\x7a\x2e\x46\xa3\x6a\x27\xad\xbf\xf9\x22\x98\x57\xc5\x72\x18\x5b\x4a\x54\x03\xdb\x3c\x13\x19\x4c\x8a\xbd\x0e\x8b\xef\x3e\xa6\x7f\xcd\xb3\x2d\xcf\xc5\x83\xbd\x0c\x93\xc4\x4a\x29\xee\xa7\xb0\x95\xb2\x14\xf7\xd3\x7a\xb0\xc4\x0e\xb7\xdb\xe4\x01\x59\x55\x5a\x37\x44\xf6\x9f\x64\xc2\xf2\x3d\xe9\x61\x26\xb1\x57\xf3\xa1\x96\xbd\x05\xa0\x8a\x2b\xe8\xf4\xb0\x01\x5c\x66\x35\x40\xe1\xcc\x0f\xa8\x60\xce\x27\x21\x93\xb7\x21\x13\x03\xdb\x80\x1f\xe2\x0a\x3f\xf3\x0e\xda\xc6\x65\xa9\x2d\xb6\x98\x70\xc9\x6f\xe7\x64\xce\x93\x82\x0f\xe2\x55\x67\x81\x02\xd8\x2a\x06\x42\x56\x1d\xb2\x4c\x41\x0c\x56\x35\xcd\xc9\x3c\x34\x4d\x55\x4d\x48\xf6\x55\x35\xda\x5e\x1f\x93\x6a\x50\x05\x4c\x59\x4e\x52\x39\x29\x39\x2d\xa0\x76\xbf\x08\xea\x0a\x0a\xb2\xaf\x67\xa6\xe1\xb0\xf6\x35\x27\xbf\xb0\x32\x3b\xe2\xab\x70\x97\x08\x96\xd1\x86\xc1\xcf\x88\x57\xf3\x74\x56\xce\x0e\x27\x2c\xdb\x57\xd3\x4c\xfd\x80\x90\xb2\xb4\x9a\xc2\x39\xd9\x7f\xf6\x68\xa0\x21\x37\x72\x5e\xf1\x0a\x87\xcf\x18\x57\x24\xe2\x69\x3f\x57\x9c\x18\xcd\xd8\xd3\x9e\xc6\xac\xcd\xf4\x21\xda\xe6\xcc\x99\xe7\x2f\xe2\x6a\x1e\xf3\xd1\x88\xa4\x2c\xf6\xf3\x80\x36\x8c\x5f\x4a\x5e\x32\xa7\x2c\xad\xcc\x4f\x25\x6f\x56\xaf\xc5\xec\xf7\xe0\xe4\x27\x47\x51\x1d\x3a\xda\xe4\xb4\x4b\xa2\x89\x4e\x18\xf4\x25\xac\x00\xf1\x03\xb2\x04\x76\x2c\x78\x1e\x8a\x0c\x97\xa5\x1c\x3b\x66\x37\x7c\x89\x09\x83\x57\x15\xaa\x06\x80\x14\x07\xcb\x56\x64\x3f\x20\x96\x4a\xdc\xe0\xa4\x5a\xfb\x7e\x40\x73\x36\x74\x68\xc6\x86\x2e\x8d\x99\x9c\xe6\xb9\xc8\x1f\xea\xa5\x12\xd2\x82\x71\xbf\xd3\x8b\xc0\x22\xf3\xa1\x95\x33\x2b\x64\x85\x9d\xf2\x7b\x61\x11\x62\x47\x59\xca\x91\xaf\x56\xe8\x6a\xdf\x85\xc9\x8e\x03\xa9\x2d\xcb\x54\xcd\x0a\x6c\x16\x64\x0e\x4d\x92\xf9\x7e\x19\x8a\xe5\xda\x5a\x92\xa7\x0c\xba\x10\xb3\xe5\x7e\x15\xa7\x61\x92\x3c\x3c\x41\x07\xf2\xb2\x94\x48\x50\xd8\x12\x44\x65\x59\x3d\x59\xa4\xce\x19\xaf\xac\x4c\x91\xf0\xb8\xc6\xee\x74\xbf\x47\xf8\xb5\x58\xdd\x86\xce\x03\x5f\xd6\x61\x61\x43\x21\xf8\x66\x2b\x80\x35\x8d\x78\x21\xf2\xdd\x52\xec\x72\x3e\x48\xb3\x74\x8c\x63\xbe\x49\x78\xcd\xad\x1a\x88\xd1\x7f\x24\xb6\xe0\x44\x37\x27\x29\x6d\x4b\xfa\x9e\xaf\x78\xce\xd3\x65\xd5\x5f\xa0\xa3\x83\x75\x58\xa4\x5f\xc0\x56\xc4\x81\x85\x8e\x45\x1c\x26\x71\xc1\xa3\xc1\x18\x98\x6f\x9e\x5b\xa4\x95\x03\x66\x9c\x47\xcd\x56\xc4\x7f\x4b\xd7\x7f\xd3\x51\xfe\x78\x05\x9f\x3e\x98\x66\x9f\x3d\xfe\xc6\x9f\x3d\xfe\x86\x9f\x3d\x64\x17\x9f\x3d\xfe\xea\x42\x87\x7e\xb1\x44\xf2\x59\xb1\xc4\xee\xb3\x62\x89\xed\x67\x05\x06\xab\xcf\x0a\x1d\xa2\xcf\x8a\x36\x74\xc1\xc5\xe6\xa8\xe0\x42\x1e\xf6\xd9\xd3\x36\xe7\xab\xf8\xde\x33\x56\x61\x61\xd0\x78\x99\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\x1f\xc7\x51\xf6\x31\x95\xa9\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\xb3\xbc\xb4\x67\x83\xea\xff\x64\x66\x9f\x0d\x9c\xc1\x74\x6a\x5f\xbe\x9b\xcc\xdc\xc1\xec\x7c\xba\x1c\xab\x8f\x63\xfc\x08\x0f\xf0\x79\xe0\xbc\x73\x27\xf6\xf9\x60\x72\x7e\x61\x9f\x61\x9e\xfa\xbf\xac\x04\x73\x61\x33\x63\xd5\xcc\xe9\xf8\xd2\x3e\x1d\x4c\xe0\x67\x3a\x98\xce\xec\xa9\x3d\x7b\xe7\x5e\xcc\x06\xd3\xd9\xd4\x9e\xfd\x78\x7a\xb6\x74\xc6\xee\xd4\x9e\x0e\x5c\xc7\x3e\x1f\x4f\xa0\x33\xe3\xc9\x6c\x3d\x9d\x2c\x31\xd5\x19\x4c\x66\xf8\x69\x80\x9f\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\xba\xbc\xb4\xa7\xe3\x4b\xfb\x02\x06\x71\x31\x76\x1d\x6c\x62\x6c\xcf\x1e\x8d\x60\x0f\x9b\xcf\x27\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xbb\x89\x73\x3e\x98\x5e\x2e\xd5\x27\x04\x2a\x3e\x48\xb8\x25\xee\xe5\x0c\x46\x09\x7f\x8f\x02\x7f\xe6\x4e\xb1\xc1\xd9\x12\x81\x06\xc0\x9b\xc0\xcf\x74\xac\x46\xf5\x6e\x72\x36\x1b\xb8\x67\x17\xf6\xd9\x8f\x33\x00\xdd\x00\x80\x34\x56\xf0\x91\xd0\x5b\x8f\xa7\x93\xa5\x04\xa9\x33\x9e\xcc\xc6\x0a\xae\xe3\xc9\xec\x47\x2c\xf8\xee\xec\x12\x70\xe0\xe2\xd2\x76\x97\x38\x27\x97\xf6\x05\x8c\xe3\x62\xe0\x3a\x63\x39\x3f\x08\xbb\xf8\x28\xec\x96\x61\xc2\xd3\x28\xcc\xc7\xc8\x3d\xf7\x42\x70\x72\x3e\x43\xd4\x9b\x9e\x0d\xdc\x33\xe7\x2b\x77\xb2\x1c\x9f\xd9\x67\x93\xf3\x81\x33\x76\x27\xe3\x53\x7b\x7a\x3e\x85\x07\x77\x72\x37\x9e\x02\x06\x4c\xce\xec\x53\x77\x30\x71\xed\xd9\xe5\x78\x76\x31\x98\x5d\x8c\x67\x17\xeb\xd9\xc5\x8f\xee\x64\xe9\xa8\x92\x55\xa1\x01\x96\x5b\xcf\x9c\xa5\xaa\x71\xe0\x4e\xe4\xc7\x01\x7e\xbc\x3b\x9d\xac\xdd\xc9\xef\x2e\x3a\xbb\x58\xca\xce\x38\x83\xd9\x85\xec\xd1\x00\x7b\x74\x07\x1d\x1d\x60\xc1\x71\x55\x46\xd6\xf9\x78\x05\x3f\x97\x93\xf5\x6c\x32\x3b\x56\xf3\xe4\xcc\x59\x3a\x03\xac\x79\x5c\x55\x2a\x47\xfa\xd5\xec\x62\xa9\xc6\xef\x8c\x67\x17\xe3\x0a\x08\xe3\xd9\xc5\x8f\x13\x67\x76\x64\x10\x8f\x9b\xe9\x74\x6a\x4f\x2e\xcf\x06\x97\xa7\xf6\xe5\xec\x3c\x19\x4f\x2e\x6c\xf7\xec\x12\x7e\xa6\x97\x17\xcb\xf1\xcc\x3e\x3b\x3b\x1f\xcf\xec\x73\xe7\x74\xec\x4e\xec\xc9\xd9\x29\xbc\x4c\xcf\xc6\xee\x99\x7d\x79\x3e\xb6\x9d\xb3\x8b\x77\x80\x8c\xee\x64\x30\x3d\x83\xcc\xa7\xc9\x78\x76\x6a\x5f\x5e\x8c\x67\x67\xf6\xf4\x74\xd2\x53\xc3\x99\x5e\x83\x8b\x55\x24\xb2\xbd\xf3\x01\xb4\x7e\xbe\x94\xb9\x07\x75\x49\x98\x7e\xd9\x36\x64\x1e\x60\xc1\xe4\x62\x62\x9f\x39\xee\xe0\x62\x6a\x4f\xce\x2e\x97\x98\x77\x20\xcb\xc9\xbc\x03\x55\x10\x32\x63\x1b\xee\x6c\x62\x5f\x9e\x4e\xc7\xee\xcc\xb5\x2f\x9c\xd3\xa5\xec\x52\x5d\x10\x7a\x84\x05\x21\xb3\xec\x1c\x22\x70\x78\x1c\x81\xd7\x61\x2e\xc6\x61\xce\xc3\x0a\x79\x01\x71\x6b\xe4\x75\x57\x1c\x90\xf7\xd4\x71\x06\xd3\x0b\x9c\xd1\x6a\x3e\x67\x6a\x36\x67\x8e\x44\x85\xb1\x4c\x92\xb3\x52\x61\x79\x85\xe3\x33\x89\xe1\x3f\x9e\x9f\xc9\x39\x1c\xc8\xa4\x16\x12\x76\x2b\x9e\x3a\x17\xeb\xd9\xf4\xec\xf1\x6a\x7a\x0e\x64\xd6\x3d\xbd\xb4\x4f\xdf\x4d\x2e\x00\x11\xcf\x92\xf1\xc5\x29\x2c\x76\x77\x6a\x9f\x2f\xc7\xa7\xb6\x3b\x3e\x03\x8a\x77\x6a\x9f\x8e\xcf\x20\xfd\xd2\xbe\x1c\xb8\xef\x2e\xcf\x06\x93\xd9\xc5\x9d\xeb\xcc\xd6\xd3\x8b\x59\x32\xbe\xb8\xb4\x2f\xc7\xee\xc5\xb9\x7d\xb1\x1c\x4f\xed\xc9\xf8\xcc\x3e\x1d\xbb\xae\x3d\x1b\x5f\xd8\xe7\x63\xf7\xdc\x9e\xc1\x3c\x21\xbc\x8a\xcf\xc0\x2b\x89\x53\xde\x0b\xaf\x89\xe3\xe2\x62\xbf\x3c\x03\x78\x7d\x75\x36\xfb\xf1\xc2\x59\x3a\xe3\x0b\xfb\x62\x36\x3e\xb7\x5d\x40\x18\xf9\xef\x2b\xf7\xec\x35\x24\x0c\xce\x66\x03\x67\x70\xee\xc2\xa3\x33\xb8\x70\xee\xa6\xb8\xb6\xdc\x73\xfb\xec\x7c\xe0\xce\xec\xe9\x74\x30\x9d\xc8\x7f\xeb\xd9\xd9\x6c\x09\x35\x01\xa4\xce\xb0\xba\x01\xd6\x75\x07\x64\xae\xaf\x91\xc7\xab\xd9\xd9\x6c\x70\x79\xf6\xd5\x14\xd0\x79\xb6\x84\x05\x35\xbd\x00\x22\x3d\xb1\x9d\xcb\xc1\xe4\xd4\xbe\x38\x95\x58\x32\x98\x39\x80\x8f\xd3\x09\x10\xe9\x09\x10\x57\x00\xf4\x6c\x62\x9f\x9f\x26\xe3\xf3\xa9\x3d\x3d\x97\x7f\x97\x80\x5f\xa7\xf2\xcf\x74\x62\x9f\x9f\xc9\xc7\xd9\xa9\x3d\x39\x1d\x38\xc9\x18\xa8\xea\xe5\x00\xff\x02\x02\x4c\x4e\x07\xf0\x47\x3e\xb9\x67\xd8\x38\xec\xb9\x67\x53\xd8\x17\xcf\x70\xff\x3d\x9b\x2c\xeb\x8c\x2a\x0f\x3e\x62\x36\xd8\x64\x2f\x27\x83\xc9\xf4\xdc\x9e\x9c\x26\xd8\x85\x81\xec\x08\xb4\x3b\xc0\x3f\xd8\x0f\xf9\x58\xf5\xe3\xf2\x6c\x0c\x33\x50\x8d\x66\xe9\x9e\xc2\xe2\x96\x7f\x71\xa4\x83\x99\x0d\x9b\x3b\x3c\x4a\x00\xfc\xe8\xba\x93\xa5\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x62\xf9\x09\xa4\xe0\x77\x79\x96\x7e\x82\xfd\x38\xbf\x00\xb4\x98\x38\xe7\xb6\x33\xb9\x1c\x4c\x2f\x5c\x7b\x76\x7e\x06\xfc\xc3\xd9\xc5\xd9\x00\x50\xd2\x9d\xe2\x76\x0a\x74\x4d\xff\x3b\x99\xd9\xa7\x67\x97\x6a\x5b\x9d\xb9\x08\xb5\xb3\xf3\xb1\xfc\x81\xfd\xfe\xf4\x7c\x8c\x7f\x61\xef\x3c\x9d\x4c\xb0\xd8\x29\xee\xa0\x0e\x90\xa5\xd9\xbb\x09\xec\x84\x17\x33\xfb\xd4\x39\x4d\xdc\xd3\x99\x7d\x3e\x3b\x1d\xc3\xaf\x33\x71\xa1\xfc\xf9\x25\x14\x99\x9e\x62\xf9\x19\x6c\xd7\x53\xf7\x5c\x95\xb7\x9d\x99\x6a\x70\xd0\x34\x78\x0e\xbb\x64\xf3\xb7\xea\xe0\x40\x76\xf0\xdd\x04\x61\xea\x56\x43\x54\x63\xc2\xcc\x93\x6a\x34\xf2\x05\x0b\x4c\x06\x0e\xc2\x36\xf9\x2c\x6c\xa5\x98\x52\xc2\x76\x3a\x71\x34\xd8\x9e\x4e\x15\x87\x72\x0a\x88\x72\x69\x3b\xd3\x77\x93\xc9\x85\x7d\x71\x3e\x98\xcd\x00\x0f\xa1\x39\xec\x06\x76\x56\x3d\x62\xeb\x03\x07\xc7\x27\x87\x87\xa3\x03\xf6\x4e\xfe\x51\x10\xb5\x1d\xc9\xb5\xbc\x73\xa7\xb8\x55\x4d\x4e\xcf\x12\x09\xbe\x01\x42\x13\x99\x2e\xe0\x5e\xa6\x17\xf0\x67\x22\xe1\x38\xae\x8a\x21\xb7\x54\x37\x20\x9b\xc6\xfe\x60\x57\xe4\xa3\xea\xca\x3b\x35\x82\xf3\x89\x7d\xa9\xb2\x6a\x7f\x64\x7e\x85\x07\x08\xb2\xdd\x67\x41\xa6\xa4\xc3\xbd\x30\x43\x9e\x64\x72\x71\x0a\x93\xa4\xda\x74\xdf\x5d\xba\x80\x87\x83\xd9\xd9\xb9\x3d\x75\x67\xfa\xdc\x4d\xf5\xb9\x9b\x2a\x6c\x84\x05\xdf\x46\xc8\xb1\x86\x91\x12\x15\xc7\x0a\x2f\x6d\x47\x72\xcd\x8e\xfb\xce\xbd\xb8\x00\x6c\x04\x50\x02\x87\x3a\xbb\x00\xae\xd6\xb5\x27\xa7\xa7\x4b\x89\x8b\xe3\x1a\x2f\x5d\x39\xf0\xd9\xac\x29\x7e\xb8\x04\xaa\xc5\xa2\x70\x51\xbd\x54\x5d\x7c\x27\x07\x79\xaa\x50\x43\x43\xe1\x89\x8e\xc2\x17\xb6\xe3\xb8\xaa\x10\x82\x77\x7b\x14\xbc\x9b\x38\xdd\x15\x47\x98\xe5\x0b\x79\xca\x38\x1b\x4c\x9c\x8b\xaf\x90\xf9\x44\x42\x0e\x14\x57\x52\xf3\x31\x92\xf2\x3b\x20\xd8\xfd\x44\x1e\xb6\x59\x55\x68\x30\x9d\x8c\xab\xaf\xe3\xe9\x44\x91\x79\xfc\x38\xae\x2a\x93\xff\xb0\xc7\xab\xa3\x3d\xde\x26\x47\x3b\x7c\xae\x77\x78\x72\x3e\xf9\xf1\x6c\x76\xa4\x0d\xc5\x4c\xf7\x8f\xc7\x9d\xcd\x7e\xdf\x70\xdd\xd9\x0c\x0a\x1f\x85\xc6\xe4\x08\x30\x7e\x9c\x3a\x33\x28\xfc\x3b\x61\x15\x1d\x85\x55\xc1\xc3\x7c\xb9\xee\xdd\xdc\x1d\x67\x22\x99\xa1\xd3\xc1\x0c\xb6\xc6\x77\x33\xe7\x14\x0f\x72\x53\xe0\xf6\x4e\xf1\xbf\xeb\xd8\x67\x63\xe0\x26\xc6\xe7\x5f\x4d\xcf\x27\xcb\xc9\xb9\x7d\x36\x9e\x42\xb6\xd9\x6c\x7c\x7e\x69\x03\x51\x1a\xbb\x93\x8b\xd7\x00\xf3\x4b\x38\x8d\x4e\x27\x13\x38\x14\xc1\x04\x0c\x9c\x1f\x1c\x99\x88\xaf\x05\x3e\x42\xba\xfa\xbf\x9c\x5d\xe0\x39\xf0\x72\x62\xe3\xb6\x05\xac\xd2\xc5\x18\x20\x78\x66\x4f\x91\x0d\x9b\x0d\xea\x6d\xf1\x7c\xe0\x9e\x27\x97\xd0\x22\xfc\x59\xb6\xce\x58\xda\x59\x0c\x98\x56\xe4\x5c\xeb\xd3\x5a\x75\x98\xb3\xdd\xf1\x74\xf6\x78\x05\x6d\x03\x53\x32\x3e\x87\xa3\x15\x30\x74\x17\xe3\xd3\x73\x7b\x82\x0f\xee\x04\xd8\x09\xfc\x52\xa5\x0d\xaa\x74\x99\x1f\x5e\xf1\xdb\x40\x7d\x03\x76\x07\xce\x61\x55\x5a\x55\x06\xe7\x65\x7d\x7c\x5e\xb6\x71\x9a\xf2\xbc\x9f\x4b\x75\x1d\xdc\x02\x9c\xd9\x60\x76\x71\xe4\x6c\x51\x74\x0e\x14\x9d\x13\x56\xe7\x84\xf3\xb8\x81\xb4\xe9\x59\xeb\x3c\xa2\x17\x29\xb4\xcc\xf2\x9f\xde\x9e\xde\xd0\x18\x6a\x9b\x38\x17\x63\x98\xc0\x3f\xa4\xb6\x2b\x60\x6c\x4f\xeb\xb3\x62\xe7\xf3\x0f\xc0\x61\x5d\x42\x61\x07\x72\x7d\xba\xea\xc7\x8d\x3b\xb1\x2f\x27\x13\xc0\x11\xe7\xfc\x77\xf6\x4f\x75\xc4\xb9\x94\x89\xae\x3e\x6e\x38\x56\x9d\x9e\x0d\x9c\x3f\xa4\x66\x0d\x04\xae\x73\x81\xfd\x3e\x73\xe0\xe7\xff\x04\xae\x5a\x77\x01\x03\x6f\x8e\x62\xa0\x88\x37\xbc\x26\xa3\xd3\xd3\x16\x61\x88\x70\x3b\x05\xa2\x30\x91\x2c\x82\xe3\xd8\xce\xf9\x58\xfe\x00\xaf\x8a\x78\x6e\x23\xa6\xc3\xf3\x74\x62\xbb\xc0\xd6\xcd\x60\xff\x93\x22\x95\x99\xfc\xbb\x1c\x6b\xb9\x65\x3e\xf5\x8c\x79\x81\x21\x06\x6e\xf7\xe2\x12\x2a\x3b\x3f\xb5\x2f\xa7\x03\x78\x76\x3f\x5f\x0e\x72\x0d\x5c\x38\xf0\x9c\x2e\x5b\x9d\x91\xcf\xaa\x4b\x03\xcc\xfe\xce\x75\xb0\x01\xd8\xa3\xb1\xdc\xf4\xf4\x0c\x46\xf2\xb9\x72\x28\xee\x9a\x0d\xe4\x48\xb4\xbc\x90\x6b\xa2\x1e\xf5\x71\x00\xf1\x3b\x9f\x28\x70\x0d\x74\x70\x1d\x2d\x97\xe8\xc0\xfa\x0c\x64\xdf\x35\x53\x02\x93\xdb\x96\x6b\xeb\x86\x60\x1d\x4d\xc7\x7f\x9f\x40\xfb\xb7\x74\x49\x8a\xb1\x2b\x75\xec\x20\x4e\x07\x7c\xa1\xd4\x24\x52\x43\x5f\x69\x0c\x31\xeb\x13\xea\x2e\xbc\x94\xf2\x74\xb7\x91\xf2\x7f\x6f\xe8\xd0\x65\x96\xae\xe2\xdb\x5d\xfd\xfe\x31\x8f\x85\x7a\xde\x13\x8f\xfb\x22\x60\x29\xed\xf6\xe7\xb3\x8a\x22\xde\x28\x6a\x2a\xcd\x8d\xd4\xfb\x5b\x9a\x0a\x87\x50\x2d\x9b\xbd\xcc\x52\xa9\xa5\xc8\x72\xc6\x29\xb7\x7f\xfe\x19\xbf\xfd\xfc\x33\x13\x7f\xb0\x1e\xeb\xbf\x0f\x6a\xff\xa7\xfd\xfe\x64\xf9\xab\x46\xfa\x9d\x5a\xd3\x33\x82\x06\x6f\x6e\xc7\xde\xcd\x39\x62\xef\x56\x6b\xdc\x97\xcc\xa8\xd2\x35\x33\x05\xa9\x1c\x33\x4d\x43\x9a\xef\x1c\x7c\xa9\xd5\x66\x8b\x3e\xa3\x37\x65\xea\xb0\xf7\x7a\x3e\x72\xd3\xfc\x54\x83\x6d\x3c\x60\xac\x4e\x1f\x56\xcf\x0d\xca\x2c\xaa\xde\x79\x75\x8b\xc4\xe2\xa4\x63\x5d\xf7\xdf\x37\xdb\xba\xb5\xdd\xbf\x63\xad\x20\xad\x5d\x74\xcd\xfc\x42\x7f\xf1\x9e\xf6\x34\x6f\x69\x87\x53\x32\xef\x83\xa1\xca\x72\xcb\x85\x66\x2d\x20\x81\x56\x98\xa6\x95\xb3\x1c\x80\xbb\x0c\x85\xf5\xa9\x9c\x56\x4a\xec\x55\x9c\x08\x9e\xf7\x5a\x34\xf6\x16\x7d\xc3\x8b\x65\x1e\x6f\x45\x96\x5b\x29\xe5\xc4\x6e\xc0\xb7\x27\x84\x10\x9a\xf7\x98\x30\x0a\xf2\xa4\xe6\xc7\x17\x68\xaf\xd8\x98\x58\xd4\x80\xdc\xfe\x16\xe5\xf9\x81\x7e\xf9\x7f\x40\xd1\x8e\x6d\xcf\xe3\xd5\x27\x21\x5b\x99\x5a\x7c\x12\xfa\xff\x7e\x87\x0e\x34\xe3\x5b\x55\xe5\xd7\xc5\xdb\x7a\x1e\x94\x96\x9c\xa6\xc4\x34\xb5\x11\xec\xeb\x11\xb4\xcd\x37\x7f\xa3\xa2\x5f\x43\x72\x87\xa6\x0c\x76\x43\xf5\xad\x32\x01\x99\x8b\x17\x5c\x47\x79\x98\x6c\x06\x2b\x66\xae\x2b\xb6\x49\xdb\xd0\xe7\xff\x9e\x8d\x80\x6a\x54\x0e\x64\x95\x67\x1b\xa0\x17\xed\xf6\x7f\xbb\x5a\xbd\xd8\xe6\x3c\x8c\x3e\xa5\x51\xaf\x81\x1a\xe9\xe4\x91\x71\x6a\x89\x31\x73\x08\x2c\xdd\x05\xf7\x2c\xce\xb8\x9d\xf3\x6d\x12\x2e\xb9\x75\xe2\x5f\x8f\x7f\xbe\x2e\x82\x91\x65\x93\xc5\xc9\xad\x46\xf8\x75\x0b\x0c\xb1\x10\xb6\xc8\xfe\xb6\xdd\xf2\xfc\x75\x58\x70\x8b\x78\x86\x01\x4b\xcd\x2e\x76\x37\x85\xc8\x2d\x87\xba\xc4\x16\xd9\xbb\xec\x63\x95\x61\xc4\xab\x6f\xae\xdc\x35\x04\x5a\xa0\xae\xd9\xd0\x45\xe3\x88\x35\x1b\x3a\xca\x7c\xe1\x8e\x3c\x35\x3d\xbf\xe9\x98\xe5\x01\xf3\xb3\x80\x07\x4f\xb3\xd8\x81\x0d\x05\x6d\x72\x90\x43\x86\xa7\x8a\x3d\x5e\x70\xaf\x8b\x35\xa6\x39\x81\x4a\x14\x56\x2c\x2a\xb6\x9a\xfb\x4e\xd0\x70\xd5\xdc\x77\x83\xbd\xd7\x63\x3f\xb7\x38\xc2\x86\xf3\xbd\xb2\xe8\x69\xba\xbe\x69\x81\xac\x6b\xef\x6c\x9a\x95\xbd\xdc\x4b\xa7\x2c\x87\x3d\x9f\x17\x89\xf5\xb4\xa7\x50\x87\xf7\xb4\x6f\xaa\xbd\x6a\xec\x0a\xe5\x38\x69\xca\xb8\xbd\x09\x8b\x5f\x68\xc6\x78\x65\xf0\x1a\x33\x6e\x2f\x93\xb0\x28\xa0\x77\x34\x64\xdc\x16\xb1\x48\x38\x2d\xd8\x8d\x25\x08\x5d\xb2\x8d\x65\xe0\x77\x38\x3b\xf8\x41\x45\x99\xdb\xc6\x89\xd8\x0a\x56\x0f\xc7\x5c\x9a\x33\x6e\x6f\x77\x49\xc1\xb1\xa1\x55\x7c\xcf\xa3\x9f\xe2\x08\x2d\xb5\xb9\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x59\x1e\xf1\x9c\x16\x00\xe5\xb8\x10\x5f\x0b\xbe\xa1\x4b\x28\x92\xc4\x5b\xba\x83\xea\xe2\x47\x4e\xb7\x80\x76\x99\x40\xc3\x64\xba\x92\x75\x27\x34\x62\x56\x62\x09\xf6\x64\xac\xc2\x31\xb4\x6a\x78\x29\x85\x67\x6c\xd8\xf0\x72\x7c\x59\x7d\x34\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x3f\x66\xa9\x08\x13\xc3\x33\xb4\x17\xc0\xa0\xb2\x34\x6e\x32\xb1\xc6\xe7\xa6\xc4\x1d\xcf\x45\xbc\xc4\xfc\xf5\x63\x37\xf7\x1e\xb3\x1b\x15\x04\x77\x84\xf6\x5a\x9d\xef\x4c\x53\x99\x95\xee\x08\x4d\xd0\x84\x22\x1c\xe3\xf0\x79\x53\x78\x7b\xa4\xf0\xb6\x2e\xbc\x6d\x0a\x03\xb8\x9a\xa2\xab\x23\x45\x57\x75\xd1\x55\x53\xb4\xf8\x18\x6e\xc7\xd9\x36\x5c\xc6\xe2\xc1\xa0\xdc\x86\xf7\xef\xe4\x2b\x81\x9d\xa4\xc7\x0f\x20\x3a\xee\x65\x10\xf9\x3c\x58\x70\x0f\x9a\xd9\x93\x4f\xee\xde\xb0\x1f\xa3\x09\x2b\x5d\x59\xb1\xe6\xc0\x00\x9b\xf4\x16\x50\x52\xe4\x61\x5a\xac\xb2\x7c\x63\xd0\x9e\xc5\x67\xd7\x9f\x17\xb9\x1d\x35\x6f\x96\xf6\x85\x78\xfa\x0b\x8d\xa0\x56\x58\x1c\x06\xbd\xb1\x52\x42\xe8\x9d\x22\xd3\x56\x6e\xdf\x10\xab\xa0\x3b\x58\x64\x4b\xba\xa5\x11\x7d\x92\x6b\xc7\xcb\x28\xae\x15\x2f\x04\x0e\x37\x5e\x59\xc3\x3b\xd2\xdd\x90\xe4\xda\xe0\xf3\xe1\xba\x76\x23\xe8\x67\x2c\x5b\x3e\x06\xe8\xd0\xa1\x52\x88\x4c\x52\x66\x7e\x5c\x37\xe5\xb4\x8c\xd7\xb5\x75\xec\x2a\x4e\xa3\x01\xac\x72\x83\x16\x84\x02\x88\x91\x7a\x3e\xb0\x3b\x3b\x04\x72\x1a\x2e\x05\x7d\xf5\xef\xb8\x6e\x08\xf2\x74\x55\xd9\x24\xc2\xe6\x5f\x74\xcc\x3b\x2d\x41\xca\xd2\x7a\x55\xed\x93\xe8\xc9\x71\x6b\x3d\x00\x75\x7c\x45\xf6\x57\x76\x14\x17\xdb\x24\x7c\x00\xb2\xc2\x8c\x2f\xb3\x54\xbc\xfa\xc8\x8b\x6c\xc3\xbf\xc6\x3e\x5e\xe1\xee\x0f\xfb\x56\xc1\x9e\xe4\x62\xf4\x62\x3b\xb4\x6f\xb2\x2c\xa1\x35\x3d\xc2\x24\x65\xb8\x0f\x73\x83\xef\x9a\x81\x3f\xbe\xe2\x40\x68\x5c\xb9\x01\xd0\xa6\x4c\x40\x68\x43\x7c\x9a\xea\x15\x29\x68\x12\x60\x09\x37\x55\x5b\xbe\xbe\xe6\x69\xb3\xa0\xa9\x5c\xcb\x01\x91\x32\x94\x7f\xbb\x2f\x15\x89\x6b\x1a\x86\x95\xd9\x6a\xb8\x32\x88\x47\x6d\x51\x40\x28\x12\xb3\x26\x7f\x45\x05\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x5e\xb6\x2a\x4c\x6e\x0d\x6a\xdc\x17\xb0\x4a\x60\xa9\xb8\xf7\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\xdc\x43\x1f\x80\xb8\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xb7\xbe\xf2\x2a\x4f\x03\x47\x68\xbb\xa1\x37\x75\x17\xf6\xb4\x8d\x97\x35\xfe\x0c\x5d\x0d\x73\x0c\x43\x62\x0c\x1a\xf3\x6a\x58\x30\x74\xeb\xf9\x1f\xba\x72\xe6\x31\x0b\x4e\x29\x3e\xd5\xd3\x34\x74\xe5\x04\x61\xaa\x9c\x89\xa1\xdb\xcc\x01\x26\x23\xc0\xe5\x13\x80\x69\xe8\x56\x00\x1a\xba\x6a\xf8\x86\xa1\x0d\x5b\xe6\xd4\x06\x35\x74\x25\xdb\x7f\x5b\x1f\x0f\x06\xdc\x6a\x8c\xae\x59\xf7\x3c\xf6\x72\x62\x9a\x92\x7f\x18\x32\xed\x28\x36\xd1\x8f\x62\x13\x38\x8a\xf5\x9b\xf5\xa7\xb5\x2f\x11\xb6\x9a\x31\x2b\xb5\x97\xeb\x38\x89\x72\x9e\x4a\x37\xc5\x36\xed\x6e\xce\xa4\xb2\x57\xb0\xc8\xdb\x07\x93\xd4\x0e\x85\xc8\xe3\x9b\x9d\xe0\x45\x59\x3e\xed\x89\x9d\xf3\x68\xb7\xe4\x56\x87\x21\x54\x02\x00\x2d\x37\x30\xd7\xc5\xc7\x18\x38\x39\x41\x9e\x96\x61\xc1\x25\xa3\x61\x78\x1c\x73\x15\x0d\x5f\xc2\x72\x1a\xf1\x84\x0b\x3e\xd0\x2b\x90\xdf\xe7\x37\x39\x0f\x7f\x99\x63\xf9\x42\x3c\x24\xbc\x29\x8f\xaf\x2c\xaf\xf6\x8f\xf9\x27\x1c\xe0\x60\x2f\x88\x37\x16\xf9\x0d\xfb\xd2\x27\x06\x08\xac\x4f\x73\xee\x31\x3c\x83\xd0\x8c\x45\x96\xb0\x8b\x24\x5e\x72\xcb\xa1\x39\xc2\xaf\x7a\xcf\x47\xc0\xfd\x62\xbb\xf5\x11\xcd\x46\x1f\x96\xe2\xa7\x58\xac\x2d\xe3\x23\xbf\xf9\x25\x16\x06\x59\x70\xdf\x4a\x59\x46\x61\xb2\xc2\xfc\x95\xb0\x1c\xd2\x66\xab\x47\xa9\xaa\xd2\x25\x24\x60\xb1\xc7\xfd\x2c\x60\x31\xe5\x7b\x42\x9f\xf6\x44\x81\x48\x2d\x1a\xcf\x69\x39\xe4\x19\x61\x1e\x87\x63\x83\x94\x65\x27\x3d\x0a\x05\xa4\x2f\x14\x34\x7d\xd1\x66\xd4\x03\x96\x57\x80\xf6\x23\x4b\xc0\xbb\xe6\x7c\x40\x9f\xf0\x0b\x30\xa4\x84\x86\x30\x07\x30\x17\xb4\x60\xb5\x68\x32\x5c\x3c\xed\xbd\x90\x2e\xd9\xd6\xca\xa9\xaf\xa6\xae\x39\xab\xc6\xad\x39\xc4\xcd\xb7\x95\x04\xbb\x9c\x50\x9b\xa2\xac\x93\xfa\xa9\x2d\xc2\x5b\xaa\xe7\xa5\x4b\xa2\xb1\xac\x19\x21\x64\x6f\xdf\xc4\x69\x24\x6d\xfc\x0b\x3b\xec\xb8\xf9\x74\xc5\x99\x38\xa9\xf3\xb4\xc7\xf0\x5e\xac\xe3\x62\x6f\x11\x3c\x93\xa4\x2c\x2d\x4b\x38\x87\x7d\x59\x65\x33\xb4\x5c\x06\xb1\x88\x3a\xb1\xe4\xe4\xe9\xb8\xaf\xa0\x95\x32\xf9\xa8\xf9\x05\xb0\xf4\xdf\xb7\xdf\x1f\x5a\xcd\xf1\x2e\x5b\x0d\x04\x21\xbd\x07\xc5\xd7\x61\x0a\x7c\x03\x9c\x38\x07\xe1\x00\x97\xd2\x20\x2c\x06\x61\xcd\xbb\x18\x7f\xac\xa5\x75\xcb\xaf\x93\x39\xf3\xf4\x45\x75\xae\x99\xa7\x8d\xdf\x87\x40\xa7\x4d\x4d\x30\xc3\xf4\x97\xb2\x04\x02\x6c\xeb\x72\x2e\x36\x74\xa8\x81\xe2\x30\x23\x4e\x07\xc0\x39\xe5\x76\x25\xf7\x62\x43\x87\xd0\x63\x52\xb4\x1c\xe8\x17\xcd\x89\x76\x62\xca\xba\x72\x38\xd3\xcc\x2d\x4d\xf6\x4b\x05\xa1\x29\xa6\xd1\x94\x7c\x4e\x6c\x9a\xfd\xbf\x57\xdc\xab\x0f\xf8\x0f\x16\x00\x66\x7f\x80\x00\x30\x63\xd9\xff\x94\x00\x30\xeb\x67\x84\xf3\x23\x02\xc0\x3f\x12\x01\xfe\x7f\x61\xd6\x1f\x24\xcc\xfa\x1d\x44\xcb\x6a\x85\x54\x98\x4c\x08\xb1\xc5\xa3\x9d\x64\x61\x64\xc1\xfb\xf4\x77\x4d\x64\xe3\x24\x58\x70\xe0\x54\x25\x78\xbe\x5b\x2d\x1a\xcc\xd4\x52\x7b\x75\x10\x8d\x72\xa9\x16\x9f\xb6\x4b\x01\x24\x51\x97\xf0\xc7\xfa\xc4\xd4\x03\xf8\xff\xae\xce\x25\xd3\xc6\x99\xfd\xd6\x71\xe6\xdd\x25\x42\xfa\xc6\x08\x20\xfc\xef\x1b\x5f\x5e\xe3\x40\x3d\xb6\x58\x17\x28\x0e\x45\xcb\x61\x38\x43\x99\x61\xd3\x8d\x46\x00\x24\x16\xff\x63\x5a\x64\x8b\x13\xef\x33\xda\xd3\xf8\xf7\x7a\x01\x1e\x5b\x86\x5d\x87\xbf\xc3\x35\xc7\x04\x45\xac\xa1\x82\x74\x78\x04\x04\x4f\x2f\x0c\x6b\x21\x9a\xe8\xe7\xba\x7e\x00\x78\x0c\xf8\xfd\x36\xe7\x45\x81\xc2\xdf\x5d\x21\x06\x3c\x16\x6b\x9e\x0f\x6e\x38\x8a\xae\x07\x59\xde\x62\xc3\xe6\x9f\xd0\x52\x9b\xa6\x46\x7a\xe9\x93\x86\x40\x9e\xe2\x11\xb8\xce\x05\x74\x39\x04\xe0\xce\x25\x97\x03\x83\xfc\x1d\xdb\x59\xd7\x35\xf8\x70\x56\x0e\x19\xde\xc6\xeb\xb5\x21\xbb\xa2\x76\xbc\x5f\x40\x25\x43\x87\x78\x1d\x6c\x1c\xf2\x3a\xcb\xa1\xe3\xf8\x3f\xff\x73\xc7\xf3\x87\x41\xce\x7f\xdd\xc5\x39\x07\x2e\x56\xb2\xd2\x83\x8f\xb1\x58\x0f\xc2\x41\x55\xb2\x41\xba\x14\x17\x29\xec\xee\xfb\xfe\xe8\x1f\xb2\x82\x85\xfc\xf1\xd0\x8b\x5a\x3b\x17\xd3\xac\xc7\x09\x3a\x66\x7e\x40\x43\x96\xd6\x1d\xa5\x05\xeb\x25\xdb\x74\xc9\x62\x79\x60\xa3\x09\x8b\x15\xb3\x43\x77\x2c\x46\xff\x4d\xba\x65\x71\x75\x0c\xa3\x2b\xf6\xb4\xa7\x11\x5b\xd5\xdb\x2a\x5d\xb3\x55\x47\x14\x47\x6f\xd8\xba\xf9\xbe\x61\x37\x72\xeb\x95\x4d\x63\xf0\x8a\x3d\xbd\x65\x87\x04\xa9\x8f\x18\xf1\x26\x6a\x81\x16\x5e\xc0\x4e\xb3\x88\x03\x1a\xef\xe9\x5d\x4f\x45\x2a\x10\x02\x37\x4d\x8e\x2a\x13\x09\xb4\x3d\x7d\x60\x4f\x50\x03\x20\x5e\x91\x2f\xe1\x27\xcd\xd2\x25\x97\x0f\x57\x59\xb4\x93\x48\xd8\xac\xdc\x57\x2d\xbc\xa2\x19\x8d\x99\x85\xa7\xab\x90\xb4\x4f\x6a\x96\x21\x19\x39\x03\x05\xaf\xb1\x2d\xf8\xbd\x60\x80\xc4\xa8\x94\x04\xce\xe5\x81\x58\x19\x13\x7e\x1e\x94\x25\x82\xff\x55\x25\x37\x80\x25\xa3\xbf\x5b\x39\x21\xa6\x19\x03\x79\xd0\xd2\x68\x46\xe6\xa9\xbd\xe6\x61\x04\x87\x4c\x9e\x46\xaf\xd7\x71\x12\x59\x31\xb1\xb7\x61\xce\x53\xf1\x6d\x16\x71\x3b\xe7\x9b\xec\x8e\x57\x5f\x1a\x22\xd1\x8d\x11\xc1\x18\x5f\xf0\x91\x61\x78\x3d\x8b\xa1\x2c\x7b\xa7\x61\xb1\xf2\xa3\x8a\x83\x0a\x1a\x0a\xde\x6c\x67\x00\xa1\xc7\x03\xa9\x91\x16\x2a\x86\xdb\xab\xd4\x06\x6a\x2c\x25\x37\xf4\x67\x76\xf2\xc1\xbf\x2e\xae\x77\x5f\xbe\xfd\xf2\xcb\xeb\xfb\x57\x4e\x30\x2a\x3b\xef\xcf\x4e\x6e\x9b\xb9\xf8\xae\xd1\x1f\x0d\x87\x80\x16\x92\xa3\xc4\xf0\x12\xb0\x59\xa9\xe8\x3b\x29\xfb\xd8\xc4\x55\x18\xde\xa2\xe2\x6c\x78\x87\x3f\x96\x81\x52\x50\x18\x56\xaa\xc4\x0b\x2d\x37\xfd\x86\x68\x8a\x97\x8e\x69\x8a\xb1\x8b\xe7\x1e\xb2\x7f\xb4\x57\x29\x7b\xd4\xa8\xde\xd3\x3f\x31\x9c\x84\x67\x4c\xed\x99\xed\x1a\x54\xa7\x73\x8f\x54\xf6\xc4\x73\xa8\xc8\x90\xc9\xf4\x7a\x1c\x4e\x25\x2c\x61\x19\x93\x3d\xbd\xe5\xa2\x6f\x7f\xae\xa6\x4a\xcf\xec\xf1\x17\xce\x02\x9e\x7c\x3e\xc2\xf0\x5e\xb2\xb1\xc0\x93\x69\xc1\x9e\xc2\x92\xfd\x41\x84\xcb\x5f\xbc\x03\x95\x18\x7b\xb4\x37\x3c\xbf\xe5\x32\x5e\x98\xd6\x69\x8b\xd0\x26\x16\x05\x50\x70\x7e\x27\x57\x2b\x86\x10\xa3\x62\x4f\x79\xb8\x5c\xf7\xf5\xf1\xd1\x86\x2f\x32\xaa\x03\x27\x7b\xba\x09\xb7\x7d\xd9\xb0\xc1\xba\x67\xd6\x23\x0a\xbe\x3a\x44\x4c\x47\x18\xa5\x78\x17\x34\x85\x8d\x80\x00\xa9\x47\xfa\xd4\x03\xca\x4e\xd5\xcb\xfe\x38\x13\xb0\x57\xc4\x79\x21\x8e\x55\xc0\x7f\xb5\x1c\xb2\xa7\x49\xf8\xc9\x2c\x63\x97\xec\x29\xff\xb5\x07\xb2\xda\x5c\xd0\x94\x8d\xf8\xc8\xc2\x89\xf2\x9c\x06\xac\xed\x7e\xa6\x2f\x99\x63\x9a\xe9\x0b\xb1\xf0\x71\xea\xd2\x20\xf0\xfc\x00\xaa\x4f\xa3\xa3\xa3\xac\xe7\xa5\x2c\x0f\xa7\x50\x4e\xbd\xb7\xa3\x45\x96\x0b\x2f\xb6\xe1\x87\x16\x5b\x04\x9b\x54\x5a\x2d\xf9\x9e\x3e\xda\xfc\x5e\xf0\x34\x62\x80\xd4\xd5\x73\x57\x3f\x04\x44\x8f\x22\xbd\xa3\xa1\x76\xc0\x76\x82\xb2\x7c\xda\xd3\x82\xb9\x74\x79\x20\x0a\xa6\x09\x1b\xba\x68\x84\x61\xdc\x64\x59\xc2\x43\x9d\x7e\x84\xa6\x69\x25\x2c\x6c\xd5\x56\xa8\xda\x46\x23\x42\x0f\x09\x51\x58\x96\xb7\x56\x48\xca\xd2\x0a\xd9\xd3\x9e\xd0\x82\x31\xb6\x34\x4d\x2b\x94\x28\x59\x8c\xc7\x64\x5e\xbc\x58\xce\xa1\xb8\x32\x5e\x19\x32\x8b\xb7\xea\x27\x48\x7e\xa5\xf4\x82\xe4\x78\xe4\xa4\x46\xcd\x4f\xe1\x86\x62\x9a\xe1\x90\xb1\x1c\xba\x67\x9a\xf0\xf3\x68\xc7\xc5\x5f\x93\x30\x4e\x2b\x75\x1b\x74\x21\x63\xdd\x70\x1d\x84\x2c\xac\x94\x85\x50\x63\xcc\x32\xd3\xec\x28\xc2\x53\xb2\xf0\x03\x2f\x2b\xcb\x6e\x75\x29\x59\xa4\x52\x30\x31\x74\x29\x14\x67\xd5\x84\x58\x09\x8d\x69\x4e\xaa\x08\x1b\xaa\x57\x98\x25\x27\x35\x16\x85\xcd\x0c\x5a\x4f\xfc\x7e\x1b\xa6\x51\xe6\x29\x7e\xc3\x18\x59\x8a\x20\x8d\xae\x42\xb1\xb6\x73\xf8\xb8\xb1\x50\x44\xac\xac\x24\xae\xdf\x9c\xdc\x52\xc3\x20\x34\x2e\xbe\xe7\x61\xf4\x00\x5b\x1f\xea\xf3\x5a\x28\xdd\xe5\x67\x60\x61\xa7\x59\xb6\xd5\xf1\x72\x4f\x5b\x03\x3b\x5c\x12\x34\x9d\xb7\x82\x04\x55\xc7\x75\x99\x3f\x00\xe8\xd7\x3b\x0a\x10\xe7\xa1\x25\x58\x01\xcf\xbd\x3b\x90\x95\xb2\x75\x45\x13\x0c\x0d\xed\x0d\x34\x48\xd0\x12\x88\x69\x2a\x7e\x23\x25\x8c\xb1\x0d\x81\x8e\xbe\xdd\x6c\xc5\xc3\xb1\x8e\xce\x75\x24\x91\x3d\x76\xab\xae\x3b\x7b\x7a\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\xbc\x36\x87\x0e\xcc\xc1\x93\x64\x20\x90\xef\xc5\xc7\x3d\x39\xa0\x95\xba\x34\xde\x41\x63\x27\x18\x25\x34\x9a\xd6\xe6\x1c\xf3\xfc\x45\x6a\x9a\x43\x17\x50\x52\x01\xc5\xcf\x03\x9a\x53\x8c\x4a\x87\x76\x4c\x32\x72\x4c\xcd\x4f\x70\xc0\xfa\xa1\x0c\x66\x77\x50\x80\x48\x09\x7b\x7d\xa0\xa1\x22\x8f\x37\x9f\xda\x62\x0c\xc3\xb3\x80\x23\x68\x50\xe5\x67\x40\x13\xa0\xe7\xbf\xf0\xce\x26\xa6\x85\xde\x13\x65\xe9\x37\x52\x9c\x8a\xe9\xb2\xbe\xb3\x6a\x39\x0d\x59\x54\x7b\x4e\xda\xa7\x19\x5f\xf8\x3c\xf0\x38\xf1\x76\x55\xfc\x20\x8e\x01\xf8\x68\x9c\x1e\x36\xaa\xf3\x13\xd8\x6d\xb1\x18\xbb\xde\xb6\xc2\x0a\x8e\x5c\x05\xb6\xd5\xe9\x6b\x23\xe6\x1d\x55\x32\x5e\x98\x0a\xb4\x06\x69\xc0\x8f\x40\xe6\x7e\x36\x1a\x05\xc8\xa7\xd5\xd0\x53\x79\x58\x46\xf9\x9e\xde\xe6\x7c\x7b\xd0\xab\x3a\x54\x12\x30\xdc\x19\x73\xd0\xb0\x44\x35\x14\xb2\x61\x3a\xcf\x5e\xc4\xf3\x6c\x34\x22\x43\x61\x71\x3f\x0b\x68\x46\x86\x8c\x85\xa6\x99\xcb\x00\x29\x90\x56\xaf\xf0\xbc\xbb\x89\x76\x39\x50\x87\x86\xcc\x0f\x5a\x88\x94\x37\x23\x89\x5f\xe4\xf3\x78\x34\x22\x8a\x20\x66\x0c\x9a\x8c\x03\x1a\xd3\x14\x96\x59\x28\x5b\xcc\x34\x74\x8a\x25\x3a\x7d\xb6\x40\x15\x09\x43\x6d\xb0\x70\xb6\x00\xde\x65\x17\x47\x9e\x4b\x8b\xdd\x16\x4e\x4e\xde\xd5\x9e\xd0\x4f\x09\x15\x2c\xd8\x76\x0e\x82\xc8\xb0\xf8\x20\x89\x50\xc5\x5a\x18\x7f\x96\xbb\xc9\xe0\x5b\x64\xd4\x06\xf2\x58\x51\xeb\x36\xa4\x1c\x6f\xf0\x26\x14\x7c\xf0\x3d\xbf\x7d\x7b\xbf\x55\x14\x46\xd2\x2e\xd5\xb0\xa1\x19\x6d\x74\x6d\xc3\x56\x7e\x4d\x9b\x30\x72\x61\x60\x04\xac\xa3\x5c\xaa\x4c\x86\xdf\xb3\x1e\x32\x57\x6d\x94\xb4\xa0\x4b\x9a\xd0\x1d\xdd\xd2\x15\x8d\xe8\x9a\xde\xd0\x0d\xbd\xa2\xb7\xf4\x8e\x3e\x30\xa3\x88\x1f\x1f\x13\x6e\x8c\xdc\xe7\x40\x57\xa1\xbb\xf4\x15\x6b\xce\x90\xf4\x23\x73\xe8\x23\x73\xe8\xcf\x6c\xc9\x2d\x42\xbf\x93\x3f\xef\xe5\xcf\xbd\xfc\xf9\x96\xf5\xcb\x08\x54\x84\xcd\x2d\x2a\x18\x9c\x3d\x7d\x77\x18\xfd\x8a\xbe\x05\xdc\xfc\x81\xbd\xb5\xb7\xd9\x96\xfe\x0a\xbf\x70\xb4\x7b\x5d\x3d\xfc\xc2\xde\xaa\x13\xe0\x4f\xec\xd8\xea\x71\xa8\x86\x67\xe9\x8b\x1c\x15\x25\xf1\xca\xe2\x7e\x1a\x40\x17\x1a\x65\xae\x7c\x18\xbb\x7b\xfa\x86\x19\x18\xcb\x81\x47\x65\x81\xc1\xd7\x78\x54\x86\xc5\x43\xba\x2c\xc3\x9d\xc8\x56\xd9\x72\x57\xe0\xd3\x36\x09\x1f\xca\x65\x96\x8a\x3c\x4b\x8a\x32\xe2\x2b\x9e\x97\x51\x5c\x84\x37\x09\x8f\xca\x75\x1c\x45\x3c\x2d\xe3\x62\x13\x6e\xcb\x24\xcb\xb6\xe5\x66\x97\x88\x78\x9b\xf0\x32\xdb\xf2\xb4\xcc\x79\x18\x65\x69\xf2\x50\xaa\x03\x77\x54\x16\xcb\x6c\xcb\x23\x83\xfe\x99\x19\xfe\xf5\xf5\xfd\xc4\xb9\xbe\x16\xd7\xd7\xf9\xf5\x75\x7a\x7d\xbd\x0a\x0c\xfa\x57\x66\x58\x0b\xef\xfa\xfa\xfa\xda\x2e\xfd\xeb\xeb\x8f\xe3\xa0\xf4\x3f\x5c\x3b\xe3\xeb\xeb\xfb\xd0\x09\xc8\xc8\xa0\xdf\x33\xe3\xfa\xda\x37\x46\x7f\x1e\x19\xcf\x2d\x63\xf4\xd7\x91\x41\xac\x85\xa7\xde\xfd\xe7\x1f\x9e\x95\xc3\x7f\x05\x0b\x46\x54\xca\xc2\xfb\xc2\x6a\x6a\xfc\x00\xbf\x5f\x04\xe4\x39\xf9\xa2\xbc\x36\xba\x1f\xae\x0d\xf8\x72\x6d\x94\xaa\x5e\x52\xaa\x5a\xae\xaf\x03\x83\xfe\x9d\x19\x5e\xd3\xe0\xf5\xb5\x65\x59\xff\x7e\xd5\xa4\xec\x7e\xb1\x88\x7f\x7d\x1d\x04\xa5\x31\xfa\x7e\x64\x90\xe7\xa4\xb4\x9f\x93\xeb\x6b\x68\x9a\xfe\x93\x49\x49\x1a\x2c\x1e\xeb\xcf\x23\x63\x64\x50\xe3\xd6\x20\xf4\x6b\x3d\xdd\xf8\x80\x7d\x1c\x61\xc5\x1f\x54\xa5\x01\xa9\x5a\x21\xcf\xe5\x18\x46\xcf\x54\xe1\xbf\xf5\x14\x7e\x4e\xe5\x8f\x41\xe8\x57\x7d\x9f\x2d\xff\xe5\xe8\x5f\xd0\xc5\x3f\x8f\x0c\x52\x67\xfd\xb2\xd3\xbd\xf2\xa5\x41\xe8\x8f\x7a\xe2\xdf\x09\xfd\xaf\x6e\x7d\x7f\x1d\x19\xcf\x0c\x42\xff\xc2\x9e\xbe\x7e\xe3\xb5\xbe\xfd\x49\x41\xd7\x20\xf4\xf5\xbb\x57\x3f\xfc\xd0\xfe\x7a\x7d\x6d\x37\xdf\xdf\xbf\xfa\x4b\xfb\xab\xfc\x54\xfa\xcf\x03\xf8\xfc\xea\xfd\xfb\xef\xbd\x4e\xbb\xdf\x13\xfa\xd7\x1f\xde\xfe\xed\xcd\x77\xdd\x0f\x7f\x27\xf4\xf5\x57\x5f\xbf\xeb\x74\xc6\xb3\x10\x71\xf1\x6c\x52\xc2\xe9\xa3\x4c\xc5\x1a\xfe\x8f\xe1\x85\x8c\x2d\x34\x87\x28\xb3\xd5\x18\x5d\x3f\x24\x46\x28\x68\xf1\x3b\x9e\x96\x59\x14\x95\x96\xe5\x8f\xc6\x41\x49\xac\xeb\xeb\xe8\x39\x49\xcb\x06\x29\xd5\x07\xf5\x7e\x7d\x1d\x8d\x48\x49\x6a\x6c\xc3\xd9\x37\x62\x83\x50\xe0\xd8\x3b\x23\x05\x64\x7f\x33\x32\xc8\x33\x95\x25\xe5\x3c\x2a\x5e\x67\xa9\xe0\xf7\xa2\x3b\x36\xa8\x4e\xce\x9d\xd7\xf4\x8a\xff\x5a\xde\x8a\x32\x91\x23\x6a\x06\xd8\x1e\x83\xb5\xf0\xc6\xd7\xd7\x11\x59\x60\xd7\xb5\x8e\x59\x0b\xe6\x7f\x18\x07\xe5\x33\xd5\xc5\x3d\xfd\x0f\x76\xf2\xd5\xfb\xab\x77\xcf\x4e\x62\xfa\x9f\xec\x04\x3a\x18\xa7\xdb\x9d\x50\x74\xa5\x84\x7e\x85\x39\x0f\xcb\x9b\x9d\x10\x59\x4a\x20\xdf\x33\x76\xf2\x61\x7d\x1d\xc1\xe3\x37\xec\xe4\x83\xff\xe1\x29\x18\x5d\x3f\x5d\x17\xcf\xaf\xfd\x34\x14\xf1\x1d\x1f\x5c\x7f\x3c\xa1\xff\x90\xb5\xfd\xc9\xf2\x81\x10\x8c\x48\x69\x5d\x7f\x1c\x91\xf2\xda\xae\x12\xc8\xb3\x13\xca\x39\x3b\xf1\x47\xff\x0a\x4e\xa8\xe0\x2d\x5c\xc3\xc5\xe5\x5f\x5f\x47\xe1\x78\x15\x3c\xb9\xf4\x6c\x8f\xa3\x58\x94\x72\x88\xa4\xb4\x71\x04\xb7\x08\xc2\x03\x37\x24\xc9\x36\x18\xce\xbd\x31\x12\xe3\xb3\xd3\xd3\xe9\x59\xcd\x07\xc0\x09\xa0\x2c\xd3\x85\xf0\xf2\x17\xce\x42\x29\xb1\x56\x79\xb6\x79\xbd\x0e\xf3\xd7\x59\xc4\xad\x7c\x84\x25\x88\xd7\xfb\xf1\xe5\x4b\xd7\x29\x4f\x4f\x27\x97\x67\xd4\x75\x26\x53\x33\x2f\x4f\xcf\xa6\x13\x38\xe5\xe6\x9c\x9d\x58\x3e\x90\xbb\x7b\x77\x75\x7d\x7f\xbe\x0a\xca\x0f\xe3\xc5\x75\x44\xca\x0f\xe3\x67\x8a\x10\xaa\x2f\xe3\xeb\xdd\x97\x5f\x7e\xf9\x25\xc0\xe1\xe4\x96\x66\xbc\x7f\x07\x12\x0b\xe3\xda\x31\xd0\xc6\xd9\xb8\xde\xad\x56\xab\xc8\xf0\x78\x6d\x65\x32\x76\xc9\xc8\xb8\xbe\x36\x46\x1c\xed\x45\xa0\x77\xaf\x44\xad\x1e\x1c\xa3\xc9\xb5\x1c\x81\xe5\x9e\x91\x91\x31\x30\x3c\x99\x7d\x4f\x63\xae\x9f\x4d\x57\x70\xc8\x0d\x39\x7b\xe0\x7d\x2a\xd6\x21\xea\x06\xec\x6a\xd7\x30\x4d\x63\x15\xf3\x24\x2a\x38\x1e\x2b\xa5\xcc\xf0\xdb\x70\xc3\xbb\x5b\x3b\x7d\x8a\xe2\xdc\x33\x1a\x39\x9a\x41\x53\xc0\x71\x23\xe1\xb7\x3c\x8d\x8c\xbd\xb4\xaa\x78\xad\xf8\x9e\xb7\xec\x17\xc9\x72\xbe\x92\xa6\x4a\x50\xa2\x20\xb4\xfd\xf6\xd6\xd7\xdf\x2b\x21\x4d\x23\xb6\x94\xf6\x17\xdf\x71\xf2\xf4\x9a\x3d\x61\xbd\xde\xdb\xca\xb2\xbb\x0d\xe1\x5f\x6b\x4b\x4b\xd5\xac\x20\x2d\x6d\x4e\x7b\x8b\xe6\x1a\x7f\x3b\xe7\x7e\xaa\x98\xd9\xd1\x28\x98\x93\x79\xcd\xc9\xc2\xce\xac\xd9\x19\x14\x1c\xb1\x31\xa7\x99\x72\xb5\xa0\x85\xe2\x63\xd6\xc0\xbf\x30\x3c\xdd\x64\x1f\x53\x9e\xbf\x69\xb8\x15\xb1\x10\xf5\x70\xbc\x4b\x8c\x89\x09\xe8\xea\x07\x35\x9b\x3f\xd4\x85\x8a\x70\x04\x84\xd3\xcd\x47\xd3\xbc\x94\x3f\x2e\xbe\x56\x3c\x03\x06\xd0\x1c\x66\xa6\x69\x59\x50\x73\xab\xb5\xb2\x14\xde\x2b\xe0\x98\x23\xd3\x5c\x59\x82\x50\x01\x07\x8f\x88\xde\x10\x94\xc4\xbb\xaa\x5e\x6b\xcb\xfe\x61\xf3\x7b\xbe\x04\xae\x18\xf8\x92\x98\x6d\x7d\x37\xc0\x3c\x97\x0c\xda\x92\xe6\x28\x09\x43\x81\xab\x92\xdc\xfe\xf9\xe1\xeb\xc8\x8a\x09\x69\x75\x24\xb1\xe3\x08\x23\x6a\x56\x89\x92\x09\x4e\x08\xcd\xeb\xc8\x9b\xb7\x28\xd2\xb8\xed\xa9\xca\x34\xef\x2c\x41\x13\x62\x9a\x9f\xab\x07\x3a\xb4\xf5\x27\x41\xf5\xbd\xc2\xb1\x9c\xea\x5d\x2c\xfe\xfc\xf0\x3e\xbc\x05\xd4\x45\x13\x64\xec\x21\x0e\x6e\x1a\x10\xd3\x4c\xdb\x39\x5f\x57\x46\x6a\x4a\xae\xdc\xf3\xe5\xb3\xad\xd5\x39\x61\x34\x34\xdf\xc7\x2b\x2b\xb5\x7f\x2d\x42\xd3\x1c\xde\xfb\x1c\x16\x68\x00\x07\xf6\x4d\x59\x0e\x37\xb6\xe0\x85\x50\x47\x78\x9c\x88\x76\x3c\xe0\x23\xab\x4e\xce\xdc\x15\xe3\x80\x5e\x14\x4e\xb1\x1f\x4d\xf3\xcb\xba\x2e\xc4\x68\x6b\xc7\x3a\x92\x71\x23\x8e\x0c\x42\x16\x3b\xb6\xab\x8f\xa9\x39\xa7\x19\x27\x9e\x68\x8b\xcb\x21\x23\xdd\xb1\x07\x42\x0b\x66\xad\x59\x08\x75\x56\x8c\x6b\x31\x1e\xcf\xc9\xda\x2f\x02\x66\xfc\xc9\x18\xed\x60\x34\xa3\x3b\x6e\x41\x0a\x99\x5f\xb1\xb5\x8a\x87\x4a\x0d\x42\x6f\x19\xe7\x55\x9f\x4c\xf3\x0a\xbd\x30\x6b\x2a\x41\xca\x52\xec\x31\x3c\x65\x17\x9a\xb7\x87\xc1\x86\xaf\x10\x8e\x72\xd5\x3f\x92\xa7\x7b\x8b\xd3\xa1\xd3\xc4\xae\xdc\x31\xc6\x1e\x60\xc2\xa4\x04\xbf\x33\xe2\x7d\x1d\xce\x72\x69\x35\x1e\x2f\x5f\x53\xe3\x99\x6b\x10\xb5\x70\x9b\xd5\x0c\x27\x85\xa7\x2a\xb4\xed\xbc\x63\xc4\x31\x10\x52\x57\x54\x9f\x6d\x11\x1f\x53\x00\x02\x79\x99\xdb\xcb\x70\xb9\xe6\xef\x10\x4e\xa6\xa9\x4c\x1c\x85\xcf\xed\x62\x1d\xaf\x84\x45\x02\x2a\x7c\xcc\x1b\xb0\x4c\xa3\x1f\x09\xd7\x95\xca\xfe\x43\xc0\x86\x4e\xcb\xaf\x8f\x37\x72\xd2\xa8\xab\x37\xa9\x69\xb4\xa4\xb2\x8a\x94\x0f\xb9\x25\x88\x46\x25\x2b\xb9\x4c\x13\x17\x54\x9b\x09\x54\x3a\xf6\x6b\x41\x90\x58\xa0\x81\xbf\xe6\x1d\xc7\x0f\xa9\xa6\x3a\x1d\x96\x68\x21\x59\x85\x28\x9d\x67\x80\x2a\x39\x9a\xee\x7d\x15\xa6\x51\xc2\xfd\xd4\xcf\x82\x80\x09\xcd\xed\x8b\xb7\xe4\x21\xa6\xc9\x69\xce\x52\xd3\x74\xeb\x2d\x07\x08\xa4\x7c\x17\xda\x3b\xb7\x8b\x6c\x97\x2f\xf9\xd7\x69\xc4\xef\xc7\x42\x7f\x93\xf1\x85\x75\x72\x94\xe2\x21\x7f\x9e\xb2\x14\x43\xac\xfe\x10\xdf\x24\x71\x7a\x3b\x47\xb9\xa7\x76\xf0\x1a\xbb\xb5\xcc\x62\xe1\x7a\x63\x57\xf3\xa3\xe2\x7d\x06\x3d\xf5\xfe\x6d\x20\x23\x65\xb0\xe3\xeb\x15\x40\x8c\x9a\x0f\xc6\xb8\x06\xca\xf5\xb1\x7a\x15\x38\x8e\xd4\xa6\xba\x69\x35\xed\xa6\x65\x69\x48\xbe\x0d\xdf\x8e\xb5\x77\xf3\x99\x71\xa0\x07\x46\x2c\xfd\xbc\x74\xfc\x50\x72\xb2\x8a\x35\x58\x18\x49\x78\xc3\x13\x99\x53\x7b\xd6\xca\xb4\x2a\xa8\x0b\x42\x77\x3c\xd1\x7d\x8d\x8b\x37\x5a\x42\x59\xea\x29\x43\xc6\x86\xdc\x34\x43\xc0\xe7\xbe\xd2\x5a\xeb\x30\x66\xfd\x9b\x36\xee\x8d\x3e\xee\x84\x77\xac\xc1\x2a\xff\xb8\x91\xa0\xad\x6f\x29\xcd\x1b\x2c\xcf\x68\xcc\xb8\xe5\x07\xb4\xc2\x6e\x2a\x08\x0d\x59\xed\x2a\x19\x02\xae\xa7\x7e\xc6\x62\x3f\x0c\x02\xbc\x14\x23\x0b\xd8\xd0\xca\xe1\x07\x9e\x09\xda\x9a\x11\x8d\xd2\x5c\xf1\x8e\x31\x49\x9f\xde\x9a\xf7\x6e\x64\xa6\xc9\xf7\xb5\xd8\x35\x65\x05\xb7\x95\x00\x49\xba\x9a\x16\xdc\x8e\x8b\xbf\x5f\xbd\x3b\x14\xb7\xc0\xa2\x0a\x37\xbc\xd8\x86\x4b\xfe\xb7\xef\xbf\xa6\x29\xb3\x78\x97\x5b\xe0\xa4\x16\xab\xa8\x86\x2b\x71\xee\x7f\x48\x6a\x2e\xca\x32\x85\x8d\xb3\xc2\xce\xb2\x34\xe0\x64\x01\x87\x8c\x15\xf6\x85\x8b\xaa\xb6\x1e\x81\x4f\x46\x43\xc6\x17\x87\xad\x7a\xaf\x6a\x21\xbd\xe4\x55\x80\xe9\x08\xb5\x35\x1f\x76\xbb\xb5\xb0\xd6\xcc\x8a\x58\x78\xd0\x5f\x7a\xc3\x86\xb1\x15\x11\xfa\x4a\xd6\x64\x65\x2c\xaa\x9c\x0c\x7e\x8c\xf9\x47\x62\x9a\x99\x2d\xb2\xed\x90\x31\x60\x99\x32\x3b\x8c\xa2\xb7\x77\x3c\x15\xef\xe2\x42\xf0\x94\xe7\x8b\xc3\x24\xcb\xd8\xa5\x49\x16\x46\x06\x8d\x39\x1d\xba\xc4\xcb\x80\xb0\x85\xcb\x35\xe6\x82\x0a\xb5\x57\xcb\xc8\xd2\x26\x3b\x06\x94\x6d\x0c\xdd\xd9\xae\x97\xff\x1e\x68\x9e\x7b\xcc\x88\x0d\x3a\xe4\x9d\xed\xbb\xfe\x6c\xc8\x8b\x56\x7a\x51\xe3\x78\xed\xba\xe2\xbb\xda\x47\x5e\x67\x1b\xb9\x8f\x18\x84\xa8\x06\x0f\xb9\x26\xe3\xb9\x51\x6d\xff\x3d\xed\xd6\xdc\x0e\xfb\x46\xa2\x47\x74\x8c\x6f\x92\x25\x81\xcd\x3b\xd6\xc9\x75\xab\x93\x9c\x00\xff\xf7\x40\x87\x9d\x1a\x25\xce\xf5\xa5\x5a\x0f\x07\x1d\x85\xe6\x16\x56\xae\x6c\x4b\xed\xaf\xdf\xf4\x2e\x8a\x8a\x2b\x10\x9c\xa6\x8d\x2a\xb7\x17\x8c\x87\x2c\x15\x10\xc7\xfd\x9e\x42\x1b\x69\xd4\x6e\xa1\x32\x2e\xea\x5b\xda\x5d\x36\xda\x34\x6f\x1a\xca\xdf\x61\x8b\x9b\x3e\xa5\x0b\x3f\x0d\x3c\x3f\xd8\xef\x89\xf7\x07\x0c\x4b\xb6\x77\x9c\xf4\xd4\x43\x95\x3b\xc1\x61\x9a\x04\x41\xdd\x3b\xa0\x0b\x68\xa9\xf4\x87\x03\x45\xca\x89\x7b\x41\x03\x87\x15\xac\xd2\x4a\x59\x7c\xa4\x87\x44\xef\x59\xc5\xc3\xfb\xb1\xbc\xa8\x21\x63\xa2\x07\x99\x38\x91\x2a\x27\x96\xa9\x23\xe0\xef\x6b\x41\x71\x9f\x38\x65\x15\x3c\xde\xbf\xfa\x0b\xeb\x5f\xbf\x8b\x3e\x09\xc1\x67\x41\xa5\x95\x3f\x7a\xf4\xf1\xf0\x10\xb2\xe8\xbd\xf8\xa3\xf2\x62\x3e\xa2\x77\xab\xf5\x32\x47\x2b\x47\x07\xa5\xe7\x28\x29\x90\x9b\xe6\x3c\x65\x31\x6a\x83\xe6\x04\xb8\x87\x54\x23\xe4\xea\x18\x97\x6a\x3a\x9b\xda\x2c\xb0\x02\x10\x8a\x16\xbb\x20\xd2\x0e\x67\xff\x3e\x36\xb5\xcb\xdf\x90\xda\x5c\xe3\xc8\xd9\x8d\x93\x3d\xbd\x82\x91\x6f\xe0\x8f\x3c\xc1\x35\x24\xae\x0b\x43\x3c\xc0\x75\xa9\xda\x21\x39\x4b\x53\x9e\xc3\x5e\xc9\x8c\x17\xe1\x20\x8e\xd8\x17\xc6\xe8\x61\x64\x7c\xf1\xf2\xc5\x49\xf8\xf2\x85\x94\xc4\x35\xc9\xe3\xeb\xfc\xfa\xfa\x8b\xc1\xa6\x08\x93\x24\xfb\xb8\x0c\xb7\x62\x97\x73\xf6\xc5\x17\x2f\x5f\x64\x5b\x25\x79\x90\x2a\x01\x4c\x3b\x91\x89\x2f\x5f\x9c\xc8\xe4\x97\x06\xe5\x3d\xd7\xb6\xf8\xed\xea\x3e\xb0\x2f\xbe\x08\x6a\xf2\x6e\x9a\x1b\x39\x37\x86\xff\xfc\xc3\xb3\x80\x35\xd2\xf9\x2f\xca\x6b\xe3\x1a\x85\xba\xbd\x95\x56\x3d\x69\xaa\x2a\xcb\xaa\xaa\x46\x0f\xb0\xf0\x70\x79\x94\x52\x32\x7a\xac\xae\x38\xfa\x17\x93\xe3\xef\xab\xed\x5f\xec\x48\x39\x4f\x29\x4a\x7a\xca\x34\x9f\x7a\x4b\x86\x7f\xc2\xe6\x46\xcf\x7b\x8a\xda\x7f\xb2\x47\xfe\xe8\x5f\x81\xdc\x72\xbb\x13\xcc\x3b\x33\xba\xce\xf9\x8a\x7d\xf1\xc5\xa0\xe6\x43\xbf\xa8\x9e\xda\x53\xdc\xfb\x5d\xce\xdf\x89\x36\x81\xf3\x23\x87\x3e\xc9\xf7\x93\x79\xf7\xd8\x0e\x58\x6f\x50\x43\xea\x7b\x70\xb0\x3a\xfe\x09\xd2\xc9\x0e\x9c\xa0\x41\x8d\x37\xc7\x26\x02\xbe\xb3\xa8\x0f\x3b\xb0\xa4\x14\x5b\xd7\xaa\x1c\x83\xd0\xc9\x10\x4e\x6d\x3d\x53\xc3\x53\x1c\x64\x4f\x4d\xf5\x27\x6a\x78\x15\x2c\x0c\x42\x0f\x56\x4e\x0d\xb1\xa1\x73\xbc\x99\xa6\x82\xdf\xda\x4e\x5f\x35\xcf\xa9\x77\x6f\x10\x5a\x95\xa4\xf6\x73\x0f\x67\x9f\x00\x11\xd8\xc0\x99\x9a\x17\x55\x81\x8a\x20\xdc\xb2\x75\xf5\xa9\x2c\xd7\xb6\xf4\xf4\xbb\x6a\xe7\x85\x0f\x9b\xec\xb1\x27\x35\xeb\xcb\x59\x74\x12\x81\xc2\x74\xf1\x2f\x05\xb8\x2c\xb3\x34\xc5\xc5\x87\x05\x58\xe5\xa9\x41\x51\xfb\xd3\xbc\xf9\xc5\x10\xd6\x3a\x8e\xed\x4a\x8d\x6d\xc8\x0c\xfa\x77\xc4\xec\x0d\xdb\xd4\x30\xd3\xc4\xf3\x1b\x25\xce\x29\x81\x3f\xbc\x62\x57\x7d\x79\xae\xf4\x3c\xa2\x82\xc8\xda\x5e\x66\x1b\x38\x03\x56\x2c\xfe\x5f\xb3\x22\x86\x7e\x13\x7a\xc7\x44\x59\x6a\xd9\x52\x11\xc6\x69\x41\x16\x7d\x26\x12\x97\x2d\x41\xc0\x82\x77\x59\x7d\x8f\xd3\x5c\x4a\x58\x9b\xf3\xe6\x5c\x53\xec\xe6\x65\x39\xb4\x86\xb9\x94\x9e\xe6\x75\x45\x90\x9a\xd6\x4d\x2f\x9a\x47\x2b\x27\x1e\x3f\xd6\x75\xd3\x74\xcf\xcc\xa3\x5f\xd1\xac\xa9\xbb\x83\xc6\x2b\x4b\x5a\xb1\xce\x05\x6b\xf5\x11\x98\x09\xa1\x31\x0a\x43\x67\x5e\x4b\x69\xe8\xb7\x4c\x2c\x0e\xea\xe1\xba\x92\x78\x0b\x0b\xc1\x51\x81\xb8\x86\x47\xfb\x34\x1e\x8a\x63\x9f\xea\xcd\xb7\x2c\x2d\xd7\xb4\xf2\xde\x93\x20\x63\xcc\x3a\x14\x27\x93\xc5\x71\x20\x08\xe2\xb9\xa4\x2c\x87\x29\x1a\xd0\xbd\xe1\x70\x26\xe2\x91\xb4\x32\xea\x2f\x81\xad\xe4\x0b\x18\x5e\x54\x96\x9d\x4e\x30\xc6\x5e\x99\xe6\x9d\xf5\x8a\x72\xb2\x18\xbb\x9e\x90\xb9\xc4\xb1\x5c\x82\x2c\x5c\x6f\xb7\xf8\xc9\xda\x51\x4e\xc6\xf0\x23\x88\xe7\x78\x33\x33\x87\xd2\x6e\xdf\xfc\x1c\x83\x6b\x5a\x5b\xb9\x34\xd3\x86\x2c\x90\xf6\x1a\x32\x9f\x07\xb4\x60\xea\x5e\xab\x61\x56\x96\xc3\x5a\x5c\x8d\x23\xaa\x3b\xbd\x70\xbd\x0c\x5e\xe2\xbe\x0e\x42\xe1\x4c\x17\x75\x2b\xc1\xd8\x5c\xd9\x39\xa1\xf0\x4a\xc7\x9e\xd0\xde\xa5\x52\xac\x98\x56\x99\xc4\x41\xa6\xa2\x9b\x69\x1e\xfa\x79\xc0\x18\x2b\xfc\x3c\x98\x93\x7c\x34\xaa\x91\x60\xb1\xe2\x16\x7c\xa4\xf0\x89\x78\x2a\xdf\x2b\xe8\x70\x51\x3d\xbb\x9e\xb3\xa7\x11\xf1\xa2\x3d\x2d\x78\x45\xee\xfa\x35\x5a\xa8\x13\x41\xaf\x5c\xfc\x23\x88\x5e\xa4\x26\x9e\x07\x53\xd1\x87\x82\x95\xe2\x02\xcf\x8f\x9d\x1a\x4c\xf3\x06\x85\xea\xa2\x16\xaa\x5f\x95\xe5\xf0\x4a\x89\x29\xa4\x5d\x9c\x26\x66\x17\x84\x10\x91\x3f\x28\xad\x61\x4d\x1a\x65\x0c\xad\xbc\x2c\x7b\xc8\x29\x20\x64\x45\x72\x94\xd2\xa5\x49\xa8\xc9\x49\x2d\x6e\xd4\x64\xae\xf7\xd2\xf1\x61\xdf\x40\x44\xd0\x48\x82\xc3\xe7\x01\xa9\xa3\x00\x21\x64\x2a\xf2\xd3\x0b\xcd\xcf\x40\xe5\x4e\xba\x7b\x40\x35\xa1\x10\x5d\xa8\x7e\xba\xb0\x8a\x1b\xd0\x12\xd2\x76\x3d\xc3\xa5\x85\xe6\x3b\x75\x1b\x9a\x96\x93\x76\x72\x92\x85\x74\xb9\x1d\xde\x54\xe7\x89\x0a\xbd\x6a\x9b\xcc\x78\x11\x7b\xed\x18\x03\xc3\x9b\x45\xe7\x4c\x2d\x88\x67\xc5\xac\xe7\xa4\x29\x94\x65\xff\x96\x2f\xf1\xd6\xc0\x45\x6c\x2b\xc7\xd9\x5d\x92\xe0\xf8\x79\xb1\x0c\xb7\xbc\xc7\xa5\xa1\x63\x9d\x27\xd5\x1e\xb2\x48\x9e\xb7\x30\xf1\xd0\x7c\xd3\xf8\xe1\x21\x15\xe1\xfd\x00\x73\xd2\xc1\x2e\xcd\xf9\x32\xbb\x4d\xe3\x47\x1e\x69\xae\x3f\xde\xc0\x18\xa9\x2a\x77\x69\xfc\xeb\x8e\xff\x90\xe5\x7d\xe2\x2f\xed\x30\x85\xab\x7e\xcb\x86\xa9\x1d\x71\xc1\x97\xe2\xcd\x6e\x9b\xc4\xcb\x50\xf0\x82\xee\x98\x22\xa0\x3f\xa0\xaf\x0f\x0a\xbc\xa5\x3a\x18\x78\x16\xf8\x60\x7d\x4b\xe8\x56\x1d\xb5\x04\xe3\x7e\x8c\x47\x2d\xdc\x51\xfc\x38\x40\x99\x97\x3a\x67\xc5\x44\x2d\x7e\x94\xc7\x73\x65\xca\x8c\x92\x49\xea\xd6\xf8\xb9\x43\x39\x3f\xe5\x7b\x9a\xb1\x02\x81\xff\x9e\xdf\xf7\x0d\x20\x65\x86\x81\x94\x31\xd6\x36\xe6\xe6\x08\xee\xca\xeb\xfb\x2e\xe5\x8f\x8b\xaf\xf2\x80\xd6\x17\xd8\x87\xdf\x0b\xb4\x89\x48\x45\x73\xbd\xa5\x96\x88\xfd\xe6\x18\x75\x2a\x2f\x04\x32\x83\x73\x3e\x87\x04\x4d\x90\x4f\xd2\x11\xcb\xe0\xb8\x56\xa9\x16\xa7\xb2\xed\x99\x4e\x4f\x65\x57\x7f\x04\x74\xd9\xd7\xa6\x7b\x08\x38\x79\xb4\xc7\x3a\x9a\x10\x48\xe9\x9e\x5a\xb9\x94\x65\x4a\x4a\x53\xb0\x27\x4d\xbb\xe3\x9d\x3a\x54\xf2\xe4\x7f\x2d\xf8\x2e\xca\xbc\x84\x53\x24\x4d\xde\x5f\x68\xb3\x3e\xbc\xa7\x3d\x85\xc3\x2c\x86\x52\xe4\x09\x5a\x4c\x78\x4f\xc6\x4b\xc3\x3b\x54\x99\x4b\xeb\xfa\xa1\xb3\xa7\xc6\xa0\xe7\xfb\x9e\x1a\xa3\x3a\x39\xe7\x77\x71\xb6\x2b\xd4\xf0\x5b\x65\xff\x75\x2c\xd3\x7e\x4f\xb7\x39\xff\x12\xa5\x45\xde\x13\x5a\xde\xf4\x49\xb7\x7c\x37\x60\xf0\xa7\x23\x39\xa2\xdc\x9f\x06\xcc\x82\xbf\x65\xc9\xfd\x19\xfe\x3d\x0d\xca\x52\x5f\x54\x2a\x2b\x9c\xd0\x10\x0b\x27\x01\xde\x65\x39\x0d\x98\x01\x6b\xc3\x9f\x06\xa8\x27\xa3\x8d\x65\xc3\x8c\xec\x95\x51\xcf\x27\xfb\xd2\x22\x32\xd4\x48\x65\x04\x2e\xfc\x54\xd5\x34\x25\x0b\xd5\xbb\xa2\xbe\xd8\xd9\x77\x02\xe8\xf8\x2c\x60\x23\x0b\x7e\x16\xd0\x65\x78\x3c\x0b\xca\xd2\x25\xde\xe4\xb9\x65\xf0\x3b\x9e\xca\xca\xa6\xe8\x96\x13\x45\xd5\x1b\x81\xb2\xa7\xb2\xec\x79\x30\xe2\xfe\xc5\x41\x06\x0f\x7e\x4c\xb3\xdb\xe2\xbe\xb2\x60\xea\x5b\x3b\x43\x68\xde\x34\x01\x3a\x15\xae\xfd\xc5\x46\x18\x28\x4d\x29\xd4\x21\x23\xdd\xe1\x80\x16\x90\x93\xb5\x41\xee\xa5\xa6\xf9\xa3\xcc\x8e\x81\x15\x05\x0b\xad\x14\xf6\x1a\xf9\x92\x36\x41\x3f\x88\x51\xeb\x2b\xc6\x82\x8c\xab\x67\x79\xc9\xa8\x03\xf5\x3a\x0d\x0c\x05\x8c\x78\x12\xb0\x54\x4b\xd1\x67\x6b\x4a\xc8\x1e\x10\x5a\xa2\xd0\xfb\x57\x7f\xe9\xf1\xe3\xe8\x8a\x1c\x7b\x15\x57\x4a\x4e\xb4\x38\x70\xd3\x18\x3a\xfd\x8e\xb6\xb5\xa6\x01\xe8\x60\xbf\x4e\x4c\x89\x1b\xa5\x45\xda\x61\xbf\x7e\x56\x7a\xf7\xda\x9b\x04\x6f\xb7\xd5\xed\x90\xac\x0f\xb5\xe1\x1c\x1f\x19\xd2\xf8\xa8\x7c\x46\x50\xac\xf7\xb3\xc5\x69\xef\x3d\xeb\x72\x12\xfa\x28\xdb\xb2\x11\x35\x69\x2f\x65\xf9\x1b\x24\xad\x5d\x29\xab\x12\xfc\x1b\x04\x97\x1b\xfa\x6d\x76\xd6\x6f\xcb\xb8\xbb\x4e\x56\x97\xac\x22\x39\x07\xa2\x64\xe5\x9a\x97\x92\x34\x01\xcf\x16\x70\x04\x84\x7e\x7b\x43\x00\x49\x36\x02\xe2\x6e\xc8\xa4\x05\x30\xa4\xa9\x57\xe5\x58\x64\x43\x7c\xfd\xa0\x5e\x53\xd3\x74\x18\x63\x99\x16\x18\xd4\x33\x9e\x37\x1f\xf5\x0f\x2f\xc7\xae\x67\x3c\xd3\xbf\x49\xa4\x6a\x30\x52\x36\xf5\x2f\x95\xc5\x02\x8a\x91\xd5\xb8\xf4\x4f\x20\x8a\x68\xd9\x44\xba\x95\x96\xb2\x04\xee\x77\xa8\x07\xcd\x6a\x7c\xad\xea\x1e\xb9\x58\xfb\xc8\x18\x1b\x88\xc1\x5d\x8a\x53\x79\xeb\x54\x81\x52\x91\xc0\x20\x9f\xd7\x60\x3e\x0d\x99\x91\x84\x85\xd0\xd3\xc7\x33\x42\x0b\x66\x28\xdb\x42\xec\x46\x05\x5d\xd8\xf5\x72\x05\x9f\x1e\x9f\xf2\xe1\x50\x3f\x53\x68\x38\x0f\x3d\x59\xca\x7e\xb4\x2c\xa1\x59\x3c\x64\x2c\x5c\x18\xda\xae\x67\xf4\x6c\x04\x9b\xf6\xe1\xe4\x8a\x15\xd2\xb1\xa2\x6f\xc1\xd0\x5b\x36\x5c\x9a\xe6\xb0\xa0\x77\x6c\xe8\xc2\xfe\xbd\xc1\x6d\x3a\x56\x3c\xc5\xcd\x5c\x3e\xac\x98\x98\xaf\xd8\xca\xbf\x91\xf2\xef\x62\xb1\x3a\xbe\x02\xaf\x3c\x18\xf8\xaa\xcb\x16\x0f\xdd\xf9\x9a\xdd\x30\x23\x4b\x13\xf4\x1e\xe4\xa6\x39\x5c\x9b\x66\x6b\x34\xfb\x9a\x02\xc4\x2b\x6b\xcd\xfc\x70\xb1\xd1\x36\x7d\x6f\x63\x03\xf4\xf1\x39\xa0\xa1\x69\xde\x2a\xcd\x2c\xb3\x22\x66\x25\xcc\xda\x31\x6b\xcb\xac\x15\xdb\x10\xff\x21\x28\x4b\x6b\xe5\x3f\x04\xec\x69\x4f\x88\xbf\x52\xec\xd8\xd7\x6f\x20\x7d\xab\xbf\xcb\x0c\x3c\xc0\x50\x59\x40\x0e\xd1\x8c\x26\xf1\xdd\x80\xc0\xcf\x24\xa0\x2b\xe0\x93\x37\x9a\x29\x9a\x1f\x05\xf3\x15\x1b\x8d\x80\x7d\x36\x4d\x80\x4a\x59\x5a\x77\x2c\x62\x0e\x29\xcb\xb5\xbd\xcd\xb6\x16\x41\x38\xb5\x01\x61\x9a\xa3\xd1\x9d\x69\xae\xf0\xa4\xf9\xb4\xf3\x79\xc0\xfc\x8f\x34\xa2\x77\x81\x0c\xe6\xb4\x6f\x99\x45\x41\x7d\xfa\xa0\xc4\x1f\x34\x28\x8a\x7a\xfc\x3b\x29\x8e\xb0\x3e\x37\x0c\xd8\x24\x3e\x31\xdd\x43\x9c\xee\x61\x6b\xba\xcb\x72\x38\x1a\xdd\x95\x25\x8e\x42\x76\x7f\xf5\x3b\xba\x0e\xb0\xb9\x0b\x08\x5d\xa1\xe3\x3d\x99\xd7\x06\x0f\x77\x63\x96\x11\x29\xd4\xb9\xfb\x5f\x39\x63\xcc\x31\xcd\xbb\x93\xfc\x25\x73\xf6\xfb\x9e\x5d\xb7\xd1\x60\x20\x2f\x8c\x9c\x5a\x81\xa0\xc9\xed\x82\x0b\xc9\x0c\x15\x7e\x67\x60\x3a\x0f\x61\xec\x52\xa5\x58\xe7\xd1\x40\x56\x20\xf9\xfc\x3a\xc0\x97\xff\x10\x2c\x80\x71\xf4\xb2\xea\x40\xe7\x2e\xac\x94\xf9\x9c\x72\x6a\x18\x54\x04\x54\x6f\xab\x1b\x74\xb1\x6b\xd6\xb5\x48\xda\x81\xc8\x74\xe7\x18\x38\x86\xe1\x98\x0e\xcc\x0e\xb8\x9f\xb3\x9f\x2c\x4e\x63\x3f\x0c\x48\xc0\x86\x56\xea\xa3\x4f\x48\x88\xf1\x6d\xfa\x76\x54\xa8\xc8\xc1\x00\x70\x5e\x06\x9c\xa1\x04\x8d\xf7\x94\x66\xc2\x4b\x3a\x32\x46\xb9\x81\xfa\x01\x55\x97\x1c\x17\x87\x46\x54\x8d\x22\x07\xc0\xd1\x19\x03\xd0\xb4\xac\x19\x47\x4c\x43\x96\x57\xc2\x81\x8c\xfa\x01\x91\x01\x63\x35\xeb\x32\x2b\x66\xa1\x5f\x04\x92\x4b\x29\x60\x40\x02\x7e\x62\xd2\x19\x0e\xcd\x68\xdc\xec\xc5\xc8\xcf\xd0\x1c\x68\x28\x46\x00\xa4\x29\xa1\x98\x88\xaf\xc3\x54\x62\xf5\x7e\x4f\x08\x5d\x87\xc5\xc1\x30\x8f\x5a\xc5\x28\xfb\x4e\xed\xc0\x0e\x55\x54\x07\xf6\x63\xf5\xf0\x03\x56\x88\x1e\x56\x6d\x09\xfd\xb0\x53\x96\x80\x48\xcd\x0e\xc7\x61\x87\xc3\xc6\x92\x30\xbd\x3d\xd6\xd0\x7f\x29\xbe\x11\x99\x83\x63\xa8\x8b\x15\x20\xe2\xd2\xc3\x8e\x75\xf6\x85\x03\x3b\xa4\x79\x94\x61\x7c\x73\x76\xb3\x10\x36\xd6\xd4\xb5\x2b\xbc\xdf\x24\x1e\x7c\x80\x0e\x74\xbf\xc9\x74\xb5\x13\x58\x29\x4b\x3b\x28\x2f\x6d\x7e\x1c\x54\x11\xd6\x23\xc7\xbd\x7a\xff\x71\x1d\xc3\xa0\xdb\x82\x53\xd2\x35\x06\x23\x8d\xdc\x14\x60\x25\xc2\xbc\xe5\x0f\x5e\x4b\x92\xb9\x9d\x64\xcb\x50\x8a\x71\x9b\x67\x58\x91\xeb\x96\xf6\xba\x8a\xbc\x27\xc3\xe7\x45\x7b\x9a\x67\x59\xaf\x7f\x39\x67\x8c\xad\xf7\x14\x9d\x70\x8e\x7d\x8f\xec\x70\x09\xc7\x3e\x25\xad\x36\x4d\x6b\x18\x41\x93\x5f\xa2\xe7\x4e\xd9\x3c\x23\xbd\x1d\x0e\x81\x22\xa0\x78\x9a\xdb\xeb\x9c\xaf\xca\xf2\x5f\xdc\x16\xe1\x0d\x1a\xb6\xa1\x73\x33\x2a\x2e\xbc\x1b\x6e\x0d\x5d\x42\x2b\x45\x06\xbe\x3b\x84\x2a\x35\x57\x2f\x5f\xfe\x49\x53\x32\xcd\x82\x0d\x7a\xc1\xed\xca\xe9\xa8\x34\xa4\x56\x4a\xfb\x54\xa9\xfa\xf6\xb4\x7a\xea\xe7\xd9\x75\x03\x32\xfd\xad\xae\x00\x07\x45\x95\xd9\x79\x53\x2b\xdf\x6c\xc5\x43\xab\xca\xdf\x24\x04\x88\x57\x56\x23\x8e\x78\x71\xd6\xe7\x8a\x2a\xfb\xd0\xd3\xdb\x61\xbd\x3b\xd8\xd8\x3a\xea\x7e\xd7\x3c\x8c\x78\xde\x37\xb6\x67\x6a\xc9\xd5\x30\x25\x7b\x8a\x00\xec\xcb\xfc\x9f\x3d\x99\xa5\xa9\xde\xff\xe1\x34\x69\x06\x7f\x15\xd2\x68\x49\x62\x4f\xd1\xd3\xe4\xd0\x5d\xb7\x5b\xd5\xb1\x36\x4d\xd3\x80\x1a\x9a\xfa\x4d\x53\xdd\x71\x60\x09\xd6\x3d\xa1\x20\x07\x8c\xbe\xc7\x55\x99\xae\x6c\xb0\x0a\x20\xb0\xd1\xc9\x58\x05\x25\xdf\x09\x24\x9d\xeb\x66\xd0\xa4\xa0\xbe\x18\xbb\x98\x8b\xff\x7a\x90\xa7\x39\xfe\xf8\xe9\x0b\x67\x91\x8e\x84\x97\xca\xbc\x77\x3c\xed\xa9\xb1\x13\xb9\x70\x9e\x8e\xd8\x84\xf0\xae\x59\x02\x87\x1a\xb2\x28\xfa\x64\x05\xee\xe7\x2a\x48\x0e\x87\xd4\x76\x7a\xad\x7b\xfc\x52\x2c\x84\x97\xce\xc7\x63\xe0\x68\xe6\x55\x75\x79\xbb\xba\xdb\xdf\x5c\xdd\x7c\x34\xca\x5f\x88\x23\xf5\xec\xf7\xa4\xc6\xf9\x54\xac\x99\xb6\x02\x7e\xa5\x4f\x79\x18\xc5\x19\x06\x18\x02\x3a\x70\x93\xdd\xc3\xf3\x2a\x96\x41\x87\xb6\x61\x51\x7c\xcc\xf2\x08\x9e\xe3\x4d\x78\x2b\xe3\x11\x36\x0c\x96\x08\x18\x0a\x6b\x6b\xc7\xf0\xa7\x62\x77\xb3\x89\x05\xe4\xcf\x79\xc1\xc5\x61\xfe\xb5\xcc\x5f\x59\x46\xde\x72\x4b\xbf\x0c\xe0\x8e\xb7\x03\x1b\x3a\xb4\xe5\xa9\x61\x18\x73\xf1\x22\xc5\xd0\x78\xf9\x08\xa3\x14\x48\xb1\x70\x63\x5d\x52\xd7\xf4\xc0\xdb\x8e\x43\xc2\x8e\xe2\x9c\x66\xb0\x9b\xf0\x7b\x01\x1c\x56\x59\xe6\x34\x64\xa9\x69\xea\xd2\x37\xc6\x58\x4c\x0b\xf6\xd8\xe8\x4b\x84\x24\x46\x8b\xd6\xc9\x2d\xab\xc5\xb1\xe8\x00\x5d\x1d\x03\x84\xa6\x75\x0c\x6b\x79\xa4\x2a\xd1\x6c\x5e\x9f\x3a\x05\x02\x47\x5c\xa0\x86\x69\x79\xd8\x46\x4f\x23\xa6\xc9\x55\x2d\xb5\x76\xb1\x25\xf5\xfc\x44\xff\xe2\x95\x64\xdc\x85\x64\xdc\x45\xcd\xb8\x8b\x0e\xe3\x2e\xda\x8c\x3b\xcd\x4c\x33\xfb\x84\x09\x34\x11\x55\xf8\x9e\x79\xe5\xba\x61\x25\x6c\xe7\xc7\xf2\xb0\xa5\x1f\x54\x18\x63\x45\xad\x07\xf3\x27\x01\x83\xb3\x18\x0c\x1e\x72\xb3\x15\xc5\xb4\xc3\x01\x36\x6c\x40\x3d\xdf\xaf\x5a\x26\xb6\x0d\x87\xde\x02\xb5\x6e\xe5\xdb\x70\xa2\x28\x2c\xc7\x40\x55\x7e\x16\xa8\x7c\x3d\x9b\x0a\x5e\x20\xa1\x85\x0a\xe2\xba\x3c\x41\xe7\x79\xfd\x80\x16\xcc\xc1\xfb\x10\xea\x80\x1f\xd2\x67\x5c\xd4\x81\x38\xac\x98\x71\xc5\xf8\xa6\xa6\x39\x4c\xad\x18\xeb\x29\x4b\x2b\xac\x44\xf9\x34\x41\x5d\x37\xbc\x14\x44\x8f\x6b\x51\x77\xe1\x51\xeb\x82\xc6\x1f\xe7\xa6\x39\x04\xf6\x1c\xaf\xe4\x79\xc4\x30\x49\x30\x65\xc3\x4c\xa6\x65\x90\x06\xf9\x49\xdb\x08\x5a\x39\x66\x77\xb0\x31\xa0\x11\xfc\x59\xb3\xb0\x1a\xcc\x0d\x8b\xdb\x21\xd8\xda\x44\xc9\xc1\x45\x56\x47\x0b\xc8\x30\x5a\x80\x64\xac\xfd\x3c\xa0\xa9\x26\x78\xb7\x44\x59\x1a\xcf\x0d\x5a\x34\x5a\x7f\xbf\x08\xbc\x02\x8f\x0a\x1b\x36\xe4\x65\x39\x8c\x4d\x53\x2c\x6e\xbc\x8f\xdc\xba\xa1\x2b\xca\xb1\x87\xf4\x8a\xa5\x8b\xac\x2c\xad\x78\xc1\xbd\x75\x59\xe6\x18\x43\x24\xf4\x36\xe8\x02\x60\x9a\xa9\xb5\xa1\x57\x32\x67\x8e\x47\xe0\x84\x7d\xe4\xd6\x15\x8d\x08\xcd\xad\x84\xc2\xfc\xc0\xb7\x1d\x4b\xaa\x7e\xee\xf0\x30\xb2\x65\x89\xbf\xc3\x39\xb9\xf2\x23\x7f\x17\xc0\x79\x64\xa3\x9e\xb6\x44\x33\x3e\xcc\xca\x52\xc6\x36\x53\x33\x9f\x00\x88\x76\xb5\xcd\x44\x5d\xdd\x95\xac\x2e\x91\xb3\xb8\xf1\x77\x50\xcf\x3c\x93\x41\x8c\xd1\xe2\x2c\xa1\x4b\x82\xf6\xdd\xc7\x4b\x5b\x09\xcb\x16\x3f\x59\x31\xdd\x12\x6f\x05\x49\x2f\xc7\xae\x69\x5a\xb1\x9f\x40\xff\x42\xf8\xd9\x02\x95\xc7\x55\x7f\x85\x23\xc5\x28\xcd\x57\x95\xfa\x67\x4d\xab\xaa\x89\x77\x45\x68\xb6\x50\x1d\x08\xe9\x15\x5d\x12\xaf\x72\xc7\x09\xe9\x55\xdb\x6a\xfd\xe7\x36\x31\x06\x22\xd6\x8e\xd7\x90\xdb\x95\xae\xc3\x47\xf1\x32\xb0\x06\x80\xfb\x21\x1c\xbb\xeb\x4f\xc6\xc0\x08\xe8\x92\x85\x0b\xd7\x73\xe8\xee\x88\x4b\xa2\x74\xcd\xdf\x13\x5a\x50\x60\x6f\xb7\xc7\xb2\xfd\x64\x09\x2a\x4f\x4b\x55\xd6\x15\xf3\xf5\x63\x34\xad\x65\xa1\xc3\x10\x16\x40\x59\xa6\x43\xc6\x12\x58\x59\x96\x60\x29\x69\x50\x6d\xa7\xb2\x7b\x5b\xf5\xd0\x04\x20\x92\x07\xc9\x6c\x1f\xcc\x97\x2f\xe2\xf9\x52\x05\xce\x69\x8f\x77\xa9\xc6\x4b\x56\xcc\x7f\xe0\xd6\x2b\x6e\xad\x08\x4d\x49\xd0\xd0\x3c\x28\x20\x65\xe8\x5a\x76\x05\x6c\xa9\x81\x83\x54\xa5\xe7\x26\xc4\x7f\x08\x24\xb4\x33\x36\x1a\x2d\xe7\xd9\x8b\x18\xd6\xb1\xde\x64\xa6\xea\xc0\x08\x19\x55\x67\x1f\xb9\xb5\x7c\xe9\x9a\xa6\xec\x00\x3e\xc2\x2e\x5a\x4b\x34\x97\x63\x97\x54\x51\x79\x55\x64\x41\x63\x20\x35\x1b\xcb\xf1\x44\xd6\xb8\x30\x9e\x1b\xf2\x82\x9f\x03\xa7\xa9\x94\x2e\x5f\x64\xa6\xf9\x73\x53\xe5\x92\x66\x40\x50\xa0\x7b\x90\x5a\x0b\x49\xeb\x54\xdc\xc4\xc9\x7e\x55\xf1\x48\x95\xde\x11\x7b\x58\xbd\xdc\xea\xb1\x11\x2b\x38\x15\x0d\x73\xd2\x12\xa6\xa0\xf8\xfe\x96\xd3\x90\x15\xb0\xd7\xfc\xc2\xd3\xf8\xb1\xeb\x60\xab\xc4\x3f\x7a\x7c\x09\xf6\x5d\xa5\x0b\x80\x1d\xa5\x36\x03\x5d\x38\xde\xae\xd6\xb1\x22\xeb\x52\x30\x4e\x97\xb8\x1c\xa1\x03\x95\xf2\x6c\x5e\x28\xc1\x68\x88\xbe\x17\xa6\x39\xb4\x32\xf6\x37\xe9\x38\x59\x10\x8c\x76\x64\x9a\x56\xc1\x8a\x0a\x00\xb0\x06\xd4\x42\x2b\xcb\x82\xd0\xa5\x22\xe5\xcc\x0f\x08\xa1\x29\x1b\xba\xd4\xca\xd8\x57\x75\x0d\x18\x3a\x3c\xab\x7c\xc6\xa8\x0c\x22\x68\xd5\x21\xa2\x31\x02\x1f\x56\xaa\x4d\xca\xc0\x20\x18\xe3\xa9\x6a\xb4\x16\xab\x4b\x83\x63\xe8\x37\x81\x7e\xfe\xc5\x0f\x03\xad\xab\x89\x1f\x06\x72\x00\xf0\x04\x73\x55\x96\x9f\x6f\x3c\xa4\x0a\x3b\xbd\xec\x48\xa3\x68\x0a\x93\xca\x28\x3a\xfb\x1a\xc0\x95\x1f\xaf\x57\x2c\x1a\x95\x19\xf1\xbe\xb3\x38\x5d\x92\x1a\xf4\x7b\xa8\x51\x9a\x17\xc5\xc9\x91\xe9\x84\x49\x89\xe5\x8e\xfa\x5e\x9b\xcc\x61\x21\x67\x46\x2a\x77\xd0\x6b\x91\xa6\xcd\xb6\x93\x22\x05\x2d\xd8\xcf\xdc\x12\x7e\x1a\xe0\xda\x5a\x64\xd5\x5e\xea\xc5\xd5\xd3\xdc\x2a\xd8\x7b\x8b\xf7\xc5\x8e\x67\xcd\xe5\x4d\x5a\xf8\x9b\x97\x0e\x8d\x59\x77\xc7\xa4\x3b\x59\x66\x4b\xd7\x74\x43\xaf\x98\x43\x6f\x99\xe1\x18\xf4\x8e\xc5\xa6\xe9\x07\xf4\x01\xfa\xff\x8a\x25\xf4\x11\x76\xce\xcc\x34\x1b\xcb\x70\x0b\xb6\xbf\x1d\xa1\x3f\xb3\x8f\x23\x26\x8f\x5c\xaf\x16\xae\xd7\x0a\x4a\x55\x96\xb6\x4b\xbf\x63\x8f\xd5\xe0\x70\xb7\x90\x51\xc2\xa4\x85\x54\x58\x96\x3b\x32\xbf\x1d\x32\xf6\x5d\x15\xc5\xd4\xda\xb2\x47\xff\x36\x20\xf3\xdb\xd1\x48\x6e\x54\xa6\xa9\x4c\x08\xd6\xcc\xa1\x61\x59\x6e\x0f\xcc\xaa\xa2\xb2\xb4\x56\xd6\x16\xe6\x79\x78\x43\xe6\x1b\xc6\xfd\x75\x65\x0b\xbf\xb1\xb6\x50\x28\xa2\x05\x21\x4f\x0a\xad\xb7\xea\x7a\x82\x3d\x74\xe6\x23\xfb\x99\xec\x53\xd3\xb4\xac\x2d\x1b\x6e\xa0\x31\xd3\xbc\x1a\x8f\x29\x90\x83\x2a\x3b\xd9\xc7\x2b\xeb\x6a\xc4\x6e\x69\x6a\x9a\xd0\xdd\xab\xba\x47\xf3\x0d\x13\xaa\xb5\x8d\x75\x47\x1f\x00\xb0\xda\x7e\x7b\xf5\xd2\x91\xa2\xec\x5b\x98\xd8\x3b\xff\x36\x28\xcb\x07\xfc\x6b\xc1\x0f\xfb\x41\x5a\xac\x2c\x09\x99\x3f\xc0\x06\xf8\x40\xf6\xd5\xae\xb6\xa4\x0f\x84\xee\x4c\x13\x18\x89\x87\x7a\x16\x4d\xf3\xaa\x8e\x70\x04\x14\xb3\x65\xca\x61\x2d\x1b\x53\x09\x39\x34\x9a\xb0\x57\x84\xde\xed\x1b\xcf\x8c\x84\x5b\x31\xf1\xe2\xbd\x15\x03\x35\x24\xb5\xf1\x00\xe3\xb5\x15\xd0\x9e\x2e\x1b\xb3\x02\x76\x28\x26\x95\xec\x62\x1d\x08\xa7\x37\x94\x31\x37\x4d\x4e\x23\x36\xcc\x4c\x33\xb4\x38\x5b\xd5\xed\x00\x03\x82\xdc\x0e\xc3\xeb\x3f\xd0\x31\x38\xaa\x56\x25\xee\x3e\x4b\x16\x01\xab\x1d\x69\x7a\xdf\xda\xb5\xf7\xe5\xc4\x34\x8d\xaf\xdf\x40\x43\x56\xc2\x96\xbe\x13\x10\x75\xee\xbf\xec\x78\x5f\xde\x00\xb6\xd6\x5b\xd0\x12\x75\xf4\xb8\xeb\x49\x0f\x71\xc1\xac\xda\xed\xc3\x4a\xaa\xbd\x4c\x27\x59\x4a\x22\x2a\x48\xa5\xa5\x20\x4d\xf0\x9b\x15\x2a\xb1\x5b\x22\x3f\xda\xec\x27\xcb\x8a\x36\xc9\x33\x5e\x35\x38\xe4\x96\x62\xf6\x17\x5b\x0f\xb3\x51\xf9\x1e\x2f\x1c\x6f\x59\xc7\x77\x1a\x8f\x71\x95\x2c\xfd\x38\xa0\xfa\x46\x0a\x7c\x9f\x1c\x84\x3c\x54\x6d\x99\x1c\x83\x62\xb7\x32\xb6\xfd\xe4\x50\x2a\x4f\xe7\x65\xc5\xf2\xf4\x7b\x3c\x2b\xcf\xed\x65\xc5\x85\xc5\xd4\x25\x74\x68\x71\x96\xd5\x96\xb5\x77\x1c\x50\xb6\xeb\x64\x0e\xc8\x41\xd3\x4a\x5b\xa4\xa4\xa9\xab\xb2\x2c\x2c\x4e\x23\x42\xac\x0c\xed\xae\x68\x4a\x87\xa2\x2c\x3f\xe3\x76\x8d\x21\xc2\x74\xf3\x22\xf6\x50\x79\xf0\x1a\xa4\x32\x2e\x52\x46\xbd\xe8\xdd\xf4\x40\x0f\x4d\x94\xd8\x70\xb8\xa5\x2b\x8b\xd0\xb6\xa1\xe7\x31\xcf\x2e\xf7\x13\x76\xb3\x9f\x70\x6a\xee\xb5\xba\xaf\xcf\x73\x7d\xc6\xf7\x7f\x92\x96\xf6\x06\x35\xfe\x24\x45\x57\x8d\xd4\xb0\x23\xb3\x82\xfc\xa8\x4f\x2f\xcb\xad\x12\x61\x95\x28\x74\x5d\xf3\xf8\x76\x2d\xca\x8f\x71\x24\xd6\x06\x3d\x10\xb5\xc8\xcd\xad\xdf\x1f\x4c\x50\xa3\x56\x06\xb7\xcf\xbf\x0b\xd7\x9b\x28\xb7\xbd\xc6\xfc\xed\xd0\xa2\xbb\x77\x6c\x28\xab\x3b\x41\x87\x0e\x6d\x34\x6d\x63\x7e\x79\x69\x06\x06\x27\x34\x3e\x33\x70\x99\xb5\x19\xb9\x2a\xda\x3f\x50\xd3\xfc\xbc\xa8\xb0\x01\x46\xe5\x64\x89\x76\x56\xc7\xa7\x4e\xc5\xcd\xeb\xf4\xab\xb1\xcb\xaf\xba\xf6\xe6\xb0\x53\x32\x44\xb5\x3e\x07\x52\x82\xec\x8b\x60\xd1\x01\xb9\x87\x81\xdd\xfa\xcd\x08\x73\xcd\x8c\x30\xd7\xcd\x08\x09\xa1\x05\xdf\x5b\x29\x99\x3f\xe2\xfa\x67\xef\x31\x62\xe4\x36\x67\xef\x1b\x63\x30\x95\xe4\x1b\x9e\x21\x23\x50\x6e\x1b\x16\xf5\x51\xb7\xff\xab\x5e\xd8\x7b\x2d\x95\x3e\xca\x00\xc7\xef\x2b\x2b\x3b\xfa\x28\xfd\x75\xdf\x64\x4b\xf6\x5e\x3e\xd2\xc7\xc6\x26\xf4\x7d\xfd\x08\xed\xa2\x89\x63\x6d\x42\xfb\x5e\x25\xa0\x21\xe7\xfd\x41\x7c\x9c\x4e\x68\xbd\xda\x0e\x33\x9d\x03\x8f\xee\x0b\xa0\x6d\x97\x43\xdd\xc4\xbe\x16\x0b\x35\x49\x15\xaf\xf0\x88\x2e\x4c\x85\x95\xd6\x01\x12\x55\xfc\xbd\x7a\x67\xcc\xf7\x07\x41\xd6\x1a\x49\xa9\x1f\xf4\x88\xed\xbb\x8e\xfe\x5c\x46\x15\x4d\xab\x9a\x35\x83\xbc\x77\x15\xa4\x91\x0a\xb7\x28\x7d\x23\x3a\x7c\xdb\x09\xff\xfe\xdb\x2c\x87\x3a\x31\x6d\xa0\xbf\x3f\xb0\x93\x0f\x2f\x2c\x3f\x1c\x3f\x06\xfe\x87\xeb\x93\x6b\xe7\xa5\x87\x81\xd0\xc4\x75\x7e\x9d\x5e\xaf\x82\xe7\xc4\x6f\xbf\x5f\x9f\x2c\x5e\x5a\x0b\xef\xc5\xf5\xc9\xb5\xfb\xb2\x24\xcf\x4e\xe2\xa6\x57\xbf\x76\x6c\x74\x6e\x2d\x41\x16\x8f\xf6\x6d\xce\xb7\x6d\xd3\x22\x38\xa8\x56\x36\x22\x55\x60\x4a\x9a\x53\x34\xd9\x4d\xf7\x84\x78\xcd\x36\xdc\x5b\xbe\x7d\x72\xae\x0a\x1d\x86\x94\x11\x9f\x2e\xdd\x44\x85\x84\x53\x75\x55\xcd\x63\x75\x41\x8b\x8a\x16\x59\xbd\x1f\x89\xca\x24\x7c\x27\xd0\x34\x6b\x16\x67\x86\x97\x66\xc2\x42\x03\x2b\x62\x10\x2a\x85\x8f\xd5\xbe\x87\x36\x33\xfa\xe8\x90\x83\xe8\x18\x7c\xa3\x0d\xd3\xc2\xcf\x03\xcf\x0f\xbc\x76\x16\x8b\x53\x35\x26\xd1\x3b\xa6\x36\xa6\xc9\xa0\xc8\x5a\x10\x5f\xeb\x09\x4d\x35\x7b\x6c\xf6\x68\xde\x0a\x4f\x9c\xe1\x9b\x7e\x21\x9b\x66\xc8\x55\x1f\x27\x3b\x01\x9b\xf1\x52\xc6\xee\xed\x36\xea\xb4\xc2\x9c\xb9\x78\x91\xa3\xfc\x3a\x5e\x59\xcd\xba\xb7\x32\x5f\x04\x14\xc3\x56\x37\x42\x4e\x42\x6a\x73\xff\x76\x13\x7e\x40\xa8\x5e\x95\x04\x8e\xc5\x29\xd6\xa2\xf9\x5a\xbe\x74\x17\x3a\x89\xb2\x52\xe2\xa5\xb5\x59\x5f\x9f\x91\x5b\xbb\x9d\x5f\x55\xb0\x6a\x64\x30\x87\x2e\xc1\xd8\xb6\xbd\x9a\xaf\x4f\x16\x74\x08\x46\x96\xed\x53\xc6\x0d\x55\xce\x1e\xb3\x3a\xd3\x7c\x57\x33\x75\x00\x53\xaf\xee\x46\xe5\xf6\xbd\x97\x26\xed\xaf\xe9\x2f\x32\x2a\xd9\x75\xf1\xdc\x7a\xe1\x5f\x7f\xbc\xfe\x29\x18\xbd\x24\xfe\x87\x97\xc1\xf3\xf2\x4f\x5a\x60\xb2\x39\x46\xd4\xc4\xc0\xea\xfd\x68\x4c\x33\xdc\x6c\x5a\x33\x5b\xf3\xd8\xaf\xfb\x3a\xa9\xb8\xe0\x9c\x19\x2f\xa4\x44\xc5\x09\x4c\xd3\x78\x29\x9f\x9b\xb0\x5d\x41\x13\x75\xfd\x25\x9b\x2e\x7c\x29\xfc\x41\xe3\x85\xc0\xfb\xa5\x8e\xc4\x54\x96\xc3\xdc\x87\xcc\x95\x85\x34\x30\x78\xc2\x96\x11\xd4\x17\x18\x8b\x81\xa8\xa9\x26\xde\x41\x54\x6b\x51\x7f\x43\x17\x87\x2a\x9e\x93\x60\x42\xbf\x54\xec\x71\x01\x6b\xd5\x83\x7d\xa8\x09\x70\x4e\x1f\x81\x6d\x2c\x38\xf0\x20\x58\x92\x8a\xca\x9a\x0c\x17\x68\x4f\x94\xa9\x10\xe7\x95\xfe\x20\xe7\x28\x97\x86\x54\xdd\x10\xce\x82\x34\x51\xfd\x05\xb9\xc5\xb6\xfc\x3c\x20\x0b\xf5\x60\x09\xf4\x40\xc1\xa1\x28\xb3\x45\x21\xa3\xf8\x36\x13\x50\x31\xc0\x19\x0b\xbb\xee\xe0\xb9\x3f\x09\xa4\x21\x2c\x54\xe7\x04\x2c\xa3\xda\xea\x65\x2e\xa1\x5a\x05\xda\x55\x08\x8b\xba\x00\x6f\x17\x90\x2b\xd0\xbb\x05\x9c\x6b\xf6\x4f\x3b\xe7\x61\xf4\xb0\x50\xbf\x88\x8a\xd6\x23\x90\xc8\x3a\xe2\xaf\x25\xeb\x21\x7b\xa2\xc9\xb4\x00\xd9\xe8\x6b\xf6\x68\x85\x12\x4f\x7f\x92\x58\x2a\xf9\xf3\xa2\xdc\xe6\xfc\xce\x5a\x78\x7f\x4b\x45\x9c\x94\xe8\x55\x7c\x42\xdf\xb0\xa7\xea\x4e\x47\x75\xe5\x87\x80\xbc\x78\xeb\x02\xbf\x47\xad\x1a\x14\x6b\xdf\xbc\xf0\xe7\x66\xf3\xd5\x76\x7a\xb7\xb3\xd3\x37\x0a\xc1\x16\x21\x5c\x87\x45\x5f\xf0\xfb\x6a\x40\xba\x4c\x45\x5f\xea\x47\xe8\x9b\x8c\xa5\xe4\xcc\xf9\x8b\x74\xce\x0f\x68\x9c\x0c\x90\xef\xf3\xa0\x45\xe3\xf6\x74\x99\x64\x05\xd7\x83\xc9\xb7\xe3\x40\x2b\x2a\x5c\xd1\x64\x75\x55\x47\x0f\x41\x96\x5c\x0b\x2e\xe1\x9a\x74\x48\xa9\x41\xa5\x85\x68\xa8\xa9\x9f\x07\xf3\xd4\x34\x53\x28\xde\xf1\xa5\x42\x51\x6f\x63\x5e\xe0\xba\xa6\x69\x85\x8b\x50\x5a\xac\x28\x5b\xd4\xae\x9b\xfb\x91\x1d\x0c\x83\x34\x93\xa7\xb8\x56\x16\xb7\xc5\x64\x6d\xa2\x19\x37\x3a\xab\x16\xd1\x8e\x89\x17\xa3\xd5\x41\xc4\xef\x7b\xcd\x2f\x16\x7d\xd1\xa2\xd5\xb6\x0e\x10\xa1\x0a\xdb\x49\x1d\x01\x1a\x89\x73\x45\x57\x80\x68\x79\x8a\xa0\x20\xfd\x52\x0f\xad\x10\x3f\x72\xd2\xf3\x02\x4e\xe3\x80\x82\xaf\x92\xc4\xaa\x08\xb1\x37\x76\xf7\x34\x8c\x22\xaf\xd7\x3d\xec\xe0\x3e\x03\x6d\x68\xad\x4b\x16\x6e\xb9\xb0\x08\x45\xd4\x23\xb8\x63\x87\x51\xf4\xe7\xee\xe5\x0c\x7a\xa5\x61\x14\x59\x55\x54\xee\x4e\xd0\x7f\xaf\xf3\x5e\x21\x2c\x47\x6d\x78\x15\x2f\xf9\xa9\xc7\x4a\xa4\x32\xce\x38\x74\x31\xad\x7c\xc2\x74\xba\xa8\xdc\x91\xd4\x9a\xee\xeb\xe9\xbd\xc5\xa9\xae\x5f\x26\x75\x6e\x5c\xf9\xc7\x2c\xbb\xbb\xc5\x30\x62\x77\xda\xb5\xf2\x50\x99\x81\x02\xb4\x2c\x6c\xc9\x5e\xd2\x89\x63\x79\xbb\xd6\xc4\xaa\xee\x57\x49\x72\x74\x08\x3d\xd5\x7f\x2a\xfb\x91\x16\x3e\x3f\x66\xbd\x1d\x1c\x34\xd4\xf4\x1b\x40\xd5\xb5\x8f\x86\xa2\x85\x7c\xe9\x9d\x97\x6f\x2d\x4b\x9f\x64\x79\x01\x6e\x73\x8c\xc6\x1b\x3a\x6a\x5a\xdc\x5b\x5e\x3f\x75\x43\xe6\x8a\x58\x1f\x66\x3e\xe2\x08\xa0\x4a\x54\xbb\xea\xe2\x20\xc5\xb3\xe0\x88\x63\x08\xbe\xd9\x26\xa1\xe0\x06\x5a\x49\xb2\x3a\x5b\x59\x72\x52\x6f\xe3\x7e\x40\xb9\x1e\x57\x93\xec\xf7\xdd\xe8\xdd\x18\x4f\x9c\x07\x0d\xef\xa3\xe9\xca\xb4\x6b\x46\x44\xc3\x41\x1a\x08\xf8\x96\x21\xfc\x29\x41\xad\x72\x4a\x68\x6e\x9a\x87\x84\x27\x97\xfa\xe5\x6a\xbd\xe5\xa8\x2a\xd2\xc8\xf7\x4b\xa0\xa6\x6f\xd0\x30\xb7\x45\x09\x32\x42\x7f\x6a\x04\x59\x99\x9d\x73\xbc\xe9\xd9\xaa\x4a\x37\x04\x24\x43\xbb\x4e\xdc\x51\xff\xca\x4e\xfc\x0f\xad\x93\xd9\x48\xbf\x06\xe7\xfb\xd6\xf5\xbf\x75\xf2\xdf\x1b\xc7\x3f\x2d\xf5\x9f\x95\x26\x5d\x41\x04\x43\xec\x71\xd3\xbc\xb5\xd0\x2b\x38\xcf\x36\x71\xc1\xc9\x22\xab\xee\x61\xb0\xa3\x2c\xe5\xc8\x73\x85\x71\x02\x8c\x75\x9d\x57\xac\x79\xda\x64\x44\x70\x7a\xdd\xfb\x6e\x79\x25\x92\xcd\x49\x15\xbb\x0f\x5d\xfc\xbb\xb9\xc8\x7e\xff\x68\xbf\x0e\x93\xe4\x26\x5c\xfe\x52\xb4\x3c\xf4\x38\xeb\x23\xfb\x87\xa4\xac\xb9\x38\x5e\x51\x3d\xe5\x9b\x6b\xfd\x15\x25\xb2\xb4\x63\x83\x2c\xfc\x34\x60\xb8\x31\x53\x81\xb7\xbb\x35\x77\x68\xec\xa9\x72\x22\xad\x2d\x0e\xe4\x56\x8c\xca\x99\xb1\x4b\x97\xac\xc3\x0e\x64\x2c\x43\x27\xef\x74\x89\x9e\xfb\x6c\xe8\xcc\xc3\xda\xfa\x97\x8d\x5d\xb5\x1f\x87\x95\x9c\x77\x3e\x1a\x15\x2f\x6a\x7b\x67\x82\x26\xec\xb1\x5f\xd4\x2a\x53\xdf\x09\x68\x2a\x39\x4d\x6e\x17\x22\xdb\x7e\x97\x7e\x19\x26\x05\x47\x25\x5c\xdc\xdc\x29\x33\x74\xc9\x9c\xdb\x1b\xbe\xc9\xf2\x07\xd4\x72\x0d\x81\x15\x64\x43\x97\x66\xa6\x69\xc5\x2c\x5d\xf8\x81\x87\x77\x36\x24\xec\xa9\xb5\x71\x35\x97\xd6\x29\xbb\x0c\xd1\xaa\x7b\xec\xd2\xb0\xda\xcb\x1b\xeb\xd9\x01\x1c\xac\x9e\x14\x74\x53\xda\x89\x2a\x77\x6b\xe5\x64\x51\x69\x17\x4c\x33\xb1\xd7\x61\x81\x57\xa5\xc4\x95\xad\x96\x97\x9b\x66\x5e\x9f\x8d\x35\xc6\xe6\xa3\x95\x13\xd3\x14\x56\x8e\x6a\x79\xab\xb9\xa2\x87\xaa\xae\x2d\xab\xf5\xb1\xa7\x32\x94\x63\xcf\x48\x54\xbf\xea\xc2\x07\x31\xfd\x2b\xa1\xcd\xdc\x4a\xd9\xa3\xad\xae\x93\xb0\x84\xbc\xd5\xe0\xe5\xd8\x9d\x93\xea\x4a\x1c\x2b\xa5\x2e\xa1\xe9\x0b\x56\x98\x66\x31\x1e\xef\xeb\xc6\xbb\x5c\x64\xcd\x99\x34\xf5\x71\x1a\x23\xe7\x14\x6b\xce\xd0\x1d\xf3\xcf\x16\xf0\x51\x67\xaa\xaa\x57\xc2\xc2\x9e\x9c\x19\x0b\xa5\x82\x10\x3d\x55\x5b\xb9\x7b\x66\x75\x18\xef\x69\x92\xe9\x1c\x45\xb7\xa2\xb4\x2c\x45\x59\x5a\xb2\xbe\xaa\x79\x28\xd2\x5b\xdd\x30\x43\x4b\x47\xfe\x53\x2c\x5a\xb7\x98\x34\x7b\x53\x86\xe8\xe7\x73\x5a\xe9\x69\x94\xf2\x73\x51\xd9\x1e\x13\x2f\x0d\x1a\x9c\xa2\xa2\x2c\xb5\x39\x85\xba\x7b\xfa\x9a\xd8\x55\xa3\xdd\xab\x9b\xb4\x72\xbd\xfd\xcd\xf7\x35\x31\x48\xf4\xdb\x71\xde\xf0\x15\xcf\xf3\x5e\x6b\x62\xdf\x37\xd2\x4c\xc4\xab\x07\x03\x36\xd9\xec\x36\xe7\x45\x61\x50\x8d\x28\x59\x86\x5c\x68\x06\x39\x92\x3a\x09\xa8\x6f\xe4\xbc\xc8\x92\x3b\x6e\x50\x03\xe8\x66\xa7\x02\x20\x10\x83\xfe\x5a\xda\x9f\x1c\x5a\x55\x14\x19\xb2\x56\x8c\x9e\x4b\x0d\x20\xc2\xbf\xb7\x52\x97\xaa\x7a\xa0\xd2\x80\xe6\xcc\xd8\xf2\x34\x42\x26\x22\x63\x4f\x85\x08\x45\xdf\x24\xe4\x7b\x1a\x26\x1f\xc3\x87\xa2\x0f\x7f\xe5\xe6\xd0\xcc\x8b\xdc\x24\x0e\xe6\x09\x09\x7f\xaf\xcf\x06\x6e\x22\xca\x46\x04\x78\xa0\x78\xdb\xea\x83\x3c\x67\xd5\xf5\x35\x04\xbe\x9a\x48\x3d\xb4\x65\x4d\x9a\x44\xeb\x06\xb1\x7a\xeb\xbf\xb5\xb8\x9f\xfb\xb3\x00\xc9\xaa\x7c\x9a\xc7\x3e\x9c\xe8\x83\xd6\x01\x4f\x36\x9a\x61\xf8\xc3\xbe\x7b\xc3\xe6\xb8\x03\x6a\x7b\x65\xfd\x88\x67\x06\x89\x3a\x78\xb2\x02\x74\x52\x1b\x28\x1c\xaa\x71\x42\xab\x8d\xd4\x96\x73\x41\xbc\xd4\xcf\x7d\x27\x18\x19\x80\xe7\x46\x20\x1b\xcb\xf0\x12\x9c\xa6\x49\x19\x66\x93\x72\xa6\xc4\xf9\x4d\x83\x7b\x0a\x10\xd4\x17\xa5\xe6\xf5\xe7\x34\x3c\x42\xd8\xc4\xf3\xee\x7a\x85\xc8\xdc\x85\xbc\x44\x4b\xbb\xc4\x8b\x26\xdd\x4b\xc0\x52\x9a\xcc\xe5\xf5\xed\x2f\x62\x42\x6a\xd3\x1f\x09\xa5\x82\x2e\x89\x14\x3c\xd7\x9d\xeb\xbf\x60\xf4\xfd\x5a\x9a\xfc\x0f\x0a\x9e\xac\xc6\x08\x96\x9d\x90\xd7\x88\x26\x2c\x35\x4d\xeb\xf0\xe6\xaf\xb4\xff\x0a\xc2\x14\xc3\xd3\x01\x00\xe8\xad\x95\x90\x45\xb6\x48\xaa\x4b\x83\x42\x2b\xa6\x82\x7e\x4f\x33\xa2\x1e\xff\x0e\x1c\x9a\x67\xc5\xa3\x11\xfd\x74\xa6\x3a\x55\xa8\x19\x84\x89\x21\x50\x36\x1f\x32\xf6\x3d\xee\x93\x8a\x71\x59\x32\x3f\x0d\x08\xb5\xb2\xb2\x14\xd5\xfc\x62\x6e\x09\x8c\xfd\x9e\xee\x58\xb6\x48\x74\x8c\x06\x6e\x2b\xa9\x6f\xdb\x47\x9c\xad\x70\xd9\xe6\xf7\x4b\x8e\x9e\x09\x5f\x65\xd9\x2f\x70\xd6\xee\xff\x62\xa5\x74\x67\x17\xc0\x23\xbe\xcf\xc3\x25\x27\x94\x8f\xdc\x97\x0c\xf6\x12\xe8\xe0\xdf\x7b\x3a\x28\x14\xb2\x21\x29\x55\x5d\x9b\xf3\xc5\xce\x22\x9e\xa5\xb5\x72\xcb\x05\xb2\x9e\xb2\x79\x4b\x6f\x84\x1d\xc9\x66\xa1\xf2\xaf\xe0\xe2\x7d\xbc\xe1\xd9\x4e\x58\x3b\xa8\xfb\x33\xcb\x54\xf8\x4e\xe0\x4f\x03\x3c\xd7\x86\x96\x43\x61\xf6\x32\xb2\xc8\xbc\xef\x69\xda\x82\x39\x15\xbe\x7b\x90\x13\x16\x9c\xf7\x3d\x7e\x9c\x1c\x7c\xcc\xc9\x22\xf7\xfe\x8e\xab\x45\x5f\x23\xea\xf1\xd8\x75\x57\x43\x06\x3b\xb8\xda\x24\x38\xcd\xa4\x07\x59\x7c\xc8\x52\x8a\x2e\x17\x09\xab\x22\x64\xa9\x3f\x01\xd6\x30\xf5\x4f\x83\x79\xe6\x03\xe7\x16\xb0\x10\xfa\x45\x0b\xd3\xc4\x87\xb6\x7f\x00\x2b\xf6\xd0\xfd\xe9\x98\x07\xfe\x24\xa8\xe2\x80\x55\x29\x53\x3d\xc5\xc1\x1c\xb0\x33\xd3\x0a\x6c\xf0\x42\xa8\xac\x36\x85\x04\xd8\x06\x09\x8d\x7d\xe0\x1b\x03\xd6\x43\xa6\xf1\x4b\x8b\xc2\x00\xc3\xa9\x24\x7f\x5e\xff\xde\xda\x2e\xc4\xc2\x7a\x2f\x46\x07\x82\x1a\xb8\x31\xa1\xd2\x1d\x1c\x56\x54\x4c\x63\x42\xe3\x3d\xfd\xb8\xe6\x7d\x9e\x20\x07\xd7\x03\xa6\x4c\xd0\x9c\x55\xd7\xe3\xd1\x8c\xa9\x6b\x2d\xb5\xce\xc4\x1a\xe6\x59\x84\x86\x7d\x57\xbb\xea\xb8\x95\xc3\xc1\x4f\xd2\x50\x78\xea\x36\xf9\xd2\x5d\x1c\xb4\xe1\xa5\x74\x3c\x16\xc0\xa7\x6a\x4b\x18\x4f\x74\xfb\x3d\x90\x3b\xf1\x82\xc1\x61\x0e\x0e\x4e\xd5\x86\x07\x6c\x71\x95\x9b\xc6\x6a\x75\xd1\xa1\x20\xb4\xde\x53\x01\xc2\x36\x6e\xaa\x16\x29\xcb\x5b\x2b\xf3\xd3\xc0\x34\xe1\xaf\x3c\x38\xd5\x0a\xe6\x58\xee\x81\x2a\x9e\x09\x1a\x74\xfd\x13\x73\x53\x68\xa6\xae\xbd\x16\x6c\xc6\x1a\x62\x2b\xcd\xc0\xd7\xec\xe4\x83\xf5\xf6\x2e\x4c\xca\xaf\x53\xc1\xf3\x34\x4c\xca\xef\xc3\xf4\x96\x97\xf5\x55\xd8\xa5\x8c\xf7\x52\xa2\x45\xfc\xdf\xbe\xff\x9a\x20\x2d\x7e\x76\x32\x3f\x46\x64\x3a\x1a\x4f\x0c\x26\x56\x64\x09\x07\x82\xab\x1e\xed\x8f\x61\x9e\x9a\x26\x37\xcd\xaf\x6b\x7f\xa0\x70\xc3\x49\x37\x4b\x75\xf7\x71\xdd\xd2\xa0\x6e\x09\xfd\xf7\xec\x0d\x2f\x8a\xf0\x96\x53\x2e\x09\x0e\x06\xfe\x79\x94\x42\xe8\xb7\x55\xce\xd6\xbc\xb7\x28\x8e\xbe\xb2\xaa\xd3\x2e\x21\x7b\x04\xcc\xdf\x5a\xd8\xd3\xec\x86\x5f\x59\xe4\x29\x54\x51\xe1\x3b\x11\x91\xdf\x7c\x77\xa5\x7c\x17\xdf\x65\x61\xc4\x23\x83\x7e\x05\x24\xae\x37\xaf\x0c\x86\xfc\x15\xa9\x7a\x6b\xc9\x7b\x61\xe5\x4b\x1f\xa6\xfe\x4d\xce\x35\x27\xb6\xa4\xff\x2d\x9d\x5e\x77\xc8\x78\x6b\x7a\xb5\x1c\x1b\x1e\xb6\xbe\xa6\xd1\xa5\x98\xff\xa7\x30\x16\x9e\x7a\x6e\x2d\x3a\x4b\x1a\x11\x2c\xc6\x63\x55\x33\xe6\x7c\xb4\x55\x05\xa4\x2c\xad\xfa\x85\x0d\x1d\x3a\x74\x86\xe8\xc7\xde\xca\xff\xd2\x29\xcb\xbf\xb5\x16\x46\x48\xfd\xc7\xa0\x12\x2f\x62\x3e\x1c\x14\x93\x63\xa3\xc6\x32\xdb\x6c\x13\x2e\xd0\x5e\x24\x94\x19\x7e\x80\x65\x50\x96\x08\x2f\x75\xe4\xd3\xbf\x98\xe6\xf0\x20\x0e\xb6\x1d\x65\x3f\x2c\xf3\x2c\x49\x16\xad\xc9\x56\x2d\x12\xcf\x0a\x7b\xa2\x59\x1f\x99\xbb\xc3\x8c\xd5\xc4\xc9\xe5\xf3\x65\xe7\x8e\xe2\xe6\xf6\x36\x49\xb9\x96\xcc\xa1\x49\xad\x1f\xa0\x3b\x65\xbf\x88\x16\x1b\x1a\xaf\x02\xa7\x58\x3c\xe9\x2f\x07\x71\x3a\x88\x01\xa4\x39\x51\x2e\x1d\x34\xf7\x97\x01\x1d\x3a\xd2\xdc\xaf\x72\x8c\xaf\x55\x2f\xf2\xb8\x3e\x74\x70\x23\x2c\x4b\xab\xc0\x6b\xdb\x76\xb0\x95\x2f\xac\xb4\x52\x5c\x67\x84\xa6\xd8\x36\xf1\xac\x1d\x4b\x69\x7a\xa0\xdd\xab\x8c\xf9\x34\x99\x78\x2a\x0d\x74\x94\x82\x60\xf9\x22\x41\x2b\xef\xd4\x12\xd0\xa1\x9c\x16\x8b\xcc\x53\x22\x1c\x4c\x59\xd2\xea\x93\xe6\x89\x11\x2f\x84\xb7\x5b\x54\xfd\x20\x5e\xb2\x80\x4c\x0e\x64\xf2\xc2\x3d\xfd\x91\x9d\x7c\x18\x6f\x8a\xf1\x09\xfd\x2f\x76\x32\x96\xf6\x05\x44\x17\x50\xfd\xa5\x2d\x28\xb7\x45\xf6\xb7\xed\xb6\xb6\x4c\xa8\xb3\xfd\x47\xcb\x58\xa8\x32\x46\xfb\x91\x1a\x9b\x62\xac\xc5\xe4\xf9\x2f\xfa\x17\x69\xce\xf0\x9f\x7d\x4b\xac\xad\x12\x97\x41\x9b\xf4\xf7\xe1\x48\x53\x98\x37\x5d\x7c\x86\xd4\x23\x2e\x6c\x75\x81\xaa\xb4\xcb\x80\xa7\xd1\x33\x7b\x17\x47\xa3\xd1\x1e\x7f\x99\x4b\x9f\xe9\xb7\x3e\x63\x00\xa5\x3e\xc1\xba\xaf\xd7\xd6\x89\xd1\xf2\xb4\xa7\xff\x29\xaf\x9f\xd6\xc3\x40\xb6\x4b\x30\xe1\x29\x91\xbe\x14\xa9\x36\xfe\xf5\x54\xcf\x47\x95\x1d\xb3\x38\xb8\x37\x9f\xa0\x64\x8b\x16\x5c\x1c\xbb\x38\x52\xaa\x9b\x70\x04\x55\xb4\xe3\x03\x49\x9b\x20\x99\xff\x1f\x96\x20\x01\x4b\x3b\xb7\x8d\xca\x2f\x39\x69\x5f\x8d\x99\x75\xaf\xae\xd6\x26\x5e\xa2\x3b\x06\x43\x69\xb5\xec\x75\x86\x0e\xc7\xb3\x56\x82\xec\xc1\x9e\x86\xcb\x25\x2f\x8a\x63\xf2\xf1\xa6\xfa\xb2\x14\x7d\x32\x5b\x61\x9a\x75\x9e\x74\x51\xeb\x62\xa0\x8b\x9e\x54\xcd\x14\xf2\x95\xa6\x84\x36\x6a\xd1\x45\xea\x09\x72\x28\x78\x6a\x29\xef\xba\xd3\xad\x2f\xee\x1c\x4f\x4a\xf5\x2b\xec\xa6\xcc\x12\x9d\xeb\x83\x05\x59\x08\x14\x4d\xff\x07\xf4\x85\xc1\x80\x49\x9c\x0e\xf2\x85\x2f\x02\x4f\xb4\x24\x99\x44\xb7\x8f\x96\x0c\x83\xba\x97\x25\xf7\x85\x9f\x06\xc1\xde\xd2\x41\x01\x34\x5e\xbb\xec\x56\xde\x25\xff\x29\xc4\x53\x6c\xa1\xaa\xb3\xf3\x15\x0e\x35\xeb\xb0\x78\x13\x8a\xf0\xb7\x63\x7d\x33\x76\xd3\x1c\x76\xfb\x23\x80\xcd\x82\xe2\xdf\xa0\xf3\xc3\x33\xfa\x0f\xf5\xcb\xb9\x32\x77\x78\x92\xb6\x0e\xcf\xaf\xf7\xe5\xb5\x5f\x3d\x07\xe4\x19\xde\xbb\x76\xe2\xbf\x1a\xff\x23\xd0\xa9\x4d\xca\x0f\xec\xea\x9a\x69\xef\x5e\xc3\x42\xf0\x96\x2a\x23\x0a\x45\x38\x36\x46\x42\x37\x81\x35\xc6\xcf\x4c\xa3\x1b\x49\xe0\x00\xab\xf0\xc6\xde\xee\x65\xfd\xf2\x9c\x97\xf6\xd0\x27\x43\xe4\x3b\xdc\x1a\xf1\x56\xfd\x30\x29\xb8\x21\x77\x5d\xcb\x00\xca\x2e\x83\x48\x61\xa8\x2c\xce\x18\x1b\xf1\x91\x61\x2c\x46\xdc\x6b\xac\x5f\x17\xdf\xfc\xf0\xdd\xb7\xd2\x8a\x01\x97\x0e\xd9\x5b\x69\x75\x9c\xcc\xc8\xd3\xfe\x1f\x1a\x12\x4b\x4f\xa9\x94\xb5\x03\x17\xa6\xfb\x47\x5d\x2d\x7e\x30\x95\x2a\xdb\x3f\x6c\xf5\xd1\xe2\xa4\x2c\xbf\xd1\xde\xf6\x34\x6a\x97\x69\x2d\xc3\x7f\xd8\x72\x99\x56\x7d\x50\x0b\xe7\x4d\xb7\x08\x79\xfa\x87\xe2\xaa\x54\xac\xc7\x9f\x3f\x55\xeb\x37\xdd\x5a\x7f\x3e\x5a\xed\x37\xad\x6a\x91\x4d\xd1\x0c\x01\x0e\x1a\xe9\x84\xe2\x97\x3a\x61\x1a\xc2\x81\x3a\xd6\xcc\x5a\x5b\x68\x24\xed\x61\x34\x75\x0f\x6a\x83\xfe\x81\xe4\x24\x96\x46\x60\xb1\xa6\x35\x1f\x7e\x23\xbf\x50\x43\x01\x11\x90\xa5\x30\x88\xba\xd5\x2a\xad\x5d\x0e\xe5\x6a\x0e\xf1\xa8\x00\xed\x58\x39\x83\x17\xc9\x57\x37\x21\xd0\x24\xb6\x4a\x05\xd5\x7f\x58\xb9\x12\xb1\x9e\xc2\x3e\xcf\xa5\x7f\x25\xde\xf8\x3c\xff\x06\x71\xa1\xdb\xac\x1e\xc1\x33\x53\x0f\x87\x22\x17\xa5\x6a\xc6\x63\xaf\xce\x62\x4b\xfc\xaa\x2e\xf7\x27\xc4\xfb\xf2\xe0\xd2\xfe\x2a\xc6\x46\xbc\xb2\x62\x8d\xe4\xd6\xe1\x10\x6b\x72\x60\xa5\x15\xcc\x28\x27\x64\x91\x7a\xfa\x17\x1c\x8a\x9e\x3c\xff\x7c\x87\x60\xc2\xe1\xf0\xaf\x22\xb4\xd2\xc3\xe3\x9f\xfc\x32\x74\x8e\xe1\x65\xe7\x7e\xff\xc3\xc6\x14\x6e\x35\x00\x50\x7a\x76\x85\x5e\xbf\xee\xf8\x8e\xf7\x6f\xb8\x00\x8f\xc6\xe4\x8a\xa1\x4f\xe8\xea\xde\x20\x23\x03\x0b\x19\x34\x67\xdf\xd4\x1b\x12\x4d\x4d\x13\x63\x3c\x1f\x5c\x22\x0f\xb9\xb4\xb5\xa0\x5b\xe7\xa4\x84\x78\x79\xa3\xb7\xc1\xbb\xf7\xf6\x34\xe2\x87\x9d\x22\x4f\x78\x61\x1e\xb4\x2f\xe3\x02\xb3\x47\x1b\x73\xc9\xc6\xf3\xfa\xc2\x2b\xbc\xfb\xaa\x76\x9d\x62\x8f\xf6\xcf\x98\x0d\x8e\x88\x85\x0c\x33\x6b\xc4\x69\x2d\x2f\x67\xea\xf2\x19\xad\x4c\x3e\x1e\xa3\x53\xae\x05\x6d\x31\x65\x08\x5b\x85\xf0\xd5\xcb\x12\xaa\x76\x9c\x18\x55\x5e\xb4\x56\x2c\xea\xf0\x7f\xb4\xd5\x68\xe4\xe2\x26\xe8\xdc\x3b\xcc\x4d\x13\x57\x2b\xea\x59\x50\x50\x61\x01\x85\x68\x7a\xda\x7f\x53\xb9\x02\x3c\xe6\x30\xe6\x35\xa1\x91\x53\x90\x22\xd1\xab\x01\x9d\xd2\x27\xa9\xc5\x39\x2e\x60\x3f\x90\xf3\x68\x84\xc8\x17\xf5\x2c\xa7\x81\xc4\xd1\x03\xca\xd4\x37\x4b\xb2\xa7\x93\x4a\x4d\xdd\x67\x0b\x64\x09\xc6\x29\x67\x00\x5e\x9a\x02\xb0\xbb\x48\xff\x22\x5d\x54\x93\x5b\x51\xb7\xfa\x72\x8c\x9a\x19\xf3\xfa\xf1\xbd\x8d\x1b\xf5\x22\x9b\xb7\xf1\x40\x2d\x06\xaa\xa6\x98\x4b\xfb\xfa\x6a\x62\x81\x87\x42\x7b\x9b\x66\xf2\xb4\xd5\xd3\x83\x9e\x9f\x59\x83\xfd\xd5\x2c\x13\x1e\xe6\xff\xf9\xc9\x9a\x14\xe2\x48\xb4\xa7\x7e\xd0\x2b\x18\xd4\xb9\x3a\x97\x66\x6d\xf1\x93\xdc\x1f\x68\xd8\x32\xd4\x2a\x74\x91\xdb\x78\x9c\x97\x65\xd6\x3a\x30\xc7\xd4\x8f\x03\xb2\x47\x76\xed\x53\x33\x28\x67\x04\x1d\x83\xd4\xca\xc4\x48\x58\x56\xaa\xc8\x42\xec\x87\x01\xe5\x2d\xa4\x95\xf7\xb3\x20\x62\xc2\x66\x30\x1a\x51\xf5\x86\xb8\x58\x34\x27\xb8\xc2\xd2\x85\x76\xa2\x96\x1c\xe5\x78\x85\xed\x38\x58\x00\x9f\x15\x3d\xbf\xb6\x4b\x72\x1d\x8d\xac\x85\xe7\xf3\xb7\x01\x7e\xb8\x8e\x46\x25\x39\x51\x97\xd1\xd1\xac\x7d\xd1\xed\x87\xea\x3e\x61\xc2\x4a\x62\x19\xa3\x9c\x8f\x0c\x82\x07\xc0\xff\x15\x3c\xaf\xaf\x09\x8e\x39\xf3\x8d\xf7\xd9\xd6\xa0\xc6\xf7\xf1\xed\x5a\x18\xd4\xf8\x73\x26\x44\xb6\x31\xa8\xf1\x8e\xaf\x84\x11\xd0\x90\xb3\x03\x11\x00\x2d\xfa\xa2\x1e\x0f\x34\x43\xbb\x4e\x18\x68\x69\xcb\x02\x87\xb2\x6c\xb3\xcd\x0a\x1e\xa1\xfd\x60\x88\xec\xd9\xf7\x59\xa6\xe2\xf6\x58\xbf\xa3\xda\xb2\x6c\x55\x62\x2d\x31\xbe\x7b\x27\x9f\x02\xe9\x81\x83\xa7\x5a\xbb\x69\x96\x22\xe3\x67\x71\x26\x2f\x24\x2b\xc4\x43\x82\xf7\xc8\xe1\x45\xe7\xa5\xf2\x70\x69\xa5\x9a\x26\x72\x79\xa6\x59\x97\x7e\xb4\x97\x48\x8f\x0c\x95\xc3\x20\x7b\xba\xeb\xde\x21\x5c\xeb\xbc\x68\x4c\x43\xf6\x24\x51\x2f\x96\x87\xb6\xd0\x8f\x83\xaa\x19\x3f\x0e\x68\xf3\xc8\x44\x75\x75\x10\x66\x05\x22\x5e\xdd\x33\x8b\x3b\x09\xa1\x82\x68\xb9\xa1\xa2\xe6\xd4\xd7\xb0\xdf\x5b\xde\xd7\x89\x89\x43\x0b\x96\x1f\x86\x47\x1d\xe4\xf6\x72\x97\x5b\x7a\x0c\x7b\x7d\x4a\xd4\x26\x87\x36\x0c\x4b\x06\x58\x8c\x2a\xa2\x14\x43\xdb\x5a\x98\xe1\xdb\xdd\xe6\x86\xe7\xbe\x08\x16\x86\xe1\x19\xdb\x7b\x83\xd0\x5d\xcb\xfd\xa2\x93\xad\x2c\x21\xd3\x90\xb1\xc4\x34\x47\x4b\x62\x9a\x19\x97\x86\xc9\x75\x73\xd2\xd9\x77\x67\x9a\x3b\x7f\x1a\xa0\x4f\x3d\xb2\x69\xcb\x13\x36\xa1\x09\x4b\xca\x12\xd2\xe9\x8e\x8d\x96\x65\xe9\xca\x45\xfa\x28\xe1\x82\x9d\xdd\x8d\x12\x42\x2d\x77\x1c\x93\xe7\x96\x3b\xb6\x62\xe8\xf6\xc9\xb2\x2c\xed\x53\x42\x5e\x30\xc7\x34\xad\x90\x39\x84\xee\x4e\x58\x3c\xdf\x3d\x67\x13\x7a\x50\x58\xe9\xd0\xf7\x9a\xa3\xc1\x8e\x8d\x76\x65\x09\x2d\x3a\xb0\x25\xfb\x6e\xb0\xd8\x8d\x2c\xf8\x1d\xb9\xe4\x79\xea\x4f\x02\x6f\x84\x6a\x88\x1c\x08\x81\xbd\x4b\x63\xc1\x12\x9a\xdb\x85\x08\x73\xc1\x76\x34\xb7\x79\x1a\x31\xf4\x5c\x47\xd9\xc9\x8a\x23\x5e\x54\x93\x16\x71\x3d\xa0\x6f\x77\x01\xe4\x9a\x97\x14\xcd\xd8\x8a\xeb\x07\x7e\x19\x75\xd6\xbe\xc9\xa2\x87\xd6\x05\x27\x69\xc7\x03\x0e\x83\x73\x28\xfc\x15\x1a\xfe\xd2\x4f\xdd\xd4\x59\xe3\xbd\x64\x2b\x8c\x9b\x24\x5b\xfe\x62\x10\x8a\x5d\x60\x59\xeb\x96\xd3\x75\xf7\x12\x4f\x60\x84\xa5\xd5\x84\x43\xc3\x26\x0a\x4a\xfc\x22\x9c\xc7\xa3\x11\xb1\x72\x0c\x2b\xae\x16\x22\xba\xa8\xe7\xed\xe5\x47\xc5\xc2\xaa\x7b\x00\xb3\x90\x01\xe2\x4b\x6a\x9c\x6b\x43\x28\x4b\x19\x46\xc1\x8f\x01\x2b\x3b\x95\x30\xbc\x87\x0e\x57\x77\xde\x5d\xdd\x09\x47\xcb\x17\x59\x6f\x24\x8f\x8e\x9e\x6c\x71\xa8\xb5\x28\x53\xa8\x64\xe7\xb5\x86\x69\x5a\xb9\x4e\x60\xe0\x75\x35\x2e\xa9\xd1\xca\x64\xc4\x74\x18\x61\xa7\x3f\xf0\xe5\x98\x99\x74\xb1\xce\x3e\xf6\xac\xc4\xb5\xda\x6b\x91\x6f\x5e\xc7\x51\x9f\xa1\x80\xca\x43\xf6\x54\x64\xb7\xb7\x49\xdf\x36\x6c\xdc\x64\x59\xc2\xc3\x96\xdf\xef\x42\x1d\x34\xa0\x65\x4b\x99\xc8\x43\x0b\xd5\xf3\xc1\xf6\x9f\xa8\x76\x16\x8f\xf2\xb7\x2a\x59\xbd\xca\xc2\x92\x31\x47\x82\x7c\xa3\xe4\x08\x55\xdc\xa7\x12\x23\x41\xe1\x65\xf0\x1b\xce\x4e\xda\x0e\x51\x1d\x7f\xa8\x93\x98\x5e\x41\xf1\x67\xe5\x87\x4d\x16\xed\x12\xfe\xac\xbc\x3e\xb1\x16\xde\x3f\xc3\xbb\xb0\xe4\xcb\x4d\x48\x8a\x65\x1e\x6f\xc5\x49\x4c\x6f\x39\x7b\x92\x81\xe5\x3c\xdf\xa5\x46\x75\x2d\xd2\x66\x97\x88\x78\x9b\x70\xf6\x45\xf5\xf4\xc5\x4b\x83\x1a\xcd\x85\x48\x01\x15\x6b\x1e\x46\xb2\x10\xba\xae\xca\xef\xea\x31\xa0\xcb\x2c\xf1\xfc\x49\xfd\xf1\xc5\x32\x4b\x6e\xf3\x6c\xb7\x95\xd9\xea\x37\xad\x84\xc8\x5b\x05\x04\xac\x4d\x55\x29\x3e\xea\x59\x23\xcf\x9f\x76\xb3\xbe\x10\xb9\xca\x9e\xbf\xec\x29\xf3\xb3\xf2\x88\xf4\x7c\x87\x1a\x06\x35\x8c\x40\xa3\x24\x77\xfa\xed\xb7\xb5\xc8\xe1\x13\xb7\xf1\x1d\xde\xf6\x76\xe4\xca\x46\x19\x43\x87\x78\x47\xaa\xea\x5e\x7a\xb4\xe8\xb9\x07\xa9\xaa\xc2\x0f\x68\x47\x5a\x28\x7d\xec\x16\xb5\x95\x29\x0f\x28\x3a\x11\xd5\xe3\x7a\x38\xb8\x22\xd8\x41\xba\x58\x1d\xdc\x5f\xe4\xf3\x74\x34\x22\x72\x8d\x72\x3f\x0d\xa8\x71\x9b\x64\x37\x61\xf2\xf6\x2e\x4c\x0c\x74\x61\x96\x84\x43\x74\xbf\x11\xb2\xbf\xe5\x76\xb6\x15\x38\x8f\x4c\x3e\xc7\x59\x4a\x6f\xb9\x8d\xb0\x87\x24\xb1\xca\x32\x01\x0f\xd5\x7c\xe3\x73\x28\x75\x63\xb7\x68\x8c\x19\x46\x58\x62\x8d\xaf\x11\xa2\xfe\x2b\xc0\xef\xd2\xfc\xd3\xe2\xfa\xe3\x68\x7e\xd2\x4c\xd2\xd1\x90\x4e\x55\x40\x11\xba\x65\x42\xd1\xef\x6a\x17\xf8\x32\x0f\x6f\x91\x90\x93\x2a\x5a\x92\x43\xd7\x0d\x00\xa2\x17\xeb\x79\x24\x5d\x21\x30\xe4\x53\x14\x10\x19\x02\x33\x26\x5d\x35\x49\x4c\x48\x05\xe7\x15\x8d\xb5\x90\x48\x71\xe0\xc5\x8d\x76\xe4\x95\x92\x79\xc5\x4a\x4c\x12\x32\x8c\xe6\xd0\xba\xfe\xab\xeb\x65\x1d\xc5\x77\x40\x6d\x0b\x66\x6d\xd4\xae\x1e\x93\xb2\xf4\x25\x96\x92\xc3\xc0\xfb\x4b\x76\xcb\xfd\x22\x28\xcb\x5b\x6e\x57\x68\x4d\x43\xcd\x51\x79\x09\x3b\xec\xa3\xbd\x16\x9b\xe4\xaf\x39\x57\xd6\xbe\x31\x19\x2d\x61\xaf\xdd\x61\x44\x01\x19\xc6\x28\x64\x61\x13\xcf\x79\xde\x8c\x2f\xd4\x8d\x95\xa9\x15\xb2\xad\x6e\x4e\xad\xc7\x4a\x65\x86\xa1\x02\x9a\xc9\x23\x7c\x35\xb8\xf7\xfc\x5e\x72\x9d\xd5\xa5\x17\xdb\x4e\x29\x98\x8a\x79\xcc\x56\x7e\x54\x45\xb1\xc8\xd1\x45\x49\x59\x24\xc6\x34\x27\x2f\xc7\x2e\x41\x8b\x26\x15\x72\xab\x06\x72\xc2\xa4\x12\x3f\x64\x77\xdc\x6a\x03\x37\x26\xd4\x90\xd4\xcd\xc0\x10\x5d\x0f\xdc\x0a\x09\x95\x17\x4f\xef\xb0\xc5\xd0\xdf\x61\x8b\x57\xd5\x4c\x55\x31\x1b\x0d\x52\xbb\xbb\xc6\xf5\x56\xb3\xdd\x0f\x0f\x4d\xbb\x8e\x22\x59\xab\x2b\xe1\x91\x79\x16\xec\xe0\xcb\x67\xee\x91\x43\xda\x8f\x4c\x47\xfb\x73\x75\x9b\x1e\x35\x9a\x7b\xf5\xba\x79\xd4\xdd\x72\xa2\xe7\x16\x3a\x7a\x25\xc3\x8b\xbe\x4e\xb2\x14\x2d\xd7\xe1\x17\x27\x6d\xe8\x90\xce\x5b\x8d\x25\x55\x44\x52\xda\xf6\x8c\x87\xc9\x0d\x73\x1e\xbe\xbc\x7f\x71\x52\x3f\x1b\xf4\xca\x4e\x33\xac\xfe\xb5\x2c\xc5\x30\xa6\xe9\x91\x9a\x5b\x3e\xeb\x96\xdc\x07\x1f\x61\x23\xfb\x85\x3f\x9c\xd0\x9f\xd5\x8e\xb8\xc9\x76\x05\x2f\xb7\x59\x9c\x0a\x9e\x97\x4b\xe9\x77\xbc\xe1\xe9\xae\x8c\xf2\xf0\xb6\x8c\xf2\x6c\x4b\xca\x65\x12\x2f\x7f\x39\xa1\xdf\x61\x19\xff\x83\x1d\x3c\x27\x70\x58\xb4\x2d\x7b\x44\x4a\xa2\x11\x95\xf7\x5c\xbf\xf4\xa0\x4e\xbe\xd7\x92\xb5\xfb\xc7\xbf\xe5\x6d\xaf\x66\xc6\x58\xc7\x4c\x4a\x7d\x09\xdb\xe1\x66\x1b\x2b\xf2\xfd\x1e\x1d\x9d\x2d\x03\xa3\xd5\x22\x4f\xa1\x71\x83\xef\x3a\x21\xe3\xd0\x52\x87\x16\x1d\x9d\x6d\xad\xe5\x42\x0a\x53\x0c\xe2\x1e\x19\x4b\x8a\x72\xd6\xbc\x2c\x53\x9a\xd6\x87\x74\x41\xb0\x81\x02\x1b\x10\x7e\x11\xd0\x58\xe3\xa9\xe2\x95\x72\xd8\xc9\x65\x9c\x1a\xc6\xb2\x85\x95\xb1\x94\xe6\xac\xae\xc2\x53\x1f\x4c\xb3\x47\xed\x96\x42\xf6\x9c\xe6\x75\x66\xf5\xaa\x75\x41\x85\x3e\xcf\x48\xc6\xee\x79\xbd\x9e\x87\x59\x1d\xb8\x40\x0f\xdc\x1f\xe3\xa9\x23\xa3\x56\xd6\x7b\xf6\xb5\x88\x9d\xad\xf0\xe2\xa5\xb0\xdf\xe6\x71\x4f\xec\xdb\x5d\x1c\xb1\x10\x7f\x30\x78\x1f\xbe\x3f\xe2\xcf\x68\x84\x97\x6a\xf4\x48\x6a\xf8\x1d\x4f\x05\x0a\x23\x94\xcb\x45\x46\x73\xa9\x92\x6e\x66\xea\x6d\xad\xaf\x49\x17\xd6\x37\xb5\xfa\x62\xe8\xa2\x5c\xb5\xae\x00\xd2\x9e\xea\x8b\xbe\xbd\xa1\x4b\xd7\x78\x23\x4d\x7e\xa0\x87\x92\x92\x7c\xb5\xdb\x62\xb3\x78\xa0\x73\x4d\x6e\xc7\xc5\xfb\x3c\xbe\xbd\xe5\xb9\xf2\xfe\x12\xd2\x77\xb4\x32\xd6\x26\x56\xd5\x22\x46\x52\x08\x13\x3c\x2f\x3e\xed\x89\x1d\xf1\x84\xdf\x02\x31\xae\xae\xea\x17\xd9\xf6\xaf\x79\xb6\x0d\x6f\x43\x39\xd8\x7a\x06\xe2\x1e\x2b\xa6\x6f\x1a\x19\xb5\xa0\x31\xca\x57\xab\x9e\x51\xd5\x0f\x8b\xd0\x78\xc8\x98\x95\xb5\x3b\x4e\xca\x32\x5f\xb4\x8a\xe3\x3d\xdd\x78\x27\xfa\x10\x66\xbf\xd6\x97\x43\x8f\xbe\xde\x6c\x78\x14\x87\x82\xb7\xba\x46\x39\x7a\x88\xf1\x54\xbc\x91\x64\x01\x85\x41\x77\xcd\xbd\x41\x71\xa3\xc5\x68\x35\xa5\x74\xcb\x15\x4c\x84\x04\x9d\x55\x4b\xbb\x63\xdf\x09\xe8\xa3\x8d\xc6\x15\x8d\x52\x9c\xd0\xb8\x0e\x38\x5d\xb9\x8b\xd2\x4f\xf5\x0f\x1d\x5d\x1a\x81\x64\x23\x04\x87\x5d\xac\x8d\x00\xef\x39\xd9\xab\x34\xf6\x24\x79\x28\xef\xe9\xd0\x29\xaf\x75\xf9\x85\xce\xd5\x54\x97\x4f\xd0\x4d\xd5\x0c\x91\xd7\x44\xa0\x1e\xc6\x56\x18\x85\x67\x41\x2b\x66\x29\xa9\x52\x68\xc6\xe2\x3a\x54\x06\xca\xb3\x8f\x78\x42\x86\x1c\xcd\x34\xaa\x65\x92\x76\x96\x09\xb5\x96\x6c\x23\xfb\x5f\x90\xb2\xd4\xde\x30\xde\xa8\x15\xb2\x8d\x6a\x12\x23\x64\xd6\x6f\x4c\xd7\xae\x7c\xc2\xd9\xea\xb1\x01\x99\x9a\x2d\x1e\xa1\x2b\x9f\x90\xf1\x07\xe4\x27\x38\x09\x62\xbc\x89\x4a\xbe\xa3\x19\xc3\xa9\x4b\x93\x09\x4d\x98\xa5\x94\x14\x06\xd1\xf5\xcf\xc0\x48\x55\x4c\x5f\x82\xca\x67\x76\xc3\xac\x82\x7d\xa7\x18\x2e\xe1\x27\x81\x8a\x81\xe4\x06\x74\xcd\xac\xc2\x9f\xa8\x5b\x95\x54\x40\x1e\xbb\x8a\xc8\x43\x68\x64\x9a\xd6\x96\x75\x17\x5d\x84\x8b\x8e\x46\xcc\xca\x16\xdb\xd6\xd2\xf3\xb6\xf6\x4d\x9c\x46\xea\x66\x86\x88\x1e\x2d\xbb\xfb\x7f\xa8\xfb\x13\x2e\xb7\x6d\xe4\x5f\x18\xfe\x2a\x2d\xbc\x1e\x5e\xc0\x42\xab\x25\x67\xf9\x4f\x28\xc3\x3c\x8e\x97\xc4\x13\x77\xec\xd8\x4e\x62\x0f\x5b\xd3\x87\x2d\x41\x2d\xc6\x14\xa9\x90\x50\x6f\xa2\xbe\xfb\x7b\x50\x58\xb9\xa8\xe3\xcc\x7d\xee\x3d\xcf\x13\xcf\xb4\x48\x10\x04\x40\x2c\x85\xaa\x42\x55\xfd\x98\x3b\x93\x81\x08\x6f\x0b\x5a\x94\xe9\x25\x94\x71\xa1\xce\x2f\x4b\x4b\x40\x72\x2a\x87\x27\x54\x83\x45\xcd\x30\x87\x05\xf5\xe3\x71\x84\x30\xe8\x07\x82\x75\x28\xfe\x47\x8e\xbc\x25\x50\x2b\x1d\x6d\x68\x84\xc8\x5e\xae\x79\xbc\x64\x73\xc5\x15\x63\x7d\xc9\xe2\x99\x23\x2c\xcf\x8a\x6d\x2e\xd8\x98\x6e\xe4\x02\xdc\x6e\x82\x60\x30\x19\x30\xa6\xef\x5c\xd4\x8c\x15\x4d\x40\x1b\xd9\xb6\x69\x92\x34\xa9\x63\xe7\xb4\xa0\x09\x21\x74\x23\x1f\xc8\x7e\x96\xbf\xa6\xa4\x2d\xa1\x5b\x33\xb9\xcd\x64\x6d\x26\x30\xd5\x1d\x84\xd0\x22\x5a\x1a\xc7\x98\x65\xb3\xbd\xc3\x21\x1d\xd3\x2d\x09\x35\xc7\xba\x75\x14\x5b\xad\x4d\xf9\x91\xde\x59\xdb\x7f\xb1\x46\xdd\xa9\x73\x10\x34\x56\x6c\x10\xf8\x4b\xc9\x44\x27\xfd\xc2\x29\x9b\x2e\xf1\xff\xd6\xac\x55\xd5\x1d\x9c\x7c\x30\xbc\x0c\x97\xf7\x4f\x5e\x80\x33\xa1\x15\xab\x00\x55\xac\x85\xdb\x74\x76\x36\x22\x68\x68\xe6\xd0\xd9\xd9\x08\x47\xe1\xe8\xe1\xd9\xd9\xa8\x26\x88\x0c\x11\x96\x57\x0f\x08\x02\xe0\x0c\xb6\xf4\x22\x81\x4d\xc9\x96\x2d\x21\x10\x58\x11\x04\x17\x03\xc6\xb6\x23\x33\xf1\xeb\x1a\xc0\x00\xe4\xa8\x42\xba\x1a\xf6\x2a\x08\x06\x95\x9a\xbf\xdb\x91\x9d\xbe\x72\xdf\x09\x82\x12\xf2\x55\x16\x99\x12\xa3\x87\x0f\x25\xb5\x29\xeb\x7a\xe0\xd2\xe5\x94\x5e\x36\xa2\x7f\xf9\xef\xb4\xa6\xcc\xf1\x31\xdd\x68\x2d\x5f\x10\x98\x2b\x37\x2b\xc9\x34\x09\x82\xc1\xd2\x6d\x48\x52\xd8\x49\xca\x45\x71\x9d\xdb\x25\x61\x12\xcc\x5b\x2b\xea\x11\xcd\x3b\xdf\x54\x13\x73\xba\x70\x0f\xcd\x01\x23\x2c\x43\x17\x3b\x7a\x71\x94\xe6\x47\x73\x62\xc6\xd2\x9e\xd9\x2d\x86\x72\x52\xc0\x34\x1d\x8c\xc9\xb4\x6d\xb7\x32\x87\x19\x69\x73\x23\x55\xc9\x91\x9a\x90\x88\xec\xc1\x41\x6b\xd3\xf1\x7c\x69\xf8\x15\xca\x69\x6f\x27\xd1\x32\xbd\x91\x1c\xd8\x1c\x4e\x58\x94\xe8\xd6\x3e\xca\x03\xaa\xec\xf1\x07\xc8\xd4\x06\x4c\x4a\x5c\xa9\x68\x6f\x30\xaf\xb6\x9d\xc9\x69\x9f\xea\x03\x01\x29\xbb\xb2\x8a\x0a\x36\x99\x8a\xc7\xed\x9a\x20\xde\xca\x3c\x16\x9e\x09\xb5\xc6\x83\xad\xdc\x9c\x06\x58\x0a\x75\x24\x36\xd8\x4a\x1e\xe3\xb9\xfe\xe2\xba\x86\xa1\x6a\xa4\x79\x2e\xf9\x95\x95\xe8\x4d\x1b\x35\xe1\xa9\xfc\x4c\x34\x53\xd1\x5f\x70\xc1\x92\x58\x0c\x87\x33\x02\x33\x35\xad\x3c\xe6\xe1\xbd\x28\x36\x1b\xb0\xed\x85\x1d\xbc\x1a\xcd\xb7\x65\xc9\x73\xa1\x9b\x56\x8c\x78\xc6\xd7\x34\x97\xa5\xa4\xac\xb0\xd5\xc4\xb9\x57\x5c\x1f\x53\xe2\x95\x5b\x8d\x4a\xbb\x2a\xf4\x14\x4c\x47\x7e\x8a\x9f\xc1\xc8\xc1\xfe\x3a\xc2\x95\xae\xf7\xcd\xc5\x1f\x2c\xa5\xd5\x48\xee\x3e\x2c\x85\x1f\x67\x66\x86\x4b\x86\x3b\xdc\x67\x6a\xd7\xae\x66\x43\x55\x41\x75\x9d\x9a\x4f\x21\x7a\x0f\xd7\x5f\x3a\x07\xc8\x0d\xc9\xf1\xe3\x6a\x54\xf2\x6a\x9b\x09\x06\x1a\xe6\xaa\xcb\x02\x56\x5d\x26\xd6\x1d\x18\x6e\x47\x9b\xa2\x12\x66\xec\x82\xa0\x79\xdf\x18\x4b\x6a\x6a\x02\xd3\x30\xd5\xc1\x87\x2d\x6c\x60\xca\xc7\x33\x3a\x67\xa2\x49\x18\x68\xc6\xf8\x48\x21\x9d\x40\x50\xf8\x20\xc8\x7c\x13\x1a\x8c\x40\x10\xf5\xa1\x1b\xf8\x48\x61\x43\x3c\x61\x13\x6d\xde\x9a\x49\x5e\x67\x95\x56\xd3\x8c\x65\x0d\xa7\x77\x60\x43\x75\x10\x30\xbf\x58\x53\xea\xc0\x01\x4e\x80\x19\x74\x66\xc1\xd9\xf5\x54\xd5\x2e\xc0\xbb\x3d\x55\xf8\x0a\x73\xd0\xf6\x59\x9e\x35\x89\x0b\x39\x82\x10\x83\xd5\xd2\x3e\x03\xe0\x9b\xc4\xc5\x8c\x95\x0d\x7e\x21\xba\xc3\x2a\x86\x8b\xb6\xea\xc1\x19\x38\x8d\xea\x00\x47\xea\x91\xc6\xd5\xcd\xec\xde\x45\xa8\x2c\x29\x08\xac\x43\xed\xd4\x31\xee\x95\x8e\x6a\x2b\x67\x41\x98\xb9\x71\x48\xf7\xd6\xd6\x27\xd3\x1e\x5e\x8f\xc5\x5f\xbe\x25\x4c\x64\x4a\x08\xc1\x0b\xfc\xb5\x9c\x27\xad\x51\xed\xb7\x4f\xed\xc8\x03\x94\xd3\x1d\xcf\xb7\x6b\x6e\x4c\x53\xdb\xa6\xaa\x60\x31\x0a\xe1\xc3\x3c\xd9\xd1\xd8\x57\xc9\x05\x90\xe6\x49\x06\x85\x5a\xeb\x99\xbe\x67\x8d\x23\xc4\xfb\x5f\xef\x3c\x89\xf9\xac\x65\x2a\x7b\xf0\xfb\xb4\x11\xc4\x5f\x7c\xd2\x75\x99\x0a\x73\xad\x2d\x74\xc1\xe4\x63\x4f\x97\x69\x7f\x74\x93\xd8\x5a\x1c\xcf\x22\x1e\xca\x3d\x40\xf7\x24\x58\xdc\x69\x8a\x10\xee\xb2\x22\x59\x84\xbb\xbc\xf8\x7e\x7b\xa1\x0d\x7d\x29\x4c\xe1\x70\x07\x9c\x62\x8f\x51\xa6\x6c\x70\x5d\x5b\x75\xc0\x85\x26\x52\xc2\x84\xf4\x14\x23\x28\x20\x08\x5e\x60\x41\x8d\xfe\x2c\x08\x5e\x40\xe4\x47\xb5\x3c\xa4\xdc\x45\x07\x93\x3d\xd5\x42\xc5\xff\x99\x5a\x08\x95\x5f\x63\x4f\x17\x7a\xcc\x4b\x0d\x7d\xf8\x9b\x95\xe8\x1d\xd3\xd6\x53\xd7\xf0\x3c\x81\x5d\xfa\x82\x2f\x8b\x92\x6f\x73\xd5\xb1\x3e\x95\x6b\xb6\xc0\x10\x6a\xae\xa9\x9d\xa4\x3f\x8d\x39\x04\x56\xb5\x8d\x94\x91\x6a\x27\x68\xe1\xec\x7b\x64\xbf\xdf\x2b\xff\x16\xcb\xa6\x74\xec\xf8\x79\x9f\xbf\x89\xac\xb0\xcf\x0d\x45\xd9\x43\xea\xc9\xd2\xc5\x1f\x1f\xc0\x8c\x6d\x84\xc6\x52\x59\x5d\x7c\x5a\x7f\xae\x51\x01\x0e\xae\x8a\x1a\x46\x3d\x8b\xc8\xc4\x92\x02\xfb\x77\x95\x4d\x25\xa4\x95\xde\x5b\xde\xaa\x9d\x86\x2f\x98\x0d\x9e\x69\x93\xea\xda\x19\x51\x76\x1e\xea\xad\x8b\xfb\xfd\x16\x7d\xe0\xe1\x8d\xa9\x52\xed\xea\x66\x1a\x04\xc1\x57\x6a\x37\x80\x3b\xcf\xa0\xd9\xa4\xb8\x1d\x20\x34\x69\xaa\xa0\x26\x97\xc0\x9b\xf7\x2a\x0b\x04\xd1\xe5\x0b\x9b\xa5\x71\xaf\xcf\x26\x55\x17\x50\xa1\x04\x43\x10\x36\x7d\xad\xce\x48\xa4\x6b\xfe\x5e\x24\xeb\x0d\x53\x3d\x6a\x6e\xeb\xfa\x79\x22\xf8\x28\x2f\xae\xb1\xd6\xff\xb8\xb5\xcf\xe4\x1a\xe8\xd0\x50\xb6\xf3\x22\xa0\x85\xfa\x31\xed\xf6\xb8\xec\xaa\x3e\x06\x49\xa5\xdf\xc3\xe9\xa8\x0c\xef\xd3\xf5\x16\x3e\x33\x1c\x4c\x68\x93\x61\xe8\xba\x65\x77\xa7\xc6\xf4\xd0\x3c\xf8\xc0\xa9\xdc\xc3\xf5\x63\x5b\x0b\x80\x68\xb5\xd8\x92\x3d\x6d\x71\x25\x7f\xa7\xe2\xee\x77\xdd\x57\x75\x87\xfd\x51\x75\xf7\xf5\xd2\xdf\x69\xc4\x3d\xbd\xfc\x57\xad\x39\xa0\xbf\x53\x07\xe4\x9d\xd6\xee\x6d\x7c\xa7\x24\x13\x3f\xf1\x5b\xb9\xd7\x5c\xc0\xb6\x00\x91\xd4\xe6\x72\xb9\x67\x76\x83\x5a\x25\xf9\x25\x5f\x7c\x28\xb6\x10\xe6\x5e\xa6\x88\x32\xd3\x6f\x2d\xb8\x48\xd2\x4c\x5e\xc1\x60\xbc\x5d\x25\x15\xbc\xb4\xe6\x22\xd1\x59\x36\xc9\x25\xff\x68\x2e\x3e\xc9\x0b\x30\xe1\xd4\x4f\xaf\x52\x7e\xad\x6b\x29\xd5\x76\xb8\x30\xb5\x96\xcf\xf4\xf5\x67\x95\xf5\x33\xbf\x35\x29\x1a\x33\xcc\x5e\xa9\x66\x65\x29\xcf\xc5\x47\x77\x09\x95\x15\xcb\x65\xc5\x55\xaa\xba\x84\x54\x7d\x74\xf1\x6a\xe1\xdd\x80\xa4\x2d\x9b\x37\x2f\x39\xcf\x3f\xba\x4b\x78\x43\x51\x01\xaf\x17\x44\xa1\x0f\x16\xd4\x8d\x4d\xbf\x5e\xa5\x7d\x92\x1b\x33\x4c\x67\x13\x74\x98\x8f\x20\x7f\x10\xdc\x19\x43\x7d\xb5\x25\x45\xda\xbd\x78\x64\x3a\x22\x72\x97\x21\x1f\xd9\xbe\xb0\xef\xfb\xae\x12\xe7\xad\xb2\x26\x81\x88\x26\xe1\xa3\x40\x44\x5f\x85\x5f\x07\x22\x7a\x14\x8e\x43\xfd\xa2\x9a\x0b\x46\x55\x2a\xa7\x89\x0b\xfe\xa5\xc0\xfc\xd4\x29\x49\x9a\x23\x7a\x91\x6d\x4b\x7d\x5b\x6c\x05\xea\x09\x9f\xd4\x14\x42\xf8\x8c\xb5\x79\x0b\xcb\xb5\xbc\xb0\x46\xa1\x3f\x1f\xe2\x10\xba\x79\xd5\x3e\xdf\xd0\x8c\x08\xc0\x39\x34\x2d\x86\x73\x29\x49\x39\xca\x10\xc1\x75\x71\xc5\x4b\x44\xe1\x32\xe3\xc9\x15\x37\xc9\x5b\x81\xcc\xb0\xeb\xec\xfa\x4e\xbd\xa0\x6f\xf4\x2b\xe6\xd1\x97\x7e\x73\xb3\x81\xd4\xa8\x6e\x42\xa1\xf9\xe4\xce\xe4\x30\x51\x55\x01\x46\xa1\xb1\x5f\x00\x9a\x8c\x15\x02\xad\xe9\x94\x46\x78\x2e\xeb\xda\xb3\x3e\x84\x50\x52\x75\xad\x47\x9d\x39\x11\x90\xe6\xcc\x8a\x7d\xfd\xa7\x34\x54\xbf\x03\xd1\xd0\x75\x8f\x7a\xc6\x3d\x0d\x78\x3e\x63\xa2\xa7\xdb\xf2\xda\x59\xf7\x42\xfa\x9e\x16\x79\x57\x5f\x77\x28\x3b\x9d\xc8\x17\x96\xcb\x43\x9e\x66\x60\xfa\xde\xa5\xf6\x32\xc5\xf6\x8a\xe1\x46\x4a\xbf\xab\xe8\x1d\xe6\x2d\x7d\x83\x3a\xaa\x2a\x9d\x88\x1d\x95\xb6\x8b\x86\x68\x84\x86\xde\xa3\xd0\x3d\x02\x98\x15\x25\x97\xd1\xd2\x4a\xcf\x40\x5a\xfb\xcf\x04\x35\x22\x50\x71\x94\xe6\x47\x9c\x28\x72\xbf\x5c\x42\x50\x7a\x1e\x17\xbd\xb1\x3b\x41\x39\x20\x82\xc0\xc5\xaa\xf0\xa2\x13\x43\x84\x1c\x41\x85\x3d\x42\x04\x5e\x27\x87\xb3\x86\x1b\x1d\xbc\xf0\xf0\x11\x5a\xc3\xed\x80\xe6\xda\xd1\x41\x5b\x38\xbd\x07\x33\xa6\x68\x90\x94\x3c\xa9\x2f\xca\x7a\x5e\x64\x35\x5f\x5f\xf0\x45\xbd\x2a\xeb\x74\x7d\x59\x03\x27\x5c\x67\x69\xfe\xb9\x96\x24\xbd\xde\x24\x65\xb2\x26\xf8\x3e\xcb\x27\x08\x2b\x4b\xce\x4e\x9e\x9c\x5c\xa6\xf4\x4f\x59\x81\xb2\x05\xa8\x1f\x83\x35\x59\xfd\x58\x96\x76\x92\xd2\x67\x9c\x9d\xe8\x73\xec\xb3\xea\x21\x8e\xc2\xf8\x3f\x6c\x56\xb3\xb3\xea\xa1\x39\xde\x1e\x91\x93\x94\x7e\xe6\xec\xe4\x3f\x67\xd5\xc3\xc7\x03\x1c\x85\x67\xf1\xb3\xe7\x4f\x3f\x3c\x3d\x8b\xeb\xe3\x63\x52\xcb\x84\xd9\xd9\x4c\x5e\x3f\x39\xab\x1e\x3e\xf0\x7d\xb9\x7e\x6f\x9e\x12\xab\x30\x71\x72\x4b\x03\xd9\x01\x77\xe3\x14\x0a\x3f\xb6\x1d\x12\xa5\xcc\x07\x91\x8a\x4d\x8c\x3b\x8c\xc0\xa6\x06\x91\x78\x3c\xab\x6b\x2f\x30\xda\xf3\x26\xae\x1a\x2c\x24\xac\xc8\xf7\x21\x68\xc8\x21\x3a\x41\x43\xcd\x02\x7b\x25\x7d\xcf\x5b\xfe\x5e\x27\xca\xee\xd7\x59\x47\x58\xcc\xa2\x6f\x48\xc4\x7d\x4e\xda\xba\xf2\x84\x86\xd7\xef\xd4\xea\xd7\xf4\x96\xf7\xea\x57\xe8\x5c\x05\x6a\x69\x81\xca\x4a\x69\xa0\xa9\x51\xc7\xa9\xe7\x4c\x42\x68\xc2\xf4\xf1\x1f\x4d\x09\xcd\x58\x6a\xb5\xeb\x76\x21\x68\x0d\x6a\xa2\x17\x10\x4d\xdc\xe9\x15\xcd\x74\x98\xb3\x31\x2d\x59\x16\x17\xb3\xb6\x69\x54\xe3\x34\x98\x16\x54\xe6\x89\xf3\x19\x99\xfe\xbb\xd9\xa6\x8a\xfd\xdb\x6b\xd3\x9c\xf9\x81\xd9\x2a\x42\xb5\xbf\x8f\x8a\x62\x62\x7b\xe2\x1d\x6f\x42\xda\x1c\xc0\x1c\x75\x71\xff\xf3\x20\xb8\x68\xed\xaf\xc2\xcc\x58\x66\xc1\x62\x43\xfd\x82\xb2\xc6\x44\xc6\x1c\x03\xee\xeb\x1a\x8b\x86\xa1\x05\x6b\x62\x05\x78\x47\xdc\x1f\x3d\x9b\x68\xc1\x32\x4d\xbd\xe3\x99\x14\xb6\xac\x8d\xb4\x42\xd8\xa1\x1b\x36\xa6\x4b\x07\x3e\xb6\x60\xcb\xe3\x09\x5d\x41\xe4\x71\x7a\xc1\x2e\xf1\x0a\xce\x3f\x2e\xea\x7a\xf9\x64\xd2\xe7\xe5\xba\x0a\x82\x81\x6f\x8d\x12\x04\xcf\xf4\x77\xae\x3c\x50\x83\x16\xa1\xb1\x21\x83\xf8\x88\xff\x89\x0b\x32\xbd\x08\x02\x70\xf1\x66\xbe\xae\xaf\xa0\x29\x58\x42\x61\x42\x08\xfd\xc8\x21\x4e\x0e\x6c\x16\xca\x62\x7a\x09\x13\x0a\x17\xec\x5a\x0a\xf5\x00\x94\xd6\xb4\x23\x1e\x4c\x28\xa7\x25\x69\xc4\x9f\x04\x1b\x06\xcf\x46\xca\x77\xa8\x4b\x09\x4d\xeb\xba\xd4\x2a\xb8\x8a\x81\xc2\x78\x9d\x6c\xf0\x15\xc7\x85\x67\x9c\xf4\x9c\x5b\xc0\x97\xe9\xe6\xf1\x72\xba\x19\x0e\xc9\x9c\x15\x74\x33\x60\x6c\x01\x07\x45\x77\xca\x52\x06\xcf\x29\x04\x3a\x20\xb4\x92\x32\x9b\xb2\xd1\x4a\xe8\x95\x7c\x60\x8b\x83\x90\x36\xea\x68\x21\xde\xcc\xe8\x9c\x6e\xe0\xeb\x2a\x6d\xf8\x94\xc4\x89\x8b\x77\xdd\xfa\x40\xd5\xba\x84\x7e\xcf\x89\x1c\xc7\xe9\xe6\x71\xa5\x1b\x93\xc8\xa2\x8c\x9d\xd4\xdc\xb7\x93\x1a\xd8\x15\x38\x6f\x9a\x05\xca\x16\x5a\xae\x60\x4b\xe7\x72\x6d\xcc\x47\x55\x39\x0f\x02\xa4\x8c\x51\xe5\x34\xf4\x0b\x6b\xa1\x73\xdc\x8d\xce\xf9\x55\x92\xfd\x5a\x66\x41\x30\x98\x8f\xf2\xe2\x14\xde\x92\xe5\x9a\x07\xaa\x40\xba\xcb\x8b\x7c\xce\x43\x99\x27\x9f\xf3\xba\x9e\xb7\xe8\x1d\x24\x23\xb2\x27\xe1\x53\x59\x9f\xb3\x3e\xb3\xfe\xb2\x9f\x39\xc0\x74\xcc\xe9\x96\x58\x85\xa3\x1f\x75\x92\x77\xd0\x1b\x68\xc1\x44\xe4\x87\xdf\x27\x21\xa7\x29\x1b\x4f\x35\xb0\x53\xa9\x0d\x95\xc1\xa4\xb9\xae\x25\xa5\x2f\x3d\x3f\x7e\x39\xa2\x3c\xc9\x81\x6c\x5c\x29\xe8\xc7\xb2\x81\xcf\x8c\x73\xf0\x9e\x28\x09\x58\xae\xc9\x2c\xde\x10\x37\xf2\x36\x8c\xce\x3d\x74\x3c\xee\x3b\xca\xfa\x06\x80\xfd\xe0\xd0\xa6\x2b\xde\x73\x8a\x1e\x3f\x98\x3c\x79\x7c\xf2\xe0\xd1\x13\xa4\xe2\x3e\x77\x78\x29\xcf\x52\x05\x34\xe2\x2d\x53\x2e\x40\x54\x32\x41\x9e\xdb\x96\x5f\x41\x80\xdb\x51\x0e\x26\x2d\xaf\x66\xed\x67\xad\xf0\x37\x4c\x78\x68\xb0\xf1\xab\x88\x8e\x35\x8d\x53\xa6\xf0\xeb\xda\x10\x96\xef\x38\x4e\xe3\x72\x46\x13\x88\x50\x9e\x2e\xb1\x80\x48\xd1\x44\xa9\xc1\xd3\xba\x86\xd7\x28\x98\x63\xfa\x05\xa6\xed\x82\xde\x36\x0a\x82\xf3\x36\xd8\xb0\x2a\xd3\xc3\xba\x45\xde\xb8\x78\xb8\x55\xb7\x72\x65\x0e\xe6\x0a\x65\xcf\x1f\xba\x4a\x39\x7b\xe5\x1d\xcf\x4d\x1f\xc0\xb1\x04\x5f\x83\x06\x53\x0f\x93\xcb\xf7\x30\xe5\x76\x7e\xa5\x4b\xfc\x0b\xce\x89\x8e\x23\x9f\xc7\xff\x72\xfe\xee\x90\x64\x36\x42\x17\xfc\xc0\xa4\x14\x71\x39\x8b\x5a\x4c\x1a\x60\x2d\x36\xcf\x21\xc1\x4a\xcc\x9c\x43\x4e\xfd\x0a\x34\x3b\xb8\xcf\xe3\x7f\x7b\x01\x10\xb0\x7f\x6b\x38\xc6\x7d\xd7\x99\x19\x10\x8a\xfa\xa6\xe3\x1f\x96\x57\xec\x3f\x7f\xef\x66\x24\x3d\xe8\xda\x3a\x4f\xc7\xc5\x97\x77\x83\x2e\xf0\x48\x21\xc0\x28\x2b\x7c\x6d\xbb\x0f\xc0\xe3\xa4\xcb\xd5\x4e\xf4\x39\x8d\x77\x12\x33\xe9\x49\xfb\xae\x9d\x24\xb7\x5c\x50\xac\x79\xf6\xaf\xdc\x77\xf9\xe5\x1d\xef\x47\xb2\xa7\xca\x54\xb3\x47\x22\xfd\xc8\x5b\x12\x54\xf3\x13\xff\xfb\x56\xfe\x6e\x3b\xb5\x61\x27\xaa\x5d\x15\x37\x25\xff\xef\x1a\x64\x58\xba\x66\x65\x93\x9e\xb4\xef\xda\x49\x46\x7d\xe1\x5a\x36\x15\xa3\x34\xaf\x78\x29\xbe\x07\x05\xb8\x24\x4b\x8d\x40\xcf\xd0\x54\xa5\x1c\xff\xfb\x2d\x85\xba\x7d\x6a\xdc\x4a\xe8\x54\xad\xcc\xc4\xe4\x60\x2d\x45\xaf\xf6\xe0\xff\x40\x85\x0d\xd0\x1e\xa8\xbc\x13\xa8\xd5\x06\xfb\x87\x93\x68\xbd\x33\x29\xe5\x5f\x2c\x66\x04\x4e\xc9\xdb\x70\x3f\xb8\xb5\x35\x71\x80\x14\x91\xb2\x79\xc3\x6a\xbb\x29\x40\xf6\x6c\x12\x9e\x6d\xac\xd6\x22\x05\x81\x6c\x87\xd2\x38\x89\x88\x87\x5a\x55\x2d\x79\x8e\x2e\xfe\xfc\x91\xe1\x79\x1a\xae\xf1\x54\x6e\x64\x5f\xba\xc6\xdd\xc9\x0e\x08\x4b\xea\xf0\xb3\x09\x1d\xd3\x0c\x8b\xa0\xa2\x6b\x78\x22\x87\x0d\xf9\x63\x0d\x9c\xfb\xc3\xcc\xf0\x20\x18\xfc\xe9\x21\xbc\x0d\x2e\x79\x6c\x4d\xf8\xf9\x7d\x26\xfc\x33\xb2\xe3\xac\x6d\xa0\x2f\x67\x77\x79\xab\xa0\x22\x8c\xf8\x01\x87\xe2\xfa\x6b\x72\x7d\x9c\x7e\x78\xd0\x84\x1a\x34\xaf\xe1\x4c\x16\xca\xc6\x5e\xa8\x8d\xbd\xd0\xd3\xcc\xd0\x39\xb5\xd6\x61\x99\xdf\x43\x8e\x34\x9f\xd0\x0c\xa6\x6b\xd4\xca\xb1\x75\xac\xbb\x6f\xc2\x3b\x41\xa7\x39\xcb\xa7\x5e\x5c\x63\xb5\xca\x1f\x8f\x7b\xbe\x0d\xe0\x77\x28\x18\x03\xe9\xc6\x68\x3b\x76\x8d\xcc\xb3\x27\x72\x3b\xf0\xf0\x03\xd4\x87\x7d\x28\x42\xa4\xae\x90\xa1\x61\x32\x49\x5f\x22\xea\x2f\xb1\x10\x29\xd2\x61\x52\x9f\xc2\xb2\x46\xb0\xba\x91\xe9\x82\xa7\x59\x16\x22\xaf\x3b\xfa\xf4\x72\xad\x50\xee\xbc\xe1\xdf\xa7\x10\xc0\x20\xce\x55\x6a\xe1\x06\x8f\x27\x34\x61\xe3\x69\xf2\x98\xa5\xd3\x44\x32\x8f\x00\x1f\x9a\x7a\x6e\xee\x6a\x5d\x48\x36\xeb\x0e\x17\x71\x32\x23\xb1\x98\xe1\x9c\xd0\xad\x16\xcc\x4a\x9a\x2b\x94\x86\xc6\x1a\xf5\x62\xb3\x97\x2e\x36\xfb\xab\xb6\x47\xb4\xf1\x82\x8e\x06\x9b\x1b\xa2\x5c\xa1\x87\xc6\x13\xfa\xd7\xa6\xeb\xb1\xd1\x28\x37\x84\x08\x2b\x43\xa6\xfc\xda\x83\x64\x10\xa3\x62\xc3\x73\x5e\x2a\x77\x4b\x39\x33\x2f\xb9\x78\x56\xac\x37\x5b\xc1\x17\xef\x95\xff\x28\xd9\xd3\x1f\x1b\xcd\x49\xb9\x36\x20\xab\x11\x81\x16\x38\xcd\xca\x4b\x7e\x88\x11\x05\xfd\x8e\xe1\xd0\xc0\x15\xf5\x57\xe0\x13\x83\x00\x23\x90\x38\x12\x06\xdd\x63\x4e\xc4\x41\xd8\xc5\x82\xd4\x75\x2e\x69\x62\x5d\x03\xe7\x0a\xe6\xab\x9e\x67\x2b\x21\x74\x70\x3a\xda\xa4\x37\x3c\xfb\xbe\xb8\x81\x06\x57\x98\x04\xc1\x2b\xbd\xea\x13\x12\x04\x3f\x9a\xf3\x5c\x15\xda\xa4\x1a\x01\x5c\x21\x2d\x58\x35\x5a\xa7\xf9\xef\x70\x93\xca\x9b\xe4\x46\xdd\xb8\x74\x2f\xd5\xbc\xc7\x12\x2a\x5b\x7a\xad\x73\xaa\xb4\xd2\x7f\xa7\xa0\xde\x5b\x29\xf1\x82\x3e\x25\x51\x32\x44\x28\xf4\x20\xe8\x7f\x6b\x68\xa2\x76\x8d\x20\x57\xea\x9c\xd5\x81\x06\x5a\x9c\x0f\x26\xc8\x81\x18\xc2\x5a\x91\x62\x32\xee\xf7\x0d\xe7\x18\x5b\x2b\x57\x65\x6f\xc9\x2e\xd3\x5e\x9c\xf3\xaa\xfa\xc0\x6f\x04\x43\x1b\x0d\x35\x19\x26\x17\x10\x41\x97\x4f\x33\xbe\x14\xe1\xf1\x44\xfe\xb7\xb9\x99\xc2\xf7\x86\xdf\x8e\x37\x37\xd3\x75\x52\x5e\xa6\xf9\xb1\x28\x36\xa1\x7c\xb2\x49\x16\x8b\x34\xbf\x0c\xc7\xd3\x8b\xa2\x5c\xf0\x32\x1c\x23\x88\x28\xdb\x5f\xbc\x41\x13\x9d\x6a\xff\xd1\x10\x7c\x70\xa7\x17\xc5\xcd\x71\x95\xde\xc9\x72\x54\x29\xc7\x17\xc5\xcd\xb4\xb8\xe2\xe5\x32\x2b\xae\xc3\x0a\x82\xf7\xe9\x9a\xc3\x64\x2b\x0a\x53\x99\xdf\x02\xbf\x9d\xff\x98\x42\xfb\xfe\x81\x68\xd2\xf4\xae\xc9\x9a\x4c\xd4\x56\xad\x3b\xae\x26\x61\x73\x05\x6c\xc9\xb4\x64\x68\xf2\x0f\x6d\xcf\x53\x6c\xe8\x9c\x4d\x1e\xc9\x6d\x06\xd0\x00\x64\x5b\x5e\xf3\xa5\x20\xf6\x73\xcb\xf4\x72\x25\x18\xfa\x76\xfc\x0f\x44\x2b\xf6\xd5\xb7\x3a\x2b\x24\x13\x5a\xb8\x14\x68\xa5\x7b\xcf\xf4\x0e\x43\xa6\xf7\x11\x4d\x4d\x55\xdb\x91\x3a\xa2\x82\x79\x75\xf2\x15\x91\x1f\xe4\x8b\x98\x19\xd1\x31\x04\x3d\xfd\x95\xf0\xb6\x62\x05\x8a\x5c\x6c\xf3\x05\x86\x38\x4f\x2f\xb3\x22\x01\x8c\x9f\xbd\x5b\xaa\xa0\xe3\xeb\x7a\x3f\x81\x5f\x14\xdd\x1e\x78\x30\xdd\x5a\x5f\x67\xf3\x21\x17\xc9\xfc\xf3\x25\xd4\xf5\x2c\x4b\x37\x0c\x69\xc8\x0d\x39\x98\x72\x52\x34\xfd\x8b\xfa\x5f\x41\xf4\x14\xf6\x97\x12\x64\x54\x18\x88\x66\x39\x0c\x8c\x48\x7b\xde\x75\x71\x73\x4e\xe9\xee\xa2\xb8\x79\x0f\xf3\xe9\x1d\xcf\xd2\x03\x61\xf0\x39\x26\xb4\xd8\xd3\x26\x15\x39\x90\xaf\xd2\xf9\x0c\x24\xeb\x81\x6c\xa5\xdc\x90\x55\x85\xa7\x76\x82\x1c\xc8\x3b\xdf\x53\x35\xaf\x55\x5b\x0f\xb5\x30\x05\xde\x59\x7b\x5d\x7d\xe2\x2c\x46\xbf\xf3\x8b\xcf\xa9\x40\x14\x9d\x16\x77\x88\xa2\x75\x85\x66\xf4\x07\x7e\x60\x94\x54\x57\xd1\x9f\x9a\x1e\xfa\xbf\x70\x0f\xb6\x4a\x2e\x53\x49\x7e\x2b\x00\x18\xf9\x89\xc7\xbc\x11\x61\x90\x4b\x11\xf5\x07\x1e\xf1\x10\x1e\xf5\xee\x9e\x02\x40\xdc\x9a\xa1\x18\x87\xdc\x39\x6e\xe4\xec\x13\x6f\x44\xa5\x4a\x97\x18\x73\xf6\x89\xc7\xf9\x6c\x28\x08\x54\x60\xd5\x89\x7b\x20\xf8\x5c\x4d\xd0\x07\xe0\x29\x96\x17\x39\xaf\x41\x55\x8f\xa3\xc1\xf1\x3c\xe6\xc9\x8c\x8c\x86\xe4\x84\xfe\x4b\x3e\x3e\x3e\x3e\xa1\xff\xe6\x6c\x67\xa9\x8c\xb7\x8e\xae\xd2\x2a\xbd\x48\xb3\x54\xdc\x86\x68\x95\x2e\x16\x3c\x47\xd4\xd0\x1e\x1d\x00\x60\x4f\xb9\x60\xbb\x8c\x0b\xc1\xcb\xf7\x9b\x64\x2e\x69\x09\x1a\x23\xba\x2c\x72\xf1\x3b\x20\xdd\x86\xe8\xeb\xf1\x18\x79\xfd\x27\x44\x13\xc9\xd1\x44\x7d\x70\x81\x75\xcb\x08\x16\xde\x3a\xb9\xc1\x63\x5a\xc6\x8f\x66\xc7\x38\xaf\xeb\x31\x21\x43\x5c\x42\xbc\x09\x08\x2e\x11\x0a\xb7\x68\x73\xd1\xe3\x63\xc6\x90\x02\xd9\x85\xd0\x3a\x93\x70\x4c\x2b\x36\xa6\x73\x36\x56\x00\x7b\x8c\xe1\x32\x42\x8a\x14\xa2\xd0\x2c\x13\x64\x35\xb3\x63\x15\xd5\x2f\x79\xfc\xf5\x34\x19\xb2\x47\x04\x29\xaa\x65\x02\x10\xcc\x87\x36\x02\x48\x3e\x4c\x79\x9c\x40\x50\xd1\x82\x10\x5a\x46\xd8\x96\x66\x32\x1f\xbb\x70\x21\x9a\xe2\xa2\xe6\x4b\xa6\xf4\x41\xf7\x05\xdd\x44\x95\x7f\x88\x7e\x57\xc0\xc1\xea\x3d\x12\xfa\x0d\xe9\x2d\xdb\xa5\x42\x08\x45\x3f\xfb\x3d\x25\x87\xd5\x97\xe5\x33\x63\x06\x91\x9f\x9e\x40\x4c\x8d\xf9\x90\x79\xc3\x07\x97\x73\x9e\x66\x98\xc7\x48\x51\x63\x34\x14\xdd\x09\x2f\xec\x84\x9f\x1d\xa7\xc7\xf3\xe3\xea\x78\xf4\x0d\x21\x72\xd4\xe9\xdc\x8d\x73\xd9\x9a\x3b\xc0\x0f\xd1\x82\xe1\xc1\xe9\xa8\x43\xb6\xb0\x64\x84\x48\x10\x20\xb7\x2d\x36\x02\xb7\xd8\x17\x10\x1d\x4c\x68\x09\x9c\x2b\x4d\x98\xe6\xc7\x4a\x42\x2b\xf6\x65\x2d\x96\x13\xca\x71\x4f\x2d\x0c\xe7\x64\x9a\x30\x24\xb7\x5d\x64\x70\x05\xfb\xdb\x1a\x04\x45\x5d\xab\x8c\x8c\xb1\xa4\xae\x07\xde\x96\x23\x79\x32\x94\xe6\x59\x7a\x20\xf6\x8c\xfa\x00\x40\xa9\x91\x5b\x31\x58\x6b\xbc\xe3\x73\x51\x59\xc8\x34\x1d\xb5\xe3\x0b\x7b\x02\xa7\xac\x52\xc7\xad\xe0\xae\xc8\xe3\x6a\x46\x94\xcf\xb4\xdf\x26\x39\x3a\x43\xb3\xf4\xea\x1a\x17\x7d\xeb\x89\xa6\xb4\xa4\x09\x19\xca\x35\xeb\x06\xb2\x10\xbe\xe7\x89\x67\xfe\x56\x78\xb6\x56\x00\x9c\xe9\xe5\xf3\xb4\xc0\xf3\xaa\x52\xf1\xc4\x76\x85\xa4\x3a\xe2\x36\xdc\x75\xa3\x9d\x82\xc6\x54\xcb\x67\x30\xaa\x48\x67\xb6\x22\x3f\x04\x03\xc9\x23\x34\x41\x61\x0e\xd6\x80\x36\x3e\x4d\xb8\x4b\xf2\x74\x0d\x06\x3e\xaf\x04\x2f\xe1\x02\xac\xa3\x95\x51\x4d\xb6\x5d\xbb\xdb\x65\x9a\x65\x6f\x74\x33\xe4\x6d\xc6\x6f\x7e\x28\x8b\x6b\x73\xfd\x7e\x55\xa6\xf9\x67\xb8\x73\x54\x71\x30\xa6\x97\x65\xba\x78\x5a\xf2\xc4\x5c\x3f\x83\x52\x9b\x77\x2f\xf2\x45\x33\xe1\xbd\x48\x4a\xfb\xf6\x3b\x55\x89\xbe\xf4\xf2\xbe\x2b\xae\x6d\x46\x39\x69\x7e\xb4\x95\x16\xae\x9d\x8a\x0b\x84\x8b\xcd\x2a\x51\x36\x3f\xd7\xe9\xa2\xb8\x86\xab\xbb\x57\x00\xff\x27\xaf\x8a\x62\xad\xcc\x5b\xf5\x5e\x17\xee\xf6\x14\xb6\xc6\x1e\xb3\x04\x65\x5f\xf0\xd5\xa0\xa9\x89\xf9\x67\xeb\x5e\xcb\x36\x5e\x5c\x22\x5a\x41\xa8\x55\x3a\x67\xff\xb2\xb2\x07\x18\xa2\x2b\x21\x28\x5d\xe2\x39\x08\x5c\xbf\x70\x2c\x45\xe6\x44\x4d\x5e\x98\x03\xe0\x1a\xea\xdd\x56\x5e\x4c\x09\xb7\x0c\x83\x00\x5d\x72\x81\x52\xb8\x74\xca\x67\x0d\xf2\x09\xba\x21\xb9\x84\xa2\x22\xcc\x62\x31\x9b\x7a\x9a\x11\x9c\xfa\x30\x17\xb8\xb0\x3b\x56\x2e\x57\x5c\x01\xf8\xa9\x38\x67\x3a\xdc\x52\x21\xe9\x08\xca\x61\x12\x21\xa5\x7d\x18\x40\xa4\x24\xbd\x17\x98\x47\x03\xc6\xd2\xba\x96\x1f\x95\x0f\x01\xe3\xa4\x1b\x49\xa9\x72\x91\x94\x48\x97\xb5\xab\x6b\xa4\x4f\x3f\xc1\x4a\xc9\x05\xa5\x74\xac\x1d\x92\xc2\x9f\xfc\x1c\x86\xd2\x7c\xc5\xcb\x54\xae\x47\xd9\x13\x55\xab\x27\x18\xa8\xe1\x13\xed\xf2\x2b\x07\x12\x7c\x22\xa3\x4c\xa6\x38\x83\x6b\x9a\x13\xe8\x1d\x96\x03\xa6\xc6\xbc\x13\x02\xb8\x11\x6a\x4a\x0f\xa9\x8d\xe7\x67\xc7\xd5\x1f\x48\x7c\xff\x48\x92\xc6\xb0\xf9\xa3\x35\xa6\xb9\x95\x13\x6d\x58\x22\x4b\xbb\x21\x60\x51\xb9\x4e\x32\x1d\xb2\x48\x00\x35\x13\x90\x89\x0b\x29\x1d\xab\x40\x40\x79\x5d\xe7\x11\x4e\x7d\xba\x56\x10\x0a\xf1\xda\xf3\xba\x4e\xab\x97\x92\x04\x71\x9c\x92\x28\xad\xeb\x71\xa8\x00\x29\xac\x3a\x26\x46\x0a\xcd\x1f\x51\xcd\x6a\xcc\xba\x6a\x13\xef\xdb\x58\x9b\x46\x99\x15\x63\xc1\xe6\x1f\xe8\x3e\xea\x06\x17\x33\x91\xcf\xfa\x69\x3b\x3c\xfa\x5e\x0e\x79\x9a\x5f\xba\x2c\x98\x28\x71\x29\xd2\xfb\x66\x49\x42\x08\xd8\xf8\xef\x66\x2c\x47\xc3\x76\x99\x4c\xa0\x9e\xac\x7a\x9a\xaa\x87\x56\x6f\xbb\x09\x1b\x9c\x8e\x1a\x6c\xb8\xdc\xc5\x1c\xff\x08\xb1\x57\x0d\x5f\x49\x2b\x86\x93\xba\x2e\xbf\x78\x3f\x4e\x25\x2d\x28\x23\xbd\xbd\x94\xb4\xa2\x29\x09\x6d\xe8\xdc\x2a\x08\x12\xc5\x27\xfd\x37\x0c\x86\x37\xda\xa9\x9c\x0b\xc7\xba\x16\xb3\x7d\xa9\xfa\x81\x03\xa1\xf3\xee\x92\xd7\x61\xcb\x70\xe1\x98\x51\x30\x39\x57\x11\xd9\xe4\xf2\xa0\x39\xf3\x82\x98\x51\x21\x00\x15\x65\x4e\x8c\x2d\x98\x99\x14\x9e\x28\xcc\x7e\xe3\xf8\x74\xd4\x95\x80\xda\x33\x0a\x36\x35\xcd\x49\x78\xdf\xa1\xf6\x37\x57\x9c\x9b\x31\xbd\xd3\x22\xe3\x4b\x71\x0c\x73\x61\xe7\xde\x09\xc7\xfb\xbe\x79\x71\x7f\x29\x7b\x42\xf4\xe6\xee\xdb\x0d\x2a\x6d\x03\x42\xd4\x28\x18\x10\xa2\x5a\xed\xa0\xf9\xc7\x1e\x0d\xa3\x5d\x2a\x7c\x28\x17\x8b\x3a\x75\x73\x93\xd0\x3f\xb3\x86\x73\xce\xdd\x5e\x92\xda\x9e\x90\x0d\xb9\x71\x15\x3d\x42\x24\x8c\xf3\xd9\xb4\x7c\xfc\x35\x1c\x84\x16\x31\x97\x5c\x6c\x39\x93\x15\xa4\x71\x39\xab\xeb\x34\x2e\x8f\x1f\xc1\xef\xd8\x8b\xa2\xb7\xf7\x39\x72\x1b\xba\xce\xb5\x4e\xd2\x45\x26\x40\x93\xdf\x3c\x08\x6c\xd3\xc4\x7b\xd4\xfa\x2d\xa5\x9f\xfc\x9c\x44\x49\x27\xed\x88\xe4\xea\xc3\x1d\xbb\x6b\x11\x92\x93\xc7\x05\x68\x56\xd3\x58\xc4\xc9\x6c\xe6\x26\x1d\xb0\xff\x72\x43\xb3\xc8\x01\xfb\x76\xcc\xdf\x3c\xf2\xc3\xdd\xe5\x24\x74\x33\x76\x4f\xc0\x9e\xb0\x1b\xb4\x57\xeb\xa2\x3f\x5c\x73\x9e\xb3\x42\xd0\xe2\xa0\x65\x7c\x21\xa8\x24\x9d\x3d\x8e\xc6\x52\x3e\x53\xca\xfa\x8c\xaf\x8d\x0f\xc3\xa6\x2c\x36\x2c\x37\xa6\x77\x55\x9a\x5f\xb2\x42\x6e\x05\xea\xda\x45\x04\x52\xd6\x7f\x10\x6c\xa9\x62\xc2\xd8\x63\x27\xa5\x30\x87\x6c\xd7\xcc\xf8\x15\x18\x73\x6d\x9e\x2f\x58\xa9\x2e\x21\x18\x5f\xda\xda\x65\x73\xb7\xcb\xee\xe9\x7c\x5b\x76\x8f\x02\xd4\x57\x6e\x34\x19\x37\xcd\xb5\xb3\x85\x6b\xfa\xab\xc2\x65\xe9\x63\x57\xff\x1d\xdb\x7c\xf7\x7c\x4f\xcb\x6d\x0f\x32\x0f\xcd\xff\xaa\x32\xbf\x03\x46\x8b\xad\x62\x4c\x35\x18\x71\x51\x31\xc1\x4c\x9f\xc5\x5e\x5f\xce\xcc\x39\x5b\xfb\xc5\x87\x9c\x8e\xe9\xa4\xff\x99\x3e\x3a\x56\xa5\x9a\x73\xba\xe2\x9a\x61\xd3\xab\xc7\xae\xf7\xc9\x43\x31\x74\x77\xcd\xf2\x2a\xc1\x37\xfa\x78\xc6\x4f\x72\xd6\x4c\xca\x61\xd2\x94\x6f\x60\xc0\x83\x00\xf0\x46\x14\xea\xc8\xbd\x9d\x6a\x9f\x2b\x84\x96\x3d\xed\xc8\x10\xde\x24\xf5\x9f\x51\xbf\x3c\xb6\xb3\xfe\x4e\xad\x6d\x5a\x8f\x8d\x8d\xe2\x02\xbc\xac\x6c\xb3\x77\xcc\x6b\xac\xcb\x65\x72\xcc\xd5\x90\x99\x88\x33\x3a\xb3\xda\x1d\xf4\xb3\xa8\x99\x35\xc4\xc2\xac\x5d\xd5\x1b\x2a\x9d\x22\x08\x2c\xab\xa4\xc2\x01\x44\x08\x96\x34\xba\x6a\x35\xef\x6e\xb4\xbc\x81\x3e\xb5\xa5\x77\x52\x30\x27\x61\x6f\xc3\x07\x3e\x61\xbb\xa7\xdd\xbf\x70\x05\xb4\xb7\x21\xed\xb6\x03\x63\x7f\x1d\x5a\x62\xd2\xf8\x00\x78\x36\x04\x30\x52\xf0\xb7\x6a\x74\xb9\x66\x1e\x3e\x14\x1b\xd6\x93\x0c\x9b\xe2\xae\xfd\xad\xad\x0f\x90\x4b\x0f\x12\x1a\x06\x47\x7d\x0d\x34\x5e\x1a\x40\x5b\x76\x52\x28\x4a\xfa\xcd\x87\xf6\xb4\xba\x96\x3b\x56\xf7\xd9\xe8\x9b\x63\xc5\x6d\x14\x15\xe6\x0f\xe1\xf2\xed\x2b\x72\xf2\xc8\x73\x95\x43\xf0\x2e\x92\x55\x2d\x6f\x58\x67\x22\x52\x3b\x30\x6c\xa7\xb0\x16\x52\x41\x13\x41\x2b\xa1\xe2\x40\xa9\x80\x8d\x75\xb5\x2a\xae\xeb\x55\xba\xe0\xe4\xc1\x09\x9d\x0b\x76\xe2\x22\x0d\x3f\xf0\xe2\x3c\x65\x02\x93\x5d\x22\x99\x5a\xb0\x60\x4e\x46\x4a\x49\xa7\x4e\x13\xff\xdc\xf2\x4a\x3c\x35\x32\xec\xcb\x32\x59\xf3\xe8\x40\x3a\xce\x04\x09\x1b\xe8\x3e\x99\x6e\x29\xd8\xe9\x5f\x25\x19\x51\xb7\x22\x9d\x7f\xc6\x7e\xc4\xa0\xad\x70\x6c\xc2\x41\x2c\xa8\xd4\x58\x5a\xcb\xcd\x32\x15\xcc\xb9\x5c\xb9\x82\x36\xa2\x8b\xc1\xbf\x53\xcc\x75\xc8\x95\x97\xbc\x50\x5a\x3c\xbd\x97\xb3\x47\xc7\x82\x14\xb1\xd9\xa5\x87\x38\x67\xb0\xb1\x93\x19\x2b\x62\xa7\x08\xcb\x67\xcc\x87\x53\xc7\xc5\x48\x0b\xc0\xac\xd0\xe7\x50\x72\x43\x75\xed\x58\x8a\x3e\xf3\x38\xbc\x10\x23\x21\xf7\x3c\x5e\x2a\x19\x25\x9e\x91\xd1\xbc\xc8\xe7\x89\x68\x3c\x42\x0f\xd1\x8c\xe8\x28\xa7\x45\x3b\xca\x29\xe0\x5b\x14\x71\x3a\x33\xa0\x87\x82\x72\xab\x6d\x2c\x5d\x13\x16\xa2\xcb\x1a\xc8\x02\x17\x72\x32\xe9\x73\x75\x2f\xe4\xb5\x1f\x16\x7b\xa4\x00\x42\x1b\xbd\x6f\x42\x2d\xc0\x92\x90\x23\xd0\x00\x4d\x4e\x97\xd8\x44\x2e\x1a\x4c\xa6\x4e\x25\x9d\x8a\xba\x96\x83\x4b\x73\x5f\x99\x97\x29\xfa\x2e\x07\x79\x98\xd9\x8d\xe2\x18\xe2\xd4\x4f\x8e\x71\x7e\xe2\x12\x41\x73\xa7\x1a\x9e\xa9\x0e\xaa\xda\x1d\x62\xd2\x65\x97\x94\xdb\x1c\x3b\x66\xa5\xf2\xc0\x07\x31\xa7\x71\x46\x4b\x9a\xcf\x08\x2d\x1f\x4f\x82\x20\x89\xf2\x50\x8a\x12\xdd\x4c\x13\x3a\x9e\x69\x27\x78\x1b\xf3\x9b\x83\xdf\x36\x1d\x4c\x00\x7b\xb9\xb2\x91\xb7\x95\xa7\x35\xa7\x1b\x50\x68\xf8\x96\xcd\x82\xd0\x62\x23\xbc\xb4\xc1\x98\xee\xb4\xe5\xda\x0b\x20\x1f\xe1\x6e\x4f\x15\x21\x09\x3b\x1c\xca\x9e\xe6\x84\x1a\x6f\x34\x2d\x39\xa7\xbc\x0a\x85\x4d\x7c\xa3\x36\xc1\x30\xa7\xb6\x33\x43\xdb\xdd\xa6\xfb\xc2\xdc\xf6\x24\x55\xbd\x14\xc6\x33\xaa\xc3\x10\xca\x7b\xcf\x3f\xda\xa9\x43\x35\x67\x86\x39\xcd\xe4\x5e\x0b\xc8\xea\xfa\x72\xd4\xf8\x02\x98\xc4\xfa\x81\xfa\x00\xdb\xf7\x76\xb4\xb4\x6b\x3b\x2d\x95\x33\x5e\xd8\xb5\x79\x00\x0b\x94\xa8\x35\xbc\x21\x70\xb0\x85\xef\xe1\x3d\x55\xd0\xdc\x83\xb1\x35\x01\xb1\x43\x9f\xab\xa1\x9f\xb8\xf3\xfd\x08\x7f\xf9\xc0\x52\x31\x23\x24\xac\x7c\x50\x4d\x93\xac\x79\x01\x42\xb7\x2c\x83\x6d\x40\xb5\x62\x70\x4f\x38\x04\xc8\x90\x2b\xb5\xa7\xfc\x04\x26\xe2\x92\xfd\x84\x73\x32\xa3\x29\x83\x40\xa2\x4d\xbe\x3c\x55\xda\xa0\x34\x9e\x98\x0c\x4c\x0a\x11\x84\xe6\x03\x88\x37\x87\x21\x34\x72\x4a\x2d\x7e\x0f\x40\x94\x36\xf4\x1d\x25\x28\x38\x94\xa0\x03\x3a\x0e\x62\xdb\x90\xb2\x44\xdb\x1d\xe2\x94\xb8\x32\xca\x19\x4d\x89\x6a\x64\x5d\x63\x5d\x69\x3e\xa3\x80\xa2\x5e\x68\xe3\x4e\x01\x31\x99\xf7\x78\xdb\x3b\xf8\xa4\x49\x92\x1a\x74\xc5\x92\xa7\x8c\x72\x6a\x5e\xb7\x54\xea\x12\x42\x2a\x17\x1b\x02\x02\x91\x0f\x3c\x90\xa9\x5d\x5f\x57\x07\x0f\x08\x64\x65\xea\x0d\x88\xb7\xa3\x6c\x83\x1d\x92\xe7\x3a\xd9\xe0\x2d\x5d\x0a\x9a\x11\x7a\x89\x4d\x53\x81\x9f\x0c\x02\xff\xd6\xc4\x97\xc9\x08\xcd\x1c\xb0\xaf\xce\x61\xee\x35\xbe\xaf\x4e\x95\xd7\xa6\x39\x06\x08\x4f\x23\xfe\xea\x54\x79\x6d\x29\xa6\x4e\x53\x77\x76\xb7\x5b\xfb\x31\xd6\xe6\xd4\xd0\x8c\x24\x4f\xd7\x61\x46\x15\x5a\x82\xff\xc9\x92\xbc\x66\xfb\xbb\x91\xdd\x5e\x9d\xcb\xc4\x42\xd0\x9d\xd9\x27\xc2\x1d\x7a\x88\xc2\xb8\x67\x2a\x6a\xe1\xc5\x2d\x73\xe5\x06\x6e\xe2\x76\x72\x9c\x6b\xee\x8a\xba\x53\x33\x49\x70\xf2\xfd\x6c\x4f\x75\xf1\x2d\xf1\x13\x70\x5a\x35\xb0\x81\xda\xa0\x42\xce\x1c\x22\xff\xd4\x37\xe2\x19\x83\xc3\x5c\xcb\x78\x38\x67\x30\xeb\xfc\x7d\x2e\x9f\xb1\xe6\x2d\x04\xba\x69\x26\x59\x68\x11\xa1\x0c\x2d\xf5\x04\x6b\x7e\x76\xc7\xea\xc5\x06\xbd\xd5\x0a\xb5\x14\xce\x51\x8d\x9a\x4d\xde\xd1\xa5\x72\xed\x5b\x48\x79\x79\x65\x14\xc4\xf4\xa2\xa1\x5f\x06\x1b\x1c\x17\x5a\x8e\xa2\xe5\x8d\xe4\xa9\x90\xfa\x5c\x30\x1c\xce\xd5\x90\xd5\xb5\x0e\x10\x09\x0b\xb3\x89\xa9\x02\xa0\x30\x64\xb4\xcd\x21\x75\x11\x04\x38\xb1\x37\x6c\x4c\x2b\xb9\x42\x2d\xd0\x09\xf5\x6f\xfc\x2d\xd6\xbd\x53\xd7\x15\x96\xb2\xb5\x4b\x19\x0e\xe9\xb2\x6f\xd3\xee\x4d\x74\xaf\x1d\x1f\x53\x87\x12\x03\xad\xd4\x83\x56\xd7\x49\x13\x7b\x05\x00\x78\x09\x15\x96\xa0\xcd\x68\x65\x63\xa4\xc1\xf6\x6f\xec\x5f\x80\xb2\x48\xe1\x18\x29\x26\x14\x14\xa7\xb4\x60\x8c\xe1\x8b\x08\x49\x66\x14\x85\x48\x75\x22\xbc\xa7\xae\x07\x4c\xca\xe9\x83\xb5\x17\x4d\x60\x2d\xa9\xda\xbc\xc8\x45\x9a\x6f\xf9\xf4\x82\x0d\xc6\xfb\x85\xa4\x47\xeb\x20\x58\x83\xc6\xc5\xa9\x1d\x4a\xb2\x4f\x97\x18\xcf\x59\x0f\x16\x19\x01\xd9\xa4\x99\xba\x20\xce\xf0\x7b\xd3\x06\x10\x0b\x02\x9c\x8f\x8c\xd9\x0b\x8b\x57\xf6\x9a\xba\xcb\x8f\xde\xf5\xa7\x19\xd5\x23\x9f\x41\xdb\x4c\x58\x76\x49\xdc\x32\x37\x73\x9c\x06\xd6\xc5\xc0\xc7\xdb\x1e\xf8\x07\x78\x2f\xda\xb2\x2c\xc4\x2b\x15\xb7\x7a\x30\xf6\x8e\x30\x1c\xbe\x44\x46\xfb\x5e\xa7\xea\x25\x39\x5a\xd8\x3b\xea\xdb\xd6\xb5\xbe\x3b\x56\x27\xee\x32\x4d\x49\x68\x03\x96\xf5\x02\x52\x2c\xb3\x22\x81\x68\x1b\x70\x64\xb2\x54\x64\xd1\x9f\x48\x2b\x1b\x81\x3e\x03\x48\x4a\xe8\x85\x0c\xb0\x0d\xec\x23\x9a\x31\x5b\xf2\x36\x42\x28\xdc\x12\x42\xdd\x8b\xcd\x36\x81\xa3\x8e\xe9\xd7\x20\xc0\xae\x93\x99\x35\x1c\xe8\x9d\xd2\x5e\x46\x57\x40\x3c\x9e\xf9\x43\xe6\x3f\x99\xf8\x4f\x3e\xf9\x4f\x1e\xcd\x60\xa2\xcf\xd9\x60\x42\x17\x44\x7e\xf8\x3a\x32\x75\xa7\xf9\xd1\x3a\x08\xf0\x05\x5b\x6b\x09\x89\x84\x6b\x1f\xbb\xc9\x50\x07\xba\x33\xd6\x0d\xd9\x9e\xd0\x34\x08\xb0\x79\x81\x0d\x2e\x08\xbd\x08\x02\x6f\x60\x7b\xfa\xd5\xce\xcd\x8b\xba\xd6\xa3\x49\xfd\xc0\x64\x86\x08\xd1\x85\x07\x53\x51\x52\xb9\x3a\x88\x6e\xfd\x52\xe0\x8b\x48\x2e\x93\x70\x4c\x4b\xba\x24\x14\xca\x5b\xcb\xcf\x91\x6b\x68\xae\x15\x2c\x17\xe0\x81\xc4\xf3\x85\x4d\xd1\xbf\x6c\x4c\xc8\x7e\xe6\xe8\x6d\x1b\x6b\x2a\x6a\x4a\x11\x86\x46\x73\x12\x36\x1f\x00\xf3\x67\x4c\x4f\xab\x0d\xe7\x8b\x4e\x68\x14\xc5\x72\xf2\x20\xe8\x83\x2c\xf3\x19\x6a\x4e\xc2\x9d\xd9\x82\xc3\xbc\xae\x07\x79\x10\x88\xba\xbe\x04\xfb\x62\xee\x58\x5e\x6e\x98\x6a\xf5\x5c\x04\xc1\xe0\x12\x2c\x10\x85\x87\xfe\xbd\xbc\x19\x15\xcb\x65\x54\x5a\xf6\x98\x8d\x43\xef\x48\x4d\x37\xc0\x3d\x06\x10\x0e\x73\x23\xfb\x52\x49\xe0\xf2\x8b\x2a\xbf\x14\x2f\x39\x76\xc9\xb3\xb0\x3f\x8b\x65\xf7\xcd\x01\x5f\xa9\xc8\x71\x10\x40\xd0\xaa\xd2\xee\x2d\xfa\x0a\x40\xa1\x08\x2d\x47\x45\xb6\x60\xa5\x65\x48\xa8\xbb\xf4\x77\x0c\xc9\x66\x15\xd9\x82\x04\x01\xfc\x3a\x4d\x99\x2c\x41\xd7\xd3\xc2\x5e\xd2\xe9\x64\x2f\xd9\xf5\x86\x42\x7a\x99\x2c\xf8\x87\xe2\xb0\x03\x39\x70\x1c\xda\x5a\x3b\xe3\x04\x88\x88\x3d\x27\xa7\x63\x83\xea\x20\x27\x9b\x14\x30\x81\xb3\xe1\xd8\x1e\xbb\x8b\x3d\xe5\xda\x4f\x5d\x3f\x3b\x74\x24\xc8\xda\xd4\x9c\x2b\x1c\x33\xe8\x51\x85\xf6\xdb\x80\x15\x37\x36\x56\x0b\x1d\x62\xaf\x39\xa5\x68\x4a\xa6\xb8\xb0\xa1\xfc\x21\x06\xdf\x32\xcd\xd3\x6a\x05\x94\x58\x00\xd7\x89\x07\x63\x62\xe7\x4e\x32\x52\xcf\x59\x42\xe5\x96\xa5\xa0\x01\xa1\xd7\x3c\x80\xbd\x44\x6b\x3d\x55\xd7\xea\xe7\x34\x21\x6d\x19\xa8\xb1\x06\xfa\x2c\x89\x65\x76\x63\x5b\xaa\xee\xa8\xc0\xb9\x6d\x4d\x3f\xfc\x94\x72\x4b\xf7\x21\xa8\x84\x0e\x74\x67\xfc\x28\x3a\xc8\x59\x07\xbc\xd5\x55\x33\x06\x00\x51\x63\x5d\x16\x1a\x88\x55\xd0\xf7\xc0\xe2\x56\xe0\x6e\x6c\x55\xd3\x4a\x7c\x53\x01\xce\xe4\x5f\x68\x7c\x10\x94\x10\x3d\x8d\x38\xec\x59\x70\x43\x4e\xba\x19\xe7\x96\xbf\x70\x2f\x29\x01\xd0\xfa\xa5\x15\x60\xc6\x26\x5f\x91\xdc\xac\xf6\xda\xb1\x4a\xd4\x20\x80\x47\xd0\xd6\x01\xe0\x73\x62\x48\x90\xf3\x4b\x0d\x6b\x4e\xa8\x90\x84\x3e\x35\xb1\x2e\x0b\x3a\x21\x64\x3a\x10\x41\x90\x4b\xfe\xa2\x0f\x96\x4c\x0d\x7e\x8f\x56\xcf\xf4\x2f\xb6\x70\x5f\xf7\x76\x2a\xcd\xfd\xce\xa2\x25\xcb\x63\xd3\xb1\x68\x06\x88\x40\xcd\x7e\x9e\x35\x3b\xba\x8c\x4a\x27\x28\xab\x58\xc7\x7a\x5a\x0e\xc6\xb4\x05\xef\x26\x87\x17\xb0\x02\x54\xc7\xaa\x5f\xcf\x0b\x58\x6e\x43\xc2\xf5\xaa\x50\xbd\x2a\x54\xaf\x6a\xbf\x23\xd9\x99\x42\x77\xa6\x72\x0c\x81\x23\x4f\xaf\x33\x65\x29\xb6\x23\x05\x74\xa4\x52\xb7\x8d\xa7\xe2\x71\x02\x8e\x35\x65\x2c\x66\x41\x20\xff\xea\xc6\x36\x6e\x3c\xfa\x64\x66\xbc\xf9\x28\x87\xca\xa8\x8e\xcb\x35\x6b\x49\x15\xf3\x48\x15\x5b\xd9\x39\x34\x37\x58\x77\xcb\x3c\x16\xb3\xa9\xfe\xf5\xf7\x9f\x86\xd1\x90\xd2\x55\xd7\x75\x2f\xa6\x4d\xde\x6f\xf5\xad\x16\xb9\x21\x66\x1b\x81\x05\x74\xa6\x2a\xb9\x11\x01\xa5\xca\xd2\x05\x7f\x5e\x5c\xe7\xe1\x46\x68\x9e\x97\x50\x48\xfc\x75\x03\x49\xf0\x09\x3a\xe9\x83\xc2\xdb\x91\xc9\xfa\x4b\x09\x95\xf4\xf7\x55\xee\xec\x94\x54\x19\x7b\x48\x7f\xb3\x15\xde\x03\x28\x49\x3d\xd0\x05\xb9\x67\xba\xb8\xfd\x17\xf8\x65\x74\xa9\xbb\xf9\x4e\x61\x48\xb5\xfa\x40\x35\x27\x59\x3c\x73\xca\xdd\x36\xf5\x05\x6f\x2b\x38\xcc\x56\x99\x15\xc4\x91\xaf\xc2\x9d\x8a\xc7\xb9\x1f\xa9\x14\x73\x06\xce\x07\x58\x7b\x21\xa8\x05\x9c\xdb\xf9\x75\x7c\x4c\x27\x64\x9a\x5b\x79\x45\x2b\xc4\x8b\x0d\x06\xdd\xb0\x56\x14\x7b\x02\x38\x6b\x9e\x74\xa8\x76\x18\xfe\xc4\xe8\xd3\x93\x12\x02\x56\x35\x74\xd6\x6c\xf2\x95\xf7\xb8\x21\x91\x89\xba\xc6\x09\x90\xc7\x4c\x60\x62\x5e\x04\x75\x45\x23\x9b\xb2\x0d\xa7\xde\xc6\xcf\x76\x55\x56\x5c\x87\xdf\x8e\xc7\x74\x99\x54\x22\x7c\x34\x1e\x3b\xe5\xff\xd7\xe3\xb1\xde\x7c\x17\x5c\x32\xc9\x07\x7c\xc8\x64\x71\x10\xb6\xdc\x32\x1c\x7c\x56\xd7\xb2\xab\x35\x10\x28\xf5\x48\xbd\x7f\xfe\x2f\xdc\x5e\xda\x50\xb6\x0b\xca\xc9\xb4\xec\xb4\x3f\x57\x16\x43\x26\x57\xa1\x3d\x09\x3b\xc7\x9b\x87\x90\x3b\xfa\x40\x3d\x54\xe4\x16\xf4\x17\xa0\x20\xea\x9c\x0f\x11\x32\xd5\x31\x35\x90\x81\x7c\x42\x06\x9f\xe3\x4d\xce\x90\x72\x0e\x80\xa0\x8c\xf4\x74\x54\x6c\x84\x0a\xde\xce\x17\x4c\xe8\x10\x31\x7c\x41\xf1\xe1\x06\x12\xf5\x2e\x43\x02\x99\x80\x3b\x1a\x56\x84\x9e\x8e\xe0\xe2\x37\xf3\x9c\xd9\x9a\x8c\x39\xf8\x4a\xd0\x0b\xc1\x74\x1c\xf1\x44\x88\xf2\x47\xf0\x09\x9e\x36\x98\x27\x99\x7e\xef\x71\xfe\x1d\xbc\x7a\xf0\xb4\x9c\xba\xd0\x21\x7f\x07\x56\xd3\xbd\x75\x10\xde\xb6\xd3\xb2\xe6\x81\x81\x13\x8b\xe5\x76\xfe\xd5\x00\x80\x27\xfe\xa9\x7e\x1e\xc9\x1f\xd2\x89\x5d\xcf\x9a\x68\x50\x36\xe8\x40\x74\x07\xfa\x53\x63\x25\x80\x35\x8a\x45\xc3\xab\xbd\xae\xb1\xe4\xef\xa0\x1b\xd5\xc1\x75\xcb\x37\x10\xce\xdc\xbd\x90\xed\x92\x56\x1b\x73\xb0\x68\x25\x42\x0b\xa5\xe1\xa3\xbd\x03\x65\x67\x79\x04\x69\x8d\x5e\x01\xa4\xf8\xc2\x19\xb2\x15\xbe\x49\x5f\xc9\x0a\x6b\xc8\x26\x08\x89\xca\x10\xf3\x26\x80\x8c\xa0\xf9\x10\x21\x22\x3f\xa7\x70\x06\x66\x85\x11\xab\x55\x11\x06\xfb\x40\x16\xa0\x15\x05\x25\xd3\x60\x03\x89\x69\x04\x89\x34\x48\x3b\x30\xc0\xe6\xf3\x43\x15\xe9\x7e\xd7\x86\xfc\x57\xa6\xc1\xfe\xdc\x0c\x02\x3d\x63\x15\x20\x2f\x84\xd5\x31\xb3\x5b\xef\x83\x7a\xde\x4e\x1d\xbe\x44\x0f\x9c\x8e\xc6\x29\xd6\x79\xc1\x2d\x0d\xec\x59\x7b\xe7\x5f\xfb\xa0\x0d\x9c\xda\xac\x42\x50\xb2\x7f\x1d\x70\x76\xe5\xc0\xc9\x8a\xb8\x04\x9c\xa1\x6e\x4c\x9c\x1c\xe6\xe7\xaa\x73\x62\xeb\x63\x87\x03\xcf\x2d\xa2\xd6\x48\xe6\x24\x6c\x7d\x53\xae\x54\x9a\x36\xaa\x5e\x77\xe6\x28\x10\x54\xdd\xe6\x93\xb3\xeb\xe1\xc9\x25\xe9\xe7\x22\x2e\x84\x36\x2a\xb4\xe3\x36\x85\xa4\xa6\x38\xdb\x40\xc8\x6c\xcd\x5d\xeb\x95\x20\xf9\x50\x59\x5e\x32\xa3\xf0\x17\xd4\x63\xda\xbe\x53\x97\x12\x25\x30\x55\xf4\xf3\x94\xd0\xc2\xba\x27\xae\xf5\x11\xaf\x8a\x00\xa5\xc8\x5b\x6d\xc2\xd8\xd4\x2a\x94\x1d\x40\xe1\x9d\xea\x8c\x49\x2d\x9f\xc8\x24\x77\xe2\x7b\xe9\x79\x27\x61\xee\x47\xd6\x9f\x11\xed\x60\x78\x84\xbc\x63\xd5\x2b\xd1\x08\x8c\xe1\x2f\x6b\x6d\xb4\xe2\x23\x2f\x65\x49\x05\x11\xcc\x91\x67\xa8\x7d\xeb\x97\xd0\x3c\xff\xe0\x24\xe2\x61\xaf\x07\x71\xb3\x65\x4d\x60\xc3\x4d\x37\x7c\x71\x9b\xa4\x2a\xcb\x81\xfb\x49\x6a\x2b\x0a\xf2\x5f\x90\x54\xcf\xc9\x2f\x56\xe5\xbf\x4c\x6f\xd4\xb6\x3b\xeb\x90\xd6\x4e\x0b\xff\x3b\xd2\x7a\x74\x80\x50\xca\x4d\xc7\xb4\x40\x4e\x4d\x01\x01\x32\x3c\x9b\x9f\x59\x83\x0a\x7e\x39\x95\x53\xa6\x87\x5f\x48\xd1\x64\x66\x40\x5d\xde\x18\x8a\x95\x5c\x28\x8b\xef\x7e\xeb\x97\x16\xe5\x43\x22\xb9\x00\x83\x63\xcf\x7b\x3e\x02\x73\xc4\x57\xb9\x64\x48\x26\x63\x12\xae\x85\x89\xea\x64\x62\x40\x91\xba\x3e\xed\x26\x42\xf0\xb9\x92\x2f\xa3\x71\x78\x3c\x91\x44\x4b\xf7\x4e\xb8\x5b\x16\x65\x88\x56\x62\x9d\xbd\x2c\x4a\x44\x61\x7e\x86\x6a\x9a\xca\x17\x91\x1c\xb6\x06\xdf\x00\xbb\x8c\x67\x47\x62\xd8\x89\x03\x9f\xc4\x7d\x87\x6d\xdf\xc1\xb7\x11\xbe\xc0\x8f\x5d\x60\x4a\x84\x9e\xa2\x8a\x3b\x6c\x5b\xa8\xf4\x94\x2d\x82\x00\x8b\xd6\xcb\x5f\x5a\x4b\x4b\x80\xd2\xa3\x84\x28\x2a\x79\xb2\x78\x93\x67\xb7\x88\xa2\x75\x72\xf3\x1a\x16\x08\xa2\x68\xce\xb3\x4c\x7b\x62\xe9\xbb\xb7\xda\x18\x82\xa2\xb2\xb8\x7e\xbf\x49\x72\x99\x5e\x64\xfa\x6a\x5b\xf1\xd3\x64\x83\x28\x5a\x96\xc9\x9a\x7f\xaf\x0d\x60\x8d\xff\xc6\x8b\x85\x8a\x9e\xdd\x10\xd2\x24\x8b\x62\x67\x30\x44\x01\x69\xec\xf5\x20\x77\x76\x0c\x23\x93\xc5\xe2\x19\x0c\x60\x8f\xd1\x9b\x1f\x30\x4d\x59\x40\x5e\x62\x67\x1b\xd1\xb7\xa4\xa5\xe4\xa3\x61\x46\x4d\xc1\x98\x7b\xa2\xb1\xa0\x57\x5a\x42\x27\x26\x28\x16\x16\x0c\x88\x99\x0d\xe2\xae\xf7\x34\x20\x0a\x73\x03\xd8\x57\xb0\x2b\x81\x73\x30\x68\x90\xbc\x87\x77\xba\x80\x8e\xd0\xf0\x52\xb2\xd1\x43\x49\x63\x35\x6c\xc2\x78\x9a\x32\x11\x27\xf0\x76\xe9\x4c\xf0\x8f\xd0\x30\x85\x6c\xe0\xf5\x5f\x0e\x99\xba\x9b\x16\x72\x29\x56\xec\x12\x40\x78\xb5\x85\x5b\x87\x02\xd3\xca\x06\x6e\x52\x11\x29\xb4\xcb\xea\xff\x91\xde\xf3\xca\xfe\xab\x0e\x1c\x74\x42\x28\x34\x84\x4c\x49\x18\xcc\x17\x20\xf4\x7f\xa7\xcb\xa1\xbc\xbe\x7e\x7f\x72\x3c\x99\x92\x92\x95\x36\x16\x94\x7d\x44\xff\x37\x06\x42\x49\xe1\xed\x81\xf0\x4e\x6f\xf5\x0e\x48\x4b\xdf\x2c\x39\xaf\xeb\xf6\xc6\x69\xb4\x80\x5d\x95\x85\x08\x82\x32\x12\x4a\x23\xe9\x66\xb6\x56\x58\x34\x06\x8b\x84\x70\xb4\xdb\x37\xbe\xb9\x1b\x5f\xaf\xc9\x8d\xf1\xcd\xed\xf8\x42\x90\x6c\x39\xc6\x07\x60\x7e\xd5\x2c\x53\x16\x12\xe9\x12\x97\x2a\x06\x21\x1b\xd3\x94\xe9\x4a\x68\xa2\x86\x79\x2a\x58\x12\x17\x6a\x58\x47\xab\xa4\x52\xb5\x0a\x12\xa5\x8d\x96\x0b\x12\xa6\xee\xdb\x84\x56\x29\xba\xb0\xee\xe0\x21\xa0\xfa\x45\x47\xf7\xc3\x82\xd9\xd9\x18\x04\x1e\x32\x1a\x3a\x3f\xb7\xdb\xc1\xf9\x39\xb2\xf1\xbe\xab\x06\xa3\xd3\x49\xb2\x03\x2c\xb4\x22\x98\x47\x08\x85\xbe\x2a\xb9\x59\x2e\xf0\x44\x44\x87\x6d\xd1\xdf\xd5\xbf\x12\xd9\x58\x2b\xcf\xe4\x7c\xe3\x72\xbe\x99\xe9\x5e\x9a\xe9\xde\x9e\xe4\x58\xcf\x72\x58\x04\x6a\xa6\xdb\x09\x2d\x00\x2f\xd4\x40\x39\x4e\x2d\x78\xa3\x0e\x37\xfa\x54\xb0\x93\xb3\xf2\xe4\xb2\x29\xb4\x5e\x25\xd9\x21\x32\x61\x42\xc8\x58\x9d\x78\x6b\x45\x47\xb8\x64\x72\x56\xf5\x2a\x40\x35\x17\x54\x4c\x3b\x61\x8e\x82\xc0\x1c\xa2\x17\xac\x8c\x9a\xd3\xcc\x4c\xc4\xab\x24\xc3\x84\x84\x9c\x44\x05\x43\xc8\x9e\xd9\xb8\x99\x5f\x44\xc5\x50\x3e\x69\xae\x95\x42\x19\xd9\x28\x63\x91\xa2\x37\xf2\x95\xd6\x00\xca\x21\xe4\x43\x84\xe0\x24\x0d\xb8\xac\xab\x24\xf3\xcc\xa8\x35\xe6\x4e\x3b\xb9\x3f\x3e\x25\xd8\xe5\x68\xb6\x4b\xf8\xc1\xa0\xdd\xdc\x2b\x28\x02\x61\x0b\x9c\xac\xa0\x28\x25\x7b\x15\xea\xcc\x3d\x2c\xa2\x66\x23\x8a\x9e\x16\x14\xf7\x55\x7f\xd9\xad\x1e\xe7\x4c\x19\x91\xbb\xca\x49\x94\x77\x99\x70\x9c\x33\x8d\x2b\x48\x22\x1b\x5a\x06\x3f\x05\xfc\x7e\x2d\xcc\xe6\xb2\xbf\x72\x83\x32\xd7\x60\x80\x4d\xf3\x42\x03\xa3\xfd\x65\x2c\xa1\x6e\x90\x1f\x8f\x7b\x00\x26\xcb\x97\x02\xeb\x90\x64\x1c\xfc\xc6\x14\x7f\x73\xa0\x54\x3d\x51\x0d\xf6\x72\x05\x1c\x77\x93\x75\x4a\x98\xd6\x43\x1d\xeb\x03\x6a\x1d\xf9\xb5\x62\x09\x28\x0d\xc0\x54\x8e\x25\x51\x3a\x9c\x84\xd6\x0c\x53\x79\x50\xa4\x8f\xc7\xd1\x3c\x4c\xa2\x14\x0c\x49\xe7\x60\xe0\x22\x37\x2a\x0c\xb2\xad\x85\x8c\x91\xac\x64\x09\x90\xc9\x41\x30\xc8\x2d\x04\x4d\x10\xe0\x41\xee\x73\x6a\xe6\x41\x5d\x0f\x5e\x60\xff\x09\x45\x06\x46\x1a\x11\x13\xcd\xee\x0e\xe7\x7a\x19\xd0\xc4\x6e\x9d\x53\xad\xcb\x14\x76\xab\xa9\x3a\xbe\x57\x1d\x28\x7d\xbf\x73\xe4\xca\xf8\xcc\x8d\xa7\x88\x6f\x78\x9a\x1c\x1f\x4f\x09\x06\xa3\xd3\xc4\xfb\x32\xe6\x42\x13\xb9\x99\xa8\x0b\x54\x80\xfa\x84\xa6\x40\x77\xe0\x44\x6a\x30\x76\x23\x0a\xc1\xb0\x1b\x63\xc1\x8e\x27\x10\x66\xa1\xc1\xa4\x6a\x1d\x9c\x53\xfa\xb5\x99\xc7\xc6\x0a\x9c\x75\x55\x06\xd0\x61\x1d\x27\x18\x2b\xc6\x9a\xe0\xb0\xde\x87\x60\x6e\xba\x16\x48\xe6\x7e\xef\xf4\x8c\x20\x14\x34\x6b\x84\x88\x30\x07\x29\x49\x27\xc8\xb0\x9e\xd8\x11\x2a\x72\x14\x1a\x35\x22\xb8\xfe\x9c\x8e\x74\x30\x77\x86\x8a\xdc\xc4\x75\x4f\xf3\xa3\x1c\xc8\xf3\xb5\x96\xe4\xf5\x03\xf8\xa9\x4d\xb8\xf7\x8b\x6c\x5b\x92\x07\x27\xf4\xae\xd9\x92\x3e\x30\x84\xa9\x5d\x9a\x3a\xbe\x21\xdd\x75\xe1\x5f\xc0\x49\xce\xa2\xf8\x35\x31\xfc\x2e\x58\x5c\xd6\x75\x32\xa3\x6b\x13\x45\x56\x4a\x70\x10\xc4\x58\x47\x3d\x0e\x39\x3d\xf5\x9e\xd9\xb8\xdd\x90\xc1\x81\x6a\x39\x04\xbe\x30\x56\x18\x64\x6c\xc1\xe6\x0c\x40\x79\x13\xfa\x55\x23\x32\xa8\x12\x8a\xfd\xfb\xc1\xb5\x16\xfe\xd6\xc3\x0e\x36\x26\x01\x6b\x0b\xcb\xc8\x8d\x80\x85\x0b\x02\x7c\xca\xd6\x5e\xad\x74\xcd\x4e\x47\xca\x64\x41\x76\xbe\x42\x01\x24\x74\xcb\xbc\x57\x43\xc5\x75\xcb\xc1\x1a\xae\x29\xe6\xec\x1e\x40\x9f\x35\xed\x31\x5e\x08\x02\xc9\xb1\x5a\x80\x5a\x56\x44\x8f\xc2\xaf\xa8\xd7\x0d\xec\xd4\x21\x4a\x52\xee\x81\x8e\x31\x2f\x53\xd4\x8b\x23\x78\xfa\x97\x38\x82\x4a\x81\x64\x30\x6a\xf4\x81\x08\x35\xa8\x29\x2a\x1c\xbd\x82\x42\x29\x89\x17\x83\x2e\xe6\xb3\xb0\x41\x0a\x28\x98\x9f\x2c\x3b\xe0\x73\x6b\x15\x3f\xae\xa8\xeb\xc1\xd2\x74\xbf\x46\x89\xb3\xf7\x36\xfa\x96\xd0\xc4\x6b\x50\x00\x16\xa0\x01\x3b\x0a\x82\xc1\x15\x2e\x2d\xd6\xe3\xb2\x01\xae\x58\xd7\x6b\x6a\x06\x3a\x1b\xae\x01\x77\x8d\xf9\xb1\xd1\xc8\xb4\x9a\xb6\x52\x2e\x14\x11\xac\x20\xdc\xea\x74\x0e\xc1\x39\x9a\xc1\xb8\xea\x3a\x21\x41\xa0\xf3\xcd\xfd\xd0\x5c\x75\x3d\xd7\x45\xfd\x9e\xe6\x8b\xe2\xba\xae\x73\xb2\x57\x21\x52\xc7\x53\x5c\xb1\x8b\x38\xd5\x18\x73\xfc\x20\x64\xdd\x82\x55\xe6\x04\x21\x7d\x32\x89\xb2\x70\x69\x01\x22\xe5\xe7\xe0\x8d\x01\xfb\xeb\x20\xfd\xa9\xb7\x66\x06\xda\xa8\x32\xf0\x83\x60\x85\xb0\xd1\x1d\x09\x40\x34\x78\xc3\xb6\x41\x50\xc5\xdb\x99\x7b\x12\x04\xbf\xe0\x4a\x39\x8f\xea\xf1\x6e\xbc\x62\x41\x78\x0c\xcc\x51\x1b\xa3\xc5\x45\xc8\x55\x8d\x5f\xcb\x71\xe5\x3d\xc0\x2f\x98\xd4\xf5\xd2\x5a\xad\x68\xa3\x02\x97\xa0\x2b\xbd\x18\x6d\xe0\x20\x4e\x90\xba\x1e\xfc\x82\x4b\x52\xd7\xdb\x20\xb8\xc4\x65\xbc\x86\x0e\xbc\x82\x20\xbe\x18\xcf\x59\xa9\x3e\x03\xcb\x5f\x98\x83\x0e\x70\xd4\x2e\x69\xb6\xa6\x87\x7a\x3c\x08\x16\x5d\x90\xd4\x35\xbd\x13\x84\xca\xba\x00\x29\xf9\xf0\x9b\x7d\xd8\x4b\xea\xe5\x6e\x1b\xf4\xfa\x99\x9b\xb6\xce\x21\x00\xa4\x85\xc9\xab\x34\xf0\xcb\x01\xcb\x0e\x4b\x78\x3d\xa2\x41\x73\xba\xd3\x24\xb3\x81\xd3\x33\xde\x93\x69\x1b\xa0\xb9\x54\xd1\x07\x05\xe9\x04\x8c\xed\x23\xe0\x7f\x79\x2e\xd4\x2c\x5c\xb6\x54\xd8\x70\x9d\x3a\xf5\xc7\x0e\x14\x77\xd3\xb8\x58\x32\xff\x9e\xc7\xf9\x51\x5f\xa1\x39\x84\xaa\xdd\x7b\xdb\x9b\x72\xc5\xfc\x6f\x30\x4c\x54\xcd\xcd\x33\x5c\x4d\x90\x74\xd7\x61\x61\xa9\x1b\x6d\x22\x70\xaa\x9d\xaf\x85\x02\xde\x03\x81\xa2\xc6\x4a\x79\x18\x36\x69\x86\x62\xd4\x9d\xad\x9f\xa4\x68\xd3\xa2\xae\xcb\xee\xec\xe3\xea\xb3\xa9\x9f\x97\xe2\x02\x62\x9c\x4c\x20\x24\xaf\xc2\x3a\xfd\xef\x2b\x3e\x9e\x4c\x8b\xa8\x51\x7c\x41\x42\x5c\xf6\x4e\x67\xd7\x1a\x6d\x3e\x08\xb4\x78\x6f\x4f\x13\xce\x05\xcb\x47\x59\x31\x57\x1e\x22\x6f\xfc\x13\x79\xfa\x41\x4a\x85\xd1\xc9\xf4\x6e\x04\x0a\xd9\x8f\xa7\xaf\xbb\x16\x4a\xa0\xcf\xe1\x75\xdd\x63\x87\x44\x3c\x66\x08\x82\x77\x0a\x06\xd3\x3f\x1f\x3d\x7f\x73\xfa\x56\x96\x58\x12\x55\xf2\xcb\xb2\x58\xbf\x87\xf7\x81\x9f\xe0\x37\xe2\xe4\x66\x9d\x21\xa2\x23\x73\x42\x88\x7d\x2d\x5f\x38\xed\xea\x00\x04\x18\x7d\x94\x5b\x7d\x7f\xfb\x21\xb9\x94\xf2\x0f\x46\x50\x64\xc9\xcb\xb2\x28\x3d\x7b\xe6\xbb\x11\xa4\x60\xf4\x2a\xbf\x4a\xb2\x74\x71\xf4\xf1\xf4\x75\x28\x65\x6b\x42\x85\xf2\xa0\xbb\x91\x9f\x1b\x9f\xcd\x1e\x9c\xd0\x9f\x41\x1e\x8e\xce\xf2\x93\x4b\xfa\x5a\x33\x5f\xd5\xf6\x62\x9d\x0a\x7d\xc0\x52\xa7\xeb\xe4\x92\xd7\x25\xaf\xb8\xa8\x97\x69\xc6\xe1\xc4\xe5\xc5\xbd\x47\x33\x9f\xf9\xed\x25\xcf\x89\x7f\x0c\xf3\x5e\xb4\x6c\xdb\x7a\x9d\xb6\xf5\x92\x69\x9e\xe0\x17\x64\x97\xd7\xb5\xc1\xa9\xe6\x24\x92\x63\x5d\x90\x50\x16\x39\x44\x31\x1a\xf6\x00\xa0\x58\x35\x7e\x11\x89\x10\x49\x6e\x61\x86\x68\x61\x03\xfe\x1b\xbc\xfb\xbc\xae\xcd\xbb\x03\xc6\xae\x81\x65\xd6\x30\x72\x0d\x9b\x2d\x41\x6c\x65\x05\x14\x25\xe2\x62\xa6\x4a\x83\x29\x93\xac\x59\xff\x59\x21\xc4\xf8\xec\x5b\xde\x00\x19\x29\x30\x09\xc5\xb4\x8c\x8d\x7d\xd3\x8c\xf1\x7c\x5e\x2c\xf8\xaf\xef\x5e\x3d\x2b\xd6\x9b\x22\x57\x08\x8a\x43\xc4\xd0\xb0\xe7\x89\x2f\x95\x92\x3d\xd0\x28\x25\xd7\x9b\x93\x6a\xd4\xed\x64\x88\x75\x36\xfa\xe3\xcf\x2d\x2f\x6f\x75\xa0\xf5\xb7\x59\x92\xe6\xd6\xc0\xd0\x8c\x41\x33\xde\x45\xa1\xc4\x75\xc9\xaa\x51\x27\xb8\xbb\xbe\xf4\xfc\x80\xde\x0b\x9c\x53\xf0\xfd\x91\x43\x67\x8f\x02\x35\x17\x17\x20\xd2\xb2\xb6\xac\x78\x99\x26\x59\x7f\x44\x3a\xdd\xb9\x58\xab\xa3\x74\x46\xf5\x25\x2a\xe2\x86\x9f\xd4\x53\x80\xe8\x8b\x31\xac\x6c\x38\xf4\x19\xbd\x52\x5e\x71\xbd\xb8\x9c\x2c\xce\x23\x9f\x37\xd4\xea\xc4\x3d\xe0\x3f\x80\xe1\x67\xb7\x40\xab\x32\x69\x38\x9e\xcb\x2e\x93\x1d\xad\x75\x3a\x69\x85\x51\x68\x64\x60\x00\x82\xd1\xf3\xba\xa1\x59\x91\x9c\xc3\x6b\xe1\x42\x0a\xab\xa7\x5a\x88\xab\xeb\x81\x45\xff\x00\xc5\x49\xeb\x03\x7d\x83\x30\x5f\x93\xd4\x44\xfd\x52\xc6\x02\x2d\xd5\x51\x4e\x22\xa5\x36\xca\xfb\xd4\x46\x3b\xf9\x2d\xa1\x50\xb3\x40\x01\x83\x3a\xe4\x80\x9f\x05\x45\x67\xe5\x59\x8e\xc0\x66\x26\xec\xc9\x9b\x1f\xc8\xab\xc2\xd5\x1a\x05\xdd\x9f\x82\x9d\xfc\xe3\xd1\xf8\xe4\x92\x3e\x13\xec\xe4\xff\x37\x7a\xf8\xe0\x84\x7e\x16\xec\x04\xc7\x51\x30\x23\xe7\x2c\xfe\x4f\x30\x7b\x78\x42\x7f\x07\x02\x34\x7a\x18\x91\x30\x3e\x3a\x13\xb3\x87\x38\xfe\x8f\x2c\x72\xf6\x90\x3c\x38\xb9\x5c\xd3\xe7\x9a\x40\xfd\xf0\xe2\x43\xfd\xe3\x8b\xa7\xcf\xa5\xdc\xf8\xbd\x4c\x3b\x3b\x39\x3b\x39\xa1\x6f\x05\xdb\xed\xe9\x3b\xf8\xfb\x51\x30\xf4\xf0\x04\x19\xef\x54\xf4\x10\x11\xfa\x47\x8f\x21\x4f\xe2\x87\xa0\x7d\xe5\x1f\xf2\x36\x1d\x0b\xbb\x1b\x84\xb0\x86\xaa\xb2\xf0\xa9\xf1\x91\x1d\xd3\xb4\x7d\x72\xde\x38\x05\x56\xe7\x12\xb9\xc6\x07\x2e\x59\xaa\x35\xc5\x68\x28\x29\x5d\x19\x8f\x67\x11\x2e\x59\x69\xa3\xb4\xd4\x35\x7a\x88\xa8\xf2\xa1\xe3\xe0\x37\x12\xcf\x88\x35\x58\xcf\x09\x09\xdb\xcf\x40\x34\xc8\x7d\x2c\x9a\x5f\xdb\x74\x5a\x85\x0c\xe1\x8c\xb1\x77\xc2\x7d\x7e\x82\x2b\xf5\x7c\x6e\x03\x80\xc4\xd5\x4c\x19\x64\x2a\xf2\x11\x57\xca\xc5\xc9\x9f\x97\xfa\x9d\x8c\x55\xda\x78\xf9\xa0\x69\x6f\x56\xd7\x69\x5d\x17\x71\x36\x8b\xd2\x68\x80\xe7\x2c\x23\x5a\xef\x16\x62\x01\xe8\xd3\x52\xd0\x70\xd6\xf8\x19\xa1\x89\xfc\x33\x98\x80\x92\x61\x6e\x76\xcf\xc4\xcf\x1d\x8f\x67\x92\x4b\x2f\xc0\xa7\x2b\x08\x12\x18\x6a\xf7\xe9\x3f\x8a\x96\x87\x23\xbb\x1b\x25\x7f\x24\x37\xef\xb9\x10\x69\x7e\x59\x8d\x96\x59\x22\xb4\x2b\xaa\x05\x22\xcf\xd5\xf6\xe0\xb4\x9d\x71\x3e\x93\xfc\x7e\x11\xe7\x52\x72\x2e\xeb\x1a\x97\x6c\xb7\x27\x24\xce\x67\x0a\x62\xd9\x52\x44\x0f\x79\x73\x30\x06\x70\x19\xca\xf7\x7f\x08\x38\xd8\x65\xe7\xea\xd7\x37\x5f\x9a\x8b\xf4\x8a\x87\x63\x9a\x25\x95\x38\x2d\x16\xe9\x32\xe5\x0b\xf0\xab\x15\x09\xf8\xd7\xfa\x6d\x0d\x77\xdb\x32\x0b\x4d\x21\xc0\x7b\xa3\x1f\x5e\x7c\x40\x34\xad\x5e\x17\xf3\x24\x0b\x95\xbd\xc4\x45\xb1\x15\x75\xb2\xd9\xc8\xff\x1f\x57\xa2\x28\xe5\x56\x3f\x1a\x1e\x43\x9d\x55\x5a\xe4\xb0\xe3\xcb\xcd\xbf\xbe\x4e\x17\x00\x1e\xfa\xe0\x44\x91\x9e\x73\xed\xa8\x3f\x2f\x32\x42\x15\xf4\x0b\x00\x19\x96\x85\xe4\xd5\x00\xdf\x62\x30\xa6\x49\x75\x9b\xcf\x35\xc6\xb0\xe0\xb9\x00\x10\x3a\x24\x45\xa7\x54\x31\x62\x27\x37\xc7\xd7\xd7\xd7\xc7\xcb\xa2\x5c\x1f\x6f\xcb\x4c\xed\x72\x8b\xe9\xd1\x7c\x25\x79\x1b\xc1\x7e\xfd\xf0\xf2\xf8\x9f\x88\x4a\x0e\x70\x23\xb4\x1b\xe0\x47\xa1\xd0\x1e\x14\xff\xb4\x91\xdb\x17\x52\xb1\xe1\x55\x8a\xbc\x44\xf4\x46\xde\x37\x6a\x5a\x67\xf4\xc8\xb2\x5c\xf4\x8f\x0a\x42\x77\x7a\x19\x64\x8a\xce\xf1\x47\x72\x95\x68\xd4\x8e\xbd\x69\x7b\x15\xee\x64\x99\x27\x67\x17\x37\xeb\xec\xec\xe2\x44\x55\x79\x72\x76\x21\x7f\x4f\x54\x79\x27\x67\x17\xf2\xf7\xec\xe2\x64\x4f\x4b\x5e\x6d\x8a\xbc\xe2\x2f\x53\x9e\x2d\xf4\xcb\xc8\x24\x7e\x3c\x7d\x8d\xf4\x57\x98\xa4\x0f\xfc\x46\x98\x66\x99\xb4\x7f\xbd\x7f\xf3\xb3\x6a\xc1\x15\x2f\x85\x76\x84\x84\x26\xa2\x50\xf1\x91\x8a\x8b\x3c\x82\x6f\x96\x1d\xad\x6e\x65\x29\x28\x94\x6f\x2b\xbe\x53\x27\xcb\x0f\x0f\x1d\x93\xbb\xa7\xde\x94\x56\x53\xc6\x0c\xd5\x8d\x90\xe2\x99\x9d\x54\xdb\x03\x06\x28\x22\xfa\x51\x60\x58\x38\xcd\xb5\x22\x05\xe2\xf0\x47\x81\x9b\xa9\x00\xd4\x21\x13\x1c\x1a\xcd\x2b\x81\xdf\x0a\x02\x89\x1f\xca\x24\xaf\x36\x45\x29\x64\xe2\x3b\x9d\xd8\xaa\xb6\x57\xf7\x84\x5b\x0e\x00\x4c\xc0\xf2\x6c\x05\x1c\xb6\xaa\xbd\x95\x5b\xd7\xdb\x8d\x76\x5f\xbf\x60\xab\x91\xfe\xee\xba\x5e\x29\xa5\x9f\xba\x0d\x02\x7c\xe1\x05\xff\xb8\xd0\xbc\x13\x89\xee\xf0\x05\x09\x8d\x76\xf1\xb4\x11\x54\x80\x5e\xb2\xbb\xd1\xb3\x24\xcb\x2e\x92\xf9\xe7\x0a\xa3\x22\x9f\xf3\xa3\x35\x5f\x17\xe5\x2d\x22\xf4\x8a\xad\x46\x95\x48\xc4\xb6\x7a\x06\xf8\xee\xbb\x3d\xbd\x95\x54\xf6\xa9\xfc\x73\xcd\x90\xc2\x3e\xe5\x0b\x44\xcf\xd9\xae\xe4\xc9\xe2\xf6\xbd\x90\xf2\x36\x60\x8d\xbf\xd3\x13\xe3\x47\x9e\x2c\xfa\xb0\xac\xa7\x2a\xe2\xb6\x94\x55\x14\xe4\x4b\xc5\x76\xfb\xa9\x60\xbf\x0b\xe5\xfc\x9a\x92\x29\xa9\x62\xd1\x81\x22\x00\xbc\x77\x86\x0f\x3e\x6a\x04\x70\x10\xf1\xa3\x19\x99\x0a\x56\xc5\xbc\x27\xeb\xbe\xc1\x67\x08\xc5\x67\x08\xcd\xff\xd1\x23\xc9\x00\x5e\x72\xf1\x34\xcb\x9a\xdf\xd2\x17\x0b\x79\x1b\xa5\xa1\x35\x19\x79\xa7\x02\x71\x74\xbe\xdc\x9b\x8e\xaa\xca\x2d\x78\x26\x3c\x6d\x37\x6e\xd6\x93\x54\xd7\x9c\xde\xc6\x7c\xc6\xf4\x31\xe8\x9e\x16\x57\xbc\x2c\xd3\x05\x3f\x4d\xd7\x0a\x3d\xf3\xa0\xd2\x7b\x0b\x6e\x7b\x6b\x9d\x8f\x71\x53\x82\x1b\xdb\xfe\xe1\x01\x57\xf9\x2d\x39\x37\xde\x7d\x3c\x3e\xd7\xf3\xc1\xf7\x15\x51\xe1\xf7\xc8\x95\x94\xdf\x63\xf9\x97\xf2\x58\xcc\x66\x4d\xe0\x8d\xe4\x42\x2e\x97\x1e\x53\x9a\xba\xbe\xf6\xf6\x99\x72\x04\x19\xb1\x20\xf4\x0d\x1e\x9b\x23\xdf\x3d\x88\x0c\xa7\x36\xbe\xc3\x39\xa1\xab\xd1\xb6\xcc\x18\xc6\xbc\xae\xe1\xb2\xae\xf5\x16\x42\x86\x08\x11\xcb\xbf\x7d\x2f\xa8\x47\xfe\x87\xe8\xe4\x04\xc9\x77\x15\x7e\xe7\x68\xcd\xc5\xaa\x58\xd4\xb5\xd0\xe0\x5e\x2b\x9b\xa2\xb2\xd0\x95\xdb\x92\x19\x76\x37\xc0\xbe\x90\xc3\xfc\x10\x42\xc6\xfd\x74\x35\x9a\x97\x45\x55\x3d\x2f\xd6\x49\x9a\x93\x5d\x4f\x2c\x71\xc9\xab\x49\x41\x3c\x53\xbb\x29\x7c\x0c\xd5\x37\xea\x87\x36\x0a\x61\x7f\xb4\xbe\x67\x28\x37\xe2\xa2\x12\x03\xa6\x82\x21\x78\x4f\x32\x78\xa0\x25\xf6\x0f\x64\xd7\x2c\x48\x52\xcd\x74\xa9\x3f\x2b\x08\x56\x23\x6f\x47\x74\x90\x77\x8e\xd3\x31\x19\xf5\x1b\xcc\x88\x3c\xea\x56\xf6\x6a\x99\x2c\x20\x1e\x60\x92\x11\x42\x7f\x95\xf4\x92\xae\xa8\xa0\xe7\x84\x6e\x8d\xe2\xe1\x1c\x78\x91\xe5\x51\x9a\xe3\x8d\x51\x5f\xcb\xba\xd5\xbe\x4c\x82\x60\x0c\xde\xae\x8a\x85\x18\x0e\x81\xf3\x68\xe8\xb0\x10\x10\x44\x91\x94\xc2\x8d\xa4\xfa\x69\xc6\x04\xa4\x2b\xb0\x52\xd0\x40\x30\x83\xe7\x5a\x46\x51\x59\x09\x2d\x54\x4f\xdb\x89\xf2\x0c\x8e\x4f\x1b\x2f\x45\x07\x7a\x06\x02\x6a\x6a\xaa\xab\xf8\x04\x05\x0b\x67\x0f\x29\xfe\x92\x69\x00\xff\x5d\xdd\x8b\xea\xc7\xb6\xe3\x4f\x41\xd1\x10\x49\x06\x78\xa1\x5b\xa8\x78\x66\x73\xf0\x47\xa8\x37\x0c\x5e\xb3\x9c\xb6\x87\xb5\x06\x0c\xce\xd8\x87\x0c\x7f\xb0\xae\x5b\x11\x0a\x50\x88\x22\x44\x86\x7a\xe8\xb4\x05\xa5\xce\xaf\x34\xd3\xab\xd1\x3c\x99\xaf\xb8\x0a\x90\xe8\x00\xe8\x04\x45\x0f\x26\x88\xd0\x45\x7f\x81\xe8\x9c\xa1\xe1\x1b\x31\x1c\x0e\x17\x66\x8d\x16\xea\x32\x5d\x1a\x4e\x10\xe2\x4b\xf8\xac\x21\x38\x99\x9d\x8f\xda\x84\x13\xa3\x57\xcb\x63\x93\xe7\xf8\x7d\x9a\xcf\x39\xa2\x9d\x37\x41\x2f\x2c\x92\xcb\xfb\x0a\xf9\xb9\xc8\xf9\xf1\xa9\x5c\x05\xc8\xe5\x26\x84\x7a\x73\xdf\x0d\xbb\xd6\x9f\xb7\x06\x58\xf8\xb7\xa4\xbf\x26\x5d\xc0\xf1\x07\xb0\xda\x6e\x14\x40\x68\xdf\x0b\x4f\x81\x57\x44\x3e\x99\x89\xc7\x33\xd9\x1c\xcd\x45\xc6\xcd\x27\xb3\xe8\xe0\x93\xa1\x14\x11\xa0\xd9\x7e\x72\x24\x77\xb1\xe1\x47\x31\x44\xd3\xa3\x3f\xd9\x78\x34\x9e\xa0\x10\x21\x12\xba\x62\x54\x54\xa3\xd5\x68\xa5\x76\x36\xd2\xd3\xcc\xa5\x7b\x1c\x2f\x15\x56\xdd\x6a\xa4\x70\x67\xde\xf3\x7c\x61\x22\x54\xf9\x69\xea\xac\xf1\x82\x9e\xd3\x15\xa9\xeb\xad\x3d\xde\x3d\xd7\xe4\x1d\x0a\xb9\x66\x08\xee\x10\xbd\x04\xb4\xd2\x95\x8b\xe5\x41\xcf\x95\x03\xf6\x6a\x54\x6d\x41\xa3\x2a\x53\x20\xbe\xc7\x4a\xa9\x0c\x09\x2d\xd9\xaf\x92\xf7\xd2\x04\x06\xf8\x88\xf3\x91\xe3\x41\xd8\x84\x6e\x82\x60\xdd\x22\x1b\x00\xa0\x13\x9f\xd3\xd5\xac\x41\x92\x56\x23\xe0\xfe\x65\xc7\x0b\xe5\x50\xf3\x04\x82\x9d\xb3\x83\x61\xaf\xcc\x87\x20\x9d\x1f\x91\x3d\x50\x23\x75\x47\x14\x49\xdf\xb2\xc1\x04\x00\x91\xf3\x05\xbe\xa5\x6f\x88\x23\xc4\xb0\xad\x8a\x55\x59\x5c\x1f\x7d\x98\xbe\xc1\xc7\x13\xfa\x81\xec\xf7\xb0\xa3\xc2\x1d\xfa\xb9\x38\xb2\x4c\xa6\x2f\xcc\xbf\x01\x99\x37\xb1\xf2\x29\xb0\x89\xb7\xf4\x29\xbd\x66\x62\xba\xad\x6b\xbc\x95\x92\xed\x3c\x08\x5a\xfe\x41\x73\xd9\x61\xfa\xb8\x24\x65\x95\x24\x58\xb4\xd1\x5d\xfc\xc9\x38\xfa\x5a\x8a\x6c\x8c\x3f\x61\x8f\xc6\xe3\x20\xe0\x8f\xbf\x1a\x8f\xeb\xfa\xab\xf1\xd7\x8c\x31\x4e\x25\xc5\xb9\xed\xf8\x89\x7b\x81\xb4\x1c\xc4\xa2\x16\x42\xe8\x9c\x71\x37\x1b\xa7\xe8\xa1\x24\x4d\xf3\x78\x3c\x9b\x92\xb9\x3d\xe7\xb5\x91\x25\x4a\x00\xa3\xe1\x96\x4b\x91\x4b\xae\xc3\x45\xb6\xd6\x98\x32\x5d\x2c\x1d\x70\x6e\x25\x19\x96\x0a\x48\x81\xfc\xab\xe8\x53\x49\xc8\x6e\x6e\xe5\xef\x82\x4c\x2f\x4a\x9e\x7c\x96\x5b\x9f\x6c\x4c\x9a\x1f\xe5\x24\x55\xed\x92\x03\xe0\xe0\xa8\x73\xc5\x9c\xce\x15\x84\xf1\xc8\x49\x36\x71\x21\xb9\xc7\xa1\x7c\x30\x23\xbb\x94\x15\xba\xc4\x04\xd0\x78\x0a\xb2\x87\x50\x1b\x89\xac\xc1\xda\x8b\xa7\x03\xf5\xed\x41\xe0\x9a\x92\x12\x9a\xc7\xe9\x6c\x8f\x57\xf4\x9c\x26\x84\xd0\x76\xff\xb6\x22\x2e\x03\x18\xc9\x6e\x4f\xb7\x7e\xbf\xea\xfd\x01\x7a\x62\x1b\x4f\x66\x0a\x83\x12\x58\x32\xaf\xc9\x24\x8b\x93\x36\x8f\xd9\xf8\xa4\x64\xa6\xdc\xff\xd8\xd6\x0c\xcd\x34\x05\x8b\x36\x38\x4f\xf3\xa4\xc3\x38\x55\xc0\x89\x3d\xe9\xc0\x9b\x0e\xe6\x41\x50\x06\x81\x6a\xe1\x4b\x10\x9d\x94\xdc\xe3\x25\xc0\xa9\x90\xf9\x02\x08\x8d\x90\x52\xaf\x66\x59\xad\x9a\x2d\xa9\x1c\x19\xab\x03\x57\x14\x6e\x1e\x04\x73\xb0\xc4\x87\xd1\xc1\x09\xcb\xe2\x39\x8c\x47\x3a\xab\xeb\x2c\x46\x0f\xe1\xd2\x43\x53\xce\xc0\x08\xa8\x62\x85\x17\x38\x96\xc4\x93\x99\xb2\xe0\xf7\x0a\x00\x42\x6a\xcb\x80\x3b\x42\x76\x10\x2f\x3a\x89\x12\x40\x5b\x0e\x21\x04\x40\x06\x33\x0c\xa7\x4c\xe6\xa1\x5b\x3b\xa0\x95\xec\x7f\x6f\x7e\x41\xe6\x44\x56\x9f\xc8\x1e\x81\x05\x5f\x11\xc1\x12\x6b\x18\xa9\x8e\x60\xe4\xbd\x23\x0e\x5a\x85\x59\x81\x28\xd5\x38\x39\xa1\xf0\x13\x26\xd1\x87\x50\x52\x08\x35\x7c\x15\x84\xb6\x2b\x8b\xb5\x9c\x92\x43\x74\x24\x0a\xd9\x01\xfb\xfd\xbe\x59\x8e\x26\xa4\x88\xca\x7e\x0f\xc5\x5e\xce\xba\x5b\x7a\x0e\x61\x97\x22\xdc\xda\x9f\xf1\x53\x76\xde\xb7\xfa\x5e\x27\x95\xb0\x5b\xb2\x8a\x8a\xd2\xd9\x90\xd9\x53\x42\x0f\xbd\x2f\xb7\x5e\xf3\x9a\xde\x86\xd9\x53\x42\xe8\x23\x45\x64\xea\x1a\xfd\xf8\xe2\xe9\x73\x04\xbb\x89\x64\x62\xa2\x6b\x86\xf2\xc2\xc0\x0d\x84\x9a\x16\xa9\x54\xb1\x36\xed\x08\xf1\x35\xbb\x05\xc1\x84\xd3\x25\xbb\x55\x3c\x4d\xc6\x06\x78\xc1\x6e\xf5\x76\xa1\x18\xaa\x6b\x3a\xe0\x41\x70\x5d\xd7\x72\xef\x31\x5d\x0a\x56\xdc\x9c\x8d\x09\x81\x4d\x1a\xc4\x1b\xc6\xed\x25\xe0\x34\x61\x51\xd7\xd7\x52\xb2\xa0\x59\x74\xda\x88\x54\x76\x41\xe3\x25\xbd\xa6\xe7\x33\x12\x9e\xfa\xa1\xca\x2e\xe4\x36\x73\x4d\x17\x33\x57\xa8\x94\xb3\xf0\x95\x94\xaa\x35\x21\x6e\x6c\x50\x59\xa4\xb6\x28\x3d\x4c\x21\xdc\xbd\x50\x6d\x94\x3b\x16\xcd\xa2\x65\x28\x8b\xbb\x84\xf0\x3f\x5e\x25\x33\x22\x4b\xc2\xad\xbd\xee\x99\xde\x4b\xed\x7e\x77\x7c\x6c\xd8\x6a\x38\x78\xeb\x63\xaa\x0b\x30\x68\x33\x52\xf1\x39\x48\xbf\xff\x7a\xff\xe6\xe7\x03\x2e\x5f\x47\x77\xc6\xeb\x84\xe6\x14\x81\x22\x47\x49\xcc\xef\x41\x1f\xd5\x2f\xf8\x9a\x77\x74\x1f\x08\x87\x39\xdb\x30\x33\xbb\xe4\x02\x51\xb4\x29\x2a\xd1\x13\x77\xbd\xe5\xe2\xd5\x04\x9a\xb8\xc4\x26\x92\x7f\x5d\x97\xb4\x84\x78\xdd\x46\xe1\xa2\xd4\x29\x2e\xec\x17\x28\x92\xb8\xd2\x3a\x0a\x6a\x28\x52\x58\xa8\x45\x92\x53\xbd\x68\x42\x88\xbb\xd1\x3e\x7f\x02\x53\x22\xed\x6e\x6d\x90\x9e\xfb\xdd\x82\x75\xb5\x7e\x6d\x4a\xc7\x69\x6b\x34\x9d\x40\x81\xe9\xf6\xf4\x91\x13\xab\xb1\x9c\x34\x75\x6b\xa0\x25\xd3\x6f\xf9\xfa\x88\xfd\x9e\x3a\x42\xdb\x8a\x24\xeb\x70\xaf\x55\x24\xe8\x7d\xfb\x84\xeb\xba\x4c\x36\x4f\xb3\x1e\x0b\x63\x5f\x98\x87\x5d\x0c\xab\x08\x2f\x98\x33\xcf\x22\x38\x1e\x4b\xae\x5a\xb0\x3b\x1d\x92\xb8\x83\x4d\x4e\x46\xfc\x4f\x3c\x26\x1e\x34\xa0\xc9\xd6\xf4\x97\x69\xc0\x88\x9a\x92\xa9\xe8\x9c\x8f\x59\xe0\x50\x38\xd2\x9a\x72\x05\xad\xaa\x65\x6b\xf0\x5f\x9e\x12\xd9\xc2\x6e\xb2\x0d\x08\x4b\x2c\xa0\xa4\x32\x41\xd7\xaa\x11\xd9\x13\xaf\xf2\xbc\x1f\x85\xfa\xa0\x6d\xbe\xe7\x7b\x61\x0b\x68\x7a\x5e\x90\xbf\x32\xc6\xb7\x76\xf7\x39\xb3\x32\x47\x85\x9d\x57\x7d\x94\x8f\xf4\x28\xc1\x51\x9f\x8f\x86\x49\x54\xb3\x7b\xb4\x2c\x97\xce\x2d\xa1\xd7\xfe\x24\x6f\xb6\x5b\x16\x2e\x9a\xa6\xde\x24\xd4\x35\x6c\xf3\x4e\x1d\x0d\xf4\x46\x18\x47\xcc\xc9\x28\x2f\x04\x46\x17\xc5\xe2\x16\xf5\x40\x13\x3b\x0f\x15\x0b\x4b\x69\x4e\x0e\x0d\x44\x3d\x1c\x8f\x98\x40\x8f\xda\x4b\x74\x53\xf1\xed\xa2\xa8\x4c\xe0\xa6\x9e\x78\x1f\xad\x8c\x80\x72\xa5\x41\x1b\xfb\x1f\xf5\x15\x32\xc0\xdc\x07\x97\x93\xdc\x9f\xba\x55\x50\x2b\xf7\xa0\x35\x40\x35\x8d\xa3\x98\x9b\x55\xe9\xfb\xed\xcb\x0d\xdf\x43\xc4\xc9\x47\x1f\x4f\x5f\xff\x28\xc4\x46\x8b\x5c\x9a\x0b\xe0\x72\x1d\x83\x5a\xf8\xa5\x60\xbb\x31\x44\x22\x98\x3c\x7a\xf4\x55\xf8\x68\xfc\xf5\x9e\xfe\x26\xda\xe7\x3d\x37\xab\x12\x93\xe9\xe9\x68\x5e\x94\x15\x1b\x0c\x7e\x13\x41\x80\xae\x53\xb1\x7a\x56\xf2\x05\xcf\x45\x9a\x64\x15\x4a\xf3\xa3\xdf\x04\x3d\x85\x17\xd9\x6f\x02\xb2\xe9\xc6\x5a\x51\x03\x77\x81\x69\x69\xa9\x74\x6f\xb2\xe8\xba\x96\x25\x0f\x78\x43\xa9\x65\xd8\x8c\x06\xd6\xb2\x03\xea\x02\x91\x40\xb5\x4f\xf2\xe6\x80\xaf\x89\xb5\x4d\x37\x07\x65\x17\x57\xd2\x97\xbc\xab\x38\xd8\x5b\x52\x3e\xda\x24\x55\x75\x5d\x94\x0b\x42\xe1\x6d\xc5\x63\xfa\xbc\xad\x4b\x94\xcc\x2b\xf3\x12\x0c\x2f\xab\x33\x1a\x81\x22\x08\xaa\x51\x5b\x65\xda\x97\x86\xdd\x2b\xb2\x72\xef\x53\xeb\xba\x88\xd1\xc7\x63\x3d\x54\x7c\x71\x0c\x68\xaa\xb3\xba\xc6\xbd\xe9\x0c\x35\xc7\x16\x11\x5a\x90\xaa\x2b\x5f\x27\x14\x6c\xb8\xa7\xbd\x56\xcb\xfe\xd4\x01\x3e\xba\x64\xd5\xa8\xc8\xb3\x22\x59\xc0\x05\x70\x31\x70\x05\x02\x29\x5c\x69\x29\x14\xae\x41\xc4\x03\xd6\x68\xbe\x4a\xf2\x4b\x05\x72\x4c\xb5\xe0\x0d\xcc\x54\x65\x64\xf2\x50\xb3\x44\xca\x65\xa6\x13\x76\xab\xd2\x6c\x4c\x94\xe2\x31\xd5\x59\x49\x98\x62\x93\x4e\x2b\x8f\x63\x92\x0f\x5e\x8a\xd8\x24\xcd\xea\xba\x37\x9b\x3a\xec\x01\xbc\x8d\xca\xca\x13\x5a\xa3\x06\x4f\x48\x9f\x15\x93\x97\x95\xdf\x88\x68\x77\x91\xe6\x49\x79\x1b\xba\xe4\x7d\xb8\x83\x73\xa1\x66\xc6\x3d\x05\x10\xd0\xae\x3a\x1f\x13\xe5\xb9\x60\xfa\x55\xca\xa5\x65\xab\x77\x4d\x9f\x0a\x6c\x3e\xdd\xf9\xf1\xda\xde\x8f\xdc\x38\x94\x61\x6f\xef\x7b\xc3\x29\x59\xd9\xca\x13\xc1\xb5\xa3\x5a\x9f\xb6\x41\x04\x41\x89\xb5\x25\xa0\x6c\x81\x1a\x3d\xa5\x64\xa8\x94\x7e\x81\x37\x34\x58\x4a\xba\x52\x41\x97\x8c\x64\x31\xd7\xf0\x22\x4a\xed\x30\xdf\x77\x74\xf2\x50\x0f\xd8\x37\x28\x9e\xa6\x71\xfc\xd5\xa4\x0c\x8d\x65\x01\x16\xae\x66\xa7\x1a\x29\x96\x84\xe9\xe3\xed\xc6\xf9\x95\x3d\x1a\x55\x79\xf4\x19\xa8\x3b\xc0\xa4\x47\x8d\x33\xce\x03\xe9\x7c\xbe\xee\x4d\xbf\x39\x76\x4f\x1a\x47\xa1\xba\xb6\x93\xb3\x0b\x1c\x85\xb2\xd4\x5a\x66\x24\x2a\x19\xce\x3f\xbf\x80\xb1\xe2\x3e\x03\xeb\xb1\x51\x84\x72\xed\x1f\xd1\xec\x2e\xcb\xd0\x35\x29\xaa\xc5\xf0\xb6\xda\x55\x7d\x25\x3b\x8c\x76\xbb\x55\xc5\x3d\x91\xbc\xa2\xd7\x9d\x8e\x5c\x1f\xa8\x45\xb9\xda\xc0\x09\x4e\x93\x7e\x71\x3d\x3c\x4f\x85\x28\xab\x7e\xca\x0d\xac\xb4\xe4\x42\xd0\x63\x95\xf7\x09\x22\xda\x0b\xc8\x7f\x59\x21\x7b\x83\x5d\xd2\x4e\x9f\x80\x87\x26\xc3\x33\x75\x4f\xab\x72\x1e\x02\x89\xdf\x93\x51\x91\x63\x24\x17\xd7\x91\x16\xbb\x9a\x9b\xb7\x30\x96\x90\x92\xed\x51\x36\xf2\x41\x50\x60\x8f\x20\x29\x71\xf0\xeb\xf1\xd7\xb0\x17\xaa\x5b\x15\x6e\x75\xc5\x93\x45\x23\x62\x8d\x90\xcc\x62\xcf\xec\xce\x83\x20\xc7\x9e\x99\xe5\x27\xc1\xe2\x19\xfd\x41\xb0\x13\xcc\xc8\x59\x84\x23\x16\xd4\x0f\x48\x7d\x16\x29\xfb\x4a\x6f\xe2\x4a\xd1\x66\x13\xa2\xb9\x3e\x27\x55\x47\xdf\x1b\x73\x6c\xda\xc5\x14\xf9\x24\x94\xad\x35\x08\x5a\xca\x39\x61\x88\xce\x95\x62\xbc\xc1\x49\x73\x30\x44\xe1\xbd\x13\x48\xd6\x01\xa7\xe3\x1b\xd4\x02\x96\x69\xe1\x70\xa9\x18\x67\x23\xc8\x1a\x04\xf8\x07\xeb\x84\xbf\x2d\x33\x12\xa1\x6d\x99\xa1\xbe\x48\x0e\x5a\xf5\x0d\xa7\x19\xfc\x7f\xf7\x34\xc3\x55\xaa\x8f\x1c\x90\xfc\x55\x8e\xc2\x55\x5d\x23\xf5\x1d\x30\x90\x0d\x23\x17\x63\x92\x63\xda\x6f\xfa\x54\x72\xac\xcd\x14\x12\xb5\x12\x30\x09\x5b\x29\xb4\x8a\x78\x5c\xcd\x00\xd1\xd0\x9e\x58\xfc\xa0\x4e\x2c\x86\x05\x09\x5b\x1d\x05\x1d\xe4\x1d\x8c\x98\x0e\x33\x67\x19\x3a\x27\xd8\x34\x16\xb0\x38\x9d\xba\x4c\x2f\x3c\x65\xbd\x30\x63\xdd\xf3\xe0\xc4\x59\xb7\x16\x43\x74\x74\x9d\x54\x47\x79\x21\x8e\xe4\x14\x92\x3d\x46\x93\x78\x3c\xdb\xd3\x66\x6f\x30\x25\x43\xd3\x94\xe5\x60\xb4\x19\x17\x8d\x92\x13\x66\x3d\x3a\xf7\xb4\xec\x8b\xb8\x6a\xc9\x4b\x1a\x81\x3f\x9a\x8b\xa6\x81\x0b\x12\x42\x79\x29\xe5\x4a\x79\xd5\xee\x70\xd1\xea\x4b\x39\x87\xb7\xd5\x0a\x17\x04\x50\xe5\x2e\x21\x22\x7a\x8a\x13\x90\xc4\x12\x96\x7a\xb0\x0f\x86\x0a\x29\xa7\x29\x75\xbe\xf9\xe3\x07\x88\x8a\x01\xcd\xed\x04\x1e\x63\xc9\x28\x5d\x6f\x94\x38\x06\x13\xab\xe7\x25\x2c\x27\xa1\x14\x1f\x9c\x17\x44\x2a\xc5\x29\x99\x87\xa1\xc7\x72\x0e\x3e\x79\x7c\xa2\x7e\xfc\x1b\x44\x1f\x29\xfa\x6a\x05\x09\xcd\x9a\xef\xb1\x5c\x64\xa0\x4e\x83\x32\xfa\x75\x1a\x3d\x36\xd3\x51\x3c\x0b\x71\xbf\x37\xb7\xb6\x95\x93\xb4\x5b\xd4\x35\xee\xfb\xf8\x08\xe3\x92\x61\xf1\xa5\x9f\x4c\xda\xe7\xc3\x17\x49\xc5\x65\x32\x1c\x08\x27\xd6\x2c\x5c\x9b\x4b\x75\xa9\x5f\x29\xc5\x4b\x96\x10\x9a\xb2\x41\x1e\x04\xf1\x8c\xe2\x82\xbd\x57\x26\x15\x9c\x90\x28\x16\xad\x1a\x8a\x78\x32\x23\xb3\x10\x17\xec\x5a\x05\xc0\x15\x34\x85\x00\xb9\xa9\x45\xa0\xbb\xc3\x29\x71\x14\xfa\x6e\xb4\xe6\xe5\x25\xc7\xf1\x8c\x16\xbe\xbc\x46\x88\x33\x64\xd1\x7a\x05\x60\xa7\x0e\x46\x5b\xa1\x89\x8a\xf6\x2d\x25\x04\xcf\xcb\xdf\x21\x45\x28\x2f\xb1\x92\x5d\xca\xc5\xa9\xf4\xdc\x52\x42\x97\x12\xbd\xba\x1b\x53\x79\x0f\x16\xca\x7a\x28\xb4\xa6\x27\x14\x7d\xa1\x6b\x15\x44\x20\x7a\xfb\xe6\xfd\x07\xb9\x04\x4d\xe0\x99\x71\x10\xf4\x68\x68\x8a\xba\x6e\x2b\x69\x94\xb9\x96\x56\xa0\x92\x76\x8c\x60\x4e\x76\xa9\x5b\xa2\x72\x67\x12\xeb\x0c\x97\x91\xdc\x4a\x17\xe9\xd5\x13\x1b\x58\x0d\x7b\xd3\x10\x02\x28\x2c\x55\xfc\x7c\x25\x62\x9b\x85\x9d\x07\x41\x53\x99\x94\x74\xc5\xe8\x46\x04\xc4\xb4\xae\x3d\xad\x3c\xb0\xd7\x82\xf2\x99\x8a\x13\xae\xd5\x1a\x56\xbf\xe6\x4e\xd1\xa9\x53\xfe\xd1\x96\xe6\xd0\xd7\x41\x36\xb4\x93\xd4\x1d\xa7\xf5\xa0\x22\xb6\x43\x3a\x36\x35\x04\x60\x7c\xca\x6d\x20\x46\x5f\x24\xd7\xb1\x0c\x17\x7d\xef\xde\x8d\x2e\x4b\xbe\xc1\x36\xda\x66\x43\xe9\x62\xc3\xef\x31\x26\x0c\x16\x8a\x59\xf6\xf4\x4e\x0b\xef\xe0\x5c\xf2\x06\x2e\x0f\x47\x00\xb2\xe7\x2c\x0e\x77\x59\x83\x1c\x02\xe2\xfb\x9d\xe4\xf8\x00\xdf\x07\x49\xb6\x3e\x9d\xcb\xd9\x95\x39\x80\x40\x0f\xb2\xde\x20\xfa\x23\x42\x2b\x66\xc0\xea\xb1\x0a\x8b\xab\x8b\x06\x85\x2b\x9d\xbb\x84\x0c\xc0\xfd\x28\x6e\xe0\x2c\x66\x75\x8d\x96\xe9\x8d\x8a\xe2\x96\x91\x20\xc0\xe9\x70\xee\x6f\xd0\x5b\x51\x80\x47\x65\x84\x13\x86\x4b\xb6\xb5\x8d\xc0\x84\x00\x3c\x7f\xc1\x4a\x80\xf3\x23\x61\x13\xe5\x37\x25\x75\x3d\xa6\x85\x9f\x34\x57\xb0\xcc\x2a\x36\x33\x16\xcc\xc2\x33\xe4\x8d\x18\xbd\x72\xb5\xeb\xe8\xc8\x62\x04\x01\x4c\xf1\x46\xfe\xaa\xbb\xe3\x4a\xfe\x1d\x26\x2e\x8b\xac\x1d\xf2\xc8\x0b\x7d\x7f\x5c\xc1\x8f\xdc\x5b\xd1\xb6\x92\x44\x37\xcd\x8f\x44\x24\x46\x70\x63\xea\xdd\x90\x70\x0b\xdd\xb3\x51\x20\x4f\x9e\xb6\xb2\x68\x8f\x25\x48\x38\x87\x02\x99\x38\xde\x1b\x54\x77\xbd\x3a\x38\x98\xbe\xaa\xd8\x91\x9d\x2c\x26\x62\x2b\xc4\xd1\x98\xba\x68\x10\xad\x70\x0b\x65\x54\x1e\xd2\x0a\x45\x52\x6e\x3f\x04\xb4\x48\x73\xd6\x72\x87\xf4\x1d\x20\xe9\x4e\x14\x9b\x10\x7a\x75\x98\x8f\x36\xc9\x25\xff\xa4\x5a\x45\x65\xdf\x85\xaa\x27\xf5\x93\x8f\xea\xc9\x9e\x84\xf0\xd2\x58\x65\x19\xef\x4d\x1c\x00\xba\xe9\x01\xe9\x97\x32\xa1\x56\xb0\x9a\xa8\xa0\xfe\xd7\xd1\x82\x35\x0b\x93\x1c\x9d\x9b\x8e\x6a\xe6\x96\xfe\x2a\x21\xf7\x7c\xab\x3b\x61\xd5\x98\x7e\x76\x55\x74\x3a\x81\x72\x99\x02\x8f\xdf\x82\x4e\xb1\xae\xf3\xd1\x42\x3f\xd4\x7b\xd7\x54\x45\xf6\x65\x2c\x07\x4e\xa1\xae\xd5\x75\x2b\x17\x44\x7b\xb0\x8b\xb5\x67\x5d\x2b\x1d\xb1\x17\xd2\x89\x07\x01\x57\x30\x2f\x1d\x14\x02\x5c\x00\x0d\xb0\x0d\x87\x05\xd6\x81\x53\xff\x50\x6c\x2c\x90\x3a\xa1\x85\x1a\xa4\x76\xa6\xd7\x7c\x29\x5c\x2e\x73\xec\xe2\xc6\xfb\xb8\x80\xbf\xb6\x8b\x15\x1a\xd6\x07\x49\xa7\x01\x7c\xc0\x8d\xff\xb1\xaa\xa1\x9d\x15\xa0\x42\x95\xbb\xdf\x9e\xfa\x5d\xf9\xa5\xee\x27\x4d\xf5\x7a\x63\x34\x64\x1f\x7d\x49\xaf\x36\xde\x31\x64\xba\xae\x13\xde\x8c\x1e\xbc\x73\xb0\x70\x21\xf2\xe6\x32\xa2\x16\x46\x4e\xa5\xeb\xd9\x7f\xc8\x17\xb1\x91\x47\xee\x06\xd3\x4e\x0c\xdd\xf2\x3e\xd4\x4e\xe7\x65\x2f\xe7\xf9\x15\xe6\x24\x4a\x19\x0f\xbf\x6b\x4f\x83\x54\x0a\x32\x6e\x95\xfa\x58\xc5\xf6\xc4\x3f\x4a\x63\x31\x0b\x79\x5c\xce\xa6\x69\x94\x5a\x3c\x3c\x9c\x47\xa9\xbf\x5c\xc3\x82\xe6\x51\x11\xa6\xfe\xe2\x26\xf0\x1a\x2b\xf6\x2a\x6c\x71\x87\xa4\xf9\x51\x8c\x63\xa4\xb6\x6e\xd8\x3b\xfe\x02\xa3\x18\x60\x68\x37\xe9\x0d\xcf\xde\x1a\xe8\x5e\x3f\x7f\xde\x00\x2c\x36\xc0\xea\x82\x50\x03\x80\x9f\x93\x08\x66\xbf\xdb\x60\x62\x31\x03\x80\xd8\x30\x57\x70\x24\x76\x40\x35\x2a\xb9\x05\x51\x86\x99\x1e\x6a\xe4\x97\x9e\x48\xc7\xea\x2d\x8b\x28\x0b\xbc\x3e\x1a\x72\xa3\xc7\x09\x05\x45\x28\x44\xc5\x56\x40\xb2\x5f\x00\x98\x49\xc0\x30\x97\xde\x30\x3b\x0d\x34\x6b\x77\x9f\xe4\xdb\xbd\x90\xd2\x8e\xd5\x2f\xe4\x56\x9d\xd7\x35\x86\x33\xff\xa2\xae\x07\x4a\x98\x32\x40\x74\xa1\xc1\x10\xb6\x2c\x6a\x67\x0a\x49\xe2\x69\xa7\x90\xd9\x79\x24\x7f\x0a\x36\x2e\x6e\xd3\x56\x1f\x42\x22\x11\xdb\x4f\x9d\x85\xc2\x92\xae\x36\x0d\x8b\xd1\x1c\xc8\x28\x64\xfb\x0e\xd8\x1c\x33\x1b\x23\x9c\xb2\x4e\x7e\x6a\x81\xdd\x04\x90\x46\x10\x58\x8b\x2c\x93\xef\xd3\xb4\x71\x67\x32\x18\x78\x65\x95\xa1\x79\xe7\x2a\x27\xc6\xbb\x45\x76\x50\xa4\x96\xbd\xfc\xe6\x8a\x58\x90\x48\xe8\x02\x5a\x01\xd3\x49\x93\xa8\xd0\x2f\xd0\x44\xc5\x28\x76\x73\x04\x5d\x64\xdb\xf2\x08\xdc\x8b\x8f\xb4\xcf\xf1\x91\x71\x36\x3e\x2a\x79\x95\xde\xf1\x23\xd5\xd0\xa3\x79\x96\xce\x3f\x1f\x2d\x2e\x32\x75\xb1\x2e\xb6\x15\x5f\x14\xd7\xb9\xba\xda\x6e\xd4\xaf\x14\x50\xd4\x55\x71\xc5\x4b\x7d\xb5\x15\xea\x82\xe7\xc2\xa4\x65\x3c\xb9\xe2\x47\x4a\x25\x7b\xa4\x5c\x42\x8f\x94\x2b\xe9\xd1\x67\x7e\x0b\xe5\x7e\xe6\xb7\x9b\x92\x57\x95\xbc\xd8\x6e\x8e\xb4\x89\xfd\x9a\xe7\x5b\xe4\x99\x91\xfc\x35\xef\xeb\x9d\x96\x77\x02\x5e\x8e\x23\xc7\x10\x2b\xa5\x17\x35\xc0\xac\xe6\x60\x5e\x98\xa5\xee\xb1\x3d\x2b\xf9\x71\xf7\xf8\x96\xbb\xaf\x95\x4b\xd5\x7d\x30\x16\x75\xcd\xbb\xce\xea\x17\xa9\xaf\xfe\x6b\x1e\xf0\x9b\xf6\x71\xed\xea\x4e\x73\x38\x01\xec\xbc\xd2\x7a\x61\xb9\xb4\x6f\x90\x3d\x35\xf1\x23\xfe\x02\xa6\x42\xc9\x05\x1a\x6e\x62\x9b\x1f\x78\xcb\xbe\x03\xa0\x98\xed\x08\x57\x5e\xf5\xe8\xe1\x43\xa4\x3b\x53\x26\x08\x0a\x56\xdb\x0f\x11\xcd\x75\x17\x6c\xca\xe2\xa6\x1d\xc6\xdb\x3a\x54\x01\x97\xd3\xd1\x99\x29\x89\x9f\xc7\x62\xa6\x91\x1c\x72\xc9\x29\x7b\x40\x8f\x6c\xae\xd8\x56\x27\x05\x3e\x22\x52\xfe\xee\xee\xb7\xdc\x48\x6e\xda\x9d\xbc\x34\x1e\x0b\xed\x12\x20\x44\xdf\xe8\x72\x9b\x2e\x18\xf7\x7f\xea\xfa\x0e\x7e\x87\x43\x5a\x48\xbe\x78\x55\x64\x8b\x77\x3c\x59\xdc\x36\x23\xce\x40\x40\xde\x64\x71\xfb\x7b\x92\x8a\xe1\x30\xd4\x77\x80\x9d\x01\x26\x0d\xe0\x4d\xc9\x1a\xbe\x95\x46\x4b\xf2\xaf\xf7\x6f\x7e\x66\x9e\x63\xce\x9d\x75\xfa\x64\x2f\xe0\xdd\x97\xba\x22\x76\x09\xb7\x2a\x42\x07\xbb\xa2\x77\xa3\x79\xb2\xe6\xd9\xb3\xa4\xe2\xec\x27\x7a\xa7\x94\xd8\xd7\xf0\xfe\xb5\xf5\x65\x87\x57\x7e\xde\xae\x79\x99\xce\x7b\x40\x36\xd4\x5b\xee\xd8\x1a\xfb\x31\xc5\x9a\xc6\xce\x24\x08\x06\x69\xf5\x73\xf2\x33\xe6\x3e\xf8\x3b\x27\x64\xef\xb6\x65\x5c\xf6\x0c\xc2\xdd\xde\x8c\x02\x8d\x67\x84\x40\xfc\x15\x7e\xb3\x29\x4a\x51\xb1\x52\xb1\xfa\x3f\x09\x96\x8f\xfe\xf8\x65\xcb\xcb\x5b\xfa\x8b\xbc\x7e\xe0\xe0\x6a\xf2\xe2\x59\x91\x2f\xb3\x74\xde\x1f\x6f\x68\xf4\x40\x32\x46\x80\x5c\xf5\x80\xfd\x22\x08\x85\x23\x1e\x55\x96\x7d\xa2\x6f\x7f\x12\x84\xde\x41\xe0\x16\x97\x26\x5f\xbb\x93\xc9\x8d\xc0\xee\x7a\x15\xa0\x6d\xc5\x8f\x64\x27\xcc\x05\x52\x6a\x17\x96\x63\xc9\x6b\xb2\x7c\x94\x43\x94\x27\x86\x73\x3c\x19\x7f\x43\x68\x8e\x27\xf2\xcf\x57\xdf\x10\x42\x13\x78\x9c\xc2\x3e\x87\xff\xf9\x8d\x14\x3e\x65\x42\x45\x68\xc6\x72\xfc\xd5\x23\x29\xe3\xf6\x2e\x6c\x3e\xaa\xb6\x17\x95\x28\xf1\x98\x1a\x80\x72\x22\x3b\x7f\x4f\x37\xec\x40\x34\x2b\x63\xe6\x64\x0d\x4f\x0b\x26\x0c\xed\x8c\x10\x91\xc2\x45\xca\x2e\x31\x6c\xba\x08\xac\xfd\x64\xd2\x9c\x9d\x4a\x19\x3b\x63\x63\xba\x65\x73\x13\xee\x2a\x7b\xbc\x9d\x66\xc3\xa1\x9a\x1d\x1b\x36\x98\xd0\x25\x9b\xc7\xd9\x6c\x54\xca\x8d\x54\xae\xd6\xa5\xe1\xc7\x48\xc9\x76\x90\x1a\x2e\x29\x38\x28\x54\xe1\x6e\x4f\xb7\x65\x1a\x8a\xbd\x93\x3f\x64\x39\x0b\x76\x89\x97\xa3\x4d\x22\x56\x84\x5e\xb0\xdd\x9e\xae\x1d\x1e\xaa\x51\x7e\xd1\x85\x35\xbc\xbf\x62\xe3\xe9\xd5\xe3\xf5\xf4\xca\xb4\xe3\x29\x5b\xc4\x57\x33\x7a\xcd\xd2\xf8\x0a\x5c\x60\x95\xd1\xe2\x53\xb2\xbb\x00\xbb\x6a\x96\x6a\x35\xd5\x95\x72\x7c\x5e\xf0\xb6\x63\xbc\x89\xeb\x7c\x82\x3c\xab\x41\x3b\x67\xaf\xc9\x6e\xc3\x06\x63\xfd\x44\xd6\x78\xc7\x56\x4a\x93\xf7\x14\x34\xeb\x77\x41\x30\xa8\xc8\xee\x58\xd2\xc2\x5b\xcb\x5b\xdc\xc5\x93\x19\xa9\xeb\x04\x13\x3c\x98\xe8\x88\x12\xac\x5b\x37\xbe\x26\xd3\x8b\x58\x66\x9e\xb1\xf3\xbd\xb1\xb1\x7c\x3a\x68\xd7\x0b\x86\x8c\x1b\xb2\xcb\x3b\xdd\x7a\x01\xbd\x8a\x4e\xd0\x30\xb5\xfa\xb8\x2b\xef\x93\xf6\xa6\x84\xbd\x8b\x31\x56\xaa\x43\xc9\x3d\x5d\xb2\x4e\x50\xb0\xad\x24\xdb\x27\xc8\x05\x03\x9b\x9a\x20\xe9\x6e\xd6\x00\x26\xcb\x58\x61\xb1\x00\x34\x67\x7b\x4a\x25\xec\x52\x4e\xff\x8a\x5d\xe2\x14\x3a\x09\xa6\x56\xe2\x1d\x36\x5c\xe1\x94\x16\x2a\xe8\xe9\x16\xf4\xd9\x14\x8d\x4c\x44\xf6\x39\xab\x0c\x21\x4e\xfc\xc1\xb1\xaf\xca\x5b\xc5\x13\x22\xf9\xe5\x64\x38\xa7\x85\x8a\x48\xa4\xfd\x85\xdd\xeb\x74\xc3\xe2\x19\x5d\xb2\x31\x5d\xb0\xcc\x46\xaa\x7b\xbc\x98\x2e\xcd\x04\x5a\xb1\x2c\x5e\xce\xa6\x68\x34\x02\x93\xc7\x68\xa3\x8e\x8d\x42\x34\x02\x53\xfe\x20\xd8\x28\x1d\xfc\xca\xda\xe4\x5d\xc9\xfa\x87\x1b\xd7\x32\x59\x3b\x5d\xf4\xae\x59\x99\xf3\x12\x58\x80\xa6\xd3\xbd\x91\x95\x56\x46\x29\x6c\xdd\xed\x23\x11\xcb\x5e\x9d\x85\x60\x16\xe5\xc6\x91\xae\xd8\xc9\x7f\x42\x3c\x1a\x92\x13\x7a\xd1\x47\xeb\x56\xc6\xc9\x5f\xae\xa1\xbe\xb6\xe8\xa9\xc3\x69\x35\x2f\x4a\x1e\x5a\xe1\x29\x1a\x87\x97\x98\xab\x35\x38\x2a\xf9\x62\x3b\xe7\xed\xf8\x00\x66\x32\x0c\xd9\xd7\x74\xd0\xad\x1b\x86\x97\xef\x25\x8b\x7d\x21\xff\xf0\x21\x7b\x14\xf6\xe5\x7b\xe8\x32\xf2\x21\xfb\x2a\xe4\xc7\xec\x9b\x90\x0f\xd9\x84\xf2\x3d\xa1\x63\x42\x61\xfd\x84\x62\xbf\xa7\xa7\x7d\xdf\xc8\xa1\x1f\xd7\x44\x05\x26\x3b\xd0\xc8\x11\x7c\xdf\x63\xa1\x7e\xa3\x49\xa8\x53\x9e\x98\x94\x63\x99\x04\x35\x1d\x0b\xf5\x0b\xe4\xfd\xb2\xbf\x46\x73\x88\x75\x82\xff\x73\x76\x32\xac\xcf\x4e\x86\x0f\xc8\xc9\x25\x45\x88\x98\x59\x0f\xc3\x73\x75\x80\x66\x0f\xb1\x88\x50\x84\x86\x10\x58\x64\x4f\x6f\x59\x8c\xb6\x65\x8a\x28\x92\xfd\x8d\x66\xf4\x29\x53\xc6\x8c\xa3\xa4\xaa\xd2\xcb\xbc\xae\xfd\x46\x38\xbc\xe8\xc9\x54\x3c\x6e\xb3\x5a\x80\x07\xa3\x27\x92\x7d\x16\x8b\x99\x85\x1c\x55\x38\x9c\x44\x57\xe0\x90\xd2\x57\x49\xf5\xe6\x3a\xd7\xe0\xc9\xb7\x06\x2e\x1b\x42\x4f\x81\xcc\x9b\x03\x60\x9e\x35\xcf\xa3\xd7\x7d\x3d\xf3\x14\x70\xc2\x5c\x8c\x1c\x6d\xe4\xcc\x47\xab\xb4\x12\x45\x69\x8c\x81\x3f\xf3\xdb\x76\x1a\xc4\x23\xf7\x13\x46\x9f\xf9\x2d\xc0\x30\xa6\x22\x4d\x32\x04\x26\x91\xbd\x71\x50\xe2\x19\x2d\xd9\x35\x06\xdf\xb1\xc1\x84\xa6\x3e\x3f\x61\x90\xbf\x76\x97\x5c\x1c\x99\x56\x39\x3e\xa3\x04\xab\xd8\x23\x51\x26\xb9\x92\x9b\xd3\xfc\xd2\x3d\x2d\xf6\xf4\xbc\xc8\x3f\xd8\x87\x46\xff\xee\x6b\x69\x54\x95\x98\xec\x69\x06\x51\x84\x1a\x80\xcd\xb9\x89\x32\x39\x55\x71\x10\x7c\x46\x47\xb5\x58\xe0\x9d\x69\x55\x58\xd2\x04\x9e\x86\xe8\xed\x9b\xb7\xf2\x7b\xdd\x01\x5b\x27\x6e\x12\xda\x14\x1b\xe8\x25\x44\x0b\xe2\x83\xcb\xf0\xde\xc0\x46\xcd\xec\x39\xcb\xbb\x21\x48\xbc\xd9\x2d\xe5\x6e\xd0\x02\xd1\x3c\xb9\x4a\x9b\xbc\xbe\x38\x24\xbb\x3f\x99\x78\x11\x53\xdd\xc4\x9b\xcc\x22\xff\x46\xee\xf8\x15\x4b\xf4\x34\x98\x33\xeb\x5f\x47\x33\x66\xdf\x9e\x07\xc1\x7c\x5a\x31\x98\x4b\x15\xdd\xc9\xc9\xe2\x02\x2d\x41\xac\x59\x30\xb0\x29\xea\x3a\x8b\xdc\xa4\xd1\x05\x81\xc9\x0e\xae\x8c\x94\xe3\x4d\x33\x39\x16\xad\xa7\xda\x02\x67\x23\xfb\xcd\x8c\x43\x9c\x45\x48\x97\x85\x42\xa4\x16\x20\x9a\x41\xa8\x50\x3b\xcb\xc6\x30\xa0\x5b\x96\xf3\xeb\xa3\xb7\xda\xf7\xb5\xaf\x2b\x53\x26\x09\xb6\x25\xe3\xa3\x65\x51\xbe\x68\x2a\xb6\xbd\x6e\xef\x9f\x0a\xbf\xbe\xff\x11\xa9\xb0\x97\xdb\xfd\x7e\x8f\x07\xb8\x17\x3c\xe6\x5a\x07\xe1\x1b\xa8\x0b\xab\x75\xe8\xa6\x34\x0f\x19\x49\xa4\x1e\x77\x4d\x25\xba\x42\x71\xef\xf8\x8e\xfd\xf1\x1d\xcf\xe4\xd6\xab\xd1\xab\xe2\x9d\x24\x66\x10\xc3\x85\xd3\x8a\x27\xe5\x7c\x15\x22\xb4\x9f\x41\x48\xa3\xfb\x97\x65\x0e\x30\x09\xed\x49\xdf\x12\x6c\x4d\x84\xf6\xfb\xf3\xe8\xc1\x87\xb0\xb7\x47\x3c\x17\x65\xca\x2b\xaf\x22\xb5\xfe\x81\xdc\x7b\x2a\x57\x95\x0a\x73\xd4\xa3\x15\x0a\xbb\xc1\x4c\x22\xbf\x26\x4f\xa5\x95\xfa\x2c\x51\x05\xec\x8d\x9c\xe6\x92\x25\x32\x33\x9c\x31\x36\x97\x5c\xca\x5c\x92\x6a\xaa\x69\x84\xeb\xac\xca\x74\x56\xb6\x27\xb4\xb4\x98\xa0\xd4\x9f\xdf\xff\x4f\x54\x0e\xfa\x90\xde\x6a\xa9\xfc\x54\xc6\xf7\x72\xbe\x11\x32\xbd\x1b\x19\x32\x30\xcd\x47\x0b\x2c\x28\x4a\x50\x23\xb2\x93\xee\xa0\x5f\x01\xd6\x56\xe5\xb8\xe8\xcd\xf1\xc9\xcb\x31\xef\xcd\xf1\xd9\x86\x5a\xfb\x7f\xff\x0e\xd8\x72\xfe\x33\x55\xea\xa8\x2e\xb6\x22\x4e\x84\x95\x00\x4a\xf2\x84\x8d\xeb\xfa\x8b\x6a\xe6\xaa\xe6\xdc\x84\xdb\x71\x64\xc4\xc5\x9b\xf9\xe0\xf0\x8d\x30\x3f\x4a\xf3\x4a\x24\xf9\x1c\x14\x22\x44\x9b\x13\x4a\x0a\xf5\xe1\x76\xc3\x5f\xa8\x78\x6e\xcf\x92\xdc\x58\xbb\x1c\x25\x47\x10\x6d\xfd\x28\xa9\x8e\x12\x6b\xce\xea\x47\xb3\xb9\x71\xa5\x73\xaf\xb8\x77\x7c\xc9\x4b\x9e\xcf\x4d\x99\x62\x95\x56\x47\xab\xa4\xca\xff\x97\x38\xba\xe0\x3c\x3f\xd2\x5b\x76\x5a\xf1\xc5\xd1\xf1\x51\xb5\xdd\xf0\x12\x93\x46\x0e\x63\x6d\x63\x62\xab\x8b\x46\x10\x35\xa7\xd4\x41\xb6\x59\x5e\x72\xc4\x43\xe1\x1a\xf9\xb3\x6d\x64\x6f\x66\x8b\xc5\x22\xfa\x3b\xe4\xbd\x6c\xdd\x11\xbf\x01\x9d\xa2\x2c\x6f\xbd\xad\xc4\x11\x4f\xc5\x8a\x97\x47\x17\x1c\xe2\x34\x1c\x15\xa5\xd7\x43\x14\xec\x85\xd0\xd0\xd4\x40\xa6\xdc\x8d\xa4\x99\xb5\x8a\xc8\x62\x85\x6b\x62\x1e\xd2\xdd\xbc\xc8\x2b\x51\x6e\xe7\xa2\x28\xc3\x9d\x0e\x7f\x45\x79\xbe\x5d\xf3\x32\xb9\xc8\x78\x38\x98\xd0\xeb\x52\x61\x7f\xe8\x30\x2a\xcb\xf4\x72\xab\x9f\x41\xbc\x70\x11\x04\x58\xd7\x51\x71\xf1\xd6\x14\xfd\x66\x19\xf5\xa6\x2a\xcc\x2e\x3e\x3a\x3f\x87\x56\x9c\x9f\x33\x41\x40\x60\x7d\xdd\xcb\x4a\xcd\x31\xc1\xc2\xdb\xaf\x9e\x15\x79\x25\x1b\x67\x10\xa8\x41\xc7\xc4\x87\xc8\x3e\x40\x34\x1f\xbd\x2d\x8b\xab\x74\xd1\x93\xc9\x3c\x40\x34\xdf\xd3\x17\xec\x35\x46\xaf\x35\xa9\x47\x84\xbe\xef\x05\x70\x05\xab\x95\x92\xe7\x36\x24\xd4\xa8\x1d\x97\xe1\x85\xad\x5b\x6d\xe2\xbd\x5b\x69\x04\xe0\xca\xdd\x97\xff\xb4\x1b\xbf\xe4\xed\xff\x6c\x34\xc1\xce\x28\x81\xad\xbe\x71\xfa\xc1\x78\x87\xd8\x35\x5d\x74\x76\x46\x9a\x32\x13\x35\x9f\x26\x6c\x3c\x4d\x1e\x17\xd3\x64\x38\x24\x69\x9c\xcc\x3c\x02\x94\xd8\x03\xe9\x9c\x95\xec\x46\x1f\x5e\xc3\x5a\xd7\xca\x2e\x4e\x75\xa0\x6c\x2d\xa9\xa6\x84\xc8\x1d\x00\xf6\x21\xb6\x33\x31\x75\xd4\x61\xb6\xba\xc1\x84\x96\x7c\x59\x85\xbb\x6d\xae\xd9\x4f\x90\xe1\xf7\xf4\x06\x97\x34\xb7\xb4\xea\x67\x30\xec\xa0\x3e\xc5\x71\x65\x74\x8d\xc0\x94\xbf\x48\x59\x6c\x2a\xc3\x3b\x4d\x6d\xf4\x36\xcd\x0f\x72\xbb\x27\x50\xcb\xb4\x38\x16\x6a\xbf\x6f\xd4\x35\x37\x9a\x8d\xe7\xe9\xe2\x99\x64\xb8\xba\x1a\x86\xc1\x4b\xcc\x0d\xc9\xe2\x53\x3c\xa6\xdd\x36\xd8\x1a\x09\x18\x04\xa6\x74\xa7\x77\x44\x08\x02\x7b\xb8\xc6\x5f\x37\x8b\xc4\x47\x7a\x56\x90\xdc\x26\x36\x8f\x6d\xb3\xc6\xc3\xd5\xb2\x47\xfb\xa9\x86\xb3\x68\x36\xa8\x57\x38\xc0\xf7\x34\xe5\xb4\xd8\xf6\x19\xdd\xa9\x29\xe6\x57\x2f\x07\x95\xe6\x7d\x03\x21\x46\x66\xa8\x59\x3e\x52\x17\x8d\x93\x61\xcd\x8d\x1a\x57\x48\x4c\x46\x62\xd5\xca\x52\x2a\x27\x87\xa7\x60\xd3\x93\x16\xf9\xcb\x32\x59\x37\x21\xd5\xf9\x68\x9b\xaf\x65\x5b\xf9\x02\x4c\x93\xb9\x50\x7c\x73\x77\xc3\xb6\xb3\x92\x37\x66\xa5\x3e\x4f\xd2\xff\xeb\xef\x8f\xdf\xd3\x2c\xfb\x55\x55\x73\x60\x0a\xba\xbe\x98\xc2\xbd\x6d\x14\xd8\xe6\xda\x8e\x68\xf7\x78\xc9\xf3\x05\x2f\xef\x2d\x53\xb7\xda\x74\xba\xea\xe2\x2f\xa1\x3d\x86\xa4\x51\x43\xbd\xf7\xd4\x6d\x3b\xde\x79\x84\x22\x40\xc2\x18\xfa\x53\xb1\xc7\xb2\x38\xa7\x5f\x9c\xfe\x69\x34\x2d\x72\xd7\xaf\xd8\xce\x30\xaa\x77\xca\xbd\xe8\x99\x24\x97\xdf\x27\x15\x47\x74\x77\x91\x54\x5c\x2b\xf4\xa8\xbc\x96\x3c\x9b\xbc\xd9\x13\xfa\xb9\x4f\x08\xef\x36\xfc\xd9\x41\xa2\x29\xee\x79\xeb\x7d\x3b\x73\x7e\x4f\xe6\xdf\xe9\x39\x04\xc2\xa2\x39\xe5\x6e\xe4\x7f\x3f\x4c\x62\x75\x49\x96\xc2\x52\x4b\x12\x7b\xc1\x83\xef\x23\x66\xf7\x8e\x38\x0c\x2e\x95\x9b\x8b\xd5\x4a\xe4\xcc\xa3\x5f\x25\xe3\x23\xd3\xab\x00\x7b\xb1\x29\xd3\x75\x52\xde\xd2\xc4\xdb\x8f\x68\xc5\xb0\xca\x26\x29\x8f\x37\x8b\x09\x9d\x3b\xce\xba\x8a\xd0\x22\xbd\x42\x61\x45\x33\x26\x79\xc2\x18\x99\x2a\x11\x45\xa6\x42\x44\x91\xa9\x0e\x51\xa4\x2b\x03\xdc\x06\x55\x95\x7e\xae\xf4\x41\xb6\x1e\x34\x23\x74\xcb\x60\x0e\xe9\x7c\xa0\xf5\x4a\xe8\x4f\xb8\x24\x84\x2e\x98\x18\x19\x56\x9e\xae\xd8\x06\x6f\xe9\x42\x05\x04\x51\x7d\x71\xc1\x56\x2a\x28\x50\x05\x81\xc9\xe4\x47\x9c\xb2\x95\x52\xd2\xd3\x4b\x73\x65\x30\x2f\xd9\xa9\x55\x03\x96\xe1\x29\x14\xec\x34\x5e\x67\x0f\x1f\x9c\x00\xd4\x94\x2c\xf7\x8a\xc1\xa8\x5f\xd0\x9d\x9c\xa0\x6b\xb7\x19\x88\x1e\xdd\x41\x23\xcc\x16\x96\xbc\xc9\x9a\xe8\x28\xdd\xb7\xf0\x69\xe0\x7d\x6a\x26\xd4\x25\xbd\xa2\x97\xad\xa5\x19\x75\xe7\xdd\x67\xba\xd3\x7d\x18\xa6\xfb\xce\x0b\xe6\x50\x9c\xd0\xa7\x2c\x8d\xbe\x0f\xe7\xf4\x9a\xa5\xd1\x39\xee\x36\xd7\xf6\x74\x38\xdf\xd3\x8c\x84\xd9\x61\x32\xf0\xac\x43\x06\xec\x12\x5d\xbb\x05\x5a\xee\xf7\xb4\xfb\xee\x53\x7a\x4d\x6f\xdd\x64\x56\x2a\x77\x4d\x1d\xde\x6e\x4b\xee\x51\x88\xdf\x5b\x14\xc2\x7c\xe6\x60\xac\x48\xc4\x73\x49\x22\x5e\x16\xf3\x6d\x85\x08\xfd\xbe\x97\x9d\x92\xe3\x9c\xfb\x33\xbf\x64\xde\xdc\xa5\xa9\x9e\xa5\x6a\xae\x79\x73\xd5\x9f\x76\x87\xfb\xe1\xf9\x17\xb0\x62\xdd\xb7\x3e\x2a\x42\x91\x4a\x6e\xd8\x74\x79\x49\xf5\xa6\x04\x9f\x13\x72\x75\x2a\xe4\x86\x27\x37\xf4\xe4\xad\x24\xfd\xef\xd8\x98\x7e\xfc\xff\x14\xef\xb6\xa7\xe5\xc8\xff\xc2\x26\xd5\xd6\x9b\x52\xb5\x2a\xb6\xd9\x02\x9e\xcb\x5d\x17\x0c\x2e\xe4\xde\x76\x80\x97\xbb\xe4\xe2\x39\x2f\xd3\x2b\xbe\x80\xcd\xf9\x65\x59\xac\xd5\x44\xe9\x30\x57\x3a\x8a\x9e\x9c\x0d\x36\xb4\x0e\xde\x79\xd5\xc9\x29\x45\x39\xb1\xa7\x3a\xdb\x32\x1d\xe8\x17\x68\xc9\x1c\x17\x64\x49\x0c\xb8\x6b\x74\x52\x83\xa0\x27\x11\x0c\xb4\xb6\xa5\xb5\xb9\x69\xd5\x9c\xd7\x75\xb9\x87\xa0\x8e\x5f\xcc\x34\xbd\x1b\x0e\x15\x7b\x68\x7b\xe8\xef\xf0\x17\x92\x4e\x1f\x1f\xbf\x0b\x02\x2c\xe7\xd2\xdf\xe5\x1b\x79\x87\x5f\x54\xf4\xa6\xc5\x27\x76\x06\x54\xa7\xf7\xb6\x78\xd9\x9c\x11\x3d\x5c\xb8\x3f\x75\xa6\x3c\xe2\x2e\xd2\x33\x09\xdf\x46\x6f\xd9\x60\x12\xda\x14\xe0\x6d\x92\x34\xaf\xb0\xd5\xf8\xa9\xe0\x12\x46\xe3\xa7\xec\x1a\x54\xde\xde\xf6\xdc\xb7\x9b\x36\x38\x26\x9a\x33\x2c\xdc\x16\x29\x94\x99\x11\xa1\xa5\x4c\xf6\xdb\x4c\xc5\xa8\x2c\xe4\x93\xd4\xed\x95\x65\x84\x14\x52\x53\x58\x02\xfa\xaf\xa3\x4a\x95\xcb\x94\xe8\x0d\x35\xa1\x73\x59\xa6\x9c\x8f\xc2\x0b\xc0\x8f\x05\x8d\xfd\x7d\x13\xea\x07\x90\x4e\x57\x37\x00\x70\x42\xaa\x23\x6a\xb4\x4d\xf1\x66\xe4\x1e\x32\x57\x49\x82\x05\x45\x87\xe7\x78\x57\x6c\x45\x96\xe6\x3c\x44\x79\x91\x73\xb4\xa7\x39\xa1\x16\xc4\x15\x1d\x4f\x10\x95\xb5\x85\xa9\x94\xcb\xc2\x3e\x4b\x78\xe8\x78\x26\xf6\x7b\x3a\x27\x3d\xfb\xc3\xf3\xce\xde\xa2\x31\x08\xdd\x17\xed\x69\x0f\xd3\x4a\x7a\x99\x4c\x1d\x12\x23\x1b\x6d\x8a\xec\x76\x99\x66\x19\xc1\x1f\xd5\x32\xff\xa3\x71\x4a\x42\x5f\xc1\xfe\xbb\x2c\xca\xeb\xa4\x5c\xbc\xe3\xcb\x69\xaf\x96\xf9\x55\x10\xe0\x57\xbd\x07\x62\x3a\xf2\xf6\xaf\xec\x55\x7f\x14\x71\xed\x23\xf4\x8e\x2f\x69\xa9\x37\x1d\x93\x70\xef\x16\x73\x98\x71\x05\x67\x57\xb3\xd9\x42\xe5\x29\xb3\x1c\xda\xe1\x02\x3b\x3c\x2d\x37\xca\x53\x6f\x97\xac\x7c\xfe\x70\xce\xca\x91\x28\x68\xc6\x34\x9d\xa6\x1b\x07\x70\x49\x17\xca\xa4\x1a\x08\x2f\x5d\xb9\x89\xbb\x88\xfe\x08\x17\xf4\x82\xbd\xc1\x25\x8d\x91\x28\x60\x72\x2a\xe6\xcf\x9c\x2d\x50\x64\x5e\x94\xbc\xdd\x9a\x2d\xf1\x9c\xa6\x84\x9e\xb2\xc4\xa7\x9d\x6b\x7a\xc9\xb6\xd8\x25\xd1\xf5\x3d\xbd\x85\x12\x24\xe7\xaa\x9c\x7a\x52\xf4\xa0\x28\x29\xd3\xe4\x78\xbe\x2d\x4b\x88\xd2\x73\x1a\x81\x15\x2e\xb2\x66\xe7\x17\x74\x85\x77\x69\xf5\x4c\x65\x08\x4f\x69\x5a\xbd\x4d\x4a\x91\x26\x59\x76\x6b\x12\x2f\xe9\x4a\x96\xe7\xf1\x4a\xc9\x9e\xd0\x9d\x4e\x2c\xf2\x67\x59\xea\x7b\x5a\x72\xb2\xbb\x18\xe9\xd4\x20\xb0\x97\x98\x13\xfa\x8b\x0e\x4c\xd2\xc1\xd3\xa1\x15\x5e\x9b\x93\xc2\xcc\xe8\xb9\xc3\x8d\x32\x44\x76\x72\xa4\xd3\xb7\xfe\x08\xae\xa9\x20\x12\x96\x29\xe3\xa0\xd0\x7a\xd9\x3b\x2f\x7d\x9d\xe8\x8f\x7b\xfa\xdb\xff\x15\x71\xe4\x0b\x45\x7e\x4f\x32\xb1\x93\x4d\xae\x14\x51\x48\x0a\xca\x47\xcb\xb2\x58\x53\x7b\xd4\x4c\x68\xe1\x11\xcf\xba\x2e\x15\x44\x1f\xcc\xc8\x84\x01\xb2\xf3\x87\x55\x59\x5c\x53\xb5\xba\x3c\x69\x03\x66\x9f\x2c\xac\x31\xf9\xcc\x74\xd4\xaf\x01\x09\xfc\x02\xe5\x81\xc0\x0b\x9c\xd3\x84\x38\xed\x4b\x41\xd5\xc8\xa5\xfb\xae\xb0\xff\x45\x82\x19\xf6\xbe\x5f\x7e\x3d\x91\xfb\x4a\xfb\xf3\xa9\xf9\x56\xfb\xa1\xc4\x52\x92\xff\xe2\x5b\x3d\x70\x3d\x7f\x46\x38\x15\xb1\x9c\x62\x7b\xbc\xc0\x82\x96\xda\xa1\xa6\x87\xbe\xd2\x4f\x5f\x26\x7e\x77\x88\xce\x7d\x52\xf7\x6f\x46\x90\xd6\x62\x34\xfd\xe1\xef\x9a\x20\xec\xe9\x4f\xf7\x46\xac\xd0\x2a\x37\xd1\xc0\x9c\x49\x97\x58\xe8\x3d\x45\xd2\x9a\xba\x36\x77\x5a\x08\x31\xc1\x78\x19\x63\x9f\xac\x0d\x13\x55\x69\x03\x48\x33\x2f\xc8\xee\xd7\x7a\xef\x4d\x35\x12\x45\x7f\xee\xbe\x5d\xa2\xa7\xd1\x17\x72\x1c\xa6\x5e\x78\x1f\x73\x72\x9d\x6b\x7b\x0f\xcf\x1c\x86\x31\xc0\x44\xb9\x27\xc7\x1e\xfb\x8d\xa4\xae\x8d\xc4\x6f\x64\xe3\xbb\x8d\x33\xbe\xde\x8c\xa9\x4e\xb6\x52\x58\xce\x5c\xbf\x44\x7e\xe9\xa1\xdf\x9d\xb4\x64\xca\x3e\x29\x8f\x78\xf8\x03\x00\xb2\x9c\xa0\xe1\x0f\x38\x37\x33\xb1\x53\x7e\xab\x19\x14\x64\x4a\xd1\x96\x87\x7f\xc0\xa5\x2c\xea\x21\x92\xe2\xe6\x9e\xfe\xd2\x17\x34\x87\x3b\x39\x52\xe3\x92\x29\xe7\x72\x3e\x52\xf0\x3c\x41\x30\xc0\x7c\xb4\xe6\x22\xf9\x89\xdf\x4a\xc9\x23\xc9\x84\xbe\x9a\x8b\x32\xd3\x97\x10\x48\xef\x27\x7e\x4b\xf6\x5d\x9b\xc7\xd6\xae\x6c\x2c\x35\xbd\x65\xdf\xb1\x8a\x14\x34\x77\xf4\xbc\xf4\xce\x5e\x35\xb9\x85\x05\xe3\xc8\xad\x3b\xef\x29\x0e\x91\x77\x90\xe3\xea\x1a\xc5\xea\x20\x49\xdd\xcf\x64\x9f\x77\x8e\xdb\x44\xa1\x02\xdf\xeb\x83\x36\xaf\xf4\xb4\x15\xa2\x7b\x00\xc0\xc8\xa6\x48\x55\xd0\xdf\x2d\x33\xf1\xca\x74\xbe\x6e\xee\x79\xe5\xd9\x42\x75\xf0\x79\xb9\xf7\x45\x3f\xc3\xc3\xbf\x5b\xfd\xfc\x50\x87\x3d\x4f\x84\x5f\xba\xbc\xfd\xbb\x65\x67\x6d\xa8\x22\x05\x68\xc1\xc6\xd3\xfc\x31\x37\xc7\xb1\xc3\x61\x4e\xf4\x39\xb6\xc0\x80\xea\x93\x3b\x76\xbb\x74\x85\x6d\x1b\x0a\xa2\x2f\x3c\x23\x15\x5e\x6b\x36\x2d\x3b\x57\x85\xab\xb1\x05\x48\x15\x38\xc3\x6d\xe3\x67\xc8\x47\xc8\x7c\x1d\x52\xcc\x89\xb9\x05\x87\x49\x75\x49\x28\x64\x84\x15\xfa\x66\xa9\xf3\xe9\x3b\x26\xcc\x15\xa1\xde\x98\x2e\x3b\xa6\xf4\x7f\x5a\x54\x14\x3a\x18\x93\xd1\x56\xcc\xb1\xd7\xf4\x45\x17\x59\x79\x74\xbe\x59\x42\x4d\xe7\x9b\x25\xdb\xf1\xf5\x46\xdc\x86\x83\x09\xdd\xe6\xdb\x8a\x2f\x3e\x14\x9f\x79\x5e\x85\xf1\x4c\xdf\xbf\xca\x37\x5b\x21\x6f\x8b\x2b\x5e\x2e\xb3\xe2\x3a\x3c\x7e\x44\x21\xfc\xc7\x6b\xbe\x14\x6f\xae\x78\x19\x8e\x61\x13\x52\x19\x07\x13\x9a\x2a\x64\xaf\xd3\x22\x17\x2b\x85\x7e\xa9\x53\x5e\x16\xe5\x3a\x81\x2c\xdb\x8a\x97\x1a\x00\x4c\x81\xed\x4d\x68\x5a\x15\xf2\x07\xac\xb9\x17\x72\xc6\x48\x7e\x11\xda\xb1\xe6\x65\xba\x48\xf9\x5a\x95\x55\x2e\xe7\x8f\xfe\xf9\xe8\x11\x1c\x68\x72\xfe\x79\x91\xdc\x9e\xa6\x15\x04\x62\x0f\x07\x93\x3d\xa1\xf0\x55\xee\xf3\x57\xda\x45\xd4\x7e\x7a\x5a\xfd\x26\xab\x35\x9a\x2c\xd9\x3d\xb4\x64\xb9\x0e\x7c\x36\x6a\xd5\x7f\x10\xa0\x7a\x00\xf6\x37\xb4\x60\xc6\x0e\x7d\x74\xbe\x90\xfc\xfa\x87\x74\xcd\x31\x21\x72\x97\x32\x1d\xf6\x78\x0c\x28\x69\xd0\xcf\x70\xe5\x77\x90\x9f\xf0\xbb\xfa\x1e\x48\x6a\x7d\x1b\xa4\xd9\x5e\xf6\x5f\x52\x9d\x0a\x29\xad\x5e\x0d\x02\x3c\x10\x23\xd3\x7b\x72\x17\x35\xd7\x41\x50\x12\x15\x2a\xe6\x5c\x51\x4e\x15\x3c\x51\x11\x6f\x29\x77\x7b\xa3\x6b\x12\xfd\xd9\x61\x9d\xaa\x2c\xd1\x11\xa3\x8b\xf4\xf2\xc7\x62\x5b\x1a\xff\x5f\xbd\xc8\xd2\xea\x65\x59\xdc\xf1\x3c\x08\x5a\x09\x9e\x0b\x45\x31\x75\xc3\xc2\x0a\x6b\x05\x61\xd3\xdc\x60\x5e\x38\x0d\xe4\x12\xff\x9c\xfc\xdc\xc2\xa6\xe6\xd1\x46\xf2\x55\x84\x72\x12\xca\xdf\x76\x87\xb0\xc1\x98\x8a\x7d\xae\x5d\x1f\xdc\xfa\xaf\x8a\x35\x8f\xfa\x12\xc3\x7e\xd3\x10\x2d\xfb\xba\x98\x7d\xda\x8e\xe9\xc9\x93\x31\x20\xc6\x97\x8f\x73\x03\x44\x0d\x76\x1a\x10\x9d\xc9\x0b\x08\x18\x97\x33\x0a\xf8\x7f\x7a\x1b\xf5\x80\xe0\x61\x07\x5b\xb3\x72\xb4\x2e\xe4\xf6\xa4\x69\x52\xca\x2b\xa0\x80\xa6\x1f\x4e\x7b\x5c\x57\x12\x2c\x64\x8f\x3d\x3d\x85\x17\x55\x13\x95\x7b\x43\x3b\x95\xf5\x64\xa4\xea\x75\xf3\x02\x64\xd1\x89\x4b\x9d\x28\x09\xd2\xf9\x52\x27\x66\x3a\x31\x63\x70\xa3\x12\xd5\x5c\xd2\x4f\xd4\x0d\x73\xc9\x2a\x8f\xb8\x5b\xeb\x0c\xe2\x6e\xcd\x74\x82\xae\xbd\xfa\xf5\xc3\x33\xdb\xe4\x5f\x3f\x3c\x63\x36\x51\x65\x50\x0e\x6a\x3a\x87\x76\xf0\x77\xc9\x2a\xcf\xc6\x34\x77\xb3\x64\x72\x0e\x98\xf6\x16\xf3\x24\xe3\xa6\xd1\x70\xc3\x5c\x32\x5d\x5b\x53\x34\xe2\xb6\x19\x93\x38\xcd\x87\x43\x92\xe0\x82\x89\xb8\x64\xeb\x38\x9f\xcd\xa0\x1c\xf0\xd6\x74\x88\x6c\x20\x2a\x5e\xb2\xc1\xc4\x0d\xd3\x95\x9c\x36\xa7\x5a\xd8\xd3\x18\xfc\xe7\x0b\x30\xed\x93\x04\x06\xeb\x59\x3b\x3a\x5f\x44\x4d\xf2\x11\xca\xb9\xad\xf2\xeb\x35\x80\x2d\x28\xbd\x5f\x80\xcc\xa6\x63\xf7\x5f\x06\x01\xbe\x94\x13\xbc\x1c\x6d\x41\xbd\xe8\x39\xb2\x13\x7a\x09\xc1\xb9\x6c\xc3\x6e\x0f\x6d\xdc\x57\xea\x58\x11\x78\x13\xdb\xba\xd6\x5c\x71\xc5\x3c\xf5\x8b\x79\x3c\x8e\xc0\x93\x62\xce\xd3\x0c\x80\xfc\xc6\x21\xdc\x2f\xb3\xa2\x28\x1b\x5b\xfb\xb5\x5b\xc5\x43\x29\x97\x9a\xe9\xaf\x20\xaa\x82\x20\xad\x5e\xa6\x79\x2a\xb8\x8a\x47\x90\xb3\xa7\x30\x8c\x9e\x6d\xd2\x5d\x2b\x84\x83\x76\xe1\x48\x73\x6c\x38\x03\xe7\xb0\x42\x53\xf5\x34\xb9\xa8\xec\xd3\x63\xf7\x34\x61\x63\x8d\x24\x2f\x97\x6d\x01\xcb\x16\xe7\x41\x20\x47\x17\x00\xb3\xca\x59\x5d\x0f\xf2\x20\xb8\x86\x01\x27\x0a\x88\x51\x5e\x91\x20\x48\x5c\x68\xa7\x64\x98\xba\xf6\x9d\xcb\x0f\x84\x51\x29\x47\xd5\x76\x03\x06\x40\xcf\xf9\xa6\xe4\x4a\xcd\xf1\x7b\x52\xe6\x69\x7e\x59\x05\x81\xa7\x0a\x73\x86\x45\xf3\x22\xaf\x8a\x8c\x07\x81\xbe\x18\x5d\x27\x65\xde\xbc\xc3\xc8\x2b\xee\xe8\x5a\x95\xa7\x50\x34\xf7\xfd\xa6\x63\x96\xc6\x1c\x35\xdd\xbd\xf5\xce\x38\x60\xe5\x68\xe1\x8a\xd4\xa0\xb3\x41\xd0\x97\xaa\x18\x68\x4e\xfc\x58\xf0\x05\x4d\x59\x3c\xd3\xe7\x1c\x1d\xab\xb9\x64\x38\x84\x9a\x0a\x86\x50\x0f\x40\xb7\x7f\x18\xe2\x8a\xac\x24\xe5\x2c\x86\x0c\x9d\xe5\x31\x1a\x26\x43\x34\x3b\x42\xd4\x37\x08\x25\xc5\x90\x55\x43\x24\x3f\xdb\x4f\x8e\xab\xd9\x10\xd1\x23\x34\x2d\x58\x61\x5d\x54\x8e\x1f\x11\xe5\xee\x52\x34\x8f\x5e\x52\x13\xf0\x68\x7f\x8e\xf9\x10\x9d\xe5\x4f\xcd\x53\x59\x6c\x67\x4b\x90\xa5\x29\x42\x9e\x1a\xd1\x0f\x11\xf9\x1a\x1a\x02\xa4\x2a\x58\x7e\x91\x51\x25\x92\xf9\x67\xb9\x33\x0c\x26\xfb\x96\xf0\xd1\xd2\xf5\xec\xe1\x94\x52\x7e\xee\x07\x7a\x03\xf6\x7d\x2d\xe3\xb3\xbf\x3d\x38\xe0\xbb\x7d\x13\xf3\x59\x5d\xe3\x73\xac\xaf\xe1\x38\xc2\x16\xfd\xfa\xd0\xea\x37\xce\x7d\x1e\xeb\x6e\x92\xfe\x2e\xfb\xfe\xa2\xc9\xbe\x03\x92\x15\x27\x3e\x28\x9d\x65\x9e\x53\x60\x9f\x21\xd2\x14\xb0\xd0\x11\x2e\x25\x3b\xbd\xdb\xd3\x0d\x5c\x01\x5c\x27\x31\x37\x90\x45\x81\xaa\x0f\x80\xe5\x8e\x4a\xc3\x7c\x87\x1a\xd3\xa4\x04\x46\xdc\x03\xfd\xdc\x82\x4f\x6e\x10\x0c\x4c\x9d\xb6\x4a\x55\x15\xb4\x0e\xde\xea\x13\x1e\xde\xcb\xee\xb2\x54\x51\x83\x7d\x82\xe3\xcb\xbd\xab\x5b\x01\x41\x74\x47\x48\xc5\xba\xfb\x60\x3a\xf3\x33\xbf\xad\x22\xef\xba\x1b\xc9\x97\xe6\x46\xfa\x11\xee\x73\x24\x69\x74\x3e\x00\xd6\x7c\x53\x81\x54\x36\x26\xd2\xb3\xa6\xb2\xbc\x01\x08\x30\xfd\x53\x7e\xfe\x9f\x71\x3e\x44\x15\x92\x17\x60\x9c\x6b\x5f\xfd\xec\x89\x8f\xdd\x60\x72\xd1\x9f\x30\xcb\xfe\xec\xc0\x56\x19\x25\xb0\x2d\xe7\x77\xef\x5b\x68\xc9\x7c\x70\x42\x37\x38\x58\xb0\xcf\x38\x27\x6a\x50\x64\x3b\x1a\x70\x84\x7b\x75\x2c\xed\x7f\xd8\xf7\xea\xc3\x9e\x03\x40\x96\xab\xec\x6d\x13\xf1\x1b\xa1\xa1\xa3\xff\x92\x5f\x17\xc7\x06\xd0\xd6\xb8\x99\xf2\x27\x6c\x1c\xe5\x11\x1a\xa2\x10\xa1\x10\x1d\x23\xa2\x5e\xd9\x14\xd7\x78\x32\x76\x6e\xf5\x63\x5a\x40\xec\x0f\x0d\x91\x4c\x8c\x7b\xe4\x84\x0c\x55\xfb\xde\xb1\x13\x7c\x16\xc7\xff\x39\x8b\x67\x0f\xcf\x66\xa4\xc6\x67\x67\x24\xc2\xf1\x8f\xab\xd9\x7a\x8d\xab\x8a\x44\xf5\x69\x51\x9f\x9e\x46\xf2\x5f\xfd\xbc\xa8\x9f\x3f\x87\x3f\x91\xfc\x57\x2f\x16\x8b\x68\x11\xd5\x8b\x22\xaa\xaf\xe3\xa2\xbe\x9e\x45\xf5\xef\x71\x51\xff\x3e\x8b\xea\x5f\x8a\xa8\xfe\x04\xff\xd5\xee\x6f\xfd\xe9\x53\x7d\x79\x89\x2f\x2f\x2f\x23\x12\xd5\x3f\xfc\x80\x7f\xf8\xe1\x07\x79\xc5\xeb\x17\x75\x52\x3f\xad\x57\xab\xa8\xfe\xf1\xc7\xa8\xfe\xfc\x39\xaa\xd7\xeb\xa8\xae\xaa\xa8\x7e\xbf\x9b\xd0\xef\xf6\xf5\x4d\xfd\xb1\xbe\xbb\x8b\xea\x7f\xff\x3b\xaa\x47\xe4\xe4\x92\x7e\xec\x6d\xf8\xeb\x0f\xef\xeb\xd7\x1f\xea\xd7\xaf\x23\xf9\xaf\xce\x76\x13\xfa\xf5\x5e\x66\xff\x83\xc1\xb9\x8e\x3f\x18\xbf\xb6\x81\x39\xcb\x69\x77\xca\x94\x20\x66\x74\x4d\xb3\x21\xee\x4c\x39\xc3\x92\x1c\xf2\x20\xc0\xaf\xe4\x90\x16\xca\x22\xf5\x55\x2c\xe2\xf1\xac\x2f\xdc\xde\x5b\x5c\xf4\x13\x55\x2a\xe2\x89\x24\x14\x8f\x66\xb2\xc0\x1c\x0a\xc9\xfb\x4a\x80\xb5\xac\x58\xc0\xe7\x89\x48\x30\x19\x15\xe5\x22\xcd\x93\xec\x60\xc9\x9c\xec\x7d\x4c\xce\x96\x23\x98\xe5\xd5\x22\x2c\xd8\x4b\x40\xbc\xf0\x4b\x27\xf4\x0f\x39\xb1\xe5\x9f\xa6\x6e\xd8\x2e\x0d\x5a\x30\xae\x41\xc5\xde\x29\x0a\xa6\x1c\x1e\x0a\x6b\x7f\xfe\x38\x07\x1b\xf4\x57\x71\x11\x8b\xd9\x2c\x92\x7f\x99\xbe\x09\xe1\x06\x97\x4c\xfe\x1a\x6c\xb2\x93\xb3\x38\x3e\xab\xce\xde\xcf\x4e\x48\x54\x3a\xc5\xee\x7f\xce\xe2\xfa\x6c\xf6\x40\x29\x75\x43\xef\xc1\xd9\x99\x4a\x9b\xf6\x68\x76\x15\xb7\x95\x32\x84\x3c\x96\x49\x4b\x3a\x43\xf6\x1a\x17\x92\x2d\x8a\xe4\x5f\x2d\xec\x48\x39\x4c\xde\x9a\xc2\xd2\xfd\x5e\xee\x48\xb2\x03\xa4\xf8\x17\x36\xbb\xc7\x08\xb4\xc0\xd9\x7a\xbd\xfc\xd2\x27\x60\xdf\xf8\xaa\x3d\x2f\xca\xd8\x28\x2b\xf2\x4b\xf9\xa6\x12\x87\x15\x92\x34\xf8\x68\x7e\x04\xb0\x0a\x38\x45\x95\x5c\xfd\x13\x36\x0e\x82\x8f\xc6\x77\x51\x05\xac\x31\x5f\xff\x91\x96\x84\x36\xf2\xd3\xfc\x98\x4d\x9a\x2c\xfe\x6f\xec\xe4\x6c\x71\x42\x3f\xc9\x1f\x79\xf1\x83\xbc\xd8\x7d\xb5\x3f\xa1\x3f\xc1\xd5\xd7\xfb\x13\xfa\x0b\x3b\x89\x87\xc7\xb3\xe8\x6c\xb1\xfb\x76\x7f\x42\x1f\xa8\xbc\xd1\x09\xfd\x97\xba\xd2\x77\xff\x76\x77\x3a\x85\x73\x28\x63\x42\x65\x79\xc2\xdc\xc8\x22\x73\xee\xca\x9c\x50\x59\x6a\x09\x8f\x87\x27\xb4\x70\x8f\x86\x27\x34\xe5\xec\xe4\xdf\xb5\xbc\x97\x65\x86\x11\xb4\xf2\x32\xa5\x49\x23\x1d\x47\xa1\x7a\x44\x22\xf9\xb0\x92\x45\x8c\x8f\xbf\x9b\xed\xc6\xf4\xd1\x37\xdf\xee\xe3\xff\x95\x1c\xdf\x9d\x6d\xc7\xe3\xa7\xe3\xe3\xb3\xed\xf8\x9b\x97\x2f\xcf\xb6\xe3\xff\x19\xcb\x9b\xe7\xff\x23\x6f\x5e\x7e\x07\x37\x2f\x9f\x3f\x93\x37\xcf\x5f\xc2\xcd\xcb\xf1\xff\xc8\xbf\x13\x75\xf3\xe2\xe5\x6c\x37\x81\xd2\xea\xf8\x6c\x3b\xfe\x16\x5e\x18\x7f\xfb\xf2\xe5\xd9\x89\x79\x80\xcf\xaa\x87\x51\xf3\xa1\x79\x44\xe4\xef\xfe\x24\xa5\x73\xde\x20\x34\x19\x37\xf4\x7d\xce\x25\x99\x78\x0d\x50\xe5\xbe\x25\x98\x53\x8c\x49\x21\x26\xca\x43\xe1\x21\x08\x6f\x79\x63\xcd\x6e\xf1\x9c\x53\x4e\x22\x28\xcb\x89\xb0\xd4\x89\x86\xa1\xf2\x4b\xb8\x7c\x71\xb3\xc1\x10\x28\xdc\x4c\x16\x74\x76\x86\xa8\x8f\x3b\x78\x72\x76\x86\xcf\x62\x52\xcb\x9f\x19\xa9\xcf\x62\x1c\xff\xe7\x6c\x26\x49\x2a\x39\x9b\xc9\x54\x20\xb5\xcd\xb0\xae\x4d\x18\x0b\x51\xd7\xca\x5d\xba\xd8\x13\x42\x7c\xf5\x23\xef\x3f\x9f\x89\x8f\xcf\x4e\xce\xce\xfe\xf3\xe0\xe1\x30\x1a\x61\x52\xc7\x67\xb3\xdd\x7e\x26\x17\xf0\xd9\xd9\x83\x00\x29\xc6\x72\xd9\xec\xbf\x05\x6f\x72\x66\x02\xd6\x72\xcf\xf6\x0e\x61\xb6\x62\x3e\x23\xb4\x52\x82\x58\xd9\x0a\x71\x02\x5e\x3e\xd7\x80\x42\x40\x5b\x7a\x59\x29\x30\x2f\x79\x2c\xb7\xf0\x19\xf3\x58\xa9\x95\xae\x1c\x1a\xd1\x88\x42\xa4\xfb\x61\x74\x7e\xcd\xe4\x1f\xc0\x1d\x15\x72\x30\x47\xe7\xd7\xf0\x6c\xef\xf7\xc7\x85\x9d\x04\x9a\x0f\x0c\x82\x2d\x5e\xca\x91\x0c\x82\xa5\x1a\x4a\x9a\x8f\xce\x13\xb0\x18\x85\x5e\x58\x73\x36\xa6\xa7\x9c\x4d\xe8\x25\x67\x8f\xe8\x15\x67\x5f\xd1\x5b\xce\xbe\xa6\x4f\x39\xfb\x86\x5e\x73\xf6\x2d\xbd\xe3\xec\x7f\xe8\x39\x67\xff\xf4\xbc\x6f\xfc\x7e\xff\x20\x6f\xa2\xaf\xbe\xfd\x36\xfc\xea\xdb\x6f\x3c\x47\x99\xc6\xd8\xfc\xe3\x6b\xc6\x24\x85\xe1\xff\x98\x8c\xa5\x38\x3b\xae\x6b\xfe\x8f\xaf\xc7\x63\x99\xba\xff\x15\xa3\x4f\x88\x8e\xe9\x98\x1e\xc0\x67\xbf\xe5\x49\xe9\xa0\xd0\xf9\x63\xf6\xdd\x77\xdf\x7d\x17\x21\x34\xe4\x21\x1a\xa2\x21\x68\x1c\x7f\xc5\x63\x1a\xa3\x4f\x9f\x10\x7d\x34\x6b\x95\xe4\x6f\x6b\xaa\x28\xd9\x0a\xff\x25\xf9\xda\xd7\xf2\x35\x24\x9f\x23\xff\xc1\x27\x44\xbf\x39\xf0\xe4\x13\xa2\xdf\xd2\xc1\xd8\x7f\xfa\x0c\xab\x2b\x8a\x6e\x11\xa1\xdf\x9b\xbb\x09\xa1\x19\x87\xaf\x2c\xb8\xbe\xfc\x84\xe8\x03\xfa\xc9\xdc\xc8\x5b\xc1\xe9\x4f\xee\xfe\x13\xa2\x39\xa7\xbf\x78\x09\x36\x65\xc1\xb1\x6d\x9b\x79\x34\xa3\x6b\x0e\x4f\x74\x61\x2d\x9b\x10\x11\xaf\xf9\x8c\xa9\x70\xb0\x3a\x40\x4c\xa9\x74\xba\x1f\xae\x8b\xe7\xe9\x65\x2a\x3e\xc9\x8e\xe1\x24\x54\x33\xd7\x14\x75\xa0\xa0\xfe\x77\xed\x6b\x07\xde\x82\x77\x5e\xe5\x72\xfe\x4e\xc6\x90\xbb\xa7\x9c\xbe\x23\x49\xd9\xa6\x21\x96\x7f\x9f\x7c\xfb\xcf\x68\xf2\xdd\x78\x1c\x3e\xe2\x5f\x11\xc5\xd6\xdf\x70\xfa\x33\x67\xaf\x39\x46\x2f\xb7\x59\xf6\x09\xfa\x7b\x30\xf6\x6c\x17\x5e\x37\x69\x5b\x8f\x6d\xb5\x5a\x2d\x79\x84\xdf\x73\x13\xe1\x30\x27\x7d\x1a\x23\x83\xc2\x4a\xc2\x17\x26\xa7\x8f\xc3\xfe\x82\x1f\xe4\x7c\xf8\xe8\x7c\xa1\xa0\x7c\x86\x56\x8f\x17\xa1\x5f\x3f\x3c\x03\x14\xc2\xa1\x98\x29\xed\x96\x27\x5e\xd9\xb5\xec\x15\x63\xc3\xbb\x80\x64\xe0\x3e\x98\x81\x82\x48\x2e\x39\x3d\xc1\x89\x89\xd7\xb7\x2e\x72\xb1\x92\x2f\x3e\xfa\xce\x84\x9c\xe6\xb6\x39\xd5\x3d\xcd\xc9\xa9\x7d\x99\xfe\xc9\xfd\x5b\xe0\x50\xfe\xf2\x75\x9f\x2e\xfd\xc9\xad\x65\xa4\x3e\x15\x20\x75\xad\xae\xac\xb6\xf7\xe8\xe7\xe4\xe7\xa9\xa1\xbe\x58\xfc\x03\xe7\x6c\xf2\x88\x0c\x73\xf2\x0f\xeb\x1e\xc0\xff\xff\xcc\xbd\x0b\x77\xd3\xb8\xd6\x30\xfc\x57\x52\xbd\x43\x46\x6a\x94\x34\x69\xa1\xcc\xb8\x88\xac\x0e\xe5\x36\x43\x28\x43\x0b\x0c\x84\x9c\x2e\x37\x56\x1a\x0f\x89\x9c\x63\x2b\x2d\xa5\xce\xf9\xed\xdf\xd2\xd6\xc5\xb2\xe3\x94\x32\xe7\xf9\x9e\xf7\x5d\x5d\xab\xb1\x6e\x5b\x77\x69\xef\xad\x7d\x69\x31\x2c\xdb\x29\xd9\xe9\xed\x52\xe0\x22\xf5\xf5\xd9\xb3\xfb\x6b\xb0\xfb\x4b\xb0\xd7\x6b\xa7\xf7\x1e\xde\xdb\x5d\x7d\xe5\x6b\x9c\x6c\xa3\x0d\xb8\xc6\xcc\x36\xf1\x35\x4e\x7e\x0c\x92\x79\x20\x1f\x69\x6c\xd8\x3e\xac\x49\x62\xad\x44\xca\x91\x1a\x50\xdb\x7a\x6b\xd1\xaf\xdd\x5b\xd1\x77\x18\x0d\x10\x1d\xa2\xc1\x00\x0e\x23\x34\x48\x6a\x35\x2f\x8d\x85\x2a\x18\xd3\x56\x4f\x1f\x47\x68\xa0\x0a\x95\x8f\x42\x7e\x0b\x62\x0e\xc5\xb3\x93\x29\x38\x0a\x36\xeb\xd1\x01\xfa\x07\x90\x7c\x20\x4f\x30\x82\x48\x44\xd1\x40\x1f\x66\x26\xf8\x8b\x3e\x94\x06\x88\xfe\x64\xbe\x06\xde\x61\x06\xf5\xd6\xdb\x84\x90\x7e\x7b\xdf\xf2\x0b\xfe\xd5\x9c\x1a\xa6\xdc\x77\x0b\xfa\x65\xe0\x14\x1c\xa8\xc6\x0d\xd6\x6d\xfd\xc9\xe1\x80\xeb\x5b\xb8\xdd\x2b\x32\x0f\x74\xf6\xf5\x02\x3e\x85\x26\x2c\x8e\x63\xea\x7c\xa3\x4e\x28\xb0\x87\x28\x1c\xcf\xfe\x40\x9f\x18\x49\x5f\xd7\x93\x04\x11\x16\xa4\xf4\x7e\xa5\xd5\xd0\x41\xaf\x84\xb3\x9d\xa3\x61\x72\x34\xea\x1b\x5a\xf2\xf3\x48\x51\x93\xf9\xe7\x8c\xb4\x54\x5b\xfa\x3b\xf4\x0b\x67\xe8\xf7\x50\x2c\xc3\xf4\xfa\xec\x19\x3f\x4f\xe1\x63\x10\xa6\xe3\xe9\xd9\xe1\x22\x8d\x67\x67\x83\xf0\xfa\xec\xf7\xa5\xe0\x67\xbf\x2f\x67\xd7\x67\x87\xcb\x8b\x65\x26\xcf\x4e\xf8\x42\xf2\xf9\x39\x4f\xcf\x8e\xc7\x32\x51\xbf\xaf\x93\x4b\x1d\x71\xc4\xc7\xf0\xe1\x0c\xb4\x9d\x21\x42\x3f\xe8\x5a\x54\x0d\x0a\xb8\x02\x6d\x01\x2b\xb8\x0a\xac\x82\xa9\xa0\x29\x48\x0a\x88\x5f\xbe\x38\x50\x8f\x78\x9d\xfd\x6a\xcd\xee\x50\x03\xe7\x73\x52\x40\xec\x05\xf8\xf3\xde\x68\xc2\x63\xc2\x5a\x2c\x1b\x8e\xcc\x5b\x80\x22\x5a\x06\x75\x09\x99\x5a\x38\x95\x14\x4d\x6f\xf5\x76\x0f\x5a\xad\x94\xc4\x6c\x82\x87\xbb\x7c\x8f\xa6\x23\xb2\xa1\xcc\x30\x1d\xb1\x62\xeb\x99\xbd\x13\x03\xca\x5a\xd3\x81\xfa\x16\x55\x60\x6c\x2e\x5e\xd8\x93\x81\xd5\xa7\xce\xe9\x7e\xbb\xb7\xc5\x18\x4e\xd8\x57\xef\xf1\x6b\xbd\x99\x34\x24\xa4\x9f\x00\x43\x2f\xa8\x2f\x51\x69\x93\x5f\xe0\x1f\x56\xf6\xc3\xf5\xfc\x48\x81\x1f\xee\x76\x71\x7f\xfc\xe6\x23\xe7\xb0\xa4\xbc\x3b\xb1\x30\x91\x54\x6f\xa8\x4e\x1d\xd8\x3b\xff\xfa\x1c\xb5\x7e\xda\xd1\xe4\xad\x24\x44\xb2\x2b\xe7\x77\x12\xbc\xee\x63\xab\xad\x54\x39\x0f\xf5\xe6\x97\xc4\xab\xc5\xa9\x25\x78\xaf\x2b\xfa\x56\x55\xf7\xa4\xbd\x80\xa9\x24\xf0\xe6\x7e\xdb\x35\x89\xa0\xdf\x08\xb0\xf2\x92\x2c\xc3\x1b\xbe\xfe\xaa\xde\xc7\xbf\x39\x94\xa3\x16\x35\xb1\x2e\xe4\x0a\xdc\xc4\xc0\xd7\x98\xfe\x5b\xce\x32\x4e\xff\x52\xff\x8b\x9d\xfc\x37\xc7\x9e\x50\x26\xaf\x9c\xb9\xe6\x55\xc8\x62\x8c\xab\x82\x55\x39\x1c\xd1\x44\xfd\x8b\x1d\x0b\x16\xae\xca\xde\x2e\x70\x61\x84\xdd\x84\x72\xe4\xec\x29\xac\xed\x38\xa1\xb6\x0c\xa1\xc9\x5a\xb2\x4d\x89\x7f\x20\xc5\x07\xa9\x99\x30\x5a\x10\x8d\xab\x0a\xec\x57\xec\xbe\x4a\xad\x05\xae\xea\x82\x03\x77\x95\xd0\xc4\x84\x80\x59\xe4\x75\x6d\xf7\x3e\x64\x8e\x4d\x72\x0c\xc9\xfe\x11\x06\x57\x13\xf3\xa8\x62\xf4\x2f\x8c\x5a\xb1\x79\x0e\xc9\xd5\x74\x13\x44\x51\x8c\xec\x91\x52\xbd\x0a\xd9\x1a\xb4\x72\x46\xb8\x79\xea\x6b\x49\xee\x54\xcb\x6d\x10\xd2\x1a\x08\xc5\x7a\x7c\xc9\x0b\xaa\x5c\x9d\xf5\x7a\x27\x66\x05\x41\xd6\x03\x2f\xc9\x8f\x59\xb7\x8f\xb3\xe2\x19\x96\xb7\xee\x77\xbb\xa5\x72\xd4\xbd\x61\x82\xff\x29\x8b\xbf\x02\xbe\x0a\xcf\x07\x2e\x86\x13\x12\xf8\xa0\xca\x60\xb2\xa2\x6d\xef\x78\x81\xb4\xc5\x13\xec\xb5\xc5\xf2\xc6\x6e\x79\xae\x2a\x58\x98\x07\x62\xd8\x1d\x31\xd3\xe2\xa2\x5e\xb0\x82\xf3\xee\xf4\x89\x2f\x23\x27\x88\xd7\x0f\xd0\x0a\x7a\x77\xfa\xa4\xd4\x15\xb0\x09\xe0\x47\x72\xf3\xcc\xf6\x1d\xc8\x9e\xb0\xb3\xf3\x8d\xe3\xb1\x55\xcb\xd7\x2e\x7b\xd8\x92\x6d\x8b\x1b\xb7\xf1\xc3\x96\x1a\x09\xda\xa5\x29\x31\x4d\x3a\x0a\xaf\x31\x69\x4b\x72\xef\x61\x2b\x6d\xf7\x3c\xc6\x21\xf7\x79\x2c\x20\xc7\x0f\xce\x73\x7a\xad\x87\xdb\x58\xb6\x7b\xa4\x85\x1f\xb6\x44\x3b\x55\x05\x5f\x70\x63\x09\xda\x39\xa2\x78\xc4\xba\xfd\x90\x1d\x73\x1c\x33\xae\xf2\x66\x41\xf6\x18\xf8\x01\x7d\x15\xd3\xea\xd1\x90\x65\x6d\x88\x20\x81\x8a\x51\x61\x42\x6f\xd4\xa9\x18\xc4\x34\x0a\xaf\x8f\x27\x6a\x48\x82\xd0\xa3\x9b\xde\xaf\x23\x14\xec\x85\x7f\x96\xaa\xf3\x31\x64\xde\xbb\x39\x9c\xb9\x06\x14\x26\xed\xb8\xdd\x23\x3b\x0f\x49\xcb\xf1\x24\xc3\x47\xbd\x7e\xca\xc2\xd6\x47\x8e\x13\x66\xe1\xb4\x7b\x00\x29\x08\x1f\x7f\xac\x00\xef\xe3\x94\x85\xed\x6a\x2c\x2d\x8a\xb6\x7a\x24\xf0\x20\xd1\x94\x85\x84\xde\x5c\x71\xfe\x25\x48\x29\xf4\x2d\xf1\xfa\xf3\xb1\x32\x53\x6e\xe6\x68\x02\xdf\x2d\xdd\x10\xfb\xd0\x02\xa3\xd5\x4e\x5b\x09\xd9\x79\x58\x00\x79\x5e\x25\x26\xf5\xa3\xad\xa4\x0f\x89\x55\x79\x2b\x7c\x7f\x48\x42\x56\xef\x30\xba\x52\x64\xc7\xd5\x95\x26\x3b\xae\x12\x44\x91\x6a\x22\x70\x2d\xd0\x07\x95\xf6\xe1\x83\x4e\xfb\xa0\xd2\xe2\x2c\xf9\xa0\x93\x9f\x60\x9d\x91\xa2\x2b\x1d\xb2\x49\x14\x7d\xd0\xa8\xbf\x4e\x7e\x00\xdf\x2e\xf1\x81\xc6\xdc\xaf\x1c\x21\xa0\xaa\x76\x84\xc0\x07\x17\xad\x6a\x85\xe8\xa9\x42\xc3\xaf\x54\x35\x57\x00\x9a\xaa\xa4\x5a\x5c\x5c\x0e\xd3\xc2\xcc\x66\x8f\x58\x8e\x1a\xf4\x24\x52\x74\x0d\x8a\x54\x17\xa2\xf0\x5a\xf7\x2e\x8a\x7e\x84\xd8\x31\x52\x64\xd9\x20\x16\x15\xb2\x29\xfa\x67\x80\xea\x28\xb0\xe8\x1f\xc2\xaa\x80\xe1\x1a\x06\x32\xc9\xba\xbb\x4f\x4d\xa4\x99\x0a\x1d\xff\x04\xc3\x78\x50\x14\x15\x53\xaa\x23\x78\x69\x56\x75\xdc\x53\x3d\xb1\x10\xe8\xf5\xdc\x24\xfb\x61\x3f\x7f\xcf\xf0\xb0\x22\x37\xab\xdc\x7d\x3d\x75\x5f\xaa\xc7\x9b\x48\x38\x6f\xd0\xab\xb4\x5f\x74\x97\x72\xb5\x54\x63\x74\xa7\xa2\x7e\x29\x58\x83\xaa\x90\xae\x55\x43\xb8\x13\x3d\x68\xa1\xdd\x4e\x11\x76\xa2\x0a\x3d\x68\x86\x50\x0b\x46\xea\xda\x61\x4a\xd4\x14\x6c\x5a\xfb\x6e\xbd\x6b\xcb\xbb\x9c\xa1\x93\xa5\x88\xc2\xeb\xb3\x41\x02\x3f\xa7\x4b\x9e\xa9\xdf\x0f\x3c\x12\xfa\xeb\x74\xba\x4c\xe1\xe3\x59\x1a\xab\x9f\x93\x50\x2e\x53\x35\x73\x3e\x09\xf8\xa7\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\xa5\xbc\x3f\x41\xde\xb3\x41\x72\x76\xba\x3c\xfb\xc0\xcf\x4e\xa7\x67\xcf\xd2\xb3\x93\xb0\x9e\x26\xfc\xfd\x1f\xd1\x84\xa5\x11\xf5\xa8\xc2\x52\x7c\x85\xfc\xfb\x50\x9f\x36\x8f\xc5\x5a\x8a\x26\x0d\x1f\x96\x29\xc3\xde\x88\xa8\xbb\x03\xa7\x64\x43\x49\x47\xdc\xf9\xa7\xc4\xf7\x08\xc4\xf5\xa6\xad\x81\xb9\x1b\xa5\x79\x75\x2b\x8c\x3b\x51\x9a\xb0\xa2\x6f\xa1\xfe\x4a\x55\x94\xc8\xc6\xef\x14\x5c\xef\xe4\xf7\x89\xc1\xea\xe8\x56\xeb\xfb\xe1\x96\xfe\x60\xd3\xfe\x59\xab\xfe\xd1\x28\xfc\xb7\x7d\xb8\xad\x51\x3f\x54\xe2\xff\xb7\xc1\x04\xb2\x5c\x6d\xf0\x4f\x40\x4d\x72\xa9\xfe\x4b\x59\xa2\x29\x85\xfc\x47\x34\xa5\x39\x31\x86\x23\x9a\xa9\x7f\x63\xf5\x6f\x56\x26\x2f\x1f\x96\xa9\x4b\xbb\x91\x25\x31\x3e\x7a\x4a\x1b\x16\x88\x41\x9a\xd4\x6d\x41\x9d\x14\x57\x76\x96\x8e\x0d\x35\x6d\x99\x12\x9a\x59\x19\x38\x3a\xd6\x5f\x31\xa1\x33\x97\x3a\x73\xa9\x33\x9b\xaa\x3d\x2d\x3b\x22\x33\x73\x5f\x63\xf7\x35\xab\x90\xa0\xba\x47\x99\x21\x2a\x33\xa0\x40\xc7\x26\x34\x86\xd0\xcc\x84\x66\x1e\xc1\x59\xba\xd5\xd6\x48\xb9\xd9\x66\x62\x70\xfd\x26\x65\x35\x10\x2b\x99\xed\x75\x7d\x87\xac\xb7\x51\x98\xe3\x3b\x36\xeb\x36\x18\xd9\xf7\x61\x0c\x62\x71\x1b\x84\xf0\x56\x3a\x37\x95\x15\xee\xfc\x34\x59\xa6\x19\x26\xf7\x7a\xbb\x79\xde\xdb\xf5\x54\xa2\xa4\x5e\xd6\xef\x80\xe2\xda\xfc\xda\x58\xe6\x28\x19\x2d\x03\xec\x83\xd6\xcd\x9f\xc7\x62\x29\x39\x04\xcb\x2f\xba\xb1\xac\xec\x9f\x33\x0b\x05\xb6\xa5\xc2\xf9\x5f\x28\xbc\xfe\xc5\x0b\xf3\xee\x89\x14\x5c\x8d\x23\x4e\x55\xc2\x74\x6a\x12\x52\x09\x91\x5f\x54\xe4\x97\x2f\xdf\x79\x25\x35\x8d\xcb\xf3\xdd\xfb\x06\x0b\x9d\xce\xe7\xeb\x4f\xb4\x46\x06\x0e\xb5\x52\x5f\x8e\x93\xb4\xde\xe0\x4a\xaf\x76\x49\x01\x26\xcb\xfe\x2b\x40\x36\x2e\xe3\xe3\x44\x44\x25\xe0\x2f\x6e\x6d\xa3\xdf\xb1\x5b\x5a\xf8\xe2\x3b\x2d\xfc\x1e\x98\x4d\xed\x4b\xb4\xb2\x38\x38\xc1\x92\x18\x1d\x22\xba\xd5\x03\xa4\x1c\x26\x8c\xa2\xa9\x46\xc7\x75\xa8\xb7\xa7\xb1\xdb\x10\xd1\x58\xea\xcf\xc3\xe2\xf3\x85\x43\xb7\xa7\xee\xeb\x8b\xfb\x52\x4b\xc1\xd1\x60\x6a\xfa\x5d\x40\x4d\x7b\x91\xa2\x06\xeb\x77\xf7\xad\xfa\xfc\xc9\x00\xf0\x52\x5e\xb8\x14\x78\x41\x79\x81\xa8\x82\x3f\xa2\x97\xdc\xc4\x28\x12\xf1\xcb\x97\x75\x3c\xd6\x92\xbe\x0a\x8d\x3d\x90\xc3\x4b\x3e\x62\xbb\xf7\xe1\xcd\xae\x1b\xa4\xee\x45\x26\x44\x14\x1d\xd6\x15\x16\x9d\xb3\x38\x7b\x33\xf7\x90\xef\x38\x7b\x03\xde\x10\x44\xb1\x05\x34\x46\x0d\x80\xa6\x6a\x04\xa7\x75\x90\x74\xdd\x60\x46\x18\x90\x72\xa3\x8f\xc3\xb6\xba\xf6\xb9\x1a\x46\x62\x43\xf3\x9d\x68\xfc\xee\x81\x03\x54\xd0\xa5\x29\x21\x54\x0e\xaf\xcb\xd1\x60\x1c\x6a\x63\x4d\x6a\x34\xbf\x57\xd7\x7d\x60\x3c\xfc\x78\xc5\x74\x17\xa2\x0f\xcb\xd1\xc9\xe6\xf6\xbc\xf8\x1f\xef\xb9\x07\xf9\xff\x4a\x4f\x2d\xc5\x14\x4a\x9a\x49\x10\x0a\x50\x5d\xce\xf4\xbe\x1b\x4b\x76\xa3\xd6\x92\x88\xc2\x34\xb8\xc9\xc2\x39\x3f\x0a\xaf\x03\x34\x3c\x4d\xa2\xf0\xba\x11\xca\x51\xe3\xd5\x29\xa2\x82\x7f\x95\x36\x7e\x9e\xa4\x69\x72\x55\x4a\x52\x68\x91\x46\x5c\x1b\x43\x1b\x3f\x0b\x33\x53\xe4\x23\xcf\x24\x4f\x7d\x70\x2a\x4d\x97\x19\xbe\x0a\x33\x39\x6a\x94\x8b\xaa\x56\x3c\x9d\x65\x3c\x40\xaf\xd0\x8a\x96\xa5\xf5\x82\x9b\x57\xa7\x27\x01\x9a\x06\xf3\x79\x90\x65\x8d\x43\x44\x5f\x9d\xea\x20\x7c\x07\x68\x30\xd8\x39\x3a\xda\xd1\x02\x1f\xaf\x20\x3c\x18\x34\x8e\x68\xc3\xc6\x54\xa2\x1a\xae\x28\x24\xa9\x86\xd0\x46\x5d\x86\x15\xf5\x64\x0e\x03\x64\x54\xc5\x1a\x91\x36\x67\xae\x65\x41\x03\x74\x2f\x42\x9a\x9f\x07\xcf\x0c\xc7\x3a\x1a\xae\xa5\x40\xcb\xe7\xed\x82\x34\x9e\x76\xfd\x79\x1a\xcf\x79\x70\x33\x59\xca\x65\xca\x03\x14\x8b\xc6\xbd\x0c\xd1\x45\x98\xc9\x00\xdd\xcb\x1a\xe1\x45\x82\x68\x16\xa0\xb0\x31\xe1\x57\x0d\x73\x74\x22\x9a\x65\xaa\x96\x22\x3c\x57\x39\xf4\x61\x8b\xe8\x7c\x0e\x89\xe6\xec\x45\x74\x1a\xa0\x50\x34\xf4\xf9\x39\x9d\x42\xda\x54\xcf\x7d\xa4\x8a\x01\x13\x23\x8a\x20\x5e\x21\x0a\x88\x0e\x00\x9a\x7e\xd2\x1e\x0c\x34\x30\xe0\x96\x23\x7a\xad\x92\xb4\xe8\xce\xf5\x35\xa4\xa8\x40\x86\x56\x54\xe7\x08\xbe\x70\xea\x71\xd6\x83\x0f\x1c\x94\x2e\x83\x9b\x28\xb9\x0a\xba\x34\x4a\xae\x83\xfd\x95\xd5\xc3\xcc\x82\x3f\x38\xf5\xf0\x93\xe0\xa7\x22\xa8\x8b\xff\xc9\x69\xe9\x5a\x0f\x76\x86\xe1\x62\xf4\xb9\xd3\x9f\xf7\x3f\x77\xfa\x3b\xf1\x8a\xce\x24\xbb\x59\xd1\xa5\x2c\xc9\xac\x2d\x64\xc9\x02\x6b\x45\xde\xbc\x90\xc8\x3b\x43\x14\xb5\x11\x09\x7c\x6d\x59\x89\x9d\xec\xa8\x35\x46\xb0\x35\x93\x43\x39\xda\xa0\x7d\xc3\x9b\x4d\xb0\x36\x65\x34\xcd\x89\x4c\xaf\x6f\x04\x0b\x65\xe7\x2c\x3c\x3f\x4f\x3d\x6f\x14\x56\x70\xcb\xe9\x7d\x38\x13\xc8\x93\x58\xa8\x11\x8e\x96\x33\xde\xf8\xd9\xd5\xf1\x33\x52\x68\x2d\x58\x21\xed\x8c\x93\x88\x33\x34\x38\x3e\x7a\xf7\xea\xe9\xd9\xeb\xe3\xd3\xb3\x67\xc7\xef\x5e\x1f\x21\xca\x57\x98\xd0\x48\x62\x61\xcd\xc7\xa7\xe4\xc6\x6a\x90\x40\xa3\x3d\xb5\x5e\xe9\x3f\x15\x16\x02\x8f\x18\x0b\x16\x82\x67\x0c\xb0\x13\x39\xd5\xd9\x48\x3f\x94\x4c\x04\xff\x5c\xdf\x48\x93\xe1\x0d\xd4\xe2\x2d\x04\x56\x8a\x27\xc9\x52\x44\x9d\xc6\x51\x1c\x35\xae\x93\x65\x63\x92\xa4\xe0\xee\x20\x69\x80\xc7\xff\x58\xf6\x11\x21\xd4\x0e\x9b\x27\x01\x28\x4b\xb6\xc3\xc0\x7a\xb2\x93\x45\x1c\x4b\x6d\x2b\x42\x15\x61\xdc\x28\x92\xce\xe4\x90\x8f\xc8\x6b\x8c\x74\xcb\x75\x43\x8e\x2f\x79\x9a\xc6\x11\x47\x14\xd4\xff\xb5\xb2\xa4\x79\x2b\xd4\x39\xb0\xbe\x4e\x5f\x87\x73\x4e\x1b\xda\xda\x31\x51\xcd\x33\x1e\xe0\x42\xd1\xe0\x5f\xe3\x4c\xc6\xe2\xa2\x61\x2e\x5e\x0b\xc5\xaf\xa7\x16\x8a\x36\xbe\xd5\x48\xc4\xec\xba\x71\xce\x1b\xcb\x8c\x47\xaa\xff\x0d\x30\xb6\xa1\x00\x86\x60\xe7\x43\x17\x6d\x9c\x70\xde\x98\x4a\xb9\x08\x76\x76\x74\x05\x7f\x67\x9d\x71\x32\xdf\xb9\x58\xc6\x11\xcf\x76\xfe\xcf\x8e\x51\xdf\xca\x76\x74\xc5\x6d\x5d\x6e\x07\x40\xce\x93\x94\x37\x62\x31\x49\x3a\xe0\x06\x07\xc6\xa2\x73\xa6\x1b\xe2\x5e\x75\xad\xc3\x5d\xed\xcd\x54\x37\x9c\xb8\x78\xb5\x6e\x4a\x49\x23\x92\xd6\x44\x96\xa0\x16\x0a\xd3\x58\x30\xb5\x85\xca\xb0\xdd\x23\xf1\x72\x0d\x4c\x9e\xe3\xf5\x48\x36\x1c\x11\xba\x1e\x6d\xcc\xd3\x1b\x3b\xfe\xba\xfa\x40\xae\xb4\x06\xf1\x41\xaa\x70\x22\x1d\xe9\x6d\x01\x3e\x82\x0d\x77\x82\x9f\x62\xd0\xa0\x55\x60\xf9\xa8\xd9\x84\x9f\x7a\x27\x08\x6a\xc9\x75\xc0\xc0\x11\x58\x30\x53\x53\x08\xb7\xb7\x26\x54\x55\x39\x0b\xdf\xe8\x0f\x41\x1c\x2d\xbf\xcc\xc3\x6e\xf2\x5e\xdf\xd4\x11\x61\x30\x36\xef\x53\xaf\x76\x90\x9c\xad\xc4\x11\xba\xe5\x44\xa8\x42\x00\xb1\x95\x60\x4e\xb4\x2f\x5e\x35\xc4\x85\x3a\xb4\x3c\x00\xb9\xdb\x55\x55\x8c\xcf\x57\x41\xb6\x8c\x04\xd6\x3d\x88\x0b\xb1\x5b\x62\xdc\xec\xe2\x84\xa9\x23\x73\x18\x8f\x9c\xcf\x98\x36\x72\xde\xb1\xa9\x50\xb3\xaa\x33\xb4\x7a\x23\x42\xfa\xc2\xcb\x05\xac\x8f\x03\xf9\xb8\x7b\x00\x6d\x4b\x55\xdb\x12\xef\xf9\xc5\xd0\x95\x0a\x9e\x73\x81\xa7\xba\x23\x9a\x4d\x61\x95\x68\x99\x6c\x36\xbf\xe1\x84\x0a\x85\x8d\x3c\x66\xb2\xdd\x23\xe0\x15\xea\x40\xb6\xdb\xab\xb8\xd5\x5a\xb9\x81\x58\x95\x94\xc6\xe6\xd2\x57\x7a\x52\x23\xe7\x98\x7d\xcd\x66\x7b\x97\x31\xd0\xd6\x77\x7a\xf5\xa0\x33\x24\x86\x03\x3e\x7a\xd4\xcd\x73\xf8\x78\xdc\xeb\xf5\x07\x3c\x10\xc3\x0b\x3e\x7a\xd4\x53\x91\x17\x7c\xf4\xf8\xdf\x1c\x8b\xe1\x5c\xcd\xa9\xca\x43\xfa\x17\x2a\xc7\xa5\x2d\x76\xc9\x47\x8f\x77\xef\x2b\x12\x90\x31\x06\xc1\x66\x13\x77\xb7\xd4\xf7\xb5\x5a\xd0\xfa\xf3\xb0\xf8\xbc\x52\x30\x2e\x15\x8c\x6b\x0b\xe3\x9a\x8f\x1e\x3f\xf8\xb5\x7f\xad\x22\x0f\x6d\xe4\xa1\x8e\x3c\x54\x91\x57\x36\xf2\x8a\x8f\x1e\xff\xfa\xeb\xaf\xfd\x2b\x1e\xb4\x7b\x14\xfa\x73\x66\x3b\x74\x64\x5f\xfa\x54\xcf\x1e\xcd\x79\x9e\xcb\xc7\x17\x5c\xeb\x46\x5d\x00\x5e\xef\xe7\x56\xc8\x56\xd6\x6c\x82\x27\x30\x09\x79\xbe\xd5\xe6\x01\x8b\x02\x5e\xae\x33\x9b\xcb\x66\x62\xb2\x24\x94\x31\x90\x15\xb7\x8b\x56\x30\x83\x5b\xad\xbb\xbe\x0c\x3c\x6d\xdc\x0b\x7f\xd6\xac\x3f\x75\x36\x1c\x19\xf9\x95\xb3\x48\x2f\xcb\xa4\xc6\x8c\xa8\x7b\x24\x4e\xb5\x07\x96\x42\xf4\xb9\x73\xb6\xcc\xf8\xbb\xd3\x27\xfd\xe1\xfa\xc3\x33\xb5\x51\x03\x23\xb6\x29\xdd\x43\xb0\x04\xfd\x33\x5d\xa6\x5a\xa0\x94\xdb\x64\x55\xeb\x8f\xf2\xce\xd9\x95\x56\x77\x06\x03\x11\xa1\x5a\x33\xa5\xf0\x40\x85\x37\x28\xec\x58\xf7\xf1\x07\xee\xc0\x05\x11\x9b\xb3\x2b\xd2\x79\xfe\xdc\x6a\x53\xcb\xce\x87\xe2\xf3\x29\x89\x59\x8f\x86\xec\x3e\x15\x6c\xa0\xce\xd6\xe7\xcf\x29\x54\xa3\x56\xe8\x7b\x8e\x9f\x48\x4c\x68\x8f\xde\x27\xf0\x06\xab\x8e\x7d\xc8\xf5\x81\xf6\x08\xc5\x38\xd1\xa1\xa7\xb4\x47\x88\x5a\xe1\xc9\xe3\x87\x6a\x81\x8c\xd9\x56\xd7\xb8\xda\x8e\xfd\xb3\x47\xe1\x5f\x9d\x28\xb9\x82\x37\x8a\x6a\xec\xf5\x81\x76\x60\x66\x2b\x8d\x69\x48\x0e\x4c\xa3\x2e\x2e\x8a\x46\xcd\xca\x2d\xb9\xa2\x33\xe0\x26\x16\xae\xde\xa3\xbe\x6a\x98\xec\x44\x44\x2d\xf2\xe4\xf1\xbe\x6b\x92\x5d\x32\x1d\xde\x87\x1c\xbc\x15\x53\x2c\x3b\x5c\xe5\x93\x1d\xee\xe5\x24\x41\xc2\xe2\x55\xaa\xfa\x94\x3e\xfe\xc8\xb1\x80\xe6\xf4\x6b\xd6\x3c\xdb\xea\x1a\xb0\xe3\x9a\xe4\x28\xbc\x56\x19\x70\xc6\x9e\x29\x20\x4e\x94\xc2\xf6\x86\x69\xd9\x78\x90\x59\xb2\xfb\x8d\x65\xc5\x2b\x3b\x81\x35\x51\xa8\xe6\x7b\x7b\x32\x54\xfd\x77\xa3\x92\xa8\xff\x84\x62\x3f\xd3\xe3\x63\x8e\x43\x92\xe7\xda\x08\x52\x11\xaf\x7a\xb9\x61\xaf\xab\xbe\x53\xc1\xde\x71\x1c\xd2\x6e\xa9\x55\xa6\xcd\x03\x75\xe7\x55\x56\xbc\x5d\xa6\x2e\x41\xaf\x67\xcb\x6e\xdd\x2b\x2d\x5f\x39\x02\x79\x5e\xf3\xcd\x80\x0b\x9b\x58\xaf\x25\x8e\x39\x5b\x4a\x2e\x95\xee\xef\xc2\x23\x41\x2f\xe8\x06\x16\x1e\x9c\x95\x10\x80\xe3\xb2\x6b\x43\xd7\xa5\xd0\x61\x29\x74\x05\x07\x2b\xef\x9c\x19\xc2\x53\x9b\x5a\xd7\x20\x58\x57\x0b\x91\x31\x5c\xec\xfc\x77\x3c\x78\xc9\x89\x2f\x36\x92\x11\xb0\x4c\x67\x33\x58\x9b\x09\x56\x04\x24\xb0\x11\x10\x2a\xa6\x50\x7e\x9b\xc3\x1d\x1d\x19\x69\x95\x81\xe1\x62\x79\xe5\x6d\x14\x69\x73\x63\x91\xa2\x68\xa7\x6e\x74\x68\x58\x3b\xf6\xb8\xa8\x27\x1e\x3a\x67\x57\x9d\x08\x2a\xbb\xea\x44\x5b\x8c\xc5\x76\xde\x2b\xe6\x5c\x40\x21\x1b\xde\x04\x2e\x25\xdb\xf9\xd7\xe7\x6c\x1b\xe3\x7e\xa0\x95\xb3\x6e\xf6\x57\x39\xe8\x91\x91\x36\xee\x07\x9f\xa3\xcf\x51\x5b\xfd\xcb\x3f\x98\x4f\xfd\x91\x6b\x9d\x31\xf8\x21\x04\xf7\x03\x7c\x9a\x37\x08\xb6\xba\x5d\x95\xdf\x61\x87\x8e\x3e\x47\x2d\xd2\x87\x3f\x3c\xfc\xdc\xfa\xbc\xa6\x07\x96\x7f\xce\xb6\x3f\xa9\xf4\x9f\x76\xe8\xf5\x2d\xad\x32\x8d\x2a\xda\x74\xb7\x26\x95\x7f\x7e\xb4\x41\x87\x72\x93\xf6\x1a\xbd\x92\x6c\x68\x15\x55\xda\x83\x41\xfb\xe8\x08\xd1\x1d\xd7\xe8\xb6\x1b\xc0\x9d\x91\xd1\x67\x71\x99\xa0\x3f\x95\x0c\xcf\x9f\x3f\x7f\xde\x1e\x7e\x18\x7d\xf8\xd0\x7e\xea\xb2\xd8\xa1\xaf\xe4\x28\xa7\xef\xd0\xad\x9e\xab\xe2\xa8\x54\xc1\xcd\xde\xca\xaf\xbd\x54\xb5\x5f\xec\xe3\xc7\xc1\xc0\x6f\x7e\xaf\x5b\x94\x33\x29\x9f\xa3\x9b\x5f\x56\xae\x1d\xd0\x0c\xd7\xce\x0f\x45\x4d\x2e\xd1\x4f\xdb\x5d\xf9\x95\xb9\x26\x3e\x5c\xed\x8c\x46\xf4\x1b\x0c\xe3\x8b\x17\x9a\x09\xd3\x39\x39\x39\x39\x81\xe4\xcf\x51\xe0\xfe\x7d\xee\x7c\x8e\x5a\x00\xdf\xe6\xa3\xb5\xf9\x68\x35\xdb\x5a\x8e\x22\xd5\x4f\x32\xb1\xf3\x79\xb9\x01\xee\xcf\xab\x5e\xe5\xa1\x35\x79\x68\x39\x4b\x25\xd5\xa5\x78\xf1\x26\xce\xc4\xa8\xa1\x38\x83\xd5\xbf\xd3\x57\x87\xea\x67\x8c\x3f\xb7\xfb\x6a\xa9\xee\xc4\x9e\x62\x98\xac\x45\x03\xc0\x5a\x0a\x1d\xb3\x4b\xa9\xfd\x6c\x66\x24\xcf\xaf\xdd\xb7\x42\x11\xc6\x1a\x19\x82\x33\x21\xce\x12\xb0\x48\x04\x2a\xbe\x57\xb2\xaa\xe3\x1b\x4f\xf0\x95\xa2\xf9\x87\xbd\x91\x86\x30\x1e\x2a\x6c\xfd\x26\x61\x3a\xba\x3b\xa2\x29\xdb\xea\x6d\x31\x13\xde\x1d\x15\xfe\x64\xf5\xf9\x9d\x10\xcf\x36\x1c\xf6\x8c\x2c\x6d\xf5\x74\x63\x86\x7b\x23\x4b\x33\xa8\x36\x7c\xab\x6b\xc3\xb7\x4a\x1b\xf6\x54\x1b\x62\x86\xc7\xc3\xdd\x51\x9e\xa3\x06\x22\xad\x6f\xa6\x3d\xd5\xfa\xe3\x5b\xea\x07\x17\xb3\xa9\xb5\x32\x73\x5b\x4e\xdd\xd2\xfb\x23\x6d\x5a\xf2\x50\xda\x86\xdc\x1f\x91\xdb\x4a\x85\x0c\x7d\x42\x2b\xb0\x5b\x94\xb4\x70\x9c\xe7\x08\x91\x16\x0e\xe1\x97\x3e\x95\x4e\x54\xb1\x54\x4c\x9b\xe2\x50\xd3\xaf\x8e\xaf\x41\x22\xf2\xd3\x25\xcf\x3f\xf0\x28\x3f\x9d\x2e\xf3\x67\x69\x9c\x9f\x84\x32\x3f\x59\x0a\x42\xfb\x9f\x33\xd2\xc7\x86\xff\x47\x3e\x67\xf8\xf7\x50\xe4\xcf\xf8\x79\x3e\x08\xd3\xfc\x70\x91\xe6\x83\xf0\x3a\xff\x7d\x29\xf2\xdf\x97\xb3\xfc\x70\x79\x91\x9f\xf0\x45\x7e\x3c\x96\xf9\xeb\xe4\x32\x3f\xe2\x63\x55\x44\xed\x49\x7a\x7f\xa5\x3f\x3f\x47\x24\xd0\x3f\xea\x78\xd3\x5f\xa4\xff\x39\x53\x2d\x79\x77\x9a\x3f\x1f\x9c\xe6\xc3\xa7\x4f\x06\x6f\x46\xc3\x93\xa3\xd1\x29\xc9\xf1\xf0\xd3\xb7\x91\xfa\xd1\x67\xc5\xfd\x15\x21\x3f\xed\x14\x4b\xf4\x6b\xb1\x44\x2b\x0a\x69\x4e\xe4\xf2\x11\xbb\xff\x6b\x7f\x97\xef\xb5\x64\x20\x41\xd7\x10\x54\xce\x54\x08\xc6\xe1\xb5\x64\x37\xef\x4e\x83\x2e\x7d\x3e\x50\xff\x9f\x1e\x9d\x06\xed\xdd\xfb\x5d\xfa\xf4\xe4\x34\x68\xef\x75\xbb\xf4\xc9\x91\xfd\x80\x98\xfd\x2e\x1d\x1c\xd9\x0f\x15\x73\x7f\xb7\x4b\xdf\x1c\xd9\x0f\x88\xf9\xa5\xeb\xf1\xf5\x5e\x79\x4d\x3c\x35\xf3\xaa\xa6\xc3\x53\xa9\xc5\xc3\x7f\x91\xd1\xf6\x67\x92\x0f\x3f\x8b\xcf\x12\x74\x5b\x1b\xbe\xce\x2d\xfe\x9c\x7d\xce\x5a\x64\x2d\xfe\x5f\x2a\x7e\x7b\xa7\xa2\xa0\xab\xe2\xb4\x8b\x09\x58\x55\x35\xd6\x41\x0b\xf1\x5b\x6b\xbc\x79\x08\x03\x49\x3f\x38\x25\x2a\x2c\x09\x75\x03\x2a\xd4\x80\x16\xc1\xb4\x1c\x4c\x54\xb0\x50\x7f\x6f\x36\xcd\xab\xbb\xcb\x10\xab\x0c\x84\x86\x2b\x2c\x87\xf7\x47\x54\x0e\xf7\xb4\xe1\x02\x2a\x87\x0f\xd4\xbf\x7d\xf5\xef\xe1\x48\x8b\x12\x55\xdf\x18\xac\x11\xce\x3c\xff\xb3\x68\x1c\x27\x8a\x8a\xb5\x74\x95\x54\xa7\x44\x61\x0e\xc1\x21\x47\x79\x8e\xe1\xa9\x64\x1d\x2d\xa1\xc2\xdf\x0f\x54\xed\x54\x0c\x00\xc0\xf9\x8a\xae\xf2\x40\xe1\x43\x4c\x50\x63\xc4\xab\xda\xae\x58\xb5\xc2\x2a\xbb\xc9\x21\x1f\xe9\xb1\xb6\x46\x9e\x8c\xeb\xf2\xca\x10\x26\x2c\xbd\xd7\xeb\x5a\x2b\x45\x38\x6d\x27\x64\xa7\xd7\xed\x6e\xef\x77\x5b\x89\x6a\xc1\x2f\xaa\x0b\xbf\x42\x67\xba\x23\x83\x2c\xbe\xe3\x3e\x76\xa8\x1a\xa5\x13\x7e\x04\xcf\x83\x93\xd8\xd8\x14\x64\x5b\xdd\xba\x33\xa1\x50\x7b\x94\xc6\x98\xa0\x3a\x55\xb6\x18\x4b\x3b\x2f\x4f\x8e\xcf\x7e\xd9\xef\xf6\x88\x1f\xf9\xf6\xd9\x93\x33\x05\x8e\xdc\xc0\x38\x0d\x47\xba\x12\xb0\xff\x67\x1d\x7c\xfa\xa4\x32\x42\x2d\x73\x6f\x38\xdf\x11\x33\x63\x96\x2a\x61\xcf\x00\x2e\x75\xc4\x1b\x71\xf6\x21\xf2\x7c\x38\x32\xf8\x7e\xe2\xfb\x27\x8c\x01\xb9\xa7\x58\x30\x9c\x99\xcc\x4b\x8e\x63\x35\x7d\xaa\x08\x19\x76\xc1\xf2\x0d\x0e\x59\x56\x3c\x3f\x65\x6e\x01\x09\xe2\x38\x45\x8f\xbb\xcd\x26\x34\xdd\xb3\x04\xa9\x17\x70\x48\x68\xa6\x8a\x03\x5b\xc8\x2f\xdb\x12\xce\xb4\xd6\xac\xc5\x8a\xc0\xcb\x61\x3c\xea\x63\xd1\xf7\x47\xa2\x17\x78\xc0\x8d\x61\x41\x2b\x80\x72\xae\x5a\x0c\x4b\x2e\xf0\x8c\x14\x6e\x89\x52\x83\xca\x65\x0e\x20\xa5\x64\xbb\x90\x8d\xdb\x33\x9a\x7d\xb7\x37\x19\x71\x84\xc8\x23\xd6\xdb\x6d\x36\xb7\xba\x96\xd7\x64\xde\x12\x01\xa5\x87\x0c\x0a\x0a\xf6\x93\x98\x75\x03\x03\x91\x15\xf3\x91\x40\xf9\x58\xee\x99\xc9\x52\xbc\xea\x16\x2f\xbc\x05\x21\x54\xfb\x90\x78\x50\xb2\xdf\x29\xfa\x32\xb0\xc4\x8d\x05\xa0\x5a\xd2\x2f\x07\x41\xdb\xc6\x65\x8c\xb3\x37\x83\x3e\xc6\xa9\xf9\xd4\x96\x76\xe4\x23\xd5\x5b\x2c\x5b\xac\xb7\x4b\x68\x9a\xe7\xbd\x5d\x45\xcc\xe4\xb9\x42\x08\x08\x95\x24\x90\xab\xc2\x60\x9e\x6b\x24\xf5\x5a\x4e\x28\xf0\x7f\xe8\xbc\xb8\x51\xe1\x58\xd7\xdc\x69\xc0\x93\x3c\x5d\x5f\xe9\xbb\x90\x39\xd3\x1e\x64\xce\x26\x1e\xd7\xc7\x98\xe6\x73\x5f\x79\x7e\x0e\x24\xf7\x4c\xd3\x73\x0c\x5a\xe7\xac\x4e\x8a\x66\x13\x69\x09\xb6\x73\x7c\xe3\xd9\x20\xed\xae\x48\x50\xa7\x22\xa5\x49\xb9\x98\x49\x8f\x19\xb2\x48\xf9\xc2\x2a\x3f\xd1\x6b\x2c\x49\x5f\x9d\x9e\x97\x78\x0e\x0a\x54\x01\x1e\x83\xf7\x70\x75\xdc\xc8\x20\xc1\x82\xf4\x37\x32\x82\xd4\x31\x67\xa8\xdd\x89\x5d\xf8\x96\xb3\x0c\xf8\x9e\x6f\xb0\x53\x1d\xb5\x16\x6d\xa9\x5a\xf4\x33\x5b\xbf\x7b\x90\x3c\xf2\x60\x1d\x24\xb0\xb9\x15\xc2\x38\xd0\xe6\xb4\x0a\x12\x57\x53\xc4\x6a\x2a\xed\x77\x11\x4b\xa8\x54\x48\x90\x82\x34\x4c\x46\x0a\xf5\x91\x84\x4e\xb5\x4d\x87\xb8\x05\x46\x12\xcb\xbb\x86\xc6\x2d\xd6\xeb\x6e\x6b\x0b\x9a\xeb\x56\x3f\x29\x24\x80\x6b\x73\x16\x53\x83\xea\xa5\x79\x1e\x3f\x4a\xb5\x99\x08\x35\xad\x92\x90\x83\x05\xe6\x54\xe4\xb9\x04\x8e\x4a\x20\xfa\x70\x7c\xae\xab\x20\xc3\x4a\x38\x08\xdd\x30\xaf\x31\x05\x83\xf1\x7a\x9a\xb3\x8d\xab\xd2\x6b\x66\x7a\x7d\x96\xd8\x99\x87\x61\x68\x31\x66\x58\x39\x18\xd6\xa8\x36\xa2\x58\x9c\xfb\x6a\x93\xeb\xd7\x80\x22\x8e\xbe\xba\x73\xce\xd4\x58\x5e\x7f\x96\x26\x73\x58\x93\xcf\xc2\xd9\xec\x3c\x04\x6f\x05\x56\xaf\xbc\xe8\x4c\x4b\x5d\xb0\x7a\x94\x12\xd5\x55\xe0\x37\xb0\x19\x96\xc5\xc9\x51\x27\x59\xbf\x6e\x66\x00\xb6\x22\x09\x62\x05\xc4\x2f\x50\x70\x62\xf5\x50\x7c\x30\x83\x60\xea\x19\x4a\xcd\x12\x33\xda\xc7\x54\x76\xa2\xf0\x3a\xcf\x25\xa8\xfb\x51\x09\x52\x40\x2a\x11\x2e\x4f\x2a\x8d\xc8\x0f\xc4\xcc\x66\xb1\x0e\x8d\xea\xdd\x65\x36\x9b\x1b\x5a\xb9\x82\xee\x66\x35\x33\x4b\x82\xdb\x46\x0f\xb8\x73\x53\x6c\x4d\x79\x46\xc0\xaa\x22\x60\xd1\xbe\x50\xc3\x2f\x0c\x22\x5b\x15\x2e\xe6\xfc\xb5\x6f\x01\x13\xbf\xd9\x04\xca\x49\xe4\x39\x4e\x99\xa0\xc2\x9d\xe2\x38\x06\x5f\x12\x95\xd1\x33\x06\xda\x2e\xb8\xf4\x0c\x45\xbf\x0e\xe7\x3c\x73\x68\x4d\x61\x1f\xaf\x26\x97\xda\xfe\x66\x17\x7b\x6a\xf7\xda\x00\x1a\xa0\x0e\x65\x13\xd4\x85\xb5\x80\xad\x9e\x6b\xf6\x0a\x3a\x9d\x40\xf3\xba\x9e\x81\x0b\x30\x1a\xed\xda\x9f\xad\x9b\x7b\xdd\x52\xd7\xbb\x3d\x16\x32\x6b\x5b\x35\x54\x91\x33\x26\xa0\x04\xe3\xea\x67\xc2\xa4\xfa\x31\x96\x5b\x53\x5a\xcf\xb0\x87\xa3\x11\x4e\x72\x4f\x7b\xcb\xe7\x96\xc9\x4e\x18\x45\xb8\xa7\xd5\x33\x8a\x14\xd7\x44\xb9\xc2\xbe\xd9\xf5\x27\xf2\x56\x8b\xd6\x3d\xb2\xda\xb8\x1e\xd8\x31\xd6\xb6\xb3\x1b\x0b\xed\xda\x26\x6a\xc4\x19\x3c\x4f\xc7\xa2\x11\x36\x52\x3e\x4e\x2e\x44\xfc\x8d\x47\x8d\xb7\xcf\x9e\x28\x94\xac\x91\xa4\x8d\x97\x27\xc7\x8d\x09\x9c\xc1\xf6\xc9\xb7\xe1\x9c\xe7\x82\xc8\x40\x38\x9b\x65\x0d\x05\xbe\x21\x93\xc6\xdf\x99\x5e\x96\x84\x36\xae\xa6\xf1\x78\x6a\x2b\x48\xf9\x2c\x0e\xcf\x67\xbc\x11\x8e\xd3\x24\xcb\x1a\xe1\x6c\xd6\x38\x4f\x93\xab\x8c\xa7\x59\x23\x14\x51\xe3\x92\xa7\x59\x9c\x88\xac\xd3\x78\x9d\x08\x5b\xff\x8e\xaa\x5c\xed\x2a\xd3\x82\xac\x11\xa6\xbc\x11\xc5\xd9\x38\x59\xa6\xe1\x05\x8f\xa0\xe8\x55\xac\x80\xf1\x86\xf6\x42\x1e\x41\x67\x44\x63\xb9\x18\x27\xf3\x58\x5c\x34\xe6\xe1\xdf\x49\xaa\x1a\xc0\xc3\x8c\x77\x1a\x6f\xe0\xb7\x91\xf2\x09\x4f\x55\x8b\xef\xf6\xd8\xfc\x77\xd6\x56\xed\x58\x7b\x66\xae\xfa\xc1\xf1\xb7\xa6\x3a\x34\x5a\x1e\x87\x16\x35\xac\x8a\xaf\x31\x72\x62\xd1\xe1\xb2\x07\xa0\x02\x23\x2e\xc5\xc3\x4e\xf8\x22\xd5\x1c\xea\xb6\x62\xa2\x8e\x18\x35\xc0\xd6\x6a\x22\x8f\x68\xc3\x7b\xdf\x9f\x87\x5f\xc1\x5c\x25\x0f\xa3\xce\x1d\xbb\x39\x8f\x45\x7b\x1e\x7e\xdd\x41\x35\x26\x77\x9e\x6c\xf0\x08\x70\xe0\x4b\x88\x7a\x26\x49\x4a\x66\x4e\xc0\x5c\x46\x5f\xfd\x0b\x78\x70\x8e\x61\x00\x3e\x54\x3a\xa3\x9a\xbb\xb9\x33\xaa\xab\xff\x8f\x74\xe6\xf1\x7a\x67\x3c\x2b\x08\xb2\x64\x31\x4a\x61\x39\xf0\x98\xe8\x8c\x80\x27\x40\x66\xea\x67\x4a\xf8\xa2\x5b\xb2\x82\xff\x3c\x91\xd8\x58\xe4\x84\x1c\x34\x65\xbd\x83\xf4\x91\x2c\xcc\x8d\xa4\x44\x0e\xd3\x51\xc9\x00\x8c\x8a\x18\xf2\x11\x16\xea\xa8\x17\x60\x8a\xd7\xb3\x74\xa9\x5a\xf3\x9b\x64\x43\x6b\x86\xe8\xdf\xcb\x30\x95\x5c\x7d\x59\x5b\x1e\x46\xd1\x4f\x2b\x81\x19\xe1\x53\x2b\x53\x85\xf4\xa5\x05\x31\xee\x0a\x43\x9e\x85\xed\x37\x1e\xa6\xfa\x01\x1e\x84\x98\xbe\x24\xf3\xbc\x0b\x8e\xeb\x4c\x7d\x2a\x98\x30\x73\x71\xaa\x40\xcc\xb4\x36\x96\xba\x3e\x8d\x5a\x99\x8a\x0e\x99\xb9\x54\xbb\x34\x63\xfa\x46\x55\xdf\x63\x66\xaf\x55\x15\x9a\x31\x7b\xb7\xaa\xd0\x92\x95\x2e\xd8\x3c\xef\x1a\xb1\x78\x4b\x9a\xd6\x4a\x06\xb8\x3b\x05\x5e\x7c\xad\xba\xc3\x6f\x92\x4a\xe2\x6c\x3b\x83\xf4\x93\x31\x50\x33\x94\x23\xef\xae\x71\x0e\x0e\xc0\x7a\x29\x68\x15\xfd\x56\x9a\x25\x75\x59\x0d\x7f\x53\x73\xa1\xf9\x71\xa2\x28\x0b\x17\xfd\xb3\x59\x12\xca\x22\x0b\x98\x4b\x76\x21\xb0\xe6\xbc\xd5\xb5\x0e\x8e\xd4\x95\x26\x0b\xe5\x24\xd7\xd3\x8c\xb5\x96\xad\x1e\xdf\xdb\x9e\xb5\xf6\xf9\xfd\xed\x31\x7c\x67\xdb\xfb\xdd\xed\xfd\xae\x35\xa2\x1d\x5e\x67\xac\x15\xb6\x1e\x6e\xc7\x25\xfd\x6f\xd6\x4a\x5a\x7b\xdb\x69\xab\xb7\xbb\x2d\x5c\x56\x19\xb2\x9b\x95\xb3\x6f\x01\xf4\xc5\xb9\x74\x7a\x48\xe7\xcb\xf3\xf3\x59\xc9\xe0\xe0\x5b\xb9\xc9\x40\xee\x1b\x4f\x4b\xf9\x2f\x59\xb1\x7e\xdd\xee\x6d\x83\xe2\x6e\x9a\x2c\x45\x84\xdb\xbd\x6d\x4e\x02\x2f\xc2\xa7\x83\xfe\xbe\x45\xac\xde\x33\x07\xb6\x94\x63\x63\xf8\x40\xad\x3f\xd4\x42\x85\x22\x7a\x17\x2e\xfd\x36\x57\xf1\x6d\x44\xa8\x68\xbd\xc1\xff\xf9\x0f\xe6\x3b\xfb\x5d\x10\xce\x96\x10\xe6\xf7\xf6\xbb\x5a\x2c\x7b\xf5\xb7\xc4\xe8\x13\xa2\x28\x40\x84\xc2\xf7\x27\xb0\x5e\x07\xc2\xcf\x9f\x10\x0d\x8d\xb9\xae\x4f\xe6\x1b\x84\x8d\x55\x96\x4f\x9f\x36\x88\x2d\x1b\x7c\x42\x73\x8c\xe4\xb7\x39\x7b\x27\x71\xc8\x69\xa1\xcc\xf7\x52\xb2\x1d\xf3\xb0\xa3\x9f\x84\x76\x2e\x3c\x0e\xfa\x3b\xff\x54\x61\x58\x02\x5f\xd6\xb0\x2b\x38\x39\x70\x3c\x64\x26\x4a\xbe\x84\x34\xef\x08\x63\x31\xb4\xbc\x85\x76\x6f\x04\x6c\x8d\x56\x51\xfe\xa5\x5a\xeb\x43\xd4\x06\xe9\xf6\x11\x4d\xd8\x7e\x77\x3b\x1d\xf6\x46\xad\x2b\x9c\x0e\x77\x8b\x53\x44\x61\x51\x49\xbf\x1b\xa0\x96\x22\x1d\xd2\x61\x77\xd4\x4f\x82\x76\xe2\x69\xa2\x97\x8e\xbe\xc4\xc3\x76\xb4\x89\x0b\x75\x2c\x69\xd7\xb2\x98\xd0\x84\xe1\x6b\x40\xd1\xc6\x98\x2b\xa4\xd6\x11\x28\x81\xc2\x70\x88\x47\xb0\xb4\x45\x11\x50\xa3\x07\x0c\x2b\xb0\xfc\x0e\x01\x97\xd6\x4a\xd6\x2c\x60\x08\x90\xa6\x17\x16\x26\x2c\xe7\x92\xb1\x4c\x7f\x55\xf6\x1e\x6c\xb7\xfd\x15\xe8\xd9\x98\xff\x96\x08\x0b\x92\xec\xf4\x1e\x78\x10\xde\x17\xba\x21\x5b\x5b\xd5\x5b\xc3\x1e\x40\x40\x6c\x82\xdf\x07\x88\xd0\x16\xf8\x57\xe5\xb6\xae\x5f\xf6\x1f\x81\xb1\xfe\xb9\x9d\x7f\x6e\x91\x3e\xee\x07\xf8\x73\xb4\x4d\x86\x9d\xc6\x08\x18\xe9\x2d\xf2\x39\x80\x1f\xdc\x0f\xec\xd7\xe7\x8e\xca\xa2\x9f\x00\x9f\x43\x69\x5d\xf8\x8d\x2a\x3d\x6c\xb7\x46\xfd\x61\xb7\xfd\x2b\xed\x8c\xb6\xc9\x47\x0d\xb2\x1c\x39\xa8\x8b\xfc\x50\x17\x79\x04\x91\xa7\xeb\x09\x2f\xee\x0c\xf7\x44\x37\xb4\x58\xe3\x7f\xc8\x8a\x9f\x06\xaa\xed\x04\x68\xf9\x36\x3d\x47\x70\xd8\xf4\x63\x76\x33\xcf\x14\x55\xe8\x1f\x83\x34\x0a\xb4\x38\x40\x46\x07\x90\x06\x47\xdc\x2a\xc8\x8c\x11\x02\x75\xa8\xf5\xc1\x50\x07\x0f\xe2\x4e\xe9\x00\xe5\x24\xc0\x21\xfb\x68\x29\x5e\x42\xd4\x52\x45\x6d\xb5\xcc\xc3\x61\x6f\xd4\x6f\xf7\x82\x1e\x8d\xd9\xcd\x75\xd0\xa5\x51\x70\x85\x41\x98\x80\x6c\x0b\x3a\x85\xc0\xa5\x0e\xcc\x21\x70\xad\x03\x19\x04\x0e\x4d\x8a\x0a\xfd\x25\xb1\x3a\x99\xe1\x65\x9f\x90\x6d\xb1\x82\x4a\x9f\xdf\xa1\xd2\x3f\x25\x0e\x87\xbb\x23\x2a\x08\x1d\xe8\xc0\x1e\x04\xae\x74\xe0\x3e\x04\x22\x1d\x78\x00\x81\xa9\x0e\xec\x43\x60\xae\x03\x0f\x21\x90\xe9\xc0\x2f\x2a\xb0\xd2\xfc\x2e\xc6\x62\x35\xa2\xab\x60\xdd\xd6\x7c\xdc\x6c\x62\xed\xc5\x4d\xa1\x5f\x79\x8e\x64\x02\x5f\xa4\x6c\x9a\xb8\x46\xb4\xb6\xb4\x0d\xca\xa6\x7e\x5f\x48\xed\xa9\x4f\xe5\xf9\x8d\x4f\x92\x94\x03\x1b\x89\xfd\xa4\xe7\x3f\xc0\x18\xbe\xc1\xef\x5a\x79\x9e\xda\xa2\x14\xa6\xc2\xd8\x79\x81\x04\xf8\x82\xcd\x7e\xe3\x67\x0a\xba\x56\x38\xbb\xbb\x5a\xe1\x27\x12\xc7\xe0\x14\x8c\x50\xf8\x94\x09\x51\x44\x2c\xbb\x59\x91\xce\x3c\x63\x49\x19\x7e\xdc\x19\xa8\x28\x03\x39\x05\xd4\xfe\x8d\xc4\x31\xa1\xb0\x0e\x9b\xcd\x25\xe6\x14\x99\x5b\x12\xdc\x11\xa5\xeb\x3c\x39\x42\x3d\x81\xde\x3f\x4b\xe7\xb8\xa5\xf7\x0d\x1a\x50\x88\x66\x53\x44\x51\x07\x39\x82\x11\x5b\xeb\x7e\xfd\x6e\x20\xc8\xb6\x77\xad\xfe\x54\x82\xe7\xa8\xf6\x86\x1b\x19\x69\x4d\xc9\xb5\x79\x61\x54\x6e\x77\x1b\x4b\x6b\xfc\xc2\x99\x06\xa4\xdc\x9e\xcd\x40\x90\x5a\x08\x60\xe5\xad\x13\x67\x87\x13\xc9\x53\x60\x83\xb5\xdd\x68\xd3\xf2\x7c\xb0\x96\x6c\xb7\x6e\x81\xe2\x3b\xa5\xf8\x5d\x6e\xb0\xbe\xe8\x34\xec\xcb\x5c\x5c\x60\x99\xc1\x28\xb4\x52\x85\xe1\xbe\xc6\x92\x16\xb4\x03\x6a\xc9\x16\xc2\x0b\x9e\xc6\x49\x44\x1b\xda\x77\x17\x29\x53\x13\x8e\xf2\x2b\x88\x0a\x57\x50\x17\xa0\x0d\x0d\x80\x74\x7e\x40\x0a\x39\x8c\xa2\x76\x2c\x2e\x79\x2a\x79\xd4\x06\xc7\xee\x35\xa2\xc8\x09\xf0\x4c\x52\x9a\xb2\x84\xd0\x4f\xc6\x20\xc4\x1f\x52\xed\xf7\x35\x5e\x9c\xe8\xb7\x44\xa0\x46\xc1\xfa\x40\xf1\x0c\x88\x7c\xb2\x84\xbe\x35\xd0\xc2\x64\xe5\x0c\x0c\xd9\x5f\x12\x4b\x7d\x0c\x12\x9a\x99\x90\x59\xc1\x07\xa5\x5d\x89\x13\x23\xb7\x94\xe4\x79\x42\xb3\x66\x13\xcc\x69\x81\xad\x4a\x6b\x21\xaa\x95\x6d\x0b\x42\xc3\x66\x13\xac\x4e\xa2\x23\x50\xf4\x78\x5a\x7c\x93\x56\xa8\x32\xc4\x85\xbc\x10\x5c\xcb\xbc\x7c\x2d\xc7\x2a\x4f\xd2\x6c\x56\xee\x66\x4e\xc3\x3c\xcf\x08\x59\xfd\x21\x3b\x13\xc1\xde\x78\x9e\x12\xe8\x1f\xce\x5f\x53\x8d\x1d\xf2\x3f\x24\xf0\x7d\xf5\x25\xc9\x05\xfb\x5d\xe2\x1e\x45\x61\x04\xfc\x13\x08\xb6\x7b\x14\x65\xcb\x73\x99\x86\x63\xe9\x5b\x23\x10\x25\x27\x87\xf5\xdb\xa0\x85\x6b\xb6\x0c\xd1\xfe\xda\xfd\x85\x6d\x28\xa7\xcc\x19\xff\x6e\x63\xd1\xc2\xb2\x9d\x3e\xea\xf6\xb5\x39\x4a\x9c\xb6\x2b\x65\x54\xbb\x6c\x29\x12\x98\x5c\x95\x3c\x2d\x2f\x4f\x3b\x25\x84\xe4\xb9\xe7\x1b\x20\xf5\x6c\x51\x7a\xaf\xf9\xda\x93\x5d\xdf\x47\xda\xb5\x20\x75\x50\x48\x59\x82\x4c\x36\x90\x9d\x3e\x6a\x6f\x2d\x97\xae\x52\xeb\x9c\xd0\x30\xdc\x3d\xd9\x9f\x53\x2b\x97\xf2\x09\xd1\x4a\xb6\x77\x72\x5c\x9b\x73\xf8\x69\xa4\xdd\x0b\x26\xa2\x44\xe4\xcf\x42\x71\x81\xd7\x76\xe6\x4b\x4d\xd8\xd3\xf2\xde\xf4\xb5\x64\x1b\x32\x69\x80\xc6\xc4\x94\x37\x14\x8c\x65\x78\xc1\x8d\x86\xc1\x32\xd5\x7e\xce\x1b\xef\xd6\x0b\x63\x5f\x89\xc1\x96\xcb\xaa\x6c\x9b\x0d\x03\xe9\xd7\x1f\x78\x31\xc6\x02\x87\x9b\x93\xb0\xaa\x26\x6b\xc6\x16\x88\xee\x4c\xb0\x1e\xdf\xa3\x63\xa1\xb0\xea\x4c\xd0\x19\x7c\x8c\x05\x5d\x0a\xb6\xf7\xa0\xbb\xbf\xb7\xfb\xcb\xf6\xcc\xf3\xc0\xb8\x28\xd9\x2a\xc1\xfc\x9e\x6c\x49\x72\xcf\x3b\xf1\x27\x95\x07\xed\x92\x99\xad\x75\x1b\x5b\xa4\xbd\x14\x41\xd9\x5e\x96\x87\x5b\x7b\x0a\x32\xb7\x81\xb5\x46\xa9\x2a\x60\x8b\x68\x88\xf2\xd4\x56\x84\x25\xd8\xba\x74\xc8\xa9\x65\xbd\x8e\x68\xb7\xe4\x26\xf0\x5c\xac\x59\x9c\x2a\x1f\xfa\xbc\xff\xde\xd8\xac\x53\x39\x60\x87\x06\x58\x3e\xc6\x31\xfb\x68\x0d\x50\x69\x3e\x4a\x4c\xe8\x5c\x78\x3e\xc3\x0a\xb0\xbe\xbc\xfc\x7a\x75\xac\x64\xf4\x8a\x86\xec\x1d\xc7\xb1\xe6\xee\x77\x69\xec\x49\xb9\x1e\xac\x19\x8b\x0e\xd7\x2d\x7c\x51\xcf\x74\x6b\x58\x16\x41\x35\x69\x60\x10\x30\xac\x0a\xa1\xaa\x43\x5e\xdb\x8f\xbe\xb8\xf8\x8e\x06\xf6\x15\xe7\x5f\x3e\xd6\xd8\xaa\x7e\xfe\xfc\x3b\x05\x0d\x73\xa5\x5c\x76\x2a\x30\xba\xb8\x50\x95\x22\x0b\x18\x15\xb1\x35\xd1\xcf\x9f\xab\x8a\x90\x07\xcc\x4b\x58\x4f\x31\xc6\x86\xb4\xf1\x65\xd5\x39\xdf\xdc\x90\x89\x7d\xfe\xbc\xb0\x24\xf5\xd1\x5a\xc5\xfe\xad\x92\xcb\x18\x19\x7a\x5e\x18\xca\xbe\x28\x3e\x55\xc5\x4e\x7f\x59\xb5\xda\x05\x74\xa3\x0a\x03\xda\xba\x53\x45\xd8\xb4\xba\x30\xa8\x6d\xba\xad\x23\xc0\x26\x8f\x19\x07\x3b\x1e\xa6\x9b\xba\xe0\xf7\x2d\x54\xed\x7a\x16\xaa\x0c\x38\xdd\xe5\xf5\xa2\x89\x2a\x9a\xdc\x66\x43\xfb\x1d\x46\x7f\x82\x89\xab\x3f\x13\x8f\x83\x07\x43\x5a\xb0\xf3\xfe\xd4\xa3\xe9\x22\x1e\xea\x8e\xfd\x89\xe8\x7b\xad\x82\xfb\x67\x8d\x15\xee\x01\x1f\xb1\xbd\x6d\xac\xed\xe2\xda\xba\x8e\x10\x1d\xa2\xa3\x23\x6d\x18\xec\x48\x5b\xd5\x92\xdc\xda\x93\x02\xb6\xe0\x91\xb5\x15\xa5\x42\xbf\xea\x9a\x8e\x9c\xc6\xb9\x2a\xeb\xa6\xe2\x28\xd9\x64\x8e\x89\xf7\xa5\x91\xe2\x5e\x53\x18\xcd\x73\xd9\x39\x4b\x7c\x0d\xd2\x8d\x59\x5f\x71\x11\x73\x21\x9d\xe6\xf7\x91\x6a\xde\x11\x1a\xd1\x0b\x63\xff\xbc\xa6\x01\x12\x64\xc2\xaf\xb0\x75\x22\xf2\x13\x08\x7b\x58\x86\xcc\x40\x80\xa2\xb0\x46\x7a\xb6\xba\xe4\x40\x8d\xc9\x91\x19\x15\xf5\xbb\xa7\xc6\xe5\xc8\x8c\x8c\x39\x28\x9c\xb9\x2d\x13\x84\x1c\xce\xa2\x96\x8d\xbc\x6f\x07\xe8\x08\x51\xce\x5d\xe0\x08\xd1\xe7\xb6\xf9\x47\xba\x03\xd0\x85\x3a\x7e\x52\x21\x8c\xef\x59\x40\x9b\xab\xc6\xcd\xe7\xd6\xe6\x83\x61\xdf\x6a\x93\xcd\x96\x95\x3b\x37\x36\x9b\x4d\xb8\x67\xda\x32\x77\xd3\xa6\xca\xc3\xb4\x41\x43\xe6\xaa\xc8\x1c\x8d\xe8\x35\xd7\xc3\x72\xa1\x87\x65\x60\xf5\x6b\xb7\x7a\x30\x32\x99\xaa\x3a\xcb\x6c\xd5\x86\x45\x0c\x55\x3b\xe6\x71\xa6\xab\xb6\xe1\x9e\xb1\x13\x97\xb9\xaa\x55\xf9\xa2\xea\x4c\x15\xc9\xd0\x88\x1e\x9a\xaa\x2f\x05\xbd\xd6\xb5\x9f\x58\xd5\x5f\x55\xfb\x24\x49\xf1\x3b\x8c\x4e\x36\x59\x67\xf8\xcf\x7f\xac\x39\x06\x87\x28\x63\x90\x96\x22\xc5\xf9\x79\x72\xb2\xf1\xfc\xdc\x54\xbc\x54\xfa\x04\x96\x43\xb7\xcc\x20\xf7\x92\x4f\x8c\x23\x81\x9a\xe3\xb9\xd7\xdd\x5e\x87\x5f\x82\xad\x4a\x3f\xd8\x58\xfa\x0e\xc5\x4f\x10\xdd\xdf\x54\x9e\xef\xdd\xa1\xfc\x09\xa2\x0f\x37\x02\xb8\x7f\x17\x00\x27\x88\xfe\xb2\x11\xc2\x83\x3b\x41\x38\x41\xf4\xd7\x8d\x20\xf6\x37\x80\x80\xa5\x5f\x4c\x09\x45\xf3\xcc\x6e\x00\x2f\xb6\xb7\xaf\x17\xe0\x89\xda\x8f\xea\xa4\x84\x80\x0e\x7d\xb4\x21\x1d\x7c\x4e\xe8\xa5\x60\x7a\x4e\x0f\x2e\x2d\x5b\xf5\x11\xfb\xf5\xe0\x52\xb4\x18\x3a\x41\x64\xc6\xf1\xa5\xa0\x29\xf7\x50\xc4\x43\x77\xe2\x5c\xc1\x89\xa3\x46\x1d\xa3\x6e\x07\xb5\xe0\x25\x3e\x49\x31\xc0\xdc\x00\x30\x02\x80\x87\x42\xef\x82\x2b\xbb\x01\x0b\xb2\xcf\xed\xc2\x6f\xc6\xfe\xdf\xb7\x44\xf0\xc3\xf3\x73\x63\xf1\xe5\x9b\x1f\xfd\x3a\x9c\x73\xa4\x21\x7d\x13\xec\xb2\x20\xba\x8a\xd6\x9e\x95\x64\x12\x56\xdf\x84\xa2\x4c\x18\x17\xf4\x1b\xe0\x58\x60\x28\xa1\x8e\xf9\xc3\x78\x9e\x83\x66\x54\xc2\x5e\x48\xac\x5f\x14\xc0\xbd\x5f\x2a\x8f\x27\xd8\x18\x65\x8c\x59\xea\x80\x18\xef\x43\x80\xb2\x25\x24\xcf\x91\x35\x7b\x80\x68\x08\xea\x77\xaf\xb0\x1c\xc6\x23\xd2\x57\xff\x3d\xf4\x4e\x90\x00\xe2\x4b\x58\x99\x7e\x22\xc6\x61\x9e\xaf\xdb\xd8\xb1\x15\x62\xfd\xfe\x41\x9f\x48\x10\xdc\x5b\x41\x8f\x14\xf5\x55\x43\x66\xea\xc7\x7b\x4d\x1c\xa9\x7c\x51\x3c\x99\xd4\xcb\x9b\x59\x69\xa6\x0a\xff\xd7\xf7\x60\xa0\x52\x71\xca\x34\x87\x5c\x81\x24\xf5\xf9\xb2\xab\x58\xdd\x44\x09\xdb\xe7\xf7\xb7\x71\xea\xbf\x69\xb4\xab\x8f\x1c\x84\x4a\xf6\x05\x4b\x42\x6e\xc6\x61\xc6\xf5\xcb\x5e\x10\x33\x61\x6c\x57\x82\x43\x04\x2d\x63\x7e\x00\x19\xf4\x4b\x5f\x29\x87\x9f\x6c\x51\x86\x32\x88\x3d\x3f\x8b\xd9\x2e\x41\xcc\x20\x1d\x7c\x2e\xf0\x52\x0e\x73\xad\xf8\x39\xf6\xf9\x7d\x3f\x07\x3c\x2d\xfa\xe9\x7b\xfb\xfc\x81\x9f\x41\x2d\x93\x22\xbd\x9d\x90\x9d\x5f\xf6\xef\x97\xb3\xc0\x5b\x65\x39\xcf\x7e\xf7\xfe\x2f\x2e\x93\x75\xdd\xaf\x6d\x79\xb5\xd3\x95\x33\x82\x17\x07\x87\x38\xd6\xf3\xc9\x45\x74\x3c\x59\xd7\xb2\x54\x53\xe5\x28\x41\xcc\x19\xc8\x20\xe5\x79\xe9\xbc\x50\x34\x62\x9e\x6f\x98\x6e\x15\xab\x3d\x56\x30\x8f\xff\xdf\x8f\x44\x30\x11\x76\x7e\x79\x69\xce\x24\xd3\xe3\xed\x8c\xca\xd2\x2e\xed\x91\x76\xaf\x76\x76\x2a\x99\x7d\x9a\xc3\x2c\x11\x13\xb8\xb7\xd7\xda\x5b\x03\x63\xd6\xc0\x6d\x40\x5a\xbd\xb5\x52\x7a\xbc\x6f\x2b\xe4\x91\x37\xa6\x15\x46\x56\x1a\x93\xd6\xc3\x0a\x34\x6b\x27\xf6\xee\x00\xb1\x4f\xc2\x00\xd0\x76\x6f\x1d\x2e\x2c\x1c\xf3\xa5\xd6\xe0\x5d\xc1\xb7\xaa\xdd\xd5\x4b\x54\x9a\xe9\xf3\x58\x59\x54\xb6\xd8\x4c\xb4\x17\x02\xcb\x16\xf6\x27\xb7\x1b\x54\x37\xe7\xf6\x58\x10\x3a\x13\xd5\xe1\x37\xdb\x63\x03\xec\xb1\x86\x4d\xc7\xd5\x72\x76\xe3\x6d\x28\x97\x99\x72\x99\x2a\xb7\x2a\xb1\x22\x0a\xae\x9c\xbc\xdd\x3e\x3c\xec\x09\x7d\x86\x96\x36\x05\xcf\x73\x6c\x1e\x58\xe3\xec\x9d\x1c\x63\xd2\x5f\xe7\x01\x05\x95\x28\x7d\xbf\x48\xf6\xc2\x1a\xad\x3d\xd8\x68\xfe\x6c\x91\x64\xd2\x1c\xdd\x52\x6f\xcc\x49\x9a\xcc\x59\xbd\xe5\xd6\xca\xfb\x1a\xbc\x20\x96\x84\x33\xe0\x02\xe2\xfe\xe1\xda\xff\x43\xe2\x1b\x99\xc0\x04\x51\x05\x3a\xe0\x2b\xc7\x1e\xf2\xb9\x3a\x84\x74\xa6\xcb\x79\x28\xe2\x6f\x1c\x6f\xc9\x12\xc7\xa7\xd6\xe3\x9e\x6d\xea\xeb\xe4\xaa\xce\x39\x91\xbe\x93\xd2\x64\xae\x95\x85\xb9\x2e\x20\xab\xaf\x26\xff\x6d\xcf\xa0\x47\xd0\x37\x99\xfc\x4f\xf6\x4c\x26\xb7\xf5\x4b\x26\xa5\x5e\x5d\x70\x59\x97\xf5\x95\xf6\x88\xa3\xcf\x50\x75\x8b\x43\x68\x64\xb8\x69\x50\xd2\x54\x7c\x28\x6b\x2e\xe0\x48\x5f\xbe\x4e\xf1\x5e\x17\xd0\x0f\x11\xb5\xe8\xc7\x35\xbc\x24\xeb\xb7\x5e\x2b\x07\x58\xbd\x94\xf3\x7c\x4b\x78\x63\xd8\x6c\xe2\xea\xc9\x8e\xf5\xad\x5a\x39\xf2\x75\xeb\x8b\x6d\xf7\xd8\x7b\x94\x0e\xbc\x6f\xed\x17\xc8\x72\x74\x2d\xee\x23\xfd\xf7\x6c\xd3\x0f\xfd\xf4\xf5\x7f\xbd\x23\x8f\xfc\x8e\x94\x1a\x0f\x17\x64\xa9\xe9\x7e\xde\xa2\x1b\xf2\x8a\xf3\x75\xa5\x20\x6b\x27\xd9\xef\x0b\x8d\xd9\xb5\x76\x40\xf8\x44\x16\x8e\x78\xb7\xb6\x70\x75\xf9\x27\x7e\x20\xae\x74\x13\x43\xe7\x52\x96\xe6\x39\xc2\x04\x29\xa2\xbd\x6f\x00\xe8\x47\xaa\x44\x21\x88\x76\xb8\xcc\x0b\xa3\x8a\x83\xd2\x44\x0b\x2f\xf4\x5c\x19\x93\x21\xf6\x0b\x69\x38\x2a\xca\x76\xf3\x24\x9c\xd7\xce\x15\x4d\xef\x3a\x5b\xe9\xff\xc4\x6c\x81\x93\xf4\x62\xbe\xb0\xf0\x83\xf4\xbb\x6b\xef\x11\x13\xcd\xa6\x78\xc4\xbe\x33\xcf\xa5\x5e\x1f\xa7\x75\x3b\xae\x7c\x6e\xa9\x7c\x10\x6f\x90\x6f\x3b\x82\x2a\xaa\x04\xaa\x76\xd1\x7f\x0f\x96\x99\x21\x0f\xd8\xfb\x0d\x4f\x43\x53\x0f\x5f\x9f\x85\xe2\x82\x25\x40\xb4\x98\xb7\x8e\xd4\x0b\xa8\x83\x8f\x85\x10\x31\x0f\xbf\xb2\x0f\x12\xbe\x62\xc1\xbe\xc0\xd7\x22\x4c\xb3\x58\x5c\x3c\x9b\x85\x17\x59\x4d\x3d\xe0\x02\xdb\x9c\x4f\xba\xb6\x92\x04\x87\xb5\xd9\xb4\xfe\xa0\xae\xad\x59\x57\xd5\xe8\xac\xe8\x9c\x31\x6b\x0b\xc9\x5a\x32\xcd\xa8\xdc\xdc\x2c\x45\x2c\x03\x41\x17\x69\x9c\xa4\xb1\xbc\x0e\x8e\x86\x62\xb4\xf2\xe4\x89\xc1\x7e\xec\x06\xfe\x5a\xc7\x96\x6a\x4b\xf7\xa9\x48\x63\xb9\xc2\x1c\xa4\xf5\x88\x91\x5d\x13\xce\xd3\x73\xab\x45\xe0\xb0\x16\xc3\x74\xd4\x51\x75\x8f\x30\xf7\x02\x85\x8b\x9c\xca\x11\xef\xe3\xc0\xe0\x57\xb2\x74\xf1\xeb\x81\xd2\xcb\xf2\xff\x45\xc4\x1b\xd0\xee\xff\x16\xe9\xae\x80\xb8\x03\xc2\x5d\x29\xf1\x5f\x21\xdb\xe4\xff\x07\x44\x9b\xfc\x4f\x20\xd9\xe4\x8e\x08\x76\x9b\xfd\x08\x76\x7d\x67\xdc\x5a\x83\x55\x88\xf5\x9d\xd1\x6a\x53\x24\x13\xe4\xbf\xc1\xa8\xed\x33\x34\x93\x42\xa3\x55\xe0\x76\x86\xd5\x4a\x30\x9a\xbd\x32\x74\xee\x44\x0a\x57\x8b\xce\x97\x14\x07\x61\x58\x9d\x06\x1d\x86\x4f\xcb\xf1\x82\x58\x8f\x03\x36\x32\xb8\x9c\x51\x6d\xb8\xad\x56\x70\xc5\x92\x05\xae\x6e\x23\x34\x53\x34\x41\x35\x20\x70\xed\x00\x1b\x8a\x01\x77\xf6\x8a\x8d\xbd\xc5\x80\x7b\x56\x6f\xad\x04\x0e\xf7\xac\xde\x96\x44\x73\x4a\xad\xcd\x30\x59\x99\xe6\x2a\x3c\x74\x03\x47\x46\x2b\xbd\x94\xee\x44\x8b\xb0\xbe\x3c\x39\xd6\xbe\xe6\x59\x55\x99\xa7\xfe\xbc\x70\x12\x92\x92\x81\x96\x0b\xa7\x82\xc9\x7e\xe9\x6a\x5c\x2a\x7a\x27\xf0\x46\xa9\x21\xcc\xf8\x80\x79\x2a\xf3\xfd\x18\xfc\xce\xbe\xc0\x82\xca\x7e\xc9\xb2\xc6\xf0\x74\xe4\x5b\x88\x18\x7e\x1a\xa1\xe0\xb6\x0c\x9f\x10\x09\x5e\x69\x17\x40\x85\x5f\x22\xaf\x63\xa4\x6f\xda\xa7\x87\x08\x13\x3f\x11\x93\x60\xc3\x00\xb5\xf6\x0d\x8f\xd8\xdf\x41\x3d\xbe\x57\x29\x5e\x88\x1f\x7d\x42\x54\xf5\x06\x7d\x42\x84\x04\x5e\xbf\xbe\xd3\xab\x4d\x7d\x32\x98\x7e\xb6\xa8\xac\xc1\x8d\x53\x63\xe4\x05\x2c\x75\x80\x77\xb6\x1b\xc6\xc2\xf2\x59\xdc\x42\x8d\xed\x1d\xa2\x85\x0b\x38\x33\x39\x11\x95\x0c\xa1\x03\x03\xec\x95\x16\xf3\x04\xc2\xd5\x49\x5d\x7a\x7d\xef\x5b\xf8\x4b\x39\x46\x81\x0d\xc0\xb3\xdb\xa7\x44\x70\x00\xf6\xc9\xf0\x48\x05\x43\x43\xd4\xe2\xad\x9f\x31\x1a\xfd\xac\xee\xc9\x47\xbe\xef\x61\x23\xe2\x69\x96\x84\xf1\x3f\x0c\x66\x56\x03\xe7\x9c\x37\x61\xb2\xf5\xf3\x10\x91\xd1\xcf\x75\xec\x4a\xd1\x4a\x5b\xa8\x76\xe0\x50\x2b\xb1\x2b\xfb\xf7\x93\xe3\xd7\x9b\x1c\xf2\x17\xa2\x75\x66\x65\x94\x16\xc4\x72\x36\x33\x30\xaa\x5b\xa3\x0c\xc5\x2e\x78\x43\x31\x22\x2e\x10\xb1\x4d\x44\x51\x14\x35\xc0\x1c\xec\x91\x36\x07\x6b\x5b\xd9\x18\x3e\x1f\x9c\x8e\x3e\xd9\x19\x5e\x8a\xf8\x6b\x0d\x7c\xcf\x3d\x53\x79\x59\xee\xa8\x25\x08\x25\x4d\xd4\xa6\xc6\xf9\xe7\x72\x1b\x18\xa3\xd2\x93\xa3\xcd\xf3\xae\x61\xe4\x82\x41\xc9\x44\x00\x6a\xb7\x06\xea\x26\x06\x65\x57\xb3\x8a\xa8\xee\x9b\x09\x4e\xa8\xee\xb7\x09\x1a\xfd\x5d\xb8\x7c\x02\xef\x22\xa2\x5a\xd5\xcb\x44\xe9\x80\x3e\xb2\xd4\x02\x60\xaf\xb9\x46\x4e\x5f\xf1\x70\x51\x76\x59\xec\x3b\xc5\xf6\x16\x8c\x6e\xb6\x7d\xf8\xae\xa3\xa0\xcf\x2b\x42\x0d\xf6\xae\xb7\x77\xab\xbb\xf7\xe9\x3a\x4d\x5f\x18\x33\xdb\x9c\x76\x6d\x11\x6a\xf7\xd6\x7e\xd7\x56\x98\x22\xb6\x66\x1f\x65\x00\x6b\x6c\x00\xd7\xe0\x4f\xac\xf8\xcc\xea\xe0\x5b\x61\x0f\x58\x29\x63\x1e\xcf\x30\x2e\x33\x24\xc9\xce\x9e\xa1\x4d\x75\xd4\xde\x36\x06\x27\x63\x65\xcc\x4b\xd7\x09\x41\xf6\x06\xe6\x22\x0a\xaf\xb3\x97\x42\x3b\x5e\x5d\x9f\x8c\x7f\xf3\x8d\x98\x4b\x31\x33\xcc\xfc\x66\x35\xe8\xfa\xfa\xb8\xc2\xdc\x00\x55\x50\x15\x64\x31\xab\x26\x8c\x22\xfc\x50\xb5\x5e\x12\x50\xf8\xf3\x87\x9f\x15\x9f\x75\xb5\x59\x51\x18\xb0\x75\xa7\x2a\xfa\x91\x2a\xa0\x0b\x2f\x45\x75\x59\x7a\xda\x13\xeb\xeb\xc3\xc2\xff\x58\x1e\x27\x0e\x6b\x8a\xaf\xad\x9e\x1a\xf0\xf5\x00\xdc\xf2\x50\xa8\x04\x1b\x08\x33\x53\xcc\x4c\xd8\x0f\xdc\xde\x5b\x46\x54\x2b\xb0\x4e\xa2\x65\x09\xf3\xb7\x87\x87\x6f\xf4\xcc\x8b\x83\x88\x83\x0a\x38\x5c\x4f\x9c\x5a\x39\x4d\xcf\x78\x59\x9f\x07\xd6\x6b\x75\x1f\x69\x09\xd2\x82\xd0\xc3\x9c\xc9\xaa\x63\x28\x42\x8c\x4d\xc8\xa0\xa2\xe4\x6b\xde\x84\x4a\x53\x60\xd6\xa3\x9a\x4c\xde\x96\x30\x91\x24\x90\x6e\x2e\x23\x1f\x87\xfc\x27\xe3\x84\x0d\x6e\x0e\x0c\xfa\xf6\x2d\xa7\x07\xb9\xf7\xf0\x96\x85\x66\xdb\xe6\x2f\x84\xff\xa2\x6d\xce\x2a\xa4\x5b\xf5\xb7\x4d\x86\x47\x56\xf7\xd7\x47\xfb\xde\xc3\x3c\x7f\x58\x4c\x11\x0c\x3c\xaf\x1f\xeb\xd2\xc5\x0c\xbe\x63\xdc\xe0\xdc\x7b\xa8\xba\xdb\x7e\x58\x26\x02\x22\x6d\x15\xe6\xa1\x59\xc6\x56\x14\x63\x7d\xd3\x7a\xfa\x24\xb8\x96\x3b\xa3\x5f\x45\xdb\xf5\x69\x40\xa5\x12\xf3\x00\xe6\xb9\x31\xfc\xde\x44\x28\xa4\x9c\x99\xdf\x8c\x65\x96\xb7\xb1\x94\x9c\xb9\xaf\x8c\x5d\x08\xcd\xb8\x50\xc8\x37\x73\x5f\x19\xbb\xd6\x5c\x91\x02\x33\x67\xdf\x2a\x72\xde\x57\x90\xc3\x61\x54\xb5\xaf\xa2\x89\xf5\xa4\x53\x5c\xd3\xb7\xbc\x91\xde\xba\x12\x6a\x1d\xf8\x72\x52\x98\x5d\x66\x98\x3b\x7d\xaa\x12\x3b\x40\x5b\xd8\x80\x49\x08\xcf\x33\xcc\xc9\xa3\xde\xbe\xb6\x8b\x82\xf9\x36\xdb\x77\xc6\x9d\xb6\xbc\x63\xa3\xd9\x94\x20\x1c\xfd\x4c\x1a\xfe\x0e\xf5\xbb\xc1\xcc\xfa\x31\x6a\xe1\x5b\x5d\x63\x55\x22\x31\xa8\xa0\x9a\x8b\x44\x4b\xd9\xc4\x8a\xa6\x68\x36\xf1\x96\x34\x9c\xac\x33\x2d\x88\xfa\x52\xbc\x49\x93\x8b\x94\x67\x59\xdf\x93\x05\xe7\xed\x58\x17\x03\x2b\x42\x41\x7d\x81\x3c\xc7\xf5\x09\xaa\x21\xb7\xd1\xa2\x35\x25\xc0\x12\x80\xa1\x54\x4b\xd8\x96\x3e\x3c\xe3\xc0\x0e\xc0\xca\x4c\xf6\xc6\xd7\x80\x02\xb5\xee\xda\x17\x01\xd8\x5e\x1b\x0b\xd8\x81\xc6\x35\xc5\xcb\xc3\xdb\xa3\xdc\x0c\xac\x25\xa4\xb1\x6d\x16\x8c\x96\x47\x69\x3b\xfc\xbd\x42\x62\x18\x93\xaa\x00\x55\x7e\x9b\x93\x4a\x9d\x2e\x81\x6e\xf5\xa8\xb5\x0a\xdb\xa8\xf7\x19\xad\x5b\x66\xaf\xcd\x77\x12\xc7\x6e\x35\x58\x4f\x7f\x46\x76\xb8\x80\xcf\x49\x95\x7b\xd1\xa5\x85\x52\x67\xc1\x17\x9b\x86\xd9\xe1\x2c\xbe\x10\x3c\x7a\x91\x2c\xd3\xb5\x8d\xb5\x59\xc9\x0c\x73\xc6\xfb\xfa\x6d\xc8\xa3\x71\x82\x2e\xad\x8e\x2e\x69\x73\x72\x6f\x5f\x11\x44\x5d\x7b\x5e\x1f\x9d\x9c\x6e\x42\xba\xbd\x72\x8f\x4b\xa7\x93\x46\x91\xba\xa5\xda\xcc\x02\xff\x4e\x99\x07\xa5\x32\xa6\x09\xaf\xca\x2b\x65\x73\x3f\xfd\x3d\x6a\xca\xbe\x5b\x3f\x81\xee\xa4\x8c\x57\x14\x67\xef\xa5\xf9\x3e\x7d\x62\xbe\xad\xec\xcc\x46\x6a\xa4\xec\xaf\x7b\x65\xcb\xbc\x2e\xbd\x10\xd4\x97\x79\x92\x68\x69\x46\xc9\xa3\xc6\x3b\x11\x5f\xf2\x34\x0b\x67\x8d\xd3\x78\xce\x1d\x28\xb5\x83\x33\x76\xac\xa5\x2a\xb3\x46\x38\x1e\xf3\x2c\x4b\xd2\xaa\xc8\xfc\xbb\x8c\x6b\xcb\x08\x56\x29\x1e\xd1\x81\x20\x0e\x01\xce\xb4\xd4\xbd\xfa\xba\x15\x04\x64\xb1\x30\x10\x7d\xc3\x89\x25\x67\x00\x02\x7c\xdc\x0a\x40\xe5\x28\xca\xbf\xd6\xe5\xd5\x70\x94\xc4\xfe\x55\xc4\x66\xe5\x7e\xec\xad\x8b\x1f\x55\xf2\x57\x90\x77\x36\x89\x96\x3a\xa4\xae\x06\x7d\x33\x1a\xc1\xe6\xbc\xf1\xf6\x2b\xb5\x2a\x11\xc1\x9a\xc4\xcd\x8a\x10\xb7\x6f\x4e\xa6\xf1\x44\xf2\x48\x75\xd3\x0f\x57\xc7\xe8\x07\xfc\x19\x64\xb2\x9d\x69\x20\x15\x15\x22\x45\xa9\xc6\x89\x28\xdb\x31\x50\x77\x69\xe8\xd8\xa4\x45\x03\x4a\xf7\x5f\x39\xc9\xf0\x4c\x6e\x56\xea\x76\x1d\x58\x49\x24\x8a\x39\xd3\xf6\x49\x3a\x67\xa1\x6f\x64\x08\x96\x2c\x18\x6a\x0b\xb5\x02\xad\xfa\x38\x58\x07\xcb\xaa\x3b\xed\x1b\x64\xa5\xd2\x72\x3b\x31\x21\x8f\x8d\xa9\xb8\x9a\xd2\xce\x66\x4b\x4d\xa2\x95\xc5\x3d\x16\xec\xa4\x4e\x52\xed\x74\xed\xb9\x11\x54\xd5\x63\x36\x51\x68\x14\x97\xe0\xf5\xc0\x82\x4f\x86\x62\x04\x86\xdd\x0a\x95\x80\xaf\xbe\x15\xbe\x0c\x1b\xe3\xf1\x9c\x16\x06\x62\x38\xe3\x79\x8e\x90\xb5\xdd\x6d\x07\xd7\x55\x6c\x18\xfc\xba\x99\x29\xb8\xbf\xd7\x9e\xe6\xe1\x45\xa5\xb7\x0b\x6f\x29\xc9\x30\x1d\x31\x28\x92\xfa\x45\x6c\xbb\x8a\xf6\xbc\xf6\xfa\x83\xce\x93\x64\xc6\x43\x51\x42\x73\x71\xa6\x2d\x51\x09\x26\xa9\x2c\x4c\xc4\x30\xad\x10\x1e\xa8\x78\x68\xfe\x56\x8f\xde\x9a\xf3\xc0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\xbd\x87\x34\x35\x2e\x96\x01\xcc\xd8\xf6\x59\xdb\xe0\x7a\x08\x96\xb7\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\xea\x78\x83\x38\x61\xe1\x11\xca\xa0\x2e\x26\xd3\x90\x8f\x1c\x26\x65\xa2\x3a\x56\x62\xf0\xc0\xc9\x1c\xa4\xa4\x9f\x1a\x7e\x05\x15\x24\x48\x57\xf4\x58\xe1\x23\xbe\x07\xa5\x4d\xb4\xfc\x59\x39\x1b\xf8\xb5\xd8\x90\xd2\x91\xc9\xbb\xc5\xc2\x3a\xd5\x71\x46\x2b\x65\x9e\x6f\x89\xbe\x0c\xf0\x06\x78\x4c\x14\xf6\x35\x07\x83\xc1\x20\x1f\x0c\xf2\xa3\xa3\x3c\x8a\xa2\x68\xe7\xa2\xde\x26\x94\xb1\x6a\xa5\xe5\xf2\x37\x80\x25\xd0\x49\x4f\x8a\x63\xf3\x45\x54\xe4\x81\x32\x46\xba\x7e\x33\xaa\x66\x32\x14\xcc\xe1\x7b\x11\x02\x2c\xef\x58\x38\x63\x70\xec\x4c\x40\xd0\x89\xf2\x98\x08\xdf\xcb\xd3\x46\x01\x01\x5d\x8d\x9f\x75\x28\x46\xc5\x74\x26\xa4\x9f\xb8\x22\x41\x52\x0c\xdf\xbd\x68\x27\x76\x0d\x09\x33\xf9\x0c\x9c\x48\xd5\xca\x53\xd4\x54\xc1\x1f\x77\xfb\x48\xfb\x9d\x42\x01\x52\xe5\x91\x57\xa9\x20\x7d\x81\x25\x09\xbc\xd9\xba\x97\xed\xc4\xf0\x00\x7d\x5c\x7d\xec\x75\x76\xed\xb4\xc9\x16\xfd\x70\xfb\x4a\x9d\x23\x43\x61\xa5\x5e\xc4\x88\x69\x62\x6d\x88\xce\x50\x4b\x85\xcc\x41\xaa\x75\xd8\x1c\x55\x71\xab\x72\x83\xef\xb6\x12\xdf\x96\xbf\x93\x25\xcb\x74\xcc\xed\x66\x49\xd6\x93\x48\x0b\xe5\xa8\xe5\xfc\x71\xd9\x58\xe8\x9d\x41\x20\x36\x28\x6b\x24\xd6\xc7\xac\xd6\x29\xed\xfb\xa1\xa1\x7b\x2d\x1a\x05\xa5\xf8\x52\x99\x4e\x9c\xe9\x85\x9b\xe7\x4f\x38\xe9\x48\x9e\x49\x2c\x49\x1f\xe9\xa5\x83\x02\x94\xc9\x50\x44\xa1\x42\x1d\xd1\xc8\x07\x79\x5b\xd5\xa5\xfa\x3a\x05\x04\xaf\x47\xe0\x54\xeb\x6e\xdd\x82\xac\xe5\x0a\x20\x6a\x53\x07\x75\xe2\x13\xfe\x8f\x3b\xb3\xa9\xc2\xf5\x5a\xea\xfb\xa6\x7d\x5b\xdf\x2a\x9d\xec\x43\x82\xec\x4f\xbf\x86\x63\x77\xa1\x1d\xf1\xaa\xfa\x9c\x56\xac\x58\x2b\xe5\x48\x50\xbf\x62\xe7\x6e\x5b\x9d\x4c\x83\xba\x04\xf0\x1d\x5c\x4e\xb1\x62\x07\xe6\x92\x54\x57\x70\x62\x9d\xf8\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\x53\x63\xad\x26\x95\x9d\xbb\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x70\x8c\x3a\x60\xd4\xa5\x85\x7e\x2a\xf9\x8c\xad\x36\xf5\x76\x98\xda\x77\xf0\xed\x80\x09\x18\x76\xac\x8e\xda\x30\x1d\xe5\x39\x8e\x59\x6d\x23\x5b\x28\xdf\x58\x0f\xad\x03\xe5\x37\x31\xae\xb6\xc4\xb6\xa2\xd9\x04\xcf\x7f\x48\x7b\xb7\xd9\x34\x82\x7a\x15\xf3\x35\x8f\x45\xa8\x5a\xb4\x66\xa4\x6a\xcb\x6e\x09\x5b\x62\x7e\x7b\xe6\x95\xb7\xa4\xb5\xa7\xde\x8d\xf7\x52\x75\x21\xf7\xf1\x52\x2f\x5e\x74\xe6\x95\x47\x24\xcf\xff\xf6\x96\x36\xa1\xbc\xbc\xc9\x0a\xa7\xc0\xa5\xad\x06\x31\x24\xd8\x08\x13\xaf\x65\x66\x7f\xf1\xf2\xc4\x78\xa0\x9b\xcd\x1f\xa9\xb5\x7a\x64\xfd\xef\x0c\x44\xc5\xc9\xf2\xfa\xc1\xb3\x61\x48\x8a\xb4\xb5\x71\xf1\x5a\xff\xb6\x3a\x38\x95\xea\xd6\x46\xe8\x8e\xcd\x81\xb1\x82\x77\x9a\x9a\xf1\x79\xcf\x2d\xb7\xb7\xf2\x16\x56\x3c\x7f\x41\x59\x00\x32\x89\x53\xf0\xd6\x59\x65\xe5\x56\x46\xdb\x96\xac\x94\xf9\x50\x6a\x42\x7d\x99\x2b\xd7\xd8\xca\x33\x47\x81\xa8\x24\x15\x9f\xec\xf6\x46\x70\x2e\x23\xcb\xc1\x21\x6f\x36\xb5\xe8\x82\xdd\x5f\x36\xc5\xdd\xb1\xdf\xb9\x91\x9c\xb9\x4c\x50\x7b\x7f\xce\xb1\xa8\x0c\x18\x09\x78\x5f\x0c\xb9\xe6\x78\x8f\x02\x51\xea\xc3\x20\x16\x75\x2c\x2a\x07\xac\xdc\xa6\x41\x5c\x07\x7c\x2d\x4f\x51\xd9\x5a\x52\xa9\xf2\xea\x75\xfe\xbd\xea\x21\xff\x77\x1b\x60\xaf\xf9\xda\x26\x40\x62\xa9\x11\x77\xbe\x77\x4b\x05\x4a\x37\xef\xef\xb7\xde\xbc\xa5\x72\x6e\x7f\x95\xab\x77\x97\x6c\xd5\xef\x7f\xe5\xfa\xdd\x90\x36\x59\xce\x66\xd5\x24\x7b\x37\x3f\x5c\xbf\x9a\xad\x7f\xfd\xd4\xbf\xa1\xd7\x60\xf8\x77\x74\x5d\x62\xed\x8d\xea\x9c\xee\xd7\x5c\xa7\x9f\x3f\x77\xfa\x1b\xee\xea\x1f\x82\xbd\xf1\xbe\xae\xaf\xa0\x3a\xa4\xdf\x03\x3f\x88\xc5\x1d\x80\x57\xdd\xd3\xd7\xe3\x03\xe5\xe1\xf0\x30\x82\x9a\xbe\xd4\xa4\xba\xa6\x6c\xa8\xec\xae\x18\x83\x22\x4e\x4b\xd7\x7e\xdd\x7c\x6e\xc4\x19\xaa\x85\x6b\x67\xec\x96\xd2\xa5\xc2\x35\xb3\xf1\x1d\x84\xa3\xda\xe9\x0d\x28\x87\xcd\xf6\x9d\xbb\x76\x7d\x17\x7b\xb7\x6d\x09\x86\xba\x0c\x85\xac\xbb\x6f\xdd\xe4\xad\xdd\x6e\x25\x00\xfe\x4d\xbb\x06\x19\xd7\x14\x60\x9f\x78\x75\xa6\x6b\x2f\xd8\xbb\xd6\xbf\x7e\xd8\xfe\x6f\x0e\x4e\xfd\xfd\xbf\xde\x9c\xba\x61\xaa\x45\x49\x6a\x7a\xc2\xe5\xda\x80\x6d\x44\x4b\x7e\xbc\x61\xd5\x9b\xf2\x7f\x71\xf4\x06\xb1\xd8\xdc\x44\xdb\x94\xba\x91\xb3\x69\x35\xe3\xe6\x7a\x20\xd7\x46\xad\x5c\xdd\xfa\x98\xdd\xad\x39\x9a\x85\x95\xbd\x19\xd4\x8c\x11\x5a\x80\x8a\x04\x07\xab\x95\x65\x77\xd6\xe3\x69\x98\x1e\x4a\xdc\x35\x68\xb3\xf5\x16\x51\xbd\x92\x2d\xa1\xff\xb8\xd7\xeb\x8b\x3e\x5a\xcc\x51\x80\xde\x0c\x50\x20\xfa\x28\x54\xdf\x87\x03\xb4\xa2\x91\x04\xc9\x37\x7a\xf3\x1d\xff\xe5\x58\x4e\xf3\x4c\xe6\x22\xca\xd3\x88\xec\x38\xd7\xe7\xeb\x5c\x45\x7e\xaf\xd7\x75\x26\xf1\x5a\x60\x08\xf8\x0a\xab\xc8\xee\x4e\xaf\x4b\xfa\x48\x4e\x51\x00\xd6\x81\xfb\x28\x93\x28\xd0\x9e\x03\x91\x88\x50\xb0\xa7\x3f\xd3\x08\x05\x2a\x17\x59\xad\x08\x4d\xb5\x4e\x83\x7b\x58\x81\x60\xfd\xab\x8e\x4e\xd6\x2e\x95\x8b\x17\xa2\x48\x5a\x20\x20\x23\x57\x06\xa4\xa2\xbe\x0b\x4c\x67\x72\x00\xcf\x8d\xa6\xdf\x2b\xc1\xec\x23\x7b\xc1\x9c\x7f\xba\xc6\xea\xfb\x43\x02\x4f\xd6\x73\x60\xe1\x8b\x15\xb4\x58\xba\x9d\x54\xec\x99\x19\x8b\x8e\x26\x09\x8c\x3b\x3a\xd3\x8e\x36\xbf\x36\x30\xc7\xeb\x6c\xd3\x9e\x88\x8a\xd5\x59\x4f\x18\xd1\xda\x9b\x05\x81\x33\xff\x51\xe0\xdf\x7e\xa1\xfb\xbf\x74\xbb\xdb\x7c\xa7\x77\x7f\xbf\xfb\xeb\x43\xcf\x0a\xbb\x9f\x47\x27\x6e\xf3\x1d\x95\xb9\xc8\xf3\xc5\xcf\xb3\x81\x36\x08\x33\x30\xee\xaf\x86\xe7\x83\x60\x5f\x04\xd6\xf6\x09\x8e\xf4\x37\x98\x2a\x30\xd1\x88\xd0\x37\xfa\x73\x8a\x08\x7d\xab\x3f\x23\x44\xe8\x5f\xfa\xf3\x0a\x11\xfa\xb7\xfe\x1c\x20\x42\x5f\xea\xcf\x3f\x11\xa1\xef\xf4\xe7\xb5\x6f\x09\xed\xc5\x1d\xda\x56\x91\x2c\x05\xd3\xc0\x43\x3e\x0a\x5e\x87\xaf\x75\x8b\x9f\x09\xf6\x42\x94\x14\x99\x54\x83\xdf\xeb\xd8\x22\xe2\xa3\xcd\xa6\x2d\x86\x10\xfa\x5c\x47\x68\x37\xfc\x84\xfe\xa1\x83\xe0\x7d\x9f\xd0\x3f\x4d\x6e\x63\x02\x8d\xfe\xa4\xc3\xda\xd1\x3e\xa1\xbf\x0b\x4f\xa6\x86\x7e\x12\xec\x26\xcb\x82\xfb\xf7\x69\x16\xdc\x7f\x40\xe7\xea\xdf\x34\xd8\xdd\xa5\x51\xb0\xbb\x4f\x07\x41\xaf\xe7\xf9\xcf\xd2\xfa\x48\xd6\xfe\x93\x7d\x7c\x29\x31\xa9\xb1\xcc\xf3\x1e\xdd\xda\x12\x94\xd3\x94\x40\x27\x65\x5a\xb3\xb4\x45\x5a\x0c\x1f\xe6\x8f\xbb\xa4\x8d\xf9\xa3\x2e\xc9\xf3\x96\xe7\x19\x38\x4d\x6f\x93\x71\xae\x51\x85\x2d\x69\x61\xea\xc7\x3a\xd5\x5e\x26\x1d\x1b\xce\x1b\x69\x10\x9f\xa5\x69\x91\xa8\x4d\xfe\x25\x5e\x6e\x6b\xf5\x8f\x1d\x62\x01\x96\x8e\x25\x3b\x34\x36\x8f\xc5\x3d\xb6\xdf\xa5\x5c\xfd\x3f\xd0\x96\xb0\x0e\x71\xb2\xd3\xdb\x25\x34\x64\xc9\x3d\xd6\xdb\xa5\x19\x4b\xe9\x98\x49\x3a\x63\x9c\x2e\x99\xe8\x8b\x8e\x4c\x9e\xc5\x5f\x79\x84\xf7\x7c\x1f\x61\x9d\x7e\xb7\xa5\x7d\x84\x05\x08\xd1\x05\x33\xab\xfa\xc4\x8a\xf4\x03\x36\xb6\xb0\x72\xdd\x6f\xba\x47\x5a\x72\x7b\xc2\x16\x8f\xba\x7d\xd4\x46\xaa\x54\xc4\x44\xa5\xcd\x5b\x4c\x45\x2d\x88\xcd\x31\x2d\x72\x40\x37\xab\xe9\xe7\x1e\x04\x7f\x8c\x2a\xf9\xec\xc1\x33\x69\xa1\x37\xa8\x85\xe3\x7e\xd4\x8a\x5b\xe8\x23\xd8\xe4\x6f\xe1\xb0\x1f\xb5\xc2\x16\x1a\x98\x60\xd6\x9f\xb6\xb2\x16\x3a\x32\xc1\x71\x9e\xcf\xf2\x7c\xd9\x47\xa7\x36\xa2\x7f\xde\x1a\xb7\xd0\x0b\x13\x9c\xf5\xcf\x5b\xb3\xa2\xf4\xb2\x7f\xde\x5a\xb6\xd0\x09\x04\x61\x21\x25\x69\xc9\xc6\xa1\x7b\xfd\x4b\x6f\xd1\x67\xd3\x5d\x32\xe9\x2b\x9a\xa4\x6a\x19\x6e\x10\xe0\x84\xfd\x59\x7e\x4a\x2d\x09\x6d\xbd\x12\x75\x23\xe4\x5b\x08\x77\x39\xf4\x52\xf2\x67\xc4\x2b\x6d\xac\xa1\x96\x75\x37\x54\x7a\x39\xa6\x50\x4b\x31\x89\x5e\xbc\x95\x40\x33\x85\x20\x60\x55\x5b\x4c\x2c\x7c\x3a\x0d\x18\x9b\xd5\xd5\xad\x25\x14\x20\x12\x3e\xad\x1c\x90\x1a\xa1\x28\xaa\x67\xf2\x3f\x15\x05\x8d\xdd\x23\x90\xd7\x69\xe7\x7c\xb7\x40\xdb\x94\x08\xef\x2a\x9f\xea\x44\x2d\xd5\x81\xc3\xd6\x47\x5e\x6d\x0c\xf3\x12\x5c\xd6\x77\xb3\x4a\x67\x5a\xd7\x4d\xcb\x00\xaa\x6f\x62\x54\xd8\x9c\xb2\x92\xba\x17\x53\x2d\x1b\xe8\x9e\x29\xcd\xcd\xf8\x6f\x81\x25\xa1\x56\xd9\xcd\xe8\xa0\x59\xa1\x88\x8a\x6e\x9b\x8d\xde\xd9\x3b\xf0\x54\xe3\x5c\x6c\x6f\x57\xbf\xdc\xd7\xd5\xee\x49\x37\x3e\xa9\xac\x8f\xa2\x76\xad\xcf\x66\xd7\xe5\xce\xc3\x56\x6a\x8d\x75\x14\x0a\x65\x36\xd5\xf6\xc7\x57\x13\x33\x69\xbb\xf7\xb7\x55\x32\x58\x0b\x29\xe9\x7b\xb9\x4b\xf8\x7e\x17\x72\xec\xf3\xfb\x65\xed\x2e\x93\xe1\x97\xfd\xfb\x5d\x9d\xa3\xc7\xf7\x2c\x88\x42\xb5\x30\x58\x57\x57\x80\xa6\x6c\x4b\xd2\x4a\x9d\x45\x11\x39\x4d\x93\x2b\x50\x44\x7a\x9a\xa6\x49\x8a\xd1\x3b\xf1\x45\x24\x57\xa2\xb1\x14\xb1\x6c\xa0\x96\xba\xcc\xf5\x32\xf1\xed\xf3\xb0\x0f\x42\x47\x9a\x63\x91\x1d\x09\x9b\x49\x6f\x84\xdf\x4c\xf8\x05\x6c\x80\x37\x26\x74\xa4\x36\xe5\x5b\x13\xd0\x62\xe1\x7f\xd9\x82\x7a\x57\xfc\x6d\x82\x7f\x5a\xe9\xfa\x97\x26\xe2\x23\xec\x8f\x77\x10\xfa\x8e\x76\x45\xf5\x9a\x2f\xa1\x64\x66\x08\x8a\x29\xf7\x27\xf9\x5e\x6f\x77\x7b\xf7\xc1\xaf\xbb\x7c\xbf\xb5\xd7\x7b\xb0\xb7\xcf\xf7\xb7\xaf\x4a\xab\x40\x5d\x28\x80\x2e\xa8\x66\x18\xf4\x6c\xed\xf4\x2a\x7c\x48\xd6\xec\x12\x1a\x7a\xeb\x8d\x66\xa5\x55\xae\xae\xa7\xb5\x83\x2f\x7e\xcc\xba\xcd\x66\x08\xff\xb3\xc7\xac\x9b\xe7\xf1\x23\x88\x81\xff\xd9\x23\x15\x83\xe3\x16\xd3\x1d\x3b\x11\x6a\xe1\x66\xa4\x15\xaa\x8b\xaf\x4b\x33\xd6\x25\x74\x5c\x3e\xd9\xe2\x7b\xea\xa2\x55\x97\x68\x0c\x1a\x2b\x74\xec\xce\x35\x70\x18\x50\x5c\xaa\x63\x77\xb0\x49\x95\x20\xd8\x21\x96\x26\x41\x9f\x6c\xe2\xde\xee\x7d\x1a\xb6\xe0\x3e\xde\xbd\xaf\x2e\xeb\x43\xfc\x6f\x81\x43\x42\x68\xd6\x62\x09\x0d\xdb\x4c\xb7\x28\x01\x9d\xdc\x43\x0c\x23\x48\x33\xb8\x90\xc7\x5a\x3a\x3e\x54\xd5\xe8\xd9\xcf\xe8\xd8\x1c\x84\x69\x71\xfc\x6d\x32\x67\xf4\x87\x93\xe6\x4c\xd2\x4d\x06\x1b\xf4\x21\x44\x6b\x96\xc5\x90\xb7\x50\x86\x46\xb8\x98\xce\xd2\x18\x3d\x83\x85\x66\x43\xef\x85\xce\xa0\xc7\xe2\x23\x84\xf4\x00\x3c\x87\x6f\xe8\xc7\x1f\xf0\x59\x51\xad\x70\x2d\x39\x74\x22\xd8\x19\x26\x3b\x0f\x75\xab\x4d\xb7\xff\x84\x92\xba\xe3\x3f\x69\xe0\xc6\xba\xc5\x1d\x8f\xe6\xbb\x60\x5e\x35\xda\x1d\xb4\x6a\xe4\xc0\x4a\xa9\xfc\x01\xc2\x97\xe1\x79\x06\xa6\xaf\x7e\x17\x58\xed\x40\xc0\xde\x09\x8d\x8b\x30\x88\xab\x86\x45\x78\xaa\xc2\x59\x11\x8e\x54\x78\x5c\x84\x07\x2a\x3c\x2b\xc2\xd7\x2a\xbc\x64\xc9\x23\xf6\x49\x74\xb2\xac\xd9\x04\x13\x79\xc9\x28\xcf\x93\x47\x2a\x06\x22\x4c\x4c\xfc\x88\xf5\x54\x78\x8e\x20\xf0\x49\x74\xe6\x10\x9c\x23\x1a\x8f\xf2\x3c\x34\xc9\x53\x04\x81\x4f\xa2\x33\x85\xe0\x14\xd1\x70\x94\xe7\x99\x49\x8e\x10\x04\x3e\x89\x4e\x04\xc1\x08\xd1\x6c\x94\xe7\x63\x93\x3c\x40\x10\xf8\x24\x3a\x03\x08\x0e\x10\x1d\x8f\xf2\x7c\x66\x92\xaf\x55\xf2\x10\x5d\x5f\x23\x3a\x73\xb2\x15\xcb\xe1\xee\x88\x49\xba\x1c\xee\x8d\x58\x8b\x3f\xee\xd2\xe5\xf0\xfe\x88\x09\xca\x53\xdf\x21\xcf\x92\xac\x8c\xfc\x32\xf7\x04\xb8\xb8\x16\x67\xf2\xa4\x3d\x30\x9c\x47\x54\x10\x42\xa5\x6f\x49\x46\xe8\x05\xe3\xeb\x84\xa6\xa9\x8e\xa9\x04\x41\xb5\x4e\x07\x0a\x2b\x01\x2e\x60\xad\x04\x68\x58\x99\x2d\x7c\x8c\x91\x17\x5c\xb7\x67\xec\x59\x1a\x2f\xe9\xe3\x59\xca\xb9\x81\x45\x22\xe3\x31\x07\x73\xc6\xe3\x70\x11\xcb\x70\x96\x11\x44\xd3\x94\x40\xdd\xc6\x72\xc1\x3b\x8c\xfe\x32\x96\xdb\x96\x22\xfe\xaa\x8d\xb9\x7d\x35\x31\xe6\x54\x37\x3e\x49\xbe\x16\xe6\x50\xff\x32\x0e\xd1\xfb\x9f\xa3\x16\x78\x84\xb8\xe9\xd1\xbd\x15\xe9\xef\x68\x3b\x98\x7f\xa1\x7a\x7b\x92\x85\xdf\xaa\x1e\xdf\xdb\xf6\xcd\xd2\x83\xd3\x5d\x63\x58\x53\x55\xf4\x9d\xe2\x57\x0a\x8f\xd1\x0e\xae\x8c\x53\x2f\x86\x76\x3b\xbb\xf7\x3b\x5d\x44\x25\x7b\x22\x69\xda\x99\x08\xf6\x4d\x50\x38\x22\x6a\xf6\xfe\x91\xc4\xc8\x1a\x7d\x40\x74\x38\xd2\x02\x50\x9a\xdf\xe5\x3c\x35\x51\xd5\x26\x05\x22\xac\xd3\x39\xd4\x20\xc0\x06\xc5\x77\x21\x08\xdf\xce\x4d\x01\x21\x94\x5c\x25\xf5\xed\x07\x26\x41\xcb\xf6\x51\x15\x03\x81\x78\xf5\x5b\xd2\x7a\x2c\xce\xd2\x27\xda\xdd\x03\xd7\xad\xbc\x45\xa4\xc6\xc8\x20\x3a\x8a\x57\xe5\x8f\x33\x10\xe2\x1a\x53\xb7\x2a\x23\x35\x6e\xd6\x26\xfa\x39\x4d\x3b\x91\xb1\x7b\xcd\xfe\x80\x94\x4c\xfb\xb0\x63\xd7\x34\xad\x7f\x62\xf4\x98\x60\x4e\xca\x10\xd9\x9c\xba\xd6\x5a\x09\x7a\xd7\x9d\x7a\x87\x59\x45\x21\x0c\x30\xbc\x7d\x73\xae\x1b\x76\x64\x1b\xfa\x56\xba\x91\xb8\x45\x14\xa7\x3c\x1c\x90\x51\xb7\xae\xfe\xd1\xf1\x3b\x1d\x1b\xc4\x42\x97\x8e\xf8\x24\x16\xfc\x95\x1e\xcc\xa9\x74\xca\x12\x26\x66\xcd\x74\x87\x95\xf7\x2c\xbc\x91\xb0\xb1\x34\x32\xfe\x38\x65\x13\x6b\x4c\x3d\x61\xa9\x15\xe2\x52\xf4\xf5\x53\x9c\x50\x49\x28\x16\xb0\x1f\x4e\xb0\x24\x30\x42\x5c\x48\x53\xd1\x0c\xa4\x0a\x67\x5a\x16\x90\x46\x85\x1b\x58\x0d\x1a\x12\xd4\x31\x57\x84\x4a\xe5\xfb\xba\xe4\x7a\x42\x50\x2a\x6f\x5c\x6c\x42\xc8\x1d\x9f\x10\x2a\xe6\xa8\xee\xda\x3d\xc5\x33\x59\x1a\xec\xf5\x89\xba\x75\xb8\xbd\xe9\x12\xea\x24\x9e\xc5\xdf\xf8\x3b\x11\xcb\x8c\x7d\xa1\x69\x89\xd3\xf2\x56\x51\x0d\x55\x5d\x7d\x03\xd7\x33\xc4\xfe\xbb\x08\x90\xcd\xe1\x0b\xc2\x36\x9b\xf8\x77\xc1\x38\x68\x52\x54\x20\x9f\x4e\x53\x9e\x4d\x93\xd9\x06\x2a\x50\x03\xdf\x62\xec\x93\xd0\x43\xed\x6a\x93\x7d\x88\x0a\x30\xfc\x30\x49\x51\x06\x84\x57\xb3\x89\xe1\xc2\x65\xb2\xdd\x23\xaa\x46\xa8\xb2\x6c\xc3\xb2\xde\x1c\x26\xd8\x8c\xc4\x92\x6a\xde\x16\x68\x97\x58\xba\xea\x51\x7b\xbf\x5f\x98\xbb\x0c\xc4\xa3\x76\xaf\x8f\x66\x61\x26\xb5\xc5\x0e\xf1\xa8\xab\x83\x47\x8a\x3c\x12\x8f\x7a\x3a\xb3\x09\xed\xf6\x91\xf1\x12\xa9\x42\x0f\x75\x48\x17\x2c\x60\xc2\x8e\xb6\xdc\x06\x7d\xde\xbe\x38\x1d\xbc\x7a\x70\xf6\x6c\x70\xca\x6e\x8e\x0e\x4f\x9f\x9e\xbe\x1c\x3c\x3d\x7b\x75\xfc\xe4\xf0\x55\xb0\x66\xc3\x1f\xd1\x72\x8e\xb3\x93\xa7\x4f\x8e\x5f\x1f\x9d\xac\xe7\x0c\x14\xce\x51\xc9\x3c\xa8\xcf\x07\x6a\xed\x90\xd7\x4f\x46\x54\x95\x0c\x90\xa9\x17\xc0\xb8\xda\x8a\x2a\x20\x7e\xe0\x45\x69\x68\x1f\x9e\x3e\xfd\x23\x00\x83\xdc\xed\xe1\x87\xd1\x87\x0f\x88\x0e\x8e\x5f\x9f\xbe\x70\x15\xa8\x71\x58\x61\xb2\x22\xbe\xfd\x50\xbc\xf7\x2b\x81\x6b\x8a\x56\x97\x36\x52\x97\xb6\x56\xed\x46\xc6\x7d\x96\xc0\x7b\xe0\xc2\x03\x3f\x50\xe8\x9c\xc0\xbd\x5f\x14\x1a\x27\x70\x57\x61\x6f\xa2\xa3\xf0\x77\x3a\x56\xf1\x0a\x5b\x53\xe1\xb1\x42\xd3\x04\xbe\x4f\xe8\x02\xc2\x4b\x42\x27\x0a\x4a\x8f\xd0\x88\x09\xbc\x4b\xe8\xd4\x38\x3f\xc5\x71\x27\x24\xf8\x66\x45\x27\x9d\xd3\x34\x14\x59\xac\x9a\xa2\x66\x6d\x71\x7a\xbd\xe0\x19\xbd\x19\x4f\xe3\x59\x94\x72\x11\xcc\x3a\x61\x07\x9c\x50\xa9\x04\x3c\x54\xc1\x30\x4d\xc3\xeb\xe3\x09\x56\xdf\x22\x89\xd4\xf5\x6f\xbe\x46\x84\xca\xf0\x22\x88\x3a\x7f\xd3\xf3\x30\xe3\x4f\x66\x61\x96\x01\x04\xad\x06\x51\x44\x1e\x8e\xd5\xae\xf1\x93\xc6\x2a\xfa\x75\x38\x2f\x47\x66\xd9\x20\x89\x96\x33\x1d\xa9\x8d\x1a\xd1\x58\x08\x9e\xbe\xe5\x93\xba\xa6\x99\x2c\x1e\x08\xf5\xa9\xc6\x7a\x44\x56\x84\x9e\xdf\xda\x7d\x43\x6b\xbf\x49\x93\x45\x46\x6f\x54\x47\x50\x14\x5f\x22\xaf\x2b\x68\x12\x46\x1c\xad\x75\x03\x65\xd3\xe4\x0a\x51\x19\xcf\x79\xb2\x94\x41\xd4\xe1\x9d\x67\x61\xc4\x69\xb8\x58\xf0\x30\x0d\xb6\xba\x94\x0b\xc9\xf5\xc7\xd7\x58\xaa\xdf\x58\x80\xfb\xeb\x82\xb3\x3b\xf7\x1d\x2d\xcb\xf0\x02\x7c\x6e\xbb\x8a\x68\xec\x87\x74\xb5\x34\x04\xd7\x20\x66\xd8\xe8\x58\x85\xec\x78\xd1\x99\x0a\x99\x39\xa4\x4b\xc6\x3b\x76\xd4\x8a\x25\x90\xa8\x31\xe0\x74\x88\x64\x78\x81\x28\x72\xd0\xfd\x6f\x5d\x13\xa2\xc8\xd5\xa3\xbe\x6d\x2d\xea\xdb\xd4\x81\x28\xb2\x35\xa0\x91\x37\xd0\x51\x27\x26\x78\x4a\xa3\xce\x98\xd0\x79\x11\x39\xb5\x91\xf6\x5c\xca\x3a\xa1\xf1\x1e\xfb\x74\xc6\x41\x37\xc7\x9f\x1a\x7a\x5e\x16\x51\xd7\xaf\x3a\x08\x46\x95\x6b\xeb\x4c\x74\x52\x40\xbf\x20\x78\x81\x09\x0e\xa9\xa0\x49\xb3\x19\x13\x7a\x5b\x3d\x92\x9a\x72\x29\xac\x89\x62\x1d\x4e\x56\x74\x4e\x6f\x52\x3e\x09\x96\x2b\x42\x67\xe0\x9e\x6f\x5e\xec\x11\x36\xa5\xf3\xd2\x92\x61\xe7\x54\x76\x42\x36\x5f\x51\x5a\x3e\x94\x0b\xee\x3d\xf6\xa4\xeb\xf9\xd7\x45\x92\xca\x8c\x09\xeb\x8f\x38\xcc\xb2\xf8\x42\xe4\xb9\xdf\x51\xe7\x2f\x92\xf5\x0e\xe4\x23\x87\xfd\x58\x7b\x59\xb2\xd5\xb2\x67\xbe\x4b\x1b\xca\xc2\x98\x57\xda\x88\x45\x43\x10\x53\x41\x61\xda\xa5\xec\xc6\x58\x1f\x50\x82\x82\x5f\x70\x2d\xa0\x31\x4c\x47\x4e\x53\x90\xaf\xa8\x30\x38\x18\x1c\x62\x05\x0e\xb6\xf2\x7a\xf1\x9d\x13\x6d\xab\x78\x0d\xd1\x8f\x13\x68\x29\x34\x6a\x14\x79\xca\x51\x67\x67\x6f\x9f\x1e\x3e\x39\x3d\x3b\x7a\xfa\xfe\xf4\xf8\xf8\xd5\xc9\xd9\xf3\x57\xc7\xbf\x1d\xbe\x3a\x7b\x71\x7c\xfc\xc7\xd9\x59\xb3\x59\x77\x25\xdf\x5e\xa6\x33\x9e\xf2\xf1\x97\xa3\x27\x4f\xc9\x4d\xf7\x40\xa6\xd7\x37\x77\xcc\xae\xd0\xa3\x31\x18\xe7\x97\xe4\x66\x9c\x88\x2c\x99\xf1\x0e\x07\xd6\x9b\x24\xab\xd5\x0a\xec\x11\xb8\xce\xe3\x5e\x77\xf7\x6e\x67\x7a\x86\x05\xee\xf5\x7a\x44\x1d\xec\xfa\x7b\x1f\x88\x75\xf5\xbd\xbf\x07\x74\x3a\x7c\xf6\x7c\x47\x2f\x59\xd9\x55\x37\xef\x9c\x9d\x71\xb3\x05\xfb\x3c\xb8\xb1\x3c\x42\xbe\xf2\x26\xe4\xa6\xd8\x3d\x41\x68\xd7\x29\x2d\x22\x9f\xa7\xc9\x72\x11\xc4\x2e\xe5\xad\x7e\x59\xf1\x4a\x25\x2e\xed\xc9\xc9\x89\x17\xef\x4c\xae\xae\xbe\xd3\xe3\xe2\x41\xaa\xfc\x60\xe0\xdc\x38\x6b\x86\xd0\x11\x4f\xe3\x4b\x1e\x9d\x48\xe3\x3a\x1a\x36\x93\x66\xc3\x2c\xe0\x28\x86\xcf\x4c\x25\x5b\x65\x57\x85\x1b\x39\x7c\xca\x29\xea\x72\x09\x30\x4a\x6f\xaa\x89\x1a\xba\x72\xb2\x6b\x73\x59\x4d\xe3\x4e\xad\xf2\xb9\x02\xa6\x29\xc2\x6b\x8a\xe8\x0b\x6d\xfa\xa6\x73\x1e\x0b\x67\xa6\xcf\x35\x26\x36\xc6\xd8\xd3\x6b\xbf\x62\xdd\x49\xc3\xaa\x87\x6e\x1e\x14\xf1\x56\x41\x03\xe2\x99\x15\x23\x3c\x4b\x79\x38\x96\x2f\xd5\xf1\x27\xc2\xd9\x89\x08\x17\xd9\x34\x91\xcf\x66\xe1\x05\xdb\xea\xde\x9a\x47\xd7\x72\xc1\xa5\x8d\xd0\xe4\xee\x3b\xa0\x49\xe0\x0c\x58\x4d\x62\x11\xce\x66\xd7\x37\x5e\x23\x84\xdf\x88\xd4\x73\x0c\x16\xfa\xb7\x56\xf1\xc4\x04\x2c\xb0\x3c\xdf\x92\x9d\x38\x7b\xab\x9a\xf1\x24\x99\x2f\x12\xc1\x85\x24\x6b\x8c\xec\x27\xa1\x68\x24\x62\x76\xdd\x58\x24\xb3\xeb\x49\x3c\x9b\x35\xe0\x08\x6e\x8c\x6d\x91\x0c\xc1\x63\x5e\xb1\xf7\x3d\x65\xca\x8d\x33\xe5\x9f\x15\x45\x7e\xb9\xa9\xe7\x96\x43\xc7\x8d\xed\x25\x4d\x6c\xea\x1f\xad\xb1\x5e\x6e\x82\xa7\x9b\xdd\x71\x0d\xfd\x10\xcf\x66\x83\x64\x29\x64\x5f\x30\xb4\x1e\x8b\x6a\x29\x0a\xd9\x79\xf7\xfa\xe4\xf0\xd9\xd3\xb3\xf5\x02\xc0\x75\x42\x1b\x93\x11\xa1\x77\x68\xd0\x5b\x3e\xe6\xf1\x25\x87\x41\xe9\x87\x95\x76\xf9\x89\x3f\xd2\x3c\xbf\x5c\xb3\x89\xc3\xfa\x56\x96\xa0\xdf\xa9\xb1\x7a\x32\xfa\x59\xa5\x99\x3a\xfa\x47\x1a\xa8\x4b\x34\x9b\x38\xab\x6f\x9a\x81\x48\xa8\xdd\xc4\xd6\xe9\x32\x0b\xdd\x57\xa6\x57\xf6\x18\xc8\xa9\x6c\x31\x0b\xaf\x15\x5a\x90\xe7\xbc\x23\x14\xbe\x35\x63\xb5\x04\xe2\xc6\x15\xd9\x47\x1b\x4f\x15\x82\x02\xb4\x69\x4b\x12\x74\xa0\xb7\x8c\x7b\xf7\xc9\xc2\x09\x6f\xcc\xf8\x45\x38\xbe\x6e\xcc\xe2\x09\x1f\x5f\x8f\x67\x3c\xd3\xde\xe8\x45\x22\x1b\xe7\xbc\xa1\x2e\x74\x1e\x81\x32\x6f\xb1\x8d\x1a\xcb\x2c\x16\x17\xb0\xf5\x5c\x64\xe3\xf0\xcd\xcb\xac\xf3\x59\x7c\x16\xa8\x35\x6e\xa1\xc6\x32\xe3\x59\x03\xb5\x66\x2d\xd4\x38\x5f\xca\x46\x38\xcb\x92\xc6\x38\x11\x32\x8c\x45\x06\x4c\xc3\x49\x32\x9b\x25\x57\x0a\xce\x5a\x0b\x02\xd4\xc2\x76\x38\xfb\xe8\xb3\x68\x34\x50\x4b\xe8\x47\x69\x3b\xb6\x36\x3a\x2c\x45\x67\x36\x3a\x83\x68\xa4\x9a\x73\x3a\xe5\x8d\xf0\x3c\xb9\xe4\x7e\x17\xb3\x69\xb2\x9c\x45\x9e\xcb\xfd\x4e\xe3\x15\x0f\x53\xa1\x35\x96\xc3\xf3\x64\x29\x81\xc7\xde\x30\xba\xcd\x8d\x29\x4f\x79\xf0\x59\x4c\xa5\x5c\x64\xc1\xce\xce\xe4\xbc\x33\xe7\x3b\x70\x2e\xb6\xc3\xec\x5a\x8c\xdb\x6e\x20\xda\xae\x9a\xf6\x34\x49\xbe\x64\x88\xac\x36\x6c\xf8\xdb\xce\x1c\x5c\x77\x1a\xb0\x94\xde\xb2\x27\x59\xb2\x69\x67\x6c\x3a\xaa\x6e\x36\x1c\x86\x5e\x25\x47\x71\x64\x32\xd7\x1d\xb7\x6a\x91\xb8\xc3\x76\xe3\xba\xab\xae\x1e\x39\x0d\x65\x23\x4a\x60\x89\x69\xcc\xad\xb1\x5e\x1f\x26\x8d\x44\xc0\x42\x71\x97\x01\x22\x07\xb5\xbb\x9c\xc5\x70\xd6\x2e\x59\x5d\xbb\x0f\xea\x22\x6f\xd5\xd5\xdd\x7c\x25\xf6\x6f\xcb\x10\x88\x83\x65\x45\x0c\x3e\x25\xab\x02\xf5\x15\x1d\x85\xf0\x51\xd1\x89\xb0\xa4\xc8\x8e\x1a\xaa\xf3\x05\x13\x6a\xde\xf3\xd9\x59\xb6\x5c\x2c\x52\x9e\x65\x47\x86\x33\x1f\x27\xe2\x83\x5e\x90\xea\x76\x4e\xbe\x9b\x23\xfe\x5e\x8e\x55\x85\xc0\x28\xb0\xbe\x6a\x7c\xc1\x87\x31\x34\x80\xa6\x7d\xb0\x47\x0c\x28\x44\xb6\xa0\x0c\x3c\x2c\x88\x71\xaa\x30\x4d\x48\x3b\x3b\x63\x3f\x82\xee\xf9\xcc\x4c\xc6\xec\xed\x6a\xdc\x4b\x6b\xa6\x66\x2d\xe3\x73\x43\xde\x9b\x15\x8d\x6d\x07\xbe\xf0\x6b\x85\x0e\x7b\xba\xee\xb1\x6f\x3d\x58\xb0\x78\x98\x8e\xa8\xec\xc4\x22\xe2\x5f\x8f\x27\x58\x10\x78\x8c\xc5\xc9\x50\x8c\xb4\x62\x6c\xa1\xfe\xae\xd1\xb9\x78\x82\x0d\xec\x0b\x2e\x3d\xb2\xe8\xe4\x7a\x7e\x9e\xcc\x32\xeb\xb1\xef\xb6\x3c\xff\xa0\x41\x6b\x34\xd9\xc2\x80\x7c\x99\x3d\x15\xcb\x39\x4f\xc3\xf3\x99\x79\x39\xe0\x54\x00\xc7\xd7\xf5\x60\xe5\x7a\x60\xd6\x65\x58\xbb\x20\xd3\xd5\x77\x19\x4d\xf5\x2b\xc7\xbe\x8b\xd3\x90\x66\xfa\x3d\xd3\x60\x79\xe3\x92\xad\x64\x49\xc6\xcc\x3b\x59\x06\xb1\x88\x27\x31\x8f\x1a\xfc\xeb\x98\x2f\x34\xf6\x3d\x1e\x2f\xd3\x94\x47\x07\xfa\x49\x6a\xca\x1b\x22\x11\xed\xb9\xcd\x18\xf1\xcb\x06\x17\x97\x71\x9a\x08\x45\x50\xc2\x89\x03\x97\xcc\x72\x36\x6b\x00\xb1\xd5\x98\xf3\x2c\x0b\x2f\x78\x23\x14\x51\x23\x8c\x22\xa0\x40\xc2\x59\x63\xca\x67\x8b\xc9\x72\x66\x0f\xfa\xac\x83\xb4\xfd\x1c\x68\xe5\x8c\x0d\xbd\x0e\x8c\xe8\x92\x75\x0f\xb0\xdf\x54\x59\xd2\xae\xbe\xa8\x1b\xbb\xd9\x70\xd9\x6a\x8d\x56\x84\x10\x02\xd7\x3d\x43\x2f\xc5\x65\x98\xc6\xa1\x90\x8d\xf7\x71\x32\xd3\x86\x31\x56\xfa\x78\x1d\x77\x26\x69\x38\xe7\xd9\x69\xf2\x26\x59\xb0\x1e\x1d\xaf\xbe\xb7\x57\xfc\xa7\xac\xd4\xe3\x10\x24\x9e\x78\x5f\x52\x8b\x60\xe8\x15\xd7\x6c\xa2\x0c\x3e\xd6\x52\x3a\xb1\xe4\x69\x28\x93\xb4\x5f\x27\xf1\x6d\xae\xb0\x55\x50\xf7\x08\x5f\x4f\x5f\xdb\x0a\xcb\x67\x03\x63\x2e\x7e\xcb\x7e\x17\x8b\xb9\x6f\x5b\x17\xb8\x1a\x49\x89\x2c\x33\x94\x50\x61\x93\xbc\x7b\x20\x1e\x49\xbb\x6f\x84\x65\x6b\xa4\x4c\x82\x4e\x7e\x87\xbb\x2d\xc1\xfc\x40\x9e\x6f\xf5\x68\xda\x71\xfe\x58\x55\xfa\x96\x7d\xa3\x44\xb1\x68\xa4\xe0\x1a\xfb\x2a\x8d\xa5\x49\x23\x86\xdb\x63\xde\x65\xec\x3e\x56\xd3\xa0\x8e\x16\x38\xfc\x7d\xea\xa6\xf4\xee\x20\x41\xc5\xbe\xbf\x09\x82\xa4\x37\x50\x71\x20\x68\xd1\xc4\x60\xab\x4b\xfd\xf6\xa9\xb0\x6d\x0f\xb0\x00\x03\x3e\x94\xf0\x10\xbd\x2a\xd3\xfb\x77\x67\xfd\x68\x34\xca\x67\x00\xf5\xfd\x40\x70\xb3\xa2\x69\xe9\xf8\x14\xe4\xa0\x6e\xa6\x6f\x3b\xe1\xd4\x38\x32\x18\xe9\x71\x28\x6f\x3d\x2f\xb1\x20\x9d\x49\x3c\x93\x3c\xc5\x75\x66\x25\x6a\x8b\x1e\xf1\x6c\x9c\xc6\x0b\x99\xa4\x58\x50\x4e\xbc\x19\x86\x1d\x48\xd3\xce\x24\x49\x9f\x86\xe3\x29\x2e\x51\xef\x66\x7e\x86\x12\x9c\x27\x16\x97\xb6\x1b\xc8\x71\xbd\xaf\x6f\x8d\x43\x81\x89\x98\x4e\x9c\x69\x53\x31\x85\x66\x0e\x5f\x61\x4e\x7c\x36\x5c\xf1\xb0\x32\x1c\xd1\x14\xee\x70\xb6\xd5\xa3\xb1\x31\x6e\x02\x6c\x25\x3b\x5b\x21\xcd\x18\x1f\x56\xb6\xe2\x08\x93\x83\x2d\x9c\x32\x1c\xb2\xac\x23\xf8\x57\x89\x09\xe9\x44\x89\x00\xb3\x2f\x42\x5b\xda\x0f\xb5\xb8\x14\xa1\x8a\x70\xb6\x06\xf1\x15\x72\x47\x0e\x54\x95\xe4\xc0\xb0\xa3\xc6\xe4\x26\x01\x24\x81\x8d\x0b\x4a\x3d\xbd\xbe\x49\x35\xdd\xc2\x58\xd6\xd1\xfd\xc8\x73\xfb\x85\x0b\x9a\x3e\x9e\xe0\xc4\xe0\x84\xb1\xc3\x72\xc4\xca\xb8\x3d\xf0\x8e\xc1\x02\x6f\x3c\xbd\x5e\x70\x73\xc2\xbf\xd4\xcf\xc0\x8d\x50\x4a\x3e\x5f\xc8\x86\x4c\x1a\x11\xd7\x47\xc2\x32\xd5\x67\x3b\x74\xf9\xdc\x08\xff\x87\x62\xcc\x11\x59\xf9\x82\xf1\xb3\x3a\xf1\xef\x0d\xf3\xe1\x6d\x81\x2e\xd5\x0f\x9b\x26\xcd\x0c\x0f\x39\x90\x8f\xb8\xbf\x21\xd4\x52\x60\x6a\x3f\x39\x1e\xcd\xaa\x3a\x99\x50\x55\x65\x7e\xd4\xb6\x36\x4c\x60\x95\x19\x0d\xf5\x33\x42\xe3\xd0\xee\xa2\x91\xda\x25\x6b\x37\xb6\x95\xe9\x30\xb7\xb4\x5b\x40\xba\x23\xe0\x82\x87\x93\x4a\xfd\x77\x1f\xd9\x6c\x91\xf2\x30\xba\x6d\x50\xcd\xe5\x7f\x5e\x7b\xf9\xbf\x03\x97\xa4\x26\xcb\xb8\x36\xcb\x5b\x3f\x4b\x3d\x0a\xf1\xb7\x9f\x25\xaa\xcd\xf2\x52\x5a\x63\x49\x4b\xff\x61\x77\x45\x17\x0a\x6f\x9b\xa8\x7f\x91\x66\xa4\x4c\xd9\xcd\x3c\x4c\xbf\x04\x4b\x3a\xe7\x61\xb6\x4c\x79\xb0\x5c\xc1\xe6\xa9\xe5\x05\x5f\xc5\x22\x4a\xae\x9a\x4d\xbc\x60\xfa\x93\xd0\xda\x7c\x51\x32\x86\x49\x6a\x36\xf1\x84\xd9\xc0\x86\xbc\x83\xa5\x84\x8b\xfb\xf8\x3c\xe3\xe9\x25\x57\xb7\x43\xc4\xaa\x91\x1b\xca\x2e\x78\x0a\x42\x3e\x62\xcc\x9b\x4d\x3c\x65\x5e\xd8\xb2\x8a\xdf\x4b\x72\x03\x22\xd7\xe7\x0c\x2f\x3a\x22\xbc\x8c\x2f\xd4\xf2\xca\xf3\x9b\x15\xe9\x2c\x33\x9e\x1e\x5e\x70\x21\xe9\x9c\x39\x14\xea\xbc\x8f\x50\x70\x4e\x07\x6c\x41\x2f\xd8\x84\x5e\xb2\x88\x5e\xb3\x29\x3d\x64\x78\xd0\xb1\x7d\xa1\x5b\x5b\x17\x2e\x60\x5e\x2d\x9a\x4d\x15\x39\xe5\x61\x54\x7f\x69\x5f\x74\xc2\x28\x7a\x7a\xc9\x85\x7c\x15\x67\x92\x0b\xd5\xd5\xfa\x7c\xa5\xc7\x10\x42\xaf\xd8\x7f\xe6\x0e\x55\x45\x83\x93\x97\x4f\x11\xc9\x73\x3f\xee\x34\x8d\x23\x2e\xe4\x0e\x22\xf4\x1b\xeb\xed\xd3\x33\x86\x26\x21\xa2\xc7\x0c\x65\x97\x17\xed\x58\xcc\x62\xc1\xdb\x6d\x15\x75\xca\x50\x14\xca\xb0\x3d\x09\xdb\xf1\x6e\x76\x79\x81\xe8\xd7\x22\x66\x91\xf1\x65\x94\xb4\xb9\xae\x18\xd1\xd7\x9b\x92\xda\x0b\x0e\x0f\xf6\x88\xbe\x32\x59\x16\x29\x9f\xc4\x5f\x11\x7d\x6a\xc2\xf1\x38\x11\x88\x9e\x30\x34\x49\x84\x0c\xaf\x78\x96\xcc\xb9\xad\xf1\xdf\x0c\x01\xa5\x8f\xe8\x13\x36\x44\x2f\x4e\x07\xaf\x10\x45\x2f\x9e\x1e\x1e\x21\x8a\x4e\x4e\x3f\xbe\x7a\xaa\x7e\x9f\xbc\x7d\xf9\xe6\x14\x8d\x68\x49\x93\x1e\x0e\x55\xa3\xd8\xed\xcd\xaf\x89\xea\xc1\x13\xc0\x07\x76\x33\x09\xb3\x00\x65\xc9\x2c\x8e\x10\x9d\x84\x69\x80\x52\x7e\xb1\x9c\x85\xa9\x0a\xcd\x02\x34\x8b\x2f\xa6\x52\x7d\x47\x01\x8a\x96\x89\x04\x33\xef\x93\xf0\x3c\x40\xe7\x69\x08\x1e\x34\x27\xa1\x2d\xbf\xa2\x47\xec\x06\x3e\x03\x34\x09\x33\x44\x0d\x28\x15\x4a\x11\x05\x50\xea\x7b\x86\xa8\x01\x05\x0f\x92\x88\x6a\x50\x2a\x70\x8e\x56\xf4\x37\x35\x21\xed\x59\x78\xcd\xd3\xac\x2d\xf9\x57\x89\xe8\x1b\xb6\xf3\x2c\x11\xb2\x71\xa8\x07\xa7\xf1\xa0\x81\x4f\x54\x3d\xf9\x5b\x5d\x43\xfe\x4a\xc1\xce\x8f\x34\xd4\xfc\x37\x80\x97\x3f\x4b\x39\xcf\xdf\xa4\x09\xd9\xa1\x6f\xd9\xcd\xaf\xdd\xae\x69\xd6\x7d\xfd\x95\x22\xaa\x65\x2d\x4c\x60\x4f\x47\xcf\xd0\x8a\xfe\xc5\x86\x3d\xba\x4b\xf7\xe8\x7d\xfa\x80\xee\xd3\x87\xf4\x17\xfa\x2b\xed\x75\x47\xf4\x6f\xf6\x97\xc5\x21\x86\xbd\x1e\xed\xed\xd2\xde\x1e\xed\xdd\xa7\xbd\x07\xb4\xb7\x4f\x7b\x0f\x69\xef\x17\xda\xfb\x95\xee\x76\x47\x84\xbe\x64\x43\xfd\xec\xa8\x3d\x40\x17\xf3\xee\xcf\xba\x5b\x34\x32\x0d\x45\xa6\x36\xa4\x17\x37\x0f\xb3\x2f\x68\x44\xdf\xb1\x9b\xe7\x6f\x8f\xdf\xbd\x09\xd0\x45\x9a\x2c\x17\x88\x9e\x7c\x38\x7c\x73\x76\xfc\xe6\xf0\xc9\xcb\xd3\x8f\x01\xca\xae\xc2\x45\x3b\x59\x84\xe3\x58\x5e\x23\xfa\xe6\xed\xcb\xc1\xe1\xdb\x8f\x01\x5a\xa4\xf1\x3c\x4c\xaf\x11\xd5\x22\x01\x10\xa7\x05\x4d\x55\xec\x8a\xbe\x60\x43\xf4\x15\x5c\x05\xab\x2a\x67\x17\x88\xa2\xc9\x15\xa2\x68\x39\x53\xc1\x18\x51\x74\x9e\xa4\x11\xf8\xc6\x5e\x2c\x67\xb3\xf6\x8c\x4f\xa4\xfd\x4e\xf5\xaa\x40\xd9\x22\x16\x3a\x2e\xe3\x88\xa2\x34\x91\xa1\xe4\xed\x5f\xbb\xc5\x77\xef\x17\x2f\xb0\xfb\x50\x05\x26\xb3\x78\xd1\x9e\x26\x69\xfc\x4d\x2d\xf7\x99\x8d\xb9\xe4\xa9\x8c\xc7\x45\xf8\x3c\x91\x53\x55\x85\x0c\xc7\x5f\xec\x6f\xbb\xf7\xd5\x7d\xee\x7e\x85\x37\xdb\x4b\x9e\x42\xdd\x7a\xbd\xb8\x0f\xb3\x70\x6c\x68\x9c\x2c\x05\xc8\xb4\xbd\xeb\xc0\x50\xd2\x77\x1d\x7f\x10\xe9\xbb\x8e\x19\x37\x95\x60\xc7\x6b\x64\xa7\xfa\xaf\xce\x3c\x5c\xd4\x61\x83\x08\xd9\x2c\x9c\xa2\xaf\x48\x61\x71\xc4\xc6\xfc\xbd\xb1\xd0\x55\xbb\x28\x06\x45\xe8\x33\x36\xe8\xa8\x05\x6e\xd6\xf7\x13\xc0\xb7\xd5\xb1\xab\xe8\xd5\x8b\x4d\x47\xdf\xbf\x97\x3c\xbd\x3e\xe1\x33\xae\x28\x1a\x72\x33\x1c\xda\x85\x33\x8f\x67\xd7\xc5\x6a\xd3\xe1\x37\x3a\x38\xa2\x26\x97\xa1\x20\xe1\x84\xb2\xab\xd4\x8b\xd3\x2f\xe9\x2e\x77\xb8\x94\x89\x2d\xd2\x86\x83\x09\xa9\x28\xf3\xe8\x76\x72\x79\x51\xc9\x1a\x46\x51\x7b\x0c\x30\x55\xf0\x30\x8a\x9e\xac\x41\x0b\x7b\xbd\x6b\x9b\xae\x3e\x5d\x6a\xc6\xc3\x74\x3c\xad\x9c\xa2\xb0\x50\x21\xe1\x0d\xc4\x3f\xb5\xd1\xae\x58\xa2\xaf\xbf\xf6\xdc\x5c\x87\xaa\x84\x89\x1b\xb8\x28\x97\x1b\x72\xf1\x76\xb8\x58\xa4\x49\x38\x56\x0b\x4d\xc7\x1c\xda\x08\x97\xf3\x0b\xe7\x8b\x76\x92\xc6\x17\x0a\x05\x6d\x6b\x7b\x5f\x88\x22\x15\x7d\x6c\x62\x4f\x74\x64\x01\x5c\xa3\x07\x6d\xef\x8a\x55\x15\xe8\xd8\x37\x5e\x64\xd1\xe7\x69\x72\xd5\x9e\xc7\x59\x16\x8b\x0b\x38\x19\xa0\xbf\xd3\xe4\x6a\xa0\xe3\x5e\x42\xd4\x68\x54\x43\x47\xb8\x07\x2c\x45\x2c\xec\x12\x2a\x98\x1c\x76\x15\x9e\x2f\x87\xbd\x51\x89\x51\x55\xac\x5a\xa3\x22\x33\x09\xd5\xbe\x35\xd6\x96\x91\x4c\x97\xdc\xa4\x28\xb4\x6f\xbd\x82\xca\x8a\xc3\x48\x13\x3d\xe0\xe6\x03\x8d\xf4\x2b\x97\xb3\xce\x01\x24\xd2\xa1\x94\x69\x7c\xbe\xd4\x6f\x9a\x58\x28\x3c\xcb\x3e\x35\x26\xcd\xa6\x61\x9f\x27\xcd\x26\x7e\x36\x4c\x47\x2c\x01\x2a\x48\xd5\xf5\x9e\x65\xf8\x66\x45\x6f\xfc\xa5\x1b\x9c\xd1\xea\xfa\x0c\x8e\x69\x79\x15\x2a\xe2\xb4\x58\x70\x2e\xd4\xeb\x5d\xab\xef\xba\xf5\x13\x6c\xf5\x68\x75\x95\xa8\xbc\xe5\xd5\x10\xd8\x4b\x78\x7d\xd6\x21\xf3\xda\xcc\x2a\xb0\xd5\xe9\x53\xd4\x32\x7d\x46\x0e\xde\x77\xca\x8d\xce\x73\xfc\xbe\x53\x6d\x03\xdb\xea\x69\xa4\xf4\xa3\x1e\x8a\xf7\xe4\xa0\xe6\x88\x60\x1f\x21\xcf\x73\x36\x80\xc3\xe2\x79\xe7\xec\xec\xec\xd9\xf1\xeb\xd3\xb3\xc3\x0f\x4f\x4f\x8e\x07\x4f\xcf\xce\xce\xf2\x1c\xd7\x45\xb3\x9b\x15\xa1\x75\x09\x9d\x4c\x5e\xcf\x78\xb6\xa1\x98\x49\xdd\x5c\x1a\x1e\x1f\x36\x15\x86\xc4\x5b\x6a\x9e\xc6\xf3\xcd\x15\xab\x44\x36\x1c\xe9\x51\xf9\x83\xd5\x65\xa2\x7f\x2a\x0a\xf7\x27\xb6\xd5\x2b\x98\xb9\xbf\xab\xf5\x7b\xd8\x6c\xe2\x9f\xfa\xc6\xfd\x54\xb2\x54\xc7\x75\x97\x04\x7f\x6a\xca\x95\x13\xb2\x52\x19\xf0\x4f\x0c\xaf\x21\xaa\x9d\x28\x39\x19\xa7\xc9\x6c\xd6\xdf\xf9\xd7\x2c\x09\x23\x1e\xe5\xff\x1a\xef\x04\x45\x20\x56\x61\x63\x8c\xef\xa2\xa3\x48\x9e\x6b\x78\x55\x21\x24\xcf\xd7\xb1\x58\x8c\x8e\x8e\x07\x4f\x12\x21\x41\xfe\x54\x41\xf0\x68\x12\x10\x2d\x51\x30\xe6\xc9\x25\xff\x6e\x31\x4e\xe8\x4f\xac\x47\xff\xdc\x74\xcd\x28\x68\x2b\x10\x28\xd7\x43\xf6\x89\x72\xce\x90\x43\x46\x25\x67\x28\xe3\x52\xce\x14\x2c\xc1\x19\x9a\x2c\x67\x93\x78\x06\xc1\x94\x33\x94\x72\x45\x2d\xaa\x50\xc2\xcb\x74\x51\xcc\x59\x2d\x81\xc1\x9b\xcd\xfa\x78\x45\x72\x8e\x79\x96\xd5\xdf\x63\x2e\xb9\xc3\xe7\xb1\xa4\x61\x09\x7a\x91\x2d\xf5\xa6\x2f\x48\x29\x18\xdb\x29\x66\x79\xac\x86\xce\x92\xdb\x9c\x75\x0f\xf8\xa3\xcc\x51\xd6\xbc\xd5\x22\x19\x1f\xf2\xd1\xb0\x3b\xc2\xfa\xa3\x37\x22\x07\xda\x94\xcf\x27\xb6\xd5\xf3\xc8\x7b\xed\x2d\xf1\x26\xe3\x7a\x6d\x0c\x39\x95\x23\x42\x3f\xe5\x39\xfe\xc4\xd4\x71\xc2\xf1\x98\x83\x00\xbc\x2b\xb2\xe4\xbe\x0c\x41\x72\x25\x78\xaa\xce\xe0\xce\x19\x48\x1b\xa8\x73\x58\x2b\x5a\xd1\x04\x98\xdf\x20\x09\x27\xa7\x5c\x6c\x7a\x90\x4f\xc8\x8d\x60\x82\x03\x61\x99\xb2\x04\xa7\x3e\x75\x36\xe5\x38\xa6\xef\x25\x59\xad\x16\xea\x2b\x25\x79\x8e\x05\x63\x4c\xf0\x66\x73\xa2\x63\xa8\x0a\xa7\xbc\xd9\x9c\xea\xb0\xd7\xd4\x05\xf7\x98\x41\x50\x41\x3c\xc1\x1c\x38\xe1\xb5\x54\xfd\x61\x63\x91\x26\xf3\x38\xe3\x19\xbc\xc8\x9e\x87\xe3\x2f\x8d\xb1\x7e\x7f\x73\x1a\x41\xa1\x6c\x64\xe1\x9c\xdb\x9c\x1d\x73\x0d\xa8\x0b\xa5\xee\x55\x30\xcf\x3d\xdf\x8e\x09\x96\x84\x38\x4e\xe9\xad\xa3\x92\x3a\xbb\x33\xd6\x44\x6d\xb1\xe4\x53\x72\x23\x60\x1c\xb6\xba\x54\xaa\xce\xf7\x23\x0e\x7c\xe9\x60\xa2\x7f\xc9\x8a\xd0\x12\xe3\xcd\x65\x9f\xea\x11\x01\xb5\x8b\xad\xee\x6a\x8d\x4e\x6a\x88\x3c\x87\x3c\xef\x25\x64\x70\xd4\x93\x1b\xd3\x89\x19\x53\xbe\x05\xe6\x76\x16\xd6\x05\x67\x64\xfc\x6e\xba\x8c\x91\xcd\x68\x56\x86\xba\x69\xc1\x98\xb6\x0d\x4b\xae\xad\x36\xc8\x90\x49\x3a\xe3\x78\x0e\x5e\x19\x0a\x00\xd3\x1f\x05\x30\xa8\x00\x38\x87\x95\xca\x3b\x67\x6a\xa0\x99\xf9\x75\x18\xc5\xd2\xe7\x6f\xcf\x6d\x56\x0d\x59\x70\x7a\x5e\x96\x4b\x1a\x70\x35\x8e\x76\x95\xb3\x14\x32\xa8\x31\x92\x9d\xb3\x69\x28\xa2\x19\x8f\x9a\xcd\x18\x84\xbd\xfc\xed\x8d\xd1\x52\x98\xe4\xb7\x70\xc0\x80\x79\x6e\xbb\x43\xfc\xe1\xba\x80\x0a\xaa\xa5\x53\x5b\xe8\x85\x06\x82\x4a\x65\x2e\x39\xde\xfc\xbc\xcc\xeb\xd7\xf8\x1b\xbd\x6e\x1b\x29\xcf\x92\xd9\x25\x4f\x1b\x80\xcd\x34\xe2\x0c\x1e\x8a\x43\xc7\xe4\x33\xeb\x7a\x1a\x67\x8e\x8b\x95\x4c\x1a\x97\x6a\x16\xb6\x7a\xf5\xa0\x9f\x85\xf1\x8c\x47\x0d\x09\x22\x08\x9a\xcd\xd8\xf8\xd9\xd4\xf7\x73\x50\x52\x76\x9a\xf2\xc6\xcf\x82\x5f\xfd\xdc\x48\x16\x9a\xa5\x47\xb5\x20\x80\x61\xe4\x79\x2f\x17\x76\x03\x16\x52\x12\x61\xe6\x35\x53\xed\x3f\xfd\x5e\x0c\x93\x3c\x1c\x6d\x96\xe5\xe4\x70\x9c\x48\xca\xc9\x4a\x1d\x05\xbc\x7c\x89\x4c\x4c\x12\xa1\xc2\x3f\x80\x04\x86\xd3\xc7\xda\x40\x5f\x5d\xfa\x6f\xb4\x37\x5e\x3b\x83\x4b\x4e\xf5\xe2\x08\x38\xa7\xd0\x1a\x10\x2d\xa3\x30\xd5\x81\xc6\x03\xa9\x5d\x2b\x0a\x5f\x82\x2c\x75\x5c\xeb\x1b\x38\x54\x8d\xb3\x6e\x80\xc3\xaf\x1a\x55\x99\x37\x9c\x70\x42\xdd\x1d\x16\x70\x6a\x2f\xb0\x40\xae\x9c\xb3\x92\x66\x73\xcb\x19\xf7\x35\x35\x3b\x7b\x3d\x26\x5c\x08\xa0\xd9\x4d\xa6\xce\x52\xb5\x92\x67\x1c\x5f\x98\x6e\x93\x4a\x16\xe1\xa0\x16\x85\xfa\x33\x8e\x97\x9c\x0a\xeb\x92\x04\x36\x1b\x5c\x2a\x82\x50\x01\x87\xdd\x8a\xc2\xc0\xd6\x3d\x66\x41\x19\x95\x47\xeb\x0d\x81\x7a\xf4\x25\xef\x84\xb3\xd9\x9a\xae\xe6\x1a\xdf\xb9\x76\x31\x7e\x4c\x96\x8d\xf9\x32\x93\x8d\x45\x98\x65\x8d\x50\x34\x40\x0a\x5e\x2d\x4e\xb3\x22\x15\x6c\x4c\x3a\x85\x9d\x71\x05\xe0\xd2\x5f\x15\x9e\xcc\xc2\x50\x51\x16\xdd\x03\xff\x3d\xac\xb0\x0c\xd2\x6a\x15\x8b\x4e\x90\x9b\x54\xab\xec\xb4\xdb\x49\x9e\x4b\x0c\x0f\x54\xde\x63\x43\xf7\x20\x2b\x78\xe0\x59\xab\x45\x70\xc8\xf8\x30\x1b\x91\x7a\x6c\x21\x84\x41\xe9\xeb\x1f\x1c\xe3\x8c\x80\xad\xf2\x61\x36\x62\xe1\x81\xad\x80\x10\x18\xac\x34\x1c\xaf\x6b\xb6\xfe\x4f\x8d\x96\x02\x7e\x87\xe1\x72\x92\xcc\x54\x1b\x79\x77\x5d\x4d\x54\x57\x53\xc6\x87\xc9\xa6\xae\xa6\xba\xab\xfa\x47\xdb\x64\x2f\xf5\x4e\x1f\x58\xb5\xea\xc8\xcd\x66\xe9\x96\xd5\x1e\xf1\xcb\xcf\x9f\x97\xbc\xcf\x83\xf5\x36\x93\x1b\xc3\x94\x30\x75\x94\xdd\x9f\xf2\x92\x4b\xd1\xf5\xde\x0a\x53\x16\x10\xce\x6b\x5e\xfb\x00\x6c\x06\xb0\x6f\x7e\xd5\x39\x71\xc8\xd9\x37\x7a\xc5\xd9\x4d\x16\x7f\xe3\x41\x6f\x9f\x7e\x0d\xba\xf4\x3a\xe8\x52\xcd\x37\x0a\xba\x74\x32\x8b\x17\x7f\xa9\x43\x42\x7d\x7c\x0c\xb6\x7c\xf3\x34\xdf\xec\xa9\xcf\x9b\xcd\xc3\x82\x56\x2d\x4b\xc9\x23\x20\x5c\x40\x96\x27\xf3\xe9\x52\x04\x22\x3e\x14\x49\xfe\x55\xee\x8c\xb3\x0c\x11\x10\x75\x10\x3c\x7d\x71\x3a\x78\xc5\x78\xe1\x57\x9a\x69\x7e\xb5\xd6\x4a\x78\x9d\x44\x3c\xa3\xa9\x7e\x17\x48\x98\x7d\xef\x6a\xf7\x0e\x92\xc7\xea\x5f\xbb\x6d\xc5\x2e\xc4\x30\x19\xd1\x90\xe1\xb8\x23\xc3\x0b\x2d\x80\xa7\x6d\x71\x79\x56\xf0\x0f\x86\x8e\x97\xfb\xea\xe5\xeb\x3f\xd0\xc8\x71\xab\x43\xf2\xb8\xdd\x83\xb7\xcb\xd8\xbd\x0f\x9a\x76\xc4\x22\xe3\xa9\x91\x79\xc2\x52\x21\x7e\x5c\x5b\x17\x3a\xe3\x0c\x75\x7b\xbb\x7b\xf7\x1f\xec\x3f\xfc\xe5\xd7\xf0\x7c\x1c\xf1\xc9\xc5\x34\xfe\xfb\xcb\x6c\x2e\x92\xc5\xbf\xd3\x4c\x2e\x2f\xaf\xbe\x5e\x7f\x3b\xfc\xed\xc9\xd1\xd3\x67\xcf\x5f\xbc\xfc\xfd\x8f\x57\x83\xd7\xc7\x6f\xfe\x7c\x7b\x72\xfa\xee\xfd\x87\xbf\x3e\x7e\xf2\x64\x61\x8e\xcb\x88\x75\x6f\x57\x3b\x0c\xe5\xed\x76\xe3\x71\xf7\x80\xc8\x16\x3b\xe3\xc3\xfd\xdd\x6d\x6d\xd1\x22\x14\x51\x32\xc7\x24\xef\x16\x76\xfd\x8b\xdb\xf9\x94\x97\x9f\x85\x87\x23\x2a\x18\xe6\x79\x3e\x1c\x11\x33\x7e\x8f\x1f\x3f\xee\x1e\x88\x76\xfb\x80\x48\x2b\x2c\x52\x03\xe8\x2b\x2f\x99\xf9\x07\xee\x95\xa2\x94\xfa\xaa\x86\x22\x48\x02\xcc\xcb\x4c\x08\xc3\x8e\x25\x7a\x0a\xb2\xc5\x4c\xa1\x14\x0d\x74\xeb\x7b\x2f\x5f\xf9\x28\xd4\x6b\x5e\x76\x61\x2f\x2d\x94\x36\x22\x34\x61\xe9\xb0\xab\x10\xfc\xd4\xb9\x1e\xe8\xfc\x9d\xc4\x02\x52\x9d\xd4\xce\x96\xe6\xbd\xa8\x1d\x11\x03\x1a\x1a\xd3\xff\xbc\xf0\xa4\x6b\x8c\xc7\xb5\xb8\xa8\xf4\x15\xaf\xe5\x38\x7a\xd6\x84\x9a\x3b\x17\x14\x35\xc3\xf9\xe2\xc0\xb3\x9f\xb9\x83\x20\xf6\xdf\xcb\x44\x96\xa2\x7f\x86\xe8\xff\xb3\xf7\x6b\x29\xf6\x11\xc4\xce\xca\x59\x1f\x43\xe4\x85\x8a\x2c\x9a\xf3\x94\xaf\x3f\x87\x6b\xa9\x26\xfd\x50\x94\xf2\x68\x39\x5e\x3b\x1a\x9c\xa5\x92\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\xa2\x8e\x90\xaa\x8a\x50\xe4\x57\x78\x52\x9e\x6f\x75\x48\x6c\x31\x76\xa5\xbf\xf2\x9c\x77\xbe\xea\xe0\x57\xf5\x7d\xad\xbf\xaf\xd5\xb7\x3e\x3e\x74\x84\xfe\x56\xb1\x70\x96\xd8\x8f\x8f\x9e\xf9\xb2\x12\x21\xe7\xf8\xf1\xa0\xc8\x64\x64\x48\x79\xfa\x21\x8e\xe4\x94\xa6\x8c\x77\xe2\x71\x22\x74\x28\x61\x37\x2e\x77\x80\xe0\x73\x16\xaa\xe5\xe6\x3a\xba\xb3\x4b\x51\x63\xf7\xc1\x3e\x41\x64\x45\x63\x56\x97\x67\x6f\x77\x5b\x76\xbe\x52\x44\xbd\x11\x81\xb8\x6b\x8a\x48\x03\x11\x1a\x32\x94\x69\x1f\xb3\x36\x59\xc2\x00\xec\xf4\xf6\xb7\xb1\xd4\xbd\xea\xb7\x7b\x41\x8f\x94\x81\xac\xe5\xfa\x68\x73\x01\xd8\x8c\x19\xee\xbc\x0f\x57\xc7\x50\xd4\xe8\x36\xba\xc4\xad\xdd\x9b\x64\x29\x79\x1a\x24\x5a\x83\x2d\xf0\x3b\xed\xca\xc6\x14\x79\x75\x87\xa5\x50\x46\x56\x74\x11\xca\x69\xf0\x9d\xe1\x4a\x77\x76\xb7\xdb\x3d\x8a\x1a\x6d\x33\x64\xfa\x5c\x7b\xc2\xd9\x8d\xbd\x18\xae\xd4\xc0\x07\xa8\xd7\xed\xde\x43\x74\xca\xf5\xcb\x12\x84\xbc\x8b\xe1\x8b\x37\xa1\x5b\xb8\x2a\x81\xf2\xb8\xe7\x29\x3e\x14\xf2\x26\xbd\x11\xc9\x73\x3f\x58\x18\xdd\x0b\xed\x41\x92\x01\xd5\x55\x04\xd5\xf9\x31\xcb\x73\x70\x1b\xb3\x16\xcf\xd0\xf9\x2c\x1c\x7f\x41\xc4\x97\x90\xf9\x50\x5a\x6b\xc0\xf0\x05\xa6\xc1\x3c\x8c\xf5\xb1\x32\x0f\xb3\x2f\x34\x01\xa5\x04\x3e\x89\xbf\x02\xd7\x40\x65\x03\x55\xb9\xb0\xb4\x3e\xc7\x8c\x77\xb4\xb8\x12\x68\xcd\xc9\x58\xce\x38\xa8\xcc\xf1\xaf\x32\x0d\xe9\x82\xf1\xce\x95\x42\x33\xc3\xf3\x19\xa7\x13\xe6\xfa\xbc\x68\x36\x17\x34\x62\x69\x67\x92\x2c\x45\xd4\x4f\x03\x41\xa7\x2c\xea\xc0\xd0\xd2\x73\x16\x75\xf4\xb8\xd2\x39\xbc\xc7\x79\x8f\x16\x85\xf5\xbf\xe9\xce\xf9\x36\x28\x00\x0d\xd8\xf0\x63\xa7\xca\x9e\xa5\x71\xbf\x58\x18\x1f\x3b\x3e\x33\x97\xaa\x23\xd1\xad\x19\x30\x81\x36\x1f\xdd\x72\x0c\xb7\x7b\x8c\xb1\xa5\x3e\xdb\x79\xe6\x4e\x4b\xc0\x36\x2c\x18\x97\x6c\x4f\x5d\xb5\xbc\x2f\x58\xa1\x0a\x3a\x1c\xd1\x62\x6e\x02\x60\xab\x2e\xbd\xd9\xa2\x37\xa5\x67\xba\x20\xf1\x1f\xea\x82\x58\x6b\x78\x06\x03\x9a\x26\x33\x1e\xf8\x05\x3b\x2a\x26\xcf\x51\x3c\xbf\x40\xf4\xeb\x7c\x26\xb2\x00\x19\xd7\x55\x57\x57\x57\x9d\xab\xbd\x4e\x92\x5e\xec\xec\x76\xbb\xdd\x1d\x78\x3a\xb9\x8c\xf9\xd5\x6f\xc9\xd7\x00\x75\x1b\xdd\x86\x1b\xa0\x69\x69\xaf\x9c\x93\x15\x59\x1d\x4c\x9a\x4d\x7c\xe1\xd5\x34\x3c\x1d\x31\x84\x08\x9d\x35\x9b\x17\x4e\x3d\x52\x13\x15\x5a\xdf\x13\x26\x1f\xf9\xdd\xbc\x89\xa3\xa0\x04\x02\x85\x69\x1c\xb6\x67\xe1\x39\x57\x84\xd2\x39\x18\x1b\xd1\xe5\x8a\x19\x56\xb7\x3e\x59\xd1\x62\xe4\x66\xa3\x95\xe6\x22\x5e\x6a\x76\xf4\x05\xbd\xd1\xc3\xa4\x4e\x03\xb3\x2c\x83\x98\xaa\xe5\x1b\x08\xaa\x16\x6f\x90\xd2\x62\x97\x87\x54\x2f\xd0\x60\x4c\x35\x03\x39\x58\x1a\x4e\xf2\x8a\xd0\x6b\xbb\x04\x9b\x4d\x61\xd6\xe2\xda\xdb\x83\x3e\x84\xad\x3e\xa8\x3a\x7e\xbd\x79\x53\xdb\x04\x36\x4e\x0c\x1f\xd9\x97\xb5\x0d\x92\x98\x55\x3d\x63\x09\xec\x22\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\xbf\x39\xbe\xf1\xdb\x5c\x3e\xf4\x83\x25\x75\x47\x7e\x30\x5e\x11\x1a\x31\x3d\xe6\xa9\xc2\xb3\xd7\x56\xd6\x13\x4e\x6f\xd4\xf6\x0f\xd0\xd5\x34\x96\x1c\xad\xc8\x8a\x4e\xd9\xcc\x75\xa2\xef\xab\x28\xbb\xa9\x9c\x87\x0b\xfc\x85\x93\x55\x70\xb3\xa2\xe7\x06\xfe\xc5\x3a\xf0\x89\x46\x51\x89\x37\x43\x5f\x38\xce\xf4\x22\x98\x81\xfa\x6d\xb5\xc8\xcc\x1f\xb1\x49\x47\x9d\xc3\xaa\x45\x84\x8c\x56\x74\x7e\x5b\x4d\x70\xe8\xfb\x35\x9d\x8f\x56\x74\xc0\x90\x1a\xe8\xca\x8a\xa1\x17\x0c\x8d\x67\xf1\xa2\x1a\x7d\x69\xe0\xc3\x7b\x76\xed\x48\xc5\x51\x30\x80\x65\x03\x46\x0f\x02\xb4\xcc\x78\x7a\xb2\x08\xc7\xfc\x58\xbc\xcb\x38\x82\x24\xc3\xff\xae\xcf\xb1\xf2\x5b\x18\xd1\xf9\x68\x45\xaf\x4d\xad\x11\x9f\x64\xc8\x4b\xd5\xb1\xaa\x9d\x6f\x42\x39\x5d\xdf\x2c\xde\xba\xc7\x92\x2d\x28\xd2\xae\x2c\xd5\xa8\xf6\x65\xa7\x80\x23\x47\x8a\x48\x1a\xad\x1c\x01\xa8\x37\xe2\x35\xdd\xbc\x2c\xf4\x82\x00\x99\x62\x21\x9f\x24\xb3\x24\x05\xd5\xe4\x78\xd1\x56\xf3\x81\x02\xb4\x4c\x67\xf8\xff\xb8\xd1\xbb\xa0\x88\x20\xa2\xb7\x53\x25\x69\x00\x49\x6a\xf0\x14\xba\x54\xac\x25\xe1\xd7\x98\xae\x56\xf8\x92\xd4\x99\xd7\x2d\xf6\x92\x28\xef\xa5\xd4\xee\xa5\xa4\xb4\x85\x62\xa6\xb0\x3e\xb3\x67\x81\x13\x66\x85\xc4\x1f\x77\x41\x06\x10\x52\x58\x4c\xe8\x09\xc7\x89\xe1\xe9\x86\x95\x1d\x95\x54\x77\x54\x6a\xf6\x60\xb1\xaf\x4c\xcc\x4a\xd1\x69\xde\xb1\x56\xb3\x30\xc3\xf5\x85\x79\x4b\xde\xb5\xed\x02\x79\x53\xd8\xf9\xb0\x5d\x5c\x8a\x89\x73\xe3\x53\x85\x65\xd2\xbd\x21\x0b\xcd\x66\x1a\xad\x46\x2b\x63\x93\xc4\x34\x5e\xe7\x75\xe8\x93\xab\x43\xfa\x50\x05\x4c\x12\x3d\x64\xd7\x45\xa5\x57\xec\xda\xab\xc1\x2e\xb0\x4b\x97\x81\x1d\xd2\x4b\x2f\x03\xbb\xa2\xe3\xf5\x33\xb3\x40\x1e\x84\x8f\x3c\xa4\xfe\xec\x27\xe5\xd9\x8f\x1d\x2a\x61\xea\x34\x63\x0a\xd7\x96\xbf\x4f\x60\xba\x03\x64\xf4\xca\x82\x86\x48\x04\x3f\x40\xab\xb5\xc9\x30\x62\xd4\x6b\xa3\x98\xc0\x96\x07\x8f\x13\x3e\x92\x20\x4b\x78\xc1\x2d\x28\x83\x20\x41\xec\x6f\xf9\x14\x46\xff\x4e\x8b\xdd\xa0\x58\xbc\x40\xb1\xaa\x03\x00\x8b\xbc\x7c\x87\xa8\x15\x7f\xc2\x71\x48\xdc\x1d\xd5\x6c\x6e\x99\x6b\xcb\xaa\xd9\xdd\x7c\x0d\x84\x5e\xbe\x3b\xc2\xe0\x4e\x3b\xbb\xf4\x3a\xe8\x3c\x58\x1d\x24\x66\x83\x3c\x85\x53\x7a\x45\x63\x7a\x83\x1c\x70\x23\x5d\x80\x3c\x34\x7a\xdc\xf9\xda\x0a\x3b\x5f\x77\x7a\xfb\x14\xf1\xb9\x87\x17\x8c\x3b\xd7\xad\xb0\x73\x6d\x12\x90\x27\x37\xbc\x61\xaa\x92\x62\x90\xa4\x1e\xa2\x02\x0b\x3d\x2a\x61\xa1\x63\x7d\xbe\xc2\x20\x5d\x39\x32\xc7\x20\x81\xd5\xe3\xc0\xe2\x99\xa1\xc3\x33\xc7\x25\x3c\x73\x56\xe0\x99\xe3\x66\x73\x4c\x97\xcc\xec\x44\x7f\xb0\xfb\x37\x00\x24\x88\xe1\xbe\xd3\xa6\x0b\x82\xd0\x61\x79\x0e\x8b\x5b\x91\x83\x59\xb3\x89\x97\x06\xfd\x01\x44\x64\x61\x01\xda\x33\x09\x0e\x9e\x66\x13\x2f\x8a\x76\xd6\xb8\x2b\xac\x12\x76\xb6\xa3\x4e\xa2\x51\xf4\xbf\x05\x7a\x5f\x98\x9e\xc7\x45\x5a\xd2\xff\x16\x24\xd0\x65\xf0\x34\xfe\xc4\xd8\x6f\xa0\x59\xd1\xd9\xb0\xd9\x54\x43\x51\x98\xcc\x1d\xb7\x58\xd6\x6c\x5e\xf5\xeb\x08\x1d\xd9\xf9\xba\x73\xc8\xdb\xa9\x22\x0f\xf9\xbc\x4c\xb4\x5d\xab\x94\x58\xa7\x28\x42\x2d\xc8\x7c\x10\xe3\x70\x36\xc6\xed\x07\xdd\x7b\x8d\x56\xa3\x02\x0e\x0a\xd0\x46\x29\x47\x05\x2e\x64\x01\xa0\x9b\x5b\x55\xdf\x22\xdb\x1a\x3a\x6e\x6d\x22\x47\x0f\xf9\x5d\xc8\xd1\x22\x57\x99\x1c\x55\x70\x37\xd3\xa3\x11\xbf\x50\xb9\x56\xe5\x5b\xa5\x34\x19\xa0\x9f\x00\x77\x89\xb0\x84\x61\xba\x22\x74\x31\x44\xed\x2b\x7e\xfe\x25\x96\x9e\xa4\xdd\x88\x79\x8b\x85\x18\xfb\xca\x4f\x39\x5e\x90\x83\x89\x7f\xbd\x19\x64\x95\x4d\x74\x9e\x88\x0d\x1d\x55\x18\xf9\xd7\x54\xb6\x08\x45\x69\xf3\x2d\xa9\x8f\x2e\xac\x08\x8d\x9b\xcd\xdb\x4b\x98\x4d\x80\xb2\xb4\x9d\x88\xd9\x75\xe9\x48\x8d\x15\x84\xa8\xd8\xbe\xbf\x6d\xdc\xbe\x7a\x6f\xa6\x6e\x6f\x26\xcc\xdc\x5d\xde\xee\x13\x76\xf7\x09\x7f\xf7\xa5\x75\xbb\x4f\x5f\xff\x69\x71\xfd\xfb\x83\x93\xb8\xbb\xff\x40\x5f\xfa\xc5\xe0\x84\xb7\x76\x35\xa9\x0e\x8e\x68\x36\x6f\x2f\x71\xdb\xe0\x08\x05\x21\x04\x46\xc1\x9b\x8a\xc0\xc2\x5b\xce\x3e\x76\xd6\x65\x74\x9a\xcd\xeb\x66\xf3\xba\x33\x0f\xd3\x2f\xf0\xab\x33\xf4\xaf\x03\x2d\xe5\xfd\x86\x3b\x31\xef\x37\x7c\x45\xff\xe2\xec\xe7\x67\x87\x0d\xf4\xa0\xd3\xeb\x75\x76\xd1\xcf\xf4\xef\x32\xeb\xfd\x2d\x07\x48\xb8\x38\xc3\xff\xe2\x25\x8a\x4e\x85\x38\x18\x76\x27\x54\x65\xd6\xb0\x6f\xc9\x4f\xe8\xad\xb0\xce\xf9\x45\x2c\x40\x2f\xfd\x0e\x35\xae\xe8\x4b\xce\x6e\xa0\x48\xdd\x6b\xd3\x9d\x1a\x6f\x2b\x24\xb4\x46\xce\x1e\x5e\x87\x57\x94\x8b\x28\xf8\x9b\xaf\xe8\xbb\x8d\x6e\x4b\xb5\x52\x5b\x45\x1b\x92\x8e\x99\x65\xcb\xf8\x37\x87\xaf\x03\x56\xa7\x07\x63\xb4\xe4\x7c\x5e\xb0\x71\x5f\x6b\x12\x56\x2b\xe0\x8c\x07\x52\xb3\xf1\x8b\x33\x1e\x27\xac\x47\xe1\xa1\x69\xd8\x1d\x8d\x48\x80\x13\xd6\xa5\x21\x13\xe4\x20\x79\x34\x86\xb7\x99\x90\xcd\x70\x48\xf9\x30\x66\xd9\x30\x19\x8d\x68\x4c\xb9\xe3\xe1\x86\x1e\x93\xe9\x45\x85\xab\x8d\x10\xd5\xda\x60\xbc\xa4\x0d\x26\x5b\x0c\xa3\x6e\xb7\x8b\x5a\x1c\x3c\x6f\x3c\x49\x22\x7e\xa8\xf0\x18\xa7\x85\x81\x7b\xfb\x84\x18\xc6\x71\xfb\x7e\xe1\xe7\xbe\xd8\xef\xcf\x7c\xe6\x33\x5b\x67\x68\xed\xd6\x32\xb4\x76\x7d\x6d\xaa\xdd\x51\x70\xb3\x22\x9d\xec\x4b\xbc\x78\x91\x24\x5f\x32\x77\xf3\x69\x43\x20\xea\xe2\xf3\x67\x46\xd6\x70\x73\xb9\xa7\xb9\x5c\xf0\xe7\xb7\xb6\x34\xb2\xdb\xe7\xc3\xd4\xe1\x9a\x23\xa6\xbf\x03\x3e\x14\x23\x96\x52\xae\x48\x95\x95\xaf\xbc\x55\x3c\xcf\xff\xa1\xa5\xc3\x3a\x61\x14\xbd\x09\xc7\x5f\xf2\x3c\xed\xff\x61\x0e\x9c\x21\x1f\xe9\xf3\xcb\x8b\xc8\x73\x85\x45\x92\xa0\x52\x0c\x73\x0a\xfa\xe8\xa1\xb5\x40\xf7\x8c\x63\x10\xef\x97\x46\xb0\x90\x33\x0b\x84\x7e\x84\xef\x69\x3c\xcf\xe8\x73\xce\x14\x78\xf8\xff\x27\xfc\xff\x69\xdd\xde\x72\xdd\x33\xd8\x3b\x8e\xdf\x73\x5a\x62\x75\xab\x95\x6e\xe7\x6e\x98\x8e\xd8\x3b\x8e\x05\xe5\xaa\xdf\x54\xea\xfe\xaf\x0e\x9e\x73\x56\x1e\xd2\x12\x8b\x7c\xb8\x37\x02\x43\x46\xea\x63\xc4\x04\x51\xe3\x46\x54\xeb\x6a\xca\xd8\x89\xd8\x2d\xf8\x94\x6a\xac\xc5\x26\x95\x33\xad\xac\xa7\xe0\x71\xab\xf6\x22\x19\xc8\xbf\xc7\xa2\xf1\x9e\x1f\xfc\xc9\x55\x83\x3f\x72\x5a\x3b\xe1\x62\xd8\x1d\xd1\x84\x89\x61\x6f\x44\x63\x26\x8a\x5a\x01\xc2\x16\x63\x49\x9e\xcb\x3c\x07\xd5\xcf\x50\x9d\x4d\x60\x8d\xa9\x8e\x55\xb4\xb2\x8b\xc1\xdb\x4a\xbf\x73\x7f\x9b\xe3\xe7\xdc\xcc\x33\x51\xd7\xc3\x4f\xd6\xc0\xf0\x27\x6f\x0a\x7d\x6b\xcc\xb6\x9c\xad\x0d\x9e\xe6\x5c\x85\x10\x4a\x79\x26\x83\xe1\x68\xe5\xd5\x29\x65\xe9\x6d\xa1\x66\xb5\xbb\x0d\xf7\x9a\x57\x29\x12\xad\x7c\xfd\x49\x8d\x29\xb1\xc4\x16\x93\xa0\xc8\xdb\x88\x27\xf8\x23\x08\x7a\x3e\xe3\x72\x3c\x3d\xb9\xbc\x68\x36\x87\x5a\xfd\xe0\xff\x23\xef\x4d\xd8\xdb\xc6\x91\x45\xd1\xbf\x22\xf3\xce\xb0\x89\x08\xa4\x49\x2d\x5e\x28\xc3\xba\xd9\xfa\x74\xce\xc9\xd2\x37\x49\xcf\x4c\x3f\x45\x93\x43\x53\x90\xcd\x89\x0c\x6a\x48\x28\x4e\x62\x69\x7e\xfb\xfb\x50\x58\x08\x2e\xb2\x9d\x9e\x9e\x73\xce\xbb\xaf\x67\xbe\x58\x04\x41\xa0\x50\x28\x14\x0a\x85\x5a\xa4\xb7\x81\xf4\x83\x90\xfe\x0f\xe0\xf8\x20\xfe\xb5\x6e\xfe\x38\x3a\xf7\xa3\xae\x56\xcd\x64\x88\xfa\x82\xc8\x55\x95\xe9\xff\x11\x33\xbf\xdd\xee\x1f\xbf\xd8\xe7\x27\xd5\x49\x90\x54\x0b\x75\xbb\x65\xd8\x74\x55\xa8\x1f\xdb\xad\x2e\x52\x87\xda\x03\x42\xda\x4a\x5e\xd7\x15\xbc\xa3\x72\x0f\x57\xba\x62\xb8\x71\x16\xf8\x96\x1b\xba\x15\x8b\x78\x87\x30\xe5\x9e\x7d\xa9\xc6\xb8\x95\x4c\x9e\xba\xae\xc0\xa7\xfc\x77\xc6\xe6\xa8\x3e\xab\xdc\x1a\x12\x56\xbc\x05\xea\x59\x6e\xaf\x05\xef\x8a\x45\x57\x53\x72\x58\x5b\xc1\xed\x4e\xc9\xfb\xe6\x94\x58\x93\xf8\x67\xf3\x38\xd7\x44\x2e\x43\xf2\xd5\xf2\xca\xc3\xdd\x5c\xec\x9c\xd9\x47\x58\x6b\xdf\xdc\xef\x40\xfa\x1b\x6f\xcc\x7e\x20\xce\x0f\xa6\x75\xd1\xb9\x40\x11\xfe\xc1\xe9\xfd\xa0\xae\xcd\x02\x5e\x64\xd7\x1e\xda\x79\x05\xc2\xce\xb9\xa5\x64\x07\xdd\x62\xc1\xb5\x72\x5c\x08\x0e\x67\x87\x96\x5c\x0e\xb5\x65\xc2\x8d\xda\xaa\xb2\x16\x4b\x66\x2d\x96\x16\x32\x1a\x97\xad\xd3\xc6\xdd\xeb\x7b\x04\x34\x28\x7b\x48\x38\xb9\x55\x84\xd4\x75\x60\x17\x5c\x86\x11\x3a\x8b\xe6\x7b\x8d\x5b\x0b\x65\xa6\xa0\x46\xf3\x41\xdb\x67\xa9\xd8\xae\xaf\xf3\x05\x75\x5d\x2e\x75\x44\x3f\xbd\x7f\xf5\x12\x59\xbf\x09\xeb\x7b\xbf\x06\x6d\x53\x6e\xd7\x85\xd3\xf3\x81\x52\xf6\x09\x22\xab\xe7\xcc\x9a\x3a\x1f\xbe\x0c\xd3\x03\xdf\xb7\xcf\x5c\xa6\x59\xec\xf4\x7c\xff\xc3\x97\x21\x85\x94\x2e\xc8\x2c\x58\x1b\x26\xbd\x76\xb5\x95\x71\xcb\x4a\x41\x88\xbc\xa0\xfc\x32\x9f\xe8\x15\xf7\x54\x90\xa7\x57\x60\x48\x45\x65\x8d\x65\xb7\xc3\x4c\xf0\xb5\x3b\xf1\x28\x70\xf3\x8f\x2f\x54\x6c\xe8\x7a\xa1\xb6\x97\xb2\x71\x00\x4d\xaa\x00\x03\x14\xe9\x60\x9e\x56\xee\xc6\xfd\x97\x3a\xc1\x23\x07\xa1\x89\x8a\xa2\x2b\x76\x0b\xfb\x9a\x04\x98\x36\xde\xf3\x32\x5b\x4c\x64\x54\xc4\xe6\x0b\x90\xf9\xed\xcb\xfa\x6e\x1e\xad\x57\x0b\xe9\x62\x52\xdb\x2d\x0f\xae\xc1\x86\xad\x40\x53\x70\x7c\xfd\x7c\xa9\x19\x53\x2c\x9e\x01\xd1\xaa\x40\xee\x4c\xb2\x2c\x9e\xcd\x31\xd4\x16\xdb\x06\x9a\x74\xc2\x46\x72\xd5\xa0\x39\x31\xa9\xcc\x40\xec\xbb\xa8\xb7\x69\x98\xa2\x9c\x72\x72\x0d\x9d\x69\x1d\xe1\x46\xd5\xf7\x32\x57\xa5\x65\xb6\x92\xd9\x5b\x1c\xa4\x6d\xbc\xad\xa5\xf7\x4a\xb9\xbd\xb1\x75\x1a\xea\x4e\x79\x9c\x73\x41\x36\x10\x4f\x58\x3b\x2c\x33\xcf\x8a\x53\x51\x90\x92\x4f\x7e\x0d\xea\xae\x12\x84\x90\xbf\x83\xc1\xca\xab\xa0\xa0\x7f\xdf\xd0\x92\x3f\x66\xd9\x35\x38\x35\xfc\x58\xc0\x56\x53\x0a\x0a\xf6\xbc\x86\x78\xc5\x09\x68\x03\x7f\x6d\x38\x47\x4c\x2b\x5a\x8c\x13\x3e\x6b\xbe\x9e\x6f\xb7\x55\x05\x5c\x90\x17\x34\x80\x63\x8a\xa7\xdc\x79\xc4\x32\x84\x59\x80\x3e\x11\x66\xd2\x26\x1e\x98\xd0\x8a\xd7\x1c\x05\x36\xdc\x43\xb7\x50\x06\x6f\xd7\x5c\x86\x4d\xab\x0c\x7d\xb9\x32\x33\xfa\xec\xba\xbf\xb6\xfc\x35\x6c\xfd\x12\xa5\x4f\x95\xb5\x34\x6c\x3c\x2c\x5f\x54\x05\xe2\x4c\xbe\xae\x79\xa0\x98\x57\x62\x0f\x6a\x36\xfb\x36\xcf\x1b\x1a\xa8\xcb\x38\x9f\x08\xd8\xe8\x4d\xef\x73\x9d\xb6\x56\x7c\xbb\x05\x1b\x9b\x6e\x27\xa1\x6c\xe9\xc9\x68\xa7\x2f\xb3\x92\x4b\xc1\x41\xcc\xb5\xd8\xa7\x93\xc5\x82\x4a\x93\x26\xeb\x60\x7f\x20\xb8\xbd\xf5\x6a\x16\xce\x91\xeb\x7a\xbf\x06\x5d\x6e\x34\xae\x5b\x78\x62\xab\x2d\x2e\x21\x37\x64\xf5\x1b\x61\xa7\x5a\x2f\xf5\x5e\x65\x8d\x1a\xc3\xbe\xbf\x71\x9b\x97\xee\x6b\x3a\xb3\xfa\x77\xdd\x7f\xbc\xa8\xae\x8b\xab\xb5\x2b\x98\x3b\x42\x80\x13\x58\x67\xf0\x79\xfd\xad\x8a\xd2\xca\xb9\xf7\x85\xda\x03\xca\x48\xae\x15\xeb\x89\xba\x4f\x14\xf5\x27\x99\x35\xa8\xfa\x52\xae\x79\x7f\x66\x08\x27\x77\xd7\x94\x9e\xa1\x89\x8e\x6f\x5e\xf5\x2d\xdd\x39\xf0\x63\xd7\x5d\x73\x4d\x2a\x5e\xa6\x6e\x7f\xc4\xb4\x82\xc7\x53\xa5\x2f\x39\x08\xb1\x38\x6b\x26\x29\xa7\xc5\xb3\x84\x27\xe0\x04\xb5\xb9\x10\x14\x0a\xa1\x3b\x2c\x99\x69\xc1\xad\xbb\x56\xa0\xd2\xcb\xbd\x43\x40\x40\xaa\x1d\xef\x01\x70\x64\xe8\xf5\x80\xe8\xb8\xbd\xef\xe9\x17\x3e\xb5\x7e\x2b\x21\x25\x76\x1c\x9c\x68\x04\x23\x23\x22\x16\xae\x9b\xbb\xae\x97\x18\x81\x14\x27\x95\xd0\x9a\x23\xac\x5f\xb8\xae\x51\x44\x45\x53\xab\x8a\xc7\x49\x52\xbb\xfa\xd0\xdd\x62\xef\x3f\x84\xb4\x28\xcf\x14\x6c\x8e\xe2\xaa\xa5\x88\x10\xa2\x5b\x83\xbe\x4d\x6b\xff\x4e\x0d\x24\x58\x1c\xf6\xab\xe6\x10\xd2\x1a\xa7\x2b\xde\xa1\x6a\x6e\x59\x33\xb6\x8c\x18\x8d\x7d\xa3\xb9\x43\xa4\xd3\x86\xc8\x71\xff\xc6\xa7\x22\x71\x76\x7f\xe6\x3b\x08\x57\xc7\xb6\x2e\xb3\xb4\x6c\xe9\x15\xae\xeb\x40\x32\xad\xdc\x84\x10\x91\xfa\x5b\x72\x10\x62\xaa\x6b\x7c\xee\xa8\xf1\xab\xa9\x91\x13\x2b\xf3\x45\x8e\x70\x56\xbe\x4e\x5e\x7b\x79\x15\x94\x64\xa2\xf2\x60\x15\x2a\xbb\xd5\x65\x91\xdf\x38\xb1\xb4\xe1\x22\xf2\x4f\x3f\x9f\x5c\x14\x34\xf9\xa4\xb2\x50\x5d\x15\x19\xfb\xd4\xa8\xe2\xd7\xaa\x80\x4b\x72\x4c\x83\x2f\x84\x06\x5f\xea\xaf\xa4\x87\xb2\x7e\x57\x6f\x79\xb3\x16\x2f\xbe\x12\x1a\x7c\xad\x7f\xb4\xc8\x6f\x98\x79\x55\xff\x46\xce\x94\x78\x29\x7f\x11\xfd\xa3\x9f\xef\xac\x93\x0d\x47\x31\xb7\xb6\xde\x0b\xeb\x24\x02\x2b\x0c\x8c\x7c\xac\xab\x38\xae\x29\x2b\x27\x1c\x8e\x4b\x38\xeb\xbc\xb4\xa8\x2f\x36\x65\xcb\x8a\x99\xa5\x6b\xe5\x2a\xc7\x8b\x9a\xf8\xc9\xbd\xf4\xa2\x2a\xc6\xdd\x14\x62\xaf\x45\x5b\xdb\x0b\x07\xfa\x5c\xd1\x4f\x6c\x8e\x1b\x48\x1f\xe7\x11\x66\x3b\x31\xce\xa4\x4b\x5b\x72\xc5\x5b\x16\x99\x6d\xf7\x77\x04\x21\x47\x70\xf9\x00\x3c\xe8\x8f\xd5\x2d\x63\x33\xb2\x2d\x38\x21\x81\x4c\xb3\xdd\x72\xd9\x6a\xda\xd1\x2a\x58\x8d\x56\x5c\xf3\x6e\x01\x53\x6d\x17\xc0\xda\x58\x72\x0d\x67\x06\x98\x0d\xab\xc4\xa3\x33\x0e\x3f\xe7\x84\xeb\xa8\x38\x0a\x3d\xc0\x8f\xea\x83\x90\x26\x3b\x06\x76\x29\xe1\x3c\x8e\xa2\xaf\x62\x42\xa7\xbc\xc3\x5e\x87\xd8\x02\x78\xcb\xe8\xca\xf1\x95\x31\x0f\xaa\x19\x61\xc4\x9e\x6e\xea\x2a\x5b\x2c\x28\x13\xcd\x80\xc7\x2f\xe6\xc1\x32\x4f\x37\x25\x04\x98\x52\x2e\xc1\x42\xc6\x04\x7c\xad\xbe\x63\x16\xc0\xba\xc3\x8c\x83\x4f\x39\x5c\xf6\x54\xec\x6b\xaf\x9f\xa2\x3e\xb2\x22\x84\x62\xca\x3d\x98\x29\x7d\x67\x6e\x9d\xf6\xe5\x6d\xc5\x1e\xf4\x61\xa5\x1f\xe8\xb4\x3a\x2a\xa5\x09\xc5\x0a\xc3\x6d\x88\xba\x46\x80\x1b\x08\x65\x8d\x94\xd9\xbb\x66\xba\xb3\xf6\xc5\x6b\x6e\x02\x30\xcb\x30\x6a\x96\x47\xaf\x23\xbd\x40\x54\x88\x37\xb0\xea\x15\xc5\xbd\x0d\x4b\x3e\x27\xd9\x4a\x20\xd4\x31\x81\x87\xd3\x4f\xc4\x33\x11\xdc\x90\x2c\xd9\x5d\xf3\xbd\x11\x0e\xa1\x9e\x1d\xe5\xd0\xae\x5b\xb3\xe5\xbf\xe6\x70\xde\x78\xc5\x49\x97\x7d\xc9\x0e\x5f\x72\x72\x6b\x86\xf7\xfe\xeb\x9a\xc6\xce\x5f\x5e\xbd\x74\x70\x41\xd7\x34\xe1\x4f\xf3\x0d\xe3\xb1\x93\x49\x97\xcb\x8c\x53\x07\x2f\x36\x45\xec\x0c\x4a\x67\x87\x3f\x73\x65\x43\xb3\x6e\x5a\xca\x80\x3e\xf6\x15\xc7\xb7\x8b\xd8\x79\x15\x8d\x8f\x82\x31\x1e\x8d\x8e\x83\xe3\x95\x1f\x0d\x82\x23\x3c\x38\x0d\xc6\xa9\x1f\x9d\x04\xc7\xfe\x69\x30\xf6\x87\xe3\xe0\xd4\x1f\x44\xc1\xc0\x1f\x47\xe2\x71\x14\x9c\xae\x06\x83\xe0\xd8\x17\xff\x3c\x8d\x06\xc7\xc1\x11\x1e\x0d\xc3\x60\x8c\xa3\x51\x04\x4d\x85\xd8\x6a\xf4\x5b\xef\xd5\x28\x14\xad\x1e\x0f\x7e\x3a\x09\xc6\xbd\x34\x0a\x46\x58\x34\x87\xc7\xc1\x08\x8f\xa2\xe0\x18\x47\xe2\x9f\xa3\x28\x88\x5e\x8e\x43\x3c\x14\xef\x9e\x8e\xc6\x41\x84\x87\xe1\x58\xb4\x12\x05\x27\x78\x70\x72\x8a\x75\x33\xa6\xc5\x51\x28\x1a\x13\x90\x9e\xe0\x71\x30\xf0\x87\xd0\x54\xe4\x8f\x47\x41\xb4\xf2\xc5\x30\x60\x40\xbd\xa7\xd1\x48\xf4\x72\x3a\x0a\x86\x38\x0a\xf1\x20\x3a\x0a\x8e\xf1\x49\x30\x16\x2d\xfc\x24\x9a\xfa\xd6\x7b\x75\x04\x2f\x05\xd8\xe9\x71\x70\xe2\x47\xa3\xe0\x14\x47\xc7\xc1\xc0\x1f\x9c\x40\xf7\x41\xe4\x8b\xd1\xbd\x3c\x3a\x0d\x8e\xf1\xe9\x20\x18\xa6\x7e\x34\x14\xad\x8e\x83\x23\x7f\x20\xe0\x1c\x0e\x82\x13\xc0\x0e\x16\x78\xea\xbd\xac\x5a\xfc\xd6\x7b\x35\x3c\x3d\xc6\xa3\xe8\x34\x38\x82\xcf\x4e\x71\x34\x10\xf0\x8d\xf0\x60\x10\x0c\xfd\xd1\x11\x0c\x36\x18\xad\xa2\x28\x38\x15\xf8\x3f\x49\x07\x21\xa0\xff\x14\x0f\x4f\x83\x13\x81\xea\x23\x3c\x3e\x0a\x4e\xfd\xe1\x71\x70\xf4\xd2\xb4\xf6\xad\xf7\x2a\x8a\xc6\x02\x9e\x51\x2f\x15\x0d\xfb\xd1\x40\x7c\x3f\x12\x5f\x0c\xb1\x68\xd8\x87\x86\x7d\xd1\xb2\x0f\x2d\xfb\xa2\x69\x7c\x2a\xda\x3a\x15\x43\x1b\x04\x47\xfe\xf8\x28\x38\xc1\xd0\xb4\x6e\x4e\x20\x59\x4c\x1f\x1e\x8e\xc7\x82\x1c\x8e\x83\x13\x2c\x90\xe2\x0b\xa4\x08\x7c\x9c\x08\xcc\x44\x62\x76\xc6\x3d\xa0\x07\xd1\xd2\xb1\x00\xe2\xd8\x17\x48\xc1\x02\x29\xfe\x70\x20\x86\x20\xbe\x13\x48\x79\x69\x35\x29\x3a\x38\x06\x5a\x38\x1e\xa4\xbe\xf8\x21\xe6\xd1\x1f\x07\x03\x3c\x3c\x16\xe0\x46\x18\xe6\x51\x4c\x23\x86\x69\x4c\x8f\x83\xb1\x20\xc4\x48\x3c\x0e\xfc\xd1\x50\xbc\x18\x06\x47\xfe\xd1\x51\x70\xf2\x13\x34\x26\x30\x0d\xb4\x35\x3a\x12\x8d\x8e\x83\x63\x0c\x30\x0c\xf0\x89\xf8\xe2\x34\x18\xe0\xd3\x60\xf4\x79\x38\x08\xa2\x14\x48\x3a\x52\x34\xe8\x0b\x62\x14\x24\x28\x7a\x3e\x7e\x69\x1a\xf9\xd6\x7b\x35\x18\x85\x18\x1a\x87\x35\x71\x22\x3e\xf1\x87\xe2\x83\x01\x10\x1a\x80\x6a\xaf\x1c\x80\xf0\x58\x10\xee\x50\x42\x3e\xc0\x02\x40\x00\xf5\x4f\x1a\xca\xd1\xd1\x00\x47\xa7\x61\x70\x92\x8e\x31\x80\x79\x22\xc6\x3d\x90\xf0\x61\x01\xe8\x95\x00\xb2\x07\x98\x51\xab\x2f\x18\xf9\x00\xaa\x80\xd0\x87\xe5\x62\x5a\xf9\xd6\x7b\x25\x26\x0d\x0f\x4f\x8f\x53\x3f\x1a\x00\x8d\x01\x09\x00\x95\x01\x09\x00\x95\xc1\xaa\x38\x11\xab\xe4\x34\x15\xc4\x05\xa4\x00\xc4\x05\xb4\x20\x28\x00\xc8\xac\xf7\x52\x37\x27\x10\x70\x3c\x80\xb5\x97\xc2\x42\x13\x18\x1b\x1e\x09\x2a\x17\x4b\x78\x24\x66\x43\x20\x40\x8c\x1f\x96\xdc\xd3\x61\x24\xe6\x18\x96\xdc\xe0\x74\xac\x96\xdc\xb1\x98\x81\xf1\x9f\xd4\x62\x03\x98\xf1\x38\xec\xa5\x62\xec\x3e\xac\x9d\x81\x2f\x50\x20\x46\xee\x9f\x06\xa3\x3f\x9d\x08\xa2\x83\x59\x88\xd4\xb8\x05\xbf\x80\x61\x03\xbf\x78\xa9\xdb\x00\x42\x15\xc4\x2e\x16\xe5\x4b\x58\x15\x38\x8a\xc6\x29\x84\xf7\x11\x43\x14\xef\x60\xad\x01\x8f\x12\x58\xe8\x09\xa2\x3a\x81\x25\xf1\x74\x74\x1c\xe2\x68\x20\x98\xc1\x68\x7c\x0c\xc0\xc2\x04\x98\x16\xd5\xda\x15\xe8\xa8\xb8\x1e\x90\xd6\x11\x30\x00\x1f\x96\x3d\xd0\x7a\xc5\x1e\x2b\x6a\xe8\x3d\x1d\x1e\x87\xc1\x08\x1f\x0f\xc4\x12\x3f\x19\x05\x23\x7c\x22\x98\xa4\x6e\xf3\x1b\xd8\x96\x7e\xe5\xca\x32\x97\xe3\xdb\xda\x39\x36\x76\x74\x6c\xa0\x1d\xc2\x8f\x79\x65\xea\x59\xdd\x9d\x7f\xe6\xca\x66\x31\xcd\x8a\xb4\x61\x3f\x6c\x18\x7d\xfa\x25\x76\x06\xe3\x23\x07\xa7\x5f\x63\x67\x78\x34\x72\xb0\xd8\x25\x4e\xea\x96\x97\xb2\x99\x04\x34\x3e\x1d\xed\x74\x00\x57\x38\x18\x44\xa4\x52\x34\x36\x89\x46\x93\xc1\xc9\xc4\xfc\x80\x91\xdd\xd3\xe6\x57\x1d\xb6\xb2\x8c\x9d\x68\x12\x4e\xa2\x89\xfc\x57\x7c\x3b\xd7\x5f\xef\xdf\xbf\x14\x72\x62\x27\x72\xb0\xd8\xcb\x06\x47\x82\x25\x0f\xa3\xc1\x95\x1f\x1d\xa5\xfe\x51\x70\x84\x43\xb1\x1c\x04\xe5\x88\x55\x31\x48\x43\xff\x38\xc2\xc7\xc7\x82\x92\x04\x71\xc0\xaf\x28\x3c\x0e\x4e\xd2\xd0\x1f\x84\x82\xb9\x9d\xf8\xa3\x50\xac\x36\xf1\x46\xfc\x4a\x05\x55\x47\x38\xf4\x47\x82\x9f\x9f\x0a\x66\x79\x2a\x39\xe0\x71\x2f\xf5\x45\x23\x63\xc9\xad\x8e\xfc\xe8\x48\xbc\x00\x6e\x3b\x0c\x22\xff\x54\x7c\x2c\xe8\x44\x2c\x46\xc1\xbb\xa3\x48\x90\x8a\x20\x9c\xe3\x60\x20\xf9\xcf\xe0\x18\xf8\x8c\xe8\x4b\x2c\x98\x53\x51\x26\x7e\xa5\x63\x41\x80\x21\x3e\x3d\x16\x1c\x52\xac\x4d\xf8\x75\x12\x06\x83\x5e\x1a\xe2\xa3\xe3\xe0\xc8\x17\xc0\xe3\xa3\x61\x30\x96\xbf\x60\x18\x4f\x07\xc7\x82\x9b\x0c\xc3\x23\xd8\x2b\xc3\x60\x28\xd0\x81\x0d\x62\xbe\x7d\xd7\x94\x37\xa7\x47\xfe\xef\xfb\xa7\x27\x54\xd3\x33\x1c\x00\xcb\x1e\x05\xe3\xd5\x31\x8e\x8e\x4e\x52\x01\xdf\x51\x30\xc2\x63\x58\xb4\xc0\x2e\xe1\xef\xd5\x69\x2a\x8a\x43\x58\xea\xfe\x18\x58\xbe\x40\xdf\x78\x75\xec\xab\xef\xfc\x23\xb9\x5b\x88\xb5\x36\x96\xb3\x1b\x8c\xaf\xfc\xc1\xb0\xf7\x74\x30\x04\x0e\x34\x18\xe0\x01\xb0\x54\x21\xa3\x1c\x63\xab\xf7\xdf\x8e\x85\xd0\x10\x69\xa8\xb0\x30\xdf\xe1\x1b\x6e\x6e\x35\x2d\xcf\x46\xde\xa9\xcc\xc7\x05\x49\x3d\xaa\x8e\x6a\x23\x84\x23\x34\x33\x0e\x77\xb7\x60\x92\x58\x19\x41\x71\x6d\x04\xa5\x6e\xcb\xea\xee\xaf\x05\x9a\x76\x19\xcd\x6a\x3b\x9b\x87\x38\x6f\xa8\x80\x5a\xa8\x6d\xfb\xd9\x9a\xd4\xef\x6b\xd6\x84\xe1\x42\xb8\xcb\x6c\x7a\x11\x17\xb3\x70\xbe\xdb\x4b\x41\xdf\xd7\x99\x8a\xfe\xb5\xbf\xab\x68\xbe\xdb\xcd\x77\xf1\xbe\xce\xf6\x7c\xb6\xb3\x8f\x12\x1f\x79\xed\xa6\x42\x1c\x06\xbe\xda\xa7\x4c\x63\x23\x93\x11\x3d\x8b\x91\x9a\xc5\x71\x34\xd0\xf3\x28\x7e\xca\x99\xe4\x10\x1d\x8c\xba\x2e\x77\xdd\x1b\x0e\x77\xa6\xf0\x67\x46\xf5\xa5\x69\x8f\x79\xdf\xb8\x67\x0a\xd1\xa4\xe6\x15\x5c\x8b\x27\xf4\x1f\x19\x97\x21\x85\x10\x9c\x68\x1b\xf7\x9c\x32\x80\x65\x67\xfd\x80\xe7\x9f\x28\x73\xdd\xee\xd6\xe4\x5b\x2c\x81\x3c\xf8\x35\x68\xc6\x44\x9a\x16\x70\x28\xba\xe6\x9e\x3c\x3a\x65\x65\x4f\x45\xc1\x82\x60\xda\xf2\x50\xd7\xab\x5d\xae\xde\x64\xfc\xaa\x27\x30\xd0\x13\x07\xb2\x9a\xc1\x14\x42\x31\xf3\x32\x13\x45\xea\x4d\xd7\x9a\x7a\x6f\xad\x29\x50\xcf\xa8\x85\xf3\x0f\x2e\x6d\xe5\x5a\x3e\x46\x4f\xd0\x74\x8f\xc2\x4d\x19\xd9\x71\xcb\xa4\x34\x27\xaa\x19\x9c\xd9\x39\x58\xc4\x44\xdd\xc8\x2f\x4b\xa9\x28\x7b\xc1\xb8\x77\x49\x21\xaf\xcc\x86\xd3\xc5\x3b\x01\xa5\x54\xdd\x33\xfe\x2e\xfb\x06\xb9\x63\xc1\xa4\xf6\x92\xf2\x27\x2a\xe5\xe3\xd3\x55\x46\x19\x7f\x4b\x53\xee\xa1\x49\x46\x52\x65\x6c\x5c\xe2\x84\xa4\xda\xe0\xb8\xdc\x75\xe8\x11\x0e\x18\xd8\xe9\xb5\x9c\x80\x1a\x9a\x00\x84\xbf\x1a\xb7\x72\x6f\x46\xf1\x33\xea\xdd\x2a\xab\xc2\x98\x56\xb7\x4b\x8a\x26\x33\x4d\x91\x89\x75\xe4\x2e\xd4\x29\x9d\xa9\xa3\x76\x8e\x8d\x49\x30\x68\x9c\xe7\x48\xc6\xea\xed\x8c\xf3\xd0\xd0\x8c\x49\xfc\xe6\x95\x8e\x2c\xab\xa1\x3a\x21\x5c\xbb\xbd\x95\xda\x61\x6e\xa5\xd1\x3f\xd9\xb7\xc8\x38\xde\xa0\xdb\xaf\x32\xd8\xc1\xec\x23\xf7\x18\xce\x11\xfe\xc8\xbd\xb2\xea\xbb\x54\xfd\xa1\x39\x92\xae\xf7\xd5\xd7\xea\x9a\x67\x43\x52\xaf\xc4\x03\x84\xd7\x64\x23\xd8\xf2\x92\x6c\x66\xd1\x7c\xc2\x05\xd2\xfe\x4c\x3d\x50\x5a\x94\xf1\x2d\x78\x43\xad\xa5\xee\x61\xb9\xc3\x6d\x2b\x18\x66\x61\x2e\xd3\xca\x8a\x44\x7d\xa0\x30\x59\x28\x4c\xae\xda\x98\x84\xdb\x80\x5d\x23\xcc\xcc\x17\x8b\xbe\x1f\xec\xf2\x38\xb5\x1f\x62\x4d\xb1\x8f\xf5\xc4\xb4\xa3\x62\x19\x27\x6b\x5c\x74\x46\x07\x08\x92\xc5\xc2\xba\x27\x7e\x57\x63\xb7\x90\x3f\xb2\x2b\x30\x5d\x8f\xa9\xe0\x57\x77\x7f\x9a\x91\xba\x65\xcd\xd4\x36\xa9\xf8\x33\x8a\xed\xc7\x37\x1c\xe1\x84\xcc\x9c\xc0\x34\xf8\x04\x3b\x31\xcb\xb9\x37\xab\x5a\x7d\x8f\x9d\x39\x72\xd0\xbc\x6e\x2b\xd1\x15\xba\x31\xb0\x03\x3e\xee\x69\x06\x82\x40\x4a\x05\x29\xee\x49\x0d\x3b\xe0\x5b\xdf\xa1\x2a\x36\x30\x9b\x43\x04\xa6\x52\xea\x1f\x6b\x91\xf5\x1e\xaf\x56\x5e\x82\x6a\x51\x79\xb3\xa5\x57\x5d\xce\xa1\xdb\xc2\x33\x91\xbc\x10\xce\x3d\x48\x37\xb4\xa2\x70\xdf\x29\x9d\x11\xaa\x8b\xd0\x9c\xbd\x2f\xa8\x58\xdc\x2b\x08\xad\xdd\xa5\xda\xac\x12\x7a\xbd\xe7\x1e\x47\x13\x06\x61\x7b\x64\xa8\x12\x0b\x88\x4f\xdb\xed\x9f\xb8\x1d\xfd\xe6\x9a\xbb\x6e\x3d\xb7\xdc\x9f\x38\xb2\xd5\xe1\xb3\x39\xda\xbb\x12\xc1\xac\x4c\xad\xc4\x55\x6b\xa5\x31\x74\x9b\x8a\xd5\x59\x0b\xd8\xec\x39\x89\xcc\xe7\x88\x70\x61\x8f\x59\x60\xa0\x42\x47\xe7\x75\xb6\xeb\x72\x0f\xe1\xd4\x43\xd8\x84\x45\x0b\xe4\xc8\xec\x1e\xd2\xea\x8a\x18\xa1\xda\xe6\xfd\xfa\x77\x5a\x56\xb0\xfd\x34\x07\x4b\xd1\x2d\x75\xdd\x54\xf0\x8f\x39\x96\xd7\x7c\x95\xf3\x7f\xfd\xaa\xde\xd0\xdf\x6b\xcb\xa2\x5e\x1b\x6b\x38\xb1\x03\xab\x65\x3f\xd2\x0b\x9c\x5b\x59\x9a\x9b\xaa\x5c\x66\xae\x6b\x0a\x4f\x1b\x31\xc8\x98\x0a\x4a\xb4\xbb\x3b\x52\x42\xbd\xb1\x2f\x48\xa0\x7f\x87\x84\x70\x8a\x13\xf2\x2a\x68\x6f\x77\x98\x8b\x3d\x2e\x11\x6f\x74\x24\xfd\x3f\x09\x21\xd9\x83\x48\xc8\x2a\x90\x29\x68\x8e\xc5\x44\xfd\x2c\x48\x78\x6f\xe5\x1b\xd8\x8c\xe4\x72\xcb\x5c\xf7\x20\x45\x96\x51\x9f\xe0\x29\xd2\x7e\x26\x03\x3b\x00\x51\x29\xd5\xbc\xbc\xab\x49\xb5\xed\x39\x82\xc5\xff\x63\xe6\xbc\x93\xf1\x91\x9d\xb7\x3a\x36\xb2\xf3\x52\x45\xc0\x7d\xa6\x63\x22\x3b\x32\xe8\xb0\x65\xc1\x97\xce\xa2\x39\x9a\x3e\x9b\x89\xbf\xf5\xdb\xb9\x79\xfc\x76\xb6\x12\xdb\xc6\x4f\xd4\x1b\x82\x63\xb3\x24\xa4\xe9\x26\x28\x37\x17\x25\x2f\xbc\x08\x47\x28\xde\x20\xbc\x20\xff\x4e\xbd\x35\x5e\x22\x7c\x45\x16\x90\x96\x6e\xb1\xdd\x66\xae\x9b\xd5\x71\xfd\x52\xe0\x7a\xdd\x2a\x7e\x2e\x8a\xaf\x50\xa1\x8d\x36\x68\xfd\xb6\x99\xe1\x2b\xf0\x48\x68\x62\x68\x22\x43\x80\xdf\xd6\x8d\x27\xd5\xc6\x2e\x7e\xda\x16\x86\xd5\x0e\x76\x43\xf5\x16\x76\x10\xc9\x3d\x4c\x86\x2e\xaa\xeb\xdc\x67\x73\xad\x74\xbf\xdd\xd5\x44\xe8\xdd\x6e\x87\xaf\xc9\x85\xda\xbf\xaf\x6d\x69\xe5\xcb\x9c\x70\xb1\x49\x2f\xf0\xba\xb5\x76\x72\x2d\x33\xff\x59\xb9\x56\x5d\xe0\xda\xfe\x9b\x4b\x50\xe0\x5e\x41\x03\xbe\xae\xb6\xe0\x2b\x05\xdf\x75\x63\x7b\x15\xbb\x46\x3b\x86\xcc\xe7\x4b\x07\x4d\x9c\xf8\x42\xa6\xd8\x87\xd4\xd7\xb4\x1e\x88\x25\xc1\x34\x58\x66\x45\xc9\x01\x99\x28\xa6\x41\xb2\x16\xac\x49\xe2\x36\x41\xda\x6f\x51\x9a\xe9\x7c\x8f\x81\x10\xd6\xd3\x64\xaf\x57\x41\xcc\x15\x2b\xcb\xd1\x4e\xda\x0c\xc8\x52\x2b\x64\x87\x6d\xe5\xaa\xa5\x9f\x97\x72\x13\x53\x83\x41\x58\x3d\x27\x90\xfc\x5f\xc8\x17\x55\x00\x8e\xba\x91\x6c\x65\x82\x71\x40\x2a\x4b\x36\x19\xcc\xfd\xe0\x1f\x4f\x2d\x73\x8b\xca\x8a\xce\x8a\x76\x83\x5c\xf7\xa0\xc5\x2b\x5c\xd7\x3b\xb0\x5b\xde\x6e\xb5\x2d\x9e\x5d\xaa\x1b\xb4\x60\xfb\xbb\x36\xcb\x79\x8c\xf6\xcb\x7c\xc6\x66\xb6\x7b\xaf\x75\x1e\x39\xc8\xb0\xb6\x77\x5c\x5e\x55\x3d\xe7\x08\xe7\xd6\x3e\xda\x19\x7d\x18\x4d\x56\x9c\x1c\x84\x58\xe1\xb4\x68\x91\x27\xba\xcd\x3d\x84\x37\x62\xf3\xe1\xde\x9e\x5d\xc7\xd4\xa8\xb6\x1e\x88\x77\xc1\xc9\x0f\xe5\xe7\x4b\x90\x32\xe2\x22\xcf\x39\x0a\xea\x11\xea\x7b\xb7\x1f\x58\xaf\x97\x7f\xa6\xc5\x72\x95\xdf\xc4\xbd\xcf\x59\x99\x5d\xac\xe8\xe4\x03\xdb\x7d\x60\x1f\x58\x67\x6d\xe3\xb1\xa9\x5e\x5c\xac\xf2\xf4\xd3\x44\xbc\x01\x2e\x0a\x26\x0b\xbd\x8c\x5d\xd1\x22\xe3\x50\xac\x84\xfc\x5e\x44\xaf\x27\xfb\xba\xeb\xf5\x74\xf0\x6e\x3f\x59\x65\x97\x2c\xee\xf9\x61\x10\x0d\xc6\xf0\xc9\xae\x05\x49\xb0\x4c\xfc\xd5\xa5\x84\xa7\xe3\xc3\xc1\x9d\x1f\xde\xf8\x91\xfc\x52\x9e\x42\x7a\x61\x10\x1e\xdd\xf3\xc1\xa0\xf1\xc1\xdd\x90\xdd\xf8\xc3\x66\xfd\x93\xe3\xbb\x3f\x18\x35\x3e\xb8\xa7\xfd\x71\xa3\xfa\xf0\x3e\x80\x8e\x9a\x1f\xdc\x03\xcf\x71\xa3\xfe\xe8\xbe\x0f\x4e\x1a\x1f\xdc\x5d\xfb\xb4\x59\xfb\xbe\x09\x88\xc2\xc6\x17\xf7\x7e\xd0\x9c\xe3\xa3\xfb\xa6\x20\x6a\x4e\xf2\x7d\xf5\x9b\x93\x7c\x72\xdf\x24\x44\xcd\x59\xbe\x17\xa4\xe6\x3c\x9f\xde\x37\x0d\x51\x7d\xa2\xa3\xbb\x2b\xd7\x67\x39\xba\x7f\x1d\x44\x27\x8d\x2f\xee\x1d\xf2\x69\xf3\x83\xfb\xc6\x3c\x08\x1b\x5f\xdc\xd9\x83\xc9\x2b\x20\x3f\xba\x4e\x8a\xcb\x8c\xc9\xe4\x02\x40\xe6\x8a\xe5\xa8\xc6\xc4\x91\xef\xee\xa6\xe0\xcb\x5a\x5b\xa2\xf1\xef\x6d\x4a\xa6\x3d\x90\xcd\x18\xee\x77\xe7\x92\x58\x65\xb5\x51\x0f\xee\xa8\xba\xbc\xd9\x8b\xa0\x0f\x2c\x30\x79\x2f\x7a\xe5\xe7\xcb\x4e\xfe\x7d\x91\x73\x9e\x5f\xc7\xbd\x10\x86\xa3\x86\x37\xa9\x46\x6c\xc6\xd6\xeb\xad\x73\x95\xf0\xba\x97\x5c\x94\xf9\x6a\xc3\x25\xab\xd6\xe8\x85\x07\x9e\xaf\xe5\xcf\x66\xff\xf7\x6c\x16\xcd\x5d\xa1\xea\xab\xa0\xab\x44\x9c\xd1\x64\xf3\xf4\x0b\xd7\x9c\x3d\x05\x07\xdd\xfb\x76\x8b\x0e\xe2\xbf\x1f\x29\x2d\xcf\x5e\xe5\x51\xaf\x3b\xb5\xfb\xd6\xff\xdd\x5f\xb7\x81\x12\x9d\x43\x02\xf7\x82\x7a\x7a\x92\xfb\x70\xb5\x67\x1e\x3a\x71\xd3\xec\xb3\x6a\x5f\x4e\xf5\x38\xfc\x63\x35\x6f\xfa\xa1\x35\xfc\xb8\x57\xb9\x75\xfb\xe3\xf0\x8f\xb8\x27\xfe\x45\xdd\xe3\xbf\xab\xf2\x7f\x29\x62\x15\x81\x27\xe9\xa7\xcb\x22\xdf\xb0\x85\x9f\xe6\xab\xbc\x88\x7b\xff\x6b\xb9\x1c\x8c\x87\xc9\x44\x92\xbf\x58\x9b\x7e\x91\x2c\xb2\x4d\x59\x91\x9f\x86\xf3\x22\xff\x22\x44\x98\x8c\x5d\xc6\xba\xea\x45\xfe\xa5\x06\xde\x1d\x55\xaa\xfe\x96\x93\xae\xc5\xdf\xeb\xc1\xcc\x9a\x62\xb5\xec\xbe\xf8\x8a\x64\x75\xad\xeb\x8c\xf9\x66\x7d\x8f\x5b\x72\x93\xd4\xba\x4a\xd2\x48\x16\x0b\x80\xc4\xc8\x0c\xcd\xf5\x29\x88\xa4\xfa\x94\xae\x56\xd9\xba\xcc\xca\xfa\xda\xed\xa4\x00\xe9\x9c\x2f\xda\xdd\x3b\xef\xcd\x2a\xfb\x67\x9b\xe7\x6b\x09\xd7\x3d\x33\x6d\xd7\x6b\xce\xb2\xe4\x5c\x36\x8f\xae\xf3\xb2\x36\x5f\x32\x9c\xec\x5f\x3d\x3c\x09\xc8\x83\x46\xd8\xa8\xba\x67\x90\xd5\x9e\xb6\x9f\x5f\xab\xf1\x9a\x41\xfe\xb7\x0c\x59\x00\xf4\xb0\x11\xab\x9a\x2d\x06\x95\xaf\xed\x29\xed\xde\x5c\xfe\xbf\x41\xa0\x62\x28\xd5\xc4\xdd\x3b\x55\xff\x75\x03\x7b\xc0\x24\x59\xd5\xaa\x61\xa9\x23\x96\x75\xb0\x8b\x82\xa1\xf9\xaf\x8b\xa5\x19\xb1\xb9\x73\x8f\x0e\x8f\x8e\x8e\xeb\xc2\xca\x97\xb2\xd5\x85\x2d\x79\xcb\x4a\xe5\x75\x47\xa5\x93\x66\xad\xe8\x4b\x1b\xda\x7a\x8d\x41\xbb\xc6\xa0\x5e\x63\xd8\xae\x31\xac\xd7\x18\xb5\x6b\x8c\xea\x35\xc6\xed\x1a\x0d\x48\x8f\xda\x35\x8e\xea\x35\x8e\xdb\x35\x1a\x88\x3b\x69\xd7\x38\xa9\xd7\x38\x6d\xd7\x38\x6d\x60\x2c\xec\x40\x59\x58\xaf\xa3\xc5\xcd\x3d\x82\xd8\x5e\x29\x74\xb3\x52\xab\x20\x2b\xb9\x0f\xfa\x3a\x9f\x7f\x5d\x53\x15\xe8\xa9\x25\x60\x0f\xcc\x36\xa7\x76\x34\xbf\x5a\x3e\x3b\xd3\xe2\x79\x4f\x0b\xca\x9d\xe2\x62\x45\xb8\x99\xbd\x04\xfd\x41\x4b\xc6\xbc\x5f\x8e\x6a\xc8\xe2\x0d\x32\xaf\xf4\x1b\xa6\x4f\x5b\xe8\x97\xbf\xe3\x1e\xa4\xb2\xeb\x85\x41\x78\x42\xaf\x7b\xff\x8b\x52\xda\x25\x82\x84\x41\x54\x1f\x3a\x6c\xe6\xf4\x5a\x6d\xe9\xe2\x7d\x03\xb7\x8d\x53\xcf\x72\x95\x27\x3c\x6e\xad\xde\xe6\x81\x46\x55\x6b\x32\xaf\x5a\x83\x18\x8a\xca\x8e\xb2\xa2\xa3\x6c\xd5\x51\x76\xf1\xe0\x63\xd9\xae\xde\x3d\xbc\x6d\xf6\x6f\x15\x16\x5d\x85\xab\xae\xc2\x8b\x07\x1f\xe7\x2a\x0e\xb3\xce\x58\xfd\x24\x90\x68\x9f\xc3\xb8\xa7\xdf\x0f\xca\x5e\xc6\xa4\x89\x33\x50\x43\x52\x17\x5b\x1f\xfa\x85\x3d\x41\x25\xbd\xb7\xd7\xc8\x6a\xa3\xe4\x74\x5d\x7a\x27\xe8\xbe\x7e\xf7\x7c\x03\x3d\xff\x6f\xdd\xd7\x27\xfa\x55\x26\xed\xee\xd5\x10\x10\xfe\x51\xfe\xed\xdc\x99\x54\x60\xa5\x70\x41\x2f\xeb\x40\xd4\x36\xa7\x56\xad\x9d\xf8\x27\x0a\x1f\xd2\xf4\xf0\xe8\x61\x8d\xdb\xf5\x76\x7a\x68\xff\xb7\x0d\x49\x50\x89\x49\x89\xa8\x28\xe5\xba\xf4\xa5\x9e\x39\xee\x39\xeb\x22\xbf\xcc\x16\xf1\xb3\xbf\xbc\xb8\x4e\x2e\xe9\x7b\xdd\x62\xf0\x2a\x4b\x8b\xbc\xcc\x97\x3c\x78\x92\x94\x59\x0a\x6f\x3d\x68\x28\xcb\x19\x89\x90\xb3\x4f\xf2\x50\x90\x9c\xb6\x01\xbe\xa3\x92\x21\xe8\x2a\x63\xe3\xef\x06\xeb\xe0\x5e\x58\xa3\x93\x87\x00\x5b\xd5\x6a\x42\x3b\x38\xfe\xfd\xa0\x1d\xde\x0b\xed\xe0\xf8\x21\xd0\x56\xb5\xaa\x7d\xb8\x9e\xf3\xf2\x77\x03\x39\xc4\xbd\xeb\xac\x28\xf2\xe2\x2e\xb2\x90\xd2\xa6\x1f\xe1\x5e\x74\x8f\x44\x6a\xea\xd4\x01\xd7\xb2\xe0\xef\x47\x17\x0f\x07\x3b\xc2\x3d\xff\x3e\xb0\x4d\x9d\x3a\xd8\x17\x39\xbf\x92\xda\x9a\x06\xfa\xff\x47\x0c\xcc\x7f\xc8\xc8\xfc\xfa\xd0\xe0\x1a\xa8\x57\xe3\x2b\xb8\xa3\x34\x3a\xe9\x2c\x1e\x1c\xd7\x8b\x1b\x58\x69\xbf\xd3\xe8\x69\xbf\x11\xa8\xad\xef\x7d\x1a\x71\x46\x40\xd4\xff\x35\x5e\x54\x9b\x36\x4f\xd2\x4f\x0f\xd5\x33\xb6\x65\xc0\x9a\x9e\x51\x0b\x7b\x41\xf3\xe8\xa1\x92\xc6\x62\xfb\x51\x9f\x23\xfe\xb5\xaa\xd4\xb6\xea\x57\x03\xd3\xd0\x2c\x37\xd4\x9e\x77\x6b\xcc\xeb\x23\x68\x62\x67\x1f\x1a\x54\x96\x5c\xf9\x51\x5d\xcb\xa5\x80\x95\x01\xf5\xea\xe2\xaf\x1c\x56\xba\xca\xd6\x02\xdb\x29\xf7\x42\xdc\x53\xff\x47\x75\xfd\xd8\xfa\x4b\x0d\x6d\xbe\x2e\xb8\x47\xe7\x75\x17\x6a\x35\x3a\xa0\xa5\x1a\x90\xbe\xf1\x56\x8c\xa5\x35\x10\xee\x75\xbc\x82\x5f\x6a\xc0\x30\x02\x33\x97\x1a\x6a\x53\xa0\xc1\x0e\xef\xb8\xdf\xac\xa0\x2c\xc5\x4a\x4f\xbb\x2f\x13\xda\x77\xae\x20\x28\xca\x44\xcc\x4a\x8c\xcf\x56\xab\xb8\xf7\x39\x29\x3c\xdf\xaf\xde\x49\x55\x27\xee\xd9\x06\xc4\x12\xc7\xda\xfe\x5d\x69\x1b\xcd\x63\xab\x05\xf5\xa6\xc6\xbf\x3b\x80\x31\x19\xa0\x3b\xc1\x31\x6f\x1f\x00\x50\x18\x8c\xf6\x80\x54\xb5\x62\x80\x0a\x83\xd1\x3e\xb0\x00\x2a\x2b\x85\x75\x1b\x67\xff\x35\x5d\x36\x30\xf3\x7b\x22\xfe\x3a\x29\x3f\xd9\xc3\xc2\x77\x54\xe9\x9c\x20\xc8\x20\x61\xad\xe8\xc5\x7d\xab\xfa\x07\x2b\x0b\x06\x37\x01\xec\x3e\x62\x4e\xde\x60\x46\x1a\xa6\xf0\x45\x47\xc4\x1c\x9c\x93\xa7\x10\xfe\x85\xc9\x7c\x35\xc5\x01\x21\xdc\xe4\x34\xb2\x62\x01\x7d\xf8\x50\xb3\x89\xfc\xf0\xc1\x77\x10\x76\x2e\x21\x61\x49\xbd\x9e\xef\xef\xa9\x58\xee\x6d\x90\xcb\x1a\x93\x9c\xe4\xc6\xc8\x2d\xc3\x96\x15\x26\x93\xf6\x6e\xe6\x65\x82\x1d\xab\x9b\xe6\xdb\xd2\xfe\xb4\x30\x91\x93\x7b\xb9\x95\x98\x43\x60\x4b\xd9\x4e\x43\x12\x61\xd7\x3d\xf8\x0b\x77\x5d\xef\x1b\xf5\x04\x26\x11\xfe\x0b\x27\x07\xa1\x1d\x44\xb9\x6e\xd6\xaf\x8c\x4f\x65\x02\x53\x6d\x55\x26\x06\x9c\x5c\x94\xbc\x48\x52\xee\xe0\xdb\x4b\xca\x63\xbe\x43\x78\x6f\xdd\x2b\x7e\xbd\x52\xf5\xda\xb1\x36\x69\xa0\x9b\xba\xd7\x7c\x68\x77\x57\x27\x2c\x5f\xd0\x76\x27\x95\xdd\x6f\x47\x12\xad\x45\xf6\xd9\xf2\xf0\xb6\xf3\x64\x05\x02\x64\x5c\x85\xc7\xdf\x89\xae\xad\x84\x27\x4f\x78\x67\x5c\x72\x13\xd8\x86\x4f\x9d\x65\xe2\xc4\xdc\xa4\xd6\x91\x21\x55\x96\x9e\x49\xfc\xc9\xb8\xf7\x56\x0d\x03\x58\x71\x09\xa1\x16\xb7\x5b\xc6\x3d\x13\x0f\x50\x94\xc8\x10\xb0\x1c\xbf\x85\x20\x39\xb6\x9d\x8d\x01\x86\x7a\xe8\xf6\xa0\x6e\x02\x9b\x2d\xbd\x03\x8f\xda\xc6\xad\x7c\x4f\x6a\xb8\xa7\x32\xff\x62\x9a\xac\x56\xbd\xa4\x07\x66\x6d\xf5\x14\x8c\x0e\xda\x41\x4a\x41\x4c\x55\x9a\x40\x0b\x66\x72\x2b\x63\x0f\x41\x90\x15\x83\x48\x42\xb1\xc7\xc8\xec\xf6\x13\xfd\x1a\x3b\xc9\x62\xa1\x5c\xe2\xec\x69\xa9\x52\x70\xc9\x34\x88\x2d\x23\x54\xcc\x60\x15\x49\xbf\x1e\x8e\x70\x41\xc2\x49\x71\xc6\x27\x45\xbf\x8f\xd8\xac\x98\x5b\x86\xa9\xc5\x5c\x87\xda\xd2\xf6\xc0\x32\x43\xe1\x7a\xb3\x5a\x3d\xb3\xf0\x7b\xbb\x43\x13\xdb\x96\x3a\xef\x8a\x2c\x04\x49\x3a\xad\x11\xce\xb8\x0a\xd6\xd9\x2c\x95\x11\x3b\x67\x7c\x8e\xf0\x8f\xd4\xe3\xea\xe7\x1f\x94\x39\xee\x0e\xcb\xd1\x17\xb4\xa4\xbc\x63\xfc\x5d\x88\xd4\xdf\x34\x01\x6f\x7d\x5e\xf3\x31\xd0\x11\x5f\x2a\x6f\x03\xfd\x7b\x7a\x1b\xc6\x7c\x17\xf3\x49\x47\xa4\x3e\xd6\x8c\x5f\xc0\xab\x98\x98\x7c\x8e\x73\x13\x35\x11\xd2\x7f\x59\x99\x7a\xe4\xc3\x84\xce\xf2\xf9\x76\xeb\x89\x3f\x90\x00\x5b\xfc\x98\x65\x73\x92\xc8\x50\x9c\xbb\x39\x72\xdd\xcc\xb3\x5c\xfc\x31\x43\xb8\x80\x32\x99\xda\x4d\xb3\x9e\x08\xff\x8d\x93\xdb\x6c\x50\x7e\xbe\x8c\x5b\x11\x4a\x5b\x96\xc9\x61\xa7\x65\x72\x68\x5b\x26\x87\xf3\xf8\x76\xa7\xcc\xfd\x05\xf7\x9b\xe8\x45\x2a\xf8\x43\x7d\x89\x5e\xaa\xf5\x99\x56\x21\xab\xcc\x5b\x2b\x56\x2f\xba\xdd\xc5\x45\x15\xcf\xa2\x3b\xa4\xd3\xdf\xb9\xc7\x10\xfe\x22\x3d\x30\x76\x95\x69\xa2\x4c\x39\xe8\x39\x6f\x20\x11\x2a\x84\x73\xa4\x7f\xdf\x64\x05\x15\x4b\xec\xd9\x9b\x57\xbd\x7c\xd9\x2b\xf3\x6b\xda\xfb\x94\xb1\x45\xe0\xa0\x1d\x4e\xcb\x32\xfe\xc4\xb1\x34\xc3\x7c\x5a\x96\x36\x5a\xfe\xc2\xb7\xdb\x16\xeb\x96\xa6\x9e\xbf\x23\xf6\xb0\x40\x57\x3d\x30\x19\x04\xee\x62\x7b\x22\x7a\x4d\x0e\xa2\x8e\x50\x67\x10\x5c\xab\x5e\x24\xc0\xc5\xed\x60\x63\xe4\x20\xc4\xff\x5e\x33\x21\xfc\x91\x7b\xb7\x6d\x00\x60\x93\x59\x72\xef\xd6\x8e\x49\x16\x7f\xe1\xd8\x0e\x49\x16\xbf\xe6\xb8\x3b\x22\x59\xfc\x77\xde\xca\x8d\x0f\xcd\xb2\x9d\x5a\xb3\x2f\xb8\x9d\xfa\x6c\x4f\xc4\x17\x51\xf1\x17\x4e\xbc\x9f\xbb\x82\x24\xfd\x46\x5b\xfa\xdb\x1d\x44\xd2\xa9\xbc\x81\x6a\x21\x3d\x6f\x28\x84\xf4\x34\xfe\x41\x56\x40\xaa\xdc\x75\x73\x70\x1d\x02\x7f\xa1\xb4\xfa\x2a\x91\x69\xf7\x12\xf0\x21\xd2\x39\xb4\xcc\xdb\x95\x7c\xbb\xc2\x6b\xc2\xb5\x87\x98\xc9\xa5\x45\x08\x59\x4f\x67\xf3\x78\x8d\x17\x84\xdb\x71\x46\xaf\xaa\x0a\x8b\xe9\xed\x2e\x5e\xe0\x0b\x01\x94\xdc\xab\xae\xab\x97\x17\xe2\xe5\x05\x78\xf3\x49\xbc\xbc\xaa\xf6\xc8\x4b\x3b\x77\xc7\x67\xf5\xa0\x17\xd7\x33\x0e\x49\x7f\x20\xa6\x07\x04\xdf\xda\x89\x4d\xc7\x6b\xcb\x0c\x62\x61\xe3\x5a\x68\x99\xcd\xf4\xea\xf7\x0b\x2d\x73\xb5\x27\xb4\xcc\x55\x67\x68\x99\xa6\x8b\xd4\x37\xee\x7d\x56\x59\x6e\xd2\xe9\x37\xee\xa5\x32\x6d\x4a\xdc\xf4\x82\x04\x73\x72\xed\xce\xaa\xa3\xdb\x4a\xc3\x71\x65\xd8\xfd\xaa\x32\xec\xbe\xb4\x2c\xd3\x61\x3f\xba\xa1\x82\x91\x2a\x0b\xf5\x4c\x99\xb3\x6f\xb4\x79\xba\x65\x89\x7e\xa5\x0d\xd4\xaf\xb1\x36\x5a\x5f\xee\x34\xc5\xff\xbe\x14\xac\x03\xc0\xca\xc8\xd9\xb1\x10\x92\xa0\xc0\xa4\x80\xb3\xc2\x30\x79\x05\xf1\x0a\xab\x7a\x21\xaa\xcb\x02\x84\x7f\x16\x7c\x14\x86\xc9\xf1\xad\x4c\xbf\x05\x96\xc4\xf8\x27\x4e\x6e\x59\xfe\x78\xc3\x73\x9b\xdf\xb5\xf9\x4c\xd4\xc9\x66\x22\xbc\xe6\x10\x6c\x6e\x91\x95\x69\xce\x18\xb8\x1e\xee\x70\x0a\xbe\x9d\xf1\xaf\x78\x91\x5f\xc7\x7f\xe3\x78\x95\x5d\x14\x49\xf1\x35\x7e\xcb\x31\x38\x37\xc6\x2f\x38\x5e\x66\x6c\xf1\x22\xcd\x59\xb5\x2f\xc7\x4f\x64\xf0\xde\xf8\x17\x8e\x39\xfd\xd2\x15\xb1\xf4\x5f\xcb\x0d\xe4\xaa\xae\x45\x53\x84\x55\x2d\x19\x82\x5e\xd5\x35\x9e\x30\x9b\xc7\x09\xde\xd4\x57\xf5\xba\xaa\xb0\x11\x0b\x77\x83\x97\xd5\xaa\x5e\x54\x2f\x97\xe2\xe5\xd2\x5a\xaa\x6a\xa1\x8a\xb1\x3b\xd8\x38\x56\xee\xf6\xae\xd7\x9a\xff\x65\x37\x39\xab\xfc\x29\x1d\x54\xbc\xd6\x54\xbc\x30\x54\x3c\xbb\xc3\x19\xda\xb2\x37\xb3\x1c\xe1\x56\x5e\x0a\x87\x08\xc8\x07\xac\xcc\xb4\x7e\xff\x69\x53\x7e\xb4\xd6\x94\xc1\xb4\xc8\x49\xd3\xd3\xd2\x0a\xca\x0c\x93\x66\x4d\x4b\x69\xcf\xdb\xed\x2e\x4e\x70\x5a\x4d\x8b\xc5\xca\x53\xf1\x32\x6d\x4f\x8b\x1a\xde\x83\x66\xe6\x49\xcd\x33\xd6\x44\xf0\x47\x0d\x9f\x4d\x7b\x3e\x4a\x93\xf9\xee\x7b\xe6\x43\x03\x65\x4f\x49\x56\x4d\x09\xd4\xfa\xdd\x27\x44\xa3\xbc\x36\x25\xb3\x79\xcc\xda\x48\x03\x00\x9c\x3a\xa2\x2c\x21\xb2\x0a\x4f\xd7\xc8\x2e\xdf\xcc\xc2\x3d\xa5\xed\xb3\x2c\x17\xa0\x28\x7d\x81\x39\xf2\x8a\x71\xc7\x7b\xdf\xe0\xd9\xdd\x99\x43\xee\xc7\x78\x0d\xd3\x05\xb2\x52\x49\xee\xea\x89\x94\x04\xfa\x79\xfe\x13\xbf\x5e\xc5\x05\xdf\xe1\x1f\x79\x3b\x5f\xc0\xbf\x40\x9e\xac\x0b\xe3\x13\xcf\x3e\xa2\xe8\x53\xb0\x49\xa6\x1c\x6e\xb7\x75\x47\x59\xe4\xba\x8f\x5d\xb7\x2d\x77\xfe\xc4\x83\x45\x7e\x1d\xc0\xa1\xc2\xbb\x15\xc2\x21\x88\x78\x3b\xa4\xf2\x69\x88\x13\x27\xf3\xa2\x31\x12\xff\x0e\x42\x14\x94\x94\xbf\xb8\xbe\xa6\x8b\x2c\xe1\x14\xd9\x9b\x22\x86\xe3\x20\xfd\xb2\xce\x0b\x5e\x92\xdb\xf7\x82\xcd\x2b\x86\xf7\x2c\x2b\x28\xe8\x6b\x63\x67\xa1\x7f\x3a\xf8\x69\x7e\x2d\x06\x2e\x96\x1f\xfc\x70\xf0\xbb\xb4\xc8\xd6\x3c\x76\x4a\xf8\xeb\xe0\x77\x32\xd5\x98\x8c\xb2\x87\xdf\x43\x96\xcb\xe4\xd2\xc1\x4f\x9f\x3d\x7e\xff\x38\x76\xd2\x45\xc2\x13\x07\x3f\xcb\x53\x49\x91\x0b\xf9\xc3\xc1\x59\x29\xea\x76\xf8\xf0\x8a\xaf\x4d\xb4\xd8\xed\x56\x77\x54\x2b\x82\xce\x4c\xc9\x6e\xd7\x1c\x23\x07\xff\xa5\xe2\x92\x34\xf3\x31\x64\x4b\x8f\xf7\x32\xd6\xa3\xc6\xfd\x70\xc6\x21\xfa\xf6\x90\x90\x16\x41\x18\xd5\xc6\xa4\xd2\x34\x48\x2d\xc3\x0f\xce\x0f\x7d\xde\xff\xc1\xe9\x65\xe2\xd8\xa3\x4e\x40\x8b\x9e\x6e\x20\xf8\x41\xe5\x58\x67\xe4\xf0\xaf\xde\x34\xf6\x66\x1f\x6e\xfa\x1f\xfc\x60\xde\x47\x31\x9a\x7e\x38\xfc\x70\x28\x0a\x3f\xdc\xf4\xe3\x0f\x37\x7d\xf4\xbf\xd1\x54\x54\x08\xfc\xf9\x23\xe4\x4d\xe3\xd8\xfb\xb0\xe8\x23\x34\xf5\x82\x47\xe8\x0f\x87\xb8\x20\x87\x7f\x15\x38\x8c\x83\xfe\x07\x1c\xf4\xff\x70\x58\xa9\x0e\x73\x5b\x67\x23\x9d\x30\x99\x15\xe0\xef\xb6\x4c\xaf\xe8\x35\x8d\xf9\x2c\x9a\xe3\x64\xc3\xaf\x62\x3e\x1b\xcc\xf1\x55\x5e\xf2\x98\xcf\x86\x73\x2c\xa8\x20\xe6\xb3\xd1\x5c\xa6\xfd\xe5\xb3\xf1\x7c\x27\x33\x11\x54\x21\xe5\xab\x2e\xaa\x9c\x59\x34\x90\x2d\xbb\xae\xc7\xfb\x44\x3f\xf5\x21\x56\x25\xef\x13\xe7\xf0\xd0\xc1\xb0\x40\xae\x74\x0d\xf1\xbb\xef\xfc\x6f\xf0\x92\x13\xfd\xeb\x72\xf1\x5b\x94\x09\x48\x64\x99\x13\x3b\x7d\xf9\x0c\xe5\x49\xd5\x06\x64\xf1\xc3\x56\xbe\x95\x44\xc3\xc6\x88\xd8\x9f\x04\x36\xa4\x46\x0a\xb4\x45\x85\xfc\xc0\xc4\x37\x65\x44\x96\xec\xb4\xaa\x26\x81\xb8\x04\x59\xf9\x58\xdd\x6b\x88\xf3\x6e\x4a\x98\x0a\x89\x78\xf8\xe1\xb0\x7f\x88\xf0\x8a\x84\x78\x43\xd2\x2a\x7f\xfc\xe6\x9c\x84\x93\x8d\xef\x23\x27\x10\x04\xe8\x25\x24\x9d\x6d\xe6\x68\x9a\xc2\x77\x29\xf5\x36\x38\x42\xb1\x13\xc0\xdb\x64\xba\xea\xf7\xe3\x15\x44\xe6\x74\x64\x81\x57\x55\xec\x47\x78\x05\x3d\xa0\xd8\x2a\xc5\x03\x84\x57\xbe\x6f\x9c\x84\xe1\x3b\x8f\x91\x54\xb1\xba\x43\x07\x21\x88\x25\x5a\x4e\x9d\x43\x27\x76\x02\x07\xe1\x62\xea\xc9\xc1\x11\x86\x33\xc1\x16\x63\x56\xa1\xa9\x94\x4b\xc2\x51\x19\x57\x3c\x4a\xe0\x1b\x19\x79\x53\x20\x17\x9e\x15\xb9\xe6\x1e\x47\xb8\x34\xb8\x84\x4c\xca\xa4\x84\xb6\xb7\x5b\xd1\x37\x66\xae\x7b\xc0\xd4\x94\x6b\xec\x96\x32\xc7\x24\x94\x91\x52\xbf\xc4\x99\x20\xc7\x6c\xe9\x31\x3b\xbe\xbb\xfe\x86\xab\xf6\x0f\x4a\x45\x11\x07\x65\x6d\xc6\x64\x31\xe1\x38\xf3\x4a\xed\x35\xef\x1c\xca\x54\x9f\xe9\x55\x52\x3c\xe6\x5e\x88\xa6\x3c\x4e\x3c\x5a\x25\x44\xff\x70\xd8\xff\xc3\x21\x76\x1c\xd4\x77\x0e\x9d\x7e\x95\xd5\xa2\x9c\x7a\xb2\x75\x92\x42\x7b\x28\x4e\x77\x3c\xd8\x14\xab\x9f\x85\x3c\x4c\x72\x0c\x0f\xff\x46\x19\x2d\x12\x4e\x49\x86\x79\xc0\xf2\xe2\x3a\x59\x65\xdf\x28\x49\x30\x07\xdc\x93\x12\xdb\xf4\xd2\x11\x20\x41\xc2\x47\x2b\xf8\xb6\x5b\x16\x70\x0a\x11\xde\x77\x98\x07\xfa\x52\x94\xd4\xb9\x55\x73\x6a\x20\x7a\x6d\x35\x24\x39\xa2\x89\xa6\x5b\x46\xc2\x49\x3d\xa7\x07\x15\xa3\x45\x13\xad\xf1\xa2\xc1\x2a\x29\xf9\x0b\x9d\xf0\xe3\x50\x45\x11\x3e\x0b\x6b\xa8\xf7\x20\x66\x2f\xd0\x5c\x88\xc5\x4e\x2a\x27\xe8\xf0\xaf\xde\xec\xaf\x1f\x0e\xe7\xfd\xf8\xc3\xa1\x60\x55\x8f\xfe\x70\x68\x4d\x59\xbf\xcf\xb4\x2e\x48\x8a\x06\xac\x6f\xa2\x15\x07\xc1\xa1\x83\xfa\x5c\xbb\x48\xeb\x98\xf4\xfd\x48\xf1\xc2\x94\x1c\x78\xce\xc7\x8f\xa0\x41\xfb\xf8\xd1\xc9\x8c\x02\x4f\x45\xd4\x84\xf4\x13\xa8\xe2\x6e\xab\x5a\x96\xff\x2a\x0e\xbc\xf2\x27\x3d\xd0\xd4\x77\x10\x19\x95\x98\xca\xe8\x24\x98\xfc\xd9\x69\xf5\x3a\x5b\x7a\xa7\xe3\x03\x3d\x31\x2a\xb5\x13\xf7\x23\xb4\xdd\x76\x95\x0f\xd0\x76\x1b\x45\x51\xfb\xc5\x10\x5e\x1c\xb5\x5f\x8c\xf6\x7d\x31\x86\x17\xa3\xf6\x8b\x23\x78\x31\x68\xbf\x38\xde\x03\xd4\xc9\x9e\xf2\x53\x54\x8d\xb3\xa2\x10\xee\x47\xe1\x84\x09\x56\xc5\x7c\x1f\x89\xed\xad\x05\x35\xb3\x3e\x54\x3f\xc2\x0a\xcb\xeb\xda\xa5\x09\x05\x89\x26\x84\xbd\x41\x90\xea\x34\xd2\x3f\xf9\xd4\x8f\x62\x7a\xce\xa7\x51\xec\x47\x3b\x2e\x64\x6d\xca\xa5\xb8\x4d\xd2\xe9\xaa\x4b\xe7\x24\x26\x70\xea\xfc\xc1\xe9\x53\x21\xc2\xf3\x60\x59\xe4\xd7\x0f\xfb\x88\x9a\xf0\xc7\xf2\xcb\x34\xbf\x5e\x27\x05\x7d\xf2\x55\xe7\x09\xf9\x59\x5d\x03\x97\xad\x7d\x5f\xae\x8c\xb5\x47\x83\x12\x72\x89\x60\xae\x7e\x18\x16\x21\x13\x9a\x15\xb1\xf8\xeb\x89\x45\x94\xab\x46\x5f\x66\x8c\xfa\xbc\xf6\x88\xba\xea\x3d\xcd\x57\x9b\x6b\x66\xd5\x94\x05\x82\x07\xd8\xd5\x2f\x15\x93\x59\x98\xfa\x8d\x12\xd4\x59\x5b\x41\x51\x7b\x16\x35\xc5\x90\x58\x72\x2d\x06\xc4\xc0\xf3\xda\xc6\x8b\x66\x68\x0b\x83\x98\x67\x74\xb9\x12\x05\x7b\x10\x74\x4f\x87\x7b\x71\x75\xff\xa0\x6a\x58\xe8\x9a\x87\x4e\x9c\xfe\xb3\xb8\xff\x7e\x04\xbd\x60\x1d\x08\x32\x62\xc6\xc3\xd1\xc3\xa6\x4c\x82\xc9\x1e\x36\xe7\xa6\x76\x37\x6e\xac\xc6\xee\xc4\x4d\x47\xbd\xbd\xb8\x61\x9d\xb8\x01\x0d\x91\x4c\xb8\xf3\x2a\x59\xbf\x60\xeb\x0d\xef\x0a\x05\xf4\xef\xef\xde\xbc\x96\x75\xed\xfd\xf7\xaf\x1f\xd0\x7c\xf7\xc3\xec\xaf\x1f\xd8\xfc\xd1\x07\x06\xfb\x96\x41\xf8\x86\xab\x66\x7f\x79\xfb\xb2\x53\x2e\x27\x7c\xbb\x75\x1c\x2c\x36\x42\xe7\x10\x42\x0b\xcc\xa8\x11\xbc\xe6\xae\x2b\x0b\xf9\x2c\x84\xf4\x6b\x42\xce\x14\xf2\x26\xa1\x7d\x8e\x2a\x0a\xce\x95\xcc\x71\x50\xa0\xa6\xd0\xee\x94\x7a\x54\xbf\xbc\x7d\xd9\x4b\xf3\xcd\x6a\xd1\x63\x39\xef\x5d\xd0\x1e\x0c\x64\xa1\x36\x4a\x29\x86\xa8\xac\xc1\xf2\xa9\xbd\xa3\xa6\xe7\x44\x48\x75\x4a\xec\x52\xb5\xe4\xd6\x97\xb1\x4b\x2f\xc4\x69\x3f\x42\x68\xc7\x49\xe9\x09\x89\x0c\x57\x81\x77\x12\x8f\xa3\xd6\x81\xa5\x3a\x94\x75\x46\x6e\xb9\xa1\x17\xeb\x24\xfd\xf4\x73\xbe\xfa\xba\xcc\x56\xab\xed\xd6\xa3\xc1\x82\xae\x0b\x9a\x26\xbc\x91\x4d\x53\x0a\xca\x25\x99\xcd\x71\x15\x18\x06\x3e\x30\xd9\xa9\x67\xf3\x3b\xae\x9d\x57\x79\xb2\xa0\x0b\x07\xdf\x52\xb6\xb9\xa6\x85\x8a\xb8\x81\xf7\xdd\x75\xaf\xee\xbc\xc3\xce\x1e\xde\x50\x06\x37\xd2\xcd\x91\x92\x08\xae\xdf\x70\x37\xbb\x62\xde\xd1\x18\xe1\x5c\xfc\x3d\xb6\x24\x87\xac\x96\xa0\x4b\x25\x34\x32\x18\x9e\x71\x81\x99\xea\x81\x30\xcc\x76\xd6\xa1\x18\x44\xc2\x22\x2e\xf0\xfb\xfc\x13\x65\xd9\x37\x5a\xc4\xcc\x3b\x3a\x42\x58\xdd\xbf\x40\x88\x6e\xe6\x0d\x8f\x11\x7e\x96\x5f\xff\x94\xb0\xc5\x8a\x16\x71\x2e\x06\xd6\xfb\x91\xd2\x85\x2a\xa9\xc6\x96\x79\x8e\x55\xee\x88\x43\xfa\x70\x20\xd6\x85\xf8\xe2\x1d\x2f\x68\x72\x5d\xab\x2c\x8b\xa0\xde\xe8\x48\xd7\xfb\x73\x91\x71\x81\xc2\x8e\xfa\xf5\x57\xe2\xbb\xe3\x91\xfe\xec\xe7\x22\xff\xf2\xb5\x0b\x22\xfb\x05\x74\x35\x1e\xea\x6f\x9e\xe5\xd7\xbf\xf0\x6c\x55\xd6\xea\xeb\x42\x51\xf7\xe8\x54\x57\x7d\x9a\xaf\x56\x34\xe5\x19\xbb\xec\xea\xa3\xf5\x56\x76\x04\xc0\x3d\xa3\xcb\x64\xb3\xe2\x75\xf4\xbd\x2d\xcb\xae\x76\xaa\x62\x15\xaf\xdd\x42\x27\xda\x49\x9d\xf6\xb3\x37\xaf\x3a\x2f\x94\xc5\xf2\xcf\xad\xfc\x76\xe2\xb9\xf0\x18\xe6\x28\xa0\x6c\x01\x29\x1f\x82\x45\x7e\xad\x5a\x11\x0d\xc7\xed\xc0\x24\x39\x34\x63\x68\xc4\xee\xdf\x3a\x71\xcb\xa6\x73\xcc\x64\xd3\x1c\xe1\x5c\x36\x2d\x05\xdc\x67\xf9\xb5\x9c\xa1\xb8\x8b\x98\x33\x05\xa9\x2c\xaa\x37\x99\x09\xee\x81\x9f\xff\xe9\xf9\xeb\xf7\xef\x2c\xa5\x65\x3c\xc0\xa0\x5d\x81\xfc\xca\x71\x28\x1f\x28\x5b\xc4\xa1\xd4\xdf\x47\x78\x5d\xe4\x29\x85\x70\x8d\x99\x8a\x47\x9f\xe5\x4c\x7c\xa6\xb4\x3a\x91\xfe\x25\xbf\x4a\x57\x79\x49\x79\x72\x19\x47\x38\x5f\x53\x26\x7e\x0d\xf4\x2f\xb1\x3f\xc4\x11\x86\x30\x62\xe2\xaf\xf8\xa0\xad\x77\xe9\x8a\xed\x55\x93\xf2\xa7\x5d\x8c\x0e\x34\x36\x82\xa7\x07\xe5\x66\x4d\x8b\x8f\x84\x43\xb6\xc3\xee\xc0\xfb\xf6\x1d\xfc\xad\x15\x67\x3f\x96\x01\x5c\x63\x8a\x6d\x7e\x13\xe1\x1b\xb5\x3a\x20\xdb\x0e\x5c\x8c\x6c\x34\x2f\xda\xed\x10\xda\xc5\xfb\x20\x12\x5b\x92\x60\xcc\x1a\x26\x75\x42\xae\xa5\xde\x63\x16\x98\x36\x60\x36\xf8\x62\x0e\x99\x5d\x52\xcb\x0e\xd0\x52\x5e\x09\x82\x70\x36\x25\xed\x89\x9d\x24\xe5\xce\xc4\x6b\xea\x8f\x05\xdf\x8b\xc6\xa1\x64\x7c\xd1\x38\x42\x38\x83\x1f\x03\x8b\x05\x26\xd5\x02\x4a\x83\xf7\xbf\xfe\xfc\xfc\xd9\xc7\xc7\x6f\xdf\x3e\xfe\xf5\xe3\xbb\x5f\x7e\xfe\xf9\xcd\xdb\xf7\xd3\x41\x34\x3a\x1e\x9d\x0c\x8f\x46\xc7\x71\x14\x1e\x0f\x8f\x47\xd1\xc9\x60\xd8\x52\x1a\x64\x4b\x2f\xf1\xd0\x19\xb7\xf6\xd2\xb7\x09\xbb\xd4\xb6\x36\x2f\xd8\xe7\x64\x95\x2d\x7a\x62\x54\x8b\x5e\x22\x4e\x84\x3d\xb9\x61\x57\x66\x48\xdd\xdd\x7b\x12\x2f\xbf\x64\x8c\x9f\x68\x9b\x18\x14\x98\xd3\x21\x49\x2b\x74\xc5\x9e\x3e\x76\xc0\x09\x59\x7c\x96\x8a\xda\x58\x0b\x07\x84\xd7\x4c\x99\x52\x4b\xa6\x38\xe8\xec\xdd\x75\x0f\x40\x69\x6a\x9b\x13\xa5\xc8\x8e\x4f\xa4\xdb\x10\xf2\x80\xc3\x36\xd7\x17\xb4\xb0\xd3\x4a\xca\x6c\x5d\xad\x30\xac\xbc\x2d\x72\xbc\x58\xf6\x28\x4b\xf3\x45\xc6\x2e\x7b\x59\xd9\x2b\xd7\x34\xcd\x96\x19\x5d\xf4\xf8\x15\x65\xe2\x9f\x1e\x44\xa3\x32\x9a\xc3\xde\xf5\xa6\x04\x89\x24\xe9\xa9\xe6\x0d\x22\xd7\xda\x6a\x49\x0b\x12\x4a\xf3\x2b\x21\xdd\xd9\xe7\x66\x9d\xd1\xb9\x13\x7a\xde\x69\x37\xf5\x83\x03\xcb\xc7\x69\x40\xa2\xe4\xa3\xa4\x27\x9b\xf9\xc1\x68\xa5\x36\x32\x21\x05\x5d\x58\x39\x82\x61\x22\x9f\x6c\x96\x4b\x5a\xb8\x6e\x2d\x12\xa1\xf5\x66\x5a\x27\x76\x05\x26\x0f\x2e\xbe\x72\xfa\x52\x99\x4a\x9d\x85\xdb\xad\x5d\x72\xc6\xf6\x10\xe0\x0f\xf9\x72\x59\x52\xfe\x83\xc0\x6d\xbe\xe1\xbd\x7c\xd9\xbb\xc8\x37\x90\x53\x7b\xd2\x68\xf5\x8c\xf5\xbd\x62\xbb\x0d\xd1\xbe\xa6\x24\x31\x75\x36\xc5\xad\x9b\x16\x7d\x47\x00\x36\x35\x2d\x1a\x8e\xef\x78\x89\x19\x8a\xdb\x65\xb8\x40\x93\xbd\x6b\x84\xef\x5b\x13\x94\x2c\x61\x85\x56\x69\x5b\x0d\x3a\xe3\x0e\xc2\x9c\xb6\x38\x4c\xab\x0e\x73\x5d\x47\xcc\xa5\x90\x15\x19\x71\x36\x7c\x79\x22\x91\x78\x90\x06\x59\xf9\x5c\x11\xb1\xc7\xba\xcd\xee\x7e\x70\x34\x99\x3b\x16\x09\x4b\xee\x20\xbb\x32\xeb\xe0\x07\x9d\xb2\x32\xdc\x5e\x01\x52\x70\x4e\x3c\x4a\x04\xc7\x29\x10\x0a\x04\xbf\xa6\x50\x3e\xc9\xc5\x31\x13\x16\x7d\xa5\xa9\xca\x51\x6b\xcc\xcd\x68\xb5\xd9\xd2\x13\x20\x4b\x72\x13\x9c\x42\x89\x02\xe1\x76\xe1\x71\xad\xda\x37\x67\x35\x42\x74\xef\x0c\xe9\xab\x99\x29\x8d\x3d\x71\x68\x59\x0b\x21\x36\xc4\xa1\x00\x92\xa2\x9d\xdc\x11\xc4\xa2\xba\x9f\xfa\x83\x0b\xf8\xb5\x67\x11\x6c\xb7\x8e\xe2\x93\x19\xeb\x71\xc5\x79\xf4\x52\xad\x9a\xd4\xd0\x6e\xb7\x5e\x41\x0c\xe8\x70\xf8\x16\x00\x87\x28\x56\x54\x20\x60\x92\x2d\x4b\x05\xa9\x4a\xb4\xe7\xf1\x40\xc8\x04\x86\xb5\x41\x6d\x59\x04\x66\x8e\xc5\xa4\xd3\x84\xf2\xc7\xbb\x59\x12\xee\xc9\xae\xb0\x3d\x22\xf5\x80\x7b\x79\x21\x37\x02\x7f\x95\x7d\xa2\x3d\x19\xd0\x3a\x70\x5a\x71\x70\xb5\x1a\xaf\x3d\x68\xba\x87\xc0\xca\xec\x5b\x8b\x3d\xd5\x59\x53\xb6\xf4\xe8\x59\xd8\xbd\xbe\xbb\xbf\x57\xec\x8d\xd1\x4b\xd0\xcb\xfe\x80\x5a\x1a\xb0\x6c\xe9\x6d\x20\xe9\x28\x90\x08\x3f\x0b\xa7\x61\x0c\x84\x84\x10\xee\xde\x5d\x90\xad\xa8\x65\x67\xa0\x34\x45\x90\xf5\x3b\x9c\xb4\xd5\x99\xcb\xba\xf5\xa3\x9c\xe2\xaa\x17\x43\xae\x9a\x44\x8d\x92\x4f\x1a\x90\xb2\x49\xd1\x27\x11\x82\xb4\x5f\x83\xf1\xd8\xe5\xb3\x62\xde\xd1\xcb\x42\x61\x9b\x9e\x93\xc4\xdb\xc7\x01\x1f\x73\x4e\xaf\xd7\xbc\xc7\xf3\x5e\xb2\x5a\xe5\xe2\x68\xa9\x66\xba\xb7\x4a\x8a\x4b\x5a\xf4\xf8\x55\xc2\x7a\xd7\xc9\x97\xec\x7a\x73\xdd\x53\xa1\x02\xbe\x38\xfd\xc4\xab\xa7\xc9\xef\x3b\x3d\xc1\x77\xcb\x6a\xef\x0a\xb7\x16\x30\x57\x5d\xcb\x94\x56\xa9\xe8\x2c\x35\xee\xfd\x0b\xad\x4b\xe2\xb4\x2a\x04\x59\xf9\xa7\x8c\xde\xb8\xae\xd7\x2e\xf4\x28\xda\x6e\xe9\x9e\x15\x6a\x81\x53\xed\x21\x13\xcd\x36\x2d\x6a\x95\x6a\x7b\xa7\x4f\xf5\x15\x8a\x0d\x3f\xec\x18\xba\xa5\xd0\x9a\xbb\x83\x68\x32\x41\x2a\xe5\x1e\x57\x29\xf7\x92\x32\xcd\x32\x27\x96\xa9\xf3\x12\x9e\xb1\x48\x3d\x5c\x64\x2c\x29\xbe\x3a\xb1\xb9\x8e\x94\x69\xf2\x04\x87\x8e\xf5\x4f\x5f\xfd\xee\xc9\x0d\x48\xd7\xfd\x9b\x47\x35\x53\x53\x5f\xa5\xe5\x40\x7f\x95\x96\xfe\xa0\x6a\x21\x3a\x5a\x51\xab\x3d\xf9\xa8\x9a\x19\x3c\x52\x9d\x5e\xd1\x2f\x15\x1c\xe7\xe7\xe7\x91\x2c\xbe\x48\x4a\x7a\x34\x32\x6f\x5e\x58\xbd\x2e\xe4\x41\x2f\xb6\x6d\xc5\x6d\xa8\x38\xf1\x1c\xa7\xcf\x51\x3d\x04\x2b\x2e\x88\x90\xcf\xab\x4c\x7d\xf5\x83\xbf\x54\xea\x7b\xd5\x75\xfb\x76\xcb\xcf\x42\x04\xb7\x59\x21\xc2\xfc\x1c\x8e\x89\xb5\x5b\x5c\xc7\xa9\x7f\xc2\xb6\x5b\x56\xab\x26\x13\xf4\x59\x05\x98\x9d\x91\xb0\xfe\xb5\x18\x32\x09\xd1\x19\xf1\xb8\xfc\x55\xbd\x16\x73\x4b\xb7\x5b\x41\x0c\x6a\xef\x34\x13\x4c\xd5\x04\xdb\xc8\x7b\x2e\x85\x37\xd8\xe7\xf6\x4c\xa7\xaa\xf9\xbe\x59\x53\xd1\x89\x7a\xfd\xba\xf9\xfa\x2e\xd2\x79\xd9\xac\xdc\x98\xb8\x37\x2d\xa8\x7e\x13\xb9\xbc\xb3\x9a\xa9\xcd\x7f\xe7\x76\xf3\x0b\xfb\xc4\xf2\x1b\x66\x04\x84\xb8\x07\xab\x89\x12\x8f\xf6\x21\x63\xfa\x5d\x84\x71\xdd\x50\x60\xcf\xf8\x7c\x22\xfe\x21\x82\xe3\x62\x60\xbb\x45\x55\xfb\x95\x96\x92\x54\x9c\xe5\x5a\xf2\x64\x09\xbc\x0f\xa4\xd5\x21\x1f\x4d\xbd\x82\x30\xcc\x48\x88\x62\x76\x5e\x1d\x9f\xa6\x8c\x58\x67\x29\x76\xe6\x9b\xa7\x13\xa0\x28\xeb\x19\x61\x46\xfa\x4c\xe5\xde\x64\x92\xe0\xf2\x69\x18\x57\x5a\x4e\x41\x73\x21\x94\x9b\xeb\x33\x86\x30\x3b\xaf\x80\x14\x50\xe7\x15\xa8\x55\x45\x3f\xda\xe9\x8c\xe6\xec\x2c\x94\xa7\x9f\x5a\xc5\x70\xd7\x7d\x68\x81\x45\x93\xc2\x35\x0c\x18\xb3\x23\x5c\x97\x9e\x2c\x41\x49\x6f\x47\x53\x3f\x8a\x2f\x2d\x54\x76\x1f\x93\xb8\xb9\x37\x74\xc5\xde\x84\xf7\x9c\xc5\xba\x38\x78\x25\x22\x5b\xc7\x66\x75\xdd\x39\xcd\xa7\x77\xbd\x96\x36\x31\x4a\x30\xec\xac\x68\xe9\x72\x6b\x95\xc5\x88\x66\x7c\xae\xc7\xd4\x49\xab\x9f\x93\x95\x91\x3c\xb4\x34\x24\x07\x2e\x04\x1f\x25\x82\x59\x52\x84\x8d\x25\xa9\xe7\xc1\x09\x89\x70\x69\xa6\x0d\xac\xe0\xaa\x0d\xc3\xd8\x1f\x09\xb9\x57\xae\x3e\x02\x77\x1d\x6a\x77\x2d\x1a\xcb\x01\x6d\xb7\x6a\x61\x8a\x23\x87\x78\x50\x2b\xb3\x7a\xf4\xcd\x33\x92\x32\x80\x16\x32\x06\xe2\x90\xa5\x7f\x57\x94\x92\x90\x01\x2e\x0f\xc9\x00\xa7\xe2\x1f\x76\x48\x06\x8d\xb3\xa5\xd1\x2c\x44\x60\xd1\x20\x56\x5b\x4c\x83\x82\x26\x8b\x5f\x5e\x30\x1e\x1d\x3d\x79\xee\xf1\x47\x09\x88\xcb\xb9\x0e\xe2\xed\xcb\xdb\xc9\x8c\xb0\x49\x76\x56\x4e\xb2\x7e\x1f\x65\x4b\x4f\x34\x97\x21\x42\xc8\xca\xe3\xd8\x8f\xc0\x62\x33\x8c\x33\x7f\x23\x21\x95\x25\xae\xeb\x6d\x48\x86\x70\xe6\x6f\xfa\xa2\xc0\x44\x0e\xdf\x3c\x4a\x80\xe4\xfd\xe8\x40\x56\xcb\x7c\x22\xbe\xc5\xa2\x3b\xb9\x18\x44\x9f\xac\x9f\x9e\x97\xd2\x62\xc2\x4f\x41\x57\x32\xc9\xce\x49\x38\xc9\x7c\xbf\xf2\xdb\x59\x93\x83\x10\x2f\x49\x38\x59\x9e\xa5\x93\xa5\x05\x5d\x7f\x29\xe4\x6d\x01\xdf\x12\xa1\xdb\xb5\xd8\x79\x20\xed\xac\x18\xdd\x5a\x43\x92\xed\x34\xf6\x2a\x54\x7d\xae\xce\xb7\x8c\xbc\x06\x12\xf1\x18\xda\x6e\x43\xe5\xdc\x63\xd6\x2d\x9b\x14\x82\xb5\xa8\x2a\x05\x42\xe7\x39\x58\x13\xe7\x28\x2e\x48\xae\xc2\xbc\xdb\x34\x92\xfd\x71\x70\x40\x48\xd8\xcd\x4c\xb5\x4a\xe6\x8a\x7e\xb1\x34\x08\xe7\xd9\xe1\x00\x1a\xcd\x0e\x07\x95\x08\x99\x90\x70\x92\x9c\x15\x93\x7e\x3f\x69\x25\x3f\x31\xf7\xf8\x83\x47\x09\x1e\x20\x1c\x1d\xc9\xd0\xed\xc0\xbb\x4a\xc3\x15\x92\x09\x9d\xb1\x7e\x32\x27\x26\xb1\x49\x52\xa1\xe0\x6b\x85\x02\xf5\xf2\x17\xef\x6f\x1e\xc7\xd5\xd0\x11\xa6\xd2\x29\xcc\x7c\xf3\xb8\xe3\x1b\x5b\x01\xa6\x61\xe7\x64\x36\xc7\x52\xc2\x36\x02\x97\x10\xb4\xb9\x4c\x8c\x20\x64\xe1\xe6\x75\xb7\xb1\x8c\xda\x81\x40\xdf\xe8\xf8\xa6\xd5\x71\x05\x4a\x55\xeb\x5b\x07\x78\x2f\xba\x9a\xfb\x78\xe7\x38\xc4\x22\x32\xc7\x04\xc1\x1c\x70\x26\xc6\x23\x27\x84\x9a\x3c\xd7\x07\x9e\xc7\x7d\x32\x40\x67\x21\x82\x49\x62\xf5\x2b\xfc\x04\x52\x03\x9f\x9f\x9f\xe0\x9c\xb0\x3f\x0e\xc6\x47\x38\x93\xa3\xcf\x91\xfe\x55\x98\x51\x67\xbb\x7b\x30\xff\x46\xef\xa4\x36\xc3\x77\x5d\x66\x6d\x91\xd3\x02\xb6\x89\x27\x5f\x39\xd5\x96\xa1\x71\xab\x48\x1d\xd5\x45\x53\x56\xeb\xef\x75\xeb\x8c\xbc\x4a\xf8\x55\x70\x9d\x31\xc3\x89\xea\xc7\x9a\xd9\x1c\xe7\x84\x4f\xf2\x33\x36\x31\x2c\x13\x97\x38\xc5\x2b\x42\x67\xf9\x1c\x6f\x64\xe6\x9e\x35\x59\x9d\x0f\x86\xa7\xd3\x51\xbc\x3a\x1f\x0c\x86\xd3\x61\xbc\x3a\x8f\x4e\xa3\xe9\x20\x86\x0d\x3c\xef\xaf\xcf\x08\xd3\x12\xd8\x5a\x4a\x60\xbd\x28\x5e\x9d\x45\x83\x13\x60\x29\x2b\x64\x25\x90\xee\x0d\xe2\x68\x70\x22\x58\x6d\x74\x3a\x70\xbd\x4c\x74\xd5\x8f\xe6\x60\x6a\x95\x12\x6f\x18\xb9\x2b\x74\x76\x76\xb4\x3d\x1a\xba\x19\x3a\x8f\x06\xc7\xd0\x44\x5a\x6b\x62\x18\xeb\xcf\x70\x02\x3f\x06\x73\x6c\x35\x9a\x21\xd7\xb5\x1e\x13\xd5\x74\x34\x86\xa6\xa3\xc1\xd6\x83\xc6\x55\x2f\x09\x3a\x1f\x84\x23\xd1\x4d\x7a\x36\x1e\x0f\x4e\x8f\xb6\xdb\xf4\x7c\x7c\x3c\x1c\x0d\x51\x47\xd7\xa3\x8e\xae\x4b\xf8\x31\xbc\x0f\x06\xeb\xb1\x6c\x80\x74\x62\x40\x52\xd0\x25\x1a\xba\x12\x9d\x1f\x8d\xc7\xc3\xb1\xeb\xa6\x67\x51\x14\x8d\xa2\x68\xa0\xa0\xda\x29\x65\xed\x66\xea\x6d\x88\xa8\x33\xc4\x6b\x12\xa1\x78\xa3\x3f\xf0\x36\x3e\x94\x1f\xe1\x42\x92\xe8\x46\x1c\x23\x42\x37\x0a\x07\xc3\x2d\x8c\x54\x30\xf0\xf1\xd1\x70\x10\x6e\x45\x99\xbb\x41\xa6\x26\xc2\x79\x9f\xac\x35\xa7\x69\xdb\x55\xd7\x2d\x80\xc8\x17\xcd\xa5\xe4\xe6\x09\x84\xfa\x54\x2d\x9f\x20\x59\xaf\x57\x5f\x3d\xf9\x06\x9b\xc3\x9b\xe3\x80\x67\xa6\xa0\x46\x70\xcf\x44\xac\x4f\xee\xff\x5a\x91\x7c\x81\x8b\x3e\xf9\x62\xa5\xf7\xd8\x79\x05\xda\xf1\x40\x8a\x05\x24\xc5\x3c\x78\xb7\xca\x6f\xd4\xa3\x0d\x7e\x9f\x1e\x28\xf5\x76\x68\x29\xce\xe1\x14\xee\xf5\xe5\xbd\xfc\x8b\xd7\xef\x7e\x7e\xfe\xf4\xfd\xc7\x57\x8f\xff\xf2\xf1\xc9\xaf\xef\x9f\xbf\x23\xe3\xb0\x5b\xa4\xb2\xd3\xfb\x77\xe9\x15\x3b\x4b\x6b\xce\x9c\x2a\xdf\x4c\x4b\x47\x5f\xe5\x1d\xa7\x96\x5e\xf2\xd6\xfc\xec\x94\xb7\xf0\x32\xcf\x3b\x6e\x7c\x47\x83\xdd\x0e\x8f\x06\xc0\x5d\x96\x79\xee\xa1\x6e\x49\x90\x8a\x7d\x08\x14\x4a\xae\x2b\xa5\x75\xfd\x0c\x49\x38\xac\xc3\xb9\xca\x84\x63\xc4\x93\x83\x68\xb7\xf3\x10\xe6\xc1\xa7\x57\xc9\x17\x59\x85\x24\x9e\x90\x6e\xd7\x79\xbe\x7a\x97\x7d\xa3\xe4\x24\x3a\x1d\xe0\x34\xf8\x98\x6c\x2e\xaf\x29\xeb\xb4\x73\xa0\xdd\x0a\x58\x4c\x77\x58\xca\xcc\x2d\x53\x06\xa3\x9d\x97\xe9\x35\xa4\x76\x7e\x9f\xf0\xeb\x59\x6d\x5a\x3d\x75\xe2\x31\xed\xac\x80\x3b\x75\x24\xef\xc0\x8f\xca\x75\xe5\xdf\x00\xee\x1d\x68\xe9\xba\xe9\xac\x5e\x32\x17\x02\x95\xeb\x76\x5f\xe0\xa7\xb8\x5e\x59\xe5\x48\x94\xce\x5d\xcd\xbb\x34\x38\x37\x00\xc5\xee\xc3\x48\x5b\xf1\x6f\x8c\xbb\x38\xc2\xfc\x8c\x84\x53\x79\xed\x14\x1b\x02\x66\xd3\xf6\x81\xa5\x50\xb5\x82\x65\xb6\x5a\x41\x56\xbe\xb8\x56\xa0\x1f\x77\xcd\x09\x00\xe0\x7e\x61\x65\xb2\xec\xb2\xdd\xec\xad\x55\xfd\x66\x5d\xb1\x64\xef\xad\xaf\x0f\x4c\x1d\x15\x0f\xd4\xfd\x15\xdd\x6e\x0f\x68\xf0\x51\xd7\x84\xcf\x94\x21\x52\xfb\xe6\xf1\xa0\xa6\x1a\xdb\x6e\x0f\xea\x67\xb2\x4e\xd1\xef\xb1\x36\x5f\x37\x27\x14\xf9\x81\xba\x0c\x01\x23\xbe\xb6\x2e\xaa\x3a\x41\xe2\x4a\xc7\x8c\x73\x12\xe2\xac\xda\xa9\xe1\x96\x22\x3f\xcb\x26\xfd\x7e\x2e\x44\x63\xb1\x11\x83\x2d\x4e\x3e\x17\x3b\x3a\xec\xcb\x05\x3c\x2a\xe9\x58\x73\xc0\xb3\x42\x9c\x15\x8b\x33\x36\x8d\xe2\x50\x22\x4a\x5f\x25\xd4\x50\xa5\xf6\x69\x75\xca\xa1\xcd\x53\x8e\xa5\x3f\xb9\x43\xf7\x75\xbf\x06\xad\xa6\xf3\xf8\xed\x0a\x8e\x83\xd0\xa8\x35\x2a\x5e\x03\xd3\xc9\xd2\x84\x77\xcc\x66\xe6\xd1\x7d\xf7\x26\xab\xac\xe4\x5d\x6a\x6d\x65\x61\xdb\xcb\x97\x7a\x1a\xa5\x86\xbb\x43\x65\x61\xb6\x8a\x50\x6d\x63\xd5\x49\x12\xe6\x5c\x4c\x35\x27\x61\xa7\xb8\xdc\x07\x45\x89\x2e\x92\x12\x58\x8d\xfc\xc1\x8e\x41\x6d\x89\x1d\x0d\xdc\xca\x83\x84\x68\x64\xd2\xa0\xdb\xe4\x77\x19\x72\x22\xef\x61\xc4\x01\x5a\xec\xfe\x3a\x4d\x9b\xa6\xb0\x42\xe0\xbd\xda\x04\xc8\x15\xae\x71\x54\xb3\x2e\x0f\xc2\xda\x8b\xf2\x26\x59\x47\x47\x6d\x9f\x20\x4b\xff\x07\x6b\xa6\x75\xd4\xb2\x15\xe6\x4a\x39\x5e\x66\xdf\xa8\x75\x1d\x71\xbd\x59\xf1\x6c\xbd\xa2\x62\x18\xd1\x91\x7f\x91\x41\x1e\x9a\xea\xdc\x12\x4e\xf8\x19\x9d\xf0\x3e\x19\xa0\x6b\xad\x27\xe3\xfd\x6a\x6b\x15\x45\xbb\x16\xb0\xc3\xc1\x03\x80\x1d\xfd\x53\xc0\x0e\x07\x77\x00\x3b\xb2\x81\x1d\x22\xac\x9f\xfa\x11\xe6\xfd\xc1\x3d\xc0\x1f\x8d\x1e\x00\xfc\xc9\x3f\x05\xfc\xd1\xe8\x0e\xe0\x4f\x6c\xe0\x8f\x1b\xc0\x1f\x59\xcf\x03\xcc\xfb\x63\xeb\x79\x88\x79\x7f\x74\xc7\xe0\xf4\xad\x47\x7b\x78\xe1\xd6\x1e\xa0\x75\xa4\xa2\x53\xc7\x89\xc3\x0e\x6f\xa3\xa9\x52\xf4\x86\x98\xa2\xf8\x42\x49\x98\x50\x62\x6a\xa2\x7a\xef\xf4\xef\x9b\x64\x55\xb7\x18\x6c\x6d\x1d\x77\x6f\x15\x16\x32\xb5\xee\xca\x1e\x2c\x81\x5d\x0b\xbc\x32\xf5\x56\x65\x8c\x10\x6a\x90\x64\x4c\x88\x08\x1d\x3e\x76\x8e\x03\x2e\x8b\x2d\xe1\xd5\xee\xc5\x72\xbf\xf3\x14\x5d\x98\xdb\x24\xe0\xf9\x70\x01\xab\xfd\x13\x82\xdb\xc1\xee\xf0\xd2\x72\xfc\xc3\x76\x1b\x4c\x99\x86\xf6\x82\x20\xe8\x39\x08\x61\xe7\x4c\xd1\x8e\xd3\xa7\x7d\xe7\xdc\xa9\xc3\xdd\xb5\xff\x5a\xea\xe1\x7f\x16\x95\x35\x36\xac\x2f\x27\x6c\x53\x02\x8f\x11\x3a\xd5\xfc\x34\xb6\x5f\x4a\x8f\x72\xbb\x24\x77\x5d\x2f\xaf\x5f\x50\xf0\xb3\x70\xbb\x65\xe7\xd4\x5c\x13\x17\xa2\x20\xaf\x5d\x6b\x74\x2f\x28\x65\xe1\x50\x88\xa2\x1e\x68\x4e\x95\xf1\xeb\xb9\xe8\x87\x9f\xdb\xb7\x56\xaa\xb8\xa6\x1f\xb7\x6b\xc8\x02\x45\x2e\x6d\x01\x23\x23\x5e\x2e\x2f\x4b\x7c\xaf\x90\x3f\x70\x42\xf4\x55\x8a\xaf\x6f\x52\x70\x59\x89\x1b\x19\x4e\x10\x5e\xc9\xb1\xea\xa3\x55\x2e\x8e\x85\xb6\x72\x01\xaf\x49\x38\x59\x9f\x95\x93\x7e\x7f\x0d\xea\xba\xd9\x5a\xc8\x24\x9b\xd9\x7a\x8e\x6e\x33\x22\x1e\x71\x02\x8f\x75\x99\x24\x3b\x4b\x84\x4c\x92\x9c\x65\x5a\x26\xb1\xe9\x38\x5d\x6d\x16\xb4\xed\x3f\xa0\xc7\x2e\x84\x1e\x01\x95\x71\xbd\x31\xd2\x65\x4b\x11\xbd\x4f\x0c\x7e\x65\x99\xed\x60\x88\x77\x92\x76\x2b\xa7\x1f\xd6\x40\xd4\x68\x00\xec\x27\x5a\x04\x0d\xe4\x6c\x89\x04\x85\xba\xa5\xc2\xb5\x2b\x2f\x2c\x78\xa6\xbe\x45\xb0\xe9\xb4\xcb\xd6\xa9\x20\x7c\xcf\xd7\x52\xe4\x29\x7f\x84\x10\xc9\x75\x71\xb5\xc6\xcf\x95\xad\x87\xd6\xa3\xeb\xfb\x1f\xdc\x93\x56\x3d\x33\xac\x8c\xc9\xe6\xa8\x97\x95\x3d\x96\xf7\x56\x39\xbb\x14\xdb\xc0\x66\xbd\xce\x0b\x0e\x06\xdb\x7c\x2b\x24\x55\xdd\x17\x43\x53\x8f\x89\x92\xc6\x3a\x52\x57\x72\x28\x56\x77\x38\xf2\xb5\x34\x82\xa8\xad\x29\x9f\x77\xdc\x12\xe6\xea\xaa\xa6\x32\x39\x03\x5e\x25\xcd\x94\xce\x42\xb4\xdd\xf2\x07\x2c\x39\xeb\x7a\x1d\xc6\xdd\xcb\x37\xbc\xcc\x16\xb4\xa7\x2c\x45\x8c\xb5\x51\x01\xe6\x1e\xfa\x16\xb1\x5a\x46\xf6\x9d\x71\xd1\x71\xa5\xf8\xd9\xb6\x07\xbb\xe7\x52\xf1\x6b\xbb\x6e\xfd\x5a\xf1\x71\xbb\xc2\x5d\x17\x8b\x37\xed\xea\x8d\xab\xc5\x6f\x1d\xd0\xfd\xa6\xcb\xc5\x8f\xb5\x86\xac\xeb\xc5\xec\xe1\xd7\x8b\x05\x9a\x14\x70\xef\xdc\xbc\x4f\xc1\x19\x5c\x2f\x36\x36\xf9\x7f\x7f\xf7\xe6\x35\x69\xa9\x30\x94\x8f\xbd\xe2\xf6\x18\x9c\x74\x9b\x77\x4d\xc0\xae\x2a\x37\xed\xe0\x63\x52\x14\xdb\xad\xdc\xe7\xd1\x4e\x3a\xc6\x7d\x21\xa3\xf0\xf4\xa8\xb2\xdd\x7c\x5d\xbf\xd2\x74\x9c\xc9\x3d\x3a\x53\xad\x2e\x15\x87\xb3\xa2\x53\x5f\xe5\x45\x83\x63\x57\x9c\xd2\xcc\xf6\x6e\x5d\x8a\xbe\xfc\x17\xf4\xb7\xaf\xaf\xe7\x4d\x7f\x23\x25\x20\x79\x07\x8d\x2b\x7c\xef\x40\x2c\x3d\xb9\xbf\x15\x72\xfd\x15\x36\x04\x8e\x83\x33\xc2\x27\x19\x80\x91\xa1\xbc\x4f\xfe\xe2\xd1\x59\x56\x75\x6a\x05\x0d\x7c\xa7\x3b\xad\x94\xcc\xb5\x8d\x44\xb5\x16\x4e\xb2\xb3\xc2\x88\xa4\x42\x3e\xcf\xbb\x07\x57\xcc\xb2\x79\x7f\x30\x3e\x7a\x54\xcc\xb2\x7e\xd4\xd9\xe5\xdf\x2d\x23\x54\xfa\x47\xb1\x6d\x84\xdb\xed\x5e\xe3\x24\x47\x32\x3c\xc9\xe5\x78\x6f\x93\x31\x95\x29\x97\xf6\xf9\xf9\x3e\xdb\xc7\xf7\xc5\xd7\x8c\x5d\x82\xb5\x4e\x9a\xd2\xb2\xec\x5d\xd0\xaf\x39\x5b\x68\x76\xa2\xed\x70\x2b\x98\x9e\x56\xd2\x0d\xce\x1e\x2a\xdf\xfc\xe0\xc8\xf6\x3a\x2d\xaf\x9e\xd4\x6d\xdc\xe4\x01\x95\x9f\xe7\x62\x2a\xb3\x7d\x76\x58\x4d\x3b\xd3\xa6\xbd\xa5\x6c\x85\xf5\x0b\x23\xd7\xec\xb5\x3e\x5e\xd0\x2f\x3d\x5b\x92\xb1\x47\xfb\xa9\xda\xfa\x38\xdc\xa9\x73\x50\x3b\x8f\xfb\x70\xd6\xaa\x08\xa9\xa6\xe7\xa8\xee\x47\xf0\xa0\x52\x78\xd0\x19\xeb\xe7\x73\xe2\x71\x77\x30\x1e\x9f\x9d\x9d\x3c\xf2\x8a\x69\x1e\x47\x7e\x8e\xd0\xf9\xf9\xb9\xf5\x68\xc5\xa9\x6c\xf7\x3e\x1a\x9c\x8e\x4e\x8f\x8e\x07\xa7\x0f\x06\x61\xd4\x02\x81\x57\xfd\x0d\xfd\x1c\x09\x78\xac\x48\x97\xad\xf9\xfd\x8d\x48\x9c\x28\x1b\x82\xdf\x82\xf6\x27\x06\x88\xac\x72\xe1\xd8\x6e\x9f\x81\x21\xa5\x18\x12\xce\xd5\xb6\xaf\xeb\x0d\x86\xa2\x94\xf5\x47\x55\x23\x3f\xdf\xdd\xc8\x49\xbb\x91\xf1\x40\x94\xb2\xfe\xc9\x2e\x6d\x72\xdf\x2e\x4f\x3e\x5c\x34\xcf\x9f\x1e\x25\xff\xf8\x07\x45\x67\xe1\x54\x9c\x1f\x0a\x74\x16\x2a\x75\x7c\x4c\xcf\xa5\x0d\x6a\x81\xb0\xc7\xed\x08\x1f\x45\xfc\x8f\x7f\x70\xf8\x82\x9b\x2f\x04\xef\x8a\x39\x7c\xc1\xc5\x17\xfc\x0c\xa2\x24\x10\x8a\xba\x35\xc0\x48\xdb\x1c\x19\xad\xb6\x00\x72\x8f\xd5\xaf\x14\xae\x14\x07\xf6\xe9\x84\x29\x63\xf8\x5c\x89\x3b\xb6\xb0\x20\x98\x59\x0e\xac\x91\xcd\xb2\x39\xf4\x31\xcb\xfa\x74\x6e\x34\x73\xf5\x3d\x4e\xdf\xde\xbf\x7c\xde\x92\x3a\xa9\x90\xa7\x40\xcc\x62\xdb\xad\xe4\x6b\xb6\xb0\x63\xdd\xdc\x41\x27\x74\x8e\x73\x12\x01\x3b\xed\xf7\xb3\x33\x71\xec\xc9\x1f\x91\xc1\xf8\x08\x4d\xc4\x66\x21\xeb\xf4\xb3\xf9\xa3\x7c\x62\xab\x70\xda\xa0\x3c\xf9\xe7\x41\xe9\xfb\x3e\x04\x7f\x8c\x26\x1c\x24\xb6\x0e\x40\x44\x8d\x7b\x41\x39\x69\xd0\x90\x3e\xbc\x4a\x20\x22\x5c\x3f\x94\x49\x2c\x74\xb7\x14\x1d\x35\x30\xdc\x6c\x6c\xd0\xd9\xd8\x56\x41\x1b\xcd\xcf\xce\x4e\xf6\xb5\xfc\xe4\xb7\xb4\x7c\x76\x76\x52\x35\xde\xdd\xf2\x70\x70\x0f\xcc\xa3\x7a\xcb\x5e\x17\xd0\xfa\x61\x30\x3f\x3b\x8b\x8e\x50\x3f\x3a\x3a\x3e\x3e\x1e\x44\x47\x8f\x54\xf9\x70\x6f\xe7\xf7\x0c\xab\xd1\x79\xa3\xdd\x79\xdf\xb3\xa0\x88\x8e\x6c\x30\x0c\x4c\xc3\x39\x6a\x77\xfe\xdf\xb5\x18\xce\x89\xa8\x12\x0d\x4e\x84\xd0\x53\xf8\x72\x63\x58\xe7\x37\xde\x00\x9f\x3c\xe2\x08\xe1\x0e\x1a\xfd\xa7\x57\x8b\x82\xd2\xac\x89\x62\x3e\x29\xea\x2b\x26\xeb\xdb\x6f\x2b\x78\xb3\x1a\xbc\x59\x07\xbc\x59\x27\xbc\xdf\xb5\xa4\xa2\xc1\x89\xab\xf0\x39\xf5\xa3\x47\xde\x60\x3c\xf6\xf5\xfc\x46\x28\xde\xbb\xe2\xba\x17\x5c\xe7\x7a\x50\xf7\xbf\x5d\xa4\xab\x87\x3a\x1c\x1c\x1f\x9d\xb8\x6c\x0a\x1b\x79\x18\x1d\x1f\x85\x5b\x16\x77\xf0\xd1\xee\xc5\x78\x7f\xaf\xfd\x48\xf7\xfb\x1b\x7b\xfd\xde\x85\x7a\xff\x3a\xad\x56\xc8\xd9\xd9\x60\xb4\xa7\xd3\xef\x5b\xa0\x66\x84\x83\xd1\xf6\x21\x4b\xb3\xdd\xe9\x8f\xab\x3c\x69\xae\xcd\x7b\x3a\xcd\xe1\x43\x7d\x70\x3c\x08\xa5\xd0\xb1\xa7\xe9\xef\x1b\x4f\xa3\xe9\x68\x5f\xd3\xcf\xf2\xcd\xc5\x8a\xde\x03\xf6\xc9\x3d\x60\x83\x98\xb3\xaf\xed\x7b\xe0\xbe\xbb\xed\xa8\xab\x6d\x90\xb1\x3a\xc5\x02\x21\xd8\x7a\x94\xf4\xa9\x66\x30\x24\x84\x68\xdf\x4f\x6d\xdd\x54\x8d\x15\x30\xe4\x47\x58\x5d\x50\x69\x9e\x08\x17\x53\x62\xa2\xb9\xf4\x5e\xa0\xc0\x25\x99\xcd\x77\xe4\xeb\x7e\x36\x27\xf4\x30\x17\xf2\xae\xd1\x1c\xf7\xd9\x1e\x60\x5b\xac\xf0\x9f\x05\x96\xf9\x02\xdc\xc8\x02\x57\xc8\xe2\x12\x60\xdf\xcf\x65\x24\x80\xac\x01\x71\x2e\x20\xce\x1e\x06\xf1\xc9\x3e\x55\x9f\x0d\xb4\x0d\x6e\x84\x07\xe3\x31\x0e\xf7\x08\x95\x60\x85\x0e\xe3\x59\xae\xf2\x1c\x8e\x76\xb8\x86\x66\xcc\xfb\xd1\x1e\x50\x5a\xfc\xf2\x01\xd0\x0c\x30\x9c\xac\xf6\xc2\x33\xf5\x1a\xbd\x4b\x0c\x45\x73\x42\xc5\x79\x06\xc5\x9f\xaa\xb6\x0e\x42\x84\x79\x7f\xb0\x17\xba\x8e\x7d\xee\x77\x83\x0e\xa0\xb1\xa0\x03\x68\xeb\xd0\x45\x77\x41\xd7\xe2\xbf\x0f\x80\x6e\x84\xab\x73\xe1\xbd\x20\xf6\x87\x12\xc8\xc1\x48\x43\x39\x90\x05\xd1\x51\x13\xa9\xf5\x09\x47\xf1\x9f\x9b\x28\x1e\xed\x1d\xc4\xf7\xa3\xf8\xbb\x06\xd1\x1c\x42\xd4\x1c\xc2\xa0\x31\x13\xc3\xce\x41\x44\xfb\x06\xb1\x8f\x5d\x81\x09\x84\x86\xff\xa0\xd0\x9e\xfd\xf5\x75\xef\x47\x68\x52\x63\x0b\xb9\x1f\x61\x71\xb2\x57\xa7\x2a\x65\xbd\x7d\x17\xeb\x4a\x34\x23\xa0\xe2\x44\x28\x8e\x8a\xa5\xeb\x86\xea\xe2\x40\xb0\x32\x08\x66\xe2\x95\x24\xd2\xab\x52\x70\x37\x8f\x1e\x26\xe7\xe7\x21\xf2\xcb\xfb\x59\xc6\x3e\x1e\xf7\x7b\x8c\x50\xf0\xba\xf6\x18\x05\x84\x9a\xdf\x65\x92\xdf\xdd\x3b\xcc\xfe\xef\x30\xcc\xdf\xc0\x18\xa3\xc1\x31\xf6\x85\x38\xfa\x70\xde\x48\xd5\x61\x7f\x30\x1e\xf7\x69\x3f\x7a\x18\xb3\xfc\xcd\xbc\x52\x08\x74\xc7\xd8\x07\xb9\xee\x5f\xca\x30\x7f\x33\xbf\xfc\x2e\x08\xff\x19\xa6\xf9\x9b\x79\x66\xe5\x71\x83\x6b\xfe\x35\xbf\x05\x9b\x7b\x59\xa9\x61\xb6\x0f\xe4\x9e\xbf\x99\x79\xee\x1b\x8d\xa6\x4b\x4b\x73\x08\xe4\xf9\xdf\xca\x5e\xbb\xa4\x6f\x6b\x94\x4f\x6c\x4c\xb5\xae\x46\xab\x16\xf6\xe3\xc9\x6e\x21\xea\x6e\xa1\x53\x96\xb6\x9a\xf8\xf9\x7e\x20\x3a\x45\xe6\x3d\x4d\xb4\xa1\x48\xf3\xf5\xd7\x6e\x06\x2c\xdd\xe7\x43\x84\x0b\x69\x38\x21\x2f\xf3\xea\x27\xa0\xca\x9d\x4b\xea\x06\xab\x37\xdb\xad\xbc\xfd\x80\xc3\x77\x01\xdb\x49\x41\x18\xc2\x45\xdd\x8f\xb4\x61\x06\x26\x7b\xe2\x2d\x97\x47\x59\x93\xef\xd5\xe4\xf2\xa4\xb8\xa4\xfc\x1d\x4f\x0a\xde\x15\x3d\x41\xdd\xbe\xd4\x1a\xee\x6e\x48\x06\xd6\xda\xdb\x50\xb1\x17\x02\xf9\xe1\x73\xb6\x68\x7d\x56\xd8\x37\xaa\x80\x86\x1a\x0e\x8d\x96\x9c\x9f\x15\xbe\x44\x53\x55\xd4\x67\x4a\x72\xc7\x19\x29\x7c\x66\x9b\x27\xb8\x2e\x3b\xe3\xae\xcb\xcf\x0a\xb0\x8a\xcb\x49\xe6\x47\x13\x21\xc1\x0b\x41\x1e\xd1\x59\xde\xe7\x4a\x59\x9a\xf7\xd9\xdc\xdc\x85\x67\x67\x11\x1d\x82\x15\xe6\x3e\x87\xef\x9c\x84\x96\xb2\xbe\xab\x99\x4e\x5f\xb4\x92\x72\xe3\x83\x56\x53\x03\x33\xcc\xfa\x19\xb2\x22\x3c\x34\xd4\x28\x10\x1c\xab\x93\x02\xdb\x77\xf5\x7b\xe3\x95\x4c\x05\x5a\xb1\x34\x0d\xb4\xd1\xdb\x11\x42\x42\x91\x62\xa3\x22\x8e\x6c\x6b\xc4\x5b\xed\xd9\x64\xf9\xa8\x84\x68\x92\x9f\x0d\xc6\x47\xc0\xc8\x72\x70\x0a\xb3\x7d\xdc\xda\x0e\xd5\x7b\x9c\x44\x4d\x14\x95\x8e\x00\x29\x9d\x83\x2b\x5c\xb7\x1e\xb9\xa2\xd8\x63\xc0\xd3\x7d\x3f\x0c\xfe\x63\x1d\xa1\x5f\xc4\x38\xc0\x9d\x11\xa9\xb5\xb5\xb5\x0d\xbd\xce\x78\xfd\x71\xdf\xdd\xdd\x9b\x3d\xe6\x37\xec\xac\x32\xd1\x15\xed\x48\xef\x2f\x79\xab\x76\x7e\x0e\xf3\x64\xc5\x7c\xb7\x7a\x8a\xd9\xf9\xf9\x79\x88\xa5\x03\x72\x88\x70\x57\xd0\x1a\xe9\x80\x57\xdd\x99\x02\x7d\x8a\x83\x75\x75\xaf\x90\x90\xda\x8d\xe0\x94\xc6\x7f\xf3\x74\x3c\x9c\xc2\x72\xf2\x47\x08\x97\xc6\x14\x53\x79\xf6\x85\xa2\x61\x9f\x5b\x4d\x8b\x45\x90\xcc\xb2\x3f\x96\xe6\xd6\x41\x94\xcb\x4b\xef\xb7\xe4\x70\xf6\xd7\xfe\x87\xc3\xd0\x3f\x7d\xec\xff\x3f\x89\xff\xcd\xff\x38\x3f\xbc\xac\x2e\xc1\xff\x62\xdb\xe0\x9f\x45\x47\x53\x27\x74\xfa\xb4\x16\x66\x20\xae\x3f\x56\xd7\x47\x7f\xb3\x6e\x7a\x26\x10\x56\x30\x3a\xb4\x9d\xef\x69\x65\xe5\x2c\xf3\x94\x54\xbe\x57\xca\x19\x0e\x7c\xbd\x9b\xce\x56\xe8\x7c\x3c\x1e\x9c\x8e\x05\x0b\x19\x1f\x0f\x47\x23\xed\x63\x0b\x6c\xff\x7c\x7c\x34\x8c\x4e\xd1\xad\xc7\x7d\x32\x44\xe7\x7e\xe4\xba\xca\x05\x6b\x30\x3c\xc5\xd1\x69\x84\xa3\x93\x53\x34\x49\x73\xc6\x33\xb6\xa1\x62\x1d\x24\xe0\xce\x58\x3c\xfc\x9b\x9c\xb0\x5a\x03\xec\x0c\xdc\x64\xee\x6b\x00\xd7\xbe\x63\xd2\xfb\xa6\xef\xe5\x3e\x78\xdb\x9c\x9d\x45\xe1\x96\xf9\xb2\x25\xe9\x35\x99\x8b\x6d\xe9\x4e\x90\xb2\xa5\xa7\x70\xc7\xce\x84\xac\x0d\x08\xe3\x3e\x89\xd0\x59\x88\xa4\x5f\x92\xfa\x8c\x21\xcb\x2d\x79\x10\x8e\xaa\xba\x83\x76\xdd\xf3\xf3\xa3\x6d\x74\x3a\xc0\x47\x43\x97\x6d\x45\xbb\xd6\xb7\x00\xb5\xf9\x78\xd8\xf5\x71\x34\xd8\x0e\x06\x23\x2c\x9a\x71\x8f\x86\xa2\x81\x46\x4b\x32\x8d\x1c\xd3\x2e\x4b\x1d\x86\x49\xda\x7d\x32\xcd\x17\xb4\xb7\xce\xcd\x45\xbc\xe8\x73\xd4\xd9\xe7\xc9\x76\x30\x0a\x31\xf4\xae\x3b\xed\x06\xc0\xd8\x9f\x55\x84\xfa\xc2\xce\x09\x18\xf0\xbc\xf2\xa2\x6b\xd8\x74\x7a\x9d\x1e\x0b\x34\xe0\x45\x76\x3d\x95\x7f\x3c\x14\xd7\x02\x71\x96\xfd\xed\x87\xb2\xff\x87\xc3\x4b\xec\x40\xf4\x95\x2a\xcd\xe2\x5b\x08\xcb\xd9\xf4\xfc\x55\x21\x0c\x26\x7a\x71\x48\x63\xe2\x09\xa2\x7d\xe2\x10\xc7\x8e\xb9\x63\xbb\xf5\xfd\x52\x6d\x3d\xd6\x7d\xf6\x24\x3f\x13\xec\xd7\xcb\xfb\x42\x7c\x30\x52\x4a\x6e\xf9\xb1\xc3\x46\xc9\x61\x7b\x04\xf7\x81\xca\x86\xa2\x9d\xd6\xe0\x8e\x14\x06\x6d\x1f\x30\xcd\xee\x74\x50\xe3\x03\x88\x27\x2a\xe3\xd0\x38\x10\x29\xc2\x76\x33\x6a\x85\xe2\x6c\x85\x5f\x63\xc1\xc2\xe3\xd8\x49\x9c\xae\x6c\x23\xf9\x0e\xe9\x68\x46\xcc\x93\x11\xd9\x02\xe6\x15\x28\x48\x54\xb8\xba\xa7\x39\xe3\xf4\x0b\xf7\x6e\x77\xe8\x9e\x7e\x54\x3c\x9e\xe0\xe3\x47\x5a\xbe\xca\x17\x9b\x15\x25\x07\x21\x06\x9f\x9c\x64\xb3\xd2\x17\xcf\x4a\x23\xd9\x1a\x36\x66\x15\xeb\x2c\x3c\xc3\xfc\x24\x98\x92\x95\x19\x9c\x72\x24\x37\x29\x04\x61\x82\x88\xb3\xa0\xe9\xca\xc1\x26\xb0\x37\x23\x14\xc3\xe5\xf5\xde\x10\x7c\x56\xd4\x3b\x84\xf9\x9e\xc0\x76\x1c\x73\xeb\x16\x9b\xe1\x62\xe7\x79\x42\x82\xf0\x46\x47\x08\xb9\x6e\x61\x0d\x74\x5a\xc4\xb7\xc6\x9f\x62\x87\xf4\x90\xd1\xa4\x1a\x7d\x5e\x85\xec\x24\xa6\xf4\x1e\x8c\x3e\x08\x97\x05\x49\x3c\xe6\x1d\x8f\x91\x98\x3c\xf8\x79\x84\x10\xce\xe0\xe7\xe8\x18\xd5\x42\xea\x59\x2b\xcf\x75\xa9\x3d\x00\x5a\x0d\x80\xca\x0c\x92\xa5\x6d\x2f\x66\xda\xa0\x35\x17\xe6\x5e\xc6\x7a\x66\x3b\x97\xee\x7f\xb7\x3b\x65\xcf\x5c\x24\x37\x25\xb9\xdd\x61\x8a\xcc\xb1\x6e\xc6\xe7\xbb\x2a\x43\xa7\xb6\x09\xd0\x3b\x6b\x00\xa1\x19\xdb\xbe\x27\x0d\x03\x64\xd3\x81\x0a\x2d\x7c\x5b\xdd\x40\x05\x3a\x8b\xf2\x93\xaf\x56\xc0\x4c\xab\x72\x90\xb1\xf5\x46\x75\xe4\x51\xcc\x82\x55\xc6\xc4\x9f\x14\x02\x0a\x5b\x21\x6e\x21\x6c\xa5\xc6\xb6\x8a\x7d\x7f\x93\x14\x6c\x4f\xd4\x69\x99\xd2\x44\xca\x06\x86\x8b\x08\xe4\x30\x54\xcc\xf2\x39\x61\x16\x7f\xa0\xd0\x10\x04\xaa\x90\x11\xf5\xaf\xf3\xcf\xb4\x6d\x9b\x27\xc1\x5e\x27\x05\x65\x42\xdc\xaf\x1e\xd4\x17\x4f\xaf\xb2\x95\xbc\xfc\x50\xe8\x90\x6f\x15\x65\x40\x91\x68\xbe\x6d\xdf\x2f\x30\x56\x9f\xb2\xcc\xd0\x2b\xa6\x81\x14\x43\xb3\xe5\x57\x1d\xb6\x4c\x3f\xeb\x94\x3b\x56\x16\x0d\xb9\x1a\xeb\x39\x75\xfa\x84\xee\x10\xc2\x1c\x82\x26\xaf\x72\x46\xef\xea\xf9\x76\xa7\x5b\xb5\x08\xcc\x0e\x8f\x4b\x6f\x7a\xdc\x5e\x94\x75\xec\x72\x04\x21\xf2\xae\x92\xf2\xcd\x0d\x33\x4e\x7f\x39\xd2\x01\x49\xf9\x2c\x17\x62\x91\x62\xa8\xd9\xc4\x91\x38\x72\xa4\x2d\x7a\xc5\x52\x49\x32\x85\xd3\x01\x4c\x95\x38\x3b\x00\xb1\x40\xb5\x29\x14\x66\x71\xd6\x8a\xb2\xa4\xde\xb4\xb3\x76\x56\xd8\x11\x53\x8c\x50\xec\xd9\x3d\xb9\xae\x90\x3a\x0e\x08\xc9\x5c\xf0\xd2\xf6\x32\x84\xb0\x6c\x0a\x55\x2e\x41\x72\x62\x2b\x17\x37\x99\xf1\x85\xcf\x98\x0c\x0b\x53\x05\x02\xd0\x58\x7e\x42\x97\x79\xf1\x40\x5c\x03\xb9\xc0\x57\x1e\xad\xaf\x12\x45\x61\x32\xd3\xa5\x6c\x52\x73\x5c\x6b\x46\x1f\x2f\x79\xc3\x4f\xf0\x9f\xed\x0a\x5a\xac\xf7\xa4\xf6\xfa\x3f\x67\xfc\xca\x5e\x1c\xea\x24\xac\x3e\xb7\xd3\xd6\xb6\xf2\xd5\x72\x2b\x5f\x2d\x45\xda\x77\x6c\xc2\xfa\x7d\x89\xc8\x2a\x27\x12\x9b\xdb\x41\xc9\xc0\x79\xbf\x38\xcb\x8d\xeb\x4b\xbf\xaf\x09\x2a\x9f\x15\xf3\xc9\xdd\x98\xca\xd0\x4e\xb2\x3f\x58\xa5\x1e\xaa\x1d\x1c\x30\x0f\x18\xfd\xc2\xef\x1a\x90\xe5\x5b\x64\xfa\x58\xd0\x2f\x8a\x20\x3a\x30\x28\x58\x8f\x32\x7e\x81\xe8\xe7\x05\xfd\xfc\xaf\x68\xdf\x57\xed\x5f\xb4\x09\xed\x41\x14\xa4\x72\x15\x8b\x26\x92\x16\xfd\x3c\x84\x30\xac\x06\xda\xf6\xcc\x72\x54\xb7\x15\xf7\x85\xad\x09\xc6\xa4\x11\xd0\xe0\x12\x1c\xb9\xae\xe6\x07\x55\xea\x71\x65\xc9\xc0\xe7\x13\xd6\x5e\xf0\x10\x95\x89\xed\xcb\x89\x6d\x2d\xf2\xea\xa8\xad\x6d\xaf\xa7\xfa\x87\x10\x72\x05\x4f\x68\xd7\x66\xae\xcb\x4c\x6d\xd9\x53\xf5\x09\x3c\xef\x8c\x08\x2b\xd6\x47\x72\xd3\x79\x59\x0e\xa7\xdd\xdc\x70\x74\x51\xcf\x28\x02\xe5\x86\x93\xe7\x35\x02\xac\x27\x7e\x9e\x50\x35\x01\x13\x44\x89\xf9\x6d\x77\x9c\xae\x68\xc2\xde\x8a\xcd\xdd\xc6\x81\x8a\x51\x6e\x76\x7e\x45\x27\xb8\x55\x0e\x93\x2f\x8e\xf9\x1d\x5f\xf0\x1b\x4a\x19\x10\xb1\xda\xc7\x5f\xb0\x32\x5b\xd4\x89\xad\x72\x8e\xe3\x35\x3f\x2b\xa4\x15\x3b\x6a\xa7\x87\x98\xd2\x7a\x63\x2f\x3a\x5e\xc1\xd6\x2f\x45\x7d\x3a\xc9\xfb\x7d\xe4\x7c\x90\x6e\xfb\xb3\x7c\x3e\xf5\x18\x89\x30\x04\x26\x8c\x59\x9f\xe8\xfc\x22\xb7\xe2\x9b\xb8\xc0\xb2\xd5\x98\xed\x6c\x58\x9f\x7c\xed\x92\xe5\x9b\xdd\x82\x4d\xb4\x5c\x72\x88\xd7\x85\x16\x39\x58\xf3\xd6\xa8\xee\x68\x70\x93\x17\x8b\x9a\x9c\x53\x8d\xba\xf2\xe3\x91\xb5\x26\xe0\xe1\xc3\x40\x52\xea\x6a\x9d\x55\x49\xe9\xf9\x0e\xb2\x3e\x5b\x32\x6a\xf9\x2f\x93\x51\x71\x4e\x40\x74\x3e\xbe\x47\x74\x56\xc1\x82\xea\x84\x5d\xa3\x68\x8f\xa3\x4a\x26\x11\x92\x99\x05\x7f\xf6\x30\xf8\xeb\xe1\x78\xb4\xe0\xd1\x0c\x6a\x43\x42\x6c\xa9\x64\xa3\x49\x71\x4e\xc2\x49\xe1\xfb\x46\x49\x28\xf6\x02\x99\x43\x2b\x9f\x52\x9d\xfd\xaa\xb0\x92\x67\xe5\x53\xaf\x56\x8e\xc5\xd6\x13\x33\x19\x27\xdc\x2e\xf6\x7d\x15\x9a\x15\xce\xaf\xcc\xf7\x27\x0c\xd1\x60\xc3\xca\xab\x6c\xc9\x3d\xd1\x1a\xea\x08\x89\x59\x18\x09\x19\x94\xa9\x9c\x16\x55\xc4\x47\xf9\x2c\x84\xe0\x6a\x3c\xb3\xb9\xca\xd9\x4e\xed\x9d\x8d\x7b\x62\x20\xb8\xc0\x14\x09\x06\x04\x5a\x01\x51\x62\xc5\x00\x11\x9b\x71\x99\xaf\xea\x52\x6a\xb5\x0e\x1d\x07\xe7\xe4\x20\x12\x47\x8e\xc6\x16\xec\x47\x93\xec\x9c\xf8\x91\xeb\x1e\xe4\x32\x5a\x95\x54\xd1\x65\xe7\x24\xb4\x52\x12\x66\xf3\x98\x06\xe9\xcd\xc2\xab\x29\x42\x2b\x85\x6a\x72\x5f\xb4\x00\x9e\xf7\x20\x7b\x85\x02\xb3\x11\xdf\xac\x74\xd0\x24\x81\x05\x91\xc8\xa4\x5a\x38\x57\x79\xb8\x92\x2a\xcf\x95\x5e\x15\x5e\x2e\x93\x92\x39\xa8\xef\x71\xc2\xbc\xc2\xe3\x2a\x9f\x1a\x24\xeb\xe8\xe0\xfb\x07\x07\x20\xf0\x1e\xe4\xc8\xca\x6f\xb6\xdd\x3a\x81\xb3\xab\x25\xe1\x6a\x32\x87\xac\x9e\xbb\x8d\x22\x9c\x28\xb0\x72\x8f\x62\xdf\xb8\x53\x7b\x14\xc0\xa0\x0f\x04\x23\xab\x83\x91\xc9\x80\x8e\x90\x94\xcb\x75\x13\x2b\xef\x88\x97\x99\x91\x02\x5f\xff\xbe\xbc\x60\x3b\x9d\x52\xac\xb5\x09\xdf\xe1\x40\x64\xa6\x1c\x57\x41\x62\x2c\x14\x89\x51\x62\xaf\x75\xfe\xeb\x08\x59\xfa\x50\x82\x10\x10\x76\x50\x83\x59\x4b\xc8\x46\xd6\xbe\xfc\x66\xcc\x62\x12\x45\x7d\x0b\x02\xff\x6c\x73\xc5\x23\xb3\xa0\x09\xe1\x81\xf7\xfb\xa8\x23\x3e\x85\x1f\x41\x4a\x2b\x53\x93\xcd\x21\xbb\x95\x41\xc5\x39\x64\x41\xb5\x3c\x7b\x7c\xde\x8f\xd0\x8e\x12\xb3\x02\x3d\x8a\x74\x58\xb3\x08\x76\x3c\xf3\x82\x59\x2f\x2c\xcf\x8c\x3a\xe1\x20\x9c\x91\xc2\x63\xb5\x92\xa4\xf2\xdc\xd0\x22\x2f\xce\xcc\xf5\x48\x49\x12\x9c\x92\x70\x92\x9e\x25\x93\x54\x46\x95\xcb\x67\xe9\x5c\x9c\x5f\x66\xe9\x1c\xdd\x96\x24\x55\xce\xa9\xa2\xbf\x15\x99\x49\x51\x3a\x25\xe5\x24\xad\x44\x68\xf1\xe5\x4a\xf2\x16\x9b\x9b\x79\x2b\xb2\xd2\xc9\x50\x33\x35\xea\x12\xd9\x93\x22\xe6\xa4\xa4\x6b\x41\xb1\xb0\xb3\xac\xb2\xeb\x4c\x08\x8f\x4e\x0c\xcf\x59\xc1\x92\x6b\xda\xf4\x1f\xdf\x13\xe3\xb6\x4f\x1c\x07\xe1\x8e\xe8\x13\x4e\xe0\x58\x3e\xf7\x8d\xcb\x1f\xcc\xc8\xe8\x58\x88\x05\xb8\x20\x7e\x24\x38\x5d\x88\x33\x7b\x46\xb3\x73\x12\x4d\x7c\x3f\x13\xa8\x81\x9a\x5e\xa3\x8d\x0c\x21\xa3\x68\x2f\x48\xa6\xd0\xa5\x14\xd5\xc4\x24\x2f\x83\x58\x81\xc5\x94\xe9\xa4\x88\x62\xa3\x90\x45\xa2\xc0\xce\x74\x07\x62\x78\x52\xd2\xc6\xd8\xab\x28\xcc\x36\x3e\xee\x42\xc6\x44\x69\xde\x60\xab\x53\x83\x93\x36\x33\xf6\x00\xb9\xbc\x5c\xe4\x66\x80\xf5\x04\x6e\xd5\xe0\x18\xe1\xfd\xc8\x1e\x9e\x1c\x12\x78\x7d\x1f\x44\x42\x08\xab\x82\x44\xa8\xd1\x3a\xd5\xc8\x20\x96\x9b\x7d\x4a\x14\xdb\x91\x22\x69\x3f\x7a\x64\x02\x49\x2b\x45\x10\x23\xe6\x6d\x88\x99\xb9\x39\xd5\xb5\x10\x06\x41\x92\x7e\xe1\x2d\x0a\xb9\x13\x23\x15\x1d\xf8\x51\x1d\x31\x58\x1a\x4f\x59\x88\x49\x24\x62\x4c\xe8\xc1\xc6\x6d\xcb\x04\xf0\x75\x40\x48\x89\x9a\x88\x48\xfa\x11\xc2\xa3\x23\x42\x48\x39\x85\x77\x7c\xca\x49\x12\x47\x46\x2d\x10\xa1\x58\xba\x6a\xc3\x93\xd8\x0c\xb4\x34\x28\x11\x9d\x54\x88\xb6\xf0\xc9\xb7\x5b\xd9\x93\xbc\x4f\xcf\xb6\x5b\xf1\x94\xb9\x2e\x17\x85\x62\x1f\x16\x3f\x58\x3f\xb2\xf1\x0e\x5a\x0a\xa5\x95\x75\x2e\x04\x63\x72\x92\x0b\xa7\xc2\x3c\x6a\x85\xde\x37\x52\x86\xaa\x03\x0e\xe4\xad\x9c\x30\x7a\x1a\x95\x57\x91\x09\x07\x2b\xb5\x4c\xd6\x97\x0d\x75\xf9\xd1\xa8\xa9\x2e\xff\xad\x7a\xd1\xcc\x63\x5e\x74\x7c\x02\x8a\x51\xf8\x7d\x12\xa2\x5a\x92\xa5\xef\x51\x87\x26\x9d\x2b\xad\x2e\x9a\x8a\x17\x58\xe6\xc1\xa9\x94\x87\x0c\x4d\x78\xf1\xf5\x36\x53\xb9\xc6\x90\x8a\xf2\x95\xa0\x5b\xb9\x89\x25\xe6\x5a\x05\x8e\x66\xb6\x3c\x9b\xfc\x06\x79\xfc\xbf\x4f\x0b\x6f\x12\x2c\xff\xdf\xa7\x88\xff\xef\x43\x6a\xc2\x8b\xcd\x8a\x0a\x9c\xfe\x6b\x90\xa9\x60\x2e\xda\xfa\xf8\x3c\x48\xd6\x6b\xca\x16\x4d\x09\x8f\x4b\x05\x18\xa8\x85\xb6\x5b\xaf\x7a\x20\xb3\xb9\x2d\xf4\xb4\xf4\x71\x85\xa5\x8f\x63\x48\x1d\xbd\x19\x1c\xbd\x41\xff\x59\x1d\x08\x8c\xb2\xdc\xab\xdd\x14\x28\x80\x24\xbb\xd0\xe1\x65\xf0\x4c\x40\x60\x72\xaa\x17\x82\x79\xe4\xc1\xba\xa0\xff\xc3\x60\x57\x10\xdd\x0f\xbc\xa1\xee\xf1\xe0\x7f\xd6\x35\x93\x60\xa1\xa3\xb1\xe1\xa6\xe3\xdf\xc8\x4c\xed\xeb\xa8\xc6\x81\x7b\xc2\xce\x4c\x98\x60\xa6\xb5\xae\x05\xe1\xa0\xf1\x0e\xaa\xac\x58\xc4\x7e\xd8\x6e\xc5\x96\x1a\xd8\xd1\xfc\xc4\x20\x94\x97\x76\xc6\x7a\x10\x40\x23\xd0\x59\xb4\xc8\x41\xb8\x3f\xdd\x5f\x11\x7c\xa2\x5f\xc5\x7e\xd8\xbc\x01\x33\x4b\x39\xab\x86\x5c\xda\xc9\xff\x3a\x83\x1d\xc9\xa5\xbc\xcb\xe4\xca\x2d\xf7\xaf\xdc\xec\xfb\x57\x6e\x26\x53\x12\xe3\x15\xde\xe0\x35\x29\xdb\xeb\x77\x0d\xf2\x76\xf7\xad\xbb\xba\x2b\x92\x1c\xc7\x2c\x02\x75\xf8\xd7\x7a\xd6\x75\x40\x93\xb4\xde\x80\xb4\xd7\x49\x4a\xfe\x3c\x49\xaf\xf4\x02\xd2\xcf\x90\xb7\xc0\x84\x96\xa9\x16\x98\x7a\xac\x2e\xee\xf4\x07\x7d\x12\xd9\xd7\x04\xba\x58\x5b\xbb\xe9\x0f\x67\x7c\x4e\x42\x0b\xcc\x5a\xe0\xe1\x49\xa3\xe6\x99\x35\x1c\x63\x7a\xc7\x48\xa3\x16\x3e\x88\x54\x02\x56\x8b\x07\xcc\xd8\x1c\x33\x84\x94\x03\x8c\x55\xbb\x52\x00\xf6\x6c\xa5\xa5\xd5\x5c\xb1\x13\xe8\xba\x49\x56\x9f\xf6\xaa\xb5\x05\x2e\xed\x7b\x22\x73\xc9\x05\xd2\x01\x40\x22\x84\x21\x29\x1c\x48\xe7\xf7\x2c\x58\xe7\x25\x4f\xcb\xf2\x75\xbe\xa0\x84\xe3\x2c\x28\x79\x92\x7e\x72\x5d\x9d\x56\xd5\x75\x0f\x3f\xb0\x0f\xe5\xed\x68\x97\xf0\xde\xa1\xcc\xd3\xad\x2a\x21\xad\xa6\xd2\x75\x27\xea\x05\x51\x7f\xad\xfc\xdc\x55\x13\xd8\xf9\x83\xeb\xf4\x73\x75\x4d\xba\x2c\xf2\xeb\xbe\x13\x8b\x82\x4a\x65\x5a\x2b\x90\x8a\xd0\xbe\xf8\x0a\xed\xa4\x38\xa3\x23\x89\x03\x86\x21\x8f\x90\x40\x8b\xb4\x7f\x84\x9f\x60\xb0\x5e\xec\x04\xab\x93\x28\x7b\x46\xd3\x55\x33\x75\x9d\xc6\xdc\xb4\x96\xdd\xe4\x2d\xbd\x7c\xfe\x65\x2d\xad\xc6\xa0\xa9\x0a\x9f\xc6\x76\x10\x6c\x01\x84\x94\xab\x52\x08\x51\x89\x16\xd8\x1b\xd7\x55\x22\x70\x79\xdc\x40\xd2\xf5\xf2\xc1\x8d\xc9\x56\xec\x28\x51\x55\x43\x82\xdf\xe3\xae\xd6\xa8\x8a\xa2\x61\x5a\xa3\xd0\x5a\xd5\x82\xa8\xb0\x43\x15\x42\xde\x6e\x56\xf4\xf7\x43\x08\xc8\x0f\x5d\x08\x29\xe9\x8a\x0a\xc6\xf2\xbd\x48\x69\x36\x58\xb5\xf4\x5b\x11\xa3\x5b\xbc\x0f\x31\x8f\xf9\xef\x8b\x1a\x25\x5c\x75\x21\x07\xb2\x09\x7f\x27\x62\xda\xcd\xc9\x76\x7e\x2b\x5a\xaa\xf6\xee\x43\xcc\x53\x29\x7a\x77\xe6\xde\xed\xea\x42\x07\x76\x31\x32\xbb\xc9\xb9\x85\xac\xdb\x6b\xe8\x43\x74\xd1\x16\x04\xff\xeb\xaf\x5d\x71\x42\x14\xab\xd6\xda\xc2\xac\xda\x4d\xb4\x9e\x4a\xea\x1e\xb3\x52\xf6\x5e\x22\xbc\x52\x4e\x40\x25\x49\xa7\x65\x5c\xea\xd8\xc1\x19\xa7\x45\xc2\xf3\x62\xee\xa1\x89\x8a\xd1\xbe\x11\xdb\x4e\x0a\x58\x59\x9d\x13\x63\x1f\x2c\xad\xe5\x36\xa4\x9c\xad\xfa\xfd\xb9\xb1\xc1\xf3\x56\xa4\x84\xab\x5c\x0f\xa1\x60\x91\x33\x6a\x2a\xae\x02\x10\x3c\x40\x80\x58\x93\xcd\xa4\xb9\xbd\xae\x2b\x3b\x3a\xbd\xcd\x76\x08\xab\xbf\x17\x7e\x95\x00\x05\x7a\xc2\xcf\x14\xce\x9f\x38\x6f\xa0\xa9\x40\xc6\x95\xb5\x20\xf9\xb4\x88\x8b\x3b\xd0\x94\x4c\x64\x52\x0c\xb1\x3d\x9d\x93\xa2\x8e\xa6\x84\x14\xb3\xac\x86\xa6\x8c\x14\x5d\x68\x4a\x48\x66\xa1\x49\xce\x5d\x63\x76\x95\x60\x02\xc9\x25\xb1\xa3\x50\xe4\x20\x6b\x1c\x2b\x92\xe2\x4d\x63\x2c\x2b\x19\x54\x4f\x8c\x65\x45\x36\xd3\x55\xbc\xba\x63\x2c\x4b\x31\x96\x0d\x8c\x65\x7d\x4e\x56\xf5\xb1\x2c\xc9\x6a\xb6\xae\x8d\x65\x4d\x56\x5d\x63\x59\x92\xb5\x35\x96\x05\x59\xda\x53\xae\xef\x70\x16\x68\xa7\xa7\xf4\x4a\xdf\x4c\x6b\x01\xa2\x2e\x6e\x5c\xcd\x49\xe3\xb9\x9f\x36\x22\xc6\x6a\xba\xe9\xb8\x89\xd5\xf7\x41\x96\x04\xa9\x2b\xd5\x0e\x99\x35\x71\xca\xba\x58\x84\x12\x5c\x34\xb0\xca\xec\x00\xba\xc5\x94\xc5\xec\x0e\xac\x82\xb1\xb7\xe4\x88\xf9\x39\x61\x75\xac\x66\x84\xcd\xf2\x1a\x56\xc1\xe0\xb0\x8d\xd5\x8c\xe4\x0a\xab\x59\x35\x04\xc8\x3b\x2e\x46\x6e\x9b\x17\xec\x89\x8e\xa3\xd2\x22\x56\xb8\x14\x72\x87\xeb\x1a\x4a\xc2\x79\x93\xe2\xb8\x85\x94\x19\x9d\xe3\xc2\x26\xb6\x8c\xe4\x38\x69\xa0\x25\x43\xc6\xc9\x30\x23\xc9\x34\x8b\xb3\x3b\xd0\x92\x0a\xb4\x48\xc3\xec\xf2\x9c\x64\x75\xb4\xa4\x24\x9b\x95\x35\xb4\x94\x24\xeb\x42\x4b\x4a\x4a\x8b\xd8\x56\x24\xb5\x89\x4d\xdd\x29\x52\x1c\xe2\x55\x45\x6f\x9b\x16\xbd\xd1\x33\xd2\x14\x89\x37\x73\x88\x5b\x56\x2f\x22\xac\x9f\x1b\x6b\xd7\x06\xed\x59\xe6\x19\x8d\x09\x68\xe0\x7c\x52\x0b\x57\xb4\x17\xdb\xa8\xc6\xa0\x0a\x9c\x35\x70\x9d\x23\xb0\x6f\x57\x2e\x2f\xd3\x3c\xce\xef\xc0\x75\x09\x89\x5e\x64\xf2\xdf\x73\x92\xd7\x71\x5d\x92\x7c\x96\xd4\x70\x9d\x90\xbc\x0b\xd7\x25\x49\x2c\x5c\xa7\xa4\xec\xc2\x75\x3f\xc2\x21\x4e\x2b\x6c\xaf\x3a\xb0\xdd\x44\xf6\xaa\x8d\xec\x95\x40\x76\xb1\x0f\xd9\x96\xc5\x5f\xfb\x48\xda\x30\x12\xab\x63\xbf\x8e\xe4\x0e\x1b\xc1\x26\xe9\x44\xf5\x33\x1c\xd2\x66\x04\x1a\x50\x36\x47\xe7\x60\xe5\xd5\x28\x25\xdc\x6f\x06\x80\xd6\x70\x3f\xb6\xfd\x7c\x6a\x06\x48\x92\xdb\xf0\xc6\x54\xab\x4d\x0d\xd2\xd1\x11\x3e\xa5\x31\xbd\x63\xaa\x8b\x89\xc9\x69\x6a\x27\x19\x93\x33\x58\x10\x3a\x63\xb5\xa9\x66\x84\x76\x4d\x75\x41\x98\x9a\xea\xa2\x8e\x23\x9b\xe5\x1a\x4d\x11\xae\xc6\x07\x47\xa8\x3f\x89\x2f\xf7\x45\x5c\xed\x49\x7f\x3a\x8e\x2d\xcb\x55\x73\xea\xb1\x44\xb2\x02\xdd\xc2\xc1\x7f\x5d\xba\xae\x54\xe6\xcb\x27\x63\xe0\x51\xc8\x13\xcc\x76\xcb\x83\x65\x52\x72\x55\xab\x90\x70\x9b\x5a\xf2\x25\xda\x6e\x3d\xf5\xc6\xd4\xd0\xe7\x3d\x48\x13\xbb\x43\xd6\x29\xff\x33\x2d\xbe\xee\x95\x1c\x25\x7d\x40\x1d\xb0\x83\x5d\x07\x65\x7e\xbd\xdf\xfe\x4b\x91\x53\x7e\x4d\x55\x6d\x00\xac\xeb\x46\xb9\xed\xdf\x33\x95\x26\xb4\xaa\x0d\x63\xd8\x02\xcd\x74\xdd\xa3\x6b\x76\x2f\xc3\xfe\x74\x3b\x51\x51\x44\x6b\xb6\xa5\x15\xb4\x7b\x0d\x37\x95\xc9\x9b\xa0\x71\x35\xe5\x54\xff\x42\xc8\x18\x34\xa9\x63\x35\xe6\x42\x46\xf6\x98\x37\x3a\x45\x1e\x45\xaa\x9a\xb9\xad\x69\x52\xb6\x89\x36\x5f\x25\x04\x16\x9b\x48\xbd\x5a\x82\xe0\xca\x55\x2c\x80\x84\x94\xd3\x24\x4e\xee\x58\x00\x2b\x31\xee\x52\x26\x23\x3d\x37\x1e\x4d\x8a\xae\x57\x24\x99\xa5\xb5\x05\x90\x92\xa4\x6b\x01\xac\x48\x6a\xf1\xba\x0d\x59\x4d\x36\xc6\xf6\x78\xd3\x65\x78\xbc\xc1\x4e\x76\xc9\xf2\x82\x3a\x68\x67\x7c\x5c\x9c\x22\xcf\xb9\x75\x5e\xb9\x95\x42\xb0\x18\xac\xa2\x0b\x3d\xe4\x65\x63\xc8\x6b\x84\x17\x6a\xc8\x6b\xb2\x9c\xae\xe3\xf5\x1d\x43\x06\x0d\xd1\x12\x86\xbc\x38\x27\xeb\xfa\x90\xaf\xc8\x7a\xb6\xa8\x0d\x79\x41\xd6\x5d\x43\xbe\x22\x0b\x6b\xc8\x17\xe4\x6a\x72\x61\x86\x7c\xd1\x35\xe4\x8b\xae\x21\xab\x91\x52\x32\xa3\x73\xcb\x62\x0b\x96\x6a\x23\xd1\xb2\x9d\x12\x06\x3a\x6e\x3b\xef\x00\x27\xe9\x2d\x33\xba\x5a\xf4\xb2\xb2\x77\x9d\x95\x25\x5d\x80\x1d\x79\xbe\xa0\x3d\x50\x16\x66\x39\x73\x50\x57\x1a\x57\xd9\x26\x18\x17\xc9\x85\xaf\x53\x51\xa8\xce\x10\xa6\x64\xd6\xb4\x6b\x9f\x5b\x03\x31\xfa\x80\x5b\x59\xd1\x63\xde\x78\x88\x50\xa3\x16\x1c\x8c\xad\x1a\x91\x55\x03\x2e\x82\xc5\x11\xfa\x4b\x47\x22\x79\xed\xa5\x08\x43\x11\x40\x77\x8d\x4b\x81\x98\xd7\x40\x34\x6a\xcb\x3d\x96\x97\x46\xa1\x29\xce\xef\x1d\x13\x47\x11\xde\x33\x0d\x96\xa5\xa2\xeb\x72\xd7\xed\xcc\x44\xc3\xeb\xd5\xbc\xda\x67\xa4\xf6\xb6\x52\xaa\xcd\xfe\xfa\xa1\x9c\x4b\xd7\x25\x84\x8d\xc2\x35\xc3\x14\x8e\xd4\x29\x29\xb1\xb7\x22\xb3\xdb\x4f\xf4\x6b\xec\xc0\x19\xc7\xc1\x97\x94\xc7\x1d\x86\xbb\x92\xa3\xb4\x78\xec\x2c\x9c\xef\x76\x58\x36\x20\x8e\xc0\xdf\xfd\x7d\x4b\x51\x0a\x16\xbe\x42\x34\x49\xec\x9c\x3e\x78\x85\xf0\x06\xca\xf0\x06\xe1\x72\xe7\xc1\x35\xc0\x11\xea\xbc\x7d\xf8\xd7\x19\x10\xca\x2b\x87\x81\xb9\x7d\x38\x19\xfe\xff\xf1\xf6\x01\x02\x8a\xe2\xb2\x1a\x78\xfa\x9d\xd7\x89\xea\x32\xd1\xdc\x80\xb1\xea\xfa\xab\x75\x6d\x9b\xfe\xde\xd7\xb6\x24\xc5\x5e\xa6\x89\x5e\x73\x9b\xb2\x45\xb8\xe6\xfe\x51\x4d\x5b\x90\xe6\xd7\xd7\x89\x24\x66\xc3\xa3\x76\xb8\xb4\xbf\x6a\x18\xdc\xaa\x5a\xd3\xda\x93\xce\xbf\x80\x3f\x94\x8f\x0e\x91\xcc\x01\xc5\x08\x9f\xf2\x59\x38\x8f\x1d\xec\xf4\xb5\x29\xb2\xe7\x28\x53\x64\x07\x3b\x72\x5d\xbf\x59\x53\xc1\x9d\x6a\xcd\x11\x2a\xcd\x94\x18\xd2\xab\xc6\xba\x44\xc5\xe2\x6c\x08\x65\xb8\x44\x38\xdd\x79\xc5\xef\xb5\x5c\x24\x51\x5a\xe8\xda\x4d\xaa\x46\x8a\xf6\xc7\xd5\x4b\xe6\x45\xd1\xe9\x7d\xa6\x15\xb5\xea\x83\x11\xda\xe1\xbb\xeb\x7b\xcd\x29\x60\xa4\x93\x89\xde\x64\x6c\x91\xdf\xec\xe1\xb0\x8b\x3c\x05\x95\xd5\x9e\xd7\x2c\xf9\x9c\x5d\x0a\x19\x00\x17\xdd\x3a\xb2\x99\xf3\x7c\x71\x49\x1d\xec\xbc\x2f\xb2\x05\x98\x20\x38\x3f\x66\x05\x5d\xe6\x5f\x9c\x39\xae\x5b\xe9\x4d\x78\x9f\x44\x48\x9c\x16\x5c\xd7\xb4\x1b\x6c\x4a\x5a\x3c\xbe\x34\xce\x10\x42\xea\x9c\x71\x71\xd2\x09\xab\x14\x11\x3a\x22\xc5\xce\x33\x51\xd5\x5c\x57\x0e\x2b\xf8\xb9\xc8\xaf\xb3\x92\x4e\xdb\xf4\x68\xcc\xbb\x7a\x16\xe4\x32\x4a\xc6\x41\x88\xeb\x9f\x1b\x5b\x3e\x14\xf0\x2b\xca\x3c\xdb\x5d\x53\xb4\x84\xa9\x27\xb5\xbe\xbb\x0e\xc2\xbf\xbb\xa3\x92\xf2\xf7\xd9\x35\xcd\x37\x7c\x4f\xab\xb8\x10\xed\xee\xe5\xa8\xce\x4c\xfa\x2b\xf4\x7e\x54\x15\xe6\x62\x1f\xbd\xdd\x19\x4b\x74\x15\x03\x02\xb5\x18\x6c\xb6\xf4\x22\x48\xe4\x27\x18\xcd\xfb\x4a\xc3\x3c\x9b\x9b\x6c\xf3\xf9\x0d\xa3\xc5\x33\x45\x03\x7a\x19\xfc\x29\xa3\x37\xc1\x25\xe5\x4f\xf3\xeb\xf5\x86\xd3\xc5\x3b\xfe\x75\x05\x87\x97\xcd\x6a\x55\x1d\x34\xa7\x6c\xc6\xe7\x31\xdb\x59\x97\xb2\xd5\x09\xe3\xa7\xf7\xaf\x5e\x4a\x69\x54\xf4\xfd\x3a\xb9\x16\x9b\x81\xde\x8b\x5f\xe7\x0b\xba\xdd\xd2\xe0\x2a\x2f\xf9\xce\xe2\xa7\x2a\x05\x8d\x51\x84\x6b\xda\x0c\x2e\xf2\xc5\xd7\x89\xce\x87\x6e\x5a\x54\x59\x0c\xa0\x2b\x19\xee\xff\xc9\x9b\x67\xbf\x9a\x50\xff\xcd\xc1\x41\x23\x50\xed\x7f\xe9\x86\xad\xba\xe2\xad\x72\x90\x4c\xe4\x31\x98\x07\xf9\x67\x5a\x2c\x57\xf9\x0d\xe4\x36\xd3\x0f\x7f\xc1\xb9\xf5\xf4\xab\x42\xc7\xa1\x97\x6c\x78\xbe\x2d\xd3\x22\x5f\xad\xb6\xe2\xed\x2a\xf9\x8a\xd4\xbd\x20\xeb\xe7\xfd\x02\x4d\x69\x9c\x7a\x65\xdd\x03\x7a\xd5\xdc\x3c\x0b\xba\xa4\x05\x65\x29\x15\x38\x9a\x36\x9e\x63\x7d\x44\x60\xae\x7b\xe0\x1d\x28\x0a\x7e\xf5\xee\x05\x5b\x6f\xf8\x2b\xca\xaf\xf2\x85\x72\x19\xde\x6e\x0f\x0c\xf2\xf4\x8f\x57\xf9\x82\x22\xbc\x16\x1f\x1f\xbe\x7a\xf7\xe2\x79\x2f\x0a\x35\x7c\xed\xc5\x68\x6d\xf0\x4b\x0b\xc6\x08\x42\x76\x4c\x37\x71\x24\xb3\x11\xad\xe3\xcd\x76\xbb\xae\xc6\xb3\xd8\x3f\x87\xfa\xc7\xf3\x15\x15\x7f\x2c\x6b\xbf\xa5\x17\x85\x68\x5a\x9b\x6c\xbd\x43\xd0\x40\x06\xb7\xff\x19\xe8\x66\xbb\x15\xc5\x13\x26\xcd\x10\xa5\x36\x41\x35\xf7\x2e\xbb\x58\x65\xec\x72\x82\x18\x01\xd7\xc9\xf6\x2b\x54\x6b\x4a\xfb\x5d\xc3\x3d\x91\xa2\x27\x13\x45\xd7\x75\x25\x25\xa9\x28\x23\x40\x60\xe2\xf7\x14\xec\x02\x67\xce\xfb\x9f\x04\xbf\x7b\x26\xfe\x79\xfc\xe4\xe5\x73\x67\x6e\x58\x57\xd5\x18\x82\xf0\x24\x09\xcf\x52\xb0\x76\xf7\x18\x76\xb4\x3b\x88\x83\xa6\x0b\x8f\xa1\x98\xc5\x62\x86\x1b\x2b\xb0\x8e\xa5\x78\x1f\xfa\x2a\x94\x5f\x59\xd3\xa3\xdc\x1b\xed\x75\x36\x15\x2b\xa6\x7a\x44\xb1\xe5\xc5\x70\x51\xe5\x98\x93\xf9\x05\x35\x9f\xd8\x6e\x0f\x04\x09\xf1\x26\xe3\xd8\x3f\x9b\x9a\x9f\xa8\x9c\x48\x7a\x3c\x3f\xab\x21\x7b\x1c\xb9\xa2\xfb\xe0\xd9\x9b\xa7\xbf\xbc\x7a\xfe\xfa\xfd\xc7\x9f\xdf\xbc\x7b\xf1\xfe\xc5\x9b\xd7\x1f\x7f\x7c\xf3\xf2\xe5\x9b\x3f\xbf\x78\xfd\x6f\xb8\x20\x6c\x4a\x63\x8e\x73\xc2\xa6\x3c\xa6\x38\x23\xa6\x3b\x29\xfb\x40\x10\x14\x0f\x4d\xb2\xa0\x54\x91\x87\xbc\x02\x87\x08\xc3\xf3\x73\xb6\xf0\x72\x1d\x76\x33\x21\x19\x88\x2e\x39\x7b\xcc\x52\x5a\xf2\xbc\x10\x0b\x23\xc9\x18\x05\xa5\x15\x3d\x00\x6f\x50\x2e\xfe\x6c\xb7\x20\x42\x8a\x97\xa5\x97\x9b\x7b\xc7\x36\x97\xa7\x4d\x42\x31\x44\xc2\x5d\xd7\x33\x1c\x8f\x6f\xb7\x0b\xf0\x0a\x29\x4a\x8d\x1d\x38\x0a\x21\xb8\x8a\xdc\x79\x09\x9a\x26\xf1\xc2\x4b\x24\xa0\x25\xb9\xb2\xec\x6e\x4b\x60\x89\xd3\x0b\x4f\xfe\xc0\x1c\xc5\x62\x8e\xae\x3c\x8e\xa0\xc0\xe2\x1c\xd7\x15\x60\x0e\xcf\xd7\x90\xe8\xbd\x79\x5f\x75\x1e\xb9\xae\x89\x97\x53\xdd\x4d\x45\xf3\xa9\xfd\x10\xc3\xf7\x68\xea\x48\xe6\xf5\x3e\x5f\x3b\xb1\xfa\xfd\x92\x2e\xb9\x03\xcb\xd0\x0c\x5d\x9c\xab\x61\xdc\x32\xbf\x8d\x19\xb6\x95\x95\xe3\x4e\x8a\x36\x9e\x15\x8d\x6a\xb2\xc3\x8c\x5d\xaa\x7a\xdb\x6d\x81\x66\xbc\x3a\x80\x8a\xdf\x66\xf0\xaf\x6c\x3b\x50\xe7\x0b\xa0\x7d\xea\x00\xb4\xb1\x23\x06\x80\x0b\x22\x1f\x21\xd4\x8d\xf3\x36\xbb\xbc\x12\xaf\x9e\xe4\x9c\xe7\xd7\xc6\x89\x1a\xac\x42\x21\xa0\x98\x47\x67\xce\x45\x5e\x2c\x68\xe1\xf4\x59\xdf\xf9\x73\xb6\xe0\x57\xce\x1c\x47\x21\xea\x77\x57\x2a\x6a\x95\x3a\x52\xf6\x57\x09\x97\xc0\xc2\x3f\xf9\xe2\xf1\x99\xca\xd4\xe1\xf4\xe9\x1c\xf3\x99\xc2\x31\x3c\xb1\x99\x93\xae\x32\xb1\x23\xa9\x27\xab\x26\xab\xd5\x94\xcc\xd2\x64\x5a\xaf\x55\x55\xc0\x8a\xf2\x62\xe6\x5c\x27\xc5\x65\xc6\x9c\xbe\xe7\xfc\x44\x61\xfc\x32\x7f\x9c\x9c\x5f\x40\x0e\x7a\xd8\x17\x0a\x6b\xb1\x42\x23\x9a\xa3\xd8\x1e\xf2\x67\x7b\x89\x08\xe6\x0d\x04\xd3\x98\x76\x21\x3e\x0a\xc8\x5d\xb7\x25\x57\x30\x4d\xfe\xb7\x57\xd0\x6b\x7c\x69\xfa\x57\xa8\xc4\x37\x02\xd5\xa2\x5c\xe2\x5c\x27\x56\x87\xdd\xf0\x6b\x47\xc6\x4c\xaf\x66\x8e\xb0\x2f\xe5\xe9\xd3\x84\xb1\x9c\xf7\x84\xf4\xd4\x4b\x7a\xe9\x2a\x29\xcb\x5e\x52\xf6\x12\xb3\xf6\x1d\xb4\xc3\x8f\xf7\x85\x62\xf8\x9f\x7b\x82\x6d\x72\xb0\x3a\x3d\x32\xd7\xa5\x9e\x75\x6e\xc4\x0c\xe1\x02\xca\x04\xa6\x39\xa4\x3d\xbe\xd9\xa7\x50\x07\xd7\x5e\x3a\xdd\x07\x03\x37\x49\x7e\x71\x35\xc8\xf8\x20\x6c\xe6\xfb\xc5\x7a\x44\x90\xfb\x57\xb9\xd8\x62\xba\xc3\xdf\xf4\x61\x37\x29\xcb\xec\x92\x6d\xb7\xdd\xee\xa7\xd1\x84\x9f\x35\x99\x1d\x38\xfe\xdc\x36\x6c\x48\x67\xdc\xb2\x73\x90\x41\x21\x54\x07\xd5\xb9\xb9\xee\x9c\x2c\x85\x69\x81\x30\xd7\x05\x67\x3c\xc2\x66\xc5\x1c\x55\xfe\xbf\x95\x60\xf4\xd1\xda\x79\xbf\x79\xb7\x3b\x4c\xf1\x6d\x01\x14\x2c\x4e\x3c\x4b\xde\xa7\x01\x10\x2e\xbe\x80\x05\x04\x11\xa7\xd6\x7d\x1a\x48\x32\xdf\xd5\xb3\xe7\xeb\x25\x74\xbb\x93\x26\xeb\x4b\x0f\xd6\x8b\x38\x27\x50\x21\x8b\x3f\xc9\x37\x6c\x91\xb1\xcb\xa7\xc0\x26\xde\xd2\x94\x7b\x3a\x00\xfc\xb5\x47\xb1\xe4\xe1\xb8\x90\x0f\x2b\x58\xdd\x13\x0e\x1d\x12\x86\xb9\x84\x87\x14\x58\x88\x57\x02\x18\x59\x0a\xd0\xf6\x49\x21\x75\x8c\x77\xf4\xa4\x6c\xe3\x16\xe8\x56\x65\x3d\xbb\x15\x0d\xc6\xb2\x5d\xcc\xf3\x75\x0c\x7d\xa9\x85\xaa\x1a\xf6\xd5\x6b\xb5\xac\x75\xd7\x3e\x54\xdd\xe1\x8c\x74\x9d\x12\x3e\x37\x77\x06\x14\xdf\xee\x70\x49\x32\x89\x4b\x71\x6c\x90\x9c\xf2\xcf\xf2\x31\x57\x38\x4e\x49\xa6\x10\x5b\x55\xf9\x49\x3d\xe7\xea\x0d\x5e\x19\x81\x12\xbe\xf6\x4b\xc8\x0a\x28\x4b\x64\x65\x1f\xee\x8a\x57\xdb\xed\x46\x6b\xd0\xc5\x69\x60\xb2\xf2\xc9\x2b\x6f\x8d\x9d\x2f\x0e\xc2\x1b\xf5\xfb\xab\x03\x99\x64\xa0\x21\xb2\xc2\xba\x13\x9f\x6c\x34\xb1\x7c\xf4\xec\xac\x3e\xef\xed\x4d\xab\xb5\x55\x0f\x3a\xb7\xea\xc1\xdc\x75\xed\x27\xcd\x46\x71\x5e\x21\x8f\x1b\xe4\xe1\x8c\x08\x4a\xc2\x25\x79\xe3\x71\x30\xd2\x10\x4f\x1b\x92\x88\xa7\x35\xb1\x76\xb2\x4d\x20\x37\xb2\xf7\xf9\x1a\x30\x21\x36\x31\xbc\xe8\xaa\x21\x36\x0a\x53\x65\xc2\x5c\x37\x77\x5d\xaf\x14\x33\x48\xcc\xce\x06\x8f\x42\x10\x2b\x61\xc2\xed\x17\x40\x00\xa1\x8a\x73\x74\x45\x3e\x7a\xb7\x82\x58\x32\xf1\x81\x0f\x9f\xf9\x6b\x0c\xa4\x94\x41\x55\x5f\x7e\xe1\x2f\x14\x25\xa9\x59\xd7\x24\x94\x99\xb5\x23\x66\x49\xf4\x21\x36\xac\xf7\xf9\x9a\x84\x58\x3f\x09\x80\x21\x82\xb1\xeb\xe6\x12\xdb\x17\xf5\x71\x99\x8f\x60\xd0\xaf\xba\x5e\x8a\x36\x60\xbc\x57\x00\x22\x59\xfb\x17\xf8\x4a\x93\xaf\x7a\x02\x38\xc9\xc2\x7f\x85\xaf\x14\xb9\xab\x87\x0a\xa8\x8b\x3a\x50\xaf\xb4\x9f\x6b\xe1\xba\x07\x6c\xca\x2b\xb1\x73\x85\x62\x4e\x08\x59\x59\x07\x8f\x95\x7d\x92\xf0\xae\x3a\x3d\x60\x7e\x3b\x11\x5d\x7b\x5c\xb3\x8c\x5c\x3e\x48\x96\x81\x33\xc2\xa6\x7e\x14\x47\x55\xc4\x1c\x60\x21\xc5\xa3\x0c\x53\xc3\x3a\xe4\x93\x64\x29\x39\xfc\x56\x8c\x04\x1e\x76\xde\x15\xe6\x08\xe1\xab\x8a\xf4\xbf\x98\x63\x21\x1c\x33\xe4\x71\xc4\x08\x7a\x4b\x0f\x7d\xc7\x69\xb1\xf1\xf9\x84\xbb\xae\xc3\x72\x46\xe5\x31\x4b\x0c\xab\x48\x58\xb9\xcc\x8b\x6b\x07\x4d\x10\x27\xbc\x51\x5f\xef\x64\xdb\xed\xfd\x67\xab\xd7\x95\x34\x27\xd9\x5e\x0b\xe3\xa3\x4e\x8c\x8f\x6a\x18\x1f\xcd\x71\x46\x80\xee\x43\x49\xeb\xe1\x0e\x6f\x48\x3e\x15\x58\x01\xf9\x7e\xe5\x71\x24\xfd\xaf\x3f\x67\xf4\x66\x9d\x17\x20\x79\x15\x28\xeb\x88\x6a\xf0\x60\x19\xdf\x86\x20\x9a\xe3\x0e\x65\x4f\x4b\x42\x7b\x0f\x17\xd4\x38\xaf\x16\x30\xb3\x99\xad\x56\x99\x65\x8c\xd1\x42\xb1\x5f\x71\xfa\x6a\x57\x97\xbc\xb4\x56\x5f\xf3\x62\xc8\xdf\xca\xa7\x61\x7c\xed\x31\xc1\xa9\xd4\x4f\xb3\x67\x19\xd6\x09\x08\x4b\xfc\x02\x08\xb0\xb0\x56\x2d\xa0\xb0\xf4\x0b\x49\x80\x85\xbd\x64\x25\xd3\xc8\x0d\xbb\xd8\xa1\x9d\xb7\xc1\x39\xaa\x62\x54\xae\xf5\xcd\x86\x92\xa9\x7f\x36\x51\x89\x8a\xa9\x39\xd7\x78\x6b\x92\x7a\xa5\x98\x14\x64\x56\xa1\xeb\x7a\xeb\xfb\x50\x88\xe2\x35\x71\xe4\xa0\x65\x8b\xf7\x9d\xee\x0b\x60\x8b\x4b\xf2\xde\x5b\x63\x80\x53\xd0\x80\x56\x37\xac\x4d\xdf\x95\x18\x24\xaf\xd1\x95\xd1\xd8\x43\x0e\x65\xda\x20\x1c\xaa\x2c\xb3\x2f\xf2\x12\x0e\xd6\x49\xa5\x8e\xd0\xb5\xf4\x7d\x4f\x59\x45\xf0\x3a\x38\x00\xd9\xb0\x10\x88\x44\x82\x20\x2b\x54\x2e\x48\x7b\xaf\xc6\x57\x64\xa1\x37\xdb\x57\x64\x21\xb9\xf7\x24\x93\x4c\x64\x09\xcc\x74\x69\x4d\x65\xa6\x58\x0a\xb9\xea\xc3\x4b\x9c\x29\xae\xb2\x94\xec\x75\x69\x4f\x6e\x26\xb9\x0c\x79\xd5\x97\x6f\xa5\xf8\x7f\x49\x5a\xd6\x0c\x1e\x13\x48\xa8\xdc\xdc\x75\xa3\x97\x53\x16\x33\xf8\xbd\xdd\x86\x58\x01\x25\x0b\x79\xbe\x96\x65\x8a\x93\xcb\xd2\x42\x91\xac\x81\x53\xbf\x90\x4f\xf0\xa6\x95\x09\x53\xe6\x7f\x96\xb6\x11\xad\xc5\x3a\xee\x5c\xac\x63\xfb\x40\x3e\x9e\xc7\x10\x79\xd9\x97\xd1\x71\xb5\x66\xc9\x49\x36\x3c\x37\x53\xd5\xa3\x4a\xcd\xf1\xda\x93\xf7\x52\xb9\x58\x4b\xb0\x64\x6e\xe5\x22\x48\xea\x3b\x27\xc8\x5c\x7e\x22\x25\x2f\x29\xa4\x9a\x8a\x5a\x58\x83\xbf\xfa\x83\x44\x6f\xb5\x5a\x7a\xed\x6e\x37\xa9\x84\x3a\xf9\x63\x27\xd7\xe7\xad\x96\x04\x61\x1e\x93\x9a\x20\x68\x9a\xde\xe1\x54\xcb\xfb\x9f\xe8\xd7\xd2\x2b\xd1\xde\x6b\xe6\x6f\x1e\x5c\x5d\xd1\x1d\x06\xfb\xc0\xdb\xa4\xa0\x49\xec\x71\x02\x4f\x5c\xc2\xf4\x88\xab\x86\x91\x8e\x81\xb5\x43\x28\x28\xf3\x82\x7b\x5e\xb7\xd9\x7a\x20\x9a\xf1\x29\xfc\xd9\x21\x90\x98\x74\xf8\x8e\xd6\xe5\x8a\xd8\x79\xe4\xd0\x0b\xa2\x65\xf8\x2a\x7a\x00\xa9\x71\x4a\xd7\x2d\xaa\x92\x9f\x94\xc8\x22\x24\xb1\x95\x49\x01\x3c\x5d\xcd\xc2\xb9\x18\x76\x9c\xaa\x1f\x58\xf0\x17\x15\x1d\xc0\x77\xd0\x2c\x32\xa1\xc6\x36\x7d\x6f\x3d\x75\x7c\xa7\xbf\x8e\x1d\x3b\x5d\x62\x23\x1f\x6a\x8b\xda\x86\x9d\xd4\x36\xb4\xa9\x6d\x38\x07\x55\xab\xee\xe9\xbd\x20\xa7\xe9\x17\x0f\x14\x4f\x1c\xaf\x3c\x86\x90\x38\x53\x9a\x2e\xdf\xd9\xe8\xf8\x9e\xcb\x03\x84\x99\x2d\x69\xf1\x8a\x0b\x88\xa5\xda\xef\x78\xf5\x44\x2f\x32\x71\xac\xe9\x78\xff\x52\x2e\xe4\xce\x6f\xdf\xea\xcd\x46\xab\x16\x24\x39\xd6\xa4\xff\x7e\xa1\x09\xb2\x7e\x04\xe8\xb3\x5d\x2d\x15\xab\x39\x99\x01\x61\x3b\x85\xd4\x4c\xc8\x35\x24\x77\x2d\xbd\x44\x40\xa2\x82\xd3\x90\x23\x4b\x9c\x5d\x25\x47\x19\xf3\x04\x60\x40\x92\xb5\x28\x3e\xc2\xf3\xf5\xe1\x65\x57\x60\x91\x1e\x9f\xd1\xf9\x0e\xb5\xd3\xb0\xa2\x5b\xf0\xc1\xaf\x88\x25\xd4\xf6\xe6\x62\x82\x70\x4e\xd4\x80\x8b\xfa\x6a\x2d\xcc\xa2\xce\x88\xd2\x65\xab\xe1\xc8\x81\x58\x8a\x6c\xb1\x4d\x67\x53\x18\x91\x1e\x65\x29\x0a\x56\x52\xc9\x06\x23\x4d\x45\x81\x6c\xd1\x89\x9d\x1b\xa9\x9b\x59\x89\x42\xf9\x3b\xd6\x2f\x8d\x5f\xeb\x2c\x99\x13\x3e\x4b\xe6\x7d\x3e\x4b\xe7\x87\x03\xbf\x80\x3f\x38\x9f\x95\x73\xc2\xc0\x25\x9f\xcf\xca\xb9\x5f\xcc\x56\xf3\x98\xcf\xfe\xee\x95\x68\x8e\xf3\x46\x5a\x56\x83\x9c\x66\xb4\x93\x65\xc6\x16\x53\xf9\x47\x10\xb0\x15\x89\x67\x16\xce\x5b\xd9\x55\x4d\xd0\x2e\x2b\x26\x36\xb5\x62\x3d\x34\x35\x20\xc6\xa2\xac\xde\x21\x24\x34\xb5\x83\xff\xa8\xa2\x6e\x63\x99\x19\x9f\x8b\x8e\xaa\xc0\xaf\x9f\xea\x61\x57\x3a\x6b\x9a\xc6\x8d\x39\x22\xda\x89\x53\x3e\x4b\xae\xa9\x03\x6e\x73\xc1\x32\x2f\x9e\xd7\x9d\xdc\x28\xba\xa5\x81\x7e\x72\xdd\x34\x67\x65\xbe\x52\xf1\x2f\x9d\xff\xbc\xce\x17\xd9\x32\xa3\x85\xa9\xf1\x9f\xbd\xac\xec\x2d\xe8\xba\xa0\x69\xc2\xe9\x02\xf7\x36\x25\xed\x59\xd5\xd8\x7f\x1e\x38\xc8\x68\xf9\xf5\x57\xe2\xa8\xbd\x64\x13\x1a\x50\x96\x5c\xac\xe8\xc2\x75\x33\x8f\x81\x81\xad\x5a\x51\x65\xb0\xce\xd7\x6b\x5a\x90\x8f\xad\x22\x84\xab\x12\x73\xcb\x55\xab\x67\x4a\x11\xe6\x84\x79\x1c\x53\x65\x3c\x69\x67\xad\x95\xe7\x0a\x69\x1d\xc0\x13\x4e\x83\xac\x7c\x46\x4b\x5e\xe4\x5f\xe9\xc2\xc4\xa6\xd3\xca\x40\xb0\x71\xc4\xa5\xe0\x48\x65\x7c\xbb\xc3\x49\x51\xe4\x37\xef\xaa\x47\xce\x8b\xec\x62\xc3\xe5\xd3\x72\x95\xad\xd7\x74\x11\x1f\x44\x58\x41\x14\xdf\xee\x76\x13\xda\x01\xf5\x73\xaf\x02\x40\x45\x04\x85\x31\xaa\x68\xac\xba\x9e\x7c\xcc\xd7\x02\xf4\x2a\x3a\xd8\x8f\x42\x2a\x03\x43\x25\xc1\x1f\x04\x2b\x25\x2f\xbd\x7a\x4d\xfd\x02\x77\x74\xfe\xe0\xfe\xf4\x64\x96\x81\x18\x59\x00\xc9\x12\x92\x22\xa3\xa5\x3e\x00\xdc\x55\x7b\x9d\x2c\x16\x19\xbb\x14\x60\xe6\x45\x76\x99\xb1\x64\xf5\xb3\x01\x97\xd6\x20\xac\x8d\x8b\xec\x1f\xb2\x35\x18\x45\x24\x4f\x3d\x7b\x2c\x5d\x63\xb5\x7a\x42\xad\xef\x4d\xf3\x77\x74\x3a\x55\x42\x70\xec\x24\x2a\xe2\x92\x83\x29\x91\xb9\x4b\xaa\x31\xeb\x80\x87\x86\xa4\x9e\xc2\xfd\xd3\x62\x5a\x6b\x38\x67\xbf\xac\x17\x09\xc4\x8f\x8a\xbd\xae\xea\x60\x52\x55\xff\x42\xbe\x81\x4b\xe0\x46\xda\x63\x3b\xb6\x47\x7e\x4d\xdb\x02\x08\x5c\xc3\x58\xd7\x94\xd6\xaa\x83\x1b\xd1\xda\x3e\xf1\x73\x5d\x61\x3a\x3b\x88\xb0\x73\x5d\x3a\xd8\xf9\x33\xbd\xf8\x94\x09\x86\xff\x2a\xff\xe6\x60\xe7\x8d\x23\x8f\x86\x26\xb8\x54\xc0\xf3\x5f\x04\x32\x65\x46\xfb\xbe\xe6\x87\x11\x52\x01\xcc\x78\xcb\x47\x2c\x27\x7c\x56\x88\x23\x6e\x3e\x75\x9c\x7e\xde\x67\xb1\x3c\x90\xdc\x65\x6d\x02\xf7\x04\x01\x2c\xc4\x59\x36\xd7\xec\x33\xdb\x59\xf7\x98\xd5\x58\xde\x36\x02\xf3\xb6\xd6\xb9\xc0\xf3\x93\xe6\x14\x3a\xe0\x16\x0e\x8b\xdb\x31\x36\xff\x8a\x50\x94\x71\xbc\x5e\xee\x9e\xf3\xc5\x37\x74\xe5\x20\x7b\x45\x49\x18\x2b\xca\x72\x9c\x8e\xb7\x3c\x5f\x77\xbf\x00\x6d\x58\xe7\x1b\x79\x94\xe9\x7c\xa5\x8e\x44\x9d\xef\x6e\xb2\xd5\xea\xe9\x55\xc2\x2e\x69\xe7\xfb\xd9\xcf\x9e\xad\xfe\x98\x43\xd4\x25\xa8\xb5\xc8\x4a\x41\x2b\xcf\x3f\x53\xc6\x5f\x66\x25\xa7\x8c\x16\xa5\x87\xea\xe4\x29\xd1\xf2\x86\x29\xc4\xea\xd0\xc7\x6a\x71\x99\x3b\xe4\x56\x14\xe4\x8a\xa3\x5f\x65\x65\x35\x6f\x7f\xd9\x2b\x2b\x56\x36\x24\x35\xb1\x31\x96\x67\xe7\x46\x2e\x06\xa9\x7f\x61\xc1\x06\x16\x1b\x68\xa7\x49\x81\x45\xe3\x41\xb2\x58\xd4\x46\xe4\x39\x05\x2d\xb3\x6f\x60\x66\x67\x55\xc7\xb7\xeb\xa4\x2c\xb3\xcf\xf2\xba\x41\x59\x10\xa5\xd6\xbd\xab\x7d\xbc\xae\x9f\xe0\xcc\xb1\xda\xd2\xb2\x0a\xc1\x88\xef\x17\x7e\x63\x3e\x49\xda\x90\x89\x56\x6b\x60\xe0\x6c\xbb\xa5\x5e\xea\x25\xf6\xed\xbc\xea\x1c\xe7\xd2\x61\x31\x41\x3b\x2f\xc7\xfa\xfa\xaf\x31\x28\x16\xd8\x2a\x8c\x12\x99\x02\xc5\xcf\x49\x8e\x59\x40\x05\x10\xe5\x73\xc9\x28\xc4\x3a\x61\x76\x02\x01\x15\x55\x40\x2e\xa8\x5a\x55\x1d\x40\x00\x5e\x91\xbf\x79\x77\x6c\x2c\xb8\xb9\xf7\x95\xe9\x15\x5d\x6c\x56\x54\x72\xc7\x7a\xc0\x7f\xb5\x25\x63\x15\x0d\xa4\xa3\x67\xd7\xf5\x52\xb1\x57\xaf\x1e\xb3\xec\x1a\x6c\x93\x7f\x2c\x92\x6b\x15\x2c\xa0\xd1\xb4\xd5\xb5\x71\x38\xb3\x80\x24\x16\x64\x7f\x91\x49\x0c\x04\xe1\xee\x21\x19\x6e\x63\x57\x48\x27\x35\xf4\xee\x13\xb1\x3a\x9b\xd4\x13\x56\x6f\x12\x64\x97\x1a\x19\x83\x95\x4b\xa3\x23\x70\x72\x69\xcc\xa4\xaa\xd7\x98\xcc\x08\x73\x1b\xb9\x3f\x59\xe6\x57\x82\xe5\x52\xd7\x3d\xc8\xca\xd7\xc9\x6b\xcf\xbe\xc2\x46\xc8\x75\xb3\xf2\xc7\x8c\x41\x02\x7c\xeb\xf3\x1f\xe5\x26\x64\x9f\xc7\x79\x97\x60\x69\x8e\x9b\x8e\x33\x51\x67\x08\x25\xf9\x6b\x69\x5f\x6a\x96\xb1\x39\x5a\xa8\xb3\x50\xc7\x19\xc3\x75\x7f\xf2\xf8\x8c\x81\x4f\x56\x41\x9c\xf5\x17\x47\x86\x41\x17\xac\x8c\xcd\xe1\xf2\xb4\x0f\xe1\x0a\x44\x8f\x7f\x02\xcb\x25\x65\x5c\x78\x98\x3d\xc4\x74\xe9\xd7\xfa\x01\x79\xaf\xb0\xad\x5d\xc5\xe1\x94\x9e\x13\xa9\xf4\xea\xd8\x86\x9b\xf5\x99\xa8\x66\x76\x61\x21\x1a\x2d\x68\x71\x56\xc8\xbf\x3b\xa9\xd3\x3d\xa8\x78\xc9\x7f\x3a\x7d\xde\x77\xfe\xd3\xc1\x09\xfc\x66\xe2\xf7\xa4\x26\x99\x27\x7d\xa7\xa7\xb7\x30\x21\x91\x17\xf4\xef\x9b\xac\xa0\x8b\xde\xc5\xd7\x9e\xd3\xcf\x6a\x6f\x59\x0f\xba\xe9\xf1\xbc\x77\x93\x17\x9f\x30\xc4\x59\xdc\x14\x54\x14\x64\x2c\x5d\x6d\x16\xb4\x97\xf1\x9e\xb4\xa2\x95\x5f\x1f\x38\xe6\x22\x33\x07\x9c\xfe\x1b\x99\x81\x62\xc9\x87\x98\x12\x0e\x96\x5a\x26\xf9\xc7\x07\x57\x4d\x07\x6e\x6a\xd4\x5b\x39\xaf\xa2\x44\xbe\x93\x9a\x23\xfd\x56\xcf\xb7\x2c\x95\x35\x94\x76\xc8\x7e\xa8\x4a\xf5\x87\xa0\x23\x92\x55\xe4\x49\x53\x96\xc8\xd7\x73\xfc\x1f\xe4\xdf\x94\x14\x32\xb4\xe6\xf6\xff\xfc\x1e\x3a\xf1\xff\xb0\x5c\x9d\x70\x41\xfe\x43\xc7\xc3\xeb\x47\x48\x07\x06\xfa\x0f\x73\x22\x64\xc8\x32\x7e\x2c\x2a\xa7\xc9\xb8\x00\x5c\xfe\x81\xdc\xfe\xf8\xf2\xc5\xcf\xb1\x23\x04\x66\x07\x3f\x7d\xf9\xe6\xe9\x7f\xfc\xf9\xc5\xbb\xe7\xb1\x93\xae\xf2\xf4\xd3\x4d\x56\x52\x07\x3f\x7d\xf3\xcb\xeb\xf7\xcf\xdf\xda\x2f\xf3\x0d\xe3\xb4\xa8\xea\x58\x37\xcc\xff\xde\xbc\x7f\x98\x85\x38\x9c\xdf\x7b\x78\x2f\x10\x04\xcb\x93\xea\x81\x43\xef\x43\x7f\xfb\xc1\x47\x87\xfb\x95\x6b\x3a\x07\xcc\x4e\x65\x66\xd2\xed\x7c\xf2\x92\xae\xf5\xe2\x4b\xa3\xd2\x92\x26\x05\xd8\x74\x6f\x3f\x94\x87\x60\x1c\x3b\x49\x66\xe5\x5c\x39\xc7\x89\x9f\x95\xf2\x12\x0b\x11\xac\x7e\x06\x7d\x23\x65\xf7\x5e\x49\xd7\x49\x21\xa4\x65\x41\xe3\x37\x57\x19\xa7\xbd\x72\x9d\x40\x34\xca\x5e\x52\xd0\xd6\xa1\x34\xe9\x81\x4d\x7a\xcf\xc3\x08\x8c\x3c\x68\xb2\x08\xd4\xd1\x34\x25\x87\x1f\xca\x47\xf8\x43\xf9\x68\xfb\xa1\xec\x1f\xe2\x95\xc4\x53\x39\x9d\x25\x66\x12\x4b\x33\xb1\x33\x00\x51\x22\x29\x45\xb3\x70\x3e\x47\xb8\x51\x16\xcd\x4d\x7c\x28\xdd\x42\xd9\x8f\x10\x9a\xc7\xb3\x64\x6e\x07\xd2\x6c\x60\xb6\x9a\x30\x4f\xc6\x5a\x3c\xc8\xe2\x0c\xb5\x75\x25\x89\x65\x3a\x2c\xb6\x92\xc5\x26\xa5\xdd\xba\x4a\x15\xb5\xb4\x8a\x80\x08\x78\x06\x22\xe8\x3b\xd8\xf1\xad\xd9\xe7\x68\xea\xd5\x6a\x12\x2e\x3a\x0a\x31\x45\x71\xd2\x78\xd5\x97\xef\x22\xf1\x8e\xea\xa1\x72\xb4\x43\x78\x36\xdf\x4f\x2f\x75\xd5\x48\x35\x58\xaa\xcd\xfc\x3d\x6f\x1a\x7f\xf0\xb7\x1f\xfa\x68\xfa\x61\xf1\xe8\x43\x20\xfe\x45\x5e\xf0\x08\x1d\x22\x9c\x91\x7e\x2e\x16\x5f\x42\xf2\xd9\x60\x0e\x1c\x32\xab\xb4\xda\x2a\x39\x61\x45\x83\xce\x1f\x1d\xa4\x83\x3c\xaa\xab\x1b\x65\x08\x9c\x28\xfb\xdf\x3f\xae\x9d\xb8\x24\x6c\xa2\xbc\xb4\xa1\x48\xd9\x03\xff\xb1\x70\x62\xed\x80\x52\x92\xff\x97\xbc\x3f\x6f\x8f\x1b\xd7\x11\x47\xe1\xaf\x62\x6b\xe6\xe7\x23\x8d\x65\x77\x2d\x5e\xcb\xad\xf6\x9b\x8e\x9d\x4e\xfa\x64\x3b\x89\x93\x5e\xdc\xfe\x65\x54\x12\xab\x4a\x1d\x95\x54\xa6\x24\x2f\xb1\xeb\xbb\xbf\x0f\x01\x2e\x20\xa5\xb2\xdd\x3d\x33\xf7\xce\xf3\xdc\x3f\xe2\x14\x41\x88\x0b\x08\x82\x20\x08\x82\xdc\x9c\xcb\x57\xc1\x79\x7d\xf1\x5d\xbf\xd7\xfb\x8f\x6c\x09\xe7\x6e\x33\x38\x16\xb9\xbf\xf7\xae\xe0\xe8\x26\xd6\xd6\x21\x95\x75\xac\x0f\xb9\x56\x1d\x1b\x3e\xe5\xec\x6b\xf4\xd4\x52\x1e\x38\x70\x0b\x64\xbb\xf5\xa6\xc9\x67\x61\x19\xaa\x90\x21\x2b\xac\x41\xf8\xf0\x51\xc7\x6a\x2e\x46\xef\x25\x1a\x6d\x4a\x88\xb7\x54\xfc\x87\xef\x6d\x21\xb7\xf1\xad\xfe\x05\x9c\x06\x07\xb2\xe8\x10\x57\x8d\xdf\xa3\x3b\xbd\x5d\xd2\xa6\xce\xd0\xda\x67\x8f\x04\x4f\x51\x75\x65\xb4\xde\x0b\x9d\xfd\x05\x58\x56\xe4\x8e\x98\x5e\x42\x59\x86\x6a\x67\x6d\x43\xf5\xde\x6e\x74\x07\x91\x1d\x46\x77\xb0\x00\x8e\xfa\xbd\x5e\xc8\x4c\x2d\x93\xa2\xc3\x45\x9f\x9a\x28\x8a\xa8\xb6\x4d\xa7\xe0\xdf\x6d\x5b\xde\x31\x8e\x82\x62\x6b\x69\x67\x10\x7b\x5c\xa2\x5f\xc6\x51\xa9\x6c\x15\x95\x92\xc8\x7a\x89\x13\x4b\xa5\x65\x4e\x4d\xa2\xca\xb6\x9e\xe6\x02\xe0\x18\x4a\xc3\x26\xba\x83\x65\x6f\x74\xed\xdf\x2d\xc3\x24\x84\x48\xbf\x21\x2b\x52\x0a\xd8\xcc\xce\xf3\x8b\xad\xf8\x3c\xbf\x08\xa8\x3d\x4a\x5a\x51\xc0\x15\x29\x0e\x1b\xdb\x6d\x69\x29\x8d\x58\x8a\x68\x83\x07\x88\x16\x92\x33\x46\xfc\x0a\xce\x3c\x0c\x05\x5d\x9a\x48\x2a\xc4\x16\x79\xaa\x88\x3b\x64\x4e\xd4\x0c\x96\xad\x4a\xa2\x97\xfe\x66\x11\x1c\x9f\x6f\x16\x61\xef\x62\xf4\xb3\x5f\x84\x59\x18\x87\x55\x20\x57\x34\x30\x08\xfb\xf2\xa0\x2e\x11\x25\x48\x2f\x91\x28\x39\xef\x5f\x04\xca\x16\xbf\x0a\x6d\x53\xa1\x49\xff\x58\x40\x52\x19\x80\x05\xce\x1d\x12\x49\x8e\x1c\x3e\x45\xdd\x81\x28\x4b\x03\x03\x17\xd0\x39\x0b\x99\x26\x6a\x6f\x19\x2e\x38\xf0\xfb\x3b\x79\x31\x40\xd1\x79\xf8\x44\x3a\xb7\xcc\x71\xe8\x46\xac\x2c\x97\x6a\x8b\x7d\x44\x40\xc6\xfe\x88\xaf\x0e\x14\x51\xea\x17\xda\xb2\x6c\x9b\x02\x60\xc8\x9c\xc2\x50\xd1\x86\x01\xac\xcb\x05\x8c\x1e\x1c\xd3\x55\xf8\xd6\x4a\xa9\xec\x1a\xa5\xb6\x63\x08\xb8\xd0\xfb\x71\xb1\x7d\xdb\x6e\x5f\xd8\xd5\xbc\xb0\x56\xe6\xc3\xb0\x70\xed\x83\x81\xac\x26\x53\xb5\xc4\x58\x49\x15\x52\x92\x44\xc9\x11\xc6\xdc\xa8\xb7\x17\x3c\x2b\x79\x56\xdf\x12\xcf\x2d\x6d\x31\x5c\x44\x77\x0b\x9e\xcd\x63\x7e\xdb\x92\x00\x45\xd4\x9c\x33\x73\xa0\x76\xce\x2e\xbe\x4f\xce\xd9\xc5\xc6\xc6\x7a\xbd\xcd\xaa\x24\x5e\xc0\x6b\x37\x1f\x54\x93\x81\x9a\x5a\x56\x0b\xf4\x50\xa0\x07\x41\x78\x8d\x8e\x7e\x05\xdc\x82\x4b\x4a\xd1\xc0\xae\xda\x0c\x6b\x32\x7b\xd6\xf3\xa8\x21\x8f\x08\x89\x92\x7f\x78\xa4\x21\xdc\x04\x09\x17\x9f\x42\x43\xb6\x7c\x5a\x41\x83\xa7\x3c\xa3\x46\x9d\x7f\xaa\x76\xa2\x97\xac\xaa\x2c\xef\xde\xc3\x5e\xc9\x90\xcb\x20\xbf\xa4\xfe\x6d\x4b\x2f\x16\x1c\x7b\x92\xb0\xde\xc8\xd3\xdd\xf6\x8e\x1a\x14\x36\x4d\xb8\x38\xaf\x2f\x7c\x69\x9e\x6f\x09\xa4\x46\x4c\x14\x35\x6e\x23\x5d\x07\xb7\x36\x8b\x72\xfa\x5d\x84\x92\x55\x46\xbb\x61\x6b\x4a\x8c\x6c\xa7\x8d\x65\xf8\x95\xb1\xc5\x59\x39\x65\xf5\x8c\x71\x35\xe1\x76\x9e\xb4\x1a\x28\xe9\x25\xa6\x9e\xe4\x1e\x0e\x91\x9a\x14\xcf\x96\x54\xe0\x39\x72\x2c\x23\x6f\xc0\x87\xb1\x22\x9d\xdd\x0f\x4d\x3c\x38\x99\x8f\x8f\x65\x77\xcd\x72\x99\x08\xa0\xbd\x1e\xc4\x2b\x0f\xce\x8a\xf3\xea\xe2\xfb\xcc\xe7\x62\x35\x80\x6b\xd0\x36\x89\xcf\x93\x8b\x48\xe6\x6e\x15\x62\x59\x08\x8b\xf3\xe4\xe2\x07\x01\xaa\x1e\xfc\xa0\x12\x2c\x2d\x16\x07\x38\x09\x51\x24\xdc\x7d\x8a\xcc\x02\xcd\xed\x37\x2a\x02\xa8\xed\x55\x14\xe7\x85\x1e\x1d\x20\xd7\x79\x41\xd0\x9b\x49\xa7\xac\xee\x47\x78\xa5\x33\x37\xef\x10\x5d\x97\x0d\xe3\xb7\x1f\xe5\x75\x50\x9f\x07\xa6\x6c\x7d\x5f\x7e\xbd\xfd\x95\x76\xb8\x33\x81\xf7\xec\x4d\xc9\x2f\xcf\x3e\xbc\x7d\xf5\xf6\xa7\xd1\xda\x7f\x42\x0f\x54\xfb\xfe\x53\x3f\x64\x90\xcc\xb2\x3c\x5d\x2b\x27\x6b\x59\x5d\xad\x61\xa9\x6b\x12\x69\xdd\x0b\x42\x76\xa4\x54\x86\xd5\xbc\x63\x98\xaf\x8a\x32\xc5\x7c\x49\x94\x11\xe6\xcb\x9d\xe9\x88\xbc\x63\xf1\x54\x13\xe5\xed\xfd\xc4\x42\x00\x89\x83\x7f\x38\x89\x16\xdb\x75\xf9\xba\xbc\x56\x06\xfd\x30\x15\x28\x94\xed\x66\x02\x30\x56\x2e\xfe\x72\x52\x8e\xa3\x8f\x3e\x0f\xce\x9b\x8b\xa3\xe4\x7c\x76\xb1\x35\xfe\xbe\x3a\x9f\x5c\x74\xf1\xd1\xe4\x62\x2b\x12\x79\x5b\x3e\x22\x06\x41\x98\x9c\x4f\x2e\x36\xc7\x3f\x54\xe7\xb3\x15\x5f\x88\x95\x54\xa0\x6c\x09\x94\x0e\x79\xf1\xa5\xf5\x11\xae\x69\x73\xfc\x2e\x39\x6f\x2e\xbe\x1b\x6c\x8d\xbf\x1b\x84\x6f\xa2\xb8\x63\x8d\x0c\xa7\xd4\x5d\xe0\x8d\xb9\xd7\xb0\x80\xcb\x1a\xe1\x95\x93\xad\xee\x74\x2c\xac\x3b\x1d\xe1\x6d\x34\xdf\xea\xea\xef\x74\xeb\x4a\x4d\xcb\x5b\xb3\x46\x68\x19\x5d\x9d\x37\x17\x5b\xe3\xf0\x36\x08\x7b\xa2\x6f\xc0\x47\xca\x8e\x47\x0f\xb5\x20\x23\xf2\xaf\xfd\x22\xba\x5b\x86\x93\x10\x0a\xe0\x42\xe4\xf9\xb7\x20\xbf\x8b\x30\x0d\x3d\x2f\x08\x0b\x31\x43\x43\xa6\x44\xe0\xf9\xcd\x16\x7c\x7a\xe1\xe1\x11\xa5\x9a\xb4\x7b\x8f\x4c\xda\x6c\xe2\xff\xb8\x62\xb6\xc2\xfe\x82\x4e\x4f\x7c\xd7\x06\xcf\x3f\x21\xb0\x83\x3e\xea\x13\x1b\xff\xd6\x01\xa0\x3d\xaf\x8b\xbf\xa3\x18\x74\x28\x40\x2d\x55\xc1\x56\x42\x9d\x79\x55\x46\x97\x18\x4d\x6f\x05\x4a\xff\xe2\xfe\xde\x13\x3b\xee\xf3\x0b\xb5\x81\xac\xb7\xc7\x6c\x16\x5f\x65\x25\xc7\x9d\xe4\xda\xbf\x6f\x83\x01\x27\x8e\xce\x79\x58\x5e\x90\x0d\xe5\xda\xbf\x6f\x1b\x8b\x4d\x1c\xfd\xcb\xe7\x81\x93\xeb\x9a\x75\x00\x29\x5c\xef\x29\x3c\xb5\x0b\x8d\x23\x53\xab\x52\xce\xe3\x8e\x75\xb9\x0a\x31\x1e\x22\x5f\x8f\xa2\xea\xfe\x5e\xc5\x96\x89\xa2\x28\xd9\xec\x1b\x7a\x3f\x4e\x11\xa9\x38\xb5\x74\x25\xaa\x3e\x99\x01\x59\xd0\x95\x6d\x12\x69\x35\x9c\x6f\x6c\x2c\xfc\x1c\x4f\xad\x82\x1f\x16\x7e\x03\xca\x5a\x70\x7f\x6f\xd4\x10\x89\x02\xf0\xef\x05\x06\x22\xdf\xdf\x2b\xf5\x5b\x22\xa0\xa8\xc1\x42\x6a\x08\xaa\x44\x54\x6f\x89\x23\xe0\x50\x86\x44\x0e\xd3\x88\x96\x8d\x4e\x7c\x41\x38\x8b\xac\x46\x49\x87\xbd\x20\x1c\x47\xa4\x10\x70\xee\x0b\xc2\x79\x64\x57\x5e\xe8\xb2\xdf\x58\xdd\x4c\x9d\x3e\xcd\xac\x0e\x8c\xdd\xd6\xce\xc3\xe9\x23\xeb\x3f\x17\x02\x67\x7d\xbd\x86\xf9\xf4\x39\xe6\x19\x9c\x69\x88\x3d\xc6\x14\xaf\x88\xa2\xb7\x6f\x06\x55\x0b\x10\x2b\x52\x09\x98\xdd\xdf\xaf\xbb\x48\x63\x09\x33\x58\x73\x21\xaa\xda\x15\xfc\x78\x0b\x77\x81\x8b\xba\xa3\xa6\x99\x5b\x53\xda\x51\xd3\xbc\x55\xd3\x38\x08\x9f\x45\x57\xf7\xf7\xb7\x47\xfe\xe4\xfe\xfe\xcd\xfd\xfd\x33\xd4\x2d\xa4\xa4\x88\xd6\x7b\x21\x64\xa0\x39\x3f\x3e\x4f\x36\xc5\x86\xe9\x19\xbc\xa3\xd1\x11\x85\x4a\x16\xcc\x8e\x65\xb5\x23\x53\x3d\x3b\x86\xdc\x11\x5b\xc2\x1b\x9d\x54\x02\xf1\x4d\x3f\x03\x67\xb8\x6c\xe4\x79\x1d\xab\x07\xde\xc4\x71\xd9\xfd\x79\xa7\x48\x7a\xd8\xc1\x20\x00\xcf\x80\x4e\x91\xc9\x42\xb4\xf2\x4a\x8d\x77\x19\xaa\x39\xad\xac\xbf\x0f\x6a\xb1\xda\xcb\x3b\xb4\x87\x6c\xb4\xde\x0f\x57\x0c\xe2\x68\xbd\xbf\x0c\x41\x4e\x2b\x79\xbf\x4f\xe5\x7d\xff\xef\x59\x3d\x8c\x2a\x02\xcf\x10\x20\x59\xb2\x88\x5b\x46\x8e\x87\x55\x11\x70\xe2\x06\x8b\xaf\x9a\x01\xad\x53\x1e\xe2\xfd\x65\xa9\x1e\x17\x51\x76\x5e\x5c\x6c\xf9\xd5\x31\xe4\x38\xaa\xef\xc5\xa8\x67\x0f\xfc\xa5\xdf\xe1\xf3\x11\x7d\x11\xca\x90\xd0\x60\x67\x59\xca\x14\x6d\x0e\x1e\xdc\x03\x3c\xa4\xb8\x8a\x52\x3c\x88\x79\x4a\x37\xf3\xae\xea\x5a\x77\x0a\xcf\x22\xfa\xda\x5d\x6a\xd7\x8b\x95\x6e\x0d\x78\x0b\x2a\x9e\xc3\xc3\x58\x86\x67\x20\xc4\x9e\x14\x55\xdf\x4b\x3f\x65\x74\xaa\xfd\x41\xfb\x27\x83\x6f\xef\x0f\xc6\x2b\x59\x7a\xf2\x7e\x2f\xc5\x24\xf4\x17\x9f\x5e\x12\xbd\x33\x3d\xc1\x34\x58\x86\xb7\x8d\xeb\xd3\xb9\x77\xb3\x55\x36\xf5\x56\x39\xd9\x32\xcd\xf0\xc4\xb6\xdf\xc4\x99\xea\x3f\x50\x5a\xff\x49\xa5\xad\xf7\xa9\x69\x2a\x41\x5f\x51\x70\xd6\xd0\x63\xb8\xfb\x34\xc3\xc9\x0d\x6c\xdc\x6e\xa9\x4d\xca\x70\xf2\x5f\x18\x10\xe2\x2e\x62\x8d\xc5\x74\xd1\x3c\x4b\x12\x96\x33\x0e\x53\xf2\x48\x1f\x2c\x65\xee\x89\x86\xd9\x3c\x38\xdf\xfc\xe7\x1a\x1e\x95\xaf\xcd\xcb\x2b\x96\xae\xd5\xe5\xda\x7f\xd2\x1e\xff\xa7\x39\xd4\x8b\x8b\x74\xed\x3a\xcb\xf3\xb5\xa2\xc4\x77\xd3\x9a\x85\x10\x14\x18\x88\x6c\xd2\xd4\x0d\x67\x6b\x57\x8c\x57\x42\x36\x88\x5d\xc8\x7b\xdc\xd7\xfc\x59\x29\xef\xbc\x38\x32\xed\x3b\xce\x46\xb5\xdb\xfc\xb0\x8a\xba\xcc\x4a\x61\x12\xbd\xc3\x98\xcd\x77\x4a\xe7\x1a\x95\x5a\xfd\x5a\x86\x4d\xe7\xfd\x23\x23\x3e\x78\x54\x28\xa2\x97\x51\x41\xe6\x84\xdc\x2a\x83\x5e\xab\x9e\x3b\x43\xed\xa2\x33\x60\x36\x5b\x8a\x9d\x90\x2f\xaf\xd5\x89\xf6\x64\x3e\x57\x89\xe6\x11\x51\x64\x39\x87\x2d\x22\x79\x4c\x65\xd4\x23\x7d\xa4\xb0\xe5\x05\xe1\x24\xaa\x8f\x9b\xfb\xfb\xc5\xfd\x7d\xf2\x7f\x06\x51\x14\xe5\xff\x67\x70\x9c\x8d\xe2\x51\x15\xa6\x51\x7d\x9c\x8d\x2a\xfd\xee\x28\x9b\xd4\xa3\x89\x8f\x58\xfd\x8d\x8d\x5c\xfd\x58\x5f\x6c\x6c\xd4\xc7\x78\x0d\x65\xab\x3f\xe2\x52\x29\xa9\xcb\xc5\x28\xf5\x39\x6a\x1d\xd2\x31\x58\xa4\x95\xba\x81\x8e\xc3\x13\x9f\x4b\x6d\x65\xb9\xf4\x99\x32\xf4\xa7\xec\x2a\x4b\xd8\xfb\xec\x86\xe5\x1f\xc4\x70\x7d\x3f\xb8\xbf\x5f\xff\x2c\x3a\x43\xb4\x8e\x42\x79\xe5\x2a\x4b\xc2\x84\x58\x9b\xb8\x96\xb0\x72\x27\x37\x73\x0d\x81\x63\x15\x82\x74\xae\xac\xb1\xd9\xc4\x9f\xd3\x0a\x16\xc7\xfa\x02\x49\x65\x2e\x66\x6e\x55\xd6\x01\xc7\xa6\x52\xce\x46\x5b\x89\x34\x3b\x19\x10\x68\x76\xe1\x98\xb4\x6b\xf2\x70\x99\xe8\x90\x2d\x75\x46\x51\xe2\xb5\x05\x40\x75\x33\x8c\x37\x36\x66\x41\x7e\x3e\xbb\x88\xb0\x47\x79\x5c\xb3\x61\xea\x7b\x9b\xe3\x4d\x6f\x71\x13\xae\x79\x9b\x73\xfc\xd1\x0b\xbc\x30\x3f\x5f\x5c\x44\xbd\x30\x3f\x9f\xc0\x7f\x96\xeb\x94\xa1\x87\xb9\xce\xf2\xc6\x26\xc1\x56\x7f\xd4\x0f\xa7\x56\x0f\xe0\x5e\x1c\x14\x3b\xff\x8f\x37\x58\xf0\xf8\x3f\xa6\x76\xd1\x8b\x4d\x4f\xb4\x63\x02\xe7\x24\x57\xd1\x9d\xe5\x59\x36\x22\xdc\x48\x3c\xc3\x8d\xb4\x44\xe5\xe5\xca\x92\xa0\xda\x23\x42\xe6\xe6\x3a\xad\xb7\x97\x1f\x49\xb6\xb3\xc1\xb4\x51\x40\x55\x71\x24\x82\x10\xae\x37\x86\x99\x6e\x15\xe7\x2c\x43\x23\x11\x95\x4c\x3e\x7c\xdc\xb6\x16\xaa\x68\x68\x6b\x2f\x3a\x55\x2e\xd5\xf4\xba\x6d\xd4\x01\x47\x44\xd3\xf1\x90\xba\xa2\x14\x2b\x7c\x9c\xe1\xa9\x8b\xe2\x9c\x5d\x1c\xd7\xdb\x15\xab\x8d\x4b\x1f\x0b\x05\x34\x18\xd5\x2d\x67\x3f\x26\xad\x94\x74\x67\xbe\xb1\x41\x2b\xb3\x69\xa6\xdf\x32\x79\xe1\xdb\x1f\x75\xd0\xb6\x2c\x5e\x97\x71\x3a\x72\x0f\x48\x8d\x3f\xd9\xa9\x5f\x86\x75\xc8\xc2\xc2\xdd\xdb\xc6\xd1\x6b\xbf\x20\xea\x5a\x26\xd1\x1e\xf5\xda\x6d\xa1\x28\x57\x5d\xf3\xca\xa7\x45\x18\x8b\x23\xc3\x38\x08\x5f\xf8\x75\x68\xa4\x7e\xf1\xa8\xbf\xec\x12\xde\xf7\x73\xb9\x48\xc6\xec\x5d\x2e\x43\xc6\x56\x84\x4c\x20\x9e\x38\xe0\x87\x1d\x3f\xfd\x02\xeb\x31\x4d\x8c\xee\x96\x47\xb7\xd6\xc3\xe4\x8e\x5f\x58\xd4\x8e\x68\xc7\xd9\x65\xc3\xaa\xda\xf1\x29\xe3\xd2\x1b\x2b\x58\x62\x31\x98\x8a\x4a\x9f\xa4\xb6\xc7\x70\x9f\x60\x96\x55\x81\xed\x2e\xa9\xe6\xdb\x09\x6e\xed\x2b\x41\x4b\xe2\x8f\x76\x47\x1c\x54\x85\x82\xae\xbd\x82\x45\xc2\xf2\xf8\x1a\x9d\x5f\x2c\x1d\xcf\xed\xa8\xde\xd8\xa8\xb7\xff\x04\x2b\x27\x06\xc9\xab\xa9\xb7\x27\xc6\x2d\x92\xd9\x85\xc8\x2e\x56\x78\x6f\x47\x77\x4b\x6b\x1e\x39\x6d\x26\x3a\x51\x6c\x7e\x77\x1e\x21\xd7\xc1\x1d\x6f\x97\x7f\x5e\x5f\xb8\x74\xb0\x32\xef\xef\xef\x96\xb4\xe8\xe3\xd8\xca\x1e\xdd\x2d\x75\x3c\x64\xd2\x68\xcb\x09\xad\xb3\x5f\x0f\xde\x14\x13\xaa\xdb\x88\x2d\xc3\xae\xf6\xb2\x8b\xe0\x91\x5b\x61\xd2\x8d\x6b\xab\xd6\x6e\x5c\x4e\xf3\x56\xb9\x02\x92\x4b\x10\x6c\x1b\x25\x41\x00\x5e\x61\xf0\xd3\xa7\xbb\x2a\xbd\xd9\xd2\x4d\x0c\x05\x10\x38\xc7\x10\x04\x19\xd0\x57\x91\x82\x2c\x4a\x58\x87\xeb\x47\x95\xf4\xd5\xc5\x26\x74\x7b\xf9\x76\xf8\x5a\x46\x95\xd2\xc2\x9f\xf9\x2c\x94\xd1\x21\xb1\x56\x2f\xc4\x48\x1e\xed\xa9\x74\x62\x62\x5c\x06\x3a\x0c\x6a\x8a\xac\xbe\xfa\xab\x0f\x5d\x5f\x75\x35\x77\x75\x11\xaf\x3a\x2b\xee\x72\x6c\x5e\x5d\xc6\x27\xab\x8c\x8b\x00\x9f\x61\x67\x6c\xfb\x53\x9d\xe5\x55\xd4\xed\xb5\x8e\xda\xd9\x31\xfe\x37\x62\xc1\x36\xaa\xdd\xf0\x49\xc8\xc8\xa2\x5e\x45\x3f\x89\xb4\x9a\x09\xd1\xef\x61\xbd\x1d\x47\x8c\x39\xcf\x6c\xf6\x77\x1f\x7d\x66\x13\xc5\xa4\x9c\x07\x53\x56\x93\x08\x25\x18\x9c\x59\x6c\xd9\x1f\x09\x65\x12\x66\x6d\x8c\x85\xcc\x7b\x55\x9d\xea\x00\x2d\x47\x34\x6e\x20\x86\x73\x6f\xf2\x5c\x6c\x82\xee\xef\xf5\xe5\xa8\x15\xef\x3e\x5b\xe1\x5a\xd6\x12\x8c\xa8\x33\x66\x10\x54\x87\x89\xbd\x4c\x3d\x03\x6f\xfe\xb5\x92\xaf\x19\xd2\xea\xb5\x09\x3f\x17\x4b\xb2\x09\x7e\x49\x63\x24\x62\x24\x94\x75\xab\x16\x73\xa7\x19\x6f\xf7\x88\x16\xc9\x78\xcb\x5e\x3c\x4e\x3c\xf0\xba\x64\xe7\xbb\x17\x91\x07\x7b\xf9\x5d\xa1\xbd\x75\x52\x52\xe8\xa0\x95\xcf\x82\xf3\xde\x85\x29\xd4\x5c\x9a\xb8\x5b\xca\x17\x5e\xfa\x3d\xf9\xc4\x8b\xf7\xc5\xdb\x94\x31\x17\x27\xbc\x9c\x3f\x97\x4f\xce\xfa\x45\x70\x11\xc1\x81\x98\xd7\xeb\x0f\x86\x3b\xbb\x7b\xfb\x07\x87\x82\x7f\x1e\xa8\xb5\x5e\x2d\xc1\xe4\xa5\x3f\xf9\x12\xb3\xb9\x9e\xdd\x97\x5c\x71\xa7\x74\x47\xd1\xdd\x94\x4d\xa6\xb3\xec\xcf\xaf\xf9\xbc\x28\x17\x97\xbc\xaa\x3d\x65\xe5\xf1\x56\xa8\x4c\xfc\x9c\x5d\x44\xf0\x60\x79\xf7\xf7\x86\x5a\x20\x7f\x2d\xda\x0b\x49\xcf\x49\xd3\x64\x5c\x98\x52\xbf\x84\xde\x5f\x2e\xfd\xe0\xd8\xfa\xc6\xd9\xb7\x9b\x07\xe4\xaa\x30\xc1\x58\x8b\x79\xd4\x3f\xca\xdb\x01\x7d\xf2\xcd\x4d\x83\x0e\x4f\x69\x14\xb2\x65\x26\xd2\xd9\x79\x7e\x11\x04\xa5\x0a\xda\xd3\x04\x1b\x1b\x7e\x02\xcf\x67\x9c\x37\x17\x81\xf4\xe2\xa9\x22\xee\x17\xe6\x89\xc9\x45\xd4\x3b\x5a\x7c\xaf\x6b\x59\x6c\x6e\x06\x99\x2a\xa0\x3a\x5f\x5c\x60\x19\xe2\x97\x28\x06\xfe\x37\x41\x95\x92\xe5\x23\x13\xd7\x5a\x30\xa5\x2f\xc0\x97\x2f\xd3\xbc\x1c\xc7\xf9\x97\xa6\xc8\x2e\x1b\xf6\x25\x4b\xbf\x7c\xa1\xe1\x5e\xdb\x62\x0a\x5e\x13\x02\xd7\x68\xb8\xe1\xda\x77\x1f\xea\x7d\x82\x04\x59\x1d\xdb\xb9\xde\x3e\xfd\xf5\xd5\xd9\xab\xb7\x3f\x89\x5f\x6f\xcf\x4e\x3f\x9c\x9e\xa8\x5f\x12\xf8\xeb\xab\x33\x80\x7d\x7a\xfb\x06\x0e\x36\x4e\xec\x78\xd0\x8e\x31\xcd\x89\xfa\xec\x9a\xca\xee\x96\x47\x52\xa4\xac\x47\x2c\xb0\x5f\xcc\x08\xb2\x89\xff\xa4\x80\x4c\xf0\x72\xc2\x9d\x25\x15\xed\xe8\x53\x5a\x83\xb7\x27\xdb\x09\xab\x12\x9e\x2d\xea\x92\x1f\x3f\x92\x0f\x55\x08\xd5\x92\x0b\x94\xfb\x7b\x2e\xd4\xe6\x15\x91\xae\xd0\xeb\x71\x04\xa3\xc4\xce\x0b\x1d\xa5\xce\xd0\x98\x85\xf5\xd2\x2f\xfc\x3e\xf8\x93\x57\x7e\xe1\xf7\xe0\x01\x78\xf1\x6b\xd8\x83\x97\xdf\x0b\x7f\x38\x08\x8e\x0a\x7f\x6f\x10\x1c\x75\x85\x50\x7d\xc2\xbb\xc8\x49\xe4\x35\xc5\x1c\xfc\x87\x53\x31\xe0\x66\xb8\x94\xbf\x8c\xc7\x6e\x32\x99\x29\x07\x35\x3f\xc2\x10\xa2\x1e\x2b\x6a\x06\x07\xee\x47\x64\xec\x9b\x23\x9c\x21\x98\x2b\x3f\x94\x2c\xb2\x38\x32\x8c\x03\xe5\xc2\xc7\x18\xc0\xa2\x6b\x1b\xa8\x3b\xc5\xe9\x8b\x8b\xdc\x8e\x91\x1d\x16\x32\x4a\x36\x1e\x9c\x87\x59\x54\x6c\xc3\xee\x1c\xb6\x20\x3f\xf1\xb2\x59\x84\x71\x94\x6d\x6c\xac\x67\xdb\x59\xf5\x46\xf4\x35\x2b\xa6\xc7\xf5\x36\x34\x70\x54\xc3\xfb\x68\x31\xd7\xa1\x3b\x65\xfa\x63\x1d\xd7\x4d\xa5\xee\x4d\x64\xc5\x71\x7c\xec\x97\x51\x1e\x3a\xf9\x4d\x30\x2a\xa3\xc5\xa8\x8c\xea\x6d\x49\xc8\x77\xc5\xe9\x4d\x06\x36\x55\x95\x14\xf5\x1c\x27\xa3\x5c\xa9\x67\xe0\xa0\x57\x37\xd5\xa8\x14\x0a\x66\xc1\x6e\xea\xe7\x71\x9e\x8f\xe3\xe4\x2b\x56\xc7\xff\x27\x5f\x0b\x8e\xbb\x5e\x0b\x8e\xe1\xba\xfd\x2c\xcb\x55\xf4\xd7\xb6\x40\xb9\x73\x68\x0a\x97\xfe\x97\xa2\x03\x53\x56\x9f\x30\x9e\x5d\xb1\x54\xd0\x84\xbd\xe0\xe5\x5c\xb0\xf9\x8a\x87\xfe\xc4\x9e\x1d\xde\xc0\x44\xfa\x45\x51\x72\xac\xc8\x91\x2f\xb1\xd0\x30\x86\x20\xa0\x65\xc1\x8a\xfa\x24\x4b\x61\xc8\xac\x35\xdd\x68\xb6\x38\x0a\xbe\xba\x25\x49\x87\x26\x70\xcb\x71\x77\x76\xfa\x8c\x03\xc2\x17\xc8\x98\x9e\xb8\x45\x12\xcd\xb7\x5e\xd6\x42\xcd\x17\xdb\x79\x64\x70\x04\x5f\x14\xeb\x51\xd4\x6c\x6c\x88\xff\x16\xf0\x56\x7a\x13\x8c\x28\x0c\x82\x38\x6b\x6e\x0f\x96\x1d\xad\xef\x87\xb5\xdd\xda\x5f\xb2\x3c\xff\x84\xec\xd4\xea\x38\x5e\x6d\x7a\x4b\xb8\xc6\x87\x8f\xa7\x3a\x48\x74\xd5\x7a\xb0\x07\x6d\x08\xa4\x73\xdb\x35\xa2\x6a\x13\x52\x54\x47\x45\xc4\x43\x94\xb1\x7c\x63\x43\x85\x44\x31\x2a\x2c\xdf\xd8\xf0\x21\xf6\xe0\x4d\x56\x87\x35\x04\x21\xac\xc1\xe2\xa2\xb7\xdb\x6a\x6a\x1c\xab\x1f\xa3\x3a\x08\xef\x04\xfe\x88\x85\x72\xb6\x85\x32\xa7\x58\x8a\x36\x53\x32\xb4\x83\x30\x1a\xcd\x11\xaa\x5e\xef\x07\xb2\x7d\x51\xfd\x00\x2d\xa4\x07\x41\xa6\x03\xd0\x4f\xb2\x22\x3d\x79\xf7\xe6\xad\x50\xb3\x40\x6b\x3f\xaa\xa3\x28\x6a\xf0\x26\xee\x82\xf1\x49\xc9\xe7\x30\x47\xfd\x22\x64\xf2\x91\x48\x05\xbe\xc9\x6a\xbf\x08\x64\x70\x3b\x43\x3d\x6b\xaa\xcb\x8d\x13\x65\x11\x8c\xc4\x25\x03\xce\xd7\x30\x2d\x7c\xc5\xe5\xc9\x12\x86\x8b\x56\xdc\x69\x1a\x07\xe9\x66\x8d\x19\x12\x5c\xbe\x7c\x96\xe0\x44\x75\x45\xdd\xf1\x43\x99\x44\xfe\x8d\xea\x10\x1f\xde\xa1\x7c\xe3\x8b\x55\xa5\x3c\xce\xd4\xf0\x65\x58\xe5\x91\x58\xcb\x8e\x7d\xd2\x92\x12\x85\x9a\xcf\xc2\x52\x6d\x0d\xe3\x09\xfb\xe8\x76\xb5\x59\x86\x34\x5e\x79\x61\x7f\x0d\xcf\x9b\x88\x02\x8a\xed\xb2\x38\xd3\x2d\x3d\x2d\x52\x9f\x85\xb1\xf3\x65\x67\xf9\x8b\x07\xcb\x67\x29\x14\xbf\x54\xae\xe7\x72\x68\xff\x66\x49\xf8\x9a\x66\x4c\x39\xa3\x43\x94\xa0\x72\x65\x0d\x9a\x98\x2e\xbc\x83\xd4\x47\x85\x4b\x52\xc1\x6c\xec\x21\x7a\x6a\x29\x62\xb7\xb6\xb6\x8a\x00\xb2\x42\x68\x84\x16\x51\xe5\xe4\xb5\xbf\xed\xac\x29\x7f\xa8\x06\x4d\x8e\x47\xc9\xfa\xb4\x62\x84\xe4\x6b\x4d\x64\x2a\xc3\xd4\xac\x87\x37\x4f\x08\x8e\xba\x93\x4d\x61\xb2\x28\x65\xb2\x68\xad\xae\x50\x1d\x6d\xac\x33\xf9\xf4\x23\x14\xb5\x25\x56\xd4\xa3\x8b\x7a\x3a\x33\x29\xb3\x1d\xc4\xd5\x3c\xb1\xde\xa3\x0f\xac\xd9\x0d\xd3\x1f\xf1\xe0\x0e\xfd\xb0\xc5\x9a\xd0\xa1\x1a\x30\x7c\x65\x7e\x55\xaf\x2d\xa2\x45\xeb\xfd\x0e\x4c\xd1\x66\x87\x33\x5a\xa1\x5a\x3b\x29\x50\x28\xb7\x70\xdc\xda\xd7\x1b\x1b\xeb\x84\x7d\xe3\x34\x3d\x2d\x52\x65\x3e\x39\x62\x1b\x1b\xeb\xb6\xc8\xb0\x11\xd4\xc5\xf0\x8e\x2c\x9f\xb5\x1b\xad\x04\x7f\xbd\xb1\x41\xde\x42\x68\xa1\x85\x75\x10\x8c\x1e\x44\xe8\xc1\x98\x71\x56\xa4\x8c\xaf\x78\xd6\xce\x5a\xea\x85\x56\x20\x74\x94\x80\x84\x15\xa0\xaf\x9e\x43\x07\xc0\x31\x02\xdc\x3a\x39\x2b\x42\x57\x9a\x6b\x63\x88\xda\xd6\xdc\x2d\xd5\xab\x8a\x61\x19\xdd\x2d\x8d\x8d\x05\x4f\x0e\x02\xf9\x96\x6b\xef\x88\x7f\x9f\xd1\x50\x09\x45\x94\x9d\xf3\x8b\xb0\x26\x7e\x11\x3f\x44\xbd\xfb\x7b\xbf\x54\x9b\x08\xe3\x27\xb1\xf4\xeb\xf0\xdc\x53\x6d\xf2\x70\x23\x2b\x1f\x3f\xe3\xdb\x59\x11\xea\xdf\x54\x49\x35\x50\x6b\x81\x33\x60\x5c\x17\x4c\x9a\xd9\x5f\x31\x0b\x59\xaa\x18\xe4\x6b\x6b\x9c\x0d\xbc\x74\x6b\x37\x0b\x44\x0b\xc6\x52\x0b\x64\x55\xa8\xe5\x9f\x0b\x62\x69\xe8\xa9\x41\x21\xde\xc1\x85\x1e\x55\xb8\x6f\x77\x84\xe7\x2b\xe6\xe5\x9a\xe7\x92\x7c\xdb\x65\x91\xdf\x52\x2f\x14\xf3\xb6\x4d\x5e\x16\x4c\x1e\xa3\xf8\x59\xc8\x83\x65\xc8\x97\x3e\x29\x41\x29\x74\x64\x83\x96\xfa\xc1\xdd\x72\xa2\x96\xe8\xb3\xdb\x05\xab\xa2\x96\x72\xcd\xb7\xf1\xc5\x8e\x65\x38\x41\xce\x7a\xfe\x20\x3a\xbd\xe4\x24\x3e\x11\x6c\x29\x51\x45\x52\x36\x07\xb5\xf2\xbb\xac\x18\xad\xf7\x43\x3a\xee\x22\x6d\x8d\xb8\x00\x48\x1d\x60\xbd\x2f\x55\xb7\xf5\x5e\x08\xaa\xdc\x7a\x2f\x94\x63\x31\x4a\x43\x33\x52\x26\xc1\x52\xfc\x2d\x90\xd5\x0f\x8d\x00\xa3\x31\x4a\x45\xab\xcc\x5e\xb3\x17\x4e\xd4\xe6\xb2\x2f\x7e\xaa\xbd\xe4\x40\x25\x4e\x4f\xa2\xa1\xc4\x11\xf0\x1d\x19\x0b\xd6\xef\x89\x05\xb9\xcc\x6f\x27\x59\x9e\x07\xfe\x84\xbe\xce\x33\xfb\xcb\xc6\x0d\x08\xdf\x0d\xa6\xb5\x8f\xb3\x78\xc1\xa2\x5a\x71\xb0\x4c\x53\x03\xc6\x91\xcf\x23\xd8\x9b\x6f\x6c\x70\x52\xd0\x91\xfb\x0d\xc8\x8b\x76\xd1\xb8\xcd\xf9\x9b\xc6\x17\xcb\x90\x52\x75\x98\x08\xc0\x2e\x00\xf6\x81\x7e\x7f\xff\x6f\x99\x06\xf4\x27\x89\xde\xff\xf9\xc9\xff\xfe\xc0\xda\xc1\x36\x1c\x38\xa3\x61\x40\x57\xe4\x3e\x96\x62\xed\x2c\x88\x4d\x5a\xdf\x98\x91\x86\x69\x51\xca\xda\x2c\xae\x8a\x7f\xd4\x6b\x63\xc6\x8a\xb5\xac\xc8\xea\x2c\xce\xb3\x8a\xa5\x6b\x5b\x6b\x55\xb3\x60\xdc\x0f\x2c\x0c\xb4\x59\x1b\xe3\xb4\x7a\x6d\x45\x76\x0c\x8e\x14\x2a\x9b\x72\x96\x19\x5b\x2d\x01\x2b\x5f\xb7\x84\x47\x0c\xe0\x59\xf7\xa7\x1b\x4c\xc2\x32\xf2\x57\xd9\x4c\x82\xed\x59\x5c\xa4\x39\xc3\x79\x89\x07\x95\xb9\x9f\xc3\x75\x08\x63\x11\x91\x56\x0b\x8a\x3a\x2a\x43\x78\x9f\xe2\x03\x2c\xa5\xa3\xf5\xde\xf2\x7f\xd6\x6c\x91\x75\x99\x2d\xb2\xbf\x61\xb6\xb8\x23\x7b\xa0\x75\x62\x34\x60\xe9\x72\xb9\x0c\xb3\x27\x58\x1e\x14\xbe\x8e\xcd\x24\xed\x67\x91\x20\x42\xf6\xb4\x4d\xbc\xfe\xa4\xff\x17\x2c\x28\xca\x5f\x8d\xa8\x1a\xb5\x35\x7e\xca\xe1\x48\x21\x8c\xea\x6d\x32\x48\xc7\x20\x2e\xa7\xac\x7e\x85\x7c\x0c\x84\x7b\x13\x2f\x16\x59\x31\x0d\x60\x05\x1c\x29\x0c\x50\xfc\x9c\x6c\x78\x46\xc1\x1a\xf3\x3e\x10\x8c\x36\xa0\xb3\xc1\xaa\x50\xbb\x40\xa2\xff\xa9\xe6\x06\x47\x4c\x4c\x00\x90\x05\xf7\xf7\xf2\x1d\x4e\xb3\x5b\x80\x6b\x04\xf6\xfe\xa1\x0e\xac\x11\x70\xb7\xdc\x1d\x96\xf4\xc4\xbf\x5b\x86\x35\xa9\x52\x85\x8d\x46\x8d\xa1\x38\x87\x26\x5c\x84\x86\x86\xc5\x12\x5e\xed\x0a\xb3\x87\xd5\x46\xd4\x04\x6b\xf9\x80\x0d\x30\x80\x0c\x8b\x95\xe5\xe9\x8b\x58\x30\xf6\xed\xff\x16\xdd\x90\x09\xdd\x50\xb5\xd2\x0b\x3d\xda\x46\xef\x42\x2c\x21\x0d\x8d\x46\xa6\x89\x05\x62\xa9\x45\xb3\xa7\xa9\x85\xf2\x40\xb0\x3e\xce\x46\x44\x7f\x02\xa9\xa0\x14\xa8\x3a\xe4\x61\xf6\x80\x0a\xb5\x78\x8a\x2a\xa4\x9f\xea\x93\x1a\xd4\x76\x56\x7d\x90\x21\x50\x96\xe1\xc2\xd6\x8c\x16\x8e\x66\xa4\x69\x32\xf2\xd2\xec\xca\x0b\x29\x5d\x46\x9d\xbe\x86\x4b\x69\xbd\xf6\x7b\x61\x46\x34\x91\x05\xd5\x44\x26\x8f\xbf\x13\xa8\x1f\xbe\x07\x1f\x54\x85\x7c\x67\xbd\xe8\x26\x24\x87\xf3\x28\xab\xd9\xea\x88\x55\x48\x7a\x7c\x32\x31\x30\xf2\x90\x94\xbe\xe7\xd6\xf1\x7d\x92\xb3\x98\x3f\xb5\x84\x4a\x9d\xec\x46\x51\x64\x2a\x56\x2a\x34\xd9\x75\xb1\xb0\x07\xdb\x0d\xc0\xcc\xee\xef\xd7\x8b\x80\x6e\xdb\xb4\xd2\x4d\x4a\x09\xdd\xcf\x6b\x7e\x7b\x47\x94\xf3\x9e\x3a\x26\xac\xf1\x44\x57\x65\x49\x8d\x00\x76\xc6\x16\x92\x8d\x80\x8e\x3e\x02\x61\xb9\x5c\x77\x0e\x87\x8b\xa8\x6b\x6b\x60\xda\x73\x6c\x7e\x8e\x32\x59\x01\x13\xbb\xeb\x6c\x09\x2d\xe9\xfc\x9c\x12\xf6\x98\x26\x46\xb1\x29\x82\x47\xf1\x52\x3d\x47\x98\x84\x79\x74\x7e\x11\x36\x62\xdf\xbf\x88\xb6\xfa\xf4\xed\xb4\xe0\xae\xd9\xd8\x48\x36\x36\x7c\xc8\x4d\xe4\xb4\x3f\xce\xa3\x44\x85\xdb\xc8\x83\x91\xf8\x28\xcc\xb5\xa3\x59\xea\xd3\xb8\x4e\xa9\x8c\x71\xd9\x28\x89\x55\x09\x5d\xb9\x89\xd6\x7b\xe4\xac\x3a\xd7\xca\xda\x11\xea\x73\x49\x94\x43\xab\x8e\x36\x37\x17\xdf\xd7\x47\x41\xb2\xb1\x91\x9c\x2f\x2e\xb6\x79\x53\xf8\xc1\x11\x54\x68\xbe\x5a\x26\x68\xa0\x80\x36\x3a\xa7\x7b\x5c\xec\xa0\x09\x11\xf4\xc5\x49\x02\x13\xb2\x4d\xf0\x0c\xc7\x20\x1a\xeb\x42\xc7\xeb\xfa\x86\x5b\x25\x85\x6e\x11\x30\x24\x3e\xeb\x66\x17\x4e\xd9\xa5\xcd\x2c\x9c\x32\x8b\x60\x15\x51\x8e\xf5\x4a\x5a\xa8\xec\xce\x93\x46\xa8\x3a\xa8\x0d\x70\x1e\xdf\x46\x35\x7d\x12\x2d\xb8\x5b\x96\x60\x76\x38\xcb\x3a\x0d\x42\x62\x06\xca\xb7\xc2\x1d\x45\x79\xab\x0f\x54\x68\x47\x23\x32\x87\x9e\x51\xff\xa8\x68\x2b\xd8\xe8\x5c\x50\x6c\xf5\x2f\x88\x82\x5d\x5c\x1c\xe5\x18\x05\x4e\xd4\x88\xed\x0f\xc2\x3e\x3c\x0d\x81\xdf\xdd\xdf\x37\xf7\xf7\x95\x9f\x06\xcb\x70\x46\x94\x31\xde\x14\x2d\x8d\x65\xd2\x14\x52\xbb\xc6\x23\x31\xdd\xf7\x60\x19\x96\xdb\x75\x56\xe7\x2c\xf2\xc6\xbc\xbc\xae\x18\xf7\xc2\x72\x5b\xfe\x14\x4a\x52\xb9\xcd\x8a\x2b\x21\x6f\xcb\xed\x98\x4f\xaf\x04\xa3\x97\xdb\xd2\x07\x1d\xa3\x03\x28\x87\x74\x44\x2a\x8b\x68\x2c\x70\x53\x6d\x2b\x80\x74\x59\x24\x0c\x7f\x4c\x26\xf0\x3f\xba\x65\x5a\x38\xd2\x53\x33\xcf\xb5\x23\x0f\x80\xd9\x3c\xab\xe1\xc7\x82\xb3\x05\x2b\xec\x72\x25\xec\x5d\x91\xd8\x65\xe5\xba\x88\xb6\xe8\x3f\xbf\x10\x0d\x15\xea\x72\x56\x4c\xad\xfc\x96\x90\x5d\xf0\x32\x61\x55\xa5\x90\xd7\x32\x14\xb3\xda\x2f\xdf\x03\x02\x26\xd7\x69\x5b\x79\xf5\xbe\xf3\x20\x6f\x96\x66\xfc\x69\x95\x00\xea\x8a\x2a\x9a\x79\x5c\x7d\xed\xf0\x14\xe8\x75\x38\x24\x48\x4b\x9f\xbf\xb7\x07\xa1\xa0\xb3\x62\xd1\xe0\xce\x7f\xa1\x1c\x7e\xcb\x45\x3d\x85\x05\x17\xde\x27\xcd\x59\x02\xf9\xe3\xa6\xae\x31\x3f\x8d\x6b\xb1\x55\x02\xa8\x58\xae\x21\xdc\x3a\x68\xc8\x62\xcd\x1e\x89\x7f\xa0\x3f\xc3\xdf\x14\x72\xea\xd9\xe8\x0e\x00\x4b\x01\xb9\xab\x67\x2c\x4e\x5b\x48\xf0\xb6\xe3\x9d\xca\xca\xb3\xe2\x2b\xb4\x00\x8e\xe0\x01\x21\xcf\x46\x77\x79\x06\x3f\x17\xa3\xbb\x05\xfc\x98\xf5\xf5\xaf\x81\xfe\x35\xd4\xbf\x76\xf4\xaf\x5d\xfd\x6b\x4f\xfd\x92\x9d\x2b\x43\x24\x42\x19\x96\x4d\x8d\x3f\x64\x67\x4b\xd3\xd7\xd2\x74\xb5\x54\xb4\xba\xd3\x34\x5b\x1a\xa2\xdd\x11\xf2\x2d\x97\x61\x1c\xdd\xe9\x0d\x0f\x3e\x5c\x29\xc9\x15\x8e\xe3\x8a\xa9\xff\x27\x65\x81\x44\xe6\xf8\x20\x56\x8e\xff\xcd\xe7\x71\x01\xc4\x60\xf3\xb1\xf4\xaa\xe6\xf1\x1c\xbe\x9a\x01\x66\x36\x9f\xc2\x7f\x6a\x10\xb3\x0a\xb4\x44\xf1\xf3\x2b\xbb\x9d\xb2\x82\x52\x72\xce\x6a\xa8\x78\x11\xf3\x78\x0e\xa4\x2d\x1b\x9e\x40\x69\x35\x8f\x13\xc0\xb9\x1e\xe3\x8e\xaf\x6a\x35\x7b\x1e\xe3\x60\x55\x57\x53\xc0\x48\xda\x18\x19\xd4\x52\xc2\x5f\xa8\x79\x5e\xc1\x5f\x41\x39\xf1\xc3\x03\x0f\x30\x70\xb1\xdd\xba\x99\xe7\x1e\x74\xa8\xe4\x2c\x9b\x16\xa8\x0b\x03\x77\xb1\x2a\x81\x26\x09\xb9\x83\xc3\x1e\x7d\xf7\x47\x75\xff\xc7\x77\xdf\x99\xa5\xb3\x21\x12\xfb\x8b\x72\xb9\xad\xc1\x9f\x14\x61\xc9\xb8\x8a\x18\x49\xd7\xf1\x14\xc2\xf2\xa9\xc0\xa8\x5f\xd0\x95\xbc\x0b\x86\x8f\xf4\x3b\x40\xe5\x2e\x00\xa0\xaa\x8e\x93\xaf\x10\x8a\x11\x92\xb2\x0b\x6a\xa3\xaa\xe0\x70\x5f\x11\xc2\x7d\x47\x72\x37\xc9\x64\xf8\x6f\x5a\x56\xae\xae\xdf\x9f\xc5\x53\x30\x23\x45\x1e\x05\x55\x5e\x26\x4f\x15\x54\x37\x8f\xd7\xd7\xad\xf4\xb6\x85\x3e\x72\x32\x6f\xe6\xf9\x9b\x32\x65\x6e\x65\xda\xe3\xdb\xad\xd2\xce\xf8\x0b\x95\xdb\x1f\x3e\xdc\x0c\x05\x3d\x2b\xbf\xb2\x22\xfb\xc6\xe0\x21\xbb\x68\x45\x5e\xa0\x46\x50\x01\x60\x91\xe5\xbe\x85\x0e\x38\x81\x19\xfb\xed\xb2\x80\x6b\xfc\x3c\x2b\xf4\x29\x6e\x0b\x2e\x1d\x3d\x0b\x7f\xa7\x1f\xf8\x4d\x58\xf8\xfd\x61\x2f\xd8\x06\x67\xd1\xd3\x79\x56\xd7\xa2\xee\x86\xac\x9d\x5f\xf0\x4c\x5b\x3d\x5b\x6a\x89\x6d\xb5\x07\xa2\xc3\x7c\xec\x34\x7c\xfb\x4b\xc5\xe0\x03\x78\x9d\xf4\xfb\x88\x1d\xb7\xf8\x64\xe4\x42\x1e\x2c\x62\x8b\x75\xe3\xab\x06\x6c\xf6\x1d\xbe\x73\x4b\x9b\xb2\xfa\x99\xf4\xdc\xc7\xb8\xf4\xc1\xd2\xea\xb1\x6b\x7a\x61\x6a\xca\xd9\x94\xf0\xfb\x81\x5d\xd1\xd6\x96\x35\x14\xa2\x10\x7b\x10\x04\x44\xe8\x60\x4e\x6d\xe5\x82\x15\x6a\xa6\x3a\x9a\xe6\x8a\xd9\x02\xee\x03\xcc\x0e\x63\x11\x38\x73\x9e\x85\xdd\xdc\xb8\xb1\xc1\xd6\xb2\x62\x2d\xd3\x1a\x58\x7d\xe4\xcb\xc3\x1f\x9c\xe2\xe7\xe4\xb7\x09\x8b\x17\x88\x6f\xce\xd9\x05\x3a\x8b\x94\x45\x92\x97\x15\xab\xe3\x29\xbc\xd3\xf4\x60\x4d\xb1\x0a\x9c\x2b\x8b\x04\x05\x8e\x05\x21\x64\x56\xc7\x5d\xd2\x04\x71\xd6\x7b\xc1\x08\x90\x12\x45\xc6\x4e\xac\x7e\x60\x4f\x01\x42\x4e\x9b\xfc\x24\x43\x1f\x4b\xdb\x59\xea\xfc\x55\x8b\xbf\xbb\xe5\xaa\xd1\x62\x45\xda\x52\x29\x57\x31\x88\x2a\x4e\x17\xef\x54\xda\x01\xf4\xad\xc1\xb4\x8b\x09\x3a\x64\x74\xb0\x72\xb4\x69\xe1\x6a\xd0\x14\x54\x16\x0f\xa3\xd4\x8d\x69\xb7\xc3\xe5\x31\xcf\x73\xa9\xa3\xbe\xeb\x66\xe4\x55\xf4\x79\x22\x83\xfb\xc8\x32\xf7\xf7\xc8\x15\xc1\x2a\xb6\x28\x17\xbe\xa6\x07\x65\x63\xf9\x61\xac\x4e\x7a\x5d\x62\x05\x9d\xd0\xfb\x7b\x6f\xcc\x65\xf4\x60\x6f\x01\x3f\x14\x47\xaf\xe2\x29\x41\x84\xe7\x0d\xe7\xac\xa8\xcf\xe2\xa9\x1f\x90\xd7\xb6\xac\xa9\xb6\x9d\xc7\x15\x8a\x30\x08\x29\x85\x6f\x1c\x81\x3b\x90\x26\x99\x3d\x1c\x30\x69\x9d\x22\x70\x86\xd6\x47\xf5\xd6\xd6\x51\xf0\xc0\x18\xca\xd9\x27\x88\x83\xed\x59\x6b\x17\x13\xd5\x90\xa3\xbb\xb9\x82\x20\x7f\xb1\xf7\x4b\x97\x4b\x2a\x96\x4f\x04\x5a\x56\x4c\x2d\x5e\x71\x74\x1b\x53\xa1\x0d\xe6\x2c\x29\xa7\x42\x96\x7f\x64\xf9\xe4\x39\x96\xa3\x70\x6c\x5e\x38\xef\x64\x10\x2d\xd4\x8e\x57\xb4\x78\x64\xf7\x8f\x15\xa9\xbb\x46\xb8\xdf\xac\x30\xa2\xaa\x99\x72\xd4\x51\x60\xf8\xa8\xcc\x95\x9e\x62\x0f\xcd\x60\x67\xa4\x99\x55\xaa\x1c\x6c\x97\xfa\x44\x09\x6c\xaf\x71\x2b\x54\x9b\x87\x56\x1c\x52\x1e\xeb\xae\x4b\xec\x27\x3a\xea\x22\x9a\xe7\xe6\xaa\x4f\x3b\xe5\x2c\xf6\x5a\xdf\x8b\xb4\x89\xa1\xc1\xbe\xdb\xbc\xb6\xc2\xdb\x12\xd0\xeb\x4f\x3a\xb2\xb3\x3e\x6a\x51\x21\x70\x97\x91\x73\x17\xe3\x22\x7a\xa4\x25\x0f\x69\xe8\x0e\x23\xc2\xf9\x07\x1e\x35\x65\x65\xf1\xd6\x1d\x55\x15\x9b\x41\x86\x26\xce\x83\xb0\x88\xea\xef\x7b\xf8\xae\x4f\x33\xae\x6a\xee\xf7\xc2\x3a\xb0\x5c\x79\x3a\xe5\x71\x11\x15\xee\xf0\x17\xee\x90\xa5\x2c\xc9\x63\xbc\xfd\xd8\xbd\x00\x48\x65\x14\x37\xf7\x59\x31\xcd\x4c\xcb\x03\x4b\x3c\xb6\x7b\x05\xd6\xb0\xc7\x0a\xf1\xbd\x75\x6f\xb3\x0e\xc5\x5f\xd6\x16\x3b\x9d\x9f\xfc\xbf\xd5\xd0\x63\x68\xe8\x71\x67\x43\xc5\x1e\x98\x15\x4f\x50\x41\x77\x6c\x35\x46\x7e\xe7\x08\x07\x04\xba\x2a\x8f\x04\xb3\x22\xed\x44\xef\x90\x79\x65\x91\xac\x98\xc8\xab\xd6\xf5\xa7\xca\xf1\xe7\x27\xcf\xce\x9e\x1d\xdb\x82\x4e\x54\x05\x2a\xbe\xd3\x3c\x0d\xf7\x83\xa7\xa9\xdb\x61\xeb\xf3\x76\x9f\x25\xd4\x0f\xb4\xe8\x57\x54\xf3\xce\xa1\x71\xe7\xde\x26\xdb\xf4\x2e\x2e\xbc\x16\x4d\x18\xe7\xa5\x6b\xcc\x32\x25\x43\xae\x5d\x19\x80\x3a\xb6\x01\x8e\xa4\x7b\x48\x03\xa0\x2b\x0c\x5d\x33\x8e\xd8\x0f\xbd\xa3\xc7\x54\x80\xf3\xad\x2d\x76\x11\xd8\x3c\xda\xa2\x48\xc7\xf0\x73\x56\xb1\xf6\xc1\xaf\xc4\x87\x4c\xbb\x08\x00\xf9\xad\x8d\xec\xb6\x03\x7f\xba\x89\xe2\x21\x6b\xc4\x5f\xdc\xfd\x5a\x1d\x83\xdc\xe7\xe5\x7c\x91\xb3\xba\x63\x49\xb4\xda\x2b\xe8\xe2\x0e\xdd\x35\xcf\xba\xbe\x23\x5d\x06\x8c\xd6\x77\xd6\x80\x77\x7c\xd5\x55\xd7\x22\x6e\x2a\xd6\x1e\x04\xf3\x11\x20\x74\x0c\x5d\x33\x7f\xf0\x33\xc4\x70\xbf\x43\xca\xcc\x9a\xe2\x6b\xd4\xea\xb0\x85\x98\x96\x05\x8b\x9c\xbe\x91\x53\xc2\xa6\x6d\x90\x35\x99\x73\x15\xfb\xb2\xf0\xfb\x83\xdd\x20\x2c\xe1\xc7\x3e\x3a\xfe\xf4\x07\x07\xd2\xf3\x67\x70\x18\x84\x55\xd4\x0b\x93\xa8\xda\xdc\x0c\x73\xf8\xdb\xc0\xdf\x05\xfc\x9d\xc0\xdf\x14\xfe\xce\xe0\xef\x18\xfe\xce\xe1\xef\x1b\xf8\x3b\x85\xbf\x57\xf0\xf7\x16\xfe\x3e\x83\xbf\xd7\xf0\xf7\x1b\xfc\xfd\x02\x7f\xdf\xc1\xdf\x33\xf8\x7b\x03\x7f\xdf\xc2\xdf\xd7\xf0\xf7\x14\xfe\x7e\x84\xbf\x97\xf0\xf7\x39\xfc\xfd\x0a\x7f\x7f\x81\xbf\x27\xf0\xf7\x47\xf8\xfb\x1e\xfe\x7e\x80\xbf\xbf\xc2\xdf\x3f\xe1\xef\x2b\xf8\xfb\x09\xfe\xbe\x84\xbf\x2f\xe0\xef\x67\xf8\xfb\x1b\xfc\xfd\x09\xfe\xfe\x13\xfe\xfe\x0b\xfe\xfe\x3b\xfc\xfd\x19\xfe\xfe\x0e\x7f\x19\x83\xff\x6a\xfc\xaf\xc0\xff\x38\xfe\x57\xe2\x7f\x19\xfe\x17\xe3\x7f\x15\xfe\x97\xe0\x7f\x39\x8b\x7a\x61\xc3\xa2\x9c\x09\x6a\xca\xff\x27\xf8\x3f\xf1\xf3\x63\x24\x34\xd0\x9a\x87\x97\x61\xbd\x3f\x0a\xfd\xab\xd6\xbf\x26\xfa\x17\xbc\x41\xcb\xc8\xa1\x13\xb3\x2d\xf2\x8e\x4a\x69\xae\x6f\x44\x11\x3f\xb6\xee\x92\x03\x44\xcf\xfd\x9a\x45\xf5\xc8\xa7\x49\x79\xdd\xff\x4b\x86\xa6\x98\x60\x69\x0e\xb8\xcb\xe0\xae\x14\x9f\xdf\xdf\x97\x10\x48\xed\xaf\x94\x42\xce\xc1\x98\x1d\xe8\xa7\xb3\xe1\xd4\xf1\x99\xe3\xd3\xc3\xfc\xb1\x3a\x9b\xd5\x75\xce\x19\x35\xf9\x22\x7a\x22\xd1\xc7\xcd\x64\xc2\xb8\x11\x92\xd4\x46\xa6\x6c\xaf\x58\xa6\x4e\xe1\x27\xf8\xcc\x84\x01\xc6\x15\xfb\x68\x95\x5c\x2d\x58\x92\xc5\x79\xd4\x30\x62\x57\x96\xd1\x16\xbe\xf0\xa6\x28\xb2\x62\xaa\x9d\x85\xbe\xb0\x22\x95\x4f\xef\x40\x52\xae\xf5\xd1\xba\x7a\xda\x5c\x6d\xae\x65\x7e\xca\x92\x32\x65\xa7\x45\x9d\xd5\x19\xab\x0c\x9a\x0d\x0f\x96\x73\x46\xb5\x5c\xe8\xfa\x99\x6b\x96\xf3\xbe\xc7\xc8\x78\x3e\xe9\xec\x0f\x6d\x6a\x74\xa8\x05\x5a\x79\xfb\xc8\xa4\x48\x24\x3b\xa7\x9a\x45\x79\x17\x51\x49\x2d\x52\x4f\x70\x7a\xa3\x2a\x52\x04\x8c\xa2\x86\x6d\x6c\x78\x1b\x9e\xb5\x93\xfb\x6f\x69\x66\xc7\xa8\x41\xaa\x64\x8f\xb5\x7c\x19\x76\x90\xf6\x47\x78\x12\x47\xaa\xfb\x36\x8d\xbf\xf3\x5a\x0c\x3c\x19\x39\x94\x7f\x1a\x65\x57\xd2\xd2\xfb\x41\x0a\x0c\x8b\x7c\xeb\x82\x7c\xf7\xf7\x20\x77\xac\xea\x93\x91\xb7\x6e\x55\x8f\xe0\xeb\x47\xea\xd9\xec\x07\x23\xef\xb8\xe3\xc3\x2f\x4f\xf8\xd0\xfa\xc0\xe2\xf4\xfb\x7b\xaf\x52\xe6\xa1\x8f\xf0\xe3\xb8\x19\xbd\xff\x5b\xa3\xf0\xaa\xe8\x1a\x01\x5f\x0e\xc1\xfd\xbd\xa6\x13\xd0\xc4\xec\x33\xd9\x3c\xab\xe1\xe8\xc0\xf7\x2c\xa3\x8c\x67\x33\xf5\xd8\x15\x34\xab\x39\xe1\xb9\x50\x1c\xb3\x62\xda\xd5\x1e\xa8\xfc\xfe\xde\x97\xad\x71\x86\xa6\x3d\x84\xc7\x5e\xa5\xda\xff\xb1\xfd\xc5\x07\x9b\xb4\x89\xd3\x46\x3b\x37\x7d\x8c\xac\xab\xe8\xfa\x50\x7f\xfc\x27\x91\x55\xa9\xd2\x0e\x4d\x67\x4f\xa1\xe9\xb3\x49\xcd\xf8\x43\x4d\x90\x2d\xd0\x35\xdb\xb4\x78\x80\x2f\x1f\x18\x42\xcb\x80\xd3\x55\xdb\x71\x97\x35\xda\x31\x4d\x3d\xad\x15\xa3\x2e\x21\xb1\x18\x29\x46\xa1\xd0\xf9\xdf\x9c\x18\xc4\xd4\x77\xe6\x98\x97\x3b\xbb\x63\x9b\x18\xff\x46\x97\xba\x1a\xff\xa4\x09\xf4\xaa\x58\x4d\x79\xdf\x8b\xd4\x54\x78\x6c\x4e\x53\x63\x56\xa1\x5f\xfb\x7b\x5c\xb0\x6e\xf5\xad\xae\xbe\x79\x32\x7f\x3e\xc0\x2f\x51\x7b\x74\xa7\x23\xb7\x07\xc7\x1d\x0d\x6f\x73\x93\x4b\x42\x87\xce\x0f\x7f\xfc\xf7\x98\xc7\x99\x0e\x9f\xc1\x8e\x46\xfb\xf7\x0f\xef\x1f\xed\x45\xe1\xea\x29\x6c\xff\x8f\x8e\xd5\xe4\xf6\x6f\x32\xd7\xb3\x47\xbe\xfb\x8b\xbc\x07\xdd\x3c\x29\x9b\x71\xce\xfe\xd5\x94\x35\xab\x1e\xea\xb2\x25\xe9\x8c\xcd\xd6\xb3\x8d\x27\x2b\xc7\x74\x95\x36\xe4\x6a\x3e\x8f\x55\x63\x94\x1a\x52\xfc\x7f\x87\x7a\xe3\xd2\xe5\x63\x56\x4c\x3b\xe9\xe2\x8c\xe8\xff\xd7\xe8\xf2\xb6\xec\xa0\x89\x64\x56\x67\x9a\xff\x17\x49\xe3\x8a\x81\xff\xe5\x84\x42\x19\x72\xb2\xc2\xbe\x4d\x2b\xf0\xce\x91\x4c\xaf\x47\xf2\xcd\xb0\xe3\x77\xa3\x6f\x2b\x88\xbf\xaa\x3c\x57\x1d\x40\x5a\x12\xeb\xfa\xa3\xfb\x97\xbf\xab\x3a\xbc\x2a\xde\x6b\x73\xf5\xab\x15\x46\xf2\xee\xd6\x75\x9b\xb9\xff\xa7\xda\x29\xb5\xd4\x0e\x3b\xb9\xa2\xba\x25\x5b\xcf\x9e\x20\x93\x29\xfe\xaa\x01\x7b\xa0\x42\x47\x77\x5b\xc1\x47\xa8\x09\x62\x29\xfd\xd5\x3c\x24\xfb\xf0\x76\x74\xf6\x68\x29\x83\xc7\x75\x21\x65\xcb\x96\x73\x04\x8c\x00\xf2\xf0\x27\x2b\xb4\x6d\x98\x90\xc6\x9a\x9c\x83\xbf\x3e\x64\x82\xf5\xd7\xdb\x34\x39\x7b\x70\x2c\xc5\x44\xee\x47\x33\xe6\x7b\xcf\xbd\xf0\x34\xfc\x16\x3c\x82\x3b\x00\xdc\x13\x2f\xfc\xf8\x38\xee\x10\x70\x9f\x79\xe1\xe5\xe3\xb8\x3b\x80\x7b\xe6\x85\xcf\x1f\xc7\xdd\x55\xe5\x7e\x7d\x1c\x77\xcf\x1e\xa8\xf3\x0e\x36\xfd\xe5\xaf\x6e\x44\xbf\x3d\x4d\x29\x78\xde\x3a\xb7\xf1\x2e\xba\x98\xf6\xe4\x21\xa6\xc5\xf1\x59\xc9\xb2\x58\xe0\xf1\x8f\xa3\x5f\x1e\x29\xe3\x29\x0c\x2b\xf0\xfe\x9f\x64\xd7\x8b\x2e\x76\xfd\xe5\x21\x76\xfd\x28\x4d\x3c\x56\x5f\x12\xa5\x11\x3f\x6f\x2b\xcc\xbf\x8e\x3c\x6d\x20\x3d\x6b\x67\xff\xeb\x11\x9b\xe0\xa3\x2d\x39\xed\x3c\x4d\x30\xfb\xf0\x85\xa8\x38\x51\x86\x8a\xe7\x68\xa8\x70\x91\x26\x02\xa9\x56\x48\x67\x16\x92\xbd\xbf\x87\x14\x63\x56\xf2\xc5\x43\xad\x04\x87\xe6\x7e\x34\x66\xbe\xf7\xc1\x0b\xff\x7c\x60\xb6\x20\xea\x00\x50\x5f\x79\xe1\xab\x47\x51\x87\x80\xfa\xde\x0b\x3f\x3d\x8a\xba\x03\xa8\x67\x5e\xf8\xf2\x51\xd4\xdd\xbf\x68\x84\x51\x46\xbf\x05\xb3\x19\xd0\x19\xca\xd5\xb3\x43\x91\x68\x86\x24\xfa\x1c\x26\x9d\x6d\x24\xb8\x28\x02\x5f\x79\xe1\x6f\x8f\xe3\xa2\x08\x7c\xef\x85\x3f\x3d\x8e\xab\x45\xe0\x3f\x1f\xc7\xdd\xed\x9a\xce\xca\x6a\xe7\x90\xa6\xb1\x75\xb1\xc7\xac\x39\x5b\x7b\xdd\x5a\xa2\x64\xc5\x87\xb8\xad\xbe\xcd\x19\x32\xdb\x6f\x5e\xf8\xef\x0f\x8d\xb5\xc0\x44\x5e\x7b\xed\x85\x3f\x3f\x86\x89\xac\x76\xea\x85\xbf\x3f\x86\xb9\xf3\x37\xd9\x67\xf2\xb7\xd9\x07\xfb\x3c\xc3\x3e\xd7\xec\xc1\xa1\xc3\x5e\xcf\xb0\xd7\xc5\xe3\xb8\xc8\x3d\xa7\x5e\xc8\x1f\xc7\xdd\xf9\x1f\xe4\x88\xdd\xbf\xcb\x11\xb0\xa7\xb8\x85\x5e\xfc\x9b\x17\x66\x2c\x8c\xd9\x03\x23\xf8\xb6\x99\x33\x9e\x25\xe4\xa3\x5f\xbd\x30\x61\x61\xd5\xfa\x08\x8e\x48\xdf\xc6\x73\x96\x22\xf2\x47\x08\x77\xd0\x79\x90\x4f\x3b\xb5\xd9\xff\x9e\xee\x39\x2c\x9f\xb1\x27\xac\x78\xca\xc7\x59\x7e\x1e\xd6\xb6\x49\xfa\x38\x1e\x95\x47\xb5\xe3\xba\xe4\x33\xdb\xb2\xf9\x3e\xe6\x75\x16\xe7\x7e\x7d\xce\x2e\x1e\x33\xd1\x0b\x35\xdc\x25\x2e\xf4\xfc\x35\x9b\xc6\xc9\xad\xa4\xd3\x0a\x1f\x38\xb7\xe1\xd6\x80\x32\xb8\xb1\x57\xff\xb0\x07\xa1\xe6\xf6\x82\xa3\xfa\x87\x68\x70\x64\xc5\xaa\xb3\x09\x02\x07\x62\x47\xd9\xc4\xcf\xdc\xfe\x15\xfa\x49\x9a\x76\x27\xb3\xf3\xe2\x22\x08\xaf\xca\x2c\xed\xa2\x66\x54\x6f\xf6\x83\xa3\x7a\x6b\xab\xd5\x49\xa9\x40\x91\x01\xb6\x99\xfb\xc8\xd2\x5e\xba\x99\xc1\xef\xa2\xae\xcd\x00\xda\x23\xd5\x71\xdb\x6d\xd1\xd8\xd9\x46\x3b\xbb\xde\x60\xe4\xb3\xef\xbd\xd8\xbb\xbf\x67\x3f\x78\xdf\x3c\x08\x2b\xf1\xbd\xf7\x0c\xd3\xbf\xab\x74\x0f\xd3\x87\x9e\xe1\x07\xc7\x41\xc7\x6e\xa8\xf2\xf0\xc7\xa6\x6a\xab\x95\xae\x75\x3d\x8a\x92\x63\x2f\x92\x5a\xc3\xc3\x94\x18\xad\xec\xd7\x83\x1d\x7b\x44\x1b\x42\xb3\x81\x3d\x69\x57\x85\xa0\x73\x7a\x07\x2f\xfb\x15\xeb\x56\x17\xd5\x2b\xd7\x2b\xa6\x63\x61\xcf\xbd\x0c\xdf\x4e\x7c\x55\xd4\x7e\x29\x58\xb3\xcd\x7c\x1c\x5e\xec\x7a\x78\x86\x2d\xa9\x47\x2e\xbd\xed\xb0\x75\xf4\x00\x5d\x56\xb1\xeb\x0a\x4a\xb4\x18\xb6\x83\x70\xfe\x00\x9e\x7a\xec\x20\xd5\x26\xb2\xd7\x6a\xf6\x39\x7e\xa0\xa5\xa3\xa7\x55\xf8\xc8\x46\xe6\x25\xbb\xf9\x7b\x9d\x1a\x86\xfd\xbd\x87\x3a\x25\xe7\xcc\xc4\x99\x33\x2f\x1e\x9f\x33\x7f\xb3\xd3\xb4\x41\xab\x3a\x9d\xe4\x2c\x2e\x9a\x45\xdb\x6f\xc7\xba\x51\xd3\x3b\xb6\x76\x4a\xc6\x21\x80\x9e\xf6\x6f\xae\xb2\x24\x47\x3d\x35\x27\xe5\xc1\xbe\xb3\x09\x12\x73\xbb\x43\x64\xda\x13\x66\xe5\xc9\xb5\x2d\xb9\xdb\xc5\x98\xe3\xec\xff\x5a\xdb\xad\x59\x65\x35\xed\xbf\x4c\x1c\xfb\xfb\x27\x76\xcb\x1a\xd8\x0e\xb1\xf3\x40\x23\xba\xca\xb1\x5d\x3b\x5c\x3e\x59\xe5\x7f\x06\x8e\x19\x5d\xbe\x87\xf2\x8e\xad\x74\x4b\x0b\xd6\x62\xa1\xba\xad\xa5\x65\xc1\xd6\x3d\x67\x44\x36\xd5\xb5\x70\x14\xd9\x7e\x8b\x47\x01\x6c\xbd\x6e\x52\x72\xff\x88\x74\xff\x7b\x8b\x64\xea\x3e\xbf\xc5\x72\x47\x9d\xfa\x4f\x32\x8b\xf9\xb3\x9a\xfa\x4c\x04\x47\x2e\x67\x92\xf4\x19\x7a\x7b\x8e\x6c\x94\x9c\xa2\x58\x4e\x0e\x6d\xdc\x86\xe2\xea\xa3\xf8\x36\xde\xa4\x5d\xa6\x73\xb6\xdb\xfe\x26\xb5\xcb\x7e\x14\x7f\x46\xf1\xbb\x8e\x8f\xdb\x9f\x2c\xec\x2a\xec\x03\xd3\x36\xfa\xb8\xdd\x0b\xeb\x04\xb0\xfd\xc5\xdc\xae\xe0\x11\xec\x37\xad\x1e\x3c\xf2\xc1\xf4\x81\x06\xc1\xe1\x44\xfb\x93\xab\x15\x2d\x6a\x9d\x7d\xb5\x3f\xbd\x7d\xe8\x53\x7a\x3c\xd4\xfe\xf4\xd9\x43\x9f\xaa\x13\x94\xf6\x67\xd7\xed\xfe\x11\xfb\x7f\x1b\xff\x9b\x5d\xcd\x83\xb8\x5f\x6c\xdc\x4e\x1b\x7e\xfb\xab\x77\x1d\x8c\xac\x9d\xc5\x1d\xdc\x33\x87\x81\x57\xe1\xdd\xb4\x19\x57\x5a\xbb\xdb\xb8\x6f\x57\xe1\x0e\xda\xb8\xaf\x3b\xda\x0a\x16\xc9\x36\xea\xe9\x0a\xd4\x8e\x52\x3f\xae\x40\x1d\xb6\x51\x2f\x57\xa0\xee\xb4\x51\x9f\xaf\x40\xdd\x6d\xa3\x7e\x5d\x81\xba\xd7\x46\xfd\xc5\x19\x01\xb0\x91\xb6\xb0\x4e\xda\x34\x5d\x41\xa6\x1f\xbb\x31\x3b\xa8\xf4\xbe\xdd\x48\x69\x74\x6c\xe3\x7e\x58\x89\x0b\x21\x7b\x5d\xf4\x5f\x3b\xd0\xd1\x0c\xd6\xc6\xfd\x73\x15\x6e\x47\x93\x5f\xad\xc2\xed\x18\xd9\x4f\xab\x70\x3b\x86\xf6\xe5\x2a\xdc\x8e\xb1\x7d\xd1\x22\xf0\xca\xae\x7d\x5e\x81\xda\xd1\xb3\xdf\x56\xa0\x76\x74\xec\xa7\x15\xa8\x1d\xfd\xfa\xe7\x0a\xd4\x8e\x6e\xfd\xab\x83\x04\x60\x7a\x6a\xa3\xfe\xfb\x0a\xd4\x8e\x6e\xfd\xbc\x02\xb5\xa3\x5b\xbf\xaf\x40\xed\xe8\x16\x63\xed\x7e\xad\x68\x6b\xbd\x02\xb5\xa3\xad\xc5\x0a\xd4\x8e\xb6\xf2\x15\xa8\x1d\x6d\x2d\x59\xbb\x5f\x72\xb3\xd0\xc2\xcd\x3a\x70\xed\xfd\x45\xeb\x93\x98\xd9\xf2\x83\x6c\xce\xdb\xc8\x95\x8b\xfc\x70\xd9\x89\x83\xae\xb7\x69\x06\xb5\x43\xff\x6c\x8a\xaf\x45\x79\x5d\xac\xe1\x57\xb6\x5f\x9d\xa5\x41\x6f\x6e\x2e\x65\x21\xb8\x21\x6a\x69\xa1\x2b\x6e\x45\x68\x57\xe5\xbe\x83\xbf\xea\x3e\x44\xcb\xb7\xf9\x51\x0d\x56\x6a\xc5\x61\x87\xc6\x3d\xc9\x8a\xac\x9a\xb5\xda\xda\x7d\xeb\xe3\x51\x5d\x1d\x5c\x28\x5c\x4d\x5d\x99\x5b\xd4\xfd\x12\xdb\x23\xbb\x67\x7b\x6c\x3f\xd2\x2e\x09\x7f\x64\xb3\x49\xc8\xa2\xca\xc3\x78\x89\x67\x3c\xce\xf2\xac\x98\x9e\x88\x55\xc9\xf6\x01\x91\x77\x89\xec\xda\xda\x5f\xad\x32\x1f\x3e\xba\xd9\x72\x76\x05\xbf\x68\x2b\x96\x5a\x12\x5d\x80\x5a\xf9\xe8\x61\x63\x5b\xe1\x71\xbf\xba\x71\x01\x6f\xed\x62\x3a\x35\xa2\x75\x31\xf1\xd4\x87\x1d\x16\x83\x75\x31\xd7\x1e\xce\x4f\x1e\xc9\x6f\xb4\xd7\xb9\x04\x8c\x5d\xc0\xd4\x05\xbc\x71\x01\x73\x17\x70\xeb\x02\xae\x5c\xc0\x33\x17\x90\x76\xde\xbe\x1b\xfd\x0d\xa3\x8c\xcd\x65\x1d\x9e\xd7\xae\x5d\xb0\x8b\x05\x83\x07\xab\x5e\x65\xe4\xfa\x6f\xae\xfa\x01\xfb\xed\x7f\x7f\xa5\x6d\x21\x67\xdf\xd7\x9b\xd3\x90\xb9\x77\x92\x99\x46\x16\x6b\x85\xb6\x03\x56\xa7\x57\x16\x09\x36\xe4\x56\xe9\x46\x56\xe9\x7a\xc6\x8b\xcc\x69\x69\xf8\x20\xbd\x77\xa5\x84\x71\x1c\x7a\xa4\xa8\x27\xfb\x07\xb4\x04\x91\x76\x29\xeb\xbe\xc3\x79\xce\x2e\x9e\xee\x79\xdb\x55\xb6\x34\x02\x77\x94\x6e\x1b\xd0\xe9\xdc\x31\x9e\x6d\xee\x02\xaa\x42\xc8\xac\x8e\x70\x36\xdc\x0f\xc2\x32\xfa\xee\x8f\x6a\xf3\xbb\x29\x5c\xa1\xdb\x53\x37\xe8\x86\x7d\x3b\x76\xb6\x0c\xd2\x8d\x61\x45\x49\xb0\x47\x76\xec\x17\x51\x1d\xd6\x11\x0b\x31\xb2\x77\x30\xea\x8a\x09\x59\xc3\xa5\x70\x81\x97\x68\x79\xaf\xde\x76\x70\x62\x1e\x45\xf5\xfd\xbd\xf2\xc3\x60\x18\x1c\xf5\xf9\x8f\xea\xae\x55\x5a\xce\xcd\x3d\x4e\xb8\x48\xa8\xef\x12\xd5\xf1\xf4\xa3\x7d\xcf\x13\x6f\x72\x46\x34\x71\x7f\x0f\xd1\xc7\xf1\xf5\xaf\xbb\xa2\xe4\xf3\x38\xcf\xbe\xb1\x5f\x66\x59\xcd\xaa\x45\x9c\xb0\xd1\x7a\x3f\xbc\xce\xea\xd9\x47\x19\x30\x28\x4b\x58\xa5\x60\xa7\x10\xbb\x47\x42\x96\x47\x95\x7d\x5f\x5c\x5f\x1b\xed\x18\x3d\xd9\x12\xb6\x0c\xed\x8f\x5a\xd3\xae\xa2\x81\xaa\x2d\x32\xd9\x44\x72\xe9\x13\xb8\x25\x77\x86\x42\x10\x04\xd3\x47\x32\x48\xbd\x9e\x4d\x2b\x72\x69\x16\xe5\x86\x79\x01\x43\x8c\xad\x53\x8d\x83\x13\x55\x8f\x5c\x76\xce\x26\x7e\x27\x73\x58\x1d\x0d\xec\xa4\x7a\x11\x23\x2d\xe7\x32\x12\x49\x36\xf1\x55\xe4\xf2\x16\x41\xdb\x21\x65\x5a\x21\x36\x3e\x9a\x68\x17\x47\x16\x4d\xb7\xed\x31\xde\xd8\x80\x97\x97\xdc\xd0\x50\x48\x28\x0d\x0d\xdc\x91\x50\x0b\x9b\x06\xc0\xb5\x5c\x8b\x6a\x18\xf8\xf7\xa4\x9c\xcb\xd8\xbf\x2e\x8d\xd6\xdb\xcd\x3a\x29\xe7\xaf\xaf\xf2\xbe\xf3\x36\xe0\x91\xf5\x1a\x60\x1d\x79\x75\x3c\x85\xd3\x8d\x6d\x51\xd1\xb1\x1d\x7d\x3c\x0e\x46\x36\x20\x0b\x42\x16\xb8\x31\x2b\xfc\x02\x0e\x2d\x5a\x81\x93\x6b\xa7\x0f\x71\x9a\xae\xe8\x00\x0d\x78\xa0\xc8\x7d\xee\x50\x5f\x47\x2d\x09\x8b\xa8\x3e\x36\x11\xa9\x47\x6a\xa8\x43\x1e\x15\xe7\x85\xc1\x3b\x62\x10\x53\x94\xf2\x27\x25\x0f\x9d\xad\x30\x68\xad\xf8\x60\x72\xd8\x0c\xdc\x0d\x3b\xe0\x0e\xfe\x13\x46\x9e\x1f\x43\x98\x6e\x76\x15\x71\xf9\x94\x5d\xc4\x82\x91\x04\x41\x4b\x0b\x13\xc0\x6a\x7b\x01\xaf\x55\x0b\xe9\x86\x0f\x20\x54\x5d\x91\xa2\x3a\x4f\x22\xef\x04\xce\xc8\xc3\x30\x8f\x78\x7a\xc5\xb7\x71\xcb\x3d\xf2\xe0\x41\x78\x0d\x84\xd7\xe6\xf9\xf6\x59\x3c\x0d\xf1\x15\xe7\x50\x5e\x87\x1f\xd5\xa1\x26\x32\xc4\xef\x94\x9d\x72\x79\xd1\x2f\xd4\xac\xb0\x46\xd8\x2f\x83\xd0\x9d\x41\xa2\x67\x65\x4b\xf0\xb4\xc2\xa1\xc9\xf0\xfc\x4e\xf0\xba\x0e\xd1\xeb\x46\x7c\xc8\xa6\x45\xc9\x49\xfe\x91\x99\x1a\x0e\x23\xc9\x39\x97\x96\x73\x0d\x50\x81\x8f\xd2\x72\x7e\xee\x64\x6e\xf5\x2f\x02\x98\x20\x62\xcb\xbd\x7d\xc6\x6e\xea\xa0\x38\xae\xb7\xc1\xed\xd1\xc7\xff\x37\x59\xb0\xcd\x19\xbc\x4b\xec\x97\xa1\xb7\xe6\x05\x23\x99\x11\x31\x2d\x84\x56\x34\xc5\x7f\x32\xf3\x07\x88\xac\xb9\xff\xdc\xfc\xb4\x90\xea\xff\x6a\x6b\xe1\x59\x25\x16\x31\x07\x4b\x3d\xfa\xb2\x82\x13\xee\x44\x11\x23\x16\x02\xf7\x61\xd5\xcb\x6e\xe6\xc8\x84\x8e\x51\x3d\x1a\x95\xe4\x2f\x49\x06\x31\xda\xb5\xd5\x77\x69\xef\x0d\x9c\xbe\xc9\x39\x62\x37\x56\xe2\xfe\x77\xf2\x79\xab\x87\x3a\xb8\x48\x7b\xb1\x31\x01\xf4\xcf\xb1\x61\x9e\x67\x91\xf1\x42\xb7\xf3\xe4\xd9\xd9\xb3\xa5\x76\x73\x69\xb5\x92\x75\xb7\xb2\xee\x6e\x65\xdd\x9a\x8d\x26\x40\x4b\xd4\xd1\xfa\x4e\x25\xc1\x5e\x22\xdd\x02\x1f\x0b\x8b\xe3\xfa\x4f\xb4\xb9\x4a\xca\x25\x20\x4b\xad\xe8\x70\x92\x71\xa1\x1d\x5f\xb1\x15\x1c\x56\x04\x4b\x12\x22\xa2\xea\x0c\x20\x4f\x83\xc7\x4f\x59\xbd\x06\xcf\x35\xc0\xbb\x0b\xb6\x12\xa0\xc6\xe6\x88\xbc\x06\x73\xde\xbb\x50\x72\x59\x7c\x9a\xc7\x4f\xff\x92\x19\x9e\xa5\x45\x14\x65\xca\xce\x6e\x17\xcc\x6c\x41\x4a\xe4\x75\xd1\xe3\x8b\xfb\xfb\x72\x5b\x6a\x08\xcb\x65\xc8\xa3\xbb\x1a\x4f\xea\x46\x1e\x5c\xc5\x45\x59\xfd\xb6\x4c\x59\x35\x32\x0f\x59\x85\xb8\x84\x08\xf0\xc8\xc3\xdf\x5e\x28\x16\x9b\xac\x6c\xaa\x8f\xd9\x58\xec\xef\x46\x9e\x00\x78\xa1\x58\x8d\x34\x48\x24\xbc\x50\xb4\x08\x8e\x9d\x46\x1e\xdc\x83\x11\x93\xe3\x4e\x36\x62\xd4\x87\xe0\xbd\xa3\x61\x08\x8c\x31\xda\x09\x25\xe7\x8c\x0e\x96\x47\xf4\x15\x06\xbe\xe2\x55\x6c\x9c\xdb\xfc\x9c\x5d\x1c\x75\xbf\xf9\x5b\x84\x2c\x14\xc3\xd2\xf1\xa8\xbc\x20\xcb\x79\xad\xa9\x57\x51\x24\xe6\x62\x89\x8d\xc6\x72\x89\x4f\xe7\x75\x6f\x6b\x34\x1b\x1c\x9d\x8b\x8d\xcc\x30\x08\x0b\xbf\xbf\xd3\xc7\xff\x06\xf8\x9f\x04\xee\xe0\x7f\xbb\xc1\x45\x77\xaf\x9c\x87\x69\xda\x38\x75\x70\xc7\xa1\x51\xe7\xf5\x05\x3e\x20\xc3\xd5\xe3\x80\x4f\x79\xa0\x5e\xf4\x49\x29\x8c\x5f\xb2\xb9\x68\xb5\x7c\xfc\xbe\xf3\x9d\x9c\x87\xdf\x2d\x5a\x41\xf8\x3a\xf4\xcc\x27\x5e\x78\x87\x4f\xfb\xaf\xf7\x96\x28\xfe\xcb\x88\xfb\x85\xbf\xdf\x87\xc7\x93\xc4\xcf\xfe\x70\x1f\x1e\x58\x06\xf0\x20\x08\xc2\x4a\x82\x0f\x02\xb2\x25\x4c\xcc\xa0\x3b\x44\xc2\xb7\xcd\xef\xbd\x20\x2c\xa2\x46\xa8\x3e\x18\x8e\xf6\x03\x9b\x9e\xde\x2c\x7c\x6f\xc3\x3f\x1e\x79\x9b\x7e\xbd\x19\x79\xf7\xff\x76\x7e\xf3\xeb\xc5\xf9\x1f\x7f\xa4\xf1\xd6\xe4\xd9\xd6\x8b\x8b\xcd\xfb\x7f\xfb\xe3\x8f\x74\xd3\x0b\x36\xbd\xe0\xc8\x0b\xbd\xa9\xd7\x8e\x95\x61\xa8\x21\x1f\xad\x27\x8b\x1f\x0f\x8b\x60\xb9\xac\x65\x78\x88\x5f\xdf\xbc\x8e\x12\x3f\x56\x8f\x4e\x04\xa1\xca\x78\x79\xf6\xe6\xb5\x74\xbd\x4c\xcc\x63\x1b\x81\x7c\xf3\xd9\x96\x2c\x8a\xf2\xdf\xd7\xc7\xfd\xd1\x56\x7f\x69\x05\x58\xd6\xd9\x16\x3f\x60\xd0\x93\x7f\x83\x0d\x8e\x72\x4c\xe8\x07\xc7\xde\xaf\x16\x64\x10\xdc\xdf\x7b\x37\x0e\xe8\xb8\x52\xad\xf1\xb5\x9f\x58\xad\xac\x99\xc3\x20\xec\xef\x05\xc1\xe8\x21\x9c\x41\x10\xf6\x7b\x41\x30\x62\xe7\xf5\x76\x95\x67\x09\xf3\xfb\xe1\x56\x3f\xb8\x30\x54\x11\x9d\x77\x5d\x30\x50\xc4\xd1\x71\xd4\x0f\xc8\x06\xdb\x55\xc9\x6b\x3f\x0f\x42\x7b\xa0\xcb\x36\x42\x11\xf5\x42\x0e\x0f\xfe\xd7\x34\x32\x3f\xbc\x55\x15\x45\x62\x4b\x71\x0c\x1b\x8b\xcd\xc8\x3b\x3a\xf6\x42\xbe\xb9\x89\x4f\x80\x8b\xb4\x27\x9f\x67\x6e\x73\x4a\x6d\x18\x6a\xb3\x83\x63\x8e\x8e\x91\x67\x8e\x8e\x03\x64\x98\xb0\x8a\x1a\x3a\xa8\x36\xc7\xca\xc1\x39\x02\xff\x43\x45\xb4\xad\x3e\x38\x6e\x41\x3b\x82\x50\x30\xf1\xf2\xaf\x70\x5d\x1c\x26\xc1\x72\xe9\x5b\x33\x9e\xc6\x2c\xfa\xf9\xe3\xbb\xb7\x18\x1d\xc9\xff\xc7\x9d\xf7\x2c\x4e\x9a\x9a\x79\x23\xef\x8f\x9b\xa4\xef\x85\x5e\x6c\xd2\x4c\xa4\x9f\x8d\x39\xbb\x82\x74\xd3\xeb\xf7\x06\x02\xc3\x82\x0c\x05\x24\x81\xd4\x60\x30\x64\x90\x4a\x55\x72\x02\xc9\x53\x9d\xfb\x47\xd3\x1b\x0e\xc5\x17\xcf\x92\x8c\x27\x58\x29\x14\xa9\x93\x0c\x93\xaa\x09\xe3\x1d\x40\xbe\xc5\xda\x76\xfa\x3d\xc8\x55\xc9\xa1\x48\x3e\x3b\xcd\xb3\x29\x16\xb5\x27\x72\x99\x4a\x32\x48\x4e\xb0\xf2\xde\x1e\x74\x66\xc2\x21\x99\x1e\x0c\x77\xff\x68\xd2\xb4\xb7\x03\x28\x36\xb0\x2f\x3a\xf1\x6c\xca\xe3\x2b\x49\x16\xa8\xd4\xa4\x19\xa4\x73\x36\xa9\x6e\xe7\x58\x78\x7f\xb8\x8b\xa0\xc5\x8c\x02\x9e\xe5\x8b\x59\x8c\x4d\x1d\x1e\x02\x6d\x09\x60\x0c\xed\x99\xc7\x09\x57\x94\x84\x62\x29\xa0\x8f\x80\x7c\x8a\x85\xc6\x48\xce\xf9\xc2\x1b\x79\x1b\xe2\xe3\x37\xef\xe5\xaf\xb8\x48\xe3\x42\x12\x3d\xde\x85\xaa\x4d\x72\x88\x08\x72\x0c\x06\xfb\x98\xd4\xd9\x09\xa6\xab\xbc\x5c\x30\x05\x3b\x40\xd8\x95\x4a\xc7\x90\x9e\xaa\x22\x7a\x98\x94\xe8\x87\xf1\x0e\xa6\x73\xe6\x20\xcc\xab\x34\x8e\x15\xd2\x81\x81\x8d\x15\xec\xd0\xc0\x12\x05\x8b\x0d\x2c\x55\xb0\xb1\x81\xe9\x4a\x13\x03\x9b\x28\x58\x6a\x60\x53\x05\x63\x06\x36\x53\xb0\x89\x86\xa9\x16\xf7\x11\xc2\x6b\x09\xe8\x4f\x14\xe0\x4a\xb6\x76\x30\x66\x06\xa4\x5a\x76\x28\x6b\xac\xd4\xc0\x0f\x06\x03\x09\xa9\x91\x77\x76\x31\xf9\x2d\xe6\x38\xac\x83\xe1\xbe\x68\xf9\xb3\x72\x5a\x16\x6a\x9c\x81\x7e\x14\x00\x23\x58\x2e\x26\x16\x5b\x0e\x81\x82\x2e\x74\x17\xea\x5b\x88\x09\x24\x47\x6b\x0f\x9a\xbe\x90\xed\xd9\x81\xaf\x16\x72\x0a\xc6\xfb\x30\x34\x6a\xa4\x07\x3b\x40\xed\x45\xa6\xe8\xb0\x03\x94\x5e\x94\x95\x48\xff\x43\xb4\x62\xb1\xc8\x6f\x5f\x28\x13\x19\x99\x49\xf1\x62\xc1\xcb\x1b\xbb\x12\x01\x61\x97\xb4\xe8\x67\x42\x36\x11\x42\xe8\x24\x83\x2e\x56\x89\x35\xf3\x92\x43\x18\x54\x17\x3a\xde\x03\xdc\x2a\x9b\xca\x16\x0c\x76\x81\x62\x40\xe2\xff\x80\x5f\xb7\x73\xbb\xbf\x02\x60\x5a\x22\x06\xe9\x59\x9d\xe5\xa9\x9c\xcf\x30\x23\x4c\x9a\x81\x40\x6a\xe6\x39\xe6\x42\xd9\x2a\xc5\x20\x75\x9d\x94\x45\x56\x28\xde\x00\x01\x16\x5f\x6b\x40\xdc\x17\x04\x19\xc7\xc9\xd7\xa4\xd4\x93\x64\x27\x91\x30\xb6\xa8\xb2\x5c\x0d\xed\x70\xb2\x27\xc1\x0b\x9e\xcd\xe5\x28\xf4\x40\x58\x08\x60\x95\xcd\x55\x1d\xa9\x01\xe9\x8e\x24\x02\xf8\xa3\x00\xe6\x71\xa5\x18\xae\xbf\x07\x40\xae\x26\x2b\xdb\x87\x2f\xf9\x15\x53\x83\x3c\xc6\xb2\xf8\x35\x93\xc3\x3c\x04\x06\xfb\xd1\x82\xec\x69\x1c\x35\xaf\x11\x6b\x3c\xe6\x5f\x65\x7a\xac\xd2\x35\x81\xc1\x77\x6e\xbf\x7f\x34\x02\x1b\x48\x63\x04\x36\x24\xd3\xcb\xa6\x94\x5d\x07\x59\x3b\x66\x49\xdc\x54\xaa\xe7\xbb\x1a\xc2\x28\xe8\xc7\x36\x68\xcc\xe6\x8b\xfa\x56\x76\xfc\x70\xdc\x03\xd0\xa2\xca\x2c\x5a\x33\x5e\x94\x8d\x94\xca\x03\x68\x1c\x40\xf2\x3c\xab\x6c\x68\xad\x45\xf5\x00\xbe\xd3\xe9\xb1\x4c\x6b\xd9\x8e\xe5\xd6\xd7\x8c\x29\x86\xdc\x83\x22\xdc\xc5\x05\xda\xe8\x2e\x2e\x62\x76\x8e\xb3\x69\xa2\x67\x28\x2c\x80\x02\x22\x97\xc0\x66\xb0\xcb\x14\x52\xa3\x91\x86\x08\x29\xd3\x52\x71\x1d\xac\x17\x02\xb4\xc8\x15\xf1\x62\x58\x32\x04\xac\xce\xe6\x4c\x03\x65\x05\xd5\xa5\x2e\x2f\xc6\xf1\xce\xa6\x55\x1d\x4b\xb9\xb1\x87\xcd\xcd\xa6\x35\xcf\x40\x98\xa7\xe5\xb5\xec\xde\x2e\x72\x90\xc9\x52\xc5\xec\x8e\x65\xb3\x1a\xda\x86\x1d\x84\x19\x06\x4c\x64\xab\x08\x73\x0d\x60\x51\x1d\x7f\x8d\x79\x79\x2d\xc7\xaf\x07\x95\xe4\x71\xf2\x35\x2f\xbf\x31\xb3\xbc\xb0\xb1\x82\x57\x97\x4d\xcc\x25\x78\x17\x16\x0a\x00\xab\x56\xa9\x36\xed\xb8\x19\xb4\x27\xcc\xcd\xcc\xd9\x44\x52\x74\x17\x47\x82\x66\xf2\x6c\x3a\x53\xb9\xe3\x03\xcc\x2d\x24\xef\xef\x0c\xa0\xf3\xf9\xd7\xfe\x40\x62\x20\xe3\xe4\x5f\xfb\x3b\x0a\xd0\x47\xc0\x50\x03\xf0\x93\x32\x91\x65\xec\x1e\x40\xa1\x85\x68\x7b\x24\xe6\x03\xc8\xc5\x71\xc1\x2e\x9b\xec\x4a\xf1\x56\xdf\x64\xbc\xd5\xa3\xcf\x80\x5a\x85\x4a\x0f\x41\x33\xfa\xb1\xb5\x66\x88\x15\x76\xdc\x5a\x33\xa0\x15\xea\xd3\x41\xbc\x8b\xc9\xba\x9c\xdb\x90\xeb\x3a\xd3\xc3\x05\xed\x2c\x6f\xc6\x4a\xe6\x1f\x26\x58\xf4\x4d\x9a\xcb\xae\x40\x0b\x04\xe0\xb5\x04\xec\x62\x29\x37\x27\x0a\x63\x77\x4f\x02\x34\xc6\xbe\xfc\x44\xf2\xe0\x6e\x2f\x91\x80\x0f\x0a\x63\x20\x3f\x51\x18\xb2\xed\x37\x27\x1a\x63\x07\x01\x33\x55\x84\x6c\xc6\x4b\x95\x2f\xd3\x33\x29\xea\x76\x07\xb2\x8e\x97\x0a\xb0\xa7\x4a\x38\x51\x00\xd9\xf0\x97\x1a\x20\x1b\x3e\x93\x82\x64\x77\x28\x3f\x79\xa9\x00\x7b\xb2\x27\xb3\x4f\x0a\x20\x09\xf6\x52\x03\x24\xbd\xe6\x59\xa1\x65\xdd\xe1\x04\x61\x66\xf6\x0c\x0e\x19\x82\xc8\x04\x1e\xc4\xb2\x0b\x8d\x26\xb5\x2c\xbc\xd1\x84\x1c\x23\xe0\x93\x26\xb5\xec\xe4\x27\x8d\x91\xca\x4f\x14\x21\xfb\xb2\x0b\x8d\x26\xa4\x2c\xf4\x93\x26\xb5\x6c\xf1\x27\x8d\x11\x23\xe0\x4a\x91\x5a\x0e\xce\x67\x95\xdf\x97\xf9\x6a\x2c\x86\xb2\x15\x57\x6a\x30\xf6\x64\x09\x9f\x15\xc6\x9e\x6c\xf8\x67\x8d\xa1\x3e\x51\x3d\x19\xc8\x76\x5e\xa9\x9e\xec\xc9\x5a\x3e\x2b\x8c\x3d\xd5\x0c\x8d\x21\x79\xe4\x4a\xf7\x55\x15\xaa\x7b\x22\xa9\xfc\x59\xf7\x55\x8e\xc4\x67\x85\xb1\x07\x34\x6f\xaf\xd2\x66\xeb\x33\x48\x05\xc1\x7e\x74\x01\x63\x7e\x35\x46\x99\x7a\x13\x03\xdb\xb4\xd4\x19\xc1\x2a\x3f\x2a\xa8\x5c\x7e\xc6\x15\x9b\x67\xb2\xa2\x1d\x68\x8b\xab\x0b\x54\xba\x25\xa8\x07\x8c\xab\x32\x57\x8a\x34\x28\x57\x02\x20\xd2\x7f\xfc\xf1\x87\x4c\xcd\xaa\x46\x62\xec\xe3\xfc\x6d\x72\x49\xb3\x1e\xa8\xa9\x22\xcd\x6a\x1b\x62\x14\x29\x26\xd3\x4a\x75\x8c\x15\x40\x2b\x8f\xa2\x9d\x3f\x36\x54\xd3\xd2\x28\x97\x14\xe7\xb9\xde\xcf\x09\xe5\x56\x10\x25\xb1\x20\xfb\x00\x59\x98\x2d\xcc\xce\x0e\x42\xc6\xdc\xac\x58\x3b\x87\x08\xd3\x0b\x67\x0c\xca\xaa\x59\x47\x07\x87\x50\x95\x4a\xa6\x03\x89\x6f\x4a\x90\xf5\x98\x25\x74\xa7\x87\x9f\x64\x75\x9c\x9f\x64\x13\x78\x71\xba\xce\xe2\x5c\xce\xfb\xfe\xce\x2e\x7e\x51\xe9\x2a\xfe\x68\x26\x0c\x24\x4c\x12\x73\x4d\xba\x9d\x3e\x02\x94\x96\x37\x48\xf6\xa1\xdc\xdb\x9c\xdd\x6a\x25\x43\x8c\x59\x62\xca\x8a\x41\x2b\x7d\x4e\xbe\xea\x83\xf0\x4b\x2c\x08\xe2\xb0\x34\x93\xba\x29\xf4\xc0\xa4\x41\xd7\x7b\xae\x15\x87\x5e\xbf\x77\x00\x08\x04\x00\x44\xb1\xd5\x57\x68\x7e\xd2\x98\x96\x24\x0a\x50\x49\x96\x8b\x41\x68\x3e\x57\x84\xea\xf5\x7b\x62\xde\x26\x24\x0d\xa4\xd7\xed\x80\xa5\xf1\xb9\x48\xe6\xb1\x01\x24\xb6\x7a\x06\xe3\xc1\xb0\x19\x37\xb1\x4a\x31\x2e\x4b\xbd\x81\x79\xf1\x1c\x40\x27\x14\x94\x38\x1a\x14\xec\x2e\x9f\x4f\x38\x25\xec\xf3\x97\x5a\xc5\x84\x0d\x6e\x32\xd3\x69\x1c\xf5\x19\x53\x4b\xee\x7e\x7f\xa8\x00\xf3\x98\x5b\xc0\xe7\x33\xa5\x3a\xc6\xf8\x91\x4a\x22\xdd\x35\x55\x07\x60\x68\x10\x69\xcd\xe7\xbb\x0a\x23\x67\x31\xe7\xe5\xb5\xd1\x2a\xfa\xe3\xd8\xce\x22\x3a\x45\x7f\x3c\xd6\x79\x29\xee\x67\x60\x0d\x20\x50\xa3\x15\x0e\x0e\x4d\x41\x69\x6a\x36\x00\xb0\x07\x7d\x0e\xe0\x13\xbd\xa6\x1f\x1e\x1a\xdc\x0f\x48\x71\x66\x20\x1f\xa5\x06\x03\x52\x01\x3f\x7d\x43\x97\xa5\x3d\x0d\x7e\x4f\x56\xa6\x5d\x0d\x3d\x23\x8b\xd3\xa1\xec\xb9\x94\x9b\x89\x6c\xfb\xa9\x12\x4d\x43\x4c\x33\x87\x50\x93\x82\xec\x9f\x7a\x08\x9b\xab\x7d\x68\x0c\x0a\x70\x92\xf1\x4a\x17\x7c\x08\xca\xd9\x73\xa1\x3a\x5d\x67\x15\x7b\x5e\x16\x75\xd9\xf0\x57\x45\xcd\xa6\x3c\xce\x15\x6b\x4b\x1c\x78\xdc\x24\xbf\x25\x97\x68\xe4\x4c\xed\xa7\x16\x82\x95\x05\x14\xcb\x9b\xb1\xec\xd8\x1e\xac\x22\x00\x68\xb2\xda\x82\x95\xb8\x9f\x1b\x89\xb2\x4a\xb5\xb7\x1b\x0c\x86\xfb\x0a\xa0\x0c\x29\xfb\x3b\x0a\x5d\x77\xdf\x40\x2e\x6d\xd0\x7c\x1e\x43\x89\xf2\xb7\xa8\xf1\xff\x87\x09\x25\xd1\x40\xb9\x17\xe9\x89\xaa\x11\xf4\x80\x04\x82\xbf\xcf\x99\x9e\xe0\x1a\x2f\x67\x37\x6a\x98\xd0\x72\x47\xf7\x69\xbb\x32\x6d\xa4\xe1\x1e\x10\xa7\x2c\xa6\xbc\x31\x85\xed\x61\x61\x44\x7e\x0c\x18\xa2\x11\xc8\x04\x21\x1d\x23\x02\xc8\x49\x4b\x01\xdd\x81\x0f\x24\x54\x37\x6e\xc1\x4b\x65\x88\x00\x96\x78\x0e\x90\x26\xa9\x29\x30\x29\x17\xb7\xc8\xd0\x20\xda\xde\xbd\xff\xcd\xa4\x44\x5e\xa5\x04\x43\x1f\x87\xa3\x29\xf0\xfe\xd9\x83\x7c\x03\xc3\xca\xb5\x8d\xa6\x0f\x5b\xdd\x84\x97\x55\xa5\xe4\x03\x14\x66\x00\x31\xf6\xb9\x65\xc0\x80\xee\xb6\x56\x7c\x18\x26\xbd\x18\xc7\xc9\x44\xa6\x15\x9f\xa4\x7d\x04\xa8\x95\x2a\xed\xc9\xb4\x46\x00\x02\xd5\x7a\xac\x06\x38\x41\x9a\x34\xe6\x5c\x76\xe2\x10\xec\x43\x08\x52\x73\x06\x54\x96\xa4\x61\x0b\xae\x16\x45\x86\x80\x4a\xc9\x94\x14\xcb\xc9\x49\xd7\xf7\x34\x64\xa1\x8a\x81\xb5\xab\x11\xcb\xb1\x59\x7c\xb1\x36\xba\x1c\x83\xd4\x68\x16\x66\x09\xde\x91\xdf\x29\x5e\x88\x11\x41\x55\x3d\x94\x25\x98\x05\x3a\x46\x88\xe9\xe6\x81\x2c\xa1\x54\xc6\x2d\x64\xdb\xc6\xac\xc8\xb1\x59\x91\x1b\x3a\x80\xfb\x1a\x32\x57\xbd\x48\x10\x94\xdf\xb2\xcb\x05\x67\x89\x4d\x12\x00\x57\x4d\xe2\x10\x86\xe7\xb7\x64\x1f\xab\x51\xad\x9d\xac\xc4\xe4\x68\x0d\xb8\x01\x73\x68\xd2\xf0\xab\xf6\x4a\xb0\x67\xe5\x58\x0b\x01\xb6\xb7\x55\x97\xb6\xd0\xc8\x6a\x1c\x4b\x14\xb0\xc5\x35\x01\x00\x23\xdd\xe6\x49\x8d\xcb\xdf\x60\x08\xcb\x63\x1a\x4f\xa7\x4c\x92\xa6\x07\xeb\xe7\x89\x05\xe9\x03\x4e\x4e\x4c\x1c\x07\x00\xd1\xe4\x84\x7d\xeb\x89\x49\xc7\xf0\xc5\x33\x9d\x86\xb1\x34\x6b\x52\xaf\x8f\x75\x54\x33\x6d\x95\xda\x91\x08\x6a\x57\x1b\xc3\x17\xb6\x01\x60\x02\xa0\x3c\x56\xcb\x6c\x2a\xda\x7e\x62\x29\x44\x82\x2a\xa9\x05\x99\x00\x8e\xb6\x37\x41\x3d\xc6\xde\x04\xc9\xb4\xdd\x59\xd2\xb7\x44\x70\xdd\x89\xa5\xf2\x29\xeb\x78\x1f\x78\xfa\xe4\xa4\xac\x79\xac\xf6\x8f\x87\x7d\x2c\xa0\xac\x2b\x25\xc2\xe3\x7d\x31\x7a\x29\x43\xd3\x26\xd8\xa1\x4e\x98\x92\x2d\xa0\xdd\x9e\xb0\xdc\x98\x97\xa0\x4d\x04\x30\x46\x80\xa5\x2c\x41\x1d\x93\xac\x52\x0c\x72\xb8\x0f\xfd\x74\x2d\x4c\x50\xaf\xab\x1f\xc1\xb7\x2f\x95\x5d\xe7\x10\x76\xb3\xe9\x2c\x56\x82\xa2\x0f\x4b\xb2\x00\x68\x0a\x08\x36\x3a\xc9\xe2\x84\x67\x75\x96\xc4\xf9\x33\xfb\xf8\x85\xe4\x28\x05\xa3\x37\x48\x0f\xdd\x1c\xb1\xd6\x3e\x33\x6a\xbd\x1c\x3d\x83\xf1\x93\x3c\x40\xf9\x4f\x1b\x7c\xa6\xec\xb0\xe2\x13\x31\x45\xd3\x2c\x56\x3b\x1f\xb0\xc5\x8a\x74\xa9\xcf\x2f\x12\xd9\x22\x17\x24\xb1\xe8\x5a\xbd\x27\xc1\x95\x0d\xc0\x9e\xc1\x79\x44\xa7\xce\x8f\x58\xd3\x18\x17\x64\x31\x40\xd0\x93\x34\xab\x32\xb5\xee\x4e\x06\x00\x80\xd1\xba\x99\xec\x63\x22\x93\xe6\x64\x92\x2e\x0b\xba\x8d\x4f\x64\x46\x59\xdc\x50\xc8\xc9\xcf\x9a\x5d\x61\x1d\x4c\xff\xd4\x69\xb0\x7e\xa4\x79\x52\x72\x59\xf3\x10\xec\xa5\x69\x9e\xf0\x52\x0a\xcd\x21\xec\x11\xd2\x32\xcf\x61\xc0\xff\x5d\x14\xd8\xb2\x02\x8d\x01\xc5\x5d\x84\x77\x01\xb7\x36\xe4\x48\x9d\xd1\x2d\x6b\xad\x50\xf6\x70\x68\xca\xda\xa8\x2d\x3d\x05\x30\xe2\x1a\x0c\x00\x27\x65\x7d\x7a\xd9\xe8\xb5\x55\xe1\x51\xbb\xc7\x50\xd6\x46\xec\x1e\x38\x71\xcb\x9a\xda\xf8\x06\x28\x66\x80\xb3\x5c\xdb\x34\x4c\x4c\xc8\x59\xa1\x78\x4c\x34\x82\xd5\x47\x05\xba\x2e\x9e\x71\x2d\x7a\x50\x7e\x61\xd6\x6b\x36\xa9\xad\xac\x9e\x95\xf5\x41\x08\x6d\x2b\x7f\xc7\xca\x3f\x53\x12\x1c\x45\x9e\xcc\x28\x8b\xa9\x53\xee\xfe\xe4\xa0\x95\xed\x96\xbd\x3f\x89\x2d\x9c\x76\xfe\xa1\xce\x6f\xb7\x6b\x60\xe7\xe9\x86\x0d\x08\x1d\x3e\x2d\xac\x4f\xfa\x24\xa3\x45\xa2\x5d\x9d\xf9\x99\x71\x98\xba\x3f\x2a\x19\x33\x18\x60\xa6\xfc\x42\xc3\x0f\x61\x5b\x95\x96\xd7\x45\x4c\x4a\xc2\xc5\xc4\x29\x5e\x03\xe3\xf6\xb0\x48\x4c\xbb\xb1\x13\x55\x25\xb1\xc0\x0c\x51\x36\x97\xd7\x85\xae\xb3\xa2\x52\x5e\x40\x67\x31\x5f\x94\x65\x41\x96\xe5\x64\x68\x67\xd1\x75\x19\x45\x63\x79\x5d\xe8\xf1\xf9\xcc\x92\x5a\xa9\x23\x87\xbb\x3d\x92\x7d\xc6\x98\x9d\xc9\x48\x26\xe6\x18\xca\xec\xee\xb5\x32\x95\x2a\x90\xca\x1c\x35\x6c\x76\xa1\x13\x9a\xdb\x2a\x75\xbf\x9d\xab\x7a\xd2\x97\x59\x67\x8c\x51\x3a\xc6\xfb\x06\xae\x18\x04\xe6\x22\xb7\x16\x67\x58\xd1\x53\x4e\x45\xd1\x04\x21\x44\x14\x09\x19\x71\xd2\xd2\x89\x01\xaf\xa5\x13\x03\xeb\x7e\x34\xa2\x6f\x17\xb1\xb4\xe8\xc3\x74\xa9\xb4\x5b\x38\xcc\x39\xa9\x6a\x5e\x7e\x95\x2b\x3f\xb6\xc8\x82\xc0\xe8\x13\x2d\x79\x82\x00\x2e\x2d\x6b\xbb\xe3\x89\x4c\x4f\x14\x00\xc4\x69\x63\x96\x42\xe0\xaa\xb4\x99\x99\xd5\x13\x3e\xb9\x26\x07\x0c\x87\x60\xd6\x3b\xf9\xdd\x34\x1d\x50\xbe\x99\xa6\x63\x3a\x9b\x1a\x7d\x74\x7f\x22\x60\xa7\xc4\xd5\x42\x74\x9f\x11\x57\x0b\x4c\x57\x35\xd3\xc7\xb8\xa2\x69\xa7\x54\xd5\xe9\x0b\x16\x66\x16\x64\x0c\x38\xda\x95\x02\x11\xb4\x2b\x85\x4a\x2a\x49\xbc\x07\x69\xb2\x63\x05\x22\x9f\x1a\xd3\x49\x0a\x08\xda\x72\x02\xc9\x13\xbd\x06\xa0\x9a\x73\x6a\xac\x40\x70\xf4\xc8\x48\x7a\x1f\x3e\xb0\x97\x03\xc5\x55\x7d\x30\xc4\xb0\x09\xc9\x16\x73\xeb\xd4\x55\x69\x0e\x00\xcb\x51\x69\x04\x26\x53\x6e\x10\x60\x07\x39\x25\xfe\x19\xf0\x09\xf1\xcf\xc0\xb4\xda\xa9\x81\x35\x83\x4d\x2b\xb3\xd1\x3d\x04\x84\x5c\xa5\x04\xe9\x4f\xed\x1d\x34\x22\x64\x62\xeb\x28\x8b\x19\x82\xad\x8d\x29\x03\x6a\x1f\x24\x1b\xcb\x75\x25\xbb\x98\x24\x95\x00\xb1\x88\x3b\x47\x1f\x3a\x41\x01\x50\x84\x50\xfb\x54\xb5\xbb\x0a\x50\xb1\x9a\xc2\x4e\x05\xec\xe3\x3c\xce\xf3\x8f\xf4\x08\x6c\x32\x56\xf8\x57\x2d\xec\xcf\x8c\x77\x7c\x11\xe3\x17\xd5\xa2\x3f\x94\xeb\x3a\x9c\xd6\x01\x64\x47\x41\x76\x25\x44\xa5\x45\x33\x4f\xdf\xfe\x24\x5b\x0d\x9b\x34\x26\xed\x08\xbd\x3e\x18\x61\x59\x61\xb0\x61\x50\x89\x33\x03\xd8\x28\x18\x05\x00\xbd\x5b\x3a\x4a\x02\x68\xae\x8e\x02\x63\xb7\xd0\xeb\x0c\x2c\x42\x22\x5d\x29\xb9\x00\x87\xf7\x8c\x1c\x3f\xee\x03\xd3\x99\x53\x60\xd8\xca\x9f\x5a\x87\xf0\x38\x58\x16\x68\xac\x40\x57\x12\x00\x82\x80\x5d\x12\xf3\x1b\xb6\xe5\xb2\x35\x7f\xd8\xa5\x31\xd5\xef\x0c\x10\x90\xc7\x45\x3d\xad\xb9\xc5\x81\x08\xcd\x59\x65\xf1\x0c\x51\x95\xe2\x7d\x2c\xae\x89\x81\xad\x22\x95\x6b\x34\x64\x5d\x41\xc3\xb4\xb1\x10\xa4\xcd\xe9\x65\x93\xe5\xd9\x98\x67\x8d\xf2\x48\x4a\x12\x44\x24\xc7\x88\x0a\xa0\xf6\x3a\xf1\x3e\x0c\xcd\xe5\x95\x45\x4f\x68\x83\x91\x5c\x87\x48\x4f\x4e\xa6\x2d\x50\x9c\x9c\x5f\x40\x03\x4c\x1a\xec\xcb\xac\x22\x5a\x61\x0f\x10\x14\x91\xe2\x7d\x2c\xc0\x26\xda\xa9\xd9\x1f\xc1\x44\x33\xbb\x23\x98\x47\x67\x70\x3e\x74\x03\xca\x98\xdc\xa6\xde\x4c\xa0\x5c\xed\xb7\x01\x8c\xa8\xfd\x36\x30\xc5\x95\x9f\x01\xb8\x0b\xb1\x9b\x44\xe4\xae\xc3\xcf\x4c\x53\x10\x19\x5c\x00\x2a\x0a\x61\x37\x0b\x96\xd4\xb1\x71\x7c\x91\x3d\xbb\x59\x94\x05\x6e\x19\x2c\xc9\x76\x6a\xe0\xa7\x14\x3e\x89\xf3\x3c\x03\x33\x5b\x65\x74\x67\xd1\xe3\x17\x46\xee\x8a\x39\x38\x31\x72\x17\x92\x6c\xae\x2b\xd8\x83\x73\x8a\xc9\x24\x93\x9e\x6d\xcd\x64\x0c\x2d\x9c\x4c\x08\x00\x51\x72\x02\x11\xc5\xbc\x70\xc5\xeb\x21\xa0\x39\xe2\x15\x0a\xa3\xa5\x8b\x31\x7f\x91\xe5\x39\x4b\x3b\xa4\x4e\xa2\x33\x57\x08\x19\x21\x21\x26\x7f\x62\x71\x93\x3f\x45\x22\x8f\xf5\xae\x2c\x85\x34\xa9\x6b\x00\x80\xba\xa8\xd4\x9a\x2c\x2a\x9f\x14\xe5\x44\xca\x0b\x38\x55\x7f\xd1\x92\x17\x50\x4e\x4b\x5e\x00\xc5\x4b\x1e\xe7\x7a\xfb\xdd\x83\xaf\xf9\x33\x1b\x32\x29\x95\xe9\x7f\x00\x0a\xbc\x48\x2b\x5b\x05\x6c\x7e\x5e\x94\x0d\xcf\x18\xaf\xb9\xb2\x51\x82\x69\x65\xb2\x88\x79\x6d\x0c\xd7\xb0\xf7\x9a\xf0\x38\x41\x17\x80\x9b\xb1\x4e\x4b\xf1\xda\x87\xc9\x02\x90\x1d\xc4\x48\x54\x7a\x57\x61\xec\x2a\xc8\x9e\x82\x1c\x2a\xc8\x81\x82\x8c\x25\x64\xa0\xcb\xdd\x51\x10\x5d\xce\x9e\x84\x0c\x65\x4d\x4c\xa5\x35\xc6\xbe\x82\xe8\x72\x55\x6b\x76\x34\xce\x81\x84\xec\xea\xd6\xc4\x0a\xa2\xbf\x52\xbd\xdc\xd7\x10\x59\x97\x92\x22\x3d\x64\x61\xae\xfd\x2e\x86\xb0\x82\x4f\x5a\x4a\xa0\xe8\xd7\x0b\x22\x3a\x04\x8d\xa7\xf4\x6c\x10\xc4\xf0\x4f\x64\x2f\x0e\xfb\x04\xba\x39\x07\x17\x14\xc0\x48\x25\x04\xb6\xaa\x53\x0b\x92\x02\x44\xd9\x19\x0f\x04\xa9\x7e\xa2\x5e\xac\xb0\xad\x9e\x5a\x10\x21\xd5\x7e\xd2\x47\x5c\x4d\xaf\x0f\x5d\xf8\x89\x9c\xad\xc1\xa9\xf2\x94\x02\x52\xc0\xd0\xb6\x28\x68\xaa\xb1\x45\x41\x43\x8d\xb6\x04\x76\xb8\x29\x49\x43\xe7\x95\xa0\x07\xab\xcd\x54\x79\xce\x82\x7b\xc1\xf4\x54\x2d\x14\x07\x50\xb3\x36\x31\xa5\x63\x48\x5e\x5a\x9f\xb2\xcb\x4b\xeb\x63\xb9\xfe\x28\x19\x0c\x1d\x66\x95\xb2\x77\xc6\x60\x3f\x9f\x6a\x9f\x21\x95\x6f\xf4\x99\x83\x9e\x86\x94\x0a\x34\x30\x20\xdd\xb4\x1d\x84\x99\xb6\x69\x03\xad\x80\xea\x0a\xc0\x0a\xf6\x93\x2b\x9d\x04\xaf\x4d\x5d\xe9\x04\x25\xaa\x73\x0b\x70\x18\xf8\x49\xa5\x60\xaa\x4e\xa7\x76\x32\x9b\x2b\xca\xf4\xe1\x48\xe6\x27\x62\x60\x81\x21\x21\x06\x16\x48\xe7\xb1\x22\x02\x50\x4e\x35\x1d\xd4\xdd\xa9\x92\xe6\x31\xc8\xa1\x69\xfe\xa7\xc2\x85\x66\x15\x86\xa9\x62\x99\x36\x7e\x91\x0a\xa6\x2c\x02\xe0\xec\x33\x2d\xf4\xa0\x1e\x62\xee\xa5\x9d\x4d\x06\x0e\x11\xcc\x4a\x09\x3a\xe8\x4f\x2d\x51\x08\x63\xd5\x12\x85\x50\x1a\xb1\xb9\xfd\x04\x37\x9f\x38\xb5\xcd\x00\xa7\x50\xf8\x6b\xad\x9d\x20\x53\xc9\xbc\x17\x4d\x9e\x5b\xdf\xed\x9b\x3c\xf9\x9f\xa2\xca\xc0\xe4\x90\xc2\xf6\xc9\x07\x1f\x05\x1b\x5a\x6a\x0f\x33\x99\x54\xd7\x01\x3d\xe1\x27\x57\x66\x40\x0d\x53\x23\x33\x90\x67\x0c\x8d\xe0\xab\xa9\xf1\x96\x88\x0f\x98\x04\x68\x85\x1f\x98\xb1\x36\xac\xbf\x8f\x69\xed\x41\xbb\x0f\x45\x0a\xc6\xff\x41\xb4\xe0\x4c\xfd\xa8\x29\x0f\x4e\xc9\x3e\x33\xc5\x12\xf2\xf7\x7a\xdb\x08\xba\xdd\xb4\x26\x8a\x5a\x0c\x7e\xbf\xd3\x9a\xdb\x1c\xb2\x27\x81\x46\xdf\x3a\x40\x48\xab\x74\xce\x2e\x73\x67\x78\x00\x48\xa0\x52\x30\xd4\x3c\x77\x48\x3f\xad\xb9\x4b\xa1\x2b\xc6\x6b\x8b\xd7\xcc\x3c\xbd\x22\x2c\xaa\xa1\x2f\xe3\x84\xc9\x8d\x36\xda\x2d\x67\x71\xc6\x8d\xda\x1f\x03\x24\x9f\x98\x75\x70\x16\xcf\xb3\x5c\xd9\x51\xc0\x61\xe0\xe5\xb3\x0f\xc6\x52\x3f\xc0\x2f\xb8\x31\xd6\xef\x48\x08\x37\x87\xbe\x70\xca\x44\x2c\xd5\x20\x35\x66\xe4\xdc\x61\x47\xe6\x6b\x6b\x46\x0a\x4d\x15\xd5\xfe\x5f\x91\x35\x8e\x35\x9f\x08\x81\xfe\x92\x48\x6b\x90\x2b\x33\x0a\x10\x63\x36\x63\x31\xaf\xb5\xc5\xd8\x40\x88\x5d\x19\x81\x79\x9e\xa9\xce\x0f\xf6\x00\xc2\x13\xbd\x31\x00\xeb\xc6\xcc\x15\x64\xe2\xc3\x97\xda\x71\x01\xac\x25\x2f\xb3\x7c\xcc\x78\xfd\x71\x11\x27\x8c\x92\x6a\xf6\xb5\x62\xc4\xfa\x82\x4d\xfb\x5a\x5d\x53\x18\xd4\x5a\x12\xdb\xc5\x04\x00\xf3\x7a\xa6\x8f\x83\xa0\xa8\xb2\xfc\x9a\xb3\x49\x4d\x0d\x6b\x20\xed\x45\x06\xd8\xba\xac\x1c\x18\x84\x96\x30\x11\xf8\x2f\xc9\x81\x2d\x0c\x70\xc9\x35\x79\x7b\x7d\xe8\x5c\xc9\xb3\x6f\x65\x51\xc7\xf9\xeb\x4c\x49\x3d\x74\xc8\x9b\xb5\x96\x7e\x18\x28\x32\x8d\xa1\xa9\xc4\xb1\x59\x0e\x18\xb5\xef\x60\x8f\x2d\x88\x60\xc4\x97\xcd\x1c\xac\x95\x2f\x1d\xe7\x25\x91\xa6\x52\x0b\x7c\x91\x66\xb7\xc4\x0b\x6a\x67\x08\x90\xc5\x4c\x39\xf2\xe2\xc1\xd5\x2b\x62\xa7\x11\xcd\xcc\x88\x9d\x06\xd2\x52\x72\xf4\xc0\x1d\xe0\x95\xb1\xbf\x30\xc8\xd4\xf6\x17\x06\xb9\x5a\x1d\x38\x80\x5c\xad\x0e\x88\xe4\x2b\xb3\xfc\xc3\xe6\xe2\x95\x31\xc6\x00\x41\x33\x63\x8d\x19\x62\x1a\xb7\x30\x7f\xdc\x80\x69\x3c\x9b\x4c\xe8\x44\xc8\x5c\x86\x13\xf4\x7a\xa5\x19\x0e\xcc\x63\xaf\x88\xdd\x44\x30\x60\x46\xec\x26\x90\x96\xb6\xb2\x3e\x4c\xbd\x2c\xcb\x88\xb6\x8b\xf9\xe4\xdc\x1f\x88\x91\x15\x13\x75\x30\x72\x98\x22\x4a\x29\x77\x6f\x83\x3e\x38\x65\xbd\xfa\x59\xa9\xfb\xbd\x3e\x1c\x59\x66\x7f\x12\x00\xd0\x90\x98\x45\x40\x30\x64\x14\x30\x46\x80\xd2\x8d\x64\x47\xe6\xf1\x34\x2b\x62\x7e\xfb\xca\x6a\xf0\x3c\x9e\xe6\x9a\xf7\xd0\x46\x28\x60\x42\x6f\xa7\x5f\x67\xf3\x58\x1e\x76\xf6\x50\xeb\x7c\x35\xb7\xb3\xe5\xf6\x63\x30\x80\xfd\x67\x36\x5f\xc8\x83\xd8\x1e\xfa\x06\xbc\x9a\x2f\xf2\x4c\x3b\x57\x80\xad\x3d\x2b\x12\xbd\x07\xc2\x2b\x1c\xfa\xbc\x08\xec\x49\x84\x4e\x03\xd0\x37\x01\xa0\x5d\x6c\x0f\x41\x49\xcd\x8a\x92\xb0\x04\x34\xa5\xa8\x13\xcd\xc2\xe0\x4b\x44\x06\x40\x50\xe6\x95\x49\x26\x98\xcb\xa6\xda\x6c\x85\x52\xce\x3d\x1b\x19\x4b\x3c\xee\x94\xfc\x0a\x0c\x5e\x8c\x5c\xf6\x40\xef\xf4\xac\xa8\xf3\x98\xcf\xe4\x8e\x29\x06\x3b\x5f\x56\xd4\xc6\x5f\x23\x06\xf3\xcd\xab\xe2\x2a\xab\x32\x38\x92\x51\xfa\xb9\x9a\x23\x2a\x87\x78\x0e\xf5\xc0\x6f\xf3\xd5\x3b\xa3\x9c\x41\x77\x4b\xa3\x9c\xc1\xb8\x10\xcb\x11\x38\x93\x64\x14\x30\x01\x0c\x47\x58\xc1\x6e\x39\x6b\x89\x30\xe8\x60\x69\xcc\x0c\x87\x80\x65\xec\x0c\x90\x76\xbb\x94\xe9\x15\xfc\x06\x8c\xc7\x59\x4b\x8e\xc1\x24\x37\x72\x0c\x39\xae\x72\x86\xbe\xca\x0a\x62\x95\xde\x95\x20\xb5\xca\xc2\x31\x8e\x00\xa8\x35\x7b\xb2\xa3\x00\xca\x7a\x33\x19\x4a\xc8\x95\x55\x6e\x6d\x91\xb2\x36\x47\xa9\xfd\x01\xe6\x53\x08\x4c\xc5\xe6\xab\xa1\xb7\x10\x0f\x19\x01\xc0\x16\xf2\x95\x36\xa8\x40\x7f\xb5\x41\x45\xa4\x7e\x26\xab\x25\x1c\xad\xff\x49\x01\xbb\x80\xa1\xe5\xd7\x21\xe4\x6b\xf1\x25\x92\x3f\xbb\xfa\xbe\x60\xf9\x3f\x5d\xa9\x25\xb8\xeb\x4f\x33\x3f\xd1\xaf\xea\xe7\xd6\x28\x0b\xee\xf8\xb3\x35\xca\x82\xb5\x7f\x6e\xe9\x8c\xa2\x69\x7f\xb6\x86\x0e\xba\x54\x31\x6e\x28\x72\x00\x78\x04\x02\x5a\xf4\xcf\x94\x68\xd0\x6d\x4a\x34\x01\xf8\x67\xbc\x58\x68\xc6\x12\x8c\xf6\x95\x00\xc6\x1a\xa0\x8d\x8b\x82\x49\xfe\x49\x37\x97\x70\xa7\xe4\xab\x05\xd9\x07\x1c\x4d\x4e\x28\xc4\x90\x53\x24\xff\xe9\x92\x53\xf0\xe2\x57\x97\x9c\xa2\x07\x5f\xa7\x5c\x5d\x56\xe9\xa1\x73\xc7\x3f\x89\xc7\xa4\xa0\xce\x57\xe2\x31\x29\xd2\xff\x24\x9b\x26\x31\x11\xbe\x92\x4d\x93\x48\xff\xb3\x35\x1e\x82\x05\xbf\xb6\xc6\x03\x70\x5b\xe3\x01\xbd\x75\xa1\x70\x25\x24\x7f\x66\x14\x9a\x54\x74\xf2\x35\x35\x07\x00\x17\xe5\x16\x24\x06\x88\xed\x3d\xb1\x03\xb0\x29\x8f\x95\xe5\x0e\x6c\xef\xaf\xe3\xf9\x38\xd5\xa3\x34\x06\x1c\x02\x19\x23\x44\x79\xc8\xed\xc3\x31\xc2\x6b\x92\x8e\x65\xbe\xbe\xfc\xd7\x97\x00\x65\xa7\xc3\x4f\x72\xb3\x25\xdc\x85\x12\xe0\x56\xae\x31\x24\x41\x5b\xf2\x58\xde\x81\xba\x89\xb1\x5a\xce\xa5\x77\x58\x9f\xed\x28\xc0\x44\xca\x83\x43\x30\x46\x10\x1f\x2d\xd8\xc1\xbc\x26\x69\x06\x94\x33\x84\xeb\x49\x7c\x53\x42\x2a\x21\x4a\x88\xa3\x0a\x28\x20\xf9\x42\x41\x54\x4b\x16\xda\xa5\x4c\xe1\xe8\xcd\xc3\x21\x6c\x1e\x04\xa8\x56\x7b\xec\x18\xfb\x53\xc7\x99\xfa\x0c\xa6\x7e\xfe\x8c\x42\xb0\x68\xa5\x49\xc8\x9a\x94\xef\x65\x1c\xa7\x32\x5d\x69\x80\xde\x77\xe4\x63\xb3\x37\x02\x4e\xcc\x7f\x24\x00\xe8\xb8\xb9\xa3\xb6\xbf\x0f\x8d\x19\x73\x54\xa7\xef\x54\x42\x64\x9f\x63\xe2\xab\x5a\x6f\x0f\xc6\x12\x50\xe5\x6a\x44\x0f\x26\x1a\xd4\x28\x90\x68\xda\x6b\x7a\xe8\x06\x96\xc7\xdc\x82\x30\xc0\xa1\x93\x17\xca\xb6\x20\x09\x42\x14\x49\x86\x20\x6b\xf2\x04\x9c\x02\xef\xe0\x7b\x3d\xd5\xf1\x63\x3d\xd5\x21\x99\x26\xea\x26\x2d\x88\x8a\x9c\xde\xa1\x4b\x14\x40\x2b\xe3\x40\x96\x94\xa7\xe4\x1c\x73\x1f\x41\x4d\x65\x60\x3b\x58\xb2\xd6\xb8\xc1\x45\x5b\xdf\xe2\x85\x6b\x31\xb9\xde\x09\x8a\x5a\xc1\x87\x41\xf0\xfb\x8f\x82\xa6\xea\x8c\x4a\xce\x14\xe5\xdf\xa0\x4f\xa3\x25\x27\x3b\x5b\x0f\xe4\x5d\xc7\xc9\x42\x03\x63\xd7\xf3\x42\x63\xb6\x1c\x1c\xc0\x09\x5b\x97\x6e\x98\x0d\x19\x52\x7c\xf7\x9c\x41\x88\x49\x4a\x70\x01\x46\x27\x06\xa7\x0b\x7b\x3a\x13\x4e\xc2\xad\x33\x77\x38\x3a\x51\x99\xad\x23\xf7\xc3\x56\xa6\x6a\xe0\x50\xe6\xbc\xc8\x4b\x05\x1c\xc2\x46\x59\xb4\x5a\x3a\x1b\x98\xbb\x69\x78\xf0\x4f\xb2\x94\x5f\x64\x1f\x8c\xc6\x22\x43\xf7\x56\x7b\x35\xec\xcb\x9c\xd6\x3e\x0e\x76\xca\x9d\x0e\x2b\x3a\xa7\xf5\x4d\xba\xd3\x2a\xad\x72\x89\x0d\x59\xb2\x81\x3a\x73\x4c\x33\xab\xcb\x26\x9b\x5a\x5b\xca\x94\x36\xc5\xa2\x2c\xec\xd3\xa4\xef\x84\xe5\x94\xb0\x63\xe0\x92\x01\xe3\xa1\x01\xd9\x1e\x11\x8a\xa2\xf5\x8c\x33\x66\x39\x5c\x8d\xd5\x27\xf2\x3a\x9f\x19\x35\x50\x6e\x68\x96\xfc\x64\x3c\x70\xe0\x74\x03\x39\x56\xad\x42\xef\x18\xbb\x15\x7d\x9d\xd7\x62\x9f\x9e\xce\x6a\x31\xcf\x81\x93\xa5\x46\x5c\x35\xaf\xf5\xc1\xc0\xca\xb0\x18\xe4\x54\x1d\x90\xa3\x64\x63\xda\x2a\x8a\x04\xba\xb4\xe6\x35\xb1\xfc\xe0\xd0\xda\xe6\x61\x64\x45\x62\x1e\x3e\x40\x80\x93\x6f\xcc\xc3\xe0\x9f\x98\xdb\xe6\xe1\xbe\x01\x29\xd3\xda\xc1\x10\x61\xa6\x6d\x46\xd0\xb3\xca\xd8\x9f\x0f\x25\x5e\x65\x5b\xcb\x76\x25\x94\x18\xc7\xf6\x24\x88\x5d\xea\x03\x57\xd5\x63\x01\x34\x50\x24\xcb\x6b\x56\x55\x30\xa6\x96\xdd\x12\xbf\x10\x79\x2d\x53\xe7\x9e\xcc\xb0\xf1\xf7\x55\xb5\xa6\xd2\x7d\x85\x69\xec\x9e\x71\x2c\x49\x50\x11\xeb\xdb\x40\xa2\xb5\xed\xa0\xa9\xcc\xb1\x8c\xa0\x20\x93\x2d\x4f\x50\x18\xec\x89\x2b\x53\x5e\xbb\xca\x20\x0c\x88\xab\x0c\xc2\xca\x3c\xb5\x3a\x31\xd5\x06\x6e\x68\x2c\x71\x1c\x85\xaa\x67\x31\x4f\x2d\x01\x35\x8b\x79\x63\xf1\x9d\x00\xa8\x85\x1e\x2e\xf8\xe5\xb3\x71\xae\x2f\xb8\xc2\x9c\x21\xca\x24\xb4\x80\x28\x93\x90\x26\xba\x0d\x8a\x34\x4d\x7e\xe8\x9a\x3e\x4c\x00\x2e\x04\x7f\x48\x35\x12\xe8\x11\xf9\xda\x5d\x65\x90\x03\x48\xe3\x0f\xc1\x68\x9b\xe7\xc6\x19\x08\x9c\xeb\x5e\xcf\x33\xb2\xdf\x06\x92\x51\x08\x6c\x25\xf3\x79\xd9\x54\x75\x9c\xcc\x94\xf3\xe1\xd8\x40\x2d\x08\x39\x0c\x38\x94\x69\xca\xbc\x08\xd3\x66\x69\xe8\xa7\xb1\xb4\x1e\x60\xee\xa5\x9d\x4d\xa6\x29\x22\x90\xc3\x00\x18\xbd\x92\x28\xa8\x09\x02\x8c\x41\x10\xc6\xab\x34\xda\x91\xfc\x44\xc8\x35\x8b\x5c\xfb\xb0\x25\xed\xf4\x52\x54\x19\xad\x2f\x0e\x48\x51\xee\x4a\xb2\x0f\x3e\xb0\xab\xdd\x1a\xf7\x49\xa1\xed\x6f\x63\x59\xf2\x3c\x5e\x54\x4a\x98\xec\x4f\x12\x09\x6d\xe3\xef\xc9\xd2\xda\xf5\xa8\x9c\xf6\x37\x30\x16\x65\xb9\x70\x5d\xf4\x51\x33\x55\x19\xd4\x13\x30\xc6\x06\x68\x5f\x94\x43\xd4\xee\x5b\xdb\xa0\x21\xa2\x39\xdb\x20\x1c\x09\xe2\xa6\x32\x40\x08\xbd\xa7\x0f\x3b\xea\xbc\xbc\x36\x17\xc1\xc0\xd0\x92\x97\xd7\x68\x66\xfd\x02\xf5\x5d\x33\xde\xd2\x9e\x0e\x55\x4e\x7b\xb1\xc7\x61\xfa\x26\x79\x3e\x41\xda\x92\xeb\xf5\x1a\xa4\x82\xa8\x80\xe7\x44\x8e\xdd\xf4\xe5\x4f\x65\xc6\x3f\x44\xb1\x4c\xee\x59\xa0\x5e\xc0\xed\x19\x09\xd3\x88\x6b\x3d\x53\xea\x07\x9c\x4e\x46\xe8\xbd\xba\x9a\xd1\x43\x35\x9e\xeb\xb9\x39\x80\xf5\x2f\xaf\x62\xa3\xe4\xe2\x56\xa4\xb5\x65\x84\x55\x97\x58\x5f\x40\x64\x19\x85\x16\x56\x5e\x3b\x99\x3b\xa2\x38\xa7\x47\x45\xa9\x04\xe8\x95\x14\xdb\x71\x39\x56\xfb\x87\x8a\xa8\xdd\x07\x0a\xa0\xd5\x6e\x90\x28\xd4\x3e\x0d\x46\x8a\xdc\x82\x40\x9d\xe4\xf0\x69\x0f\xd3\xe6\xf0\x09\x3a\x2a\x08\xfe\xbd\x28\xed\x4c\xfd\xa8\xa9\x44\xcc\x6b\x77\x05\x04\xe5\x87\xea\x3d\xb9\xa5\x09\x61\xa1\x39\x39\x66\xc2\xaf\xac\x03\x2a\xfc\x4c\x0b\x48\xd0\x5f\x45\x9a\x51\xfd\x27\x27\xee\x93\x09\x76\x86\x93\x73\x2f\x28\xb6\xe1\x29\xdd\x66\xc4\x08\xa3\x5e\x95\x80\xe6\x1e\x41\x1d\x18\x5d\x80\x1c\x41\x19\xa8\xb2\x09\xdf\x40\x00\x1f\xea\x1f\x33\xc0\xb4\xd2\xe6\x07\x3d\x99\x66\x2a\x60\x08\x82\xde\x28\x01\x7d\x08\xf6\xd9\x79\xac\xb7\xbe\x7b\x98\xd4\xf2\x86\x42\x88\x8a\x0e\x47\x85\x08\xa5\x42\x63\x47\x43\xb5\xce\x1e\x63\x05\xfc\xab\x9a\x16\xbb\x70\x01\x73\x9e\x18\xd3\x68\x0c\xab\xf1\x1b\xb3\xef\x4b\x00\x41\xef\xfb\x20\x49\x2f\xd5\x40\x35\xc6\x1f\x73\x00\xb6\x8f\x39\x8b\xab\x86\xb3\xd4\x0a\xc0\x24\xd8\xee\x0d\x4b\xb3\x66\x4e\x4e\x96\x7a\xe0\x2a\xf6\x86\xe5\x79\x56\x10\xbf\x16\x31\xca\x6f\xdc\x28\x25\x40\x40\x57\x79\x80\xea\x66\x8a\x42\x60\xa7\x9b\x67\x09\xfa\x58\xdd\x80\x59\x7c\x9e\xa5\x26\x2c\xcf\x3c\x4b\x0d\x5b\x83\xc9\x4b\x5f\xf0\x1c\x80\xcb\xd1\x3c\x4b\xad\xcb\xbf\x70\x45\x40\x85\x5b\x02\xb7\x61\x7a\x69\x00\xe6\x36\x00\x74\x78\xb1\x03\x0d\x69\x14\x49\x45\x1b\xe1\x2e\x2b\xb9\xb9\x0a\x8e\x18\xf3\x3c\xd1\xd7\xeb\xc6\x90\x4e\xf5\x95\x20\x18\xeb\x62\xe1\x7e\x51\xa6\xda\xc1\x73\x00\x23\xff\xa6\x25\xed\x61\x48\x5a\xd2\x1e\x46\x7a\x61\x95\xd5\x92\x5c\xa2\x37\x6f\x88\xeb\x0b\x62\xd5\x32\xf6\x92\x8a\xa5\xf6\x06\x3b\xd6\x1b\x42\x68\xa4\xb9\x4a\x8d\x31\x25\xe6\xb8\xbe\x6d\x07\xb7\x0c\xe7\x8d\x03\x28\xe2\xb1\x72\x6f\xc0\xab\x48\x6f\xa9\xf5\x0c\x56\xab\xc2\x82\xec\x00\x84\x04\xfb\x82\xdb\x1f\x03\x80\xea\xe3\xb5\x43\x4c\x9a\xa8\x52\x10\xd8\x0d\xeb\xa3\xd1\xa4\x28\x58\x76\xac\xd7\x57\x5f\xd3\x00\x52\x08\xaa\x1b\x7d\x48\xb1\x07\xfe\xcf\x12\xa4\x36\x9a\x70\x26\x06\x30\x0b\x69\x8c\xc7\xd0\x37\x10\x27\xa3\xb0\x62\x18\x98\x06\xd8\x91\x0b\x0c\x9c\x5c\x60\x14\xc4\x78\x4b\x0d\x3b\xe0\xc0\x57\x58\x90\x03\xc0\x21\x86\x1d\xb0\x96\x16\x16\x64\x0f\x20\xe4\xae\xed\xbe\x02\xd0\xcb\xb6\xa4\x09\xe6\x06\xe4\x00\x8a\xd7\x12\x21\x85\x6c\x2d\x11\x20\x49\x25\x02\x0c\x1f\x33\x47\x33\x87\x70\xdc\x23\x20\xda\x34\x08\x75\x33\x62\x1b\xdc\x57\x18\x46\x49\x40\x90\x12\xb8\x40\x45\x46\xfd\x37\x75\x53\xdf\xb2\x69\x5c\x67\x57\xac\x2d\x5b\xe0\xfc\x56\x65\x9f\xcd\xb2\xe4\xeb\x43\xb9\xc5\xca\xcc\xcf\x8c\xdf\x76\x22\xd8\x31\x71\x80\x1f\x59\xc5\xf4\x8a\x02\x66\xee\xc2\xf2\x2a\x25\xad\xae\x6a\x96\x76\xf9\xab\xa0\x2b\x07\xe6\xdb\x5b\x37\x5c\x67\xdf\xb2\x6b\x75\x92\xfd\x47\x01\x15\x50\xbf\xd1\x1d\x0d\xa9\x28\xe8\xad\x2b\x4c\x85\x34\x2e\x5c\x61\x0a\x7d\x22\x0e\x5e\x86\x1d\xb4\x0f\x18\xb8\xde\x16\xc6\xb1\x4b\xa7\x2f\x3b\xbf\x72\x1c\xbc\x68\x56\xd5\x01\x25\x4e\x54\x04\x95\x68\x47\xc0\xd8\xc4\xe9\xc5\x08\x82\xa9\x06\x4e\x30\xc9\xad\xf4\x4f\xf5\x15\xf9\x48\x15\x4d\xdc\x38\x60\x29\x2c\x88\x1f\x47\x82\x00\xad\x5c\xc7\x70\xc3\xae\x50\xea\x20\x32\x40\xa6\x8f\xc7\x12\x4c\x2a\x39\x03\x3b\x86\x42\x33\x07\xf2\x13\xd9\x72\x42\x36\xd9\x72\x42\x9a\x9a\xd3\x11\x40\x9a\x03\x13\x8d\x2c\x10\x40\x0a\x62\x0b\x35\xbd\xd2\x6b\x2e\x44\xd6\x2b\x5a\xd6\x4e\x28\xda\xb5\x6c\xca\xf2\xbb\x6c\x70\x48\x9a\x4e\xf3\x1c\x12\xc9\x18\x72\x54\x8d\xc4\x92\x43\xdb\xe5\x18\x74\x68\x56\xd5\x0d\xd5\xac\x8f\x6d\x30\xbb\x6e\x82\x45\xf8\x03\xd8\x9f\xe8\xa5\x86\x3f\xf2\xda\x2a\xc9\xe8\x94\x03\x16\x2b\x80\xa2\x1b\xec\x5a\x8b\xd7\x86\x65\x62\x53\x1b\xd1\x17\x60\x62\x95\x3f\x72\x16\x4b\x51\xd7\x03\x39\xf5\xb6\x2c\x00\x96\x15\x53\x2d\x31\xe4\x3a\xd0\x5a\x95\x27\x80\xaf\x7d\x58\x60\x31\x21\x01\xb5\xa0\x1d\xea\xaa\x60\x82\x79\xad\x68\x08\x03\x09\xa7\xd7\xdc\x61\x33\xf3\xb6\xac\x57\x5e\x8e\xdb\xc3\x7c\xe7\x8e\xc9\xa1\x84\x52\x63\x53\x8f\xc0\x6c\xb7\x7f\x23\xcc\xca\xfa\xb4\x2d\x72\xca\xda\x91\x6b\x13\x0b\x4a\x2b\x01\x29\x62\xb2\xda\xbe\x7d\xb4\xaa\x15\x42\xb3\x03\x85\x7a\xfb\x1d\x5a\x39\x1d\x0e\x7f\x1d\xdf\x5b\x46\x2f\x39\x34\x9d\x9e\x3d\xf4\xdb\xb6\x8b\x8f\x61\x9e\xb2\x36\x87\xf0\x87\x0a\x40\x4f\xe1\x6d\x54\x73\x18\x6f\xc3\xaf\xe2\x56\x21\x3a\x24\x28\x18\x32\x10\xa4\x6e\x89\x4c\xe4\x60\xaf\x32\x3b\xd3\xd6\x77\xd8\x9f\x61\x7e\x38\x59\xb4\x83\x2c\x51\xf9\xf6\x6c\x95\x20\x6b\x9c\x7b\x06\xee\x18\x2f\x0f\x4c\x8e\xb5\xe2\xd9\x8d\xeb\x34\x51\xba\x28\xd6\xb0\x49\x56\x5c\xbd\xde\xc6\xb1\xc5\xc8\x5d\x0b\x6f\x1c\xf7\xe9\x00\x98\x35\x20\x51\x00\x33\x22\x06\xa4\x47\x84\x69\x90\x1e\x11\x39\x3d\xdf\x73\x96\xb0\x54\x6f\x89\x0f\x7a\x36\x98\x76\x33\xb6\x86\x49\x61\xb8\xd4\x18\x30\x59\xc4\x07\x76\xc5\x78\xc5\x9c\xf9\x2d\x47\x0a\x6f\x71\xb6\x38\x21\xed\xd1\x2a\x2c\x24\x55\xfa\xb8\x23\xcf\xaa\x5e\x76\x0c\x2f\x5f\x7c\x6c\xc6\xe6\xd6\xd8\x81\xd5\x01\x8a\x60\x15\x30\xb0\xf3\x17\xa2\x17\x3a\x82\x50\xaf\xab\x08\x44\xb1\x0a\x19\x4a\x0c\xab\xfe\x81\x5e\x0c\x74\x16\xfd\xe8\x40\x15\xdb\x24\x09\x63\xa9\x1e\x93\xbe\x0d\xa6\x63\x32\xb6\xdb\x23\x31\xda\x63\xe2\x14\x61\xf1\xa7\x4d\x15\xbb\xbf\x07\x43\xbb\xc9\xed\x9e\x1e\x48\xb1\x66\x09\xe6\x3e\x81\x59\x92\x68\x87\x64\xb8\x32\x16\x36\x04\x2a\xd3\x2a\x4e\x56\xd1\xb1\x88\xc0\x6a\xbb\x88\x79\x9c\xe7\xda\xf1\x1f\x56\x96\x62\x61\xaf\x34\x05\xb9\xce\x15\x4f\x52\x1d\x3c\xb2\x30\x3e\x70\x83\x9e\x99\x86\xc5\xa2\xcc\x49\x28\x26\xac\x86\xd3\x49\x52\x2c\x78\xd2\x30\xca\xf3\x05\x89\x9f\x72\xa0\x01\xda\x76\x4d\xa6\x8f\xc8\xe8\x80\xf2\x98\xab\x7b\x75\x87\xc3\xa1\x0d\x57\x9a\x13\xe8\x7c\x9c\x28\x65\x13\x85\xa1\x95\x2b\xa2\xbe\xb4\x0f\x40\xe1\xfb\x0f\x2d\x25\x0a\x4b\x21\x1a\xc9\x58\x01\x18\x9d\x57\x85\x0e\x91\x03\x4c\x59\x54\x09\xa1\x81\x84\xb0\x0e\xd6\x6c\xb9\xba\x1c\x22\xae\xb3\xfb\x87\x8d\x5b\x35\x2b\x79\xed\xe8\x38\x08\xec\x1c\x67\xb2\xb7\xe9\xcb\x34\xa3\xdc\x56\xd0\x58\xc1\x12\xd2\x2a\xdd\x65\x96\xea\xd2\xc4\x21\x42\x81\x00\x20\xbd\x55\x66\xd8\x52\x15\xbb\x68\x70\xb0\x23\xd3\x6a\xef\x9f\x90\x75\x94\x14\x75\xa0\x00\x9d\x42\x41\x66\xe8\xd6\x52\x6c\xad\xcf\x3a\x45\x27\xce\x80\x88\x09\x7e\xd9\x1e\x81\x42\x87\x51\x1a\x80\x85\x5e\xa4\x75\x5b\xf7\x2c\x34\x46\x27\xb6\x00\x74\x4a\x03\x99\x61\xda\x7a\x48\x81\x97\x1d\x45\xd7\xe6\x0a\x09\xcc\x67\x13\x6a\x1a\x22\x2c\x14\x26\x3d\xc1\xb4\x39\x91\xc3\xef\x5b\xa1\x69\xa5\xde\x4c\x33\x74\x7b\x50\x71\xed\x88\x58\x2b\x59\xdb\xca\x31\x5f\xc1\xe2\xa1\xad\x4b\xc0\xf2\xda\xba\x84\x29\xc1\x6d\xff\x86\xbf\x98\xba\x48\x89\x77\xbe\x8b\x86\x5c\x0f\x06\x1d\xe8\x8a\x04\x7d\x32\x94\xbb\x22\x61\xea\x40\xa5\x2e\xae\x4e\x08\x04\xaa\xf9\x4c\x71\x60\xf5\xfe\x4c\x71\x60\xba\x5e\x91\x6b\x51\xa4\x74\xbc\xa2\x41\x00\x2f\x89\x67\x10\xf0\xe9\x95\xe5\x9c\x0c\xa5\x5f\x99\x7d\xde\x61\x0f\x3f\x23\x2e\x2f\xa4\x30\xb4\xc1\x5b\x00\x6a\x0a\x27\x19\x9c\x94\x38\x44\x08\x45\xa5\x4d\x26\x51\x3d\x13\x03\xbe\xa6\x16\x9c\xa1\x84\x68\x41\x08\x14\xbf\x26\x16\x9c\x3d\x85\x61\x84\x1d\x82\x0a\x62\x0f\x11\xc3\xf2\xce\x38\xae\x43\x28\x8d\xd2\xa4\x27\x98\xb6\x63\x0e\xbe\xd3\xbe\xeb\xe0\x0a\x52\xea\xe4\x44\x25\x15\x76\x0c\xd8\xda\x4e\xc5\x20\x5b\xdb\xa9\x20\xe9\x86\x28\x7c\x47\x42\x3b\xf5\xe1\x4e\x70\x69\x41\xfa\x00\x51\xbb\xf8\x18\xa6\x92\x09\x77\x8d\x11\x0d\xcb\xb4\x2a\xb5\xb7\x16\x18\x41\xdf\x9d\x1a\x57\x72\x70\x8e\x28\x19\x01\x40\x27\x27\xe6\x3e\x09\x9c\x2b\xbd\x73\xed\x33\xf0\x99\x6b\x9f\x11\x85\x1b\x57\x63\xbc\x6f\xf3\xce\x38\xcb\xc3\xc0\x95\x26\x3d\xc1\xb4\x3a\x28\x83\x83\xa9\xd2\x5c\x3f\x39\x04\xf3\x78\x39\x9b\xcb\x29\x06\xcb\x42\xe9\x04\xd5\x2b\x69\x18\xb6\x18\x00\xa4\xe9\x88\x41\x82\xd2\x1d\x82\xc7\x62\x69\xdc\xdd\x7b\x48\x78\x7d\x5a\x07\x0e\x95\xef\x88\x27\x3d\x44\xfa\x2c\x29\x00\x06\x66\xce\xa6\xb1\xd5\x2e\x02\x80\x93\xa3\x77\x60\xe6\xd7\xd7\xe7\x27\x80\x43\x41\x63\x09\xd2\x43\xb3\x87\x69\x27\xa6\xe4\xbb\x96\xfd\x1c\xf0\x5c\x28\x6c\x83\xc9\x49\x2b\x1c\x0e\xbc\x5b\xb0\x62\x55\x54\xc7\x84\xe6\x5b\x39\xc0\x44\x0b\xa6\x43\xd9\x81\x97\x77\xb9\x70\xa2\x5a\x96\x34\x72\x1c\x0c\xb4\xda\xaf\x80\x77\x6f\xa9\x97\x4c\x28\x8e\xeb\xb7\x33\x52\x4c\x32\x6d\xc4\xdf\x51\x80\x72\xe2\x80\xf0\x62\x14\xdc\xae\x29\x79\x0a\x6c\x70\x83\x63\xcc\xb3\xa9\xb9\x6c\x00\xf4\xe0\xda\x5d\x66\x17\xd3\xd6\xe3\x1c\xfb\x00\xd2\x6f\x73\x00\x0f\x58\x01\x3d\xdf\xb5\x74\x10\xa8\x87\x9c\x35\xec\x00\x96\xba\x6b\x73\x03\x6e\x15\xa5\x49\x4f\x30\xad\xee\x74\x0e\xe0\x10\xf9\x1d\x59\xc5\x80\x66\x64\x15\x93\xe9\x39\xab\x62\x7d\x98\xbd\x87\xdf\x90\xe3\xed\x7d\x8d\xa5\xca\x85\x71\x55\x1e\xe6\x20\xd6\x4a\x95\x82\x7d\x74\x79\xa5\x27\xd0\x10\x8c\xdf\xef\xae\x98\x71\x86\x42\x76\x07\x10\xd7\xc6\xe2\x61\x4a\x81\xda\xc1\x0f\x83\xac\x09\xf0\x7b\x78\xa7\x6c\xc6\x2a\x65\x4e\xc4\xfb\xc2\x42\xe3\xc2\x41\xd9\x93\x29\xaa\x7f\xed\x22\xcc\x49\x9a\x90\x06\x20\x4d\x6d\xbd\x1b\x01\x46\xe1\xf6\x42\x4f\xbe\xa6\x7c\x62\xc1\x8c\x10\x15\x73\x68\x61\x84\x28\x24\x19\x4f\x40\x46\xfc\x1f\x4c\x64\x70\x3b\x61\x1b\x13\x73\xe5\xf1\xd8\x83\xbb\x43\x86\xcb\x31\x7e\xfb\x82\xf1\x9a\xa9\x60\xf5\x3d\xb8\x4b\xf2\xde\x95\x7c\xd0\x6c\x57\xf2\x89\xa6\xbf\x37\xa1\x70\x81\x1e\x26\x14\xae\x4c\x2a\x57\x76\xe0\x85\xc5\x4c\x46\x2c\xd5\x27\x59\x8b\x99\x8e\x79\xba\x07\xa7\xfb\xef\x75\x79\xd0\x56\x5d\x1c\xa6\xea\x64\xe6\xde\xc8\x5f\x98\x2a\xa0\xca\x3c\x2e\x54\x08\x5f\xbc\x1a\x86\x10\x7d\x5b\x8c\x49\x90\xba\xc6\xaf\x90\x9a\x8a\xbc\x8d\x02\x8b\xab\x80\xe9\x53\x46\x26\x01\x04\x67\x20\x41\xde\xc8\xdb\x94\x3f\x53\xa9\xfe\x60\x98\x32\x80\xe8\x13\xc7\x5d\x09\xd1\x41\x5f\x61\x58\xf3\xa6\xd2\x21\x75\x6f\x20\xa4\x81\xc0\x99\x17\x76\xda\x70\xd0\x60\x4f\x82\xea\x6b\xe5\x3f\x07\x4b\xf8\x62\x6e\xbe\x78\x5f\xe2\x1d\x23\xd1\x4d\x7d\xd1\x08\x98\x57\xac\x24\x64\x13\x07\x4d\x6a\x49\x55\x2c\xc2\xd8\x3f\x0f\x01\xab\xc1\x38\x7a\x37\xe0\x5f\xb9\xe0\xfa\x34\x0c\x84\xee\x7b\x45\x14\x90\x8a\x7a\x5b\x08\x17\x64\xe9\xae\x10\x7c\xd2\xc4\x1e\xd0\xf2\x78\x82\x22\xc8\x56\x51\x7e\xc6\x12\x19\x6e\x93\x7e\xec\x58\x67\x00\xb5\xdb\x34\x43\x32\x5a\xbb\x7f\xab\x28\x6b\xeb\xcf\x64\xd5\x64\x93\x2a\x21\xb6\x97\x16\x2c\x10\x00\x36\xba\x3d\xac\xdd\x00\x23\xde\x57\x07\x08\xb3\x4b\x53\x1b\x8d\xf1\x50\x7e\x41\xcc\xe5\xd8\x02\x12\x4f\x1e\xf8\x84\x02\x86\x0a\xa3\xb2\x86\x88\x1b\xbf\x32\xd9\xba\xe2\xd4\x6e\x59\xbb\x5d\x3a\x90\x6e\x0f\xe9\x45\xc3\xe8\xe2\xc4\xe0\xe5\x24\xce\xb5\x74\x1d\x30\x09\x33\xda\xc4\x10\xf4\x22\x01\xab\x1a\xe5\x2d\x30\x44\x89\xa1\x43\x7e\x0d\xe0\x84\xf2\x3d\x2f\x17\x25\xaf\xb3\xb2\xd0\x03\xe1\xc0\x25\x74\xb8\x2f\xbf\xae\x4b\x8a\xb7\xe0\x2d\x32\x35\x5c\x0b\x5f\xf0\xda\x79\xdf\x5a\xd3\x80\x21\x5b\xfb\xea\x5d\xc0\xd5\xb2\x06\x88\xa1\x93\xb0\x3a\x2e\x9a\x22\x31\x9b\x17\x01\xf9\x97\x2b\x15\xc5\x1c\xbf\x74\xa5\xa2\x68\xd7\xa5\x73\x19\xf2\xb2\x35\xc7\x04\xc9\xfe\x45\xe6\x98\x60\xe3\x4b\x3a\xea\xb0\x7c\xff\xab\xd5\x1b\x28\xad\xd5\x1b\x21\x13\x2e\x9b\xb8\x66\xbc\xc8\x8c\xbb\x35\xdc\x9a\x12\x60\x32\xe3\x11\x13\x7d\x79\x8e\xd5\x6f\x13\x6f\x66\x02\x20\xd4\xa5\xff\xf0\x44\x0b\x3e\xbd\x3b\xd3\x09\x4e\xef\xdc\x08\xba\x9a\xe5\x74\x30\x44\x1b\x8b\x90\x1d\x1f\xa8\x9f\x00\x28\x46\xdc\x82\xec\x02\x24\x55\xb7\x63\x07\xd0\x79\xee\x5c\xcd\x19\x02\xcc\xf8\x2c\x1e\x42\xc1\x26\x3d\x96\xf9\xfa\x92\xcd\x40\x02\x74\xf4\xb5\x5d\x09\x30\xb7\x6e\x0e\x01\xa2\x2e\xd4\x8c\xb1\x08\xae\x45\xd9\xe1\xfe\xae\x84\xe8\x2b\x36\x1a\xa0\x2f\xc8\x80\x7f\x90\x6d\x96\x92\x00\xf9\x0d\x34\xe4\x03\x39\xc3\x84\x0f\xc8\xae\x6c\x20\xf1\xcd\x9d\x1b\x26\x21\xe6\xce\x4d\x2c\x21\xe6\xce\x4d\x22\x21\xfa\xce\xcd\x8e\x6a\x1b\xb9\x73\xb3\x23\xab\xae\xf5\x7d\x9a\x3d\x89\x64\x6e\xe1\xa8\xe6\x1a\xe3\x18\x00\xe8\x25\x1c\xa8\xdd\xba\x96\x83\xb5\xd7\x99\x9a\x8e\xc3\x3d\x05\x28\x88\xd7\x05\x7c\x47\xaf\xe1\x40\xd1\xf4\x1a\x8e\xe0\xaf\x0f\x04\x00\xfe\x43\x9c\xde\xcb\x81\xe6\xa9\x7b\x39\x4b\x95\x10\xd9\x17\x98\x30\xf7\x72\x12\x09\x20\xf7\x72\x98\x06\xa9\x7b\x39\x70\x63\xe4\x03\x75\xcd\x00\x5f\x7a\x6e\x41\x80\xb9\xa8\x6b\x06\xe8\xd3\xdc\x82\xec\x23\xc4\xdc\xcb\x01\x6e\xc2\x7b\x39\x4b\xf8\x5e\xdf\x93\x83\x4e\x99\x6b\x72\x90\x24\xf7\x72\xa0\xa4\x34\xa7\x97\x6e\xa0\x2c\x7a\x55\x27\x55\x00\x6e\x43\x8c\x8f\x22\x10\x8a\xc5\x3a\xce\x5c\x22\xd3\xe4\x52\xf3\x58\x82\xe8\xa5\x66\x85\xa6\x07\x4d\x94\xfb\x81\xd9\xd9\x6a\x09\xd8\x05\xd3\x0b\x97\x01\x8b\xc1\xea\xf2\xe1\xf4\x27\x92\xe8\x3c\xd0\x18\x93\x9c\x76\xbc\x31\x92\xfb\x69\xd1\xca\xc7\x38\x8a\xdc\xf2\x63\x87\x36\x58\x7e\xec\xd0\x31\x57\xf0\x02\x6f\x99\x4b\xec\xd0\x13\xe2\xa4\x0e\x72\x88\x38\xa9\xc3\xce\x9b\x13\x27\x75\x50\x31\xb9\xe5\xa4\x2e\xca\xf8\x20\x1d\xd9\x7a\xc3\x18\xbf\x50\x49\x59\x40\xa9\x2f\x6b\x82\xec\x03\xc7\xda\x8e\xab\x4f\x87\x3a\xd3\xb9\xfb\x04\xd3\xb8\x65\x94\x1e\x58\xe8\x2d\x68\xec\x06\x70\x35\xb8\xae\xd3\x2f\x44\x3d\x36\x15\xd0\xfb\x4f\x43\xf5\xa1\x73\x01\x4a\xb7\xb5\xf3\x06\xd4\xbe\xc9\x6d\x5f\x81\x82\xad\xae\xce\x6d\xdd\x4a\xd9\x6d\xe7\xaa\x66\xea\x5e\xbc\x68\x8d\x34\xb9\x4a\x44\x7c\x2c\x91\xfe\x24\x4f\xfb\x54\xe2\x48\x8a\x9c\xf6\x45\xa8\x1d\x9a\xe5\xde\x4f\x4a\x54\x66\xc7\xc5\xa6\x43\x95\xd7\xba\xb7\x74\xa8\xfb\xec\xde\x4e\xda\x23\x19\x72\x76\xc4\x03\x02\xb3\x49\xa7\xfb\xda\xbe\xa0\x94\xe8\x8f\x3a\x0e\x08\xdd\x3c\xa5\x0f\x0d\xdd\x0c\xeb\x8e\x92\x1e\x8a\x8e\x4b\x4a\x10\x01\x43\x66\xb6\x9a\x99\x98\xbc\xd6\xf8\xee\xb8\x79\x4a\x5a\x31\x95\xd1\xfa\x64\x68\xe7\xd8\x43\xa8\xc2\x47\xe2\xbd\x1b\x9e\x55\xad\x08\x79\x20\x06\xe9\xb5\x10\x18\xe0\x9c\x38\x95\xc3\xa0\xe6\xda\x85\x1c\xe4\x4b\xeb\xa6\x46\x5f\x43\x2d\x48\x41\x9e\x1a\x81\xb5\x85\x5e\xa3\x48\x11\x60\xae\x51\x20\x06\xb9\x46\x01\x92\x9e\x5e\x05\xd8\x43\x80\xa3\x0c\x02\x09\x88\x32\x88\x05\xd3\x4b\x00\x58\xb2\x65\x25\x81\xf1\x13\xbb\x32\x2b\xc4\xc4\x21\x9c\xe6\x73\xac\x32\x90\x3f\xb5\xb5\x11\xae\xf4\xf1\x85\x7d\x92\x07\xfa\x08\x75\xd5\x87\xe9\xdf\xbe\xf4\x07\xec\x69\xb9\xda\xc3\x98\xb4\x94\x51\x90\x0f\xc4\xd5\x1e\xbf\xd3\xeb\x16\x48\x49\x3b\xc9\xd1\x71\xfe\x02\x7f\x9a\x45\xf0\x50\x01\xb8\x05\xb1\x5c\xd8\x61\x74\xad\xb9\x02\xad\x22\xb1\x7c\x0f\x65\x9a\x51\xce\xe7\x34\xb8\xef\x81\x04\x18\xff\xa3\x43\xf0\xa1\xfa\xd0\xe4\xec\x84\xe5\xf1\xad\x7a\x5c\xe1\x10\xec\xdb\xbc\xc9\xa9\x8b\x3a\x7c\x7d\xa3\x7a\x2b\xbe\xfb\x68\xa9\xbb\xa2\x3d\x95\x05\x11\x14\xa9\xc6\xa4\xa3\x80\x62\x1c\x4c\xa1\x41\x1f\xa9\x86\x02\x96\xce\xca\x82\xf4\x01\x47\x7d\x91\x40\xbe\xec\x21\x38\xe8\xd3\x83\x48\x58\x42\xe9\x39\x24\x24\xf5\xe6\x70\x07\x8a\xa2\xca\x0e\x43\x7c\x02\x99\x00\x8e\x89\xe2\xb0\x8b\x35\x12\x00\xd6\x41\xf6\xa0\xd8\x2b\xb3\x07\xdd\xc3\x34\xd9\x83\x1e\x02\xc4\x66\xc7\x21\xc0\xc8\x46\x0f\x6b\xd6\xca\x55\x1f\xf2\xb5\x72\x05\xc9\xb4\xac\x95\xa1\x26\x56\x00\xc5\x0e\xbb\x32\xad\x3a\x0f\x57\x0a\x2a\xcb\x17\x76\x57\x42\xb4\x0a\x7f\x00\x00\xa2\xb3\x1f\x28\x0c\xfb\xc2\x4c\x25\x35\xa5\x1b\xf0\xfa\x96\x4f\xb3\x1d\xc1\xcf\xea\xda\x1c\xb1\x40\x37\x99\x15\xd9\xbe\xbf\x27\x61\x85\x0d\xb8\x51\xcb\x2c\x68\xd8\x1f\xdd\x1d\x27\x20\x39\x40\x30\xea\x55\xad\x20\x8a\x95\x58\xdc\x10\xb0\x07\x4a\xd5\xc7\x97\xf4\xf5\x2b\x68\xd3\x8c\xbe\x7f\x75\x08\x38\x06\xe3\x00\x31\x74\x3e\x30\xe5\xac\xe4\x75\x67\x48\x76\xc8\xe9\xbc\xae\xed\x9e\x5e\x0f\x15\xac\xcb\x78\x0a\xc5\x74\x2b\x3e\x90\x65\xc7\x76\x87\x9b\x88\xd5\x4c\xbe\xf3\x23\x18\xf0\x63\x36\xd5\x11\x1f\x41\xbf\xa9\x08\x20\xd1\x80\x89\x82\x0c\x14\xe4\xca\x86\x98\xd3\x37\x4c\x12\x87\xec\x18\x21\xfa\x48\x7d\x28\xd3\x97\x0e\x40\x87\xa1\x66\x32\xad\x1f\xc8\xeb\x21\x40\xc7\x99\x4b\x65\x5a\x5f\xb0\x9c\x20\x40\xbb\x5a\xc3\xf1\x47\x95\xcd\xe9\x92\xb0\x83\x20\x1a\x11\x0e\x9a\xee\x86\x7f\x80\xb8\xab\xf8\x1c\x97\x62\x35\x18\x59\x01\xee\x64\xca\x79\x5c\xcd\xd4\x1c\x86\xcd\x6d\x35\xb7\x23\x29\x43\xcd\xee\x80\xce\x33\x55\xfe\x50\x02\x74\x10\x87\x18\x93\xda\x04\x96\xc8\xb4\x76\xe4\x4a\xf4\xcd\x9d\x8f\xef\x5e\x9c\x19\x0e\x04\xc4\x72\x52\x1b\x1e\x44\x48\x4e\xac\xfd\x13\x09\x51\x72\x7b\x07\xd3\xde\xc8\xfb\x4e\x94\xd7\x3a\x48\x82\xc6\xb4\x56\x60\xf8\x6a\x11\x6b\xbb\xe2\x1e\x0a\x5c\x80\x90\x88\x6e\x12\x68\xd9\xf7\xab\x4b\xf3\xb4\x20\xcc\x04\x00\xe8\xa3\x8b\xa1\xee\x1b\x79\x56\x77\x00\x0b\x31\x00\x34\xe2\x8e\x21\xc2\xa5\x79\x5e\x1c\x9a\x7b\x49\xdc\x2a\x26\x0a\xa0\x46\x13\xe7\xc0\xa5\xed\x41\x31\x21\x30\xcd\x98\x1a\x53\xb7\xa2\xa7\x00\xba\xb0\x81\x82\x50\x07\x2f\x02\x33\x85\x21\x26\x0d\xe7\x0b\x2b\xd2\x0a\x48\x47\xc4\x28\x14\x1b\x5d\x3e\x69\x0e\x9c\xaa\xad\x87\x7d\x92\xe9\xf8\xa1\xb5\x72\xac\x0f\x07\x3a\xfb\x53\x41\x1a\xb1\xa3\xba\xa1\xb4\x01\x64\xd7\xcb\x86\xf6\xa1\xba\x6c\xec\x6c\xd7\xde\xf3\xb1\x65\xa8\x83\x49\xdf\xd2\x8d\x60\xe6\xb5\xc5\x7e\x7b\xf6\x54\xb5\x6e\x11\xbe\x22\xf8\x51\x3f\xc0\x8c\x69\xfa\x20\xb3\x4a\x4f\x14\x00\xf8\xb2\xe6\x31\x78\x72\xd8\xef\x8a\xd3\x2c\x73\x5a\x93\x4a\x30\x6e\x85\xf0\xde\x1c\x61\x3a\xe8\xa2\x4e\xc2\x8e\xa3\x6a\xc6\x46\x26\x82\x23\x88\xe5\xeb\x83\x69\xed\x38\xb3\x27\xd3\xe6\x13\x94\xc5\xcd\x78\xde\xe4\x1a\xd4\x47\x90\xd6\x18\xc0\x56\x20\x00\xba\x9c\x18\x01\x44\x0e\x8e\x65\x53\xa9\x1c\x3c\x44\x10\xf5\x28\xc2\x0e\x18\x88\xea\x83\xe5\xb0\xb3\x47\x60\x97\xb4\x2b\x1d\x8e\x89\x06\xd7\xbc\xd0\xa7\x9a\x87\xc0\x4b\xa7\x17\xe6\x0c\x07\x54\x64\x01\xd1\x2f\xbd\xa5\xbb\x0a\xa2\xef\x9e\x21\x7d\x12\xe7\xa4\xe4\x40\x42\x95\x72\x34\x96\x69\xe7\xa4\x04\x96\x42\xdb\x67\x12\x50\xbb\x1d\x26\x49\x46\xfb\xa4\x84\x16\x65\x3b\x49\xca\xaa\x89\x73\x95\x84\x38\x27\x25\xb1\x02\x93\x93\x92\x3d\x05\x73\xb5\xc1\x26\x69\xe9\x7e\x4d\x32\x3b\x9b\xc5\x96\x79\xa9\x52\xf6\xa2\x01\x5c\x9a\xf9\x68\x27\xab\x46\x6d\xd2\xf6\x70\xb5\x6e\x16\x7d\xe0\xeb\x31\x56\xb1\x90\x51\xb8\x07\x98\x1a\x62\x0a\x09\xae\x7d\xc2\x40\x3a\x99\x47\xe8\xb0\x5c\xf2\x26\x2c\x6c\x69\x05\x84\x8c\x22\x8e\x0e\x71\x23\xc3\xb4\x66\xdf\x7d\x99\x26\xd3\x60\x07\xab\xb1\x3d\x4c\x09\xcc\x62\x3a\xf9\xfd\x4c\x1f\xb9\xef\x27\x87\x0a\x64\x5a\x21\xb1\xe8\x25\x5e\xa4\xd9\x82\x4e\x36\xd9\x79\x33\xd9\x12\x09\xd0\xad\x95\x1f\x91\xc9\x96\xe0\x08\x2f\xda\x6d\x25\x33\xab\xaf\x71\xcc\xc4\xd8\x27\xb0\x4b\x87\x3a\xf6\x14\x1a\x53\xe0\xa5\xd3\x36\x32\x85\x24\xa9\x49\xb7\x77\x14\x44\x4f\x21\xa8\xc0\xf2\x99\x52\x10\x2d\xbc\x81\x7c\xd4\x67\xea\x50\x61\xd8\xb7\xe6\xab\xeb\x82\x28\xf4\xc0\x54\xdf\xa4\xff\xd0\x0d\x3c\x01\x78\x16\x43\x43\xfe\xa8\xbd\xd0\xab\x63\x3e\xd5\x0e\x05\x20\xe1\xcf\x62\xe5\x33\x07\x77\x80\x6b\x9d\x84\xf1\xaf\xb5\xc9\x00\xdd\x0f\xce\xac\x8d\x1e\x60\x58\x90\x5d\xc0\x21\xbb\x33\x38\x4e\xaa\x2d\xc8\x10\x70\xb4\x2a\x85\x08\x5a\x8f\x82\x64\x6a\x1e\xed\x12\x54\xaf\x59\xae\x8f\x60\x87\x70\x34\x7c\xe6\x6e\x3f\xc4\x30\xd6\xee\xf6\x43\x8c\x77\x3d\x63\x9c\xc9\x87\x41\x06\xe0\x36\x02\x90\x49\xa9\x9f\xe8\x02\xe0\xd9\x0a\xa0\x09\xb6\x78\x80\x9f\x9a\x68\x8b\x1a\x50\xdd\x2a\x9f\xa8\xb4\xaf\x60\x57\x36\x24\x4b\xbe\xda\xb7\x45\x0f\x14\xd8\x51\xe8\x5b\xf7\x0e\x77\x27\x3a\x38\x71\xeb\x52\xe1\x21\x16\x42\x9e\x2e\x41\xc8\x57\xe3\xca\x88\xf5\xb4\x6a\x79\xf9\xee\xc3\x5b\xe4\x10\x06\x08\xf2\x4d\xa4\x1b\x30\x14\xd5\xee\x7b\x76\x54\xb8\x0e\x35\xc0\x72\x07\x1f\x2a\x68\xcb\x51\x7c\x57\xe5\x58\x5e\xe2\xd0\xae\x6c\xce\x2a\xad\x30\xc7\x38\x5c\x00\x93\x58\xb0\x1d\xd1\x16\x94\x1b\x10\x1f\x90\xd4\x01\x2e\x11\xc1\x0e\xe7\x5a\x97\x4c\x1d\x68\xc0\x4e\xb1\x2e\x17\x63\xc5\x4f\x43\xd8\xbc\xd6\xe5\x82\x5c\xeb\xee\x23\x44\xd5\x09\x03\xdf\x52\xce\xc7\x88\xe4\x28\xe7\xbb\x12\xaa\x1d\x3f\x62\xb0\x06\xd6\x65\xa5\x5b\x00\x23\x62\x1d\x9a\x03\x0f\xf2\x58\xd1\x02\xa3\xf2\x9f\x7d\x78\x76\x72\x4a\x01\xb5\x65\x32\xdd\x05\xd3\x90\x82\x19\x53\x33\xbe\x07\xd5\xf6\xb6\xc5\xc8\x07\x9d\xce\xb6\xe3\x1d\x92\xa3\x8d\x95\x09\x01\x12\x07\x5c\xb4\x51\x75\xfb\xdf\xaa\x26\xe9\xc9\xba\xcb\x64\x29\xcc\x29\x95\xec\xe4\x62\x30\xcd\x9d\xf1\x6c\x41\xde\x7a\x96\xb3\x5c\x00\x0d\x9e\xac\xb8\xd2\xfb\xa7\x14\x01\xb5\x09\x76\x31\xc4\xcf\x16\xec\x9b\x3e\xa5\x19\x82\x03\xf8\x59\x4b\xe9\x05\x32\xb5\x94\x5e\x51\xc7\x19\xb1\xe0\xec\x21\x96\x16\x46\x20\x20\x89\xe5\x01\x56\xf8\x9a\x98\x1e\xc0\x60\x76\x46\xa3\x63\xec\x61\x19\x14\x02\x6c\x7b\x9d\xdd\xe8\x2b\x78\x40\x96\xeb\x72\xc6\xe2\xb4\x75\xdb\x92\x99\xbc\xf6\xcd\x4a\xc1\xee\x9f\x88\x47\xac\xa0\x65\x43\x3c\x62\x31\x6d\xd6\x90\x3e\xe0\x9b\xb4\xa0\x42\x43\x96\x14\x95\x5f\x92\x78\xe5\x82\x26\x9f\xc6\x24\xa2\xa8\x68\x51\x43\x00\x60\x82\xfb\x44\x5f\x9a\x80\x0e\x35\x16\x44\x0c\xd6\x27\xe3\x8b\x2b\xc8\xd4\x18\x5f\xdc\x31\xe4\x6a\xb2\x0f\x21\x57\x53\x1d\x92\xf4\x79\x53\xc1\x68\x9f\xa8\xa7\x2d\x98\x92\x1b\x0b\xd2\x07\x08\x31\x7e\x42\xb3\xad\xd3\x3a\x68\xb7\xbb\x70\x1c\x00\x9a\xb3\x70\x08\x1e\xfa\x44\x3c\x65\x05\x4d\x1a\xe2\x29\x0b\x69\x72\x82\x07\x2d\x26\xef\x93\xc2\xac\x6c\xc8\x75\x61\x50\xc9\x1a\x1a\x54\x0a\x7a\x60\xbd\x8b\x99\x68\x88\x89\x43\x23\x61\xe4\x81\x3a\x28\x99\xc6\x80\x12\x1d\xf8\x44\x1c\x62\x41\xaf\x6c\x28\x00\x88\x2f\x9d\x12\xc1\x9f\xe4\x53\x91\x2a\x27\xc4\x2f\x3a\x49\x1d\x10\x27\x14\x4a\x3c\x10\x77\x15\xbc\xc3\x05\x11\x46\x9c\xec\x5f\x41\x02\x01\x80\xc4\xb1\x80\x63\xf0\x4f\x24\xfe\x31\x58\x86\x1a\x0a\x80\xcf\x5a\xf2\x17\x08\xd1\x92\xbf\x62\xae\x49\xbb\x1b\x79\xb1\x11\x8a\x5c\xc4\xae\x35\xae\xc3\x40\xf7\xc9\xc2\x4a\x09\x96\x6b\x49\x04\x1e\x14\x4a\xb6\xf3\x10\x24\x50\xa4\xf5\xd2\xa4\x04\xbb\xd8\x29\x82\x3b\x8e\x96\x81\x3d\x16\xed\x87\x1d\x91\x91\x16\x1d\xcf\x3a\x22\x47\x2d\x5c\xd2\x2e\x16\x1d\xc1\x95\xf6\x54\x4e\xdb\x7c\xb9\x0f\xa5\x18\xff\x22\x6c\xa1\x4e\xa7\x03\x99\x3f\xa3\x80\x4f\xd6\xc6\x3d\xde\x95\x38\x06\x24\x8b\x71\x0f\x1d\x35\x54\xad\xb5\xf8\xa5\x1c\x2b\x7d\x9e\x09\x53\xd2\x7a\xa7\x31\xd5\x10\x33\x35\x24\x8c\x4c\x0d\x20\x80\x39\x99\xeb\x23\x55\x29\x00\xa8\x49\x4e\x60\x60\x22\x7f\x6a\x45\x55\x86\xb9\xd9\x5a\x2c\x60\x5e\xd1\xa7\x19\x41\x1a\xd3\xf8\xd4\x70\xe0\xd2\x58\x10\x90\x14\xe4\xc8\x67\x57\xa6\xf5\x09\x8f\x58\x8d\x1b\x22\xb3\xa1\xf7\x9f\xb4\x47\x31\xf0\xbd\xf6\x28\x86\x94\xfd\x92\xa3\x18\xc0\xab\xb8\x98\x72\x7d\x92\x96\x00\x84\x77\x58\x57\xae\x62\x4e\xa3\x3a\x43\x07\xae\x62\x5e\x94\x42\x89\x54\x17\x78\x7a\x12\xd3\x31\xc1\x08\x88\x06\xec\x49\x40\xcb\x0f\xee\x8a\x2c\x36\xf0\x15\x59\x6c\x64\x29\xc6\x4d\x01\x34\xaf\xab\x98\x5b\x86\xf0\x81\x84\xb5\x0c\x18\xda\x08\x49\x73\x8d\x25\xc3\xce\x76\xb7\x6e\x9d\xb9\x66\x0f\x47\xb3\xa9\x8e\x9f\xca\x16\x76\x5c\x67\x1a\x0f\xec\x2c\x7a\x6b\x09\x36\xec\x57\x5a\x22\xc5\xe0\xd1\xf8\xd9\x68\xba\xe0\x22\x26\xf2\xf5\xdb\xe2\x82\x4d\x3e\x1b\x3f\x6a\x28\xdb\xf8\x51\x43\x92\x5e\x32\x02\x00\xbd\x63\x04\x15\x50\x0c\x28\x90\x62\x8c\x15\x86\x32\xae\x40\x24\xbd\x2b\xc6\x74\xb3\x06\xe0\x76\x66\xde\x6f\x07\xe5\xf9\xb3\x39\xcf\xec\x63\xae\xd1\x19\x63\x00\x98\x57\x44\x06\x70\x10\x7d\xc5\xe4\x9b\x1a\xf7\xf0\x39\x7d\x60\x03\x6b\x04\x4e\x95\x99\x35\xcd\xea\xb8\x32\x3a\x24\x60\x19\xc6\xe4\x9e\x80\x3e\xb2\x45\xcc\x63\x7d\x36\xbf\xbf\x7b\x40\x32\xad\xfd\x46\x0f\x33\xda\x81\x59\x44\x27\x3e\xbb\x4a\x81\xa0\xde\x95\xab\x14\xc0\xa0\x92\x40\x10\xc8\x01\xf4\x62\xa1\xb9\x1d\x78\x45\xef\xf0\x99\x8b\x78\x9f\x5b\xeb\x1a\x4c\x9a\xd6\xba\x06\x93\xda\xf5\x51\xbd\xa2\xd1\xe5\x80\x30\x2d\xc1\x05\x43\xd4\x12\x5c\x30\xac\xb6\xf5\xd2\x30\xbc\x6d\xc4\xa4\x70\x6a\x80\xb1\xe1\xac\x3d\xaf\x3e\x5b\xfc\x09\x9c\xf1\x2d\x9b\x7e\x8b\xa7\x4a\x2a\x09\xd0\x2f\xe4\x50\x16\x3c\x02\xaf\x29\x40\xc8\x87\x6b\x96\x9a\x69\x02\x27\xbb\xe4\xc9\xec\x01\xb8\x93\xff\x42\x00\x60\xf5\x01\x0c\xcd\x94\x87\x00\xc9\xf4\x4d\x02\x7c\xbd\xf3\x17\x77\x84\x45\x73\xae\xdd\x11\x16\x4d\xfa\xa5\x35\x44\x82\xa9\xaf\x5b\x43\x24\x4a\xbd\xb6\xea\xb8\xe6\x94\xd9\xae\x39\x53\xf1\xff\x25\xe4\x97\xd6\x70\x09\x96\xb8\x6e\x0d\x97\x90\xdf\x37\xe6\xe4\x06\x24\xe2\x8d\x79\xc5\x73\x17\xde\x31\xb8\x31\x27\x36\xa0\x68\xdd\xd0\x37\x82\x05\xb7\xfc\xea\xf6\x58\x70\xc1\x8d\xdb\x63\x41\xf3\x9b\x19\x79\xe4\x77\x1f\x00\xcf\x0c\x40\x10\xea\x57\x25\xf8\x61\x77\x72\xa3\xdf\x25\x85\x54\x4e\xbe\x86\xe2\x72\xf2\xb5\xa0\xcb\x8d\x8e\xe7\x85\x21\x30\x6f\x48\x18\x1c\x68\x94\xb9\x22\x17\x03\x2f\xfd\xda\x1a\x02\xe8\x71\x6b\x08\x0e\x11\x6a\xf6\x8c\xf0\xfc\xc6\x4d\x49\x76\x88\x70\x41\xe5\x86\xbe\x62\xbc\x07\x00\xd2\x44\x51\xca\xaf\xad\xa1\x01\x9a\xb6\x86\x26\x05\xa8\x39\x2d\x8b\xe1\x80\xe3\xa6\xa1\x6d\xd8\x01\x08\x19\x0d\x28\xea\xca\x96\xa3\x37\xd7\x2e\x17\xff\x46\xb6\x75\xa2\x9a\x5b\xb2\xad\x13\xe9\xdf\x9e\x99\xfd\xd2\x04\xf3\xf5\x86\x49\xa4\x7f\xa3\x53\x49\xb4\xea\x96\x02\xf6\x01\x43\x17\x30\x86\x7c\xfd\x3d\x24\xf1\x71\x85\x1b\xd0\xc9\x7e\x73\x99\x47\x8c\xdb\xad\xcb\x3c\xa2\x96\xdf\xcc\xeb\x40\x70\x8d\xf6\xd6\x3c\x0f\x04\x7e\xa9\xbf\xb5\x62\xd8\x88\xce\xde\xb6\xc6\x52\xb0\xd9\x6f\xad\x51\x10\xb4\xbc\x6d\x8d\x82\x60\xbb\xdf\xc8\xf6\x51\xa4\x6f\xc9\xfe\x11\xd3\x4a\x67\x02\xe2\xc8\x94\x20\x85\x60\xc9\xdf\xa9\xd3\x0b\x1c\xca\x7c\xb3\x20\xa2\x35\xbf\x53\xc3\x26\x9c\x35\x7c\xb3\x20\x0c\x70\xf4\x92\xbd\x0f\x08\x7a\xc9\x16\xc9\xdf\x4d\x14\x5e\x30\x73\x7f\x23\x69\x41\xd0\x6f\x8c\xbc\xa9\x00\xab\xed\xef\x8c\x97\xbf\x64\x69\x3d\x6b\xc5\x0e\xfb\x9d\x58\x22\xf7\xe0\x5b\x63\x88\x84\xb4\x3b\x38\xd0\x00\xed\x73\x8a\xa5\x1b\x43\x06\xac\xb7\xdf\x8c\x1d\x03\xc6\xd2\x7a\xef\xbb\x0f\x5c\xf8\xad\x35\x50\xd0\x18\xe3\x11\x06\x87\xfd\xbf\xb7\x06\x4e\x30\xd1\xb7\xd6\xc0\x89\xa1\xf8\x76\xfd\xa7\xea\x17\x54\x70\x5d\xe8\x74\xe2\x2d\xff\x11\x2c\xc3\x49\x53\xc0\x61\xac\xcf\x82\x3b\xb6\xcd\x6e\x16\x25\xaf\xab\xe8\xe7\x8f\xef\xde\x6e\x2f\x62\x5e\x31\xff\x1f\x77\x5e\x0c\xd1\x74\x36\xbc\xd0\x53\x51\xf9\xfe\x41\x1f\xbc\xd3\xc1\x47\xc9\x8d\x01\xa7\xec\xb0\x0e\x8b\xe0\xce\x6b\x2a\xb6\x56\xd5\x3c\x4b\x6a\xef\xe8\x2a\xe6\x6b\x3c\xaa\x67\x59\xb5\xb1\x21\xfe\x6e\x7f\xf9\x92\xcd\x45\xed\x27\x6c\x12\x37\x79\x7d\x7f\x4f\x9b\xc6\x59\xdd\xf0\x62\x8d\x6d\x6c\xb0\xed\x2f\x5f\x58\xf5\xa6\x4c\x9b\x9c\x1d\xb3\xd1\x5d\x8a\xe8\x23\xb6\x5c\x1e\xbd\x1b\xff\xc9\x92\x7a\x3b\x65\x93\xac\x60\xef\x79\xb9\x60\xbc\xbe\xf5\xeb\xd0\x33\x9f\x78\xe1\xdd\x55\x9c\x37\x6c\xb4\xde\x5b\x06\xd0\x88\x32\x4a\x7c\xee\x17\xfe\xfe\x20\x08\xb6\x65\x69\x41\x98\x45\xb9\x5f\x06\x47\xf5\x36\x2b\x92\x32\x65\xbf\xbe\x79\x1d\xcd\xfc\x32\xcc\xf0\x9b\x58\x7d\xd3\xa7\xdf\x54\x51\xee\xc7\xc1\x91\x6a\xf7\x5a\x42\x5a\x2e\x9b\xf6\x95\xdd\x56\x3e\x0b\xb6\xab\x92\xd7\x7e\xb0\xcd\x59\xda\x24\xcc\xf7\x75\x57\x81\x4e\xf2\x93\xfa\x9c\x9d\x17\x17\x17\x91\xb7\xe1\x6d\x16\x9b\xde\x91\x17\xd6\xcb\x20\xbc\x5b\x06\x4b\x5d\x43\x2e\x6a\x10\x0d\xaa\xa3\xf3\x8b\xb0\x88\xce\x2f\x8e\xba\xeb\x9b\x94\xfc\x34\x4e\x66\xa4\x26\xd3\xb4\x7e\x14\x45\x6c\x3b\x67\xc5\xb4\x9e\x1d\xd7\xdb\x8b\xa6\x9a\xf9\x62\x10\x37\x59\x30\x2a\x30\xc9\x82\x65\x10\x84\xc5\x76\x53\x54\xb3\x6c\x52\xfb\xde\xb9\xb7\x59\x6f\xff\x59\x66\x85\xef\x79\xc1\xa6\x77\xe1\x05\x61\xc1\xae\xd7\x3e\xb0\xe9\xe9\xcd\xc2\x2f\x64\xd6\xbd\x17\x84\xde\xd4\x0b\x96\x8a\x8c\x2f\xcf\x80\x8e\x71\x58\x21\x1d\x9b\xe8\xbb\xf3\xff\xfb\x47\x6f\xeb\x8f\x9b\xfd\x17\x17\xdf\x4d\xc3\x45\xf4\xdd\xf9\x1f\xcd\xc9\x41\xaf\xb7\xf5\x47\x73\xf2\xe3\x8b\x17\x17\x22\xf9\x1c\x93\x2f\x5e\x08\x1c\x43\xde\x89\xe9\x83\xb7\xf1\x6f\x37\xde\x26\xdb\x4e\x66\x31\x7f\x5e\xa6\xec\x59\xed\xf7\x82\xed\xba\xfc\x58\x8b\x0d\xa9\xdf\xdf\x13\x09\xd8\x94\x3f\x8f\x2b\xe6\x07\x82\x9a\x86\x8a\xa9\x60\x50\xbb\x28\xbf\xdf\x1b\xec\xfc\x87\xef\x94\xb8\xb5\xbb\x3b\x38\xdc\x0b\xec\x8a\xfa\xc1\xd6\xee\xde\x70\xd0\xdb\xdc\xdb\xdd\x1d\xee\x3d\xbd\xd6\x19\xad\x75\x4d\x8f\x8b\x19\xff\x62\x1b\xae\xee\x25\xcc\xaf\x43\xc2\x21\x66\x32\x9c\xd7\x17\xcb\x20\xd0\x58\x8b\x30\x35\x89\x26\x9c\x04\xcb\xa5\xa0\xf1\x58\x73\x72\x95\xc4\x0b\x16\x75\x4d\x2b\xfd\xd9\x38\x9c\x3c\x58\x60\x6b\x4e\x1b\x99\x51\xc9\x29\x5d\xf8\x7b\xbb\x41\x58\x46\x85\xdf\xdf\xd9\x0f\xb6\x7f\xe1\x59\x1d\x8f\x73\x16\x66\x00\x39\x08\xb6\x91\x3c\x27\x4c\x30\x04\x0f\xe3\xa8\xf0\x77\x06\xc1\xf6\x8f\xcd\x64\xc2\xb8\x19\xdd\x0a\xc9\x23\xca\x2c\x22\x14\x10\x20\x90\x78\x24\x18\x8d\x43\x6e\x18\xcb\x9c\x14\x0b\x83\xac\xec\xa8\xdc\x4e\xe2\x3c\xf7\x45\x56\x78\x87\x59\x58\x67\x35\x5a\xef\x2f\x83\x10\xbe\x29\x8b\x84\xf9\xde\x24\x2b\xb2\x6a\xe6\x11\xfa\x06\x77\xc5\x36\x2b\x52\x3f\x86\xbf\x81\x60\xfc\x65\xe1\xef\xf4\x03\xbf\x0a\xcb\x20\xac\xb6\x17\xbc\xac\xcb\xfa\x76\xc1\xb6\xbf\x5c\xf3\xac\xa6\x04\x95\x24\x59\xcb\x8a\xaa\x8e\x8b\x84\x95\x93\xb5\x78\x63\xc3\x67\x76\x2b\xb7\xe1\x33\x9f\x05\xb2\x25\xb2\x5f\x1a\x1c\x16\x7e\x17\xa5\x2d\xe9\x59\x13\x29\x18\xad\xf7\xc2\x5a\x49\xa1\xe8\xaa\xcc\xd2\xb5\x9e\x1c\x8b\xd8\x2f\xfc\xfe\xde\x6e\x20\xc6\x03\x7f\xef\x05\x42\xb6\xe1\xef\xfd\x80\x08\xab\xf8\xc9\x62\x96\x0e\x91\x92\x3e\x9e\x02\x7a\x51\x14\x09\xe2\x94\x93\xb5\x37\xf1\xe2\x58\x0c\xc8\x9b\x78\x31\x92\xad\xc2\xf2\xfd\xca\x62\xc2\x6c\xe2\x17\x4d\x9e\x0b\x29\x74\x7f\xef\x17\x11\x0b\xb7\x84\x48\x7a\x21\x51\xf4\x84\xc2\x51\x2d\x82\xed\xac\x48\xd9\xcd\xbb\x89\xef\x9d\x17\x10\x03\x74\x4d\x90\xf5\xc2\x0b\x82\x40\xb5\x1f\xba\x5f\x1c\x65\x13\xdf\x34\x6c\x5d\x37\x8c\x05\xf5\x8c\x97\xd7\x6b\xa2\x71\x67\xb7\x0b\x76\xca\x79\xc9\x7d\x3c\x6a\x5f\x63\x37\x0b\xce\xaa\x4a\xf4\x6f\xde\x54\xf5\x1a\xcb\xea\x19\xe3\x6b\x63\xb6\x26\x1a\xb9\x56\xf2\xb5\x58\x4f\x56\x2f\x80\x2a\x9a\x02\x57\x9c\x94\xd4\x51\x43\xbf\xea\xed\x59\x2c\xa8\xa4\x1a\x56\x6f\x4f\x59\xed\x33\x31\x1b\x2b\xf1\x23\xe4\x44\x98\x73\x5f\x0f\x40\xe2\xb3\x30\xe6\xd3\x66\xce\x8a\xba\x0a\x1b\x60\xe5\x60\x3b\x29\x8b\xaa\xe6\x4d\x52\x97\x3c\x58\x4a\x4c\x6e\xf8\x31\x92\x32\x3f\x81\x08\x6a\x3e\x33\x39\xe1\x1d\xf9\x74\x24\x17\x40\x1e\x32\x88\xd4\x22\x26\xe7\x68\xbd\x1f\x5e\xcb\x89\x3a\x5a\xef\x85\x49\x59\x4c\xb2\x69\x23\xf3\x7a\xcb\x65\x10\xe6\x3e\x0f\xc5\x32\x20\xd6\x02\xba\xc2\x85\x64\xc9\xf2\x93\x88\xcc\x23\x9b\x34\x86\x2f\x3e\xb0\x49\xce\x92\xfa\xfe\x7e\x5d\xfe\x32\x1d\x93\x74\x5a\xef\x0b\xba\xb6\x72\xb7\xab\x59\x3c\xb7\x50\xba\xd8\xee\x3d\x2f\x6f\x6e\x15\x56\xef\xa8\xe6\xb7\x8a\xaa\x27\x71\x4d\x88\xe2\xf0\x55\xab\x36\x5f\xa0\x87\xe7\x17\x96\x6c\x58\x06\x41\x10\xae\xf7\x96\x49\x5c\x27\x33\x33\x63\xd6\xfb\xcb\xa5\x1f\x1c\xb7\xca\x18\xb9\x93\x18\xa7\xe5\xb9\x60\xa5\x8b\x23\x0e\x8b\xeb\x76\xbc\x58\xe4\xb7\x3e\x0f\x6b\xa5\x8f\x14\xec\xda\xd7\xdc\x3f\xce\x8a\x54\xa2\x08\x76\x09\xd4\x02\x5f\x6c\x6c\xe4\x7e\x19\x16\xa6\x43\x41\x58\x2e\x03\x89\x2a\x2a\x30\x1c\x64\x6b\x0c\x66\xd5\xf1\x73\xc5\x33\x15\xab\xdf\xab\x72\xde\x4d\xa8\xee\x45\xd6\x28\x21\x13\xa0\xb6\x2f\x5f\xa2\x3a\x64\x82\x17\xc2\x9a\x94\xdd\x18\x82\xf8\x4d\x77\xc9\xc7\x12\x3a\xb5\xa0\xa3\xce\x35\x49\x57\x76\x7f\xdf\xf9\x95\xaf\xd8\x51\x50\x6d\x61\x89\x14\x10\x4a\x61\x41\xa5\x5b\x1d\x16\x21\x0f\xcb\x30\x0b\x2b\xcc\x4f\x8e\x34\xd3\x32\xb2\x60\xd4\xc1\xfd\x3d\x4e\xb7\x22\x9e\xb3\xc8\x7b\x5e\x55\x1f\x6f\x8b\x3a\xbe\x01\x29\xe1\x85\xc9\x36\x67\x71\x55\x16\x51\x1d\x66\x1b\x1b\x7e\xb2\x3d\xc9\x72\x16\x65\x41\x58\x42\xaa\x2a\x1b\x9e\xb0\x48\xac\x14\x90\x5e\xe4\xcd\x34\x2b\xa2\x2a\x08\x3b\xc5\x44\xb1\xb1\xd1\x09\xe7\xf0\x71\x9e\x15\x2c\x2a\xc2\x64\x3b\x29\xf3\x66\x5e\x44\x3c\x08\x13\x41\xd0\x37\xac\xaa\xe2\x29\xf3\x83\x10\x1a\xb5\x9d\xc4\x8b\xba\xe1\xec\x63\x1d\x27\x5f\xcf\x78\x9c\xb0\x8d\x8d\x15\x19\xbe\x23\x78\x51\x2e\x0b\xd1\x4b\x64\xe2\x07\x36\x61\x9c\x15\x89\x12\x8c\x82\x1c\x6b\xb3\xb8\x2a\xfe\x51\xaf\x8d\x19\x2b\xd6\xb2\x22\xab\xb3\x38\xcf\x2a\x96\xae\x6d\xad\x55\x42\x6e\xfa\x81\x85\x21\xe8\xc9\x52\x4f\x73\x2b\x5b\xfa\x49\x10\xc6\x41\x98\x2c\x85\x80\xf7\xeb\x28\x0e\x56\x4a\x2e\x8b\xa7\x6b\x32\x63\x89\x14\x8b\xea\xb0\x26\xec\x58\xc0\xd4\xa9\xa2\xd8\x60\xff\xff\xd9\x7b\x13\x2e\xa7\x71\x6d\x61\xf4\xaf\x24\xfe\x7a\xb9\xa5\x13\x25\x24\x74\xd3\x83\x83\xc8\x83\x82\x3e\xcd\x3d\x14\x70\xa1\xe8\xe1\x84\x1c\x96\xcb\x51\x12\x37\x8e\x1c\x6c\xa5\x06\x2a\xbe\xbf\xfd\x2d\x6d\x0d\x96\x6c\xa7\x80\xbe\x7d\xbe\xef\xdd\xf7\xde\xea\xd5\x54\xac\x59\x5b\xd2\x9e\xb4\xf7\x96\xe9\xba\x74\x20\xe6\xa2\x27\xa0\xbd\x5b\x9d\x0e\x1f\x6a\xad\x66\xce\xef\x41\x10\xf5\x82\x28\x08\x88\x5b\x78\xa0\x4a\xcb\x75\x9f\xd9\x5f\x51\x70\x3f\x29\xcb\x5e\xca\x77\x7b\x21\x85\xa2\x4e\x9a\x20\x0b\xcb\x35\x0d\x43\xe4\x37\x18\x44\xc1\xc0\xe6\x0e\xec\x97\x5a\x76\x4c\x9a\x85\x7b\x3a\x5f\xed\xc4\x8a\x94\xa3\x72\x93\x5f\xbe\x86\xad\x27\xb9\xd2\xf6\x59\x80\x21\x4b\x8c\xd9\x87\x8a\x6a\x97\x6a\x24\x19\x28\x61\x4c\x73\x59\x2a\x6b\x9a\x1a\x86\x22\x0c\xbb\xb1\x38\x03\xc6\xa6\x30\xc5\x46\xa5\x58\xe6\x7b\x81\x89\x4c\xe7\x14\x8d\x89\x6d\x01\x23\x8e\xb1\x91\x9b\xf8\xa8\xdc\x65\xa9\x40\x77\xde\x16\xb3\xb7\xfc\x8e\x14\x9a\x4e\x63\xb1\x19\x6d\xe3\x2b\x64\x21\x30\xfc\x86\x8c\x31\x49\x74\x4e\xca\xeb\x9c\xc1\x5d\x12\x6b\x51\x05\x93\x8c\x6a\x4e\x3b\xc1\x3a\x6d\xea\xe0\x22\xe1\xb2\x33\xb9\x1d\x67\xc1\x96\x33\xef\x6b\x74\x9e\x67\x4b\x24\x70\x24\x6a\x4c\xb6\x3b\x56\x7b\x5d\xc4\xd7\x33\xff\x53\x55\xd5\x85\xe3\x51\x99\xa5\x09\x43\x25\x49\xf0\x68\x1b\xef\x5c\x81\xab\xc6\xff\xe5\x60\x32\xe0\x24\xa7\x41\x2f\x18\x20\xf9\x4f\x81\x75\xbd\x61\x86\x07\x41\xef\xd0\x0b\xe4\x5a\x15\x12\xda\x30\x6d\x55\x31\xa5\x3b\x94\x5b\x86\xfc\xce\xdb\xe5\x9d\x35\x09\x7a\x01\x96\x02\x89\xaa\x2e\x19\x41\xb5\x69\x86\x93\x9a\x75\x97\x32\x96\x58\xe8\xc2\xe6\x58\xec\x51\xf0\x20\xc0\x83\x1d\xca\xf1\x80\x0d\x82\xb7\xbc\x17\x0c\xd2\xc1\x1e\x05\xff\x0a\x0c\x73\x21\x47\xa6\xf2\xa5\x98\xa1\x44\xba\xb7\x3c\xc0\x72\xc3\x19\xe2\xe9\x9e\x28\x39\x46\x7d\x94\xfc\xfd\x88\x6a\x3c\x00\xbb\x26\x78\xcb\xdf\xf2\x40\x75\x1b\xe8\xed\x2d\xb1\xed\xa0\xde\xda\x66\xb7\xb3\x8a\xc4\x15\x2a\x11\xa0\x22\x2c\x19\x27\xc3\xe8\xee\x48\x2d\x7b\xd8\xd4\xbf\x86\x6d\xbe\x49\xf2\x2c\xe7\x91\x1c\x0d\x91\xcc\x26\x17\x51\xd0\xeb\xf5\x7a\x01\x39\x07\xb3\xb5\xc7\x2c\xc9\x22\x39\x76\xfd\xfd\x6a\x2f\x11\x40\xfd\xfd\x62\xc7\x78\x14\xd8\xe2\x27\x59\x5e\x7a\xf9\x27\xf9\x76\x0b\x8d\xca\xa4\x78\x25\x58\xa1\x7e\x42\xe8\x83\x47\xf9\xf2\x5a\xa2\x9c\x44\x15\x7a\xc6\x56\x02\xda\xd2\xdf\x70\xab\x0c\x09\x25\xdb\xa6\x6a\xa0\xfd\x49\xa5\x59\x07\x67\x35\xec\x66\x96\x32\x85\xc2\x76\xe7\xfb\x34\x93\x62\x12\xab\x14\x52\x60\x6d\x6c\x29\x0f\xb2\x5c\xd7\x74\x75\x4d\x7d\x26\x40\xb6\x30\x67\x23\x59\x78\xa1\x08\x3f\x11\xa3\x22\xcf\x85\x87\x6d\x54\x3f\xf9\xf2\x5a\x0a\x32\x6c\x54\xc4\x97\xe5\x08\x66\xa8\xb5\x3c\x7a\x08\xc8\xcd\x82\x96\xf4\xf4\x8e\xa0\x2e\x59\x1a\x31\xf5\x6e\x5f\x40\x02\x07\x36\x01\x26\xdc\x2b\xa2\xee\x06\x6d\x19\x80\x57\x80\xa7\x5e\xef\xc1\x9d\xbf\x05\x03\x31\x60\x23\xc1\xae\xc4\x80\x0f\x82\xbf\xdd\x09\x24\x77\x0b\x1b\x22\xc9\x1a\x33\x77\xb0\xa3\xee\xe3\x9c\x89\x4b\xc6\x38\xf4\x92\x49\x39\x80\x14\x0a\x98\xbb\x01\x1f\x98\x82\xbf\x48\x36\x5b\x96\x06\x7e\x3b\xc0\x53\x36\x52\x1a\xae\x98\x4b\xac\x5a\x0c\xa8\x06\x82\x4d\x3d\x1c\x82\x5e\xdf\x7e\xc9\x93\xa1\xca\x05\x53\x73\x4a\xcc\x04\x0a\x3d\xda\x42\x6e\xe4\x36\xfc\xb3\x3c\x79\x2f\xc7\xde\x1c\x49\xc9\x32\xe5\x5d\x8b\xed\xe2\xe4\x97\xfc\xb5\xd9\x48\xdd\x6b\xe4\x96\x20\x8c\x04\x8c\x2f\x03\xe8\x3c\x16\x8d\xee\x6b\x60\x05\xff\x57\x30\x60\x70\xa6\x15\x64\xe2\x22\xde\x96\xb3\xd6\x78\x54\x7a\x80\xa3\x20\x38\x2a\x49\xb9\x3b\xe5\x79\xbc\x65\x33\x6e\x01\x67\xd3\x22\xc9\x2f\xf1\x81\x44\xa8\x72\x62\x3c\x5f\xb2\x12\x7b\xa0\xe0\x83\x02\x4f\x59\x56\xb2\x1b\x75\x50\xcc\xe4\xf4\x4a\x1e\x0e\x41\x80\x07\x48\xcc\x82\xa9\xa4\xf7\x8d\xed\xc2\x07\xc5\x20\x97\x10\x97\xb3\x96\x9b\xdb\x03\xf9\x2a\x2f\x90\x39\x4f\xd0\xb3\x26\x46\xc3\xc9\x54\x3c\x18\x87\xa1\xd9\x89\x01\xe8\xd9\xa0\xc4\x5c\x2c\xe0\x20\x4d\xb1\x18\xd2\xc9\xd4\xb4\xe0\x6f\x32\x7b\xbe\x61\x7b\x8d\xa7\xc5\x7d\xbf\xfd\x69\x31\x18\x60\x3d\x1d\xd3\x6e\xb1\x20\x69\xdd\x48\x2e\x77\x2a\xd8\xd9\xe2\x69\xda\x58\xdc\x54\xef\x28\x7b\xdc\x51\x4e\x44\x9f\xd2\xe2\x70\xe0\x7a\xa2\x12\x74\x5d\xab\x4b\x8a\x23\x87\xa1\xc6\x7e\x4d\x08\x8a\x41\x31\x08\x6e\x02\xb9\x7d\x4a\x11\x17\xa2\x5e\xa6\x30\xf4\x67\x35\x43\x1e\x0a\xf1\x41\x02\x0b\x1e\x60\x1c\x75\x25\x93\xc0\xe2\x4f\x89\x14\x1a\xf3\xe5\x8d\x13\x14\x54\x81\xb7\x99\x8b\xf8\xb2\xa5\xc9\x01\xd8\xca\x8d\xc9\x41\x31\x21\xe0\x40\x76\x6d\x52\x94\xeb\x2d\x39\x17\x0b\x2b\xec\xe7\x53\x45\xb4\x61\xfb\x33\x2e\x60\x87\xeb\xf5\xa0\x94\xf2\x30\x44\xfd\xf4\x70\x08\x24\x0e\x95\x09\x29\x6c\x89\x30\x4c\x47\xab\xb4\x28\x05\x30\xe5\x35\x8b\x26\x79\xb7\xd4\x34\x5d\xcc\xf9\x42\x33\x54\x0c\x70\x30\x02\x4d\x44\x2c\xc7\x70\x12\x27\x1b\x76\x38\x38\x1f\xf4\xa6\x3a\x22\x7e\xd4\x65\xe6\x7c\x81\x2d\x0f\xe3\x24\x36\x07\x7d\x38\x68\x68\xcb\x0f\xab\xd6\x00\xc0\x42\xa1\x87\x32\x13\x78\x1d\xc5\x91\x93\x84\x06\x45\x7c\x19\x0c\x10\x2a\x29\xc7\xf3\xf1\xa2\xa1\x13\x2d\x35\xeb\x32\xa9\x45\x5b\xa0\x34\xc9\x62\x96\x53\xfd\x0b\xc5\x84\xe1\x28\x1e\x5d\xc6\xd9\x7b\xd4\x14\x61\x3e\x77\x3d\xfa\x93\x0a\x7b\x60\xa8\x79\x59\x29\xba\xe5\x54\x02\x15\x13\x6f\xf6\x34\x27\xb9\xde\x1c\x16\x05\xb6\x29\x94\x65\x6e\xba\x07\x78\x64\xa3\x87\x61\x20\x69\x8d\xc2\x0a\x59\x5c\x0a\xbd\xfc\x9d\xf3\x11\x06\xe5\x59\xa4\xe0\x4f\x4b\xe8\x51\x3e\x31\x27\xe0\xcf\x8f\x72\x5c\xa3\xa9\x7a\xa4\xb7\x8e\x49\x11\xf1\xce\xf1\x3c\x05\xee\xe9\x88\xce\x19\x68\x1f\x14\x98\x79\x5f\x11\x6a\x8d\xd1\xb2\xce\xdc\x39\x4c\x45\x18\x16\x7d\x4a\x59\x18\x16\x3a\xb5\xfe\x45\x21\xbd\x5b\xe6\x36\x98\x5f\xee\x57\x83\x40\xbd\x44\x2d\xa3\x00\x77\x6a\x37\x25\x45\x82\xe6\xf3\xdc\x22\xf7\x85\xcf\x60\x97\xc0\x60\x07\x98\xf4\x27\x15\x40\x40\x1d\x00\x03\x88\x47\x2e\xe3\xd7\x85\x54\xfd\xe5\xd1\x05\xcb\xcf\xda\xed\x3d\xe6\xcd\x48\x35\x34\x9c\xf4\x29\x45\x9c\xfa\x79\xb5\xee\x54\xce\x0d\x44\x35\xee\x4d\x83\x2f\x06\x5f\xdd\x91\xf3\x80\x89\x1c\x3b\x30\x7c\xe6\x20\x60\x41\x40\xdb\x14\xd4\xbc\x71\x80\x23\xde\xd1\xb6\x01\x11\x26\xdc\x83\xca\xe3\x23\x2c\x97\x0f\x12\x59\xea\x7f\x20\x3c\xa4\x6c\xf0\x85\xf0\x78\xd5\x64\xea\x6e\x3f\xbf\x5c\xa9\xd0\xcd\xf9\x45\xe6\x88\xf4\x41\xa1\xce\x14\x35\xe9\x4b\x74\xfd\x59\x07\xc2\x05\x97\xf0\xcf\x45\x1b\x5c\x82\x8a\xdb\xc1\x25\x3a\x0a\xd5\xf3\x6e\x9c\x0e\x29\x27\xfd\x55\xe8\x15\x38\xaf\x4f\xf1\x93\x8d\xc9\x7a\x59\xff\xde\xb9\x4a\x26\xe9\x8b\xa7\xaa\x08\x86\x5c\xd7\xcf\xa2\x15\x9a\x31\xeb\xc6\xcc\x27\x9f\x43\xcb\xfe\xcc\x99\x53\x7d\x5a\xac\xe9\xa7\xfb\xb0\x89\x1c\x9c\x69\x86\xe6\xb0\x11\x9d\x38\x81\x53\x87\x6c\xca\xbe\x67\x0e\x27\xd8\x81\x88\x7c\xee\xfb\xb6\x0a\x1a\xe7\xca\x3a\x35\xc3\x23\x8e\x95\xd6\xe7\xfa\x58\x5b\x72\x2b\x07\xd8\x72\xf6\x85\xe5\x02\x49\x2e\x59\xf9\x30\x54\x6c\x9f\x64\xb8\xb5\x24\x90\x0f\xe8\x84\x14\xb4\x70\x08\x1c\xec\x4b\xee\x6f\x44\xa3\x0a\x6a\x75\xac\x68\xa7\xba\x92\x4a\x8d\x8e\xcc\xf4\x1f\xd3\xf1\x34\xbe\x9f\x4f\xe3\xc1\x00\xf3\x01\x4d\x8d\xbe\xca\x20\x1e\x90\xc8\x3a\x25\x39\x36\x17\x0b\x90\xe1\x34\x3b\x65\x36\x88\x24\xbe\x23\x90\x6c\x25\x27\x38\x2b\x64\x7e\xc4\x2b\xc2\x2a\xe4\x6a\x69\xf2\x7f\x9b\x96\x86\xe4\x14\x15\x94\xa3\xef\x7f\xc0\x58\x8e\xc5\xb9\xaf\x2c\xea\xfb\xca\xa2\xd2\x5c\xf8\x51\xcd\x48\xad\x02\x07\xdd\xd4\x7c\xa1\x05\x85\x0b\x56\x94\x69\xce\x69\xf0\xfd\x68\x3c\x9a\xfc\xa0\x75\xc0\x4a\x2f\x5c\x2a\xf0\xf3\xbc\xd8\xc6\x59\xfa\x91\x99\x5b\x88\x23\x2a\x95\x7d\xd9\x79\xed\xde\x6e\x50\x7f\x8c\x92\x9c\x27\xb1\x40\x8d\x4e\xe6\x6c\xa1\xef\x8c\x2b\xa5\x16\x4f\x58\xe9\x5f\xa5\xda\x99\x09\x57\x81\xa9\xef\x84\xe0\x7a\xc3\xb9\x13\xb2\xc3\xeb\xd2\xe5\xd9\xba\xd6\x9c\x41\x4a\x49\x95\xa7\xcf\xac\xbb\xb0\x30\x54\x28\x50\xca\x1b\xf0\xe5\xce\xc9\xf0\x92\x48\x28\xcb\xa2\x82\xd4\xba\xa6\x94\x15\xca\x80\xc4\xaa\x56\xd5\x68\x41\xcd\x24\xe7\x5c\x43\xa1\x43\x41\x04\xa6\x2f\x8c\x14\xf4\x61\x51\xc4\xd7\xa3\xb4\x84\xbf\x52\xe2\x93\x67\x4d\x1e\x01\x4e\x8b\x19\x8f\xf8\xfc\xf5\xf5\xf6\x3c\xcf\x46\xa9\x60\x60\xc8\xbc\x40\x78\x3a\xd5\x07\x0a\x18\x4a\x40\x6f\xf9\x03\xca\xcd\xf9\x39\x2f\x58\xfc\x7e\x9a\x52\x3e\xcf\x07\x83\x45\x05\x0a\x84\x74\x85\x90\x64\x18\x39\xbb\x12\x08\xe3\xd1\x32\xe7\xcc\x16\xcc\xd5\x99\xa8\xd4\xa1\x4b\x95\x54\xb6\xcb\x4b\x91\x94\x92\x36\xc7\xd4\x7e\x61\x12\xe4\x70\xed\xe1\xf0\x11\x71\x18\xfa\x73\x88\x0d\xf8\x30\x96\x94\x45\xef\x8b\x3a\x15\x54\x1a\xbd\x23\x37\xa1\x31\xd6\xd6\x3c\xb1\x56\x7d\xc8\x72\xba\x4f\x47\x06\x3c\x1c\xfa\xb1\x5a\x92\x30\xec\xc7\xb5\x42\xc0\xb9\x11\x52\x17\x41\xf1\x20\xe8\xa5\x65\x8f\xe7\xa2\x17\xf7\x5e\xe6\xa5\x38\x79\xfd\xba\xa7\x46\x12\xe0\xca\xee\xa7\x16\x0e\x48\xff\x7d\x9a\xda\x12\x0c\x19\x7e\x00\x03\x07\xf9\xfb\xdb\xef\xc1\xbe\x01\x41\xfa\xf7\xf7\x30\x26\xea\xd7\x77\x18\x63\x12\xab\x22\x3f\xba\x66\x0f\xe5\x97\x9b\x3d\x24\x6a\xeb\xd7\x4a\x9b\xf1\x94\xdf\x17\x46\x29\xc3\x8d\x52\xa6\xa0\x42\xca\xcf\xc5\xa8\xbe\x66\xa7\xee\xc7\xe1\xd0\x9f\x90\x62\xe4\x5e\xb5\xcb\x89\x6a\x6d\x61\x0a\x18\x16\x29\xab\x10\x9d\x87\x49\xb7\x81\x1b\x23\xc5\xe8\x3d\xbb\x26\x05\xae\x1a\xa6\x61\x5a\x7b\xd0\xda\x67\x92\x75\xe8\xd8\x30\x6c\x24\x36\x8c\x57\xca\x32\xab\x1b\x61\xc2\x35\xaa\xa3\x19\xf1\x74\x48\x29\x5b\xd2\xfe\x44\x23\x4a\x85\x9e\x54\x4a\x7b\x04\x3c\x0c\x25\xd9\xea\x83\x1e\xc4\xaa\x40\x38\xd0\x42\x9c\x53\x6e\x37\x36\x77\xad\x69\xd8\xe1\xe0\x7d\xd7\x77\x4c\x20\xc1\xe5\xb9\x20\x7c\xb4\x8d\x77\xc7\x2e\xad\x0a\x9d\x09\x7f\x01\x4d\xc1\xaf\x51\xca\xb3\x94\xb3\xc3\x01\xb9\x9f\xb4\x3f\x31\xf9\xbb\x82\x5d\x50\x68\xd9\x51\x22\x96\x34\x36\xdd\x4f\x8b\x51\x09\x97\xc4\x61\x88\x4a\x6a\x3e\xd4\xa1\x92\x6d\x28\x84\xa7\x33\xd5\x07\x98\x12\xa9\x43\x87\x4a\xaa\x7f\x63\x30\x57\x80\xad\x2c\x57\x53\x59\x19\x24\x5a\xab\xcb\xe4\x21\xa4\x49\x55\xe9\xbb\xbf\x52\x9e\x06\xb0\x78\xaa\x91\x26\xc9\x65\x3d\x7d\xfd\x4d\x4a\xb2\xef\x22\x48\xfb\xd1\x65\x5c\xf0\x94\xaf\xcb\x0e\x8c\xaf\x16\xf4\x9a\x27\x08\xdb\x62\x12\xf7\xef\x6f\x23\x13\xea\xb6\xb2\x2c\xa1\xd8\xc6\xe3\x6c\x1d\x2a\x01\xa5\x62\xdd\xb6\x2c\xa6\xaf\x11\xf6\x23\x98\xe8\x51\x12\x69\xaa\x18\xa3\x0b\x59\x63\x95\xf2\x38\xcb\xae\x3f\x59\x47\x77\xa3\x2a\x6d\x62\xbe\xcc\xd4\xad\x76\xf3\x72\xa3\xb8\xbe\x31\xbb\x59\xc1\x99\x91\xe6\xd5\x3f\xf0\xdd\x3c\xde\x82\x50\xa5\xd0\x9e\x36\xf2\xd1\x18\xfd\x17\xc5\x31\xe0\x29\xd0\x89\x9e\x29\x44\x6d\x81\x97\xf0\x4d\x98\x77\x87\xaf\x57\x99\x63\x30\xd2\xc9\x33\x16\x86\xfa\x87\x1a\x49\xe3\x13\x81\x76\x76\xaf\x26\x78\x96\x76\x6b\x68\xed\x75\xaf\x43\x81\x1f\x50\xf7\x5c\xe6\x45\x83\x30\x7b\xba\x3c\xe7\xf0\x8e\x09\x43\x6a\x5b\xd6\x16\xbb\xed\x46\xe6\x4e\x47\x0b\x92\x6b\xee\x74\xcf\x51\xa1\x15\xc1\xfa\x3e\x9d\x4e\x48\x86\x72\x3c\xcb\xd5\xc2\xf8\x66\x77\x76\x4a\x48\xd3\x7d\xbd\xe2\x9e\xfc\xc1\xdd\x55\x04\x93\x18\x65\x03\x53\x8f\x57\x28\x73\xd5\xa8\xde\x07\x75\x9b\xaa\xc1\x54\x9f\xa8\x46\xb5\xd4\x81\x6c\xf7\xbd\xe6\xb4\x13\x48\x60\xe5\xf6\xb2\xc8\xb7\x69\xd9\xb2\xe5\xd5\xab\x36\xe3\x48\xff\xc2\x91\x40\xcc\xd1\xba\xe3\x7a\xac\xba\xc1\x94\xaf\x67\x8d\xef\x08\x35\x12\xe8\x2d\x5d\x82\x4c\xac\xfa\x32\x5c\xbe\x4d\x98\xda\x4d\x39\x26\xcc\x01\x8e\xac\x28\x01\xde\x5a\x15\xcb\x07\xfa\x5b\xc2\x9d\x40\x65\x0c\x19\xeb\xe1\xc1\x69\x6b\x82\xd1\x6e\x47\xd3\x92\xb7\xe5\x14\x3e\x9b\xb6\x0a\xc1\xd2\x34\x5a\x6f\x32\x26\xc1\x9b\x92\xf5\x74\x3e\x92\xac\x95\x9a\x47\x72\x8e\x7b\x22\xef\x5d\xe6\xc5\xfb\xde\x65\x2a\x36\x3d\x98\xaf\xe6\x58\x4a\x25\x29\xd5\x27\x5e\xb7\x5a\x27\x4c\x9d\xfb\x6c\x35\xba\xf6\xbe\x27\xa2\xc1\x74\xc2\x95\x85\x62\x3a\x19\x15\x33\x16\xb1\x5b\x98\xce\x02\x46\xa0\xd4\x37\x0f\xac\x0d\xb6\xe6\x25\x0b\xca\xe6\xdc\x63\x3a\xb9\xc4\x3f\x6d\xa6\xb3\xa0\xdc\x61\x3a\x73\x0a\xad\x2a\x6b\x26\x38\x82\x39\xc6\x7f\x15\xc4\xaa\xf6\x8a\xc9\x95\x2e\xf6\xbc\x7d\x09\xa9\x41\x96\xc5\xa5\x50\x78\x8f\x32\xd7\x18\x8f\x21\xb7\x14\x90\x6e\x27\xc1\x9c\x54\xb8\x77\xb6\xcb\xe2\x9e\x7c\x41\x18\x26\x02\x0e\x6c\xc7\x8d\x75\xbd\xdb\x1c\xde\xa4\x6b\xbf\xb5\xf9\x17\xbd\xdd\x14\xfd\xe8\xd8\x03\xf9\x4e\xc8\x65\xb7\x92\xca\x94\xd5\xb4\x5f\xca\x7f\x9a\xf6\xd7\x6c\xb4\x73\x5a\x52\x60\x02\xa0\x94\x2b\xf9\x38\x97\xee\x5a\x85\x54\xd7\xd6\xb6\x39\x60\xf4\xec\xd0\xf9\xdb\x80\x07\x43\xc4\xa3\x35\xe3\x72\xc7\x39\xd6\x17\x6e\x99\xa4\x2c\x29\x9f\x8f\x17\x5e\x45\xc9\x15\xf1\xf9\xc4\x4b\xac\x88\xa0\x8c\x20\x4e\xe7\x37\xef\xd9\x75\x14\xd8\x33\x10\x90\x35\x73\x2c\x1c\x7d\xfa\xdb\x3c\x30\x55\x45\x54\x75\x39\xb6\xcf\xa9\x29\xcb\xd9\x4a\x49\x79\x7b\x1d\x07\x1b\x01\x1b\x62\xeb\xe5\x5c\x30\x2e\x3e\xbf\xae\x2a\x6f\xeb\x6f\xe3\xdd\x67\xd7\xdd\xc6\x3b\x5b\x0f\xf8\xd9\x5b\x2b\x2a\xee\x44\x96\xab\x3b\x53\x1c\xc1\x27\x66\xaa\x2a\x9a\xb2\x55\xb5\xc0\x61\x98\x20\xc7\x4a\x8e\x70\xb0\x3d\x4c\x90\x20\x25\x6e\x8a\x62\xfb\xcf\x13\xc5\xc4\x48\x19\xef\x9c\xc6\xbb\xbf\xab\x5d\x94\x17\x94\xa3\x1f\xc6\xb8\x23\x83\x38\xa5\x4f\x72\x5e\x4a\x01\x87\x4a\xa1\x6b\x82\xdb\x19\xb6\xf0\xf3\x7c\xc9\xa0\xd4\xb7\xd8\x49\x69\x0f\xc5\x38\x15\xfc\x30\x51\x4e\x05\xdf\xfc\x80\xc1\x95\xe0\x87\xbb\x78\x04\x28\xf7\x35\x13\xe0\x44\x30\xf9\x7e\x8c\x47\xa7\xf1\x6e\x97\xf2\xf5\xb3\xb4\x14\x0d\x19\x4f\x72\xf7\xea\x26\x54\x19\xdd\x83\xd9\x66\x3e\x5a\x33\xf1\xb0\x58\x23\x46\x02\x99\x10\x80\x2e\xcd\x14\x51\xa6\x70\xaf\xf2\x5c\x78\x05\xeb\xe4\x46\xf1\xf7\xe9\xee\x97\x38\x4b\x97\xf0\x1e\x86\x5f\xc5\xcb\x0a\x88\x94\x2c\xdc\x3e\x4a\xc5\xc7\xeb\x34\xc9\x63\xfa\x29\x5b\x35\x2d\x95\x18\xfb\x55\x4f\xd4\x9e\x2d\xa9\x1c\x4b\xe5\xf9\x27\x18\x15\xd6\x37\xa4\x1c\xad\x8a\x7c\x6b\x57\xa3\x43\x89\xc2\x46\xf5\xbc\x88\xc2\x37\x25\xba\x01\xd3\x46\x06\x16\x8e\xa4\xce\x8f\x44\x55\x5b\x74\x8d\x58\x9c\x6c\x34\xdc\x7d\x56\x4d\x1b\x53\x19\x3c\xb4\x8c\x6e\xa4\x58\x15\x31\x8b\x99\x96\xcf\x52\xce\x88\x32\x58\x73\x93\x4f\x20\xa5\xaa\xa6\x4a\x44\x34\x43\x03\xc1\x4d\x1b\xd8\x9a\x34\xa2\x8a\x08\x37\x2f\x1f\x15\x2c\x03\xcf\x00\x24\x88\x49\xc5\x52\x0e\xcb\x8b\x74\x2d\x05\x07\x6a\x46\x62\x12\xfc\x81\x98\x54\x3d\x0e\x62\x86\x21\x17\x06\x3a\x02\xd3\x60\xf5\x0d\x7e\x51\xf1\x72\x69\x20\x50\x00\x3f\x64\x86\x57\x76\x78\x5e\x15\x46\x85\x5b\xe8\xf9\xc1\xe8\xd3\xc6\xb0\xa1\x5d\xb3\xc6\xe0\x46\x90\xe2\xc3\xc1\x49\x8a\x97\x4b\x64\xdd\xd1\x4c\x7f\x7a\x33\xfc\x94\x17\x92\xf3\x56\xcd\xc7\x61\xc8\xa5\xc4\xf1\xda\x2d\x81\x0a\x12\x2b\xa7\xae\xca\xf3\x69\xa9\x67\xd2\xb1\x47\xdc\x2d\x6d\x17\x0b\x0c\xb0\xdc\x1c\x03\x3d\x73\x3a\x8a\x8e\xd3\x63\xf2\x52\x2f\x4f\xc2\x53\xe7\x4c\xbb\xce\x94\xb2\xcc\x1e\xbd\xbb\x50\x29\xcc\xc0\x5c\xd9\x76\xa7\x58\x2f\x14\x28\x4e\x8c\x6d\x68\xd1\x38\x69\x00\xca\x02\x9b\xa6\x5c\x68\x02\xcc\xa1\x85\x14\x16\x44\xb7\x60\x2c\x65\xd4\xb9\xb4\x4b\xe1\xa6\xa9\xb5\xc0\x8d\xd3\x0a\xc9\x37\xde\x66\x8f\x94\x3d\x27\x69\x6c\xf5\xc8\x98\x6d\x12\x77\x43\x46\x6a\x30\x5c\xae\x1f\xd4\xf2\xf7\xa5\x9b\xad\x6b\xab\xd9\x44\x05\x91\xc3\x8a\xd2\x0a\xfb\x8b\xdb\xdc\x04\xdd\x0a\x7f\xbd\x6d\x9a\x38\x10\x2e\x30\xdd\x3d\xda\xc8\x27\xdc\x82\x4f\xcc\x50\x27\x8a\x3a\x1c\xba\xd3\x9b\xf6\xdf\x72\x03\xe0\x6e\x2c\x37\xcf\x47\x22\x7f\xcd\x84\x5e\x1b\x8e\x17\x54\x68\xf1\xa9\x59\x34\x0c\xd1\x92\x65\x4c\xb0\xde\x67\xb6\x04\x3a\x6b\xd7\x71\xb2\xb3\x1e\x76\x34\xd9\x47\xf1\x30\x6e\x40\x1e\x34\xf0\x5d\xe8\xd7\x25\x72\x20\xfd\x28\x57\x28\xe1\xb8\x45\x29\xf4\xdb\x62\xe1\xbf\x6e\x53\xe2\xa3\x1d\xf6\x0a\xf6\x61\x9f\x16\xac\x34\xee\x4c\x31\xef\xb1\xab\x5d\x96\x26\xa9\xe8\xa9\xf1\xf7\x00\xc7\xf7\xf2\xa2\x27\x36\xcc\xa4\x6d\xe3\xdd\xdb\xaf\xcb\x9e\xa2\x8d\x52\x5e\x00\x85\xe3\xa8\xf7\x28\x17\x9b\xde\x25\x2b\x58\x2f\xdf\xa6\x42\xb0\xe5\xe8\x6b\x2c\x05\x16\x18\xa9\xd6\x7d\x37\xf7\x47\x8d\x8d\x50\xe1\xee\xa3\x18\xbc\x5a\x94\x42\x4d\xd1\xbc\x44\xfb\xf1\x35\x4e\xd3\x9e\x97\x79\x21\xd8\xf2\xa7\x16\x46\x35\xce\x56\x1a\xff\x53\x89\x01\xf4\x4e\xf4\x30\xbc\x41\xbc\x35\x86\x7f\x99\x97\xa9\x6c\x42\x22\x4c\x45\x13\x44\x27\x4d\x10\x4d\x9a\x60\x90\x6b\x5a\xd3\x26\xdb\x7f\xea\xd3\x26\xee\xe6\xe5\xca\x8e\x9a\x13\x51\xd3\xa5\x1a\x30\xa2\x83\x84\xc5\x6e\x51\x7f\x74\x34\x55\x78\xa1\x39\x3a\x9a\x1a\x84\x60\x06\xa9\x29\x97\x50\x94\x2b\xd5\x94\x0b\x56\x2a\xa3\xa6\xfd\xa9\xda\x6f\xd9\xe1\xa0\xb0\x5c\x86\xe5\x2f\x89\xc4\x32\xe3\xae\xab\x1a\xd0\x05\xf7\x87\x43\x02\x05\xf7\x58\xfe\x92\x05\xf7\x58\x33\x58\x4d\xfe\xa6\xf4\x78\x9b\xe4\x56\x02\x29\xcc\x81\xe8\xa0\x6a\xc2\x00\x1e\x2c\x3e\x6b\xf8\x3a\x80\xf5\x21\xda\x00\xa5\xc1\x2b\x2d\x7a\x08\x24\xd7\x0c\xde\x3f\xbc\x4d\x7a\xd3\x38\xbe\x44\x5d\x1b\x89\x30\x0c\xf8\x7e\x7b\xce\x0a\xd7\xe5\x43\xfb\x7b\x74\xe5\x68\xef\x8e\x96\x68\x6e\xd6\x12\xaa\xf6\x62\xbe\xec\xd9\x14\x55\xa5\x17\x17\x0c\x6e\x61\x54\xa3\x65\x6f\x38\xec\x5d\xe7\x7b\x79\x3e\xcf\xe3\xf3\xec\xba\xb7\x65\x31\x17\x52\x90\x97\xa7\x13\xce\xb3\x69\xa1\xa7\x4f\x53\x8f\x71\x91\x16\x2c\xbb\x56\xed\x73\x59\x29\xde\x41\x51\x4b\x9a\x7a\x3b\x7d\x38\x46\xbd\xa7\xab\x5e\x99\x93\xde\x2e\x2e\x4b\xe5\x06\xb9\xd2\x78\xa2\xd5\x6e\xca\x4b\xc1\xe2\x65\x2f\x5f\x49\x1c\xa3\xd4\xfe\x4a\x95\x00\xc6\x99\x12\xbf\x40\x03\xa0\xb0\x28\x47\x4a\x09\x83\xfa\x48\xc2\x08\xde\x2c\x4b\xe1\x1e\x26\x50\x33\xd5\x5f\x0c\x40\xf1\x60\x2c\x7f\xa9\x8c\x07\x74\x2c\x49\xf0\xe1\xc0\x0f\x87\x02\x87\xe1\x27\x1a\x10\x4e\xa6\xf0\x32\xc5\x91\xd6\xc3\x50\xd8\x64\xe1\x26\xf3\x0e\x65\xca\x53\x0e\x3b\xc4\x00\x21\xea\x05\x03\x88\xa0\x50\x8b\x87\x0e\x13\x6c\x18\xe9\xa8\x26\xf6\x91\x50\x04\xbb\xa8\x9a\x74\xe3\x5d\xc9\x8a\x14\xee\x3d\x4f\x8d\x08\xe0\xde\xcb\xe8\x2b\x28\xb5\x0d\x53\x12\xd3\x31\x29\xe9\x84\x24\x74\x4c\x32\x3a\x26\x7b\x3a\x26\x3b\x3a\x26\x2b\x1a\x04\x64\x49\x1b\xf8\x54\xe4\x4a\x65\x85\xc9\x86\x8e\xc9\x39\x5d\x9a\x2b\xac\xcd\xfd\xf3\xe9\x66\x30\x50\x9a\x44\x59\x15\x09\xba\x9c\x6f\x16\xd8\x67\xdc\xfb\x94\x96\x60\x60\x10\xd3\xf1\x54\xb4\xf3\xa6\x98\x81\xe9\x3a\x29\x07\x03\x7b\x9d\xb3\x79\x30\x86\x76\xfb\xf9\x28\xc9\xb7\xbb\xb8\x60\x8f\xae\xff\x6e\x6a\x1a\x6c\x5c\x3e\xe5\xab\x4c\x26\x20\x41\x96\x73\xb0\xb5\xc3\x52\x34\x4f\xf9\x9e\x4d\x65\xa3\x24\xa8\xd8\x00\x6e\xd3\x92\x7c\xc9\x90\x68\x8a\x0e\xc3\x18\x7c\xc3\x9b\xc9\x86\x3d\xa9\x71\x76\x4a\x7d\x36\xd0\x98\x5a\x58\x94\x4b\xdc\x7e\xd2\xe1\x0e\x93\x1d\x4d\x89\xdf\xb9\x8b\x92\x87\x93\x61\x86\x49\x46\x9b\xa9\x47\xaa\xe8\xe1\x26\x98\x24\xb4\x99\x6a\x47\xab\x91\xb7\x71\x83\x57\x2c\x67\x3d\x52\xc0\xe5\x5e\xfb\x7c\xb8\xc7\x64\x4f\x25\x43\xb6\x1a\x50\x66\xb4\x76\xab\xc6\xde\x32\xd0\x79\xed\x31\x30\xdd\x77\x37\xac\xe9\xcd\xa4\x56\xb1\x9b\x43\x32\x6a\xe7\x7d\x96\x4d\x6b\xf9\xac\x21\x98\x31\x6c\x74\x5b\x3e\x23\xc6\x70\x23\x86\x45\x3d\xe2\x4d\x5c\xbe\xb8\xe4\xe6\xde\xb3\x76\xda\x6c\x8d\x80\x70\x3c\xeb\x66\xfa\xf8\x02\xd8\xe6\x6e\x44\x2f\x72\x79\x6c\xdb\xaa\xff\x1b\x2d\x48\x6b\x3e\x53\x7f\xe9\x73\x5c\xfa\xdc\xa7\x73\xac\x60\xa1\x22\x77\xd1\xea\x3c\x73\x0a\x4d\xe5\xe6\x31\x47\xb8\x9a\x3a\x60\x34\xec\xb8\xe4\xaf\x24\x28\x95\xd7\x69\x9d\x66\x39\xef\x36\xd3\xee\x0a\xf6\xad\xfc\x23\x5c\xb6\x53\xcd\x6e\x0b\x55\xb0\x7b\xcf\xd4\xa5\x89\xdb\x9d\x14\x84\x9b\x10\x3e\x7a\x87\xd8\xc0\x98\xd0\x9d\x5a\x10\x84\xc1\x42\xbf\x43\x25\x55\x1e\xd7\x17\x4d\xbe\xfb\xb1\x0e\xdf\xd2\xe5\x1c\x2c\x11\x5b\xde\x69\x99\x7c\x7f\x3c\x9b\x0c\xd0\x90\xdd\xbf\x3f\xc1\xd1\x78\x80\xe0\x47\x25\x37\xe6\x32\xbf\x11\xf4\x9b\x49\x98\x13\x94\x3f\x78\xf0\x80\xde\xc3\x92\x3e\x20\x71\xa0\xdf\xdc\xc5\x84\xbb\x47\x1c\x57\x97\x9b\x34\x63\x28\x7f\x30\xae\x7d\xb6\xb5\x83\x91\x3f\x22\xc7\xd7\x00\x70\xb8\xb9\x07\x20\x25\x1d\x4b\x54\x2e\x7b\x95\xfc\xc5\x03\x1a\xb7\x49\xcf\x93\xab\x1d\x4b\x24\xb1\xde\xe6\x05\xeb\x2d\xd3\x75\x2a\xca\x5e\xca\x7b\xe7\x71\xc9\x7a\xdf\x7d\xdb\xfb\xe5\xd9\x7f\x2a\x5a\xab\x49\x2d\x84\x56\x40\x29\x38\x6e\xc2\x40\xbd\x58\x26\x62\x30\xc0\x5d\xb7\x05\x86\xc0\xc9\x56\xbf\xfb\x56\x75\x23\xa9\x9c\xaa\x2c\x2b\x0e\x27\x18\x4f\x73\xda\xef\xa3\x6f\xee\x86\x29\x26\xe5\x80\xa2\x34\xa4\xdf\x4c\xf0\xfd\xfb\x09\x49\x06\xf4\x9e\x81\x07\x9e\xea\xeb\x8a\x2e\x25\xd4\x83\x07\x93\xa9\x13\x96\x06\x4d\x42\x86\x67\x43\x11\x89\x0a\x95\x98\xf0\x51\xc1\x4a\x41\x45\x47\x74\x0c\xb3\xec\xdf\xfc\x80\x49\x4e\x3f\x81\x39\x48\x4a\x3b\x6d\x18\x4f\xe3\x9d\xeb\x32\xae\x2f\x32\xde\xc5\xf2\xcc\xd2\xf9\xc2\x9c\x15\x26\x68\x6a\x23\x5b\x74\x88\xae\x55\x0c\xda\x36\x38\xea\x0d\x6c\x5a\x1b\x8d\x28\x4d\x5e\x41\xc7\x24\xb7\x2b\x3e\x2d\xee\xe7\xe0\xd5\x03\x1a\x25\xc4\xe6\xc5\x82\x08\x77\xf7\xc4\xae\x30\xef\x19\x43\xd9\xdd\x9b\xce\xec\x28\xa1\x48\x54\xfb\xce\x3b\x10\x78\x2e\xd1\x11\xb2\x25\x8d\x4c\xeb\xf7\x10\x2f\x97\x9d\x1a\x82\x74\xc6\xa2\xa2\x81\xb3\x49\x4c\x75\xcf\x2a\xe2\x45\x94\x7b\xe8\x99\x09\x50\x4b\x53\x07\xa0\x66\xce\x71\x18\xf6\x85\x51\xa7\xa8\x1c\x1d\x73\x88\xc4\x87\x03\xf2\xe6\x03\x31\x33\x4a\x2b\xef\x33\x31\xe7\x0b\x2a\xb1\x78\xec\xaf\x75\x33\xbe\x48\xea\x5d\xfd\x40\x5b\x6a\x98\xca\x46\x9f\x36\x67\x63\x40\xde\x9a\x84\x68\xf4\xa5\xa9\x70\xbb\x3f\xd7\x77\x11\xfa\xd3\x81\x3f\xd4\x41\x1e\xdb\xf1\x54\xd6\x9c\x84\xb7\x47\x91\xae\x50\x07\x18\x5b\x73\x99\xf3\x45\xd5\xd2\x0e\x04\x5f\x0f\xd8\xe0\x6b\x6b\xb0\x25\x59\x5d\x29\xd7\x33\x31\xfa\xba\x31\x87\x58\x34\x87\xcf\x80\xd3\x65\xf7\xdb\xab\xe5\xf7\x0d\x39\x73\xb6\x98\xb6\x10\xc6\xf3\xbc\xc7\xd4\x6b\xc0\x3d\x00\x11\x5b\xf6\xce\xaf\x25\xc2\x68\xf4\xad\x09\xe2\x31\x93\x12\xdd\xb7\xf2\x10\x02\x22\x60\x54\xfe\x34\xfe\x8b\x5c\x7d\xc1\xd5\xa3\x15\xa7\xa3\xb6\xdb\x9d\x2f\x48\x2e\x49\x45\x4a\xfb\x13\xcd\x60\xf7\x25\x87\xdd\x9f\x48\x16\x7b\x9a\xdd\xb7\x87\x37\x33\x96\x5f\x7b\xca\xe6\xd9\x62\x5a\xce\x92\x99\x2c\x07\x11\xd1\x28\xa5\x7b\xf9\x35\x8e\xf6\x94\xd2\x12\x8c\x7e\xfa\x13\x1c\x7d\x1d\x7c\x4d\x41\x92\x0e\xbe\x56\x65\x4a\xba\x8f\x02\xa4\x7e\xc7\x03\x3a\x89\x02\xac\x3f\x80\xd4\xc4\x43\x2a\x89\x12\xa5\x52\xba\x05\xfb\x60\x61\x59\xc1\x3d\x06\x8e\xb6\x3f\xc6\x24\x9d\xa1\x40\x22\xb6\x1c\x3c\x62\xe4\x71\xca\x47\xa2\x48\xb7\x08\x2c\xe5\xf4\x74\x70\x94\x0f\xe8\x5e\x73\x87\x08\x7c\x20\x65\x15\xdc\x51\xa7\xa8\x48\xb9\x8b\x13\xd6\x15\xa9\xa3\xd0\xee\x32\x8c\xcc\x83\x5e\x40\xc0\x93\x39\x78\x2b\x82\x05\xae\xc0\x69\x39\xfe\x54\x25\x12\x2c\x48\x7f\x8c\xab\x8a\xe4\xb4\xf8\x6f\xda\x0e\xab\x6b\xf5\xcf\x5a\xfc\xbc\x83\x2b\x70\x02\x50\xe5\xa8\xe1\x87\x02\xf7\xef\x5d\x81\x42\x20\x84\x85\xbe\xf3\xd3\x6e\x18\x87\x83\x71\xc8\x00\x83\x62\x5e\x15\x2a\xea\x45\x7e\x3c\xea\x45\xf1\xe5\x51\x2f\x0a\x6d\xdb\x9c\xb7\x6d\xbc\xd2\x51\xc1\xb6\xf9\x05\x3b\xd9\xa4\x99\x83\xc5\x5d\x6d\xa3\x3c\x60\xb0\x75\x90\xa5\x31\x7d\xae\xfc\xbf\x8c\xb7\xb6\xe7\x50\x31\x31\x1a\x4f\xe5\x6a\x3a\x59\xb8\xae\x21\xd4\xc9\x29\xbc\x1c\x4c\xdc\xa0\x3b\xce\xa8\x3c\x58\x56\x24\xed\xb2\xf1\x75\xcd\x0d\x5d\x53\xb6\xba\xac\xd7\x0a\x28\x50\x71\xba\x42\xc1\xae\x60\x3b\xc6\xc1\xf6\xaf\xc0\x1d\x73\x99\xf1\x63\xa3\xf7\xe7\x15\x69\x15\xb2\x57\xdc\x4a\xb3\x50\xad\xf6\xaf\xd1\xea\xc5\x9c\xc4\x0d\xab\x10\xc9\x10\x69\xab\x90\x94\xc6\xb3\x34\x4a\x6f\xb1\x0a\x49\xc0\x68\x18\x10\x71\xf9\x80\xa6\xbe\x55\x48\x42\xd3\x79\xe9\x59\x85\x94\x34\xed\xb2\x0a\x49\x68\xa9\xad\x42\x12\x6f\xa6\xde\x44\xac\xd1\x6e\x2e\xe1\x2f\xf2\x57\xca\xa8\xb0\xe3\xbc\x36\xac\xe4\x6f\x2a\xb0\xd7\x46\xca\xfc\x1e\xe9\x9f\xdf\x6b\xed\x1a\x61\xd8\x33\x10\x22\x79\x85\x10\x18\xeb\xdf\xbb\x7b\xbb\xb1\x7e\x1d\x4d\xf1\xaf\xf5\x21\xd0\xd8\x3e\x45\x1c\x8d\x01\x05\xca\x5f\x93\xf1\x0f\xae\x29\x70\xfa\xd9\xa6\xc0\xf5\xd0\xea\xf8\x27\xea\x14\x83\x3c\x74\x25\x0e\x07\x6b\x1e\xf2\x79\x63\x6f\x29\x3f\x39\x0d\xe6\x5a\x7b\xf6\xb0\xbc\xe6\x89\x89\x07\xb5\x08\x48\x51\x67\x39\xa9\x79\x9d\x6a\xe5\x23\x27\x3b\xad\xb3\x9f\xef\xb3\x6c\x11\x90\xb8\x4e\x81\x90\x59\x8b\x80\x94\x75\xd2\x1b\xc3\x1e\x2f\x02\x92\xd0\xda\x7e\xd7\x68\x2f\x41\xa7\x26\x46\x0a\x85\xd9\x6b\x93\x30\x14\x24\x6b\x97\x2e\x59\xb6\x0a\xc3\xfa\xdf\x76\x35\x99\x4a\xf6\x34\x39\x1c\xb2\xc3\xc1\x0c\x1b\x05\x0e\x2f\x10\x60\x84\xc9\xae\xc5\xd9\x93\x15\xdd\x35\xb9\xfb\x25\xdd\x59\x41\x93\x6c\xe8\x7e\xa4\xce\x1a\x39\xa7\x9b\xd9\xc6\xe6\x9c\xc5\x6b\x13\x96\xce\x6e\x81\xad\xb3\x05\xf4\xe5\xcb\xac\xde\xf9\xb3\x32\x4a\xa3\xf3\x30\x3c\x97\xdc\x94\x1a\x08\x62\x78\xd6\x16\x63\x56\x0a\x29\x31\x72\x8e\x09\xa7\x6c\x7e\xbe\x00\xcb\x27\xf9\xc3\xe7\x3e\x6c\x24\xb1\x14\xdf\x68\xeb\x2d\x8d\x16\x25\x0f\x2a\xf1\xed\x0c\x2a\x71\x83\x86\xe4\x57\xcd\x9d\x4a\x99\xb4\x8b\xb8\xda\x36\x64\x81\xaa\xde\x80\x4d\xed\x4d\x47\xac\x0d\x6d\x08\xee\xeb\x1e\xe4\x99\x77\x16\xf5\x70\x70\x8d\xc7\x05\xf4\x52\x87\x65\x53\x0d\x6d\x1d\x2e\x5a\x40\x54\x01\x41\x69\x0e\xff\x72\xf8\x37\xae\x2a\xec\xe0\x6e\x8e\x26\xf7\xf0\xa7\x62\xc6\xda\x75\x2a\x8c\xe6\x1d\x02\x7a\xc5\xca\x7e\x57\x5d\x21\xb1\x79\xba\x40\x31\x26\x0e\xfe\x03\x08\x67\x3e\x2a\xe3\x28\xc3\x55\x09\x08\x73\x26\x50\x82\x23\x6d\x4c\x29\x25\xcc\x3c\xbb\x60\x28\xd1\x26\x71\x05\xc9\x9d\x10\x67\xb9\x03\xe5\x86\x9a\x48\x31\xfb\x84\x53\xeb\x62\x63\x81\xd8\x69\xab\x99\x13\x2d\x25\x48\x89\x5f\x7b\xe8\x10\xde\x72\x4d\x40\xb1\x0a\x5a\x46\x12\x12\x48\x34\x0f\x71\x4a\x5c\x5f\x84\x46\x19\x60\xc5\xa1\x50\xa9\xa3\x7b\x41\x08\xcb\x8a\x8f\x96\x48\x90\x20\xf6\x63\x5d\xda\x9d\xd4\x05\xfb\x7e\x6b\x86\x37\xd5\xd4\x41\x67\x44\x4a\x98\xdb\x5d\xc6\x7e\x4a\xb3\x86\xbb\x9e\x1b\xc5\x74\x05\xb9\xbe\xc3\x6a\xed\x7b\xc4\x4a\x01\xe5\x2b\xa5\xe4\x91\xdf\x47\x1a\xd2\xb6\x12\xa3\xad\x32\x03\x97\x75\x88\xfe\x6a\x69\x53\xb8\xdc\x65\x37\x95\xf5\x14\x1b\x93\x54\x72\xf2\x31\x15\x0d\xe5\x0a\xc9\x28\x1f\xed\x0a\x26\x99\x5f\xb2\x97\xbf\xf3\x52\xc0\xc7\x8e\xf2\x51\x12\x97\xec\x35\xe3\x65\x2a\xd2\x0b\x16\x86\x52\x4c\x1d\x89\xfc\x59\x7e\x69\xc2\x17\x4c\x59\xbb\x14\xd8\x87\xfb\xa5\x8c\x38\xb1\x92\x4c\xc0\xfd\x78\xba\x1a\x0c\x70\x41\xc5\x7c\xb5\x20\xbb\xf9\x6a\x21\x91\xcb\x3c\x5f\xcc\x50\x41\xb3\x41\x31\xd8\x13\xf0\x05\x4c\x06\x74\x32\x48\x70\x24\x47\x59\x0e\x68\x42\xd2\xb9\x61\x06\x16\xb4\xb0\x48\xc0\x8d\xde\x8b\x4a\xba\x03\x4c\x35\xb9\x33\x8e\x4a\x72\x53\x30\xbe\x64\x05\x5b\x46\xa9\x0d\xd6\x4b\xca\x44\xb2\x35\x65\x85\x95\x22\x94\x08\xbd\x40\x1e\xd4\x25\xd3\x55\x07\x1a\x1c\x83\x1b\xa2\xee\x23\x50\x94\xdd\x75\xfd\x9c\xf1\x08\x15\xf2\x8c\xdf\x54\xa0\xa3\x69\x04\x35\xe6\xe6\x94\xaa\x13\x9a\x4f\x8b\x11\xbb\x12\x45\x2c\x11\x3f\x78\x44\xe8\x2f\x94\x6b\x95\x70\xe2\xac\x72\x49\x0a\xec\x63\xa3\x24\x0c\x11\x9f\x73\x0b\x8a\x1b\x35\xa0\x28\x19\x99\xe9\xea\x39\x26\x23\xf8\x0b\x21\x9c\xae\xa2\xb4\xbe\x6e\xc9\x25\xf7\x52\x61\x32\x5f\xe8\x48\xcc\xa8\xd3\x86\x5e\x55\x1f\x32\xf5\xd7\x0e\x42\x2e\x2f\x34\x39\xd4\xa2\x57\x85\x31\x8e\xe6\x8b\xaa\x42\x9f\x17\xf4\x9a\xa3\x6f\xc7\x3a\x42\xee\xbd\x7b\xca\x9a\x6d\x72\xef\x3b\xac\xac\xd8\xee\x7d\x2f\x79\x45\xf9\xe3\x07\x89\xc4\xe4\x8f\x1f\xb1\xdc\xa5\x68\xf2\xdd\x18\xb4\xfa\x68\xf2\xdd\x44\x92\x42\xf9\xe3\x5b\x4c\x56\xf2\xc7\x0f\xdf\x3a\x88\x43\xc7\x33\x66\x61\xf8\xc9\x28\xd0\x1c\xdf\x08\xc4\xe6\x7c\xa1\x4f\xa0\x6d\xc3\x8b\x4e\x7c\x53\x75\xaa\xde\xfd\xe8\x8f\xe7\x2e\xec\xea\x40\xd4\x72\x30\xde\xb5\x81\xa4\x99\x61\xe8\x07\x96\x76\x68\xd4\x29\x00\x69\x4b\xef\xfc\x6b\xfe\xaf\xb7\xe3\xb7\xe2\x2d\x7f\xbb\x7a\x5b\xf4\xee\xdc\xa7\x0f\x16\x83\xaf\xee\xd4\xb3\x3c\x75\x55\x7f\x17\x34\x70\xc8\xc3\x75\xcb\x15\x42\x69\x93\xe3\x35\xd5\x41\x91\x62\x21\x8a\xf4\xbc\x94\xb4\xec\xa6\x22\x26\xd7\xdc\x3f\xd1\x0b\x83\x25\x54\x0e\xbb\x12\xd4\x04\x01\xdc\xef\x96\xb1\x60\xea\x49\xae\xe7\xf9\x92\x9d\xc9\x4c\x07\x51\x3e\xaf\xcd\x43\x9e\xcf\x9f\xd7\xd1\x22\x54\xa8\x29\xca\xe1\x2f\xae\x2a\x31\x93\xe2\x20\x3a\x35\x3c\xa1\x14\x5f\xb0\xf6\x0d\x9a\x19\x17\x49\x9a\xa3\x35\x31\x1f\x38\xb2\xc9\xeb\x08\x09\x5a\x57\xc5\x36\x1d\x80\xf7\x90\x5c\x92\x8f\x54\x8c\x78\xce\xe5\xe8\xce\xe2\x75\x79\x38\xcc\x83\x32\x29\xd2\x9d\x80\x07\x9e\xaf\x33\x78\xf9\x8e\x5d\x89\xb8\x60\x71\xb0\x98\x8a\x51\x9c\x65\xf9\x25\x5b\x3e\x04\xc0\xec\x05\x44\x12\x78\x48\x6f\x2a\x72\x29\xff\x59\xa2\x8e\x12\xa4\x71\x6c\x1e\xce\xc5\x42\xae\xbc\xdd\x02\xac\x3b\xee\x78\x02\x3b\x80\xd5\x7e\xcd\x7f\x0b\xf0\x03\x3a\x9e\xe9\x3d\x21\xf9\x70\x27\xca\xdd\xdb\xb7\x7f\xbb\xb3\x26\xc1\xe8\x6f\x01\xc6\x91\xec\xc2\xdd\x39\x97\xb2\x4b\x27\xf2\x78\xf0\x2f\x14\x0c\x9c\xf0\xe3\x83\x00\x7f\x15\xc8\x92\x0a\xb1\xbc\x93\x14\xcc\x99\xcb\x49\x16\x97\x65\xc7\x44\xc2\x10\x6d\xd0\x43\x10\xf1\x91\x9e\x15\x26\x75\xdf\x41\x22\xeb\x05\x18\x93\x77\x32\x93\x55\xba\xf9\x17\xe4\xcc\x74\x20\x8a\x98\x97\xab\xbc\xd8\x4a\xe8\x37\xdb\x57\x5a\x85\x4e\x0f\xbc\x19\xa7\x2c\x32\x28\xd6\x8f\xb6\xc8\xe9\xa9\xa6\xb7\x67\xa6\x71\x08\x22\x1d\xfc\x4d\x39\xaa\xbf\xa0\x3c\x3a\x03\x78\x98\xf1\x5c\xd1\x31\x79\x2e\xe9\xde\x33\xb9\x86\x4f\xe4\x3f\xaf\x69\x7f\x42\x3e\xd0\x31\x39\xd1\x26\xe5\x2f\x61\xe7\xa0\x9b\x9c\xe7\x3b\xc6\x45\xbc\x8e\x7c\xea\x9b\xae\xd0\x6b\xfc\x41\xdf\xe0\x1a\x35\x3b\xbb\x84\x33\xc6\xf1\xf4\xb9\x82\x48\xa1\x63\xd7\x2a\x35\x59\x42\xfb\xfd\x02\x36\xfa\x74\x83\xce\x88\x5c\x6d\x94\xd3\xb3\x39\x04\x8e\xe3\x98\x14\xf6\xfc\x71\x9a\x9b\xdf\x44\x71\x2b\x7d\x4a\x73\xa8\x0a\x86\x96\x29\xe7\xac\x80\x23\xa6\x12\x31\x61\xaa\x40\xbc\x7e\xee\x1b\x63\xd6\x89\xe4\xc9\xfc\x6a\x51\x7f\x62\x4c\x5e\x40\xff\x2f\x6e\xeb\xfc\xcf\x34\x6b\xb7\x91\x5c\xe3\x30\x84\xab\x15\x2f\xcd\xee\x70\x66\x34\x73\x04\x54\x76\x1f\xfd\x8c\xd7\x32\xe3\x03\x9d\x60\xf2\x4c\x76\xd1\x1f\x63\x72\x35\x18\x90\xf4\x70\x40\x17\x03\x1a\xdc\x0f\x06\x8c\xa0\xfe\xc3\xc3\x41\xee\x49\x86\x0f\x87\x87\xf3\xe0\x6f\xc1\x02\x87\xe1\x12\x71\xe2\xd1\x59\x58\xaf\xad\xe2\xaa\x72\x13\x2b\x00\xb4\x95\x10\x40\xca\xb6\xa1\x75\x87\x0f\xe7\x6c\x61\xc7\x92\xdb\x96\x6d\xae\xfc\xf0\xf2\x37\xe8\x12\x6a\x5f\xca\x8a\xba\x97\xc3\xe1\x52\xd7\x52\x7f\x6d\xef\x89\x14\xbc\x8d\xaa\xe4\x61\x18\xca\xde\xd4\x90\x4e\xe5\x8c\xd7\x72\xab\x5c\x1b\x81\x48\x72\xf0\x86\x4d\xfa\x48\x5e\xc0\xd0\xba\x94\x24\x7d\x74\x4a\xd1\x47\xfa\xc2\xd7\x79\x4c\x65\x8b\xaa\xed\x33\xfa\x51\x31\xfe\xca\x0d\xe6\x0c\x87\xe1\x99\xbe\x42\x57\x7f\x29\xa5\x39\xbe\x49\x8c\x56\xe0\x8a\xea\xe8\x5a\x52\xc6\x3b\x1b\x6d\xf7\x99\x48\x77\x99\x96\x88\x9e\xdb\x80\xa5\x10\x5a\xee\x99\x1c\xf7\x13\x39\xee\xd7\x5d\xe3\xfe\x40\x4e\xe8\xf3\xee\x41\x3f\xa3\xe8\x03\x3d\x69\x0c\xfa\x99\x1d\xf4\x63\xfa\x41\x0f\x1a\x20\x7f\x36\xd2\xf6\x31\x06\xf6\x8f\xe5\x3e\x09\xe4\x39\xbf\x9a\x5d\xd1\xc7\xd1\x15\xc4\xba\x1b\x3c\xc6\x95\x16\x6f\x5e\xe2\x9b\x27\x72\x70\xaf\xe9\xcb\x4a\xfb\x46\x82\x50\xd4\x7f\x16\x86\x27\x23\x45\x8b\xeb\x5f\x08\xdb\x42\xe9\x0a\x3d\xd1\x17\x7e\xaf\xab\x4a\x79\x2e\xb6\xba\xe7\x18\x6e\x04\xd0\x15\xe5\x78\xca\xe9\x55\xe5\x74\xbb\x96\xdd\x5e\x37\xbb\x3d\x0d\xc3\x17\xb6\xdb\x17\x9d\xdd\x1a\x3f\xae\xeb\xaa\xaa\xd2\x15\x4a\x60\xef\x6a\x95\xb6\x3e\x44\xaf\x93\x0d\xdb\xb2\xf2\xe1\x6e\x97\xa5\x6c\x79\x96\xd7\xb4\xc7\xd9\x95\x61\xf8\x2b\x9c\x6c\xec\xca\x77\x5a\x5e\xb6\x87\x7d\x9e\xab\x50\x66\xe9\xaa\x88\xb7\x10\xd9\x83\x85\x61\x50\x16\x49\xa0\xb6\x83\x5c\x84\x47\x54\xc7\x0b\x47\x29\x5d\xe9\xe7\x4f\x38\xe9\x4f\x48\x7f\x8c\xb1\xb2\x28\x84\x30\x6d\x9b\xbc\x14\xce\x27\xe8\x22\x92\x3c\x9b\x3d\xa2\x1b\x10\xb1\xe4\xd8\x9f\x42\x3f\xaf\xb4\xb9\xc3\x9b\x22\x2b\x03\x3c\xd3\xf3\x6a\xe7\x45\x7d\x3b\x65\x95\xf9\x73\x5e\x0a\x6d\x3e\x70\x24\x23\x0c\xd1\x23\x7a\x2c\x73\xb4\x4a\xf9\xb2\xf3\xb1\x0f\x66\x67\x20\x0b\x4a\xc2\xa8\x57\xf2\x15\xbe\x79\x44\xfb\x13\xb9\x12\xfd\x47\x9f\x02\xa5\x2c\x25\x81\x57\x32\xa1\xe0\xa7\xfd\x67\x97\x28\xa5\x7b\x03\x39\xec\xf3\x7d\xbf\xda\x1a\x84\x8d\xf6\x45\x86\xc1\xc8\x80\x5d\xa4\x99\x3c\x05\x92\x98\xf7\x51\x4a\xcf\x51\x4a\x3a\xc6\xdd\x57\x25\xe5\x78\x1b\x37\x51\x47\x57\x9b\x53\xc7\x33\x0c\x7d\xba\x5d\xe2\xd6\xa6\xbc\x06\xcb\xe7\xc0\x42\x31\x04\x14\x2e\x5c\xfa\xa8\xe9\xff\x0c\x96\x32\xf5\xe3\x04\xfa\x30\x80\x13\x83\x0e\x86\x5c\x0e\xee\x60\xdc\x96\x94\xed\x38\x1b\x37\x3d\xc0\xfc\x68\x2e\xa7\x17\xe0\x0a\x71\xf2\x0e\xa2\x83\x7c\x2e\x70\x60\xfd\x80\x0d\x74\x97\x4f\x62\x40\xc4\xbb\xa3\xb5\x29\xe5\xf8\x78\xa1\xf5\xe8\x2d\x21\xcf\x37\x16\x02\xa6\x40\xa8\x88\xa8\x10\xce\x5a\x61\x14\x4c\x98\x16\xbb\xd4\xd8\xa7\x72\xec\xb7\xc2\xca\x04\x9c\x8c\x11\xc3\xa4\x8e\x73\x39\x96\xeb\x2b\xe6\xf9\xc8\x44\x34\x5d\x84\xa1\x00\xea\x33\x2b\x51\x8c\xbc\x1c\x4c\x54\x4e\x93\x0b\x93\x44\xa9\xe1\xbb\x69\xfb\xb5\x11\x58\x94\x77\xae\xdb\xdc\xe1\xa0\x9a\x9b\x72\xc5\x26\x78\x70\xa1\xb9\x0f\x9f\x0e\x50\x36\xfd\x83\x7d\xc9\x4a\x05\x3f\xdf\xc1\xe1\x98\xab\xdf\x8b\x51\x99\x6f\x59\xf7\x69\x56\xb4\x56\x1b\x54\xc8\xb1\x86\xa1\x8e\xf9\xc1\x9d\x78\x8a\x55\x25\x4f\xe3\x7c\x51\x27\x15\x15\xda\xe9\x73\xca\x06\x41\xef\x06\x5e\x18\xaa\x02\x87\xa7\x79\x2d\x77\x47\xf9\xf9\xe7\xed\xf3\xcf\xcb\x85\xa2\x5d\x39\xe1\xb5\xa8\x74\x31\xa0\x5f\xd3\xe0\xeb\xc1\x7b\x89\x70\xc7\x78\xf0\x75\xf0\x35\x56\xb4\xa8\xab\x85\xa3\x19\x18\x13\x7d\x52\x4a\x96\xad\x4e\xb2\xbc\x4c\xf9\xda\x39\x35\x33\xe8\xfb\xce\x83\x20\x02\xce\xea\x41\x40\xfa\x0e\x8f\x79\x38\x24\xa0\xe0\x61\x57\x42\x69\xb4\x14\x03\xe6\x94\x90\xe8\xb2\x22\x4a\xc7\x1f\x35\xb5\xa9\xaf\xeb\xf0\xa8\x9e\xe4\xa7\x43\x15\x22\xb8\xe0\x8f\xd7\x84\x51\xcb\xe9\x3a\x4d\xcf\x9c\xdf\x11\xc3\xc4\x88\x6b\x3a\xe8\xa6\x3d\xac\x1c\x5f\x0c\x28\x73\x43\xd9\xbe\x47\x8c\xf4\x27\x78\xea\x8e\x5c\x4e\xd4\xfd\x46\x39\x8e\x2e\x06\x34\x97\xc8\xca\x0c\x0d\x77\xc9\xa7\x0c\xe6\x97\x64\x79\xc9\x7c\x59\x40\x4b\x02\x40\xa3\x87\x1f\xf4\x6e\x98\x4a\x71\xa2\x52\xf2\xde\xf3\xd1\x2e\xdf\x21\x7d\x05\x07\x85\x25\x9f\xf4\x6c\x3e\x1c\x5e\xd9\xd0\xa2\x7a\xcd\x24\x9b\xab\xd8\x7d\xde\x29\x4f\x23\x3c\x95\xcc\x36\xdc\x34\xc9\x1f\x44\xd7\x93\xbf\xe5\x16\x65\x57\x49\xb6\x2f\xd3\x0b\xad\x78\x94\x7b\xbe\x91\x84\x38\x9e\x5d\xd0\x8b\x51\xb9\x3f\x2f\x45\x81\xc6\x84\xbb\xf2\x3d\x8e\xd0\xb1\x8e\x89\xe6\xe2\xbb\xf7\x8f\xda\xa9\xc1\xfd\x3b\x10\xbc\xfc\x41\x20\xb7\x43\x55\x0b\xe8\xe6\x74\x9d\xd4\x6f\xf9\x9c\xa8\x67\x84\xc8\x45\xad\x9d\x78\xef\xaa\x35\x3b\xb4\x69\x72\xda\x03\x1a\xc0\x61\xd4\x4f\x03\x29\x5b\xad\x27\x5c\xa4\x22\x05\xd2\x2f\x69\x87\x15\x91\x43\x29\x1f\x87\xf1\x76\x37\x0d\x1c\xc1\xf9\x3e\xa4\x66\xc2\x4b\x7c\xfb\x00\x52\xd7\x32\x95\xf0\x66\x43\x6f\x03\xc8\xfd\xb0\xcf\x65\x3e\xc6\xc4\xef\x06\xcd\xfa\xf3\x78\xf8\xf1\xe1\xf0\x9f\xe3\xe1\x8f\xff\x6b\x71\x33\x21\x77\xc7\xd5\x14\xff\x9b\x7a\x27\xac\xd6\x2d\xfd\xea\x46\xcf\x47\x9c\x36\x42\x29\xbe\xbd\x1a\x8f\x87\x6f\xaf\xee\x8e\x17\x03\x1d\x6d\xcf\x19\xc8\xdb\xfe\xdb\xe1\xdb\xe1\xe8\x6f\x33\xf9\x47\x8d\x40\x16\x50\xfa\xc5\x3b\xff\x42\x7a\x4a\x8b\x01\x7e\x1b\xdd\x81\xed\xdb\x37\x81\x13\xfa\x7d\x6e\xcb\xcd\xdf\xde\x79\xfb\x76\x71\x73\xb7\xba\x83\xc3\xd0\xb0\x6b\x2f\x35\xeb\x67\x78\x39\x6d\x57\x50\xcc\xe5\x79\xf2\x34\xc0\x7a\x67\x6c\x50\x93\xb7\x7d\x74\x7d\x26\x71\x02\x9e\xf9\xe2\xa3\x9b\xeb\x0b\x69\x0e\xaf\xa8\x0b\x1d\x0e\x9d\x75\x9d\x3a\xea\x25\xb0\x35\xbd\xf1\x37\x52\xd4\x1f\x57\xd3\x5a\x8d\x44\x6f\x1c\xd9\x35\x9a\x07\x9b\x6f\x02\x12\x6c\xbe\x95\xff\xdc\x93\xff\x7c\x17\x90\x00\x82\x42\xcb\x25\x62\x01\x09\x76\x01\x5c\x28\x04\xfb\x2c\x20\x41\x2e\xff\xe1\xf2\x9f\x2c\x95\x05\x03\x12\xa4\xa0\x6c\x2a\x72\xbe\x86\xe0\xcc\xea\x2b\x7d\xcf\x20\x6e\xfa\x52\xfe\xd9\x14\xb2\xa8\xfc\x67\x99\x5e\x04\x24\x80\x50\x47\xf2\xef\x86\xc5\x4b\x59\x2c\xde\x29\x8f\xd9\x40\x9c\xe7\xcb\x6b\xf9\xb7\x80\x6c\xf9\x8f\x2c\xb0\x2b\x64\x71\xcd\xd5\x2f\x48\x4b\x47\x15\xdd\xc4\x72\x26\x05\xbc\xe3\xaa\xfc\x0b\x03\x11\x17\x6b\x26\x82\x05\x49\xb7\xeb\x68\x0e\x42\xc0\xa2\x22\xce\x89\x8f\xe6\x41\xba\x5d\x9b\x91\xc1\x18\x41\x4f\x46\x82\xf3\xb8\x64\xfa\xcf\x2a\xe7\x42\x76\xcd\x77\x7b\x01\x93\xe6\xef\x03\x12\x6c\x99\x88\xeb\x71\xe8\x95\x90\x23\x10\x42\x42\x4b\xfe\x29\x03\x12\xac\xe0\x6b\x1b\xa7\x99\xc8\x5b\xc5\x61\xd1\xa3\x9b\x8a\x7c\x52\x0a\xaa\xa7\x26\x27\x41\x82\x24\x15\x16\x0a\xcd\xbd\x29\x17\x9b\xb4\x34\x48\xad\x9b\x13\xa3\xe5\xa6\xf6\xde\x93\x1f\x0e\x9c\x08\xad\x2a\xad\xbd\x58\x49\xee\x44\x4e\xe3\xe0\x08\x90\x82\x99\x19\xce\xe7\xe9\x82\x8a\x79\xba\x50\xc2\x7f\x4e\x4d\x54\xc9\x1b\xad\x3b\x89\x18\xd1\x44\x3b\xca\xab\xea\x53\x6f\x9d\x59\xd3\x4e\xa5\x33\xd7\x1a\xf3\x31\xe8\xcb\x47\x5c\xd9\x56\x70\x34\x01\x6d\xf9\x88\xa3\x52\x69\xcb\xbf\x05\x5d\xf9\x88\xa3\x4c\xe9\xca\xef\x62\xb2\xa2\x72\x00\xd1\x6e\xf4\x07\x01\x7e\x1d\x86\x92\x8c\x4c\xc8\x33\x92\x94\xfa\xba\x1f\x12\xd5\x7d\x67\x45\x96\x9d\xce\xd2\xb6\x01\x02\x56\x41\xa6\x26\x49\x29\x03\x22\x6f\x7c\x1a\x51\x3e\x8a\x31\x58\x39\xd9\x1a\x72\x9d\x4a\xfb\x1c\x65\x20\xe2\x75\xb0\x90\x83\xd7\x15\x76\xa3\x35\x46\x7b\x84\xa5\x28\x09\x9b\x6b\xb8\x2e\xf2\xfd\x6e\x28\xe9\xb3\x44\x9b\x16\x97\xc4\xa3\x58\x5b\x1d\x3c\x51\xa6\x76\x28\xd5\x01\xc2\x50\x21\x3b\xbd\xa9\x48\x49\x6e\x9c\x99\x56\x18\x57\xd3\x25\xf0\x94\x67\xd7\x3b\x56\xd2\x15\x59\x9a\xc3\x2f\xf9\xcf\x52\xc1\x27\x28\x77\x31\x0f\x20\xc0\x3f\x5d\x7e\x62\x6d\x5a\xfe\xde\xfc\xf8\x0b\x60\x9e\x9d\xad\xe1\x08\x3c\x93\x5b\xe6\xea\xed\x87\x93\xda\xc5\xbc\xc9\x00\x3b\xd7\x53\x6c\x3e\x5e\xe8\xc0\x83\x9c\x16\x44\x8b\x92\xbc\x6a\x5f\xd2\xda\x6e\x84\xb5\xec\x7d\xc7\xb8\x28\x52\x56\xbe\x7b\x47\xe7\x8b\xca\x77\x3b\x68\xbe\x22\xea\xd8\x1c\x04\x65\xfa\x91\x05\xe4\xe6\x96\x38\x0d\x4e\xd3\xd6\xb6\xd6\x7d\x6f\xad\xfd\xc6\x9a\x6f\xf4\xb5\x66\xce\xad\x42\xed\x9b\x8b\x9a\x8d\x13\x81\x4d\x38\x7e\x27\x15\x02\xcf\xd5\x71\x3a\xe7\x93\x45\xe5\xb5\x5e\x7a\xad\xd7\xa4\xb5\xb3\xfd\xe9\x7f\x15\xb3\x56\x07\xc5\x62\x3e\x59\x50\xe3\x11\xe1\x4c\x16\x84\x8f\xb9\x20\x7c\x81\xfd\x3e\x15\x0f\xd7\x31\xa9\x56\x97\x72\x1c\x5c\x75\x0c\xae\xeb\x3b\x30\xff\x2c\xc8\xa4\xd1\xa2\x67\xe8\x6b\xa5\xcf\x7e\xff\xbf\x3a\xa7\xe1\xd7\x4d\x32\x16\x17\xad\xe7\xa0\xdc\x89\xe8\x6e\xc7\x8d\x8a\xfa\x46\xa3\x69\x18\xed\x07\xc0\x54\x2e\xec\x4e\x84\xc0\x8e\x35\x9a\xf2\xfb\x45\x2b\x68\xa0\x8a\x42\x3f\x35\x56\x6d\x24\x9f\x4f\x16\x24\x9f\x8f\x17\xf0\x24\x43\x85\x70\x85\xe4\x7a\x77\x9e\xaa\xcb\x94\x2f\xf3\xcb\x23\x51\x8f\x97\x79\x02\x46\x09\x61\xa8\x8a\x8d\x4c\x02\xa5\xd4\xfc\x24\x79\x77\xc3\x60\x0c\x75\x1a\x8b\x0d\xa5\xf0\x24\xd3\x8c\x45\x9d\xe5\x1c\x03\x1f\xb7\xb4\x4c\xe8\xae\x60\x46\xac\x87\xe4\x56\x52\x49\xd1\x71\x53\xa0\xb4\xf3\xcd\xc9\x82\x7d\xd8\xb3\x52\x3c\xe4\xe9\x16\x22\x06\xfc\x24\xf9\x82\x59\x67\x2a\xbc\xac\x27\xf9\xa9\x0e\xb9\xba\x64\xe2\x2c\xdd\xb2\x7c\x2f\x3a\x83\x61\xc1\xd3\x80\x23\x9e\x5f\x42\xf4\x2e\x32\x61\xdf\xdc\xf9\x4e\xee\x93\x98\xde\xd5\x8e\xcc\x77\xc7\x24\xa1\xf3\x40\xe4\x92\xcc\x9b\x17\x69\xce\x73\x21\x72\xc9\x05\xe9\x57\x6c\x2e\xd3\x25\x30\x32\x1b\xa6\x0b\x28\xb4\x12\x5c\xaa\xef\x05\xc9\x8e\xb8\x29\xec\x05\x4c\xe3\xc5\x79\xc9\x8a\x0b\x56\x90\x63\xc1\x1a\xf5\xae\x4e\x72\xce\xc1\x49\xe4\x9d\x8d\xce\xb8\xd5\x4d\x3c\xb9\x60\x5c\x94\x0f\x97\xcb\xae\xcc\xd2\x74\xf0\x0e\x36\xb4\x7e\x37\x55\xa7\x95\xef\xac\x47\x44\xce\x81\x9d\x00\xd1\xea\x09\x5f\xbe\xa3\x9d\xa9\x0a\xde\x8e\x6f\x70\xc1\x56\x05\x2b\x5b\x27\x09\x0e\x4c\x7f\x42\x0a\xf9\x0f\x04\x70\xad\x0d\x62\xf0\x8d\x8a\xa3\xde\x9f\x10\x06\x66\xc9\x61\x98\x21\xcf\x1c\x06\xdf\xa4\xc8\x7f\xef\xd0\x38\x71\xd5\x6b\x56\x8b\xa8\x6c\x98\xdf\x8f\x8d\x2c\x0b\xe6\x58\xc0\xb1\x70\xda\x1f\xab\xfe\x9d\x8d\x90\x48\x8c\x94\xd7\xde\x74\x59\x85\xdc\x69\xb8\xd3\xab\x83\xeb\x32\xdf\x9d\xc2\x00\xd4\x63\x29\xfe\xab\x01\x57\x47\xde\xd4\x6e\x11\x4e\x9e\x71\x8d\x68\x2c\xac\x2e\xa8\x13\xde\x21\x5c\x75\x58\xdd\x76\xf6\xee\xf8\x29\xd4\xdd\x10\xee\x29\x1b\xa7\xff\xc5\xa5\x8c\xad\x31\x22\x27\x13\x4c\xfa\xc2\x2a\x6f\x1a\x43\xd1\x09\xcb\xb4\x3c\x3e\x9a\xc6\xc2\xeb\x7d\xaa\x24\xf2\x17\x76\x14\x08\xeb\xb6\x74\x85\x66\x3b\xcd\xf2\x47\xde\x22\x73\xa0\x77\x5c\xc1\xda\x63\xa3\x75\x2c\x36\xac\x78\x98\x80\x7f\x22\x26\x40\x5f\xcc\x57\x85\x9d\x80\x37\xb7\x3d\xa6\xcd\x46\xe7\x45\x1e\x2f\x93\xb8\x14\x4e\x5d\xc2\x6c\x54\x7a\x7f\x0a\x06\x44\x9e\x03\x84\x94\x2f\x9b\x30\x45\x06\x49\xcb\x6d\x04\xa7\xf6\x59\x5a\x0a\xc6\x59\x81\x02\x61\xcf\x19\xe3\xcb\xa0\xfb\x4c\x62\xa2\x91\x6c\xbb\x7a\xc1\x14\xde\x71\x41\x8d\x49\xa6\x63\x78\x74\x21\x03\x76\xd9\xc2\x41\xc8\xaf\x7d\xa4\xaa\x59\x0b\x3b\x1b\x72\x13\xd7\xc2\x8c\x64\x8a\x36\x69\xb6\x94\x43\x53\x1f\x71\x11\x27\x82\x15\x8f\x63\x11\xcb\x84\x72\x7f\x2e\x0a\xa6\xb8\x25\x1c\xdd\x06\x92\xc7\x2f\x4e\x5f\xab\xc2\xa7\xf9\x12\x02\xbb\x35\xe7\x77\x0b\x1a\x1c\xb7\x8e\x17\xdc\x50\x78\x0b\xe7\x6c\xef\xc6\xda\xdd\xb2\x74\xea\x18\xfe\x77\x56\xaf\xb3\x85\xee\x05\x3c\xb2\x04\x7a\x80\x1d\x6b\x53\x4f\x09\xdd\x02\x9e\x30\xbc\x7d\x3a\x5f\x08\xf9\x4e\x1a\x73\x2b\x75\xf2\xa8\x59\x63\x55\x5a\x94\xa8\x4b\x74\xdb\x39\x3e\x70\xc4\x91\x73\xc5\x2c\x08\x22\x31\x4d\x8e\xaa\xdb\xfb\xfd\xff\xe2\xfe\x15\x4c\x17\x7e\x5a\x33\xf1\x54\x47\x28\x3e\xe6\xd6\x64\x22\x18\xbf\x33\x01\x71\x6c\x02\x9c\x2d\x83\xde\x6d\xaa\x6c\xd6\x29\x22\xe1\xc4\x2a\x30\x87\x3e\xe6\x5d\x28\xc9\x97\x17\xc9\x06\xdf\xc6\x6e\x1e\x0b\x2b\x9d\x13\xfd\x56\xb4\x98\xe7\x8b\xa3\xcf\x45\x4f\xda\xa2\x8c\x25\x7f\x15\x59\x75\x5e\x27\x49\x8e\x32\xbf\xe4\xac\x78\x6c\xf9\xd2\x46\x82\x11\x4c\x7f\x49\xd9\xe5\xe1\x90\x4b\x39\xfc\x02\x8d\x09\xfc\xe7\xd8\xba\x39\x8f\x30\xf7\x40\x59\xfa\x53\x96\xc7\x02\x48\xe7\xd8\xb3\x4d\x73\xdf\x69\x83\x80\xf1\x93\x29\xbf\x6f\x4d\x75\x5d\xc8\x88\x39\x1f\x4e\x16\xb5\x19\xaf\x23\x4c\x89\xf6\xbd\x97\xab\x34\x11\x83\x0d\x62\xf3\xe0\x3c\x2f\x96\xac\x18\xc2\x9d\xca\x50\x31\x79\x0b\xc9\x27\x8e\x1d\xbe\x64\xeb\x2b\x13\x52\xc6\xc5\xaf\xb2\xa4\x52\x27\xc0\xf7\xcf\xc0\x06\xaa\x47\x5b\xc3\xb0\x6f\xdf\xd4\x58\x6a\x8d\x88\xdc\x83\x72\xb7\x9d\xe4\xdb\xdd\x5e\xe8\x1b\x1b\x75\x4d\xe6\x82\xbc\x9e\xf6\x4d\x45\xd4\xce\xb8\x9d\x31\x5d\xdc\xb2\x55\x48\x4a\xd9\x3c\xd8\xc5\xcb\x65\xca\xd7\xc3\x60\x90\x2f\xa6\x72\x6f\xd0\x0d\x4a\xeb\xe0\xa0\x15\x2a\x54\x64\x2f\xd9\xdc\x20\x1f\x41\x37\x24\x06\x3f\xff\xdd\x20\x1f\xa9\xee\x48\x49\x37\xa8\x18\x01\x7c\x30\x49\xe0\x43\x71\xc2\xea\x55\x75\x0d\xc5\xf3\xfc\x0a\x9c\x78\x46\xe7\xf9\xd5\xeb\xf4\x63\xca\xd7\x61\x88\xe0\x61\xd8\x22\xdf\xf3\x25\x2a\x07\x29\xd6\x21\xd4\xca\x21\x3d\x47\x85\x65\xaf\xd5\xec\xf0\x20\xc5\xc4\x29\x9f\x0c\x62\xac\xa2\x8e\xa3\x44\x97\x57\xc0\xd0\x40\xc0\x83\x18\x63\xd2\x3f\x72\x75\x0e\x30\xb7\x08\xd0\xfc\xd0\xfa\x17\xb0\x83\xbf\x51\x31\x75\x1a\x23\x1c\x0a\xb2\xa7\x8d\x51\x0c\xf9\x74\xd2\x57\xe2\xce\x28\x3e\x2f\x11\xdc\x88\x97\x43\x9a\x61\xe2\xa5\x83\x5b\x5f\x32\xa4\x7b\x0b\xe1\x0b\xa4\x60\x4b\x00\xa2\xa4\x24\x89\x0a\xe5\x73\xda\x2d\x2f\xbc\xfe\xe5\xef\x7f\x2f\xe2\xdd\x26\x4d\x4a\x3d\xd2\x59\xd7\xf4\xdc\xc0\xea\x30\xcf\x76\xbd\xaa\xf3\xa5\xee\xae\x8a\xba\xc2\xb1\x38\xf3\x6b\x26\x1e\x3d\xca\xaf\xaa\xfa\x20\xaf\x5d\xe7\xc0\xd9\x69\xb7\x63\x85\xad\x58\x6b\xd4\x15\x52\x10\x6a\x1f\x11\x61\xb6\x10\xb8\x46\xc8\x43\x16\x2d\xeb\x43\x77\x51\x07\xec\xd1\x0a\xc9\xab\x88\x91\xeb\x48\x10\xa8\x1d\x71\xa2\x6a\x47\x85\x52\x98\x5f\x7f\xea\x3d\x55\xc3\xea\xc1\xd1\xa5\x3a\x72\xac\x4d\x55\x07\xd8\x24\xeb\xd8\xa2\xaf\x80\x65\xa8\x51\x99\x31\x3e\x2d\xd6\x4c\xd4\xc2\x85\x4b\xd4\x52\xcd\x85\xb6\xd9\xdb\x35\x72\x2a\xfb\x51\x5e\xbd\xde\x18\x61\x0a\x3e\x7d\xfd\x26\x87\x3f\xf0\xc3\x81\x69\xb0\xb5\xf2\xd5\x14\x7c\x22\x6b\x33\x65\xe3\x47\x78\x6e\xb7\x7b\x6f\x5c\x0d\x90\x31\xb3\x6e\x5d\x80\x33\xa3\x22\x4c\x3d\x29\x41\x1e\x76\xca\x8a\x5d\xdb\xe4\x0a\xf0\xe8\x35\x3c\x5c\xa3\x7a\xc8\xeb\xe6\x8e\x78\xff\x3f\x7e\x71\x2a\xc7\xfb\x8a\xc5\xcb\x17\x3c\xbb\x9e\x35\xbe\xb5\x23\x3d\x89\x1b\x7e\x9b\xa9\xe3\xb7\x69\xa6\xba\x43\x31\xb9\xb9\x8a\x04\xb9\x8e\xb8\xde\x5b\x85\xd9\x5b\x39\x11\xf9\x2e\xe2\x04\xd0\x53\x24\x06\x05\x51\x98\x27\xca\x07\x9c\xc8\x53\x1d\x89\x0a\x93\xb8\x92\x34\x7b\xa7\x9c\x63\x6e\xd4\x0a\x47\x8c\x38\x70\x8d\x78\x85\x2b\x72\x79\x6c\x8b\x12\x61\xe2\x52\x81\xbd\x33\xec\x20\xc5\x6b\x29\xbe\xcb\x11\xdf\xbd\x54\xc9\x80\x70\x52\x9f\x5a\x47\x0d\xe4\xc4\x85\x38\xbb\xde\x99\xd7\xe1\xcf\x36\x0c\x9e\x7b\x3f\x8f\x93\xf7\xbd\x5d\x91\x5f\xa4\x4b\xb6\xec\xc5\x65\x0f\x1e\x77\x65\x82\x15\xbd\x49\xfd\x6c\x88\x69\x77\x64\x5e\x08\x35\x55\xdf\x19\xd3\x6c\x39\xc5\x22\xcf\x32\xc9\x12\xea\xb0\xc6\xa6\xcc\x89\xb8\x7a\x47\x8b\xae\x33\xa2\xe5\x8a\x96\x87\x53\x93\xc0\x77\x4f\x61\xd2\x33\xe5\x4c\xa0\xbc\x25\xe9\x9d\xef\x85\x0a\x8c\x35\xee\xed\x0a\x56\x4a\x7c\xaf\x42\x68\x74\x6e\x1e\x8b\xef\x9e\x58\xb7\x77\x8b\x13\xd5\x7e\x51\x03\x42\x6d\x6c\xa9\x6b\xe0\xce\xb1\x7d\xdd\x01\xc5\x7c\xd5\x93\xbd\xf6\x02\x5d\x33\x18\x7d\x6d\x02\x19\xb4\x17\x74\x6a\x42\x1d\x48\x5e\x53\x47\x50\xd0\xf6\xbb\x18\xb7\x20\xee\x2a\x29\x5c\x5d\x8d\x5b\xc4\x72\xbb\xb8\x6a\xc8\xe3\xfc\xff\x5f\x86\x4f\x2e\x03\x44\xe1\x53\xba\x70\xd0\xe3\x40\x90\x8e\x5a\x7d\xe3\x40\xd9\x55\xd9\xa8\xb5\x68\x02\xbc\x96\xd8\x5a\xba\x14\xd0\x6f\x5b\x5d\x46\x7b\x3c\xaa\x00\xea\x5c\xde\x76\xc7\x7e\xb7\xae\xa2\xe4\xc8\x3b\x09\x9f\x37\x86\xce\xd0\x7f\xc2\x12\x3c\x04\x5e\x02\x1d\xa8\x4b\x9b\x97\x29\x9f\xb1\x4e\xd2\xd4\x1e\x9c\xc1\x84\x8e\x52\xc7\xa7\x58\x0e\x8e\x21\x7a\x05\xbb\xba\x6e\x85\xc1\x72\x9c\xfc\x1e\x22\xa6\x89\x31\x69\x90\x49\xf5\xcc\x43\x03\xe3\x59\x2f\x1a\x62\x15\x7a\x2e\xc4\x1a\x8b\xed\xe4\xb5\x56\xbb\x6b\xa0\xce\xfd\x05\xf3\x2f\x4d\xda\x8d\xb8\x14\xba\xab\x2d\x47\x79\x25\xe9\xf0\xc7\x6e\x02\xfa\x2b\x8b\xdf\x9f\xc6\x3b\x08\x8d\xa3\x7f\x47\x8a\x9c\xd4\x82\x78\x8f\x21\x73\x04\x65\x6f\xde\xe3\x3e\xdd\x47\x2f\x38\x89\xb9\x3c\x6e\x12\x58\xbd\xb8\x07\xf7\x99\x92\xbc\xf8\xb4\xe4\xdf\x82\x65\x14\x7f\xb1\x77\x45\x7a\xb8\x7e\x91\x2d\xc2\x3b\x9f\x2a\x88\xd8\xf4\x23\xe0\x55\x20\xd5\x05\xae\xa6\xf3\x40\xe3\xc1\x80\x04\x16\x27\x82\x89\x83\x39\xae\xc1\xa2\x5b\x89\xf8\xae\x5e\xa8\x39\x5b\x34\xcf\x96\xb9\x46\x47\x82\x7e\x84\x78\x32\x0a\x29\xcc\xd9\xc2\xfa\x8f\x3a\xcf\xbb\x59\xa7\x94\xee\xc5\xca\x47\xaf\x40\x6d\x64\x0e\xfa\xac\x99\x10\x49\x9c\x15\xd3\x17\x5f\xee\xa6\xdb\x71\x29\xdc\x72\x09\x67\x61\x08\x4a\x80\x96\x27\x38\x83\x5e\xf9\x97\xf7\x6a\x03\x7f\xfd\xf8\x23\x1e\x9d\xe4\xbb\xeb\xb3\xfc\x24\x4b\x77\xe7\x79\x5c\x2c\xa7\x45\x33\x85\x16\x8e\x63\x7e\x51\x11\xe2\x73\x96\x5d\x3e\xd3\xc4\x0b\xca\x8b\x8d\x6b\x9c\x31\x51\x25\xb9\x14\xb0\x53\xea\xfb\xdc\xc1\x25\xa0\x7a\xbd\x3d\x75\xdf\x6d\xe7\x34\x85\xe8\x4e\xbe\x89\xfd\xe1\x80\xf2\x39\x5f\x50\x78\x8e\xbb\x76\xf3\xfe\x0b\x62\x1d\xdc\x1d\x7f\xfb\xff\x94\x58\x07\x9d\xab\xa6\x1c\x22\x47\x5c\xa9\x0e\x38\xfa\x46\xd9\x77\xa0\x1f\x27\x98\x94\xc7\xde\xfc\x03\x4d\x58\xd1\x15\x11\xb3\xa0\x4d\x64\x20\x9b\x97\x28\x1a\x2c\x7d\xa1\x93\xf1\x34\xbd\x5f\x4c\xd3\xc1\x40\x19\xac\xd4\xfa\x9e\x74\x31\x15\x34\x27\xea\xd1\xf7\xce\xbb\x43\xff\xe1\x22\xad\x91\xd3\x87\x50\xe9\x13\xd5\x03\x46\x75\x10\xbf\x62\x94\x48\xf4\x91\xb9\x83\x05\x1d\x04\xa4\x36\x5a\xe7\x58\x4f\x0e\x57\xa4\xa8\x94\x17\xa8\x3a\xcc\x59\xd7\xdd\xcd\x9f\xf2\xd9\x07\x4f\xd2\x1f\xef\x62\xb2\xfb\xd3\xf1\x1a\x56\x74\x3f\x8a\x0f\x87\xdd\x6d\x11\x1b\x96\x1d\x64\x66\x35\xaa\xef\xe2\x2a\xb2\xa1\xab\x3a\x40\x43\x2b\xbc\xc3\x96\x9e\x37\xc3\x3b\x9c\xd2\xf3\x3a\xbc\xc3\xfa\x58\x4c\x07\xe5\x15\xda\x86\xd6\xd6\x50\xdd\xb5\x8a\xcd\xb0\x36\xb1\x19\xd6\x9f\x8e\xcd\x70\x5a\xc7\x66\xb0\xc6\x15\x10\xa2\x61\xed\x85\x68\x58\x2f\x30\xc9\x2b\x72\xdd\x0e\x43\x67\xc6\xa9\xdc\x34\xbb\x34\xa3\xd7\x36\x74\x03\xb9\x6c\x85\xec\xf8\xd8\x1d\x9f\xe3\xdd\x6d\x30\x78\xd1\xd5\x4b\x47\x6c\x8b\x8f\xd1\x65\xf4\x2e\x0c\xdf\xf9\xb1\x2d\x2e\x10\xc3\xd1\x43\x39\x9c\xa9\xf2\xad\x3a\xd2\x18\xec\xb7\x36\x92\xaf\xc8\x55\x3d\x64\xb5\xc8\x0b\x75\xe6\x9f\x77\xb4\x14\x94\x50\xc2\xa9\x7f\x38\x9c\x01\xcb\xfc\x02\x31\x4c\xe9\x55\x45\x9e\xd1\xe7\xf1\x73\xf2\x84\xde\xf9\xd7\xdb\x72\x70\x78\x5b\x0e\xbe\xba\xb3\x26\xaf\xe9\x9d\x7f\xcd\x87\x83\xc5\xf8\x6a\x3e\x1e\xfe\x18\x0f\x57\x8b\xc1\x57\x77\x52\xf2\x81\xde\xf9\xd7\xf8\x7c\x3e\x9e\xa8\xcf\x13\xf9\x99\xcf\xc7\xc3\xef\xd5\xf7\x7b\x0a\xfa\xe2\xa7\x5c\xc0\x80\x7e\x6d\x0a\x2d\x26\x64\xb3\x23\xff\x5a\xaf\x84\x74\x85\x9e\x3b\xee\x02\xcf\x94\xab\x99\xd1\xfe\x09\xcf\x34\xc1\xea\xbc\x40\x95\xfe\x62\x35\xb3\xbf\x10\x8e\xd8\x94\xd1\x0c\x09\x3c\x13\x83\x20\x88\x84\xf2\xab\x31\x16\xc1\xcd\x7e\xd5\x42\xb1\x68\x20\x6b\xd5\x86\xb3\x4f\x48\x60\x79\x95\x0f\x3a\xa0\x02\x76\xbc\xd5\x4f\x4c\xda\xec\x3d\x62\x3a\x96\xda\x5d\x4c\xf8\xec\x6e\xf4\x03\x8e\x5e\xdb\xdc\x67\xd1\x80\x55\xe4\x31\xad\x63\x4a\xd6\x2c\x56\x40\x1e\x29\x85\xe4\x36\xbe\x22\x2f\xf5\xcf\x94\x43\xaf\xaf\xba\xc3\xd9\x2b\xa7\x7f\x08\x4a\xa1\xe2\x10\xf7\x27\x64\x25\xff\xd9\x48\x1a\xe5\x3d\x59\xda\xbf\x5d\xc5\xf0\xd8\x21\x5c\xe7\xb5\xdd\x50\x41\x52\x9a\xdb\x93\x48\x73\x7d\x7c\xc9\x9e\x0a\x52\xc7\xd4\x48\x09\xef\x52\xbb\x73\xca\x86\xc9\xb4\x19\xdc\x28\x39\x1c\xf8\x03\x89\x2c\xf9\xfd\xf1\xe1\xb0\x0a\x43\x36\xdc\x3f\xa0\x69\x5d\xff\xd4\x8a\x39\x4b\x65\x47\xb0\x75\xb6\x01\xc4\xec\x2b\xa9\x63\x33\x70\x4a\xda\xac\x90\x18\x22\x36\x4c\xec\x02\xad\x66\x2f\x11\x27\xa9\x4c\xdc\x63\x1c\x71\x50\x22\x57\x9d\x6a\xd1\xd2\xcc\x70\x13\x86\xc5\xec\x5c\x1e\x4d\xe4\xcc\x3b\xc6\xae\xa6\xd3\x19\x27\xe1\x2a\x1c\x4b\xba\x42\x0e\x5d\xd4\xaf\xf4\x91\x84\x1a\x3f\x5f\x0b\x06\x1b\xc1\xb7\xe3\xb4\xef\x29\x23\x8d\x39\x0a\x4c\x76\x6a\x38\x71\x85\x12\xe8\x67\x65\x5a\x00\xa9\xc5\x14\x2d\x71\x47\xd5\x73\x94\xd4\x8a\x6d\x3b\x02\xf5\x2a\xa6\x5f\x14\x93\xd8\xde\x31\xd0\x5f\x91\xc0\x87\xc3\x98\x64\x88\x4b\x99\x7a\x47\xfb\x7d\x3e\xca\x58\xbc\x94\x54\x21\xa5\x68\x45\x83\x6d\x7c\xf5\x6b\x9c\x8a\x20\xe5\x3d\x8e\x67\x8f\xd0\xaf\x88\x8f\x74\x1a\x54\x15\x38\x4a\xc9\x86\x06\xa2\x88\xd3\x4c\x1e\x39\x59\x70\x26\xdb\x31\x29\xd1\x06\x93\x8b\x0e\xca\x6d\x1d\x38\xca\x30\x6c\xce\x70\x0f\x57\x2c\x09\xcd\xa9\x59\xaf\x8a\x5c\x8c\x56\xd9\xde\xb7\x78\x68\xcd\x78\x16\x47\x6b\xb4\x84\x58\xb7\x17\x15\xf9\xad\xfb\x18\xc2\x81\xfb\xe3\xc8\xfb\x11\xfd\x31\xc9\xbf\xf4\x6c\xfd\x66\x37\xa2\x06\x64\x41\x03\x0d\xc5\x1a\x1c\x3a\x21\x92\x3c\xee\x6d\xd0\xca\x31\x79\x05\x43\xba\xa9\x6b\x68\x80\x47\x82\xd4\xc5\x2a\x5c\x91\xa7\xf4\x66\xc9\xce\xf3\x3d\x4f\x58\xf4\x8a\xc8\xa1\x09\x91\xb1\xe8\x8f\x8a\xbc\xe9\x22\x32\x4f\xe7\x6c\x51\x91\x9f\xbb\xa8\x46\xd7\x05\x43\x45\x7e\x6a\x03\xbb\xf3\x49\x58\x75\xb1\x5e\x91\x5f\x3a\xef\x29\x5d\xf9\x54\xab\x79\x0e\x07\x2f\xf5\xe7\xb3\xd3\x67\xe6\xce\xd2\xb9\xce\xf8\xbd\x6e\x05\xfd\xde\x69\xaa\xa6\xc8\x61\x18\xd6\x54\xcf\xcf\xb1\x0e\xc4\x5d\x97\x35\x76\x9e\x9d\x17\x32\xdd\xb7\x2e\xa6\x43\x3f\xa2\x20\xa5\x36\xbd\x6f\x7e\xd7\x1c\xcb\xcc\x8c\x2e\xb2\x3d\x62\xe4\x06\x20\xfa\xfb\xff\x88\xc7\x90\xff\xe1\xba\x27\xf6\x25\x33\x5c\x3f\x83\xfd\x3b\x12\xd8\x05\x98\xf3\x44\xc3\xac\xc1\x12\xd4\xec\x92\x73\x96\x5e\xb1\x15\x2b\x18\x4f\x8c\x7e\x01\xd4\x1a\x9b\xb8\xe4\x5f\x8b\xde\x39\x63\xbc\x97\xf2\x54\xa4\x71\x96\x96\x6c\xd9\x1b\xf6\xca\xfd\x8e\x15\x08\x7b\x25\x24\xcb\xc7\x96\x41\x6d\x62\x04\xb7\x57\xa2\x1e\xff\x7f\x3a\xbb\xe9\x3f\x0d\x5b\x59\x32\xf1\xd2\xac\xd3\x8b\xd5\xac\x8e\xf3\xeb\xa4\x76\x6e\x8f\x3a\x82\xe4\xe1\xd0\x59\x0b\x8c\x1b\xbc\x65\xfe\xca\x05\x20\xfa\xaa\x7b\x08\x87\x83\x2f\x2c\xb7\xfb\xa3\x82\xc0\x06\x92\xd2\x91\xdc\x16\xff\x71\xec\xf5\xfa\xb6\xb7\xa4\x75\x0e\xf5\x55\xb7\x47\xf4\xb5\x9f\x56\x1a\x05\xb8\x32\x51\x23\xc9\x3f\xd4\xaf\xff\x44\x02\x77\xbf\x95\xaf\x46\x0b\x42\xfe\xf4\xd8\xc0\x3a\x77\x90\x7d\xe5\x5a\x74\x0f\xf3\xb5\xdc\x0d\x3d\x76\xb5\x2b\x58\x59\x02\x83\xb2\x2f\x85\x79\xa4\xe7\x9c\xa9\xb7\x32\xf2\xc2\x1b\xf7\x94\x1d\x8d\x21\x0a\x31\xf9\x6a\xe1\xe9\xc6\x39\xe8\x91\x36\xe5\x60\x8e\xe5\x46\xdb\x08\xbd\xc2\x44\x84\xa1\x5a\xed\x4a\xbd\xb1\xc9\xa9\x20\xa8\x30\xaf\x3f\xaa\x10\x4b\x01\x51\x8d\x1d\x51\x21\xee\x8a\x7c\x57\x8e\xc0\x96\xab\x60\x5c\xbd\x51\xf8\x77\xe5\xd9\xaa\x47\x56\x60\x92\x43\x1a\xc9\x31\x11\x15\x2a\x46\x2f\xf7\x05\x3b\xc9\xb7\xbb\x9c\x33\x2e\x1c\x86\xef\x9f\xce\xd6\xff\xe7\xff\x8b\x11\x29\x63\xff\x23\x30\x29\xdc\x5a\x98\xf5\x10\xec\xff\x04\x2e\xe2\xec\x7f\x3b\x3a\xb6\x7d\x17\xcc\x43\x84\xc5\x11\x00\x7c\x19\x26\xb4\xad\xe7\xac\xe1\x85\x05\x71\xbb\xd9\xec\xd8\xfa\x08\x63\x9f\xc5\x6f\xf7\x2d\x71\x8f\x7c\x85\x23\x06\x41\x82\x88\x7a\xa8\x2b\x65\xc7\x70\xb0\x91\x58\xa6\xfd\xff\x2d\x48\xb8\xfb\xd1\xf8\x06\xb1\xfe\xe7\x2d\xc4\x1a\xf6\x45\x24\x4c\x8b\x4c\x62\xf3\x5a\x87\xcc\x30\x26\x39\x43\x1c\xb4\x6b\x81\x62\xe9\x7f\x86\xf7\x84\x0b\x3f\x24\x22\x3c\x32\x90\x7e\x64\x3a\x33\x0c\x1b\x09\x5a\x1c\x08\x43\xd4\x9d\x81\xf4\x3b\x05\x75\x86\x56\xe5\x79\x03\x28\xe2\xd5\x49\xc6\x62\xde\xea\x3b\x5e\x41\x8f\xf1\xca\xeb\xc7\x7e\xaa\xd6\xe3\x55\x57\x9b\x22\x5f\xaf\x33\xab\xbf\x0f\x48\x4b\x0f\x2f\x28\x97\xa7\xcb\xb8\x8b\xe1\xa9\xa8\x67\x67\xaa\xcd\xd9\xa2\x33\x51\x5d\xb7\x39\xbd\xd5\x0d\xf9\x73\x50\x62\xa7\x0a\x5d\x50\x12\x41\xd9\xe8\xc3\x9e\x15\xd7\xaf\x75\xfc\x04\x30\xc9\x50\x97\x64\x8f\xf3\xed\x93\x0c\x6e\x6e\x7e\x42\x58\xdd\xd0\x59\x1b\x37\x63\x62\xe5\xd5\x45\xca\x34\xac\x08\xc3\x5f\x50\x61\xc5\xee\x42\x7b\xdd\xf2\x11\x33\xb7\xbf\x5a\x81\x95\x42\x1c\x94\xc7\x2f\x4e\x9f\xe7\x4b\x86\x91\x2d\xa0\x22\xeb\x9b\xfa\xf9\x68\x07\x4e\xe0\xc6\xc6\xc9\x9f\xa6\xa2\xac\x6f\xc0\xd4\xbc\xe8\x0c\x9e\x09\xeb\x01\x8b\x69\x17\xa7\x6c\x3f\x84\x2a\xac\x25\x4a\x51\x5b\xa2\xe4\x06\x4e\xa3\x9c\xab\xdb\x97\xe9\xcf\x10\xd1\x26\x87\xf7\xc8\x88\x7a\xb7\x53\x48\xd2\x7e\xa3\xcc\x48\x44\x6d\xa2\xa4\x1c\xdd\x64\x7f\x5d\x23\x7e\xe5\xee\xc0\x23\x7b\xa1\x94\x2d\x93\x82\x0a\x6b\x23\x23\x6a\x1b\x19\xb3\x82\x31\x4d\xf5\xc3\xdb\xca\x40\xb1\xb4\xdf\xb5\x81\x62\x7c\x38\x94\x3a\x78\x35\xe5\x23\x0f\x64\x08\x1f\x0b\x03\xa7\xa1\xa2\xe9\xa8\x31\x6b\x01\x2f\xd3\xd4\x0e\x29\xab\x87\xb4\xa7\x71\x18\x16\x7d\x4a\xd3\xc3\xa1\x0c\xc3\xbc\x4f\x69\x36\xed\xf3\x51\xf9\x3e\xdd\xbd\xe0\xa7\xf9\x5e\xae\xfc\x3e\x0c\xe5\x6e\x0a\xc3\xc4\x40\x2c\x35\x10\xcb\x2a\x00\x68\x5d\x9a\xf6\x27\x10\x1a\xd5\x83\x9e\x5c\x88\x55\x03\x5e\x76\xe3\x40\xa8\x37\xff\x0c\xbc\x02\x86\x48\x22\xbd\x4f\x1d\x03\xc5\x3a\x81\x21\x92\x61\x8d\x0c\x85\xf9\x19\x09\x3c\xd3\xbc\x95\xc4\xef\x41\x24\xb7\xc1\x2c\x80\x72\x46\xb9\x1e\x44\xd6\xbb\x33\x2d\xe1\x51\x54\x63\xb2\x50\x97\x0d\x22\x3f\xa4\x89\xcd\x80\xcf\x20\x0a\xd4\x56\x0f\x5a\xd3\x38\x83\x13\x69\x19\xb0\x3f\x31\x17\x70\x7d\xe5\xf9\x92\x49\x58\x80\x6f\xae\xda\x5e\x25\xd5\x0b\x11\xeb\x25\xd5\xcb\x11\xeb\x75\xad\xa6\xe5\x65\x2a\x92\x0d\x02\xdc\x54\x83\x53\xa2\x84\x24\x2e\x99\x07\x16\xcf\x45\x13\x15\xa3\x24\xcb\x39\xb3\x60\x00\xfd\x8b\xe1\x53\xe5\xf6\x1f\x2e\x99\x00\xcc\x11\x54\x78\x0a\x8d\x35\x20\x7a\x7b\x7b\x39\x2a\xb1\x5b\xef\x93\xe5\x49\xe9\x16\xd7\x30\xb7\x68\xe6\x88\xe9\x40\xbf\x6f\x23\x75\xb6\x5a\x64\xa4\x04\xc3\x01\x1b\x21\xbd\xd9\xbf\xeb\xff\x8b\x51\x5a\x5f\xfb\xca\xa5\x71\xf6\x3a\x49\xa8\x75\xbc\x39\xcd\x97\x8c\x64\xf5\xf7\x2b\xb9\x4c\xfb\xfa\xfb\x05\xf8\xdc\x97\x53\xbd\x82\x66\xfd\x8c\xf2\x51\x2d\x9f\x51\x6d\xf9\x27\x2a\x77\xa8\x13\xa9\x8f\x8d\xfe\xdc\xf3\xad\x2c\xc5\x96\x54\xc7\x89\xde\xd1\x37\xa8\x56\x85\x36\xc9\xe6\x6e\xb6\x43\x06\x9b\x78\xe8\x8c\x64\x64\x8f\xa3\xee\xac\x26\xe9\x52\x0f\xed\x8c\xe2\x26\xb5\xc6\x84\x6b\xa1\x2e\x21\xd9\xff\x17\x84\x3a\xcd\xba\xba\x52\x5d\x62\xa4\xba\xc4\x9c\xfb\xc7\xe9\x12\x16\xb2\x43\xc0\x53\xa6\xa6\x1e\x8b\x81\xac\xa1\x03\x76\x9e\xdc\xd7\x4d\xfd\x9a\x66\xd9\x1b\xb5\xe0\x9f\xdb\x5a\x6d\x2c\x61\x5c\x04\x6b\xc2\xaa\x4d\x67\x1c\xb6\xcd\x24\x3a\xbb\x6a\x5c\xbf\xc0\xff\x09\x39\x35\x6f\x39\xcf\xff\x07\xb9\x29\xd8\x2a\xd2\xfe\x37\xaf\xd8\x4a\xc7\x85\x6d\x23\x47\xb0\x7c\x93\x32\x2d\x63\x9e\x50\x9b\x60\x92\xa9\x44\x92\x75\x4b\xb5\x29\x73\xbc\xef\x6f\x1c\xaa\x1a\x25\xa3\xf3\x3c\xcf\x88\x4b\x58\x4d\x9a\x73\xbe\x4c\x92\x73\x70\xa3\x64\xa4\x2e\xaa\x88\x73\xba\xa3\xc4\xc4\x34\xf0\x8f\xb4\xa1\x20\xc9\xa8\xdc\xc4\x3b\x86\x91\x55\xd4\xea\x86\xad\x8e\x56\x7d\x57\x98\x78\x0c\x58\xdd\xae\xc3\xc1\x45\xc9\x28\xe6\xd7\xc4\x70\x30\x51\x32\x92\xe0\x26\x6a\x05\xcc\x97\xa1\x12\xba\xb0\xa1\x13\x72\xf4\xf0\xec\x7f\xca\x1a\x91\x08\x5c\xe0\xf4\x27\x3e\x60\xfa\x13\x0f\x28\x52\xe0\x75\x00\x32\x61\xdf\x78\xb0\xd0\x78\xab\x01\x09\x9d\xea\x4f\x4f\xb9\x20\x39\x53\x83\x04\x3b\x33\x65\x6f\xa0\xe6\xa5\xeb\xdb\x79\x29\x14\x67\xa6\x05\xe1\x4c\xd4\x9d\x69\xcc\x68\xaa\x8c\x5a\x62\xf6\x99\xc6\x10\xf7\x54\xa4\x8b\x6f\x94\x29\xc4\xf7\x3a\x32\xf4\xdd\xee\x40\x17\xe3\x3a\xd0\xc5\x94\xa3\x7b\xdf\x39\xba\x93\xdd\xed\xb7\xb4\x8e\x2d\xce\x04\xa2\x88\x9b\xe1\xd7\x12\xe9\xca\x13\x77\x41\x18\xdb\xa4\xcb\x25\x03\x7c\x08\xc6\x8c\xc1\x45\x5a\xa6\xe7\x19\x83\x84\x30\x0c\x92\x2c\xdd\xa9\xcc\xba\x95\xa5\xc5\xa7\xbe\x6f\xcb\x7d\x36\x2a\x93\x22\xcf\x32\xf5\x79\x38\x78\xae\x30\x36\x17\xbe\xcc\xf5\x59\xdb\xe1\x45\x3f\x18\x6f\x50\x38\xe2\xa3\xfc\x82\x15\xab\x2c\xbf\xfc\x1d\x22\xf8\xba\x29\xbf\x49\x0c\xa8\xc9\xee\xa4\x11\xed\xba\x7e\x4f\x80\x94\xf5\x73\x6a\xf7\x59\x18\xc6\x0f\xc4\xe1\x90\x3e\x90\xbf\xee\x8b\xd9\x38\x4a\xef\xcb\xa9\x96\xf7\x29\x3f\x1c\xe2\x07\x54\x84\x61\xf9\x80\xf2\x59\x3a\x64\xc3\x22\x8a\x1f\xc8\xef\xfb\xfc\x70\x80\xba\xe5\x03\x3e\x8b\x87\x62\x90\x47\x63\xa0\x37\xe7\x9d\x36\xec\x42\x4f\x15\x48\xb3\x64\xc8\x21\xce\x0e\x30\xe4\x29\x87\x37\x9e\x25\x4b\x7c\x9e\xef\xf9\x32\x2e\xae\x21\x8e\x3d\x9c\x00\x3d\xad\x9f\x61\x4d\x34\x26\x2b\x49\xd9\xa9\x27\x4b\x67\x69\xa7\x0a\x46\x72\xd4\x15\x88\x61\x72\xbf\x74\x93\x34\xf3\x00\xa0\x0e\x9d\x53\xc7\x36\x48\x6c\xf4\x00\x3d\x83\x94\xaf\xed\x45\xc9\x31\x47\x19\x92\xd1\xf9\x42\x72\x1c\xd3\x1d\x78\xb7\x94\x68\x8f\xa7\xb0\x3f\xd0\x5e\xc5\x8f\xd4\x31\xb9\x30\xa5\x34\xc1\x37\x99\x32\xf8\xdc\xe3\x29\xbc\x6d\x53\xed\x9d\xa0\x05\xa3\xf3\x7c\x79\x1d\x86\x4b\x68\xa8\xbf\x44\xc7\xfa\xc4\x87\xc3\x12\xed\x49\x8c\xc3\xd0\x36\x57\xd5\x71\xf9\xb5\x7f\xe5\x45\x5a\xee\xe3\xec\x97\x94\x5d\xee\xf2\x42\xcc\xfc\xcf\x91\x16\x28\x38\x67\x85\x92\x85\xce\x3f\xaf\x9e\x66\x99\xa0\xa2\xda\xea\x64\x6b\x6a\x2a\xa8\xfd\x76\x38\xec\xe2\x35\xfb\xed\xc5\x6a\x55\x32\x41\x4e\xfd\xdc\xdf\x55\xee\xef\x3a\x77\xad\xfd\x60\xe4\x6e\x48\xf9\xfa\x04\x8e\x8c\xb2\x32\x25\x17\x74\x6d\xe4\xa5\x6b\xba\xd6\x1c\xf7\x43\xba\x06\x47\xa1\x4b\xba\xd6\xce\x58\x1f\xe9\xda\xb8\x61\xbd\xa3\x6b\xe5\x4c\xf4\x82\x06\xa5\x88\x0b\xc0\x0c\xc5\xe1\x10\x70\x16\x17\xac\x54\x9f\xb3\x87\x51\x60\x9e\x53\x9a\x7d\x8c\x1e\x0e\x2e\xee\xdc\x25\x67\x34\x48\x18\x17\x60\x23\x41\xf3\xd9\xbb\xc1\xf5\x9d\xbb\xb6\x58\x3e\xbb\x8c\xde\x91\x2b\xb9\xd0\xcf\xe9\x78\xfa\xfc\x7e\x66\x54\x99\xcf\x8d\x2a\xf3\x19\xcd\xe6\xcf\x17\xe4\x09\x7d\x76\x74\x3a\xaf\xe9\x13\x33\x9d\x0f\xf4\x89\x9e\xce\x09\x7d\x02\xd3\x79\x4f\x9f\xe8\xe9\xfc\x4a\x9f\x98\xe9\x3c\xa6\x4f\x60\x3a\x3a\xda\xeb\x90\x33\xb6\x54\x17\x7e\x3c\x0c\x1f\x42\x18\xdb\x77\xf0\xef\xc7\xfb\xf4\x3c\x0c\x2f\xef\xd3\x15\xa4\x9f\x40\xca\xaf\x90\xfb\x18\xd2\xdf\x1b\x05\xc1\xd5\x54\x45\x87\x6d\xa1\x9e\x67\x98\xbc\xb4\x56\x24\xe8\xd1\x48\xb9\xac\x3d\x63\x2b\xed\xcb\x37\x19\x63\xf2\xaa\x5d\xe0\x2c\xdf\xd5\xf9\xbf\xb5\xf3\x5f\xc9\x39\xd5\x25\xfe\x68\x97\x78\x04\x73\xad\x8b\x3c\xa5\x63\xf2\x86\x8e\xc9\xcf\x34\xc8\x61\x8f\x40\x56\x90\xf2\xde\xb3\xd9\xb3\x91\x93\x34\x7c\xe6\x62\xd8\xe1\xcb\xe1\x6f\xd1\x98\xfc\x64\x6a\xa9\xbd\xe9\x57\x53\x69\xb6\x9e\xfe\x7c\x35\xfc\x23\x82\x8b\xe6\x84\x52\xfa\x0c\x3f\x75\xb7\xce\xec\x85\xb3\x57\x5e\x0c\xcf\x23\x7f\x27\x6d\xd0\x29\x39\x1d\x9c\x93\x73\xf2\x8a\xfc\x41\x4e\x07\x2f\xe4\xff\x83\x0b\x72\x81\xa3\x17\xc3\xf3\x3b\x77\xc9\x1b\xa7\xb1\x7c\x76\x16\x79\x9b\xec\x6c\xb8\xf2\x36\xd9\xd9\x70\x15\x6d\xd0\x96\x6c\x07\x2b\xb2\x22\x2f\xc9\x6f\x64\x3b\x38\x93\xff\x0f\xae\xc9\xb5\x04\x8c\xb1\x5a\x41\x63\xf2\x74\x70\x8a\xc9\x1b\x37\xe5\xcd\x60\x8b\x55\x28\xc5\xc6\x0c\x86\x27\xc3\x57\xde\x2c\x7e\x1d\xfc\x31\xf8\xa9\x35\x93\x13\xf2\x2b\x79\x2d\xe7\x31\xf8\x89\xbc\x20\x76\x16\xe8\x64\xf0\xfa\xce\x5d\x3c\xf8\xa9\x3d\x9b\xe1\xe3\xe1\xcb\xe6\x8c\xd0\xe3\xc1\x07\x59\xfc\xe7\xc6\xcc\xde\x0f\x7e\x1b\xfc\x1c\x6d\xd0\x63\xf2\x9e\x7c\x90\x73\x1b\xfc\x4c\xce\x88\x9a\x19\x6c\xc9\x5f\xe8\x33\x8d\x21\xe4\x9e\x23\xbf\xdb\xcf\xb3\x7c\x37\x7d\x31\xa0\xbf\x0f\x91\x07\x00\x63\xb6\x83\x7e\x1f\x3c\x25\xcf\x3c\xda\x3b\x7c\x3d\xf8\x09\x63\x4c\xce\x06\xf4\x97\x21\x7a\xd3\x59\xeb\x97\xc1\x1b\x5b\x4b\xed\x9f\x0f\x83\x9f\x31\xc6\xd5\x95\x42\xa8\x37\x2c\x8b\x9e\x81\x77\xd3\x53\xe5\xc8\xf4\xa6\xf6\x04\xbe\xaa\xc8\x96\x8e\xc9\x69\xdb\x5f\x40\xb3\xa4\xd9\x68\x5f\x32\x50\x75\x61\xf5\x8a\x2a\x11\x94\xcd\xc7\x0b\x30\xd2\x9b\x2c\xfc\x37\xa1\x55\xe9\x27\xab\x15\x4b\x04\xee\x0a\xd1\xc2\xd1\x60\xb0\xc5\x2a\xd6\x2c\x11\x15\x59\xbb\x71\x44\x2e\x3e\x61\x3c\x30\x63\xd1\x75\xcd\x1b\x5c\x23\x7c\x53\x7f\x3d\x54\x54\x5b\x0b\x80\x2c\x0c\xcf\x11\x23\x37\x86\x30\x47\x82\x00\xe1\xae\x37\x0a\xa9\xe9\x7a\xe4\xa0\xa3\xaa\xeb\x31\x0e\x47\x53\xc8\x32\x70\x60\x93\x58\xae\x80\xe7\x5d\x56\x62\x2a\xea\xc5\xa5\x9c\x08\x67\xe5\x69\xe1\xbd\xdd\x71\xe9\x5f\x3a\x50\x30\xff\x54\x4a\xb6\x38\xe5\xa5\x51\xb8\xc9\xdf\xc8\xbd\x7e\xf8\xe8\xbe\x4e\x50\x5f\x79\x28\x4b\x55\xcf\xcc\x85\x7b\x4f\x22\xd5\x97\x56\x79\xdb\xec\x36\x75\xcc\x6e\x73\xc9\xc9\x8e\xa7\xf1\xfd\x7c\x1a\x0f\x06\x38\x9d\xc7\xae\xd9\x6d\xbc\x98\x16\x60\xac\x74\x24\xfa\x4e\xb7\x9d\x6d\x2a\x57\xd9\x32\x75\xf0\x62\x2b\x58\xeb\x14\x24\xaf\xc7\xf8\xce\x7d\x2c\xbf\x3d\x46\xe1\x8c\x11\x64\xe3\xf1\x94\xdf\x67\xc6\x19\xbc\xdb\x15\xdc\xbb\x34\xb1\x77\x76\xad\xa6\x0b\xa7\x69\xfe\x60\x32\xe3\xc3\x49\x04\xb6\xce\x93\x69\x7e\x9f\x4f\xf3\xc1\x00\x17\xf3\xdc\xf7\x37\xcf\x1d\x7f\xf3\x46\x2c\x82\x7a\x59\x41\x2b\xe0\x41\x62\xce\x16\x26\x6c\x71\x81\xd5\xab\x8b\xec\x42\xca\xf4\xf9\x25\x2f\x37\xe9\x4a\x3c\x56\x02\x16\xb8\x7b\xfa\x41\x87\x03\x0e\x21\x02\x21\xde\x42\x00\x5e\x37\x4e\xc2\xb1\x76\x40\x77\x6a\x41\xfc\xe2\xdf\x08\xe2\x5b\x5b\xe6\x7e\xcb\xca\xd6\x9e\x29\x23\xfb\x79\xe1\xb6\x5c\x2c\xa6\xa2\xfb\xd8\x81\x12\xda\x03\xa6\x7a\x0e\xa7\x9e\xde\x99\x77\x29\x85\x18\x6d\x86\x8e\x9e\x49\x64\x15\x49\x91\x48\xcc\x44\xe4\x88\x50\x57\xae\x81\x6b\xeb\x5d\x0f\x78\x3c\xb4\x2e\xfc\xdc\xbb\x1b\x05\x7d\x6b\xa5\x58\xa5\x79\xb0\x49\xd7\x9b\x4c\xe2\x6a\xb6\x7c\xca\x97\xec\xca\x04\x9f\xfc\x05\x6e\x76\x49\x90\x96\x2f\x76\x8c\x07\x24\x50\xa1\xaa\xd9\xf2\xa9\x80\x98\x9b\xb2\x87\x60\x51\x1f\xe8\x27\x80\x68\x5a\xef\x39\x4e\x4d\x90\x00\x03\xfe\x67\xdd\xef\x05\xb5\x23\x56\x83\x4f\x9b\x75\x5b\xa8\xb0\xc4\xb8\xb6\xb7\xd7\x2e\x5a\x7b\xcf\xae\x01\xaf\xbd\x67\xd7\x27\xf9\xb2\xb6\x58\x7f\x40\xbf\xf9\x3e\x0c\xf9\x7d\xfa\xed\x58\xbd\x36\x55\xfb\x45\x04\x0f\x8b\x22\xbf\x0c\xf0\x4c\xff\x18\x08\xd7\x30\xe6\x43\xe3\xfd\xef\xe1\x64\x6a\x0d\x77\x1d\x8d\xdd\xe1\x20\xee\x8f\x0f\x07\xf1\x80\xaa\xc1\x52\xf6\x60\x3c\x1b\x4e\xa2\x62\x30\x31\xda\x52\x31\xb0\xc3\xc9\xef\x8f\x67\x39\x2d\xa2\xfc\x41\x01\x0f\x87\xc8\xf3\x0a\xab\x70\x42\x3f\x7a\x18\xe9\x57\x84\x21\x6c\xb2\x79\x22\x3f\x08\x2a\x4c\xee\x8d\xdd\xf8\x14\xef\x5d\x29\xef\x57\x24\xf0\x14\x9e\x72\xf1\xaa\x31\x72\x82\x5c\xfc\xfd\x6b\xc7\x02\x19\x69\xc6\x2c\x13\x73\x2e\xf2\x1e\x5d\x3f\x5d\xa2\x20\x9e\x4c\xae\x87\xa5\x88\xc5\xbe\x1c\x6e\x59\x59\xc6\x6b\x56\x5f\x61\x8b\xc3\x01\x21\x08\x35\xe1\xe9\xbc\x40\x4d\x81\xf1\xa8\x64\xc2\x06\x15\x45\x41\xba\x0c\x48\x77\x73\x44\x34\x8a\x16\x39\xc4\xb0\x54\xe5\x3a\xf2\xe3\x22\x8d\x87\x59\x0a\xee\x4f\xbb\x3c\x4b\x45\x57\x23\x50\xa8\x60\x19\xbb\x88\x21\xa4\x6a\xbc\x5c\x42\x04\x97\xb2\xa7\x63\x5e\x6a\x7d\x68\x5c\x96\xe9\x9a\x23\x31\x82\x60\xd8\x92\xea\x4a\x5e\x38\x0a\xc6\x01\x49\xb2\x74\x17\x05\x85\x64\x0d\xc6\x3d\xf8\x0f\x07\x46\x53\x1d\x4c\x76\x57\x01\xd9\xc6\xc5\x3a\xe5\x51\x30\x84\x2f\xa3\x0f\x88\x8c\x3a\x83\xe8\x98\x16\xd0\xda\x4e\xc7\x89\x8e\x82\xf8\xbc\xcc\xb3\xbd\x60\x81\xf6\xe2\x86\xb6\x2a\x89\x5c\xa5\xd8\x29\x51\x06\xe3\x4b\x78\xcd\x16\x09\x6c\xac\x9a\x1e\xd3\x31\x79\x44\xef\x92\x97\xf4\x1b\xf2\x8a\x7e\x4b\x7e\xa3\xf7\xc8\x1f\xf4\x3b\xf2\x94\x7e\x4f\xde\xd0\x1f\xc8\xcf\xf4\x47\xf2\x13\x9d\x8c\xc9\x2f\x74\x32\x21\xbf\xd3\xc9\x5d\xf2\x77\x3a\xf9\x86\xfc\x83\x4e\xbe\x25\xd6\xbc\x6b\x55\x30\xf6\x91\xa1\x9b\x3d\x7f\xcf\xf3\x4b\x1e\x3d\x26\xdb\x7c\x5f\xb2\x37\xbb\x68\x42\x52\xc1\xb6\xa7\xf2\xeb\x89\xe4\x23\xa3\x47\xe4\x3d\xbb\x96\xe8\x19\x8e\xc8\x9b\x5d\xf4\xd2\x4b\x90\x3f\xa2\x57\x26\xe9\x49\x99\xc4\x3b\x16\xfd\x66\xbf\xa1\x89\x3f\xcc\xe7\xcf\xf9\x96\x45\x4f\xeb\xcc\x65\xf4\x46\x42\x37\x79\x2f\xb1\x49\xf4\x33\x39\xcf\xf6\xc5\x53\x89\x76\xa2\x9f\x48\xb2\x89\xf9\x9a\xa9\xaf\x5f\x4c\x95\xd7\xbb\x38\x61\x8f\xf6\x42\xe4\x3c\xfa\x5d\x55\xd5\x5f\x7f\x87\xca\xfa\xe3\x1f\xc4\x3a\x9d\x2e\x25\x2a\x51\xd7\x85\xcb\xd7\x0e\xee\x8a\x26\xf7\x88\xc8\xf7\xc9\x46\x8e\x62\xf2\x5d\x85\xc9\x57\xc7\x6c\x15\xea\x08\x99\x1d\x2f\x34\x4f\xf9\x28\x5d\xda\x9b\xd6\x74\x79\x38\x04\x4b\x43\xcb\x86\xc1\x40\xbf\xb7\xbe\x1e\x0c\x30\xe1\xa3\x2d\xe3\xfb\xa7\x75\x69\xf5\x79\x38\xc8\x26\x06\xc1\x50\x7e\x06\x84\x8f\xb2\xf8\x9c\x65\x4e\x31\xfd\x6d\xcb\xc1\xb7\x2c\x08\x18\xda\x29\xa8\xbf\x6d\x41\x1d\x3e\x18\xee\xbe\xe4\x9c\x9d\xa2\x36\xc5\xb5\x26\x71\x6e\x9d\x55\x7d\xc1\xb6\xc3\x60\xc0\x2a\xd3\x97\xb9\x6b\x91\x19\x25\xb8\x49\xc1\xcf\x13\xb8\x9e\xd1\x79\x92\xa0\xa7\xf9\xbe\x54\xcf\xfd\xaa\x2c\x08\x91\xae\xb8\xae\xa7\x4b\x53\x51\x6e\x0d\x1e\x67\xaf\x2d\x43\xd6\xa1\xbc\x2a\x8e\xf2\x6b\x6e\x7b\xee\xc7\xad\x61\xd8\xfa\x14\xb8\x59\x02\x81\xd3\x88\xc0\x53\xaf\xa6\x7e\x6c\xaa\x52\x37\xe3\x4f\xed\xc4\xfc\xdb\xda\x7a\xc2\x00\x97\x3d\xef\x2e\xeb\x17\x55\xaf\x21\x42\xbb\x3f\x37\x28\xed\xb1\x60\x9f\x0a\x35\x9b\xf5\xd2\xfa\xeb\x66\x65\x4c\x1a\xc1\x41\x6f\xe4\xbc\xe8\x13\x89\x30\x3c\x10\xab\x7b\x7e\x37\x6c\xf0\x4d\x93\xe4\x47\xac\x22\x02\xc3\xf4\x81\x1f\x57\xa7\x25\xcd\x79\x13\x00\xcd\x56\x6f\x5c\x9e\x40\xe9\xaa\x6b\xde\x21\x0a\x02\xd2\xea\xe9\x13\xb3\x22\x8a\xdb\x68\x16\x7b\x0a\xa9\x15\x61\x7a\x89\x64\xa7\xb2\x4b\xdf\x62\xbd\xc0\x37\x9f\x09\x80\xdb\x7a\xf9\xf2\x31\x7b\x40\x60\x2e\x04\xec\xf1\x14\x6c\x7b\xa6\x1d\xa9\xc0\x09\x4b\x60\x52\x34\xe6\xf2\x50\xb4\x37\x45\xfd\x48\xb9\x3e\x79\x73\xb6\x98\x2a\x21\x31\x87\x18\xb6\xb6\x36\xca\xa1\x74\xdd\xa4\x3b\xca\x26\xa4\x9c\xd3\xde\xea\x5f\xdd\x97\x2b\x98\xe1\x51\x13\x16\x04\xee\xfa\x3a\xe0\xdb\x75\x82\x49\x4a\x62\x7a\x53\x1d\xd1\x1b\x1b\xbe\xa8\x0f\x92\x63\x53\x72\x70\x58\x50\xf5\xac\xa3\x36\x67\x79\x6a\xd3\x4f\x80\x4a\x20\x36\xaa\x8b\x12\x6f\x91\x2b\x52\x4f\xe5\x21\x5f\xfe\xcc\xb2\x1d\x2b\x4a\x84\xc9\x4d\x05\x66\x5b\x8e\x15\x8c\x1f\x29\x80\x3a\x20\x10\xe6\xe9\xd0\x72\x26\x3f\x22\x36\x4d\xec\xc9\x84\x6b\xec\x57\x10\xb9\xab\x40\x82\x24\x52\x4a\x48\x5a\x33\xf1\xd8\x66\xe3\x6e\x79\x53\x91\xbd\xc3\x13\x17\x61\x98\x8c\xdc\x82\xe6\xb1\x11\x9b\x00\x0f\xbd\xf9\x65\x30\x49\x80\xcd\xa7\xea\xcf\xe1\xf0\x98\xb8\x4e\xc2\xc9\x11\x5d\x80\x98\xb3\x45\x9f\xd2\x04\x2c\xb2\x50\x3c\x67\x0b\xf8\x8d\x35\x47\xaf\xd4\x0f\x68\x6f\xd2\xe5\x5a\x97\x27\x1e\x4d\x55\x51\x3f\x32\x5b\x13\x78\xf3\x52\x4e\xe1\x4f\xaf\x62\xf2\xa7\x56\x31\xc1\x98\x64\x15\xf6\x8d\x4a\x90\xc0\x08\x7b\x90\x88\xb1\x7d\x9f\xdf\x1d\x04\x34\xa9\xfb\x8f\x8f\xf4\x02\xb1\x60\x9d\x2a\x00\x7e\xc4\xbc\x75\x38\x5a\xd5\xba\xf3\xa4\x6e\x1b\xba\xc7\xf4\x68\xb5\xba\xe8\x9b\x52\xc5\xc3\xc8\xf9\xf1\x01\x56\x0a\x6f\x17\x79\x2e\x5e\xb1\xce\xa8\x78\x7c\xf4\x4e\xe6\x3e\xcf\x97\x4c\x11\xae\x35\x13\xaf\xf2\x5c\xdf\x88\xb6\xcf\xad\x3c\xb5\x8e\x07\xe7\x4d\x15\x31\x52\xd2\x78\x54\xb0\xd5\x3f\xd8\x35\x49\xa8\xe3\x5c\x14\x14\x6c\x15\x44\x25\xc9\x54\x3e\xd9\x53\x37\x54\x7c\x4c\xe6\x81\xaa\x15\x10\x28\xb9\xc0\x64\x47\x91\x13\x1a\xf1\xa6\x8a\x04\x1e\x95\xfb\x1d\x18\x35\xbc\x62\x2b\xb8\x18\x22\xab\xfa\x2d\x9b\x5d\x18\xee\xa6\xfe\x98\x47\xca\x92\x96\xf6\xc7\x8d\xc9\xe8\x21\xd2\xa4\x99\xde\xec\x80\xae\xe0\x1c\x2e\xa9\x87\xec\x14\x55\x68\xa8\x04\x61\x17\x22\x94\x4a\xfa\x3a\x4f\x16\xf4\x05\xca\x6a\x70\x63\x92\x8e\xa4\xac\x42\x83\x24\xdf\x9e\xe7\xe7\xf9\x55\x40\xd2\xb9\x92\x3c\xd8\xd5\x2e\xe6\x4b\xb6\x0c\x16\x74\x69\x13\x37\x71\xb9\xcb\x77\xfb\x5d\xb0\xa0\x41\x96\x96\xc2\xab\x21\x99\x47\x59\x7a\x66\xd8\x45\x4d\x51\x75\x36\x30\x7f\x19\x5b\x9e\x5f\x07\x0b\x6a\x79\x45\x92\x62\xb2\x87\x2d\x60\x38\x6d\x65\xc6\x50\xd2\x9b\x9a\x4b\x6f\xeb\x02\x81\x81\x85\x9b\x53\xa3\x86\x51\xc4\xcd\x58\x3f\xb4\xc0\x52\x73\xc2\xc0\xe0\xfe\x83\x5d\xcf\xee\x45\x13\x15\x7a\x64\x9b\x5f\xb0\x26\x55\x44\x9c\xdc\x48\x84\x12\xbd\xaa\xf4\x93\x4b\x3a\xf8\x64\x93\x85\xd0\xb4\xb8\x3f\x26\xba\x78\x87\x8d\x98\x30\x5c\x2b\xf0\x54\x08\x4f\xd9\x83\x31\x84\x0e\x6e\x33\x55\xe8\x03\x9a\x10\x71\x3b\x0d\xc3\xce\xd0\xe4\xf1\x31\xf2\xcd\xbf\x07\x4c\xc3\x7b\xd1\xf0\x73\x00\xf5\xf2\xcb\x00\xf5\xf2\xbf\x0f\xa8\xe1\x17\x43\x4a\x49\x75\xdd\x70\x72\x5a\x52\x81\x9e\x15\x3b\x55\x50\xd1\x6a\x18\x42\x65\x1b\x7b\xa7\x02\xdf\xb4\xc1\x6b\xd4\x27\x00\x0a\xe0\x7c\x8a\x05\x49\x6d\x3f\x72\x8a\x12\xa1\xfd\x54\xe4\x5b\x35\x9b\x42\xc5\xdf\x06\x0f\xf4\xfc\x70\x48\xc3\x30\x85\xa0\x34\xb5\x3e\x60\x99\x96\xf1\x39\x58\xe0\x9b\xd0\xdc\xd0\x5a\x27\xbb\x84\xd4\xb4\xff\xa8\x70\x55\x11\x2d\xda\x7a\x9a\xbd\x23\xfb\xa1\x60\x25\x13\xba\xf2\x6f\xe4\x13\xdc\x31\x34\xce\x47\xe7\x20\xb9\xfe\xa3\x71\x7a\x5b\x44\xb0\x71\xbc\xc9\x4d\xd0\x0b\x3e\x6b\x4c\xca\x1c\xea\x94\xf1\xbd\x1e\xd8\xef\xb2\x63\x6c\x24\xbb\x2f\xef\x18\x64\x79\x8f\xa5\x80\x08\x48\x06\x82\x3f\xa5\x45\x29\x5e\x14\xcf\xe2\x52\x73\x94\x8c\xf4\xc7\x7a\x1f\x3d\xad\x60\x13\x2d\xbf\xb0\xfa\x44\x57\x7f\x63\x46\xbe\x66\xe2\x0c\xa6\xa5\xc4\xfe\x26\x29\x33\xdb\xb2\x49\xc6\x52\x2a\x24\x05\xce\xd2\xe4\x3d\x89\x29\x92\x1f\x2f\x25\x5d\x20\xf2\x97\x06\x04\x26\x25\xd5\x9f\x6f\x76\x24\x81\xdf\x8f\xb2\x7d\x41\x32\x8f\xb6\x09\x32\x0f\x74\x53\x01\x09\x74\x3b\xf0\x4b\xb7\x63\x7e\xbf\xd9\xc1\x2f\xd9\x84\xa4\x7f\xfb\x2e\x9a\x43\x76\xf4\x46\x37\x16\xbd\x03\xd6\x40\x6d\x0a\x05\x73\x48\xc7\xc4\xb6\x1c\xbd\x03\x76\xc0\x2d\x62\xc7\xae\xbb\x8c\xde\xa1\xb2\x5d\xe4\xcd\x4e\x16\x90\x23\x89\xde\xa1\xa4\x91\x2f\x93\x71\x45\x56\x34\x1b\x99\x93\x22\x81\xb6\xeb\xa2\x87\x6a\x35\x02\x55\x3d\x20\x92\x04\xd6\x5f\x0e\xb5\x0a\xa2\xfd\x2c\x80\x57\xdf\x7a\xa0\xe2\x88\x82\x7c\xc7\xb8\xfa\x4d\x1a\x14\x51\x22\xb6\x60\x19\x8b\x78\xa8\x36\x6c\x00\x2f\x0b\xad\x24\x9f\x97\xe1\xaa\x6b\x32\xf4\xf6\xdd\xdf\x51\x47\xc2\xa8\x63\x9b\xbc\x46\x0c\x4f\x8f\x1c\xc4\xb9\x00\xc7\x85\x63\x79\x4a\x2f\x64\x1d\x03\x62\x8c\x38\xd6\x62\x6a\x6b\x09\x3f\x31\x5e\xcb\xf8\x31\x7e\x91\x16\x39\xf7\xcc\x4d\x74\xfc\x2c\xad\x61\xa5\x94\xde\x5a\x58\x19\xaf\x18\x87\x88\xd1\x2a\x4f\xf6\x25\xc2\x9d\xaa\x97\xce\x6b\xce\x36\xce\xf8\x7b\x65\x38\xcd\xe6\x9e\xe9\x0c\x94\xa9\x3a\x9e\x7e\xb2\x43\x29\x5c\x80\xc6\x51\x82\xf5\x70\x50\x04\xe1\xf3\xe1\x50\xf3\xd5\x9f\x2e\x3b\x4a\x97\x00\x36\x47\x55\xf6\x05\xe0\x16\xb2\xbc\x8b\xdd\xff\x61\x01\xb2\x66\xe2\x99\xdc\xec\x6d\x24\xd4\x75\x72\x36\x62\x9b\xfd\x94\x17\x91\x1d\x08\x49\x97\x91\xe5\xe6\x8c\x8a\x03\x42\x83\xed\xf6\x2d\x1e\xfd\x76\xc4\xa6\xb7\x27\xd8\x71\x69\xa4\xa5\x70\x99\x92\x39\x34\x32\x83\x86\x49\xa6\xd0\x9f\xca\x39\x63\x57\x82\xb4\xb1\x9b\x8b\xc9\x00\x7f\xc9\x1f\xaa\x06\xfc\x7c\xaa\x1f\x29\x73\x9b\x09\x16\x18\x2b\xd9\x16\x2c\xb1\xc9\xca\xc3\x77\x64\x49\x57\xae\xa8\xb7\x91\x9f\x0a\x05\x9e\xd3\x55\x9b\x4f\xa8\x71\xd1\xe1\x80\xd0\x4e\x32\xe1\x76\xd0\x54\xe2\xb8\xc4\x90\x31\x7d\xce\x20\x07\x93\x5d\x0d\x0d\xaa\x10\xaa\x53\xc8\x22\xcb\x9d\x86\x12\x55\x08\xd5\x29\x02\xc8\x90\xec\xe9\x0e\x77\xa2\x3f\x85\xba\xe2\xbd\xc8\x93\x7c\xbb\xcb\x98\x60\x41\x04\xfc\xbc\xc1\x6a\x6a\xfb\x2c\x59\x99\x30\xbe\x8c\xb9\x08\xa2\x4d\x18\xd6\xa1\x5f\x8c\x0e\xe4\x3c\x0c\xcf\x1f\xd0\xf1\xcc\xd1\xd3\xa2\x73\xac\x58\x05\xd5\x90\xd6\x66\x97\x41\xb4\x69\x88\x05\x2d\xa1\xa0\xde\x45\x44\x8e\xec\x44\x8f\x2c\x0a\xf2\xd5\xca\x58\x2c\xeb\xdd\xa6\xb7\x5e\x45\xf6\x35\x7a\x6d\x03\xe8\x18\xa6\x84\x63\xd7\xc5\x3b\x68\x5c\x79\x24\xeb\x16\x54\xd9\x5a\xc1\x4f\x2a\x1e\xe1\x0c\xfe\x42\x6a\x9e\xd8\xe1\xac\x2c\xde\xbb\x50\x7b\xec\x0b\xf5\x79\x55\x73\x48\x3e\x96\x6b\x8c\xa7\x0b\xab\x79\x8e\x2d\x9d\xf8\x25\x0c\xfb\xfd\x2f\x41\x73\x5f\x52\x7a\x24\x89\x68\xc9\xbe\x0c\x39\xea\x3a\x1a\xf1\xcb\xaa\x56\x69\xe0\x7d\xd4\x26\x1e\x9f\xdf\xb8\xa4\xad\x1e\x9a\x67\x4d\x64\xfa\x93\x45\xa6\x72\x87\x37\xf5\x18\x7c\xf4\x4e\x26\x7b\x0a\x0c\x49\x9a\xfe\x07\x29\x30\x2c\x61\x75\x87\xde\xd4\x63\xd4\x19\xbe\x1e\xa3\x4e\x6f\xeb\x31\xc8\xad\x6a\x0a\x0d\xcd\x5a\x4d\xd1\xd2\x39\x78\x4a\x85\x7d\x18\xee\xdd\xf4\x60\x31\x93\xa8\xc6\x41\x2c\xa9\xba\xf2\x52\x78\xa8\x56\x3d\x68\xec\x75\x84\x5a\x91\xb4\xb5\x1c\x31\x4d\x47\x39\x87\x2d\x71\x9a\x5f\x30\xf0\xfe\xd3\xdf\x40\xc1\x12\xf8\x56\x8c\x7a\x46\x51\x6a\x19\xf5\x54\xdd\xe0\x4b\xdc\x9c\x82\x60\x48\x76\x75\xe3\x7b\x1d\x79\x2c\xda\x93\x95\xb7\x8e\x29\x90\x33\xdb\x1d\x90\x2c\xdb\x99\x22\x60\x2d\x46\x3e\x35\xc6\x10\x82\x6d\x83\x05\x9e\xda\x5e\xb2\x19\xd2\xda\x78\x75\x6f\xb4\x03\x83\x79\x9d\x62\xec\x0b\x76\x18\x47\x46\x67\x9f\x2d\xe8\x4e\xeb\x9b\x12\xb2\xa1\x08\x09\xc9\xed\xdb\xd1\x00\x3b\xef\xa2\x8f\xac\x4f\xe9\xad\x5a\x78\xb8\xea\xef\x12\xe9\x33\x2d\x27\x3d\x02\x21\x29\x96\x43\x7e\x6d\xcc\xa7\xd5\x36\xfb\x5c\x06\xb0\x59\x77\x52\x61\x72\xf7\xde\x58\xe9\x7a\x1d\xe0\x81\xa0\x81\x3e\xc1\x88\xcb\x5a\x66\x39\xe9\x3b\xb4\x6c\x38\x27\xb7\xef\x20\xcc\x3c\x7e\x56\xde\xa8\x02\x03\x77\x50\x8b\x25\xee\x00\x36\xee\xc6\xa9\xa2\x4d\x27\xc1\x06\xaa\x57\xd3\xd8\x0c\x6b\x99\x25\x37\xef\xc0\xc2\xa6\x37\xf2\x7a\x10\xdd\x0a\x7e\xb9\x07\x2a\x72\x2e\x49\xe7\xaa\xbe\x34\x7b\x0a\x37\xa3\xad\x5b\xc0\x92\xce\x17\x15\xd1\xe8\xee\xf6\x1b\xbf\x9b\x0a\x13\x46\x9f\x80\x21\x53\x9b\xe4\x79\x77\x14\x3a\x64\x83\xa7\x87\xee\x9e\xf8\x5f\x7a\xd3\xf5\xa9\xab\x2d\x29\x40\x32\x6d\x39\x47\x5c\x29\xe2\x2f\x9f\xf8\x71\x5d\xad\xd5\x93\x15\x15\x29\xc2\xb0\x7d\xd9\xf9\x29\xf2\xaf\xee\x87\x9a\xd7\x0a\xca\x10\xc8\x65\x65\x73\x5a\x18\xde\x35\xa5\x45\x9b\x77\x85\x1b\x3a\x5f\x1d\xf7\x60\xdc\xc5\x05\xa6\xea\x2a\xaf\x7d\x9c\x53\xc2\x30\x51\x17\x1a\x9a\x3c\x4a\xf1\xb9\x01\xcf\x6e\xfe\xc8\x32\x46\x46\xa2\x00\x29\xfc\x8b\xaa\x4e\x4c\x55\xf5\x20\xda\x6b\x30\xc6\x69\x98\x2a\x19\x4e\xc7\x01\x8b\xa8\xef\x2a\x5b\x30\x59\x10\x0d\x43\x07\x26\xb5\x4f\xb8\xcc\x78\x38\x99\x5c\xab\x9e\x4e\x95\x75\x50\xe3\xe2\xd6\xd9\x6d\x9d\x5b\x90\x74\x18\x21\x44\x9d\xa6\x09\xa4\x70\x4a\x14\xde\x59\x10\x6c\x1b\x09\xb8\x24\x9c\x76\x5b\x35\x14\xe4\x3d\x08\x15\xc7\x39\x20\xb9\x7f\xee\x8e\xc7\x4a\x8f\x19\x5b\x27\x67\xc9\x86\x1c\x3b\x5c\x09\x8d\x47\x3a\x8a\x48\x2b\x2f\xab\x89\x5c\x32\x2b\xa3\x84\xec\xeb\x86\x9e\x1a\x15\x92\xad\xae\x53\x56\x75\xa5\xdd\x6c\x1f\xed\xc8\xd2\x29\xe2\xca\x60\xb6\xd8\x72\x16\x04\xd1\x92\x9c\xd7\xe5\x5c\xc3\x19\xb2\xad\x4b\x9e\x2b\xce\xe0\x9c\x9c\xba\xab\xdf\x3e\x6c\x99\x61\xd1\x57\x2e\xf2\xd8\xf8\xaa\xd1\x6d\x85\xfd\x28\xb3\xa7\x8d\xbb\xcf\xfa\xd1\x68\x6b\xef\xd2\x98\x45\x18\xa2\x53\x47\xb0\xa4\x9d\xe8\xc9\x6f\x56\x5d\x01\xc3\xe5\xf5\x29\xe1\x95\xde\x67\xb1\x12\x7f\x99\x09\x7d\xe9\xf8\xc8\xd6\x5c\x9c\x39\x34\x27\x8e\xf5\x72\xd9\x0a\x9f\xee\x9a\xa6\x74\xdd\xc4\x7a\xb6\xcf\x4c\x51\x3a\xbf\x9e\xa6\x1d\xeb\xf6\x25\xbb\x77\x41\xd1\x0c\xfa\xa7\xb0\xaa\xd2\x6e\x83\xe9\x3b\xf1\xa3\x47\xb7\x9f\x9b\x72\x1e\xaf\xe9\x81\x79\xab\x68\xdf\xfa\x16\x78\x26\x14\x54\xe7\xc5\x22\x62\xf3\x62\x41\x78\x85\xc9\x8d\x96\x97\x1a\xc5\xbb\x14\x21\x96\x27\xae\xc3\x39\x41\xfc\x3d\x1f\x25\x1c\x79\xfb\x45\xf1\x57\x26\xd6\xb5\xbb\x5b\x6c\x36\x54\x9f\xb1\x46\x42\xd4\xd1\x6d\x9d\x5b\x83\xaa\x91\x81\x09\x73\x46\xe6\x5d\x36\x74\xcd\xcd\x69\xa2\x53\x22\x6a\xd8\x55\xba\x17\x19\x4f\x97\x10\x9c\x53\xee\x46\xe5\x3a\xe1\xa3\xa2\xa7\x5c\xe4\xbf\xa4\xec\xf2\x08\x5c\x3a\x6f\x43\x9a\x97\x53\xcd\x73\xa9\xdf\x0c\xd0\x76\x0c\xd0\xab\xe9\x06\xe9\x07\x53\xac\xcc\xa5\xe4\xb2\x8e\x9b\xab\x6e\x97\x43\x67\x4c\xe6\x12\x2a\x5d\x21\xfe\x60\x6c\x88\xe8\x07\xd3\xc3\x6d\x37\x4f\x1c\x9b\xdb\x99\x36\x59\x2c\x24\x7b\x21\x07\x75\xf4\xce\xe0\x48\x24\xcb\x8e\xb1\x0d\x27\xd3\xe2\xfe\xf8\x70\xe8\x77\x5f\xe7\x1d\x0e\x47\xaf\xfe\xba\x46\x26\x66\xe3\xa8\x20\xdc\xea\x05\x1b\xd7\xf5\xc7\x57\xb0\x26\x9e\x6d\xa2\x09\xa6\xcd\x8e\xce\xac\xa0\x0d\xfb\x83\x5c\xe6\x1b\x46\xa4\xb1\x95\x2d\x5d\x8c\xf5\xa9\x58\x92\xd2\xf6\x6a\x2f\xc8\x49\x62\xd3\x5a\xd7\x2a\x24\xb3\x79\xb5\x9a\x93\xec\x6d\xa2\x95\x4e\xc9\xae\x06\xb0\xd5\x5d\x92\x95\x07\x75\x95\xb6\xd4\x2f\x99\x68\x66\x86\x6c\xf4\x5b\x19\x86\x45\x21\xe7\xb4\x71\x73\x45\xb6\xd4\xb9\xac\x83\x59\x9f\x36\x53\xb4\xf0\x40\xd6\xf4\xf8\xbd\x1e\xb9\xa0\xc7\x16\x8f\x5c\xd3\xfa\xb1\x0c\x6b\x01\x47\x1e\x3a\xa9\xc0\xe2\x6b\xdc\x73\xe3\xc2\x2f\x2a\x49\x17\xe8\xa2\x84\x78\x50\x8b\x32\xe2\x02\x2c\xda\x13\x0f\x56\xd1\x8e\xb8\x60\x8a\x56\x04\x84\x86\xa8\xbe\x59\x24\x06\x64\xd1\x92\x58\x68\x45\x1b\x52\x03\x2a\x3a\x27\x35\x44\xa2\x2d\x69\x81\x27\x3a\x25\x9d\x90\x89\xd6\xa4\x03\x28\xd1\x05\xf1\xe1\x11\x5d\x93\x1a\x14\xd1\x43\xe2\x9a\x40\x46\x06\xb4\x36\x85\xf8\x36\x92\x91\x0e\xac\xe0\x15\x31\x46\x58\x51\xe7\xb5\x37\xf1\x38\xbe\x94\xa4\xcb\x28\x6e\xcb\x2d\xc2\x93\x4c\x0c\xcb\x91\xfb\x5c\x46\x01\x38\xa3\x15\x93\xe2\xc8\x53\x33\x8a\xbc\xd6\xa2\x07\x60\x11\xcb\x86\xa8\xe7\xa2\x35\x7b\x57\xe8\xd7\x3f\xbb\x31\xbf\xde\x2f\x73\x56\x2b\xd1\x08\xab\xb1\xeb\xe2\xe8\xbb\xa0\x3d\x49\xc6\x95\xd3\xd5\xe1\xc0\xc3\xf0\x12\x42\xe7\xf9\x9a\x35\x2d\x17\xb8\x73\x60\xae\xae\x8d\x4a\x01\xc0\x51\x5e\xf2\x56\xfe\x84\xf4\x05\xe2\xe6\xb1\xb7\x30\x64\x6d\x24\x28\x13\x5d\x6d\xdd\xa4\xea\x8a\x57\xc5\xac\xd9\xd2\x8b\xbd\x60\x05\x08\xfb\x88\xdd\x62\xb4\x94\x37\x47\x7d\x96\xef\x93\xcd\x69\x7e\xc1\xa8\x94\x3d\xd2\x5b\xb2\xc7\x15\x89\xbd\x49\x69\xfc\x6e\x27\x42\xfa\x13\x3c\xf5\x2a\x1d\x0e\xc5\xe1\xd0\xef\x98\xdd\xe1\xd0\x98\xdd\x77\x7f\xcd\xf4\x4a\xda\xcd\x12\x4c\xcb\x8e\x87\x85\xc1\x06\x7f\x09\xca\x28\x8e\xc9\xd1\x12\xfb\x5d\x40\x8a\xee\x7c\xb0\x68\x57\x2e\xa1\x24\xbf\xa5\xc8\x16\xf4\x5f\xe9\x2d\x25\xe0\xbd\xe0\xd8\x79\x3a\x88\xef\x77\x8d\xb5\xe8\x62\x7f\xe1\x6d\x6b\x57\x54\xac\x43\xcb\x95\xdd\x6f\xfa\x36\x27\x7d\xbc\x90\x9d\x77\xf7\x53\xc7\xcd\xa9\x1f\x2f\xe5\xcc\xfe\x78\x21\x0d\x00\x40\x17\xe5\x26\xdf\x67\x5a\x11\xd6\xc9\xef\x38\xca\xe0\x7a\xb9\x9b\x08\x6a\xd6\xa0\xf3\x51\x5d\xb6\x83\xf7\x29\xdc\x46\xdb\x6d\xb1\x48\xb4\x2b\x59\x8e\x58\xbf\x1d\xdc\x71\x88\xfb\xcc\xee\x78\x0e\xe6\xf0\x0d\x6c\xa8\x5c\x25\x1a\x93\x54\x48\xb9\x29\x0a\x34\x8c\x5a\x75\x9f\x9a\x9b\x74\xb2\xd4\x65\xce\xb2\x69\x30\x79\xa4\xb4\x69\xe7\xc8\x6d\xcf\xe4\x9e\x8b\xe5\x8f\xf0\x39\xe8\x58\xdb\x15\x26\x8a\xc7\xf3\x35\x9b\xba\x4b\x77\x99\x41\xfa\x33\xe9\xb7\x31\xe4\x36\x52\x90\xb3\xe9\x95\xd9\x41\x57\xb4\xa2\xce\xb7\xd4\xf8\x7e\xa7\x6a\xa8\xf0\x2f\x6d\x5a\x74\x86\x3a\x42\xdf\x92\x6b\x3c\x6d\x70\x25\x8e\x41\x5a\xdb\x4e\x72\xd2\x91\xa7\xaf\x18\xcc\xb3\x32\xad\xfc\xd6\x55\x43\xa3\x64\xfb\x16\x63\xd2\x91\xd7\xdd\xcb\x2d\x17\x1a\x8d\x92\x35\xef\xd4\xd1\x4d\xcd\x39\xd5\x99\x9a\x6e\x9f\x21\xe6\xcb\x40\x1e\x7e\xae\xfd\xd7\x66\xc7\x80\xa6\x9f\xce\xdb\x75\x8e\x72\x26\xa2\x2b\x24\xf0\x6c\x3f\x8a\xbd\xc0\x6a\x48\xb4\x01\x89\x9e\x23\x81\x31\xd6\x42\x68\xa4\xdc\x41\x44\x85\xb2\x51\x57\x58\xe2\xff\xa8\x9f\x92\x4d\x57\x68\x38\x91\x18\xc0\xbe\x0f\xf2\x60\x3c\x1b\x47\x7c\x38\xe9\x76\x2d\x2c\x94\x13\x70\x94\x3f\xa0\x7c\x56\xa8\x92\x91\xe3\xac\xfc\xcf\xba\x69\xa8\x0f\x7a\xb7\x63\xcf\xce\x15\x88\xe1\x91\xc8\x9f\xe5\x97\xac\x38\x89\x4b\xf0\x9a\xc1\x52\x86\x18\x4c\xcc\x6b\x61\x39\x4d\xf5\xab\x1f\x31\x86\x80\x98\x4a\x04\xea\x74\x2a\x1e\x01\x76\x2e\x7f\x4d\xc5\x46\x29\x3a\xf0\x83\xe1\x64\x96\x0f\xe2\xc8\xb4\x31\x26\x7f\xa2\x95\x76\x98\x63\x4f\x1f\xfc\x05\xea\x8e\xa2\x97\xc2\x6e\x68\x69\x36\x6a\x67\x30\x27\x42\xf1\x9d\x7f\xbd\x7d\x7d\x33\xa9\xbe\xba\x63\x1e\x39\x69\x46\x11\xd6\x7e\xb9\xc1\x80\xd9\xe9\x4d\x24\x3c\xdf\xec\x76\x06\x9e\x36\x6b\x82\x9b\x71\x80\x25\xab\xe9\xbf\xb2\xde\xa1\x3f\x2a\xf0\x4d\xdf\x97\x72\x6b\x67\x91\x20\xe7\xc1\x00\x46\x32\x08\xb4\xb9\x06\xbc\xa7\x6d\x14\x69\x12\xfb\x83\xf9\x7f\xa1\x7c\x01\x38\x7c\xc8\x12\xa8\xc0\x15\x2a\x88\x1a\x04\xf8\x4b\xf9\x86\xf2\x4e\x0b\xc0\x16\xfa\x56\xf4\x1c\x57\x5f\x35\xe2\x6d\x1d\x51\x76\x2a\x13\x06\x4f\x81\x19\xf5\x27\xa4\x4b\x01\xdc\x61\x6d\x6a\xc5\x5d\xde\x14\x85\x0b\x08\x37\x58\xeb\x78\x73\xca\x3a\x75\xbf\xa9\x6c\xc3\x21\x1b\x35\x42\x28\x66\x45\x9f\xd2\x7c\x56\x0c\x82\x9e\x6a\x29\x18\xa0\x09\x04\xe6\x08\x7a\x69\x19\x44\x41\xd9\x8b\x0b\x16\xe0\x41\xd0\x8b\x2f\xe2\x34\x8b\xcf\x33\x46\x7a\xfb\x92\xf5\xf6\xbb\x5e\xcc\x97\x3d\xc9\xd1\xf4\xe2\xa2\xc8\x2f\x7b\x72\xf9\x7a\x22\xef\xf1\xf8\x22\x5d\xc7\x82\x8d\x7a\x70\xbb\xd8\x03\x33\x5a\x99\x2b\x33\xd5\x04\x46\x41\x14\x04\x51\xf0\x3c\xd7\xbd\x42\x2f\x75\x0f\xa3\x20\xe2\xb3\x14\x71\x1c\x05\x41\xe5\x0b\x45\x5d\x26\xff\xfa\x21\xa6\x20\x88\x1c\xa7\x23\x6f\xb1\xa2\x6b\xd2\xf6\xc3\x80\xc4\xda\xeb\x00\x3e\x9d\x1c\x25\x05\xc2\xcf\x9a\x09\x8e\xae\x49\x07\xc9\x8f\x3a\xfd\x8d\x58\x9f\x52\x51\x11\x87\x1b\x8e\x6e\x79\x3d\x63\x76\x53\x45\xea\x17\x71\x5d\x6d\xba\x9b\x16\x15\x69\xa2\x69\x08\xe8\xe6\xe9\xb6\xa2\x87\x15\xf9\x4a\xe9\x44\xb5\xc5\x12\x84\xcc\xfb\x4f\x85\x51\x19\x6d\xeb\xaf\x87\x13\x6b\x63\x32\x69\xdb\xf3\x3a\x2f\x73\xa4\xcc\xd7\x35\xa9\xfd\x55\x2a\xe5\xcc\x11\xad\xbe\xdc\x85\xc7\x6e\x03\xe2\xc6\xed\x1e\x58\x72\x1d\xe3\xfa\xec\xa1\xcc\xc3\xb0\x04\xd4\x5a\x2b\x3d\xd3\x59\x1a\xc5\x33\x90\x5a\x67\x85\xbd\x9f\x8e\x71\xf4\x1f\x12\x0d\x3a\x09\xc4\xbc\xce\x2f\x85\xa7\x48\x55\x18\x4e\x22\x2e\x69\x8b\xce\x91\x04\xa6\xc6\x56\x31\x73\x19\xe1\x40\xcf\x04\x30\x4f\xfd\x6c\x38\x57\xb1\xc6\xd9\x9c\x2f\xa2\x9c\xcd\xc5\xa2\xae\x5f\x32\x1b\xc0\x4d\x45\x24\xb7\x94\x6e\x2e\x16\x5a\xfd\x1e\x68\xd8\xdd\xd2\xaa\x1e\x06\xf8\x48\x27\x8c\xc2\x1d\x51\x19\x25\xa3\x78\x14\xeb\x60\x0a\xaf\xcc\x83\x9c\xde\xb9\x91\x25\xe4\x58\xba\xb1\x4e\x2b\xd7\x68\x40\x5a\x05\x92\xb4\x48\xf6\x59\x5c\x3c\x57\x87\x5c\x9e\x1b\x99\xa7\x02\x2f\x36\xf7\x93\xcc\xd1\x81\x15\x8f\xa1\x46\xa7\xc8\x91\x8d\xe3\x15\x51\xbb\xd3\xf6\xe8\xe3\x54\x9b\xec\xdd\x0c\xd5\xc9\xde\x8e\x06\x90\xf1\x6b\xd2\x71\xf5\x63\xf3\x74\xf3\x9d\x79\xe9\x12\x7e\xea\x50\x8e\xda\x64\xc4\x4d\xd2\xe6\x6b\x4e\x8a\xd5\x80\xd7\xe0\x14\x8e\x16\xcd\x2f\xec\x21\x01\x5b\xde\xa0\x25\x17\xfd\xb8\xb9\x4d\xe0\xb5\x4b\xb8\x58\xd1\x49\x56\xb0\x6a\xa6\xbb\xb8\x0b\xc6\xb6\x89\x77\x0c\xdd\x34\x65\xe9\xba\x42\x87\x9c\x59\x67\x1a\x25\x91\xdb\x94\x7f\x53\x50\x97\xf5\x34\x3f\x16\xe8\xe7\xf9\xf2\xda\x7c\x54\xb8\xc2\x15\xc9\x18\x1d\x93\x3d\xa3\x13\xb2\x63\xf4\x2e\x59\x31\xfa\x0d\x59\x32\xfa\x2d\xd9\x30\x7a\x8f\x9c\x33\xfa\x1d\xd9\x32\xfa\x3d\x39\x65\xf4\x07\xb2\x66\xf4\x47\x72\xc1\xe8\x64\x4c\xae\x19\x9d\x4c\xc8\x43\x46\x27\x77\xc9\x25\xa3\x93\x6f\xc8\x47\x46\x27\xdf\x92\x77\x8c\x4e\xee\x91\x17\x8c\x4e\xbe\x23\x67\x8c\x4e\xbe\x27\x57\x8c\x4e\x7e\x20\xcf\x19\x9d\xfc\x48\x9e\x31\x7a\x77\x4c\x9e\xb0\x66\x7c\x01\xc9\xe3\xff\xa3\x19\x2d\x20\x63\xa4\x99\xfe\x66\x17\xed\xbd\x54\xed\x6d\xb1\xf3\x12\x95\xcb\x81\x5f\x8e\x2f\xa3\x65\x23\x45\xb0\x22\xda\x78\x69\x27\x9b\xb8\x88\x13\x99\x7e\xae\xd2\xc1\xfa\x7d\xcb\xc8\x53\x13\xeb\x00\x4c\x70\x4e\x55\x82\x22\x68\x6b\x46\x5c\x55\x6e\xab\xa5\x8b\xce\xfc\x7a\x96\xd7\xc7\xf3\xdf\xec\xa2\x87\x7e\xae\xea\xf2\x92\x11\x13\x3d\xfa\xac\xd6\xe5\x7e\xac\x53\x5f\x18\xc5\xef\xbb\x3a\xed\xc4\x6a\x80\x5f\xd4\x89\xaf\x3b\x94\xb8\x67\x6e\xb6\x55\x0e\x5f\xb9\x2d\xb1\xb8\xf8\x07\xbb\x2e\x5f\xe7\x3f\xc5\x45\xf4\xbc\xce\x79\x05\x1a\xe8\x67\xac\x72\x84\x94\xd7\x2e\xde\x07\xff\x1e\x88\x53\x9b\x52\x61\x63\xbb\x0b\xeb\xfe\x64\xc2\x70\x17\x2a\xec\x76\xef\x94\x45\xbc\x83\xce\xea\xc8\x2c\x95\x0a\xc5\x08\xd1\xae\x7b\x6b\x28\xaa\x11\x5c\xcc\x50\x6a\x83\xd1\xe0\x36\x62\x55\xf9\xad\x60\x36\xd8\x47\x71\xa9\x36\x4d\xd0\xdd\x2d\xbc\xfe\xb6\xb2\xbf\x4e\x53\x92\x49\xbb\xbf\xe1\xa4\x22\xed\xbb\x1a\x08\x01\x78\xd3\xd9\x65\x87\x35\x44\x85\xdd\xee\xb3\x6e\xc8\xfc\x07\x8a\x67\xf7\xa2\x49\x47\x67\x24\xf5\x2e\x45\x49\x3a\x6a\x93\x22\xec\xcd\x70\x7f\xbc\x0b\xf0\x52\xfb\x4b\x3a\x59\x75\x77\x32\xf6\x0a\x2d\xbb\x0b\xf9\x9d\x0d\x27\x5e\x9d\x9d\xbb\x1f\x8e\xac\x89\x5b\x7e\x73\x6c\x3d\xff\xec\x5e\xfa\xab\x57\xfc\x9c\x45\xf2\x0c\x49\xce\xee\x3d\x18\xa6\x82\xc4\xf8\xde\x9c\xc3\x41\x49\x32\xfa\x4f\x94\xdc\xb2\x2a\xfa\xaf\xe1\x69\xf0\xb4\x31\x61\xdb\x56\x94\x54\x24\x53\x63\x6d\xdb\x68\xf8\xa3\xba\x50\xa3\xda\xeb\x51\xed\x9a\xa3\xda\x93\x15\xfd\x27\xda\x11\x5f\xf4\x9a\xa5\x0d\x0b\x48\x3f\x1b\x03\x27\xfd\xa5\x83\xde\x55\x64\x75\x0b\x80\x57\x0d\x78\x5e\x7b\x1b\x64\xdc\x5e\xd8\x54\x2e\x2c\x23\x13\x7f\xc3\x3e\xfc\xcc\x6a\xc3\x46\xbd\x4b\x16\xc1\xdf\x8f\x5e\x7d\x2b\x9c\xb6\xa3\x6c\xe8\x1c\xc9\x55\xeb\x26\xc7\x7e\x8b\xef\x3e\x73\x24\x8d\x6a\x2f\xfc\x83\xe1\xe5\x9d\x1d\xc3\xb7\xcd\x24\xaf\xd6\x15\xd4\xf2\x80\xee\x8b\x23\x5e\xe9\xe7\x50\xba\x5e\xb6\x20\xf0\xb2\x9f\x75\x0f\xe1\x28\xc6\xee\x3e\xa5\xde\x60\x54\x9e\xaf\x85\x36\x7d\x9a\x47\x0d\xea\x88\xc3\x3a\xda\xb0\x66\x1d\xf5\x43\x4c\xbd\xcb\x54\x6c\xf2\xbd\xe8\xed\x20\x5c\x41\x2f\xd6\x7a\x9e\xeb\x1d\x1b\x05\x36\xf0\x5f\xc3\x1b\x92\x91\x9b\x8a\x70\x25\x6b\x7c\x60\xe4\x84\x91\xf7\x8c\xa2\x0f\x8c\x3e\x96\x1f\x34\x61\xfe\xcb\xac\x6d\x33\x47\xcd\x25\x31\x2e\x8a\x94\x95\xe8\x84\x75\xe9\x76\x6a\x63\x8a\xf9\x78\x31\x95\xcc\x5d\xb2\x61\xc9\xfb\x97\x26\xc6\x3b\x3a\x61\x84\x11\x4e\x3e\xb0\x11\x8f\xb7\x4a\x15\x86\xc9\xaf\x5a\xf6\xb9\x4d\x31\xc0\x66\x56\x1f\x00\x8a\x84\xcf\x90\xab\x47\x2a\x1c\x53\x59\xfd\x29\xed\x0c\x1c\x54\x88\x02\xcd\xb1\xd1\x8a\x99\x80\xe4\x0d\x63\x1e\x01\x42\x6a\x31\x3b\xaa\x03\x09\xa2\xff\x23\x4a\x99\xea\xa8\x08\xd8\x35\xf7\x0e\x8b\x5c\x34\x26\xbe\xb6\x09\x23\x21\x47\xba\x89\x4b\xf5\x32\x98\xa9\x33\x92\x2b\xd2\x50\x58\x7c\xb9\xb2\xc4\x51\x4a\x3c\x66\x47\xb6\xe1\x7b\x99\xa1\x75\xe5\x8d\x2d\xfe\x2b\x53\x06\xb0\xca\x87\x5b\xe1\x6b\xfd\xcb\x35\x26\xe9\x34\xd6\x04\x25\xc5\x11\x68\x81\xf7\x99\x6f\xa0\xb8\xab\xdf\xf3\xb7\x26\x8b\xa2\x61\x8e\x44\x96\x54\xb8\xd7\xa7\x64\x73\xc4\xb8\x67\x3f\x8a\x47\xfb\x92\x9d\xc4\x59\x76\x1e\x27\xef\xdd\xe3\x24\x0b\x09\xca\x98\xfc\xa5\x6f\xdd\xec\x1e\x6c\x87\x72\x21\x29\x85\x92\x98\xc4\xb4\x40\xa2\x15\x8e\x84\xdc\xe8\x13\x11\xa5\x55\x7d\x95\x50\x30\x64\x5f\xb2\x21\x31\x26\x71\x85\x09\x84\x55\x49\xcd\xc8\x4c\xa4\x98\x82\x08\xd9\x74\x3a\x1f\x2f\x48\x49\xd3\x3a\x0a\xed\x9c\x41\x20\x12\x4c\xca\x45\x85\x5e\xb3\xd6\x23\xcf\x82\x82\xc6\xa4\x81\xf6\x20\xb2\xa9\x4c\xee\xc0\xa4\x85\xce\x32\x48\xd4\xd8\xae\xb4\x6d\xa2\xef\x8f\xc3\x50\xcc\x58\x83\x86\x0b\x5c\x5b\x53\x14\x3e\x06\x16\xc4\xc3\xf7\x95\x0a\x54\x47\xce\xe9\x46\xce\x6b\x4b\xcf\x0d\x16\x58\xd3\xf3\x36\xfb\x72\x41\xcf\x7d\xed\xd6\x35\x3d\xaf\x59\x0c\xf2\x90\x6e\xe6\x93\x05\xb9\xec\x32\xb4\x7b\xe8\x5b\x04\x03\xc8\xb5\xb5\x6e\x45\xce\x3a\xef\x68\x1b\xfe\x3a\x60\x84\x9c\x2e\xe1\x99\x2c\xeb\xd8\x52\x7b\xb5\xc4\xd4\x71\x15\x20\x10\x63\xcc\x53\x49\xb8\x0e\x44\xc5\xcc\x8b\xf9\xc6\x10\x8e\x0a\x03\x64\xa3\x00\xc9\x0f\x87\xa4\x8e\xdd\xa6\x75\x20\xa9\x4a\x54\x9e\xd0\xb5\x16\x24\xee\x0c\xca\x96\x78\x11\xd9\x1a\x0a\x92\x52\xb5\xa4\x52\x87\xda\x09\xbb\xaa\xd4\x2b\xd8\x57\xf4\xcc\x4e\xf1\x39\x3d\x73\xe6\xf5\x8c\x9e\x99\x09\x3f\xa1\x67\xcd\x29\x7e\xf0\xe2\x27\xbf\x62\x2b\x13\x3d\xf9\xe4\x58\xc6\xaf\xed\x0c\x3c\xfd\x75\x94\xec\x8b\x82\x71\x41\xe7\x4a\xa1\xf7\xb8\x5d\xaa\x3f\xc6\xe4\x51\x77\xf2\xcb\x23\x9d\x4d\x3f\x15\xae\xf9\xb1\xe9\xf7\x70\x78\x8f\x62\xcb\xf7\x6f\x89\xd2\x0d\x72\x7f\x2b\x5f\x34\x8c\x8c\x2a\x4c\x96\x9e\x21\xf7\x7c\xbb\x30\x94\xfb\x33\xfb\x2c\xff\xfb\x7d\x5e\x7c\x49\x9f\x61\x88\x5e\x5a\x58\xfb\x26\xfa\x97\xfa\xfa\xfc\x39\xab\xb0\x8e\x23\x8a\xc9\x75\x18\xda\xf2\x10\x11\x6f\x7e\xfd\x25\xdd\xcd\x50\x72\x38\xec\x0e\x87\x2d\x0e\xc3\x13\x93\x68\xdc\xcc\xa3\xed\xac\x9d\xb6\x3c\xee\x5a\x7d\x52\x4f\xe2\x43\xb3\xde\xe7\x02\x7f\x0d\x36\x9c\xdb\xc3\xa1\x6f\xb7\x9c\xe6\x2e\x0e\x07\xd4\x97\x9c\xc2\x23\x3b\x76\xfb\x8b\xf6\xc7\xd1\x0a\xd9\x0a\xf3\xf5\x82\xd8\xb1\x00\x47\x35\x5f\x7f\x09\x50\x94\x93\xd4\x7c\xa1\x68\xcb\xab\x63\xf1\x77\x3a\xec\x49\xcd\x12\x65\x8c\x18\xb5\x49\x54\x07\x90\xa9\x8e\x44\xa8\xb9\xa5\xa1\xfd\xd1\x86\x5a\xb1\x3b\x6e\x69\x65\xc5\xba\xa2\x75\xdc\x52\x61\xa9\x2a\x34\xc2\xa5\xd4\x5b\x70\xa7\x1b\x6c\xc6\x90\xb9\xa5\xc9\x0d\x54\x39\x8b\xcf\x1b\x15\xcc\x9c\xc2\xd0\x94\xdc\x32\x88\xa7\xf2\xdb\x9f\x80\xfb\x35\xfb\x13\x30\x7e\xa8\xfa\xfb\xe3\x16\x2f\xe9\x57\x73\xb1\x98\xc9\x7f\xe0\x05\x51\x06\x8f\x8c\x9a\xea\xe7\x52\x74\xb8\x8e\x84\x7a\xb4\xde\xef\xb3\x60\x59\x2c\xd8\x52\xbd\x0f\xd5\xa7\xf4\x43\x7d\x42\xbc\xd9\xba\x6f\xda\xd7\x50\xbe\x84\xac\x9f\x6f\x19\xd7\x6f\x72\x5c\xbf\x75\x8f\xeb\xa2\x1e\x97\x63\xe9\xda\x36\x6d\x6d\x7b\x79\xf2\x8e\xa8\x04\xdc\x09\xb7\xc2\x9d\x08\x05\x92\xaa\xde\xee\x8e\xcb\x3b\xdc\x71\x79\x23\xe6\x4a\x1d\x9f\xa0\xe1\xa4\xdb\x1d\xc3\x4b\xb8\xce\xb1\x9e\xd5\x83\x05\xb0\x7a\x89\x11\x62\x45\x3c\x21\xe2\xb6\xa0\x5d\xa2\x1d\xe6\x6b\x6b\x13\x3d\xaf\xda\xab\x41\xd0\x0b\x06\x4f\x88\x70\x5c\x20\x53\xf2\x06\xbb\x41\x67\x20\x02\xc1\xcf\xc0\x41\xed\x71\xd5\xb0\x1a\xfe\x54\x48\x89\x74\x19\x5d\x29\x5f\x2d\xcf\xba\xf8\xf3\x57\xa8\x8e\x1b\xc1\xeb\xb8\x11\x7f\x7e\x81\x3a\xc2\x46\xfc\x37\xd7\xe7\xa4\x63\x7d\x9e\x11\xd1\x74\x6a\xee\x06\x3f\x11\x23\x11\x9f\x2b\xbf\x80\xe1\x44\x82\x78\xfd\x60\x38\x09\xc3\x9b\x63\xa1\x1a\x9e\xa3\x35\xae\xc8\x8d\x1b\x6f\x27\x25\x7f\x38\xa1\x73\x62\xf2\x14\x57\x66\xa1\x1c\x7b\xed\xcf\x74\x7c\x4e\xd5\x75\xae\x76\x65\x06\x5f\x67\x0d\x6a\xcf\xcd\x4b\x81\x3a\x01\x4f\x67\x09\xea\x5d\xc3\x67\x7a\xe5\xf8\x48\x2f\x5b\xee\xce\xa9\x8a\xd2\x6e\xbc\x98\xbd\x05\x20\x2d\x67\x68\x75\xa6\x16\xb8\x43\xba\x6a\x5e\x31\xb3\x19\x53\x97\xc3\x9a\xc0\xc2\x1d\xb1\x23\x31\x54\xa8\x24\x52\x8a\x91\x42\xff\xe6\xfe\x18\xb7\xd4\x30\x2f\xe3\xb2\x34\xcf\x16\xca\x51\xf6\x72\xfd\x17\xda\xe8\xa5\xbc\xe7\x42\xb5\x1f\xdc\xba\x5b\x32\xb9\x5b\xf6\xa4\x19\x76\xbf\xe6\x02\xc0\x45\x5b\x3b\x57\xe9\xfd\x62\x9c\x7e\x85\x9c\x2e\xa5\x6b\xbb\x15\x6a\xff\xdf\xfe\xb8\x22\xf2\x5c\x3d\x47\x1b\xeb\xee\xac\x7d\xb5\x77\x5d\xd6\xc1\x5e\xf7\x7d\x68\x13\x39\x7c\xc6\xc4\x52\x8d\x53\x46\x52\x1d\x72\x17\xe3\x0a\x6d\xb4\x3f\xb5\x09\xfd\xb4\xfa\x54\xe3\xa6\x9d\xb5\xd3\x8e\x6e\xa6\x22\x4b\x5c\xb9\xae\x00\x1d\xb4\xe1\x23\xd0\x06\xeb\x45\xd0\x51\xe2\x1d\x94\xa8\x9d\x0b\x3a\x8a\xbc\x80\x22\x5d\xde\x02\x5d\x23\x3d\xeb\x88\xc0\xa1\x1b\xb0\x57\x51\x5d\xf5\xae\x58\x23\xb0\xae\xac\xa3\x1c\x22\x3a\xc6\xf4\x0c\xb2\x5b\x1d\xad\x89\x65\xc3\x7d\xf6\xbb\xaa\x1e\xb3\xb6\x21\xc8\x13\xf5\xa2\xde\x57\x15\x21\x9f\xf9\xa4\xde\x8f\x98\xe4\x9d\xe1\x6d\xcd\xab\xfd\xfa\xc5\xfe\x55\x5e\x90\x94\xe6\xb3\xfa\x13\x05\x05\x8b\x13\x61\x1e\x33\x0d\x70\xf4\xdd\x78\x32\xfe\x86\xc4\x9d\xa5\x76\x79\x21\xe2\x4c\x17\xfa\x8e\x94\x9d\x85\x56\x45\xbc\x76\xda\xfa\x9e\x24\x9d\xc5\xd4\x24\xde\x6d\xf3\x25\xd3\x25\x7f\x20\x59\x77\xaf\x45\xbe\x4a\x33\x56\xa8\x62\x93\x6f\xc9\xfe\x58\xb1\x8b\x74\x69\x8a\x8d\x7f\x24\xbb\xce\x62\xf0\x1c\xf3\x95\x1e\xdd\x64\x4c\x56\xdd\x93\xc8\x8b\xcb\xb8\x58\xbe\x93\x88\x4a\x95\xbc\x4b\x96\xdd\xf3\xd8\x97\x3b\xc6\x4b\x3d\x89\xc9\x37\x64\x73\x6b\xb1\x77\x10\xa0\x07\xca\xde\x1d\x93\xf3\xce\xb2\x5b\xb6\xcd\x75\x73\xf7\xc8\xb6\xb3\x48\x16\x7f\xbc\xd6\x45\xbe\x9b\xe6\xee\x02\xdb\x19\xec\xf9\x32\x96\xeb\x20\x17\x8c\x74\x16\x29\x58\xb9\xcb\xe1\x29\xd1\x23\x05\xca\x24\xdf\x31\x1d\x2e\xf8\xf4\x73\x36\x58\x2a\x58\x11\x8b\xbc\xa8\x95\x7f\x6b\xf7\x0d\x19\x41\xd9\x48\xbf\xb7\x40\x38\x0d\x36\x42\xec\xca\xe8\xce\x1d\xe8\xec\x8f\x72\x94\x17\xeb\x3b\xcb\x3c\x29\xef\x30\x89\xa3\x87\x4b\x96\xe4\x4b\x56\x8c\x36\x62\x9b\xcd\x52\x7e\x21\xb1\x23\x17\x34\x18\x08\x52\xd0\xc9\xb4\xb8\xdf\x7c\x2e\x45\xbd\x8b\x32\xa0\x41\x18\x17\xeb\x72\xbe\xa0\xc1\x80\x71\xd9\xc6\x9b\x57\x4f\xeb\x07\x4e\xdd\x37\x53\x2c\x56\xb7\xe3\xa2\xc1\x69\xca\xd3\x55\xca\x96\xbd\x57\x72\x58\x3d\x18\x4b\xef\x7f\x05\x03\x31\x08\xa6\xbd\x8b\xb4\x4c\x45\x2f\x18\xf0\x41\xd0\x5b\xe5\x45\x4f\x6c\x58\x6f\xb5\xcf\xb2\x9e\xae\x2e\xc9\xc8\x1e\xa2\x67\xb2\x1e\xcf\xf9\x70\x6b\x1a\x5b\xb2\x8b\x9e\xa3\x40\x84\xca\x50\x11\xda\x2f\x41\x3d\x6c\xde\x86\x88\xb3\xde\x86\x65\xbb\xd5\x3e\xeb\x5d\xc6\x05\x4f\xf9\xba\x1c\xf5\x02\xc2\x40\xe1\x7f\x41\x6f\xc0\x75\x86\x0b\xd7\xbe\xcd\xbe\xde\x32\xa9\x08\xe3\x1f\xf6\x6c\xcf\x7e\xca\x8b\x44\x3f\x54\xee\x96\xb3\xf9\xaf\xd8\x2e\x8b\x13\xf5\x2c\x55\x67\x01\x63\xf9\xee\x65\x56\xe4\x9a\xde\x38\xca\xdd\x87\x06\x33\xd5\x96\xca\x54\x7b\x56\xea\x93\x46\x85\x89\x4a\xb9\x2a\xe9\xb5\x6b\xac\x5e\x50\x7e\x38\x5c\xb8\x6f\x3b\xb9\xaf\x51\x7d\xfc\xef\xb7\xfc\xb0\x76\x9b\x06\x03\xac\x38\xa9\x1f\xba\xa5\x37\x15\x71\xf3\xcb\xee\x18\xe2\xe9\x0a\x99\x47\x45\xfb\xee\xa3\xa2\x5d\x8f\x27\x33\x13\x4c\x94\x69\x7e\x63\x8d\x14\xb7\xf1\xc3\x3d\xac\x6d\xe5\xf5\xf0\x46\x0d\x10\xab\x37\x1d\xe4\x7c\x03\x33\x8e\x00\xfb\xe3\x5b\xd5\xcb\xe9\x09\x55\x5d\xcd\x3a\x4b\x6f\x5a\x0e\x9c\xfa\xb2\xe9\x4b\xe7\x49\x66\xa7\x1b\x38\xea\xef\xe8\x47\x27\x57\x32\x4d\x97\xd3\x77\x23\xe7\x69\x66\xfa\x91\x14\xe8\x9d\x3b\x3c\x4c\xde\x8d\xd2\xf2\xe5\xbe\x60\x0d\x28\xf7\xc7\xd0\xe4\x0b\x7a\xa3\xf9\x10\x6d\x7c\x7e\x46\x6f\x0c\x4a\xd4\x29\x57\xcd\x22\xcf\x8d\x35\x4f\x0d\x04\x3f\xb4\x37\x79\x06\xf7\x7d\x51\x1f\x1e\xc0\x95\x7f\xde\xbd\x2b\x59\x66\x7e\xe5\xfb\x22\x81\x37\xa2\xbd\xe7\x81\x1c\x6d\x3d\xc9\xe5\x26\x88\xd5\xcb\x11\x25\xfc\x31\xe1\x5b\xfb\x54\x60\x89\xb5\xc0\x24\xbb\x76\xdd\x96\x5b\x2d\x0c\x51\xa9\x7e\x39\xc1\xb5\xe1\x96\x3a\x0c\x51\x4c\x83\x60\x00\x1f\x52\x8c\x7a\xae\x1f\xec\x20\x05\x0e\xc3\xfe\xb3\x66\x64\x72\x99\x8a\x72\x70\x74\x07\x5c\xa4\x62\xbc\x37\xb1\xda\xf0\xae\x1c\xd4\x04\x5e\x0b\xcd\xad\xf7\x05\xe5\xff\x37\x7b\xff\xde\xdc\xb6\xcd\x05\x88\xc3\x5f\x45\xe2\x64\x38\xc4\x1a\x56\x25\x3b\xcd\x85\x0a\xaa\xcd\xcd\x6d\xda\x38\x37\x27\x4d\x53\x55\xeb\xa1\x25\x58\x66\x43\x01\x2a\x08\xd9\x71\x2c\xbd\x9f\xfd\x1d\x9c\x03\x80\x20\x45\x39\xe9\xf3\xec\xee\xec\x1f\xbf\x19\x8f\x05\x02\x20\x78\x70\x70\x3b\x38\x57\x88\xed\xd7\x31\x45\x8f\xa6\xd5\x16\x5b\x60\xf0\xa6\x64\x4a\xe8\x8a\xf5\x87\xab\x47\xd3\xe1\x6a\x6f\x8f\x14\xe3\x55\x18\x2d\x6a\xb5\x77\x30\x19\x06\x8d\x15\x9b\xfc\x3c\x81\x40\x51\xa1\xe2\x74\x85\x81\x29\x6b\x94\xf8\x1b\x82\x01\xdf\xf5\x62\x1a\xec\xa8\x37\x77\xee\xe0\xaa\x48\x73\xf4\x14\x8c\x37\xfa\x0c\x46\xaa\xa4\xc8\x30\x97\xf4\x54\x5e\x09\xae\xd2\x2f\x8e\x4a\xdd\x34\x82\x2b\x59\x69\x5d\x5b\x58\xdf\x2a\x4c\x1d\xef\xb9\x8f\x31\xc6\x72\x14\x8b\xb2\x1f\xfe\xfa\x61\xef\x87\x39\x7d\xca\xc6\x93\x46\xc4\x22\x6f\xd9\xf0\xd4\x62\xd8\x69\xac\x3f\xed\x2d\xe5\x32\xf1\x67\x82\xb4\x4a\xdc\x8c\x53\x69\x46\xf4\x8d\xe2\xe7\xf9\x17\xa6\xa9\x04\x55\x38\x26\xa8\xf4\x3b\x91\x82\x34\xc6\x1a\x91\x56\x6c\x7b\x83\xaf\x63\xcf\xf1\xe5\x54\x03\x45\x97\x0a\x6a\x5f\x4c\x15\x85\xd7\xd2\xfe\xa6\x11\x23\xc9\xa9\x90\xbb\xc0\x70\x15\x00\x36\x03\x61\xc0\xb4\x03\xc3\x3f\x22\x24\x83\xfe\x4f\xae\x8f\x71\xfc\xd4\xdf\x42\x2a\xc9\x5c\xe3\x7a\xe5\x34\xb6\xfb\x69\x65\xd3\x90\xd8\xd8\xc1\x88\xa4\xd2\x87\x9d\x1a\x06\x62\xc0\x2e\x63\x65\x1c\x47\x67\x52\x16\x3c\x83\x1d\xb1\x5c\xaf\x13\x04\xc7\x4d\xeb\xee\xa0\x72\x8d\xcc\x34\x99\x9a\x9d\x01\x66\xb0\x55\xcd\x2a\x51\x35\xcb\x85\x11\x03\xa5\x06\xe7\xa5\x26\x85\xda\x95\x30\xdf\xcd\x87\xd4\xbe\xab\xfd\x04\xb0\xfa\x5d\x39\xea\x44\x64\xf0\xe2\xc6\x4c\xee\x29\xf1\x46\x25\xd2\x6c\xb3\x10\x34\x75\x14\xf5\xa2\xbd\x27\x89\xa6\x7d\x92\x0a\x42\x07\x18\xf4\xb3\x6f\x68\x13\x5f\x9e\x8a\xbd\x28\x8d\x68\x3d\x24\x9a\x26\xa4\x5a\x70\xfd\x61\xf1\xc8\x31\x7a\x87\x85\x0b\x00\xbb\x62\x62\xef\x89\xd9\x29\xc6\xc5\x84\x16\x64\x38\xdd\x63\x3c\x29\xe9\x0a\x70\xb9\x71\x6b\xd7\xe1\x63\xbd\xde\x3e\x65\xf4\x68\x05\x18\x4c\x57\x6d\xa4\x57\xb2\x62\xc7\x71\xac\xc7\xc7\x93\xf5\x5a\x8f\xa3\xff\xf9\x3f\x1d\xed\x15\x4d\xc8\x68\x65\xbd\x33\xb6\x50\x6c\x2b\x80\x5c\xb3\x95\xdd\x9b\x08\x35\x3d\xe8\xc2\x9e\x26\xf8\x17\x9d\x10\xd2\x9b\x49\xc1\x87\x04\x21\x66\xa5\xf5\x60\x68\x3b\x44\x4d\x0f\xa1\x13\x7e\x03\x0a\x96\x67\x69\x4f\x3e\x05\xfb\x20\x75\x07\xe0\xe1\x80\xd0\x68\x8c\xd5\xec\x0d\x7a\x82\x71\x46\xed\xbb\xa0\x07\x81\x42\xf1\x9b\x68\xaf\x61\x77\xf2\xb7\xcc\x45\x12\xd1\x4e\x44\xf6\xa2\x4d\x94\x2a\x1a\x55\xd7\xf1\xe9\x26\xe1\x34\x8a\xd0\x54\xc4\xcf\xda\x27\xa1\xf6\xc0\x37\x76\x0f\x7b\x64\x9b\xaf\x8d\xb6\xb9\x95\x37\x11\x8b\xd2\x88\xf5\x23\x1a\xa5\x26\x71\x10\x39\x8e\x64\x74\x27\xda\x4b\xa2\x68\x0f\x4c\x7b\x80\x94\x4a\x7e\x18\xb3\x74\xf2\xc3\x9c\xb6\x19\x33\xe9\x31\x9f\xc0\x6d\x1b\xbe\x44\x52\xdd\xd3\xce\x5a\xf0\xf0\x5e\x00\xfa\x1b\x04\x1d\xd7\x37\x8e\x91\x5f\xdf\x54\xbb\xc5\xbd\xb7\x17\xbc\xf2\xae\xa9\xf4\x8f\x3b\x07\x68\xfd\xfb\x6d\x63\xc8\xd9\xb7\xdb\xa4\x5b\x91\xff\xfe\x48\x38\x55\x54\xb4\x76\x89\x6f\x08\xba\x09\x85\xd8\xeb\x89\xd9\xb0\x41\xb6\xdf\xa6\xc2\xb1\x7d\x1e\xa0\xbe\x26\xb0\x79\xe1\x50\xe0\xc8\x5f\x82\x83\xc1\xda\x39\xbb\xe3\x81\xf7\x30\xb1\x31\x83\x2d\xf7\x92\x2e\xf4\x6b\xbd\x86\x38\x91\x9f\xf9\x35\x04\x78\x37\xe3\x17\x45\x69\xe2\x14\xc5\xaa\x61\xf9\x87\x46\x77\xe2\x1f\xcc\xec\x31\xff\x04\x21\x54\xb9\xbd\x30\xc0\xe2\x1f\x55\x9c\x74\xeb\xc1\x91\x45\x91\x8d\x73\x23\x20\xf2\x89\x69\x5a\xec\x68\x96\x9a\xbd\xf4\x1d\xd5\xec\x73\xa2\x69\x0e\x8d\x10\xfa\xb1\x16\x82\xf4\xef\x2a\x2c\xac\x3b\xee\x82\x2d\xb1\x49\x33\x1e\x1e\x0c\x2a\xb9\x3e\x92\xfe\x2f\xd8\xcd\x53\x17\x92\xff\x66\x91\x2d\xd3\x26\x77\xc0\xb7\x56\x19\x31\x58\x26\xc1\xd8\x07\x9e\xb4\x03\x6a\xb6\x07\x50\x2f\x50\x1b\x6a\x75\x7f\xbe\xab\x39\xd3\xcd\x37\xd0\x4d\x8c\xb7\xe5\xda\xb1\x9d\xb5\xa7\x59\xcb\x64\x31\x2f\xb6\x39\xf9\x33\xa4\x1e\xc1\x30\xf7\x1b\xaa\x25\x4c\xbc\x16\x9d\x96\x7a\x07\x34\x7e\x78\xd7\xa4\xa4\x7a\x43\xa5\x28\xea\xed\xe4\xe7\x49\xf7\xa4\x0a\x02\xef\xf0\x3c\xb8\x7b\x18\xe2\x79\x43\x31\x8a\xe0\x3b\x7e\xbe\x7d\xbb\xaa\x13\xa8\x1b\xea\xc9\xdc\xf4\x31\x35\xb4\x6f\xf5\xfc\xd5\x36\xf3\xd4\x1e\xf3\xad\x5a\x4d\x8d\xd8\x59\x28\xc2\x4e\x38\xab\xd6\xca\x92\x9e\x4e\xb3\x62\xba\x2a\x3c\x8b\x68\xf6\x24\xd7\x65\xaa\xe9\xa9\x05\xc5\x3a\x9b\xad\x3f\x1f\x98\x0c\x7d\xa1\x78\x36\x43\x97\x17\x7d\xfa\xc6\x72\x47\xf0\x60\x78\x2a\x45\xb9\x5a\xd8\xa7\x0d\xe9\xb9\xd2\xe0\xd3\x2b\x7a\xea\x68\x14\xbe\xa1\xbc\xe7\x5e\x61\x1c\x26\xcc\x55\xa6\x66\x35\x1c\xf1\xed\x95\x7e\x4e\xd1\xa0\x38\x35\x68\x2d\xb2\xaf\xd7\xb7\xd6\x5e\xd0\x53\x73\xb7\x30\xa0\x63\xc8\xc5\x74\x7f\x40\x4f\x2d\x0d\x65\x11\xbe\xe0\x0b\xd9\x8a\xcb\xaa\x99\x33\x47\x6e\x4e\xe5\x62\x99\x29\x9e\x06\x7a\x17\x70\x9a\xea\xcd\x86\x06\x2a\x3a\xed\x43\xf3\x77\x42\x6a\x7a\x3c\x18\x71\xca\xe4\xdc\x36\xa0\xee\x2d\xac\x53\xbd\x84\x12\xdb\x5b\xdf\xc1\x2a\xd5\x2b\x2f\x16\x4b\x73\x9c\xe7\x97\x1c\xdd\xff\x6e\x2d\xce\xfa\xeb\xcd\xea\xb6\x16\x34\xf5\x8c\x9f\xad\xe6\x38\x4f\x6a\xd7\xfc\x55\xc9\x5f\x66\xd7\x72\xa5\xbf\x03\xbc\xb0\x62\x05\xe4\xf1\xae\xe1\x70\xaf\x99\x0a\x55\xf5\x36\x15\xbf\xed\xae\x38\x0d\xa5\xa0\x07\xed\x13\xad\x7a\xe1\x1c\x2c\x0b\x5d\x8c\xed\x5b\xaa\xe2\x65\xdb\x54\x3e\xb2\x5c\xca\xb4\x34\x4b\x03\xf8\x8b\x69\x41\x4f\x80\x29\x09\x01\xad\xa7\xf4\xc4\xdd\x4f\x67\x74\x25\x4a\x9d\x9d\x15\xfc\xd4\xe5\xbd\xcc\x4b\x9d\x5e\xd0\x5a\xc4\xd1\xf4\x39\x0d\xed\xb0\x77\x6f\xa7\x8c\xaf\xd7\x95\x48\xa6\xb1\x1f\x1d\xdc\xbb\x4f\x9c\xe3\x37\xc9\x14\xe8\x7b\x5a\x75\x31\x9a\xd9\x30\xb3\x25\xc3\xc3\xd2\x5c\xcb\xf0\x64\x0c\xef\xad\xe6\x43\xbb\xae\xac\x74\xca\xfc\x5d\xeb\x1b\xd7\x57\x3c\xa0\xc1\x81\xbf\xb9\x7a\xd7\xaf\x7f\x40\xf8\xb6\x94\x0c\x0d\x71\xb9\x02\x3b\xe6\xea\xf6\xbb\x6a\xbd\xfd\xae\xf0\xf6\xbb\x9a\x04\x9a\x51\xe3\x55\x68\x1e\x5c\x8c\xcc\xb5\x35\x35\xb9\xa8\xec\xba\xba\xe5\x72\xbc\xda\x75\x39\x5e\x91\x1b\x77\x29\x5e\x91\xa1\x23\xdb\x97\xac\x3f\x5c\x3e\x5a\x0d\x97\x70\x39\x5e\x86\x97\xe3\xe5\xd6\xe5\xf8\xdb\x24\xcc\x8e\x7b\xed\xd4\x9f\x27\x47\x99\xd9\xdc\xda\x4e\xb6\xe7\xbd\xb3\x5c\xcc\xf0\x38\xe5\x95\x53\x00\x8c\xaa\xc6\xcd\x51\x96\x97\xbf\x67\x45\x3e\x73\xf3\xea\x84\x5e\x72\x55\x42\x08\xd7\xc1\xbd\xde\xa0\xdf\x3b\x88\xaa\x09\x6a\xe8\x68\x37\x49\x9f\x4a\x71\x9e\xcf\xd3\x36\x65\xb4\xf7\x9e\x21\x3d\xac\x92\x6c\x6b\xab\x1c\x6a\x75\x7d\xc3\x13\xb2\x39\xcf\x45\x56\x14\xd7\x37\x41\x65\xb1\xd9\xd0\xd3\xd3\x93\xe7\x4f\xdf\x3d\x7f\x7f\xfa\xe2\xd5\xfb\xe7\xef\x5e\x3d\x7e\x79\x72\xfa\xec\xf5\xe9\xab\xd7\xef\x4f\x3f\x9c\x3c\x3f\x7d\xfd\xee\xf4\xd3\xeb\x0f\xa7\x1f\x5f\xbc\x7c\x79\xfa\xe4\xf9\xe9\xd1\x8b\x77\xcf\x9f\xa5\x37\xc8\x20\xc2\x29\xf8\x2c\x2f\x97\x99\x9e\x5e\x70\x95\xbe\xa6\x61\xc1\x13\x93\x6b\xe1\x7f\x5f\x2b\x79\x8d\x0c\x03\xfa\xa2\x3c\x91\x0b\xfe\x0e\x0e\x18\x34\x15\x16\xf3\xd4\x1f\xd0\xdd\xc1\x86\x62\x48\x5d\xf0\xb8\xf4\xc1\xdb\x80\xa7\x2f\x36\xf4\x17\xf6\x21\x8e\x5f\xac\xd7\x1f\x86\xbc\xc7\xbf\x2c\xa5\xd2\x25\xfb\xc5\x4d\xe3\xf5\xfa\x97\xcd\xf7\x89\x5d\x20\xd4\x39\x4a\x5f\x72\x26\x92\x41\xff\x30\x30\x4f\xca\xfe\x3f\xbe\xf7\xff\x3e\xbe\xb7\x21\xdd\x94\xdd\x27\x33\xb7\x4f\x1e\xdc\x27\xb8\x4b\x22\xe7\x8e\x4e\x6b\x7c\xe9\x22\x81\x7d\xb0\xf4\xf7\x74\x0e\x7c\x2c\xb7\xe8\x30\xa8\x20\x0b\x0c\x45\x40\x54\xdc\x4d\xf6\x07\x8f\x04\x69\x7c\xea\xe1\x3d\xd8\x91\x4d\xf9\x72\x2c\x26\x48\x4a\xea\x1e\xff\xa2\x55\x36\xd5\x60\x54\x59\x36\x5f\xc1\x4d\xdc\x7d\x1c\x98\x68\xe6\x5d\xa6\x41\xa3\x19\xb4\x79\x40\xda\xe7\x78\x4f\x2e\xe2\x3f\x13\x63\x35\xa1\x05\xd3\x74\xc6\x60\x57\x3f\x6f\xee\x9b\xb3\x2d\xf0\x1e\x12\x3a\x23\xc3\xf3\xf1\x6c\xc2\x72\xc0\xc8\x05\xcb\x7b\xcb\x8b\xac\xe4\xb3\x77\x7c\x9e\x97\x5a\x81\x81\xd4\xab\x6c\xc1\x41\x0b\xfe\x02\x67\xa6\x34\x40\x5d\x90\x8b\xe6\x07\x24\x89\xe3\x55\x72\x31\x96\x13\x5a\x98\x86\x25\xeb\xf6\x2d\xc3\xa2\xa7\x1a\xed\x8d\x92\x55\xb2\x9d\x0b\xef\x51\xf3\x1e\x49\xa5\xe5\xfc\x74\x65\x13\xec\x07\x84\x2a\xca\xc9\x66\x13\xb0\xbe\x56\xc1\x61\x39\x1b\xf3\x49\xe3\x9d\x41\xbf\x0f\x78\x35\x45\x4c\xd3\x0b\xf8\x09\xb0\x39\x16\x93\xde\x8c\x2f\xcd\xa6\x20\xa6\x39\xc7\xf8\xf2\x4b\x36\x9e\xd0\x73\x76\xb3\xa1\x33\xf3\xef\xa2\x36\x4f\xce\xaa\x5b\x1f\xcd\x69\x46\x4b\x6a\xe7\x88\x3d\x33\x42\x09\x41\x91\x4f\x6d\x08\x66\xbf\x96\xe8\x21\x81\x3d\x52\xdb\x08\xfb\x82\x16\x64\x33\x35\x9b\x57\xb2\xb2\xbc\x79\x29\x10\xf6\x15\xd9\x00\x38\x0b\xd6\x1d\xd0\x63\x9c\xb3\x73\x93\xbe\xc4\xf4\x35\xbb\xb1\x55\x6b\x87\xc4\x82\x75\xfb\xf4\x98\xf1\xcd\xb6\xd0\xa5\x0e\x74\xd8\xee\x99\x05\xe7\x9a\x7a\x48\xf1\x04\xbd\xc2\xf2\xaf\xf8\x73\x8a\x3c\x6f\xdf\xee\xeb\x26\x23\x01\x43\x7a\x46\x36\x4c\xf7\x3e\x20\x3a\x1a\x72\x47\x41\xa0\x6e\x18\x3b\x4d\x04\x69\x6c\x99\x16\xb4\x92\x4e\x69\x01\x83\xf9\xd8\x42\x04\xe2\x88\x0a\x28\xba\xc0\xd5\xb4\x68\x0e\xf4\xc3\x07\x76\x75\xaf\xd8\xf1\xb0\x86\xb2\xf5\x3a\x01\x37\xf2\x97\xcc\x60\x34\x51\x54\x5b\x3a\x86\x72\x43\xb4\xd4\x41\x83\x7b\x83\xef\xdf\x7b\x2f\xd3\x41\x42\x4c\x37\xbe\x7a\xd8\x27\x35\x1f\xc0\x8c\xf1\x91\x4e\xb7\x78\x22\x4d\x5e\xe0\x28\xe1\xc0\x4f\xb0\x5d\x34\xdf\xa0\x9c\xa4\x36\x37\xc1\xa7\xad\x97\xc6\x7c\xd2\x9b\x4a\x31\xcd\x74\xa2\x49\x3a\xe6\x34\xf4\x4a\xf0\xc5\x8d\xc4\xd6\xc7\xb9\x37\xd5\x31\xe5\x29\x8f\x63\x8d\x73\x52\x98\xb5\x64\x30\xf6\xaa\x31\xaa\x2f\xed\xed\x37\xb0\x0f\x39\x9d\xd9\x83\xd7\x19\x83\x97\x60\x27\xe3\xb3\x5f\x18\x72\x42\x4c\x71\xbb\xd8\xc9\xfa\x54\xac\x3f\x54\x9e\xf5\x69\x7d\x7b\x99\x6d\x24\x43\x8b\xcc\x13\x2d\x97\x4b\x3e\x4b\x08\x1c\x50\x30\xb9\xc0\xab\x0d\x1c\x40\x18\x64\x30\x8e\xdd\x9c\x1b\xb6\x41\xe5\x18\xda\xdb\x80\xb9\x92\xbc\x7c\x63\x88\x21\x53\x5f\x27\x64\xbd\xe6\xa1\x9c\xaa\xa7\x78\xc1\xb3\x12\x28\xfe\x4d\x28\x04\xf2\x73\xc0\x06\x9a\x7d\xc5\xde\x27\xaf\x20\x1e\x2f\x67\xaf\xe8\x2b\xdb\x38\xd4\x32\x23\xf1\x92\xd0\x57\xcd\xdd\xeb\x47\x02\x27\xc2\xdc\xe6\x73\x76\x59\x5b\xcd\x1c\x17\xfb\x09\xbb\xc9\xc5\xdf\xdc\x9e\x12\x6f\x8a\xd5\x3c\x17\xaf\x21\xb2\x7f\x83\x35\xd1\x3c\x40\x06\xfd\x01\x21\xc3\xf2\xb6\x4d\x88\x13\x5a\x24\x64\x43\xb7\x3e\x50\x3e\xb9\x36\xbb\x70\xab\xee\x5d\x77\x00\x87\x92\x75\x75\x01\x41\x25\x1b\xdb\xbf\x26\x7e\xfd\x8f\xf5\x04\xb6\xee\xad\x98\xba\x9a\xac\xd7\xd3\xb1\x9e\x74\x19\x43\x51\x8a\x79\xd8\xea\xc1\x01\xc4\x38\x37\x45\x4c\x51\xf0\x02\xb9\x11\x71\x6c\x60\x0e\xf6\xb2\x7f\x42\xb2\xd4\x6a\xc3\xbc\x92\x33\x5e\x33\xd7\x82\xd5\x68\x09\xaf\xab\x04\xd5\xba\xba\xaa\x56\x28\x98\x32\xe0\x72\x2f\x13\xb0\xf2\x04\xa7\x56\x96\x86\x4f\x4f\xb3\xa5\x5e\x29\xee\x33\x9f\xc9\xd5\x99\x8d\x8f\xd6\x96\xd7\xac\x5e\x45\xed\xd8\xca\x69\xad\x0a\x1a\x6e\x5b\x39\xad\x55\x3f\x2c\x9b\xcf\xbe\x5a\xa2\x58\x57\xf9\xf8\x13\x64\xbd\x36\x19\x89\x8b\x78\xc7\x18\x4b\xb8\xdd\xb2\xc9\x7a\x8d\x51\x8f\x23\xbc\x6c\x5a\x63\x1d\xf7\xa4\xf9\x17\x9d\x29\x9e\xc1\x33\xcc\xf9\xae\x42\xe9\x4a\x87\x7b\xc3\x45\xf0\x7f\x09\xbb\x46\x88\x65\x0c\x99\xd9\x26\xfc\x16\x4d\xfa\xec\x70\x40\xa8\xa6\xbe\xd4\xef\xab\xb0\x2e\x9e\x32\xd5\xfb\xf7\x97\x87\xe1\xd3\xad\xe0\xce\xed\xb7\x89\xc8\x60\xe7\x69\xaf\xbd\xb0\x21\x67\x26\xf4\xf6\x56\x83\xab\x48\x4b\xb3\x41\x69\x53\xa2\x8d\xe7\xd7\x67\xf6\xc3\xff\x4a\x7a\xff\x83\x8c\xff\xfa\xeb\xaf\x1f\x26\x3f\xd0\x8f\xdf\xab\xa8\xf5\x8c\x7d\xfc\x0e\x45\xad\x27\xad\xb5\x1a\x8a\x5a\x6f\x5a\x2b\x6d\x29\x6a\xbd\x6b\xad\xd6\xa6\xa8\xf5\x47\xfb\x57\x9b\x8a\x5a\x7f\xef\xaa\x56\x57\xd4\x7a\xd1\x5a\xad\xa9\xa8\xf5\x61\x57\x2d\x3b\x9a\x01\x84\x83\x01\xfd\xa5\xbd\xcb\x2d\x6a\x5d\x47\xed\xbd\x6e\xaa\x75\xfd\x7e\x6b\xb5\xba\x5a\xd7\xa7\xd6\xba\x35\xb5\xae\x9f\x5b\xab\xd4\xd4\xba\x3e\x7e\x5b\xad\xab\xb5\x4a\xa8\xd6\xd5\x5a\x21\x54\xeb\xfa\xed\x3f\x53\xeb\x7a\xbb\xe5\xe7\x0b\x76\x96\x6d\x4d\x19\x64\x24\xb4\xc9\x2f\x39\xfb\x2d\x8e\xf9\xf8\xb7\xc9\x7a\xcd\x9b\xf2\x4b\xbb\x82\xfc\xe7\xee\x04\x47\x76\x20\x8e\x70\x5b\x52\x6b\x64\x7f\x2f\xb3\x30\x5b\xe6\xb2\xc8\xe0\x4c\x34\x04\x82\x80\x5f\xff\xae\x15\x38\xb7\xbd\xe9\xdc\x86\x70\x2b\x56\x7e\x93\x5a\xd1\x9f\xe3\x1e\x46\x68\x5b\xfe\xc4\xe5\xbf\xc1\x75\x87\xb9\x7f\xf8\x5c\xb7\x2e\x30\xff\x9d\xcb\xaf\xb8\x8d\xb6\xe4\xc8\x97\xb8\xd9\x87\xf9\xbf\x37\xf3\x0d\x81\x14\x6d\xea\xa2\x57\x0f\xbd\x03\xba\x29\x14\x7f\xe1\x5a\xb1\xfc\x69\xcf\xd2\xb7\x5f\xf9\xbb\x59\xee\xa4\x02\xb6\xfc\x97\xd4\x91\x8f\xc8\xd6\xf7\xac\x2a\xa6\xeb\x28\xd6\x16\xc5\x51\x44\x1b\xc8\x4f\x22\x98\x1b\xa3\xe8\xc8\x4b\x10\x12\xe0\x30\x90\x28\x0d\xf2\x22\x82\x5f\xfc\x64\x21\x32\xe3\x8f\x07\x1b\xe6\xff\x9c\x9a\x83\x89\x0d\x40\xee\x67\xa5\x05\x23\xde\x0b\x85\x05\xa4\x7a\xd3\x9b\xd1\xd7\xe7\xd4\xaf\x15\x41\x1c\x45\xc3\x99\xbc\xf1\xa4\x03\xef\xe9\x6c\x6e\x91\x76\x88\x9a\x04\x77\xf1\xe7\x1e\xfe\xdc\xc7\x9f\x41\x1f\x7f\x1f\xa6\xd6\x4d\x58\xb4\x75\x8a\xba\x8b\xd4\xe9\x8c\x9f\xad\xe6\xc0\xbb\x02\xb1\x2c\x3e\x9f\x80\x8a\x12\xcd\x59\xd5\x3f\x81\xe4\xa3\x02\xdf\xde\x77\x12\x85\xd9\x84\x2a\x96\xd3\x9c\x45\x11\x95\xa3\x9c\x45\x9d\x24\xd3\x9d\x68\x4f\xf6\xcc\xbc\x32\xa8\xf5\x42\xc9\xcf\x34\x8a\xc8\x5e\x94\x9a\xc2\x22\x17\xfc\x15\x68\x50\x00\x82\x51\x88\x19\x75\x12\xe4\x48\xce\x3a\x67\xd7\xc8\xd1\x21\x60\xbf\x1b\xfd\x25\x3a\x9d\x8e\xa1\x0b\xa3\xbd\x44\xad\xd7\xd1\x07\xbc\xf5\x45\x64\x2f\xdf\xe8\x3d\x26\x28\x87\xa1\x37\xa8\xdc\x5c\x5d\xe4\x05\x58\x6f\x7b\xc7\x77\xa6\xa7\x7f\x1a\x7a\x64\xb7\x75\x38\xdc\x24\x77\x15\x7a\xd3\xbc\xef\xab\xd5\xab\xb1\xde\x09\xe5\x1c\x11\xa7\xed\xaf\xe0\x8d\x5b\x90\xe2\xee\x1a\xc4\xbe\x26\x9c\xa0\x66\x5f\x9b\x12\x1f\x6f\x12\x32\x0f\xfa\xc4\x59\xa9\x5f\x25\x01\x85\x4a\x86\x9c\x87\xcf\x96\x63\x0e\x71\x21\xfc\x67\x25\x7c\x56\xf3\x91\x30\x7f\x4e\xec\x9c\x0a\xce\xc6\x7c\x92\x6a\xce\x78\x55\x37\xe7\xc8\xb4\xd2\xdc\x3b\x81\xe7\x54\x33\x01\xb4\xb0\x30\x4f\x76\x72\x98\x36\x29\x2a\xa8\x71\xd6\x1f\xf2\x4a\xfd\x84\xef\xed\x11\xc5\x13\x3d\xe6\x93\x10\x8a\xac\xee\x99\x94\xd7\xe4\xd2\x25\xaf\xb4\xa2\xaa\x0a\xf0\x5c\x55\x9a\x1a\xd8\x60\x90\x0b\xce\x32\x4e\x57\x86\x3e\xa4\x4b\x0e\x17\x0a\x57\xe9\xdc\x54\x72\x2a\x2d\x56\xb5\x82\x31\x26\xcc\xca\x37\x0d\x50\xd3\x43\xb2\x11\xfc\xaa\x73\x9c\x2d\x69\xe3\x17\xa3\xd3\x71\xf6\xc3\xff\x1a\xa7\x8f\xf7\xff\x3c\xcd\xf6\xbf\xfe\xb5\xea\xf7\x9f\xf6\xf7\xcd\xcf\xb3\x7b\xf0\xff\x01\x3c\x1c\xc1\xc3\x11\x3c\x1c\x1c\x1d\xfd\xb5\xea\x1f\xde\x87\x6a\x87\xf7\x9f\xc1\xff\xa3\xfd\xbf\x56\x83\x23\x53\x72\xd0\xef\x3f\xdd\x87\x9f\x67\xe6\x3f\x54\x3b\x18\x3c\x30\x25\x4f\xfb\xf0\x70\xf4\xfc\xe8\xaf\xd5\x61\xbf\x3f\xd8\xff\x6b\xf5\xec\xbe\x79\xe7\xe8\x21\x94\x1c\x3d\x7b\x6a\x1e\x9e\x1d\xc1\xc3\xd1\xd1\xb3\xc9\xff\xab\x80\xfd\xb5\xdf\xeb\xef\x3f\x34\x9f\x7e\x72\xdf\x7c\xa6\x8f\xdf\xbc\x07\x9f\x39\x3c\x82\xcf\xdc\xed\x4f\xfe\xc7\x9d\x1f\xe8\x05\xff\xa6\x5a\xe5\x19\x67\x37\x1b\xba\xe0\x35\x46\xd9\x31\x0f\x39\x3b\x96\xb7\x95\x4d\xa7\x7c\xa9\xcb\x27\xa8\xf8\x55\xb2\x03\xd4\x65\x3a\xc4\x9f\xbb\xe6\x07\xd5\x72\x33\x17\x01\xdf\x6c\x56\x4c\xb5\x64\x96\xcb\x6c\xca\x99\xc4\x92\xc5\xaa\xd4\x1f\x4a\xee\x20\x62\xa2\xf2\xd6\x6d\x9e\xa1\x11\xab\x0b\x0c\x62\x12\xfb\x95\x32\x13\xb9\xce\xbf\xf2\x0f\xef\x5e\x5a\x3d\xc0\x39\x74\x22\x72\xb2\x9c\xce\x2c\x13\x73\xae\xe4\xaa\x2c\xae\x4f\xb8\x7e\x21\x04\x57\xbf\xbc\x3f\x7e\xd9\xb1\xfb\x35\x48\x49\xdd\xc3\xd3\x0b\x3e\xfd\xcc\x67\x9d\xdc\xd7\x72\xbe\x3d\xe1\x80\x14\xfa\xf9\x2c\x07\xa1\xcb\x47\x64\x56\xfb\xe2\x5f\xae\x67\xc8\x0b\xf5\x05\xfa\xba\xe0\x51\xaf\x5c\x16\xb9\x4e\xa2\x4e\xd4\xe6\x6e\x85\x93\x9b\x39\x1f\xf3\x09\xe8\xdb\x02\xb2\xfb\xb4\x3b\xa0\x1c\x35\x1d\xba\x03\xb0\xd1\x19\x8f\x23\x44\xf9\xd3\x8b\x4c\x95\x1c\x22\xfd\xc2\xf3\xfe\xd4\x66\x4c\xe8\x38\x9a\x16\x59\x59\x1a\x1c\x45\x14\xd3\x90\x6b\x63\x3e\x47\xa0\x0a\x6c\x73\xf4\xf2\xf9\x3f\xab\xfc\x32\xa2\x90\xde\xe7\xf0\x30\x99\xb4\x83\x67\x4f\xff\x71\x7f\x32\x9c\x73\x73\xa9\xb7\x90\x6a\x3a\x00\x48\xc7\x83\x49\x1d\xd8\x68\x5a\xc7\x53\x44\xa3\x99\xca\xe6\x73\x9b\x2e\x97\xbc\x28\x00\xc9\x11\x8d\x40\xc7\x2c\xda\xf1\xe5\x06\x62\x0e\xe0\x73\x75\xcf\xd0\x8d\x2f\x67\x2b\x2d\xdf\xf1\x4b\xae\x4a\xf3\x25\xfe\x05\x7d\xb9\xbf\xe3\xa8\x14\xec\x7d\x71\x02\x32\xa6\xab\xd2\x42\x64\x46\x8f\xab\x4b\xfe\xb8\x58\x5e\x64\xff\x0a\x98\xda\xe7\xa3\xac\x28\xe4\xd5\xd1\xaa\x28\x4e\xa6\x8a\x73\xd1\xc9\xca\x6b\x31\xed\x18\x98\x8e\xcc\xd7\x20\xf5\xa6\xc8\xae\x3b\x2e\xb0\xb2\x9b\x72\xe6\x97\xab\x8e\xbb\xe3\xbb\xc4\x9b\x7c\xaa\x57\x8a\xbf\x10\x36\xd1\x39\x97\x6a\xf1\x4a\x82\x54\x30\xd3\xbc\x73\x91\xcf\x66\x5c\x74\x0a\x29\x97\x1d\x21\x8f\xe5\x6c\x55\xf0\x8e\xa8\xca\x21\xde\xbd\xa1\xc2\xca\x17\xc2\x10\x05\x1d\xc5\xb3\xd9\x6b\x51\x5c\x77\x94\x45\x44\x47\x21\xb2\x66\x1d\xb8\x1c\xcc\x3a\x25\xcf\x16\x05\x2f\x4b\x30\x8a\x3b\x81\x0b\xc3\xbf\x9d\xbf\x87\xdf\x1e\xa6\x29\x2e\xb1\x88\x46\x8b\x55\xa1\xf3\x25\x8c\xc2\x62\xa5\x21\xcb\x1b\xc2\x7d\xdf\x40\x1c\xd2\x6e\xbf\xb9\x5c\xa2\xa9\x65\x9e\x50\xf0\x90\x51\xc8\xec\x7b\x5b\xbb\xdb\xb2\xf8\xa2\xa9\x2c\xca\x88\x46\x4a\x5e\x99\x9f\x32\xff\x8a\xd3\x38\x13\xdf\xd9\xe8\xbd\xb6\x46\x95\xbc\x3a\x31\x4d\xd0\x08\xa3\x47\x7c\x5f\x53\x3f\x7e\x03\xb9\x70\x98\x5e\x72\xf6\xc3\xf8\xaf\xfd\x74\x92\x8c\xb3\xfd\xaf\x13\xf2\xc3\xbc\xda\xcf\xaf\x79\xa8\x34\x35\x1e\x4c\xea\x9e\xc1\xab\x93\xff\x31\x54\x74\x5c\x35\x77\xc9\x40\xe6\x9a\xd3\xf8\x6d\x68\xeb\x86\x2a\xba\xdb\x4a\xbd\x15\x75\x97\xfa\x8b\x96\xa3\x97\x9d\x77\xa6\x80\x76\xb9\xe2\x4d\xcf\xe2\xf3\x16\x9e\xe5\x08\xb6\x24\x20\xfd\x87\x8e\xb3\x2b\xc1\x97\x93\x84\x23\x22\xed\x1a\x92\xfa\x20\xe0\x56\x27\x91\x04\xf2\x72\xdc\x9f\xac\xd7\xd1\x6b\x97\x26\xa6\x04\x2f\x92\xe3\x81\x29\x79\xe5\xd2\x84\x90\xf5\x3a\x69\xca\x39\x42\xbd\x8e\x5d\xb4\xab\x0e\x1d\xaa\x34\x5e\x43\x27\xe6\x68\xcb\x0a\xb4\xbe\x33\xe4\x19\xd6\x51\xee\xf8\x99\x9e\x64\xb5\x98\x85\x1b\xba\xc3\x64\xb7\x3f\xac\x8f\x8b\xcd\x86\xeb\x84\xfd\xd8\xa8\x2b\x9a\xe7\x76\x1a\xcd\x32\x9d\xed\x1b\x2a\x18\x79\x88\xe1\xac\xf2\xce\xe3\x7f\x24\x24\x8e\xd1\x46\xd5\xd4\xe4\xa4\x31\x6a\xdd\x01\xe8\x67\x62\xf7\x88\x07\x28\x3f\x4f\x54\xd5\xa9\xa0\xd7\xee\xa2\x6a\xfb\xed\xee\x5b\xb6\xaa\x1e\xda\x8b\x97\x7b\xd5\xa0\x13\xf3\x7e\x74\xf3\x26\x2f\x5f\x65\xaf\x12\x6d\x6f\x85\xf7\x9a\xd9\xeb\xf5\xe0\x27\xbd\xf1\xc0\x01\x4d\x2b\xc1\x16\x23\x11\x56\xdb\x4e\x21\x23\xc0\x4c\x93\xd1\xb6\xda\x50\xb7\x7b\x61\x79\xed\x0b\x4e\x39\x59\xaf\xfd\xf3\x19\x87\xf0\x1c\xc9\x8c\x3b\xef\xfb\xa3\x05\x2c\xd0\x6e\x3f\x4d\xce\x6c\xca\x2c\x45\xb2\x01\xc7\x06\x6e\x86\x88\x11\xb7\x31\x5f\x1e\x3b\xe2\x27\xd1\x24\x05\xf3\xa3\x20\x87\x82\xa6\x29\x49\x65\x93\x12\x1a\xf1\xb1\xac\x91\x41\x13\xe6\x5b\x3e\xec\xba\xc9\x1e\xc7\x51\x94\x8a\x34\xd1\x4c\xd6\x89\x2c\xaa\x9a\x39\x40\x76\xd1\xdb\xa1\x4b\x04\x33\x14\x5d\x22\x6d\xf3\x04\x49\x3b\x19\xc7\x5d\x74\xd0\x1d\x45\xa9\x01\x98\xaa\x51\xbd\x23\xaf\x4e\x40\x3c\x27\x5a\x3a\x28\x08\x09\x95\x6f\xbf\xf2\x50\x3c\x15\xc4\xb9\x84\xf9\x28\xe4\x0c\x80\x35\xf3\xaf\xe2\x6b\xd7\xa7\xa9\x59\xb6\x70\x9c\x9c\xc9\x2f\x91\x5d\x8b\x2a\x9b\xe5\xb8\xc8\x83\x4f\x9d\x72\x34\xaf\x38\x05\x92\xe3\xbd\xca\xa6\x9f\xb9\x82\x10\x7b\xb5\x9c\x16\xcf\x15\x00\xe4\xc8\x1f\x5a\xa9\x25\x5a\xa8\xf3\x1c\xd9\x9b\x73\x1d\xec\x4a\xcf\x78\x39\x55\xf9\x52\x9b\x5b\x5a\x4d\x2a\xe5\x09\x6f\xaa\xcd\xc5\x3e\x8a\xf6\xbc\xa4\xa5\x65\x67\x8b\xe3\xba\xa5\x85\xe3\xa8\x87\x6c\xf8\x6a\xab\x01\xaf\x51\xbb\x8a\x4a\xae\xdd\x1e\x0a\xf5\xc0\xf3\x42\xc9\x75\xdd\xb6\xbd\x87\x1f\xf3\x20\x98\x25\x7d\x33\x05\x16\xf7\x4a\x19\x72\x24\xed\xf6\xe9\xbc\x6e\x01\xed\x4d\x66\x50\xe5\xeb\x22\x2f\xd1\x38\xbb\xae\x8b\x07\x5d\xa5\x79\x55\x09\xc4\xff\xde\x1f\x61\xdb\x77\xb9\x58\x2d\x38\x7e\x55\xf4\xaa\x87\x0d\xa1\x37\x73\xae\xb7\xb4\x1a\x9d\x91\x07\x7c\xbc\x51\xea\x21\xd8\xd0\x52\xcb\x25\x8c\x73\xcd\x43\xe1\xd6\xac\x60\x36\x40\x44\xc1\x35\x07\x7f\xf0\x9b\x8d\xd9\xe2\xc2\x89\xfb\xda\xb1\x15\xba\xc1\xce\xed\xc5\xac\x61\x63\x30\xbe\xba\xda\x17\x5d\x64\x57\xd7\x8d\x04\xe7\x82\xd7\xcc\x89\xe3\x44\xd9\x29\xc7\x7b\x76\xce\x8d\x22\xad\x56\x3c\x4a\xa3\xf3\xac\x28\x79\x94\x72\xb4\xcd\x00\xad\x61\x45\xf0\x28\x49\x74\xcf\xf5\x3d\xe1\x84\x76\xfb\x01\xb4\xef\x6b\xce\xf2\xb5\x6b\xd6\x5b\x3c\x25\x37\x1b\x83\xf4\xfa\x05\xc8\x6a\xd0\xd2\xf0\x8e\xe4\xf2\x2e\xc3\x07\xdb\x9a\x35\x09\x10\x23\x91\xf2\xde\xe9\x95\xca\x0c\x55\x01\x9a\x97\xce\xf3\x9e\x6d\x38\x8c\x6c\xf2\xa5\x06\x99\x15\xcf\xf7\xc2\x4f\x9a\x5d\xa6\x9e\x43\x71\x80\xba\x55\x47\x46\x3e\x55\x55\xb5\x1f\x1b\x0a\xf6\x98\x3b\x1d\x49\x44\xdb\xc8\xfe\xa6\x82\xd0\x06\xa4\xec\xa6\x0e\x6a\xea\xdd\xe0\xbb\xf0\x7e\x53\x1f\x8c\x2a\xad\xef\x3b\x4e\x69\xa2\xda\x7c\x20\x67\xd4\x00\x35\xad\x81\x12\xd0\x3b\xaf\x2c\x26\xb0\x3c\xd1\xd5\x2b\x24\x8e\x81\x18\xaa\xc8\x66\x08\x31\x57\xbd\xfa\xd2\xbe\x6a\x9b\xb0\x53\xec\x31\x4f\xb4\x9b\x27\xce\x4f\x76\x75\x0e\x0b\x12\xc4\x02\x57\xa3\xc4\x46\x16\x8c\x70\x8b\x85\xd7\xd6\x6b\x9b\x30\xb5\xe3\x38\xb1\x4f\x0c\x0e\xa9\xd4\x97\xc1\x73\xb3\xb8\x32\x12\x2a\x57\x67\x8b\x1c\x76\x6e\x65\xb0\xc3\xcd\x6d\xd5\x3c\x90\x50\x1b\x7e\xfb\xfc\xb1\x9b\x2c\x19\xea\x2d\x29\x9d\x2d\x19\xa1\x2b\x70\x64\xbe\x09\x92\x6e\x57\x0c\x27\x4d\x44\xe2\x38\x7c\x01\xb0\x13\x56\x20\x84\xba\xe9\x67\xf1\xec\x6c\x84\x9a\x53\x0a\xfa\x5a\xcf\x62\xdd\x6e\xb3\x56\x30\x3e\xcf\x79\xa0\xde\xb4\xb3\x3f\xeb\xf5\xb7\x7a\x50\x45\xa0\x77\x63\xd9\xf5\xf8\xed\x32\xa6\xe2\xd8\xe2\xb7\x0b\xc8\x0e\xd4\x7c\x2f\x31\x4c\xb5\x25\xc1\xdc\xb4\xb0\x43\x30\xd4\xe8\x65\xb9\x75\xcd\xe2\x8a\x13\xeb\xb5\x0e\x27\x86\x1f\x6c\x6d\x96\x50\x08\x25\xd3\x1b\x60\xf6\x27\x82\x59\x07\xb1\x80\x2e\x93\x62\x51\x14\xd4\xf6\x98\x6b\xe6\xb4\x54\xe9\xde\xbe\xa1\x50\xf8\xa2\xa8\x3e\x14\xda\x84\x9d\x78\xe4\x87\xc1\xef\x21\x7e\xd0\x95\xe0\xea\xd9\x2e\xcf\x70\xa6\x97\x38\x21\x0c\x79\x54\xeb\xe2\x37\xb0\x95\xd6\xab\x87\x2b\xa4\xd9\x8c\x08\xcf\x94\x7f\x1a\xdc\x5a\x26\x93\x1b\xc7\xc1\xb2\x7b\xed\xc6\x90\x0e\x89\x6e\x21\x52\xaa\x13\x44\xf5\x9c\xb5\x90\xbf\x51\xf2\xba\xc9\x4c\x65\xbb\xa5\xf7\x98\x75\x4f\xb3\x49\xb4\x57\x7d\x26\x38\x66\x5e\x13\x1a\xc2\x51\x7b\x30\x9f\xf2\xda\x65\xc6\x10\x6a\xe8\xd4\xa6\x84\x98\x7d\xc0\x3d\xb4\x9a\x42\x92\xf5\x87\xf2\x91\xf7\xb5\x2b\xf7\xf6\x88\x1e\x47\x77\xa2\x3d\x31\x96\x13\x43\x2a\x43\x4d\xc1\xfa\x43\xf1\x88\xbb\x5a\x62\x6f\x8f\x48\xb6\xbd\x16\xee\x18\x7a\x49\x4c\xdc\x96\x06\x69\xc7\x2b\xc0\xe8\x33\x49\x2d\x8f\x49\x70\x6f\xa1\x5c\x7e\x23\x7a\x08\x33\x27\xa4\xd9\xa5\x6e\x10\x86\x28\xda\x33\x07\x05\xa1\xd6\x9c\x16\x61\xe7\x21\xec\xd0\xdd\xb1\xb4\x20\x98\x0d\xb3\x0a\x1a\x23\x83\x0f\x77\xfb\xa0\x9a\x96\xe0\xa7\x65\xeb\xa7\xc9\xd0\x2d\xc6\xf5\x1a\xeb\x58\xe6\x0f\x58\xd0\x9a\x1c\xb2\x71\x35\xec\xe1\x1e\xc0\x5d\x8d\xc6\x67\x5e\x53\x6e\x83\xdd\xaa\x9d\xd9\xd9\xd4\x64\x0a\xec\xcc\x1c\x01\x50\x3b\xd6\xdb\xce\x7d\x3f\x1d\xbf\xb1\x04\xc2\x23\xfe\x63\x83\xf8\x80\x8f\x54\x16\x70\xd6\x42\xa2\x71\xea\xd3\xda\x31\xe8\xa6\xe5\x4d\x70\x7c\x35\x7a\x73\x80\x7a\x59\x5b\x4a\x6b\x40\xa3\x25\x83\x9f\x98\xe3\x00\x6c\xa9\xd1\x1e\x12\x32\xd4\xc0\x03\xd8\x08\xa6\x37\x16\x2a\xb8\x2c\x46\x11\xd9\xec\xa2\x10\x10\x2f\x30\x65\x82\xe1\x78\x56\xeb\x6c\xfd\x08\xde\x3e\x72\x02\x33\x43\x9c\x81\xc2\x10\x73\xdc\x6d\xd7\x7e\x97\x15\xd5\xd9\x14\xbe\x1f\x18\xee\xbb\x9d\xa6\x65\x9b\x11\xf6\x64\xeb\x32\xd5\xba\x07\x85\xe2\x9e\x27\xf5\xfb\x18\xff\xa2\x2d\xcf\x7b\x88\xdb\xff\xee\x11\x37\xa4\x03\xce\xd5\x60\xd6\x56\xa7\xc4\x06\x18\xd6\x42\xef\x5f\xf0\x7c\x7e\xa1\x3b\x59\x91\xcf\x41\x33\x7c\xff\x2c\x2b\x39\x30\x27\x33\x95\x9d\xe5\xd3\xfd\x73\xa9\x16\x1d\x97\xb9\x0f\xae\x16\x3b\xd3\x6c\xe9\x5e\x9c\x16\xf9\x72\x7f\x99\xe9\x0b\x4c\xa9\x55\xc1\x3b\x53\x59\x48\xb5\x0f\x91\x3b\x97\xb2\xc8\x50\x70\xb5\x9d\xb7\x7f\x9e\x17\x9a\xab\xd2\x96\x59\xb5\x15\xfb\x84\xb2\xed\x5c\xcc\x3b\x33\xb9\xc8\x45\x16\x42\xc6\x85\x59\x99\xfb\x67\xd9\xf4\xf3\x5c\xc9\x95\x98\x75\xce\xf3\xa2\xd8\x97\xcb\x6c\x9a\xeb\x6b\x7c\x00\x40\xce\x0b\x29\x67\xfb\xd0\xa0\x4d\xfb\x3a\x52\xe8\xfd\xf3\x6c\x91\x17\x36\x5d\xe6\x5f\x79\x95\xda\xcf\x66\x7f\xaf\x4a\x6d\x33\xb4\xe2\x7a\x7a\xe1\x1e\xae\x0b\x5b\xd1\x5a\x04\xe0\xc3\x15\xa2\x63\x5e\x5c\x2f\x2f\xf6\xcd\xa1\x67\x93\x52\xe5\x5c\x68\xec\xef\x85\x54\xf9\x57\x29\x74\x56\xb4\x14\x5e\x72\xa5\xf3\x69\x56\x74\xa0\xd6\x7e\x36\xbb\xdc\xff\x62\xd3\x52\xe5\xf3\x5c\xec\x7f\xe9\xe4\x8b\x6c\xce\x03\xd4\x14\x5c\x6b\xae\xf6\x4b\xd3\x29\xf3\x68\x40\xc8\xc5\xdc\xf6\x78\x91\xa9\xcf\x5c\xed\x73\x31\x73\xc9\x45\xee\x93\xc0\xe4\xec\xc8\x4b\xae\x60\x5c\x97\xb2\xcc\x51\x50\xea\x72\xf4\x45\x3e\xfd\x2c\x78\x59\x76\x96\x59\x2e\xf4\xbe\x54\x33\xae\x3a\xcb\x4c\xc8\x92\xef\x0f\x3a\x4b\x09\x63\x89\xba\xc8\x65\xc7\xc3\x04\x43\x2c\x74\x07\xe2\x17\x05\xa0\x9a\xab\x9e\x85\x0b\x92\x6e\x20\x4a\xad\xf2\xcf\xdc\x6c\x01\xab\xf9\x45\x05\x46\x3d\xbb\x82\xa5\xd4\x4a\x7e\xe6\xfb\xb3\xac\xbc\x80\x80\x5e\x61\x86\x3c\x3f\x2f\xb9\x76\x39\xa6\x13\xd3\x6c\x19\x3e\xfe\x2d\x73\xe1\x9e\x17\xb9\x36\x1d\x5d\xe4\xfe\x85\x00\x22\xf3\x78\x95\xcf\xf4\x45\xc7\x2c\xb9\xfd\x4c\x4c\x2f\xa4\xc2\xf4\x8c\x4f\x25\x4a\x95\xf0\xb9\xea\xe1\xca\x24\xea\xc8\xac\xb2\xaa\x1e\xac\x44\x3e\x95\x33\xbe\x7f\x96\xcf\x72\xff\xa0\xcc\x11\x61\x9e\x74\xb9\xbf\x34\x58\x5d\x74\x2e\xf7\xb3\x62\x79\x91\x9d\x71\x9d\x4f\x3b\x97\xfb\x17\x99\x98\x9b\xaf\x5c\xee\xe7\x33\x2e\xe7\x2a\x5b\x5e\x40\xfe\x22\xd3\x17\x7c\x91\xe1\xd4\xb9\xe4\x53\x2d\xd5\x3e\x07\xfb\xc0\x8e\x99\x51\x30\x8f\xae\x31\xe9\xa7\x51\xf8\x74\xdd\xb9\x92\x6a\xe6\xa7\xd0\x95\xca\x61\x06\x2d\xe4\x8c\x77\xbe\x2c\x0a\x51\xa6\x5f\x8a\x5c\x7c\xee\x7c\xb1\x0b\xfe\xdb\xe2\x87\x4a\x3b\x05\x55\x21\x2e\x39\xbd\xe6\xa4\x5d\x56\x55\x97\xd7\xc0\x97\xd2\x6c\xaa\x57\x99\xe6\x1d\xfb\xa4\xa6\x4a\x16\xee\x29\x48\x96\x17\xf2\xca\x26\x75\xae\x7d\xb6\xa1\xc4\xff\x37\xc3\x08\x42\xb9\xf4\x87\x1f\xae\xae\xae\x7a\x57\x87\x60\x26\x34\x78\xf8\xf0\xe1\x0f\xf0\xc1\xa8\x92\x20\x7c\x59\x14\xa9\xd9\xa3\x22\x0a\xc9\x22\x13\x73\x9b\x04\xee\xde\x2e\x89\xc2\x7f\x0b\xcb\x1f\xc7\x2f\x0d\x3c\x0f\x7e\x10\x8e\x8f\x18\xc0\xe4\x9c\x5d\x46\x34\x9a\x2a\x59\x96\xaf\x61\xd4\xbf\x53\xb8\x31\xf8\x96\xe4\x68\xce\x7b\x80\x84\x5f\x14\x3f\x77\xaf\x45\x3e\x27\xc2\x06\xec\xb0\x5e\xa0\xb3\xc9\x6f\xe0\xb2\x6f\x80\x2e\xd5\xd4\xd4\xc4\x17\x30\x14\x07\x8a\x4b\x17\x18\x8a\xf2\xbf\x07\xbf\xef\x65\x33\x6f\x38\xbb\xb9\xd0\x8b\x22\xdd\x09\x99\x29\x8d\xa8\x59\x67\x3b\x6b\x3d\xf8\xe1\x38\xd3\x17\xf0\xef\xf8\x65\x44\xcb\xcb\x79\x5b\xc5\x83\x7e\xbf\xff\x43\x79\x39\x8f\x02\x71\xfe\xbb\x50\xaa\xe3\xc4\x39\xa6\x8e\x13\xc1\xdc\xd2\x0c\xca\x18\x0c\x60\xb7\xd4\xde\x82\xae\x29\xe3\xb9\xb5\xdb\x01\x25\xf5\x47\xfd\x36\x64\x55\x00\xd7\xeb\xdb\x1b\x00\x67\xa7\xef\x80\x7d\x7d\x5b\x57\x30\x1e\x85\x19\x62\x9e\xcf\xc5\xeb\x4a\x99\x6e\x74\x7b\xf3\x29\x7a\x64\xf8\x9b\xd3\x17\xbc\x25\x3e\x40\x2b\xc7\xf6\xf8\xe4\xf1\x72\x19\xc7\xf0\xd3\xe3\x5f\xf8\xf4\x83\x28\xb3\x73\xfe\x52\x4e\xb3\xc2\x45\x3a\xab\x84\x10\xde\x15\xc5\xad\xf5\x93\x16\x97\x0a\xc8\x5e\xdf\x10\xb2\x49\xf9\x26\x49\xea\xe6\x9f\xa0\xf1\xef\x17\xec\x87\x77\x2f\xba\x8c\xbd\xe1\xbd\xf2\x72\x0e\x3a\xe3\xf6\x8a\x10\x81\x75\x80\x21\xec\x6c\x06\xd3\x43\x7f\x45\x4a\xfe\xe6\xec\x6f\xbe\x5e\xb7\xab\x62\x25\xd1\x2c\xbf\x8c\x08\x09\xde\x8d\x1e\x95\x97\xf3\x9f\xa2\x3d\x4b\x02\xbf\x3e\x4f\x48\xe5\xfc\x84\xec\x45\x8f\x7e\x80\x72\xaa\xd9\xdf\xbc\x77\x9e\xab\x52\xc3\xc5\x75\x58\x7b\x20\x8e\x35\x04\x8f\x49\x58\x86\x76\x76\x43\xdd\xa8\x6e\x08\x54\x31\xc3\xea\x61\x19\xd9\x98\x35\xe8\xe7\xd7\x87\x20\x00\x68\x65\x87\x10\x34\x85\x3a\xef\x02\xe8\xde\x22\xb3\xb9\x71\x7c\x08\x22\x3b\x21\x67\xe0\xb6\x33\xe4\x62\x25\x98\xfd\xbb\x23\x79\x6b\x04\x34\xd3\xd5\xd4\xfe\xa5\x76\x49\xb8\xd9\x78\x1d\xf9\x71\x63\xf7\x98\x30\xdd\xdc\x4e\xc6\xd1\x47\x7e\xf6\x39\xd7\xd1\x1e\x9f\xb0\xe8\xca\xa6\xb5\x29\x38\x96\x5f\x31\x77\x61\x12\x9a\xa2\xca\xfd\x11\x67\x37\x99\xc8\x17\x40\x43\x70\x31\x4b\x7f\xe1\x49\xf4\xd8\x65\x44\xb4\x4a\x3f\x17\xb3\x88\x50\x5f\x17\x15\x73\x73\x29\x76\xbf\xf1\xc2\x55\x09\xdf\x03\x4a\x6f\xf7\x3b\x27\x20\xed\x26\x54\xab\x4c\x20\xd9\xe2\x80\x7a\xef\x73\x22\x1a\x3c\x00\x58\x1b\xfa\x3b\x68\x27\x7d\xaa\x6b\x27\xfd\xec\xd8\xf0\xbf\x9b\xad\xd8\x0d\x06\x3c\x00\x7b\xec\x28\xcc\x46\xa7\x28\x9a\x0a\x06\xd9\x95\x41\x8c\x20\x66\xac\xdb\x44\x30\x50\xfc\x89\xd7\x1a\x66\x62\xac\x27\x95\xe7\x90\x3f\xe3\x38\xf9\xc4\xd9\xad\xab\xa2\x07\x54\x7c\x88\x6a\xb0\xa8\xcb\x85\xd7\x90\x4c\xac\xb4\xe1\x88\xf7\xc2\xc1\xaa\x1e\x68\x4b\x05\x3f\x42\xb7\x57\x83\x01\xa9\x1e\x49\x0d\xb9\x4d\x40\xaa\xf7\x6b\x03\x14\x3c\x59\x05\x72\xce\x7e\xe6\x49\x14\x02\x1b\x11\xfa\xb6\x91\x9b\x07\x13\xe4\x4e\xa3\xac\xb4\x13\xe1\x57\xcc\xaf\x7d\x2e\x22\xf4\x4f\xce\xa2\xec\x4c\x2a\x73\xfb\x13\x4b\xd0\x9a\xc1\x5f\x4b\xa4\x77\x66\x2b\x6c\x1a\x03\xe2\x74\xf8\x62\xa9\x73\x3e\xeb\x70\x31\x55\xd7\x4b\x0d\xa9\x99\xf9\x0f\x06\xcd\x85\xcc\x66\x7c\x36\xcb\x74\x66\x93\x0b\xae\x33\xff\x88\x97\x93\x65\xb6\x2a\x39\xe8\xcb\xc0\x3f\x43\x9e\x2e\x95\x9c\x43\x7c\x26\x95\x69\x6e\x3f\x54\x72\xfe\x19\x34\x65\xf8\x67\xbc\x68\x60\x44\x2f\x34\x09\x98\x75\x74\xbe\xe0\xe8\x97\xb1\x73\x29\x8b\xd5\xc2\xbd\x76\x95\x01\xa5\x1b\xd2\x8a\x94\x83\x7b\x66\xad\xd9\x78\x42\x85\xe5\x3b\x29\xc7\x7f\xb2\xbf\xb9\x66\x4e\x61\x32\xab\x92\xa5\x36\xcb\x7c\x55\x72\x88\x2d\x05\xa9\xd5\xb2\xa3\xe5\x6a\x7a\x31\xcd\xc4\x94\x17\x98\x06\x80\x4c\x02\x7b\x98\xad\xbe\x4c\x8b\x7c\xfa\xb9\x33\x3b\x2b\x30\x61\xaf\x55\xf6\x1d\xfb\x04\x6d\xda\xf4\x6a\xd9\x99\xa9\x6c\x6e\x1a\x32\xbf\xd8\xce\x4c\xc9\x65\x67\x2a\x17\xee\xe2\x61\x4a\x83\x47\xac\xf4\x99\x5f\x43\x43\x9f\xf9\x35\xa8\xc7\x99\xc4\x6a\xd9\x01\x41\x2e\xdc\x65\x20\x00\x78\x07\xbc\x3d\x77\x2c\x00\x53\xb9\xbc\xee\x4c\x57\x66\x2c\x4a\xcd\x3b\x08\xa3\x45\xa0\x35\x0c\x59\x70\xb1\xea\x00\x9b\xbb\x63\x59\xdf\x21\x46\xa7\x9a\xa1\x6a\x57\xe7\xac\x58\x29\x0b\xba\xe6\x98\x2a\x78\x76\xc9\x11\x59\xe6\xda\x69\x53\xe6\x6b\xd8\x57\xc8\x74\xe9\x95\xee\xcc\xa5\xf6\xf8\x01\x7d\xa2\x4e\x21\xcb\x46\x56\xf8\xf5\xc0\x0c\x5d\x37\x75\x6b\x6f\xce\x0a\x39\xfd\xcc\x67\xaf\x45\xca\xa9\x96\xcb\x97\xfc\x92\x17\xe6\x04\x49\x35\x85\x3b\xed\xc9\x75\xa9\xf9\xe2\xa8\xc8\xe6\x65\x7a\x78\xb0\x16\x54\x80\x5f\x17\x58\xa0\xa9\x0a\x6d\xa5\xd1\x13\x4b\x93\x88\x83\x5e\x5b\xed\x10\xd3\xf7\x28\xb5\x33\x2a\x74\xa0\xe7\xf1\x61\x2b\x7a\xac\x44\xa9\xda\xae\xed\x31\x65\x6b\x3b\x7c\x45\xa9\xdc\xae\x1c\xe0\xd0\x56\xaf\x30\x19\xa5\xb9\xee\xe1\xce\x92\xe8\x9e\xcd\x7f\x31\x0b\xe3\x27\x46\x5b\xc8\xb6\xad\xb4\xa0\x3c\xcd\x5a\x5b\x0b\x70\xb4\xd4\xa1\x57\xaf\x2d\x83\x15\x43\x0a\x79\xe4\x82\xc6\x50\xa1\x3d\xe5\x95\x26\xbc\xd7\x1c\x91\x35\x03\x93\xf5\x4a\xe3\x59\x37\x8c\x49\x7b\x7e\x78\x9b\xe2\xe0\xf7\x22\x31\xa7\x7a\x35\xe0\x74\xbb\x79\x5a\x03\xa8\x61\x8b\xcc\x34\xc8\x5b\xfc\x07\x58\x43\xfa\x37\xd3\x4e\xc0\x01\x50\xc5\xb1\xf0\xc8\x09\x6a\x5d\xe8\x04\xcd\xff\x61\xcf\x19\xf6\x1f\x69\xaf\x3c\xee\xb5\xce\x21\xe2\x5f\x7b\xa7\x70\xa0\xfe\xf3\x1e\x39\xa6\xe0\xa8\xd6\x91\x54\xdb\x58\xbd\x89\x67\x76\x0b\x1d\xc7\xe7\x3a\x11\xa8\x3d\xe3\xbc\x63\xd9\x42\x85\x85\x0a\x0a\x55\xa3\x50\x62\xa1\x84\x42\xe9\x0a\x73\xed\xef\x6e\x33\x4d\x68\x56\x7b\xac\xd0\x73\xa6\x9d\xff\xbd\x0a\x3c\xc7\xc3\xac\x72\xd0\xc4\x17\xc6\x43\xb3\x6e\x9f\xe6\x3d\xef\x80\xa5\x9c\x5e\xf0\xd9\xaa\xa8\x5c\x47\x05\x65\xaf\xa4\x5a\x64\xc5\x1b\x95\x4b\x95\xeb\x6b\x7a\xa1\x6b\x3a\x30\x0b\x98\x4b\xfe\x51\x27\xd5\xa5\xe7\xcc\xcc\x4a\x4e\x36\xf9\x79\x12\x0c\x18\xb9\x31\xf9\x66\xb0\x42\x5f\x13\x82\x0d\x86\x22\x18\x55\xe1\x3c\x52\x2a\x33\xb0\x62\x32\x54\xb5\xae\x81\x9e\x41\xa3\x6b\x64\x13\x8e\xc2\x99\x19\x05\x88\xc5\x57\x21\xff\xcc\x20\x3f\xc8\x93\x98\x27\x21\x2f\x40\x75\x1d\xd3\x36\x3e\xfe\xb1\x66\x7d\x3a\xd7\xec\x80\x5e\x6a\x36\xe8\x1f\xdc\x0d\xb4\x12\x75\xc0\x99\xa0\x82\x81\x7c\x80\xf7\xb2\x02\x14\x78\x35\x27\x96\xd2\xb7\x02\x4b\xa2\x99\x4f\xc3\xfd\x84\x33\x3d\x9c\xc9\x9b\x24\xd1\x8c\x93\x1e\xf2\xa3\xde\x67\xf3\x38\x99\xeb\xf5\xa5\x26\xa4\xcb\xd8\xb1\x06\x96\xbe\x7b\x8f\x50\xee\xd3\xde\xac\xc5\x59\x0c\x1d\xa2\xf8\x3e\x9b\x8f\x44\xc3\x22\xed\xb1\x5b\xf8\x00\x71\xb7\xf2\xe3\xe4\xcd\x9f\x1f\x3c\x08\x07\xf7\xca\xd5\xef\x26\xbc\x45\x6a\x17\x74\xd1\xea\x89\x04\x6a\x85\x89\x66\xf0\x95\xa6\xc4\x02\x3e\xe1\x2d\x70\x20\x2a\x06\x58\xdb\xf1\x4d\x35\x17\x38\x55\x4c\x0f\x87\x95\xda\x8f\xc5\x56\xd5\xba\x0c\xd6\x74\xce\x64\x1d\x10\x5b\x27\x0f\xf7\xb8\x44\x31\xe9\x90\x47\x6e\x04\x53\x43\x73\x22\xe7\x62\xc5\x37\xd0\x92\x99\xa5\xd6\x7d\x92\x79\x15\x53\xb8\xe7\x98\xf6\xa7\x78\xa9\x1a\x42\x93\x79\x28\x3c\x7b\xac\x13\x49\x28\x7c\x37\x0f\x35\x03\x30\x5f\x0f\x73\x96\xf7\xca\xfc\xac\xc8\xc5\x7c\xd3\x86\x6c\x20\xde\xed\xae\xcb\x98\x72\x30\x0a\x26\xa9\x62\x79\x75\x81\x45\xa7\x31\xdd\x01\x9d\x7a\x70\xa6\x08\xce\x14\xc0\xb9\x29\xcd\x9a\x76\xaf\xf9\x3e\x4d\x01\x26\x2c\x54\x4c\x52\xe1\x0b\xa7\x6c\xea\x01\x33\xa3\x57\x62\x6f\xa7\xae\xf3\xed\xcd\xe7\xa6\x95\x5d\xcd\xe7\xe6\xfb\x3b\x9b\x6f\xf6\xfe\x21\x21\x1b\xec\xbe\x1f\x3d\x30\xcd\x6f\x3a\xd5\xe8\x23\x96\x0e\xbb\xa0\x6d\x9a\xcd\x6f\x9b\x50\xa2\xb2\x6c\xf2\x31\x44\x40\x06\x9e\x6a\xd0\x81\xaa\x19\x61\x06\x9e\x8e\x86\xd8\xd7\x1f\xdd\xd2\x59\xaf\xef\xb9\xa4\x7b\x05\xfc\x5e\x5a\x79\x1e\xb1\xbf\x76\xb4\x98\xa6\x5e\xd4\x87\x23\x66\xaa\x82\xa1\x3a\x4e\x53\xd8\x00\xba\xda\x21\x64\xe8\xbc\xf1\xe0\xeb\xeb\xb5\x4b\xb1\xa6\x9d\x68\xb5\x55\x6c\xfc\xdb\xfe\xa3\x36\x01\xdf\x76\xa8\x6e\x37\x1b\xfc\xaa\x2b\x36\x0f\x2a\xcb\x82\xa7\x11\x43\x4b\x94\x6a\x6a\xaf\x7b\xeb\x35\x5e\xa3\x48\x6f\x2a\x95\xb5\xc7\xcd\xc5\xfc\x43\xe9\xee\x83\xe0\x27\x95\xef\x2a\x25\xf4\x10\xb8\x0d\x8e\xb9\x30\xe2\xbd\x65\x66\x06\xc0\x0c\x46\x1a\x88\xe0\x4f\x01\x98\x99\xbc\xd9\x36\xcd\x8b\xe3\x1f\xe1\xe8\x36\x68\xf7\x97\x54\xd4\x76\x0d\xb4\xd7\x3c\xc9\x90\x68\xf6\x4f\xc2\xa9\xe8\x39\x4f\x1b\x68\xd3\xbe\xcb\x8d\xd0\x58\x4f\x40\x39\x40\xb4\x39\xed\x78\xdf\x9a\x4d\x35\xa1\xa2\xcd\x93\x47\xad\xba\xcf\xa6\x35\x35\xbb\xf7\x6e\xfb\x44\x59\xe7\x77\xc1\x58\xf7\xbf\x75\x8a\xe3\x64\xda\xa7\x82\x8d\x27\x43\x3d\x24\xc2\x3b\x68\xd1\xec\xd4\x9c\xb7\xc8\x0a\xa8\x82\x02\xf7\x1f\xe9\xfd\xfd\x21\x79\xad\x13\x73\xd7\xa7\xce\x9c\x60\x16\xb9\x03\x57\xb3\xfe\x50\x57\x8a\x0d\x7a\x6f\xaf\xaa\x7c\xb6\x3a\x3b\x2b\xb0\x6e\x40\x91\x7e\xf1\x28\xe7\x71\x2c\x80\x48\xab\xf7\xa6\xe9\x4c\x09\x7c\x83\xb6\x8e\x4d\xb3\xe6\xff\xd5\x11\x79\xa5\x6d\x94\xa3\xad\xe1\xd8\xee\x80\xe9\x73\x7d\x00\xd0\xbf\x4a\xa0\xb9\x06\xad\x7d\x49\x38\x7d\x1f\x52\x63\xcf\x75\x15\xd9\xa2\x1f\xa8\xf2\xe8\x30\xe0\x45\xa5\x37\x13\x5c\xb6\xbc\xe6\x09\xf8\x22\xbc\xc8\xcb\x06\x94\xce\x7c\x2c\x80\xca\x59\x91\x05\xf4\x2a\x18\xbd\xba\x90\x13\x5e\x7f\xf7\x85\xb9\x67\x9c\x67\x53\x4e\xb6\xd4\x75\xa5\x19\x02\xa7\xb7\x31\x32\x6f\x8e\xe5\x84\xe9\x44\x90\x34\xc2\x2f\x45\xa0\x6b\x8e\xa6\x6b\xe8\xa3\x48\xa5\xae\x9e\x30\x6f\xf9\x03\xdd\x54\xc9\xcb\x67\xce\xbb\x22\x50\xd6\x7c\xc6\x9c\xe2\x43\xe5\x77\xd1\x96\x8c\xb6\xb3\x52\x50\x9b\x77\x87\x22\xea\x1a\x8c\x9e\xeb\xf4\xc4\x76\xb5\xcd\x5d\x0f\xb3\x85\x81\xa2\x8f\xae\x29\xfa\xc0\x9b\xf0\x81\x37\x52\x16\x0d\x1f\xfa\x8d\xc2\x9a\x43\x7d\x44\x64\x56\x14\x89\xa4\xae\x41\xef\x2d\x1f\x82\x73\x99\x1a\xfe\x5b\x81\x6e\x4b\x40\x3c\x75\x72\x3b\x1f\xe5\x39\x54\x6f\x12\x45\x07\xf7\x1f\x12\x32\xe4\xbd\x19\x77\xe3\x95\x10\x3a\xe8\xff\xd4\x0a\x75\x1c\x37\xe1\x6d\xba\xc8\xff\x88\xd3\xbc\xaa\xc2\xc6\x13\xca\x7b\x73\x0e\x0f\x7c\xc6\x9e\x6a\xca\x9d\x9f\x21\xf6\x59\x6f\x64\xf2\x4f\x60\x5a\x49\x6f\xea\xa1\x1b\x43\x65\x63\x9c\x95\xcd\xe1\xb5\x9a\xc1\x76\xda\x05\x73\x71\x88\x8a\x20\xf5\xf6\x46\xdb\xb1\x21\x53\xe7\xae\x2b\x34\x6a\x0e\x67\x00\x34\x13\x3c\xb3\xee\x80\xd0\x5d\xb3\xed\xb9\x26\xa8\x2e\x1d\x4c\x94\xb0\x13\xb7\xc2\xda\x78\x6f\xb4\x95\xb3\x0b\x5a\xe4\x02\x3d\x81\x0d\x14\x55\xd0\x82\x0c\xd6\xed\x93\x5b\xa6\x2f\x40\xbc\x44\xa7\x50\x5b\xe8\x0e\xdd\x45\xb1\xe7\xe0\x5b\xb3\xca\x30\xcb\xa2\x9a\x36\x5b\xbd\x34\xc4\xc1\xce\xad\x00\x4e\x03\x8e\x8e\x4f\x61\x39\x5b\xcb\x8c\xe1\xd6\x96\xb2\xbd\xed\xb4\xec\x4e\x68\xcb\xbe\xb3\x8f\xbb\x46\xcb\xad\xeb\x96\x3d\xbd\x9e\x5f\xf7\xb0\xb5\xd9\x10\xfa\x8f\xae\x3a\xc3\x30\x9c\x19\x02\x01\x80\x62\xba\xe6\x5b\xad\x45\xed\x1e\xda\x42\x2e\xd6\x1b\x73\x26\xe3\x5b\x78\x0e\x96\xb6\x09\x18\x48\xd4\xe7\x87\xe6\xf3\x05\x3f\xd1\xd9\x62\xd9\xe6\xb5\x97\xf7\x7c\xf1\x7a\xfd\x2c\xd3\x86\x22\xba\x4a\xc8\x86\x6e\xed\x73\xc8\x21\x2d\xdf\xab\x55\xe9\x1e\x37\xa6\x4b\xfc\x8b\xe6\x62\x56\xbb\x70\x05\x17\xec\x30\xdc\x50\x68\x3d\xd0\xee\xab\x6e\x63\x2f\xd1\x17\x79\x39\x0c\x96\x38\x53\x8d\xf0\x39\x39\x30\x67\x75\xa5\x53\x97\x63\xc0\x77\x17\x29\x27\x78\x60\xb5\xa2\x5a\x88\x1d\x41\x45\x30\x20\xa0\x98\x17\x4c\x37\xb8\x7a\xbb\xde\x29\x9b\xa0\x1f\xcd\x41\x43\xc5\xc6\x24\xfe\xb1\xfa\xdf\xcf\x34\xf3\x78\x48\x2a\x01\x10\x38\x08\xc3\x63\xb8\xc8\x96\x25\x9f\xbd\xcf\x5d\xc6\xb2\xe4\xab\x99\x74\xde\x66\xad\x8f\xa4\x27\xb5\x66\xa6\x45\xbe\x3c\x93\x99\x9a\x3d\xcb\x74\xd6\x32\x72\x51\xad\x02\x48\x13\x47\xbc\x57\x7f\xcb\x3a\x74\xa8\x65\x9a\x89\xf8\xa6\xf6\xa5\xcb\x9c\x5f\xa5\xd6\x0c\x43\x67\x79\xe1\xe0\x79\xa7\xd9\x9b\xaa\x56\x2d\x56\xad\xf3\xbe\x54\x49\x90\x43\xa6\x42\xef\x33\xbf\x7e\x2a\x67\xce\xbe\x28\x9a\x5e\x64\xca\x3c\x23\x90\x7d\xe7\x46\xcb\x65\x93\x38\x1e\x1c\x3a\x0e\x10\x1b\x1c\x92\x94\x33\x4d\x07\x7d\xcb\x39\x81\x2c\x7a\x78\xf0\x88\xf1\xf5\x1a\x2a\x42\x64\x4a\x14\x0e\x6b\x76\xf3\xbc\x9c\xa6\x11\xc6\x22\x8e\xe8\xc9\x32\x9b\xf2\xb3\x4c\xa5\x51\x27\xa2\x2f\xf9\xb9\x4e\x23\x08\xf7\x6b\x92\x11\xfd\xb0\xb4\x8f\x1f\x96\x11\x7d\x97\xcf\x2f\x5c\x31\xa4\x23\x0a\x41\x40\x23\x1f\x56\x38\xa2\xcf\x78\x91\x46\xcf\x80\xc3\x17\xd1\x8f\xb9\x48\xa3\xd7\x27\x11\x85\x78\x89\xce\x85\xcb\x31\x44\x76\x7f\xbc\x5c\x96\x8d\xac\x93\xa9\x92\x45\x91\x46\xf8\xfb\x52\x4e\x3f\x47\xf4\x58\x7e\x7d\xa3\x72\x01\xac\xaa\xdf\xf8\x75\x1a\x7d\x10\xf9\x8c\x0b\x0d\x8e\x5c\xa3\x0d\x7d\xa1\xd9\xcd\x83\x34\x7a\x92\x4d\x3f\x5b\x6d\x8f\x87\x69\xf4\x3e\x3b\x8b\xe8\xe0\x20\x8d\x9e\x16\x3c\x53\x11\x1d\x1c\xa6\x11\xc4\x56\x8e\xe8\xe0\x5e\x1a\x9d\x5c\xe4\xa6\x6f\x83\xfb\xf8\x7d\x25\x8b\x88\x0e\x1e\xa4\xd1\xe3\xc2\xe4\x3e\x4c\xa3\x37\xd9\xaa\xe4\x11\x3d\xe8\xa7\xd1\xd3\x6c\x59\x22\x24\x07\xf7\x2b\xa4\x1d\x1e\x00\xba\x0e\x0f\x4d\xdd\x39\x37\xc8\x39\xbc\x8b\x69\x44\xc3\xe1\x8f\xe6\x8b\xb3\x88\x1e\xde\x4b\xa3\x5f\xe4\xc2\xbc\x73\xbf\x86\xd9\xc3\x07\x01\x66\x0f\x1f\xd6\xd1\x7a\xb7\x5f\x43\xea\xdd\x1f\xd3\xe8\x85\x28\xb9\x32\x45\xf7\x2a\xfc\x0e\x4c\x1f\x8f\x06\x26\x71\x98\x46\x47\x07\x26\x71\x37\x8d\x8e\x0e\x4d\xe2\xc7\x34\x3a\xba\x6b\x12\xf7\xd2\xe8\xe8\x47\x93\xb8\x9f\x46\x47\xf7\x4c\xe2\x41\x1a\x1d\xdd\x37\x89\x87\x69\x74\xf4\xc0\xa0\xaa\x9f\x46\x47\x0f\x4d\x62\x60\x1a\xec\x9b\x14\x34\x6d\xda\x3e\x30\x6d\x0f\x4c\xe3\x77\xef\xa6\xd1\xab\xd5\x02\xf1\x31\x30\x50\x85\x43\x75\x70\x70\x37\x8d\x8e\xb9\xce\xa2\x0d\xfd\xa0\xd9\xcd\xe3\x42\xa7\x51\x56\x68\x88\xae\x6a\x11\x9d\x46\x53\xad\x0a\xc8\x31\x35\xd3\x68\xc1\x75\x06\x8f\x30\x28\x69\xe4\xa2\x57\x87\x6a\x21\xbf\x04\x4b\x65\xeb\x50\xf7\xae\xa9\xe7\x5c\x1f\xcb\x99\x99\x17\xa8\x00\x3a\xda\xce\x4a\x38\x49\xbb\xdd\x84\xb3\x0f\xe0\x8b\x24\x8e\xbb\x5d\x88\x80\xe2\xbf\x74\x54\xd1\xf0\x9d\x5f\xb4\xe7\x58\xfd\x5e\x5b\xd7\x9f\xf9\x56\x0c\x07\x8c\xed\x61\x41\xfc\x5b\x8f\xe1\x79\x62\xae\xdf\x9f\xf9\x35\x38\x74\xaa\x4d\x5b\x43\x55\x78\xb6\x83\x25\x35\x23\x27\x89\xb2\x66\x84\xe6\x86\x0d\x6b\x37\xe1\x0c\xf6\x0a\x32\xb2\x73\x38\x45\x25\x85\xde\xb9\x92\x8b\xa7\x76\x47\x30\x3d\x8b\xac\x4c\xab\x6a\x60\xbd\x8e\x40\xac\x15\x34\xf9\xc2\x02\x67\x5e\x9a\x80\x3f\x9d\x00\xae\x34\x8a\x36\xb4\x90\x53\x24\xa8\xf0\x68\xc4\xe1\xc2\x07\x1f\x39\x1d\x9e\x70\x68\x31\x6d\x87\x31\xb5\xae\x60\x96\x3c\xb3\xa7\xb3\x69\xcd\x1d\xab\xcd\xe1\x48\x8f\x34\x75\x5b\x5a\xdb\x7e\xdd\x82\x11\xc0\x44\xda\xdf\x50\xdb\x85\x1d\xaf\x7d\x13\x0d\x1e\x07\xa6\xad\xab\x8b\xbc\x16\x68\xe4\xdb\x00\xfc\xeb\x6f\x6c\x08\xfd\xa4\x59\x9f\xfe\x6c\xfe\xfd\x06\x82\xd5\xb7\xf0\xff\x4e\x6d\x6a\x95\xe0\x9a\xe1\x0f\x8b\x6d\x78\xf8\x64\xc7\xa1\xc8\xb9\xd0\x7f\x84\x0f\xb6\x64\x99\xcd\xf9\x1f\x55\xf2\xd3\x7f\x3e\x6e\x6d\xe3\x83\x8e\x1c\x1d\xcd\x64\xd2\xa5\x1b\xe4\xf0\x74\x6b\xa5\x93\x6a\x55\x40\x4c\x64\xa6\x6c\x60\xc4\x12\x30\xa7\x46\xbc\xa7\xfd\xf1\x5e\xab\x48\x36\x74\x21\x2f\x21\xf9\x47\x73\xdd\x45\xbe\x04\x95\x83\x2a\x07\xe2\x2e\xdf\x4a\x85\x3e\xf9\x8d\xe2\x93\x39\x6e\x2d\x9e\xe9\x6f\x7a\x84\x72\x43\x53\xbf\x36\x74\xb6\xc6\xbe\x4e\xfb\x69\xf2\x1b\xc8\x53\xfa\x01\x24\x9f\x76\x42\xf2\x69\x07\x24\x9f\x2c\x24\x3f\x7b\x48\x7e\xae\x20\xf9\x44\xdf\x7e\x03\x92\x4f\x08\xc9\x5b\x07\xc9\x86\xd0\x5f\x35\xbb\x53\x4d\x1d\x2f\x69\xc4\xe1\x01\x85\x5d\x4c\xa2\xaa\xaa\x9d\x21\x66\x3a\xaf\x94\x27\xa3\xc5\xdc\x2c\xfe\xac\x78\x53\xcf\xcf\x0b\x37\xd5\x4c\xd2\x4e\x29\x7d\x65\x2e\x2f\xd8\x0c\x7e\xec\xbd\x27\xc8\xcd\x85\x20\x5f\x64\xea\xda\x91\x42\x7f\xd6\x80\x9b\x65\x3a\x03\xb5\x8e\x73\x1f\xde\x85\x72\x11\xce\x7c\x54\x08\x28\x43\xf2\xfe\x7d\x98\x85\x62\xf6\x59\x2d\x6f\xe7\x44\xbe\x65\xf2\xb7\xcc\xf1\x0d\xa1\x5a\x84\xe4\x5d\x68\xca\xfe\x6f\xc8\x51\x21\x6a\x7d\xe6\x85\xce\xfe\x68\xdb\x56\xb0\xc4\x11\xa0\xb6\x5e\x74\x75\xc1\x79\xf1\x2c\x28\xda\xe7\xbd\x20\xcf\x6c\x54\x50\xf5\xd3\xce\x26\x3f\xd5\x9a\xfc\x14\x36\xf9\xa9\xa5\xc9\x5a\x85\x96\x72\xff\xc5\x3f\x1d\xad\x5b\xe8\x0c\xc2\x90\xd8\xfe\x2a\xc1\xc6\x63\x14\xe7\x53\xfb\xd3\x07\x57\x3f\x70\x9d\x8a\xa8\x4f\x60\x2e\x38\xb2\xa5\xee\xd7\xe6\xc9\x12\x1d\x02\xc1\x2f\xe6\x55\x9a\x14\xa6\x24\x24\x10\x6d\xf9\xf2\x1a\x0a\xcc\x0f\xe6\xac\xb4\xc9\x30\xff\xe1\xd9\x29\x92\x44\xd4\x24\x9f\x06\xdf\x73\x9a\x25\xe0\x7a\xa5\xf2\xae\x6b\x0b\x51\x93\xc4\x3a\x04\x02\xea\xcd\xe7\xa3\x3a\x10\x96\xa0\x8e\x98\x2b\x93\x4b\xc8\x36\x3f\x90\x83\x9a\x0e\xd4\xfd\x42\x1e\xba\x07\xa0\xee\xd7\xe6\x5d\x66\x45\x3e\x83\x5c\x9b\x82\x7c\x77\xb2\x50\x93\x42\xf2\xcf\xe5\xe3\x59\x04\x05\x6f\x30\xe9\x4a\x56\x4b\xcc\xfe\xe0\xa0\xf0\xda\x37\x11\xc5\x74\xd0\x92\xd5\xc7\x71\x25\xfe\x1d\xd0\x6a\x89\xa8\xfb\xb5\x79\x40\x09\xbb\x5f\xcc\x2b\x32\x33\x00\xf8\x83\x39\xa1\x9e\x8e\x29\xc2\xe7\xa7\xe1\xf0\x07\xda\x3b\x55\x8d\x00\x2a\xaf\xd1\x53\x95\x7a\xc8\x2a\xfd\xa6\x88\xc2\xc3\x53\xfb\x80\xa5\x1c\x9d\x4e\xd9\x5f\xc8\x43\x35\x28\xf0\xd7\x83\x09\xcc\x45\x95\x1c\xea\x13\x90\x1b\xe8\x25\x45\x14\x9f\x6a\x90\x3b\x5d\x25\x57\x58\xcd\x8c\x4a\x79\xc9\x95\x85\x73\x23\x54\xb0\x8a\xa8\x7d\xac\x41\x6e\x66\x93\x9d\x54\x11\x1d\x54\x73\x10\x6e\x2a\x76\x16\xe2\xad\xc5\x97\x7d\xc9\xdd\x34\x7c\x0e\x49\x5f\x82\x8a\x32\x58\xf4\x12\xd3\xbe\x0c\xd4\x5e\xb0\xe8\xf5\xa5\x6f\xaf\x3a\x6e\xec\x4c\x00\x8f\xd0\x41\x99\x84\x49\x0b\xc9\xd7\x2b\x5d\x2b\xc1\x06\xb1\xa8\x6a\xd1\x8e\x9b\x6d\xd3\x3e\x05\xad\x06\x3a\x37\xbe\xb8\x6a\x39\xd4\xd1\xa9\x8a\xab\xd6\x4b\xb8\x6b\x98\xd1\xb3\x89\x01\x8e\xc1\x7c\x0e\x1e\x9a\x5c\x62\xe0\x47\xc6\xc2\x01\xe9\x00\x0a\xd8\xe1\x22\xea\x7e\x21\x0f\x74\xf9\xcc\x7e\x81\xbf\x07\x13\x3a\xfe\x8d\xd3\x4a\x1d\x10\xc6\xdc\xe4\xbe\x0d\x73\x2b\x0d\x53\x28\xbb\x13\x96\xd9\x99\x70\x60\x37\x44\xbb\x68\xa6\x99\x78\x03\xa9\x30\xdf\xea\x0c\x56\xc5\xef\x5d\x06\xd4\xaa\xab\x12\x9a\x71\xb4\x19\x6e\x2e\x41\x2d\xab\x61\x18\xd1\x2a\x85\xf9\x4e\xe3\xd0\x94\x54\x69\x5b\x36\xb3\xf9\xb3\x2a\x4f\x29\xf0\xc7\x66\x7f\x21\x6f\x5b\xfb\x89\x9a\xbc\x37\x6e\x99\xdb\x3c\xa8\x0b\xee\xac\xa8\xfd\xf1\x39\xa8\xdd\x68\xf3\x39\x32\x60\xc2\x52\xa7\xf0\xe8\x6b\x1c\xfb\x0c\x5f\xcb\x2d\x34\x93\x0e\xb1\xdb\xa2\x83\x45\x21\xb3\x15\x3e\xab\x3c\x69\x37\x30\x48\x61\xbe\x55\xa6\x04\x8f\x6b\x2e\x79\xe0\xf6\x12\x7c\xc3\xa7\x30\x1f\x75\x2b\xd1\x47\x16\xa6\x30\x1f\x75\x2d\x61\x9b\xb1\x29\xc8\xaf\x74\x2f\xcd\xa4\xcc\x17\x2e\xf0\x35\x94\xfe\xca\x69\xa0\x64\xea\xa7\x5b\xe4\x14\x33\x69\x95\x3a\x98\x4c\xa8\x14\x10\x25\x1a\xfe\x97\x82\xf5\x87\xa5\x78\xa4\xbc\xc4\xaf\xf4\xea\x35\x53\xc1\x94\x18\x97\x62\x42\x0b\xc1\xa6\x62\xdc\x9f\xd0\x15\x24\x06\x13\xba\x84\xc4\xc1\x84\x9e\x0b\x16\x49\x11\xed\x25\x2b\x53\xa1\xee\x72\x6b\x6f\x25\xac\xaf\xa5\x01\x21\x74\x26\xd8\xcd\x0e\xc1\x66\x7a\x63\x45\x8b\xe9\xb9\xa0\x4e\x24\x99\x9e\x8b\xbd\xc8\xe1\xdf\x50\x13\x55\x14\x94\x74\x5c\x88\x89\x65\xcb\x5a\xdd\xa3\x74\x29\x36\x43\x29\xc6\x2b\x31\x61\x33\x41\x33\x61\xaa\xb0\x19\x6a\x8a\x5f\x08\x76\x53\xc5\x54\x49\xa5\x30\xa4\xdc\xf3\xda\xeb\x2d\x97\x10\xef\x65\x20\xe1\x2c\x13\xe6\xd2\x3f\x72\x62\x13\xf7\xd6\xc1\x86\xd6\x82\xe6\xa4\xdb\x5e\xb1\x50\x8a\x04\xef\xdb\xa8\x31\xa1\x0c\xbf\xa1\xea\xe8\x0f\xea\x34\x3f\x07\xc7\x15\x7f\xe8\x44\xd4\x15\x13\x5c\xbd\x59\xe5\xad\x1f\x0f\xf1\x94\xb3\xdf\x75\xa8\x77\x88\xba\x92\xa1\x0a\x25\x67\xef\x6a\x35\x90\x9e\x31\xdf\x3a\x00\xa9\x1a\x5e\xd2\xb6\x3f\xe7\x89\x22\xab\x5b\xe9\x28\xa1\x40\x79\x32\x00\xa7\x3a\x1b\x82\xe7\xd5\x72\x4b\xd5\xb2\x55\x13\x33\xa4\xe0\x52\xce\xee\xe8\xa6\x92\x67\xa0\xdf\x69\x96\x47\xba\x53\xfb\x13\x8e\xbb\x2d\x65\x50\xff\x1c\x7c\xb3\x22\xd2\xdc\xb3\x04\x74\xfe\x59\xfb\x78\x78\xd4\xa7\x55\x4e\x05\x44\x75\x6e\x04\xcf\xb6\x5d\xce\xb8\x08\x1a\xeb\xfc\xc6\xd1\xd3\xf2\x5b\xfb\x7b\x87\xa7\x9c\x3d\x0b\xbf\xd7\xf9\xd5\x64\xe9\xf0\x2d\x77\x78\xa5\x9c\xbd\xa9\x81\x86\xa7\x51\xca\x99\xa8\x55\x07\x32\xd7\xa2\xd5\x23\x1c\x29\xb4\x94\xb3\x27\xfa\x3f\x55\x52\x0d\x75\x60\x6b\x08\x09\xe9\xb4\x5a\x4e\x80\x95\x50\x77\xf6\x76\xf5\x5a\x9c\xd3\xbf\x3a\x30\xab\x38\x0e\xff\x38\xbe\x57\xe7\xa5\x4e\xcc\x45\xd8\x0b\x2f\x21\x14\x36\x78\x6b\xa3\x7a\xb3\xa1\x67\x82\x5d\x80\x5f\xa8\xda\x5a\xa7\x0b\xc1\x06\x7d\x7a\x2c\x6a\x91\xd4\xe7\x35\xe5\xb5\x9a\x6e\x05\x68\xe0\x61\xf4\x8e\x1b\xde\x03\xe9\x93\x96\xaa\x44\xd9\xaa\xb0\xba\xbe\x56\x98\x02\x8a\x68\x87\x8c\x31\x85\xfa\x41\x4c\x85\x5a\x47\x52\xe8\x2c\x17\x5c\xbd\x10\xe7\xb2\x52\xdf\x1a\x2a\xaf\xfe\xa7\xbc\x96\xd7\x50\xb1\xc3\xae\x6d\x06\xb5\xe0\x76\xb6\x64\xc3\x89\x21\x9a\x7e\xec\x82\x7e\x1d\x6a\x43\xc5\xf1\x3d\xeb\x88\x61\x1b\x6c\x2a\x58\xa9\x12\x45\xac\x7e\x8d\x20\x35\x97\x15\x55\xf5\x50\xeb\x12\xf4\xfa\x5c\xc9\x58\x4c\x6c\x50\xc7\xaf\x3a\x69\xea\xf9\xb2\xba\x22\xad\xd7\xa7\xca\x59\xad\x26\x44\x80\xdc\x52\xb1\xf5\x01\xd0\xfa\xc3\xe9\xa3\xa5\x83\x60\xea\x0e\xa6\x82\x2d\xc7\xd3\xc9\xb0\x88\xe3\xa4\x60\x45\x3d\x6c\x19\xf8\x67\xcb\xa9\xa4\x19\x28\x8f\x94\xec\x7d\x52\xd2\x82\x90\xcd\xf3\xa4\xb4\xf1\xaa\x2e\x05\xf8\xe7\xf0\x1a\x9a\xd6\x90\xec\xb1\x48\x34\xe5\x75\x0d\xe4\xc7\x3e\x60\x9e\xdd\xa8\xcf\x04\xb8\x5e\x80\x05\xda\xb7\xce\xd0\xaf\x44\x10\xf0\x50\xd3\x41\xa8\xfc\xdd\x19\xa4\x8a\x7d\xdd\x51\xc1\xdb\x0f\xb2\xd7\xcd\x1a\x1b\x31\xe2\xbd\x6c\x36\x83\x4e\x39\xd9\x66\xa2\xa9\xa2\xdd\x3e\x49\x77\x15\x85\xa0\x5f\x79\xd0\x57\x7c\xbd\x9e\xf2\x84\xd8\x70\x33\xaf\x05\x95\x6c\xc5\x87\x2b\x6e\xd0\xa0\xd5\xf5\x4d\xc9\x13\x45\x6d\x74\x52\x17\x17\x31\x59\x71\x26\xc9\x7a\x7d\xce\x93\x50\xd9\xe7\xab\x6f\xf5\xb5\x4b\x05\xca\x5b\x75\x67\x90\xc7\xa2\xa1\x4a\x71\x2c\xac\xfa\x84\xac\xcd\x0d\xc6\xa9\xdc\x9a\x03\x4c\x53\xd9\x50\x5c\x91\xc1\xaa\x64\x8a\x72\x26\x31\x88\x1b\x67\x37\x35\xb3\x03\xbe\x6d\x76\xa0\x6b\x36\x07\x82\x56\x0d\xa5\x8a\xfa\x09\x9d\x8e\x27\x1b\x40\x08\x68\xe8\xcd\x05\x15\x8c\xd3\x25\x27\x3a\x11\x36\x22\x17\x7a\x7f\xba\x59\x7a\xd4\x15\xe8\x58\xdc\x96\x7a\xec\x81\x1b\x71\x8a\xb8\xf3\x99\xf5\x15\xe1\xe2\x3d\xd5\xfa\x88\x59\x41\x37\x6d\x4e\x73\x35\x32\xb3\x7d\xd9\xf4\xa3\x85\x88\xe3\x63\xe1\x35\x3d\x02\x65\xb8\x30\x52\xeb\x25\xd8\x82\x05\xca\xd6\x71\xbc\x3f\x78\x54\xea\x20\x60\x20\xe1\xac\xd0\x36\x6e\x27\xc6\xd2\xd6\xda\x35\x8b\x1d\xc7\x19\xf4\xde\xb5\x3b\xb4\xda\xb4\x6a\x04\xa6\x1b\x82\xa4\xcd\x26\x47\x09\xb4\xa9\xb6\x1b\x24\x2d\xb4\x52\x23\xd2\x91\xa5\x5a\x1c\x39\xa2\xd9\x12\x15\xb7\x9d\xa6\x8d\x73\x0e\x1a\x9c\xfe\x4e\xe0\x0d\x75\x55\x4b\xdd\x80\xde\x70\xe2\x6c\xa8\x2b\x5b\xea\xd6\x4e\x26\x1b\xbe\xb6\xb2\xca\x70\xac\xd8\x1c\xdc\xd3\x25\x92\x2e\x75\x92\x83\xdc\x28\x31\x0b\xa7\x42\x23\x1c\x47\xae\xcd\x96\x73\xd6\xc1\x11\x36\x4e\xb3\xa0\xd5\xec\x96\x56\x03\x6f\xa0\x0e\xc9\xeb\x75\x62\x87\x83\xfa\x15\x09\x4a\xf0\xe1\xdc\xf0\x63\x68\xc7\xf4\x2b\x48\xda\x25\x1e\x09\x81\xa9\x84\x24\x81\xda\xb6\x62\xd7\x06\x0c\x42\x24\xaa\x82\xf8\x39\x91\xe3\x39\x05\xa1\x6b\x0f\x5b\xd4\xab\x07\xfe\x28\xf3\xbe\xa7\x58\x62\x3a\xbc\xe0\x0b\x99\x7f\xe5\x33\xe0\xa7\x92\xca\xa9\x6b\x62\x0e\xc2\x4a\x49\x3e\x8e\x5b\x6a\x3b\xd7\x31\x4c\x12\x3c\x20\x65\x6f\xc6\x2f\xc0\x55\x39\x9f\x79\xa2\x59\x0d\x11\xd8\x8d\xf3\xdb\x56\xc1\x17\x1e\xa8\xf6\x3d\x12\xe8\xc9\xe3\xd1\xbb\xf3\xd4\x45\xd7\xbc\x61\xe3\xca\x3a\x6b\x92\xd6\xe6\xc0\xb6\xe5\x07\x41\x22\xc4\x81\xea\xa4\x8f\xe3\xfe\x67\xd3\xb8\x26\xe1\x78\xaf\xe2\x24\x17\x1d\x67\x82\xe9\x05\x96\xeb\x75\x92\xe8\xdb\x2d\x33\x49\xdd\x41\x29\xa7\x91\xa5\x2b\x22\x42\x75\x6b\x8c\x1c\x90\x6b\x52\x0c\x7c\xf1\x4a\x30\xc1\xaf\x5a\xe3\xd0\x7c\xe4\xd9\xe7\xe3\x6c\x39\xb2\xbf\xe9\x71\xb6\x0c\x54\x13\x5e\x06\x64\xd4\x2b\xa0\xbd\x82\xa0\x1a\xcd\xf8\xf0\xfc\xaa\x73\xc2\x35\x7d\x05\x3e\x3b\xe1\x14\x36\xdf\xaf\x94\x25\xc3\xfd\xab\x0b\x66\xac\x10\xe8\xa2\x69\xe4\x6f\xa9\x62\x38\xc0\x3d\x83\xa7\xdb\xaf\x19\x61\x6d\x1b\x91\x61\x75\xcb\x6a\xed\xf6\x09\xc5\x0c\xe4\x45\x9b\x67\x61\x4e\xd9\x04\x33\xfc\x13\xd6\xaf\x35\x5d\x23\x81\x91\x1b\x9d\xc2\xc8\xc6\xb1\xa3\x29\xea\xb0\x38\xa6\xad\x75\x78\x8c\xfc\x44\x7c\x40\x3e\x64\x5a\xa7\x0f\xf6\x07\x8c\xb1\x3f\x79\xb0\xad\xc6\xb1\xa5\x5a\x36\x08\x16\xb7\xa4\xcd\x89\x08\x4c\xa2\x3d\x87\x09\x43\xe6\x77\xfb\xf4\x0c\x5c\xcf\xbc\x58\x64\x73\xfe\x7a\xa5\x4b\xde\xcc\x3c\x31\x97\xf5\x46\xde\x47\x10\x06\x41\xde\x97\xa3\x82\x7f\x09\x92\x3f\x2b\xb9\x5a\xda\xe7\xd7\x6a\x66\x8e\x39\x9f\x35\x95\xc5\x6a\x51\x7d\x19\x1f\x4b\x93\x3c\xb7\x8d\x9c\x63\x0b\x57\x2e\xfd\x06\x6c\x2c\x2f\xb9\x7b\x3e\xb9\x50\xb9\xf8\xec\x9e\x5e\xf1\x79\x16\x96\x62\xcc\xc1\x6e\x9f\xce\x55\x3e\x7b\xac\x78\xe6\xd2\xef\xb0\x45\x9b\x7c\x2e\x66\xc1\xd3\xc9\x32\x13\xe1\x23\xd8\x73\xdb\xe7\xa7\x00\x61\xfd\x29\x78\x1b\x33\xc2\x06\x6c\x8e\x6b\xe3\x5c\x0a\xfd\x11\xa5\x65\xdd\x3e\x2d\x72\xc1\x9f\x16\xd9\x62\xe9\x1e\x7e\xf1\x45\xd6\x3b\x0e\x24\x5d\x27\xa4\x5a\x5e\x64\x88\x1e\x9d\x9d\x9d\xe4\x5f\xa1\x9f\x57\xf9\x4c\x5e\x41\xe6\x57\x70\x3d\x02\x29\x29\x17\xf0\xb9\xbc\x28\x5e\x57\x2d\x81\x4f\xa6\xe0\xb9\xd4\x72\x59\x7b\x54\xf2\x33\x7f\xe6\x7c\xfd\xd4\xb3\xd0\xdb\x4f\x95\x77\xec\x1d\xfa\x54\x79\x5b\x6d\xb9\x69\xb1\xa1\xff\x08\xe6\x4d\xf7\x69\xb4\x28\x23\x0a\xf6\xfa\x34\x7a\x1d\x05\xd7\xab\xa7\xcd\xe0\xf8\xb8\x77\xeb\xf5\xda\xfb\xf6\xae\xb9\x17\x8f\xac\xd3\x8a\x28\x15\xeb\xb5\xf3\x6f\xd8\x0d\x6b\xf4\xd1\x80\xf0\x64\xcb\xbc\xdd\x2c\x8f\x13\x31\xe6\x93\x51\x12\x45\x7b\x9a\xf4\xb4\xca\x17\x09\x49\xf5\x5e\xb4\xfc\x12\x05\x4a\xb8\x96\xf0\xf7\xb6\x45\x10\x42\x12\x42\x36\x5e\x17\xa6\xa4\xcd\xa7\xa5\xf0\xbe\x2a\xd1\xc3\xb9\x5b\x93\xd1\xfe\x7e\x64\xce\xcf\xa7\x22\x11\x54\x8f\xc5\x84\x2a\x32\x8c\xce\x0b\x99\x81\x82\xb4\xf5\xba\x36\x2d\xcb\x23\xc8\x22\xce\xb5\x74\xd5\x30\x95\x24\xe5\x63\x31\x61\x72\xb3\xb1\xfe\x83\x3f\xf3\xeb\x32\x39\x11\x3b\x5c\xef\xfc\x23\x5a\xf2\xc1\x51\xa1\xde\x43\x7d\xaf\xc7\x3a\xe9\x93\x06\x4f\x8e\xf7\xca\xd5\x19\xba\xaf\x4f\x06\x84\x9e\x88\xb1\x9e\x30\x40\xd7\x86\x78\x5f\x2e\x1f\x05\x93\xc9\xcd\x82\x8b\x55\xae\xf9\x02\x86\xf9\x26\xb3\x8b\xec\x2c\x2b\x71\x8f\x50\x76\x61\x9b\x1f\xbe\x38\xe3\xb0\x56\x2e\x20\x37\x5f\xcc\xe1\x47\x2c\x57\x30\x89\x3e\xf3\xeb\x39\x17\x76\x2d\xc0\x9a\x5e\x70\x0d\xad\x2d\x33\x95\xc1\x84\xc6\x40\x16\xb0\x02\x54\x36\x85\x3a\x57\xf0\x89\x50\xf1\xed\x99\x08\x5d\x5b\xe4\xe7\xc9\x47\x03\xb8\x27\x1b\x2a\x8f\x7a\x48\x29\xdd\xe6\x33\xb0\x69\x29\x74\x78\x9f\x50\x4e\xa3\x28\x20\x7e\x76\xbf\x1c\x3a\x25\xf4\x4e\xfc\xea\x0d\xde\xeb\x13\x1b\x81\x7b\x3b\xa4\xd9\xce\x86\xe3\x38\x3a\x3d\x05\x7f\x2c\xb9\xd8\x5d\xab\x09\xfb\xbd\x81\xb5\x15\xb3\x10\xc1\xfc\x8d\xe3\xed\xe0\x75\xb6\xa8\xf9\xfa\x01\x31\xfd\x0e\x88\xc3\x27\x15\x9a\xf7\x31\x26\x59\x35\xcd\x23\x47\x59\x6d\xc7\x99\xd3\xbd\xbc\x6c\x72\x34\x33\x21\xa4\xf5\xcb\xf6\x65\xe1\x0f\xc9\xd0\x4d\x9d\x67\x51\x82\x1f\xb9\xe9\xd6\xf3\x7e\xa9\xa6\x5b\x79\x2b\x95\x6f\xe5\x9d\x4b\xb5\xc8\xf4\x56\xb6\xc8\x16\x9e\x13\x99\x97\x65\x2e\xe6\xfb\xe0\x33\xce\xc7\x12\x18\x34\xdd\xfe\xf7\x03\x54\xbc\x11\xa1\x47\x13\x43\xdd\xb0\x87\x35\x53\xa6\xf5\x7a\x30\x68\xd8\x36\xa5\x0d\x0f\xac\x64\xa8\xd9\xc5\x58\x4f\x86\xed\x71\x86\x21\x98\xf0\x73\x91\x40\x2c\x61\x5e\xbb\x51\xbf\x13\x35\x95\xde\x3f\xbc\xc6\x48\x4b\x50\x86\x84\x83\x67\xd7\x56\x4f\x3d\x8e\x52\x1c\xb9\x84\x75\x7b\xd9\x30\x7a\x33\x37\x5a\xaf\x7c\x52\x73\x1b\xbb\x5e\xf3\xde\x99\x9c\x5d\xdb\x50\xe0\x81\x2f\x57\xcc\xae\x60\xfc\x1b\x75\x92\xa5\x4a\x86\x60\x4b\x53\x73\x61\x53\xf7\x43\xe3\x3d\x8d\xf8\x97\x5f\x84\xd8\xa6\x8a\x41\x63\x43\x17\x16\x4c\xa1\x6d\x1c\xd2\xe6\xde\x4f\x0d\x3a\xd9\xe4\x7b\x2a\x74\x4a\x63\x51\x4b\xf9\x23\x70\xdc\xf8\x93\xd7\x99\xbb\x31\xef\xa5\x8a\xda\x43\x4f\xef\xf3\xcd\x90\x33\xb1\xe1\xa9\x65\xc5\x0d\xed\xd5\x40\xf0\x2f\xfa\x04\x0d\xe7\xc8\x8d\xb9\x8d\x04\x19\x2e\x2a\xde\xc6\xe4\x57\x86\x6c\x1b\x65\xa3\xde\x6f\x00\x72\x15\x2e\xa9\x0f\x22\xa9\x4e\x1a\xce\x50\x57\x98\x6a\xf6\x87\x48\xc8\x50\x87\x36\x20\xbc\x67\xd6\xf8\x8b\x23\x95\x2d\x1c\xf6\x87\xe4\xc6\x0c\x8d\x0d\xca\xd7\xb2\xee\x6c\x5c\xa2\x8f\xa8\x81\xec\xb4\xf0\x7a\x17\x8a\x9f\xdb\x11\x53\xe4\x46\xd8\x00\xb8\x5d\x67\xf4\x0e\x5f\x4f\x38\x6b\xbc\x4f\x7c\x4c\x3a\x7f\x85\x09\x5d\xfc\x84\x7c\x52\x33\xc0\x2e\x96\x41\x98\xae\xfb\xf6\xf1\xd7\x96\x38\x4e\xaa\x70\x07\xf0\x04\x01\x51\x43\x45\xb8\x92\x67\x6a\x7a\x51\xcb\xd2\xbc\xa8\x3d\xaf\x54\xfd\x79\x99\x95\xe5\x95\x54\xb3\x2a\x93\x34\x62\x02\x1b\x7a\x02\xfc\xcc\x43\x8d\x46\x10\x27\x54\x83\x3f\x12\x2c\xba\x13\xd1\xdf\x05\x8b\x7e\xb8\x13\xd1\x4f\xe6\x71\x14\xd1\x9f\xcd\x6f\x37\xa2\xbf\x59\x13\xf9\xb7\xa2\x11\x85\xef\x8e\x68\xf5\x59\x61\x63\x18\xa7\x96\xde\x5f\x7a\x6e\xb7\x0d\x5c\x6c\x25\x04\x0e\x46\xb7\xf3\x74\x75\xcf\x07\x55\xda\x6c\xdb\x83\xfd\x2a\x42\xcf\x61\xf5\xb0\xc7\xeb\x75\x84\xce\x8a\xdd\x93\x90\x18\xad\xc1\x87\x4c\x6e\x99\x36\xfe\xb4\x0c\x3d\x48\xb7\x94\xfe\x9b\x13\xcc\x39\x44\xf8\x56\x8d\x9d\x15\x7a\x78\x04\x62\x00\x46\xd1\x7a\x55\x2d\xb9\x7e\x9f\x2f\xb8\x5c\xe9\x51\x95\x74\xae\x7c\xb9\x6a\x7d\x67\x5a\xf0\x4c\xb9\xb7\xc2\x07\xfb\x5e\x35\xa6\x5a\xf9\x2d\x0c\x41\xe5\x43\x08\xda\x11\xee\x08\x4e\x50\xe0\xb6\x21\x60\x7d\x04\xc1\xe2\x70\x89\x6d\xb6\xb7\x38\x01\x8d\x9b\xf6\x96\x8a\x5f\xe6\x72\x55\xba\x4d\xa5\x32\xee\xec\x0f\x39\x6e\x43\x0f\x6a\x27\x4b\xe5\xcc\x6b\x96\xe9\x0c\xe8\x14\xc6\xd8\x91\x21\x76\x18\x63\x3f\xdb\xdf\x4f\x78\x5f\x06\xf2\xb8\x72\x10\xa5\xf7\xf7\x91\x49\x61\xaa\xfc\x2e\xe2\x58\xef\xed\x6d\x5a\xa0\xa8\xd9\x08\xc3\x59\xa5\xd8\x71\xa6\x2f\x7a\x2a\x13\x33\xb9\x08\x1d\x9d\x1d\xde\x73\xa1\x74\x0e\x08\x95\x8a\x45\xa7\xa7\x10\x8e\x17\x6c\x3a\x44\x56\x38\x53\x9d\x3b\xd1\x9e\x52\x34\xaf\x2a\x00\xb3\xf3\x97\x4c\xcc\x0a\xae\x4a\x2c\xcd\xaa\xd2\xa7\x8e\xc9\x82\x2f\x56\xc3\x52\xaa\x30\x68\x9b\x54\x20\x4f\xad\x74\xa1\x03\x7f\x11\xa1\x75\xf1\x50\x20\x2a\x35\x13\xe3\x4c\x4d\xd6\x6b\x61\x5e\xf5\xae\x99\x3d\x8f\x89\xfa\x79\x0b\xf3\xde\x11\x90\x86\x72\x77\x29\x6b\xdf\x8d\xc7\x11\x8c\xa3\xf3\xfe\x61\x87\x4b\x20\x5c\xfe\x4c\x1d\xda\x6a\xd5\x36\x2a\x98\x79\x95\xd4\x0e\x8d\x36\xa3\xec\xa9\x0a\x82\xf6\x98\x93\xdd\xb4\xbb\x5e\x73\xd3\x05\xb2\x5e\x7b\x4b\x68\x14\xf0\xd8\x24\x70\xd9\x6c\xda\x27\xbd\x07\x05\xef\xc1\x47\x59\x22\xe2\x47\x66\xab\xa0\x41\x3b\x0f\x0d\xda\xc3\xb8\xf5\x75\x6a\xf1\xf0\x30\x34\x9a\x5d\xa9\x5a\xd0\xad\x1c\x10\xec\xa6\xce\xd2\xc6\x1b\x39\x77\x71\x47\x54\x63\xf3\xbc\x50\x18\x1f\x74\xe6\x3d\x23\xcc\xd4\xd0\x9a\xa6\x51\xc1\xce\x15\x55\xde\x74\x99\x4a\x66\xe3\x09\xe4\xa2\xb3\x54\xa3\xa5\xb2\xb1\x2e\x96\xb5\x83\x9f\xe6\x4c\x3a\xba\xaa\x0a\x27\xaa\xe2\xd8\x5c\x14\x18\x63\x72\xcc\x27\x10\x54\x14\xbe\x93\x31\xb5\xcf\xad\xdd\xf3\x60\xa8\x1f\xb1\xcc\x54\x54\xfb\x1a\xab\xe6\xfb\x7a\x02\x26\xd0\x43\x0f\x1e\x93\x76\xce\x73\x3a\x78\xa4\x47\x83\x7d\x4f\x4a\x41\x97\xcf\x54\xa8\x0c\x6a\x96\xa9\x53\x78\x5c\xec\x2c\x39\x56\x6c\xfc\x90\x0e\x0e\xe9\xc1\x7d\x7a\x78\x30\xa1\x73\xc5\xfe\x8c\xe3\xe8\x69\xe5\x76\xaa\xe1\xcb\x8c\x5e\x5a\x44\x9a\x6a\xee\xac\x3e\xb6\x26\x3f\xee\x39\x8e\x93\x4b\x55\xb1\x08\xc3\x6a\xd8\xf7\x6b\xfc\xcc\x7b\xfe\x45\x37\xda\x8f\xe3\xee\xa5\xa2\x8f\xa1\x3c\xe9\xce\xd5\x7a\x7d\xa9\xe2\xf8\xc1\x23\xf3\x7f\x30\xf8\x89\x5d\x2a\x42\xaf\x14\x6b\x33\x25\x38\x3c\x20\xf4\xab\x62\x37\x67\xfc\x5c\x2a\x0e\x7e\xb0\xd2\x6f\x6b\x7d\x44\x52\x3c\xa9\x5e\x88\x2a\x15\x90\x7a\xc1\x2e\x65\x90\xa8\xee\xb0\x0b\xd5\x19\x9d\xc2\xa3\xf7\xc7\xe5\xb5\x13\x27\x1b\x1a\xbc\xf0\x5c\xcc\xbe\x0f\xc2\xa7\xb5\x77\xea\x40\xd6\xcb\x76\xc0\x09\x9c\xc4\xa6\x73\xb1\x1d\xbe\xc4\x2a\x9d\x8a\xc0\x0b\x57\x0d\x6e\x64\x3c\xfd\x5b\xc8\xad\xee\xd3\x0e\xd8\xa1\xf4\x7b\xa1\xbf\xd5\x17\xda\xb7\xe1\x47\x05\xa6\x7f\xdd\x01\xa7\xf7\xb4\xa3\x07\x58\xfc\xbd\x5d\xb0\xde\xec\xfe\x55\x1f\x36\xf4\x54\xd5\x62\x04\xbf\x56\xad\x14\xa0\x55\xca\xc1\x8d\x63\x7f\xd0\x65\xec\x58\xf9\x6b\xb4\x76\xe6\x1d\xa4\xa1\xcf\x63\xf7\x99\x83\x83\x87\x70\x14\x39\xd3\xbe\x86\x72\x50\xab\xda\x0d\x72\xb5\x7d\x34\xa6\xed\x50\x76\x95\xec\x27\xd8\xb4\xb7\x48\x3b\x30\x16\x44\xd3\x44\x62\xb6\x97\xc0\xdc\xb1\xda\xb4\xcc\xfe\xf1\x05\xd0\x00\xc2\x02\x55\x53\xaf\xfa\xaa\xbe\x4f\x29\xca\x1c\xdf\x73\x45\x78\xda\x44\x5d\x73\x92\xa1\xf0\x2d\x67\x5f\x55\xaf\xb9\x00\x7c\x7c\xf2\xe6\x8b\xa0\x96\xd3\x7c\xe5\xb9\x98\xed\x7c\xc1\x6a\xd7\x6d\xbd\x83\x33\xca\xdf\xf8\x72\x77\xc5\x03\x62\xea\x8b\x1a\xc1\xf0\x43\x14\xa1\x96\xaf\x35\xac\x7d\xe2\xf8\xe0\xe0\x21\xb0\x0d\xed\xc0\xb6\xbc\x05\xdd\xf2\x07\x4e\x3e\x4a\x1e\xab\x38\x8e\x3e\x4b\x08\x04\xd3\x43\x93\xa8\x38\x4e\xbe\xa8\xf5\x3a\xef\xb2\xb6\x97\x47\x39\x6b\xe6\x3f\x17\xb3\x38\xfe\xa2\x40\x36\x65\x0e\x5d\x92\x26\xe7\xaa\x3a\x4f\x93\xa5\x62\x8a\xec\x3c\x52\xcd\x48\xf7\x09\xa1\x39\x3b\x53\x81\xae\x4d\xee\x3d\x1e\x8c\x72\x98\x1b\x4c\xa6\x4e\x7c\x27\xd9\x7b\x95\x60\xb8\x15\x57\x46\xe8\x4b\x9d\xe4\x84\x4a\x96\x93\x14\x45\x64\x34\xe1\xec\x5a\x8d\xea\x0e\x7d\x77\x4f\x06\x18\x53\x8b\x98\xf7\xca\x85\x49\x0c\xd6\x85\x13\xde\x1d\xc0\xe2\x01\xd3\x2c\x24\x7f\x12\xb3\x66\xfb\xf4\x4a\xd9\x57\xaa\x43\x21\xf5\x8e\x6f\x34\xc0\x49\x18\x63\x57\x2a\x8e\x4f\x95\x25\x9c\x1a\x0b\x09\xe9\xb4\x0d\x4a\xbb\xb7\x3c\x11\x7f\x71\x84\x4c\x13\x6c\xbc\x83\x75\xe7\x2a\x8e\xed\x7e\x31\x4a\x38\x0c\x85\xa1\x8a\xce\x15\x73\xb4\x12\xac\x2a\xca\x49\xda\xa6\x1e\x68\x75\xb7\xda\xd4\x01\x2b\xb5\xc1\x6e\xa2\x7b\xd6\x88\x65\xbd\x06\x02\xd7\xa6\xac\x99\x0b\x84\x63\xb2\x15\xe2\xd8\x55\xb0\x11\x9c\xa6\x17\x99\x39\xe4\x1f\x61\xca\xe9\x6f\x78\x3b\x49\x93\x89\xae\x8e\x00\xb9\xae\xa0\x8d\x12\x70\x55\x36\x5b\xd0\xee\x18\xd1\x60\x9e\x6b\x3b\xcf\x71\x08\x70\x60\x6e\x19\x07\x32\x4a\x12\xcd\x16\xe1\xdc\xfc\xaa\x7a\x01\x09\xe2\xe4\xe5\x38\x13\xb9\x99\x88\x9a\x90\xd4\xaa\x57\x38\x29\xf2\x08\x8d\x71\x40\xee\x20\xd3\xb1\xa4\x7a\xb2\xd9\xd0\x97\x8a\xdd\x00\xbf\x32\xed\xf6\x29\x1c\x59\xf6\x57\xe7\x0b\x48\x47\xee\x61\x1f\x80\x8e\x90\x1d\x9e\xe5\xc0\x17\x5f\x48\x81\xd2\x33\xbc\x5f\x23\xc7\x1b\xd9\x15\x26\x0d\xd1\x0a\x80\xfb\x0d\x6c\x0f\xe0\x7e\xf3\x02\x7f\xbe\x00\xe7\xdc\x7d\x65\xa5\x20\xfb\x8a\xf3\xcf\x69\xb7\x1f\x18\xb8\x3e\x57\xff\x29\x3f\x26\x60\xc5\x8c\xba\xdd\x97\x6a\x8c\xcc\x93\x49\x5a\xe7\x9d\xa0\x60\xd1\x60\x01\x54\xc6\xbf\xf3\xc4\xb6\xea\xe5\xb5\x63\x1a\xf2\x6e\x3f\x9b\xad\x43\x54\xf0\x8e\x8a\xde\x4e\xd1\xab\x6a\x70\x44\xaf\x96\x1d\x64\xa2\x54\x6a\xed\xb5\xf3\xb9\x42\xcd\x3f\xaa\x2e\x73\x4a\xb8\x21\xc1\xab\x49\x72\xa2\x7a\xd8\x80\x55\x9c\x20\x18\x7b\x3d\x72\xca\xf2\x12\xa2\x26\x81\x27\x1f\x8a\xee\xd1\x9f\xda\x55\xfa\xb9\x79\x93\xf9\x08\xa3\xf0\xbc\xe6\x69\xe5\x99\xbb\x68\xbd\xe6\x09\x5c\xba\x3c\xb3\x35\xb8\x8d\x3d\x51\x7e\xf3\x70\xdf\x0d\x1d\x7d\x21\xf6\xdf\xd4\x29\x8e\x77\xe6\xda\xf4\xd4\xec\xe6\x4f\x15\x1c\xd5\xd3\x0b\x38\x69\x93\x48\x0a\x67\x7f\xe6\xfa\xf0\x87\x22\x06\x5a\x0b\x78\x00\xdd\x1f\x0e\x3a\x7b\x0a\xc0\x0d\x30\xb4\x5e\x8b\xe3\x67\x2a\xf9\xac\x08\x81\x50\x58\xff\x98\x34\xe5\x14\xbc\x85\x11\xba\xe2\xe4\xb9\xd7\x0a\xaa\x34\xc9\x32\x9e\x7c\x44\x7f\xa2\x56\xe7\x69\x55\x53\x84\xf2\x3c\x62\x3f\x30\x56\x9e\x0e\x6e\x06\x12\xd3\x2f\x40\x2d\x4d\x9e\x2a\xa6\x49\x2f\xd3\xdf\xea\x1b\xc1\x89\x63\x4f\x57\xd3\x40\xc0\x4c\xf6\x3d\x6c\xce\x17\xcb\x11\xab\x8c\x6e\xf1\xc1\x9f\xd3\x0e\xfb\x88\x80\x80\x89\x1b\x0e\x16\x68\x40\x37\x6a\x87\xae\x9e\x7e\x09\x2a\x57\x31\x5e\xd7\xeb\xb6\x61\xc6\x57\xcd\x75\xeb\x8d\x62\x5f\x84\x7b\xc1\x1c\x9f\xdd\xd6\x2b\xdc\x7a\xfd\xf0\x51\xfb\xdd\x0e\x2f\x77\x47\x75\x92\xec\x44\xd1\xd3\xbc\x84\xbd\x10\xb0\x79\xb2\x5a\x2e\xa5\xd2\x7c\x96\xbe\xf9\x4e\x62\x8d\xe9\x51\x61\x80\xb4\x5e\x2e\xe0\x9a\x5d\xed\x34\x72\xd7\x4e\x53\x61\xdf\xf4\x37\x07\x97\xfc\x16\x15\x79\x1c\x47\x20\xff\xf1\x21\xad\x09\x5e\xc9\x9f\x28\x1f\x63\xf1\xb9\x4a\x24\x4c\xc0\x37\x8a\x64\xec\x17\x2c\xb8\xc9\xd8\x0b\x64\x13\x94\xec\x6f\x05\x84\x58\x12\x82\x53\x0b\xaa\x9b\xdf\x1e\x54\x57\x6e\x05\xb7\xb4\xa0\xc4\x71\x92\xb1\x0f\xa8\x0a\x95\xc1\x43\x86\x0a\x2a\x6e\xc8\xfe\x51\x49\x06\xf8\x19\x96\x71\x5c\x26\x9c\x4a\xaa\x09\x0d\x67\x63\xc2\x99\xac\xc7\x95\x22\x66\x4f\xae\xe2\x6c\xc6\x71\xc0\x76\x75\x81\x8e\x4f\x78\x22\xa9\xcb\xa7\xd2\x06\xd9\xda\x6c\xe8\xef\x8a\xdd\x00\xcd\x0f\x76\x5d\xe9\x4d\xd3\x2b\x99\xd9\x62\x8f\x7d\x79\xd4\xbc\x23\x37\xad\xb2\x40\xab\x6d\xb2\xa1\xf0\x00\x46\x5f\xb7\x34\x69\x8d\xc2\xbe\xb3\x49\xab\xc5\x76\x0b\x9c\x6f\x82\x1a\x5b\xcd\xb6\x59\x7a\x35\x9a\xbe\x05\xde\x37\x41\x8d\x7f\xd3\xf4\x86\x7e\xaa\xaf\x99\xdf\xbf\xb5\x32\xa8\x24\x56\xf9\x2d\xe8\xbe\x5d\xe3\x61\xdb\x26\x8b\x66\xac\x42\x57\xa3\x8e\xcd\x01\x2f\xa1\x18\x38\x3d\x39\x3c\x88\x25\xfa\xbe\x6b\xd8\xc1\x8b\x9a\x75\xfb\x7a\xdd\xcd\xe2\xb8\x9b\xd7\x84\x78\xf9\x39\xe8\xca\xe1\x3a\x05\xe5\x4c\x95\x42\x4e\x5d\x26\x39\x92\x3e\x5e\x5a\xce\xaf\xd6\x6b\x69\x79\x92\x28\x03\x72\xcb\x3c\x1b\x25\x19\xd3\x8e\x37\x9a\x68\x54\x2d\xdf\x02\xca\x9b\xdf\x93\x51\x09\xbb\x04\x1c\x36\x71\x9c\x68\xf3\x56\xce\xae\x81\xe0\x42\xbe\xa5\xae\xf8\x96\xda\x2a\xa9\x27\xd6\xa7\x31\x49\x33\x3c\x5f\xb3\x90\x79\xed\x7a\xb5\x85\xc0\x3a\xd6\x09\xee\x08\x77\x34\x9d\xb2\xdf\x55\xaf\x9a\xd7\xb4\xf0\xcf\x30\xe1\xe8\xca\x8e\x45\x04\xdb\x49\x38\x0e\x5d\x8c\x9e\x12\x8e\x5e\x17\x03\x66\x96\xec\x57\xdb\x70\x38\x05\xb1\xe9\x70\xbe\x9b\xc6\xed\x33\xaa\x12\x70\x1b\xfb\x37\x1b\xc9\xb4\x50\x49\x66\x2e\x40\x56\xf7\x05\x73\x34\xa1\xc9\x94\x95\x01\x5d\x32\xa5\x99\xa5\x57\x81\x1e\x59\xed\x45\xd6\x40\x73\xea\x3c\xec\x71\x3a\xad\x0f\x02\x93\x34\x11\xb5\x46\x0a\x4f\xf4\xba\x46\xac\x6d\xa8\x70\x8d\x48\xda\x18\x49\xc6\xe9\x8a\x69\x9a\x28\x96\x91\x38\x5e\x11\x2b\x13\x2d\xd8\x8a\x72\xd6\xa7\x19\x2b\x99\x1a\x66\xc3\x8c\x9d\xea\x24\x23\x84\xef\xed\x01\xeb\x34\x63\x7d\xaa\x59\x31\xd4\x43\xeb\x74\x92\x64\xb6\x64\xd8\x7f\xc4\xf7\xb3\x21\x29\x4d\x7e\x49\x28\xdf\xdf\x77\xf9\xd9\x3e\x1f\x92\xc2\xe4\x17\x84\x66\x2e\xdf\x54\x80\x13\xb3\x64\x8c\x15\xeb\x35\xfc\x04\x7a\xa0\xee\xf2\xee\x1a\xb4\x0d\x6c\xca\x40\x0b\xb3\xb4\xa4\x19\x40\x5e\xd2\x92\x8d\x27\x43\x15\xc7\xaa\xcb\x58\x51\xc5\xad\x4f\x78\x4d\xc1\x74\xbd\xe6\xa6\x9c\x0c\x89\xb5\x8f\x50\x84\x2a\xd3\xb8\x42\xf1\xb3\x32\xad\xac\xe2\x78\xb5\xd5\xca\xaa\xb5\x15\x85\xad\xac\x08\x5d\x99\x56\x56\xd8\xca\x8a\xf5\x87\xab\x47\xde\xa4\x62\xb5\xb7\x47\xbe\xe8\xa4\x1c\xaf\x42\xe7\x9a\x53\x57\x57\x55\x4e\x3b\x57\x06\x2f\x5f\x74\xa2\xa0\x6a\xe5\xb4\x53\x38\x5a\x7e\x3c\xa5\x62\xb2\xd9\xc0\xa9\xf8\x73\xbb\xfc\xcb\xea\x14\xe5\xe5\xc8\xa7\x1a\x17\x58\x47\x9d\x5a\xe1\x6c\x1f\xa7\xfe\xe0\x07\x93\x31\xf8\x41\xdb\xee\xf1\x38\x36\xab\x5a\x6f\xe8\x6f\xca\xc5\x89\xaf\x3c\x7e\xd5\xd5\xa5\x2a\x9a\xf5\x6d\x45\x0d\xfd\x8c\xc9\x2a\x70\xb8\x59\xdb\x5b\xba\x2a\xd6\xb5\xab\x13\x6d\x6e\xa9\xb2\xf8\x62\x5d\x57\x9d\xf5\xb1\xeb\x41\x79\x0a\xc2\x53\x86\x19\x1a\xf5\x7b\x2c\x6a\x41\x2b\xb9\x76\xc9\x35\x74\x36\x8c\x77\x7f\xa8\x2a\x37\xa8\x6a\x6f\xcf\x50\x21\xdd\xdf\x94\x0d\xf5\x4e\xc5\x18\x04\x31\x5d\xd3\x99\xb1\x79\x98\x50\x8d\xbf\xa4\x6a\xc9\xeb\x93\x18\xc0\xee\x20\xbf\x7d\x37\xbf\x7e\x30\xf8\xa9\x9d\x5f\x4f\x7f\x55\xec\x06\xa9\xa8\xef\xbb\x7d\x61\x38\xd6\xfa\xed\x0b\xf3\xbe\xc1\x19\xad\xe2\x50\xb8\xd0\x18\x78\x09\xab\x5f\xbf\xb6\xc3\x73\xdc\x7a\x21\xa3\x7f\xda\x5b\x13\xb7\x5c\x1f\x6d\x7f\x85\xac\x5d\x6b\x94\xac\x87\x53\xf5\x27\x98\x1e\x55\xf8\x48\x1f\x82\xef\x65\xaf\x6c\xa3\x53\x5d\x3f\xd8\xbc\xb7\x67\xe9\x66\xc8\x9f\x6a\xbd\xfe\xd3\x2c\xff\x3f\x44\x22\xac\xaa\x78\x70\x27\x40\x96\x78\x2e\x12\xc1\xfe\x54\x24\x8e\x7f\xc1\x5a\xec\x06\xc3\xfd\x88\x5e\xbd\x26\xe5\x62\x16\x66\x3e\x17\xb3\x4d\x0a\x6a\xb7\xd3\x0b\xa9\xc0\x9f\x71\x22\x58\x22\xea\x50\xc5\x71\x23\xa3\x7e\xf8\x3a\xe7\xca\x73\x6e\x43\xe9\x82\x17\x42\xd2\xab\x1a\xa5\x98\x7c\x8d\x6a\x2b\xa2\x17\x3e\x52\x18\x24\xf8\xb4\xe8\xf9\x34\xe6\xfa\x17\x82\xa7\x0d\xd5\x32\x8e\xdf\xaa\x44\x4b\xea\x11\x62\x06\x85\x36\x6f\xc8\xbf\x2a\xdb\x51\xca\xc1\xc3\xa9\xbf\x22\x5b\x9a\xde\x1b\xab\xb0\x3f\x95\xbb\x28\x13\x94\x84\x49\x59\xa3\xa6\x7e\xfd\xce\x7b\x06\xcd\x1b\xb4\x4b\x7d\xe4\x2b\xbd\x9f\x91\x4a\x1b\x24\x0d\x6a\xdb\x49\xd6\xcd\x09\xb9\xe1\xe9\x4d\xce\x5e\x0a\x64\x38\x5e\xf4\xdc\xfc\xf7\x42\xe2\x8c\xf5\x87\xd9\x23\x2f\x2a\xcc\xec\x02\xcf\x41\xc9\x5c\x8e\xb3\x09\x21\x37\xb9\x99\x9e\x15\xe3\xb7\xdb\xdf\x98\xc6\xc1\x1b\x7c\x9b\x11\x6f\xde\xbc\x23\x35\x02\x98\x98\xdb\x4c\x4e\x02\x55\x94\x7c\x4b\x15\x25\x8e\x93\x3f\x15\xcb\xcd\x4a\xd1\x6e\x99\x90\x6d\x9b\x5e\x2d\x19\x97\xcc\x2e\xab\xad\xb8\x26\x28\x13\x30\x8b\xab\x5f\xb7\x06\x0d\x2c\x6b\x5b\x0c\x73\xbd\x45\xad\x5f\x40\xe6\xea\xae\x64\x02\x97\x9c\x40\x79\xa5\x5a\xe6\x69\x7e\x9e\xdc\x71\x86\x87\xbb\x0d\x93\x9d\x25\x06\x36\x55\x13\x78\x6f\x86\x27\xbd\x5c\x98\xed\x19\x4d\x34\x8b\xd5\x3c\x17\xa0\xdb\x9d\x44\xef\xd0\x91\x38\x57\x41\x51\xe7\x24\x5f\x2c\x0b\x1e\xe6\x3c\xf7\xd4\x58\x98\x8b\xcc\xa6\xda\x9b\x00\x7c\x98\x13\x88\x16\x83\xec\x70\xf3\x22\xf4\x8a\xad\x14\xfd\xca\xa6\x8a\x9e\xb2\x42\xd1\x16\x68\xcb\x27\xc0\x2e\x49\x6e\xb6\x40\x4b\x2f\x04\x6d\x85\x2e\xfd\xa4\xe8\x16\x80\xe9\x91\xa2\x5b\x30\xa6\x52\xd2\x76\x30\xd3\x57\x6a\x43\xa8\x35\xa1\x40\x37\x9d\x92\x8d\x27\x34\x93\x6c\x3f\xd8\x54\x4b\x99\x70\x72\xd3\xff\x29\x93\xe0\x44\xcb\xf9\xbd\xcf\xe5\x38\x93\x13\x8a\x3f\x96\xe6\x96\xfb\xfb\x01\xfb\x62\x6a\x77\xe3\x5c\x8e\xf7\xf6\x4c\x25\xff\x32\xad\x9a\x41\xf6\x54\x21\xd9\xcd\x86\xae\x24\xbb\xb1\xf9\x69\x21\xcd\x55\xad\x7a\xee\x0e\x36\xf4\x5c\xb2\x42\x06\xb2\xff\xda\x6e\x8f\xac\xc7\x9e\x9d\xa3\xb0\x65\x0c\x51\x55\xcd\xce\x96\x42\x5a\xf3\xc5\x50\x33\x21\x3f\x4f\x0c\x65\xd7\x6b\x28\x9e\x1c\x5b\x33\xa1\x0f\x62\x91\x95\x9f\x39\x46\xcc\xb3\xde\x22\xc3\x8b\xc5\xce\x17\x8f\xb7\x5e\x1b\xba\xcd\xc9\xc6\x80\x97\x36\xba\x1a\x38\xc3\x1e\x4b\x1f\x35\x4d\xc5\x71\x92\xf0\x10\x48\xf2\xaf\xa0\x33\xc8\xfd\x6e\xa0\x58\x4e\x68\x1e\x44\x7a\x91\x81\x2e\x86\xbb\xb1\xa1\xeb\xcf\xea\x1d\x40\x2d\x89\x63\xef\xdc\x20\xe0\x45\x2e\xa0\x81\x52\x26\x4b\x49\x68\x29\x93\x95\x0c\xe6\xc3\xf1\x6d\x85\x73\x19\x58\xea\xac\xa4\x9b\x1f\x86\x18\x96\x4d\x45\xeb\x7b\x0f\x08\x19\x4e\x4d\x03\x54\x13\x3a\x35\x0d\xd6\x74\x5e\x2f\x65\xdd\x32\xad\x31\xe0\xdc\x69\xe8\x84\x1d\xa2\x15\xc1\x5b\x91\x88\x20\x0f\x08\xf1\x55\xe9\xe5\x78\x6b\x64\x33\x8c\x8a\x6d\xd5\x4c\x80\xe9\xd4\x4d\xa0\x9c\x6f\xe9\x8a\xf7\x1f\x10\x7a\x27\x31\x04\x71\xf4\xc1\x3a\x7b\xa6\x79\x3d\xe6\xbc\xa0\x37\x9b\x9a\xcb\xef\x6b\x19\xda\x97\x57\x5d\x72\x8c\x5e\x43\x72\xeb\x9d\x63\xcf\xd5\xbc\x3e\xf6\xeb\x75\x21\xcd\x92\xaa\x90\x4d\x1b\x38\x5d\xfa\x12\xb0\x13\xac\x6c\x9a\x6f\xc7\x6f\x77\x2b\xc8\xc6\xbd\x87\x84\x0c\xc5\x28\xd1\xcc\x0e\xcd\xb9\x24\x74\xf7\xda\xd9\x02\x95\x69\x5a\x9b\x36\x1e\x50\x92\xda\x7c\x3f\x09\x0c\x44\x57\x92\x05\x11\x86\xd4\x4a\x7c\xcc\xf5\x85\xb7\xdd\xff\x5a\x2b\x6d\xc6\x26\xa2\xa7\xb5\x62\xb4\xcc\xf2\x85\xaf\xeb\xef\x5e\xc8\x55\x31\xfb\x94\xf3\x62\x46\xdf\xd7\xbf\xc9\xff\x59\xf1\x52\xbf\xc9\x72\xa1\xe9\x97\x5a\x91\x90\x57\xf4\x55\x2d\xc7\xcc\x1c\x44\xb3\x83\x11\x4c\x7c\xe9\xcb\x5a\xad\x17\x8b\x05\x9f\xe5\x99\xe6\xbe\x23\xcf\x6b\xe5\x1f\x4a\xae\x9e\x14\x72\xfa\x39\x17\x73\x5f\xe5\xa4\x56\xa5\x11\x6b\xe9\x9f\x5a\xe1\x4b\x79\xe5\x4b\x9e\xd6\xbf\x3c\x2b\xaa\x8f\x7e\x86\x9d\xfa\xa3\x64\x7e\xf9\xbf\x97\xa3\xf7\x32\xf4\x7c\xbd\xa1\xcf\x2c\x79\xfe\xc4\xfe\xbe\x01\x42\xe0\x9d\x64\x5f\x64\x42\xe8\x1f\x92\x0d\xf8\xdd\x9f\xde\xc9\xd1\x17\xd9\xe2\x31\xdb\xd4\xd9\x7f\x27\x03\x29\xcc\xdf\x32\xf1\x42\xdd\x57\x32\x71\xd6\xf3\x2f\xa5\xa3\x0b\x1e\x3e\x44\x53\xf9\xe7\x55\xce\x03\xcc\x39\xa9\x72\xee\x63\xce\x3f\x55\xce\x3d\xcc\x79\x5a\xe5\xfc\xe8\x65\x84\x4d\x95\xb5\x83\x9a\xed\xeb\x0b\xb9\x1d\x2a\xb8\xf3\xf0\xa1\x6b\xe7\xa5\xc4\x96\x1f\x3e\x70\x39\xcf\x5d\xce\x7d\x97\x73\xe2\x72\xee\xb9\x9c\x7f\x5c\xce\x8f\x2e\xe7\xa9\xfc\x4e\x78\x3e\xc8\xc6\xfd\x1b\x00\xa4\x57\x98\x1d\x48\x14\x64\xc3\x86\xca\xd5\xfc\x2a\xb7\x6c\xf1\x8f\x9a\x87\x01\x63\xec\x99\x1c\x25\xcf\x24\x1b\xf3\x89\x19\xdb\xaf\x32\x79\x29\xe9\x27\x49\x48\xfa\x4c\x3a\xab\x6c\xfa\x59\x56\x6d\xfc\x2e\x93\xd0\x8e\xf7\x89\x74\xde\xf1\x9f\xc8\xa1\x9b\x1c\xa7\xe6\x3b\x9b\x4f\x32\x14\xbc\x7c\xb2\xef\x75\xdf\x48\xaf\x3c\xf9\x4c\x92\x9b\x37\xb2\x0a\x06\x80\xf2\x22\xdc\x0e\x9f\xc9\xe1\x07\x99\x3c\x7c\x48\xc3\xd8\xbf\xc8\x0f\xaa\x8c\x24\xb8\xf3\xfe\x20\x98\x1e\xf3\xc9\x70\x26\x6f\x04\x13\x49\xb7\xef\x1d\x58\x58\x2d\x4d\x88\x86\xeb\x26\xb1\xd5\x7e\x17\xe4\x06\x87\xc0\x43\x13\xc7\x06\x15\xcf\xbc\x36\xdf\xde\x80\x00\x1e\x5f\x4a\xfa\xbb\x24\x54\x78\x09\x16\xcc\xfe\x50\x78\xf5\xb3\xac\x02\x0f\x43\xb0\x10\xe7\xba\x5d\x2e\x4b\x52\xb3\x25\xd3\xe8\xe5\x5c\x13\x8a\x3a\x35\x41\xbd\xca\x12\x76\x2c\x26\x71\x9c\x98\x1f\xc6\xc7\x22\x88\x96\x01\x9b\xe1\x6f\x01\x11\x05\xfd\xa1\x6f\x2d\xe2\xef\xd8\xdf\x5f\x65\x43\x14\xf9\xa7\xc1\xfe\xaf\x92\xdd\x91\xcc\xd6\xad\x60\xe7\x79\x0b\xd1\x75\x6a\xa9\x2e\x73\x28\xff\x26\xa9\xe8\x9d\xda\x2f\x62\x78\x8d\x66\x46\x18\xef\x57\xe7\xd5\xa1\xf6\x9b\x3f\x6f\x86\xa5\x69\x88\xd0\x46\xfb\xbb\x9b\x11\x79\x65\x89\x17\xaa\xd4\x3a\x30\x6b\x11\xbc\x2c\x3d\xf3\xfc\xcb\x32\x47\xfe\xc7\xfb\x7c\xc1\x1f\x69\xd2\x9a\x5f\xf1\xae\x21\x32\x4d\xeb\x9b\xc0\x67\x6f\x7d\x97\xf8\x80\x4d\xdd\xe4\x9b\xcd\x10\x7b\x0f\xda\xd1\xd6\x26\x88\x68\x54\xf5\x5c\xd9\x9e\xbf\x95\x8c\x53\x1c\x34\xaf\x93\xe0\xc8\xb7\x90\x53\x43\xfc\x82\x72\x96\x34\x88\x5b\x88\x29\xc1\x6b\x9f\xfc\x09\x98\x78\xcf\x33\x88\x2e\x51\xaf\xdd\x94\x05\xcb\xdc\x4f\xe9\x5f\x25\xb2\xf8\xba\x83\x2e\x70\x01\xfb\xe0\x6f\x3a\x3f\x4f\x5a\x2c\x04\xe2\x78\xd0\xbf\x7f\x78\xff\xee\xe0\xc1\xc1\x21\xba\x99\x49\x7e\x35\xfd\xd0\xac\xca\x27\x54\xb3\x1b\x3b\x01\x52\x4e\xe5\x59\xc9\xd5\x25\x9f\x3d\xc9\x35\x78\xe5\x30\xb9\x38\xaf\xed\x1e\x75\x47\x86\x81\xe2\xde\x36\xa9\xc7\xc3\xbe\xa1\x1e\xef\x98\xeb\xf1\x5b\x59\xc3\x0c\xbb\xa9\x77\x3f\xed\xd3\xb0\xcb\xa9\xa6\xca\xdd\x27\xd1\x05\xec\x06\xd9\xc5\x77\x0c\xd2\x41\xb7\x9f\x79\xde\x11\xaf\x4f\x55\x58\x89\x79\x5e\x63\x56\x65\x79\xb5\xbf\xde\x9c\x65\x25\x47\x8f\xb0\x1c\x3f\x6a\x95\x1b\x61\x28\x8b\xac\xfe\x8c\x50\x59\xce\x5c\xb3\x62\x5b\x3e\xbc\xf0\x1c\x22\xff\x55\x15\xc3\xe7\x5a\x8b\xcd\x8a\x2d\xf9\xc1\xfc\x2b\x77\x74\xa3\xe7\xd3\xb5\x0e\xd9\x69\x84\x4f\x61\xcf\x30\x90\xb8\xcd\xff\x7f\xaa\x87\xd3\x3c\x3c\x5c\x9b\x93\x84\x53\xf4\xb3\x57\x72\x8c\x53\x92\x6a\xaa\xb3\x79\xda\xa7\xcb\xec\xba\x90\xd9\xcc\xc5\xf8\x40\x0a\x12\x9f\xfc\xa4\x85\x54\xfb\x57\x0b\xfb\x55\xc7\xc2\x0e\xd0\x33\xaa\x21\xb1\x56\xc4\x74\x9a\x84\xcf\x76\x5a\xd2\x7a\x9d\x50\xfd\xbe\xb1\x9f\xb7\x85\x3a\x0c\x08\x7d\xd4\x71\x7c\xbb\xe2\x2b\x6e\xa5\x50\xde\x83\x4b\x1c\x27\x8d\x1a\xcc\x4c\xf1\xa6\xcb\x0d\xeb\xe8\x62\xbb\xad\xda\xb3\x6b\x74\xe4\x55\xab\xbe\xa7\xf1\x66\x33\xa6\x8e\x68\x02\x90\x36\x1b\x2a\xf3\x44\x12\xa7\xb8\x65\xbd\x6f\x34\x2b\x28\xe2\x5d\xd5\xc8\xf5\x5a\x01\x44\x45\x9e\x28\xaa\xfd\x9b\x2a\x40\xb1\x17\x2d\xc8\x70\xd8\x12\xfb\x06\x2d\xf2\x04\x6f\x2f\x3e\x47\xee\x1a\x9f\x65\x63\x7c\x02\xb8\x1c\x40\x89\x60\x6e\xa0\x46\xdf\x44\x51\x7a\x9e\xa3\xc6\x5b\x6f\x7b\x29\x8d\x44\xaf\x65\xe1\x31\xd1\x52\xd5\xcc\xb3\xb6\x7c\x37\xdf\xda\xdf\x09\xa3\x04\xef\x9c\x77\x75\xf6\x83\x88\x63\x88\xb1\x18\xf6\x0b\xc4\xbd\x5b\x63\xd8\x70\xfd\x31\xcb\xbd\x94\x3d\xa7\x99\x27\xd6\xd1\xab\xd9\x8d\xf3\xac\x85\x6a\x6c\xdb\xb2\xae\xc4\x74\xdb\xae\x60\x32\xe2\x28\xb3\xc9\x4c\x5b\x24\x45\xcd\xdf\xce\x61\xca\xab\x68\xaa\x6c\xff\x6e\xff\xe1\xfd\x38\xc8\x59\xdf\xbb\x3b\xb4\x4e\xbe\x02\xff\x37\x79\x9b\x60\xed\xd6\x8f\x91\xf5\xda\x93\x7a\xb9\x25\x10\x42\x36\x81\xa9\x85\x1f\x3a\x48\x73\x60\x31\x3b\x46\x52\x10\xe0\x38\x0f\x35\x0e\xec\x39\xe4\xdd\xa9\x25\x9a\xd9\xd1\x20\xc1\xa6\x6d\xe5\xe8\x25\xeb\xd3\x29\xd3\xf5\x5d\x9b\xe5\x8e\xc6\x9a\x5a\x1a\x6b\xc5\xa6\x0d\xe2\x61\xb8\x7a\x24\x47\xae\xdf\xa8\xff\x32\xa5\x39\x2b\x08\x2d\x1f\xad\xc0\xaf\xda\xca\x2c\x80\xc5\x34\x59\xd1\x69\xaf\xbe\x87\x12\x5a\x30\x18\xbf\x3e\x9d\xd2\x02\x55\x84\xdd\x07\x7b\x6e\x2b\x45\x82\xc5\xa3\x9b\x1d\x1e\xd0\x69\xaf\xda\x4f\x6b\x9a\x99\xba\x57\x9d\x07\x23\xdb\x19\x5b\x2d\x2c\x62\xd3\x34\x09\x9f\xc3\xe6\xa6\xb4\x5e\x93\x10\x42\xa7\x0c\xbf\xb8\x41\x71\x2b\xee\xf4\x0e\x59\xf5\xc9\xdf\x44\xd8\x72\x1b\x61\xcb\x00\x61\x06\x43\x2b\x36\xa5\x01\xfe\x0c\xee\x0c\xf2\x96\x80\xbc\x25\xec\x1e\xff\x27\xb0\x54\x3f\x0c\x47\x8d\xde\xd4\xb0\xd6\xc8\xf4\xd8\xab\xe7\xb7\x61\xb1\xf9\x66\x0d\x9b\x41\xa7\x75\xb8\x2f\x0a\x1f\xd2\xda\x60\x68\xa4\xdb\xf6\x18\x54\xb9\x6e\xf4\xb8\x6a\x30\x40\x2f\xcc\x45\x5d\xcd\x78\x96\xd3\xda\x34\x67\x19\x6d\x1d\x49\xb6\xa2\xc7\x53\xd0\x45\x68\x0c\x20\x2b\x69\x63\xb7\x65\xc1\xc5\xe9\x2c\x77\x57\x6f\xe1\xcc\x04\x5b\x1a\xaf\xfc\x57\x85\x3d\x6f\x20\xc2\x6e\xb2\x6d\xef\xd3\x1a\xc2\xda\x30\x44\x76\xf4\x6a\x27\x36\x09\x5d\xe4\x49\x6d\xcd\x80\x1b\xb6\xdd\x8b\x08\xa6\x54\xf5\x4e\x7d\xa8\x83\x77\xbf\x67\x4a\xd5\x2f\x9f\x8b\x6f\xdc\xf2\xdc\xa4\x0f\xbc\x8f\x81\xc3\x4d\x97\x8f\x04\x8b\x8d\x59\x06\x4a\x03\x2d\x4c\xdf\xa6\x1b\x8e\xc1\xc3\x01\x01\x4f\x75\xb8\x2f\x2b\xb2\x71\xa6\xbc\x08\x23\xfa\x4d\x3a\xce\xd9\xd3\xde\x3b\xb0\x3e\x45\xba\xff\x49\x15\xba\x8e\xce\x73\x96\x08\x7e\xd5\x51\x3d\x30\x34\x12\x5c\x68\xd2\x53\xfc\xbc\xac\x6e\x03\x97\x79\x25\xc6\xf4\xe7\xb9\x39\xd9\x0d\x7d\xc0\xb6\xa8\xa8\xe0\x50\x10\x23\x9d\x22\x97\xc0\xe0\xb6\x39\x03\x85\xbf\x08\x36\xc8\x1e\x82\x8a\x62\xcd\x49\x8c\xa1\xcf\xfd\x9a\xb0\x1c\xd5\xeb\x9c\xdd\xe4\xe5\xb1\x5c\x41\x64\xb9\x6d\x4f\xc7\x10\xd6\x88\xf7\xea\xfc\xdc\xa3\xfc\x8c\x2b\x12\xc7\x10\xa8\xdb\x7c\x6a\x43\xb9\xf8\xc7\x7c\xfb\x84\x6b\xbc\x25\xd4\x45\xb8\x68\xd4\xdc\xd2\x88\x1d\xb2\x5f\xcb\xc4\x90\x78\xc7\xb9\x3f\x2e\x86\x89\x64\xd3\x3c\x51\xec\xcf\x12\x9c\xd7\x49\x42\x25\x21\xee\x2c\x65\x9a\x7a\x2e\x65\x60\x84\x6b\x28\xbc\x60\x4a\x10\x0a\x34\xb0\x24\x54\x4c\x13\x4e\x15\xf1\x60\xbe\xe3\xcb\x22\x9b\xf2\xff\xa3\xa0\xea\x6c\xce\x06\x54\xfe\xef\x02\xf9\x48\xaa\xa9\xf5\xec\xdd\x50\xcd\xb9\x0d\x5e\x81\xf0\xaa\x3a\xbc\xca\xc0\x2b\x0c\xbc\x82\x9a\x8f\xa0\x2a\x58\x36\x67\x07\x15\x8c\xba\xb2\xd6\x87\x99\xe3\x61\xd4\x16\x46\x65\x61\x14\x35\xbd\xfa\xc7\x01\x41\x82\xe4\xd9\x6d\x94\x58\x4d\x16\x86\x4c\x77\xbf\x8e\xfc\x8d\xa8\x35\x3f\x41\xe2\x2f\xed\x06\x0a\x46\xeb\x75\xf8\xd4\xcb\xcb\x37\x2b\xc5\x71\xe5\xba\x97\xd7\xeb\xa4\xfb\x56\x81\xac\x79\xbd\x36\x29\x49\xf3\x5a\xe4\xfa\xbc\x2e\x00\xe9\x0e\xa8\x64\x85\xa4\xb9\x73\x84\x81\x42\xa5\xe1\x0e\x03\xb9\x4e\xee\xb1\x96\x8f\x72\x26\xf3\x24\x27\x69\x22\xd9\x99\x4c\x34\x19\x9d\xcb\x34\x10\xc9\xe4\x66\xe1\x56\x4b\xb8\xd6\x7e\x4d\x0a\xa7\xc8\x08\x04\xa2\x92\xa4\x85\x24\x14\x7d\xe3\xe9\x44\xd0\xbc\x65\x53\x70\x47\x0c\xe0\x35\x68\xc4\xe6\x8c\xec\xaf\x8d\x87\x63\xb7\x0d\xc5\xae\x73\x1a\x8c\x05\xd3\x54\xb7\x4d\x29\xc6\xe9\x7f\x2b\xc4\x94\xff\x56\x88\x19\x10\xfe\x5f\x83\x9d\x94\xbb\x1e\xd1\x56\x77\x85\x68\xe0\x26\x40\x67\xb5\x28\xde\xf1\x29\xcf\x2f\x39\xb0\x57\xe3\xf8\x96\x42\x98\x18\x3b\x5a\xfc\xf0\xea\xe4\xf1\xd1\xf3\xd3\x5b\x1b\xfe\x56\x1d\x6c\xdf\x42\x8e\xcc\xb4\xeb\xbc\xd7\xb2\x29\x25\xda\xd5\xa2\x0d\x7e\xdc\x69\xde\xd4\xbe\x0f\x85\x74\x12\xcc\x34\x4a\xf0\x88\x0b\xb9\xcd\x03\x86\x4a\x38\x9e\xd8\x3c\xb7\xe1\x3b\xeb\xf3\xfa\xf6\x19\x2d\x5d\x5d\x37\xb3\xf3\xd6\x99\x5d\x55\x83\x79\x9b\x13\x4f\xbd\x26\xf9\xd6\x51\x95\xc0\x15\x26\xa7\x82\x4a\xb0\x17\x6c\x07\xbb\x75\x50\x12\x03\xfd\x9c\xeb\x67\x5c\xe5\x97\xb6\xe2\x91\x92\x0b\x64\xa3\xc7\x71\x62\x8f\xde\xdc\x1c\x9f\xff\xa6\xe1\xce\xee\x66\xd7\xeb\xb6\xfa\x12\xb4\xb3\x44\xb6\x2c\x2f\xa4\x46\x9d\x0c\xc7\x2e\x68\x23\x44\x64\xeb\x44\x81\x43\x38\x8e\xdb\x5f\xd8\xae\xb9\x5e\x27\x9a\xc9\x5b\x16\x41\xdb\x4b\x71\xdc\x96\x9b\xb4\x63\xe1\x56\x30\x6f\x29\x4c\x08\xd5\x5d\xe6\x60\xdb\x39\xc5\xa5\x1b\x13\x5a\x91\xff\xff\xd5\x1c\xd9\xd5\x0b\x0f\xe1\xb3\x7c\x66\xa1\xaf\x5f\x9d\xee\x22\x2d\xf4\x3a\x67\x8f\x95\xca\xae\x7b\x79\x09\xbf\xd5\xa9\xf6\x3e\x0f\x74\x18\x2a\xfe\xbb\x30\x6b\x89\xb4\x0f\x59\xab\x93\x35\xeb\x91\xaa\x77\x0a\xca\x69\xd6\x2f\x48\xed\x71\x00\xa6\xbc\x3a\x9b\x6f\x31\xb7\x1f\x12\xe7\xa5\x5b\x54\x0b\x7e\xd3\x2a\x95\xbf\x7b\x9f\x50\xeb\xc9\x41\xb2\x28\xda\x6b\xb2\x5e\x82\xb3\xdd\xf4\x20\xec\x40\xb8\x06\xa0\x08\x7e\x7a\xa7\xe8\x21\xe8\x1d\x3f\x47\x6b\x48\x93\x99\x26\x89\xae\x05\x1b\x46\x59\x8f\x42\xfa\x57\x33\xc6\xe6\x39\x30\x74\x30\x87\xdd\x6c\xfc\x15\x8f\x8f\x66\x10\x6a\xb4\xa3\xc7\x72\x92\x9a\x7f\x8c\x6f\x48\xf8\x15\x49\x35\xf8\xad\x73\xae\x89\x42\x1c\x36\x62\xa0\x3f\xb8\x6b\xbd\xe9\x79\x44\x36\x2a\x3c\xec\x1b\x74\xb4\xf8\xdb\xf9\x52\xc9\x36\x2a\xbb\xc6\xae\xf7\x14\xd5\x18\x81\x01\xa1\xd1\x18\x87\xd4\x2a\x4c\x4f\x0c\xba\xb6\xd4\x9c\x9d\x13\x1c\xab\x0e\x4c\x46\x76\x1e\x74\xae\x72\x7d\xd1\xf9\xcc\xaf\xcb\xce\x4d\xb4\x57\x57\x3c\xee\xfd\x2d\x73\x91\x44\xb4\x13\x91\xbd\x68\x13\xa5\x1a\xbc\xee\x79\x40\x5f\xe5\x8d\x60\xce\x6e\x2e\x72\x47\xa8\x84\xf7\x34\x77\x81\x52\x23\xeb\xab\xcc\x5d\xb9\xea\x8c\x0e\x41\xd2\xdb\xee\x7a\x54\x6c\x73\x13\x02\xb6\xd8\x83\x4d\x18\x4e\xda\xf9\x75\xef\xf2\x9a\xf6\x63\x78\x9d\x53\x43\x70\x96\x0e\xca\xf3\xaa\x57\x5a\xc7\x46\xad\x1e\x6e\x54\x75\x19\xe4\x40\xed\x1c\x67\x4b\xd7\x8c\x1e\x12\x3f\x77\x3f\xf3\x6b\xf4\x94\x89\x4e\x13\xa8\x26\xa9\x7b\x04\x6f\x0a\x54\x1b\x72\x49\x37\x3f\x16\xcc\x00\xb9\x65\x05\xfa\x64\x6a\x19\x66\xd0\x02\xeb\x1b\xba\x08\x5f\xb7\x8a\xca\xd5\xcb\x79\x62\xcf\x61\x6f\x03\x8d\xef\x28\x8a\xd6\xc9\x8e\xb0\xab\x8c\x00\x46\xe0\xbb\x1a\x6a\x91\x47\x62\x94\xe8\x00\xa1\x73\x03\x47\xaa\xd2\x96\x4c\x11\x08\x65\x42\xff\x7a\x9e\xeb\x11\x7c\x03\x38\x0a\x61\x03\x35\x12\x6a\x5a\x11\x0f\x75\xf9\xbf\x5e\xaf\xbd\xd5\x0d\x98\x4c\xff\x31\x35\x97\x83\xde\x42\xce\x38\x5c\x0f\xb0\x3a\x33\xb8\x81\x85\x2f\x13\x34\x8b\x0d\xf2\x03\x11\x47\xeb\x67\x70\xe7\xd1\x3d\x8e\xf6\x40\xe0\xe9\x1e\x76\xbb\xeb\x25\x1f\x25\x89\xc2\x36\x91\x82\x81\x96\xcf\x99\xdf\x78\xa9\xaa\xbe\xa4\x0c\x04\x8a\xbd\x99\x26\xf8\x2e\x05\x9f\x09\xee\x4d\x8a\xc3\x14\x42\xbe\xb3\x9d\x40\x5a\x72\x0b\x62\xee\x3a\xc4\xac\xd7\x7a\x97\xc7\x6f\xf4\x01\x15\xe6\xd4\x2b\x83\xfe\xa7\xe9\x35\xdc\xc7\xa1\x76\x3d\x0b\x90\xfe\xf7\xf7\x20\x3d\x70\xbe\x36\x9e\xec\x1a\x81\x65\xc5\x23\x6f\xe9\xd1\xfd\xda\x50\xbf\x0b\xbf\x6a\xc8\xb5\x7f\x37\xd8\xe7\xc1\xd9\xd8\xe2\x49\xae\xd5\x81\x9c\xdd\x25\x70\x9e\x45\xd1\x9e\x76\xdf\xaf\x7f\x25\x34\xff\xa8\x09\x97\xdd\x74\xaa\xe2\x02\xf4\xee\xdc\xc1\x62\x2b\x02\x78\xe6\xbc\x37\x08\x33\x51\x34\x4e\x14\xbb\x4d\xb4\x4c\x14\x11\x4e\x14\xbc\x1c\x11\xb0\x81\xb2\xa0\x08\xe4\xc4\x3f\x49\x3d\xe0\x7f\x4f\x93\x1d\x50\x9b\x73\xeb\x75\x0e\x3a\x80\x6f\x13\x6f\xcc\x82\x88\xae\x5e\xb1\x7e\xf7\xc3\xde\xda\xf3\xa8\xdd\xed\xd7\xac\x49\xf7\x3b\x1c\x8c\xa0\x57\xe8\x14\xa2\x75\x08\x5a\x7d\xf8\xd5\x42\x39\x19\x6a\x0d\x75\xfd\x71\x83\x88\xa2\x3d\xd0\xec\x6e\x45\x7f\xc0\xbd\x08\x84\x2f\x3b\xd0\xdf\x81\xb5\x09\x44\x03\x2e\x56\xc6\xd8\x9b\x91\x9d\x9d\x38\x0e\x7e\x3e\x83\x10\x23\xad\xf6\x0e\xec\x52\x0d\xef\x41\x73\xab\x7a\x3d\x8b\x74\x01\x48\xaf\xc7\xc5\xaa\x7a\x57\xad\x0a\x40\x3e\x22\x5c\xec\x40\xf8\x45\x4d\xb4\xd2\x86\x58\xd5\x86\x58\xef\xaf\x0c\x06\x1b\x23\x10\x01\x58\x30\xab\xa2\x68\xcf\xb4\xd7\x8e\x59\xe5\x31\x5b\x05\xbc\x50\x3b\x31\xeb\xdb\x76\x52\x4a\x73\x1c\x8a\x14\x7e\xdd\xe7\x54\x88\x73\x4d\x39\x55\x4d\x9c\x4b\x8a\x2f\xa4\x05\x96\x1b\xe0\xea\x28\x5f\x85\xfd\xb8\xed\x5b\x54\x12\x3b\x0a\x0a\x46\x41\xf9\x51\x58\xb6\xa1\x42\x51\x59\x0d\x83\x6e\x6a\xff\x57\xec\xf5\x44\xd2\x8c\x96\x74\x5a\xf9\x48\x2d\xf0\x28\xb6\x72\x99\x25\xcb\xe8\x19\xcb\x58\x9f\x2e\x2a\xb9\x75\x97\xb1\x65\x1c\x9f\x55\x06\x75\x67\x7b\x7b\xe4\x66\x89\x67\xef\x4f\x67\xa3\x64\xc1\x96\x74\x89\x6c\xf0\x74\xc1\x96\x9e\x46\x00\x96\x2f\x9b\x25\x92\x2e\x69\x39\x3e\x9b\xd0\x29\x09\x04\xe6\xc7\x5e\x6c\xbf\x8c\xe3\x64\xc9\x16\x2e\xc2\x13\x8f\xe3\xa5\x3f\x8e\x8f\xc3\xe3\x18\x02\x75\x10\x9a\xb1\x3c\x39\xa6\x19\x3d\x0b\xe4\x1c\x05\x3b\x4e\x57\x9e\xbc\x38\xa6\x2b\x76\x4c\x97\x6c\x61\x90\x78\xc6\x18\x2b\x1b\x3e\x56\x04\xb6\x54\x04\xf0\x2c\x2d\xcb\xbc\xd1\x51\x47\x7d\x2c\xd9\x79\x22\x5d\x37\xd0\x6e\x3d\x4f\x96\x5b\x50\x2c\x03\x28\x96\x74\xc5\x96\x5e\xd3\xac\x00\x01\xd8\x92\x29\xf8\xf4\xae\xcf\x2c\xd8\x45\xb2\xa4\x92\x9e\x85\x9f\xe2\x7e\x32\x2f\x42\x74\x2c\x7b\x48\xfa\xbb\x1e\x2c\x60\x2a\x9d\xa5\xf0\x8b\x68\x5a\x6c\x01\xb8\x08\x00\x5c\xd0\x95\x41\x7b\x45\x03\x2d\xdb\x5d\xa0\x3b\xa2\x2c\x91\x86\xf8\x27\x84\x86\xe2\x06\x83\x15\x3a\xa5\x85\x93\x71\xbe\x4d\x70\x98\xdb\x6e\x72\xab\xe6\xf5\xea\x47\xeb\xbe\x1b\x01\x4c\xa6\x6c\x85\xa4\xfe\x94\x6c\x69\x83\xff\x38\x20\xc4\x0b\x64\x97\xcc\xce\xd8\x33\x56\xd2\x05\x2b\x59\x9f\x1e\x63\xc6\xdc\x0a\xc8\x12\xef\x35\xf2\x2c\x8e\xbb\xf3\xde\x4c\x0a\x3e\x5c\xec\xed\x05\x15\xc8\xcd\x99\x9d\xc4\x8b\x51\x72\xcc\xce\xe8\x99\x9d\xc4\xc7\xec\xac\x36\x89\x2f\x61\x12\x9f\xd1\x39\xba\x09\xa0\x45\x38\x8f\x2f\xfd\x3c\x3e\x8b\xe3\xe4\x8c\x1d\x07\xf3\xf8\xcc\xcf\xe3\xcb\xe6\x3c\x3e\x23\xb4\x64\x79\x72\x49\x4b\xba\xf0\x03\xb4\x1c\xad\xd8\x65\xea\x57\x10\xbb\xa4\x4b\x76\x49\xcf\xd8\xb1\x99\xc7\xd8\x87\x70\x06\x9f\x11\xba\x0a\x20\x39\xb3\x33\x78\x47\x6f\xdd\x14\x9b\xc3\x4c\xae\xfa\x82\x01\xbc\xf2\x64\xbe\x05\xca\x3c\x00\x65\x4e\x97\x6c\xee\xe7\xca\x0a\x26\xf3\x19\x4c\xe6\x33\xf2\xed\x2f\x5e\x24\x67\x54\xd2\x45\xe3\xab\xd5\xbc\x9e\x87\xe8\x39\x6b\xcc\xeb\x39\xcc\xeb\x45\x3a\xc7\x79\xfd\x6f\x61\x85\x16\xbf\x6f\x5e\xaf\xdc\xbe\x19\x88\x05\x14\xcd\xcd\x86\x89\x9b\xe5\xad\x4c\xbd\x38\xce\xfd\x19\xe1\x07\x3e\x37\x40\x43\x10\xb5\x9c\xe5\x8d\x13\x03\xf9\x0a\xab\xdb\x5b\x35\x03\xbc\x22\xce\xf8\x6d\xfb\x08\xb3\xe6\xe3\x2b\xfc\x12\x2d\x98\x72\x13\xbf\x40\x23\xef\xc2\x9e\xf3\x2b\x78\xba\x0f\xb6\xde\x86\x5e\xad\x80\x4d\x8b\xc6\x45\x02\x8b\xc8\x8d\xe9\x7f\xe1\xd0\x4a\x28\xdc\x2b\x0a\x5a\xbd\x38\x6a\xf6\x28\xcd\xb7\xef\x1c\x05\xcd\x6b\x77\x05\xce\x94\x37\xf7\x83\x0f\xb8\x05\xa3\xe1\x81\x16\xcc\x7f\x72\x13\x7c\xca\xdc\x53\xde\x4d\x93\xe6\x17\x1d\x11\x38\xa5\xd0\xff\x90\x0a\xe4\x0c\xae\x37\x53\x43\xb5\x62\x43\x58\x87\xe6\x2d\x54\xeb\x34\x04\xd9\x90\xee\x60\xfb\xef\x5b\x9a\xfa\x23\xb5\x4c\xb8\x3f\xd6\xbd\xe9\x3e\x8e\x72\x75\x3d\x47\xe7\xe6\x88\xf7\x02\x9e\xee\xba\x50\x47\x71\xbc\x33\xd6\x91\x37\x56\xf4\x39\xf5\xca\xf5\x6b\x0e\xd4\xae\x67\xe1\x88\xa9\xc6\x88\x29\x9a\xef\xbc\xe8\x34\x07\x43\x85\x83\x51\x67\x30\x6c\x12\x65\x28\xf5\xbc\x8e\xb1\xaa\x9d\x10\x41\x9b\x56\x22\x2f\x6f\x23\xf2\xbc\x5b\x8d\x9c\x45\xd1\x5e\xee\x78\x97\x2a\x8e\xef\xf9\xe8\x50\xc9\x8e\x6e\x6d\x8f\x36\xf6\xc1\x54\xf8\xe3\x16\x50\x09\x85\x51\x44\x0a\x2b\xf7\xb4\xd5\x99\x5f\xee\xa6\xe8\x6d\x50\xb2\xa8\x95\xac\xe2\x18\xc8\xdd\x9c\xd0\xb6\x10\x01\x66\xf5\x76\x0b\xb7\x64\x79\x4d\x99\xca\x6a\x3b\xe1\xd9\xc6\x2d\x7b\x8c\x56\x87\xdc\x01\xa1\xbc\x37\xcb\xcb\x65\x91\x81\xbd\xe3\x7a\xcd\x7b\x02\x7e\x23\x2f\x79\x8b\x2a\xf2\x0e\x05\x9b\xc0\x72\x7d\x99\xb3\x57\x79\xd2\xed\x13\xfa\x1c\x53\x03\x42\x4f\x72\x76\xb3\xa1\xff\xe4\x95\x76\xfb\x49\xbe\xa1\x4f\x1b\xcf\x9f\xeb\xcf\x81\xbb\xad\xdc\xba\x76\x32\x2b\xf0\x24\x6f\x9e\xc8\xf7\xef\x12\xd2\xc2\x08\x7a\x66\x59\x81\x53\x99\x7c\xce\xad\xa1\xd4\xd3\x9c\x72\x48\xfc\x93\xd3\x93\x9c\x0c\x9d\xf1\xb9\xf7\xeb\xed\x2e\x3f\xce\x4c\x04\x11\x35\x18\xa4\xe0\x0b\xa5\x32\x4c\xf7\x0e\x50\x34\xa0\xa5\x5c\x66\x53\xfe\xe1\xdd\x8b\xf4\x0f\x3c\x2d\x20\xb2\x48\x3d\xac\x93\x66\x7f\xf0\x44\xb3\x44\xb0\x07\xa8\x08\x10\x78\x85\x4e\x35\xa9\x35\x63\xc9\x69\x81\x7c\x63\xf0\x72\xb4\x29\x0d\xd0\x0e\xf6\xf0\xb2\xfe\x24\xb7\xa6\x7a\xa6\xb8\x34\x7d\x84\x9f\xcf\x79\x50\xe7\x0d\xd4\xf9\x98\x27\x9f\x73\x6f\x26\x66\x43\x8f\x7d\xcc\x93\x7f\xaa\x4c\x2a\x00\x4c\xab\xcc\x4f\x86\xda\x4a\xb4\x1b\xb8\x13\xa1\x84\xf5\x1d\x34\xfe\xd4\x37\x62\xfd\x21\xd5\x20\x42\x76\xfc\x1f\xc1\x08\x87\x5e\xed\xfe\xce\x9d\x0b\x76\x6b\x31\x17\xb0\x06\x6f\x5c\x94\x39\x74\x1f\xe3\xfd\x05\xd4\x04\x05\xa1\x12\x49\xe0\xaf\xc3\x20\x30\x08\x12\xb7\x5e\x0b\xf4\x09\xc8\xd8\x27\x11\x3c\xfc\x5c\x5d\x2e\xb5\x0f\x1c\x37\x78\xc8\xbc\xf7\x9a\x40\xe6\xea\x3e\x0b\xa2\xa3\x9e\xe2\x97\x3c\x2b\xc0\x82\x19\x00\x4d\xee\xdd\x8d\x03\x5e\x1d\xe9\x32\x76\xac\xb7\xdb\x16\x35\xe7\xe3\xe4\xc6\x26\xdc\xde\xa0\x81\xc5\x09\x59\x43\xb3\x0d\xe7\x62\x05\x62\x01\xc0\xac\x55\x2b\xf4\x7c\x58\x80\xd2\x51\x89\xa1\x36\xbd\xb6\xcd\xad\xd7\x2e\x15\xfa\x20\x83\x6b\x95\xf6\x95\x36\xbe\x0d\x0f\x84\x4d\x84\xec\xd6\xf6\xeb\xdc\x8b\xba\xce\xb5\x57\xbc\x4f\x39\x85\xf3\x2d\xb5\x6a\x37\x1f\x9a\x6a\x37\xcf\xf2\x72\x99\xe9\xe9\x05\x57\xf4\x97\x9c\xf5\xe9\x51\x8e\xb4\xf3\xef\xf6\xf7\x93\xfd\xfd\xd9\xfe\xfe\x66\x7f\xdf\xda\xdf\x3b\xe6\xa5\x5f\xed\xc3\x9f\xe6\x81\x67\xac\x3b\xa0\xda\xea\x43\x8a\x8c\x05\x7e\xfe\x55\x96\x38\xbb\x20\x2f\x00\x38\x18\x84\x13\x59\x66\x5e\x78\x20\xb6\xbc\x8d\x54\xfe\xe6\xfb\x43\xf1\xa8\x0a\xab\x29\x1e\xf1\x30\x68\x6e\x7e\x9e\x58\x2f\x21\xe0\x22\xa4\xd5\x3f\x48\xc5\x6e\xce\x42\xd5\x0a\xf8\xf0\x2f\x39\xcb\x0d\x22\xb4\xeb\x7d\x97\x31\x3e\x6a\xc8\xc5\x50\xd6\xff\xa1\x5a\x71\x16\xdc\x4f\xf9\x68\x9e\xa5\x97\x19\xd5\xa0\x8b\x24\x09\xe5\x19\xb9\x99\xc9\x1b\xc4\x8b\xc8\xf6\xd8\xe0\xdb\xed\xbe\xcd\xd9\xcf\xb9\xc1\xeb\x6f\x39\x73\x43\x11\x7c\x2b\x68\xde\xda\x62\xf1\x8c\x0c\x43\x9c\x9b\xb9\x1a\xbc\x70\x9c\xd1\x84\xb3\xa3\x9c\x34\x34\x1b\x7e\xce\xb7\xd5\xf2\xee\x98\xbc\x50\x59\xf8\x57\xa8\x54\x09\xf6\xfe\xcc\xa9\xd7\x89\xf8\xbd\x22\x4f\x7f\xcf\x81\xd8\xc7\x79\xf4\x16\x40\xff\x39\x67\x9f\xa0\x03\x47\xbb\xa7\xcb\x96\x48\xae\x4f\x02\x93\xac\xca\xfc\xc3\x4c\x9d\x7a\x8f\xfe\xe5\x87\xb6\xe6\x65\xc0\xff\x37\x8d\xa3\x99\xdc\x4d\xcb\x68\x54\x66\x1a\xf0\x08\x42\xd7\xaa\x24\xb4\xab\xa8\xcc\x6b\x86\x75\xf6\xf0\x6f\xf9\xe8\x67\x80\x94\xa7\xbf\x99\x5f\xd4\x49\xe4\xf4\xb7\xc0\x9c\x7c\x9a\xd5\xac\xff\xde\xe6\xe4\x6d\xce\x92\xdf\x72\x93\x42\xd4\x56\xf3\x26\xf9\xdd\xf4\x98\x8c\x2c\xd2\x91\xa9\xe7\x6c\xa7\xfc\x54\xdc\x12\xb6\xf5\xad\xb8\x73\xab\x9f\xb6\xbd\x86\x5a\x43\xd5\xf1\xdf\xf3\x40\xd7\x19\x11\xf0\x7b\xde\x83\x44\x88\x04\x5b\xcd\x2a\x57\x06\xd8\xb0\xfb\x86\xc7\x84\x41\x83\xc3\x01\x8c\x1c\xaa\xb2\x5a\xa4\x85\x58\x29\xb2\x5a\x08\x96\x36\x99\xea\x48\x27\x9c\xa4\xc1\x64\x59\x65\x95\xe4\xd4\x60\x95\x9a\xbd\x14\x80\xad\x99\x69\x34\xb1\x33\x20\xce\x57\x51\x56\xea\x77\xdc\x6c\xa0\x7c\xf6\x8e\xcf\x56\x53\xd0\xd2\xe9\x3f\x12\x99\x93\x0c\x0a\xa0\xcc\xcc\xce\x19\x9c\x7b\x3a\xf3\xbe\x1b\x33\xcb\x95\x33\xa5\xfe\xe8\x92\xe4\x46\x67\xfe\x46\x4b\xbc\xae\x48\xfd\x1c\x9d\xc9\x9b\x9c\xf1\x24\xa7\x12\x22\x42\x49\x88\x12\x8b\x06\x53\x75\xc3\x4b\xe9\xd7\xc9\xcf\x2a\xc9\x69\xa3\x1d\xb2\x5e\x3b\x5b\xb4\x46\x09\x68\xee\x56\xc3\x04\xd2\x22\xd3\x63\x10\x72\x05\xfa\xbd\x84\xd6\x31\xe1\x5e\x1e\xe7\x54\x4d\x36\x76\xac\xc6\x8d\xc6\x4d\x91\xb2\x0d\x5a\x97\x91\xe1\xc7\xc0\xe7\x1e\x0b\x3e\xe3\x88\xfc\x72\x94\x54\xe4\xbe\x95\xb0\x5a\x7d\x5a\xc5\x4a\x78\x24\xa9\x57\xed\x52\x23\xd5\x0b\xac\x82\x3c\x7b\xd7\x7c\x70\xca\xac\x49\x5f\xc1\x14\x5d\xb1\xee\xc0\x60\x14\x39\x45\xc5\xb6\x0e\xf9\x2f\xf9\x28\x59\xad\xd7\xc9\x8a\x75\xfb\x74\xca\x4a\xf0\x96\x4d\x97\x3f\xdd\xc9\xe3\xf8\x78\x9a\xdc\xc9\x51\x75\x7c\x31\x4d\x96\xe6\xfe\xdb\xd0\xbb\xcf\x4d\x93\xd9\x9c\x2b\x37\x4b\xcc\x8e\x6e\xb3\xac\x61\x57\x92\xd3\xc2\x0d\x24\xa1\x25\x2b\xe0\x56\xbb\x3d\x9a\x45\x1c\x63\x27\x86\x06\x1c\x0f\xc9\x7f\x37\xb4\xd3\x9a\xc6\xb6\x6c\x1f\xd0\x5d\x23\x59\xcd\xf1\x49\x20\x02\xcb\xb6\x64\x7a\x9c\xdd\xe8\x6c\x9e\x72\x8a\x51\x71\x53\x4d\x67\xbc\xd4\x4a\x5e\xa7\x82\xce\xf8\xb2\x4c\x55\x8b\xd9\xe1\xaf\xf9\x28\xf9\x35\x67\x37\x0d\xc3\xb3\x0d\x09\xc5\xe5\x56\x75\x9b\x3b\x9b\xa1\x44\xb3\x5f\xf3\xa0\x02\x19\xd5\x1e\xab\xfa\x10\x69\x06\xb6\x4c\xed\x76\x19\x5b\x26\x68\xe3\x15\x12\x0a\x9f\xcf\xb3\xa6\x3c\xc8\x1c\x0d\xc3\x3f\xf3\x35\xc4\x4c\xaf\xe3\x7a\x99\x05\xa1\xc8\xa9\x57\x30\xb6\x7e\xcc\x43\x39\xe8\x6c\xab\x59\xb3\x2b\x0d\x5d\xf4\xb2\xe0\x25\xbb\x27\xd8\x00\x49\xd5\xd6\xf2\x7b\x8e\x6f\x66\x66\xab\xdc\xa2\xbb\x73\x66\xb6\x15\xc0\x79\x70\x69\x96\x59\xa2\xa8\x29\x58\x96\x9e\xb8\x86\x86\x97\x59\xd2\xa7\x82\xe6\xe6\xc2\x78\x6b\xd7\xf2\x9a\x34\xf7\xe2\x3b\x76\xe2\x84\x33\x9e\x10\x0a\x8e\xa9\x02\xdb\x72\x94\x71\x90\x0d\x71\xfe\xea\x75\x48\xd1\xfb\xb7\xfc\xe9\xce\x6b\x2f\xd7\x68\xac\x0d\xb1\xf1\x5f\x02\x61\x46\x56\x0b\xda\xb7\xc8\xc2\x28\xc6\xc9\xc1\x8f\x3f\x89\xac\xc9\x43\x3e\xec\x0f\xbc\xe6\x4f\xd3\xdc\x99\x31\x76\x94\xfb\x70\x44\x2a\x8e\x15\xe4\x80\x5b\x66\xb3\xea\x28\xdf\x32\x7d\xfd\x25\x6f\x9a\x35\xc2\x0e\x84\xcb\x3e\x15\x34\xdc\x23\xb0\x28\xd8\x22\x1a\x94\x83\x37\x2f\x01\x83\x8e\xcc\xa9\x6a\x90\x6a\x86\x99\xd9\x8d\x07\x8c\x26\x84\xe8\x0c\xb5\x33\xa8\xf3\x0e\x8d\xd1\x75\x84\xbf\xc0\xc1\xc4\x1f\x12\xed\x52\x6e\x49\x6c\x7c\x34\x71\x89\x0a\xcd\x79\x4d\xa1\x39\xdf\xea\xa5\x64\x7f\x96\x89\xa4\xc0\xed\x68\x74\x37\xff\xcf\xfa\xea\x4f\x08\x38\x2e\xaa\xb3\xb9\x24\x96\x3a\xc8\xab\x90\xe7\x53\x7b\x0c\x78\xd3\x20\x08\x75\x00\xb5\xa6\x84\x96\xb6\x3e\x5c\xd2\xa0\x39\x96\xd3\x1d\x1a\xfb\x4e\xde\x86\x21\x6d\x55\xa3\x42\x65\xf1\x9d\x38\x0d\xa0\x06\x2d\x40\x88\x73\xa5\x50\x34\x2a\xe0\xc6\xb9\x62\x2a\x29\x28\x1e\xfe\x79\xfd\x7c\x50\x34\x0f\x4e\x07\xb6\x32\xfb\xfb\x8a\x16\x6e\x7d\x5a\xef\x09\x4b\x72\xb3\x01\x35\x70\x69\x39\x3a\xc7\x19\xbb\x51\x3c\x73\x2a\xbc\xa9\xcc\xe9\xaa\xf4\x4e\x58\x52\x95\xc1\xa3\x2d\xc4\x27\xbb\xa9\xe2\xc3\x8b\xc5\x12\x42\x53\x5f\x72\x8c\x02\x66\xb3\x5f\x66\xd7\x72\xa5\x6b\x35\x8f\xf9\x42\xda\xa4\x1b\x43\xf7\x74\x6e\x53\x38\x92\x98\x7e\xc6\xcf\x56\x73\xb0\xd9\xf6\xd5\xdc\xd5\x53\x65\x1b\x3a\xbf\x1d\xee\x56\x6f\x98\x66\xc7\x6d\x6c\x47\x63\x5e\x4d\x7e\x6d\x63\x14\x4c\x28\xdf\x84\xbd\xc6\xa6\x6d\x5f\x5a\x1b\x3e\xcf\x92\x1f\x07\xf7\xe8\xe0\xe1\x01\x78\xd6\xdb\xb4\x22\xa6\x69\xb7\xe0\xc8\x78\x56\xf1\x36\x2a\x8b\x83\x11\x68\xa7\x4c\x33\x9d\x8c\xf9\x84\x58\xcb\xe9\x2c\xb9\x4b\x0f\xef\xd1\x8b\xac\x77\x96\x8b\x19\xf2\xa2\xcc\xe2\xa4\x02\x3f\x59\x43\xfa\x2e\x40\xa1\x09\x0f\x25\x0c\x4a\xbd\x2a\xde\x83\xe1\x74\xf2\x0e\x8d\xb6\x70\x44\x71\x5f\x15\xdb\xe8\xf4\xe8\x73\x83\xdc\xec\x37\x6e\x8d\x6d\xed\x63\xc7\x13\x4d\x52\x4d\x55\xa3\xe5\xd0\x16\xc6\x7c\x1d\x9c\xbe\x02\xe1\x8d\x27\x3d\xa2\xc8\x91\x15\x95\x45\x79\x63\x81\xa5\x9c\x6e\xad\xaa\x54\x6f\x88\x27\x48\xd8\x22\xc4\xee\x11\xb0\xc5\xc6\x0d\x60\x28\x9f\x6c\xdc\xc4\x6d\x11\xf5\xf0\x8a\x0f\xc6\x37\xb4\x65\xd2\x21\x7e\x9a\xd6\x2c\xee\x5a\x11\x60\xa6\xed\x24\x44\x6f\xe4\x3c\x21\xdb\x24\x5a\x48\x91\x71\xc4\x91\xfe\x4f\x70\x54\x64\x2d\x48\xe2\xdf\x42\x52\x93\xc8\xb3\x48\x0a\xd6\xf1\x59\x63\x1d\xbf\xc8\x37\xf4\xf2\xdf\xac\x63\x9c\x9a\x40\xe1\xb4\xcc\x49\xaf\x6e\x5b\xa7\x62\xea\x9a\x25\x2a\xb4\x93\x91\x86\x18\x51\xe3\xc1\x84\x8c\xd4\xb8\x3f\x49\x9b\x36\xea\x6e\x3e\x93\x7f\xb9\x1f\xcc\xfe\xaf\xec\x07\xb3\xff\x7e\x3f\x98\x7d\xf7\x7e\xf0\x7f\x10\xe9\xb7\x6e\x25\xa4\xb6\x97\xac\xb2\xad\x75\xe7\xfb\x32\xdd\x5a\x68\x3b\x96\x99\x13\x2f\x67\x49\x91\x91\xef\x99\xa3\xd7\x96\xb5\xf3\xd8\xfe\x5e\x65\x35\xff\x21\x5f\xb3\x10\x51\x1f\xa7\xc9\x8f\xd4\x5f\x1e\x69\x9f\x0c\x45\x4d\xf0\x19\x3d\x7b\xfe\xf2\xf9\xfb\xe7\xcf\xc0\x7b\x77\x33\x23\x34\xe9\x09\xb5\xd9\x42\x45\x5e\x47\x87\xf3\xd0\x94\x3a\xe1\x3b\xac\xa5\x05\xe5\x0d\x25\x62\x5e\x53\x22\xae\x97\x06\x76\x2b\x59\x3d\x84\x53\x20\x60\xfa\x31\x0d\x7d\x0e\x35\x86\x3a\xd1\x6c\xd0\x0d\xdd\xfa\xa2\x4f\xf9\x20\x6e\x83\x2f\xdd\x8e\x31\x61\xe7\x14\x88\xed\x6b\xb8\xe8\xf6\xad\x38\xf4\x5e\xba\xf5\xb9\xc8\xc6\x3b\xe1\x62\x06\x1e\xd7\xc0\xea\xe3\xb0\x06\xc3\xb7\xdb\x1d\x1c\xa6\xb7\x44\x59\x7b\x9d\x59\x19\xd5\x55\xe6\x76\xe9\xc7\x19\x86\x2c\x75\x22\x0b\xd0\x68\xb7\x48\xb3\xd7\x03\xcd\xb4\x4a\x44\x2d\xd6\x2c\x59\xaf\x7d\x25\xef\xa0\xa6\x1a\xdb\x20\x1d\xff\xff\x2e\xf5\x7a\xae\x71\xae\x01\x8d\x92\x5c\x67\x8c\x93\xe1\xd7\x2c\xb9\xce\xcc\x0a\x37\x8f\x66\x4a\x6a\xe5\x0d\x7c\x41\xe0\x80\x82\x88\xef\x6a\xd6\x34\x11\x06\x93\xcb\x9c\xa4\xa6\x72\x70\xe4\xad\x7b\xe3\xf8\xc7\x96\x90\xa4\x61\xa4\x52\x0c\x0a\x6e\x5f\x83\xa6\x2b\xcd\x7d\x87\x40\xde\x65\xec\x3a\xab\xd8\xe6\x06\x51\x57\xee\x19\x01\x00\xd8\xfa\xd4\xfa\x00\xd7\x6e\x9a\xe5\xe7\x89\x07\x60\xbd\x8e\x2e\x78\x86\x51\xd1\xe3\x38\x3a\x93\xb3\x6b\x9b\xee\xfe\x2a\x50\x67\x33\x94\xe4\x10\x82\x17\x97\xc7\xd9\x50\x0f\x89\x5d\xae\x54\x23\xe6\xc2\xe1\x31\x1f\x41\x18\x40\x28\x85\x93\x3e\x70\x1a\xe1\x99\xd3\xc9\xb6\x35\xcb\x88\x07\xd2\x28\x0c\x9a\x40\xb8\xf9\x24\x0e\x47\xea\xf1\x1a\x7c\x90\xfe\xcb\xf8\xc0\xbf\x87\xf1\x80\x6f\xb8\xe9\x40\x3d\x96\xb1\x17\xb3\x57\x31\x82\xbb\x8c\x1d\x89\x38\x36\xbf\x3f\xdb\xdf\x4f\x62\xbd\x76\x31\x83\x83\xb7\x37\x3c\x70\xbd\xcf\xd9\x75\x36\x82\xf6\x2b\xd5\x80\xf0\x4b\xc8\x17\xb6\xe3\xf6\xd8\x4c\xc5\x50\xf6\xf1\xca\xdc\x9b\x1f\x67\xec\x3a\xdc\x31\x51\x82\x9c\x35\xe4\x44\xaf\xaf\x04\x57\xf4\x79\x7d\x4b\x3d\x09\xd8\x1a\x56\x58\xe6\xb8\xbc\x7c\xf4\x1c\x14\xf9\x61\x87\xa5\x8a\xa4\x2f\x73\x18\x71\xa8\x04\x39\x15\x18\xff\x64\xa1\x4e\xa8\x00\x03\x20\xb3\xab\x7b\xfe\xa8\xe2\xe7\xde\xdd\xab\x69\x46\xfe\xff\xb9\x7b\x17\xe6\xb6\x71\x64\x5f\xfc\xab\x48\xaa\x29\x1e\xe0\x18\xd6\x48\x76\x92\x49\xa8\x20\xba\x4e\xe2\x99\xc9\x6e\x5e\x9b\x64\x1e\xbb\x5e\x5f\x5f\x9a\x82\x6d\x8e\x65\x50\x03\x40\x71\x3c\x16\xef\x67\xff\x17\x1a\x6f\x92\x72\x92\xd9\x3d\xe7\xdc\xfa\x57\xa5\x62\x0a\x04\xf1\x46\xa3\xbb\xd1\xfd\x6b\x4c\x04\x8d\x2e\x6e\x2a\x70\xed\xf5\xd8\xf5\x87\x45\xe2\x03\xb0\xa1\x53\x62\x5b\x0a\xf7\x31\xee\xca\x2f\x47\x2a\xb9\xe6\x48\x11\x76\xa2\x02\x32\xba\x7b\x7f\xfa\x5d\xe7\xa2\xe4\x31\x80\xdf\x74\xae\x4f\x26\x98\xfc\x60\x6a\xab\xe3\x8b\xad\x67\xdd\x7b\x26\xd7\x62\xa7\xd9\xe1\x31\xa5\xee\xb3\x99\x2b\x36\x9b\xe7\x25\x2a\xbc\x37\xfb\x90\x82\xde\x27\xa0\xdc\x85\x18\xca\xe0\x9e\x55\x08\x16\x65\xe5\x49\xd6\x39\x42\x2c\x36\xf6\x37\xb6\xa3\x86\x39\x31\x96\x12\x95\x35\x83\x81\xf1\x27\x2c\xba\x19\xb5\x53\xcd\x60\x08\xc1\x23\xfb\x3e\x31\xb6\xe0\xb4\x20\x97\xa6\xa3\x85\xed\xa8\x37\x50\x28\x1c\x2e\x2e\xa9\x1f\x57\x80\x1a\x54\xa4\xfb\x9f\x20\xcf\x54\xc1\xad\xb1\xed\x01\x9e\xf3\xfc\x6f\x02\xa3\x9a\x08\x88\xe6\x23\xc0\x5b\x0a\x1a\x85\xe7\x76\xa4\x2b\x9c\xb7\x67\xdc\x38\x9d\x14\xde\x57\xe1\x8e\x5e\x84\x49\xba\x6c\x4d\x52\x7a\x8a\x31\x80\x70\x6f\x51\xad\x6e\xab\x2c\x06\xdc\x54\xf7\x33\x6e\xe1\xf3\x68\xc1\x46\x75\xfe\x52\xa4\x20\xfc\x7a\xb1\xfb\xa5\x11\x8c\xc2\xfd\xd4\x32\x5b\x1d\x58\x8a\xa7\x7e\x29\x1b\x3a\xdd\x7b\x18\xc7\x43\x2b\xba\x91\x73\x4e\x6b\xc4\x5b\xae\xa5\x3e\xf4\x25\xbd\xa8\x91\x02\x13\x2d\xbb\xcb\xf8\x9f\xda\x65\xfc\x7f\x6e\x97\x3d\x2d\x5a\xe6\xe5\xd0\x5d\xd7\xf7\xe1\x64\x76\x53\x23\x65\xcf\x5e\x80\xf5\xa9\xce\x90\xef\xac\xbf\xc9\xf7\x4e\xd8\x61\xc8\x51\xa4\x24\xb4\x31\x15\xba\x09\xd1\x60\x9c\x2b\x4c\xae\x9d\x2b\x13\x39\xb1\x4f\x86\x72\x0d\x27\xb3\xd8\x0a\x21\x26\x01\x51\xe5\x44\xb6\x4d\x1d\x66\x85\xf5\x43\x96\x33\xa3\x0f\x2b\x9c\x4b\x30\x59\x5a\x3f\x99\xed\x1e\xc7\x4b\xbf\x94\x96\xf3\x25\xad\x2b\xb4\xc4\xf9\xd2\x4c\xf8\xb2\x6f\x51\x38\x83\x44\xbe\xd5\x69\x97\xac\x7a\xa3\x9e\xac\xfb\x9d\x79\x8b\x6d\xce\xbc\xb3\x55\xbf\x3b\x6f\xf1\x05\xbe\xe1\xfd\xdf\x6d\xfd\x60\xb3\x41\x72\x08\x7a\xbf\x12\xa2\xc6\x64\xd9\x1f\x7a\x62\x34\xa9\x5a\x62\x62\x70\x9e\x74\xaf\xcf\x3a\x77\x72\x7a\xac\x8d\x7b\xec\x19\xe4\x58\x50\xd5\x81\x16\x1b\x52\xba\x30\x5e\xb5\x8a\x2c\x88\x20\x85\x9e\xed\xb2\x5d\x14\x26\xb6\x09\x7a\x03\x97\x9b\x4d\x00\x8d\xde\x6c\xaa\x6a\x8e\x7a\x87\xd4\x78\x5d\xeb\x25\xb4\xd6\xcb\xa9\xa7\x50\x24\x69\x55\x6d\x36\x07\x26\x97\x24\x82\x9c\x81\x25\x36\x9e\xa3\xaf\x1a\xdf\x3b\xdc\xa5\x8b\x7e\x77\xe9\xfe\xc9\xee\x2b\xb4\x2f\x75\x8b\x93\xf4\x9d\x8d\xbb\xe3\x25\xda\xe2\xae\x5c\xf4\xba\x2b\xab\xd4\x5d\x19\xe7\x9f\xeb\xcc\xf6\x6f\x49\x6b\xaf\x52\xd1\xd1\xfb\x94\x98\xb8\x0d\x2c\x88\x5b\x4e\x25\xf1\x9b\x98\x2e\x89\xa0\xf2\x5f\x6a\x84\xa0\xc3\xa9\xa5\x6e\x9f\xa1\x25\xbe\x29\xca\x99\xd5\x26\x1e\x84\x73\x99\xff\x50\x3b\xff\x2e\xa9\x57\x5c\xa0\x35\xdd\x00\xd6\x2d\xea\x83\xbf\x96\xd4\x10\xd4\x4b\x4a\xd0\x5d\xd4\x07\x7f\x25\x99\xc1\xff\x2f\x51\x99\xee\x0e\x26\x67\x34\x2c\x09\xc7\x05\xb5\xa8\x0c\xee\x50\x97\x0e\xa1\xf2\xd4\x45\x57\x7d\xf6\xe7\xa8\x4b\x4f\xa1\x68\xdd\xa6\x2e\x25\x39\xfb\x13\xd4\xc5\xc1\x73\x7d\xc1\x88\x3a\xa4\x87\x2f\xa1\x2f\xae\xd8\xde\x64\x24\xa0\xa9\x5f\x41\x66\x42\x71\xdb\xdf\xda\x52\xbf\x84\xda\x44\x98\x64\xe9\x6e\xfd\xaa\xf5\xdb\xfe\x7e\xef\xfe\x83\x94\x60\xf5\x8e\xa4\xaf\xde\x44\x76\x6b\xf1\xae\x59\x56\x26\x89\x30\xdb\x9b\xcd\x1d\x0d\x1d\x7e\xbe\xa1\x7f\xbe\x26\xdd\xa5\x2f\xa0\xa3\x67\x7d\x74\xf4\xac\x45\x47\xd7\xff\x7f\x1c\x1b\x20\xef\x8e\x5b\x7f\x9b\x72\xe6\x91\xa1\x71\x4b\x88\xb1\x02\xc6\xcc\x70\x98\xbd\xe6\xb1\x26\x0c\x45\x96\x0d\xbd\x8e\xa7\xce\xb2\x03\xf0\x4f\x26\xc3\xa9\x67\xb5\x2b\x3c\x13\xc9\xb1\xf2\xb2\x08\x81\x69\xec\x55\x6e\xd1\xbf\xbb\x7b\x09\x39\x5c\xc5\x5b\xc3\x07\x2b\xf3\x47\xd7\x4d\xa9\x6c\x11\x58\x71\x90\x3b\x8c\xec\x96\x2a\x15\x34\x13\x5e\x79\xc9\xc3\xbc\x84\x44\xa9\xe5\xd0\xdc\x4a\x27\xd2\xe4\x69\xdf\x5b\x19\xcc\x94\xa8\xdb\x13\x5f\x52\x64\x66\x5d\xf4\x87\x14\x51\x4e\xaf\x69\x2f\x1f\xe6\xe7\x35\x9a\x90\x76\x6a\x27\xc1\xd8\x1f\xdb\x50\x29\xb9\x7f\xcc\x32\xfb\xb9\x3b\x71\xf5\x14\x18\x53\xfa\xd4\x25\xc4\x5a\x74\x17\xe4\xb7\x82\xbc\x28\xc8\x4f\x05\xf9\xb1\xa0\xb7\x2d\xfd\x16\x11\x4c\x89\x1b\xb8\xbf\x9f\x46\xf6\xde\xdf\x17\xc9\x4d\x1f\xa9\xa9\x13\xfb\xa9\x4a\xb4\xb4\xa4\xa0\xbf\x7a\xb3\x4b\x22\xad\xd0\x84\x44\xff\x4a\xc2\x9b\x0d\x12\x74\xa2\x4f\xaf\xbd\xac\xc0\xe1\xb2\x9d\x05\x01\xb6\x03\x30\x23\xe6\x48\xd2\xe1\xa4\x25\x0d\x3e\xb8\xef\xad\x45\x02\x26\x43\x67\x9b\x04\xb0\xd7\xf1\x99\xbd\x8e\xda\x6c\x86\x26\xc1\x87\xe4\x28\x74\xae\x0f\x17\x95\xfc\xde\x67\x41\xc5\x86\x4e\xc1\x96\xfe\xd7\x8a\x4c\xb3\x22\x88\xb6\x26\x1c\xa6\x0d\x8a\x19\x4a\x25\xa8\x02\x9f\x7e\x3d\xa4\x35\x99\xb4\x1c\xcd\x15\xd8\x1a\xa0\xbd\xcc\x8c\xa2\xd1\x65\x46\xc8\x61\x49\xab\xe7\xce\xd8\x1c\xfe\xcf\xed\x2f\xe7\x9a\x13\x4c\xef\xd9\x0c\x7b\x85\x45\x05\xae\xbe\x29\xe6\x06\xe2\xba\x45\x92\xd4\x1d\xbf\x77\x45\xaa\x00\xb0\xd1\x59\xed\x3f\x16\x7e\x93\x54\x84\x3b\x05\x4d\x4d\x83\x6f\x50\xe7\x13\x2b\xe1\x9a\x8f\x82\x6a\x0f\x62\xc8\x04\x2b\xa5\xf6\xd4\xde\x42\x68\xdc\x10\x12\x09\xbb\x46\x11\x33\xbe\x55\x32\xbe\xdc\xc0\x84\xa4\x97\x04\xdb\x87\x18\x7c\x15\xbf\x66\x80\x31\xb4\xd0\x3c\xea\xe9\xb1\x98\x0f\x54\xba\xf1\x96\x33\x2c\x5d\x6d\x9c\x48\x2a\xdb\xe3\x5d\xeb\x16\xd6\x9a\xde\xb6\x6d\x46\xa2\x56\x72\x3f\xf2\x35\xe9\x0f\x4d\x30\xb9\x6b\x46\x38\xa9\xbd\x8d\x7f\x4a\xe0\xa2\xe9\xe1\x5d\x12\x96\xcc\x10\x6f\xaa\xb3\x30\xec\xe4\xeb\x57\xb3\x5f\x8b\x24\xd1\x81\xb8\xc5\x88\xff\x5f\x5e\xee\x3c\x55\xc4\xb8\x8a\xbe\x66\x12\xa2\x6d\x71\xe7\x38\x9b\xf9\x49\x67\x26\x0a\xe7\xd2\xa3\x7f\x6b\x6d\x11\xe7\x3f\x52\xb5\xfd\x00\xe8\x6d\x25\x9f\x16\xe5\xe5\x75\x21\x16\x12\x62\x29\xe8\xe3\xb1\xe2\xe7\xc1\x20\x20\x17\x44\x15\xd5\x32\xe7\xf0\x27\x74\x2f\x9f\x40\xc2\xab\x7a\xc1\xf2\xba\xc9\x51\x35\x8e\x8a\x82\xb1\xf2\x85\x99\xde\x18\x83\x48\xb0\x4d\xd2\x1f\x52\x6e\x1f\x42\x91\x74\x62\x93\x74\xa1\x34\xe6\x36\xfe\x9e\x9e\x23\xed\xc3\xa3\x06\x9c\x2a\xef\xa1\x03\xc1\x26\x75\x39\xfa\x0c\x71\x4a\xf9\x64\x59\xdb\xa3\x03\x89\xe8\xd4\xc1\x18\x0b\x3a\xcd\xc4\x66\x2f\x55\xb2\x3d\xb8\x97\x98\xbc\xdb\x55\xfa\xe0\x5e\x8c\x2b\x6e\x8f\x25\x96\x9b\x15\xea\x7c\x7a\xc2\x92\xf3\xce\x4d\xf6\xf2\xf4\x0e\x6a\xd6\xd1\x4d\xf2\x3e\xd5\x24\x77\xac\x56\x6c\x57\x68\x8b\x2c\xb4\x54\xd1\x53\x48\x3b\x91\x72\x4c\x78\xe5\x37\x1c\xc0\x81\xb6\x3c\x97\x1c\x25\xbb\x65\xa9\xe7\x12\x23\x7e\xdf\x27\x9e\x4b\x20\xe3\xfb\x78\xce\xb1\xef\x12\xeb\xf5\x5d\x62\xde\x77\x89\x05\xdf\xa5\x50\x40\x14\x5c\x85\xb5\xfd\x96\x7c\xb3\xa3\x3d\xdc\x88\x8c\x4e\x75\x3b\xcc\x89\x2b\x3a\x14\xa4\x6f\x9f\x19\x3d\xa9\xbd\xdc\xae\x7d\x70\x4f\x01\x2b\x79\x04\x53\xca\xdd\x94\xc6\xf1\x15\x86\x94\x72\x8f\x68\x85\x04\xe5\x11\x5a\x94\x67\x25\x7e\xab\x90\xc0\x26\x7c\x01\x06\x3f\x3f\x37\x0a\xdc\xbb\xae\xd5\x78\x8e\x6a\x5f\x41\x7c\xc5\x05\x00\xa4\xfe\x93\x88\xe6\xc3\x4b\xf2\x73\x81\x34\xdb\x06\xa4\xaa\x4a\xe3\x89\xba\x8d\xe8\x9a\x6f\x48\x70\x6f\x25\xae\x2f\xf5\x2c\x81\xc8\x13\xb4\xde\xda\x9f\x70\x11\x57\x5b\xef\x5d\x9d\xdb\x35\xb3\x8e\xa9\x24\xad\xf5\xee\x6c\x4c\x53\x27\x96\xa6\xb6\x5a\xab\xea\x73\xa6\x2e\x98\x18\xe5\xae\x47\xc1\x66\xc2\x70\x5e\x1d\x1f\xcb\x9e\x69\x0c\xa4\xb4\xc5\x4f\xff\x50\xb4\x40\xbe\x8d\x98\x9b\x44\x99\x69\x85\xe3\x71\x70\xd4\x6d\x4b\xfe\xea\x0c\xc2\x67\x0b\xb0\xda\x17\x9e\x77\x6f\xc5\x0c\xe2\xed\x10\xf7\xa1\x5e\xfb\x41\xb4\xb3\xda\xa8\x13\xfb\x01\xa0\x22\xf6\x1c\x34\xd3\xa8\x59\x17\x3f\x89\x29\x0b\xd3\xb9\xd3\xc0\xd1\x61\xef\xed\x47\xbc\x5d\x6b\xb4\x1d\xa3\xfd\x03\xb7\x63\x7e\xfa\x7a\x18\xa5\x6e\x2d\x38\x2a\x3a\x59\x9f\x5b\xe7\xe3\xaf\x20\xdf\xa4\x28\x8e\xe1\xed\xdf\xba\xc6\x26\xe6\x40\xb0\x1b\xf3\xa2\x5a\x2c\x18\x1f\xe5\x60\x0c\xa0\x69\x7c\xf0\xd7\x8b\x57\x73\x8c\x35\x17\x03\xac\x71\xda\x02\x96\xe3\x21\x4a\x87\x39\x96\xb4\xa0\x98\xf6\x24\x0d\xb7\xbb\x5c\x16\x2b\xc9\x16\xa3\x9c\xb7\x5b\x20\xb6\xd0\x06\x9e\xb4\x40\x6c\xa1\x04\x62\x1e\x82\x9f\x9b\x82\x93\x26\x99\xe7\xa4\x5d\xb9\x48\x07\x3c\x0c\xe2\x37\x45\x1c\x0a\x2f\x71\x08\x3f\xad\x91\xf5\xf9\xcd\xb2\xab\x1a\x61\x6f\x59\xe1\xa7\xc3\xc9\xc6\xf7\x26\x8f\x1e\x64\x60\x4e\xd4\x8e\xa8\xa1\x36\x0f\xee\x11\x16\x83\x3c\xed\xe7\xd5\x19\x7a\x5a\x21\x4c\x5e\xd5\x08\x13\x7d\x3c\xa2\xa4\x50\x6c\x8f\xc8\x36\x00\xe4\xfd\xc8\xa5\x7b\x4b\x3d\x33\x6b\x69\x64\xb3\x81\x17\x32\x09\x55\x4f\xf7\xdd\x1b\xa9\x89\x3e\x26\xd0\xee\x56\xed\x5f\xd6\x8b\xe9\xa3\x56\x51\xe1\xd5\x3d\xf7\x06\x3a\x19\x7d\x32\x71\x2f\x54\x68\x57\x6a\x3e\x34\x68\x4d\xce\x5f\x12\x0f\x87\x5b\x00\x28\xc9\x19\x91\xf5\x5a\x94\x2c\x57\x44\xaa\xa2\xbc\xcc\xff\x82\x14\x6e\x9a\x5f\x0b\x9a\x5a\xe0\x85\xd5\xde\x62\x32\xb8\x21\xdf\xf7\xa9\x05\x21\xdd\x6c\x1e\xb8\x47\xcc\xc6\xc5\x4a\xef\x62\x30\x0a\x42\x91\x69\x19\xf6\x77\x84\xf7\x1c\x78\x69\xb8\x0c\x76\xa4\x87\xa7\x47\x3f\x87\xc5\xdb\x3d\xfa\xa3\x93\x3b\x39\xf8\x79\xef\xc1\xcf\xfd\xc1\xcf\xe3\x83\xdf\x19\x1a\xf9\xf7\x0d\x6f\x9f\xfb\xdc\xb3\x2b\xa1\xe8\xa6\x21\xbf\x45\x23\x85\x6f\x1b\xf2\x22\x1d\x39\x87\xa7\xe7\x98\xa6\xf4\xce\xb3\x3a\x43\x45\xf0\xed\x02\x78\xa1\x58\x05\xe5\xd0\x02\x5a\x2e\xf4\x96\x4d\xb7\x18\x02\xa3\x8a\xaf\xd6\x6a\x94\x17\xf4\x03\x43\x4b\x52\x60\x22\xcc\x93\xd0\x39\x8f\x8e\x63\x2a\x52\xaf\x40\x73\x95\x17\xf4\x77\x9f\xf7\xf7\x2d\x79\x6d\x4c\xf6\xbc\x30\x61\x07\x0b\x62\x57\x8c\xf5\x4f\xd1\x9f\xda\x98\x33\xed\x17\xed\x92\x3c\x4e\x6a\x5e\xd0\x4b\x5f\xef\x65\xb7\x5e\xb7\x7e\xfb\xd5\x8e\x35\x7f\xb6\xac\xca\xcb\x7e\xe8\x59\x11\x5e\xa3\xe5\xb8\xe6\xa5\x7e\xa6\xef\xb4\xc0\x52\x0b\x24\x07\x15\x1f\x3c\x37\x98\xa3\xc4\x72\x25\x05\xb8\x52\x8b\xf1\x45\x21\xdf\x5c\x73\x3d\x1f\x4c\xa8\x1b\x24\xb1\xe6\x62\x7b\x12\xcd\xf2\x2c\x8e\xe4\x31\x36\xa0\x1f\x37\x4b\x08\xbb\x6e\xa2\x34\x96\xba\x86\xa5\x79\xbd\x6c\x7f\x5e\x82\xaa\x68\xb3\x41\xdc\x20\xda\x1e\x95\xc7\x74\x34\x32\x9b\x60\xb4\x28\xf8\x39\x13\xf5\x5a\x2e\x6f\xde\x33\xf5\x82\x73\x26\x7e\xfc\xf0\xea\xa5\xee\xba\xcc\xb2\x91\x13\x1f\xdc\x6f\xb9\x5e\xad\x04\x93\xf2\x59\x1a\xeb\xfd\x97\x42\x70\x0b\x7a\x1b\xe7\xfa\x11\x94\x65\x55\xcd\x5b\xef\x8b\xb5\xaa\xbf\x87\x38\xf2\x26\x01\x2d\xba\x5d\x9e\xb3\xcd\x06\xe9\xd9\xc1\x60\x1f\x0b\x88\x2a\x26\xb0\xa7\xb4\x12\xea\xcc\x8f\xad\x70\xa8\x58\xe2\x48\x1e\xeb\x65\xbd\xb4\xe2\x72\x31\xd7\x43\x62\xd7\x06\xe9\x1d\xed\xb5\xf1\x0f\xb4\xac\xc7\xda\xa9\xd2\x96\xb8\x3d\xce\xba\x58\x43\x89\xcc\x68\xe3\x61\xcf\x48\x6f\x36\xeb\x2c\x5b\xf7\xa5\xf7\xcd\x80\x2f\x6c\x8d\x7b\xbe\xc9\xb2\xe5\x51\x79\x3c\xa4\x74\x7d\x54\x1e\x77\xa7\x50\xa7\xda\x0b\x49\xfd\xc6\x0f\x97\xe6\x5d\xec\x30\x61\xbd\xdc\xd6\x77\x4f\x34\x05\xff\xd0\x35\x5d\xcf\xd7\xe3\x93\x93\x0b\x75\xb5\x74\xc3\xb5\xa4\xcb\xf9\xb2\x95\x66\x47\xc9\xf8\x53\xae\x8d\x21\x7e\x32\x35\xa3\xd1\xce\x1a\xe3\x3c\x2c\x1c\x28\x1f\x60\xd1\x36\x9b\x2e\x36\xf2\x3a\xcb\x1c\x56\xcd\x30\x36\x73\xe8\x2f\x37\xff\xf7\xac\xbf\xde\xe5\x86\x7c\xd7\xde\x72\x54\x11\x89\x09\xdb\x6c\x6c\xbb\xcd\xc0\xf6\x2c\xc4\x35\xc6\x0d\xef\x8c\x82\x5d\x35\x5a\xe4\xae\x28\x23\x2d\x2b\x9d\x0a\x67\xd9\x5f\x0b\x38\xe7\xc8\x4f\x5d\x72\x8d\x6f\xb9\xe1\xb5\x4d\x1e\x60\x54\xfe\x51\xf4\x9a\x83\xfc\xc2\x8a\xcb\xf7\x4c\xcd\xed\xdf\xfc\x3d\x53\x41\x09\xcd\x64\x6a\xfb\x64\x0e\x5a\x62\x2f\x19\xca\xcb\x28\x58\x1e\x0f\xd0\x22\x82\xfe\x05\xf1\x00\x7f\xcf\xb3\xec\x1b\x6b\xc6\x66\xf8\x47\x83\x2b\x16\x38\xfb\x29\xf5\x66\xb0\xdf\x20\x8f\xaa\x22\x6e\x6e\xcb\x9a\xcb\x7a\xc9\xc6\x0c\x38\x1e\x85\xad\xf7\x55\x8d\x6f\x25\x53\x9a\x85\xae\xd7\x0a\xc5\x21\x72\x0d\x8b\x54\x37\x49\x30\x61\x25\xe3\x4b\x01\xc1\xce\x62\x21\x01\x27\xf0\x77\x31\x56\xab\x6e\x80\x73\x8b\xf4\x31\x73\x5f\xda\xd8\x1f\xb0\x63\x5a\x7e\x8f\x01\x18\x5a\x26\x7c\xb8\x8a\x98\xc8\x89\x07\xcb\x31\x7f\xef\xe7\x42\xa2\x3d\x32\x21\x2a\x16\xeb\x06\x53\xcd\x13\xee\xdd\x7f\x10\xeb\xef\x43\x9c\xd3\x60\xd5\xda\xb2\x74\xeb\x28\xaf\x94\x71\x5e\x89\xa2\x56\x6c\xb9\xf8\x42\x6d\x7c\x62\x63\x5a\x30\xe7\x91\x99\x01\xc7\x70\xd6\xb5\x03\x59\xf4\x15\x47\x55\x13\xf5\x66\x3f\xb7\x6c\xa8\xb5\x3d\xb7\x5c\xa1\xe9\xe9\x77\x79\x4b\x3e\x6d\x85\x5a\xdf\x4f\xe6\x52\xc8\x1e\x48\xfa\xd4\x2c\x31\xbe\x90\x9f\xf3\x71\xcb\x7f\x19\x7b\x80\x00\x6a\x6c\xca\xc1\x9d\xdf\xc8\xa6\xc8\x80\x7e\x31\xec\x9c\x80\x85\x73\xda\x9d\xf9\x27\x9a\x78\x13\x0f\x21\xc0\x62\x8d\x70\x13\x7d\xaf\x8c\xd2\x42\x8c\x8d\xbb\x35\x09\xdf\xd6\x08\x1b\x98\xae\xc8\xbb\x5c\xd8\x08\xcd\x01\x61\xc5\x77\xd1\xae\x9f\xbe\xe5\xf9\xac\xcc\xb2\x67\x25\xd2\x02\xd9\x1d\xab\xeb\x9e\x5f\x65\x09\x80\x7f\xdb\x68\x81\x47\xd6\xd8\x91\xef\x76\x88\x92\x09\xe3\xf4\x53\x8d\x1e\x7d\xf7\x98\xcf\x1f\x7d\x97\xf3\x24\x2e\xb5\xc1\xab\x10\xce\x8b\x1f\xac\xad\xed\xb0\xc5\xe0\x0a\xdc\x63\x2f\xc0\xde\xe6\xc8\x6d\xab\x0a\xb6\x55\x4d\x2a\xdc\x78\x5b\x6a\x87\x9a\x02\x9c\xa5\xde\xce\xc9\xe6\x50\x52\xf7\xbc\xcf\x22\x85\xa7\xab\x3d\x35\x0c\xe0\x57\xc6\x2c\x27\x15\x0b\x60\x9f\xdb\xfb\xea\xf6\x8e\x52\x5b\xc2\x89\xa8\xde\x92\x51\x0f\xa1\x68\x00\x43\x3a\xde\xdb\xf7\x4d\xf3\xe3\xa4\x7b\x79\xe9\x26\x3d\x5a\x08\x55\x42\xb7\x82\xaa\xd2\xab\xfb\xb8\xc1\xc4\x0b\xfa\xa8\xde\xc0\x38\x2d\xb0\x18\x9b\x94\xa8\x70\x6c\x5a\xcb\x5e\x32\xf5\x70\xb1\x49\xed\xb8\x68\xa9\x8e\xa3\xdd\x8a\x28\x91\x7b\xcf\xa5\x4a\x77\x3f\x02\x8e\x91\x91\x37\xd1\x7d\xea\x7d\x13\xf6\xc3\xe3\x3d\xf7\x18\x21\xc2\xc0\x57\xd6\x1f\x20\xd0\xf6\xd8\xd7\xc2\x02\x63\x15\xba\xba\xe0\x60\xe2\x4d\xfb\x23\x5c\xa7\x16\xc9\x99\x60\xdc\x38\xda\x1d\x87\x9d\x20\xbc\xe3\xbe\x23\xe8\x70\x3a\xeb\x92\xba\x7b\xb9\xa2\xad\xbb\x60\x63\x57\x7a\x37\xad\x9b\x62\xdc\x4c\x1f\x64\x3c\x26\xfa\xe8\x27\x86\x20\x2e\x42\x7c\x6d\x92\xd1\xdd\xe9\x77\x78\xc6\x72\x65\x95\x94\x6c\x36\x8b\xc2\xc8\x7d\x81\xe8\x58\x48\xe4\x7e\x60\x17\xa1\x2d\xa0\x0b\x06\x19\xd2\xdc\xc3\x7d\x81\x1c\x39\xbb\x1f\xc4\xe0\x07\xe1\x71\xfa\xd0\x3d\xdb\x86\x44\x9d\x38\x57\xd8\x49\xc1\x83\xd8\xb9\xdc\x8a\xc8\x66\xde\xcd\x98\x47\xf9\xb6\xcb\xd4\x8d\x09\x4b\x9e\xd6\x60\x1c\x16\x82\x3c\xea\xfa\xd8\xb8\x85\x53\x9b\xc1\x33\xb7\x3f\xf7\x21\xc6\xad\xd7\x01\xc0\x23\x78\x89\x5b\xf1\x16\xc2\x01\xf9\xc2\xf2\x3a\x46\x7c\xe4\x52\x15\xbc\x34\x08\x36\x9a\xad\xf0\x70\x27\x72\x26\x29\x27\x0f\x4d\xbc\x54\x85\x83\x3f\x55\x15\xe1\xdb\xe9\xef\x99\xb0\xa7\x28\x2a\x89\xc4\x79\xd5\x4d\x73\x8c\x47\xf2\x42\x33\xe9\x46\x1b\x21\xe6\xe0\x00\x83\xca\xa4\x1a\x54\xd1\x32\xaa\x09\xb7\xbf\x2e\x21\xa6\x51\x89\x13\x55\x87\x0c\xa1\x69\x4a\x5a\xda\xb8\x58\xef\xea\x1a\xc2\x87\xc3\xaa\x8e\xa3\x75\x95\xde\x7a\xa0\x72\x92\xeb\x66\x83\xaa\x58\x8a\xc5\xb9\x6a\x55\xd0\xc4\x1a\x94\x3a\xd1\xa0\xd4\x4e\x83\x52\xa7\xb3\x5d\x03\xd4\x4e\x57\x83\x52\x6f\x81\x7d\xab\x7b\xb7\x41\xed\xb7\x41\xdd\x85\x7d\x9b\xd5\xfe\x7d\x53\xb7\x57\xbe\x7b\x03\xcd\xf0\x1a\x94\x80\x10\xe5\xcf\x6e\xaf\xd8\x24\x10\x46\xcd\xd8\x65\x98\x46\x0c\x25\xbe\x95\xb4\x72\xd4\xca\xdc\x7c\xcd\x92\x06\xca\xb6\x6e\x5b\xd3\x24\xa7\x4a\x11\x54\xc6\x96\xa3\x09\x4d\xaa\x3d\x3d\x1a\xb0\x16\x45\xd2\x7c\x47\x4a\x91\x6a\x4f\x91\x06\xac\x91\xd4\x5d\xad\x37\x92\x0e\x01\x9f\xec\xbe\x81\x97\x75\x9b\xa1\x32\x35\x99\xf6\x9a\x95\x0d\xb1\x73\xc9\x9a\x72\xb2\xa2\xcb\xd9\x4c\xaf\xfa\x5a\xa2\x92\xac\xc8\xda\x2f\x9f\x95\x99\xae\x2c\xbb\x07\x3f\x74\x19\xab\x74\x52\x57\x64\xe5\x72\xf9\xfb\xc2\x15\xa0\xb1\x76\x27\x74\xd5\x3b\xa1\x2b\x3f\xa1\xab\x30\xa1\x4b\x7f\x17\xb6\xf2\x19\x9a\x55\x7b\x46\xdd\x1b\x68\x83\x9b\xd1\x7a\x8e\x4a\x2a\x74\xe7\xa2\x91\xd6\x3b\xab\x0c\xbb\x2a\xde\x52\x63\xc1\xae\xea\x8f\xcc\x2c\xec\x25\xce\xcb\x56\x02\x06\xfb\xa9\x90\x12\x15\x1b\xed\x82\x30\xc6\x81\x5d\xab\xdc\x46\x10\x71\x5b\x7a\x26\xd2\xdd\x71\x87\x0b\xfa\xca\x7d\x1c\x76\x8a\xaf\x0b\x98\x4c\x88\x10\xd6\xae\xe7\x4b\x8a\x01\xcb\x90\x7e\x95\x65\xd5\x3b\x3f\x95\x9f\x9f\xaa\x47\x65\x79\xcf\x50\x46\xf7\x0a\x1b\x4a\x80\x24\x18\x4b\x57\xed\x09\x73\xd9\xa0\x61\xdd\x2d\xb8\xfc\x72\xe1\xeb\x5e\x2c\x84\xdd\x23\x0f\x3b\x42\x58\xc2\xb5\x79\x19\xd8\x1f\x25\x7e\x96\xa2\xcb\xf5\x94\x7f\xac\xfb\x60\x04\xe1\x55\x2e\x66\xcc\x0a\x59\xde\x8d\x2e\x76\x58\x00\x94\x94\x0e\xdf\xe6\x26\xcb\x5e\x6a\x1d\x55\xe2\x98\x0a\x62\xd5\xa7\xc6\x1f\x69\x24\x8a\x45\x55\x8f\x0c\x1e\xef\xcd\xca\x7b\x28\x09\x40\x4f\xcd\xb2\xd7\xcc\xa8\x10\x9f\x72\x13\x71\x53\xd1\xa7\x16\x88\xb7\xa6\x93\x59\xfd\xb8\x72\x48\x8d\xf5\x0e\xdd\xf3\xa7\xde\x51\x7d\x4c\x4a\xfd\x67\x67\x7a\x3c\x8b\x14\x5a\xf3\x4b\x8e\xb8\x3e\x40\xee\x56\x0d\xbd\x60\x36\x57\xaa\xd1\xf9\xc9\x26\x5f\xeb\xbf\x92\x94\x44\x79\xc6\x8b\xa5\x9a\xe1\x97\xa6\xd5\xfd\x2a\xd9\xe7\xdd\x97\x4e\xf3\xab\xf9\xb7\x93\x6b\xa1\xcf\x1d\x83\xe8\x32\xbe\x2e\xe4\xab\xf5\x52\x55\xab\xa5\xe6\xe7\xb6\xbe\xa3\xc3\xa1\x18\x5f\xf9\x8c\x30\x84\x00\x96\x01\xca\x0b\x3c\x7f\xa6\xeb\x4c\xf2\x30\x32\x9c\xe2\x5c\x0d\x69\xf2\xa9\x57\x0a\x0a\xe7\xdd\x07\x0e\xf2\x3d\xdf\xa7\x19\xc8\x70\x82\xf3\xbe\x4c\xee\x71\x7e\x74\x9c\x8f\x46\xba\x4e\xdc\x34\xb1\x78\xf4\x20\x8f\xf1\x4d\x03\x9d\x69\x9f\x28\x7b\x18\xcf\xe2\x58\x3d\x9a\xb0\x41\xd5\x1d\xb7\xa6\x84\xbf\x05\x88\xdf\x48\xc4\xb2\xb6\x8c\x70\x2f\x6c\x9f\xe9\x70\x4a\xae\x14\x6a\x1b\x43\xa6\x9b\x6b\x2f\xde\x5d\x53\xb8\x04\x03\xe3\x2c\xd7\xf0\xd4\x42\x49\xf3\xd9\x39\xd2\x2c\x34\x09\x06\x05\xef\x24\xfd\x15\x44\x6a\xa7\x68\xf2\x56\x24\x7c\x16\xae\x74\xac\xfb\x71\x6c\x0f\x4a\xc4\xbc\x3f\xb0\xa2\x26\xb1\x37\x4b\x86\xc7\x92\x29\xa7\xd7\x9b\x57\xf1\x2f\x34\xb2\x88\xcf\x23\x32\xe2\x35\x67\x23\x32\xaa\xae\x56\xb5\x50\x05\x57\x23\xcd\xb2\xd9\xd7\xd4\xbc\xcd\x51\x5a\x71\x1d\x30\x5a\x50\xdd\x16\x37\x6d\xe5\x81\x09\xca\xb2\xba\xad\x64\xf4\xd5\xe3\x79\xed\xea\xca\xad\x91\x10\x7c\xee\x1b\xf0\x8c\x47\x6d\xd5\xa3\xef\x68\xff\x03\x3f\x28\xac\x77\xfa\xc5\x7c\x34\xca\xdb\xd7\x3c\xee\x5c\x0e\x96\x38\x41\x1f\x95\xce\xd5\x36\x53\xd0\x18\x65\xf8\x16\x86\xc5\x1c\x34\x0e\x29\x3c\xb6\x8f\xa9\xd2\xeb\xb1\x3f\x61\x50\xe3\x2c\x6a\xf8\xbf\x6a\x51\xc3\xff\xbc\x45\xcd\xba\x2d\xe7\x4f\x1f\xe5\xdd\xb4\xef\xcc\x29\xb4\x67\x4f\xa7\xbd\xe9\x57\x29\xc4\xd6\x89\x92\xa0\x75\x82\x78\x25\xe7\x6d\x57\x07\x30\x73\xba\x9a\x70\x9e\x39\xf1\x0b\xee\xfa\x63\x84\x07\xce\xae\x07\xff\x28\x20\xd0\x79\x27\x36\x83\x72\x67\xdf\xfb\x32\xc2\x4f\x01\x83\x76\xae\x17\x2f\x04\x84\x42\x7c\x5c\x2c\x16\x56\x5d\x75\xc1\x38\x12\x44\x60\xd0\xeb\x80\x85\xf4\x4a\x6e\x55\x4d\xbf\x2a\x56\x73\xfb\x37\x7f\x55\xac\x82\x6a\xfa\xcc\xb3\xda\x88\x43\x60\x67\x67\x72\xa8\x8a\x73\xba\x4f\xb8\x8f\x40\x7d\x6b\x15\x9b\x11\xa0\x99\x70\x4a\x68\x8f\xba\x11\x02\x3d\x47\x8a\xad\x17\x72\xb3\x41\x2f\xc0\xf2\xf9\x27\x49\x05\x26\x56\x1d\xde\x90\x08\xe1\x63\x71\x67\x3b\x3c\x82\x1d\xc4\x48\xdc\x66\x62\x3f\xdb\xa2\x84\xf6\x68\x84\xae\xb9\xa1\x57\x5d\xe0\x16\xdb\x38\x22\x90\x03\x25\x4b\x48\x4f\x0b\x60\xa4\xea\xbf\x83\xac\x12\xf7\x8b\x67\x85\x2a\x2f\xf4\x6a\xe8\x1d\x9e\xbe\x2b\x4e\x11\x0c\xca\x7f\x94\xf3\x1f\x25\x2c\x9d\xf7\x4c\xa1\x23\x75\x51\xc9\x63\x9c\xff\x28\xcd\x4a\xb8\xa8\xa4\x1f\xcf\x80\x31\x6f\x2e\x15\xf4\xcb\x6e\x3b\x90\xbb\x38\xb8\xf5\xaf\xde\xc3\x75\xbf\xa3\xfe\x73\x9e\x8f\x46\x0d\x6e\x30\xe1\xd0\xfd\x0b\x49\x5f\x15\xea\x62\x5c\xb2\x6a\x49\x4e\xe5\x76\x60\xed\xab\xf6\x3b\x03\xa6\xf0\x4a\xd2\x09\x39\x97\xf4\x21\xf9\x28\xe9\xf4\x01\xb9\x91\x74\x7f\x8f\x1c\xe8\xd4\x6b\x49\xa7\xe4\x0f\x49\xf7\xc8\x89\xa4\xfb\xe4\x8d\xa4\xf7\xc8\x07\x49\xef\x93\x4f\x92\x3e\x20\xaf\x25\x7d\x25\xc9\x4b\xab\xf8\x3a\xb4\x7f\xdf\xeb\x0f\x7f\x97\xf4\x40\x92\x67\x36\xe9\x52\xd2\xe9\xe4\xbb\xfd\xef\xee\x4d\x1f\xee\xed\x93\x5f\x92\x5f\xcf\x6d\x9e\xa7\xfa\xb3\xb7\x9a\x17\xd6\xe7\xdd\x84\xfc\x2a\xe9\xfd\xc9\x84\xfc\x66\x5f\xbf\x80\x37\x3f\xd9\x5f\x3f\xda\xbf\xdf\x43\xea\xcf\xf6\xd7\xdf\x25\x7d\x34\x21\x3f\xd8\x5f\x7f\xd5\xa5\xfc\xcd\xfe\xf8\x46\xc6\xf0\xdf\x7f\x91\x7e\x39\xa1\xd7\x32\x43\x1f\xe5\xe6\x46\x1a\xf3\x13\x39\xf7\x6d\x9b\xee\x22\x7d\xec\x7e\x3b\x9d\x6c\x26\x38\xd7\x47\xd9\x37\x72\xfe\x8d\xcc\xbf\x89\xda\x9f\xe4\x09\x9b\xe5\x1f\xb1\xfa\xde\xda\x17\x02\x43\x61\x4c\x0c\x9d\xf1\x57\x18\x06\xbb\x7f\x7e\xab\x11\x98\x76\xc1\x27\xf7\xb2\x00\xfb\xf2\xe8\x11\x98\xff\x84\x0f\x72\xff\xb8\x07\x6e\x10\xaf\x65\xf6\x51\x9a\x1e\xb8\x6f\xde\xcb\x18\x0a\x1f\xb3\xb8\xd5\x7b\xf7\xff\x13\x4d\x77\x10\x8a\x92\xd8\x0e\x9a\x6c\xf8\x58\x99\xeb\xa6\x57\x72\xb3\xb9\xcf\xf6\x75\xcf\xf0\xb7\x7b\xf7\x37\x13\x77\xb0\x3a\xe1\xdc\x45\x45\x78\x94\x47\x05\xef\xc7\x14\xff\xd1\xc3\x3c\xa9\x73\x3a\xe9\xa9\x73\x7a\xdf\x0e\x5e\x72\x58\x3c\xb2\x87\xc5\xa3\x07\xf9\xe7\x9b\x7d\x7f\x12\x9a\x18\x97\x71\x3f\x67\x74\xef\x4e\x4d\xe4\xfe\xde\x03\x9c\xc4\x25\x1b\x52\xfa\x52\x66\x19\xc4\x96\x90\x59\xb6\xbb\xcb\x08\x83\x3d\xc6\x4a\xa2\xca\x78\x09\xf1\xd2\xe3\xc3\xdf\x9f\x3c\xfe\xab\x53\x64\x24\x8b\xce\x9f\x65\x60\xc2\x94\x5c\x4d\x08\x1b\x87\xd4\xe9\x6b\x61\xe2\xc3\x30\x02\x62\x96\x9e\xd3\x73\x3b\xa7\x59\x16\x2f\x54\x0a\x0b\x55\x96\x88\xe1\x1c\x55\xfa\x8f\xde\x8b\x26\xdf\xcf\x9a\x53\xcc\x4d\x22\xba\x97\xbd\x96\x26\xf7\x66\xf3\xe8\xa1\xb9\xa3\x7c\xf4\xc8\xc0\x38\x38\xfa\xf5\x83\x9c\xff\x20\x1d\xb8\x27\x3a\x02\x20\xad\x63\x9c\xa3\x18\xe5\xf3\x07\x09\x28\x9f\x0c\xe3\xcd\x86\x3f\x51\x38\xcb\x7e\x90\x00\xf6\x09\x9d\x88\xef\xad\xec\xb0\x74\x2c\x94\x55\x9f\x85\xb2\xc2\xfe\x74\xee\x58\x28\xf3\x2c\xe3\x7d\x85\xb4\x13\x5d\x21\x22\xf0\x26\xd6\x00\x37\x30\x3c\x22\xcb\x82\x61\x75\x1a\x52\x1d\xd6\x74\x2b\x90\xad\x09\xdc\x2c\x42\x9b\x9c\x69\xf8\x61\xb7\x39\xbd\x6f\xa8\x8a\x2f\x85\x7b\x7d\x2f\x6c\x5f\xee\xf8\x18\x24\x5b\xd3\x23\xd3\x7c\x61\x44\xfc\x9a\x8a\xb6\x9a\xb7\x11\x3e\x6b\x6b\x35\xd7\x59\x86\x5e\xea\xa5\xa1\x1f\x5e\xc1\x45\xda\xef\xfa\xe7\x1b\x99\x65\x3f\x96\xa8\x26\xef\x25\xc6\xe4\x7b\xfd\xa4\x30\x26\x75\x74\x3d\x57\xc6\x0c\x17\x5c\x87\xe8\x66\xb2\x05\x58\xb9\xda\x5a\x0c\x6a\xae\xca\x7f\x82\x69\xa7\xf6\x26\xe5\xad\xb9\x29\x01\xdb\xcf\x39\x72\x9f\xbf\xad\xf8\xb9\xf9\x1a\x3f\xf1\xc8\x46\x7f\xe5\xf5\x35\xb7\xf9\x5f\xb2\x8f\x6c\x89\xe7\x2a\x67\x31\x84\x3a\xac\x64\x77\x73\xd9\x69\x08\x66\xfe\xc8\x6e\x8d\x62\x74\xc4\x84\x3c\x6f\x45\x55\x8b\x4a\xdd\xd0\x47\x8f\xa2\x54\xe0\xfd\xbe\xaf\x91\x4c\x38\x3b\x4b\xf0\xec\x10\xc0\x70\x10\xbd\x52\xe3\xaf\x66\x1e\x5e\x29\x32\x0b\x68\x15\xec\x6e\xaf\xfa\x9b\x39\xe9\x6d\xdd\x24\xaa\x5b\x00\x26\xae\xae\xa9\x45\x1f\x04\x7d\xf4\x28\x9f\x9a\x90\xaf\x7b\x2e\xe5\x7e\x2e\xe8\xe4\x09\x45\x82\x02\xb9\x0d\x74\x52\xe1\xdd\x56\x8a\xc0\x78\xfe\xe8\x51\xbe\x77\x7f\xf2\x84\x8a\xf9\xa3\x87\xf9\x7d\xf7\xf8\x5d\xfe\xe8\x7e\x10\x36\x2d\x6f\xd6\x6d\x27\x80\x14\x6f\xeb\x98\x01\xef\x7b\x42\x85\x37\xd8\x1b\x52\x7a\x59\x67\xd9\x49\x8d\x38\x6e\xb6\x7e\xa7\xfa\x06\x44\x10\x45\x5b\xbd\xef\x99\xaf\xfc\xc7\x1a\x09\x52\xa4\xa9\xe4\xd6\x9e\x68\x79\x77\x40\xf4\xd1\xdd\xe0\xf6\x4a\x50\x4d\x44\xd0\x8a\x40\xe7\x35\x0f\x41\x7c\x04\x97\x9f\xcd\x92\xd7\x73\x83\x89\x21\xb7\x91\xb8\x01\xcb\xc5\xd9\x82\x1b\x36\x40\xb5\xd6\x0e\xe9\xb0\x1e\x6d\x68\xe8\xbd\xef\xcc\xb1\xf1\xa1\x44\x98\xe8\x11\xd5\x67\x13\x87\xb3\x69\xb3\x59\x98\x8b\x57\x37\x4d\x87\xd2\xc9\x27\xaf\xe5\xec\xb5\xdc\xd0\x8f\x72\x16\x6e\x7e\x4e\x4b\x84\x67\x33\x83\x16\xac\x1f\x0d\xd5\x30\x97\xb8\x25\xbe\xbd\xd0\x65\x95\xe0\x40\xf7\x8f\x1a\xc1\x61\x22\xc8\xa9\xf4\x66\x1f\xb5\x21\x1a\xd7\xae\x85\x8a\x3e\x93\xc4\x35\xe0\x47\xfb\xd7\x8c\x41\x7c\xbf\x75\x28\x5d\xc0\xa9\x1a\x48\x03\xaf\xe4\x05\x5b\xfc\x52\x8b\x4b\x3d\x14\xa6\xec\x88\xc8\x86\x2c\xad\x25\xc1\xc9\xd2\xd6\x21\xe8\xef\x81\xe1\x74\x2c\xc8\x81\x34\xcc\xc2\xb5\x6c\x1f\xef\xf7\xf4\xb9\x0b\xef\xfe\x90\x60\x69\x62\x26\x03\xa6\x6e\xcf\x8d\xc2\x1f\x30\x55\x11\xe3\x70\x02\x79\x5d\xb7\xf4\x78\x23\x61\x29\xcf\x7b\x00\x9b\x5e\x58\xda\x03\x7b\xbd\x97\x8a\xd1\xeb\x12\xd5\x18\x93\x64\xcd\x5e\xca\x2c\x9b\x4e\x1e\xa3\x9a\xbe\x93\x3b\xbf\x4a\x58\x7d\x06\xfc\xef\xad\x0c\x5e\x59\x29\xa9\x74\x04\xa6\xda\x6c\xaa\x27\xba\xed\xed\x0c\x94\xbb\x89\xb0\xdd\x69\x9c\x91\x47\x65\x16\x21\xce\xb2\x6a\xe8\xc5\xfb\xc8\x3d\xc1\x18\x64\x74\x0b\x14\x2e\x56\xa4\x63\x05\x0d\x00\x29\xfd\x07\x47\x7f\xb4\xb6\x56\xbd\x75\x0c\xdf\xfc\xfb\xc6\xf0\xad\x66\x7e\x80\x0f\xa9\xbb\x27\xc9\x66\x53\xeb\x61\xf9\x82\x71\x71\xc3\x52\xfb\x61\xa9\xff\xd4\xb0\x24\x74\x78\x48\xe9\x2f\x72\xde\xa1\xb5\xbf\x48\x43\x5b\xf2\xd6\xfc\xcf\x05\x9d\xe4\x5d\xd2\x7c\x29\xf1\xee\x7d\xb6\x4f\x26\x4f\x90\xd0\x0d\x84\x85\xb1\x0b\x3e\x41\x82\x4e\x30\x41\xbc\xfd\x05\xc7\xbb\x35\x7e\xac\x73\x4f\xf7\x26\x4f\xc4\x7c\xba\x37\xc9\xef\x3d\xd4\x4f\xf7\x1e\x4e\xf2\xe9\x04\x1e\xf5\x9f\x7c\xfa\xc8\x64\x78\xb4\x37\xc9\xf7\xd9\xfe\x13\x31\xdf\x67\xfb\xf9\xbd\x7d\x48\xd5\x7f\xf2\xe9\xa3\x07\x93\xff\xbc\x90\x48\x7c\xab\x9f\x42\xc5\x1c\xd6\xef\x63\xa1\xc7\xe2\xb3\x2b\x41\x6c\x5d\x09\x1f\x60\x25\x24\x43\xa6\x37\x82\x25\x5b\xcf\x25\xbe\xad\xe8\xa5\xb4\x4e\xfb\xcf\x41\x64\x31\xe7\xd7\x64\x23\xc7\xa7\x6b\x79\xf3\xaa\xe2\xcf\xd7\x86\x1a\xbc\x92\xd8\x0c\x61\xed\xdf\x3e\x67\xcb\xe2\xe6\x95\x24\x42\x2f\x78\x3d\x70\xbb\xa8\x35\x56\x15\xde\x45\x3a\x77\x4b\xb0\xc1\xf8\x31\xad\xe7\x93\xbc\xde\x11\xbb\x95\xeb\xa9\x5b\xb0\x5f\xd3\xe3\x6e\x97\x3f\xc9\xfc\xc7\x78\xed\x6d\x95\x3e\x1e\x61\xa0\xb9\x86\x72\xb6\x4e\xa1\x70\x6f\x34\x68\x9d\x68\x4d\x7f\xe8\x2d\x79\x27\xc3\x06\x07\x90\x63\xd7\x12\xde\x68\x0b\xd1\xd5\xf5\x9b\x9e\x39\x95\xe8\x9f\x3b\xaf\x54\x7c\x5e\xa9\xce\x79\xc5\x7b\xce\x2b\x11\x9f\x57\xe7\xed\xf3\xaa\xb6\xe7\x55\x9d\x9c\x57\x3c\x3e\xaf\x44\xeb\xbc\xe2\xfe\xbc\x52\xf6\xbc\x52\xfe\xcc\x8e\xe4\xb2\xc3\x76\x8f\xf6\x1e\x4c\x35\x17\xf8\x2f\x1c\x5d\xca\x1c\x5d\x8e\xed\xfe\x24\xe7\xb6\xfa\x1c\xb9\x63\x0c\x06\xd9\x36\x67\xcb\xd4\x96\x25\xc2\xb7\x30\xfc\xd3\x4d\x2c\x02\x66\x59\x6c\x9f\x16\x3a\xf2\x83\x74\xd6\x6a\x3f\xc8\xd9\x0f\xde\x5a\xa9\x27\xe0\xac\x66\x6d\x7e\x86\x50\xe6\xd0\x02\x05\x21\x67\xb5\x08\xd9\x34\x08\x13\x3d\x91\x91\x56\xc3\x76\xc5\x5b\xbf\x01\xb3\xff\x14\x62\x0f\xc5\xd2\xce\xc9\x82\x9d\x31\x01\x4f\xa9\xa8\xf6\x44\xb3\x84\xe8\xc7\x1a\x3d\xfa\x2e\x31\xac\xf3\xca\xc9\x93\x9a\x3f\xab\xaf\x56\x10\x96\xc8\xac\x14\xdd\x9c\xdf\x25\xfd\x24\xa3\x66\xac\x93\x66\xd8\xe5\x33\x05\x63\x3b\xa7\x22\x04\xc3\xab\x8a\x17\xcb\xe5\x8d\x1e\x37\xca\x71\x24\x1d\x47\xdc\xdd\xaa\x6c\xc7\x43\xb1\xc5\xdd\x8b\x8b\xfb\xa9\x46\x8f\x1e\x12\x96\xc0\x66\x73\x50\xec\xc6\x75\xd4\x5b\xea\x38\xeb\x36\x37\xa3\xbb\x7b\x44\x57\x73\x2e\xff\x54\xb3\x17\x5e\xca\x4e\x56\xa6\xb7\x66\xeb\x5d\x8a\x13\x2f\x6b\x27\xb4\x4d\xaf\xff\xdd\xa9\x17\x5d\x52\xba\xb7\x3b\x25\x4c\xc4\x36\xce\x87\xc6\x85\x82\xd3\x43\xd9\xb2\x42\xe3\x33\x6f\x71\xea\x0d\x38\x12\xaf\x32\x67\x6a\x0a\x1a\x62\x90\x7b\x9f\x05\xa8\x2e\x0f\x7d\x50\x47\xc6\x36\xb5\x75\x3f\x4b\xee\xe5\xbc\x07\x59\x6a\x6b\xf8\xae\x42\xa2\x65\x6b\xa8\x73\xce\xd2\xcb\x37\x77\x3b\x61\x7c\xb7\x92\x97\x93\x5c\xe9\x22\x62\x9b\xb0\x97\x92\x32\x72\x28\xc1\xc9\xd1\x03\x8f\x80\xd6\x9b\xbc\x97\x54\xb5\x94\x9c\xbf\x48\x7a\xf9\x19\xcd\x66\x14\xc2\xa6\x0c\xbe\x5a\xb3\x99\x31\xce\x74\xd4\xac\x28\x90\xd7\x00\x1c\x4a\xef\xf0\xe7\x47\xdc\x1d\x0b\xbf\x4b\x7a\x0d\xd5\x9b\x46\xcd\x58\xee\x76\x26\x11\x21\x37\xa9\xe9\xa1\x24\x95\x81\x9c\x56\xf4\xbd\x24\x75\x82\xe7\x33\xb9\xf7\x90\xd4\x89\x05\x64\xdd\x31\x7e\x8c\x74\xe9\x7d\x61\xa1\xfb\x15\xec\xea\x82\x71\xe7\x4c\x55\x11\x69\xb0\x58\xa6\x59\xe4\x4d\x4f\xca\x60\x4d\xbb\x34\x9e\x28\x70\xed\x56\x86\xe8\x9e\x6b\x5a\x6e\x8d\xee\xb9\xc6\xce\x73\x85\xae\xa3\x4b\xb7\x20\x39\xaf\xa2\x8f\xcd\xed\xde\x32\x5c\x4b\xae\x3c\x04\x45\x96\xa1\xa1\x49\xb9\x0b\xa7\x65\x28\x31\xf0\xd6\x36\xa8\xfc\x19\x2d\xfb\x6e\xa1\x28\xa5\x67\x26\xc3\xc2\x5d\x09\xcc\x16\x70\x13\x50\x60\x92\x7c\x41\x17\xc6\x48\xe5\xcc\xbe\x9d\x05\x4d\x71\x69\xd5\xc4\x7a\x45\x94\x29\xce\x40\x3c\x79\x9a\x8a\x3c\x7a\x38\x25\x53\x67\xc0\x87\x63\xcb\xaf\xe0\x98\x5d\x1b\x68\xdc\xef\xc2\xc0\x5c\xd0\xb2\x8a\x58\x32\xb3\xa6\x67\x17\x90\x6f\x8f\xac\x2b\x54\x93\x0b\xdc\xb4\xb1\x45\x3a\x6a\xde\x01\x6b\x5c\x84\x28\x52\x5b\xe0\xa5\x53\xca\xc7\xab\x8a\x9f\x3f\x2b\xca\x8b\x78\x54\x4e\xe7\x28\x79\x05\xa3\xb3\xd2\x0b\xd3\x0e\x13\x39\x05\x85\x62\x01\x10\x49\x41\xf7\x58\xd1\x53\x50\x3d\x16\x10\x9d\xbd\x37\x37\x19\x56\x70\x01\x57\xeb\x11\x83\xd1\xac\x8d\x4a\xf0\x8a\x1e\xc6\x9c\x13\x07\xac\xba\x59\x61\x6e\xe6\xae\xc8\x15\x6e\x92\xd1\xbd\x37\x79\xf4\x80\x94\x1d\xf5\xa2\xef\x6b\x49\x5d\xf8\xed\x34\x60\x5a\x89\x67\x15\x35\x0c\x03\xfa\x06\xd5\xc6\xaf\x63\xb3\x19\x1d\x0c\xe0\xae\x65\x50\x86\x20\xc9\x3b\xa3\x81\x74\xe2\xcf\x00\x0a\x19\x78\x08\x0c\x32\x38\x5d\xab\x01\xaf\x07\x6e\x5d\x0e\x7e\x7a\x31\xb8\x2e\xe4\x40\xae\x58\x59\x9d\x55\x6c\x31\xfe\x27\xff\x27\x3f\x58\x2c\x06\xc5\xe0\xf1\x7b\x1b\xf6\xc8\xe7\xa6\xe3\xf1\xf8\x49\xa8\x6b\x70\x51\x9d\x5f\x30\x31\xa8\xf8\x40\x5d\xb0\x81\x12\x8c\x0d\x54\x3d\x58\x89\xfa\x63\xb5\x60\x83\x62\xb0\xac\x0b\x2d\x6a\x0d\x2a\xbe\xa8\xca\x42\xd5\x62\x50\x8b\xc1\x6a\x59\x94\xec\xa2\x5e\x2e\x98\xd0\xb9\xed\xb5\xfa\x78\xb4\xf3\x17\x3d\xba\xcd\xef\x72\x48\xe9\x07\xcd\x76\xfc\x2e\xe9\x1f\x12\x93\x8a\xfe\xa5\x40\x95\xc1\x17\x85\xad\x6c\x29\x7f\x19\x51\xfe\xfd\x5c\xef\xff\x2f\x19\x69\xb2\xaa\x50\x49\xce\x24\x2a\x49\x01\xd7\x65\x89\x81\xdf\x54\x97\x03\xf3\xfa\x4a\x53\x88\x9b\x15\x83\xb8\xfe\x89\x99\x12\x7a\x70\x2f\x8b\x6a\x82\xe3\x53\xf3\x1c\x7d\x14\xea\xd5\xd6\x6b\x4a\x6f\xe3\x79\xde\x4f\xdb\xce\xfb\x2f\x0f\xdd\x75\xe0\x66\x33\xfc\x51\xc2\x8a\x3c\xc7\x5a\xc0\xff\xf2\xae\x2f\x3a\x5d\x6f\xee\x58\x75\xcd\xa1\xa4\x07\x25\x3a\x94\xce\x1c\xff\x23\xbe\x55\xf4\x63\xb0\x0d\xb0\xf2\x49\x08\x4f\x56\x7a\x2f\x86\xc0\x2c\x3b\x55\x6e\xc4\x3e\xbf\x2a\x3c\x06\xd5\xfc\x55\x91\x47\xc0\xfc\x57\x8e\xf1\x78\xac\x65\xb8\xbd\xc7\x2c\xcb\xd0\xa5\xa4\x0c\x47\x66\xef\xec\xf1\x2f\xfe\xdd\x2f\xfa\x04\x7d\x2e\x69\x6c\x07\xff\x0a\xe4\x14\xf6\xe4\xa9\x5e\x47\x4f\x65\x82\x7b\xad\x99\xfd\xdb\x58\x1b\x7f\x28\x67\xf8\x50\xd2\x1b\xd3\x4d\x9f\xef\x63\x37\x5f\x96\x0d\xdf\x68\xae\xa0\x2f\xfb\x4d\x2c\x1a\x95\x31\x84\x32\x61\xe4\xbd\x8c\xdc\xcb\x53\x83\xfe\x16\xb0\x81\xb3\xd9\xc9\x32\xa4\xf4\xc8\x6b\xb6\xfd\x4a\x26\xce\x51\x24\xd2\x5c\x43\x8e\xdb\x43\x49\x99\x3b\xe4\x94\x3e\x96\x5b\x31\xde\xc2\x41\x8d\xf4\x59\x9c\x1d\xca\xf6\xfa\x05\xf3\x7f\x7b\x73\x4c\x84\x3e\xc1\x2b\x8a\x74\x51\x38\x69\xde\xac\xc7\x12\x70\xcf\x72\x3c\x0f\x12\x23\xa4\xfb\x2e\xe4\x7b\x6a\x04\xe8\x1c\xa0\xf0\x9d\x6c\x17\x41\x22\x35\x8c\x4a\xa1\xe4\xcc\x95\x88\x05\x40\x14\x6d\xe0\xb9\x76\x82\x45\x29\xf1\x06\xf1\x9e\xd9\x71\x9e\xe5\x59\xf6\xa9\x40\xca\x39\x01\x92\xdf\x8a\x96\x55\x09\x30\x7e\x0a\x13\x41\x7b\x02\x9a\x3b\x50\xd9\x34\x22\xb8\x79\x8a\xbb\xf0\xa2\x40\xdc\x00\xf2\x81\xcf\xb1\x05\x35\x77\x18\xea\x1d\x5c\x73\x6f\x60\x54\x39\xc3\xf7\xd4\xe9\x5b\x57\x07\xad\xc6\xb7\xd2\x1d\x8f\xdc\x9a\xc4\x07\x6a\x65\xa2\xb6\x55\x86\x90\xad\x69\xd5\xe2\x54\x5c\xf0\xf9\xa3\x5a\x1c\xd3\x8a\x18\x13\xc8\x35\x59\x3a\x73\xc1\x33\x51\x5c\xb1\x51\x6e\x5c\xc5\x0d\x4f\x66\x7e\xb0\xab\x53\xb6\x18\xe5\x37\x1c\x8d\x34\x89\x1f\xa5\x5e\x39\x23\x4d\xfd\x6b\x9b\xb5\x58\x2f\xaa\x7a\xe4\xcd\x9c\x57\x74\x32\x5b\x3d\xfe\x87\x0f\x61\xbd\xda\xd9\xc1\x37\x1c\xfd\x83\x1d\xad\x8e\x5b\xa5\x18\xff\x48\x53\x0b\x38\x2d\xb6\xab\xa9\xae\xce\x6d\x25\xd5\x55\x71\xee\x1a\xba\xac\xf8\x65\xeb\x23\xb2\xad\xa1\x67\xb5\xb8\x32\x79\x05\x93\x4c\xf9\xbc\x72\x7d\x7a\x55\xa9\x76\xee\x05\x53\x45\xb5\x94\xe6\x03\x55\x9f\x9f\x1b\x97\xd2\xa4\x49\xc6\xc2\xf2\x13\x43\x9c\xac\x4d\x59\x15\xff\x58\x2c\x2b\xa8\x9a\xbc\xe5\x48\x90\x51\xcd\x9f\x5d\x14\xfc\x9c\x8d\x7a\xad\x2c\x5b\x76\x94\xf4\x36\x32\xa4\xcc\x87\xc3\xb5\x37\x5a\x6c\xbe\xaa\xf8\x60\xe1\xf9\xcb\x17\x36\x2e\xf1\x94\x5f\xea\x2f\x56\x86\xfc\xf4\xf8\x46\x4b\xcd\x38\x95\x74\x7d\x24\x8f\x49\xcb\x2e\xd5\xb9\x18\x87\xa3\xad\x9c\xf3\xb1\x6e\x8e\x75\x19\xb6\xd1\x0d\x57\xf4\x28\x7c\x49\xca\x63\x9c\x3b\x3f\xe4\xe8\x4b\x2d\xf0\xa7\x9f\x8e\x46\x3b\xdd\xaf\x75\xe2\x31\xce\x7b\xbc\x8a\xdd\xd6\x2c\xc1\xab\x58\x10\x19\x5c\x01\x96\xa9\x95\xec\x09\x43\x1c\x93\x43\x18\x2c\x08\xca\xd3\x3b\x98\x26\xd7\x53\x88\x70\xdc\x33\x99\x09\xca\xc2\x36\x50\x83\x08\x9d\x38\x42\x2d\xe0\x09\x6a\x81\xa0\x2b\x52\x25\xac\xbd\x88\x82\x9f\x1a\xcf\x64\x60\xbd\xd7\x54\x12\x4e\x2b\xb2\xd4\xe7\x3d\x05\x8b\x8e\x60\x66\x2f\x72\x31\xae\xaf\x39\x13\xcf\xeb\x72\x7d\xa5\x25\xcd\x92\x52\xfa\x96\x8d\x2f\xd4\xd5\x12\x66\xf0\x1d\x43\x6b\x8c\xe3\xe4\xf9\x48\x96\xa2\x5a\x81\x38\xb6\x9e\x23\xb4\xa6\x2b\xeb\x8c\x79\x68\x6c\xc1\xd0\x68\x51\x7d\x1c\x61\x3c\xae\x9c\x9d\x32\x1d\x3d\x36\xdf\x3c\x79\xfc\xcf\x6f\xed\xd3\x88\xac\xe8\x3a\xb1\xdb\x5f\xc7\x11\x82\x70\xde\x5d\x27\x7c\x5c\xc9\xf9\xaa\x53\xdd\x9a\xdc\x56\x32\xd7\x2f\x1b\x9c\xa3\x9e\xf7\x98\xb8\xf1\xa7\xc6\x25\x7e\x4d\x57\x84\x07\x63\xdf\xb0\x85\xe8\x70\x02\x18\x3b\x7f\x68\x3e\x62\x0d\x0f\xd4\xfc\xc6\x18\xe7\x9d\xa2\x5f\xbf\x47\xa5\xde\x07\xba\x40\x0c\x44\x73\x49\xd6\x40\x34\x39\xf9\xb5\x40\x9c\xae\x09\xc0\x46\x0d\xa7\x98\xa8\xd8\xe4\x0f\x38\x57\x23\xd1\x3d\xe5\x48\x92\xca\x2f\x3a\xf9\x67\x68\x2d\x11\xb4\xfa\x02\x7a\x2b\xe8\x64\x26\x22\x5a\x2b\x3c\xad\x15\x40\x6b\x5b\xa5\xf4\xd2\xdb\x76\x55\x7f\x8e\xe6\xb6\x4b\xf9\x3c\xdd\x6d\x7f\xb1\x85\xf6\x76\x9a\x17\xd1\xdf\xca\x22\x9f\xc0\x53\x0f\xb1\x2b\xb7\x91\x4a\xb7\x5f\x01\x0b\xa5\x0d\x69\xf6\x85\x64\xba\x8a\xc8\xb4\x05\x46\xa9\x3a\xc0\x28\x5f\xd3\xa8\x16\xfd\xae\x2c\x64\xca\xd7\x74\xce\xc3\x01\xd1\xaa\x79\xae\x97\xa1\xc0\xc4\x29\x2b\x88\xa6\x1b\x2b\xca\x67\x46\x74\x17\xa0\x27\x5f\x6a\xe2\x7f\xa1\x25\xfe\x8b\x36\x25\x75\xbe\xdf\xa7\xf4\xe2\x68\x19\x7b\x31\x2c\xe7\x97\x1c\xad\xc8\xe9\xdd\x5e\x0c\xcb\xb9\xf5\x02\x38\xa5\xa7\xf3\xd3\x14\xd2\x02\x67\xd9\x0b\x66\x8b\x88\x8f\x92\x65\xcf\x51\x72\x3a\x47\x61\x64\x86\x06\xd2\x42\xff\x3d\xc5\x59\xf6\x93\x2b\xa4\x73\x8c\x9c\xda\x97\xa3\xd1\xce\xe9\x17\x41\x58\x2c\x3f\x03\x61\xb1\x6c\x43\xa8\x2c\xfb\x30\x2d\x96\xd8\xf6\xfa\x14\x0e\x9f\x92\x2c\x1d\xe6\xef\x69\x96\x5d\xeb\x06\x2d\xc9\x29\x39\x0b\x0e\xb3\x72\xeb\x89\x54\x69\x1a\xf3\x55\x27\x92\x5b\xd4\xa6\xc2\xca\x98\x7f\xea\xe3\x54\x32\x75\xa0\x94\xa8\x4e\xd7\x8a\xa1\x11\x24\xc3\x01\x7a\xc0\x90\xcd\x85\x7b\x37\x80\x00\x6f\xd1\x2a\xf2\xa2\xa0\xc3\x21\xef\xb8\x79\x2c\x29\x8f\xdc\x3c\x04\x49\xf2\x2c\xc1\xcd\xc3\xfa\xfd\x24\x2e\x1b\x59\xd6\xcd\xcd\x3b\x4e\x1d\x5b\x71\x82\xfa\x81\x80\xd2\x23\xf5\x1b\x43\x89\xdd\xe9\xe9\x84\xcb\x6d\x1c\x79\xd3\x0a\x63\x73\x97\x3b\xc8\x83\xd4\x4a\xd0\x78\x91\xf4\x49\x05\x3f\x19\xa9\x80\xb7\x5c\x9d\xaa\x70\x21\xd6\x45\x68\xa9\xbc\x53\xc0\xe7\x9a\x20\x5b\x02\x0b\x69\x01\x47\x81\x00\x31\x4f\x65\x2d\x80\xc4\x6e\x41\x61\xc0\x51\xa7\x05\x2b\xef\xd7\x60\x14\xb5\x30\x70\x38\xd7\x05\x10\x54\x51\xa4\xb9\x0d\x19\xb8\x0d\x99\xcb\x94\xdb\xc0\xf6\x38\xfd\xc0\x3e\x81\xa7\x1f\xaa\x30\xf6\x65\x87\xe3\xb2\x4a\x11\x0a\xa6\x5d\xe7\x16\x0b\x8b\x56\x75\x02\x4b\xf4\xc3\x74\xdf\xb6\x01\x14\xdd\x45\xfb\x80\x35\xc2\xa9\x77\x2b\x02\xc1\x2a\x9c\x6c\x38\x87\xc1\xc9\x51\xe5\xf1\x30\x64\x3b\xa2\x28\x26\xc2\xcb\x92\x21\x1a\x19\xe4\x4b\xbd\x31\xbc\xdf\x92\xde\x0e\x2a\xd6\x83\xe3\x39\x4a\x7e\x53\x69\x63\x7b\xdb\x9f\x4b\x08\x29\x15\x67\x50\xb1\xe2\xbc\x95\xdb\x08\xba\x32\x8e\xcc\x89\x31\x11\x59\x36\xac\xb2\xcc\x62\xcd\x06\x3c\xe9\xe0\xa1\x00\x9a\xe9\xd6\xac\xdf\xa9\xa7\xee\xaa\xd9\xe7\x70\xf5\x78\x60\xd5\x76\x27\x12\xe7\x08\x14\x79\x3a\x05\x1e\x4e\xe4\x66\xa3\x5f\xbd\x91\x06\xf6\xf6\x69\xb8\x9f\x7f\xa9\xbf\xfa\xb1\x44\x2f\x25\x79\x2f\xc1\x50\xf0\xa5\x24\x4f\x25\xc6\x18\x13\x24\x36\x9b\xaa\x13\xf9\xeb\x5e\xb2\xbd\xac\x1d\xef\xc3\xbc\xc7\x19\xca\xdc\xd0\x74\x65\x7a\x73\x15\x93\xa6\x3d\xf2\xae\x8c\xa9\x4b\xc9\x5d\x4a\x8b\xe9\xa3\x68\x3d\xda\x11\x45\x9d\x75\x89\x83\x05\x88\xec\x87\x92\xf7\xdf\x2e\x69\x84\x58\x8c\x2d\x3c\xfb\xdf\x0a\x64\x28\xbe\xa3\x41\x76\x6c\x43\x08\x3c\x03\x05\xcc\x3b\x4b\x3f\x41\x8d\x6d\x61\xf4\x85\x35\xf9\x5b\x85\x38\xc6\x46\xdb\xd5\x02\x1d\x26\xae\x6e\xef\xc1\x5e\xd1\x65\x3b\x50\x4b\x0b\x4f\x89\x74\xe3\x05\x6d\x5d\xc2\xc6\xdd\xaa\xdd\xc2\x6a\x86\x39\x15\x10\xe8\x09\xc7\x97\x11\xe7\xaa\xbb\xe2\x89\xec\x62\x6b\xc8\xde\xeb\x25\x33\xbe\x91\x76\x0c\xcf\x91\xdc\x82\x97\x2d\x3b\x20\xc5\x44\xc6\xe8\x20\xb2\x0f\x97\x43\xf6\x41\x86\xc8\xae\xeb\xa9\xec\x42\x86\xe0\x7c\x4b\x53\x96\x7d\xa9\xdd\xe6\x2d\x5b\x09\xbe\xb5\x4b\x07\x8b\xde\x6a\xf0\xb2\x45\xe5\xdb\x6d\x5f\xb6\x48\x6b\xda\x8d\x64\x09\x10\x4e\x97\x49\x8f\xfa\x3a\x08\x44\x55\x3f\xe4\xb7\x69\x4b\xf3\xb6\xb5\x35\x31\x72\xa1\x0d\x6d\xcd\xc7\xf1\x4f\x22\x5c\x18\x64\x2d\x02\x86\x1f\x0d\x8e\x5d\x98\x67\x2e\xd2\x41\xa0\x50\x9b\x3d\x83\x97\x65\x96\x59\x0c\xce\xe1\xdd\x9e\xdd\x91\x3b\x94\x38\x01\x44\xfa\xad\xd2\xec\xae\xb1\xaf\x6c\x6d\x0e\xf0\x67\x32\x3b\x64\xe2\xf7\xbf\x01\x0f\xcf\x32\x87\x11\xeb\x93\x0c\x7c\x2c\x8f\x90\x9a\xef\xdc\x47\xa2\xb3\x8f\xdc\xa7\xad\x3d\x54\xc5\x48\x43\x50\x4c\xfb\x50\x70\x66\x44\x40\x3f\x7e\xad\x11\x7e\xd2\x06\x3d\xcf\xb2\xe9\x63\xd1\xa6\xb3\x69\x0f\x41\xaa\x6d\x5f\x2a\xf4\xae\x59\xb1\x3b\xc5\xb3\x04\x89\x7d\x8e\x02\x66\x6c\x1b\xfd\x59\xaf\xfd\x30\x28\xa6\x33\x78\x1e\x40\x65\x97\xb9\xcf\xe9\xd0\xdb\x97\x71\x20\x06\xd3\x15\x7c\x3b\xf1\x03\x1d\x77\x0b\x75\xe0\xdd\x75\xff\xc1\xa1\x43\x4b\x8f\xf0\x32\x41\x89\xf7\xc8\xf0\xbe\x05\x24\x1e\xe0\x64\xe8\x49\x0a\x7d\x4b\xaa\x38\x7c\x88\x59\x84\x15\x95\xf3\x69\x56\x6d\xf6\xf2\x69\x56\xe9\x35\x18\x78\x8f\xe8\x1c\xf9\x52\x8f\x45\x13\x35\x48\x15\xe7\xb8\xb1\x48\x69\xd5\x19\x12\xf4\x50\xc2\x0d\xed\x7b\xb9\xd9\x4c\x87\x94\xf6\x3a\x0c\x18\xf2\x5e\x69\xda\xe6\x32\x44\xb1\x20\x10\xa7\x6d\x9a\x82\x9f\x54\xe6\x3a\x14\x13\x20\x9b\x7d\x65\xda\x2c\x9a\xed\x88\x23\x48\xf4\xae\x8a\xaa\x89\xdd\x28\x1d\x5c\x6d\x14\xcd\xd9\x5c\x4e\xb0\x9e\xbb\x35\x77\x55\x14\x53\x7a\x30\x25\x89\x29\xff\x61\x72\x10\x44\xe6\x24\xd1\x84\x05\x56\x8c\xa5\xa9\xdb\x82\x95\xb7\x0b\x4d\x50\x9b\x92\xa2\x31\x99\x3e\x8e\x2f\x56\xfa\xab\x9a\x6f\xaf\x28\x6f\x77\xa7\x5d\x19\xc6\x4d\x2b\x04\x00\x52\xf4\x9b\x02\xe9\x37\xb8\x1b\x49\x28\xa3\x7b\x93\x7b\xdf\x91\x64\x84\xef\x8a\xb4\x6e\x2c\x7b\x5a\x76\x1b\xf1\x46\x83\x0b\x21\xcf\xd5\x86\x19\x3c\x94\x94\xa5\x17\x87\x87\xe1\xbe\x2b\x61\x0c\x3f\x58\x24\x9c\x70\x81\x75\x9d\x58\x14\xb6\x70\xce\x5d\x0d\x4f\x42\x78\x8f\xd6\xfa\x9b\xab\xf8\xea\xf0\x8f\xa8\x30\xf0\x76\x8a\x8c\xab\x1e\x91\x93\xb6\x53\x6d\xbb\x2d\x27\xc1\x0e\x1f\xcc\x0b\xbf\xcc\x18\x31\x58\xaa\x05\x33\x29\x80\x0f\xec\xb7\x91\x8a\xb1\x99\xda\x00\xed\x5f\x67\x6b\x05\x26\xcf\xde\x68\xa8\x2d\x01\x7e\xf7\x1d\x98\x15\xfe\xeb\x6e\x22\x64\x9b\xed\xb4\x31\xf6\xaa\xe9\x75\x89\x38\x76\xcd\x4f\x5d\x73\x68\x4d\xc4\xe3\x3e\x9b\xec\xb9\xcd\x9b\x24\xf6\x65\xdc\xe6\xc3\x43\x27\x39\x94\xdc\x2d\x25\xac\xf2\xb4\x20\x7d\x28\x85\xd6\x04\xab\x6b\xbf\xf9\x23\x43\xec\x49\x94\x33\xb2\x70\x0d\x74\x22\xa4\xe9\xbc\xce\x0e\x15\x1d\x4a\xfa\x32\x72\x51\xd5\x24\x21\xe2\xc9\xe7\x8e\xff\x8e\xe9\x01\xe2\x5b\x08\x02\xf8\x98\x25\xc4\x27\xaf\x29\xcf\x5b\x89\x8e\xca\xf9\x98\x2b\xd6\xb8\xf0\x46\x76\xae\x8d\xff\xca\xe9\x47\x6e\x2f\x2d\x7f\xe2\xc6\xdd\xe7\x47\x8e\xa4\x61\x6d\xac\x62\xa7\xaa\xf9\x7b\x55\x08\x35\xaa\xf8\x40\x62\x73\xf5\x78\x2b\x75\x4a\x2e\xc7\x69\x16\xc2\xf8\x22\x4e\x3c\xe4\x8b\xc6\x87\x96\x37\x57\x8f\xa8\xd4\xff\xda\x6a\x80\x2c\x2b\xbd\x2a\xa7\x62\xd7\x9b\xcd\x75\xc5\x17\xf5\xb5\x01\xd4\x74\xa5\xe9\x4c\xf1\x6f\xd3\xde\xa5\x11\x64\x97\x63\x51\xf0\x73\xf6\xac\x5e\x73\x85\x6f\x4b\xba\x1c\x17\xbc\xbc\xa8\x85\xbf\xf5\x5c\xfb\xa4\x37\x67\x67\x92\x29\xb2\xa2\xcb\xf1\x59\x5d\xae\x25\x64\x59\xba\x5f\xe6\xad\x01\x48\xf5\x9a\x0b\xb2\xf2\x8f\xd6\xea\xe1\xb9\xae\x84\xc7\xb0\x6e\x46\x9b\x3f\x21\x0b\xba\x3b\x25\x17\xfa\xbf\x53\x3a\x21\x57\x74\x42\x5e\x51\x49\x2c\x60\xbf\xf2\x70\x54\xee\xfe\xf3\xe3\xec\x95\x41\xf8\x9a\x18\xb8\xde\x7d\x4d\x57\x7c\x6d\x9b\x0d\x5a\xd0\xb3\x9d\x35\x26\x3a\xd7\xca\xe4\x5a\xf6\xe4\xba\xa0\x67\x3b\x4b\x4c\xf6\x69\x9c\x9e\x65\xe8\x6c\xc7\xfe\x06\x2d\x8d\x55\xfc\x07\xbe\xf1\x23\x7d\x15\x5f\xba\xcc\xf0\x39\x7d\x45\x5e\xd1\x8f\xb3\x08\x35\xeb\x15\x40\x66\x99\x6e\x82\x3d\xdf\x39\x85\x0b\xba\x9d\x9d\x53\x7b\x9d\xb2\xa0\x67\x98\xe8\xd4\x95\x4e\xbd\xa2\x46\xdd\x79\xa1\x53\xe3\x8a\xe2\xd0\xfc\x56\xfe\x3d\xa7\xe8\x15\x3d\xc7\x11\xd8\x53\xf3\x8a\x7e\x6c\x4a\xba\xab\xb9\x97\xc5\x66\x03\x7f\x2f\xac\x98\x60\x56\xdd\x02\x96\xd9\x85\xe5\x5d\xcd\x2c\x34\xa5\x1e\x42\x9b\x61\x02\x19\x26\x49\x86\xd9\xdf\x38\xbd\x85\x09\x66\x8b\xc3\x25\xbb\xca\x25\xf1\xcb\xf4\x9d\x5e\x39\x79\xd9\x90\x8f\x9c\x0e\xa7\xe4\x37\x49\xeb\xd9\xa2\x06\xeb\xc8\x37\xa5\x87\x9d\x7c\x1e\x83\x59\xfc\xd6\xa1\xfc\xfb\x13\x8c\x67\x2f\x4b\xf4\x9b\x24\xcf\xb1\x2e\xe3\xb7\x58\x2e\x6d\xd2\xd3\xf0\x37\x89\x67\x71\x35\x70\xb1\x4a\x19\x29\x43\x1c\x8c\xdf\xa4\x35\x6d\xbd\xd1\x25\x85\x18\x08\xd5\x19\x9a\x3e\xc8\x6e\x40\x61\xfd\x5b\x0c\x55\x36\x1a\x61\x32\xdd\x7b\x98\xdd\x98\xcf\x0e\xf4\x67\x89\xd5\x87\x2d\xf8\xc0\xbc\xbf\xa6\x07\x80\xd6\x6b\x53\xaf\xb7\xd8\x2b\x5d\xcf\xaf\x0d\x4a\x6f\x7e\x9d\xd0\x0e\xdc\x38\x9d\xf4\x4d\x86\xa6\x7b\x9b\x73\xb5\xf9\xa8\xb0\x35\x00\x39\x57\xb9\x94\xe8\x37\xa9\xc7\x21\xe6\x3e\xfe\xef\xb9\x4a\xb5\xa0\xdb\x72\x91\xa5\x7e\x11\x19\xcc\xe8\x01\x8b\xbe\xfc\xa8\xf2\xd6\x37\x1f\x55\xaa\xcc\xd9\x7b\xd8\xcd\xf1\xb9\x52\xef\xe5\x9f\xc9\xf0\x30\x2f\x25\x92\x64\x4d\x7f\x93\xa4\xc4\xa4\x92\x68\x8d\x9b\xee\x54\xff\xd7\xac\x97\xea\x0c\x5d\xd3\xbf\x71\x72\x00\xa4\x9a\xdc\xd0\xeb\x71\xb4\x9e\x49\x49\xaf\xc7\xe9\x8a\x26\x07\x43\x4a\x6f\x32\xbd\x56\x6e\x52\x7a\x1b\x40\x5a\x07\x0c\x10\x54\xad\x2d\xf8\x10\x0d\xd5\x66\x33\x34\x81\xf5\x8d\x65\x0c\xa4\xec\x83\x36\xd0\x51\x15\x50\x15\x1a\xe7\x60\x1e\x74\xbb\x50\x50\x8c\x83\x98\x8f\x2c\x40\x91\xd4\x27\x87\x9a\x7b\xc0\x22\x89\x38\xce\x87\x43\x83\xf2\x5a\x08\xe6\x5a\xf5\xb6\x96\x95\xa1\xf3\xc3\xa1\x5e\xe3\x5b\x33\x80\x6a\x0a\x37\xa8\xd5\xab\xf1\xc2\x3e\xd8\xcb\x59\x72\x83\xbd\x6c\x5d\x66\xd9\x8f\x1c\xdd\xe8\xa6\x1f\x18\xf3\x3d\xa1\x48\xb0\xf7\xbc\xa6\xe5\x98\xf1\x85\x7e\x7d\x4d\x0f\xfc\x75\x71\x7c\xf4\xdd\xcc\xd1\x4d\xeb\xb8\xa3\x07\xe4\x26\x39\xec\x0c\x22\xc6\x55\xc5\xd1\x35\xb9\x31\x97\x1c\x8e\xe2\xe2\x1c\x5d\x53\x74\x40\x5b\x6d\xde\x6c\x16\xe1\x0c\x3c\xf8\x92\x33\x10\x5d\xd3\xeb\xd6\x31\x48\xd6\xf4\x26\x36\x82\xb0\x75\x12\x19\xda\xe3\xba\xbc\xc6\xa4\xa4\xbe\xdf\xd0\xe9\xb9\xcc\xa3\x6c\x8c\x2f\x74\xa6\xe1\xf5\x98\x7d\x52\x8c\x2f\xb2\x4c\x3e\x29\xe1\xc6\xbc\x24\x25\x95\x44\xd2\xb5\xae\xef\x05\x47\x37\x44\x62\xb2\x32\x4f\x25\x26\xeb\x2c\x5b\x65\x19\xd2\xc2\xe6\x75\x74\x16\x6f\x36\xd7\xd1\x49\x0c\x46\xd3\x7a\xc9\x84\x64\x73\xde\xc2\x8b\x1a\x1e\xf5\x2b\x7f\x2e\x83\x81\xb4\xfb\x20\x3a\x9f\x21\xdd\xe4\xd7\x93\x86\x0e\xe8\x81\xbd\x4a\x80\xa5\x8f\x30\x80\x4c\xc1\x2c\x21\x53\x23\x71\xe5\x63\x72\x6d\xad\x0e\x0e\x96\x4b\xc8\x2d\x11\x26\xf2\x49\x39\x47\xd7\xe3\x62\xb1\x30\x05\x1c\xe8\x6c\x66\x08\x90\x69\x01\xf1\x15\xe2\x1c\x1d\xe8\xe2\x0f\x7b\xde\x91\xa4\x0c\xd0\x58\x1f\xd0\xa3\x63\x38\x4f\xaf\xe9\xcd\x4c\xcf\x5e\xd8\x24\x33\xac\x8f\xb7\xeb\xe8\xc0\x3e\x30\xf8\xf4\x1e\x56\xe7\x9a\x2c\xd9\x99\xca\xaf\xc7\xb2\x14\xf5\x72\xf9\x92\x9d\x29\xa2\xea\x95\x4f\xf8\x50\xaf\x1a\x13\xa5\xa0\x8f\x7a\xdf\x98\x31\xd3\x04\x00\x1e\x80\x6e\x4c\x66\x37\x8f\x0f\x9c\x09\xc0\xcd\xce\x0e\xd6\x6b\xfe\xe8\xe6\x18\x3b\x90\xf2\xa8\x2e\x7a\x3d\xd6\xf5\xeb\xb1\x48\xde\x7d\xa8\x57\xf4\x7a\xac\xea\x55\xf3\x37\x8b\x94\xac\xcf\xce\xe1\x5f\xb9\xe6\x29\x9d\x50\xe1\x8e\x0b\xd2\x3e\xea\x6e\xa8\xe8\x1c\x73\x7f\x74\x8e\xb9\xfd\x07\xd9\x1f\xe6\xdd\x49\x7a\x96\xd9\x83\xe7\x9a\xde\x10\xa4\x8f\x39\xfc\x39\x08\xf8\xe9\x03\xb2\xbf\x47\x0e\x5a\xf8\x83\xba\xe4\x37\xf4\x20\xb5\xe5\xbd\x97\x1d\x44\xda\x86\x40\xc0\x4f\xf0\x9b\x6e\x0c\x7a\x14\x39\xcc\x7f\xa0\x07\x2d\x90\xf7\x03\x03\xf2\x7e\xd2\x82\x26\xfc\xa1\x46\xe6\x0d\x69\xbd\xc1\xb3\x37\x3d\xe1\x99\xd1\x87\x28\x9f\x51\xbc\xbe\xf9\x12\x90\x78\x13\x1d\xf7\x13\x3d\x48\x1c\x06\xec\xa8\x7f\xca\xb2\xd3\x0a\x4d\xc8\x27\xf2\xa6\x65\x71\xa9\x3f\x7a\xdd\xfa\x28\xf0\x0e\xaf\x6d\x24\xcd\xd8\x3f\xe3\xc0\x1a\x4d\xda\x59\xb1\x3f\x13\xdc\x54\xe9\x32\xb5\x21\x24\xdc\x54\xf4\x64\x68\xa0\x81\xaf\x89\x4c\xee\xfe\x0c\x50\xe4\xcb\x64\xd6\xdc\x0c\x65\x59\x32\x79\x40\x2a\x5f\x92\x6f\xb8\x1b\xee\x83\xd6\x70\x67\xd9\xb5\xdb\x15\xad\xcb\xd9\x04\x42\xbf\x0f\x4a\xcf\xd4\x78\xd0\x8e\x90\xa8\xdb\x76\x48\x0f\x7a\xd9\xae\x43\xf3\xfa\x3d\x3d\xdc\xea\x5a\xf2\xde\x64\xf9\x9d\xbe\x8f\x1d\x4b\xec\xcb\xdf\xb3\xec\x4a\xa1\xdf\x5b\x70\x84\xd3\x47\xf9\xbf\x80\x73\xa6\x79\xc9\xbd\x87\x6e\x97\x3d\xa3\x76\x37\xa5\x41\x1c\x9e\x99\xb7\x97\xc9\x98\xfb\xc9\x6e\x43\x76\xff\x42\x2f\x5b\x77\xf0\xbf\xd0\xcb\xa6\x17\x64\x7f\xfe\x0c\xfd\x82\xf3\x67\x9e\x4e\xfc\xd2\xfc\xb7\xf1\x52\x0e\xdf\xe9\x17\xeb\xc7\x59\x19\x51\x21\xa2\x59\x7a\x00\xbe\x97\xd8\x43\x3d\x31\xf2\x77\x49\x55\x00\x6e\x01\x92\x16\xd1\x30\x95\xd6\x49\x7e\xeb\xde\x4a\xfd\x26\x8d\x3b\x14\x70\x1c\xbd\xb0\x25\x59\x86\x2c\xc6\x54\xcb\x89\x5f\xcd\x35\x41\xf9\x9b\x9c\xff\x55\xee\xec\xe4\xc8\xe1\xfd\x30\x9c\xc3\x63\xdf\xf0\xfe\x5e\x66\xd9\xef\x65\x1c\x53\x8b\x08\xe7\x7e\xfa\xc2\x8d\xa0\xc1\xb7\x62\xf4\x27\xe9\x41\xae\x9c\x8e\x2d\xc6\x01\x32\xe2\x17\xfa\xb9\xb6\x2e\x62\x91\x91\xfb\x9b\xb6\x4d\xbc\x27\xe8\x2c\x25\xe8\x10\x70\x83\x99\x4b\xc8\x2c\xe3\x5d\x46\x9b\xa0\xfb\xd3\xbd\x8c\x19\x0d\xef\x66\xf3\xbd\xdc\x6c\xd0\xf7\x70\xd9\xb0\xd5\x77\x13\x74\x72\xdc\x38\x6c\xf6\xcd\xbb\x6f\xa5\xce\xa8\x57\xd0\x23\x2d\x3e\xff\xdd\xfb\xa9\x3e\xfa\xee\xf1\xdf\xe5\xfc\xd1\x77\xf9\xdf\xa5\x53\x0c\x1a\x34\xaf\x9f\x6a\xc4\xc8\xa7\x32\xf6\x7e\xfc\x54\xa2\x78\x11\xfe\xec\x00\xaf\x86\xd3\x99\x29\xec\x67\xf0\x22\x77\xa8\x60\x9f\xd5\x14\xee\x4f\xb1\x0b\x71\xf7\xda\x38\x21\x5b\x25\x0d\x8b\x7c\x7d\x23\xb5\x4e\x1c\xb3\x15\x10\x35\x8c\x92\x11\xfc\x4f\xf4\xc0\x75\x6f\x7a\x9d\x31\xf7\x67\x4f\xc7\xbd\x87\x64\x02\xa6\x73\x12\x4d\xc8\x83\x7b\x10\x27\xc1\xec\x3b\x91\x00\x38\x6e\xdb\x76\x7a\x65\x35\xdc\xea\xe5\xec\xfa\x67\x9d\xe5\xcf\xa8\x87\x09\x7a\x2d\xa9\x02\x7f\x5f\x32\x9c\x84\x11\x7e\x5d\x3a\xf8\xb2\x35\x44\x7b\xa7\x06\x84\x90\xfe\x05\x4c\x62\xe2\x1d\x11\x3c\x43\x1d\xa8\x55\xfc\x2e\xcb\x8c\x57\xb3\x2f\xf8\x65\xd0\xe2\x06\x40\x26\xa8\x0d\x80\x14\xfd\x9e\x76\x7a\xdb\xae\x8b\xa9\xfd\xd2\x0e\xe5\xeb\x12\x71\xf3\x69\x00\x67\x08\x6f\xad\x3b\x6a\xca\x56\xf4\xed\x50\x7e\x37\x6c\xe1\x66\xd3\x6f\xbd\xf4\x85\x5e\x40\x02\x63\x18\x48\x4e\x18\x5d\x48\xf8\xf3\x97\xc2\xb8\x5c\xf7\x0e\x24\xd7\x03\xc9\xbb\x03\x19\x20\x3e\x22\x1f\xd5\x30\xb6\x87\x65\x1a\x00\x99\x45\x7e\x78\xc1\x1c\x59\x8c\x17\x0c\xfc\xab\x15\x26\x00\x0c\xc5\xb2\xec\xbd\x84\x0b\x60\x0b\x0c\xb5\xd9\xc0\xc3\x09\xa0\x95\xb4\xe0\x4b\x00\x60\xe1\x9d\x7c\xfc\xab\x9c\x83\x0f\xf2\x7b\x89\xf3\xb7\x9a\x32\x18\x04\x28\x10\x57\x27\x43\x4b\x54\x5b\x50\x1d\x59\xa6\x1e\x43\xec\xad\x2e\x52\xc7\x1d\x20\x04\xdc\xaa\x8c\xb7\xa8\xd9\x7b\xb4\xf2\x96\xb4\xc6\x8e\xeb\xef\x5b\x8e\xeb\x29\xc7\xe2\xfc\xd6\xc3\xc0\x4c\xcd\xb9\x30\x35\xd2\xf7\x3f\x24\x32\x38\x3f\x84\x59\xcc\xcb\xf6\x9a\x57\x61\xa9\xb3\xb2\x15\xa4\x2a\x40\x66\x77\x03\xc5\xf2\x24\xd0\x51\xdd\x8a\x59\x6d\xd4\xf6\x09\xa7\x34\xa4\xb4\xde\x6c\x56\xb5\xbf\x58\x38\x2c\xe8\x70\xe2\x0d\xd2\xc4\xe3\x10\x4d\x47\xbf\x99\x26\x51\x73\xf6\xf3\x77\xe0\x44\xf3\xba\x68\x3b\x4f\x57\x67\xe8\x2d\xb8\xd1\xdc\xb3\x36\x48\x59\x66\x3d\xc2\xeb\xb1\xb9\x28\x8f\xae\xb0\xbe\xe4\x92\xd9\xd8\x6a\xcd\xb6\xfa\x17\xdd\xd4\x9d\xc8\x30\xcf\x2b\xa4\x62\xcb\xec\x16\xa8\x72\xcb\x40\x88\x99\xdc\xa9\x59\x94\xb1\x65\x9c\xf5\x32\x89\xdd\x68\xf0\x38\xc2\x30\x03\x3b\xbb\x28\x36\x7c\xeb\x26\x2b\xcb\xc4\x13\xca\xe7\xdf\xbb\x28\xc1\x39\xea\x1a\x31\xc4\x16\x00\x3e\x9c\x30\x9e\xfb\x28\xb2\x26\x2a\x53\x8f\xf5\x43\x8f\xcd\x92\xe8\x1f\xd6\x27\x94\x93\xfe\xa8\xe2\x30\xf9\xae\x43\x3e\x12\xfa\xac\x65\x30\x10\x5f\x17\xd6\x9d\xe1\xc8\x32\x54\xb7\x03\xb2\xd7\x21\xba\x2c\xb6\x77\xe6\x71\x8f\x87\x22\xbe\x25\x73\x67\x8a\xef\x7d\x03\x6b\xd0\x2a\x7f\xe1\x39\xf8\xa8\xb1\x6e\x10\xfc\xd8\x6d\xcd\x0e\x82\x89\xc7\x15\x5f\x91\xb6\x62\xf7\xa8\x6e\x42\x12\x73\x1f\x13\xd6\x8d\x04\x7f\x51\x23\x45\xd6\x61\x13\x11\x51\x81\xee\x8d\xd4\xb4\x2a\x1c\xc0\x83\x20\x8c\xd4\x3a\x31\xb5\x36\x25\x5d\x0f\xf8\x3a\x06\xb2\xee\x3b\x29\xdc\xb0\x3a\x68\x03\xf0\xcf\xfe\xe6\x1b\xf3\xd6\xda\xae\x80\x8b\xb6\x71\xfd\x3f\xad\x21\x7e\xb6\xb9\x32\x1a\x4e\x66\xb0\x59\xac\x89\xab\x1e\xc3\xbe\xc8\xd6\x10\x4a\x44\x1a\x58\xea\x80\x9f\x60\x52\x5c\x24\x17\x13\xc5\xd6\xdc\x31\x89\xbe\xc3\xce\x50\x9d\xbe\x1e\xc8\x2c\xfb\xa8\xc7\x48\x10\x09\xb8\x4f\x56\x28\x15\xf4\xa6\x4a\xbc\x29\x6a\x52\x8f\x53\x81\xf8\xfb\xea\x94\x09\xaa\xc8\x89\xf9\x1c\xd0\x75\x14\x7d\x1b\x0d\xf3\x70\x02\x01\x1a\x5c\xc4\x17\x3d\x10\x13\xf2\xde\x67\x30\x73\xe0\xad\x83\xfc\xc5\xb6\x73\x6c\x84\xa0\x28\x49\x54\xb7\x7f\xf7\x82\x09\xf4\x1c\xe6\x6a\xd7\x84\xf1\x3b\xd1\xbd\x5e\x4b\x7c\xeb\x1f\xed\xa5\xab\x3e\xfa\x4e\x4a\x55\x8b\x99\xa2\x0a\x41\x20\x39\xc1\xe4\x7a\xa9\xa8\x72\xa8\xd0\x09\xaa\xf4\x24\x2e\x2e\x33\x30\xb1\x56\x62\x23\xa1\xec\x69\x5c\x0e\x6e\x30\xb9\xb3\x8c\xf0\xdd\x5e\xeb\x3b\xdc\x34\xa8\xc6\x64\x0a\xcb\xc3\xf5\xc1\x86\x13\x74\x19\x67\x1e\xb5\xcd\x27\x11\xb3\x17\x29\x04\x79\x81\x39\x6a\x8d\x4a\xdf\xaa\xf1\x24\xf6\xb9\x3e\x1a\xe7\xd3\x7c\x92\x04\x4a\x63\x71\xa4\x3f\xcd\x3c\x6b\x7e\xdb\x6f\x0b\xcd\x44\x79\x9c\xdc\xe9\xcc\xc2\x9c\xff\xdd\x27\xdd\x73\xe4\x66\x0f\x3a\xc4\xe8\x0f\x35\xaa\x01\xc6\xc6\x73\xd8\x8a\x3e\x8f\x96\x11\x6b\xc5\x27\x9b\xe6\x8a\x3e\xbd\xeb\xbd\xce\xf0\xfb\x5d\x19\xee\xe5\x8a\x3e\x8b\x32\xe8\x16\x18\x92\xc5\x30\x11\x9f\x85\x7f\x9a\x3c\xc0\xa4\x26\xa3\x91\x47\xa0\xb5\x8b\xda\x87\x8b\xf6\x14\xb0\xcd\x19\x90\xe7\x86\xc4\x0a\xd2\x5a\xfa\x00\x12\x5c\xe7\x3f\xd4\x48\x90\x1a\xeb\x16\xd8\xae\x7e\xb6\xc4\xa7\x5f\x57\x22\x9c\xab\x86\x9d\x70\xd6\x9b\xa2\x15\x6f\xaf\x13\xc7\x7b\xcf\xa0\x43\xf9\x58\x21\x3d\x67\xd0\xbc\x1e\xc7\x28\xe6\xe4\xc2\x50\x0d\xd5\xf5\xc3\xd6\x54\x01\x89\x76\x01\xee\x6b\xbd\x7a\x6a\xac\x19\x1d\x12\x9d\xc6\x01\xc9\xaa\x8e\xcd\xea\x5d\x38\x07\xb8\x92\x28\xa8\x12\x68\x2b\x1b\x12\xdf\xd0\x92\x9b\x82\x2a\x52\xd3\x6b\xcd\x82\x61\x52\x3b\x60\x1c\x38\x4b\x00\x9f\xd0\x9c\x1e\xd6\x30\x75\xc6\x67\x38\x92\x0c\x69\x1c\xbe\xeb\xff\xc2\x9d\x5d\x12\x65\x0c\xa8\xe1\x7b\x37\x29\xdc\x72\x6d\x9e\x0e\xb6\x96\x8c\x8f\x7c\x6e\xd8\x38\x27\x26\x66\xd9\x9b\xc2\x78\x47\x6f\x9b\xf6\x6a\x7b\xe0\x16\x63\x0d\xeb\xa2\x50\x09\xc6\xc9\x5f\x38\x2c\x82\xb9\xb4\x11\xf0\x3d\x2a\x0c\xbc\xe8\x9a\x82\x4f\x1f\x60\xf2\x8b\x89\x64\xbe\x9d\xb3\x9c\x77\x99\x81\x6d\x3c\xa5\x72\xd6\xb8\x76\x5c\x64\x72\x34\x60\xa2\x9c\xd6\x30\x62\x4a\xe2\x61\xe0\x3d\x01\xe1\x3d\x4f\xd7\x8a\xe1\xfe\x19\x76\x14\x86\xb4\x0f\x1c\x80\xcd\xdd\x8c\xbf\x4c\x16\x42\x1e\xcf\xa5\x3b\xcc\x1c\x9d\xf9\xec\xee\xfc\xfd\xeb\x76\xe7\x77\xae\x44\x5b\x69\xbb\xa9\xad\x16\x04\xeb\xfc\xbb\x3e\x0b\xeb\xa0\xd3\x83\x49\xce\xf2\xdb\x88\x65\x1b\x9f\x58\x04\x80\x6e\x4f\x64\xc7\x85\x05\x58\xf9\x8a\xd6\x96\x7d\x77\xa7\xb7\xf4\x51\xe5\x6c\x4c\x00\xa7\xaf\xab\xe8\x0f\x02\x95\xa4\xc2\xf3\x49\x3e\xd9\xf4\xc7\x13\x18\x9f\x94\xc5\xb2\x5c\x2f\x0b\xc5\x8c\xa3\xdd\xe2\x69\xa5\xe4\x7c\x4b\x3a\x94\x96\xc7\xf2\xb6\x51\xae\xfb\x1e\x53\x1a\x6d\x83\x2c\x1b\x46\x02\xd8\x6d\x4c\x5f\x3c\x68\x87\x57\x64\x70\x1f\x5a\x4e\x79\x44\x03\xe4\x00\x3d\xa8\xc2\x4e\x00\x2d\xad\xaa\x6e\x49\xcb\xc4\x3c\x3b\x92\x12\x97\xf8\x56\xd2\xd2\x8e\xbb\x53\x92\xac\xe9\x32\xb1\xc1\x76\xe5\xad\x8d\xaa\x64\xed\xa1\x18\x40\xf8\x07\x51\x67\x3d\xae\x4f\x25\x13\x1f\x4d\xdf\xb3\x0a\xe3\xdb\xa9\x03\x5d\xca\x32\x84\xd6\x9d\xe8\x0e\x00\x09\x54\x12\x70\x3e\x6e\x43\x72\x73\xe8\x4f\xdb\x1e\x3f\x08\x43\x6b\x5a\x46\x36\xfd\x59\xb6\xee\x2b\xa0\x9d\x08\x05\x54\x7e\x9c\xf4\x82\x6b\xdb\xd0\xc3\x77\xed\x44\xea\x55\x24\x6b\xba\x36\xf1\x55\xcd\x54\x48\x3a\x9d\x84\x3e\x1a\xf4\x98\x28\xf8\xaf\xa6\x66\x6e\x64\xc3\x80\x4b\xec\xa0\x39\x68\x19\x54\x53\x92\x96\x91\x69\xae\xb9\x84\x81\xd0\x23\x32\x32\x42\x8a\x25\xad\x92\x46\x76\x99\xb7\x7e\xee\x3d\xec\x87\x2e\xd0\x7c\x14\x85\xa6\x2b\xa9\x6c\x1a\xbb\x0d\xeb\x74\xe7\x6d\x39\x02\x1e\xb9\xcd\x5b\x3b\x2a\x22\x8c\xb7\x4b\xbc\xfd\x70\x28\xca\xc9\x3c\x82\x0a\xcd\xe8\x55\xa8\x26\x55\x70\x2c\x8a\x97\x08\xee\xc8\x40\xdb\x69\x99\xa7\x9f\x15\xf0\x63\xae\x29\xad\x56\x90\x67\xb6\x67\xc4\x64\x33\x99\x2a\xcb\x34\x79\x85\xa8\x29\xe9\xd2\x11\xa3\x9e\x92\xe2\x0f\xbe\xfb\x3c\x19\xfd\x0c\xf5\xfc\x97\xc4\x06\x27\xc2\x81\xf4\x36\x47\x8c\x0e\x27\x04\x24\x37\x9c\x43\xa0\x28\x37\xde\xd7\x86\xa5\xa9\xb1\x13\x89\x40\xc0\x69\x09\x44\x2c\x74\xcb\xcf\xab\x17\xeb\xdb\x71\x5c\x23\xbb\x73\x10\x40\x7e\x37\x76\x56\xe4\x99\xb5\xb7\xf2\x6a\xb0\xcb\x08\xed\x10\x62\x8f\xe8\x16\x33\x02\x8f\x97\xec\x86\x72\xf3\xe8\x7d\x01\x20\x3c\x09\x9c\x65\xf0\xe8\x88\x16\xe4\xf1\x22\x9f\x29\x48\x8f\x26\x3c\xc5\xc3\x6b\x7a\xa4\x53\x2b\xbe\x60\x9f\xb4\x90\x6f\xca\x39\x8b\x5e\x25\x61\x75\x95\x49\x4b\x1c\x54\x20\x25\x95\x78\x21\x29\x76\xc7\x48\xf2\x44\x4e\x3f\x26\x5d\x37\x53\x98\xe7\xc0\x7f\xbd\xb2\x75\xc5\xde\x03\xfa\x77\xe2\x0d\xa5\x13\xda\xda\xf3\x30\x2c\x6d\xac\x4f\xa8\xa0\xa3\xd7\xd0\xa9\xe9\xe2\x09\x8a\xc9\x5f\xa2\x19\x71\x4c\x0b\xbb\x8e\x27\x2a\xe4\x05\x21\x2a\x98\x07\x81\xb4\xb4\x12\xb5\xaa\x2d\xde\xd8\x90\x8d\x2b\x69\xa2\xbb\x38\xbd\x74\xf4\xf5\xd3\x96\x0a\x34\x5c\x8c\xa6\xcc\x12\x9f\x23\xc4\xa9\x6e\x97\x5e\x1d\x44\x8b\xa0\x97\xec\x86\x30\x0b\x49\x97\xcc\x2f\x4b\xa5\x6e\xb3\x0a\x98\x55\xda\x44\x4b\x84\x25\xa1\x85\xc3\x58\xb0\x34\x16\x33\xce\x11\x6f\x2f\x07\x9e\xce\x18\xef\xcc\x06\xef\x3a\x98\xf1\xb6\xe5\x3c\x26\xfd\x81\x16\x7a\xcd\xd6\x49\x27\xc0\x44\xdb\xf4\xdd\x95\xe6\xbe\x6f\xbb\x08\x77\xa2\x6b\xb7\x7c\x53\x3b\x51\xb6\x13\x5f\xa3\x34\xba\x15\x04\x55\x48\xdc\xb7\x78\xaf\xfb\x96\xea\x77\xdf\x6a\xb3\xd6\xa9\xfb\x96\xda\xea\xbe\xa5\x62\xf7\x2d\xe2\xa5\x92\x10\xf3\x8b\x70\xbb\xa7\x99\xf9\x6b\x50\x93\xe0\xc6\xe6\x2c\x8e\x1a\xf5\xd6\xaf\x64\x4d\xec\x5d\x98\x45\x08\x59\x23\x28\xeb\xbd\x2e\x65\x18\x56\x3a\x04\xc6\x8c\xdc\x2a\xbb\x00\x03\x0c\x4b\x7a\xdf\x19\x35\xa7\xe1\x14\x07\x6f\x1d\xd5\x7c\x57\xba\x28\x1b\xfa\xd0\xab\x49\x45\x94\xa5\xac\x3f\xe5\x92\x3e\x24\xf5\x86\x7e\x17\x0b\xf5\xef\x5c\x6a\x12\xee\xfa\x57\x5b\x1c\x62\x7a\x6b\x4c\xf7\x08\x27\x8a\x3c\xdc\xd4\xad\x0d\xf1\x2b\x31\xab\x1f\x1e\x5a\xab\xa8\x22\x16\xc7\xee\xfb\xb4\xac\x7d\x28\x4b\x97\x04\x5f\x7e\x4f\x92\x5d\x65\x7e\x6f\x29\xe9\xe7\xb4\xa4\x47\xbe\xa4\xb8\x80\x9f\xfb\x0b\x70\x3a\x09\x3d\xb2\x1d\x8d\x66\xac\x99\x71\x03\x1b\x29\x2c\xa1\xf2\xdf\x72\xcd\x54\xa5\x10\x7d\x2f\x72\x49\x1f\xa5\x49\x3f\xea\x6c\xad\x50\xbd\x7f\xd7\x69\xf7\xd2\xb4\x1f\x72\x88\x3d\x25\x52\x4b\xee\xd6\x49\xb7\xef\x1d\xf9\xd8\x9c\xe5\xae\xb1\x91\x0a\x05\x29\x3d\x12\xb2\x77\x20\x98\xd3\x61\x89\xae\xab\x5c\x15\xe3\xb6\xbd\xeb\x10\x65\x33\xc0\xdf\x11\x46\x04\x51\xba\xd8\xb6\xfb\x69\xe4\xe7\xf2\xab\xbf\x86\x8b\xbf\x7d\x60\xef\x8e\x3e\xfb\xf9\x6f\xed\xcf\xa1\x47\xf7\x3c\x73\xe2\xd7\xf2\x3c\x3c\xe6\x47\xc7\x96\x4c\xf7\x96\x1e\x2b\x68\x6f\x13\x31\x36\x6f\x07\xd8\x75\xe8\x6c\xae\x60\x68\x72\x75\xb5\x32\xc3\x08\x85\xe6\x6c\x9c\x26\x34\xf1\xd8\xbd\xf0\xcd\xf7\x0c\x86\x3d\x67\x53\x94\x3c\x13\xf9\x2c\xaa\xda\xf1\x21\x01\x20\x34\xe6\x0e\x5c\x83\xa2\xaf\xb7\x5e\x09\x26\x6f\x83\xaf\x8e\x69\x4f\x1b\xdd\x38\xa9\xc4\x8a\x4a\xbe\x71\x0e\xa0\xce\xe4\x72\x41\x3f\x2d\x97\x94\x86\x0c\xf1\x9c\x03\xc0\x61\xc7\x9d\xec\x71\xda\x09\x7c\x47\xe4\xaa\xe2\x13\xa3\x9b\x51\xcf\x7f\x74\x5d\x6c\x7c\xf6\xd4\x91\x26\x34\x64\x5b\x7a\xec\x01\x14\x5d\xf9\xff\xd4\x87\xed\x9d\x94\xe1\x41\x12\xfb\x5c\x81\x00\x37\x80\x67\x19\x7f\x62\x20\x20\x69\xb4\x26\x7e\xfc\x6c\xd1\xa4\x37\x36\xc4\x8c\x3f\x56\xdb\x1c\x86\x14\x26\x48\x3c\x51\x9b\xcd\x04\x7c\xb5\xbc\xf3\x4f\x27\x97\xfa\x62\xa7\x22\xf5\xe5\x4e\x45\xa1\x6f\xdf\xdb\xbe\xa9\x27\x5d\x23\xa2\xd0\xf6\x78\xcc\x55\xec\x95\xd6\x19\x63\x3b\x8c\x48\x3d\xa1\xfc\xdf\xe1\x87\xa5\x9e\xf4\x7d\xb0\x6d\xb8\x76\xa6\x98\xe8\x9e\xf4\x96\x76\x47\xa4\x0e\x15\x5f\xb6\xff\xdc\x9a\xee\x76\x24\x02\xd0\xe2\x70\x17\x47\xac\x67\x7c\x63\xb6\xf5\xef\xbd\xfc\x83\xf2\xe0\xa5\x0c\xee\x77\xf1\xad\x02\xfd\xd3\x8d\x42\x9c\xf2\xbe\x1b\x28\x6c\x62\x9e\x81\xee\x11\x44\xa5\xb6\x47\xde\xc4\xda\x00\x95\x94\x6f\xc5\xb1\x2d\x63\xb8\x59\x47\x21\x66\xce\x1d\xc7\x6a\xda\xab\x33\x74\x5a\x23\xa3\x62\xd0\xf2\x7e\xf2\x4d\xcb\x5a\xf4\x95\x65\x03\x5f\x31\x71\xce\x16\xcf\x22\x4c\x74\x57\xea\x5d\xf8\xaf\xb3\x76\x1f\xa6\x26\x9c\x44\xcb\x02\x66\x49\xb9\x47\xc1\x3c\xad\x01\x1d\x8a\xd3\x8f\x35\xe2\x64\x49\xca\x48\x67\xc5\x69\x69\x94\x25\x9c\x2e\xeb\x96\x54\xa0\x5c\x6f\xe7\x2a\x50\xc6\x5c\x75\xd0\x3c\x89\xa2\x15\x41\x35\x2d\x2b\x10\xa9\x71\x37\x38\x29\x6b\xa2\x7b\x72\x7f\x1d\x6a\xd9\x57\x65\x2e\xa1\x7d\x10\x4e\x85\xc9\xba\x42\x12\x84\xf3\xd2\x80\x62\x89\xb0\x36\x7e\xe8\x80\xf7\xfb\x75\x41\x2a\x63\xb0\x51\xd0\x57\xd5\x58\x5a\xa8\x64\x6f\x58\xe6\xbe\xab\xe9\x3f\x24\xaa\x48\x4d\x0a\x4c\x8a\x44\xd6\xfa\xab\x0b\x3a\x66\xc4\x2c\xa7\xec\xb3\x2a\xbc\xd8\x33\xd4\xb3\x47\x5d\x5b\x5b\x8f\xe9\xe5\xc0\x65\xdb\x76\xb5\xa1\xbe\xbf\x45\xce\xb1\x77\x87\x3b\xd4\xdd\x4a\x22\x1e\xaa\xc7\x54\x95\x59\xb6\xbb\x6b\xcf\xd9\x93\xb6\x32\xbd\x74\x27\xf0\x89\xa8\x6b\xe5\xce\xd9\x13\x37\xc8\x56\xc0\x3e\xe1\xe9\x69\x77\x72\x51\x48\x7f\xea\x9a\x94\x45\xb5\x70\xd1\x19\xc0\xb4\xc4\x14\xd3\x3d\x99\x4d\xfc\x07\x1a\x1b\x94\x7d\x53\x22\xcb\x11\x44\xf5\xc6\x5f\x40\xd1\x57\x95\x0a\x05\x43\x28\x08\x9d\x92\xfe\x34\x6e\xc2\x10\x56\x35\x14\xff\x97\x96\xe9\x93\x96\xa1\x1d\x27\x62\x2f\x38\x00\x4a\x07\x36\x86\xbb\xed\x21\xb5\xe6\xac\xf6\x89\xb7\xa0\x26\x26\x88\xda\x77\x26\xa6\xda\x7c\x3f\x9f\x78\x27\x65\x11\x85\xc2\xaa\x23\x76\x4a\x10\x76\x54\x88\x63\x2a\x42\x78\x00\xa3\x65\x8d\x1c\x7b\xc2\xcc\xbe\xd4\xcf\x33\xd9\x17\x5d\x98\xe3\xdb\x43\x6e\x6d\xd9\x1a\x8c\x49\xf9\x05\x99\x1a\x00\x75\x62\x91\xe3\x4f\xce\x5a\xde\x9c\xf1\x76\xf9\x47\xca\x9a\x9d\x54\x96\x08\xbd\xd3\xab\xc2\x8f\x60\xc8\xcf\x96\xf6\x68\xdb\x92\x7b\x8f\xc4\x84\x5a\x2d\x13\xed\x04\x33\xb4\x96\x45\xfe\x14\x8f\x5a\xbf\xa7\xed\x0c\xe8\x61\x92\xb0\xd9\x8c\x06\x40\x2d\x77\xaf\xea\x35\x57\xbb\xab\xba\xe2\x6a\xd7\x69\x28\x07\x23\x9f\xf9\x67\x03\x84\x16\xda\xc2\x97\xe1\xd0\x70\x76\x14\xee\x54\xd0\xed\x7f\xe6\x18\xcf\x59\x00\xf1\x2d\x68\x95\x76\x72\x9b\xad\x60\xed\x0e\xa1\x7a\x56\xc7\x51\x82\x8d\xe9\xe9\x5f\x4b\x54\xe0\x99\x61\xfb\x20\x9e\xcb\x0f\x25\x52\xa4\x20\x10\xae\xc6\x5d\x3f\x6e\x69\x0d\x4d\xc3\xb2\x54\x67\x48\x6d\x36\x48\xd1\x21\x1a\x22\x45\xd9\xbc\x3d\xdb\x6d\x2f\x2b\x87\x51\x00\xdb\xd6\x98\x1b\x99\x59\x50\xd1\x98\x0e\xd5\xf8\xa2\x90\x11\xaa\xdc\xa2\x50\xc5\x2e\x34\x46\x93\x87\x11\xc6\x98\x0c\x0d\x36\x11\x1c\xe0\x33\x77\x84\x43\xa9\x33\xcc\x12\x9c\x50\xee\x77\x08\x84\xce\xd6\xcb\x62\x42\xd4\xfc\xd6\xee\xb1\x7c\x38\x69\x1c\x72\x60\x83\x34\xa1\x26\x9d\x71\xee\xd5\x01\xd4\xee\xf2\xe7\x8e\x41\x2e\xc3\x20\x9f\x95\x28\xb6\x49\x8e\xc7\x3c\xc4\x77\x85\xaf\xa2\x48\xa5\xcb\x98\x4d\xd9\x7b\x5c\x88\x73\x18\x4c\x69\xfd\x71\x22\x3b\x1a\xff\xea\x68\xef\x78\x1e\xff\x30\x16\x35\xfa\x98\x50\x4b\xa4\x3a\x37\xde\x13\x4d\x9f\x6d\xed\xfd\x46\x81\xfb\x5f\x56\xed\x7e\x5c\xed\xbe\xad\xd6\x14\x7c\xeb\xc4\xf2\xfc\x29\xb9\x64\x26\x44\x3e\xa5\xc2\x9c\xa7\xa3\xd1\x8e\x20\x5e\x4a\x64\x24\x15\xfe\x54\x5b\xb2\xe3\x4d\x63\x9a\x67\xee\xd7\x1b\xc6\x3a\xb6\x8c\xce\x7e\x2b\x45\x3f\xac\xce\xd0\x4b\x86\xac\x6d\x0f\x1f\xf3\xe2\x8a\x91\x91\x28\x16\x55\x3d\x32\xbc\x08\xec\x6f\x43\x88\x6d\xd0\x13\x4e\x4d\x94\xef\xe0\x7f\xa5\x39\xb7\xe8\xb7\xc9\xc4\xc7\xbf\xaf\x99\xb8\x31\x2e\x76\xb5\x38\x58\x2e\x91\xa9\xf4\x48\x57\x42\x47\x3b\x7f\x79\xff\xe6\xf5\xd8\xa8\x86\xaa\xb3\x1b\x34\x1a\xed\x28\xbc\xf3\x1f\xc7\x47\x20\xe9\xdb\x36\x1c\xff\x87\x6e\xd7\x64\xa6\x1e\x73\xe7\x6c\xa5\x76\x76\xfc\x61\x71\xa4\x8e\x41\x1f\x65\x74\xff\x42\x13\xde\x2b\x03\x68\x52\x8b\x2b\xc7\x5a\xac\x05\x12\x60\xbe\x30\xac\x5b\xd3\xfc\x48\xcf\xf2\x1b\x86\x04\x26\x2f\x19\xb0\x3d\x89\x63\x48\x04\xff\xf8\x9c\x21\xd6\x06\xd2\x76\x90\xa5\x06\x91\x51\x79\x44\x46\x00\x59\x64\x29\xc8\xa2\x22\xc3\x29\x6e\x1a\xf2\xb7\x32\x28\x7e\xad\x69\x59\xdb\x1c\x67\x18\x9d\xc4\xed\x65\x79\x1f\xd8\x86\xce\x21\x3f\x9c\xb4\x8f\x74\x66\xed\x99\x02\xf7\xd0\xda\xba\x8e\x33\x68\x29\x19\xcd\x01\xfc\x4d\xd9\x66\xb8\x4c\x10\x0e\x73\x25\x1e\x4e\x74\x7d\x48\xa5\x5d\x52\x17\x8c\xb7\x3b\xd4\x61\x41\x30\x43\x49\x80\xd6\x16\x77\xe1\x7c\x91\x0c\x58\x7f\x9b\xf5\x38\x3a\xc6\x44\x19\xff\x3e\xd6\x19\xd1\xd2\xf0\x1d\x1d\xb2\xb3\x75\x18\x54\x1a\x0b\xab\x35\xfc\x1e\x87\xb0\x0d\x03\xb2\x77\x7f\x6a\x2c\x62\x3a\x73\xe1\xa8\x52\xdf\xe8\xc2\x07\x9a\xa8\x6b\x16\xe8\xb6\xf3\x69\x96\xa1\xfe\xef\xa8\xea\xcc\x93\xbd\x8d\xd1\xeb\x07\xa5\x53\x8f\x71\x14\x8c\xcd\x58\x82\x52\x35\xab\x6d\xb5\x33\x2c\x34\x1f\x44\x6b\xc3\x35\xc6\x81\x96\x7b\xbb\x28\x2c\x77\x69\xf3\x93\x88\xe1\x54\x24\x1e\x3a\x28\xbd\x09\xb3\x6d\xf8\x48\x30\xfc\xf8\xac\x1b\xc7\xde\xfd\x7d\x8c\x67\x3f\x27\xc1\xdd\xc0\xb1\x41\x45\x0c\x2e\x69\xf3\xba\x41\x16\x49\xdb\x81\xb3\x4c\xb5\xc6\x55\xf9\xa1\x8a\xc6\xc9\x5a\x2d\xf6\x72\xd0\xae\xf9\xad\xe5\x15\x05\x39\xa3\x69\xf4\xb6\x61\x77\x91\xdf\xf6\xb0\xde\x93\x59\xbc\x1e\xc3\x8a\x8f\x0d\xca\xdd\xec\x19\xb2\xc7\x62\xb2\x87\x26\x84\x1d\xa9\x63\x8c\xf4\xc2\xff\xe6\x6b\xf6\x9d\xde\xac\xff\xce\x5d\xf7\x4d\x77\x58\x5a\x1b\xaf\x3d\x28\xba\x05\xb7\x1d\x91\xe1\x5f\x1c\x10\xa7\xa9\xb0\xe7\x40\xe0\x47\x02\xae\x2b\x6f\xeb\x0b\x1e\x4d\xc1\xda\x86\xeb\x41\x6c\x08\x5b\x76\x09\xf2\x3f\xee\x24\xd2\x81\xf3\xe8\xb2\xd7\x1d\xfa\x79\xb7\xc0\x2c\x8c\x4d\xa9\xc2\x04\x04\xe2\x2d\x04\x36\x69\xe2\x9a\x03\x4b\x9d\xb6\xd1\x25\x76\xe5\x96\x9e\x26\xf2\x2d\x4d\x64\xa1\x89\xd6\xae\x42\x1f\x65\xdc\x34\x91\x41\x13\xed\x3d\xb7\xbd\xaa\x8b\x5a\xc9\x5b\xad\x34\x5e\xe4\x66\x43\x76\x88\xb1\xae\xfe\x6f\xa5\x11\x04\x81\x00\xb7\x89\xdb\xb6\x91\x6d\x51\x6a\x4f\xb8\xe2\x17\x70\x33\x19\xf6\xb3\x59\xf0\x96\x21\xd1\xbf\x63\x77\x9a\x6e\x8c\x43\x83\x8f\x29\xa8\x25\x7b\x33\x57\x94\x88\x62\xc2\x23\x6e\x13\x99\xe7\x4f\x59\x43\x0a\x46\xd7\x25\x91\x8c\xae\x4a\x52\x32\x5a\x96\x64\xc9\x7a\x17\x8d\x05\x12\xda\xfb\x9a\xe8\x81\x06\x11\x6a\x49\x6f\xcd\xb8\xbe\xad\x85\x2a\x96\xb9\x58\x92\xb3\x8a\x2f\x9e\xbf\x79\xa5\xb9\xae\xbc\xb5\xfb\xed\x65\x0b\x66\x61\x1c\x06\xd5\x19\x4a\x25\xb7\x00\x11\xd6\xa3\x78\x0b\x16\xbf\xc6\x4a\x66\x9b\xa9\xb0\xdd\x22\xed\x7d\xf6\xf0\x21\x6e\xeb\xb9\xf6\x1e\x3c\xc4\xe4\x0d\x5c\x59\x8d\x2f\xd9\x8d\x44\x5a\xf6\x63\xee\x22\x14\x31\x7a\xad\x34\x2f\x6e\x57\x5f\xa4\x6e\x09\xe3\xec\xc4\x93\x36\x77\xfb\x45\x9c\x3c\x5f\x7a\x94\x32\x32\x9c\x68\x3e\x99\x98\xb6\xff\x1b\x8a\x9b\x42\x71\xde\x0a\xc7\x94\xfb\x7e\x7d\xaa\x04\x63\x2f\xb8\xaa\xbd\xac\xd8\xaa\x8b\x08\x5f\x1b\xef\xaf\x2d\x4c\xe6\x66\x13\xb6\x68\xaf\xaa\xb4\x65\xa6\xfc\x30\x69\xab\xa9\x6e\x38\x25\x02\x1a\x0a\x24\xc3\xdb\x1b\x1c\xa8\xbe\x45\x34\x04\xdd\x40\xab\xd8\x7b\x61\x08\x86\x43\xd6\x27\x0e\x67\x19\x6a\xc9\x75\x6e\xa8\xec\x78\x0d\xa7\x89\x27\x6a\x6f\x21\xc6\xde\x02\x83\x4e\x65\x38\x89\xc7\x36\xd9\x05\x5d\x87\x56\xb1\x1c\x17\xab\xd5\xf2\xc6\x2e\x5e\xe2\xe5\xaf\xb8\x8c\x53\x4d\x2c\x98\x85\x07\x90\xf9\xba\x0c\xaf\x80\xec\x14\xa5\xaa\x3e\x32\xf7\xba\x3b\x65\xb6\xae\xb2\x44\x98\x44\xa1\x48\xa3\x1a\x16\x95\x2c\x05\x53\xbe\x8c\x55\x54\xc5\xd9\x72\x2d\x2f\x9e\xb7\x32\x94\x25\x81\xf4\xf7\x37\xbc\xcc\x3b\x0a\x85\xcf\x31\x51\xd3\x87\x01\x35\xaf\x2f\xb0\xaa\x01\xeb\x4b\x22\xa1\x46\x51\x50\x21\x0c\xaf\x21\x36\xed\x71\xd6\x93\xd2\x6d\x4e\xef\xca\xd8\x7b\xf4\x08\x93\x51\xcf\xf7\xa3\x44\xd9\x60\xd5\x53\x9d\x9a\x74\xc7\xff\xfd\xb5\x81\x6a\x63\x9a\xd6\x07\xe3\xac\x57\x9a\xa8\x97\x4b\xb6\xc8\xbb\x07\x67\x32\x84\x76\xec\x52\x1a\xad\x52\x1a\x4d\x4e\x4e\xde\x1f\x3e\x7b\x77\xf8\xe1\xe4\xc5\xeb\x0f\x87\xef\x5e\x1f\xbc\x7c\x7f\xf2\xfc\xcd\xc9\xeb\x37\x1f\x4e\x7e\x7a\x7f\x78\xf2\xe6\xdd\xc9\xdf\xdf\xfc\x74\xf2\xcb\x8b\x97\x2f\x4f\x9e\x1e\x9e\x7c\xff\xe2\xdd\xe1\xf3\xfc\xf6\xf0\xa3\x5e\x97\xf9\x51\x29\xc8\x52\x90\xb5\x20\xef\xc7\x15\xd7\xe4\x11\x5e\xbc\x5d\xae\xcf\x2b\x2e\x9f\xde\xbc\xd6\x52\xf9\x19\x79\xa9\x12\x87\x96\x4f\x88\x91\xd7\xba\x5b\x35\x23\x15\x23\x6f\x38\x39\x24\x1f\x4a\x72\x6b\xf5\x99\xf9\x70\xda\x1c\x37\xcd\x6c\xd8\xed\x1c\xb8\x5e\x2e\x80\x64\x3c\xbd\xf9\xb1\x96\xea\x85\x1e\x18\x5e\xb2\x19\x6a\xfb\x86\xac\xf9\x82\x9d\x55\x9c\x2d\x22\x8a\x7f\x72\xf2\xee\xf0\xe0\xd9\x87\x93\xe7\x87\x3f\x7f\x78\xf3\xe6\xe5\xfb\x93\x1f\x5e\xbe\x79\x7a\xf0\xf2\xe4\xc7\x37\x6f\xfe\x7a\x72\x92\xba\x74\x2b\x7a\x77\x6e\x90\x89\xc6\x95\x7c\x5e\x49\x3d\x33\x0b\x50\x73\xc9\xf5\x6a\x55\x0b\x25\x0d\x51\xb3\xe5\x4d\x66\xc1\x63\x5b\xd9\x61\x42\x0c\xcf\x7e\x2f\x13\xbe\x47\x67\x52\x63\xc7\x9a\x40\x09\x7a\x4d\x80\xee\xd5\x12\x84\x07\xf7\xf4\x69\x03\xde\x78\xce\x47\x3c\x78\xe5\xe1\xe0\xb5\xdd\x34\xe4\xd9\x67\x0b\xff\xc9\x10\x52\x5d\x7e\xf2\x69\xfc\x8c\x11\x84\x2a\x61\xe4\xb6\xfe\xc8\x84\xa8\x16\xec\xc7\xba\xbe\x7c\xef\x3d\xbb\x88\x4b\x8e\xcd\xf7\x99\x72\x81\x22\xcd\x9d\xb7\xb0\xe9\x9a\x6c\xad\x97\x96\x6a\x98\x34\xdb\x8b\xe7\x95\x5c\x01\x59\x13\xef\xd8\x59\xfe\x6c\x6c\x2c\xca\xda\xef\x80\x69\x88\x27\xfd\xe9\x0d\x74\x24\xd9\x04\xe9\x1d\x92\x39\x99\x59\xdf\xc9\x4c\xb6\xac\xa4\xbe\xd2\xd4\x5c\x17\x02\x4d\x6e\x3a\xad\x90\xdf\xd7\xba\xd9\x82\xc9\x8b\xb4\xa3\xfd\x89\x9a\x4c\xb8\x71\xb2\x39\x92\x61\x3a\x67\xae\xe7\xa6\x73\xee\x30\x41\xb7\xdb\x1a\x2c\x05\x39\x5d\xeb\x12\x34\x63\x94\x4f\xc8\x47\x26\x64\x55\xf3\x7c\x34\x7d\x30\x9e\x4e\xc6\x7b\x23\xcb\x2b\x30\xf1\xb6\x28\x2f\x8b\x73\xa6\x77\x65\x3e\x32\x7a\xee\x45\x7d\x35\x6a\x0c\xf9\xad\x96\xf4\xd6\xdd\x1f\xd5\xcb\x86\x14\x4b\x5a\x2d\xb3\xac\x5e\x6e\x36\xd5\x72\x06\x16\x3d\x7a\x6d\xd3\x62\xe9\x7c\xc5\x36\x9b\x42\x0f\x48\x8b\x05\x19\xad\x25\x1b\x48\x25\xaa\x52\x8d\xa2\xcf\x38\x9a\x4e\xee\xe1\xcf\x64\x07\xe9\x1f\x4c\xa6\x0a\x02\xc2\x94\x65\xba\xcc\x5e\xf6\xa1\x53\x14\x19\x9d\x9c\x30\xf9\xaa\xd6\x43\x3a\x72\x81\x74\x86\x93\x06\xe8\x6a\x77\xe3\x1b\x30\xad\xd8\xa7\x3e\xc8\x59\xaf\x98\x94\xc5\x39\xd8\xe6\x73\xb6\x74\x4a\x60\x98\x8b\xa5\x0d\x70\x46\x23\xc0\xb4\x18\x2a\xbf\xc4\xf1\xce\xf6\x44\x9a\xd7\xd7\x08\xcf\x4a\x04\x9c\x1a\x71\x10\x85\x6e\x57\x99\xb3\x40\x32\xf5\xc1\x18\x86\x20\x46\x26\x5a\x5c\x6a\xc8\x8a\x3e\x2f\x94\xe6\x71\xf5\xe7\x69\x79\xb4\xcb\x2d\x84\xbc\xbb\xab\x86\xa4\xda\x38\xd7\xbe\x79\x54\x8d\x20\x13\xc2\x70\x8e\x4a\xca\x48\x94\xbc\x26\x13\xac\x49\x71\x8b\xe7\x5f\xd2\xa4\x85\x9a\x5a\x57\x71\x23\xca\x25\x2b\x84\x7b\xbf\xc4\x0d\x29\xba\x4d\x1c\x4e\x1b\xf0\xbd\x08\xa7\x57\x2d\x4a\xf6\xbd\x28\xae\xd8\xbb\x22\xd5\x44\x58\xb4\x75\x83\xa2\x69\x66\x6b\xbc\x62\xe2\xac\x16\x57\x7a\x8d\x93\x85\x4b\xd4\xbd\x26\x17\xee\x57\x68\x23\x39\x75\x69\x71\xcb\xc8\x95\x4b\x15\xec\xf7\x35\x93\xea\x80\x57\x57\x20\x37\x41\x2b\xc8\x2b\xff\x91\xae\x65\x99\xbe\x9d\xa5\xc7\x48\x58\x31\x65\xcd\x65\xbd\x64\x09\x66\x62\x78\x7b\x95\x65\x36\xc3\x18\xa2\x5f\xa1\xd1\x87\x8b\x4a\x0e\x4e\x45\x7d\x2d\x99\x18\x2c\x6a\x26\xf9\x7f\xa8\x81\x3d\x2a\x06\xbd\x0d\x1b\x0f\x5e\x15\x97\x6c\x20\xd7\x82\x0d\xd4\x45\xa1\x06\x37\xf5\x1a\xa2\xe7\x0e\x8a\xc1\xaa\x5e\xde\x9c\x55\x4b\x08\xc6\x64\xa2\xe6\xda\xa2\xe5\x78\x70\xa1\xd4\x4a\xe6\xdf\x7e\x7b\x76\x3a\xbe\x62\xdf\x9a\x1d\xee\xf2\xcb\x11\x26\xbd\xeb\xff\xeb\xda\xdb\x37\x52\xff\x45\xcd\xc5\x3d\x8e\xcf\x67\xfd\xee\xce\x67\x7a\x27\xe0\xcf\xee\x99\x33\xb3\x61\x9a\xa0\x4e\x3a\xa7\x8b\x2f\xdd\x70\x36\xe3\xee\x79\x03\xe0\x5a\x1f\xe9\x70\x4a\x6e\x0c\x85\x38\xa0\xbb\x53\x72\x4d\xef\x93\x3f\xe8\x64\xd6\xb3\x13\x06\x6d\xea\xf0\x84\xfe\xa1\xf7\x46\xbc\x03\xc8\x17\x6c\x14\x86\x6f\x27\x4f\xd8\x66\x33\xdd\xbb\xff\x98\xcd\x5b\xd3\x96\x7e\x34\x50\xc5\x25\x93\x30\x01\xb2\xd2\x22\xc1\xa0\xe2\x6a\x70\xca\xd4\x35\x63\x7c\x30\x19\x14\x7c\x31\x98\xee\xdd\x27\x03\xfd\x59\xc5\xcf\x07\x10\x71\x4e\x8b\xa8\xd2\xc5\x71\x56\x17\x05\xd7\x79\x06\x67\x2b\x39\xa8\xe4\x80\xd7\x6a\xb0\xe6\x76\x21\xb0\xc5\x08\xe7\xd7\x74\xf2\x98\xcd\x01\x40\xf0\x6c\x59\x6b\x66\x9e\xed\x7f\xcb\x70\xbe\xbf\x3f\xde\xdf\x37\xd2\xff\x09\xa8\x4d\x52\x22\x4b\xde\xd0\x93\xb1\x2e\x64\x6f\x66\xfe\x4e\xc7\x35\xbf\x32\x59\x5a\xaa\x38\x4b\xc9\x6e\xbc\x42\xbc\x4d\x66\xff\xa0\x6c\xe7\x1a\x38\xac\x1b\x4d\x70\x19\x9e\xbf\x19\xaf\x6a\xa9\x6c\x8d\x16\xbe\x14\x45\xb3\xe5\xb8\x1d\xee\x68\x71\xcf\x07\x84\x5b\x2f\x9e\x8f\xa0\x4c\x4d\xa9\xeb\x0d\x65\xe4\xe3\x66\xa3\xcb\x9c\x90\x9e\x8f\xdb\xe4\x94\xe3\xdb\x03\x7a\x91\x88\x95\x0c\xb5\x3b\x82\x1b\x0c\x82\x78\x42\x65\x4f\xd1\x01\x86\xc5\x15\xa3\x19\xb5\x4c\x9d\x8c\x52\x91\x19\x1d\xa7\xc2\x33\xe6\x41\x86\x8d\x2a\x3d\x9a\x1d\xc4\x77\xa7\xf8\xdb\x3d\x4c\x6a\xca\x8e\x04\x68\x1e\x87\xc1\x37\xba\xce\xb2\xc9\xe3\x97\xa8\xd6\xf2\x15\x76\x86\xb2\x3a\x1f\x55\x84\x1d\xf1\x63\x5a\x13\x4e\x45\x0c\x8a\x14\xb1\x48\x01\x4d\x93\x51\x76\x34\x39\x76\x1c\x57\x04\xf0\x13\xb1\xf1\x47\x93\xe3\xc4\x2d\x3b\xea\xcf\xaa\x5e\x19\x68\x67\x6e\xd2\x75\x5e\xca\x6d\xaf\x4c\x8f\x26\xba\xfd\x3e\x8a\xe1\xe3\x7a\xe6\x2e\xdc\xf7\xfe\x13\x89\x9d\x29\xde\x9d\x92\x82\xb2\xa3\xea\x98\x48\x5a\xed\x4c\x49\x49\xd9\x91\x4c\x2b\x2c\xb2\x6c\xf2\xe4\x25\x2a\x08\xc7\xd8\x27\x96\x26\xb1\x24\x05\x9e\x23\xe8\x78\x49\xf4\x97\x94\x13\x41\x25\xce\x4d\x5a\x41\x74\xd1\x90\x16\xc5\xe5\x8a\xc6\xd1\x17\xc3\xdb\xe3\x18\x17\xd7\x34\xde\x99\xaa\x89\x01\x2d\x02\x6e\x51\x0b\x3f\xa6\x16\xea\x05\x5f\xb0\x4f\xbb\x2a\x3c\xcf\x22\x3c\x11\x3e\x07\x3b\xd9\xc5\xae\x1a\x57\x8b\xc6\x80\xd1\x1d\x1d\x93\xf7\xfa\xbf\xdf\xe9\x94\x3c\x33\xa4\xea\x92\xee\x93\x5f\xf4\x66\x78\xae\xff\x7b\x4a\x87\xd3\xe0\xac\xf3\x16\xb1\x00\x4d\xad\xe8\x27\xf4\xde\x3b\x0b\xaa\x59\x0c\x06\xa5\xbc\xbd\x14\x7e\xad\x33\x85\x51\x50\x06\x6a\x14\xdc\xe5\xa8\x0f\x74\xa4\x33\x91\xa8\xdd\x1d\x64\x1a\xf2\x01\x1d\x6a\x26\xc3\x54\x1a\xad\xb1\x77\x56\x9e\xd3\x0d\x25\xba\x7d\x64\xf8\x3c\x0a\xc7\xf2\x09\x1d\x62\xfc\x5c\xef\x43\x81\x7e\x4d\x6e\x09\x92\xc6\x67\x59\x8d\xde\x91\xa8\x6d\xbb\x2c\xae\xe4\x57\xb3\x49\xcd\x88\x64\x99\xa9\xac\x42\x18\xeb\x91\x32\x9a\x7e\x41\x2f\x67\x0e\xc0\xf2\x2d\xe2\x98\x3c\x83\xba\x5d\x0d\xcf\xb2\x0c\x0d\xd1\xb3\x56\xaf\x9e\x70\xbc\xd9\xb0\x2c\x1b\x16\x08\xe3\x99\x33\xe2\x78\xe6\x07\x2f\x71\xfc\xbb\x0d\xe9\x6e\xa6\x9e\x8d\x57\xd6\x84\x17\x6c\x1e\xad\xb1\xa0\xec\xd4\xf3\x98\x72\x3c\xeb\xb2\xa0\xbd\x66\x0e\xe5\x3c\xaa\xa7\xcc\x9f\x51\x33\x88\x59\xf6\x1a\x1d\x62\xa2\xbb\x66\x08\x9f\xfe\x39\x33\x9d\x6c\x62\x38\x40\x63\xde\xe7\x00\x80\x8c\x3f\x68\x3c\xd6\x6b\x33\xd6\xeb\x68\xac\x39\x26\x4b\x4d\x46\xed\x62\x5d\x7a\x6d\x84\x5f\x92\x02\x96\x64\x34\x23\xbf\xe9\x69\x6f\xf9\x57\x38\x9f\xe5\xdd\xa9\x8d\x91\xe2\xac\xdc\xf6\xee\x4f\x5a\x2e\xe9\xc1\xaf\xb6\xe5\x62\x3d\x65\xf7\x66\x2d\x1b\xb9\xfb\x6c\xdf\x1c\xe8\x2f\xa8\x8c\x99\x80\x17\x57\x57\x6c\x51\x15\x8a\x79\x33\xea\x69\x7c\x44\xff\x24\x99\x78\xba\xac\xcb\x4b\xf0\x1c\xb2\x39\xf6\xe2\x1c\xaf\x35\xf3\xba\xf4\xef\xf6\xe3\x77\x2f\x16\xcb\x50\xee\xfd\xf8\xcd\xcb\xfa\xda\xbf\xb8\x17\xbf\x10\x6b\xfe\x4b\xa5\x2e\xfc\xcb\x94\x5f\xef\x8c\x55\x19\xc5\x62\xdf\x4f\x30\x2d\xef\xb7\xc0\x21\x19\xdd\x6f\x0c\x95\xb9\x9c\x5d\x52\x16\xeb\xde\x14\x0a\xaa\xa3\x4b\xca\x9b\x84\x49\x81\xbb\x84\xf8\x5c\xb4\x6d\xb8\xdc\xd2\x06\xb3\x2f\xf7\xdb\x00\x15\xf4\x32\xaa\x5d\xa5\xb7\x0b\x77\xd4\xee\x04\xea\x67\x6e\x2d\xc7\x07\x2e\x29\x82\xd9\x6e\x8b\x5f\xe8\x75\x3e\x29\xbc\xf3\x49\xe1\x04\xc0\x62\xbc\x60\xcb\xe2\x66\x56\xd2\xde\xb8\xd3\x93\xc7\xe5\x5c\xee\x94\xb9\x24\x45\x4f\x86\xc2\x59\xfd\xcf\xfd\x53\xfe\x1b\x40\x75\xe9\xad\x55\x50\xfd\x4c\x4a\x2a\x83\x7d\xfb\x6d\xb5\xc8\x7f\xdf\xd9\x21\x6e\x6b\xe6\x9c\x24\x7b\x3f\x67\xc4\x6f\xa8\xbc\x24\x2d\x9f\xab\x82\x96\x3b\x05\xf1\xe4\x35\xdf\x9d\x36\xa4\x7c\x22\xe7\x28\x3a\x37\x68\x49\x3e\xa0\xf7\x84\x79\xa8\x06\xb3\xed\x19\x3c\xbd\xc7\x9a\xec\xcd\x2b\x84\xf3\xa7\x9a\x9a\xea\x2d\x5c\xee\x4a\x8c\xf5\xa9\x17\x95\x51\x00\xa1\x66\x98\x3c\xdf\x6c\x7e\xd9\x6c\x90\x27\xbd\x18\x13\x96\xcc\x8f\x91\x13\x7a\x66\x07\xdf\xb2\x94\xd0\x25\x9f\x5d\x8b\x62\xd5\xfb\x91\x59\x3d\x97\x1d\xdb\x26\x77\x42\x76\x57\x8f\x55\xa6\xab\x8b\x4a\xc6\xaa\xf4\x64\x45\x25\x75\x07\xd5\xcb\xdb\x78\xe8\x7b\xd8\xf9\xcb\x74\x29\x5e\xd4\xeb\xe5\xe2\xef\x15\x5b\x2e\x7a\x2c\x38\xda\x0b\x50\x1f\x62\x56\xdd\x0d\x27\x88\x3b\xfc\xcd\x29\x12\xce\x93\x70\x71\xe7\x9e\xfc\xb0\x41\x9c\xd6\xe8\x98\xd5\xbf\x5b\x27\x42\xfb\x88\xd8\x6c\x0a\x84\x93\x56\x5b\xc1\xf3\x6d\x51\x71\x45\x5f\x24\x53\x57\x73\x55\xf1\x35\x3b\xfc\xc4\xca\xb5\x2e\x20\xee\x55\x67\xe2\x93\x42\x57\xc5\x5a\xf6\x7f\xd7\x1e\xe9\xef\xc1\x6c\x30\x76\x68\xe9\x0e\x33\x1c\x3e\xf1\x77\x6f\x45\x7d\x56\xf9\xf0\x5a\x5f\xac\x7a\x4a\x14\x0d\x5f\xa0\x80\x02\x5d\xd5\x77\x38\x30\x46\xb5\xfe\xd2\xff\xaa\xf4\xaf\x6a\x0c\xb1\xaa\x6d\xd4\x5f\xe3\x3e\x54\x93\xde\x3a\x23\xed\x91\x35\x02\x27\x95\xa6\x50\xd5\x19\x2a\x86\x94\x0a\x47\xab\xb4\xa0\x64\x6e\x08\x46\x7a\x60\xb4\x50\xf6\x56\xd4\xab\x0f\x37\x2b\x26\x07\x10\xce\xb9\x50\xb5\x90\x83\x45\x25\x58\xa9\x96\x37\x4e\x26\xf3\x12\xd9\xe0\xf4\x66\xa0\x2e\xd8\xe0\xff\xac\x44\xbd\xda\xd5\xb4\x48\xfe\x9f\xc1\xca\x28\xfd\xc6\x83\x9f\x24\x0b\xe5\x8d\xcb\x0b\x56\x5e\xfa\x9f\x08\x0f\x54\x3d\xd0\xeb\x4b\x17\x70\x35\x1e\xbc\x63\xc5\x62\x70\x55\x0b\x36\x28\x14\xc8\xe9\x5e\x4c\x5f\x4b\xb6\x0b\x1f\xef\x86\x5a\x46\xee\xc2\x54\x8e\x8d\x8d\xdc\x0b\xfe\xb1\x10\x55\xc1\xd5\xe0\xe7\xaa\x5e\xc2\x2a\x1c\x11\x19\x1d\xf0\x2a\xcc\x32\x6b\x8c\x17\xf1\xef\xeb\x4a\xb0\x85\xb5\x00\xe3\xf4\xb6\x10\xa2\xb8\xc9\x19\x39\xad\x6b\x4d\xfe\xf4\xa7\x39\x23\x86\xd6\xe6\x8c\x18\x22\x0e\x74\x51\x54\xfc\x5c\x3f\xdc\x5c\x9d\x42\xd6\x82\xeb\xef\xe0\xfb\x37\x67\xb9\x22\xde\x11\x80\x44\xce\x79\x39\x23\x95\x55\xa1\x42\x26\x5e\x2f\x98\x2f\x16\x52\x6a\xce\xc2\x5f\xf8\x44\x11\x79\x51\xc0\x5f\xf6\xa9\x28\x55\xae\x48\x3a\x8c\x79\x45\x3a\xab\x22\xaf\x1b\xbf\xc7\xc7\x3e\x27\xe5\x5a\xc4\xfc\xd2\x05\x3c\xb2\x37\x34\xf6\x5e\xe6\xed\xc1\xfb\xf7\x27\x1f\x7e\x7c\xf1\xbe\xf7\x76\x66\xf4\x99\x62\xd5\x38\xe8\x4e\x03\x7b\xcb\xd1\x44\xcb\x85\xa8\x40\x02\x93\x02\x71\x34\xd5\x34\xbd\xa2\xfa\xf1\xc1\x04\xe3\x19\xa4\x4d\x1e\xe1\x68\x5b\x14\x91\x00\xc8\xb2\x8c\x45\x05\xcf\x59\xee\x95\xc9\xb1\xd7\x81\x0c\x57\x63\x88\x0d\xdc\x04\xd4\x67\x03\x7f\x63\xad\x77\x81\x1e\x22\xbf\x13\xb8\x5e\xe3\xb0\x34\x8b\x41\xb9\x2c\xa4\x1c\x14\x72\x50\xf8\x13\x60\x14\x19\xd8\x06\xa8\xd7\x21\x8b\x8a\x7b\xc7\xce\x98\x60\xbc\x74\x65\xea\x23\x61\x70\x51\x80\x5e\xeb\x94\x31\x3e\xa8\x78\xa5\xaa\x62\x59\x49\xb6\x18\xec\xea\xfd\xc4\x04\xc2\x49\x0e\x5d\x3f\x5b\xf8\x0b\xba\xa1\xda\x6c\x1c\x1b\x11\x54\x69\x2a\x56\x4e\x45\xc9\x73\x96\x47\xbe\x69\x4b\xdf\xc8\xde\xcc\x9e\xde\xab\xfe\x01\x79\xaf\x5b\x37\x60\x9f\x20\xfa\xb8\x2e\xef\x6a\x2d\xd5\x80\x55\xea\x82\x89\xc1\x29\x03\x29\x72\x50\x8b\x68\x84\x08\x50\x89\xd1\x8e\xab\x01\xcf\x22\x2f\x7e\x6a\x35\xec\xe6\x16\x12\xa9\x2c\x53\xe1\x25\xb9\x2d\x6b\x2e\x95\x58\x97\xaa\x16\xb9\x55\xb3\x33\xc2\xf8\xfa\x8a\x09\x4d\x91\xf3\xe1\x94\x5c\x0b\x13\x20\x3d\x1f\x4e\x48\x59\xf3\xb3\xea\x7c\x6d\xdf\x4d\x9a\x06\x13\x95\x65\x4e\x8b\x2f\x99\x7a\xeb\x8a\x7e\x73\x36\xef\x4d\x85\xc1\xc9\xf5\x52\x82\x56\x9c\x9c\x50\x65\xc0\xec\xd7\x34\xe2\xea\x3d\x5c\x5d\x9f\xa9\x0a\x29\xc8\x8a\x8e\x4e\xec\xc5\xaa\x31\x34\xdf\xb5\x2e\x44\xbb\xa3\x1d\x34\x21\x95\xfb\x1c\x23\xbc\x33\x3a\x39\x19\x91\xb3\x84\xd9\x08\x66\xfd\xf6\x1c\x57\x44\xcc\xa4\x61\x25\x78\xb0\x53\xac\x69\xdb\x94\x9a\x54\xf4\x40\x93\x1d\x54\x63\x52\xd0\xc9\xac\x78\x5c\xcf\x8a\x9d\x1d\x5c\x1d\x15\xc7\x91\x71\x75\x71\xec\x41\x05\xa9\xa0\xc6\xa4\xc8\x46\x5b\xb3\x5c\x0b\x23\x47\x3a\xf1\x78\x5c\xd6\xbc\x2c\x14\xaa\xf4\x6e\x14\x63\x76\x55\x29\xd5\x32\xbd\x35\x9c\xd1\x91\x2b\xf2\xb6\xe6\xc9\x1d\x56\xb0\x7e\x23\xf5\xd9\x59\xfa\x0a\xa2\x4f\x2f\x15\x13\x29\x3c\xa0\x6b\xdb\x90\x52\xd6\xe8\x13\xfe\x9c\xa9\x1e\x7b\x05\xd6\x10\x19\xbf\x00\xfb\x02\xe3\xfd\xdb\x75\x24\x89\x8a\x35\x90\xd1\x18\x37\x4d\x83\x84\x5e\x6c\x1e\x47\x95\x94\x48\x10\xe5\xcd\x93\x96\x70\x39\x49\x78\x64\xa0\xa5\x79\xb4\xc8\x67\xad\xc3\x6f\xcd\xbc\x07\xf4\x6d\x83\x8f\x56\xc7\x16\x21\xc3\x0c\x9b\x66\x51\x79\x6a\x75\x6b\x8c\x48\x7e\xa9\x96\xcb\x77\xac\x64\xd5\x47\x73\x93\xd9\x6b\x91\x18\x35\x14\x6c\x91\x4c\x93\x63\x93\xba\x28\x07\xb8\x97\x9a\xa7\xda\xda\xa7\xcd\x10\x04\xcf\xa4\x94\xa2\x82\x0a\x3c\x9f\x0c\x29\xad\x36\x9b\xe9\xb7\x15\xa5\x74\xfa\x6d\x91\x57\x06\xd9\xac\x00\x31\x64\x5e\xd3\x49\x8e\x6a\xda\x27\xc3\xab\xb9\x82\xc1\xce\xd7\xe0\x03\x8b\xea\x0d\x9d\xe0\x2c\x8b\xbb\xaa\x77\x15\xf2\x2d\xc0\x66\x0b\x55\xa4\x48\x07\xa0\x6d\x23\x18\xe6\x28\x74\xc7\xd9\x9d\x36\x84\xeb\xe9\x0a\x40\x1f\xb3\x33\xf3\xce\x4e\x85\x39\xd6\x10\xe2\x6e\xe4\x6b\xb7\xc9\xc6\x86\x50\x46\x87\xbc\xde\x44\xba\x41\x11\xbf\xac\x7a\x76\x1d\xfb\xaf\xda\x75\x2c\xec\x3a\x15\xef\x3a\xd5\xbf\xeb\xe0\xd6\x98\x5a\xf2\x07\x30\xa6\xe0\xff\xa3\x19\x6a\x31\xae\xb9\xb9\xd1\x6e\x51\x22\x98\x18\x34\xd9\x88\x04\xfa\x0a\x67\xc6\x7c\xd2\x84\xa7\x51\x0c\xf5\x15\x8a\x1b\xd8\x07\x2c\xd9\x07\x0a\xff\x89\xa5\xeb\xac\x26\xe2\x26\x18\x33\xfc\x38\x25\x32\xf1\x0c\x86\xe3\xf3\x75\xae\xb6\xec\x16\x17\x00\x25\x5e\x37\xb1\x03\xfb\xd1\xea\xd8\x2e\xc6\x90\x30\xd6\x53\x0c\x15\xdb\xe1\xc2\xb1\x01\xad\x59\x69\x5f\xda\x4a\xe6\x5b\xc9\xe6\xeb\xfc\xae\x3d\xfd\x53\xdb\xbe\xf4\x4b\x1a\x7a\x76\xd6\x6a\x69\xd3\xa6\x40\x30\x51\xdb\x76\x4d\x28\x6a\xde\x2e\xfa\x9c\x29\x84\xdb\x0d\xde\xb6\x07\x51\x32\x36\x1e\x4e\x04\x16\xfa\xb8\x92\x66\xc1\x33\x3c\x67\x47\x93\xe3\x9c\x61\x14\x30\x92\x1c\x28\x35\x0c\x70\x77\xdb\xfa\xeb\xac\x32\xdd\xb8\xc5\xb6\x8d\x4b\x0a\x4c\x6e\xdf\x8a\xfa\x63\x05\x16\x87\xe4\x59\xcd\xa5\x66\x00\xf2\x45\xd3\x44\x12\x8f\x3f\x93\xbf\x54\xc4\x9a\x4e\x70\xc4\xe3\x8a\xcf\x7c\x16\xbc\xa8\x22\xae\xb3\xef\x50\x6a\x0c\x91\x88\x85\xbe\x59\x3d\x56\x17\x85\x7a\x07\x59\x24\x15\x24\xf9\xfd\x7d\xb1\x94\x8c\x0a\x34\x9c\xe2\xf4\xc5\x07\xb1\x86\xf4\x49\x2b\xfd\xb5\x5e\x7d\xc2\xde\x14\xa5\x5f\x5c\x54\x72\xcb\xc2\x68\xd2\x9c\x07\x96\x2c\xd1\x1e\x7b\x13\x16\x0f\x6b\xfd\x75\xec\x3c\x09\xac\x91\x3d\x76\x86\xad\xc3\xac\xc5\xa9\x3b\xd7\x62\xe7\x79\x73\xdb\x04\xb5\x74\xb0\x61\xd7\x3c\xf2\x80\xe1\x60\x91\x11\x16\xf0\x45\x21\xdf\x5c\x73\x67\x9b\x61\x3d\xe4\x08\xc7\xee\x02\xaa\xd7\x84\x23\xcb\x6c\xf2\x39\x53\xd1\xd7\xcf\x99\x2c\x45\xb5\x52\xb5\x98\x7f\xe6\x3d\x54\x91\xdf\x36\x33\x20\x9d\x9b\x0d\xd0\xd4\xf9\x36\x73\x11\x38\x2d\xd5\x11\x3f\xa6\xec\x88\x1f\x37\x61\x8c\x58\x63\x44\x1d\xbb\x2a\xa5\xfe\x35\xdd\xc3\x5a\x14\x32\xcf\xf7\x41\x0a\xd2\xcf\x13\xac\x4f\x17\xfd\xf4\x40\x7f\xc0\xd1\x83\xbd\x48\x16\x92\x5f\x2f\x0b\x95\x61\xaf\x97\x6e\x94\x0a\x29\xab\x73\xbe\xd9\x24\xdc\xa8\xbf\x91\x99\xce\x54\xc7\x7b\x2f\xf6\x27\x08\x67\x9d\x3a\x0e\xde\x34\x7a\xea\x38\xfe\xa2\x79\xd3\xe3\x94\x65\xe6\xa2\x8b\x1f\x89\xe3\xc8\x52\x1c\x6f\xd1\xa7\x99\x0b\x81\xf4\xf0\x0b\xe3\x00\xf2\x84\x5c\x2d\x2b\x85\x46\x83\x11\xbe\x8b\x31\x44\x13\x22\x02\x5f\xee\x1c\x8e\x23\xeb\x9b\x7f\xad\xec\xba\xa7\xec\x55\xf7\xb4\x24\x3c\xa6\x34\xd1\xe0\x13\xde\xe5\x3b\x8c\xd7\x84\x21\xc5\x80\xe5\x3e\x99\xd5\x8f\xf9\xac\xde\xd9\xc1\xe2\xa8\x8e\x79\x8f\xda\xf1\x1e\xe0\xf6\x73\x07\xa3\x2f\x30\xde\x6c\xc0\xc5\x60\x5c\xf3\x43\x9e\x32\xfb\x71\x68\x07\xcd\x09\x6b\x69\xf8\x75\x71\xc5\x24\xe2\xf3\x51\xb1\x5a\xb1\x42\x8c\xf2\x11\xd3\x5f\x8d\xf0\xb8\x74\xaf\x67\xca\x79\xd0\xea\x14\xa6\x65\xf0\x11\xfb\x54\xa9\x11\x26\x4b\x60\xc6\x89\x72\x47\xb0\xa9\xd2\x0a\x81\x21\x01\xaa\x6e\x88\x72\xbf\x2b\x7e\xfe\xa7\x9b\x65\x2c\x94\x9f\x25\x8d\x3b\x5b\xd6\xd7\x07\x7c\x71\xb0\x58\x40\x7a\x6f\xa3\x2a\x7e\xde\x69\x57\xc5\xcf\xdb\x4d\x63\x8b\x2f\x6a\x99\x6b\x17\x1e\x2f\x6a\x1e\x5a\x03\x78\x8d\xad\x9c\xae\xe1\x69\xc6\x8a\xf2\xb9\xd8\x19\x0d\x46\x3b\x75\x5e\xf7\x8c\x70\x4f\xd7\x61\xb4\xab\x4e\xc7\xd8\xa2\xd3\x2f\xb6\x88\xbb\xf5\xa9\xea\xba\xc8\xf0\x9e\x76\xc2\x94\xde\x3d\xed\xae\xd7\xa4\x6f\x49\x44\xad\xe4\x49\x2b\x3f\x55\x2a\x69\xe2\xa7\x4a\x81\x40\xe9\x5a\x97\x2e\x87\xcf\x35\xf0\xcb\x16\x40\xa7\x05\xed\xf9\x37\x49\x49\x3b\x92\xb9\xff\x5c\x33\x92\xe9\xfc\xcc\x16\xe9\x34\xa6\x35\x67\x90\x62\x9b\x92\xd4\xd6\xdb\x1e\xcb\xd2\xf9\x4c\x44\xd0\x2e\xd4\x1c\x27\x35\x15\x73\x24\xb2\x8c\xcf\xf9\xce\x68\x77\x94\x8f\x46\x78\x87\xe5\xfc\x88\x79\x51\xdf\x17\x91\xd7\xa4\x35\xaa\xb9\x98\xd7\x3b\xa3\x5d\x93\x3a\xd2\x5f\xed\x8c\x0e\xcc\x8f\x63\x92\x74\xdd\xe6\xd4\x69\x36\xdf\x73\xfd\x78\xdc\x34\x44\x35\x9c\x32\x82\x14\x15\x78\xab\xc6\x28\xe2\x65\xed\x20\x79\x4e\xdc\xab\x8e\x20\x0c\x41\xd0\xe8\x70\x1b\x29\x5e\x84\xdc\x8e\x2b\xad\xd3\x69\xd8\xee\xbe\x96\xce\x29\x00\x8e\xf3\x30\xa4\x10\x2b\xbd\x35\x22\x7a\xc7\xb6\x26\x5d\x64\xd9\xda\xd0\x9a\xda\x3c\xd5\x98\x54\xe6\xa9\xc2\x9a\x61\xeb\x2c\xcc\x56\x83\x00\x2c\x4a\x9f\xf6\x3e\x30\x26\x31\xea\x3d\xfb\x75\x9b\xb5\x37\x32\x4f\x89\x6e\x1b\x12\x98\xfb\xc0\x92\x43\x34\xa0\x01\x8b\x97\x86\x57\x55\xd9\xf1\xb6\xc0\x0b\xa8\xf0\x01\x1b\x4a\x67\xa2\x6d\x48\x47\x6e\x85\x17\xf8\x41\x3c\x3d\x49\x92\xd9\x82\x04\x02\x9a\xbc\xa9\xf8\x39\x31\xeb\xd9\x27\x7f\xaa\x14\xf1\xdb\x2d\x4e\x0d\x79\xa3\xe2\xe1\x17\x1c\xae\xa2\x41\xa1\xf1\x91\xfc\xb1\x72\x89\x46\x5e\x0d\x8b\x58\xe6\xa3\x51\x43\x56\x30\x28\x46\x28\xb9\x35\x36\x64\x67\x74\x15\x6b\xfc\xfe\x25\x99\x63\x1f\xdf\xc1\x31\xa7\x93\x6b\xe7\xe1\x65\x25\xd5\x3c\x7a\x1e\x17\x8b\x05\x52\x38\xef\xf2\x14\x9b\x4d\x1f\x64\x64\x98\xcd\x79\xf4\x4c\xa3\x67\x38\x45\x54\xce\x34\x0b\x1b\xc1\x64\xc0\xfb\x11\x41\x51\x4e\xbd\xd4\xfc\x8f\xf1\x69\x21\xd9\xcf\xc5\x72\xb3\xd1\x94\x01\xca\xc0\x16\x8f\xb7\xd6\xe2\x09\x9a\x4e\xef\xe1\x58\xc4\xda\x32\x5a\xba\xa7\x9d\x6b\xab\x2f\xe5\x66\xff\xb4\x74\xd2\xcf\xd5\x45\x43\x3e\x1c\x2a\xdf\x5d\x18\x77\x1f\x41\x5a\xe1\x7c\x77\x3a\xa4\x54\xb3\x7d\x3b\xa8\x77\x44\xa2\x44\x18\x1a\x6c\x30\x43\xdf\x9c\xc1\x37\x0a\x92\xfe\x8c\xf0\x1a\x4b\xa1\x49\xbb\x05\x5b\x2d\x8b\x92\x21\x73\xdf\x70\x7e\xf8\x69\x85\x46\xe8\x7f\x6f\xfe\xf9\x4f\x89\xa1\x3e\x34\xcf\xff\xf9\x4f\xb9\xf9\x06\x8f\xc8\xe8\x7c\x84\xc9\xe8\x9b\xe9\x08\xfb\xaf\xbe\xfd\xa7\xdc\xf9\xf6\x9c\x40\x43\x7d\xda\xff\xfe\xa7\xfc\xcf\xcd\x3f\xe5\x7f\x7e\xa3\xdf\x8c\x70\xd3\x37\x4b\x77\xad\x53\x43\x49\xf5\x68\x7d\xf9\xaa\x14\xf1\x70\x1a\x4d\x7c\xef\xa2\x14\x5f\xb4\x2a\x81\x10\xfe\xab\xf2\x6b\x91\x48\x68\x85\x95\xc4\x6a\xca\xd1\xfe\xc4\xdf\x50\xed\xff\xb9\x7b\x29\x73\xf1\x7a\xa7\x10\x50\xfc\xcf\x0a\x01\x17\xe0\x1c\xd2\x12\x04\x42\x8b\x58\xb7\x3d\x3c\x6a\x0f\xd3\xe7\xe2\x64\x26\x1e\xb3\x99\xd8\xd9\xc1\x1c\x0c\x18\x7d\x7b\x44\xb8\x86\xb0\xf5\xbc\xac\xce\x58\x79\x53\x2e\x19\x1a\xd9\x03\x61\x44\x26\x96\x11\x8d\x5a\x92\xf0\x7b\xff\x8d\x8d\xd1\x6b\xb8\xaf\x3d\x6c\xf1\x3f\xd2\x1c\xb6\xe8\xb4\xe6\x53\x0a\x26\xf0\xdf\xd2\x14\xcd\xa6\x92\x69\xa7\x1d\xff\x13\x93\x64\xaa\xed\x6b\xcd\xff\xc0\x14\x41\xad\xbe\x2d\x8e\x95\x2d\xfe\x0b\x58\x59\x49\x8b\x2e\x2b\x2b\xdb\x8d\xea\x8d\xd2\x58\x91\xa2\x57\xcf\x2b\xa9\x08\xcc\x93\x4d\x1c\xab\xda\x8c\x4b\x81\x8f\xd4\xf1\xcc\x7e\x73\xc4\x8e\xb3\x0c\x55\xd4\x71\x93\x47\xec\xd8\x92\x95\x0a\xe4\x16\x5f\x38\x64\x4c\x7e\x22\xe0\x61\x22\x67\x7c\xa3\x46\xd6\xdc\x9b\xdc\xca\xbd\x86\x12\x00\x04\x21\x04\x8a\x00\x60\xee\x8e\x27\x51\xe4\xd2\x6f\xa5\x16\xc3\xa2\x00\x54\x1a\xbd\x6d\x48\x45\x53\xcf\x7a\x50\x5c\x99\x69\xaf\xbc\x95\xb7\x9e\x7d\x5a\x1d\x89\x63\xa2\xfc\x49\xce\xf1\x13\x3a\xd9\x6c\x50\xed\xf4\x7a\x9e\x91\xae\x1b\x4d\x52\x47\xae\x69\x23\x32\xaa\xf8\xe8\x18\x93\xe2\xae\x41\x55\x98\x48\x5a\x1c\x4d\x8e\x49\x49\x8b\xa3\xe9\x71\x8b\x2b\xaf\x3d\x4f\xdd\x4e\xd0\x7c\x70\x3b\x8d\x2d\x92\x24\xcd\x43\xb7\x7e\xb7\xbf\x82\xd5\x1a\x34\x60\x2d\x76\xdf\x73\xd2\xa4\x26\x7c\x1e\xe5\x5a\xd6\xdc\x67\x92\xe4\xf6\x92\xdd\xe4\x23\x40\x95\x18\x91\x44\x20\x88\xa8\x65\x87\xf7\x4f\x29\x7b\x5b\x66\x48\xe8\x6c\x83\xf3\x2d\x95\x97\xb6\x72\xc9\xca\x9a\x2f\xfa\x6b\xb7\xa2\x44\x5f\xe5\x41\x9e\xe8\xa9\x3b\x08\x15\x45\x83\x44\x9f\x50\x21\xbb\x52\x43\x09\xf6\xbc\x8e\x99\x28\xff\x04\xb3\xd7\x65\x4d\xdc\xf5\xf3\xab\x62\xb5\xd2\xf4\xb5\x86\x80\xa0\xe2\x9c\xc5\xa9\x92\x56\x26\xeb\x0b\x63\x56\x92\x7c\xd1\xcb\xf6\xd6\x28\xda\x47\x09\xf8\x62\xa4\x1a\x8d\x47\x1b\x23\x0e\x02\x9f\x95\xbd\x22\xe7\x78\x8e\x49\xc5\xf3\xe1\x84\x18\x4d\x4f\x5e\x20\xee\xb5\x3e\x84\x61\x02\x4a\x1e\x93\x6a\xf4\x3d\x90\xa8\xe5\x3d\x93\x06\x87\x09\xc3\x8d\x51\x90\x42\x37\x5e\xb3\x4f\x6a\x6b\x1f\x1c\x1d\x93\x34\xee\x04\x26\x25\xad\x90\x22\x41\xb6\x8d\xf7\x78\xd9\xa7\xab\xf5\xb0\x89\xa5\xe6\x93\xaa\x33\x04\x9d\xae\xe4\xcf\xc5\xb2\x5a\xf8\x6e\x57\xd8\x21\xcc\xd6\x83\x8a\x0f\x14\x59\x9b\x07\x49\x56\x54\x1d\xd5\xc7\xe4\x8c\xf6\x7e\xb7\xc2\x59\x36\x5c\x59\x22\x5b\xf1\xd9\x70\xbd\xd9\x2c\xb3\x6c\x78\x36\x5f\x6f\x36\xc3\xe5\x66\x73\x36\x5f\x67\xd9\x32\xcb\xb6\x7e\x8d\x74\xbb\x68\xcf\x4c\x54\xd1\x4c\xf0\x68\x26\x2a\x98\x89\x50\xa7\x1b\xe5\x2a\x8c\xb2\x9f\x8d\x2a\x9a\x8d\x06\xe3\xfc\x8e\xba\xf4\xec\x4e\x9b\x3b\xb3\xdc\xd1\x9c\xe1\xe4\xcb\x9b\xd1\x00\x2a\x68\x13\x19\x88\xc5\x16\x91\x91\x42\xa6\x75\x8a\x42\xd0\xd9\xc0\x7e\x8b\x40\x6a\xaf\x8a\x15\x62\x04\xf5\x5e\x79\xe1\xbe\x45\xc1\xf0\x2d\x3f\x02\x9c\xf9\xe3\x3e\xd1\x54\x6d\x99\x2f\x86\x8d\xc7\x36\x6b\x10\x8c\x67\x1c\x1e\xa2\x32\x2d\x8f\x8c\x0d\x78\x70\x1b\x87\x35\x35\x57\x47\xfc\x38\x87\x8b\x22\x46\xd9\x66\x73\xdb\x10\x45\x95\xfe\xeb\xfc\x93\xfb\x7a\x4c\x2a\x7a\x14\x2e\x5d\x0a\x73\x5f\x56\x98\x02\x2b\x8f\xb4\x88\xea\xa3\xe2\x98\x56\x90\x19\xe7\x95\xb1\xcd\x29\xb0\xe5\x22\x6e\x1b\x5f\x40\x09\x5f\xc2\xf1\x59\x1f\x95\xc7\x38\x1c\x8a\xfa\x67\x7c\x2e\xba\xfd\x70\x54\x1e\x6b\x96\x48\x1e\xd9\xa7\x63\xca\xd1\x12\x37\xf2\xa8\xd4\x4f\x25\x6e\xb6\x9c\xab\xf2\xa8\xb2\xb9\xf5\x5f\x3f\x73\xb2\x89\xe5\xa9\x38\x3e\x80\x45\x5e\xe2\x47\xea\x78\xae\xff\xcb\x99\x65\x28\xd4\x71\xd3\x90\x0e\x49\x35\xcb\x27\x9e\xbd\x8e\x6a\x46\xcb\x55\xed\xfb\x29\x50\xe8\xa5\x77\x54\xa4\xdf\x1c\xe6\x3d\xd8\x7d\xce\xcd\x9f\x1c\x38\x8a\x7a\x5c\x29\x26\x0a\x05\x81\xd4\xff\xd7\xff\x72\x3f\x46\xa4\xa0\xf5\xb8\x90\x37\xbc\x7c\x11\xbf\x4f\x52\x46\x10\x81\x50\xd5\xef\x41\x66\xfe\x50\x9c\x43\x96\xe8\x77\xa4\x05\xe8\xc2\x41\x27\xf6\x73\xb1\x81\xe3\xe9\x5c\xe5\xa7\x81\xd9\xb1\x4b\xa7\x8e\x59\xce\x02\x58\xdf\x4f\x48\x6c\x36\x47\x61\x22\x00\xbc\xf4\x63\x7d\xd9\xcf\x3f\x0a\xba\xee\xd8\xc4\x03\x6c\x39\x84\x3b\xa1\xf4\x2c\xb2\x22\xb4\x16\x84\x3f\x30\x6e\x7a\x3a\xa8\xe4\xa0\x58\x0a\x56\x2c\x6e\x06\x62\xcd\xb9\x66\xdd\xf1\xcc\x7e\xb8\x30\x26\x8a\xf0\xf5\x08\x62\x5b\x9a\x82\x2a\x57\xdd\x4b\x64\x96\x14\x1f\x5f\x31\x75\x51\x2f\x68\x4d\xf8\xb8\x10\xe7\xb4\x72\xce\x87\x05\x35\x11\xce\xcf\x0b\x05\xde\xd4\xde\x2b\xe3\x04\x3c\xef\x74\x92\xf4\xe1\xcc\x2e\xb0\xb3\x3b\x0f\x2b\xb0\xd1\x2d\xe0\xec\x93\x32\x98\x9e\xa6\x1e\xcc\xc7\x12\xa2\x3a\x8c\x4f\xec\xdf\x42\x9c\x87\x98\x2d\xbe\xc1\x3e\xbf\x1b\x8a\xb5\xed\x81\xa0\x0b\xd3\xd2\x19\x1f\x2f\x2c\xbc\xc4\xe1\xa7\x92\xad\xcc\xa1\xab\xdf\x18\x4f\x8d\x91\x69\x48\x5c\x58\x96\xf1\x71\x71\x2a\xd6\x2b\x85\xdc\x5b\x53\x16\x9e\x09\x7a\x66\xf9\x8e\xa5\x0b\xce\x07\xcd\x07\x37\xa0\x91\x09\x05\x07\xd0\x55\xd0\x1c\xa3\x8a\x9e\x2f\xf2\x15\x29\x61\xd4\x7a\x46\xc0\x1a\x07\xc1\x7b\xd0\xd9\xe7\xe6\xab\xa6\x09\xbd\x2c\x2d\xd2\x29\x32\xbd\xb2\x53\x61\xdf\xdb\x09\x29\x4d\x97\x00\x6a\x95\x93\x02\x93\xaa\x65\x8d\x0a\x08\xcd\xde\x75\xe2\x56\x97\x98\xbb\x86\x93\x42\x9c\xe7\x46\x5b\x01\xd1\xc4\x22\x80\x90\x24\xbb\xad\x51\xe7\x16\x4d\xd3\xb0\xf1\xb5\x28\x56\xb4\x9c\x19\xdb\xcd\x91\x74\xb0\xff\xef\x55\x21\xd4\x88\xac\xa2\x24\x70\x9d\x18\x91\x33\x3a\x62\xc6\x75\x40\x8b\x90\x0b\x3a\x2a\x2d\xfe\xe0\x62\x44\x2e\x80\x36\xba\x46\x9f\x26\xf6\xf8\x57\xc9\xaf\x57\xfa\x97\x71\xed\xbe\x6d\x66\xe7\x47\xd5\xf1\x36\x83\x8c\x99\x71\xe3\x0e\x86\x06\x91\x19\x2a\xb9\xa1\x1f\xb3\xec\x23\xfa\x88\x5e\xa3\xa3\x63\x8c\xf1\xec\x26\xcb\x6e\x8c\x3f\x86\x30\x83\x71\x63\xc2\x8f\x9e\xd3\x1b\x43\xbe\x0f\xe8\xab\x48\xb2\x3c\xdd\x2a\x65\x9e\x47\xc7\xe8\xb5\x26\x87\x47\x66\x89\x13\x37\x84\x6e\x61\x1d\xf7\xdf\x68\xb3\x23\xd5\x7f\x18\x5a\xec\x39\x4d\x2a\x90\xd2\x27\x78\x13\x23\x54\xff\xe1\xb5\x5b\xb3\x38\x27\x8d\xcc\x37\xeb\xe8\x58\xac\x50\x12\x1e\xec\xad\xa8\xaf\x2a\xc9\xe2\x96\x68\x22\x33\x8c\x0c\xfa\xbd\x5f\x83\xd9\xe3\x4b\xa4\x4f\x50\x40\x44\x9e\x85\x7d\x39\xa4\x54\xda\x6d\x60\x79\x74\x58\xdc\x6b\x5a\xda\x90\x9b\xb6\xce\x75\x96\x75\xdd\xb4\xd6\x7e\xec\xd7\x64\x74\x72\x52\x5c\x17\x95\x1a\xe1\xb9\x6d\xdb\x58\x30\x59\x2f\x3f\x32\xb4\x1e\xdb\x77\xb8\x1d\xfa\x9a\xe1\x5b\x65\x09\x0a\x61\xd0\xd8\x24\xaa\xb5\x79\x6d\x67\xc1\xbd\xc7\x79\xa7\xfc\xbe\x72\x6d\xfb\x29\x23\x95\x3e\x6b\x71\x2f\x97\xd3\x53\x7a\x53\x20\x69\xb6\x27\x0c\xa0\x1e\xd5\x08\x40\x5a\x51\x35\xb7\x01\xbc\x2b\x52\xe1\xbc\x42\xb1\xdf\xea\x49\x7c\xc1\xcd\xfc\x91\x77\xe4\xc8\xc0\xb1\xa3\xe5\x56\x0c\xf7\xc4\xd8\xf8\x5d\x6e\x21\x95\xa1\x20\x1b\x04\x02\xa0\x03\x1d\x61\x49\x88\x1e\x55\xc4\xb4\xa1\xaf\x2c\x67\x58\x74\x31\xdb\x42\x96\x5a\x86\xed\x1f\x2e\xd8\xc0\xd5\x0c\xb0\x13\x60\xb6\xbe\x32\x76\x67\x83\x62\xf0\x1f\xf0\xf1\x7f\x0c\x4c\x59\x21\x84\xf5\x85\x35\xf8\x5a\x22\x41\x42\xdb\x1d\x55\x4e\xcf\x30\xb3\xf4\xbc\x3b\x46\x6f\xb3\x6a\x58\x91\xed\xc1\xba\x30\x18\x39\xe6\xad\x3f\x9a\xe7\x95\x21\xe3\x48\x73\xa9\x26\x6c\xf9\xeb\xe2\x8a\x1d\xd3\xca\x9a\xde\x9a\xe8\x71\x36\x5a\xca\xcb\xba\xf4\x9b\x7b\x18\x9f\x29\xd1\xf8\x9a\xc5\x69\x47\x17\x77\x9b\x81\xf3\x2a\x47\x5f\x36\xa0\x7e\x30\x4d\xc3\x9c\xbb\x50\xc1\x07\x76\x67\xf5\x15\x1f\x56\xd7\x9b\x60\x41\xaa\x0f\x87\x97\x75\x99\xb3\xa3\xc9\x71\x33\x9b\x02\x6f\x0b\x91\x97\xe1\x28\x78\x59\x97\x94\x1d\x4d\x8f\x31\xd9\x0b\x6f\xac\x9b\x9d\x79\xb7\x77\x4c\xd4\xb8\x38\x53\x4c\x98\xdf\xfb\xc7\x56\x2f\xa5\xc4\xcd\x21\x57\xa2\x62\xd2\xe1\x17\x24\x40\x07\xc1\x82\xd5\x1e\x05\x55\xcd\x81\x0f\xb7\x61\xb5\xfc\x19\x65\x15\x29\x0a\xa6\x2e\xce\x1d\x07\x05\x02\xbc\x82\x56\xb5\xf4\xc8\xf5\x6d\x04\x58\xf4\xcd\x31\x61\x9e\xec\xbe\x21\x16\xeb\xd3\x80\x16\x4b\xa6\xd0\x30\x8e\xc4\xf3\xda\x59\xd4\x05\x3c\xd7\x0a\xf6\x1c\x0f\x4b\xcc\x02\xc6\x6f\x83\xf6\x37\x0b\x23\xd8\xe0\x55\x67\x68\x58\xc9\xd7\xc5\x6b\xe4\x10\x0e\xb0\x63\x2d\x01\xd6\x20\xb1\x91\x06\xa0\x87\x9d\x9d\x3a\x60\xcb\x62\xbd\xe1\x9d\x09\x5e\x8d\x43\x33\x2c\x71\xd2\x12\xb2\xe1\x21\xe8\x70\x4a\xf8\xac\xf5\x5e\xf9\x97\x13\xc2\xbd\xdb\x52\x61\xd6\x70\xe1\x10\x0b\x6e\xf5\xcf\xfc\x65\x13\x63\x15\x78\x66\xc0\xb0\x2c\xca\xb0\x2b\xc3\x89\x47\x39\xb8\x8a\xce\xc3\x83\x44\xa1\xfa\x8a\xbc\x4a\x7e\x5f\x91\x57\x47\xf2\x98\x5e\x01\x6f\xb6\x2c\x00\x44\x8e\x06\xa6\xf5\x7b\x37\x88\x7a\xb3\xcb\x4e\x72\x8f\xfd\x73\xef\xb8\xc3\x9d\x55\xa8\xd5\xe3\x42\x1a\x18\x61\x4a\xaf\x36\x9b\x9e\x3a\x29\xa5\x48\xc5\x0d\xdb\x6c\x14\xb8\xbc\x61\xb8\x4d\xbc\x2a\xc4\x65\xdf\xd1\xfc\x75\xfe\x2f\xaf\xc0\xe9\x36\xe8\x98\x5f\x11\x09\xfb\x6a\xb3\x41\x80\x1f\xd1\xd3\x2e\x8c\xc9\x76\x9f\x9e\x03\xf0\xcd\x65\xe3\x02\x38\xb2\x6e\xf3\x6e\xed\x71\x99\xb3\xa6\x21\xd7\xe8\x8f\x58\x24\x89\x7e\x68\xc1\x75\x9b\x69\x2b\x1b\x1f\xc4\x22\x14\xfd\x43\x57\xa7\x53\x22\x03\xff\x56\x70\x0c\x76\x3d\xf8\x03\x95\x3e\x39\x68\x0c\xfa\x66\x15\x71\x3c\xaf\xf2\x0a\x16\x22\xea\x3b\x7e\xfd\xc7\x40\x8e\xad\x09\xb4\xff\x00\x74\x59\xd7\x00\xa6\x92\x0e\xe0\x88\x1c\xdc\xc1\x20\x92\x03\x2f\x06\x76\xb3\x8c\x8e\x0c\x15\x1d\xf8\xc2\x8e\x47\x8d\x89\x89\xd7\x67\x84\x1f\xe9\x06\xac\x2d\xad\x75\xcc\x09\xf1\x2c\xd4\x58\xb0\x8f\x4c\x48\x86\x30\xe9\xee\x73\xe5\xf7\xb8\xb7\x68\xf3\x58\x29\xc2\x94\xd8\xda\xcd\x22\xde\xea\x1e\x64\x24\xda\xe0\xba\xb9\x90\x55\xd2\xd7\xe4\x53\xb4\x7e\x12\xb7\xaf\x4f\xc6\xa7\xb1\x0d\xb1\x6a\xaf\x01\xd8\x47\x17\xff\x0e\x88\x84\x7d\x06\xc1\xcc\xb0\x99\xe6\xd1\x06\xd9\xb5\xad\x31\x3f\x92\x93\x47\x99\x70\xba\xf1\x21\x08\x49\x86\xcb\x68\x1f\x16\x8e\x42\x7f\xc0\x64\xd8\x32\x52\x06\x92\x3d\xb2\x12\x63\x79\x51\x88\x03\x85\x26\xd8\x73\x8e\xd6\x9b\x24\xcb\x2c\x99\xdd\xe1\x63\xb9\xac\x4a\x86\xa6\x58\x73\xf3\xfa\xf5\x11\x3f\xa6\x0a\x37\x44\xaa\x7a\x95\xb7\x5d\x07\xec\xe8\xc5\xde\x0b\xa1\x5d\x47\x93\xe3\xe8\xec\x49\x79\x0f\x13\xa6\xd3\x8a\xa0\x2c\xe6\x22\xcc\xf1\xf2\xb1\x58\x36\xa4\x23\x8e\xf6\x8e\xba\x6e\x83\x2b\x68\x16\x6c\xa2\x62\xed\x1c\xec\x34\x7f\x11\x65\x0e\x4b\xcb\x2b\x98\x31\xf5\xac\x89\x20\xf5\x5d\x0c\xc8\x70\x58\x37\x6e\x7c\xab\x76\x7f\xed\x92\xdc\x9d\xce\xaa\x27\x74\x32\xdb\xdd\xf5\x91\x6d\xda\x03\x03\x60\x3c\x45\x7b\x70\xe0\xc8\xa5\x94\x16\x63\x73\x08\x63\xaf\x0f\x1f\x31\xbe\x30\xba\x08\xf7\xee\x31\xf5\x2b\xce\xc9\x0e\x76\x4a\x0b\x32\x72\x7c\xc8\x08\x93\x65\x94\x1c\x98\x10\x53\x56\x99\x65\xcb\x74\xf1\x3e\x2e\x3c\x0f\x13\x2a\x0f\x69\x64\x38\x09\xe1\x12\x6c\xfe\x50\x68\xfc\x45\x94\xda\x38\x5d\x44\xf9\xd5\x75\xf9\x78\x3d\xc3\x65\x57\x6f\xa3\xc4\xcd\x00\x1c\x3c\xae\x18\x57\x83\xeb\x4a\x5d\xd4\x6b\x35\x80\xcf\x07\xb5\x18\xd8\x16\x8c\xfe\x44\x83\x9b\xa6\x21\x46\xab\xd1\x82\xb0\xf5\x3b\x6b\xfb\xcc\x73\x33\xf3\xdc\x6b\xc0\x5a\x33\xcf\x81\x23\xaa\xbb\xb3\xe8\xb7\x64\x9d\x4e\x94\xbf\xa3\x64\x1f\x1f\xd7\x71\x33\xed\xc9\x51\xdb\xd0\xf5\x4d\x95\x65\x68\x04\xcf\x23\xe3\x15\x34\x72\xfa\x13\xf8\x8d\xb3\xac\x0a\xb5\x66\x99\x7a\x4c\xab\xa8\x38\xb8\x33\x35\xba\x6a\xb3\x64\x35\x33\x1f\xd6\x27\xb8\x16\x38\xfe\xc7\x44\x99\x26\x85\xa5\x46\xd5\x1c\x6d\x23\x57\xb0\xa5\xe2\x6a\x34\xc7\x6e\xfd\x80\x8c\x32\x03\x15\xb8\x21\xee\x47\x17\x31\xf8\x0b\x08\x46\xd4\x67\xc8\xd2\xee\x38\x24\xce\x43\x73\xe0\xdb\x3c\x52\x66\xd9\x1c\xc8\x13\x1e\xea\x49\x2d\xe4\x4d\x89\xb1\x93\xf8\x42\x81\x66\x73\xe6\x91\x6a\x8b\x59\x2d\x94\xb2\x24\xd4\xe4\x53\x98\x5c\x00\x60\x6a\x25\x2f\xf2\x7e\x8f\x86\xad\xcb\x4a\x99\x65\x95\x1a\x7d\x46\xcb\xca\x04\x4e\xe0\xb1\x9c\x11\xae\x98\x07\xe9\x88\xf3\x68\x5e\x35\x65\xb3\x82\x08\x26\x1f\x10\xd7\x4d\x6c\x08\x6c\xa2\xff\xaa\x26\x9a\x35\x08\xcd\x73\xf1\x7f\xb6\x9e\x12\x22\x52\x8e\xd4\x54\xc0\xac\xeb\x56\x36\xfe\x66\xbb\xe9\xd0\x85\x6a\xa9\x0f\xd2\xa5\xa5\x04\x85\x52\xec\x6a\xa5\x46\xb8\x21\xee\x84\x05\xfd\x5a\xbc\xd4\x62\x24\xf0\xf4\x2c\xbe\x75\x42\x63\xfe\x1a\xac\x2f\xbc\x48\x9b\x73\x62\x45\xd8\x5c\x34\xc4\x2b\x65\xa3\x95\xe2\xa6\xde\x1e\x1c\x7a\x58\x59\x83\xfc\xad\x2b\xb6\xe0\x2c\xe7\x8e\x5d\x7a\xb7\xe6\xaa\xba\x62\x54\x58\x85\x62\x8d\x6f\x3d\xbb\x37\x12\xa0\x06\x6b\xe7\x1d\xd0\x81\x18\x61\x24\xfa\x8c\xca\x50\x9b\xe7\x12\xb4\x17\xbd\x53\x73\xfe\x9b\x4d\xef\x2b\xc9\x96\x67\x59\xa6\xff\xdf\x6c\x0c\x30\x28\xa9\xa9\x6b\x53\x64\x0e\x02\xd6\x15\xb3\xf6\x8d\x92\xd5\xaa\x2d\x42\xb8\xc3\x25\x2b\xc4\xf7\x5a\x04\x55\x11\x52\x69\x0f\xb3\xa9\xe7\xb2\xb2\x41\x28\x51\x84\x69\x2a\x22\x3f\x1b\x12\xe3\x9a\xc2\xcd\xac\x64\x06\x44\x5f\xef\xdf\xcf\x97\xe9\xb2\xf6\x14\xea\x5e\x41\xa9\x71\x35\xd4\xfe\xec\x56\xc3\xf0\xad\xb5\xfa\xab\x25\xf8\xc1\x56\x49\x54\x0f\xc1\xce\x68\x95\xf8\x38\x9e\xa5\x58\x30\xf1\x4b\x28\xa3\xe3\xa2\xe9\x46\xcf\x74\x40\x10\x37\xba\xd0\x48\xc6\x45\xbd\x6c\x3b\x1d\x25\x90\xb4\x4c\xe7\x5d\x32\xfb\xf3\xc5\x42\xcb\x47\x71\x0a\x55\x06\x58\xa6\x53\xd2\xd7\x96\xb3\x3b\xd5\x05\x9d\x40\x9f\x8d\x7d\x3d\x55\xd6\xf2\xfc\x2b\x4a\x9d\x39\x3d\x47\x9c\x0e\x04\x06\xc2\xd5\xa6\xb9\x63\x68\xde\x56\x34\x02\x03\xf6\x53\xaf\xc1\x72\x36\xfc\xd2\x12\x90\x31\x4a\xe7\x68\xba\x37\xc5\x76\xf5\x38\x84\xb3\xfe\x8d\x12\x76\x43\x92\x79\xcb\xde\x31\x56\xf0\x49\x3e\x3d\x65\xf6\x30\x8f\x5f\xb8\x45\xf6\xe5\xd5\xa7\xd9\xef\x6a\x40\x3b\x67\xd4\x84\xf4\x55\x83\x63\x71\x00\x4d\xef\xe3\x1e\x68\x6a\x94\x2e\xb0\x61\xea\x57\x94\xdc\x62\x02\xe4\x48\xd2\x4d\x4b\x84\x48\x4d\xa7\xa4\xa2\xb7\x0d\x29\xb4\xe4\x23\x69\x88\xa1\x48\xca\xfe\xbb\x87\xd8\x37\x32\xd1\x0c\xe0\x59\x49\xcb\x2c\x2b\x23\x6a\x32\x2f\x73\x46\xbc\x28\xba\x12\x75\xc9\xa4\x3c\xd6\x94\xf9\xb6\xf1\xc2\xab\x55\x08\x8d\xed\x6b\x3c\x4f\xaf\x63\x15\x9c\xd6\x1f\xaa\xf2\x32\x59\x4e\x6b\x73\x77\xde\xc4\x22\x10\xa8\x87\x23\xc0\xd3\x2c\x1b\x42\x6c\xf6\x5a\xa8\xf7\xe0\x98\x29\x9d\xbc\xab\x05\x4c\xca\x02\xae\x6b\x10\xef\x7b\xa1\x5e\x15\xe0\xac\x26\x65\xa3\xd1\x88\x8c\xfe\x73\xa4\x77\x5c\xf8\x84\x13\xd5\x34\x08\xcf\x5b\x56\x69\x8a\x8e\xe2\xb1\xff\x66\xb4\x03\xb0\xa7\xa2\xe0\x8b\xfa\x0a\xe1\x9d\xd1\x37\x23\x12\xa9\x86\x38\xbe\xe5\x63\x59\xaf\x45\xc9\x28\x44\xe0\xeb\x71\xbf\x19\x2f\x0a\x55\x64\x99\x09\xe0\xaa\x9f\xbd\xdd\x99\xc2\x59\xb6\xd6\x82\x23\xa4\x1a\xe9\x51\x79\x6d\x5d\x33\x63\xe3\x62\xb1\x80\x40\x08\x2f\x2b\xa9\xf4\x11\x36\xef\x26\xa1\x91\xed\xd2\x08\x62\x9b\xe0\x9c\x8d\x0b\xa5\x8a\xff\x8f\xbd\x3f\xe1\x4a\x5c\x59\x17\xc7\xe1\xaf\x52\xc7\x77\xad\x7d\xf5\x6a\xd2\x55\x49\x98\x7a\x1f\xcf\x5e\x4c\xed\x04\x38\x80\xc2\xbe\xfd\xeb\xd7\x55\x84\x08\x11\x48\x30\x24\x2a\x9c\xda\xdf\xfd\xbf\x9e\xca\xcc\x24\xd8\xa2\xd8\xcd\x4a\x37\x29\x93\xaa\x4c\x55\xcf\x3c\xa9\x1d\xde\x6b\x77\x27\x78\xe5\x9d\x03\x63\x2f\x9a\x80\xd6\x00\x40\x8f\x7e\x26\x7b\xdf\xe0\xdf\x09\xbe\xcb\x57\x4d\x8c\xa7\xda\x9d\xfc\x50\xda\x8c\x74\xbc\x7f\x6a\xf3\x93\xf0\x6a\x7c\x1d\xf0\x37\xdd\x8b\xe5\xc1\xb5\xdd\xc7\xb0\x6c\x29\xfe\x30\xee\x63\x0c\xff\xf8\x63\xc7\x34\xb8\x65\x99\x4b\x2c\x6a\x87\x1a\x6d\x6d\x47\x07\x61\x34\xee\xd8\xb6\xe3\x06\xf4\xee\x4c\x4d\xa9\x76\x38\x9c\xac\x36\xfa\x67\xfc\xfe\x2e\xd7\x35\xf7\x82\x7f\x1a\xe2\xf4\x23\x1c\xc6\x16\x38\x57\xb0\xcf\xe8\xe4\x56\x7b\x99\x28\x3b\xea\xd5\xf5\xe5\x9a\xb4\xc1\x40\x33\x5a\xfe\x09\xfe\xc6\x71\x90\x8a\x27\x58\x3f\xd0\x80\xe5\x8f\xa3\xdc\x98\x3f\x44\xa0\xa0\x8c\xa1\xb3\x5d\x77\xb2\x42\xa6\x68\x67\x5f\x8b\x54\xc9\xb3\x23\x8e\xb2\x93\x5e\xb4\x02\x81\xc7\xc5\x7f\x1a\xff\x0e\xd4\x46\xc6\xfe\xfe\x1e\x8f\x80\x0e\x1d\x68\x8d\x7d\xf2\xc3\x13\x7e\xfe\x1b\x24\x1e\xd4\x80\x3f\x18\x7e\xb5\x03\xf1\x47\xe7\x4e\xec\x07\xd6\xae\xb9\x77\x60\xee\xef\xc3\x9b\x4c\xe0\xef\x5e\xcc\x9c\xbc\xf7\x5f\x4f\x1b\xaf\x7f\xd7\x7e\x84\x67\x1c\x4f\x83\x41\xf7\xa6\x3e\x4e\x34\x6f\x2b\x0c\xe2\x02\xec\xde\x7f\xe9\xa1\x57\x3b\x63\x66\x25\x10\xff\x81\x79\xa6\x15\x78\x64\xbf\x2e\xb6\xe5\x83\xa2\x9b\x86\x12\x7f\xb5\x77\xa3\xf5\x2f\x11\xf9\x6a\xef\x5a\xdf\xf1\x8f\xd8\x41\xc9\x3b\x78\x60\x7d\x27\xf1\x33\x72\xf4\xcc\x81\xf5\x5d\x0a\x4e\x07\x29\x2c\x3d\x77\x5b\x5e\x47\xe7\x9f\x68\x49\x2c\xf8\x1a\x1c\xef\x83\x84\xfd\xcf\xec\xa2\x24\x40\xe1\xfe\x9a\x79\xc6\x95\xe1\xbe\x6a\x5f\xa1\xcb\xde\x34\xc5\x3a\x30\x76\x93\xca\x2c\xba\xf5\xe8\x57\x51\x88\xc4\xfe\xd3\x83\xe1\xbc\xf4\x62\x7f\x85\x9e\x91\xc3\x5d\x63\x57\x4a\xee\xed\x7d\xdd\x35\x0f\xbf\xf3\xe6\x8f\x83\x30\xb5\xb3\x3e\x4b\x95\xbe\x6b\x1d\x02\x45\x09\x32\xa8\x98\x7b\x5f\xad\x3d\xc6\x42\xc6\xff\x50\xdf\xdb\xfb\x67\x17\xc7\x0d\xa2\x33\x5d\x80\xfe\x0b\x18\xe6\xbf\xff\xf8\x6e\xc1\xff\xfd\xe7\xcf\x99\xa8\x59\x13\xbd\x12\x17\x8c\x3d\xef\xee\x94\x4d\xae\x0e\x81\x15\x35\x36\x0d\x8d\x27\xd4\xd7\x2d\x6d\x88\xdc\x13\xe2\xfd\x50\x44\x55\x4d\x0b\x92\xcd\xf7\xf9\xe1\x7b\x2e\x1e\x7e\xb1\xbd\x51\x5f\x5a\xa6\x3a\xfc\xf2\xff\xe3\xc9\xed\x74\xfb\x8b\x97\xa2\xfe\xcb\x8e\xaf\x1b\x08\x6e\xe9\xc7\x9b\x8b\x3b\x7b\x07\xc3\xc3\x7d\xcf\x5d\x78\x9f\xfb\x0b\xc7\x81\xc0\xa7\x77\xff\xc9\x24\xff\xd2\x84\x74\xea\xab\xf6\x9f\xa4\xf2\x97\x26\x48\x99\xaf\x9a\xa0\xa4\x27\x00\xc3\x5d\xd5\x2e\xcd\x8c\xdc\xc2\x3a\x34\xe0\x0e\xe6\xa1\xf1\x9d\xfc\xe0\x11\x35\xfa\x21\x39\xa0\x87\xf8\x60\x78\x48\x38\x26\x50\x12\x5c\xfc\x56\x3b\xd4\xca\x9b\x2d\xcd\x53\x76\xee\xda\x87\xc0\x6b\x08\x64\xef\x4f\xfb\xdf\x56\x34\x53\x00\x3d\x4c\xe2\xff\xa5\xfb\xbd\x5d\x2b\x3a\xc6\xf6\xf0\x8a\x5b\xaa\xd0\x8c\x0e\xd0\xbf\x1c\x26\xf1\x01\xdd\x3f\xec\x81\x34\x11\x1b\xf2\xbf\x81\x2f\x10\xfd\xdf\x88\xbb\xd8\x20\x2e\x3f\x4f\x15\x3f\xe4\x0e\x0c\xce\x2e\xaf\x08\x19\x8e\xba\x8b\x66\xf0\xb2\x7c\x7d\xf9\x0c\x24\x66\xb9\xee\xde\x80\xcb\x02\x1f\xed\x48\xcd\xf1\x56\x14\x49\x78\x9f\x92\xed\x00\x3a\xb4\xbf\x4b\x3f\x22\xf9\x02\x0e\xac\x43\xfb\xbb\x1c\x1c\xd9\xd9\x3b\x30\x0f\xed\xef\x4a\xb4\x8b\x7f\xf9\x01\xa0\xff\xc1\xae\x05\x3f\xe6\xde\xc1\x3c\x1d\x19\x7f\x54\xfe\x8c\x3c\x5f\xba\xcb\x82\x98\x8e\xd1\xda\xdd\xd5\xbe\x1b\x02\xcc\x20\xde\xdb\x4f\x6a\xca\xff\xba\xde\xea\xda\x77\x5b\x20\x3f\x0e\xc9\x17\xfc\xcf\xae\x79\x10\xe0\xad\x83\xff\x1a\x20\x70\xdb\x30\xf3\xb4\xd9\xb4\x86\x5f\xef\x76\xed\xef\x24\xfe\xec\x7b\x07\xe6\xdd\xdd\x50\xb3\xe1\x24\xaf\x72\x0d\x12\x72\x6f\xf8\xd5\x3c\x18\x98\x03\xc7\x4d\xb9\xf8\x15\x33\xfb\x7b\xe2\x47\xc4\x50\xd7\xf1\x24\x37\x5f\x35\x6f\xef\xb6\x76\x63\x75\xcc\x9b\xd1\xaf\x67\x9b\x00\x55\x2e\x0f\xb9\xcb\xbf\xa0\xd8\xe7\xa2\xfa\x97\xff\xb7\xfb\x9d\x0a\x63\xf4\x63\xff\xff\xed\x7d\xd1\xf7\xfe\xdc\x39\x2a\xd7\xb8\x6d\xcc\xe0\xf9\x4a\xbf\xe3\x1f\x7f\x41\xf3\x3b\xfe\xe1\x0f\xf8\x9e\x15\xfe\xef\xc7\x97\xf6\xde\xde\x5f\x86\x78\x6f\xea\x40\xcc\xf6\xbc\x32\xdd\x5f\x77\x23\x17\xe6\xfd\xfe\x2b\x1f\x24\xfe\x71\x3b\x7f\xc7\x3f\xfc\x6a\xde\xbc\xcc\xac\xd7\xf6\x6c\x03\xf6\xe1\xbe\x27\x6c\xc3\x77\x02\xe6\x90\x47\xa1\xf2\x0f\x73\xc8\x53\xf5\xf8\x68\xe1\x9c\x1f\xdb\xdd\x8b\x7a\x0d\xf9\xd6\x60\x38\xef\x0b\xed\xee\xd8\xaa\x6a\x5a\x9a\x6f\xcb\x80\x4b\x7b\x07\xa2\x5e\x46\xf1\xb9\x3f\xb0\xfe\xb4\x0e\x61\x66\x77\x77\x6d\x91\xda\x02\x70\x73\x7b\x5f\x88\xa4\x29\x0c\xef\xfd\xb9\xb7\xeb\x46\xb5\x34\x79\x78\x60\x81\xda\xda\x2e\x74\xd8\xb7\xf6\xf6\xf6\xfc\xc7\x05\x28\x76\x9b\x7f\x69\x87\xc6\x57\xfb\x30\xb0\xce\x46\x92\xe8\xb7\x27\xa2\x0e\x23\x8f\xcb\x8b\xae\x47\xfe\xfe\x2b\x76\x56\x88\x9d\x03\x66\xd3\x7f\x2b\x3e\x2e\xf8\xeb\xaf\xc8\x19\x21\x72\xfc\xab\xc6\x3f\x93\x18\x2e\x2e\x3e\x6e\xe2\xd8\x5f\x53\x47\x84\xa9\x71\x5f\xbd\x3e\xb0\xc6\xc5\x9e\xa9\xd2\x9e\x96\x37\xfb\x03\x6a\xc1\x37\x09\xce\x44\x26\xea\x31\x86\x18\x38\x56\x18\x70\xce\x6d\x06\x6a\x38\x04\xac\x70\xa0\x7f\xb7\x7e\xf0\x60\x11\xee\xbb\x0b\x8d\xef\xda\x8f\xc3\x7f\x45\xa6\x6f\x14\x09\xf5\x3b\xb0\x0e\x68\x50\x4f\xe0\x60\x08\xb4\x47\xf5\xd1\x8f\x8b\xbd\x28\x47\x5b\x1c\x1d\x21\xdd\x40\x16\x30\x29\xdf\xed\x1f\xde\x17\xe5\x77\xd9\xb3\x26\x7c\x55\x77\x0d\x58\xb0\xdc\x96\xf4\x2f\xec\x21\x57\xee\xa8\xbe\x37\x9c\xec\x09\xf2\x84\xea\x1a\x03\x4d\xc0\x89\xfe\xbc\xab\xe1\xf3\x66\x77\x5d\x07\x3d\x97\x31\x3e\x31\xec\x1e\xaf\x84\x03\xab\xfb\x9b\x69\xf5\xa9\xbd\xbb\xe7\xbb\x27\xb5\xce\xb9\xe1\x68\xb8\xbb\xc7\x53\x4f\xff\x9f\x69\x70\xaf\x02\x2e\x1e\xbb\xef\xf8\x1f\xd9\x07\x71\xf3\xfb\xd3\xae\xb6\xe7\xf1\x5b\xbe\x3e\xf0\xcf\x19\x44\xf5\x0e\xb0\x18\xda\xd9\xd7\xf6\x77\xd0\x9d\x65\xf6\x79\x9a\x59\x78\x0c\x44\x07\xfa\x01\x6a\x3a\x36\x6a\xe9\x2d\xee\x5e\xd2\xa1\x8f\x5e\x15\x18\x10\x1a\x78\x19\x18\xad\x25\xee\x04\x7e\x83\x8e\xe7\x9e\x07\xdf\x5d\x8f\x97\x0d\x72\x73\xbe\xf1\x29\x39\x0c\x20\x65\x0f\xc0\xf8\x9b\xd3\xeb\xfd\xad\x51\x6b\x77\x4f\x90\x80\x1a\xc6\x61\xc9\x3a\xc0\x07\x84\xe7\xe9\xf9\x6e\xfa\x64\x83\xfc\x69\xfc\x5b\x49\xf3\x55\xb1\x6b\x4f\x0f\x30\x60\x80\x0f\x7b\xff\x3a\x3c\x34\xbd\x26\xe7\xba\xcb\xbc\x08\xc6\x81\xee\x67\x4e\xf4\x5b\xb3\x40\x38\xa9\x29\x7b\x7b\x3c\x1e\xd5\x8e\x10\x2c\x85\xdf\x78\xf6\x30\x6b\xdf\x70\x9f\x77\xde\x75\xa1\x43\x92\x77\x08\x58\xf0\x7f\x76\x79\x70\x92\xbf\x48\xd5\xc3\xd1\x2e\xdd\x3b\xe8\xf9\xcb\xd4\xf5\xea\x56\x63\x5e\xe1\x5e\xed\x58\xed\x09\xf5\x77\x6f\x77\xd5\xef\xd6\x8f\xbd\x83\x21\x7c\x23\xfc\xa7\xfe\xef\xe1\x9f\xfa\xfe\xfe\x9e\x21\x0e\x01\xb6\x5d\xdc\x98\xb5\x77\xe9\x77\xfd\xc7\xde\x9f\x3d\xdf\x2e\x1d\xa4\x9f\xe3\x09\xc0\x77\xdb\x7b\x07\x3d\x7f\x05\xe1\xbf\x7a\x80\xdc\x03\x70\xf5\x70\xf4\x3f\x71\xc7\x46\x3f\x91\x19\x0f\x50\x17\x6d\xb3\x64\x3e\x69\x56\x9e\x0e\xb5\xdd\x68\xe4\xf3\x97\x2f\xed\x83\x9d\xdb\x9d\x99\xae\x8a\xee\x1a\xe1\xef\x38\x83\x0f\xe4\x93\xf5\x5d\xfb\xe1\x97\xda\xd7\xe2\x8c\xce\xd3\xae\x05\x3c\x2b\x07\xd5\x90\x11\xd8\x03\xd6\xff\xc0\xf8\x4e\x39\x13\xf1\xe3\x80\x3b\xe4\x5b\x07\x8f\xbb\xf4\x40\x8f\x33\x08\x7b\x71\x4f\x3b\x90\x78\x0f\x9f\xfc\xec\xdd\xb0\x74\x23\xa9\x38\xb8\xc3\x7f\xe0\xeb\xdd\xf9\x8b\xce\x88\xb9\xa6\x7f\xed\xba\x1e\xde\x1d\x98\x3c\x18\x7c\x48\x0f\xe8\xde\x57\xcb\x0d\xcc\xfb\xd7\xe1\xe1\x2d\x37\x4a\xdd\xee\xc2\x91\x83\xdb\xbd\xbd\xbf\x76\x77\xdd\xbb\xb8\xc3\xf6\x5c\x92\xad\xef\x1d\x50\x37\xcf\xb2\x09\xfd\xa8\x57\x99\x6e\x86\xe3\xd6\x81\xf1\xea\xcf\xa7\x1f\x3e\xed\xee\x1a\xb3\x3f\x1e\x7c\x5a\x83\x3b\x7c\x59\xdf\x75\x78\x09\x93\x57\x44\x71\x85\x24\x1e\xde\xc0\x3f\x2a\x74\x99\xe9\xce\xb5\xd3\x70\x6d\x46\xb7\x77\x8c\xed\x3c\xfb\x6d\xdf\x05\x67\xf7\x5f\x9a\x78\x4b\xfd\x92\xb1\x3c\xd5\xe6\xad\x3d\xee\x33\x16\x75\x0e\x7b\x76\x85\x88\x45\xd5\xb9\x66\x56\xbf\x88\x96\x4c\x9a\x2c\x7c\xa5\xc5\x5c\xbb\x02\x05\x83\x9b\x71\x2f\xd4\x57\x73\x85\x8f\x67\x62\xf6\x45\xe9\x03\x7c\x00\x22\xb7\x15\xcd\x36\x39\x25\x92\x03\x1f\x7f\x0b\x4c\xa4\x7e\xa8\x89\x8e\xad\xfa\x62\xa3\x1b\xb6\x15\xc4\x2e\xba\x3a\xb5\xa1\x8b\x82\x39\x71\xa8\xed\xea\xdc\x98\x49\x5b\xad\x5d\x53\x1c\x50\x6b\xa8\xc1\x22\xd8\xe9\xeb\x86\x63\x6b\xc3\x1d\x40\x24\xf6\x98\x5f\xf9\x9f\xdd\xe1\xbf\x25\xc6\xa4\xc3\xc3\xc3\xe1\x1f\x7f\xa8\xff\x4e\xee\xfd\xf1\xc7\x52\x42\x12\xfa\xcf\x21\x92\xc4\xa4\x88\x45\xf4\xb7\xe9\x20\x6a\x69\xc8\x19\xea\x46\x3b\xd2\x63\x67\x3f\x10\x83\xf6\x77\x5c\xa1\x2a\x2a\x4c\xed\xec\x1d\x74\xa2\x3e\x24\xb7\x93\x4e\x23\xae\x61\xd0\xcd\x7d\x61\xf0\xf4\x02\x3e\x7b\x35\x3c\x74\xd9\x8e\xa1\x7b\xc8\x65\x65\xe1\x23\xf1\x46\x94\x33\x1b\x06\x5c\x92\x77\x38\x64\x2c\x0e\xa3\x5c\xc6\x3f\x07\xb7\x5c\x5d\x37\x5d\x21\xf5\xc0\x00\xa6\xd1\x3a\x8c\xdc\x29\x42\xea\x63\xb2\x92\x7e\xb7\x6b\xfc\xdb\x02\x92\xec\xd3\xc6\x7f\x0e\xf8\xd7\x9f\x75\xd5\x03\x2e\x71\xc3\xb5\x3d\xef\x07\xff\x31\x87\xd1\x5b\x1d\xa8\x87\x11\x0b\x22\xdc\xd7\xcd\x17\xa0\xf2\x7c\x01\x40\x87\x0f\x29\x77\xd2\x83\xdd\x3e\xf9\x01\x4b\xea\xbb\xf9\x97\x29\x90\xaf\xe6\x8f\x03\xfb\xdf\xc6\x1f\x7f\x54\xc4\xbe\xf9\xa8\x65\xfb\x4d\xbd\xed\x98\xce\xf0\x9b\x69\x3d\x51\xab\xf5\x97\x0d\x4c\xe3\x7f\x2c\xff\xfc\x89\xc1\x33\xc6\x7b\x67\xb9\x44\x08\xeb\xe3\xdf\xc3\xef\xe6\x0f\x01\x18\xd5\x80\xe0\xd3\x30\x2f\x01\xa2\xdf\xd5\x1f\xff\x70\xa1\x63\x66\x1d\xcc\x60\xbe\xbe\xfb\x2e\xe4\x2d\x0d\x20\xf1\xc7\x3f\x9e\x34\x32\x6b\xd4\xf3\xee\x0e\xa7\x13\x6e\x0f\xd4\xa1\x43\x37\xa5\x76\x4b\x1b\x58\x9a\x4a\x6d\xad\x05\x7c\xd1\x1d\x7d\x34\x2d\x64\xde\x21\xde\xd7\xb1\x55\x97\x2a\xed\xec\xc5\x66\x7f\xfa\xbe\x41\xcf\xb9\x0f\x3c\x6f\xe8\x3f\x07\xfd\x28\x54\x47\x29\xe1\xe1\xd4\xb2\x8d\x30\xcf\xfb\xae\x60\x47\x9b\x6e\x6a\x5a\x31\xfe\xc0\x9c\x2b\xd8\x13\xfc\xd7\xf5\x1e\x9f\xf7\x81\x2f\xe7\x9e\x0e\xa9\xdf\xf7\xff\xbf\x2b\x18\x1d\xec\xec\xec\x71\x54\x07\x9d\x3c\xf9\x2c\x60\xbe\xf7\xf7\xff\x39\xa8\xf8\xa0\x77\xb8\x83\xc5\x84\x28\xa5\x76\x0e\x2a\x5c\x2d\x7b\xe3\x1f\x86\x03\xb7\x70\xa3\xe1\xa1\x01\xcd\x9e\x6e\x74\x87\x87\x16\x34\x0d\x9e\x8a\xca\x3c\xa8\x00\x0a\x39\x1c\x1f\x54\x44\x38\x79\x78\x0e\x0d\x93\xc6\x93\x66\x8d\x3d\x36\x7c\xb8\x77\x70\xbe\xab\xf1\x8e\xc3\xbd\x89\x7b\x05\x78\x00\x9e\x8b\x8b\x4f\xb7\x5e\xa3\xf8\xac\x0f\x23\x09\x4a\x78\x85\xf8\x88\x73\x9e\xde\xaa\x76\xcc\x27\x6e\xb7\xe6\x2a\xa2\xe8\x81\xc3\x7f\xe1\x83\xe7\xdd\x1d\x17\xa5\x88\xf6\x38\x72\xbd\xdd\xff\xe1\x39\x54\xfe\x67\xef\xc5\xd5\xf3\xaf\xf8\xf0\x60\xe0\xce\xde\xde\xc1\xbf\xfe\x75\xbb\x6b\xef\xc1\x23\xb7\x1d\x6d\x38\x33\xd7\x8d\x0d\xc8\x97\xb1\x5d\xfb\x30\xbb\xbb\xb7\x77\x60\x43\x67\x23\x9e\xc7\x2b\x60\x53\x7d\xe6\x4b\xe3\xa5\x0d\xf7\xcc\x49\xb6\x5e\xe3\x12\xeb\x77\xed\x07\x63\xc6\x77\xa0\xe8\x3f\xf6\xfe\xf8\xc3\x74\x69\xbd\xcf\xed\x6b\x3f\x22\xde\x7f\x9c\xcb\xe2\xcf\x07\x4c\xfb\x61\xe7\xa0\x22\x3a\xc6\x80\xaa\xdd\xc3\x56\xd0\xcc\xd1\xa1\x96\xc4\x87\x0e\x3c\x97\xa6\xb5\x86\xee\xa2\x3b\xac\x1d\xcc\x82\x7a\xf8\xa2\xb3\xb1\xc5\xa1\x57\xe5\xb8\x74\x50\x3c\xd4\xc4\xbb\x48\xba\x93\xea\xc2\xec\xaa\x2e\x0c\x8d\xff\xf2\xf6\xee\x92\xe6\x1e\x77\x41\x88\x10\xfc\x11\xd1\x38\x3c\x2c\x73\x3d\x5f\xe1\x3e\x3b\xc3\xe4\x3f\x9a\x68\x8f\x0f\x2b\x07\x9a\x1f\xb6\xcd\x3f\x8f\x37\xc4\xe1\x39\x7a\xbd\xcf\x10\x75\x36\x0d\xed\x6f\xb1\x71\x61\x19\x38\x5e\xc7\xec\x76\xfc\xc7\x1f\xbb\x26\x90\x58\x20\xb4\xff\xb2\xc5\x5b\x7d\x78\x5d\xcb\x73\x17\xf6\xdb\x96\x4b\xa7\xa1\x49\xf7\xc4\xdb\xd6\x81\xcd\xff\xdc\x8b\x11\x62\x3b\x4a\x88\xf7\x0e\xe0\x92\x87\xa6\xbb\xe7\xde\xd8\xfc\x26\x11\xfc\x60\xef\x1d\x04\xf8\xc3\xda\xfb\x37\x49\xfe\xf1\xc7\xae\xf5\xe5\x30\x89\xf7\x0e\xc2\x7a\x78\x61\x7f\xdf\xeb\x09\xae\xf2\x67\xe4\xf8\xae\x60\xb9\x59\xe9\x6e\xc7\x87\xba\xeb\x71\xe6\x0a\xd6\x20\xdc\xec\xfd\x73\x50\x84\x6f\x16\xff\x1e\xae\x56\x5d\xbf\x0b\x78\xc1\x48\xd5\x81\x69\x6f\x33\xe0\x15\x38\x32\x46\x00\x00\x6e\x95\x81\xa6\x86\x28\x72\x07\x1f\xa0\xb6\x5b\x54\x60\x7f\x07\x7d\x0f\x6b\x0b\xec\xef\xfc\x08\xd5\x66\xfe\xec\x02\xd8\x1d\xf8\x4b\x27\x3e\x65\xbe\x3f\xe6\xd7\x19\x4c\x0a\xc0\xba\x61\xba\x62\xe4\x9d\x69\xb9\x37\x0b\x95\xb9\x2f\xe9\x72\x61\x9c\x00\xe8\x4d\x37\xda\x5f\x44\x8f\x90\xfc\xe3\xfb\xc6\xdd\x8e\xf7\xe2\x4f\xc9\xe1\x1c\xbe\x1b\x5c\x83\xfb\x9c\x57\x77\xc3\x3f\xf6\xbc\x13\xd9\x66\xd3\x0a\x4e\xc0\x1f\x70\xc2\xb1\xd5\xc3\x87\x5d\xbe\x87\x3f\xb9\x52\x83\x1f\xe0\x2d\xaf\x87\xb7\x44\x77\x4b\x87\x91\x3f\x0f\xa6\x41\x62\x92\x6f\xfc\x0f\xf6\x1d\x6b\x3c\x38\xd9\x3b\x28\xcd\x01\x94\xbd\x03\x80\x14\x71\xa8\xd9\x85\xc9\x24\x5b\x61\x26\xd4\x38\x7f\x98\x99\xcd\x1f\x86\x97\xd8\xdd\x9b\xcb\x2c\x66\x96\x67\x16\xb9\x15\x37\x0a\xbd\xf6\x5f\xb0\x28\xdc\x92\xd7\x9a\x1b\x89\x97\x3f\xd4\x44\x77\x42\x3d\x14\xaa\x6b\x7e\x81\xac\xc0\xc0\xcd\x79\x71\x6e\xde\x9e\x4a\x67\x1b\x37\x76\xe7\xf7\xfe\xda\xcd\xbb\x58\x76\xe7\x76\xbc\xb3\x77\x10\xfc\x41\x77\xf6\xf6\xbe\x02\x80\xe7\xc3\x0f\xea\x56\x39\x88\x79\xb7\x04\xd6\x8b\xd3\xea\x79\xc5\x03\xf5\xff\xf9\xef\x8e\xf7\x4a\x3b\x5f\x77\x24\x4c\x32\xea\xce\x01\xe7\x6d\x86\x3b\x5f\xbf\xef\x64\xef\x2c\x5d\xa5\x5f\xb2\x4d\xbd\x75\x4f\x0d\x56\x2a\xd7\xd0\x51\xb9\xc6\xda\x62\x1a\x61\x86\x09\x13\xa4\x5e\xab\x71\x2c\x5e\x32\x25\xad\x25\x76\x0e\x82\xfe\xaa\x6a\x51\xbf\x37\xda\xc7\x58\xc2\x4c\xbc\x44\x18\x09\x5d\x86\x89\xb4\xd2\xc6\x04\x29\x99\x6b\x36\xc4\x34\x4a\xda\x63\xd8\x95\x8d\x22\x22\xb9\x6c\x77\x5e\x23\x8f\xe7\x9e\xda\xac\x3e\x4c\x21\xd1\x8f\x56\xa1\xba\x65\x36\x75\xfe\xd9\x8a\x59\xf8\x6c\x92\x8c\xe1\x57\x49\x30\x41\xb2\xc4\x36\x12\x64\x8c\x04\xc9\x41\x82\x74\x0a\x9f\x51\x26\x4c\x20\xdf\xe4\x3c\x9c\x92\x0b\x63\xd8\x99\xdd\xb2\x83\xca\xdf\x1a\xa7\x4c\x49\xc5\x26\xa4\xd7\xd6\x35\x6b\xc8\x2e\xca\x35\x54\x2f\xc2\xff\x6a\x0d\xe5\x8b\xf0\xbf\x5a\x63\x42\x46\xec\xc1\xe4\x10\xef\xbf\x84\xa7\x66\x49\x56\x64\x45\x26\x32\xb4\xa1\x21\x11\x99\x09\x92\xa1\x9a\x30\x52\xad\x34\x61\x77\x9c\xc5\x88\x64\xe0\x47\x2f\x63\x44\x88\x8a\x11\x31\x4d\x8c\xea\x26\x46\xc4\x52\x31\xba\x84\xc3\xc5\x32\x46\xd7\x65\x8c\x0a\x59\x8c\x4e\xfa\x26\x46\x56\x0b\xa3\x82\x86\x51\xa6\x31\xc6\x88\xdc\x35\x31\x22\x74\x80\x11\x49\x9e\x61\x24\x8d\x4c\x8c\xfa\xc5\x01\x46\x9d\xa7\x12\x46\xf7\xcf\x70\x75\x92\xc5\xa8\x55\x68\x61\x44\x52\xd0\x99\xe4\x30\x22\x6a\x05\x23\xa9\x30\xf2\x5a\xe4\x8e\x1f\x2b\x61\x26\x25\xa3\x5f\xa1\x44\xdb\xe6\x90\x7f\xdf\x7a\xb6\xc6\x84\x96\x98\x85\xf7\x75\xd7\xb1\x34\xc2\x2d\x31\xcb\x48\x4a\x4b\x86\x03\x72\xfa\x70\x48\x1d\x3e\x42\xc0\x84\x2f\x7d\x22\x89\x5d\x44\x30\x5f\xfe\x92\xbb\xfe\x31\x92\x9e\x4d\x13\x33\x39\xa3\x29\xe1\xd8\x32\x1d\x38\xb6\xc9\xc7\xe6\xe1\x6e\x12\x15\xbb\xde\xa7\x65\x82\x74\x74\xaa\x51\xb1\x3b\xf1\x7c\x79\x58\x01\xac\x58\xac\xa1\x22\x9f\x16\x09\xc3\x94\x33\x4c\x3e\x74\x63\x02\x69\x9e\x9c\x63\xf4\x08\x5f\x5b\x87\xa9\x21\x30\x53\x3a\x7c\x68\x03\x5a\x12\x1c\x1b\x40\x0b\x57\xfc\x56\x12\x8e\xdd\x8f\x31\x1a\xca\x2d\x8c\x6e\xe0\x90\x09\x27\x09\x5c\xc4\x3c\x8f\xf5\x75\x5b\xcd\x85\xad\x79\xfd\x08\xac\x03\xb3\xe4\xb7\x66\x1d\x9b\xd5\x7a\x8f\x7e\xf5\x92\xbb\xb8\xc9\xd5\x18\xa3\xa7\xc1\xab\xae\xf6\x50\xc2\xa8\xf1\xba\x87\x33\x46\xfe\x4c\x99\x64\x51\xeb\xa1\xb2\x5c\xbf\x97\x47\xc0\x0b\xf3\x93\x57\xf0\x60\xf0\xc6\xe7\x06\x46\x64\xdc\xc2\xa8\x04\x7d\x8a\x15\x8c\xbe\x35\x31\x52\x09\x46\x69\x03\xa3\x74\xa5\x85\x51\xbb\x84\x91\x46\x30\xea\x1b\x98\x91\x44\x14\xf8\xf2\x74\x48\x9b\x3d\x6a\xa8\x2e\x25\xd9\xc7\x80\x0c\x09\x73\xc4\xae\x8b\xab\x56\xa6\x24\x2b\x6e\x4c\x90\xda\x65\xc3\x16\x8b\x88\xc8\xb8\x04\x7b\xab\x89\x11\x20\x9e\xd6\x4d\x13\xa3\x26\x2c\xf1\x5a\x03\xa3\xa2\x99\xc3\xa8\x54\xc2\xa8\x6d\xb4\x30\xb2\xc6\x18\x29\xb0\xe6\xb3\xf0\x35\xe0\x0d\x1b\x0d\x8c\x48\x7e\x80\x11\x2c\xe2\x16\x20\x33\xa5\x6f\x60\x54\x1d\x55\x22\x9d\x9e\xe0\x4b\x7d\xcb\x61\x54\x68\x46\x3f\x59\xe5\x0e\xa3\xa7\x32\x46\xaa\x89\x51\x1b\xf0\xa8\x89\x31\x1a\x62\x8c\x5a\x59\x8c\x1e\x55\x0f\x1b\x66\x31\x46\x1a\xc6\x68\x84\xbd\x03\x4e\xd9\x3d\x50\xf0\x7b\x0c\xbd\x1e\x27\x65\x8c\xea\x65\x8c\x00\xf1\xb6\xcb\x18\x95\xb2\xee\xdf\xf7\x59\xf7\xbc\x94\xf6\x46\x4a\x49\x3c\xeb\x08\x8c\x59\xfd\xd4\x4f\x5c\xe7\xe5\xce\x4c\x96\x62\x38\x54\x73\x6c\xca\xa6\x69\xdc\x24\x79\x9b\xb1\x49\xf2\x3b\x6d\x4c\x90\x12\x67\x3e\x10\xb5\x38\x8e\x48\x0f\x30\x92\x8f\x61\xa5\xa4\xe0\xcf\x3b\x98\x7c\x0a\xd0\xa5\xc3\xac\x53\x98\xd8\x51\xca\x5c\x75\x9d\xdd\x70\x3a\x58\x5e\xee\xe7\x2e\xbb\x42\xe7\x89\x61\xa6\xbf\xf2\x66\xb6\x1e\xbc\x55\x17\x6f\xac\xda\xff\xd5\x03\xe7\xf7\x7f\xeb\x47\x7c\xbf\x3b\x2d\x1a\xc8\xd2\x09\x4d\x0e\x21\xa2\xd8\xbb\xcd\x52\xdd\x31\x02\x36\xc6\xc7\xa4\x97\x62\x99\x73\x32\x3e\x32\x7d\xf3\x85\xce\x04\x62\x15\xc6\x29\x51\x45\xe4\xe8\x26\x0b\xfb\x64\x69\xde\x82\x25\x6a\x2e\xb7\xc5\x87\x6f\x81\x0f\x25\x1c\x65\x43\x4f\x4d\xee\x10\x3b\x6c\x3a\x56\x9b\x55\xb3\xd5\x1a\x0a\x7e\x98\x40\x40\x96\xf0\x99\x4c\x4f\xd8\x3a\x3a\x6d\x39\x88\x64\xef\xe1\x57\x2d\xf9\x1c\x35\x30\xd3\x69\x25\x8a\x68\x4f\x9d\x26\xf5\xb9\x5b\x94\x87\x6b\x16\x39\x9b\x9b\x14\x87\xfe\x45\x23\x17\x5e\xb4\xc1\x3a\x19\xd5\xf9\x40\x32\x3e\xc3\x7c\x0f\x0b\xc5\x65\x31\x39\x93\x7f\x1f\xb0\xfb\x9c\x01\x4d\x71\x06\x14\xd0\x63\x0a\xd6\x50\x07\xd0\x1c\x70\x14\xa4\x03\xfd\x32\xd0\xaf\x0d\xfd\x32\xe3\xd8\x55\x26\xc6\x86\x23\xd2\x70\xb7\x76\x65\xde\xd8\xd8\xdd\x46\x47\x2d\x1c\x7e\x85\xb3\x0e\xb5\x6c\xd3\xe9\xcf\xfa\x12\x54\x4c\xaf\xfa\x25\x88\xfb\x29\x60\x24\x7c\x0a\xbe\xdf\xec\x4f\x81\x8e\xef\x4b\x98\x25\x62\x92\x6c\xd9\x34\x2c\xf3\x51\xa7\xac\x5c\xae\xa1\xb2\xa7\x33\x38\x16\xd3\xe8\x44\x74\x02\xc1\x49\x2e\x8d\xdb\xe2\x25\x92\xd2\x47\x98\x88\x7d\x46\xe2\xb2\x70\xeb\x9e\xf6\x35\x83\xfa\xc2\x1a\xaa\xbb\xeb\x15\x8b\x6a\x4c\x44\x05\x01\x4c\xe3\x47\xa5\x53\x59\x85\x7d\x1d\xf8\x48\x39\x7a\xad\x2a\x35\x6f\x6b\x66\x5f\x0b\xf4\x11\x20\xfc\x65\xc5\xd3\x08\x17\xc9\x2f\x83\x31\x52\xf4\x24\x08\x92\x0f\x38\x32\xc3\x35\x4b\x1f\x98\x3d\x57\x2c\xf7\xb9\x09\x54\x2c\xd6\x98\x70\x29\x9e\xf8\x0f\x13\x93\x99\xe5\x19\xf3\x2a\xc1\x3f\x26\x48\xe4\x54\x85\x61\xa4\x63\xe4\x60\xff\xf8\x0c\x37\xbd\xc0\xe8\x19\x1a\x5a\x05\xa3\x5c\x13\xa3\x14\xcc\xce\x35\x36\x30\xca\xc2\xa7\x6e\x35\x7d\x28\xe4\xad\x56\xcb\x6f\x41\x7f\xd2\xe4\x2d\x82\x7d\x68\x25\xd3\xfd\xc2\xb1\x0f\x04\xa3\xbb\x2c\x4c\xb6\x36\xf0\x8e\x65\xcf\x1e\x30\xaa\xf9\xa4\x23\x3e\x0d\x35\xc7\xd0\x5d\xa5\x41\x5c\x57\x30\x4f\x4b\x30\x53\x7b\xe3\x69\x09\x48\x7a\x40\xf9\xfe\xc1\x93\xfe\xe5\x9a\xea\x8b\xef\x63\xcd\x45\xbb\xb0\xbc\x80\xa7\x21\x4a\x80\x78\xee\x32\xc0\xff\x58\x20\x52\x9e\xc2\x7a\x6c\xe4\x3c\xe2\x67\x65\x3d\x25\x83\xf1\x64\x62\x74\x66\xc6\x98\x12\x7e\x12\x97\x31\x1a\x03\xea\x77\xe5\x45\x5a\x99\x4b\x3b\x01\x67\x46\x5e\xbb\xae\x1b\xad\x8e\xa9\x75\xd9\x3e\x26\x32\x0e\x11\x26\x07\x70\xae\x3a\x08\x11\xa7\xbb\xf7\xd6\x11\xd7\x92\xac\xb2\xcd\xc2\xb7\x55\x10\xfa\x32\x27\xf0\x42\xc9\x0b\x10\xe4\x1a\xfe\x67\x82\x13\xf5\x8a\xd7\x70\x0f\x85\x27\x17\xb7\x7e\x72\xe8\x5a\x6f\x06\x1c\x3c\xa7\x58\x7d\xcd\x55\x56\xb5\x68\x97\x55\xaa\x35\x54\xa9\xd7\x50\xe5\xa2\x86\x72\xd5\x1a\xca\x15\x6a\x28\x7b\x5c\xad\x21\xfe\xbf\x50\x63\x4d\x8c\x28\xff\x17\x34\x28\x46\x19\x3e\x0f\x78\xf1\x57\x4f\x24\x53\xef\xb8\x31\x81\xa4\xaa\x0d\x8c\xd2\x4f\x75\x8c\xf4\x1c\x46\x97\xbd\x26\x46\x09\xe9\x1c\x4f\xd0\x57\x7f\xc1\x8f\xa7\x8f\x41\x6b\x08\x80\x7d\x33\xc6\xa8\x04\xdf\x2e\xd7\x88\xf5\xe7\xa2\xc2\xbc\x91\xf3\x5b\xf1\xb1\x6a\x1f\x40\xe5\x61\xd1\x28\x05\xb0\x06\x3c\xbf\xdb\x9a\x3b\xab\x13\xfd\x7e\x66\xc4\x3a\xee\x76\x05\x38\x66\xdc\xc4\xe8\x7c\x30\xd9\x58\x70\x6a\x41\x63\xa5\x51\x9b\x7a\x0b\x26\x4b\xc9\x28\x18\x1a\x6a\xc7\xb4\x68\x5b\x63\x80\xfa\xb2\xf5\x1a\xca\x5e\x78\x30\x98\x3d\x2e\xd4\xd0\xdf\xd0\x38\xe3\x3f\x85\x1a\xe3\xc0\x07\xff\x82\x46\x06\xa3\xf4\x66\x82\x63\x0d\x03\x38\x36\x30\xd2\xb3\x5b\x70\xdc\x82\xe3\x86\xde\x82\xc9\x38\x46\x16\x2f\x4c\xcb\xbe\x35\xef\x6e\xab\x03\xaa\xbb\xc2\x3c\xf0\xc4\x4a\x52\x54\x90\xe2\x59\x15\xba\x95\xc7\x2b\xf1\x9a\x29\xb2\x2b\xff\xfb\x80\x6c\xd1\xb6\x43\x75\x8f\x9b\x16\xb0\x8c\x04\x2c\x31\x59\x15\xcb\x48\xc6\x68\x29\x36\x6e\x26\x63\xd7\xee\x3d\x95\x44\x15\x1d\xb7\xce\x60\x47\x54\xd5\x67\x44\x9b\x0d\x8c\x8a\x20\xb3\x57\x81\x89\x79\xcc\x62\x54\x06\x96\x13\x04\xfc\x72\xc9\x6b\x8c\x1b\x18\x3d\x40\xef\xe7\x26\x46\x12\x70\xa3\xdc\x96\x90\x27\xee\x29\xde\x28\xf9\x0d\x18\x7e\x2c\x11\x4f\xb3\x6c\xe7\x30\x3a\x81\xeb\x7c\x6b\x61\xf4\xad\xe1\x6b\x96\xa1\x71\x9c\x73\x15\x05\xad\x72\xc5\xd3\x18\xc0\x63\xb8\xfa\xe8\x0a\x06\xe1\xc0\x1d\x1e\x5c\x87\xeb\xac\x83\x23\xd0\x99\xeb\xac\xe1\x3a\x70\x41\x63\x44\xf8\x75\x18\x51\xe2\x2c\x8a\xd5\xd6\x0c\x5b\x37\xe8\x97\x9c\xa3\x19\xe6\xf0\x36\xab\x5b\xda\x90\xe5\xf9\xf7\x55\x82\x6f\xac\xb4\xc5\x32\x52\xf0\xea\x9f\x79\x86\xc6\x10\x5f\x1f\x1f\x8b\x2a\x1a\x9c\x19\xb0\xe3\x1f\x14\x44\xb2\x5a\x73\xf2\x63\x4d\x37\x78\xe7\x25\xfa\xc0\x47\x93\xee\xc7\x6e\x43\xe9\x35\x30\x72\x08\x46\x89\x12\xdc\x62\x00\x5f\x04\xa6\x08\x0e\x39\xf0\xd5\x1e\x61\x82\xa7\x1a\xae\x88\x38\x0f\x75\xd2\xa1\xe1\xaa\x74\xc6\xd0\x37\x37\xf6\x3e\x7e\xad\xe1\x19\x0c\x02\xcb\x41\xd0\x80\x53\x59\xc0\x1e\x8e\x6f\x5d\xa8\x97\xf0\xcc\x99\xc8\x53\x9b\xf6\xa9\xa5\xd2\x37\x9f\x06\x02\xbf\xe4\xb7\x9b\x86\x07\x8c\xae\x68\x64\x1a\xac\x5e\x0e\xa3\x54\x0e\xa3\x34\xa0\x29\x67\xde\x34\x98\x56\xcb\x6c\xae\x69\x12\x7e\x3f\x58\x98\x9c\x84\xe5\x60\xe1\xd4\xb9\x77\x46\x6f\x3c\x05\x20\xdf\xfe\x36\x13\x30\xd6\xbc\x46\xaf\x85\x51\xfd\x6c\xc6\x04\xcc\xfc\xee\x25\x7a\x7b\xa5\x9b\xf7\x6b\x58\xfd\xd2\xef\x86\x83\x2e\x0d\x8c\x1e\x80\x2b\x4f\x1a\x13\xe4\x60\x39\x3c\x54\xd6\x8c\x96\x39\x7e\xeb\x99\xe0\xcd\xdf\x67\x22\x1c\x29\x72\x99\x5a\x30\x09\x75\x8c\x2c\x9d\xb8\xac\x6a\x0a\x3a\xce\x9b\x84\x2b\xdd\xbc\x3d\xa2\xbd\x9e\xd6\x36\xd7\xc4\x1d\xfd\x2e\x33\x31\x9f\x3b\x5a\x0e\x1c\xaa\xb4\x67\xaf\x8d\x28\xff\x5e\x13\x30\x8f\x24\xcf\xf9\xee\xc6\xed\xa9\x43\x8d\x2d\x45\x58\x2b\x45\x68\x61\xd4\x27\x18\xa5\x7b\x0b\x41\xc0\xb8\x2d\x39\xfa\x5b\x23\x22\xbf\x49\x5c\x9f\xa1\x5f\x79\x2a\xb8\xc5\xfe\xc1\xa3\x09\xd9\x0a\x46\x8f\xd0\x27\xf8\xf0\xe9\x12\x46\xdc\x3c\xe9\xb1\xa6\xbc\x31\x73\x2a\x6a\x8e\xea\xf4\xd7\x01\x14\x3e\x4c\xfc\x3e\x50\xb1\x40\x56\x53\x2a\x18\xa5\x73\x8d\x25\xe4\x85\xeb\x61\xc7\xa1\xfa\xdb\xd3\x87\xdf\x0e\x47\xcd\x21\xd1\x5d\x98\x89\xc1\x4c\x12\x9d\x77\x2c\xaa\x52\xd3\xd3\xcd\x29\x32\x76\xd5\x7a\x63\xb1\x84\x14\xc7\xd5\xec\xc1\xd7\xeb\xde\xa4\x4c\xb1\x85\xa4\xf4\x59\xa9\x2a\xb6\x18\x49\xc4\xf5\x51\x43\xc7\x50\x75\xd3\x60\xd9\x70\x02\x99\x7c\x2e\x16\xdd\xc9\x5b\xb7\xab\xe4\xcb\x1b\x13\xc8\x73\x22\x9d\x11\xbb\x88\x14\xce\xca\xb0\x97\xf3\x25\x8c\x64\xee\xc7\x8d\x4b\xde\xfc\x10\x6c\x4c\xb7\xf8\xb7\x0f\x8d\xd9\xbc\x15\x1e\x9b\xd5\x7a\x65\x3f\x00\x19\xa2\x18\xb1\x63\x77\x2d\x0f\x93\x71\x2f\x3d\xca\x87\x02\x22\xe4\x7e\xb0\x03\x8c\x1a\x4d\xdf\x21\x96\xbf\x84\xe5\xaf\x85\x40\xb7\xb8\xd8\xbd\xf6\xc1\x5f\x5c\xb3\xcc\xa5\xfa\x20\x72\x8d\x78\xc3\x8e\xde\x27\x68\x90\x4c\x23\x66\x7c\x98\x30\x43\x44\x1c\x3f\x66\xb4\xf8\xd8\xbb\xdc\x74\x6b\xf5\x11\x3f\x33\x76\x0d\x77\x63\x92\x17\x9c\xe2\x03\x8b\xad\x77\xcd\x2e\x50\x9f\x6a\x0d\xe5\x0b\x35\x94\xaf\xd7\x50\xfe\xa2\x86\x8a\xd5\x1a\x4b\x62\x94\x08\xff\x71\x47\x51\x49\x56\x98\x20\x25\x6a\x97\x70\x39\x60\x3d\x8c\x26\x46\xf2\xbd\x86\x51\xfa\x59\xc6\x48\x7f\xe2\x77\x90\x22\x77\xc8\xd1\x8e\x4e\x6f\x73\xd4\x68\x69\x16\x75\x23\x0e\xca\x70\xaf\x6a\x0d\x5d\x54\x6b\xa8\x5c\xe0\xf7\x65\x29\x82\x52\x18\x25\x31\x4a\xf3\xdf\x44\xd4\x85\x44\x59\xb0\x25\xa4\xd7\x6d\x4c\x20\xd7\x97\xdf\x30\x6a\x69\x25\xa0\xd8\x2a\x7c\x23\xd5\x73\x94\xe0\x6b\xde\xb4\x1b\x18\xb5\xfb\x15\x8c\x2e\x24\x58\x31\xf2\x4d\x6b\x55\x33\xd0\x9d\xbf\xf0\xf9\xb4\xac\x64\x37\x5a\xc6\x82\x54\xdf\x04\x7b\xd5\x3b\xdf\x6d\xd1\x58\x96\x56\x62\xb6\x1e\xbe\xf2\x62\x76\x1e\x69\x24\x2a\x3f\x61\xe7\x09\x37\x6e\xf1\x79\x1e\x88\xd7\xe8\xb8\x55\x82\xdd\x46\x59\x7c\xf8\x91\x92\x7f\x41\xde\xf9\xd8\x77\x1f\x85\x46\x10\x8a\x10\x8f\x49\xf8\x39\xf3\x50\x2f\xe1\x9e\x62\x52\x2a\x86\x61\x72\xd4\x6a\xd2\x96\x17\x6b\x94\x73\x2d\x75\x28\x5b\xa8\x31\xb9\x2e\xda\x88\xff\x04\x74\x39\x54\x6b\x93\x4b\x7c\x42\xc4\x47\x74\x3f\x04\x78\x3c\x2f\xe4\xe1\x0f\xfe\x26\xb3\x10\x1b\x88\x3c\x44\x6e\x72\xdc\x13\x65\x05\x72\x5a\x4f\xeb\xc7\x2d\x7d\x2d\xf1\x7a\xa9\x15\xe0\xda\xf4\xce\x44\x05\x1d\xb7\xce\x60\xf7\x71\x33\x1c\x78\x64\x85\x6f\xa5\x8f\x5d\x17\x3e\xc0\xa2\x02\x4e\xc8\x98\xe3\xd0\xc4\xa5\x58\xe6\xc8\xd3\x89\xe2\xcf\x55\x36\x99\xbb\x5d\x4a\xdd\x9c\x93\x12\x55\x74\x77\xc1\x1d\x95\xcf\x0d\x07\x91\xb1\xea\xa0\xab\xa6\x83\xc8\x93\x39\xd9\x80\x53\x41\x9f\x97\x3a\xbf\x6e\xd4\xec\xce\x6f\xf1\x60\x77\xb8\xec\xa0\x07\x03\xa3\xde\x73\xce\x8d\xbc\x49\xa4\xe2\x58\xa4\x47\x0d\x55\xa8\xd2\x66\x0f\x58\x4a\x77\xed\xfa\x1e\x20\xcc\x15\x07\x64\x6f\xfd\x62\x49\xc6\x9c\x3a\x56\x3d\xea\x78\x7d\x04\x7c\xee\x73\x02\x23\xdd\xe1\xfe\x84\x31\xc2\x68\xd2\xdb\x1b\x7d\x68\xfb\x28\xca\x65\x54\x15\x69\x05\x46\x95\x2f\xd2\xc7\x1b\xb1\x0b\x8b\x14\x76\x1f\x88\x86\x86\xfd\x41\x04\x47\x48\x25\xcc\x92\xd2\xc4\xfb\xb6\x4d\x9b\xb2\x1c\x7f\xd9\x04\xbc\x30\x53\xae\xc5\x36\x30\x17\x4a\xe0\x7a\xaa\x35\x53\xb2\x78\x82\xe4\xf4\xc8\x84\xbd\xa4\x19\x98\x65\x26\x96\xbf\xa9\x0f\x35\x06\xbc\xc3\x45\xc1\xe5\x25\xca\xf5\x1a\x2a\x5f\x70\x5e\x82\xa5\x31\xf0\x11\x2e\x2b\xc1\xff\x31\x2f\x9e\x45\x79\x25\xa3\xb0\xae\x8d\x09\x52\x92\x3c\x4c\xd1\xb5\x34\x7c\xea\x53\x90\x07\xd2\xcf\x12\x46\xfa\x33\x46\x97\x4f\x2b\x3b\xce\xcc\x38\xcb\xa5\x8b\x33\x63\x8d\x4e\x3a\x2f\x8c\xf8\x45\x58\x90\xad\x83\xce\x4c\x07\x1d\x89\xc4\x28\x6f\x9e\xf6\x9b\x96\xde\x6a\x6b\xb7\x39\x3a\x62\x02\xc6\x13\x80\x5a\xf0\x38\x7f\x4f\xea\x70\xa3\xd2\x02\xa8\x4d\x44\x1a\x2e\x25\x03\x21\x20\xb1\xdc\x96\x4c\xa5\x93\x4b\x76\x5d\x62\x73\xfd\xd4\x31\xba\x3a\xcf\x44\x40\xb2\x94\x2f\x79\xe1\x5e\xe3\xf6\x42\x6f\xb9\x4f\x04\x1c\x59\xaf\x25\x9d\x61\x54\xbf\xdc\xc2\xc7\xdb\xc2\x07\x49\xc4\x88\x61\x9e\xf6\x07\xe6\xed\x91\x05\x62\x71\x8c\xfe\xcb\x79\x71\xf8\x0e\x8a\x2a\x97\xbd\xed\x89\x4f\x20\xc0\xc0\x6e\x2b\xc0\xb8\xcf\x0c\xd7\x39\x19\x60\xc4\xe3\x4f\x63\x7d\xf8\x63\x04\x91\xdc\x41\x67\x68\x4c\x3f\x4f\x70\x8b\xa0\xcf\x82\xce\xf1\x86\xf7\x3c\x2c\x95\x9a\xc0\xa8\x86\xea\x05\x2e\x02\xd6\xe4\x91\x37\x9e\xee\x24\x51\x12\x15\x0f\x5b\x2a\x01\xc2\x84\x6d\x91\xe2\xc4\xdd\x5c\x3d\xc8\x11\x46\xd2\x83\x64\x62\x34\x2a\xcd\xd1\x54\xc0\xd3\x3f\xe7\x3e\x46\xcf\xb1\xc2\x88\x42\x0b\xb3\xa4\x3c\xf1\xdd\x2c\xaa\xd2\xc0\xd0\x25\x63\x97\xf3\xb4\x80\xcd\xf6\x75\xca\xbe\x56\xf9\x49\xec\x22\x29\x7d\x56\xe6\x79\x2d\x4e\x9e\xce\x1d\xd4\x7d\x30\x31\x93\x32\x31\x06\x34\x4f\x47\x9a\x61\x4c\x80\xad\x2d\x76\x43\xb0\x65\x82\xd4\xb7\x9e\x1c\xb1\x88\xa4\x76\xdd\x74\xc4\x22\x4b\xa4\x63\x42\xc5\x05\x35\x68\xdf\x35\x31\x00\xe9\x4b\xdc\x8b\x59\x77\xde\x98\x20\x39\x2d\xa7\x28\x9a\x80\x30\x62\x37\xed\xe8\x2a\x6d\x9b\x2c\x42\x31\x7d\x5d\xdd\x2c\x3d\xdd\x8b\x9b\x14\x69\xcb\xca\x07\xa7\xd5\xf8\x99\x84\x1c\x52\x92\x0c\xa7\xd7\x86\x6f\x6d\x08\x75\xc9\x6a\x65\x29\x2d\xf4\xdb\xa5\x85\x98\x7b\x33\xfe\x94\xc7\x63\x7f\xdd\xae\x30\xf4\x2a\x17\xea\x59\xdf\xe8\x61\xe6\xb6\x5e\x29\x0d\xac\x4f\x7e\xd8\x98\x60\x84\xcd\x67\xe5\xb6\x72\xce\xda\xf8\xb8\x8c\x34\x89\x96\x3b\x0e\xed\x38\x34\x66\xd8\xc8\xbb\xe2\x0d\x4b\x29\x62\xd7\x93\x6a\x12\x9e\x2e\x82\xb3\x5f\x40\x9c\x5f\xa6\xcd\xab\x6d\x2f\x1a\x34\xa4\xf1\x65\x65\xc6\x1a\x78\xf8\x40\x0b\xc6\x46\x2c\xf4\x8d\xb2\x60\x4c\x48\xd1\xe6\xd0\xa6\xb7\x57\xba\x4a\x59\xf5\xb4\x1c\xac\x2d\x96\xc8\x8a\xad\x09\x2b\x19\xb0\xf4\xa4\xd1\x4a\x1a\x62\x09\x49\x3d\x07\xc3\x9e\xf3\xcb\x67\x03\x97\x71\x1e\x00\xf1\x20\x09\x38\xd4\x1d\x60\xd4\x2f\x61\x46\x26\xd6\xb2\xa5\x0d\x6d\xd3\x60\x65\xd7\x34\xc7\x52\x5e\xd0\x1a\x10\xd9\x4c\xe1\x0a\x23\x45\xce\x61\x96\x90\xe3\x82\x8c\xa3\xd3\x66\x5c\x85\x29\x9f\x44\x79\xa1\xb5\x0a\x30\x77\x62\x11\x04\x18\xd8\x6d\x05\x18\x05\x28\xd4\xc7\xcb\x2d\x89\x78\x78\x50\x81\x1a\x7d\x6a\x75\x87\x1d\xfa\x68\x44\x4d\x31\x6e\x06\x39\x4d\x2c\xba\xe6\x18\xb4\x64\x76\x0c\x89\x26\xea\xa7\xc0\xa6\x8f\x13\x77\xb0\x27\x99\x6b\xbc\xce\x94\x3e\x3f\x31\xb6\x90\xc7\x2c\x1d\xfb\x12\x4f\x43\xd3\xb8\xcd\x5b\x9a\xd6\x0d\xf4\xd7\x17\xf5\x1a\xba\xb8\xe0\xa4\x23\xd4\x5d\xf3\x7f\x9e\x41\xe1\x15\x5c\xb1\x6b\xa2\x3f\x8f\x1b\x21\x08\x46\xfa\x08\x23\xb9\x92\x7b\x7b\x5e\xf1\x4d\xb8\xe4\x77\x60\x15\xcb\x2e\xd2\x93\xa7\x26\x85\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\xf5\x4f\xb8\x28\xd4\x18\x8f\xde\xf5\xfe\xa5\xbc\x5f\xdf\xac\x80\x15\x9c\x48\x7e\xc0\xc6\xa7\xb8\xe2\x4d\xb1\xfb\x4d\xe5\x1b\x8c\xaa\x9a\x05\x93\x8d\x31\xd2\xc7\x51\x35\xe5\xbd\x95\xc5\xe8\xae\xd2\xda\x32\xb8\x5b\x06\xf7\x05\x45\x65\x9c\xbe\x17\x34\xe3\x51\xb3\x38\x4f\x50\x2e\x04\x1a\x7c\x36\x65\x60\x23\xaf\xc6\x56\xef\xa1\x21\xb0\xe6\xac\x03\x3f\x3b\x47\xdf\xc0\xe8\xdc\x6a\xc5\x34\xfc\x5b\x01\x75\x0b\xbf\x9f\x10\x7e\xfd\x34\xba\x01\xfc\xda\x96\xa9\xdb\x71\xbd\x71\xbd\x86\x8a\x17\x5c\x7f\xcc\x12\x4f\x62\x33\xd4\x1d\x2b\xbe\x2d\x7e\x83\xcc\xe5\x4c\x90\xf2\x6d\xdd\x12\x2b\x68\xa0\x3d\xc0\x8e\x24\x92\xdc\x3c\xae\x60\xa4\x3f\x62\x94\xbc\x6b\x79\x0c\xc5\xe9\x73\x83\xa0\x6a\xb9\x11\x59\xec\xb4\x4e\x26\xc1\xee\xcd\x39\x8b\x2d\xdc\x6d\x3a\x50\xbc\x4b\x86\x8a\xb8\xdb\x5b\xb1\xd5\x37\x0d\x90\xa6\x7d\xbd\x50\x8c\x7a\x3e\x8b\x97\x13\x3e\x2a\x31\x31\x47\x59\xa3\xe5\x6f\x45\x21\x7b\xd4\x52\x1e\xc4\x34\x1a\x76\x5a\xb0\x73\xb9\xcd\x54\x0b\xa3\xce\x18\x23\xa9\x95\x8b\xc1\xc0\x1c\x09\xe2\xe4\xa8\x12\x21\xac\xa1\x00\xd2\xb8\x1c\xac\x0b\xd4\xb6\x60\xba\x05\xd3\x39\xec\x6d\xdc\x99\xac\xa8\x5b\x8e\xa1\x0d\x7c\x63\x9e\xe7\x96\x56\x10\x87\x11\xb7\xb4\x25\x14\x51\x8f\x5d\xd7\x92\xde\xfd\x58\x4b\x7a\xeb\xc2\xd3\x2d\x8d\x6a\x2d\x8c\x5a\x89\x06\x66\x32\x89\x89\xbb\xc5\xde\x6d\x95\xf6\x1e\x69\xcb\xb4\x02\x96\x80\x6b\x14\xaf\x3d\xd7\xd1\x30\xfb\x29\x69\xe8\x47\xb2\xa8\x22\xe9\xdb\xa3\x0a\xfb\x68\xd4\x45\x90\x1b\xd1\xbb\x6c\x4d\xbf\x77\xa8\x11\x2a\xc1\x27\xb4\x1b\x2c\x55\x16\x95\x40\x74\x0e\xd4\x1b\x5c\x13\xae\x24\xde\x3e\xd9\xee\x4f\x6c\x5c\x8d\x5e\xc4\x48\xb9\x68\x60\x94\xee\x97\x3d\x5d\x7a\xd5\x47\x0f\x83\xe3\x1c\x46\x69\xd9\xc2\x68\x7c\x82\x51\xe2\x9c\x78\x49\xed\xd5\xf3\x73\x3c\x33\x5f\xf1\x32\x79\x90\x83\x56\xee\x7a\xb0\x45\x75\x6f\xab\x53\x47\xd7\x64\x33\x51\xd1\xbb\x08\x03\x71\x6c\xf7\xcd\xb4\xec\xdb\x8a\xd6\x1b\x9a\xc6\x5a\x15\x90\x6b\xd9\xb6\x5a\xcd\x0f\x37\xb7\xff\x66\x78\xe5\x0d\x59\x28\x26\x67\x62\x6a\x35\x0e\x89\x75\x3a\x32\xb4\x59\x91\x77\x5c\x32\x8f\x7b\xf5\xb8\xcc\x08\xdf\x66\xc2\xa4\x82\x95\xc4\x1b\x6c\x73\xfc\x69\x2e\x4f\x88\x6b\xbd\x7a\x47\x0f\x94\x44\xcd\x6f\x3d\xf0\xa0\xe5\x89\x35\xf6\xc0\x53\x74\x6f\x39\xdd\x79\x8d\x89\xc5\x46\x7b\xda\x78\x32\x18\x6e\xc5\x50\x38\x37\xe8\xed\x01\xf8\xdc\x87\xcd\x32\xb7\x1a\xc3\x68\xec\x49\x02\x44\xd3\x7e\x85\x73\xc2\x4c\x56\x62\x14\xf0\xa8\x47\x55\xd7\x27\xbd\x14\x86\xa2\x05\xe1\x3c\x72\x23\x08\xf1\x97\x03\xfb\xf5\x26\x49\xe3\x27\xc3\x13\x2c\xaa\x28\xff\x74\x0e\xbb\xe9\x18\x23\xa4\x3f\xf8\x30\x74\xda\x26\x5b\xd2\xf0\x19\x48\xc3\x2f\x84\x73\x18\xc9\xc4\xa4\xcd\x23\xb3\x65\x77\x68\x33\x1e\x81\xf9\xb0\x64\x04\xe6\x1a\xc1\x88\x26\xae\x9f\x45\x05\x49\xe3\x44\x0b\xf6\x1b\xec\x43\xb0\x2d\x29\xb4\x79\x25\x85\x48\x6a\x62\x91\x9b\x43\x97\xa4\xf0\x3c\xfd\x85\x1a\x0a\xf6\x5e\xce\xfe\x80\xcc\x14\x0a\x35\x26\x3b\xe2\x25\x92\xe0\x47\x76\x90\xe4\xff\x8b\xe4\x95\x89\xd7\xde\x5a\x41\x3d\xb2\x52\xee\xef\xf4\xbb\xe4\x17\x97\x12\xb5\xaa\xed\xeb\x8d\x0b\x0d\xa0\xfd\xc7\xbc\x7e\xe9\x32\xb9\x3c\xa6\xfb\xa4\xae\x8f\x1d\xa4\xdb\xce\xbc\xf3\xd3\x17\xe3\x8d\x5e\x6b\xad\x52\xdf\xeb\x28\x66\x95\x60\xd4\xc6\xce\xaf\x26\xf9\x19\x64\x3a\x47\x45\xfe\x17\x26\xef\x6a\x63\x43\x68\xef\x7b\x90\xf7\x54\x32\x26\xc4\xf2\xf0\xb5\xdb\x9a\x63\x75\xd9\x59\x39\x0c\x49\xca\x56\x6b\x2c\x91\x12\x69\x60\x53\x7e\x4b\x42\x2f\xaf\x40\xe6\x7b\xc4\xb9\x14\xcf\x91\x74\x7c\x9c\x83\xfd\x96\x8d\x5d\x3f\x1b\x9b\x38\xf9\x84\xcb\x5a\x4e\xc5\x97\xb5\x43\x6d\xad\x4f\x7b\x34\x66\x21\x49\x4a\x7e\x90\x5d\xcc\xe7\x5a\x52\xce\x3a\x37\xe2\x35\x92\xb4\xbb\x06\xec\xb3\x06\x46\x7d\xbb\x85\x51\x65\x8c\x91\xce\xdd\xe6\x53\x4d\x8c\xc6\x05\x4f\x41\x19\x14\xe4\x0a\x6f\x36\xa2\x0f\x8e\xde\x63\x97\x11\x0b\x54\x42\x8b\xa5\x45\x20\xa3\x9b\xea\x19\x92\x9c\x93\xd2\x19\xb2\xc6\x53\x29\x56\x8e\x9c\x11\x0d\x2b\x1a\x28\x09\x8f\xd7\x56\x98\x7c\x29\x16\x91\x7c\x0a\xac\x85\xe7\xd6\xc1\x04\xa9\xf5\x78\x9d\x12\xbb\x48\xb2\x92\xa5\x4b\xb1\x8b\x72\xcf\xcd\x3b\x96\x8e\x97\x57\x38\xa6\x3d\xfd\x8e\x3e\xcf\x94\x91\x15\x4d\x34\xa7\x64\xe4\xd5\xb6\x8d\x91\xa8\x97\xdf\xb8\xec\x7d\x7c\x2a\x66\xd1\xf3\x78\x0c\x3b\x9e\x30\x4d\x3e\x91\x3d\x75\x34\xaf\x57\xca\xb5\x14\x45\xe2\xa9\x3d\x46\x15\x8c\x2e\x00\x02\x73\x2d\x5f\x23\xd2\xc2\xe8\x0a\x70\xcb\x13\xf1\xb2\xa5\x3d\xf9\x6a\x8f\xf8\x11\x5f\x35\x72\x3a\xf6\x2e\x78\xee\x5f\xf0\xda\x88\x25\x5b\x83\x15\x4c\x1a\xd1\x61\x5c\x25\xe2\x2b\x52\xbe\xc5\x2e\x1d\x0c\xcb\xf9\x7d\x60\x9d\xc6\x4e\x5d\xdd\x45\x74\x09\xcb\x72\x4b\x32\xb7\xe3\xbf\x5d\xbf\xa4\xfe\xb2\xe6\x62\xab\x38\xff\xad\xc8\xca\xaf\xc1\x3e\xf9\x45\xf1\x03\x2c\xfb\x08\x68\xfb\x38\x6a\x86\xb7\x79\x20\xf0\x1b\xf3\x4c\x6b\xc0\x86\xa4\xac\x39\x8e\x68\xa2\x94\x34\x86\x1d\x20\xbc\x21\x88\x59\xbc\x9e\x62\xa5\xe5\x85\xba\x54\xbc\x23\xc9\xe2\x20\x72\x0a\x1a\xa7\x05\x1f\x29\x66\xfd\xc8\x14\xd7\x8d\xaf\x11\x95\xe0\x78\xa5\xf8\xc5\x20\xcc\x73\x54\xf6\x82\x3a\x89\xdd\x4a\x34\xc8\x69\x3e\x18\xde\x05\xf6\xc2\x59\x0b\x79\x09\xc4\x17\xb9\xaf\xb1\x02\xd8\xb8\x75\xac\x8d\xe0\x59\xb2\x7e\x45\xeb\x25\x5a\xb3\x34\x43\x3c\xc4\x6f\x09\x87\x03\xc5\x84\x27\x50\x63\x2d\x38\x9b\xd4\x31\x46\x57\xf0\xd7\x93\x89\xd1\x35\x74\xb5\xb3\x93\x47\x82\xc6\x58\xf5\x1a\x70\x9f\x73\xd3\x3b\x32\xdd\xe0\xc3\x67\x9f\xfa\xc9\xce\xef\x78\x0b\x26\xc5\x7d\x5c\x8e\x35\xab\x6f\x0e\xf5\x5e\xcf\x9c\x95\xc4\x92\xa5\x8c\xc0\xa7\x2f\x1d\xf3\xe9\x93\x97\x0d\xd0\x5c\x29\xe3\x24\x4b\xc6\xc3\xac\x4e\x8c\x96\x4e\x0d\xfa\xe5\xcc\x30\x9f\x97\x4d\xe6\xf9\xb2\x75\xff\x15\x89\x01\x94\x9f\xb5\xf3\xcf\x31\x41\x56\xdb\x95\x88\xe9\x71\x2d\x06\xff\x59\x04\x7a\x56\xbf\x85\xac\x84\x9c\x37\x30\x4a\xcf\xc5\x5c\xbf\x76\xa4\xc0\x38\xed\x17\x22\xdf\xb2\x00\x2f\x18\x65\x7d\x80\x2d\x53\x4b\x33\x22\x89\x3d\x96\x74\x03\x98\x01\xba\x11\x33\x3e\x59\x9f\x2b\x40\x1c\x0e\x5b\x23\x1f\x48\x42\x37\xfc\x9f\xf6\x9e\xb9\xb7\xc6\xaf\x82\x94\xac\x5b\xb4\xde\x85\x14\x2d\x39\xd8\x72\xa3\xab\x2d\xc5\x0b\xcd\xd6\x2c\xb7\x3a\xfe\xcf\xaf\xc6\x05\xe4\x03\x48\xc4\xfa\x97\xa6\x71\x1f\xe4\x7f\x79\x9d\xd7\xd7\x92\x28\x55\xfe\xd6\x7c\x2b\x09\x74\x49\x84\x9f\x51\xa7\xb1\xac\xf9\x59\xd6\xdd\xc7\x2c\xed\x9a\xd6\xeb\xdd\xe6\x75\x7b\xf4\x26\x2b\x1b\xd6\x35\x47\xb3\xef\xc1\xea\xac\x77\x1d\xa7\x9f\x8c\x19\x67\xcf\xf0\xb4\xab\xd5\x96\xaa\xaf\xb0\xde\x6e\xb4\x47\xfa\x9a\xb5\xf6\x26\x4e\x7c\x4b\xa3\xc8\xee\x45\x0e\xa3\xac\xbb\x02\x5e\x46\x53\x3d\x63\xeb\x71\xb7\xea\x32\xd0\x0d\x55\x33\x0c\x6d\xf8\x46\x04\x35\x60\xf3\xde\x85\x82\x86\x88\xa4\x8d\x07\x33\x90\x4b\xe9\x35\x78\x29\x58\x54\x0b\x7d\xa4\x55\x5e\x5e\x64\xa6\xcb\xe7\x96\xee\xad\xb0\x00\xeb\xba\x41\xfb\x54\x7d\xc3\xe5\x17\x5b\x84\xef\x80\xa3\x3e\x20\xcd\xdd\xcf\x88\x29\x93\x6b\x94\x7e\xa6\x05\xf4\xde\x6b\xd4\x79\xd4\xbb\x3c\x39\xb4\x1b\x8c\x52\x08\x22\x65\x99\x5f\x07\x26\x15\xa8\xd2\x64\xe5\x03\x36\x26\x7c\x33\xb2\x18\xd9\xf5\x6b\x4f\xe1\xfa\x74\xa1\x61\x24\x0d\x16\xca\xa7\x5b\x63\xcf\xa6\x2f\xc2\x77\x31\xf6\xc4\x13\x3e\x9f\x3c\xd0\x9e\xa3\xdb\x7c\xb5\x07\xf9\x17\x38\x12\x2e\x78\x89\x7c\x3d\x13\x90\x9f\x87\x21\x81\x5d\xb3\x7d\xe8\x73\x20\x2b\x72\x62\xb9\x2d\x99\x5a\xb6\xe7\x12\x1b\x13\x48\xf2\x0c\x63\x94\x82\xc9\xd6\x1f\x7f\xcd\xe4\xe7\xa1\x8b\x5a\x76\x0b\x08\x6f\x0b\x08\xc9\xb8\x77\xcd\x29\xed\x53\x5d\xa5\x51\x8f\xb1\x88\xb7\xd8\x1c\xb3\x67\xc4\x99\xcb\x29\x13\xee\xcc\xb5\x4e\xbd\x38\xcb\xc4\x8d\x2b\xa7\x8e\xa1\x51\xc7\x0d\x99\xf4\xc2\x25\x2f\x0a\x5e\xc2\xb0\x6a\x0d\x65\xcf\xf8\x4f\x21\x1e\x40\x99\xc6\x28\xc3\xff\xf1\x24\x8a\x12\x96\x67\x6e\x8a\xbb\x4f\xbc\x83\x3b\x6e\xd4\x31\x97\xa4\x6a\x52\x24\x7e\xf2\xc6\x9c\xe7\x72\xb1\x36\xdb\x44\x68\xcc\x9c\x83\x34\xb8\x92\x0b\x3f\x6c\x38\xe2\xd8\x52\xd0\xf5\x51\x50\x39\xe6\x67\x7f\xa6\x19\xb6\xa3\x76\x47\x5f\x4a\xa6\xa3\x0f\x1f\xf5\x5e\xef\x15\xb1\x93\x8b\x45\x9b\x98\x74\xf2\x16\x36\x94\x35\x48\x47\xf2\xb7\x16\x46\x95\x26\x46\xa5\x0b\xdf\xe0\x12\x0f\xca\x34\x1a\x04\x69\xb8\x81\x32\x8f\xad\x9f\x8b\x7a\x5e\x59\x9b\xfd\x3c\xc6\xa8\x3d\x34\x7f\x52\xfd\x1d\xb3\xe2\x6c\xb8\xbd\x73\x8b\x4f\x3e\xcf\x2d\x66\xa1\x92\xb2\x69\xd8\xba\xaa\xf5\x7a\x6f\x61\x7f\x5d\x79\x5b\x3f\xb2\x88\xab\x52\xaa\xf5\xc1\x4f\xc2\xe6\x67\xf2\x45\x58\x27\x6c\x6e\x85\x84\xb5\xc1\x66\x89\xde\x5e\xd0\x31\x2f\x8d\x92\xe3\xd5\x2d\x15\xa6\x3c\x89\x59\x24\xc3\x8f\x5f\x02\x9c\x3c\xcb\x29\x4b\x34\xdd\xa2\x9f\x24\x5e\x9e\xa5\xa4\xf7\x69\x2c\x9d\x53\x22\x3d\xd7\xa9\x92\x09\x92\x3d\x3a\xba\x80\x2b\x35\x0b\x63\xd8\xf3\x68\x74\x3a\x63\xfd\x5d\x58\x5e\x18\x3b\x39\xf7\x82\xd6\x93\x47\x03\xb7\x91\x49\xbb\x0d\x46\x88\x96\x8c\x3e\x89\x39\xbc\xcd\x1a\x6d\xad\xa7\x0d\x27\xd3\xad\xb0\x78\x26\xa4\xcd\xca\xb4\xb2\xfc\x36\xa7\x88\xa1\x87\x76\x3c\xe1\x22\x51\x1f\x10\x44\x6e\x68\x03\xc9\xad\xec\x8a\xe1\x9c\x3f\x91\x4b\x69\x22\x90\x73\x89\x30\xdb\x88\xab\xe5\x3b\x5a\xf3\x7f\x13\x94\xb9\x65\x67\xde\x58\x3c\x22\x89\x18\xb2\x29\x53\x55\xd3\xcd\x78\x86\x8f\xbe\x78\xb9\x72\xa8\xbd\x9b\xe5\x23\x27\xa6\xd1\x71\xab\x04\xbb\x8d\xca\xf4\xd1\x2a\x7b\x85\x15\xd2\x97\x64\x5e\xca\x8f\x4c\xbc\x00\x58\x99\x1a\xb4\xed\x50\x56\x8e\x64\xc0\xe5\xbe\xf6\xa7\xa2\x1a\xab\x31\xc9\xab\x1f\x4b\x41\x15\x64\xf2\xe0\xe8\x9a\x58\x46\x64\x94\x2d\xc3\x5e\xe9\x1b\x18\x65\xae\x07\x18\x15\xe0\x85\xce\x88\xdb\x18\xca\xdf\xe0\xaf\x63\x8c\x0a\x39\x8c\x32\x27\x06\x46\x5d\xa0\x07\x6e\x19\x7e\x53\x86\x95\x3c\xc2\x4c\x8a\xd7\xda\x80\x87\x72\x86\xf1\xca\xbf\x58\x54\x96\x2c\x9b\xe1\xe6\x1c\x6c\xf0\xf2\xe3\x67\x8d\x8f\x2d\x3f\xee\xe7\x1c\x9c\x24\xc3\x65\x6a\xd9\xba\xa1\x3f\x38\x1a\xfb\xf6\x2d\x52\xf6\x5b\x51\x62\xd5\x41\x98\x20\xf5\x2f\x6a\x35\xb1\x88\xa4\xd2\x45\x13\xf6\xf0\xe1\x26\x43\x25\xca\xd4\xa6\x7d\xd3\xf2\xaa\x88\x07\x21\x79\xc5\xa9\x80\xbc\x37\x8f\x73\x70\x8b\xe3\x7d\xbb\xf7\x15\xc4\x7a\x72\x65\xd4\xb7\xae\x22\x3a\xbf\x73\x62\x3b\x25\x31\xb1\x3e\xc6\xd4\xee\x51\x63\xb6\x67\x7e\x42\x2c\x2e\xf4\xcc\x7f\xe7\x42\x4c\x2b\xf9\xf9\xbf\xef\x92\xda\x24\xb2\xff\xce\x77\x5b\x34\x96\x29\x71\x7b\x40\x59\x33\xcc\xbe\x6e\x68\x33\x15\x90\x8b\x22\x2d\x7e\xda\x63\xf0\x8d\x58\xf6\xe5\x9d\x2e\xc2\x3a\x08\x49\x85\x60\x94\x39\x6d\x7a\x2c\xf3\x96\xbb\xdd\x72\xb7\x6b\x44\xf0\xe9\xb8\xf9\xbc\xac\x59\x7a\x8b\xc6\xaa\x18\x70\x1e\xae\x2e\x0e\xa7\x79\xb8\xb7\xde\xe2\x35\x72\xa5\xce\x18\xa3\x27\x47\xde\xe2\xec\x0f\xbf\xdb\x42\x9c\x3d\x91\xa2\xba\xac\xd9\x3d\xda\x05\x2e\x61\xca\x8e\x3b\xdb\x7e\xfb\x92\xe5\x36\xb0\xe0\x72\x0d\xec\xb2\x9e\xbb\x9b\x60\x7a\x7d\x19\xf3\x76\x80\xb7\x5c\x00\xb8\x4e\x19\xa3\xfb\xdc\xa7\x41\x26\x44\x99\x40\x26\xcf\xba\x6a\xba\xe1\x00\x93\x65\x3b\xf3\xf5\x1a\x4b\x66\xc5\x6c\x58\xb6\x33\x11\x2f\xdb\xb9\xce\xbc\xe3\x8b\xb8\xc6\x76\xd1\x70\x73\x63\xc9\xcf\x2d\x8c\x80\x0c\x27\xc7\x39\x8c\xaa\x25\x8c\xb4\x44\xcb\x4b\x33\x42\x2e\xee\xee\xb6\x78\xe9\xc3\xef\xb6\x10\x2f\x49\x38\xae\xb7\x01\x11\xb9\xe7\x15\x0a\xc9\x56\x23\x89\x12\x4f\xc4\x62\x34\x2f\xdc\xbb\x25\xc0\x97\xfa\x67\xdd\x3b\xb1\x8b\xa4\x52\x2d\x0b\xfb\xf6\x25\xf9\x25\xa6\x65\xcb\x69\xcd\x44\x8e\x49\x12\x47\x8e\xa6\xa1\xda\xa6\xc1\x80\xc5\x9a\xcc\xfd\xe3\x26\xf4\x7a\x21\xf3\xcf\x27\xcc\xee\xe3\x6b\x7b\xa4\x93\xe1\x31\x46\xf9\xa7\x8a\x97\xa4\x61\x9c\x35\x27\xf2\x56\x2c\xd5\x38\xf3\x93\xf1\x00\x82\xae\xc0\x1a\x74\x88\x5b\xcf\xb5\x2a\xbd\x22\xbf\xce\x1b\xa6\xaf\x7f\x9d\x21\xe3\x8d\x04\xb6\x85\x77\x93\xf3\x83\x75\xdd\xe3\x5d\x04\x4a\x83\x6c\x0c\x9a\xd3\x1a\x9f\x0d\x07\xbd\x0b\x9a\x53\x62\xde\x64\x65\xd3\xb0\x35\xcb\xd2\x46\x71\x8d\xf2\x37\xb1\xfd\x5b\xeb\x94\x37\x89\x5e\x6f\x12\xd3\xa6\x4c\x08\x93\xb0\x7a\x1e\xf5\x96\xe6\xe5\x82\x09\xcd\x38\xf0\x5f\xc6\xc0\xc0\xb9\xbf\x48\xc0\x44\xc6\xc0\xcc\x5d\x20\xfe\xe3\x11\x50\x37\xf1\x2f\x90\x06\xcf\xb5\x7f\xd6\x96\x90\x13\x72\x52\x4e\x7a\xbf\x29\x77\xb7\xec\xc6\x04\xc9\xbe\xba\xbe\x13\x33\x68\x78\xa3\x62\x94\xbe\x57\xa1\xcd\xf3\xd6\x91\x96\xea\x00\xd2\x73\x22\x2d\xdd\x82\x16\x19\x3b\x88\x98\x78\x51\xeb\xa1\xec\xa0\x7a\x29\xda\xb8\xcb\xfa\x57\x0b\x7a\x55\xb2\x0e\x92\xef\x1b\x0e\x1a\x37\x1c\x54\x78\x80\xc3\x99\x86\x83\x06\xaa\x83\xee\xc7\x18\xa9\x7d\xe2\x59\xc8\x92\x36\x7c\xf6\xbb\xa6\x83\x64\x18\x7c\xdf\xc0\x48\x79\xcc\xb9\xbe\x84\x9c\x26\xf4\xfb\x8e\x8b\xc2\x4f\xca\x0e\xcf\x2a\xa5\xa8\x04\x23\xa7\x14\x25\xb8\xd5\x8a\x7b\xa4\x3f\xc0\x48\x4a\x97\x30\xd2\x2f\x72\x18\x39\xfe\xa9\x67\x4e\x8b\xa7\x8a\xac\x07\x95\xcb\x9f\x06\xee\x91\x21\xb7\xdb\x71\x88\xd2\x07\x3e\xdd\x0c\x73\x3c\x2d\x9b\x0b\x6a\x89\x11\x3c\x11\x64\x3c\x89\x63\xcd\xb4\x4c\xc3\x36\x99\x9f\x45\xd5\x0b\x12\x61\xf1\xc2\x9c\xab\x6c\x9f\xd2\xa3\x24\x50\x52\x27\x6a\x57\x7e\xaa\x2c\x52\x77\x10\x31\x60\xed\xdd\x15\x30\xaa\x9f\xc2\x94\x59\xae\x13\x6c\x98\x3e\x2c\x36\x9b\x41\x0e\xe9\xe9\xc6\x4a\x8c\xd4\x4f\x70\x5e\x73\x2e\xa2\x74\xcb\x91\xda\xa5\x91\x5e\x2e\x0e\x9a\x71\x8d\x07\x18\x4a\x0a\x31\x34\xf5\x6b\xf2\x80\xef\x72\xb7\xad\x79\x61\xd3\x59\xb5\x77\xe1\x06\x13\x31\xe4\x5b\xa1\xc3\x21\x75\x38\x2d\x0f\x62\x92\x32\xa2\xb3\xd1\xa9\x18\x99\x20\x75\x2b\xce\xb9\xe8\x20\x29\xd9\x68\xc1\x7e\x0b\x94\x5b\xa0\xfc\xcc\x40\x29\xc5\xad\xec\x15\xed\xe9\xf6\x6f\xd3\xea\xbe\x21\x4b\xf4\x59\xfd\x6c\x03\xae\x28\x49\xec\x39\xeb\x8a\xb3\x09\x8b\xca\x30\xbf\x5b\xc9\xc3\x37\x1b\xea\xc6\x35\x4d\xb3\x4a\xef\x95\x07\x62\xe3\xd0\xe4\xd6\xc9\x78\x8b\x92\xdf\x19\x25\xc7\x23\x1a\x2a\xfa\x40\x6f\x7b\xc6\x81\x45\x18\x79\x03\x90\x6c\x4c\x84\xbc\x32\x9a\x18\xc9\xf7\x5a\x14\x9f\x64\x46\x5b\x76\x66\x0b\x3b\x6b\x84\x1d\x12\xaf\x96\x53\x31\xfb\x9a\x5b\x22\xcc\x2b\x0b\x96\xab\xd6\x50\x6e\x2a\x85\x40\x13\x23\xca\xff\xb9\x8d\x78\x0a\x81\x85\xd9\x6a\xde\x3f\x87\x40\xb5\x81\x51\xfa\xa9\x8e\x91\x9e\xc3\xe8\x12\x16\x4a\x42\x5a\x98\x11\xe4\x43\x08\x98\xda\xdb\x26\x12\xd8\x58\x28\x79\x97\x44\x02\xe9\x09\x40\xb4\x4c\xa3\xe3\xc7\x08\x72\x0d\x3d\x93\x32\x62\x91\xab\xe3\x57\x2d\x87\x7b\x2e\x76\xd1\x71\xeb\x0c\x76\x1b\x15\x28\x13\x2f\x89\x2b\x95\x30\x92\x06\x5e\xa0\x86\x8c\x27\x3f\x87\xdd\xb9\x2d\xd0\xae\x69\xd3\x2f\x39\xcd\xe9\xd1\x0e\xf3\xd2\x70\xa1\x72\xbd\x86\xca\x17\xa1\x7d\xcc\x75\x8a\x0a\xfe\x2d\x9d\x47\xfe\xd5\xdb\xcf\x84\x43\x5b\x53\xf0\xe1\x39\x39\x4b\x18\xe9\xcf\x18\x5d\x3e\x6d\x19\xf0\x4f\x86\xbb\xa6\xb2\x3d\xfe\xea\xb8\x6b\x1e\x9c\xe6\x35\xc3\xd6\xac\xf7\x81\xd3\x75\xe7\x38\xd9\xc2\xe9\xcb\x90\x63\x7e\x2e\x38\xdd\x2c\x20\xfa\x40\x38\xad\x68\x4f\xb7\x55\xda\xd3\xfa\x1f\x49\x52\xb7\xa0\xfa\xeb\x92\xd4\x45\x88\x61\x0b\xaa\x2f\x80\xea\xf9\xbd\x6e\xd0\x36\x9d\x0a\x02\x28\x17\x6a\x2c\x79\x13\x44\x8d\x26\xa2\x51\xa3\x3c\x08\xe0\xbd\x43\x46\xa5\xf1\x65\x65\xc6\xe4\x3f\x7c\x84\x8b\xd8\xef\x1c\x76\x2c\xc5\x53\xd2\x5d\x50\xa3\x6d\xe8\x96\xed\x18\x6d\x9e\xd8\x95\xfb\x4b\xbb\xbe\xd2\xbc\xd8\x3b\x77\x9e\xe6\x7a\xd2\xea\x44\x82\x57\xd9\xf3\xeb\xf7\x72\xbc\x26\xa2\x69\x5e\x89\x42\x12\x0b\xb7\x40\x07\x93\xce\xbc\xa1\x46\x87\x09\xa4\xa1\x97\x31\xba\x30\x8e\x22\x4e\xca\x9f\x23\xd9\xab\x5b\xe3\x6e\x59\xdc\xba\x4d\xf6\xba\x36\x00\x99\x88\xb4\xba\xa0\x16\xed\x53\x4b\x6f\xba\x7e\x92\x17\xde\x7f\xdf\x47\x52\x66\x72\x51\x2c\x22\xb9\x28\x5e\xc2\x4f\x16\xc9\x8e\x17\x57\x20\x03\xbf\x61\x14\xae\xef\xc5\x2e\xaa\x3f\x98\x58\x54\xd1\x03\x35\x1a\xe2\x09\x22\xa3\x9b\x46\x45\x34\x27\x8d\xc5\x17\x1d\x53\x33\xf4\xe7\x28\x9b\x15\xb0\x56\x1e\x47\x85\x25\xdf\x86\x3a\x87\x8d\x51\xb2\x3d\x82\xb2\xf0\x2a\xad\x26\x46\xd5\xfa\x43\x83\xaf\x59\xa6\xc4\x73\x77\x5c\x98\x96\x2d\x50\x47\xb8\xb0\x74\x43\xd5\xd8\xc5\x45\xc4\x6b\x44\xa9\xac\xd5\x67\x84\x09\x52\xfa\xea\xb8\x89\xa4\x6f\x46\xb9\xe9\xa5\x18\x59\x96\x0d\xe2\xd4\x62\x6e\xc6\xa4\x59\x05\x22\x15\x73\xc5\x11\x7a\xd2\x98\xfa\xb2\x2d\x45\x7e\x79\xfd\xc8\x7a\xe5\x13\x2f\x7a\x29\x5e\xd2\xfb\x4a\x37\x6f\x73\x16\x35\x54\x33\x96\x86\x4c\x79\x14\xd5\x25\x17\x87\x9b\xdf\x65\x28\x96\xd1\x71\xab\x04\xbb\x0f\x54\x2d\x56\x72\x2d\x8c\x5a\x89\x06\x66\x32\x89\x43\x9c\x69\xd9\xe6\xed\x8d\xd6\xeb\x98\xf1\x3c\x36\x77\x3c\x51\xdb\xcb\x79\x6c\xdc\xb7\x3c\x11\x4d\x74\xdc\x3a\x83\xdd\xc7\xbd\x25\x93\x53\xf1\x77\x73\x34\x78\xb9\x2b\x5d\x35\x59\x84\xa8\x33\x25\x12\xfa\x84\x99\x40\x52\xbd\x6b\x8c\x52\x8d\x1a\xa7\x95\x80\x92\x62\x78\xc2\x31\x6c\x7a\x9b\xb5\x34\x83\x0e\x59\x35\x5c\x09\xee\x57\x3a\x12\xcf\x90\x1f\x4f\xc5\x5c\xf4\x14\xff\x3e\x6b\x0e\xf4\x63\x82\xf4\x20\xdd\x77\x44\x0d\xdd\x9d\x66\x61\x97\xe8\x1a\xf0\x4c\xe4\x66\x0c\x7f\xdd\x5f\x65\xf9\x5f\x83\x26\xfc\x45\x08\x00\x86\x09\x5f\x6c\x6e\x6b\xd0\xf4\x5a\xc6\x71\x03\x23\x73\x80\x51\xb3\x37\xc6\xa8\x6b\x62\x74\xa9\x99\x1e\x2f\x1a\x78\xe9\x86\x0e\xd6\x33\x3c\x37\x42\x0f\xea\x25\x9d\x39\x62\xdd\x5e\xef\xe1\x3b\xab\x24\xcd\xbc\xfe\x9c\xab\xe6\x08\xf8\x75\xce\xc4\x3c\x5c\x37\xfc\x0a\xbc\x35\x51\x9a\x78\xf6\xb3\xad\xfa\x39\x26\xef\x64\xfa\xae\xf7\xee\x9d\x00\x47\x1f\xc1\xa1\x62\x69\x12\x11\x3e\x19\x6e\x43\x01\xb4\x9e\x1d\x44\x25\xa7\x2b\xaa\x1b\xa3\xdb\x2b\xfd\x51\xb3\x26\x73\xa0\x44\xf3\x9f\x6c\x94\x33\xc0\xe5\x0c\x67\x00\x3f\xdf\xc9\xd6\x19\x60\xab\x1f\x5c\x2b\x8f\x90\x56\xa4\x18\xf8\x18\x5d\xdd\xb8\x3d\x31\x7a\x9a\x5b\x12\xc4\x85\xa1\x82\x0b\x48\xc5\x2a\x48\x89\x49\x5f\x32\x5c\x35\xb3\x89\xf2\x96\x99\x4f\x1e\x0b\x2a\x46\x5d\xcd\xf9\x04\x42\xe0\x76\xad\x6f\xc6\x2d\x98\x14\x77\x7c\xb9\xd2\x54\xfd\x4e\x8b\x67\xa6\xbc\x07\x61\x6f\xa5\xcc\x94\xae\xb9\xbd\xc8\xb9\xc5\x52\xf1\x43\xb9\xc5\x15\xcd\xed\x13\xd2\x81\xd6\xd6\x8d\x50\xe5\x38\x61\x12\x60\xc9\x7a\x90\x7b\x24\x19\x8a\xaf\xb3\x3f\xc9\xc2\x48\xfb\x04\x13\xa4\x6c\x21\x41\x44\x13\x39\xc7\x1a\xec\x38\xf1\x1b\x4a\xa5\xd5\x9c\x67\x93\xc9\x38\xfc\x86\x9c\x83\x5a\x8a\xb5\x02\xe8\x2e\xcb\x11\x8b\x80\xcb\x78\xf0\x0e\xb3\x58\xbe\x75\x04\xb9\x43\xcb\xad\x0f\xef\x3f\x17\x23\xf1\x74\x92\x57\xda\xd0\xec\x39\xb6\xb6\x56\xd4\xfb\x93\x68\x98\x09\x55\x23\x8b\xd1\x51\xbd\xba\x45\xbd\x5b\xd4\xbb\x34\xea\x95\x32\x91\x75\x5e\xa5\x86\x4d\x2d\xad\x1f\x93\xcf\xe5\xbc\x58\x5e\x2e\xcf\x2c\x47\xb9\x4f\x3d\x51\x05\x94\x0b\xbb\x0f\x56\x43\x30\x29\xae\x81\x80\xd7\xd3\x69\xdb\x5c\x59\xb8\x96\xd7\x2f\x5e\x6f\x94\x20\x9e\xc9\x8d\x31\xba\x87\xc3\x66\x65\x2b\x91\xff\x42\x12\x39\x22\x95\xe6\x64\x63\xdc\x7c\xd1\xaa\x37\x2b\x74\x68\xe5\x11\x6e\xe9\xdf\xb7\x1c\xca\x92\x71\x45\x3b\xc0\xb7\x79\x5b\x30\xfb\xba\x01\x40\x5e\x08\xf5\xec\x00\xe9\x32\xb7\xb7\x31\xa5\xe8\x41\xba\xe2\xf8\xaa\xd5\x90\x88\x2a\x44\x61\x02\xb1\xed\xfb\x2e\x22\xbd\xd3\x72\x97\x63\x99\x24\xf0\x6a\xa5\xa6\x83\x48\xde\x74\xd0\xa8\xe4\x20\x72\x95\x75\xd0\x13\x34\x2e\xcb\x0e\x7a\x1e\x43\x03\x3b\xe8\xb9\xe1\x20\x72\x91\x75\x10\x91\xef\x73\x18\x69\x18\x33\x29\x33\xf1\x84\xe6\xed\x05\x75\x7a\xf1\xbc\xeb\x72\x52\x1c\xae\x9c\x77\x7d\xf5\xcd\x45\xcf\x57\xe2\x13\x3a\x6e\x9d\xc1\xee\x15\xe8\x79\x50\x6b\x61\x74\xd1\x58\x03\x47\xcc\x8f\x94\xfc\x0b\xf2\xce\x70\xaa\xd0\xf4\x1a\xf1\xa0\xfd\xe9\xec\x0c\x4f\x15\x37\x65\x12\xbf\x57\x70\xd3\x80\xc5\x8e\x67\x70\x80\x0b\x7e\x0b\x9e\x19\xae\x73\x32\xc0\x08\xd0\x5f\xbc\x0f\x7f\x8c\x27\x3f\x65\x40\xd0\x19\x1a\xd3\xcf\x13\xdc\x22\xe8\xb3\xa0\x73\xbc\xe1\x3d\xcf\x64\xae\xb7\xaa\x6a\x5a\xda\xb0\x39\x1a\x3a\x46\x2b\xea\x7e\x8c\xf6\x31\x66\xc4\x12\x2f\x5d\x17\x64\xe4\x2d\xe3\x77\xa7\x45\x4c\x90\x68\xa2\xfe\x24\xa6\x91\x34\x4e\x68\xb0\x77\x6b\x62\xa8\x67\x01\x02\x5e\x58\x40\x63\x71\x8d\x8d\xb7\x1e\x7b\xb7\x62\x09\x90\x25\x0a\x8f\xcc\xee\xff\xea\x81\x2b\x57\x29\xf9\x04\x77\x5a\x34\x90\x29\x89\xa8\xe0\x5f\xd5\xed\xee\x74\xb6\xd5\xf9\x15\x33\x97\x28\x97\xe9\x6d\x4a\x22\xf9\x8e\xdb\xa7\xc8\xd9\xba\x2d\x97\xb9\xc1\x72\xd9\x7b\x88\x7e\x99\x78\x58\x47\xd5\xbe\x3d\x35\x3b\xc6\xd0\x0d\x39\x2b\xd4\x50\xb0\xf7\xc2\xcf\x2a\x85\x42\x8d\xc9\x0e\x10\x1d\xf8\xf1\x32\x52\xf1\x7f\x3c\x29\xd5\x12\xdb\x04\xf9\x50\x12\x6b\xa1\x4a\xc9\xf7\xa1\x7c\x69\x53\xb7\x81\xe2\x29\x00\x2a\x46\xce\x4f\x3e\xd4\xee\x7b\x05\x5f\x4e\xa7\x35\x5d\x11\x91\x63\x89\xd6\x4f\x8f\x9d\x75\x16\x9f\x63\xa4\x9d\x35\xe0\xc1\xf9\xdf\xfa\xc3\x5c\x09\x65\x76\x1a\xa4\xa0\x91\xba\x3e\x76\x90\x6e\x3b\xf3\xce\x4f\x5f\x2c\x94\x0c\xd7\x97\x5f\x60\x33\xa2\xec\xd7\x78\xb7\xa5\xf5\x76\x06\x89\x21\xc7\x3a\x8e\x79\xb2\xfd\x7a\xc8\x5b\x6d\x6c\x08\x66\x7d\x17\xbf\xb9\x09\xcd\xd6\x93\x7e\x67\xdf\xe6\x1d\xcb\xd2\x0c\x7b\xae\xad\x20\xd5\x14\xbb\xb3\x6c\x05\x33\xec\x02\xae\x35\x40\x29\x8b\x45\xe4\x1c\xb7\x60\xc7\xb1\xdb\xf5\xd1\x20\xaa\xab\xe7\x10\x37\x4b\x39\x11\x6f\xe9\x43\x7f\x55\x4e\x66\x6d\x8d\xe9\x3a\x06\xe5\x01\x0f\x82\x8e\x7a\xcc\xd6\xb4\xb6\xa3\xea\x6d\xda\x1b\xd0\x58\xe2\xcd\x44\x59\xbc\x9c\x48\xbc\xc9\x04\x52\x3f\x3a\x6a\x82\x30\x52\xac\xa9\xb0\x8f\x61\xa0\x23\xf8\xd0\xd9\xd2\x54\x9e\xff\x5a\xc7\xe9\x69\x41\x32\x6d\x5e\x71\x6a\x2c\xa6\x97\x2c\xac\xf5\x06\x22\x39\x4d\xd4\x4c\x20\xa7\xa4\x92\x83\xfd\x4c\xac\xff\xd9\x40\x71\x63\xe0\xe4\x7d\x52\x83\x25\xe3\xcb\xc9\x68\x69\xd6\x6d\x8e\x8e\x98\x5f\x79\xc4\xcb\x7a\x11\x29\x0f\x1c\x49\x7e\x21\xad\xa7\xaa\xd4\x6b\x82\x0a\xa4\x87\x44\x15\x60\x99\x56\x22\x79\x2f\x1a\x95\xdc\x02\x92\xf7\xd9\xd3\x30\x7f\x46\x42\xb7\x31\x4b\xff\x03\x08\xdd\x0d\x35\x54\xd3\x79\xd4\xac\x97\x0a\xe4\x6e\x80\x13\xd9\x4f\x39\x9f\x9d\xe3\x18\xc5\xf5\x14\x09\x1f\x90\x02\x7e\xe5\x9b\xfd\x9e\xdc\xf6\x16\x09\xfd\xc2\x48\x68\xc2\x61\xbf\xde\xd1\x6d\xad\x63\x5a\x43\x8d\xfd\x5d\xad\xa1\xbf\x0b\x35\xf4\x77\xbd\x86\xfe\xbe\x80\x76\xc1\x2d\x24\x79\x51\xa8\x31\xae\x9c\xf4\xfe\xa5\xbc\xdf\x20\x5a\x57\xc1\xef\xaa\x93\x0c\x75\x93\x52\xa2\x56\xf1\x95\x15\x1c\x86\xe5\x1b\x8c\xaa\x9a\x05\x68\x06\x63\xa4\x8f\xa3\x41\x5c\x72\x25\x8b\xd1\xa3\xd5\xda\xc2\xc8\x16\x46\x5e\x84\x91\xa8\xe0\x56\xd7\x0d\x43\x1f\x68\xed\x17\xbd\xbd\x3f\x27\xad\x06\xc1\xed\x44\x77\xc9\x9e\x5c\x29\x78\xf0\x74\x4a\xbd\xcc\xf0\x34\x1f\xab\x8e\x69\xe7\x62\x4e\x02\x73\x09\x29\x87\x33\x0c\xb0\x62\x2e\xec\xf7\x4a\xb2\x1d\x97\xbb\x93\xba\x57\x11\x9b\x37\x5e\x61\x54\x7b\xe5\x88\x48\xd5\xfc\xb5\x8d\xfd\x89\x98\xb4\xd7\x8e\x78\xeb\xbb\x6d\x51\xcd\x7c\x89\x3b\x19\x93\x09\xfe\xa6\x5d\xc7\xa6\xb6\x4b\x8b\x03\x3a\x1c\x35\x1a\x46\x09\xf1\x6a\x65\x1a\xdf\x69\xe3\x16\x43\x12\xa1\xc0\x1b\x69\x31\x34\xb6\x16\xc3\x8d\x05\x8a\x77\x81\xbb\x58\x4c\xca\xdf\x5a\xaf\x67\x3e\x75\x0d\xfd\xce\xf5\x8b\xe6\x1a\x67\x4f\xdb\x5c\x2e\x78\x59\x31\x70\xa8\x6f\x0e\xb2\x62\xbc\x9c\xb0\x60\x3d\x1b\x13\xc8\xa0\x95\xc5\xa8\xa3\x3f\x47\x94\xd8\x9f\x23\x61\xc1\x16\x06\x36\xe3\x16\x8c\x64\x5c\x36\xd7\xb0\xa9\xa5\xda\x00\x07\x79\x3a\xd4\x46\x1c\x02\xf6\x71\x1a\xed\x13\xc2\x30\x12\xd2\x18\x09\xcd\xa8\x6d\x42\x7a\x00\xca\x5e\xb8\xaf\x62\x54\xcb\x60\xa4\xe0\x0b\x8c\xce\x4a\x5e\xcc\xab\xdc\x27\x98\x11\x1c\xbf\x6e\x81\x3e\xea\x43\xef\xba\x29\xb4\x8f\x13\x70\xdd\x14\x46\x82\x1f\x26\xc9\xaf\xfb\x38\x32\x31\xd2\x1b\x36\x46\xb4\x77\x0f\x77\x48\x3d\x62\x74\x93\xc3\x48\xae\x1b\x18\x9d\x55\x30\x4b\x4d\x5e\xd7\xe9\x9b\x86\x5d\xb8\xb6\x1e\xf5\x5e\xcf\x05\xdd\x7d\x82\xe1\xe2\xd4\xbd\x30\x13\xae\xb1\x89\x91\x7a\xf7\x80\x51\xf3\x5b\x1f\xb3\xf4\xc4\x15\xca\x54\x7d\x70\xa8\xa5\x6b\x2c\xcb\xab\x3e\xba\x0e\x96\x98\xbf\xbb\x40\xf9\x9b\x23\xff\xfd\x79\x12\x85\x35\x6c\x32\x13\xa4\x4c\x31\xed\x99\xb5\x95\x2a\x40\x1e\x1d\x8d\x30\x2a\x3d\x0e\x7d\x2e\x10\x98\xa9\x2b\x60\xb2\x9e\xcc\x48\xe3\x1a\x7b\x8d\x12\xb0\x59\x79\xec\xa7\x09\x54\x67\x35\xf8\xa8\xd9\xa7\x16\x34\x66\xf8\x43\xcd\xe9\x0d\xcf\xc1\xfb\xd8\xd9\x48\x83\x3f\x62\xac\xe1\x5e\x71\x82\x07\x5e\xdc\x9a\xc5\x35\xcf\x6d\x85\xcc\xa7\x6e\xae\x7a\x0f\xfe\x43\x83\xb1\x73\x98\x72\x46\x26\x17\xd1\xd3\xd0\x34\xbc\xf5\x9d\xf4\xd7\x77\xd2\x5f\xdf\x12\x13\xf2\x45\x13\x23\xe9\x6e\xd4\xc5\x2c\x09\x2b\xf0\x82\xaa\xfa\x9d\xae\x7e\xc9\x3a\x6a\xb7\x47\x8d\x16\xab\xfc\x5f\xb9\x86\x2a\xff\x57\x0d\x7e\x0a\x35\x26\x34\x1d\x24\xa8\xf0\x1f\x23\xa1\xe5\x3b\xf3\xcf\xde\xd6\xef\x26\xb2\x70\x63\x02\x39\xca\xdf\x38\xae\x97\xa8\x27\x22\x2e\xaa\xa6\xa6\x18\x0e\x08\x0d\xb1\x56\xaf\x09\x5d\xb2\x0e\xe0\xec\xe5\x5a\x0f\x25\x07\xd5\xcb\x5e\xc3\x3b\x49\x9a\x0e\x3a\x29\x7b\xd0\xf0\xba\x25\xff\x16\xa3\x1e\x66\x88\x6e\x13\x2d\x9e\xe6\x8a\x2f\xb3\xb9\xad\xd5\xc7\xfe\xcc\xdd\x78\x6b\x7d\x70\xf9\x36\x63\x57\x82\xe9\xb5\x3e\x29\x23\x5e\xce\x8b\x10\x11\x5c\xd0\x5e\x5f\xb3\x38\x22\x70\x1d\xe2\x15\xee\x14\xef\xa7\xba\x9a\x70\x8a\x97\xdf\xc8\xee\xae\x52\x13\x23\xa3\x80\x11\x79\x6c\xb9\x55\xd1\x79\x83\xa4\xc6\x0b\x04\x2d\x3a\x34\x5c\x8f\xf4\x7b\xee\xd1\xa0\x2c\x8a\x2e\xd9\x46\xa3\xbc\x18\x8d\xc2\x94\x09\xc6\xe2\xca\xb4\x3b\x9a\x45\xfd\xb5\xc0\x3c\x1f\x0c\xd6\x3e\x37\x31\x23\xf2\x44\xef\xea\xc8\x7c\xa2\x1e\x01\x81\xbe\x82\xdb\x59\x78\x1c\x62\xcc\xa4\x89\xce\x35\xcb\xec\xf5\xbc\xce\xf0\x1f\x16\x18\x46\xc2\x1b\x85\x5c\x30\x32\x70\x4c\x8c\x3a\xad\x4f\xe8\xa0\xbd\x29\xae\xe0\x13\x13\x76\x63\x0e\x6d\xb3\xeb\xf3\x07\x2e\x6f\xc0\xa7\xd7\xbe\xcf\x62\x26\x01\x12\x29\x3a\x96\x39\xd0\xbe\x9c\x0f\x7b\x26\xcb\x17\x6b\x28\x5f\xac\xd6\x98\x40\xfc\x69\xdd\xa0\x8d\x09\x12\x7d\x2a\x63\x74\xd9\xc7\xa8\x9e\x34\x31\x4a\x0c\xee\xbc\xef\x31\x4f\x9b\xf9\x74\xaa\xbe\x5e\x4f\xea\x7f\xed\xf1\x40\xf5\x31\xf0\xfa\xe2\x2a\xb6\x31\x19\x9f\xed\x4e\x0b\x01\x31\x29\xb9\xda\xd5\xa1\x4e\xbf\x5c\xe9\x23\xda\xea\x70\xef\x38\xc0\xb1\x82\x9c\x14\x2f\x03\x3c\x5b\x7b\x2c\x24\xc5\x4b\x96\xf0\xea\xd2\x42\xff\x6c\xaf\x4f\xed\x91\xd7\x3f\xe1\x31\xf6\x29\x26\x24\x52\x62\x19\x18\x7b\x97\xc1\x4f\xb9\x6a\xa0\x19\xdb\xa2\x30\x5b\x26\x90\x0b\x95\x5f\x48\xbb\x36\x61\x27\xc9\x5c\x75\xc3\x0b\x14\x73\xd2\x3a\xd1\x6a\x71\xab\xe5\xf9\xcf\xad\x69\x9e\x96\x01\x78\x63\xab\xf1\x91\x2b\x9a\x91\x44\xe4\x2b\xf7\xfb\xd4\x70\x8b\x4f\x16\xe1\x3f\x60\x3d\xc9\x10\x4f\x00\xef\x79\xb3\xb3\x5e\xb7\xc5\x79\x4c\x15\x19\xd5\xf9\x73\x90\x63\xbd\x0c\xfb\xb3\x92\x17\x42\x4c\x48\x33\xd6\x1a\xc0\xd4\xb4\x38\x83\x35\x08\xce\xfa\xad\xbb\x73\xe2\x4f\xa1\xb6\x50\x0b\xce\xaf\x82\xe3\x25\x94\x3b\xc0\x83\x24\x02\x0e\x65\x56\xc6\x43\xce\xbf\xb8\x23\x5e\xe6\xf4\xab\x26\x46\x23\xce\xc1\xaa\xbc\x0e\x36\x5c\xc4\x0c\x5a\xf1\xa9\x0f\x67\x2c\xbc\xe6\xac\xb3\x2b\xae\x04\xa5\xd9\xc0\xa8\x30\xc5\x5a\x2c\x83\x2e\xe6\xdc\x69\x1d\x98\xe6\x8d\x6e\xc5\xa4\xe8\x42\x37\x68\x6b\x64\xb9\xe8\x84\x48\x68\x9f\xc8\x68\x9f\x28\xae\x9e\xa9\x59\x11\xaf\x7d\x29\x1f\x09\x5a\xa0\x6f\x93\xa7\x17\xe6\xa2\xb4\x27\xd1\x5e\x1c\xc3\xf0\xeb\x6a\xd7\x06\xec\x22\x18\x46\x7a\x20\xbf\x2c\x72\x59\x95\x5c\x4a\x3c\x79\x0d\x20\x25\xcf\xe6\xcf\xe7\xea\xc1\xf6\x2a\xe2\xee\x63\xc5\xc7\xfe\x4c\x90\x7b\xa2\x82\x04\x05\xfb\xd8\x7f\x36\xe6\xf7\x8e\xcd\x9a\x17\x3e\x29\xfc\x2a\xda\xb5\x01\x3b\x49\xe1\xf1\xc7\x83\xc6\xc7\xcd\x47\x65\x6d\xf3\x01\x78\x5e\x89\x7c\x52\xb3\xa9\xcd\xf8\xa6\x65\xb1\xb8\xf4\x37\x9d\x4f\x4b\xf9\x65\xb4\x6b\x03\x76\xee\x4a\x97\x0b\xbf\x30\x05\x95\x52\x91\x2f\x3b\xec\xb4\x69\x93\xda\x33\xbe\xed\x95\xf8\xf4\xf2\xb7\x95\x83\x85\x09\xdd\xb5\x6b\x03\x76\xef\xca\x8f\x30\x85\x44\x5e\xc7\x1e\x59\x01\xf0\xc9\x11\xd6\x4b\x61\x82\x6c\x01\x63\x20\xe3\x90\xfd\x52\xe6\xbc\x94\x32\xf5\xb7\xbf\xb9\xaf\x0a\x17\xd2\xae\x4d\xd8\x49\xca\x45\xfd\x83\x61\x70\xb9\xe5\xe2\xa3\xaa\x25\x57\x8a\xff\x41\x73\xb4\xdd\x69\xd1\x16\xcb\x05\x5f\x54\x61\x82\x74\x23\x66\xdd\x2f\xf9\xea\x7c\xcd\x4c\x90\x92\x39\x0d\xae\x23\x65\xf3\x06\xec\x5d\xde\x87\x73\x41\x9c\x1f\xe2\xdf\x30\x5c\x38\xfc\xc4\xea\x12\x55\x4b\xf3\x59\x94\xf0\x87\x9f\x9d\xdb\xfa\x98\x7e\x2c\x99\x0c\xa9\xfd\x25\xb5\xa9\x15\x81\x48\x90\x37\x1e\xc4\xb4\x0b\x8d\xb2\x67\x14\x90\xc8\xe9\x1d\x1c\x94\x52\xb9\xc6\x83\x98\x66\x99\x64\x08\x06\x39\xda\x8d\x02\x01\x87\x6a\x26\xc8\xf7\xa2\xe9\x4f\x9b\x6f\x5c\x58\x55\xf6\x98\x85\x3d\xe1\xb2\xe4\xfe\xda\x84\x7d\xfd\xbd\x20\x9f\xff\x99\x39\xd5\x82\x35\x3b\xfe\x84\x52\x33\xa0\xe2\x44\x38\x69\x46\xbb\x6b\x76\x3d\x50\x4b\x31\x21\x79\x04\x1c\x43\xca\x95\x31\x25\x92\xae\x1e\x89\x0a\x90\xc5\x64\x38\xc2\x32\xa8\xd3\xf3\x66\x3a\xe9\x99\x47\xd3\x4c\x48\x8c\x7d\xf9\x12\x09\xe9\x25\xe6\xf9\x65\x80\x85\x07\xa8\x26\xc6\x68\x90\x37\xc6\x1b\x27\x6f\x0e\x32\x18\x95\x8a\x1b\xc3\x15\xc6\x07\xa6\x8f\xc7\x18\xc9\x56\x2b\x44\xa9\x9a\x6e\x39\x36\x8b\x48\xac\x3e\x54\x6f\xd0\x06\xf3\x4d\x79\xde\x7b\x90\x25\x95\x40\x0e\xcd\x04\xe1\xdd\xba\x9f\xb7\xb1\x77\x39\x98\x96\x6b\x27\x24\xdc\xf8\xb1\x87\x64\x05\xa3\xa2\x31\x67\xc0\xc2\xa1\xa1\x70\xdc\xca\x86\x31\x97\x95\x45\xad\xc7\x9c\x67\xd6\xe8\xc3\x50\x79\x3c\xa7\xdb\x3d\xdc\x4c\x32\x7c\xff\x96\xb9\x5e\x2d\xb3\x22\xd2\x27\x5a\xb1\x4c\x4d\x4b\x64\x7b\x9a\xdd\xff\xd5\x03\x57\x4e\x26\xf5\x09\xee\xb4\x68\x20\x93\xa4\x08\x16\xd5\x87\x9d\xae\xd6\x9d\xd6\xbc\x29\x75\xa0\x7e\xcb\x68\xde\x16\x61\x41\x72\xa1\xf2\x0b\x69\xd7\x06\xec\xde\x07\x13\x6a\x80\x54\xec\x46\xcc\xe2\xb4\xb8\xe5\x6a\x7b\x2e\x9c\x37\x9d\x12\x96\x8e\x08\x0e\x39\xcb\x31\x34\xdd\xfb\xcc\x29\x19\xbb\x84\x27\x55\x00\x81\x2c\xe5\xf8\x64\x87\x09\xe4\xec\xa4\x06\x07\xdb\x05\x35\x23\x16\x99\x12\xd1\xa9\x9e\x99\xbd\x2e\xb5\x29\x2b\x97\x6b\xe8\xa4\xca\x49\x98\x8c\x99\x90\xe8\x89\x14\x09\x09\x07\x09\x49\x87\xf9\xde\x3d\xd2\xf8\xdc\x86\xe3\xc4\x92\x4a\x17\xb0\x77\x0c\x8c\x8e\x73\x18\xa5\xc6\x0d\x1c\x23\x8a\xf9\x8e\x6e\x53\xef\xb9\xd2\x68\x1f\x67\xb8\x53\x8f\x90\x7a\x16\x2f\x5d\x6f\xa4\x8c\xef\xe0\xf3\x73\xcc\x8f\x4b\x13\x2f\xf9\x75\x07\x59\x03\x76\x9b\x46\x17\xd7\x29\x45\xbe\x09\x51\xd4\x78\x92\x5f\x25\x9c\x3a\x53\x6f\xd2\xde\xd0\xd3\xe9\x7a\xec\x0c\xcc\x1f\xcc\x23\x13\x52\x79\x9f\xa5\x41\xdc\xbb\x2a\xe3\x55\xbc\x59\x7e\xf3\x84\x38\x29\x7b\x71\x9c\x47\xd2\x75\xd7\xcc\x23\xf5\x0c\x70\x7e\x8b\x06\xf3\xb3\xa4\x4b\xf0\xdb\xc4\xe5\xbd\x4c\x52\x92\x9d\x82\xcf\xde\xae\xfc\x2c\x5c\x8d\xd1\x21\x77\x70\xec\x94\x63\x04\xb7\xc5\xe4\x74\xa8\xaf\xaa\x76\xa8\xd1\xee\x50\xdd\x0f\x50\x61\x1e\x94\x2c\x62\x48\x98\x40\x54\xe9\x09\xa3\x2b\x78\x2c\x9e\x3b\xf3\xa9\x84\x11\x50\xe4\x34\xcf\x1d\x77\x44\x30\xaa\x05\xd6\xf7\xfb\x40\x3a\x0e\x88\x39\x85\xe7\xb4\xaf\x65\x2f\x59\xdc\x8a\xf1\x9a\x4c\x92\x23\x00\x6f\xf6\xcc\x7e\xd3\xe4\x68\x64\x1f\x27\x64\xdf\x8d\xca\x45\x26\xf7\xe2\x93\x87\x4c\xb0\x8f\x50\x64\x22\xfb\x28\x05\xce\x12\xeb\x5b\xb3\x02\xfb\xf1\xd8\x41\xa9\xec\xc0\x41\x92\xcc\x25\x50\x32\x76\x90\x21\xab\x4e\x8c\xbe\x14\x3a\xb4\x4b\xd9\x71\xd9\x43\x57\xb1\x3b\xa6\x98\x90\xb8\x12\xbb\x70\x9f\xf0\x9e\x29\x3f\xb5\x84\xcc\x04\x92\x2e\x7d\x83\x0e\xc4\x31\x0c\xb1\xcb\xf1\x57\x3f\x69\x60\x24\x75\x9f\x9b\x0e\x22\x3a\xe6\x69\x1f\x82\x37\x2b\xd0\x3e\x1d\xaa\xce\x70\xd2\xc2\x31\x10\xd5\x0f\xb6\x70\x2c\x25\xe0\x93\x53\x0d\x9e\xf4\x98\xff\x2e\x43\xb0\x9e\xaf\xb8\x87\x46\xc3\x67\xf8\x78\x00\x10\x17\xf6\x42\x26\x10\x87\x9c\x5c\xe3\x65\x66\x71\x59\xa6\xf2\xc5\x7e\x15\x68\x64\xbd\x46\x53\x0d\x1e\xb9\xed\xb7\x64\x6e\x47\x79\x6e\x60\x74\x03\x8d\xdc\x18\xa3\x2a\x9c\x7b\xe4\xb9\x86\x02\xad\x46\x08\xa4\x2e\x45\x80\x9f\x36\xac\x6a\xca\x39\xcf\x81\x7f\xec\xae\x35\x87\x7c\xb4\xe2\x5a\x12\x95\x73\xe6\x33\xb4\x4f\x73\x89\xd0\x12\xfd\x32\x81\xb7\x4c\xc8\x17\x80\x1c\x50\x1f\xac\xc0\xf7\x6d\x0e\xef\xb8\xee\x3b\x31\x29\xa2\xbb\x29\xe8\x3d\x3d\xca\x7d\x30\x21\xdd\x07\x94\x10\xe0\x54\x57\x98\xee\x69\xfc\x30\x69\x19\x0d\xbe\x37\x80\x4a\x37\x7a\xad\x30\xe3\x3a\xbf\x98\xd3\xa4\xfe\xd5\x14\x26\xc8\xdf\x00\xf0\x15\x5f\x21\x70\x7a\xf7\x4d\x54\x99\x9c\x89\xdc\xdc\x19\x76\xa8\x11\x68\xca\xa3\xdc\xef\x18\x86\x2e\xc1\xfd\xba\x2c\x2e\xf4\xd6\xae\x0d\xd8\xbd\x0f\x53\xd3\xc9\x61\x96\x8a\x68\xb0\xbe\xd1\x3e\x6d\x3b\x43\x8f\x93\xf3\x71\x9f\xab\x0b\x93\xee\xc4\xb2\x8f\xff\xd6\x87\x03\x97\xf7\xaf\x63\x02\xb9\x51\xf9\x43\x49\x54\x56\xef\x78\xd5\x31\x4e\xc1\x06\x18\x35\xc6\xbe\xd0\x1c\x3a\x86\x85\x20\x3c\x91\x9c\x6c\x7d\x1c\xc6\x5a\xb8\x13\x53\xfe\x0c\x3a\x36\xaf\x95\xb8\xc6\x48\x3a\x1b\x7e\x7a\xaf\x14\x1f\x40\x8e\xe8\x98\x06\x3a\x24\x2e\x3e\x9d\x14\x02\x5d\x12\x5a\x56\xa7\xf4\x82\x90\xb3\x26\xd5\x12\x51\xa5\x07\x8c\x12\x9c\xf3\xc3\x16\xd0\xda\x67\x68\xc1\x9a\x1a\xc0\x1a\x4d\x72\xa6\x31\x17\xb4\x9e\x31\x1a\xe4\x5a\x18\xdd\x8c\xe3\xb4\xfa\x3c\x36\xca\x6d\x35\x17\xb6\xe6\xf5\x0b\x12\xc1\xb7\xea\x18\x75\xee\xfc\x74\xcb\x77\x5e\xbe\xe4\x66\xa3\x85\x51\x1b\xe4\x96\x4b\xec\x0a\x5f\xe4\xa9\xec\x33\xa5\x41\x96\x66\x1e\x78\x88\xfd\x6c\x02\xf1\x1c\xf1\x13\xc9\xfe\x14\x23\xd6\x32\x02\xdd\x13\xb4\x38\xce\xe0\x56\x76\x38\x54\x26\x18\xe5\xf1\x22\xcf\x0c\xbe\x3e\x96\xd5\x4d\x45\xbc\x3f\x82\xab\xa4\xe1\xcf\xe6\xd8\xa7\xfc\x9c\xa7\x49\xc2\xfd\xf5\x52\xfc\xa9\xb9\x97\x48\x96\xa0\xea\x59\x03\x91\xe7\x16\x41\x65\x68\x00\x5b\x14\x75\x78\x0e\xee\xc0\xc9\xa5\x04\x23\x79\x7e\x6c\x49\x5a\x40\x68\xf9\x8b\x98\x7e\xcb\x52\x31\xaa\x9b\x93\x8d\xc9\x5e\xb3\x5a\x2b\x0f\xf8\x89\xa1\x96\x8a\x19\x49\x87\xe4\xf7\x58\x6b\x5a\xa6\xf1\x39\xa1\x72\x0b\x97\x9f\x0d\x2e\x79\x3d\xa2\x7e\x25\xea\xbd\x55\x83\x8f\xe3\xc3\x65\x33\xe7\x45\x2a\xab\xbf\x33\x7c\x4a\x11\x37\x92\x63\xf3\x36\xdf\xd1\x6f\xcb\xba\xe1\x7a\x72\x5e\xc4\xb4\x4c\x5c\xc3\x94\xe4\xfa\xcb\xa4\xe8\x84\x9a\x26\x5f\xcb\xe4\x59\x3c\xa5\x51\x9e\xf7\x6a\x9e\x61\x2c\x52\x44\x3a\xa9\x26\x74\x4f\xf4\xe0\x13\xa6\x4d\x8c\xe4\xf3\x07\x8c\xba\x89\x26\x46\xb4\x8e\x31\xca\x65\xcb\x3c\xc5\x70\x88\x25\x4c\xa3\x7d\x7b\x66\x1a\x6d\xfe\x0c\xc7\x67\xf0\xbf\x0a\x3f\xf5\x1a\x3a\x05\xf9\x3e\x95\x15\x8f\x42\x55\x65\xda\x09\x1f\xe1\x2d\xa4\xf2\xfc\xb7\x63\x8c\x88\x4d\xcf\x31\x3a\x56\x31\x7a\xbe\x76\x50\xc6\xce\x39\x1e\x14\xd8\x05\x27\x0c\x10\x74\x99\x0e\xf5\x65\xde\x67\x22\x77\x03\xac\x2b\x5e\xec\xde\x1e\x7b\x0d\x3f\xe0\x81\x37\xe2\xa7\xa6\x1b\xb1\xce\x0b\x46\x91\xd4\xc2\x6c\x3c\x3f\xc1\x1b\x07\x29\x04\x66\x2a\xe4\xee\x3c\x1f\x4b\x96\x92\xa3\xb3\xfa\xd8\x9a\x36\xc4\x26\x93\x62\x76\x19\x53\xec\x62\x23\xbb\x94\xbd\x38\x82\x0b\x49\xd7\x5d\x13\xf6\x9e\xca\xb2\xf9\x2b\xaa\x2c\xbb\x45\x2e\x18\xc5\xb4\x95\x69\x12\x6a\x2b\x4f\xac\xae\x63\x0f\xbb\xec\x64\x12\x74\x93\x37\x62\x62\x0a\x68\x7f\x46\xc1\xcf\xf5\xfb\xe3\x23\xb8\xec\xe0\xbe\x01\xbb\xad\x7e\x7f\x15\xfd\x3e\x4b\x62\x8e\x7a\xbd\xe0\x94\x93\xa1\x4d\x8d\xa6\xd3\xe3\x33\x17\x15\xe8\x5d\xdd\x06\xb9\x16\xaf\xa3\x42\xfd\x6b\x7c\x8b\x64\xe5\xa7\x83\xe2\x64\x26\x48\x66\xbb\x02\x0f\xd3\x1a\x8f\x61\xc7\x79\x9a\xb4\x9d\x5b\x60\x0b\x97\x01\x49\x5d\xc7\xec\xd9\xe3\x6a\x05\x23\x58\x2d\x5c\x55\xc9\x51\x49\xbb\x82\x51\x7a\x04\xbd\x46\x03\xaf\x98\x4c\x77\x86\x3a\x34\x54\x07\x84\x8a\xd1\xe0\xec\x43\x2b\x87\x91\x9c\x2e\x79\xf6\xea\xda\x18\xa3\x5e\xf2\xdc\xfb\xfa\x01\xb5\xae\xe5\x3c\x7b\x61\x88\x2a\x49\x60\xb7\x07\xa4\x39\xce\x00\x6b\xa0\x61\x04\x4c\x96\xc4\x33\x97\xa6\x03\x3c\x3e\xcb\xa1\x7b\xf1\xe2\x5b\xdc\x65\x56\x90\xf4\xfb\xad\xd9\xf3\xa5\x06\x36\xe0\x9d\x1f\xcc\xd9\x37\x92\xe0\xc7\xc8\xfa\xc7\x82\x70\xf4\xc4\x13\x77\xfc\x0d\xd4\xf5\xa7\xb4\x4b\x2d\x9b\xfa\x0e\x3c\x12\x0e\x2c\xa3\x19\x8e\xa6\xea\x27\x39\x26\xa4\x52\xa2\x8a\x84\x54\xd7\xb5\x92\x66\x3c\x74\xe5\x2b\xe4\x14\x29\xc1\x04\x72\x89\x6b\x5d\xd4\x73\xca\x18\xf5\x2f\xc6\xe7\x28\xfd\x58\x77\x50\xb2\x3b\x70\x90\x72\xd1\x70\xd0\x73\x47\x75\x98\x4c\xa2\xf7\x1d\xd1\x81\x63\xf9\x46\x4f\xb8\x59\x46\xc6\xa8\x7e\x52\x63\x42\xa6\x2f\x96\xdd\xdb\x64\x42\x3e\x82\x09\xc4\x71\xf8\x99\x61\xb9\x0c\xbb\x92\x62\x38\x4c\x8a\xa8\xdf\x4e\x35\xcb\x19\xd2\x9e\xd6\x67\xa7\xe5\x40\x8e\x41\x27\x05\x2e\xcc\x74\x81\x47\x92\x66\x43\xe9\x32\xbe\x44\xef\xb0\xb9\xee\x85\xf0\xa0\xd5\x51\x19\x76\x2b\x09\x35\x72\x29\x87\x51\xb1\x8f\x91\x09\xfd\x39\x0f\xdd\xe2\x1d\x0c\xaf\x6e\x00\xb9\xa7\xb0\x10\xf2\x3e\xc8\x84\xeb\x9c\xaf\x90\x0a\xc5\x28\x0b\x7d\xcb\x17\x18\x65\x81\x94\x9d\x0d\x30\x2a\xe5\x3d\xe6\xb4\xde\xc3\xa8\x78\x59\xd9\x20\x59\xc6\x0d\x16\xe1\x66\x04\x0d\x3e\x02\xb7\xce\x69\x5c\x18\x81\x63\xc6\x9d\x7f\x61\x8e\x06\x33\x75\x3f\x20\x85\x23\x2c\x3e\xa2\x5d\xf2\xe5\x15\xce\x50\xb8\x63\xb9\x71\xe3\x01\x7e\xe0\x1e\x99\x56\xcc\x68\xc1\xaf\xcc\xef\x3b\xf7\x6c\x37\x6e\xe6\x08\x9f\x8a\x97\xec\xc3\xf3\x5a\xd6\x18\xa3\x3a\x99\x6c\xbc\x5d\xff\xb7\xbe\xd3\xa2\x81\xc0\xfb\x84\x0e\x13\x14\xe8\xa7\xeb\xcf\xa9\xc8\x98\x71\x3f\x4e\xc5\xe1\xe6\x00\x82\x2f\x87\x98\x29\x11\x4b\xc4\x19\xed\xab\x1d\x6a\x77\x3d\xbc\x40\x88\x1f\x3a\xc2\x04\x3a\x02\xb6\xb4\x89\x23\xc9\x21\x7e\x82\x57\xe2\x6e\x1e\xd5\xd2\x19\x5c\x54\x7f\x6c\xc0\x6e\xcb\x29\x2d\x13\x34\x92\x8e\x4e\xad\x45\xd5\x8e\x6f\xeb\xf1\x4c\xca\xae\x79\x19\x5d\x9c\xd5\xd0\xc5\x19\x48\x86\xca\x90\x5b\x71\x1c\xcf\xc2\x1c\xf3\xcd\x27\x72\x90\x42\x4d\x7a\x36\x87\xd0\x93\x3c\x9c\x9f\xd5\x45\x95\xfb\xc8\x20\xcd\x01\x1c\xf4\x50\x76\x10\xb9\x1b\xf9\x9a\x89\xd6\x19\xf1\xb5\x36\x5c\xb1\x70\xdf\xc0\x4c\x52\x42\xd2\x72\x6d\x39\xfd\x07\xff\xa9\x92\x4c\x48\x9c\x73\xf3\xb6\x6b\x81\x22\x47\x6d\xfb\x5c\xec\x32\x59\x8a\x2e\x3a\xbb\xd3\xa7\x46\xcb\x89\xbd\x49\x42\x49\x30\x21\xf1\x4d\x6c\xbb\x0f\x9f\x38\x0d\x5c\x98\x3b\x70\x50\x2a\x1e\x95\x9b\x62\x9b\x91\xe8\x85\x3a\xd4\x68\x8d\xda\x53\x9e\x3c\x6e\xcc\x53\x46\x12\x5b\x51\x6f\x9e\x30\xe6\x69\xa5\x45\x3c\xe9\x1f\xe2\xba\xf4\xf0\x8b\x0f\xb2\x03\xd8\xfd\x06\x0b\xf9\xe1\x0c\xa3\x51\xe5\x4d\xac\x32\xa9\x1b\x8c\x52\xe3\x02\xf7\x66\x97\x82\x99\xb4\xe8\xd0\x30\x47\xd4\x1a\x76\x67\x08\xc8\x4d\xf1\x61\x35\x5f\xe5\x65\xa4\xb6\x63\x1d\x2e\x3b\xb0\xb2\xb0\xfb\x0d\xa6\xf0\x2d\xa5\x36\x12\x51\x55\x9d\x39\xb4\x47\x6f\x4b\x4e\x7f\xe0\x58\xbc\x56\xb0\x3b\x6f\x53\xac\x2d\x13\x92\x35\x71\xe0\xce\x61\x9c\xb5\xf5\x1c\xb4\x12\x4c\x90\x72\x6d\xde\x89\xa4\xa8\x01\xfb\x5e\xa2\x51\x04\x1e\xe1\x1c\xa5\xbf\x8d\x1c\x44\x86\x26\x71\x58\x8a\x44\x6f\xae\x76\x74\x4f\x4b\x16\xb8\x18\xc2\x7f\xc9\x77\x07\xeb\x89\x5d\xdf\xd9\x10\x09\xe9\xee\x6c\xa9\x5f\xf1\x9c\x10\xa1\x73\xbb\xd0\xbc\x10\xbb\x28\x39\x32\x1c\x94\x35\x8a\x88\x9c\xe3\xae\xdb\xa8\x64\xe7\x36\xa6\xfa\x0c\xb2\x5d\x94\xfe\x36\xe6\xcc\x7f\x80\xc0\xcb\x54\xf5\x02\x8f\xf2\xd5\x5a\x80\xac\xb8\x3b\x55\x6a\x24\xd2\x38\xb2\x0a\x9f\xf3\x2d\x8a\x55\xe4\xbf\x1d\x8f\xb8\x4b\xe4\xc3\x19\xec\x2f\x38\xeb\x04\x3c\x55\xc2\x77\x9d\x51\x2e\xb9\x2b\x77\xd9\x57\x8c\x76\x81\x69\x75\x70\x5c\xc3\xa7\xce\x5b\x90\xd0\x59\xc1\x53\x67\xe3\xb9\xb9\xc2\xcc\x62\x96\xf3\xd6\x1a\xbe\xb3\x00\x40\x83\xd6\x3b\x69\xf8\x12\xa9\xe8\x0c\xb7\x69\xcb\x77\x4d\x74\x09\x11\x70\x54\x4c\xa0\x32\x50\x65\x2f\xdd\x9b\xa0\xbe\x8d\x6b\x29\xb9\x50\xf9\x75\xb5\x6b\x53\x7e\x37\x2f\x8c\x5f\x05\x89\x21\x39\xff\x80\x59\x26\x11\xaa\x0d\xcb\xb4\x4b\x87\x43\x2f\xaa\xaa\x1c\x61\x29\xea\x27\xb5\x2c\x13\x52\x3c\xa2\xcd\xfd\x0d\x14\xef\x1e\xf2\xe2\x7c\xca\x3d\x9c\x7a\xbc\x53\x31\xea\x8f\x4a\xd0\x4e\x97\x4b\xf1\x5c\x04\x65\x6a\xe8\x3d\x1a\x54\xe3\xe0\x9a\x7c\xff\x52\x99\x48\x02\x40\x26\x90\xee\xe9\x09\xaf\xc0\x84\x54\x60\xbf\x92\x89\x06\x46\xfd\x46\x0e\xa3\xc7\x06\x46\x37\x67\x9e\x7e\x29\xc6\x87\x55\x74\xd5\x1c\xea\x74\xd2\x11\xb0\x25\x0e\x37\xc6\x11\xd0\xf5\x82\x81\x27\x92\xa8\xac\xc2\x7e\xeb\x05\xb3\x71\x5e\x30\x9f\xed\x4e\x0b\xf3\xb3\xc8\x91\x58\x82\x8a\xf9\x68\x76\x9d\xb1\xa1\xd9\xb3\xb8\xcc\x44\x59\x2c\xbf\x1d\x97\xe9\xa1\x67\xbb\xcc\x33\xb0\x94\xca\xbf\x59\x06\x96\x57\xcb\xbb\x89\x44\x7c\xbe\x86\x7a\x53\x9f\x29\x14\x24\x1e\xc5\xe2\xf2\xd3\xb5\x1c\x7e\xe2\x92\x9d\x01\x17\x1e\x64\xbf\x3d\x06\x81\xfe\x1f\x33\x65\xfd\x1e\x46\xe7\xc3\x8d\x9e\xb5\x19\x44\x55\xd1\x2a\x71\x92\x77\xde\x1f\xce\x0a\xb4\xba\x12\x9d\x9f\x4d\x71\x34\x25\xd2\x49\xca\x10\x2e\x3b\x28\x97\x60\xb7\x05\xb7\xd5\x44\xba\x88\x5e\xe5\xdc\xa2\xbd\x39\xf9\x11\x06\x7e\x78\xf8\xa2\xfc\x08\xca\xc2\xcd\x0d\x08\x1f\xf0\x00\x39\x73\xe0\x06\xc8\x9d\xbd\x41\x3a\x8d\x30\xe4\x7b\xc2\x92\xc4\xf5\xe4\xc5\x0f\x98\x9b\x58\x16\x8d\x0b\xd3\xb0\x75\x6a\x50\x17\x1a\x2e\x22\x02\xab\x6f\xf9\xa9\x65\x3d\xf3\x4f\x87\xcb\xac\x1d\x71\xc2\x00\x34\x61\x04\x4a\x32\x41\x72\x28\xef\xd6\x28\x62\x8c\xfa\x8e\x51\x12\xbb\x28\x7d\x45\x27\x2d\x41\xa8\xfe\x60\x38\x4c\x8a\x48\xa2\x17\x23\xd3\x68\x8f\xa8\x27\x39\x9f\x55\x39\x2f\x8a\xb8\xfe\x30\x6d\xf8\xfe\x24\x81\x0c\xca\xf3\x47\x3b\xfd\xb4\x81\x32\xa9\xc6\x15\x22\xbd\xda\xd8\x41\xd2\xb9\xa1\x62\x94\xcc\xc1\x6b\x46\xdc\xcb\x2f\xcd\xa1\x4d\x0d\x3a\x9a\x4e\x16\xa2\x68\xc0\x89\xfe\x44\x22\x16\xd7\xed\x1c\xae\xa2\x5d\x9b\xb0\xfb\xa5\xf3\xb0\x04\x1f\x74\x34\x1e\xf5\x4c\xab\x45\x67\x7c\xd1\x9e\x78\xb9\x4c\xfa\x95\xf9\x38\x13\x3e\x28\x5c\x44\xbb\x36\x7b\x41\x70\xe2\x5a\x3e\xa8\x4c\xcd\x0f\x82\x42\x34\xbe\xec\x71\x3f\x9c\x30\x51\x1f\x35\xda\xa6\x69\xb0\xab\x48\x84\x56\x86\x09\x49\x53\x2c\xb9\x5a\x73\x2f\x08\x83\x4b\x75\x3a\x1c\xad\xf6\x8d\xaa\x58\x42\xa9\xfb\x8c\xc3\x94\x88\x37\x67\x95\x76\x3b\xb4\xa7\x1b\xa1\x59\x35\x30\xa1\x60\x26\x64\x1c\xdf\xb0\xea\x9b\x51\xe6\xc7\x94\x2a\x2b\xe0\x4f\x29\x7b\x74\x03\x97\x26\x39\xb3\xcc\xf7\x0f\xdf\xe8\x06\x93\x3a\x17\x31\x6f\x02\x95\xe3\x39\x16\x58\x22\x62\x53\xa9\xd2\x3e\xb5\xba\xd4\x68\xcd\x80\x2e\x4b\xbc\x5a\x06\xba\x5c\x28\x82\xce\x3c\xdf\xcf\xd5\x3a\xa1\x28\xf8\x93\xc9\x11\x4b\x7c\x55\x33\xbd\x0c\x1f\x11\x4c\x8e\xce\x0a\xfc\x3f\x13\xd2\x16\x0f\x6b\x0e\x70\xba\xa7\x5f\x74\x62\x81\xb1\xb1\xe2\x1f\xfc\x88\x8b\xf3\x61\x6c\x26\xd5\xb8\x11\x2f\x11\xe9\x93\xb1\x83\x92\xf9\x32\x46\xdf\x40\x40\xee\x56\x7c\xbb\xb1\xdb\x8a\x1a\x9a\x93\x20\xc9\x4b\x27\xd8\x41\xe7\x70\xf8\x9b\x67\xc0\xe6\x11\x9b\x41\x99\xfc\xd9\x0d\x89\x47\xb8\x49\xdf\xb8\xbf\x61\x9c\x9c\x46\x1c\x29\xaa\x96\xd6\x32\xb4\xae\xd9\x1b\x05\x0c\x66\x4c\xdf\xa6\xc1\x3b\xbf\xa1\xbe\xcd\x53\xb7\x69\x2e\xb2\xd4\xb6\x91\xdc\xab\x32\x98\x72\x22\x34\xf7\xd4\xa8\x3e\xd0\xdc\x60\xe2\xd3\x78\x40\x71\xa8\x07\x5b\x66\x63\x02\xd1\x9f\xd2\x18\xdd\x73\xb5\xf5\xc8\x7c\x21\xa0\x78\x7e\x8b\x9b\xd2\x73\x41\x18\xa6\xeb\x6b\x1e\x6f\xad\x14\x36\x99\xcb\x79\xde\x5b\xb9\x96\xdb\x70\x1e\xc8\x54\xaf\x4c\x2a\xe7\x16\x59\x4f\x29\x21\x45\xa9\xd1\x61\xa7\xeb\xd7\xa5\x8f\xcb\x4c\x39\xb1\xb9\x42\x78\x1e\xf4\xd6\xae\x0d\xd8\xbd\xdb\x4a\x0d\x6a\x7f\xf2\x37\x69\xea\x3d\x7d\xa8\xb3\x5a\x6e\x32\xc9\x94\xd4\x80\x37\x59\x26\xc9\x14\x99\x09\xa0\x9e\x72\x85\x5f\x86\xdc\x5f\x1b\xb0\x7f\xc7\xa4\x52\xdc\xc0\x30\xad\xe5\x93\xf8\x5a\x09\x14\x81\x72\x25\xf0\xa9\x7b\x75\x08\x69\xd6\x70\x75\x00\xdc\x13\x20\x62\xf6\xaa\x69\x1d\xcb\xb3\x32\xd4\xdc\x8f\xcb\x79\x18\x9f\x78\x71\xbf\x0f\x79\xc0\x53\xd9\xb9\xbf\x4e\x48\xc8\x14\x1f\xef\x4b\x89\xb5\x6e\x4c\x90\x9a\x76\x01\x6e\x4f\x5a\xb2\x8a\x11\xe9\x38\xa5\x9a\x78\x82\x6a\x0d\xc7\x05\xab\x61\x05\xa3\xc7\xac\xe3\x87\x3a\xc3\x8b\x6b\x06\x46\x83\x4a\x0e\xa3\xeb\xe0\xf3\x86\x79\x6f\x97\x69\x2d\x3b\x62\xd5\x7e\x49\x65\xfd\xf7\x78\xef\x7e\x6b\xba\x32\x23\x11\x9b\x44\xad\xa3\xf7\x07\x9d\xb8\xa3\x47\x92\x09\x89\xba\x98\xf5\xb3\x1f\xb8\x6e\x1e\x55\x87\x1f\x23\xb9\xa3\xf2\x50\xcc\xb2\x54\x26\x34\xcb\xd4\xcc\xee\xc8\x64\x40\x27\x4e\x81\x4e\x64\xc2\xda\x4b\x9e\xad\xe4\xf2\xf4\xd4\xb3\x2b\x86\x15\x49\x26\x2b\xa8\x30\x39\x1d\x79\x2a\xb3\x3f\x53\xa5\x58\x10\x2f\x7e\x46\x03\x3c\x4f\xa5\x58\xe9\xc0\x85\x07\xcf\x63\xd8\xfd\x8a\x5c\x03\xcf\xf1\xdc\x5c\x9a\xc9\x5f\x99\x69\xbf\x1c\xc4\x5d\x0e\xae\x7b\x94\x1a\x4d\x1a\xc9\x80\x18\x0d\xcf\x49\x89\x4f\xcb\xf8\xf8\x2f\xe6\xf5\xa4\xec\xc5\x31\x5c\x48\xba\xee\x9a\xb0\xff\xdd\xc2\x29\xa2\xea\xc0\xeb\xa1\x2d\x54\x34\x6b\xd2\xcd\x4a\xf2\xb8\x6d\x10\x74\x9f\xc4\x6a\x68\x14\x55\x3d\xae\x9b\xce\x4d\xbd\x93\x58\x3a\x19\x4f\xc2\xf5\xb6\x82\xeb\x0f\xb2\x03\xd8\xf9\x00\x94\xf9\x85\x00\x68\x4d\xa6\xbf\xd0\xd5\x2a\xc2\x7b\xdf\xf4\x68\x4b\x7f\x74\xeb\x85\x84\x5a\x0b\xcf\x67\x2e\x5d\x12\x1f\x7f\xd2\x5f\x6e\x5a\x6c\xaa\x9e\x9e\xc0\x65\x75\xbb\x01\xbb\x5f\x11\x01\xae\x3f\x40\x86\x4f\x1d\xaf\xdd\x1b\x50\xae\x48\xe2\xb2\x74\x5e\xac\xbf\x69\xe2\x32\xd7\x14\xc6\x2f\x3b\xc8\x9a\xb0\xdb\x4e\xdb\x4a\xd3\x26\x45\x74\x4c\x7f\x6b\x5d\x6a\x6b\x96\x6e\x34\x1d\xab\x1d\xd1\xfe\x47\x75\x4d\x92\xf8\x8c\x04\xf9\x54\x4c\x4c\x69\x9c\x66\xa1\xc5\xe5\xf3\x99\x31\x41\xa2\x6d\x7e\xf5\x54\xff\xb2\x23\x0e\xd1\x43\xee\xf1\x74\x1b\xa6\xb6\xb2\x75\x2c\x22\xa1\xff\xad\x59\xda\x63\x90\x7e\x2e\x2a\xd6\xd6\x97\x17\x6a\x5f\x82\x44\x57\xc0\xad\x73\xf1\xb6\xfe\xce\x19\x93\x17\xff\x28\x57\x8d\x4d\x99\x1a\xf2\xe0\x96\x55\xe0\x53\x63\xf7\xa8\x61\xeb\xea\x97\xec\xd8\xb4\xb4\x21\xcf\xbe\x26\x60\x09\x09\x98\xf0\x22\x66\xf5\x62\x8d\x91\x2a\x70\x74\x18\x11\x8c\x30\x5a\xd1\x1b\x4a\x9e\xf8\xbf\xec\xa8\x85\x9b\xb2\x2a\x63\xba\xfc\xc6\x04\xa9\xd7\xaa\x63\x44\x2f\x1a\x6e\x96\xb1\x12\x4c\xdb\xa3\x8a\x51\x0d\x84\x24\xa7\x8c\x51\xb5\x1c\x3d\x02\x8d\xe0\x48\x32\x09\x1f\x1b\xf8\x7a\xb9\x88\xfd\x7c\x03\xb3\x4a\x24\x06\x99\x0c\xe4\x13\x3c\x55\xc5\x45\xfe\x16\xfc\x19\x06\xf8\x85\xb9\x0f\xc2\x75\x35\x71\x16\xe6\xb7\xa0\xfa\xc5\x5c\x79\x0f\x1e\x70\xa8\x60\x8c\xda\x25\x17\xa5\x0c\x89\xeb\x54\xda\x6a\xb8\xb2\xdf\xa0\xe5\xee\xe1\x3c\x08\x7e\xb3\xfe\x8e\x04\x62\xb9\x8c\xee\x9c\x25\x2e\xe7\xcd\xd7\x57\x13\xfb\x09\x10\x5c\xa2\xdf\xc3\x49\x6f\xde\x88\x09\x16\x7f\xd6\x05\xc2\x2e\xeb\x7b\xdc\xd2\x67\x43\xf0\xbf\xb9\x87\x9c\x9f\xfc\xc2\xc7\x9f\x39\xcd\xea\x3b\x9e\xb5\x39\x5b\xad\xa1\x6c\xa1\xc6\x94\x7b\x51\x47\x8a\x57\x60\xf2\x23\x1c\x47\xa3\x1b\x13\x48\xce\xb8\x2a\x8a\x47\x88\x94\x6a\x4d\xbe\x9f\x2b\x65\x2f\x5b\x86\xfe\x67\xc6\x6e\x4b\xd8\xff\xca\x25\xec\x93\x9e\x83\xb8\x0f\x1e\x79\x6a\x50\xcb\xf5\x6e\x01\xd6\xa2\x5e\xac\xa1\x7a\xb1\x5a\x63\x84\x88\x59\x97\xb1\x10\xc8\xab\x74\x4e\x6f\x43\xf4\xc9\xb5\x4d\xeb\xa2\x89\x1a\x17\x59\xd8\x91\x5e\xf6\x2c\xc8\x56\xbf\x11\x04\x6c\x4b\x11\x36\xe1\x4e\x0b\x29\x42\x42\x89\x53\x84\x3c\x1d\x68\xb7\x37\x9a\xd5\xd2\xbc\x65\xcf\xb9\x6a\x46\x46\xa2\xe2\x72\xd3\x61\xc6\xd2\x16\x0f\xfb\x2e\x9a\x6e\xce\x75\x44\x5a\xf7\x77\x98\x25\x70\xfc\x7a\xdf\xa8\x65\xba\x97\x0a\xa0\xc7\x12\x95\x10\x72\x3e\x80\xa2\x48\x4e\xd5\x78\x12\xaf\x91\x54\x6f\x9b\xb0\xdf\xc2\xc9\x26\xaf\xde\x0d\x81\x13\x25\x13\x27\x0d\x65\xda\xd2\x74\x8b\xb2\x6f\x1e\x6d\x70\x6b\x67\x47\x69\x44\x2a\x42\x23\x5e\xb3\xde\x5f\x25\x84\x7a\x21\xdf\x1f\xb1\x71\x94\xd0\xd8\x0a\xa1\x5b\x21\xf4\x9d\x85\xd0\x2d\x2a\xdd\xb8\x3b\x2d\x16\x42\x53\x71\x16\xe1\x4a\x1b\x75\xef\xe9\xa3\xde\x0d\x18\x6d\x40\xa6\x47\xe5\x1a\x23\xc3\x57\xa9\xef\xe6\x6c\xdc\xc9\xb1\xde\x7f\x42\xfd\x3b\xfa\x14\x7a\x6b\x91\x52\x0e\xa3\xbc\xe1\x35\xe4\xbb\x06\x46\x79\x82\xd1\xb1\xab\xc7\x3e\xc7\x08\x0e\x93\x62\x09\xa3\x12\xbc\x41\x1e\x7b\xce\x06\x61\x80\xf3\x54\x23\xe6\x90\x10\xa9\xa5\x3c\xd1\x0a\x3f\xcb\xc4\xb1\xb9\x23\xe6\x5e\x65\xa5\x11\x6f\x71\x37\x46\xa4\xf8\x2c\x56\x4d\xc7\xee\xdc\x1e\x69\xa6\xd5\xd6\x29\x13\xb0\xc4\x24\xcc\x30\x63\x32\x8e\xf5\xb2\xa9\xd1\xd3\x46\x3c\x77\x80\x80\x15\x24\x60\x19\x78\x4c\x26\x5f\x88\xa6\xab\x74\x40\xd2\xd4\x6c\xcb\x2b\x28\x61\xc3\x8d\x09\x52\xf7\xf4\x29\x0d\x54\x58\x6a\x66\xf9\x3e\x0c\x36\x9d\xc8\xa7\x76\x97\x9b\xdd\xe2\xcb\x22\xaf\xfa\x99\x95\x1e\x4a\x91\x58\x74\xa9\x5f\x59\x58\x98\x8a\x37\x62\xd1\xeb\x2f\x75\x8e\x8d\x5a\xba\xf3\x43\xe5\x35\x39\x35\x63\xa1\xf7\x33\x4f\x31\x89\xb8\x86\x64\x67\x68\x5b\xb4\xa7\xd3\x2f\xd5\x51\xcb\xd0\x46\x2c\x5b\xac\xd6\x50\xb6\x58\xa8\xb1\xd0\x70\xbc\x49\x1b\x13\xa4\x8c\xdc\x6b\xa0\x67\xb5\x81\x08\xbe\x6f\x61\x34\x9a\xe1\x5c\xc1\xe7\x38\x05\x53\x1b\x07\xeb\x49\x67\x22\xb7\x31\x0d\xd6\xcb\x34\x42\x90\x59\xd0\x89\x67\x4b\x08\x90\x26\x30\x20\x41\x23\xc8\xa8\xf0\xba\x27\x5b\x09\xdf\x87\xc7\x57\x40\xf8\xe1\xc9\xf0\x50\x84\xe5\xd9\x08\x06\xe6\x63\x87\x2d\x1a\xcb\x14\xcf\xcf\x29\x80\xb0\x6c\x4b\xeb\x51\xbd\xa5\xb1\x6c\x1e\x60\x8c\xfb\x4a\x67\x1c\x24\x50\x67\x23\x61\xcc\xde\x00\x18\x5b\x66\xd4\x32\x20\x36\x0d\x6b\xc1\x92\x0e\x6e\x11\xf4\x79\x3f\x96\x6a\x0b\x61\x3f\x05\x61\xbe\x23\x75\x00\x61\x39\x4b\x1f\x36\xa9\xa1\x2d\x43\xc5\x5e\x43\x48\x8e\xc9\x3c\x74\xcd\xa4\x49\x68\xcf\x59\x66\x57\x33\x6e\x8f\xf5\x5e\x6f\x0b\xf0\xbf\x24\x51\xdd\x42\xfc\xfb\x43\xbc\x57\xc9\x30\x80\xb2\xbc\x63\x59\xfa\x52\xf0\xfe\xe1\x00\x56\x4c\xfb\x30\xf4\xb1\x10\x36\xbd\x28\xe7\xf4\x7e\x32\x97\xa3\xa9\xee\x15\x43\x75\xde\x12\xad\x70\x92\x97\x18\x11\xc2\x53\xa8\x28\x5c\xf6\x1e\xfc\x27\x54\x2d\x7e\xf4\x02\xde\xac\x61\x0b\x41\x2d\xa5\x24\x63\x90\x56\xa0\xd6\x93\x6e\x2c\x22\x65\x4b\x53\x91\x40\xbd\x10\x5c\xbc\xe8\xa8\x3d\xca\xf6\x71\x5a\x49\xa0\x7d\x9c\x51\x12\x4c\x48\x9f\x22\x21\x73\x3a\x0b\x8e\xf9\x7d\xba\x27\xf3\xef\xd3\xae\x0e\xdc\x25\xdc\x4b\x78\x94\x40\x3f\xcd\x62\x74\x84\x31\x1a\x5f\xfb\xe9\x96\xa7\x91\x36\x93\x93\xe9\xd8\x53\x1d\x9b\x4d\x6a\xd9\x1b\x8f\x5c\x5e\x81\x64\x6e\xee\x02\x17\x41\x78\xfb\x69\x4d\x57\x90\xe5\x6f\x8b\x88\xb6\x88\xe8\x63\x11\x91\x44\x26\x90\x45\xc9\xb4\x5a\xb7\xc7\xe6\x93\x47\xf6\xf7\x09\x96\x79\xd0\x83\xec\x85\x3e\x00\x90\x52\x07\x09\x4d\xc7\x0f\x7c\xf0\x75\xc4\xef\xb5\x31\x8b\xe6\x79\x08\xbd\xe3\xc6\xca\x07\x49\xdb\x67\x37\x78\x20\xe5\x43\xd9\x41\xf5\x92\x03\x2b\x39\xd2\xe0\xa7\xa0\x71\x6e\x38\x00\x11\xb3\x1a\x57\xcd\xb9\xa7\x78\x55\x63\x62\xe2\x45\xad\xe0\xc6\x24\xcb\x2b\xc8\x7b\x87\x96\x18\x10\xef\x16\x1e\x52\xe0\xf6\x6a\x99\x07\x84\xbe\xd8\xba\xcb\x2e\xd7\xef\x0d\xc7\xde\x8d\xdf\xf3\x6e\x8b\xc6\x32\x59\x49\xc5\xd7\xb6\x6e\xb4\xb4\x3e\x35\x96\x25\x3a\x6f\x2b\xc5\x4e\xa3\x73\x46\x70\xec\xf9\xca\x5a\xaf\x69\x3a\xd6\x72\x22\xf6\x87\x53\xc3\xcd\x50\x14\xaf\xae\xc4\x0a\x79\x93\x17\xb4\x58\x0b\xee\xf1\x3a\x2d\xd6\x56\x51\xfc\xfe\x04\xce\xaf\xe9\x1c\x00\xd9\x85\x66\xd9\x1d\x96\xad\x03\x80\xd5\x17\x97\xe8\xe7\xab\xfc\x7e\xc1\x2a\x7f\x2d\x2f\xec\x55\xba\xcc\x17\x6b\x2c\x5f\xac\xa1\x3c\x4f\x41\x4b\x78\x55\xcb\xcd\x01\x74\x26\x48\xf4\x9b\x86\xbd\xca\x91\xfa\xf9\xd4\x3a\xbd\xb4\x54\x8c\x92\xba\xbf\x32\x67\xcd\x40\x12\x7e\xda\xe5\xf2\x1c\x96\x6d\x82\x41\xdc\xe0\xc5\xfc\xd1\xa6\xff\x0d\xf1\x4e\xd8\x0c\x3f\x88\x9d\x83\x9d\x0b\xaa\xea\x77\xba\xfa\xa5\x48\x87\xb6\x66\xb1\x22\x37\x8a\xa7\x90\x80\x93\x48\xc0\x09\x96\xea\x88\x43\x94\xc2\x28\x89\x51\xe2\x05\x17\x88\x77\x75\x3d\x66\x02\x71\xaa\xed\x23\xf1\x09\x91\xa1\x72\x02\xfb\x78\xdd\x21\x6e\x57\x0f\xeb\x0e\xf1\xd6\x43\xc5\xb3\xa1\xf7\x5a\x7e\x22\xa9\xe0\xd0\x43\x65\xba\xff\x8c\x91\x73\xfa\x4b\x83\xec\xd2\x83\x42\x6f\xa5\x79\xfd\x43\x92\xbf\xf8\xa9\xe6\xdc\x2a\x52\xbc\x8d\x04\xd9\x89\x78\x5c\x01\xbf\xf0\x82\x67\x5b\xf5\x4b\x4c\xde\x89\x77\x0b\x5d\x18\x8c\x06\x46\x47\xc4\x73\x5c\x89\xbb\xc5\xfb\x7e\x02\x4a\xd2\xc0\x28\x0b\xa7\x2a\xcd\xc9\xc6\x98\x17\xdb\x9d\x93\xa9\x66\x66\x6b\x61\x6e\x9b\xb9\x23\x5e\x4e\x8b\xb3\xea\x50\x26\x63\xee\xb6\x90\xaf\xd6\x92\xf9\x42\x8d\xe7\x9d\xca\x17\x6a\x28\x5f\xaf\xa1\xfc\x45\x8d\x71\x60\x72\xff\xb9\x54\x4a\x92\x3f\x9c\x48\x4d\x91\xac\x24\x19\x4e\xbd\x79\x95\xd7\x0b\x7c\x96\x31\xd2\x9f\x30\xba\x7c\x7a\x8b\x2c\x14\x41\xd5\x03\xee\xe3\x94\x6b\xe0\x6d\x3c\xcd\x36\x9e\xe6\xcd\x6e\xb1\x73\xb0\x53\x2c\xd6\x58\xa4\x3e\xc1\x72\xe5\xce\xd7\x09\x5b\x9d\x42\x6e\xcb\xc6\x6d\xd9\xb8\x37\x65\xe3\xbc\x82\xb6\x05\xa7\xd9\xd3\x0d\x56\xf0\x0a\x64\x1e\x95\x6b\x28\xe7\x16\xfd\x67\x03\xb1\x87\x84\x91\x58\xf0\xa2\x01\xa6\xa2\xc6\x16\x27\x81\xfd\xac\x1b\xc8\x5e\xcf\x19\x78\x6d\xae\x7b\xb8\x1b\x43\x93\x28\x7c\x1d\xc3\x81\x36\x87\x33\xd3\x77\xb6\xe7\xad\xb0\xb8\x10\x3f\x96\xc9\xfa\xea\x70\xdd\xd7\xf0\x87\x3e\xab\xbc\x35\x51\x63\x3f\x04\x60\xee\xb3\x3a\xf7\xec\xac\xfa\xfc\x21\x4c\xae\x34\x22\x3c\xeb\x87\x11\xb4\x93\xc1\x33\x3e\xc5\x47\x85\xeb\x67\x62\xfc\x2c\x53\xc3\xdc\x07\x08\x5f\x6d\xd9\xc7\xa3\x73\x94\x47\x31\x8d\xcc\x9c\x86\x9d\x75\x75\x00\x19\x6c\xce\xd2\x34\x4d\x37\x16\x5c\x67\x96\x45\x66\xbc\x14\x14\x2f\x03\xed\x2f\x2a\x9f\x96\x6e\x4d\xf8\x67\x6f\xf1\xec\x87\x7f\x0c\x3f\x4b\x19\x30\x12\xf0\x1f\xd8\x77\xe6\xfe\x9d\x28\x16\xf8\x31\x54\x2c\xd4\x50\xb1\x5e\x43\xc5\x0b\x38\x8f\x14\xef\xdf\x26\xf3\xf9\xf6\x3c\x3e\x5f\xc1\x48\x7f\xdc\xf2\xf9\x5b\x3e\x7f\xf3\x6f\x01\x50\x68\xab\x5f\x8e\xca\x35\x01\xb3\xa3\x72\x8d\xf9\xa0\xe9\x1d\x24\x6c\xdf\xad\x48\xec\x1e\xf6\xb5\x5e\x17\xa6\x65\xdf\x96\x4d\x4b\x1b\x36\x47\x8c\xa7\x36\xa3\x3c\x62\xc4\x4b\x52\x11\x8c\x26\x8c\xdb\x6c\x9b\x13\xc3\x6b\xd4\xa2\x4f\x94\xf1\x0c\xe0\xaa\x3b\xd0\x8d\xd1\x0c\x06\xca\x8c\x17\x37\x6e\x4d\x3e\x8e\xc2\xf6\x89\xc2\x04\x6d\xe2\xb8\xc4\xf6\x31\xf0\x2c\x13\x87\x65\xb6\x8f\x65\xc6\xe5\x96\xe8\x61\x85\xf1\x22\x29\xca\xc4\xe1\x04\xe3\xe9\xa1\x12\x13\x87\x93\x8c\xa7\xfe\x4a\x7a\x87\x4f\x8c\x96\x4e\x8d\x2f\xf9\x8e\xa5\x0f\xed\x3e\x1d\x32\x9e\xf4\x39\xe5\xbe\x85\x1b\x76\xe1\x8f\x4c\x33\x9e\xaf\x34\x3d\xf9\xf1\x68\x8f\x3a\x8c\x27\xc1\xcc\xf8\xc3\x22\x2f\xbf\x4f\x18\x0f\xdb\x8e\x3f\x06\xff\xc8\x04\x33\x3a\x79\x18\x66\x87\xb0\xe6\xe4\x61\x89\x09\x44\x62\xea\xc4\x61\x99\x09\x58\x66\x13\xdf\x63\x5f\x61\x02\x56\xd8\xc4\xe7\xd8\x4f\x30\x01\x27\xd8\xc4\xd7\xd8\x4f\x32\x01\x27\x59\x72\xe2\x68\x8a\x09\x38\xc5\x52\x13\x47\xd3\x4c\xc0\x69\x96\x9e\x38\x9a\x61\x02\xce\xb0\x4c\xe4\xe8\x75\x2d\xcf\xe0\xbf\x7f\xc8\xe5\xc9\xb3\xfd\xa1\xad\x59\x2d\xda\x67\xd9\x72\x0d\x55\x78\x25\x4e\xc2\xeb\x85\x62\x09\x73\x93\x05\xca\x17\x6b\x4c\xb8\x17\x9f\x90\x40\xdc\xdf\x2e\x12\xba\x6e\x15\x3d\xb2\x9a\xac\xea\x32\xf3\x1f\x18\x82\xeb\x6d\xdc\xe6\xa1\xc2\xcb\xb8\x09\xcf\xf5\x0b\x9f\x8e\x86\x8e\x25\x8b\x9d\x52\x54\x9f\xe3\xe6\x79\xd6\x2f\xd4\x58\x8f\x9c\x8a\x51\x19\xce\xd9\x2a\x46\xd7\x66\x94\xa1\x73\x80\x49\x87\xc6\x10\x63\x74\x03\x9d\x87\x26\x46\x37\x30\x7e\x58\xc6\xe8\xba\x1c\x75\x22\x72\x80\xf7\x84\xe1\x56\x76\x6a\x54\xd0\x19\x63\x74\x77\x83\x51\x2e\xdf\x80\xd7\x09\x6f\xe4\x8f\x1d\xf6\x31\x4a\x62\xd2\xdd\x5a\x6f\xb6\xec\xe8\xfb\xb2\xa3\x6e\x65\x7d\x1f\xcf\x18\x2d\xd3\xb2\x28\xab\x73\x43\xa8\x67\x0c\xf5\x84\xfd\xe9\x80\xc6\xb5\x6e\x4c\xb8\xce\xc1\x43\x3e\x9f\xcc\x8d\xca\xde\x2e\xd1\xdf\x62\x89\x7a\x89\xd5\xfd\x25\x3a\xb4\x2d\xda\xed\xcc\x4a\x66\x29\xab\xa2\xfa\x52\x3a\xcb\xd5\x42\x6f\xc9\x85\x6a\xa9\xbc\x5a\x71\x59\x5d\x47\xb5\xe2\x59\xf5\xdf\xdc\x24\x0a\x9f\x6f\x95\x86\xc5\x8a\xbc\xbc\xe7\xfe\x84\xd9\x1d\xcd\x18\x72\xc6\xc5\x57\xa1\x47\x38\x16\x32\x12\x2f\xfd\x5a\xbf\x11\x6e\x45\x72\xb3\xc8\xbe\x23\xbe\x99\x87\x85\x24\x9a\x24\xcf\xe2\x25\xca\x57\x9a\xb0\xeb\x1b\x18\x75\xaf\x09\x46\x99\x26\x46\x72\x71\x88\x51\x83\xc2\x84\xf8\xd3\xdf\x95\x1b\x18\x55\xc6\x18\x55\xf3\x03\x3f\x39\x48\xb0\x20\x5c\x1d\x96\xe9\x2b\x0e\x5d\xa9\xf3\x08\xce\xb6\x61\x38\xc8\x68\x4d\x2e\xd4\x5e\x6e\xa9\xf7\x66\x23\xac\x0d\x41\x8d\x72\x22\x0a\x69\x25\xd3\x68\x99\x06\xf3\x35\xf6\xb9\xc2\x04\xf1\x5e\x75\x0b\xc1\xc0\xfd\xeb\xc3\x55\x4d\xab\x6d\x5c\x6f\x4f\x3d\x2e\x9d\x2f\xde\xdf\x40\x67\x2f\x5d\x8d\xbd\x1c\x40\xd3\x5e\x93\x11\x25\x7e\x19\xa3\x6f\x59\x8c\x9e\x73\xb1\x2b\xc1\xab\x35\x9b\xae\x87\x28\x9c\x0a\x47\x6d\x15\xfe\x5b\x85\xff\x67\xc3\x9c\x1b\x82\xa3\x09\xe6\x55\x7c\x3c\x1c\x9d\xd3\x7a\x6d\x8b\xb6\xb4\x8d\xf1\x35\x65\x02\xc9\x5c\xe5\x31\x92\x4f\x2e\xf0\x4c\xed\x83\xa5\x62\x74\x09\xcb\xea\xb1\x6f\x6e\x59\x90\xcd\x59\x74\x9b\xb2\xbc\xa5\x28\x0b\x92\xd3\xac\x9e\x6e\x04\x8b\x1b\xe5\x8b\xe5\x60\x85\xcf\x70\x9a\xf9\x70\xce\xe2\x0d\xfc\xaa\xbb\x25\x8c\x2a\x2a\x46\x7d\xe2\xf5\xe1\x0c\xbe\x3a\x70\x53\xec\xdd\x03\x39\x6e\xcd\xa1\x6e\x5a\x27\xbb\x55\xd8\x7d\x16\x28\xd8\x10\x78\x53\x48\x14\xde\x2e\x2c\xda\x76\x42\x62\xc2\xd3\xcd\xf9\xe0\x36\x83\xa4\x48\x1f\x06\x68\x6f\x04\x6c\xee\x8f\xfb\x6d\x00\xe6\x06\x18\x3d\x67\x31\x97\xca\xa7\x98\x48\xd5\x87\xc5\x66\x45\x9d\x66\x52\xb7\x00\xb7\xe9\x60\xb0\x21\x00\xe7\x15\x6b\xf1\x09\x9c\xe5\x0c\x87\x5a\x6f\x18\x53\x91\xbb\xa9\x72\x03\x51\x3b\x96\x24\x17\xcb\xcb\x6f\x1f\xad\xed\xf2\x34\x5e\x5a\x47\xc5\x48\xe6\xc9\xb0\x89\x3a\x1b\x52\xfb\x23\x8c\x4e\x54\xef\xab\x71\x31\xb1\xe8\xdb\xba\x1c\xe8\x83\xcd\xa8\xf0\xec\x02\xe4\x2c\xb3\xd5\x5c\x79\x96\xca\x2f\xca\xc2\xe1\x55\x66\x45\x9b\xbf\x2a\x71\xee\x08\x63\x94\xa8\x1b\x53\xf8\x87\x1b\xdf\xf4\xa0\x95\xc7\x9e\xc5\x50\xd3\xcc\xad\x3d\x6e\x8b\x6d\xde\x10\xdb\x48\x31\xf2\x9e\x73\xd4\x0e\xb5\xb4\xa1\xcd\x72\x11\xf5\x39\x13\xc8\x89\x68\x46\x58\xea\x8f\xc6\x19\x3e\xe6\x20\xcf\xd9\x01\x3c\x99\x84\x4b\xb0\xbb\xca\xbe\xd9\x02\xcf\x3e\xab\x5e\x54\x96\x0b\x53\xbc\x38\xc4\xcb\x86\x96\x9f\x87\xa9\xb3\x97\x3b\xcf\x08\xb6\x76\xdd\xad\x8a\x5b\x98\xda\x08\x98\x22\x99\x38\x4c\xb5\xe8\x00\x40\x6a\x53\x34\x30\xaf\x65\x9b\x79\xd0\x1c\x0f\x9f\x33\xa1\x65\x37\x31\xba\x94\xfa\x18\xc9\x15\x6d\x36\x03\x6d\x9e\xfa\xba\x6d\x2c\x2f\x02\x8e\x08\xb1\xf5\xff\x4c\x1f\x53\xec\x66\xf8\x78\xaa\x78\x8d\x5c\x0e\xa3\xd2\x18\xa8\xa1\xe4\x3a\x64\x56\x2b\x8d\x6d\xdd\x96\xcf\x02\x30\x9b\x02\x9a\xa9\x28\x68\xfe\x9f\x63\xe9\x6a\x67\x63\x00\x93\x09\x24\x53\x9a\x91\x2b\xf1\xf9\xe8\xe5\x35\xbe\x5d\xde\xdb\xe5\xcd\x2b\xf8\x2b\xe1\xf2\xce\x77\xf4\xa1\x6e\x50\x87\xe5\xcb\x35\x94\x9b\xe5\x0f\x81\xca\xd5\x33\x54\xae\x16\x98\x40\x6a\x28\xc6\xe5\xf9\x72\xa5\xef\xdf\x32\xb3\x5c\x17\xf7\x9b\x4c\xa6\xa6\xb7\xf5\x17\xf1\x92\x92\xf7\xad\x1a\x7a\x3a\x2a\x53\x31\xfb\xf6\xfc\x9f\x94\xca\x62\x24\x69\x06\x46\x72\xa6\x3d\x49\xdc\x6e\x32\x40\xfd\x52\xe3\x75\x96\x9b\x6d\x97\x30\xaa\x4f\x0c\x3f\x9b\x66\xfe\xe6\xd6\xc0\x77\x19\xc2\xc2\x16\x2c\x37\x02\x2c\x93\xa9\x18\x58\x9a\x03\xcd\xe8\xd0\xb6\x66\x6c\x0c\xe5\x99\x66\x00\xc7\x79\x8c\x6a\x63\x8c\x6e\x9c\x73\x8c\x92\xf8\x61\xbe\x8a\xb4\x0a\xaf\x7a\x9c\x75\x8d\x12\x5c\x55\xc1\xdd\x01\xe0\xaf\xac\x89\x11\xe9\x24\xb2\x5b\xad\xc4\x67\x59\xc6\x1b\x02\x30\x71\x23\xdf\x91\xde\xb4\x68\xcf\xa6\x56\xcc\xd5\x68\x86\xc3\xf0\x7a\x7d\x8f\x96\x2e\x28\xff\x56\xdb\xd6\xa1\x68\xc3\x1d\x8a\xf0\xe9\x78\x8b\xc6\x36\x11\xb9\x6c\x08\x1a\x93\x71\xd4\x93\xfc\x58\xeb\x0d\x75\xa3\xab\xf3\xba\xfb\x11\xdd\x6a\x41\xac\x7c\xb0\x6e\x95\x09\xa4\xee\x54\xe0\x39\xce\xaf\x4b\xb0\x23\x2d\x57\xee\x7c\x98\xb1\xd6\x2a\xdb\x85\xbe\x39\xcb\x6f\x43\x16\x7a\x9c\x5e\x9f\xd1\x9e\x6e\xe8\x46\xdb\xa2\xad\xd0\x53\x20\x90\x3d\x3d\x91\x13\xf1\xf0\x50\x9f\x6e\xfb\x42\xa7\x1f\x4c\x31\xed\xb9\x23\x4b\x53\x11\x7b\xab\x48\x8c\x49\xe9\x0d\xbc\x01\xe4\x0c\x46\x20\x19\x12\x90\x0c\x89\x04\x90\x30\x68\x36\xd7\x21\x07\x56\x7e\x41\x18\x49\x1f\x8f\x31\x53\x94\xa8\x28\x74\xa6\x6b\x8f\xec\xcc\x43\x87\xb0\x30\x22\x8a\x89\x82\x9f\xfd\x48\x12\x95\x69\xad\x44\xb0\x48\x78\xdc\x86\x94\x98\xde\x92\x64\x9d\x1b\x8f\xd5\xe1\x8f\xa6\x5d\x9b\xb0\xb3\x8c\x31\x46\xd2\x71\x54\x5b\xd0\xa2\x18\x91\x47\xa5\xbf\x4e\x45\x41\xa1\x89\x91\x2c\x49\xf8\x45\xfd\xc0\xe5\x26\x2f\x8d\xdf\x1c\x7d\xca\x4a\x0c\x7d\xea\x96\xf9\x38\x23\xda\x4c\x17\xcb\x6f\x18\x6d\x06\x80\x05\x0f\xf5\x70\x9c\xc1\xdb\x40\xb3\x97\xf1\x56\x4c\xb3\x5a\xd2\x87\x4d\xd3\x88\xd5\x67\x47\xf5\x62\x39\x22\x93\x66\xc5\x53\x34\x4b\x2e\x5d\x61\x8a\x5e\x57\xc9\xfa\xa5\x1e\x1e\xed\x5c\x0f\x1b\x29\xf5\x34\xbc\x2d\x65\xfd\x8b\x95\xb2\x1e\x3c\x8e\x16\x0e\xdb\xd6\xb3\xfe\x5c\xa4\x68\x43\x88\x9e\x14\x33\xc5\x96\x9c\x67\xad\xdf\x34\x1d\xab\xcd\xb1\x6a\xc4\xd3\x31\x40\xaf\xee\x5f\x4c\x30\xc5\x6c\x80\x58\x67\xfb\x40\xae\xa2\x65\x4b\x24\x13\xc9\xc4\x1a\x90\xe1\x8a\x88\xb3\x70\x84\xe1\xbd\xec\x64\x1f\x76\x35\xdf\x86\x73\x3d\x80\xaf\x25\x79\xdf\xcd\xaa\x63\x94\xe7\xdf\xf4\x02\xa3\xab\x0c\x46\xa4\x78\x8e\xd1\x35\x30\x7e\x0e\xf4\xc1\x7d\xdf\x4d\x43\xe7\x0e\xca\x20\xed\x64\xea\xbe\x4d\xc8\xa5\xe9\xe1\xd9\x56\x2c\x1b\x15\x3f\x16\xb6\x52\x77\xef\xe7\x05\xf9\x98\xc5\x28\x89\x4b\x53\x72\x57\xa8\x30\xdc\x7a\x41\x6e\x71\xd1\x3a\x71\x51\x22\x26\x95\x96\x69\xcb\xd2\x5b\x6c\x0e\x67\xb7\x8c\xb5\x41\xfa\x00\x6b\xc1\x0b\x96\x84\x44\x0d\xe0\x3d\x93\xf3\x29\x31\xb0\xf4\x4d\x1e\x53\x9a\x1e\x60\x24\x1f\x37\x66\xa0\x84\x90\xe5\xf2\x11\x86\x7e\x62\x60\x74\xdc\xf2\x2e\xc2\x75\x1f\x12\xc6\x48\x1a\x4a\x5e\x7a\xfa\x04\x2d\x61\x54\xe6\xa9\x08\xc6\xfe\x15\x43\x74\x33\xa3\x95\xec\xf8\xa9\xe2\x1a\xc7\x8d\x58\x6a\x3c\x1a\xa4\x66\x9f\x4c\x9c\x97\xdf\x02\xfd\x16\xe8\x7f\x1a\xe8\x93\x31\xa5\x65\x99\xf6\x6c\xba\xa1\x06\xf9\x65\x8d\xf6\x96\xef\x22\x19\x4a\xee\x0a\x00\x8c\x69\x60\x54\x07\x98\xe4\x79\xff\x53\x3e\xf8\x96\xe5\x1c\x46\x89\xb2\x14\x23\xbc\x31\x13\x1b\x49\x72\xe5\x95\xe6\x9b\xbe\xb8\x2e\x0b\x5a\xdc\x37\x05\x3e\xec\x51\xad\xee\x39\x4a\xe7\xa3\xa5\x9e\x78\xa3\x58\x9e\x3c\x12\x98\xf4\x82\x72\x50\x6a\xc0\x3f\xf4\xb2\x18\x35\x78\x88\xc7\x03\x5e\xaa\x82\x44\xd8\xd2\xe1\x75\x33\x41\xb9\x88\x2d\xf0\x6f\x30\x48\x6e\x08\xf0\x2b\x52\x8c\xe2\xeb\xc6\xb0\xcb\xca\x8b\x14\xd1\x9e\xbd\xe2\x7c\x9e\x2a\x3a\xaa\x8e\x96\x67\xe8\xa3\x97\x55\x2c\xa7\xb8\x66\x99\x9c\x23\xed\xda\x38\x47\x0f\x95\x06\x46\x72\xfb\x72\x92\x37\xce\xf6\x30\x22\xf6\xd0\x58\x93\x6a\xd9\xd3\xa2\xac\x92\x09\x6d\x03\xd7\xf8\x84\x23\x7e\xd9\x34\xa8\x6a\xb2\x8b\xf9\x4a\x3b\x21\x23\xf6\x7e\x56\x6b\xe7\x6e\x71\x17\xc9\x8f\xda\x98\x20\x19\xaa\x09\x2f\xa5\x56\x9a\xb0\x3b\xce\x06\x7e\x21\xfc\x03\xc2\x2c\x9b\xa6\x9f\x4f\x52\xc5\xe8\xb2\xbc\x20\xb4\x2e\x48\x41\xb9\x5a\x64\x1d\x7e\xf7\xc8\xba\x3b\x8c\xa4\xab\x1b\x9f\x3a\xf0\x34\xc4\xe3\xe9\x18\x85\x3b\x0a\xc3\x1f\x7c\xf1\x52\xeb\x1a\x3e\x6f\xcc\x19\xcc\xad\x7c\xb9\xa5\x36\x6f\x66\xe0\x49\x47\x1d\x41\xca\xe6\x50\x35\x9f\x38\xb9\xe1\xff\xab\x35\x54\x2e\x54\x5d\x52\x03\xb4\x67\x1f\x27\x62\xe6\x72\x26\x48\x8e\xd8\x41\x82\xf4\x28\xde\x23\x41\xe6\xbf\x8a\xfb\xeb\x91\x9e\x44\xc4\x84\xee\xfa\x6a\x13\x17\xf7\x24\x95\x44\x6a\x26\x6e\x48\xcf\x3e\x3c\xbd\x65\x78\x5e\xdc\x36\x7f\x02\x69\x30\xaa\x8b\x75\x44\x9a\xf0\x5e\xa4\x81\xd1\x11\x50\x88\xe3\x26\x46\x2a\x7f\x1e\xbd\x8b\x91\x5c\xc8\x62\xd4\x02\xb8\x4b\x64\x31\x52\x09\x46\xd2\x03\xc1\x48\x2f\x93\x35\x98\x99\x16\x40\x4c\xc5\xd5\xd9\x5b\x8d\xcf\x0b\x34\xdc\xf0\x44\x92\xd1\x74\x3e\x17\xd4\xd2\x87\x71\x12\x16\x70\x2a\x75\x9e\xfb\xe4\xed\x48\x18\x30\x32\x09\x29\xf1\xa1\x9a\x0b\x97\x82\xa5\x5d\x0a\x96\xfe\xad\x28\xd8\x49\x17\x84\x33\x79\x92\x6c\xdd\x3c\x63\xd4\xc9\x6d\x29\xd7\x96\x72\xbd\x0b\xe5\x22\x24\x8a\x7e\xae\xf4\x36\x65\x57\xe5\x1a\x2a\x55\x17\xfa\xec\x90\xac\x38\x42\x82\xe4\xfe\xce\xf3\xdc\xe1\xc5\x45\x5c\x22\x23\x27\x27\xb6\x94\xb4\xde\x8d\x2b\x44\xc7\xf0\x7c\xee\xab\x02\x32\xe9\x9a\x18\xb5\xeb\x7d\x8c\x46\x85\x06\x9c\x91\x9a\x20\x7b\xdd\x15\xa7\x18\x47\xf8\xe1\x9a\x90\x61\x69\xb4\xb1\xce\x5f\xe1\xa5\xe6\xad\x04\xd9\x34\xb7\xe0\xb3\x6e\x1d\x63\xcc\xb0\x70\x65\xf6\x37\x27\x11\xdf\xc7\xa9\x18\xcb\xf1\x0c\x27\xeb\x56\x31\xce\x3e\xf5\xd2\xa8\xe0\x48\x48\x52\xb7\x44\x73\xd3\x61\x71\x43\xa0\x5e\x8e\xe9\x9d\xaa\xb4\x4f\x2d\x3a\xc3\xa1\xaf\x2b\x76\x97\x71\xe8\x5b\xc6\xbd\x99\x48\xef\xea\xcf\x27\x8d\x88\x0f\xaa\x9f\x66\x85\x4a\xc3\x81\xa7\x15\x94\xe2\xb3\x63\x51\x7b\xa6\xbf\xa5\x22\xea\x8b\xa7\x67\x35\x79\x6a\x1d\x13\x14\x99\x96\x19\x78\xe4\x33\x3b\x5c\xa2\x44\x9a\x44\x8a\x84\x56\xf5\xfe\x9d\x66\x99\x03\xb3\xc7\xaa\x0b\xb5\xf4\xae\xba\xa4\x3d\x5f\x4b\xaf\x2c\xd4\xd2\xbb\x4a\xf8\x65\x35\xf6\x29\xb7\x64\x83\xd4\x46\xda\xb5\xd9\x46\x56\xd1\xc0\x48\x7a\x18\x4e\x12\x3b\xf9\x86\x4b\xa2\x6b\x53\x7d\x5c\x62\x8c\x14\xad\x84\x67\xba\x7f\xb7\x1a\x5e\xf5\xf3\x89\x08\x71\x53\xf6\x55\xa3\x1b\x31\xe7\xf3\xfb\x03\xb3\x61\xd4\x31\x93\xe5\x28\x2b\x55\x35\xef\x74\xca\x6b\x24\x47\x22\x4c\xfc\x62\xc9\xb1\xfc\xaf\xd2\x8a\x49\xf1\xde\x70\x63\x02\x49\xa6\xa7\xfd\x9a\x42\xd6\xbc\x7f\x76\xec\xcf\x3d\xaf\xe8\x40\x07\x41\x4b\x82\xd6\xc8\xcf\x4c\xf7\xe6\x6c\xc6\x92\xc9\x04\xb6\x79\xa6\x36\x98\xcd\x98\x20\x64\xb6\xa9\x76\x3b\x66\xaf\xbf\x31\x12\x46\x90\x47\x20\x07\x1c\x43\x41\xdb\xf2\xd1\x9f\x65\xd9\x6d\xca\x02\x8f\x95\x1b\xa9\xd1\x5e\x4f\x37\x0c\x56\x2b\xc7\x90\x7e\x18\x51\xe8\xc7\xd3\xa2\xa9\xb0\xc2\x30\x5a\x8c\x60\xd9\x8d\x7d\x98\xb2\x74\x4c\xaa\xa0\xde\x76\x63\x82\x94\x34\x2b\x05\x64\x6b\x05\xef\x05\x6b\x14\x23\xc5\x6a\xf4\xd0\x59\xb5\x54\x40\xd2\xb7\x06\x46\xd2\xe9\x54\xb2\x19\x92\x3e\xc5\x88\x0c\x6b\x8d\x8d\x55\x34\xcd\x5c\x25\x24\x3a\xeb\x09\xae\x93\xdf\x02\xc8\xdb\x03\x88\x42\xa2\x3c\x51\x4d\xb7\xa8\xa1\xc5\xfc\xe7\x99\x40\xee\x41\xca\xfc\x80\x82\x7a\xf3\x37\x60\xd0\x7b\x39\x78\x2e\xa2\x0c\x54\xd8\x27\x4a\x79\xf7\x4d\xdd\x04\x17\x79\xe0\x4e\xb0\x81\xbd\x4c\x83\x9c\x05\xe4\xc1\x34\xbc\xf5\x50\xf1\x38\xda\x87\x01\x46\x8d\xe6\x64\xc3\xed\xd4\xcb\x45\xbb\x47\xdc\xc4\x92\xc6\x1b\x1b\x1a\xb7\x34\x66\xd3\xef\xb4\x18\x84\x62\x8e\x60\xd7\xbd\x11\x35\xcc\xc7\x61\x77\x52\x1f\x80\x78\x91\x63\xb9\x25\x66\xa3\x3a\x01\x1f\xa8\x66\xa8\x6d\x56\xa8\x25\xf7\xbe\xaa\x1b\xf8\xf3\x57\xb0\x8c\x7b\xb5\xff\x62\xd9\xd2\xaf\xc7\x9d\xb6\x69\x99\x91\xb4\x03\x21\x6f\x10\xe4\xdb\x98\xe0\x0b\xe2\x85\x42\x66\xe8\xd6\xf0\x9a\x7d\xb4\x88\xfa\x50\x9a\x9d\x78\xa0\xdf\xc3\x88\xf0\xba\x7e\x96\x5c\x5f\xa7\xf6\x80\x54\xee\x60\x65\x3c\x2d\x14\x05\xb7\x11\xe4\x9b\x8b\xc5\x48\x8c\x11\xb8\xd1\x35\xc3\xd8\x6c\x67\xf6\x17\xb3\x71\xc8\x67\x65\x2f\x7a\xb6\x94\xc5\x2f\xe4\xe5\x50\x30\x46\x12\xff\x34\x34\xee\x53\xfe\xff\xb1\xf7\x2f\xdc\x6d\xe3\xc8\x1e\x20\xfe\x55\x14\xfd\xef\xdf\x2d\xad\x65\x35\xa9\xb7\xec\x56\x67\x1d\xdb\x79\xda\xb1\x3b\xb6\x93\xee\x4e\x67\xbd\x10\x09\x4a\x88\x29\x40\x06\x49\xdb\x4a\xe4\xef\xbe\x07\x85\x37\x29\x27\x99\xb9\x73\xe7\xce\x9e\xed\xd3\x33\xb1\xf0\x43\xe1\x5d\x28\x14\x0a\x05\xd0\xba\x5b\xcc\x5e\x22\x73\x9b\xe4\x5b\xf7\x70\xff\xde\x7e\xfe\x07\xb0\xfa\x7f\xca\xa4\x1a\xb9\x6b\xcb\x7b\x92\x52\x52\x64\xeb\x0f\x27\x17\xb5\x37\x4a\xc5\xf6\xec\xd0\xce\x16\x94\xd5\x76\xc2\x2f\xce\x35\x55\x63\x89\x76\x9e\x2d\xe9\xf4\xc0\xcc\xdc\x1b\x94\xfe\x1b\x76\xcb\xff\xf5\x3b\xfd\x0a\xf6\xcf\xfd\xb7\xde\xe9\x8c\xbb\x31\xab\x0d\x5e\x1d\x9f\xb4\x59\x2d\x3c\x65\xa2\x96\x5f\xbe\x04\xb5\x93\x24\x0e\x6a\x9d\xf1\x87\xa0\xd6\x25\x15\x03\xf6\xf1\xfb\xa0\x16\xe6\xb3\xff\x11\x03\xf6\xff\xc8\x1e\xf4\x59\x65\xe8\x47\x84\xfd\x3d\x37\xfe\x85\x73\xc3\xbf\x31\xf9\x9e\xa5\x33\x06\xef\x3d\x55\x8e\xd1\x3a\xef\xdb\x47\xff\xe2\x63\xb4\xf0\xd5\x8d\xc8\x74\x99\x1d\x8b\x3f\x7f\x1f\xa5\x7d\x4f\x51\x1e\xbf\xae\x7c\x24\xfb\x03\xe2\x19\xba\x03\x59\x56\x79\xa1\x4b\xc9\x2f\xcf\x84\xa6\x2d\x07\xdd\x5e\xf7\x7f\xdd\x7c\xf0\x4d\xc3\x42\x94\xc7\xac\x16\x1e\xff\xce\x1e\xd7\x2c\xc0\x57\x05\x7e\x0d\xbe\xac\x82\xda\xcb\x0f\x67\x41\xad\xff\xea\xa4\xa2\x5e\x80\x13\xf3\xe2\x58\x3f\xf7\xd5\x37\x4e\x97\x74\x5f\xe7\xb4\xc1\x29\x94\x1c\xfe\xae\x7c\x4a\x2c\x67\xd8\xdb\x6e\x06\xf2\x1e\xb7\xf4\x7f\x68\xa7\x94\x22\xfb\xf7\x5e\x73\x7f\xec\xb6\xcf\xdf\x0a\xcd\xff\x8b\x4a\xfa\xb6\x42\xe3\x7f\xfd\x00\x2d\x19\x67\x5f\xe6\x2b\xbc\xde\x0e\x3a\x9d\xe0\x9b\x8f\xb0\x5d\xff\x33\x4f\xb0\xfd\xf0\xa5\xb7\xff\xce\x1b\x6c\xd7\x35\x7c\xc9\xae\x6b\x5c\x08\xfb\xce\x3b\xd7\x5b\x73\xb4\x08\x6a\xe1\xed\x18\xfd\xbb\xae\x1c\xbc\x09\xbe\x7b\x9c\xfa\xf7\x1e\xfa\x3f\x77\x76\x0c\xe5\x2b\xed\x2f\xcf\x2f\xd6\xe2\xff\x28\x58\x07\xeb\x7a\xab\xfe\x8a\xc6\x04\xd1\x9f\x0f\xe6\x68\xc6\x32\xa5\xdf\xf4\x6b\xdb\xc1\x60\xbd\xd3\x7b\x2b\x74\x9b\x7e\x50\xdb\x19\xc0\x3c\x58\xef\x74\xee\x59\x26\xc0\xee\xfe\x8b\xe3\xb7\xed\xa3\x75\x37\xc0\x1d\x27\x0f\x16\xb1\x6c\xbd\x1d\x0c\xba\xc1\x7a\x67\x50\xac\x83\xf5\xba\x3f\x1e\xd8\xf8\x37\x98\xcf\x0a\x9c\x62\xba\xde\x09\x02\x50\x9f\xb4\xca\xb4\xde\x39\x79\x01\xdf\x06\x0c\x2c\xf5\x09\x9a\x63\x55\x9f\xde\x7a\xa7\xfb\xbc\x7d\xa2\xbc\x5b\xd6\x3b\x9d\xd5\xa9\x08\xaf\x87\x63\xb8\x77\x64\x12\xa4\x31\xb9\xc5\x19\xdc\x3c\x02\xe5\xac\x77\x6e\xf2\x67\xe9\xec\x7c\xdd\xed\x43\x17\x18\xfa\x82\x93\x5c\xec\x79\x54\x29\xca\x31\xea\xd4\xd5\xe5\xe4\xb2\x7b\xcf\xf8\x69\xad\xdb\x2b\xe8\x69\x2d\xec\x09\x4e\xef\x5c\xf3\x00\xcc\xee\xeb\xd0\xcb\xf3\x1d\x2e\x28\x51\x4f\xa7\xe9\x7a\xff\x66\xeb\xbd\x38\x3c\x7c\xde\xfe\x6d\x3d\x92\xda\xe5\x19\x8a\x48\x42\xa2\x9f\xdf\xdc\xa1\xcf\x28\xc5\x84\xae\xb7\xc3\xb0\xb6\x1d\x8a\xbe\x19\xd7\x76\xc2\x4e\x6d\x5b\x74\xfa\x34\xa8\xed\xa0\xa0\xb6\x33\x0e\x6a\x51\x50\xdb\x89\xa0\x5e\x41\xb7\xb7\xde\x09\xaf\x53\x1a\xd4\xd0\xf5\x32\xa8\x0d\xe0\x29\x9d\x0e\x5f\x05\xb5\x0f\x88\x06\xeb\xb0\x07\x5d\x73\x72\x74\xb1\x3e\x11\xa2\xee\x3f\xd2\x4e\xf2\xaf\xf8\x82\x29\x78\xda\xce\x4e\x4e\xfe\xbe\x18\xf2\xb7\xb4\xfc\xd7\x75\x86\x98\x3a\xe7\x17\x6b\xf1\xff\xa1\x12\x94\x27\xe7\x17\xc3\x93\x43\xc0\x6a\x27\x87\x17\xb5\x93\x0f\x17\xb5\x93\x33\x11\x5f\x1b\xa8\xff\xe9\x5b\x1f\xff\xeb\x13\xab\x32\xcd\x06\x21\x37\xfe\x4d\xda\xd3\xe9\x7c\xf6\x36\xa8\x8d\xee\x3b\x41\x8d\xdc\x07\xb5\xdf\xee\x7e\xd0\x53\xca\xbe\x56\xb3\x21\x36\x0b\x83\x5a\xf8\xfe\x8b\xfc\x82\x59\xf8\x6c\xd3\xeb\x36\x8f\xa4\xfc\x4e\x59\x3f\x9a\xb6\x27\xc4\x60\x3a\xd5\xbf\xfc\x16\x3b\xbf\x4a\x74\xff\x9d\x14\xff\x13\xa5\xbd\x13\x02\xf1\xcb\x34\xa8\x9d\x2e\xcb\x3f\xbe\x11\xf5\x8d\x1f\xff\x50\xaa\xff\xd4\x22\x9c\x35\xf3\x60\x8e\xf2\x39\x5a\xac\xb7\xc3\x4e\xd8\x17\xeb\x64\x4f\xfc\xdb\xed\xf5\xd7\x3b\x51\x52\xdb\x89\x5e\xd7\x76\xe2\xd7\xff\xfb\x0e\x01\xeb\x9d\x0f\x37\xfb\x49\x2d\x44\x31\x4e\xe0\x58\x12\xb6\xbf\xef\x2a\xdf\x7f\xf8\x91\x1f\xff\x8a\x54\x20\xee\xe0\xcd\x4e\x79\x1b\x65\xc3\xaf\xd2\x77\x2c\x36\xfd\xfa\xc7\xd3\xfe\x77\x4a\x23\x2c\xa8\x7c\xd1\xe2\xdb\xbf\x4a\x8b\xfe\xbf\x23\x2d\x61\xff\xce\xd2\xbe\x95\x76\x3d\x08\xdc\x89\xb2\xbf\x24\xf2\x72\xc6\x4e\x18\x8a\xed\x6d\x18\xc2\xf6\x76\x3b\xec\x89\xf9\xb2\x9e\xde\xb4\x2f\x6b\xd3\xa2\x36\x0d\x6a\x42\xc7\xc4\x41\x6d\x27\xd6\x46\xcc\x7f\xfa\x51\x8e\xc3\x93\xfb\x76\xaf\x16\xae\x3e\x04\xdd\x76\xaf\xd6\xe1\xef\xa6\x45\x2d\x4c\x12\x55\xd3\x83\x57\x41\x6d\xff\xb7\xff\xcf\x0f\x53\x77\x08\x1a\xba\x1e\xa7\x67\xac\x98\x21\x42\x6f\x49\x9a\xe2\xb5\xde\x03\x6c\x87\xe1\x5a\xeb\xfe\x3b\x53\xd0\x2f\x3a\xeb\x9d\x70\xf0\x61\x15\xd4\x86\x07\x6f\x83\x5a\xe7\xe4\xb7\x25\x9c\xe4\xf4\x3c\xd9\x58\x14\xd7\x3a\x0f\x9d\x7e\xad\x55\x01\x7c\xb7\x0a\x6a\x08\x3e\x1f\xf3\xfe\x77\xf1\x2b\x0e\xd6\xbd\xb1\x57\x97\xa3\x04\xe5\x6a\xef\x05\x1b\x12\xb1\x09\x89\xdb\xb3\x1a\x6c\x45\xa2\xc7\xfc\xac\xd6\x3b\x9d\x74\x4c\x05\x5d\xe7\xfc\x4b\x24\xfe\xca\x25\x99\x89\xc5\x39\x30\x4e\xd6\x70\x48\x99\x3c\xfb\x07\x14\x00\xe3\xa0\x0d\x37\xf3\xde\xc6\x41\x6d\x9f\x06\xeb\xc1\xc0\xaf\x33\x8d\x31\x9f\x16\x7c\xb5\x16\x1b\xa7\x1d\xa8\x77\x77\x1d\x05\x82\xb3\x15\x4b\xaf\xe9\xab\x28\xa8\x3d\x1b\xfe\x1e\xac\x43\x27\xe5\x73\x74\x8d\x58\xc2\xd6\x3a\x8d\x49\xb0\x0e\x5f\x24\x34\x58\xf7\x46\x6e\x39\xcf\xc9\x67\xa2\xba\xa6\x03\xe4\x3b\xd3\x8b\xf6\x2b\xd1\x2d\xba\x98\xff\xae\x8d\x77\x7a\xf9\x45\xe4\xd8\x5d\x8c\xde\x8a\xbf\xe6\x22\xa0\x58\x3e\xe8\xeb\x48\x99\x5f\x59\xe0\x7c\xff\x07\xbe\x44\x66\x3e\x49\xf6\x5b\x10\xd4\xee\x45\x57\x9d\xbf\x0d\x6a\x85\x60\xbf\xf3\x13\xf5\xe3\xfd\x7e\x50\xcb\x82\x4d\x3f\x3a\x01\x0b\x6a\xcb\x48\xfd\xa8\x22\xdf\xf8\xf1\x8d\x7c\xbe\x93\xea\x9f\x2a\x62\x3d\xf2\xd9\xfd\x05\x4a\xd1\xd2\x58\x2f\x76\x82\x7e\x6d\x27\x18\xac\xfb\x1f\xda\xac\xd6\x57\x5a\x39\xac\xc4\xe1\xea\xfd\x79\xd8\xde\xaf\x75\xe2\x8b\x2f\xe2\xef\x4c\x70\x12\xff\x12\xac\x3b\x7d\x8f\x93\x5e\xa0\xc5\x94\x60\xae\x72\x1b\xaf\x47\xbf\xb7\x4f\x6a\x63\xb5\x83\xff\xcc\x92\xa0\x1d\xad\xc3\x4e\xdf\x4d\x51\xa0\x18\xa5\x11\xa2\x28\xd5\xb3\x66\xbd\x83\x0e\xdb\x27\x6a\xd2\x42\xba\xd5\x61\xfb\x44\x3b\x32\x38\x09\x17\xeb\x17\xf0\xfa\xd6\xb8\xf6\xe2\xf0\xa2\x76\x30\x17\xfb\x74\x3b\xe3\xc5\xce\x1f\x66\x7d\xe9\xbf\xee\x7a\x27\x1c\x7d\x7e\x13\xd4\x06\xcb\x67\x41\x6d\x7f\xfe\x2c\xa8\x75\x7f\x3b\x0e\x6a\xb3\xce\x32\xa8\x75\x97\xe3\xb0\xf6\xe1\xf4\x77\xe9\x03\xf5\x25\xd6\x9f\x1a\x5e\xca\x1f\xfd\xfb\x58\xba\x47\xf5\xb3\xb7\x41\xed\xcb\x34\x14\x4a\xc9\xef\x70\x05\xf5\xf2\x78\x0a\x66\x54\xb7\x8e\x2f\x19\x65\x69\x91\x16\xeb\x97\xe7\x17\xb5\x97\x87\x17\xb5\x97\x1f\x2e\x6a\x2f\xcf\x2e\x6a\x60\x45\x2a\x6a\x63\xfd\x3f\x55\xd3\x6e\xd0\x5b\xef\x84\xf9\xfc\xb8\xa8\x8d\xee\x83\x5a\x8a\x93\xa0\x36\xba\xfb\x50\xd4\xc8\x7e\x51\xeb\x0d\x96\x20\xf9\x3c\xf3\x07\xe1\x24\x27\x0b\x94\x93\xf5\x4e\x18\xf4\x02\xbd\x3e\xad\xd1\x91\x5a\x93\xd4\xe4\x45\x47\x62\xf2\x5e\xaf\xfb\x21\x58\x9d\x4c\x7a\x96\x71\x84\xa5\xed\x04\x64\x66\x60\xed\x26\x63\x65\x3b\x89\x64\xdd\x42\xb8\xb5\xd2\xc1\x77\x5f\x84\xe0\x3b\x08\x6a\x2f\x9f\xad\x94\x01\x45\xc8\xc1\xda\x87\xd3\x37\x41\x2d\x9c\xc6\x5f\x40\xbc\xb8\x85\x9c\xa0\xcf\x05\x67\x3f\x5a\xc8\x23\x65\x0c\xde\x09\xb1\xd7\x29\x16\xc1\xba\x33\xf2\x78\xee\x04\xf1\x9b\x02\x67\x48\xf3\xf0\xb8\x1b\xac\xc7\xa4\x36\x2e\x34\xf7\xe0\x17\xeb\x91\x5f\xa3\x33\x34\x63\x57\xe2\x1f\x48\x72\x7e\x7e\xb1\x9e\x2e\xda\x27\x35\xcd\x70\xf4\xf0\xe4\x59\x3b\x12\x7d\xed\x26\x7a\x8b\x0a\x5e\x68\x1e\xed\xea\x45\x46\xb4\x63\xd8\x3e\xaa\xed\x4c\x0b\xd9\x1a\x25\xe3\x05\x97\xfd\x1e\x53\x11\xf5\xdb\x01\x7d\xd6\x3e\xaa\x0d\x17\x37\x45\x2d\x4c\xe9\xb4\x58\x87\x81\xd7\x82\xb7\xa4\xc0\x42\x84\x82\xf9\x5c\x69\x1a\xeb\xe9\xb5\xd4\x2d\xa4\xf5\xf0\x4d\x72\x72\x54\x0b\x87\xab\x00\xad\xc3\x8e\x5f\x2d\xc6\x13\x96\x8a\x35\x2b\x04\xa9\x0a\x55\x0b\x3b\xf0\xaf\x5e\x80\x22\x59\xbd\xa8\xf0\x96\xa1\x1f\x7d\x67\xe5\xcd\x6c\x1a\xd5\x3e\x04\xe1\x0b\x75\x08\x25\xfe\x1d\xbf\x8e\x8a\x7f\x8f\x6d\xe7\x5f\x6b\x4e\x12\x02\xab\xe7\xf5\x5e\xb1\xc0\xa8\xb4\x5e\xf7\xa5\xf4\xf1\xd6\x6b\xb9\x42\x8b\x98\xce\xd1\xcd\x89\xf8\x7b\x2f\x24\xc4\xd9\xb3\xa0\xb6\xa2\x41\xed\x25\x3e\x83\x15\x64\x3d\xf6\x99\xf3\x8c\xe4\x11\x22\x9c\xae\x77\x82\x91\x18\xd8\x60\xb4\x1e\x15\xb5\x91\x5c\x22\x47\xef\xaf\x8b\x75\x7f\xe0\x92\xb3\x39\x5d\x62\xe2\xce\x15\x77\x9e\xa8\x39\xf2\x8d\x69\xb8\xee\xf6\xbc\xf2\xdf\x21\xce\x72\x46\x67\x48\xc8\x07\xa8\xc0\xb8\x2b\x5f\x44\x47\x56\xf0\x3c\xbe\x05\x4b\x57\x1f\x8a\xda\xab\x63\xd8\x06\x15\xb5\x53\x5a\x94\x7e\x80\x76\xba\x39\xea\x1b\x3f\xbe\x9d\x6a\x1d\x76\xbd\x26\x5c\xa0\x39\xc9\x89\xd2\xc3\x83\xf5\xf8\x43\x7b\x26\xab\x2d\x27\x77\xd8\x7e\x55\x56\xe2\x2e\x44\x83\x73\xb4\x2c\xc4\x16\xb7\x23\x26\x42\x17\x84\xe2\x4e\x74\x2d\x14\x0d\x2d\x16\xcd\xc8\x86\xe8\x59\x70\x5d\xeb\xd0\x7e\x7c\x2d\xdf\xa6\x02\xc5\x00\xd4\x80\xdf\x42\xf9\xe3\xcb\x87\xb7\x72\x01\x1d\xaa\x05\xef\xfc\x62\x74\x76\x78\xb1\x3e\x3b\xbf\xa8\x9d\x1d\x5e\xd4\xce\x3e\x5c\xd4\xce\xce\x2e\xd6\xa3\xa0\x36\x54\xff\xfb\x4f\xb6\x68\xdd\x3c\x66\xd1\x0a\x83\x1a\x59\xfd\x6d\xd1\xfa\xdb\xa2\xf5\x9f\x5f\x44\xbd\x55\xff\x70\x74\x61\xde\x62\x5f\xeb\x0f\x3d\xfc\xef\xcd\xac\xf9\xe1\xb3\xbf\x8f\x52\xfe\x3e\x4a\xf9\x17\x1e\xa5\x7c\x6a\xd5\x53\x42\xaf\xb3\xfa\xee\xc7\xfa\x7e\xc2\x49\x84\x7e\xde\x9f\x92\xf8\x33\xa2\x6b\x15\x7c\x86\x16\xe8\x9a\xd5\x5b\x8f\x46\xd3\xcf\x45\xfa\x68\xf4\x01\xa3\xe8\x9a\xaf\x1e\x8d\x3f\x44\xd7\x88\x3f\x1a\xfb\x9c\x63\x9c\xb3\x3b\xfa\x28\xc1\x31\x5b\xe0\x47\x23\xdf\xb2\x02\x5d\x47\x73\x96\xe7\x8f\x92\x9c\x16\x68\x86\x62\x56\xcc\x58\xf1\x28\xcd\x05\x59\x4c\x8b\xeb\x7c\x13\x41\x9e\x22\x9a\x93\xe8\xe7\xf3\xfc\xea\x25\x4e\x31\x45\x96\xe6\x00\x11\xce\xd6\x47\xb3\xd5\xd2\x29\xfd\x35\x9b\x23\x4a\x71\x36\x2d\xf8\x4c\x67\x7f\x82\x32\xcc\x8b\xef\xd0\x4c\xd1\x14\x51\xa7\xa5\xc7\xb0\xa5\xb6\x43\x30\x2b\xc8\x63\x91\x1c\x7d\xf9\x82\xc0\x72\xf5\x08\xc5\x21\x2b\x50\x8a\x1e\x89\x7c\x43\x68\x36\x47\xd9\x63\xd1\xc7\x64\xca\xf1\xb7\x32\x3f\x2e\x10\x8d\x1f\x4b\x7d\x82\x52\x34\x65\x8f\x44\xbe\x25\x68\x81\x57\x8f\x44\x9e\x31\x9e\xb3\x9d\xb7\xec\xd6\x49\x7d\x82\x96\x45\xce\x4c\xbb\xc5\xd0\xac\x38\x7e\x34\xbe\xf8\x5c\x2c\xa6\x05\x47\x8f\x11\xbc\x40\x53\xc6\x19\x7d\x34\x83\x97\x88\xa3\xc7\xb3\x7f\x43\x66\x28\x25\x8f\xc5\x1e\x17\xd3\x62\x31\x45\xd9\xfc\x1b\x14\x19\xba\x76\xea\xf6\x56\xb0\xd3\x94\xe8\xe8\xfd\x38\x26\xd9\xd5\xbe\x60\x8b\xc7\x69\xb2\x05\xe2\xdf\x8c\xc6\xdf\x88\x3e\x44\xfc\x0a\x67\x57\xe7\x28\x45\x68\xf1\x38\xd5\x67\x32\x65\x45\x4e\x1e\x25\x78\x83\x16\x4b\x8f\xbb\x4a\xf1\x27\x6c\x86\x62\x92\xcd\x8b\x2a\x85\xf2\xda\xd8\xa7\x39\xa2\x88\x22\x4e\xdc\xc1\x2e\x11\x1d\xb0\x05\xe3\x8f\x47\x9f\xa0\x15\xcb\x73\x67\xb0\x2e\x38\x59\xb2\x94\xac\x8f\xc9\x74\x05\x95\x5b\x60\xd5\xaf\xe8\x7a\x6d\x02\xf9\x75\x25\xee\xf2\xfc\xe7\xfd\x14\x17\x39\x41\xd4\x8d\xa2\xd1\x9c\x71\x34\xc3\x32\x1e\x65\x7e\x42\x3e\xc3\x34\x27\x54\x30\x1d\xa6\x2c\xbb\xda\x27\x1c\x67\xa6\x18\x17\xdc\x98\xea\x00\xe5\x68\x81\x78\x84\xd6\x1b\xe2\xd8\x82\xc5\xef\xc8\x2d\x8a\xd1\x2d\xd9\x5c\x68\x35\xb9\x41\x36\xd3\x33\x1e\xb3\xa9\x43\x2d\xc3\x3f\x44\xfb\x8e\x65\x88\x13\xb6\x91\xf6\x75\xf1\xb9\x58\x19\x4a\x08\x6d\xa4\x3b\xc1\x34\x66\x5f\x6c\x9e\x2a\xec\xd2\xe6\xe4\x9a\x5d\x0b\x01\x6c\xab\x88\xd2\xab\x97\x88\x4f\x59\xc1\x1d\xc2\x83\x39\x89\xd0\x8c\x89\x51\x39\xc0\x34\xe7\x28\x75\x23\x0b\x8e\x22\xc4\x9c\x4e\x2d\xbc\x56\x96\xe3\xdf\x70\x94\x62\x1a\x93\xcf\xd7\xdf\x20\x3a\x66\x77\x98\x5f\x9d\x71\x42\x23\x6f\x34\x0f\x31\xbd\xc5\xdc\x90\x9d\xcf\xc9\x92\xb3\xe8\xba\x4a\xf1\x16\xdd\xa2\xcf\xac\x8a\x5f\x9e\xff\x7c\xc2\x0a\x9a\x23\x42\xbd\xc8\x9c\x33\x92\x43\x2c\x89\xe6\x64\xe6\xb1\xe5\x51\xbc\x60\x34\x67\x74\x7d\x80\x28\x8a\xd1\xa6\x0c\x9e\x33\x9e\x5f\x7d\x40\x2b\x8a\x4d\xdd\xe4\x9c\x31\x7f\xc5\x3c\xc9\x7e\x28\xc5\x37\x28\x2f\xcf\x7f\x3e\x42\x59\xbe\xa3\x28\x1d\xa2\x97\x28\x25\x09\xba\xd7\x55\xd4\x4b\xaa\x47\x71\x8b\x28\x5a\x1f\xf8\xa3\xa3\x6b\xf9\x86\xb2\x7b\x3b\x44\x94\xdd\x5f\xbd\x7a\xfb\x18\xd9\xe5\xb9\x0e\xef\x9c\xe7\x88\x5f\x63\x87\xf0\x35\x5a\x20\x12\xa1\xb5\xfa\xeb\xc4\xbc\xc1\x34\x2f\xa2\xeb\xd5\xcf\xc7\xac\x20\x99\x3c\x03\xb2\xc3\xad\x21\x27\xc1\xb1\x98\xcd\x74\x86\x53\x9c\x89\x22\x95\xd1\xe0\xbb\x04\x3b\x6f\xf1\x9d\x43\x74\x82\x28\x2a\xb2\xb5\x58\xbf\x49\xfa\xf3\x07\x9c\xe5\x5e\xe4\x17\x24\x7a\x6a\x7d\x82\xef\x49\xc4\x7e\x7e\x86\x3e\xa3\x73\x8f\xf5\x65\xc4\xd5\x01\xc9\x57\x9a\xe8\x05\xa6\xd8\x9f\x02\x6f\xf1\xdd\xd5\x1f\x8c\x5f\xeb\xf1\xc1\xdc\xe5\x8d\xb7\x62\xfd\x9b\x23\x5d\x85\x43\xac\x00\x87\xe4\x0c\x51\xb4\x70\x05\xcb\x6a\xe1\x71\xe0\xd9\x9c\x61\x4a\xa0\xe7\xf7\x39\xf9\xc2\xbc\xa1\x17\x8b\xf8\x15\x4b\xae\xce\x97\x88\xd8\xb9\xbc\x2f\x94\x99\x34\xfd\x11\xc2\x9c\xcc\x8a\xef\xd3\x1d\xb2\x05\xa1\xfe\x90\x6e\x26\x7c\xc1\xb1\xe0\xc1\xef\xd3\x15\x28\xc6\x29\x2b\x96\xf8\xbb\xa4\x27\x88\x93\x19\xcb\xbf\x4f\xc7\x68\x9e\x61\xce\xd1\xf7\x49\xcf\xf3\xab\x67\x88\xe7\x73\x9c\xe2\xc5\xea\x47\xa8\xdf\x90\x3c\xcf\x7e\x84\xf0\xb8\x88\xc8\xf7\x5b\x7f\x9e\x5f\x5d\xcc\xd9\x02\xfd\x50\x96\xef\x85\x1c\xa4\xdf\x6f\xd4\x85\xd0\xe7\x7e\x60\xcc\xdf\x13\x3e\xf3\xe4\xd7\x3b\x3c\x23\x42\x38\x48\xe9\x71\x2e\x56\xde\x3c\x9a\xe3\x3b\x8f\x0b\xdf\x11\x76\xf5\x8c\x23\x1a\x59\x39\x0d\x0a\xe4\xd5\x7e\xc4\xf1\x66\x3a\xc5\xf3\x25\x82\x73\x21\x9b\xc4\x82\x72\x30\x27\x29\x16\x9b\x9b\x9c\x50\x4c\x73\x6f\x52\x9d\x23\x76\x75\x86\x8a\xd4\x64\x22\x66\x96\x1b\x9f\x5f\xbd\x66\x73\x9a\xe9\x4a\xbf\xc5\x77\x09\x2b\x68\x9c\x22\x1a\x3b\x64\x17\xe4\x73\x21\xe4\x9e\x11\xe6\x34\x2b\xb3\x67\x99\x44\x54\x0f\x5d\xbd\xca\xd0\x14\xa7\x1b\xc8\x1c\x59\xf1\x96\xf1\xdc\x6d\xd8\x85\x98\xd9\x39\xf3\xf8\x91\x63\xaf\x59\x9a\x44\xd5\xba\x2a\x2e\xde\x8b\x8e\x2b\xc4\x5a\xa5\x48\xaa\x82\xef\xc3\x9c\xe4\x78\xce\x78\x86\x35\xcd\x1f\xc5\x35\x73\x33\xf9\x40\x28\x25\x4b\x3c\xd3\xf1\xce\xb2\x9d\x11\xa1\xb4\xce\x67\x68\x8a\xf2\xb5\x0e\x5d\xcf\xd1\x14\xc5\x3a\x5a\xec\x84\xae\xd9\xb5\x8c\x3d\x9b\x53\xb6\xb8\x3a\xc3\x74\xbe\x31\xfa\x3d\x11\xfa\x86\xda\x55\x09\xe0\x70\x8e\xae\x91\x8c\x3b\x44\x91\x94\x17\x10\x28\xa6\x88\x48\xfc\xa4\xc8\x22\x39\x45\x45\xe8\x25\xbb\x3a\x98\x93\xab\x13\x42\xe7\x32\xfa\x1c\x91\x99\x6c\x8d\x8c\xa6\xb3\xab\x37\x8c\xce\xd6\xe2\xd7\x35\xa3\x33\x1d\xf3\x1a\xf3\x22\x43\x29\x5e\xc8\x64\x17\x38\xbd\xda\xbf\x25\xb7\xd5\xe8\x57\x19\x47\xd8\x34\xfe\x0d\xca\xe7\x0b\x44\xe3\x62\xad\x83\x10\x32\xd1\x2c\xbd\x46\xb9\x6a\xc1\x01\x4a\xa3\x22\xcf\x4d\x23\xde\x88\x3d\xde\xd5\x71\xb1\x58\x16\x5c\x55\x96\xd0\x19\x5a\x32\x8e\x37\x92\x54\x62\x4f\x50\x84\x54\xc1\xe2\x27\xb3\xf8\x35\xca\x32\xa4\x32\xbd\xfc\x5c\xd0\xd9\xd5\x99\xd8\xf3\xd9\xe6\xbe\x25\x11\xcb\x08\x5a\xab\xbb\x1f\x2a\xa8\x63\x7f\x43\xb9\x4e\xfd\x0c\xcd\xb9\x52\x4f\x44\xf0\x1d\xa2\x33\xc6\xa8\x8c\xfb\x43\x04\x6c\x14\x59\xa1\x58\xf5\xfa\x7e\x8c\x37\xe2\x6f\x8a\x3b\x44\xcc\x60\x9d\x63\x56\xa4\xeb\x77\xa7\x6f\x0c\x30\x47\x74\x36\xd7\x23\x7b\x30\x67\x74\x76\x43\x6c\xa5\xcb\xd1\x05\x9d\x5d\x3f\x1a\x2d\x34\x4f\x5b\x6f\x13\x77\xf6\xee\x40\x63\x17\x88\x2c\x31\x59\xbf\x3b\xb5\x08\x9e\x73\x44\xd7\xaf\x38\x32\x09\x2f\xe6\x64\xb1\x9c\xab\x5e\x16\x81\xa9\x19\xdc\x0b\x76\xbd\x62\xeb\xd7\x68\x69\xa9\x2f\x53\x84\xe8\x14\xd9\xee\xbb\x4c\x11\xbd\x7a\x86\x72\xc6\x0d\x09\x2f\x16\x37\x44\xb3\x8b\x98\x3b\x10\xa5\xcd\x16\xcf\x11\x67\x78\xed\x04\x31\x67\xd8\x25\x78\x87\x57\xd7\x9f\xd1\x2d\xb9\x5e\xbf\x8a\xb0\x96\x4f\xc6\xe8\xc1\x8a\x7c\x7e\xf5\x02\x33\x3e\x13\x83\x9b\x47\x3f\xbf\x38\xb9\xd8\xee\x08\x92\x22\x13\x93\x56\x8e\x4d\x8a\x48\x8c\xd7\x16\x82\x64\x1e\xd1\x33\x4e\xb2\x29\xa2\x2e\xd1\x6f\x05\xc6\x34\xd3\x25\x3a\x94\xec\x1a\xd3\xab\x97\x24\x4d\x1d\xe2\x3f\x84\xe0\xb9\x23\x54\x2a\x17\x06\x3e\x44\xfc\x4e\x2c\x1d\x06\x10\x42\xcf\x2f\xf9\x25\x9b\x22\x9e\x3b\x24\x17\x28\x5b\x20\x4a\xfc\x8c\x8e\x19\x8f\xaf\x5e\xb2\x3b\xb7\x82\xc7\x2f\x5f\x79\x34\x27\x38\x15\x7b\x0f\xaf\x11\xef\x49\x94\x33\x5e\xca\xec\x0c\xf3\x7c\xee\x10\x69\xc5\xce\xf6\xcf\x2a\xa6\x78\xe5\x50\xec\x1f\x5c\x7c\x9b\xe0\x00\xd1\xa9\xd0\x1d\xbe\x4d\xf5\xf6\xfc\x43\xbd\x55\x57\xc3\xb4\x13\xe8\x01\xdb\x84\x6d\x07\x9b\xd0\x0d\x20\xc7\x98\xde\x91\x68\xee\xc5\x94\x33\xad\x66\x08\xff\x96\x91\x12\x50\xca\xfa\xf2\xe2\x00\x8a\xbc\x3c\xb8\x28\x23\x94\xdc\x62\x9e\xc1\x1a\xe1\xe2\x7f\x16\x69\xe1\x40\x7e\xc2\xcb\x8b\x03\x37\xb4\x21\x0b\x9d\x5c\xca\xac\x67\x38\x9d\x71\x14\x63\x2d\xc3\x8e\x3f\x17\xd3\xf4\xb3\xdc\xc9\x3c\x42\x72\xc6\xe2\x19\xe3\x52\xef\x7c\x84\xe4\x1c\x71\xf4\x19\x83\x59\xe3\x31\x8a\x6b\xb6\xfc\x8c\x1f\x8f\xff\x13\xcd\x38\x9e\xda\xf8\x83\x39\xc9\x08\x45\xc5\xda\x79\x96\x2b\x5b\xb2\xd4\x52\x1c\x16\xd3\x94\xd0\xf5\x11\xe1\x4e\xb6\x2f\x71\x9a\x11\x7a\x4d\xd6\xe6\x83\x94\x9c\xe0\x39\x5a\x50\x4b\xf2\x2a\xcb\x11\x9d\x16\xa9\x14\x26\x3a\xb4\x21\xfe\xa2\xe0\xd7\x60\xb7\xd3\x5d\x45\xb2\x29\xa3\x6b\xa1\x70\x15\x33\xe4\xa4\x38\x66\x34\x66\x74\x6d\x5b\x96\x48\x3d\x69\x63\xf4\x8b\x02\x73\x9a\x79\xf9\x7a\xf1\xaf\xb2\x14\x0b\x75\xf1\x04\xd1\xc7\x48\x5e\x63\xbe\x29\x83\x17\xcf\x36\x40\x3b\x7e\xff\xa8\xaf\x26\x7d\xd8\x39\xbf\xb4\xe0\x69\x96\xb2\xf5\x3e\x8f\x84\x2c\x3c\x66\x74\xb6\xc2\x88\x4f\x57\x98\x96\x29\xb4\xbc\x7c\x8d\xe8\xd5\x09\xf2\x08\xce\x38\x9a\x15\x66\x30\x9f\x71\x94\x93\x2c\x45\xb7\xa8\xf4\x6c\xbf\x61\x17\x91\x01\x27\x94\x6d\x8e\x7f\x8f\x72\x12\xb9\xed\x57\x37\xad\xcf\x98\x12\xa4\x9a\x69\x0a\x4e\xa2\xb9\x29\xb5\xc8\x08\x9d\xb9\xb5\xf2\xe3\xdf\xa3\xb8\xf8\xe2\xde\x45\xe3\x24\xcb\x17\x28\xd3\x62\x61\x67\xe8\x3a\xb4\x16\xd1\xb5\x28\x6c\xbd\x4f\x73\x04\x5d\x83\x7e\x3e\x89\x4e\x0a\x1e\xb3\xef\x50\xc9\xd5\xe4\x8c\xc1\x4e\xba\x42\xf8\xf6\xcf\x0d\xee\xe5\x6f\xff\xdc\x39\x78\xb9\x7f\x51\x71\xae\x34\xa7\xf4\xbc\xb8\x7e\x34\xf2\x0f\xb4\x74\x1d\x14\x41\x9b\x55\x6a\xbd\x0c\xbc\xd2\xcb\x8f\xe7\x0f\xa6\x03\xe7\x88\xc8\xa5\xb8\xe2\x89\xa5\x01\xd0\xf1\x73\xb6\x91\xe6\xf2\xfc\xe7\x97\xe8\x0e\x11\xb2\xf1\xa2\x99\xf9\xb5\xd1\xa1\xc8\x78\x25\x91\xf8\x0e\xad\xbe\x49\x72\x8e\x16\x0c\x6d\xa4\xb8\x3c\xdf\x10\x99\x0a\xb9\xa1\x06\x75\xbc\xc1\x67\xc4\x86\x29\x5a\x62\x8f\x80\xe7\x57\x27\x8c\xe3\x6c\xba\x32\x39\x84\x81\xe7\x62\xc1\xd1\x1d\xb2\x71\x9d\x6a\x9c\xf1\xe1\x2c\x28\x4a\xa4\x49\xf9\x11\x8a\x0f\xe8\x1a\x7f\x2b\x36\x4d\x49\x56\xff\xf4\xf0\x53\xf3\xa1\x95\x14\x34\xca\x09\xa3\x0d\xdc\xca\x5b\xb4\xf9\xb5\x5e\x64\xb8\x96\xe5\x9c\x44\x79\x7d\xef\x74\xfa\x19\x47\x79\x3b\xc6\x09\xa1\xf8\x4c\x30\x3b\xcf\x57\x8d\xbc\x55\xbf\xba\xc2\xd9\x09\x8b\x0b\xc1\x8b\x5f\x6f\x51\x5a\xe0\xdd\x27\xc1\x43\x73\xef\x16\xf1\x1a\x9f\xd4\x75\xa6\xf5\xc9\x64\x92\xaf\x96\x98\x25\xb5\xf3\xd5\x62\xca\xd2\xad\x2d\xf9\xb7\x9d\x30\xde\x62\x13\xfe\xd4\x06\x1b\x75\x8e\x51\x94\xb7\xc5\xae\x5d\x6c\x88\x9b\xbb\x83\x20\x0c\xba\x2d\xb2\x91\x6a\xc9\xb8\xd8\x53\x4a\xa2\x41\x0b\x6d\x24\x4a\x38\x9a\x39\x79\x0d\x5b\xd9\x46\x32\xd9\xda\xab\x05\x8b\xb1\xa2\x1c\xb5\xa2\xcd\xa5\x72\x96\x90\x14\x73\x49\x16\xf6\x5a\xe9\x63\x64\xb7\x24\xd6\x64\xc1\xb8\x55\x6c\x24\x8b\x18\xcd\xf1\xbd\xaa\x5d\x18\xb4\x96\x1b\xa9\x50\xb6\xa2\x91\x53\xb9\x30\x6c\x25\x8f\x65\x17\x15\x9c\x63\x9a\xfb\xd4\xf1\xe6\xbe\x61\xfc\x0e\xf1\xf8\x8a\xe3\x44\x51\x76\x5a\xf3\xcd\xdd\x53\x64\x4b\x4c\x33\x9d\x61\xb7\x35\xfd\x26\xd9\x55\x4a\x32\xd5\xa6\x4e\xd0\x5a\x6c\xa4\x5d\xe0\x05\x53\xd9\xf5\x5b\x27\x1b\x49\x52\xf4\x65\xa5\x48\x06\xad\xd9\xe6\x26\x14\x34\x46\x0b\x69\x5c\x90\x94\xc3\xd6\xed\x46\x4a\x8e\xb3\x25\xa3\x66\x44\xc2\x51\x6b\xb5\xb9\x0d\x11\x5b\xea\x76\x8e\xf7\x34\x17\xd7\xf6\x1b\xb8\xf9\x95\x24\x8d\x3a\x83\xf9\xe0\x70\x35\xde\xda\xa2\x45\x9a\x3e\x99\x4c\x70\xf3\xab\x60\xfe\x7c\x82\xdb\xff\xf5\x5f\x32\x76\x2f\xbb\x23\x79\x34\x6f\xe4\xcd\xaf\x11\xca\x70\x8d\xed\x2a\x00\x4f\x70\x5b\x90\x28\x7c\xb9\x0b\x7f\x12\xf9\x07\xc9\x3f\x91\xfc\x93\xc9\x3f\xf3\x5d\x8e\xf3\x82\xd3\x1a\xde\x8b\x71\x82\x8a\x34\x77\xf2\xda\xda\xb2\x65\xaa\x2c\x0b\x99\x2c\x96\x7f\xd2\x6a\x6a\x05\xe4\x0f\x0f\x40\x71\x22\x09\x17\xf2\x0f\x71\xa2\x1f\x4c\x2f\xdc\x89\x5e\x50\x11\xa2\x47\x26\x93\x49\xf2\x90\x43\x43\x4e\x93\xc9\x7e\x2b\x6f\xef\x0b\x56\x3d\x61\x31\x9e\x2c\x5b\x79\xfb\xc0\xf0\x23\x40\x89\x84\x04\xc7\x1f\x30\x9a\x15\x0b\xcc\x27\x85\xc5\xce\xd4\x9c\x99\xa4\xad\xbc\x7d\x24\x65\xc0\x84\xb5\xf2\xf6\x73\xc9\xa8\xef\x70\x32\x89\x45\x50\xcd\xe9\x09\x6a\xe5\xed\x63\xf4\x65\x35\x39\x69\xe5\xed\x13\xbc\x60\x93\x45\x2b\x6f\x9f\x81\x5c\x98\x10\xf1\x53\x4d\xd6\x49\xd4\xca\xdb\xe7\x30\xc7\xa1\x22\x99\x08\x2a\x66\x9d\xcc\x5b\x79\x9b\x64\xef\x51\x4a\x62\x55\xe8\xc5\x6a\x89\x27\x56\x2a\xea\x26\xd7\x85\x94\xa0\x33\x77\xec\xd7\xeb\x4d\x82\x0e\xaf\xd7\x78\x32\x99\x20\xf9\x27\x91\x7f\x22\xf9\x27\x93\x7f\xe6\xf2\xcf\x74\xbd\xfe\x26\x47\x6d\x6d\x35\xec\xc0\x4e\x26\x93\x93\xf5\xda\x0b\x2f\x4a\xe1\xb4\x14\x2e\x4a\xe1\xb8\x14\x9e\x95\xc2\xb7\xa5\xf0\xaa\xf9\x00\xbd\x63\x87\xb5\xda\x2d\xc0\x15\xeb\xb5\xe2\x87\xa5\x4c\x50\x1a\xf9\x3b\x0d\x7a\x63\xbf\x21\x2f\x95\x4b\xf1\xe0\x26\x30\x8c\xf1\x78\x82\x54\x26\xd0\x5c\xb3\x61\xf0\xbe\xdd\xcd\x5e\xab\x99\xcc\xcc\x61\xbb\xc7\x0b\x8e\x15\xad\xe6\xc9\xc7\x29\x91\xa4\x04\x86\x7d\x9c\xea\x44\x52\x01\x37\x3f\x4e\xb5\x90\x54\x8a\xd5\x1f\xa7\x23\x8a\x4e\xcf\x83\xc7\x29\x23\x49\xe9\x4c\x92\xc7\x69\x33\x45\xab\x67\xd0\xe3\x94\xf3\x87\xaa\x7a\x21\x15\x04\xda\x08\x3b\x83\xe6\x1e\x6e\xe3\x7b\xb1\x90\x67\x5e\x26\x24\x69\xe0\x5f\x27\xfd\x7e\x67\x3c\xd8\xda\xc2\xbf\x4c\xfa\xc3\x6e\xaf\xbb\x5e\xe3\x5f\xc3\x30\xec\x85\x61\xd8\x54\x63\xfa\x57\x91\x24\x49\x5c\xdf\xc3\x35\x42\x6b\x5c\x4c\x96\x09\xff\x88\x3f\x49\x25\x24\x9f\xd4\xeb\x7b\xf8\xd7\x41\xbf\xdf\xed\x8b\xa8\x9d\x89\xf8\x39\x68\xe5\xdb\x93\x73\x98\xc8\xed\x84\xb3\xc5\xc1\x1c\xf1\x03\x16\xe3\x06\xfe\xf5\xd7\x5f\xc3\x60\x2b\x0c\x3a\xdd\x35\x94\xdc\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\x9e\x16\x89\x8f\x64\xd0\xf4\x1a\xdb\xfc\x6a\xdb\xf6\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\x07\xf5\x5d\x51\x93\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\x41\x49\x37\x7d\xbc\x3f\xf7\x51\x54\xe4\xb8\xbe\x5b\xff\xeb\x3e\x0a\xeb\xad\x3a\xb2\x61\x2c\xc2\xfb\x53\x8e\x6f\x21\x5c\x04\x61\x20\xb4\x6a\xe4\x21\x5d\x81\x44\x10\xea\x74\xba\x18\x42\xb1\x0e\x26\x10\x3c\x32\xb1\x7f\x15\x41\xb7\x2b\x52\xec\x47\x84\x47\xb2\x50\xc8\xd2\x04\xb1\x0c\xea\x2a\x4c\x7b\x40\xbc\x92\xa5\xf5\x40\xe3\x47\x26\x08\xef\x85\xec\x1f\xa5\x64\x26\xb3\x1a\x88\x58\xac\x83\xf0\x69\x47\x94\xc8\xc2\x83\x41\x28\x7d\x33\x20\x18\x8f\xba\xfd\xbf\x8a\x38\x0e\x7a\x40\xe2\x83\x21\x18\x28\x67\x1c\xdd\xaa\x6e\x81\x42\x6d\x18\x43\x38\xc5\x49\xb6\x5a\xc8\xcc\x05\x23\x01\xb4\x9c\xbb\xc0\x7e\xba\x9c\x23\x59\xd5\xee\x18\xfa\xd6\x01\xa6\x50\x9f\x05\x8a\xb8\xee\x49\xc8\xd6\x05\x42\x09\xa4\x33\x99\x29\x92\xdd\xb9\x58\xd6\x77\xeb\x5b\x22\xf1\xc9\x99\xfa\x05\xc6\x70\xd5\xe9\xa8\x0f\x45\xdb\x60\x57\x12\xa8\x31\xe8\x0c\x65\xd0\x44\x47\x32\x9c\xa5\x42\x73\x53\xd8\x48\x62\xb7\x3a\x8c\x20\x3c\xd3\x59\x04\x32\xa8\xc8\xc7\xa8\x27\xc3\x29\x2e\x11\x2c\xb2\x18\x21\x4d\x34\xb2\xd8\x54\x63\x63\x8b\x45\x1a\x43\x16\x8b\x35\x36\xb5\x98\x29\x34\xb2\x58\xa2\xb1\xd8\x62\x33\x8d\x61\x8b\xcd\x35\x96\x18\x4c\xd7\x38\x94\x08\xcf\x15\x10\x26\x1a\xb8\x55\xb5\xed\x4c\xb1\x85\x74\xcd\xc6\xaa\xc4\x4c\x0f\x7c\xa7\xd3\x51\x48\x2e\x79\xa7\x2f\x83\x5f\x10\x97\xc3\xda\xe9\x0e\xe1\xb8\x8a\xcd\x18\xd5\xe3\x0c\xfd\xe7\x02\x30\x82\x6c\x99\x78\x6c\xd9\x85\x1e\x2c\xa3\x7d\x28\x6f\x29\x26\x90\x1a\xad\x01\x54\x7d\xa9\xea\xd3\x83\x54\x4b\x35\x05\xd1\x10\x86\x46\x8f\x74\xa7\x07\xbd\xbd\x24\xba\x1f\x7a\xd0\xd3\x4b\x96\x89\xf0\x4f\xa2\x16\xcb\x65\xba\x7a\xae\x95\x34\x67\x26\xa1\xe5\x92\xb3\x7b\xbf\x10\x81\xe0\x1b\x37\xeb\x7d\x50\xf9\x6c\x47\x98\x20\xbc\xd4\xb5\x9f\x45\xde\xcc\x8b\xc6\x30\xa8\x65\x74\x3a\x00\xda\x8c\xcc\x54\x0d\x3a\x7d\xe8\x31\xe8\xe2\xff\x03\x7e\xad\x16\x7e\x7b\x05\x60\x6b\x22\xcf\x14\x48\x1a\xab\xf9\x0c\x33\xc2\x86\xe1\x32\xc4\x7e\xb1\x48\x65\x2c\xe4\xad\x43\x70\x27\x03\xdd\x45\x8c\x12\xaa\x79\x03\x04\x18\xba\x33\x00\x0a\x45\x87\x4c\x51\x74\x1d\x31\x33\x49\x7a\x91\xc2\xf0\x32\x23\xa9\x1e\xda\x6e\x32\x50\xf0\x92\x93\x85\x1a\x85\x00\x84\x85\x00\x33\xb2\xd0\x65\xc4\x16\x32\x0d\x89\x04\xf8\x4c\x80\x29\xca\x34\xc3\x85\x03\x00\xb9\x9e\xac\x78\x08\x29\xf9\x2d\xd6\x83\x3c\x95\x79\xf1\x3b\xac\x86\xb9\x0b\x0c\xf6\xcc\x43\x06\x86\x46\xcf\x6b\x49\x35\x9d\xf2\x6b\x15\x9e\xea\x70\xee\x60\x90\xae\xdc\xee\x67\x56\x60\x43\xd7\x58\x81\x0d\xc1\xf8\xa6\x60\xaa\xe9\x20\x6b\xa7\x38\x42\x45\xa6\x5b\xde\x37\x08\x76\xa1\x67\x55\x68\x8a\x17\xcb\x7c\xa5\x1a\x3e\x06\x6f\xfa\xa9\xe8\x6e\xaf\xaf\x31\xa7\xac\x50\x52\xb9\x03\x95\x03\x04\x2c\x38\x1e\x9a\x1b\x51\xdd\x81\x74\x26\x3c\x55\x61\x23\xdb\x65\xbe\xf9\x1d\xc6\x9a\x21\x07\x90\x45\x79\x71\x81\x3a\x96\x17\x17\x31\x3b\xa7\x64\x16\x99\x19\x0a\x0b\xa0\x40\xd4\x12\x58\x74\xfa\x58\x13\x15\x86\xa8\x2b\x11\x16\x33\xcd\x75\xb0\x5e\x08\x68\x99\xea\xce\x43\xb0\x64\x08\x2c\x27\x0b\x6c\x40\x55\x40\x76\x63\xf2\x43\x72\xbc\xc9\x2c\xcb\x91\x92\x1b\x03\x59\x5d\x32\xcb\x39\x01\x61\x1e\xb3\x3b\xd5\xbc\xbe\xe4\x20\x1b\xa5\xb3\xe9\x4f\x55\xb5\x0a\xb7\x0e\x3d\x89\x59\x06\x8c\x54\xad\x1c\xe6\xea\xc0\xa2\x3a\xbd\x46\x9c\xdd\xa9\xf1\x0b\xa0\x90\x14\x45\xd7\x29\xfb\x82\xed\xf2\x02\x87\x0f\x80\x67\x37\x05\xe2\x0a\xee\xc3\x42\x01\xb0\xae\x95\xae\x53\xaf\x1c\xe1\xb6\x04\x97\x23\x53\x9c\xa8\x1e\xed\xcb\x91\x70\x23\x39\x99\xcd\x75\xec\x74\x24\x63\xa9\xe2\xfd\x5e\x07\x1a\x9f\x5e\x87\x1d\x45\x21\x19\x27\xbd\x0e\x7b\x1a\x08\x25\xd0\x35\x80\x4c\xc2\x22\x95\x47\x7f\x04\x99\x52\x51\xf7\x89\x98\x0f\x20\x17\xa7\x14\xdf\x14\xe4\x56\xf3\x56\x68\x23\xde\x9a\xd1\xc7\xd0\x5b\x54\x87\xbb\xa0\x19\x3d\xab\xac\x19\x62\x85\x9d\x56\xd6\x0c\xa8\x85\x4e\xda\x41\x7d\x19\xcc\xd9\xc2\x47\xee\x72\x62\x86\x0b\xea\xc9\xee\xa7\x5a\xe6\x8f\x23\x99\xf5\x7d\x9c\xaa\xa6\x40\x0d\x04\x70\xac\x80\xbe\xcc\xe5\xfe\x50\x53\xc0\x35\x41\x01\x18\x8a\xa1\x4a\xa2\x78\xb0\x1f\x44\x0a\x78\xa7\x29\x3a\x2a\x89\xa6\x50\x75\xbf\x3f\x34\x14\x3d\x09\xcc\x75\x16\xaa\x1a\x2f\x75\xbc\x0a\xcf\x95\xa8\xeb\x77\x54\x19\x2f\x35\x30\xd0\x39\x1c\x6a\x40\x55\xfc\xa5\x01\x54\xc5\xe7\x4a\x90\xf4\xbb\x2a\xc9\x4b\x0d\x0c\x54\x4b\xe6\x97\x1a\x50\x1d\xf6\xd2\x00\xaa\xbf\x16\x84\x1a\x59\x37\x4e\x24\x66\x67\x4f\x67\x8c\x25\xe4\x4c\xe0\x0e\x52\x4d\x28\x4c\x57\xab\xcc\x0b\xd3\x91\x53\x09\x5c\x9a\xae\x56\x8d\xbc\x34\x14\xb1\x4a\xa2\x3b\x32\x54\x4d\x28\x4c\x47\xaa\x4c\x2f\x4d\x57\xab\x1a\x5f\x1a\x0a\x24\x81\x5b\xdd\xd5\x6a\x70\xde\xeb\xf8\x50\xc5\xeb\xb1\xe8\xaa\x5a\xdc\xea\xc1\x18\xa8\x1c\xde\x6b\x8a\x81\xaa\xf8\x7b\x43\xa1\x93\xe8\x96\x74\x54\x3d\x6f\x75\x4b\x06\xaa\x94\xf7\x9a\x62\xa0\xab\x61\x28\x14\x8f\xdc\x9a\xb6\xea\x4c\x4d\x4b\x54\x2f\xbf\x37\x6d\x55\x23\xf1\x5e\x53\x0c\xa0\xcf\xab\xab\xb4\xdd\xfa\x74\x62\xd1\x61\xcf\xca\xc0\x94\xdf\x4e\xa5\x4c\xbd\x47\xc0\x36\x15\x75\x46\xb0\xca\x33\x8d\xaa\xe5\x67\x9a\xe1\x05\x51\x05\xf5\xa0\x2e\x65\x5d\x20\x33\x35\x91\x7a\xc0\x34\x63\xa9\x56\xa4\x41\xb9\x12\x80\x08\xff\xf5\xd7\x5f\x2a\x34\xcf\x0a\x45\x31\x94\xf3\xb7\x48\x55\x9f\x05\xa0\xa6\x8a\x30\xce\x7d\xc4\x2a\x52\x58\x85\xb5\xea\x88\x34\x60\x94\x47\x51\xcf\x67\x85\xab\x69\x19\x92\x1b\x97\xe6\xc0\xec\xe7\x84\x72\x2b\x3a\x25\xf2\x90\x21\x20\x4b\xbb\x85\xe9\xf5\x24\x32\xe5\x76\xc5\xea\x8d\x25\x66\x16\x4e\x04\xca\xaa\x5d\x47\x3b\x63\x28\x4a\x07\xe3\x8e\xa2\xb7\x39\xa8\x72\xec\x12\xda\x0b\x64\x12\x92\xa3\xf4\x90\x24\x09\xe6\xe0\xb0\x95\xaa\x79\x2f\xb6\xf5\x90\x22\x33\x45\xfc\x55\x24\x18\x24\x4c\x84\xb8\xe9\xba\x5e\x28\x01\xad\xe5\x75\xa2\x21\xe4\xbb\x4a\xf1\xca\x28\x19\x62\xcc\x22\x9b\x17\x02\xad\xf4\xc0\x49\x15\x82\xf0\x8b\x3c\x44\xd2\xe0\x98\x28\xdd\x14\x5a\x60\xc3\xa0\xeb\x1d\x18\xc5\x21\x08\x83\x11\x10\x38\x00\x74\x8a\xaf\xbe\x42\xf5\xa3\xc2\xd6\x24\xd2\x40\xa6\x58\x0e\x81\xd0\x3c\xd0\x1d\x15\x84\x81\x98\xb7\x91\x13\x86\xae\x37\xf5\x80\xa5\xf1\x40\x04\x53\x64\x81\xc8\x57\xcf\x60\x3c\xb0\xac\xc6\x3d\xd2\x21\xcc\x55\xae\xf7\x30\x2f\x0e\x00\x3a\x74\xa1\xa8\xa4\x41\xc1\xee\xf2\x20\xe1\x6e\xc7\x1e\xbc\x34\x2a\x26\x6c\x70\xa3\xb9\x09\xcb\x51\x9f\x63\xbd\xe4\x0e\xc3\xae\x06\x16\x88\x7b\xe0\xc1\x5c\xab\x8e\x48\x26\xd2\x41\xd9\xef\xa6\x57\x3b\x60\x68\x10\x61\xc3\xe7\x7d\x4d\x91\x62\xc4\x39\xbb\xb3\x5a\x45\x08\x3e\xe5\x4e\x94\xa3\x53\x84\xd3\xa9\x89\x8b\xe5\x7e\x06\xd6\x00\x07\xb5\x5a\x61\x67\x6c\x33\x8a\x63\xbb\x01\x80\x3d\xe8\x01\xc0\x87\x66\x4d\x1f\x8f\x2d\xed\x3b\xd9\xe3\xd8\x22\xe7\x4a\x83\x01\xa9\x20\x93\x9e\xb8\xcb\xd2\xc0\xc0\x67\xce\xca\xd4\x37\xe8\x85\xb3\x38\x8d\x55\xcb\x95\xdc\x8c\x54\xdd\x8f\xb4\x68\xea\xca\x30\x2e\x75\x54\x42\x9d\xfd\x53\x20\xb1\x85\xde\x87\x22\x50\x80\x23\xc2\x33\x93\xf1\x18\x94\xb3\x03\xa1\x3a\xdd\x91\x0c\x1f\x30\x9a\xb3\x82\xbf\xa2\x39\x9e\x71\x94\x6a\xd6\x56\x34\x19\x3e\x28\x78\xba\x3a\x64\xc5\x34\xc5\xbf\x15\x2c\xd7\x32\x3c\x8c\x3d\x02\x2f\x0a\x7a\x2c\x2d\xa6\xaa\x61\x03\x58\x45\x00\x28\x48\xee\x61\x4c\xee\xe7\x76\x45\x5e\x4c\xef\xed\x3a\x9d\xee\x50\x03\xda\x90\x32\xec\x69\x72\xd3\x7c\x8b\xdc\xf8\xd0\x62\x81\x20\x47\xf5\x5b\x94\xf8\x7f\xca\x80\x96\x68\xa0\xdc\x8b\x70\xa2\x4b\x04\x3d\x40\x20\xea\xc8\xb7\x44\x97\xe2\x7b\x3d\x4c\xd2\x72\xe7\xee\xd3\xfa\x2a\x6c\xa5\xe1\x00\x3a\x87\xd1\x19\x2f\x6c\x66\x03\x99\x99\x23\x3f\x3a\x58\x92\x39\x48\x22\x91\x0d\x23\x02\xc4\x51\x45\x01\xed\x41\x02\x85\x9a\xca\x2d\x39\xd3\x86\x08\x60\x89\x03\x40\x8a\x28\x77\xc1\x88\x2d\x57\x92\xa1\x41\xb4\x9d\x9e\xfd\x61\x43\x22\x2e\xd3\x82\x21\x94\xc3\x51\x08\x81\xf2\x3d\xbe\x81\x61\xe5\xc6\x46\x13\xc2\x56\x37\xe2\x2c\xcb\xb4\x7c\x80\xcc\x2c\x80\x64\x9b\x2b\x06\x0c\x68\x6e\x65\xc5\x87\x61\x32\x8b\x31\x8a\x12\x15\xd6\x7c\x12\x87\x12\xd0\x2b\x55\x1c\xa8\xb0\x21\x80\x0e\xca\xcd\x58\x75\xe4\x04\x29\x62\xc4\xb9\x6a\xc4\x18\xec\x43\x12\xd2\x73\x06\x54\x96\xa8\xc0\x4b\xae\x17\x45\x2c\x81\x4c\xcb\x94\x58\xe6\x93\x3a\x4d\x1f\x18\x64\xa9\xb3\x81\xb5\xab\x10\xcb\xb1\x5d\x7c\x65\x69\xee\x72\x0c\x52\xa3\x58\xda\x25\xb8\xa7\xd2\x69\x5e\x40\x92\x40\x17\xdd\x55\x39\xd8\x05\x1a\x49\xc4\x36\x73\xa4\x72\x60\xda\xb8\x25\xd9\xb6\xb0\x2b\x32\xb2\x2b\x72\xe1\x0e\xe0\xd0\x20\x0b\xdd\x8a\x48\x42\xe9\x0a\xdf\x2c\x39\x8e\xfc\x2e\x01\x38\x2b\xa2\x52\xc7\xf0\x74\xe5\xec\x63\x0d\xa9\xb7\x93\x55\x94\x5c\x5a\x03\xee\xc1\x1c\x1a\x15\xfc\xb6\xba\x12\x0c\xbc\x18\x6f\x21\x90\xf5\xad\x94\x65\x2c\x34\xaa\x98\x92\x25\x0a\xd8\xe2\xce\x01\x80\x91\x56\x69\x94\xcb\xe5\xaf\xd3\x85\xe5\x31\x46\xb3\x19\x56\x5d\x13\xc0\xfa\x79\xe8\x21\x21\xd0\xa4\x8e\x89\x63\x04\x88\xe9\x4e\xd8\xb7\x1e\xda\x30\x82\x14\xfb\x26\x0c\x63\x69\xd7\xa4\x20\x94\x65\x64\x73\x63\x95\xea\x29\x02\xbd\xab\x45\x90\xc2\x37\x00\x24\x00\xa5\x48\x2f\xb3\xb1\xa8\xfb\xa1\xa7\x10\x89\x5e\x89\x3d\x24\x01\x1a\x63\x6f\x82\x72\xac\xbd\x09\x82\x71\xb5\xb1\x4e\xdb\xc0\x7d\xf2\xd0\x53\xf9\xb4\x75\x3c\x04\x9e\x3e\x3c\x64\x39\x47\x7a\xff\x38\x0e\x65\x06\x2c\xcf\xb4\x08\x47\x43\x31\x7a\x31\x96\xa6\x4d\xb0\x43\x1d\x62\x2d\x5b\x40\xbb\x3d\xc4\xa9\x35\x2f\x41\x9d\x1c\x60\x2a\x01\x4f\x59\x82\x32\x12\x92\x69\x06\x19\x0f\xa1\x9d\x65\x0b\x13\x94\x5b\xd6\x8f\x20\xed\x4b\x6d\xd7\x19\xc3\x6e\x36\x9e\x23\x2d\x28\x42\x58\x92\x05\x60\x7a\x40\xb0\xd1\x21\x41\x11\x27\x39\x89\x50\xba\xef\x1f\xbf\x38\x31\x5a\xc1\x08\x3a\xf1\xb8\x1c\x23\xd6\xda\x7d\xab\xd6\xab\xd1\xb3\x14\x2f\xd4\x01\xca\xff\xed\xc3\x17\xda\x0e\x2b\x92\x88\x29\x1a\x13\xa4\x77\x3e\x60\x8b\x15\x61\x66\xce\x2f\x22\x55\xa3\x32\xa4\xa8\xdc\xb5\x7a\xa0\xe0\xcc\x07\x64\xcb\xe0\x3c\x62\xa3\xce\x2f\xa9\x66\x48\x2e\xc8\x62\x80\xa0\x25\x31\xc9\x88\x5e\x77\x93\x0e\x00\x30\x5a\xf7\xc9\x50\x06\x88\x32\x27\x3b\x61\x46\xdd\x6d\x7c\xa4\x22\x18\xbd\x77\x91\xc3\xd7\x86\x5d\x61\x1d\x8c\x3f\x9b\x30\x58\x3f\xe2\x34\x62\x5c\x95\xdc\x05\x7b\x69\x9c\x46\x9c\x29\xa1\xd9\x85\x3d\x42\xcc\xd2\x14\x06\xfc\xbf\x44\x86\x15\x2b\xd0\x14\x48\xca\x8b\x70\x1f\x68\x73\xdb\x1d\x71\x69\x74\x59\x6e\x14\xca\x40\x0e\x0d\xcb\xad\xda\x12\x68\xc0\x8a\x6b\x30\x00\x1c\xb2\xfc\xe8\xa6\x30\x6b\xab\xa6\x73\xed\x1e\x5d\x55\x9a\x63\xf7\x90\x13\x97\xe5\xae\x8d\xaf\x23\xc5\x0c\x70\x56\xd9\x36\x0d\x13\x13\x62\x1e\x51\x3c\x12\x43\xe0\xb5\x51\x43\x77\x74\x9f\x1b\xd1\x23\xe5\x97\x8c\x3a\xc6\x49\xee\x45\x05\x5e\xd4\x3b\x21\xb4\xbd\xf8\x9e\x17\x7f\xa1\x25\xb8\x14\x79\x2a\x82\xd1\x59\x29\xdf\x61\x32\xaa\x44\x97\xf3\x1e\x26\xc8\xa3\xa9\xc6\x8f\x4d\x7c\xb5\x5e\x1d\x3f\xce\x54\xac\xe3\xf4\xc3\xe5\xd2\x4b\x12\x3a\x11\x95\x2e\xea\x9b\xc8\xf7\x98\xc3\xd4\x7d\xa6\x65\x4c\xa7\x23\x23\x55\x0a\x83\x8f\x61\x5b\x15\xb3\x3b\x8a\x9c\x9c\xe4\x62\x52\xca\xde\x80\xa8\x3a\x2c\x8a\xd2\xaf\x6c\xa2\x8b\x74\x2c\x30\x5d\x29\x9b\xd9\x1d\x35\x65\x66\xae\x94\x17\xe8\x1c\xf1\x25\x63\xd4\x59\x96\xa3\xae\x1f\xe5\xae\xcb\x52\x34\xb2\x3b\x6a\xc6\xe7\x3d\x8e\x72\xad\x8e\x8c\xfb\x81\x13\x7d\x81\xb1\x1f\x89\x9d\x48\x19\x63\x7b\xa6\x3f\xa8\x44\x6a\x55\x20\x56\x31\x7a\xd8\xfc\x4c\x13\x37\xb6\x92\xeb\xb0\x1a\xab\x5b\x12\xaa\xa8\x0b\x8c\xdd\x7e\x44\x43\x8b\x6b\x06\x81\xb9\xc8\xbd\xc5\x19\x56\xf4\x98\xbb\xa2\x28\x91\x88\x23\x8a\x84\x8c\x38\xac\xe8\xc4\x40\x57\xd1\x89\x81\x75\xcf\xad\xe8\xeb\x4b\x2a\x23\xfa\x64\x98\x69\xed\x16\x0e\x73\x0e\xb3\x9c\xb3\x6b\xb5\xf2\xcb\x1a\x79\x08\x8c\xbe\xa3\x25\x27\x12\xe0\xca\xb2\xd6\x9f\x26\x2a\x9c\x68\x00\xc4\x69\x61\x97\x42\xe0\xaa\xb8\x98\xdb\xd5\x13\x92\xdc\x39\x07\x0c\x63\x30\xeb\x1d\xfe\x69\xab\x0e\x24\x5f\x6c\xd5\x65\x98\xcc\xac\x3e\x3a\x4c\x04\x76\xe4\xb8\x5a\x88\xe6\x63\xc7\xd5\x42\x86\xb3\x1c\x9b\x63\x5c\xb8\x1c\xe0\xaa\x3a\xa1\x60\x61\xec\x21\x70\x2f\xc3\xba\x52\x48\x02\xe3\x4a\xa1\x83\x5a\x12\x0f\x20\xec\xec\x58\xa1\x93\x8f\xac\xe9\x24\x06\x02\x63\x39\x81\xe0\xa1\x59\x03\xa4\x9a\x73\x64\xad\x40\x70\xf4\x88\x9d\xf0\x10\x12\xf8\xcb\x81\xe6\xaa\x10\x0c\x31\x38\x71\xa2\xc5\xdc\x3a\x2a\xab\x34\x23\xa0\x2a\xa9\x34\x82\x12\x6b\x37\x08\xb0\x83\x1c\x39\xfe\x19\x90\xc4\xf1\xcf\x90\x61\xbd\x53\x03\x6b\x06\x9e\x65\x76\xa3\x3b\x06\x82\x54\x87\x44\xd7\x1f\xf9\x3b\x68\x49\x40\xc4\xd6\x51\x65\xd3\x05\x5b\x1b\xd6\x06\xd4\x10\x24\x1b\x4e\x4d\x21\x7d\x19\x74\x0a\x81\xce\x72\xdc\x39\xc0\x23\x1d\xbb\x00\x64\x21\xd4\x3e\x5d\x6c\x5f\x03\x19\xce\x5d\xec\x48\x60\xe7\x0b\x94\xa6\xe7\xee\x11\x58\x32\xd5\xf4\xb7\x15\xea\xf7\x98\x6f\x48\x81\x64\x8a\x6c\x19\x76\xd5\xba\x0e\xa7\x75\x80\xf4\x34\xd2\x57\x88\x0e\x8b\x6a\x1e\xbd\x7d\xa1\x6a\x0d\x9b\x34\xac\xec\x08\x41\x08\x46\x58\x4c\x2d\x35\x0c\xaa\xe3\xcc\x00\x36\x0a\xec\x02\xd0\xdf\x15\x1d\x25\x02\xb2\xb2\x8e\x02\x63\xb7\x34\xeb\x0c\x2c\x42\x22\x9c\x69\xb9\x00\x87\xf7\xd8\x39\x7e\x1c\x02\xd3\xd9\x53\x60\xd8\xca\x1f\x79\x87\xf0\x72\xb0\x3c\x68\xaa\xa1\x5b\x05\x80\x20\xc0\x37\x8e\xf9\x4d\xd6\xe5\xa6\x32\x7f\xf0\x8d\x35\xd5\xf7\x3a\x12\x48\x11\xcd\x67\x39\xf7\x38\x50\xa2\x29\xce\x3c\x9e\x71\x54\x25\x34\x94\xd9\x15\x08\xd8\x6a\xa2\x63\xad\x86\x6c\x0a\x28\xb0\x31\x16\x82\xb4\x39\xba\x29\x48\x4a\xa6\x9c\x14\xda\x23\x29\x8a\x24\xa1\x73\x8c\xa8\x01\xbd\xd7\x41\x43\x18\x9a\x9b\x5b\xaf\x3f\xa1\x0e\x56\x72\x8d\x65\x7f\x72\x67\xda\x42\x8f\x3b\xe7\x17\x50\x01\x1b\x06\xfb\x32\xce\x1c\xad\x10\xee\xdd\x99\x4e\x42\x43\x99\x81\xdf\x69\x47\x76\x7f\x04\x13\xcd\xee\x8e\x60\x1e\x5d\xc0\xf9\xd0\x3d\x28\x63\x6a\x9b\x7a\x9f\x40\xbe\xc6\x6f\x03\x18\xd1\xf8\x6d\xc8\x10\xd7\x7e\x06\xe0\x2e\x84\xef\x23\x11\xfb\x04\x7e\x12\xd3\x83\x92\xc1\x05\x90\xb9\x08\xbe\x5f\xe2\x28\x47\xd6\xf1\x45\xb5\xec\x7e\xc9\xa8\xdc\x32\x78\x92\xed\xc8\xe2\x47\x2e\x9e\xa0\x34\x25\x60\x66\xcb\xac\xee\x2c\x5a\xfc\xdc\xca\x5d\x31\x07\x13\x2b\x77\x21\x88\x17\xa6\x80\x01\x9c\x53\x24\x09\x51\x9e\x6d\x45\x32\x85\x1a\x26\x89\x03\x48\x92\xd4\x41\x44\x36\xcf\xcb\xe2\x75\x0c\x64\x25\xf1\x0a\x99\xb9\xb9\x8b\x31\x7f\x4e\xd2\x14\xc7\x1b\xa4\x4e\x64\x22\x1f\x11\x32\x42\x42\x24\x9f\x65\x76\xc9\x67\x11\x48\x91\xd9\x95\xc5\x10\x76\xca\xea\x00\x90\xd3\x4c\xaf\xc9\xa2\xf0\x84\xb2\x44\xc9\x0b\x38\x55\x7f\x5e\x91\x17\x90\x4f\x45\x5e\x40\x8f\x33\x8e\x52\xb3\xfd\x0e\x20\x35\xdf\xf7\x91\x84\x69\xd3\x7f\x07\x14\x78\x11\xd6\xb6\x0a\xd8\xfc\x3c\x67\x05\x27\x98\xe7\x5c\xdb\x28\xc1\xb4\x92\x2c\x11\xcf\xad\xe1\x1a\xf6\x5e\x09\x47\x91\x74\x01\xb8\x9f\x9a\xb0\x12\xaf\x21\x4c\x16\x40\x7a\x92\x22\xd2\xe1\xbe\xa6\xe8\x6b\x64\xa0\x91\xb1\x46\x46\x1a\x99\x2a\xa4\x63\xf2\xed\x69\xc4\xe4\x33\x50\x48\x57\x95\x84\x75\xd8\x50\x0c\x35\x62\xf2\xd5\xb5\xe9\x19\x9a\x91\x42\xfa\xa6\x36\x48\x23\x26\x95\x6e\xe5\xd0\x20\xaa\x2c\x2d\x45\x02\xc9\xc2\xdc\xf8\x5d\x74\x61\x05\x4f\x2a\x4a\xa0\x68\xd7\x73\x47\x74\x88\x3e\x9e\xb9\x67\x83\x20\x86\x5f\x38\x7b\x71\xd8\x27\xb8\x9b\x73\x70\x41\x01\x8a\x58\x21\xb0\x55\x9d\x79\x48\x0c\x88\xb6\x33\x8e\x44\x57\xbd\x70\xbd\x58\x61\x5b\x3d\xf3\x10\x21\xd5\x5e\x98\x23\xae\x22\x08\xa1\x09\x2f\x9c\xb3\x35\x38\x55\x9e\xb9\x40\x0c\x14\xc6\x16\x05\x55\xb5\xb6\x28\xa8\xa8\xd5\x96\xc0\x0e\x37\x73\xc2\xd0\x78\x2d\xe8\xc1\x6a\x33\xd3\x9e\xb3\xe0\x5e\x30\x3b\xd2\x0b\xc5\x08\x4a\x36\x26\xa6\x78\x0a\xc1\x1b\x2f\x29\xbe\xb9\xf1\x12\xab\xf5\x47\xcb\x60\x68\x30\xce\xb4\xbd\x13\x81\xfd\x7c\x66\x7c\x86\x74\xbc\xd5\x67\x46\x81\x41\x98\x86\x3a\x16\x32\x55\xeb\x49\xcc\xd6\xcd\x18\x68\x05\x6a\x0a\x00\x2b\xd8\x8b\xb2\x74\x12\xbc\x36\x2b\x4b\x27\xc8\x51\x9f\x5b\x80\xc3\xc0\x0b\x1d\x82\xa9\x3a\x9b\xf9\x41\xb2\xd0\x3d\x13\xc2\x91\xcc\x0b\xc7\xc0\x02\x43\xe2\x18\x58\x20\x9c\x22\xdd\x09\xd0\x73\xba\xea\xa0\xee\xce\xb4\x34\x47\x20\x87\x66\xe9\x67\x4d\x0b\xd5\xa2\x96\xa9\x90\x0a\x5b\xbf\x48\x8d\x69\x8b\x00\x38\xfb\xcc\xa8\x19\xd4\xb1\x8c\xbd\xf1\xa3\x9d\x81\x93\x04\x76\xa5\x04\x1d\xf4\x45\x45\x14\xc2\x58\x55\x44\x21\xe4\xe6\xd8\xdc\x5e\x70\x8c\x72\xcc\x5d\xdb\x0c\x70\x8a\x8b\x1f\x1b\xed\x44\x32\x95\x8a\x7b\x5e\xa4\xa9\x97\x6e\x68\xe3\xd4\x1f\xdd\x2b\x1d\x1b\xe3\x64\x36\x74\x12\x9c\x0b\x36\xf4\xd4\x1e\x6c\x23\x5d\x5d\x07\xf4\x84\x17\x65\x99\x01\x25\xcc\xac\xcc\x90\x3c\x63\xfb\x08\x52\xcd\xac\xb7\x04\x1a\x61\x05\x18\x85\x1f\x98\x31\xb7\xac\x3f\x94\x61\xe3\x41\x3b\x84\x2c\x05\xe3\xff\x2a\x6a\x70\xa1\x7f\xe4\x2e\x0f\xce\x9c\x7d\x66\x2c\x73\x48\xcf\xcc\xb6\x11\x74\xbb\x59\xee\x28\x6a\x08\xfc\x7e\x67\x39\xf7\x39\x64\xa0\x40\xab\x6f\x8d\x24\x52\xc9\x9d\xe3\x9b\xb4\x34\x3c\x00\x3a\xa8\x12\x0c\x39\x4f\x4b\x5d\x3f\xcb\x79\xb9\x87\x6e\x31\xcf\x3d\x5e\xb3\xf3\xf4\xd6\x61\x51\x83\xbe\x44\x11\x56\x1b\x6d\x69\xb7\x9c\x23\xc2\xad\xda\x8f\x00\x49\x13\xbb\x0e\xce\xd1\x82\xa4\xda\x8e\x02\x0e\x03\x2f\xf7\xdf\x59\x4b\x7d\x47\xa6\xe0\xd6\x58\xdf\x53\x08\xb7\x87\xbe\x70\xca\xe4\x58\xaa\x41\x6a\xcc\x9d\x73\x87\x9e\x8a\x37\xd6\x8c\x18\xaa\x2a\x8a\xfd\xbf\x44\xd4\x14\x19\x3e\x11\x02\xfd\xa5\x23\xad\x41\xae\xcc\x5d\x40\x8c\xd9\x1c\x23\x9e\x1b\x8b\xb1\x45\x1c\xbb\xb2\x04\xd3\x94\xe8\xc6\x77\x06\x80\xf0\xc8\x6c\x0c\xc0\xba\x31\x2f\x0b\x32\x91\xf0\xa5\x71\x5c\x00\x6b\xc9\x4b\x92\x4e\x31\xcf\xcf\x97\x28\xc2\x6e\x57\xcd\xaf\x33\xec\x58\x5f\x64\xd5\xae\xb3\x3b\x17\x83\x52\x99\x63\xbb\x48\x00\x58\xe4\x73\x73\x1c\x04\x59\x31\x76\x9d\xe2\x24\x77\x0d\x6b\x20\xed\x45\x04\xd8\xba\xbc\x18\x18\x84\x8a\x30\x11\xf4\x2f\x9d\x03\x5b\x18\x60\xc6\x4d\xf7\x06\x21\x34\x8e\xc1\x0b\x6c\x39\x4a\x8f\x89\x96\x7a\xd2\x21\x6f\x5e\x59\xfa\x61\xa0\x9c\x69\x0c\x55\x75\x1c\x9b\xd5\x80\xb9\xf6\x1d\xd9\x62\x0f\x11\x8c\xf8\xb2\x58\x80\xb5\xf2\x65\xc9\x79\x49\x84\x5d\xa9\x05\xbe\x48\xf3\x95\xe3\x05\xd5\xeb\x02\xb2\x9c\x6b\x47\x5e\x79\x70\xf5\xca\xb1\xd3\x88\x6a\x12\xc7\x4e\x03\x61\x25\x39\x02\x70\x07\x78\x65\xed\x2f\x18\x22\x8d\xfd\x05\x43\xac\x51\x07\x46\x10\x6b\xd4\x01\x11\x7c\x65\x97\x7f\xf9\xed\x5b\x6b\x8c\x81\x0e\x25\xd6\x1a\xd3\x95\x61\xb9\x85\xf9\xeb\x1e\x4c\xe3\x24\x49\xdc\x89\x40\xca\x0c\x07\x1f\xdf\x35\x0c\x07\xe6\xb1\x57\x8e\xdd\x44\x30\x20\x71\xec\x26\x10\x56\xb6\xb2\x10\xa6\x1e\x21\xc4\xd1\x76\x65\xbc\x73\xee\x0f\x9d\x41\x68\xa2\x0f\x46\xc6\xb1\x24\x61\x6a\xf7\xd6\x09\xc1\x29\xeb\xd5\x6b\xad\xee\x07\x21\x1c\x59\x92\xcf\x0e\x00\x7d\xe8\x98\x45\x40\x30\x10\x17\x98\x4a\x40\xeb\x46\xaa\x21\x0b\x34\x23\x14\xf1\xd5\x2b\xaf\xc2\x0b\x34\x4b\x0d\xef\x49\x1b\xa1\xc0\x84\xde\xee\xa6\x26\x0b\xa4\x0e\x3b\x03\xa9\x75\xbe\x5a\xf8\xd1\x6a\xfb\xd1\xe9\xc0\xfe\x93\x2c\x96\xea\x20\x36\x90\xbe\x01\xaf\x16\xcb\x94\x18\xe7\x0a\xb0\xb5\x13\x1a\x99\x3d\x90\xbc\xc2\x61\xce\x8b\xc0\x9e\xe4\xf4\x53\x07\xf4\x4d\x00\x8c\x8b\xed\x18\x94\x54\x42\x99\xc3\x12\x50\x15\x9a\x47\x86\x85\xc1\x97\xc8\x19\x80\x29\xbc\x9a\x61\x82\x91\x8c\xc5\x33\x63\xb6\x92\x52\xae\x7c\x36\x32\x55\x74\xbc\x94\xf3\x2b\x30\x78\x61\xe7\xb2\x87\xf4\x4e\x27\x34\x4f\x11\x9f\xab\x1d\x13\x02\x3b\x1f\xa1\xb9\xf5\xd7\x40\x60\xbe\x79\x45\x6f\x49\x46\xe0\x48\x46\xeb\xe7\x7a\x8e\xe8\x18\xc7\x73\x28\x00\xbf\xcd\x57\xa7\x56\x39\x83\xe6\x32\xab\x9c\xc1\xb8\x38\x96\x23\x70\x26\x21\x2e\x90\x00\x45\x49\x58\xc1\x6e\x99\x54\x44\x18\x34\x90\x59\x33\xc3\x18\xa8\xac\x9d\x01\xc2\xe5\x26\x11\xb3\x82\xdf\x83\xf1\x98\x54\xe4\x18\x4c\x72\x2b\xc7\x24\xc7\x65\xa5\xa1\xcf\x08\x75\xac\xd2\x7d\x05\xe9\x55\x16\x8e\x71\x04\xa0\xd7\xec\xa4\xa7\x01\x6d\xbd\x49\xba\x0a\xb9\xf5\xf2\xcd\xbd\xae\xcc\xed\x51\x6a\xd8\x91\xf1\x2e\x02\x53\xb1\xb8\xb6\xfd\x2d\xc4\x03\x71\x00\xd8\x42\xbe\x32\x06\x15\x68\xaf\x31\xa8\x88\xd0\x6b\x67\xb5\x84\xa3\xf5\xcf\x2e\xd0\x07\x0a\x23\xbf\xc6\x10\x6f\xc4\x97\x08\xbe\x2e\xeb\xfb\x82\xe5\x3f\x97\xa5\x96\xe0\xae\xcf\x76\x7e\x4a\xbf\xaa\xd7\x95\x51\x16\xdc\xf1\xb9\x32\xca\x82\xb5\x5f\x57\x74\x46\x51\xb5\xcf\x95\xa1\x83\x26\x65\x98\xdb\x1e\x19\x01\x9d\x83\x80\x16\xfd\xda\xed\x34\x68\xb6\xdb\x69\x02\x78\x83\x96\x4b\xc3\x58\x82\xd1\xae\x1d\x60\x6a\x00\x63\x5c\x14\x4c\xf2\xc6\xdd\x5c\xc2\x9d\x92\x6b\x0f\x19\x02\x8d\xe9\x4e\xc8\xc4\x76\xa7\x08\xbe\x29\x77\xa7\xe0\xc5\xeb\x72\x77\x8a\x16\x5c\xcf\xb8\xbe\xac\x12\x48\xe7\x8e\x37\x8e\xc7\xa4\xe8\x9d\x6b\xc7\x63\x52\x84\xdf\x38\x9b\x26\x31\x11\xae\x9d\x4d\x93\x08\xbf\xa9\x8c\x87\x60\xc1\xeb\xca\x78\x00\x6d\x65\x3c\xa0\xb5\x65\x14\xae\x84\xa4\xfb\x56\xa1\x81\x97\x28\x8f\x5d\x73\x00\x70\x51\xea\x21\x08\x10\xdf\x7b\xa2\x07\xd8\x8c\x23\x6d\xb9\x03\xdb\xfb\x31\x5a\x4c\x63\x33\x4a\x53\xa0\x71\x90\xa9\x44\xb4\x87\xdc\x10\x8e\x11\x8e\x9d\x30\x52\xf1\xe6\xf2\x5f\xa8\x00\x6d\xa7\x93\x49\x52\xbb\x25\xec\x43\x0e\xcb\x14\x45\xd8\x1a\x92\xa0\x2e\x29\x52\x77\xa0\xee\x91\x2c\x96\x73\xe5\x1d\x26\xbf\x10\x07\x40\xa2\xe4\xc1\x18\x8c\x11\x8e\x8f\x16\xec\x60\x8e\x9d\x30\x86\x9e\xb3\x1d\x17\x28\x7a\x9b\x43\xac\x10\x2d\xc4\xa5\x0a\x28\x90\x74\xa9\x11\x5d\x93\xa5\x71\x29\xd3\x34\x66\xf3\x30\x86\xcd\x83\x80\x72\xbd\xc7\x46\xb2\x3d\x39\x22\x3a\x19\x4c\xfd\x74\xdf\x45\x64\xd6\x5a\x93\x50\x25\x69\xdf\x4b\x84\x62\x15\xce\x0c\x60\xf6\x1d\xe9\xd4\xee\x8d\x80\x13\xd3\x67\x0e\x00\x0d\xb7\x77\xd4\x86\x43\xa8\xcc\x94\x4b\x75\xfa\xab\x0e\x88\xe8\x8f\x32\x70\xad\xd7\xdb\xd1\x54\x01\x59\xaa\x47\x74\x94\x18\xa8\xd0\x90\xa8\xda\xb1\x7b\xe8\x06\x96\xc7\xd4\x43\x30\xd0\xb8\x93\x17\xf2\xf6\x90\x48\x22\xba\x4b\xba\x20\x6b\xd2\x08\x9c\x02\xbf\x42\x7a\x33\xd5\x65\x62\x33\xd5\x21\x18\x47\xfa\x26\x2d\x88\x8a\xd4\xbd\x43\x17\x69\xc0\x28\xe3\xd0\x2d\x31\x8f\x9d\x73\xcc\xa1\x84\x8a\xcc\x62\x3d\x99\xb3\xd1\xb8\xc1\x45\xdb\xdc\xe2\x85\x6b\x31\xa9\xd9\x09\x8a\x52\xc1\x87\x41\xf0\xfb\x33\xd1\xa7\xfa\x8c\x4a\xcd\x14\xed\xdf\x60\x4e\xa3\x15\x27\x97\xb6\x1e\x92\x77\x4b\x4e\x16\x06\x44\x65\xcf\x0b\x43\x59\x71\x70\x00\x27\x6c\x93\xbb\x65\x36\xc9\x90\x22\xdd\x01\x26\x29\xd1\xf3\x57\x76\xb8\x80\xa5\x13\x43\xa9\x09\x03\x13\x09\x27\xe1\xde\x99\x3b\x1c\x9d\xe8\xc8\xca\x91\xfb\xb8\x12\xa9\x2b\xd8\x55\x31\xcf\x53\xa6\xc1\x2e\x6c\x94\x45\xad\x95\xb3\x81\xbd\x9b\x26\x0f\xfe\x9d\x28\xed\x17\x19\x82\xd1\x58\x44\x98\xd6\x1a\xaf\x86\xa1\x8a\xa9\xec\xe3\x60\xa7\xbc\xd1\x61\xc5\xc4\x54\xd2\xc4\xbd\x4a\x6e\x59\xb9\xb3\x21\x4a\x55\xd0\x44\x4e\xdd\xc8\xec\xa6\x20\x33\x6f\x4b\x19\xbb\x55\xf1\x7a\x16\xf6\x69\xca\x77\xc2\x73\x4a\xe8\x59\x5c\x31\x20\xea\x5a\xc8\xf7\x88\xd0\x3d\x9a\xcf\x39\xc6\x9e\xc3\xd5\x54\x27\x51\xd7\xf9\xec\xa8\x81\x72\xe3\x46\xa9\x24\xd3\x4e\x09\x77\x37\x90\x53\x5d\x2b\xe9\x1d\xe3\xd7\x22\x34\x71\x15\xf6\x09\x4c\x54\x85\x79\x46\xa5\x28\x3d\xe2\xba\x7a\x95\x04\x1d\x2f\xc2\x63\x90\x23\x7d\x40\x2e\x25\x1b\x36\x56\x51\xd9\x41\x37\xde\xbc\x76\x2c\x3f\x72\x68\x7d\xf3\xb0\x64\x45\xc7\x3c\x3c\x92\x40\x29\xde\x9a\x87\xc1\x3f\x31\xf5\xcd\xc3\xa1\x85\xb4\x69\x0d\xbe\xa5\x9b\xe2\xcc\xd6\xcd\x0a\x7a\x9c\x59\xfb\xf3\x58\xd1\x65\xbe\xb5\xac\xaf\x50\xc7\x38\x36\x50\x10\xbe\x31\x07\xae\xba\xc5\x02\xb4\xa8\xec\x96\x63\x9c\x65\x30\xa6\x9e\xdd\x52\xa6\x10\x71\x15\x53\xe7\x40\x45\xf8\xf4\x43\x5d\xac\x2d\x74\xa8\x29\xad\xdd\x13\x21\xd5\x05\x99\x63\x7d\xeb\x28\xb2\xaa\x1d\x34\x56\x31\x9e\x11\x14\x64\xb2\xe7\x09\x0a\x83\x9d\x94\x65\xca\x71\x59\x19\x84\x01\x29\x2b\x83\xb0\x32\xcf\xbc\x46\xcc\x8c\x81\x1b\x2a\xeb\x38\x8e\x42\xd1\x73\xc4\x63\x4f\x40\xcd\x11\x2f\x3c\xbe\x13\x80\x5e\xe8\xe1\x82\x5f\x3a\x9f\xa6\xe6\x82\x2b\xcc\x19\x47\x99\x84\x1a\x38\xca\x24\x84\x1d\xdd\x46\x8a\x34\xd3\xfd\xd0\x34\x73\x98\x00\x5c\x08\xfe\x90\x7a\x24\xa4\x47\xe4\x71\x79\x95\x91\x1c\xe0\x54\x7e\x0c\x46\xdb\x34\xb5\xce\x40\xe0\x5c\x77\xbc\x20\xce\x7e\x1b\xba\xcc\x45\x60\x2b\x99\x2e\x58\x91\xe5\x28\x9a\x6b\xe7\xc3\xa9\x45\x3d\xc4\x39\x0c\x18\xab\xb0\xcb\xbc\x12\x33\x66\x69\x68\xa7\xb5\xb4\x8e\x64\xec\x8d\x1f\xed\x4c\x53\x49\xe0\x1c\x06\xc0\xe8\x31\x47\x41\x8d\x24\x60\x0d\x82\x30\x5e\xcc\x6a\x47\x2a\x89\x90\x6b\x5e\x77\x0d\x61\x4b\xba\xd1\x4b\x51\x47\x54\x52\x8c\x9c\xac\xca\x2b\xc9\x10\x7c\x60\x1f\x77\x6b\x1c\x3a\x99\x56\xd3\x22\x95\xf3\x02\x2d\x33\x2d\x4c\x86\x49\xa4\xd0\x2a\xfd\x40\xe5\x56\x2d\x47\xc7\x54\xd3\xc0\x58\x30\xb6\x2c\xbb\xe8\x4b\xcd\x54\x47\xb8\x9e\x80\x48\x56\xc0\xf8\xa2\x8c\xa5\x76\x5f\xd9\x06\x75\x25\x59\x69\x1b\x24\x47\xc2\x71\x53\xe9\x48\xc4\xbd\xa7\x0f\x3b\xea\x94\xdd\xd9\x8b\x60\x60\x68\x49\xd9\x9d\x34\xb3\x5e\x41\x79\x77\x98\x57\xb4\xa7\xb1\x8e\xa9\x2e\xf6\x72\x98\xbe\x28\x9e\x8f\x64\xdf\x3a\xd7\xeb\x0d\xa4\x1f\x51\x01\xcf\x89\x54\x36\xb3\xa1\x7e\x6a\x33\xfe\x58\x8a\x65\xe7\x9e\x85\xd4\x0b\xb8\x3f\x23\x61\x1a\x71\xa3\x67\x2a\xfd\x80\xbb\x93\x11\x5a\xaf\xaf\x66\x04\x52\x8d\xe7\x66\x6e\x76\x60\xfd\x4b\x33\x64\x95\x5c\xb9\x15\xa9\x6c\x19\x61\xd5\x75\xac\x2f\x20\xb2\xac\x42\x0b\x2b\xaf\x1f\x4c\x4b\xa2\x38\x75\x8f\x8a\x62\x05\x98\x95\x54\xd6\xe3\x66\xaa\xf7\x0f\x99\xa3\x76\x8f\x34\x60\xd4\x6e\x90\x28\xae\x7d\x1a\x8c\x14\xa9\x87\x40\x99\xce\xe1\xd3\x40\x86\xed\xe1\x13\x34\x54\x74\xf8\x2f\x22\xb7\x0b\xfd\x23\x77\x25\x62\x9a\x97\x57\x40\x50\x7e\x5c\xbd\x27\xf5\x34\x21\x99\x69\xea\x1c\x33\xc9\x54\xde\x01\x95\x4c\x66\x04\x24\xe8\xaf\x22\x8c\x5d\xfd\x27\x75\xdc\x27\x23\xd9\x18\xee\x9c\x7b\x41\xb6\x05\x8f\xdd\x6d\x06\x92\x98\xeb\x55\x09\x64\xe5\x23\xa8\x91\xd5\x05\x9c\x23\x28\x8b\x6a\x9b\xf0\x3d\x3c\xe0\xe3\xfa\xc7\x74\x64\x58\x6b\xf3\x9d\x40\x85\xb1\x7e\x30\x44\x42\x27\x5a\x40\x8f\xc1\x3e\xbb\x40\x66\xeb\x3b\x90\x41\x23\x6f\x5c\xc4\x51\xd1\xe1\xa8\x50\xa2\xae\xd0\xe8\x19\xd4\xe8\xec\x48\x16\xc0\xaf\xf5\xb4\xe8\xc3\x05\xcc\x45\x64\x4d\xa3\x08\x56\xe3\x13\xbb\xef\x8b\x80\xc0\xec\xfb\x20\xe8\x5e\xaa\x81\x62\xac\x3f\x66\x07\x6c\x1f\x0b\x8c\xb2\x82\xe3\xd8\x7b\x80\x49\xb0\xdd\x09\x8e\x49\xb1\x70\x4e\x96\x02\x70\x15\x3b\xc1\x69\x4a\xa8\xe3\xd7\x22\x46\xf9\xa4\xfc\x4a\x09\x74\x60\x59\x79\x80\xe2\xe6\xba\x87\xc0\x4e\xb7\x20\x91\xf4\xb1\xba\x07\xb3\xf8\x82\xc4\xf6\x59\x9e\x05\x89\x2d\x5b\x83\xc9\xcb\x5c\xf0\xec\x80\xcb\xd1\x82\xc4\xde\xe5\x5f\xb8\x22\xa0\x9f\x5b\x02\xb7\x61\xf7\xd2\x00\xcc\x6d\x00\xcc\xf3\x62\x23\x83\x14\xba\x4b\x45\x1d\xe1\x2e\xab\x73\x73\x15\x1c\x31\x16\x69\x64\xae\xd7\x4d\x21\x1c\x9b\x2b\x41\x30\xd6\x74\x59\x4e\xc1\x62\xe3\xe0\xd9\x81\x91\x3f\xa9\x48\x7b\x18\x92\x8a\xb4\x87\x91\x5e\x7a\x79\x55\x24\x97\x68\xcd\x89\xe3\xfa\x22\xa9\x72\xf5\xf6\x92\x7e\x4b\xed\x44\x36\x2c\xe8\xc2\xd3\x48\x0b\x1d\x9a\xca\x90\x98\xe3\xe6\xb6\x1d\xdc\x32\x5c\x14\x25\x80\xa2\xa9\x76\x6f\x90\x57\x91\xde\xba\xd6\x33\x58\xad\xa8\x87\xf4\x00\x71\x1e\xfb\x82\xdb\x1f\x1d\x40\xcd\xf1\xda\x58\x06\xed\xab\x52\xf0\xb0\x9b\x2c\xcf\x7d\x4d\xca\x85\x55\xc3\x82\x50\xa7\x76\x1f\x90\x92\x50\x5e\x98\x43\x8a\x01\xf8\x3f\x2b\x48\x6f\x34\xe1\x4c\x0c\x30\x8f\x68\x2a\x8f\xa1\xef\xe1\x9d\x0c\xea\xbd\x61\x60\x2b\xe0\xbf\x5c\x60\x71\xe7\x02\xa3\xe8\x8c\xb7\xae\x61\x07\x1c\xf8\xa8\x87\x8c\x80\xc6\x31\xec\x80\xb5\x94\x7a\xc8\x00\x10\xe7\xae\xed\x50\x03\xee\x65\x5b\xa7\x0a\xf6\x06\x64\x07\xb2\x37\x12\x21\x86\x68\x23\x11\x20\xe8\x4a\x04\x18\x3e\x6c\x8f\x66\xc6\x70\xdc\x23\x10\x63\x1a\x84\xb2\xb1\x63\x1b\x1c\x6a\x0a\xab\x24\x48\x48\x0b\x5c\xe8\x45\xec\xfa\x6f\x9a\xaa\xbe\xc5\x33\x94\x93\x5b\x5c\x95\x2d\x70\x7e\xab\xa3\x2f\xe6\x24\xba\xfe\x56\x2c\x7d\x34\xf2\x3d\xe6\xab\x8d\x04\xfe\x9b\x38\xc0\x8f\x38\xc3\x66\x45\x01\x33\x37\xf5\xbc\x4a\x9d\x5a\x67\x39\x8e\x37\xf9\xab\x48\x57\x0e\x19\xef\x6f\xdd\xe4\x3a\xfb\x16\xdf\xe9\x93\xec\xbf\x28\x14\xe0\xfa\x8d\xf6\x0c\x92\xb9\xd0\xdb\xb2\x30\x15\xd2\x98\x96\x85\x29\xb4\xc9\x71\xf0\xb2\xec\x60\x7c\xc0\xc0\xf5\x96\x5a\xc7\x2e\x13\xbe\xd9\x98\xaa\xe4\xe0\xe5\x46\x65\x1b\x50\xc7\x89\xca\x21\x75\xb4\x23\x60\x6c\xc7\xe9\xc5\x0a\x82\x99\x01\x13\x19\xe4\x5e\xf8\x45\x7e\xeb\x24\xd2\x59\x3b\x6e\x1c\xb0\x14\x52\xc7\x8f\x23\x92\x80\x51\xae\x11\xdc\xb0\xa3\x5a\x1d\x94\x0c\x40\xcc\xf1\x58\x24\x83\x5a\xce\xc0\x8e\x81\x1a\xe6\x90\xfc\xe4\x6c\x39\x21\xda\xd9\x72\x42\xd8\x35\xa7\x4b\xc0\xa9\x0e\x4c\x34\x67\x81\x80\xae\x70\x6c\xa1\xb6\x55\x66\xcd\x85\x97\xf5\x68\xc5\xda\x09\x59\x97\x2d\x9b\x2a\xff\x4d\x36\x38\xd9\x35\x1b\xcd\x73\xb2\x93\xac\x21\x47\x97\xe8\x58\x72\xdc\x7a\x95\x0c\x3a\x6e\x54\xb6\x19\x35\xac\x2f\xeb\x60\x77\xdd\x0e\x95\xc3\x1f\xc0\xfe\x8e\x5e\x6a\xf9\x23\xcd\xbd\x9c\xac\x4e\xd9\xc1\x48\x03\xba\xdf\x60\xd7\x4a\x8f\x2d\xcb\x20\x5b\x9a\xa3\x2f\xc0\xc4\x62\xcf\x38\x46\x4a\xd4\x05\x20\xa7\xde\x32\x0a\x18\xa1\x33\x23\x31\xd4\x3a\x50\x59\x95\x13\xa0\x37\x3e\x2c\xb0\x98\x38\x0f\x6a\x41\x3d\xf4\x55\xc1\x48\xc6\x55\x5e\x43\xe8\x28\xdc\xbd\xe6\x0e\x9b\x99\xb7\x2c\x7f\xf4\x72\xdc\x40\xc6\x97\xee\x98\x8c\x15\xea\x1a\x9b\x02\x07\xf3\xdd\xfe\xad\x30\x63\xf9\x51\x55\xe4\xb0\xbc\x24\xd7\x12\x0f\x75\x0b\x01\x29\x62\xa3\xaa\xbe\x7d\x6e\x51\x8f\x08\xcd\x0d\x24\xae\xb7\xdf\xd8\x8b\xd9\xe0\xf0\xb7\x21\xbd\x67\xf4\x52\x43\xb3\xd1\xb3\xc7\x4d\x5b\x75\xf1\xb1\xcc\xc3\x72\x7b\x08\x3f\xd6\x80\x7b\x0a\xef\x93\xda\xc3\x78\x1f\xbf\x45\x95\x4c\xcc\x93\xa0\x60\xc8\x90\x90\xbe\x25\x92\xa8\xc1\x7e\xcc\xec\xec\xd6\x7e\x83\xfd\x19\xe6\x47\x29\xca\x6d\x20\x8e\x74\xbc\x3f\x5b\x15\xe4\x8d\x73\x60\xf1\x92\xf1\x72\x64\x63\xbc\x15\xcf\xaf\xdc\x46\x13\x65\x99\xc4\x1b\x36\xc5\x8a\x8f\xaf\xb7\x08\x79\x8c\xbc\x69\xe1\x45\x28\x74\x07\xc0\xae\x01\x91\x06\xec\x88\x58\xc8\x8c\x08\x36\x90\x19\x11\x35\x3d\xcf\x38\x8e\x70\x6c\xb6\xc4\xa3\xc0\x87\xdd\x66\x22\x6f\x98\x34\x45\xb9\x37\x3a\x58\x65\xf1\x0e\xdf\x62\x9e\xe1\xd2\xfc\x56\x23\x25\x6f\x71\x56\x38\x21\x0e\xdc\x22\x3c\x22\x9d\xfb\x74\x43\x9c\x57\xbc\x6a\x98\xbc\x7c\x71\x5e\x4c\xed\xad\xb1\x91\xd7\x00\x97\xc0\xcb\xa0\xe3\xc7\x2f\x45\x2b\xcc\x0b\x42\xc1\xa6\x2c\x24\x89\x97\x49\x57\x51\x78\xe5\x77\xcc\x62\x60\xa2\xdc\x44\x23\x9d\x6d\x11\x45\x18\xc7\x66\x4c\x42\x1f\x76\xc7\x64\xea\xd7\x47\x51\x54\xc7\xa4\x94\x85\xc7\x9f\x7e\xaf\xf8\xed\x1d\x75\xfd\x2a\x57\x5b\x3a\x52\x62\xcd\x13\xcc\xa1\x83\x79\x92\xa8\xe7\x44\x94\x65\x2c\x6c\x08\x74\xa4\x97\x9d\x2a\x62\xc3\x22\x02\xab\xed\x12\x71\x94\xa6\xc6\xf1\x1f\x56\x16\xba\xf4\x57\x1a\xea\x5c\xe7\x42\x49\x6c\x1e\x8f\xa4\xd6\x07\xae\x13\xd8\x69\x48\x97\x2c\x75\x9e\x62\x92\xc5\x70\x77\x92\xd0\x25\x8f\x0a\xec\xf2\x3c\x75\xde\x4f\x19\x19\xc0\xd8\xae\x9d\xe9\x23\x22\x36\xa0\x1c\x71\x7d\xaf\x6e\xdc\xed\xfa\xb8\xd6\x9c\x40\xe7\xe3\x8e\x52\x96\x68\x0a\xa3\x5c\x39\xea\x4b\xf5\x00\x14\xd2\xbf\xab\x28\x51\x32\x17\x47\x23\x99\x6a\x00\xbb\xf3\x8a\x9a\x27\x72\x80\x29\x69\x16\x39\x7d\xa0\x10\xbc\x81\x35\x2b\xae\x2e\x63\x49\x5b\xda\xfd\xc3\xc6\x2d\x9b\x33\x9e\x97\x74\x1c\x09\x6e\x1c\x67\x67\x6f\x13\xaa\x30\x76\xb9\x8d\xba\x6f\x05\x2b\xa4\x92\x7b\x99\x59\xb2\x1b\xfb\x0e\x91\x14\x08\x00\x99\xad\x32\x96\x35\xd5\x6f\x17\x75\x46\x3d\x15\xd6\x7b\xff\xc8\x59\x47\x9d\xac\x46\x1a\xd8\x28\x14\x54\x84\xa9\xad\x4b\x6d\xf4\xd9\x52\xd6\x51\x69\x40\xc4\x04\xbf\xa9\x8e\x00\x35\xcf\x28\x75\xc0\x42\x2f\xc2\xa6\xae\x03\x8f\x0c\xbb\x13\x5b\x00\x1b\xa5\x81\x8a\xb0\x75\x1d\xbb\xe0\xcd\x86\xac\x73\x7b\x85\x04\xe6\xb3\x7d\x6a\x1a\x5e\x58\xa0\x36\x9c\xc8\xb0\x3d\x91\x93\xe9\x2b\x4f\xd3\x2a\xbd\xd9\x8d\x30\xf5\x91\x8a\xeb\x86\x17\x6b\x15\x6b\x7b\x31\x36\x15\x2c\x1e\xc6\xba\x04\x2c\x6f\xac\x4b\x32\x24\xb8\xed\xff\x27\x7f\x61\x7d\x91\x52\xde\xf9\xa6\x85\x73\x3d\x18\x74\xa0\x5b\xe7\xd1\x27\xdb\x73\xb7\xce\x33\x75\xa0\x52\xd3\xdb\x43\x07\x81\x62\xde\xbb\x34\xb0\x7a\xbf\x77\x69\x60\xba\xde\x3a\xd7\xa2\x9c\xdc\xe5\x15\x0d\x07\x78\xe9\x78\x06\x01\x9f\xde\x7a\xce\xc9\x90\xfb\xad\xdd\xe7\x8d\x03\x99\xcc\x71\x79\x71\x32\x93\x36\x78\x0f\x70\x4d\xe1\x4e\x04\x77\x72\xec\x4a\xc4\x25\x75\xab\xec\xbc\xea\x19\x59\xf8\xce\xb5\xe0\x74\x15\x62\x04\x21\xf4\xf8\x9d\x63\xc1\x19\x68\x0a\x2b\xec\x24\x44\x1d\x7b\x88\x18\x96\x53\xeb\xb8\x0e\x4f\x69\x30\x1b\x4e\x64\xd8\x7f\x73\xf0\xd4\xf8\xae\x83\x2b\x08\x33\xc1\x44\x07\x35\x35\x02\x6a\x63\xa7\xc2\x10\x6d\xec\x54\x10\x2c\x3f\x51\x78\xea\x3c\xed\x14\xc2\x9d\x60\xe6\x21\x21\x20\x7a\x17\x8f\x60\x2a\xd9\xe7\xae\xe5\x8b\x86\x2c\xce\x98\xf1\xd6\x02\x23\xe8\xe9\x91\x75\x25\x07\xe7\x08\x86\x1d\x00\x1a\x99\xd8\xfb\x24\x70\xae\x74\x5a\xb6\xcf\x40\xb2\xb2\x7d\x46\x64\x6e\x5d\x8d\xe5\x7d\x9b\x53\xeb\x2c\x0f\x03\xc7\x6c\x38\x91\x61\x7d\x50\x06\x07\x53\xcc\x5e\x3f\x19\x83\x79\x9c\xcd\x17\x6a\x8a\xc1\xb2\xc0\x4a\x8f\xea\x31\xf7\x19\x36\x04\x80\x53\x75\x49\xe1\x3c\x4a\x37\x06\x8f\x45\x66\xdd\xdd\x03\xd9\xf1\xe6\xb4\x0e\x1c\x2a\x4f\x1d\x4f\x7a\x78\xe9\x93\xb9\x00\x0c\xcc\x02\xcf\x90\x57\x2f\x07\x80\x93\xa3\x53\x30\xf3\x9b\xeb\xf3\x09\xd0\xb8\xd0\x54\x41\x66\x68\x06\x32\x5c\x7a\x53\xf2\xb4\x62\x3f\x07\xba\x32\x0a\xdb\x60\xe7\xa4\x15\x0e\x07\x4e\x97\x98\x3e\xf6\xaa\x63\xe4\xc6\x7b\x31\xc0\x44\x4b\x6c\x9e\xb2\x03\x2f\x6f\xb6\x2c\xbd\x6a\xc9\xdc\x97\xe3\x60\xa0\xf5\x7e\x05\xbc\x7b\x99\x59\x32\x21\x3b\x6e\xbe\x9d\x11\xcb\x20\x36\x46\xfc\x9e\x06\x58\x52\x82\xe4\xc5\x28\xb8\x5d\xc3\x78\x0c\x6c\x70\x2f\xc7\x98\x93\x99\xbd\x6c\x00\xfd\xc1\x8d\xbb\x4c\x5f\x86\xbd\x8f\x73\x0c\x01\x32\xdf\xe6\x00\x1e\xf0\x1e\xf4\x3c\xad\xe8\x20\x50\x8e\x73\xd6\xd0\x03\x2a\x7d\xd7\xe6\x1e\xdc\x2a\x98\x0d\x27\x32\xac\xef\x74\x76\xe0\x10\xf9\xd4\x59\xc5\xa0\xcf\x9c\x55\x4c\x85\x17\x38\x43\xe6\x30\x7b\x20\xd3\x38\xc7\xdb\x43\x43\xa5\xf3\x85\x71\xd5\x1e\xe6\x20\xd6\x98\x0e\xc1\x3e\x9a\xdd\x9a\x09\xd4\x05\xe3\xf7\xe9\x2d\xb6\xce\x50\x92\xdd\x01\xe2\xc6\x58\xdc\x8d\x5d\xd0\x38\xf8\xc9\x47\xd6\x04\x7c\x86\x38\xa6\xf9\x1c\x67\xda\x9c\x28\xef\x0b\x0b\x8d\x4b\x0e\xca\x40\x85\x5c\xfd\xab\x2f\xb1\x52\xd0\x3e\x69\x00\xd2\xd4\xd7\xbb\x25\x60\x15\x6e\xf8\x9c\x24\x77\x5e\x1a\x53\x98\x15\xa2\x62\x0e\x2d\xad\x10\x85\x20\xe6\x11\xc8\x88\xff\xbf\x0c\x10\xb8\x9d\xd0\x96\x81\x85\xf6\x78\x0c\xe0\xee\x90\xe5\x72\xf9\x7e\xfb\x12\xf3\x1c\xeb\xc7\xea\x03\xb8\x4b\x72\x56\x96\x7c\x50\xed\xb2\xe4\x83\x2f\x92\xda\xa7\x70\xa1\x3f\xec\x53\xb8\x2a\xa8\x5d\xd9\x81\x17\x96\x73\xf5\x62\xa9\x39\xc9\x5a\xce\xcd\x9b\xa7\x03\x38\xdd\x3f\x33\xf9\x41\x5d\x4d\x76\x32\x94\x47\xf3\xf2\x8d\xfc\xa5\x2d\x02\x8a\x4c\x11\xd5\x4f\xf8\xca\xab\x61\x12\x31\xb7\xc5\xb0\x82\xf4\x35\x7e\x4d\x54\x64\xce\xb7\x51\x60\x71\x15\x98\x39\x65\xc4\x0a\x70\x68\x3a\x0a\xaa\xef\xd6\xb7\xd5\xcf\x58\xa9\x3f\xf2\x99\x32\x40\xcc\x89\x63\x5f\x21\xe6\xd1\x57\x18\xd6\xb4\xc8\xcc\x93\xba\xf7\xf0\xa4\x81\xa0\x59\x50\x3f\x6c\x39\xa8\x33\x50\x50\x7e\xa7\xfd\xe7\x60\x09\x5f\x2e\x6c\x8a\x33\x26\xef\x18\x89\x66\x9a\x8b\x46\xc0\xbc\x62\x25\x71\x36\x71\x50\xa5\x8a\x54\x95\x59\x58\xfb\xe7\x18\xa8\x0a\xf9\x8e\xde\x3d\xf8\x57\x2e\xb9\x39\x0d\x03\xa1\x7b\xa6\x3b\x05\xa4\xa2\xd9\x16\xc2\x05\x59\x77\x57\x08\x3e\x69\x62\x0f\xe8\x79\x3c\x41\x16\xce\x56\x51\x25\xc3\x91\x7a\x6e\xd3\x4d\x5c\xb2\xce\x00\xe9\x66\xd3\x8c\x13\x51\xd9\xfd\x7b\x59\x79\x5b\x7f\xac\x8a\x76\x36\xa9\x0a\xf1\xbd\xb4\x60\x81\x00\xd8\xea\xf6\xb0\x76\x03\xe6\x78\x5f\x8d\x24\xe6\xe7\xa6\x37\x1a\xd3\xae\x4a\xe1\x98\xcb\x65\x0d\x9c\xf7\xe4\x81\x4f\x5c\xa0\xab\x29\x32\x6f\x88\xb8\xf5\x2b\x53\xb5\xa3\x47\x7e\xcd\xaa\xf5\x32\x0f\xe9\x06\xb2\xbf\xdc\x67\x74\xe5\xc4\xe0\x2c\x41\xa9\x91\xae\x1d\xac\x30\xab\x4d\x74\x41\x2f\x12\x58\x56\x68\x6f\x81\xae\x94\x18\xe6\xc9\xaf\x0e\x9c\x50\x9e\x71\xb6\x64\x3c\x27\x8c\x9a\x81\x28\xe1\x0a\xed\x0e\x55\xea\x9c\xb9\x74\x4b\x5e\xe9\xa6\x82\x1b\xe1\x0b\x5e\x3b\x67\x95\x35\x0d\x18\xb2\xb2\xaf\xee\x03\xad\x91\x35\xd0\x19\x26\x08\xab\xe3\xb2\xa0\x91\xdd\xbc\x08\xe4\xb7\xb2\x54\x14\x73\xfc\xa6\x2c\x15\x45\xbd\x6e\x4a\x97\x21\x6f\x2a\x73\x4c\x74\xd9\x6f\xce\x1c\x13\x6c\x7c\xe3\x8e\x3a\x2c\xdf\xbf\x55\x5a\x03\xb9\x55\x5a\x23\x64\xc2\x4d\x81\x72\xcc\x29\xb1\xee\xd6\x70\x6b\x4a\xc0\xce\x8c\x97\x94\xd2\x97\xe7\xa9\xfe\x6d\xdf\x9b\x49\x00\x92\xba\xf4\x5f\x75\x51\x83\xcb\xd3\x0b\x13\xe0\xee\x9d\x1b\xd1\xaf\x76\x39\xed\x74\xa5\x8d\x45\xc8\x8e\x77\xae\x9f\x00\x28\x46\xdc\x43\xfa\x80\xc4\xfa\x76\x6c\x07\x1a\xcf\x4b\x57\x73\xba\x80\x59\x9f\xc5\x31\x64\x6c\xc3\x53\x15\x6f\x2e\xd9\x74\x14\x60\x5e\x5f\xeb\x2b\xc0\xde\xba\x19\x03\xa2\x2f\xd4\x4c\x65\x16\xdc\x88\xb2\xf1\xb0\xaf\x10\x73\xc5\xc6\x00\xe6\x82\x0c\xf8\x07\xf9\x66\x29\x05\xa8\x34\x50\x91\x77\xce\x19\x26\x24\x70\x76\x65\x1d\x45\x6f\xef\xdc\x60\x85\xd8\x3b\x37\x48\x21\xf6\xce\x4d\xa4\x10\x73\xe7\xa6\xa7\xeb\xe6\xdc\xb9\xe9\xa9\xa2\x73\x73\x9f\x66\xa0\x88\xec\x2d\x1c\x5d\x5d\x6b\x1c\x03\xc0\xbd\x84\x03\xa5\x7b\xd7\x72\x64\xe9\x39\xd1\xd3\xb1\x3b\xd0\x00\x75\xbc\x2e\x20\x9d\x7b\x0d\x07\xb2\x76\xaf\xe1\x08\xfe\x7a\xe7\x00\xe0\x3f\xc4\xdd\x7b\x39\x50\x3d\x7d\x2f\xe7\x41\x07\x44\xf4\x27\x19\xb0\xf7\x72\x22\x05\x38\xf7\x72\xb0\x81\xf4\xbd\x1c\xb8\x31\xf2\xce\x75\xcd\x00\x5f\x7a\xee\x21\xc0\x5c\xae\x6b\x06\xe8\xd3\xdc\x43\x86\x12\xb1\xf7\x72\x80\x9b\xe4\xbd\x9c\x07\x48\x6f\xee\xc9\x41\xa3\xec\x35\x39\x08\x3a\xf7\x72\x20\xa7\x38\x75\x2f\xdd\x40\x5e\xee\x55\x9d\x58\x03\xdc\x47\xac\x8f\x22\x74\x14\x46\xe6\x9d\xb9\x48\x85\x9d\x4b\xcd\x53\x05\xb9\x97\x9a\x35\x99\x19\x34\x91\xef\x3b\xec\x47\xeb\x25\xa0\x0f\xa6\x17\xae\x1e\x2c\x06\xab\xcb\xbb\xa3\x17\x4e\x60\xe3\x81\xc6\xd4\x89\xa9\xbe\x37\xe6\xc4\x5e\x2e\x2b\xf1\xf2\x1d\x45\xee\xf9\xb1\x43\x1d\x3c\x3f\x76\x68\x58\x59\xf0\x02\x6f\xd9\x4b\xec\xd0\x12\xc7\x49\x1d\xe4\x90\xe3\xa4\x0e\x3b\x6f\xee\x38\xa9\x83\x8a\xc9\x3d\x27\x75\x91\xc7\x3b\xe5\xc8\x16\x74\x91\x4c\xa1\x83\x2a\x03\x66\x2e\x6b\x82\xec\x03\xc7\xda\x0d\x57\x9f\xc6\x26\xb2\x74\xf7\x09\xa6\x71\xc5\x28\xdd\xf1\xc8\x2b\x28\x2a\x3f\xe0\x6a\x69\xcb\x4e\xbf\xf0\xea\xb1\x2d\xc0\xbd\xff\xd4\xd5\x09\x4b\x17\xa0\x4c\x5d\x37\xde\x80\x1a\xda\xd8\xea\x15\x28\xd8\xea\x9a\xd8\xca\xad\x94\x7e\x35\x56\x57\xd3\xb4\xe2\x79\x65\xa4\x9d\xab\x44\x8e\x8f\xa5\xec\x7f\x27\xce\xf8\x54\xca\x91\x14\x31\xd5\x8b\x50\x3d\x37\xaa\x7c\x3f\x29\xd2\x91\x1b\x2e\x36\x8d\x75\x5c\xe5\xde\xd2\xd8\xb4\xb9\x7c\x3b\x69\xe0\x44\xa8\xd9\x81\x3a\x0e\xe6\x77\x9d\x69\x6b\xf5\x82\x52\x64\x12\x6d\x38\x20\x2c\xc7\x69\x7d\xa8\x5b\x8e\xf0\xee\x28\x99\xa1\xd8\x70\x49\x09\x5e\xc0\x50\x91\x95\x6a\x46\x36\xae\x32\xbe\xbd\x72\x9c\x96\x56\x58\x47\x54\x92\x74\xfd\x18\x7f\x08\xf5\xf3\x91\xf2\xde\x0d\x27\x59\xe5\x85\x3c\x10\x83\xee\xb5\x10\x18\xe0\xd4\x71\x2a\x87\x41\x4d\x8d\x0b\x39\xc8\x97\xca\x4d\x8d\xd0\xa0\x1e\x42\x9d\x4f\x8d\xc0\xda\xe2\x5e\xa3\x88\x25\x60\xaf\x51\x48\x0a\xe7\x1a\x05\x48\x7a\xf7\x2a\xc0\x40\x02\x25\x65\x10\xba\xc0\x51\x06\x65\xc6\xee\x25\x00\x99\xb3\x67\x25\x81\xf1\x13\xbb\x32\xef\x89\x89\x31\x9c\xe6\x73\x59\x64\x53\xfd\x34\xd6\x46\xb8\xd2\xc7\x97\xfe\x49\x1e\xe8\x23\xae\xab\x3e\x4c\xff\xea\xa5\x3f\x60\x4f\xcf\xd5\x1e\xc6\xa4\xa2\x8c\x82\x7c\x70\x5c\xed\x65\x3a\xb3\x6e\x81\x94\xf4\x83\x5c\x3a\xce\x7f\x92\x3f\xed\x22\x38\xd6\x00\xf7\x10\xcf\x85\x1d\x46\xd7\x9b\x2b\x50\x2b\xe7\x2d\xdf\xb1\x0a\x63\x97\xf3\xb9\xfb\xb8\xef\x48\x01\xd6\xff\x68\x0c\x3e\x54\xef\x8a\x14\x1f\xe2\x14\xad\xf4\xc7\x15\xc6\x60\xdf\xe6\x45\xea\xba\xa8\x43\xea\x7b\xdd\x5a\x91\xee\xdc\x53\x77\x45\x7d\x32\x0f\x11\x3d\x92\x4d\x9d\x86\x02\x89\x75\x30\x85\x0a\x9d\xbb\x1a\x0a\x58\x3a\x33\x0f\x09\x81\x46\xa7\x88\x20\x5e\xb5\x10\x1c\xf4\xdd\x83\x48\x58\x42\xdd\x73\x48\x08\x9a\xcd\x61\x0f\xb2\x72\x95\x1d\x2c\xe9\x1d\x24\x01\x1a\xfb\x8a\x43\x5f\x96\xe8\x00\xb2\x0c\x67\x0f\x2a\x5b\x65\xf7\xa0\x03\x19\x76\xf6\xa0\x63\x40\x7c\x76\xec\x02\xe6\x6c\xf4\x64\xc9\x46\xb9\x0a\x21\xde\x28\x57\x10\x8c\x59\xae\x0d\x35\x48\x03\x9a\x1d\xfa\x2a\xac\x1b\x0f\x57\x0a\x32\xcf\x17\xb6\xaf\x10\xa3\xc2\x8f\x00\x70\x74\xf6\x91\xa6\xf0\x2f\xcc\x64\x4a\x53\xba\x07\xaf\x6f\xf5\x69\xb6\x3d\xf8\x99\xdd\xd9\x23\x16\x68\x26\xf6\x5e\xb6\x0f\x07\x0a\xa3\x3e\x70\xaf\x97\x59\xd0\xb0\xcf\xcb\x3b\x4e\x20\x2a\x81\x60\xd4\xcb\x2a\x8f\x28\x66\x62\x71\x93\xc0\x00\x94\xaa\xf3\x97\xee\xd7\xaf\xa0\x4e\x73\xf7\xfb\x57\x63\xa0\xb1\x14\x23\x49\x61\xe2\x81\x29\xe7\x8c\xe7\x1b\x9f\x64\x87\x98\x8d\xd7\xb5\xcb\xa7\xd7\x5d\x8d\x6d\x32\x9e\x42\x36\x9b\x15\x1f\x88\xf2\xdf\x76\x87\x9b\x88\xd9\x5c\x7d\xe7\x47\x30\xe0\x39\x99\x99\x17\x1f\x41\xbf\xc9\x1c\x20\x32\x40\xa2\x91\x8e\x46\x6e\x7d\xc4\x9e\xbe\xc9\xa0\xe3\x90\x8d\x24\x62\x8e\xd4\xbb\x2a\x7c\x53\x02\xcc\x33\xd4\x58\x85\xcd\x07\xf2\x02\x09\x98\x77\xe6\x62\x15\x36\x17\x2c\x13\x09\x18\x57\x6b\x38\xfe\xc8\xc8\xc2\x5d\x12\x7a\x12\x72\x5f\x84\x83\xaa\x97\x9f\x7f\x80\x77\x57\xe5\xe7\xb8\x34\xab\xc1\xc8\x0a\x78\x23\x53\x2e\x50\x36\xd7\x73\x18\x36\xb7\xd9\xc2\x7f\x49\x19\x4a\x2e\x0f\xe8\x82\xe8\xfc\xbb\x0a\x30\x8f\x38\x20\x19\x34\x26\xb0\x48\x85\x8d\x23\x57\x64\x6e\xee\x9c\x9f\x3e\xbf\xb0\x1c\x08\x84\x2c\xc9\x2d\x0f\x4a\x24\x75\xac\xfd\x89\x42\xb4\xdc\xee\xc9\x70\x7d\xb7\xfe\xb3\xc8\xaf\x72\x90\x04\x95\xa9\xac\xc0\x90\x6a\x89\x8c\x5d\x71\x20\x05\x2e\x20\xce\x8b\x6e\x0a\xf4\xec\xfb\xd9\x8d\xfd\xb4\x20\xcc\x04\x00\xcc\xd1\x45\xd7\xb4\xcd\xf9\xac\x6e\x07\x16\x62\x00\x0c\x61\xcf\x76\xc2\x8d\xfd\xbc\x38\x54\xf7\xc6\x71\xab\x48\x34\xa0\x47\x53\xce\x81\x1b\xdf\x83\x22\x71\x30\xc3\x98\x86\xd2\xd4\x22\xd0\x80\xc9\xac\xa3\x11\xd7\xc1\xcb\xc1\x6c\x66\x92\xd2\x7d\xce\x17\x56\xa4\x47\x90\x0d\x2f\x46\x49\xb1\xb1\xc9\x27\xad\x84\xbb\x6a\xeb\x38\x74\x22\x4b\x7e\x68\x95\x18\x2f\x61\xc7\x44\x5f\x52\xa7\x12\x3d\xdd\x0c\xad\x0d\x48\x76\xbd\x29\xdc\x36\x64\x37\x85\x1f\x5d\xb6\xf7\x9c\x57\x0c\x75\x30\xe9\x2b\xba\x11\xcc\xbc\xaa\xd8\xaf\xce\x9e\x2c\x37\x35\x92\x5f\x11\x3c\x37\x1f\x60\x96\x61\xf7\x83\xcc\x3a\x9c\x68\x00\xf8\x32\xe7\x08\x3c\x39\xfc\xef\x8a\xbb\x51\xf6\xb4\x26\x56\xb0\xdc\x0a\xc9\x7b\x73\x0e\xd3\x41\x13\x4d\x10\x76\x1c\x59\x31\xb5\x32\x11\x1c\x41\x3c\x5f\x1f\x19\x36\x8e\x33\x03\x15\xb6\x49\xa4\x2c\x2e\xa6\x8b\x22\x35\x50\x28\x21\xa3\x31\x80\xad\x40\x00\x26\x1f\x24\x01\x47\x0e\x4e\x55\x55\x5d\x39\x38\x96\x90\xeb\x51\x24\x1b\x60\x11\xdd\x06\xcf\x61\x67\xe0\x60\x37\x6e\x53\x36\x38\x26\x5a\x5a\xfb\x85\x3e\x5d\x3d\x09\xde\x94\x5a\x61\xcf\x70\x40\x45\x16\x88\xf9\xd2\x5b\xdc\xd7\x88\xb9\x7b\x26\xfb\x27\x2a\x9d\x94\x8c\x14\xaa\x95\xa3\xa9\x0a\x97\x4e\x4a\x60\x29\xf4\x7d\x26\x81\x74\xb3\xc3\xa4\x13\x51\x3d\x29\x71\xb3\xf2\x9d\x24\x55\xd1\x8e\x73\x95\x42\x4a\x27\x25\x48\xc3\xce\x49\xc9\x40\x63\x65\x6d\xb0\x88\x2a\xba\x5f\x11\xcd\x2f\xe6\xc8\x33\x2f\x65\xda\x5e\xd4\x81\x4b\x33\xe7\x7e\x30\x2b\xf4\x26\x6d\x20\x57\xeb\x62\x19\x02\x5f\x4f\x65\x11\x4b\xf5\x0a\x77\x47\x86\xba\x32\x24\x3b\xdc\xf8\x84\x81\x74\xb2\x1f\xa1\x93\xf9\x3a\xdf\x84\x85\x2d\xad\x40\x9c\x51\x94\xa3\xe3\xb8\x91\xc9\xb0\x61\xdf\xa1\x0a\x3b\xd3\xa0\x27\x8b\xf1\x3d\x4c\x1d\xcc\x63\x3a\x95\x7e\x6e\x8e\xdc\x87\xd1\x58\x43\xb6\x16\x8a\xca\xbd\xc4\x2b\xfb\x6c\xe9\x4e\x36\xd5\x78\x3b\xd9\x22\x05\x98\xda\xaa\x44\xce\x64\x8b\xe4\x08\x2f\xab\x75\x75\x66\x56\x68\x68\xec\xc4\x18\x3a\xd8\x4d\xa9\x77\xfc\x29\x34\x75\xc1\x9b\x52\xdd\x9c\x29\xa4\xba\xda\x69\x76\x4f\x23\x66\x0a\x41\x01\x9e\xcf\x94\x46\x8c\xf0\x86\xee\x73\x7d\xa6\xc6\x9a\xc2\xbf\x35\x9f\xdd\x51\x47\xa1\x07\xa6\xfa\xa2\xfc\x87\xee\xe1\x13\x80\x17\x08\x2a\xf2\x57\x5e\x6f\xd5\x73\xc4\x67\xc6\xa1\x00\x24\xfc\x05\xd2\x3e\x73\x70\x07\x38\x37\x41\x18\xff\xdc\x98\x0c\xa4\xfb\xc1\x85\xb7\xd1\x03\x0a\x0f\xe9\x03\x8d\xb3\x3b\x83\xe3\xa4\xdc\x43\xba\x40\x63\x54\x29\x49\x60\xf4\x28\x08\xc6\xf6\xa3\x5d\xa2\xd7\x73\x9c\x9a\x23\xd8\x2e\x1c\x0d\x5f\x94\xb7\x1f\x62\x18\xf3\xf2\xf6\x43\x8c\x77\x3e\xc7\x1c\xab\x0f\x83\x74\xc0\x6d\x04\x90\x84\x99\x4f\x74\x01\x78\xf1\x08\x68\x1f\x5b\x1c\xc9\xa4\xf6\xb5\x45\x03\x64\x2b\xed\x13\x15\x87\x1a\xbb\xf5\x11\x12\x5d\xfb\xb7\x45\x47\x1a\x2e\x29\xf4\x95\x7b\x87\xfd\xc4\x3c\x4e\x5c\xb9\x54\x38\x96\x99\x38\x9f\x2e\x91\xc8\xb5\x75\x65\x94\xe5\x54\x4a\x79\x79\xfa\xee\xad\xe4\x10\x0c\x04\xea\x9b\x48\xf7\x60\x28\xca\xcb\xdf\xb3\x73\x85\x6b\xd7\x00\x9e\x3b\x78\x57\xa3\x15\x47\xf1\xbe\x8e\xf1\xbc\xc4\xa1\x5e\x64\x81\x33\xa3\x30\x23\x39\x5c\x80\x29\x2a\xd8\x8e\x18\x0b\xca\x3d\x88\x0f\x08\x9a\x07\x2e\x25\x81\xff\x9c\x6b\xce\xb0\x3e\xd0\x80\x9d\x62\xce\x96\x53\xcd\x4f\x5d\xd8\xbc\xe6\x6c\xe9\x5c\xeb\x0e\x25\xa2\xcb\x84\x81\xaf\x28\xe7\x53\x49\x54\x52\xce\xfb\x0a\x35\x8e\x1f\x08\xac\x81\x39\xcb\x4c\x0d\x60\x44\xbc\x43\x73\xe0\x41\x8e\x74\x5f\xc8\x57\xf9\x2f\xde\xed\x1f\x1e\xb9\x40\xee\x99\x4c\xfb\x60\x1a\xd2\x98\x35\x35\xcb\xef\x41\x55\xbd\x6d\xe5\xcb\x07\x1b\x9d\x6d\xa7\x3d\x27\xc6\x18\x2b\x23\x07\x74\x1c\x70\xa5\x8d\x6a\xb3\xff\xad\xae\x92\x99\xac\x7d\xac\x72\xc1\xa5\x5c\x9d\x9d\x1c\x02\xd3\xdc\x05\x27\x4b\xe7\x5b\xcf\x6a\x96\x0b\xd0\xd2\xa9\x82\x33\xb3\x7f\x8a\x25\x90\xdb\xc7\x2e\xba\x32\xd9\x12\x7f\x31\xa7\x34\x5d\x70\x00\xbf\xa8\x28\xbd\xd0\x4d\x15\xa5\x57\x94\x71\xe1\x58\x70\x06\x92\xca\x08\x23\x10\x90\x8e\xe5\x01\x56\xf8\xdc\x31\x3d\x80\xc1\xec\xc2\x7d\x1d\x63\x20\xf3\x70\x11\x60\xdb\x3b\x72\x6f\xae\xe0\x41\xb7\xdc\xb1\x39\x46\x71\xe5\xb6\x25\xb6\x71\xd5\x9b\x95\x82\xdd\x2f\x1d\x8f\x58\xd1\x97\x85\xe3\x11\x2b\xc3\x76\x0d\x09\x81\xde\x86\x45\x2f\x14\xce\x92\xa2\xe3\x99\xf3\x5e\xb9\xe8\x93\xcb\xa9\xf3\xa2\xa8\xa8\x51\xe1\x00\x60\x82\xbb\x74\xbf\x34\x01\x0d\x2a\x3c\x44\x0c\xd6\xa5\xf5\xc5\x15\xdd\x54\x58\x5f\xdc\x29\xc4\x9a\x6e\xef\x42\xac\xe9\x75\x08\xba\x9f\x37\x15\x8c\x76\xe9\x7a\xda\x82\x29\xb9\xf0\x90\x10\x10\xc7\xf8\x09\xd5\xf6\x4e\xeb\xa0\xde\xe5\x85\x63\x04\x64\xa5\x85\x43\xf0\xd0\xa5\xe3\x29\x2b\xfa\xa4\x70\x3c\x65\x21\xec\x9c\xe0\x41\x8d\x9d\xef\x93\xc2\xac\x2c\x9c\xeb\xc2\xa0\x92\x15\xee\xa3\x52\xd0\x02\xef\xbb\x98\x91\x41\xec\x3b\x34\x0a\x73\x3e\x50\x07\x39\xbb\x6f\x40\x89\x06\x5c\x3a\x0e\xb1\xa0\x57\x16\x2e\x00\x9d\xaf\x9c\x12\xc1\x9f\xe4\x92\xc6\xda\x09\xf1\xca\x04\x5d\x07\xc4\xc4\x45\x1d\x0f\xc4\xbe\xc6\x37\xb8\x20\xc2\x88\x3b\xfb\x57\x90\x40\x00\x38\xef\x58\xc0\x31\xf8\xa5\xf3\xfe\x31\x58\x86\x0a\x17\x80\x64\x15\xf9\x0b\x1d\x51\x91\xbf\x62\xae\x29\xbb\x9b\xf3\xc5\x46\xc8\x72\x89\xca\xd6\xb8\x0d\x06\xba\x4b\x8f\x2a\x76\xa8\xca\x96\x44\xe0\x41\xa1\x64\x97\x3e\x04\x09\x3d\x52\xf9\xd2\xa4\x82\xcb\xd4\xb1\x84\x37\x1c\x2d\x03\x7b\x2c\xab\x1f\x76\x94\x8c\xb4\xdc\xf0\x59\x47\xc9\x51\xcb\x72\xd7\x2e\x97\x1b\x1e\x57\x1a\xe8\x98\xaa\xf9\x72\x08\xb9\x58\xff\x22\x59\x43\x13\x8e\x3b\x2a\x7e\xee\x02\x97\xde\xc6\x1d\xf5\x15\x8d\x85\x54\x36\xe5\x43\x47\x83\xea\xb5\x56\xa6\x54\x63\x65\xce\x33\x61\x4a\x7a\xdf\x69\x8c\x0d\x62\xa7\x86\xc2\x9c\xa9\x01\x1d\x60\x4f\xe6\x42\xd9\xab\x2e\x00\xbd\xe9\x9c\xc0\xc0\x44\xbe\xac\xbc\xaa\x0c\x73\xb3\xb2\x58\xc0\xbc\x72\x3f\xcd\x08\xd2\xd8\x7d\x9f\x1a\x0e\x5c\x0a\x0f\x01\x49\xe1\x1c\xf9\xf4\x55\xd8\x9c\xf0\x88\xd5\xb8\x70\x64\x36\xb4\xfe\xd2\x78\x14\x03\xdf\x1b\x8f\x62\x08\xf9\x5f\x72\x14\x03\x78\x8b\xe8\x8c\x9b\x93\xb4\x08\x10\xbe\xc1\xba\x72\x8b\xb8\xfb\xaa\x33\x34\xe0\x16\x71\xca\x84\x12\xa9\x2f\xf0\x04\x8a\xb2\x64\x82\x11\x88\x01\x06\x0a\xa8\xf8\xc1\xdd\x3a\x8b\x0d\xa4\x72\x16\x1b\x95\x8b\x75\x53\x00\xcd\xeb\x16\x71\xcf\x10\xde\x51\x58\xc5\x80\x61\x8c\x90\x6e\xac\xb5\x64\xf8\xd1\xe5\xad\xdb\xc6\x58\xbb\x87\x73\xa3\x5d\x1d\x3f\x56\x35\xdc\x70\x9d\x69\xda\xf1\xa3\xdc\x5b\x4b\xb0\x61\xbf\x35\x12\x09\x81\x47\xe3\x7b\xab\xe9\x82\x8b\x98\x88\x37\xdf\x16\x17\x6c\xf2\xde\xfa\x51\x43\xde\xd6\x8f\x1a\x82\xee\x25\x23\x00\xdc\x3b\x46\x50\x80\x4b\x01\x19\xba\x14\x53\x4d\xa1\x8d\x2b\xf0\x92\xde\x2d\xc6\xa6\x5a\x1d\x70\x3b\xb3\xdf\x6f\x07\xe5\xf9\xbd\x3d\xcf\x0c\x65\xac\xd5\x19\x11\x00\xf6\x2b\x22\x1d\x38\x88\xbe\xc5\xea\x9b\x1a\x6b\x48\xee\x7e\x60\x43\x96\x08\x9c\xaa\x22\x73\x37\x6a\xc3\x95\xd1\xae\x03\xab\x67\x4c\xd6\x0e\x74\x8e\x97\x88\x23\x73\x36\x3f\xec\x8f\x9c\x48\x6f\xbf\x11\xc8\x88\xea\xc3\x2c\xa2\x11\xef\xcb\x4a\x81\xe8\xbd\xdb\xb2\x52\x00\x83\xea\x3c\x04\x21\x39\xc0\xbd\x58\x68\x6f\x07\xde\xba\x77\xf8\xec\x45\xbc\xf7\x95\x75\x0d\x26\x4d\x65\x5d\x83\x49\x5d\xf6\x51\xbd\x75\x5f\x97\x83\x8e\xa9\x08\x2e\x18\xa2\x8a\xe0\x82\x61\xf5\xad\x97\x96\xe1\x7d\x23\xa6\x8b\xbb\x06\x18\x1f\xc7\xd5\x79\xf5\xde\xe3\x4f\xe0\x8c\x2f\x64\xf6\x05\xcd\xb4\x54\x12\xd0\x07\xe7\x50\x16\x3c\x02\xef\x5c\x40\xc8\x87\x3b\x1c\xdb\x69\x02\x27\xbb\xce\x27\xb3\x3b\xe0\x4e\xfe\xc1\x01\xc0\xea\x03\x14\x86\x29\xc7\x80\x10\x73\x93\x40\x7e\xbd\xf3\x43\x79\x84\x45\x75\xee\xca\x23\x2c\xaa\xf4\xa1\x32\x44\x82\xa9\xef\x2a\x43\x24\x72\xbd\xf3\xca\xb8\xe3\x2e\xb3\xdd\x71\xac\xdf\xff\x57\xc8\x87\xca\x70\x09\x96\xb8\xab\x0c\x97\x90\xdf\xf7\xf6\xe4\x06\x24\xe2\xbd\xfd\x8a\x67\x1f\xbe\x63\x70\x6f\x4f\x6c\x40\xd1\xba\x77\xbf\x11\x2c\xb8\xe5\xf7\x72\x8b\x05\x17\xdc\x97\x5b\x2c\xfa\xfc\x7e\xee\x7c\xe4\x77\x08\xc0\xbe\x05\x44\x47\xfd\xae\x05\x3f\xec\x4e\xee\xcd\x77\x49\x21\x94\x3a\xa9\x21\xbb\xd4\x49\x2d\xfa\xe5\xde\xbc\xe7\x25\x9f\xc0\xbc\x77\x9e\xc1\x81\x4a\xd9\x2b\x72\x08\x78\xe9\xf7\xca\x10\x40\x8b\x2b\x43\x30\x96\xa8\xdd\x33\xc2\xe7\x37\xee\x99\xb3\x43\x84\x0b\x2a\xf7\xee\x57\x8c\x07\x00\x38\x55\x14\xb9\xfc\x5e\x19\x1a\xe8\xd3\xca\xd0\xc4\x80\xda\xd3\x32\x04\x07\x1c\xf7\x85\x5b\x87\x1e\x20\xce\x68\x40\x56\xb7\xbe\x1c\xbd\xbf\x2b\x73\xf1\x1f\xce\xb6\x4e\x14\xb3\x72\xb6\x75\x22\xfc\xc7\xbe\xdd\x2f\x25\x32\xde\x6c\x98\x44\xf8\x0f\x77\x2a\x89\x5a\xad\x5c\x60\x08\x14\x26\x83\x29\xc4\x9b\xf4\x10\x94\x1f\x57\xb8\x07\x9d\xec\x8f\x32\xf3\x88\x71\x5b\x95\x99\x47\x94\xf2\x87\xfd\x3a\x10\x5c\xa3\x5d\xd9\xcf\x03\x81\x5f\xea\x1f\x95\x37\x6c\x44\x63\x57\x95\xb1\x14\x6c\xf6\x47\x65\x14\x44\x5f\xae\x2a\xa3\x20\xd8\xee\x0f\x67\xfb\x28\xc2\x2b\x67\xff\x28\xc3\x5a\x67\x82\xce\x51\x21\xd1\x15\x82\x25\xff\x74\x9d\x5e\xe0\x50\xe6\x8b\x87\x88\xda\xfc\xe9\x1a\x36\xe1\xac\xe1\x8b\x87\x60\xa0\x31\x4b\xf6\x10\x08\xcc\x92\x2d\x82\x7f\xda\x57\x78\xc1\xcc\xfd\xc5\x09\x8b\x0e\xfd\x82\x9d\x6f\x2a\xc0\x6a\xfb\x27\xe6\xec\x03\x89\xf3\x79\xe5\xed\xb0\x3f\x1d\x4b\xe4\x00\xd2\x5a\x43\x24\x84\xcb\x83\x03\x15\x30\x3e\xa7\x32\x77\x6b\xc8\x80\xf5\xf6\x8b\xb5\x63\xc0\x58\x7a\xdf\xfb\x0e\x81\x0b\xbf\x54\x06\x0a\x2a\x63\x3d\xc2\xe0\xb0\xff\xcf\xca\xc0\x09\x26\xfa\x52\x19\x38\x31\x14\x5f\xee\x3e\xeb\x76\x41\x01\x77\xd4\x84\xa3\xfa\xc3\x4f\xcd\x87\x56\x52\x50\x38\x8c\x6d\xe0\xe6\x57\xdc\xc6\xf7\x4b\xc6\xf3\x6c\xf2\xfa\xfc\xf4\x6d\x7b\x89\x78\x86\x1b\x3f\x7d\xad\xef\x3b\xdf\xb7\x12\xf3\x09\x39\xdf\xb7\x12\xe1\x7d\xfb\x45\x2b\x21\x01\x90\xfd\xa2\x95\x0c\x6a\x62\xe0\xb0\x7d\x7d\x01\xf7\x1e\x0c\xff\x48\x5f\xbf\xbd\x07\x15\x69\xdf\xf9\xdc\x94\xe0\x5d\xe4\x7c\x6e\x0a\xc2\xf0\xb0\xcf\x96\xa0\x3c\x39\xd3\xbf\xf4\xa6\xe3\x1e\x76\x42\xc8\x04\xc1\xa7\x76\xdf\xde\x3b\x04\xd9\x8d\x6c\x18\xde\x2a\xd8\x37\xdf\xaf\x11\xb5\x43\xe6\xfb\x35\x22\x34\xe5\xfa\x42\xe1\x3d\xf8\x70\x1e\x18\xd3\xfa\x3d\x9c\xdd\x45\x36\x0c\x3e\x7e\x36\x08\xf6\xea\x48\x39\x43\xdf\x83\x0a\x19\xb1\xa5\x72\x50\x11\x53\xe0\xe0\xf4\xec\x0f\x1b\x8a\x0a\xce\xb5\x48\x80\x8f\xe9\x2b\x57\x6b\xd8\x1c\xc5\xe4\x96\xe8\x9b\x93\xc3\x1f\xf8\x2c\xfc\xb7\x3f\xf0\xfe\xbd\x0f\xa1\xff\x73\x9f\x4e\xde\xf8\x51\xdb\xd2\x27\x6c\xdd\x0f\xcd\x56\xbf\x96\xf8\xbd\x8f\xa8\x7d\xfb\xb3\x69\xa5\x0f\x9d\x7d\xf7\xab\x65\xa5\xcf\x34\x7d\xeb\x23\x46\xe5\x4f\xaf\x54\x9e\xda\x2d\x3d\x33\x5b\x79\xe1\xd4\x7b\xb3\xb4\xf4\xf8\xa4\xf7\x7e\xd8\x77\xde\x7d\xf8\xde\xed\xfc\x6f\xdf\xc6\xff\xee\x5d\xf4\x6f\xdc\x39\xfe\xde\xdd\xdf\xef\xdd\xf5\xfd\xd6\x9d\xdd\xd2\x45\xda\xf2\xa5\x47\xff\xbe\xe1\x37\xee\x24\x95\xee\xf3\x3c\x7a\x57\xa1\xe4\xab\xe7\x3a\x8d\xfd\x03\xe7\xc3\xa5\x43\xbf\xef\x9c\xf0\x78\x67\x2a\xdf\x33\x29\x7f\xc7\x90\xfb\x3d\x43\xa9\x67\x7a\xfc\x86\x65\xe3\x7b\x2a\x90\xa7\xa2\xb8\x0b\xfc\x0f\x2f\x1b\x56\x56\xeb\xc7\x5c\x7f\x72\x67\xbe\x99\x48\xce\xa0\x96\xf2\x6e\xe5\x2d\xda\xfc\x5a\x2f\x32\x5c\xcb\x72\x4e\xa2\xbc\xbe\x77\x8b\x78\x8d\xb7\xd8\xa4\xce\xa6\x9f\xc5\x48\x4e\x26\x93\x7c\xb5\xc4\x2c\xa9\xbd\xc3\x49\x8a\xa3\xfc\xa9\xfa\xbb\x4b\x8b\x34\x6d\x91\x09\xdb\xda\xaa\xeb\x1c\x1d\x6a\xd6\x46\xcb\x65\xba\x7a\xaa\xfe\xee\x96\x0b\xe5\x38\x2f\x38\xad\x3d\x57\x70\x7b\xc9\x59\xce\x44\x5a\x49\xdf\x8e\x50\x9a\x2a\xda\x87\x3d\xfe\x78\x29\xec\x8e\xbe\xc1\xab\xec\xa9\xf9\xb5\x7b\x0a\x15\x6f\xcf\x70\x7e\x7a\x47\xcf\x38\x5b\x62\x9e\xaf\xce\x57\x8b\x29\x4b\xb3\xa7\x6e\xbf\xaa\x2a\x6c\xa4\x7f\x8b\x16\x38\x6b\xe0\x66\x3b\x62\x34\x42\x79\xe3\x5b\x99\x36\x70\xb3\xf9\xb0\xfb\x8f\xe6\xfc\x00\x5d\x8d\x26\x6f\x8b\xc5\x14\xf3\x36\xc9\xde\xa2\xb7\xeb\xf5\x86\x5c\xf0\x93\xc9\x04\x3f\xec\xe9\x98\x5a\xd6\x68\x7e\xcd\xda\x84\x92\x5c\x76\x52\x3e\x27\x59\xf3\xc1\x32\x49\xd6\xca\xda\x47\xb7\x98\xe6\x47\x0b\x92\xe7\x98\x03\x60\xbb\xf7\x0a\x8b\xb8\x6c\x72\xcb\x48\x5c\x0b\x36\x45\x1d\xb0\x82\xe6\x93\x52\xd4\x02\xdd\x1f\x93\x2c\xc7\x14\x73\x9d\x16\x1a\x10\x4d\xc2\xc0\xd6\x2d\x75\xea\x2d\x89\x26\x93\x49\x29\xf5\xd3\xac\x1d\xe3\x04\x15\x69\x7e\xe2\xa0\xbb\x25\xaa\x07\x93\x67\x21\xd9\xa0\xc5\x9b\x5f\x45\x81\xac\x45\x5a\xa8\x95\xed\x91\xa4\x61\x39\xe2\x89\xe1\x08\xda\xcc\xe7\x9c\xdd\xd5\x28\xbe\xab\x5d\xac\x96\xf8\x88\x73\xc6\x1b\x3f\x5d\xcc\x71\xad\x9e\xaa\xcc\xeb\x35\xc4\x67\xc5\x02\xd3\xbc\xb6\x28\xb2\xbc\x36\xc5\x35\x96\xd4\x44\x06\x96\x1f\x6b\xef\x70\x84\xc9\x2d\x8e\x25\xfe\xd3\xb6\xc9\x5f\x94\x6c\xda\xd6\x20\x13\xd3\x6f\xcd\xa7\x6e\x68\xa2\x46\x3f\x82\xf7\xf6\x1a\x62\xb6\x34\x5b\xe5\x3e\x6e\xee\xaa\xac\x9e\x4c\x26\xa4\x4d\xf1\x9d\x6e\xff\xd6\x56\x03\xb7\xf1\x82\xe4\x8d\xba\x83\xd6\x45\x47\xb4\x75\x33\x9e\xda\x9f\xbb\xb4\xd9\x72\x6b\xd2\x42\x13\xf2\x31\xff\xd4\x6c\x99\x8a\xa2\xa6\x84\x26\xb4\xb5\xbd\xed\x57\x63\x0f\xa7\x19\xae\x79\xfd\x69\x67\x18\x7a\xaa\xd2\xf1\xa7\x1f\x69\x0b\x7d\xda\xfd\x88\x5a\xf4\xd3\x2e\x7f\x8a\xda\x05\xcd\xe6\x24\xc9\x1b\xb4\xb9\x8b\xda\xcb\x22\x9b\x37\x68\xb3\xd5\x60\x13\xc1\x04\xcd\x5f\x83\xad\x2d\xd4\x4e\x31\x9d\xe5\xf3\x5f\xd9\xd6\xd6\x13\xd4\xbe\x43\x9c\xe2\xb8\xf9\x55\xff\x9a\x3c\xd1\x2c\x24\x06\x4b\x0e\x54\xfd\x8c\x65\xf0\x61\xca\x9a\xcb\xc2\xb5\x05\x5e\x30\xbe\xaa\xa5\x18\x5d\xd7\x62\x9c\xe3\x28\xc7\x71\xbb\x56\xdf\xd6\x25\x6c\xd7\x6b\xf5\xed\xf3\x5c\x68\xa6\x8d\xbc\xb9\x5d\xaf\xe9\x8e\xc9\x6a\x28\x8e\x05\xed\x65\x86\x6b\x58\xe6\xd6\xce\xb0\xc7\x7a\x8d\x66\x2d\x67\x35\x42\xc5\x48\x65\xb8\x96\x92\x05\xc9\xeb\xcd\xbd\xa8\x4d\xd1\x02\x4f\xea\x2e\xe9\xd1\x7d\x84\x71\x8c\xe3\x0f\x88\x53\xa1\x05\xb7\xa2\xb6\xca\x74\x82\x5b\x51\x5b\xf4\xd9\x24\x6f\x45\xed\x08\x86\x57\xd7\xae\x95\x4d\xa2\x56\xc4\x68\xc6\x52\xbc\xb5\xa5\x7e\x40\x27\xf8\xa1\x46\xd6\x7c\xd0\x93\xde\xf2\xff\xb2\xd1\xfc\x9a\x30\xde\x10\x5d\x85\x27\x1f\x3f\xb5\xf2\x49\xb0\x97\xff\xa2\x59\x38\x53\x85\xec\xe5\xdb\xdb\x4d\x2c\xc7\xc1\xc4\x09\x1e\xd8\x13\x02\xa2\x9d\x10\x8e\xe3\xf5\x1a\xa4\x45\x5b\x3a\xce\xb4\x39\x5e\xb0\x5b\xac\x1b\xa7\xa2\x56\x4b\xdc\x82\x5f\x77\x1c\x2d\x9f\xd3\x66\xcb\x26\x9f\x3c\x09\x5a\x44\x92\xe9\xfe\x6d\x39\xf9\xb5\x84\x1c\x34\xd5\x4e\xb4\xa4\x87\x15\x65\xf2\x15\x72\xd8\x7d\x12\xb6\x64\xbe\xbb\x4a\xfe\xc8\xa4\xbb\xb8\x25\x0a\xde\xcd\x5b\x96\xa3\x1f\x5a\x6c\xb2\x6c\x4f\x09\x8d\x1b\xbc\xb9\xa7\xfa\x85\x99\x92\x27\xb4\xc5\x55\x1d\x27\xac\xc5\x6c\xc1\xb1\x5f\xb0\xe1\x75\x6f\xde\xf2\xa6\xcc\xf0\xe3\x27\x60\x41\x36\xe1\x1f\xf3\x4f\x7b\x65\xc9\xc5\x9e\x7e\xfc\xb4\xbb\x71\xdd\x79\x4a\x9f\x7e\xb4\x75\x59\xaf\xd9\xa7\xdd\x8f\xec\xd3\x2e\xf5\x16\x18\x3d\x6a\x39\x30\xf8\x3e\xe7\x68\xd5\xc0\x6a\xb8\x9a\x2d\x3a\x09\xf6\xe8\x2f\xb9\x1e\xbe\xed\x6d\xda\xcc\x3f\xd2\x4f\x13\xfc\x91\x7e\x72\x72\x16\x41\x5d\xb1\xfc\xa1\xc1\x9a\xbb\xd3\x06\x6b\x31\x9d\x8d\x6d\xf7\x5c\x14\x29\x8b\x83\x41\xa9\x34\x5b\x08\x49\x49\x41\x27\xf9\x47\xfc\x69\xef\x91\x29\x4f\x55\xdf\xd4\x42\x2f\xad\x81\xa9\x2a\x5b\xf3\x6a\x60\xeb\x30\x15\x7d\x6f\x1b\x4e\x9d\x86\xe7\xcd\x16\x9f\x04\x7b\xfc\x97\x7c\x6f\x7b\x9b\x37\xe9\x47\x2e\x9a\xca\x4d\xdb\xe8\x83\x12\x98\x31\x4e\x08\xc5\x7a\xb9\x6c\x64\x62\xb7\x56\x59\x2e\xea\xad\xaf\x18\xde\x41\x43\xd3\x14\xef\x3e\x09\x5a\x82\x89\x4c\xdf\x9b\x35\x28\x7a\x68\x65\x6e\x04\x6e\x7e\x15\x8d\xa6\xb0\xe6\x3a\xab\x06\x5e\xaf\xf1\x2f\xc1\x7a\x8d\x84\xe8\xb2\x0b\xc8\x3b\x44\x67\xee\x0a\x72\x8b\xd2\x02\xd6\x8a\x8d\x55\xaa\x91\xac\xc6\x8a\x5c\xc4\xc3\x05\xf9\x76\xed\x95\x5d\x60\x50\x8d\x32\xba\x43\xd5\xab\xea\x35\x59\x03\x67\x95\xf9\x69\x1b\x6f\xd7\xdb\x42\xec\x4c\xf0\xc3\x43\xb3\x25\x57\xf8\x89\xd3\x24\x3b\x88\xce\xe8\x6e\x6d\xb9\xa1\x27\x93\x89\xd5\x39\xce\xf4\xe2\x7d\x9a\x48\x1d\x41\x53\x69\x29\xf0\xad\x85\xca\x25\xd0\x6b\x95\x02\x3d\x4d\xa0\x0a\xad\xd7\xb2\xa2\x0f\x9e\xfe\x50\x12\xb9\x93\x7f\xfd\x88\xd0\x7f\x51\xff\xeb\xa9\x56\x6d\xab\x94\x8b\x7e\xbb\x66\x8f\xb5\xcb\xb0\xa0\x56\xd0\xbc\x64\x62\xd1\x98\x6c\x16\x15\x1f\x3f\xb5\xe8\x24\xdc\xa3\x55\x01\x4f\xb7\xb7\x9b\x79\x59\xc0\xd3\x4f\x4d\xa9\xb3\x4f\xea\x58\x74\x8b\x98\xc7\xb8\xc5\x1e\x17\x01\xac\xc9\x27\x7c\x6b\xcb\xca\xb8\x36\xa4\x33\x4a\xc0\x13\x2d\x1a\x9f\xc0\xf4\x57\x5a\x17\x12\xbf\xb5\xac\x12\x6b\x7b\x03\x4d\xf2\x8f\xc1\xa7\x66\x0b\xd5\x08\xcd\x72\x44\x23\x31\x6a\x30\x32\x6a\xb8\x10\xd4\x2b\x73\x17\xf7\x4b\x3a\x47\x34\x4e\x71\x5c\x83\x32\xdb\xf5\xed\x06\x7a\x5a\xaf\x35\xc4\x42\xbe\xc0\x59\x86\x66\x78\xbb\xde\xac\xef\xd6\xeb\x4d\xb1\x6c\x89\x5c\x32\xa1\x81\xe7\xf8\x3e\x9f\xa0\x56\xf6\x20\xd5\x05\xa6\x84\x97\x69\x43\xe4\x55\x79\x93\x4c\x8b\x9a\xa4\x11\xc1\xf8\xb5\xf2\x26\xb4\x15\x9a\x95\x4e\x22\xbd\x46\x17\x93\x69\x23\x6a\xa5\xcd\x3d\x31\x14\x52\x36\xa7\x20\x94\x49\xa3\xf8\x48\x3f\xe9\xb4\x4a\xe8\x3d\x29\xf1\x37\x8a\x63\xcd\x04\x13\x77\xab\x63\xd8\xa0\x00\x36\x68\x89\xa5\xe9\x49\x58\xe2\x06\x46\x27\x8f\xe4\xe5\x91\x2d\x39\x5e\x62\xfa\x0f\x94\x13\x54\xca\x89\x70\x29\xd5\x23\x5a\x74\xfe\x3f\xac\x45\xe7\xfe\x3c\x83\xda\x24\xa6\xe6\xcd\xe6\x86\x99\xa6\x5a\x7f\x4a\x23\xfc\x48\x0f\xfc\x67\xb4\xa5\x34\x4a\xdf\x6f\x98\xaf\x85\x95\xda\x04\xab\x68\x8b\xb7\x60\xd7\xf3\xd8\x9e\xe7\xdf\xd0\x42\x6f\xcf\xc3\x3d\xe9\xd2\x6c\x3a\xcd\xf7\x09\xe9\x84\x7f\xc4\x9f\x2a\x04\x54\xcc\xcb\xf5\xda\x6e\x5f\x44\xb8\x29\x52\xec\xec\x54\x16\x9e\xa7\xdf\x5b\xab\x76\x1b\x31\x4e\x71\x8e\x6b\xa2\xac\x16\x2f\xf5\xa7\x5a\x20\xe5\x56\xca\x8f\xaa\xb7\xb0\xb3\x9b\x5a\xaf\xf3\x66\x73\xc3\x56\xc8\xdd\x5a\x82\x98\x66\x93\x9d\xb0\x45\x26\x5a\x0b\xda\x09\xf7\xc8\xaf\x93\x60\x8f\xec\xec\x34\x45\xdb\x3e\x92\x4f\xaa\x79\x1f\xc9\x27\xbf\x85\x5f\xd1\xc4\x03\x5b\x6c\x42\xf6\xa6\x1c\xa3\xeb\x07\x92\x34\xd8\x2f\x81\xd7\x51\x52\x01\xa5\x6d\xb9\xc9\x6a\xee\xfa\x8c\x21\x6a\xb2\x97\x6f\x87\xbf\x60\x4f\xff\x17\x3b\x35\xfc\x31\xdf\x0e\x3f\xed\xe1\xf6\x92\x2d\x1b\xcd\x87\x06\x6d\xb1\x66\x2b\x9c\x4c\x4c\x95\xb7\xb6\x1a\xa2\xaf\x26\x14\x04\xb8\x59\x19\xfe\xc1\xae\x43\xa2\xc7\x1e\x9c\x1a\x97\x84\x4d\x92\x4c\x1e\x67\xf3\x0d\x33\x60\x3f\x4d\x37\xeb\x07\xb0\x2e\xb6\x68\x8b\x97\x99\xeb\xc7\xb8\x90\x96\x8a\xd6\x84\xb0\x2b\x2e\xad\xb1\x4f\xff\x39\xcd\x68\xd7\x2a\xc9\x1f\xf1\xa7\xad\xad\xc6\x3f\xcd\xcb\x8a\x95\x45\x36\xb2\x28\xd1\x94\x4d\x35\x35\xc6\x10\x9d\xcd\x35\x5e\x65\x0d\x2a\x97\x2f\xa9\x68\x13\xbb\xb5\xe0\xcd\xf2\x00\x3e\x99\x4c\x1a\x6c\x42\x3e\xf2\x4f\x4d\x35\xce\xd5\x51\x68\x30\x5f\xb4\x6d\xa0\x28\x67\xeb\xf7\xcf\x8f\x76\xa0\x94\x8a\x9b\x97\xee\x46\x0e\x9d\x2a\x94\x40\x53\x05\x47\xb8\xe6\x76\xce\x3a\xbb\x1c\xd9\x09\xb9\x9d\xa2\x5c\x4c\x51\xbe\xb3\xf3\x58\x2e\xa2\x1f\xf6\x1e\xe5\xe5\x74\x23\x5f\x2a\xf2\x58\x8b\xf7\xca\x7a\xcb\xd1\xdd\x66\x8e\xae\xa4\x94\x1a\x81\x2e\x46\xf6\xca\xa6\xe5\x7d\x93\x6a\x83\xfd\x74\x4f\x4b\xe1\x46\xde\xdc\x9d\x1b\x73\x6a\x73\x73\xc3\x64\x89\x73\x5f\x47\x15\x23\x04\xd6\xca\x0d\x5a\x6d\x65\x10\x7f\x0d\x9e\x72\x6f\xf2\x34\x77\x3f\x7e\x7a\xa8\x1a\x9b\xa5\xae\x4a\x1b\x83\x51\xb3\xc5\x26\xd6\x6a\xe9\x73\x0a\x6f\xb6\xc8\xe4\x6b\x8e\x66\xa2\xfc\xdd\x3a\x45\x0b\x5c\x7f\xd8\x73\x39\x9d\x34\xdb\x09\xe3\x47\x28\x9a\x37\x1a\x15\x61\x31\x21\x42\x43\xdc\xbc\x9f\x64\x2d\xdc\xfa\xba\x79\xb7\x28\xaa\xff\x31\xff\xb4\x5e\x0b\x46\xad\xee\x1c\x7d\xaa\x09\x6e\x89\x8d\xda\x43\x73\x83\x45\xdd\x34\x72\x28\x1a\x49\x1b\x83\x71\xd3\xda\x48\x89\x1c\x50\xe8\x2b\xb1\xc7\x93\xc3\x62\xa2\x91\xa7\xce\x31\xb1\xc3\x50\xef\x3e\x65\xcf\x56\x17\xb2\x47\x1a\x5a\xbd\x73\x8c\xc2\x3f\x9c\xaa\x15\x36\x3f\x06\x9f\x6c\xd2\xa8\x64\x92\x87\xc4\x17\xf8\x3e\x6f\x7c\x23\x1b\xda\x0a\x9b\xcd\x76\xce\xc9\xa2\xe1\xd4\x22\xd5\xa6\xda\x16\x93\x9d\x40\x26\x51\x43\x06\xf7\xc8\xd6\x56\x03\x96\x27\xd2\x7c\xa0\x8d\x5e\xd8\x6c\x90\x96\x18\x66\x87\xe3\x60\xc7\xcb\x61\xdb\x50\x6c\x98\x2f\x75\x9e\x65\xb0\xbd\x59\xaf\xeb\x09\xc6\xb1\xfe\xcd\xe3\x64\xf7\xdd\xe1\x73\x08\x3e\xec\x11\x4f\xe1\xc5\x34\xf6\xf6\xd0\x88\xd7\xa0\x8a\x93\xaf\x0f\x2d\x36\xc9\x1a\x85\x14\x47\x31\x5b\x34\xf7\xd8\xd6\x56\xc3\x64\xcc\xc0\xfa\xf7\xb4\x91\x4f\x58\x3b\x9a\x93\x34\xe6\x98\xb6\xa8\xb4\xf0\xd5\x51\xce\x16\xf5\x56\xda\xa0\xad\x3a\x81\xb3\xd4\xb8\xde\xca\x9b\x12\xc8\x49\x9e\xca\x53\x29\xf8\x9b\x37\x5b\x0d\x3c\xc9\x1a\xf5\x94\xd0\x6b\x11\x6c\x8a\x7e\x98\xe0\x36\xca\x73\x4e\xa6\x99\x0e\xce\x39\x4e\xc4\x6f\xa1\x90\xd0\xeb\x09\x56\xb9\xc5\x38\x8b\x38\x59\xc2\x94\x87\x9b\xab\x5e\xb6\x51\xa3\x5e\x2c\x63\x94\xe3\x58\xe7\x4c\xdb\x0a\x80\x6d\xd7\xa1\x98\x4b\xb8\xa9\xf2\x42\x45\x3e\x67\xbc\xde\xaa\xe3\x05\x22\x69\x5d\xb2\x50\x8b\xb6\x49\x8e\x17\xd9\x04\x35\xea\x98\xe6\x7c\x25\x72\x6a\x2f\xd0\x72\xc3\xb4\x82\x6e\xdb\x33\xfb\x5a\xb7\xf5\xa2\x09\xba\x9b\x36\x77\x04\x6e\xb6\x1a\xb9\xed\x08\x0c\xd5\xcd\x27\xb9\xdb\x11\x22\x58\xea\x88\x1c\x92\x45\x8d\x7a\x56\x2c\x16\x48\x54\x0f\x37\xd7\xeb\xa8\x51\x87\x6d\x21\xcd\x75\x4e\xb4\xed\x74\x95\x4d\x65\xba\x47\x53\x2d\x8b\xa9\xe8\x15\xdb\x3d\x42\x29\xa7\x0f\xcd\x66\x73\x57\x56\x2f\x9a\x23\x4a\x71\x5a\x6f\xd9\x71\x6f\x56\x38\x40\x72\x47\x3b\x2b\xa6\x59\xce\x1b\x41\xab\x0b\xfd\x18\x4f\xea\xf5\xc7\x98\x00\x60\xd9\x74\xc3\x0a\x9b\x86\xd8\x0b\x99\x51\x4e\x51\x96\x3f\x2b\x48\x1a\x8b\x2a\xff\x43\x63\xbd\x40\x14\xcd\x08\x9d\x1d\xc5\x24\x67\x7c\xc3\xa0\x8b\x1f\x7e\x63\xff\xa1\xc1\x9f\x15\x3f\x3c\xfc\xd5\x2e\xd8\xcc\xe5\x5e\x08\xeb\x91\x54\x03\xf7\x23\x23\xd9\x34\x93\x1a\x8c\xc4\xce\x29\x96\x34\x3f\x1c\xa0\x34\x9d\xa2\xe8\xda\x9e\x9f\xb5\xd8\x53\x21\xf3\x77\x95\x9d\x22\x62\x45\x1a\xd3\x9f\xf2\x5a\x42\x68\x5c\xe3\x8c\x81\x51\x09\x44\x83\x10\xf7\x76\xd5\x22\x8f\xcb\xfe\xae\x92\xfd\x61\xb7\x27\x16\x33\xde\x26\xd9\x05\x9a\xed\xd9\xb4\x62\x11\x7a\x45\x29\xe6\x2f\x2f\x4e\x8e\x77\x37\x6e\xe6\x6d\xa7\x3e\xb5\x3f\xab\xe3\xa3\x05\xb7\x5c\x49\x9a\xcd\xf6\x67\x46\x68\xa3\x5e\x6f\xee\xd6\xeb\x0f\xad\x19\xce\x4f\x8b\x5c\x15\xc3\x5a\x4a\xb8\x9b\x02\x6b\xa2\xe3\xc4\xde\x19\xcc\xb4\x6d\x92\x69\x73\xad\x51\xa8\xa1\x40\x6c\x73\x15\x2a\x29\xb1\x04\xf5\x29\x18\x9d\x72\x29\x30\xeb\x7f\xd1\xfa\x2e\x6e\xe4\x96\x1d\xa4\xe5\x08\xa6\x8d\xd8\x63\x1c\x1c\xee\x5f\xec\xeb\xbc\xbf\x45\x28\x6a\x69\xeb\x10\xa3\x1c\x29\xee\xab\xd7\x1f\xbe\xa1\x58\x84\xdd\xbe\xee\xf8\x81\xe8\x78\xda\x08\x7b\x41\x73\x8f\xb4\xb1\x5c\xc8\x40\xa3\x69\x5f\x5d\x01\x57\x5c\x5d\x4d\xe4\x31\xb6\x92\x42\x45\x8e\x37\xc5\xab\xa3\xda\xaf\x06\x95\x87\xdf\x59\xbe\x92\xc6\x67\xc9\xaf\xe2\xd7\xfd\x62\x29\xfe\x90\x84\x0b\xc5\xe5\x49\xd0\xa2\x0c\x2f\xa6\x38\x96\x3f\x01\xcd\xc4\xef\x65\x8a\x08\x98\xb5\x64\x84\xc9\xe0\x41\x19\xcd\xca\x45\x21\x8e\x91\x20\x9d\xa2\x0c\xeb\xbf\x09\xa3\x90\x7c\xca\xc5\xbf\x11\x4b\xe5\x9f\xc5\x02\x51\x28\xcf\x14\x6c\x2a\x33\x07\x4a\xb2\x98\xc1\x1f\xba\x2c\x20\x3d\xc9\x08\x8d\xf1\xbd\xf8\x79\x8d\x57\x33\x4c\xc5\x2f\x31\x41\xc5\xdf\x05\xce\xa1\xe0\x25\xe2\x68\x01\x6d\x65\x05\x8f\x20\xb7\x9c\xa3\x08\x68\xee\xa0\x06\x0f\xad\xc8\xd1\xe7\x7c\x7e\xf6\x79\x4b\x48\x70\xc1\xcf\x18\x73\xc2\xd6\xeb\x06\x9e\xc8\xed\x8e\xd8\x35\x7f\x7d\xd8\xb3\xa7\x07\xf5\x7a\x8b\x4d\x82\x3d\x66\x37\xb9\x6c\x7b\x5b\x6b\x16\xf8\x23\xfb\xb4\x57\x17\x93\x53\xb0\x1f\x01\xc6\x79\x4a\xb7\x27\x51\x83\x58\x79\x9d\x37\x77\xd5\xcc\x6b\x90\xa6\x88\x2d\x1a\x44\x80\xc4\xf2\xd9\x21\xe1\x38\xca\xc9\x2d\x24\x5e\x36\x88\x17\x79\xc0\x16\x82\x69\x44\xd4\xbc\x1c\x25\x18\x59\x44\xc4\x22\x82\x6e\x4f\x12\xc8\xfa\xc1\x9c\x67\xb4\xd2\xc9\xc7\xfa\x82\xc0\x17\x89\xe1\x83\xc6\xf0\x45\x61\xf1\x8f\x18\xf8\x7a\xab\x8e\x28\x65\x39\x3c\xee\xba\x73\xbf\x48\xeb\xad\x7a\xc2\x38\x26\x33\x2a\x15\x57\x25\x09\x8d\x08\xfd\xb4\xe7\x1f\x89\x37\xbf\x6a\x7a\x39\xfd\xee\x17\xe9\x09\x8b\x31\x9c\x1c\xc3\xc9\xa5\xcf\xf2\x1f\x25\xfa\x49\x74\xbd\xf8\xd1\xc2\xed\x25\xdc\x7b\xdb\xda\x4a\xdb\xc0\x00\xa7\x49\x43\x63\x40\xd1\xfc\x75\x12\xc0\xa2\xac\x14\x69\x94\x65\x64\x46\x1b\x5f\x1f\x5a\x79\xeb\xab\x2a\x6d\xf7\x49\x28\x24\x6e\xeb\x89\x53\xfe\xc7\x7a\x76\x3b\x83\xa5\x27\x9f\xd7\x3f\x39\x79\xff\x70\xa6\xa6\x61\x0f\x4d\x69\xdd\xa6\x93\xfa\x2f\xf5\x6d\x55\xf1\x0d\x76\x3f\x6c\x2c\x65\x93\x7a\xdd\x30\x10\xaa\x11\x5a\xc3\x4d\x3a\xc1\x1f\xd1\xa7\x16\xdf\xda\x6a\xf0\xed\x49\xbd\x56\x6f\xb6\x1e\xeb\x39\x34\x29\x4b\x82\x8f\xe8\xd3\x7a\x8d\x9a\x2d\xbe\x3d\x41\x2d\xd8\xc1\x8a\x5d\xfe\xd6\x56\x5d\xec\xa0\xe9\x7a\x6d\x52\x37\x65\xf6\x3f\x4d\xea\x3f\x6d\x37\xc4\xae\x23\x62\x31\x3e\xa2\x39\xc9\x09\xce\x9e\xb2\x36\xa6\x02\xf8\xfd\xe4\xb8\x41\x9b\xbb\xb4\x0d\xaf\xc6\x47\xb8\xf1\xf3\x5f\xf5\x9f\x67\xad\xfa\xd6\x4d\xc1\xf2\xbd\x7a\xb3\xb9\xfd\x53\xfd\x27\xb3\x13\xe5\x0f\x0f\x0d\xa3\x29\xb6\xac\xa1\x51\x34\x85\x42\x53\xb6\xb9\xdb\xf7\x72\x5a\x49\xd6\xdf\xda\x12\x5b\x61\x67\xd9\xd0\x16\x0e\x91\xf0\xd7\x7a\xcb\xa5\x6c\xc0\xb4\xc1\xee\xb4\x69\xb6\x0c\xc7\x6c\x6d\xb9\x25\x40\xfa\x5f\x7e\xd6\xa3\xb1\x5d\xff\xb5\xde\x04\xf6\xaf\xff\xfc\x6b\xbd\x45\xdd\x73\x6b\xab\xb9\xc3\xe0\x09\x11\x2e\xc8\x4b\x67\xc4\xfa\x48\x52\x12\xac\xd7\xf5\xba\x6a\xe6\x93\x72\x2f\x8a\xe6\x69\x9e\xf5\x38\x55\x8c\x33\x12\x55\x9b\xf8\xfd\xdc\x74\xeb\x13\xbb\xf5\x79\xf2\x11\xa6\xef\x47\x51\x2f\xdd\xea\x8f\xc1\x27\x55\xc7\x4f\x9f\xdc\x5a\xce\x9d\x84\x7f\xdd\x77\xa3\x27\x3b\x3b\xb6\x39\x3b\x3b\x7f\xdd\x77\x71\x7d\xc3\x82\xe4\xb9\x55\x6d\xde\x8b\xe6\xad\xfa\xd5\x15\xce\x4e\x58\x5c\x08\x1d\xe9\x2b\x9c\x66\x09\x51\xda\x6c\xe5\x52\x6a\x6d\xda\x06\xe5\x68\x06\x7b\x1d\x10\x45\xeb\x75\x5d\x2e\x1e\x3e\x24\x56\x26\x8b\x3c\xb4\x72\x58\x4e\x27\x75\x29\x79\x72\x2b\xf4\x26\xf5\x58\xff\x14\xb8\x92\x77\x93\x7a\x24\x7f\x08\xec\x1c\xf2\x9f\xe8\x72\x04\x22\xb2\x9f\xa8\x52\x44\xde\x68\x36\x81\x6a\x89\x1c\x44\xbf\x4e\xea\x91\xe8\x1e\x28\x89\x45\x72\xd3\x14\xcb\x1f\xf5\x7f\x71\x4f\xed\xe9\x85\x7f\x18\xc8\x75\x7f\xd8\x6d\xee\x69\xce\xd9\x68\x44\x69\x3c\xc9\xd7\xeb\xfc\x97\x49\xf0\x94\x2b\xb2\xdf\x4f\x8e\x77\xf5\x6f\xa1\x26\x35\x1b\xb8\x29\xfa\x4c\x22\xe7\x50\xb3\x7f\x32\x2b\x99\x58\x67\x28\x99\xf3\x3b\x59\x39\x3c\xbc\xab\x7f\x9b\x5a\xed\xc9\xc5\x4f\x37\xd3\x50\x0a\x69\xaf\x7f\x9b\x82\x44\x2a\x13\x21\x02\x22\x26\x8b\xd0\x12\x16\x07\xf8\xe1\xd1\xf6\x2a\xc4\x26\xd0\xf7\xa2\x94\x42\x04\x9d\x6e\x3a\x5b\xd4\x02\xd9\xdf\xa6\xff\xa0\x16\xc8\x09\x78\x31\xaa\x77\x51\x05\xf2\xa8\x7a\x8f\x67\xd0\x7f\x3c\xaa\xf7\x63\x99\xf7\xbf\x4f\xf6\x7b\xa5\xa2\xbf\x9f\x1c\xff\xed\xdd\xff\xb7\x77\xff\xdf\xde\xfd\x7f\x7b\xf7\xff\xed\xdd\xff\xb7\x77\xff\x3f\xe9\xdd\xff\x98\x07\x3e\x9c\x6d\x6a\xe7\xae\x2b\xb2\x10\x0b\xcb\xa1\xf4\x39\xdb\xec\x24\x2e\x34\x62\xab\x21\x3d\xc5\xbb\x5f\x95\x8b\xda\x2e\x7e\x78\xf8\xe7\x94\x2a\x36\xe1\x0d\xda\x08\xbb\xe3\xa6\x5c\xe3\x21\xbb\xb2\xe7\x16\xfe\x75\xd2\xef\x77\xc6\x83\xad\x2d\xfc\xcb\xa4\x3f\xec\xf6\xba\xeb\x35\xfe\x35\x0c\xc3\x5e\x18\x86\xda\x42\xf4\x57\x91\x24\x49\x5c\xdf\x03\x45\x9d\xe9\xac\xc0\xf2\x6d\x42\x1f\xb1\xf2\x64\xca\x27\x66\x07\x50\xc3\xbf\x0e\xfa\xfd\x6e\x5f\x50\xee\x4c\xc4\xcf\x41\x2b\xdf\x9e\x48\x47\xdf\x76\xc2\xd9\xe2\x60\x8e\xf8\x01\x8b\x71\x03\xff\xfa\xeb\xaf\x61\xb0\x15\x06\x9d\xee\x1a\x2a\xd4\x6c\xe1\x49\x7f\xd0\xed\x04\x6b\x81\x6d\xe1\xe6\xa3\x29\x9b\x0f\x3f\xb6\x90\x07\xf5\x5d\x51\x85\x6e\xab\x1e\x76\x46\xf5\xdd\x51\x77\xd0\x6b\xd5\xc3\x6e\x50\xdf\x1d\x75\xc2\x91\xf8\x19\xd6\x77\x7b\x41\x47\xfc\xea\x08\xb0\x03\x3f\xbb\xe2\x67\x37\x10\x3f\x7b\x80\x42\xaa\x3e\xfc\xec\x8b\x9f\x83\xfa\xee\x30\x84\xf8\xa1\x00\x7b\xf0\x73\x54\xdf\xed\xf6\x21\xfd\x18\xc0\x71\xab\x1e\xf6\x82\xfa\x6e\xb7\x2b\x4a\xea\x75\xea\xbb\xdd\x51\x28\x7e\x41\x46\xe1\x40\xfc\x1c\xc0\xcf\xa1\xf8\x09\x39\x75\x44\x4e\xbd\x11\xfc\x04\x5a\xc8\xaa\x23\x68\xfb\xb2\xd6\x02\xed\x87\xf0\x53\x94\xd5\xef\xd4\x77\x87\x5d\xf8\x25\x6a\xdd\x1b\xc1\xcf\x9e\xa8\x8a\x68\x75\x1f\xca\xea\x8b\x5c\xfb\x03\x51\x15\x51\xa9\xbe\xa8\xa9\x24\x1c\xd7\x77\xbb\xc3\xc1\x0f\xdf\x5f\x71\xad\x13\xf5\xdd\xaf\x75\x94\xe6\xb3\x74\xb5\x14\x92\x11\xa5\xf9\x0b\xf8\xd9\x32\x68\x8c\x13\x27\xe2\x10\x16\x17\x1d\x07\x36\x6c\x1b\xf9\x0a\x4c\xda\x75\x44\xc9\x02\xe5\x38\x62\x29\x3c\xa9\xa0\x82\x07\x10\x34\xb1\x0b\xa6\x9e\xca\x55\xe1\x13\xa6\xac\xd0\x2a\x9c\x73\x44\xb3\x84\xf1\x85\x25\xb9\x30\x50\xab\x1e\xa5\x64\xb9\x94\x57\xe3\xc5\xcf\x33\xf1\xb3\x55\x4f\xf0\x34\xc5\x20\x79\x13\xfc\x0c\x7e\x09\x0c\x2a\xb2\x40\x39\x27\xf7\x10\x03\x35\x39\x91\x61\x19\xbf\x58\x32\x8a\x69\x2e\xcb\x84\xc7\x61\x04\x95\x42\x2f\x34\x6a\x68\x33\x02\x22\x47\xd1\x40\x48\xc6\xd1\x5b\x96\xde\x62\xaf\x28\x09\x39\xa5\xc5\x24\x49\x8a\x4c\xe8\x8f\xf3\x5c\xaa\x7c\x09\x3e\x94\xd8\xb1\xc6\x24\x5d\x06\x96\x0a\x31\x54\xf2\xee\xbb\xa0\xb3\xd8\x09\x5a\x6a\xba\x1c\xd1\x3c\x55\x2f\x87\x00\x91\x00\x20\x33\x49\xc1\xd9\x32\x9b\xa3\x18\x9e\xd0\x49\xf0\x21\x67\xcb\x73\x19\x14\xb1\x49\xca\x98\xec\xb1\xe7\xf0\x0b\xb0\x82\xc2\xe7\x7c\x12\xfc\xbc\xa0\xd1\xbe\xc1\xa6\x06\x7b\x66\xb0\x99\xc1\x5e\x18\x8c\x1b\xec\x1d\x60\x33\x54\x64\x19\x41\x74\x9a\x16\x32\xea\x85\x02\x9e\x09\x40\x50\x90\x05\x9a\xc9\x3e\x7d\x05\xbf\x04\xb6\xc0\x5c\x61\x27\xf0\xcb\x60\x94\xc5\x0e\xfe\x96\xc5\x2a\x8e\xf1\xe5\x9c\xa5\x6c\xb6\x92\x91\x36\x28\x62\x59\x92\xc8\x47\x3c\x13\x7c\x2a\x7f\x0a\x14\xbe\x18\x68\xfb\xee\x4c\x04\x6d\xcf\x65\x4b\x1c\x15\x29\xe2\xde\x60\x9d\x2b\xd0\x1b\xad\x6c\xc9\x9c\x6c\xce\x97\xcc\xc9\x25\x97\x8f\x1f\x27\xf8\x82\xa4\xb2\xa6\x79\xc1\xa7\x45\x8a\x69\xa4\x70\x1b\x34\x16\x32\x75\x0d\x6c\xb7\x62\x9b\x84\x89\xc7\x61\x52\xc2\xcf\x77\x52\xdd\x23\x14\x23\x3e\xe3\x28\x26\x52\x7d\x97\xc0\x0b\x0d\xc8\x2f\x92\xa1\xd4\xa1\x90\x80\x43\x91\xe3\xfb\x5c\xcd\x29\xf1\x13\xe6\xd4\x83\xd8\x7a\xb8\x76\x39\x21\x30\x60\x39\x23\x62\xbe\x16\xf0\x58\x99\x0d\x5f\xbe\x3b\xae\x3b\x29\xc0\x7f\x60\xd7\xcf\xc1\x8d\x07\xbb\x84\x13\x7f\x21\xc2\xad\x3a\x18\xd9\x39\xbe\x29\x30\x85\xbb\xe5\x22\xfc\xdc\x84\x65\xfc\x92\xb3\x44\xf6\xab\x08\x9d\xa9\x50\xab\x1e\xa1\x34\x5a\x48\xfe\x10\x3f\x4f\x24\x73\x68\x71\x51\x50\x92\x67\x8e\xcc\xb8\x84\xb0\xd8\xac\xc0\x04\x8c\x18\xb8\xd4\x8a\xde\x51\xc8\x81\x46\x5a\x75\x1c\xcf\xb0\xca\x59\xfc\x54\x39\x27\x24\xcd\x31\xd7\xf9\xca\x90\xce\x75\xf3\x50\xe9\x21\x70\x25\x9c\xc6\x5c\x11\xa7\x31\x9d\xb7\x0e\xeb\xdc\xaf\x31\xa7\x38\x35\xc2\x46\x06\x8d\xa0\x91\x41\x91\x56\xda\x1f\x0d\x85\x48\x7e\x2c\x21\x41\xb5\x82\x19\x90\x41\xf4\xea\x4c\xfe\x06\x3c\x5b\x0a\x16\x52\x11\xe7\x2a\x00\x31\x5a\x33\xbc\xc6\xab\x0b\xf8\xd9\xaa\xcb\x32\x50\xfc\x59\x7e\x60\x46\x06\xf7\x65\x50\x30\xe7\x82\x88\x99\xf2\xff\x70\xf7\x26\xec\x6d\xdb\xd8\x02\xe8\x5f\x91\x38\x19\x96\x88\x20\x59\x74\xd2\x34\x15\x0d\xeb\x3a\x4e\xda\x66\x26\xdb\xc4\x4e\xd3\x0e\xcd\xe6\xd1\x14\x64\xb3\x96\x49\x85\x84\xbc\xc4\xe2\x7f\x7f\x1f\x0e\x56\x2e\xb2\x9d\xb6\x33\xf7\xbe\xf7\x7d\x89\x45\x82\xd8\x97\x83\xb3\x9f\x24\xcf\xa8\x72\x3b\xa5\xd2\xf6\xf3\x8c\x42\x3c\x29\x20\x49\x8a\x33\x5a\x9c\x52\x79\x8e\xc4\xeb\x4f\x54\x1e\x24\xf1\xaa\x66\x43\xbc\xa9\xb9\x10\x6f\x97\xe9\x0c\x06\x2a\xde\xc0\x05\x02\x7c\x2b\xcf\xa4\xd0\xda\x14\x2e\xcf\xf6\x45\x92\xa9\xa1\x3c\xb3\x3f\xab\xf4\x6c\x75\x9e\x27\x2c\xbe\x80\x11\x67\xab\xf3\xb7\xf2\x85\x93\x00\xec\x54\xcf\x2d\x7f\xd1\xb3\xba\x8c\x19\xa3\x45\xd6\x68\x54\xa6\x36\xda\x95\xa9\xf6\x66\x90\x49\xf6\x5e\x90\x49\x8d\xaa\x74\x1d\xb0\x6c\x31\xe3\xdb\x40\x3c\xef\xb1\x5f\xac\xf4\x6b\x2b\xfd\x57\x2b\xfd\x8b\x95\xfe\x6f\x11\xa8\xb3\xa4\xc5\x05\x8d\x17\xcb\x53\x0e\xfe\xd5\xfb\x1e\xbc\x5b\xdf\x39\x5c\x64\x2a\x5e\x9e\xce\x05\xa9\xef\x21\x55\xc4\xef\x4c\x59\x7a\x41\x75\x9f\x55\x82\xea\x75\x41\xe7\xbc\xc3\x05\x9d\xff\x22\xde\xae\xc5\xdb\xaf\xf0\xb6\xa4\x31\x03\x6b\x2e\x48\xe4\x6f\xa0\xee\xa4\xbf\xcd\xe0\x26\x11\xcf\xcf\xe1\x12\xe1\x00\x22\x2d\xe8\x8c\x5e\x31\x9a\x95\x32\x4e\xa4\x4a\x7c\x61\x12\x4d\xce\x39\x8d\xd9\xaa\xa0\x76\xbe\x1f\x54\x12\x76\x14\xf0\xb7\x80\x82\x4a\xb2\xa0\x82\x4a\xe2\xa8\x56\x46\x6b\xb9\x5e\xa8\x24\x9e\xab\xa0\xf1\xec\x9c\xb2\x53\xb8\x6b\xc5\xeb\x6b\xf1\x2a\x7c\xdb\x33\x7d\x3f\xc1\x9b\xbe\xa2\x4a\x36\x9b\xd1\x8b\x34\x96\xd8\x52\xc9\x66\xcf\xf5\x2b\xff\x9a\xb2\xe4\x94\x5f\x30\x25\x7c\xe4\x6f\x87\xf0\xc6\x69\xbf\x62\x1e\x27\xb4\x4c\x62\x38\x70\xf2\xf5\x00\x5e\xb1\x53\x5e\x97\x8c\x9e\x2f\xe2\xec\x64\x25\x6e\x5e\x91\xf0\x4a\x25\x60\x87\xc5\xc7\x0b\x0a\xa4\x09\xaf\x1b\xde\x7e\x16\x6f\xca\x03\xf4\x15\xa4\xf3\xa7\x5f\x74\xda\xb5\x4e\xfb\x55\x5e\x29\xfa\x8c\xf0\x17\x7d\x46\x2e\x52\x7a\x79\x0c\x9e\x8c\xf9\xd3\xb3\xfc\x4a\xa6\x69\xdf\xd2\xfc\xe5\x50\xbc\x60\xe7\x4a\x6a\x87\x94\x74\xa1\xa2\x68\x5d\xed\x8b\xa4\x03\x95\x84\x9d\xeb\x76\xae\xeb\x76\xae\x2f\x79\x7e\x1e\x67\xb3\x65\xcc\xe7\x93\xbf\xec\x65\xb3\x77\x71\xe6\x54\x2d\x12\x51\x1b\x6d\x8d\x4e\x28\xdb\x97\xd2\x8a\x2e\x85\x42\x23\xcb\xa8\x70\x21\xb2\x0b\xdf\x96\xdd\x99\x85\x04\xa5\x0a\x20\xe3\x41\x7a\xbc\x48\xb3\x93\x0e\xd5\x5b\x52\x78\xd4\x28\x47\x4e\x33\x8f\xa1\x49\x48\xa3\x0a\x43\xb9\x3d\x75\x69\xc2\xa2\x74\x1b\x25\x68\x19\x16\xa7\x52\xe5\x63\xc8\xa0\x86\xd3\xb8\x14\x35\x74\x96\xec\xf7\xad\xa2\xa7\x71\x69\xd9\x51\x4b\x95\x46\x4b\x3a\x26\x3b\xc4\x2f\xf7\xee\xf1\x72\x34\xa0\x6a\x4e\xad\x32\x83\x94\x7a\x6e\x2d\xfa\x76\xb4\x2c\xe8\x05\x08\x55\xf9\xc3\x28\xa3\x57\x8c\x50\xf8\x41\x58\xfc\x0a\x89\x2b\xbd\x62\x90\x83\x88\x8c\x48\xcb\x57\xd5\x2c\x6a\x89\x95\x5a\xa3\x80\x8d\xf8\xe5\x96\x50\x8f\x8d\x16\x71\xc9\x5e\x2a\x41\x29\xc2\x3e\xa7\x49\x99\x12\x12\xb6\xbb\x66\xef\x09\xab\xd1\x00\x64\x79\xa2\x8f\x4c\x49\x46\x98\xdd\xe7\x00\xa4\xa0\xa2\x0c\x53\x64\x3e\x93\x3d\xd3\x5d\x0c\xd2\xb9\xa7\x35\xf8\x8c\x6a\x50\x90\x86\x69\xa3\xa7\x11\x61\xd0\xd3\x78\xb9\xa4\xd9\x0c\xf6\x66\x5b\x3a\x6b\xea\xc7\x7e\x5d\x26\x09\xc6\x4c\x0c\x19\x11\xa0\x96\xc5\xb5\x04\x97\xc3\xed\x28\x50\x43\xc3\x72\xd4\x19\x96\x83\x03\x85\x4d\xd3\x8f\xce\x99\x52\x83\xc3\x85\x9a\x0b\xe8\x1a\x94\x2f\x54\x8d\x54\xae\xa9\x68\x43\xf4\x1a\x4c\xcf\xd3\xb9\x9e\x36\xa5\x6d\x92\x93\xcc\x4c\x4d\xae\xd6\x32\xaf\xcd\x50\x81\xf0\x98\x6f\xcd\x0a\x94\x94\x33\xd7\xcd\x5a\x83\xaf\x44\xdb\x77\xf6\x1b\x2c\x27\xb4\x9e\x8b\x69\xb9\x50\x2d\x17\xcd\x5d\x04\x2d\x77\x6e\x60\x86\xec\xe1\xd5\xf6\x90\x9a\x52\x50\x10\x80\xf1\xde\xa2\x6c\xf3\xe8\x3b\x24\xf5\x9a\xb4\xb4\x34\x37\xe6\xfa\x4a\x0e\x9f\xe2\x98\x84\x11\x2e\xc9\x18\x27\x5a\x29\x3b\x28\x77\x12\xd7\xed\x7b\xd4\x63\x61\x19\x21\xd7\xf5\xa4\x11\x39\xbc\xe2\xe1\xb0\xd8\x21\x63\x50\xf5\x4a\x09\x4f\x32\xc2\xe9\xbe\x97\xb9\x6e\xea\xba\xa9\x6d\x8e\x96\x12\xde\x70\x0a\x0d\xe3\x98\xc4\xca\x71\x43\x8a\xb0\x57\x0c\x89\xca\x8b\xa0\x52\x14\x94\x83\x81\x06\x69\xb1\xe5\x3c\xe1\x46\x60\xce\x0d\x77\x15\x7c\x30\x4d\xf5\xa8\xf5\xda\x63\x04\xec\xab\x95\xf1\xa2\x51\xc9\x2e\x5c\x37\x2d\x7f\xe0\xb4\x08\xf5\x0a\x9e\xb3\x20\xfe\xd6\xd8\x18\x31\x0b\x4d\x5c\x7e\x16\x78\xd5\x15\x9e\xa7\xd9\x6c\x92\xc3\xcf\xdb\x8c\xc2\x29\xea\x30\xf7\x10\xdb\x61\x8c\x8d\x62\x7b\x90\xed\x14\x60\x16\xc8\x01\x95\xc7\xc2\xcc\xb2\xb5\xb1\xcc\x86\x85\x3a\xb3\xac\xbd\xa6\xf8\x65\x6d\xe5\xd5\x62\xa1\x15\x27\x52\x32\xc6\xb1\x36\x17\x09\xd2\x9d\xd8\x75\xfb\x79\x90\x0e\x06\xa8\x00\x0b\x17\x50\xd6\x14\x4f\xd3\x1c\x8c\x5a\x26\x60\xd9\xd2\x38\xb3\xb0\x32\x39\x81\x86\xec\xcf\x7c\x05\xd4\x5c\x54\x98\x5e\xa5\x25\x2b\xbb\xba\xa6\xfa\x93\x93\xb1\x65\x71\x13\xe4\x3b\x29\x28\x02\xf1\x33\xe9\x65\x61\xae\xbb\x93\x47\x68\xbd\xe6\x3f\x5d\x1d\x11\xbd\xc8\x6b\xbd\x50\xc6\x7c\x4a\xe3\xc0\x17\xd3\xb4\xb7\x58\x4c\xba\x8e\x62\x18\x61\x0e\x2d\x4b\x38\x6e\xc2\xd4\x22\x50\x96\xd8\x81\x81\x97\xd2\x62\x27\x28\xbc\x14\xf6\xaf\xa5\x69\x91\x76\xf5\x2c\x57\xae\x14\x84\xef\x13\x2f\xc7\xa9\xa5\x4d\x49\xa1\x16\x09\x2e\x52\x64\x29\x18\xdd\x7e\x30\xa1\xab\x42\x89\x40\x29\x1f\xb2\x11\xa3\x25\xeb\xbe\x4e\xf4\x0e\x13\x4a\x33\x70\xf5\xd5\x6f\x5c\x2f\x43\xc2\xc8\x8e\xc5\x27\x9f\x80\xa4\x26\x84\x64\x90\xd4\xcf\xe1\x44\xf4\xe9\x48\x7d\xf3\xa4\x0e\x91\xb6\xcc\xac\xb4\x69\x15\xcf\x02\x14\xb7\x29\x2e\xca\xf1\x44\xa9\x01\xb8\xa9\x1c\xa7\x65\xe2\x34\x2b\x4d\xd9\x5a\xcb\xea\xb3\x27\x14\x06\x3b\x6a\xe9\x6b\x85\x63\x5e\x28\xcc\x22\x4f\x27\x58\xc7\x47\x16\x08\xb4\xb1\xa7\x14\xbb\xdf\xa8\xe1\x75\x18\x06\x74\xda\x66\x18\x7f\x00\x96\x76\xbe\xc7\x10\x6c\x47\x31\x43\xd5\xc4\x79\x08\xaa\x1a\xd3\x7c\xb2\x31\xb7\xc8\x0b\x1a\xee\x15\x56\x73\xf5\x67\x3a\xa1\x27\xba\xea\x6a\x54\xab\x61\xaa\xe6\xd4\xc4\xfe\x89\x26\xfb\x66\xdc\xb0\x36\x5d\x0d\xf7\xd5\x68\x79\x0e\xd1\xbc\xe5\xf9\x26\xbe\xcb\x14\x86\x99\x66\x8d\x3d\x43\x66\x30\x48\xe6\xe9\x97\x90\x46\x76\x0f\x3a\xb3\xdb\x99\x79\x23\xd5\x26\x7b\x8b\x8e\x6a\xa8\x97\xa1\xf5\x9a\x79\x19\xaa\x2a\x66\xdb\x51\x90\xf6\xd5\x22\x40\x9c\x6d\xdd\x42\x9b\x5a\xd8\x06\x1b\xb0\xfc\x54\x30\x7e\x54\xd3\x69\x1a\xb2\x08\x9c\xb0\x00\xd0\xac\x0c\x6c\x15\xe6\xdd\x52\xef\x2b\x8c\x26\xd2\x93\x07\xbf\xe0\xbc\x7c\x54\xd0\xd9\x2a\xa1\x5e\x89\x64\x37\x24\xfa\x2c\xfb\xf9\xec\xfa\xe5\x8c\x6c\x70\xda\xb4\xf1\x2a\x54\xbe\x42\xe0\xa2\xf1\x62\x4f\x98\x06\x20\x7d\xd9\x35\xda\x30\x36\x25\x1d\x93\x62\x1b\x1a\xc9\x3e\xa7\x06\xba\xd0\xee\x5e\x8b\x1a\x0f\xf9\xde\xfd\x8a\x1a\x01\xee\x98\x1a\x37\x51\x08\x22\x3a\x59\xd9\x6d\xb7\x2f\xac\x5e\x88\x56\x54\x1d\x0e\xf3\xdd\xa1\x1f\x88\x1c\x8c\x64\xa0\xae\x8a\xf9\x1f\xa1\x71\x5c\x90\xfe\x38\xc8\x02\x49\x63\x28\x1d\xc9\x0c\xed\x0e\x7d\x74\x53\x90\xbe\x8f\xa9\xc6\x28\xb1\x8f\xa4\x99\x68\x46\x32\x45\xb5\x81\x8b\x20\x5e\x1d\xb3\x9c\xc6\x48\x65\x49\x1f\x17\x64\x1b\xe7\xe4\x31\x4e\xc9\x53\x1c\x13\xff\x09\x2e\x09\x1b\x25\xf9\x39\x2f\xfc\x3c\x4f\xc0\x94\xf0\x5d\x5e\x02\xb3\xb4\x03\xeb\x2c\x71\x82\x17\x78\x85\x97\x78\x8e\x67\xfc\xda\x3b\x25\x21\x98\xdc\x53\x30\x64\x55\xfb\x0b\x6e\xc0\x92\xd0\xa0\x0c\xd0\x4c\xfb\x03\x2a\x11\x2e\x49\xa9\xb0\x56\x91\x85\xf1\x2c\xa7\xb7\x64\x99\x93\x71\x30\x0b\xe7\xfc\x9c\x9d\x86\xf3\x28\x40\xf3\xc1\xc0\xde\xc7\xf3\x69\x36\xf1\x16\xc4\x4b\xc8\x2c\x9c\x0f\xfd\xc8\xb2\xc9\x58\xf1\xa4\x08\x2f\xa1\x20\x36\xca\xac\x2b\xb4\x6b\x5e\x96\x68\x9a\xf0\xbe\x4f\xf3\x75\x3c\xc9\x27\x09\x00\xdc\x62\x9d\x4e\x0a\xc4\x09\xe0\x55\x96\x7e\x5e\xd1\x83\xbc\x60\x9d\xa6\xa7\xa9\x59\x58\xde\x59\x4a\xa8\x46\x02\x86\xc3\x14\x16\x9a\x11\x1a\xa6\x11\xf6\x38\xc2\xae\x1a\x65\x88\xaf\xa7\xeb\x66\x3b\x29\xa7\x7c\xe5\x7a\xa6\x7c\x3d\x35\x51\x5a\xe6\x05\xb3\xd5\xf9\x0d\xb6\x21\x60\x8c\x46\xe2\xdc\x62\x3a\xf4\x27\x99\x9b\x4f\xfd\xc9\xb8\x42\x08\x37\x69\x59\x7e\x42\x0d\x26\x9b\x1b\xc5\xb8\xc7\xa8\x86\x9e\xa3\x9b\xc2\xb2\x7c\xc8\xe8\x65\x4f\x38\xf5\x41\x98\x5a\xb6\x5c\x29\xcf\x08\x67\xa5\x4c\xf2\x25\x25\x54\x5a\x6d\xe5\x1c\xc1\xce\x6b\xd6\xbb\xf1\x2c\x3e\x5e\x50\xe5\xce\x29\x26\x99\xf7\x78\x8c\x46\x2f\x7e\x7e\xf1\xe6\xf0\xa0\x66\xb4\x17\x6f\x30\xda\x53\x36\xae\x1c\x28\x5b\xf6\x5b\xa1\x93\x67\xce\x80\x46\xb6\x05\x97\xe9\x91\x30\x4c\xa6\xa8\xd2\x06\xa0\xfe\xbd\xea\x60\x1d\x95\x70\x42\x49\x78\x85\x48\xe7\xde\x76\x5f\x56\x23\xac\xea\xa5\x4d\xc8\x65\x91\x67\x27\xd2\x6f\x48\x2f\x9f\x6b\x73\xfa\xb2\xef\xa0\xe0\xf6\x06\xf9\xc2\x74\x34\xc9\x81\x75\x05\xf6\x83\xf7\x51\x08\xc8\x3c\xff\xf1\xf7\x68\xf4\x6c\x35\x9f\x83\xe5\x38\xc7\xe9\x5e\x64\x49\x3e\x4b\xb3\x93\xba\x4a\x40\x79\x99\x32\x3e\xc3\x94\x38\xce\x80\xf2\x2b\x77\xc4\xf2\x57\xf9\x25\x2d\xf6\xe3\x92\x7a\x08\xdd\x24\x71\x49\x9d\x53\x7a\xe5\x4c\xe0\x69\xc5\xe6\x4f\xcd\xe3\x50\x3d\xc7\x65\x92\xa6\xf2\xf9\x38\xcd\xe2\xe2\x5a\xbd\xc4\x25\x7d\xf2\x58\x95\x48\xca\x6d\xf3\x38\xdc\x36\x15\xf9\x4f\x16\xd4\xaa\xd6\x7a\x2d\xe2\x4b\x67\xa2\x71\x6f\xa5\xa8\xa0\x51\xaf\x2a\xa8\xef\x42\x38\x85\x81\x1c\x96\xb0\x49\x97\x03\xef\x60\x56\x35\xf6\x55\x9f\x2a\x25\x04\x18\xa5\x26\x71\x58\x10\x20\x59\x23\x95\x13\xd2\x9e\x86\x5a\xc9\x3f\x32\x5a\x53\x01\xbc\x8b\x3a\x16\x31\x4b\x33\xbf\x31\xb1\x32\xa7\xfc\x16\xb4\xe7\xd9\x5e\x0d\x58\x3a\x05\x41\xf4\xfc\xa5\x1c\xe0\x88\xd4\x80\x12\x0f\x16\xbf\xbe\xf2\x98\x91\xfe\xb8\xaa\x3c\x0a\xb6\x36\x4e\x09\xda\x10\xb6\x23\x09\x60\x0e\x99\x7d\xc5\xf1\x87\xf5\xba\xcf\x61\x86\xed\x84\x47\x7b\x73\x39\xcb\xf2\xcb\xac\xa7\x16\x63\xd2\xe3\x2d\x6a\xe4\x64\xbd\xa6\x15\xdc\xaa\xf6\x82\x99\xa9\x16\x13\x24\xdc\x87\xd1\x2b\x46\x12\x95\x71\x46\x16\x98\x91\xc7\xe2\xc6\x0b\xac\x95\x51\x17\xf7\xe2\x55\x5c\x32\x52\x36\x33\xa9\xd9\x32\x55\xae\x4c\x95\x4b\xcc\xc8\x23\x99\xbb\xbe\xdf\x7a\xd2\xd9\x59\xca\x28\x99\x83\x33\x04\x4f\x97\x9a\xa1\x4a\x78\x3b\x8b\x4b\xf6\x86\xd2\x99\xb4\x54\x87\xf7\xc3\x9c\xc5\x0b\x3b\x61\xff\x34\x2e\x48\x31\x8a\x17\x8b\x3c\xf9\x90\x95\xf1\x9c\x7a\x0d\xbb\x5e\x83\x1c\xee\x10\x7f\xfb\xbb\xe9\x78\x42\x77\x77\xbf\x25\x84\x3c\x99\x6e\xf3\xc7\xc7\x84\x10\xff\xf1\xf4\x11\x7f\x7e\x44\x08\x79\x34\x9e\x3e\xe6\xcf\x4f\x08\x21\xdb\x1c\xf8\x0f\xb7\x6b\x18\x68\xcd\xdd\x97\xee\xd3\xb0\xd6\x65\x9c\xb5\xb0\x38\x0e\x29\xb7\x9f\xf6\x09\xf1\xfc\xef\xb7\x5d\xf0\xe2\xa3\xed\xb1\xec\xa1\x6a\xb5\x1d\x40\x51\xd4\x87\x5d\x9f\xe3\xe7\x92\x78\xf5\xdb\xb5\xf9\x9d\xb5\xf9\x9b\x6a\xdb\xb6\x6a\xdb\x76\xdd\x5a\x55\xdb\x9d\x55\x6d\xeb\xaa\xaa\x4a\x1a\xd0\xa3\xba\xe7\x36\x8e\x6a\x4e\xb3\x49\x6d\x1e\x76\xf4\x0d\x3e\xf5\xe8\x28\xc9\x97\xd7\x5e\x6d\xe5\x30\xc3\xd6\x5a\xf2\x12\xa8\xbe\xb4\x23\x96\x2b\x07\x83\xf6\x86\xc6\xcd\x2d\x81\xd0\x64\x73\x03\xc6\xfb\x9b\xd9\x68\xaa\xbd\xa1\xee\xa1\xed\x46\x2f\xd1\x5c\x54\xed\x3a\x6e\xc8\xd0\xdf\xb7\x09\x21\x63\xc3\x21\xd4\x7d\xd3\x27\x0b\x0b\xa7\x2d\x35\x86\xa1\x50\x78\xda\xe3\x54\x90\x72\x8c\x00\x99\x0a\xad\xc3\x55\xec\x90\x6f\x9f\x3c\xf2\xbf\xb7\x9d\x69\xd8\x33\xdf\xd8\xfd\x8f\xeb\x53\x14\x8e\x23\x42\x43\x6a\x18\xb6\x8d\xcf\x7e\xed\xb3\x1f\xe1\x4c\x62\x51\x63\x3c\xf4\x2d\xbe\x46\x67\xe3\x7e\xb3\xf1\xed\x5b\x1b\xf7\x23\xdc\x3d\x2d\xd8\x64\xa9\x5b\xae\x6b\x3e\x3d\xbf\x30\xe5\x56\x31\xb0\xc1\xa3\x68\xe2\xc0\xe6\xad\x6f\x12\xc5\x86\xbf\xe5\x08\x6a\x88\x38\xd8\xb0\xa1\x4c\xef\xc6\x1c\x27\xd0\xce\xfe\x9a\xf6\x5e\xa2\xa9\xda\x3e\x78\x64\xe3\xc8\xd9\xd4\x1e\xb2\x84\x87\x98\xa1\x49\xbd\xcf\xe4\xd1\x30\x6b\x4e\xe6\x23\xe1\x20\x66\x7a\xfb\x94\x4e\xbc\x3f\xb5\xde\x08\x77\xf6\xcf\xac\x48\x66\xef\xfc\xe5\x3d\x97\xa4\x6b\xb7\x4c\x37\xcf\xb5\x6a\x76\x8c\x1f\xd5\x97\x09\x4d\x58\xcd\x32\xc9\x12\x1c\x75\x1f\x7d\xd4\x69\x5b\xd4\xbb\xad\xb3\x15\x1b\x89\x9a\x9e\x83\x0d\x41\x41\xd2\x9a\x03\x04\x79\x0b\xb5\x31\x63\x0d\x19\x94\x05\x6c\x20\x29\x93\x8e\x0d\x59\x73\x92\x23\x2f\x07\x75\x6b\xc2\x45\xae\xeb\xb0\xb6\x2d\x5c\x15\x8d\xbb\x4e\xca\x2c\xc8\x58\x93\x20\x3b\x66\x60\x6a\x86\xf9\x45\xeb\x51\x9c\xa1\x49\xf3\x75\xbd\x76\x9c\xaa\x36\xbc\xba\x84\xe3\xcf\x2c\xae\xba\x01\x26\xac\xde\x02\x5c\xfb\x5d\xb4\x54\x37\x9f\xd4\x72\x10\xc3\xc1\xe0\x4e\x66\x28\x5b\xc1\x93\x89\x3d\xe1\x19\x26\x9d\x7b\xf9\x2e\xd1\xfe\x99\x72\x60\x6c\x5b\x77\x52\x3e\xf4\x11\xce\x79\xb6\xe1\xb0\xd8\xc9\xd6\xeb\x21\x07\xd0\xb9\xa9\x8e\xc3\x6f\x5d\x1d\xba\xbd\xaa\xed\x3f\x55\x15\xe4\x9e\xe6\x64\x3c\xa9\x55\xfa\x88\x57\xaa\xea\xa8\x8c\x47\xb2\x00\x78\xa2\xb5\x1d\xd4\xde\xf6\x02\x01\xe3\xb9\x1b\x60\x23\x0b\x94\x93\x55\x39\x91\x5e\xd6\x38\x54\x86\xd0\xed\xb8\x12\xc7\x9c\x96\xec\x68\x07\xf8\x3a\xf6\xba\x6a\xac\xaf\x71\x36\x36\x5c\xf1\xe8\xb6\x46\x6f\xc5\x96\xfe\x22\x1c\x20\xf8\x23\x2d\x1b\xe4\x60\x03\x5e\x70\x0b\xbf\xff\x31\xdf\x34\xa4\x90\xe4\x61\xcb\xd9\x4c\x83\xb9\xaf\xfd\xcc\x36\xdc\xce\xd8\x5e\x60\x14\x85\x9a\x83\xb6\xb4\xeb\xe6\x02\xb3\xd5\x0f\x02\xc5\x6d\xbc\x1e\x2c\xf2\xcb\xa9\xe1\x41\x14\x13\x2f\xf5\x0a\x0c\xd2\x46\xd1\x33\x12\x23\x1c\x9b\x85\x6d\xb8\xfd\xb1\xd8\x0a\x08\xa7\x5e\x8e\x21\x37\x6f\xbf\x0b\x89\x6d\xcb\xdd\x68\xa7\x23\x3c\x67\xaf\xe6\xf9\x2e\xcb\x95\x43\x50\x51\xbc\x21\x96\xcb\x50\x85\x63\x31\xa6\xdb\x1a\xed\x7f\x5d\xa3\xf5\x06\xc5\xaa\xe5\x5e\x07\xe2\xca\xa6\x8a\x2c\xb3\x1c\xf2\x4e\x0b\x38\x01\xc0\x49\x98\xa8\x67\xfd\x34\x46\xb8\xd0\x7d\x16\xeb\x70\x0f\xff\xaa\x5f\xdf\x6b\x33\x4d\xa8\xd1\x1c\x5f\xf6\xff\x64\x93\xc5\x88\xb7\x20\x76\x50\x53\x5f\xbf\x83\x61\xc2\x46\xc7\xd7\x8c\x0a\x15\x9f\x8e\x0b\x87\xe3\x7a\x38\x03\xf7\xa5\xb8\x20\x9c\x62\x51\xed\x3c\x7a\xe8\x65\x83\x02\x6d\x3d\x1e\x16\x15\x66\x23\x96\x3f\xbb\x66\x14\xb8\xdc\xdd\x0e\xe9\x44\x55\x31\xe1\x98\x10\x2e\x09\xc7\x78\xb0\xf0\x66\x9e\x7a\x1b\x78\xe7\x8f\x1e\x7a\x6c\x90\xf1\x26\xb2\xca\x1b\xe3\x18\x97\x08\xe1\x15\x19\xe3\x25\x29\x77\xc7\xd3\x78\xf8\x78\x12\x5b\x2e\x48\x97\x41\x36\x20\x8f\x11\x23\x39\x68\x44\x18\x0c\x1e\x45\x3b\x3b\xfe\xd3\x75\x33\x79\xe0\xc3\x87\xed\xf6\x87\x6d\xfe\xe1\x49\x3b\xfd\x11\x8a\x70\x12\xae\x06\x83\x88\xb0\xdd\x5d\xff\x89\xbb\xfd\xed\xb7\x56\xc2\x53\xfb\x7d\xfb\xdb\x6f\x5d\x16\xf0\x1b\xa6\x04\x1b\xfe\xae\x4e\x75\x34\xed\xa3\x68\x77\xf7\x71\xad\x12\x14\xf8\xb7\xd6\xe2\x8f\x37\x0c\xed\x71\xe7\xc8\x76\x77\xb7\x6f\xed\xb3\xde\x49\x09\x5f\x57\x0e\x50\xba\x57\xd6\x62\xe7\x6b\xa8\x8b\x73\x92\xfd\xfd\x11\x4e\x49\x18\xe1\x98\x8c\x71\x49\xb2\x61\x1e\xc4\x3b\x65\x10\x0f\x88\xff\xe4\xd1\xd3\x47\x28\x15\xc2\x59\x8e\xa6\xc7\x38\x1e\x40\xe2\x6e\x39\x2d\x27\xf2\x19\x89\xe1\xe6\x53\x8f\x71\xb0\xcb\x89\x13\x59\xa4\x08\xd9\xee\xee\x76\x34\x28\x42\xb6\xb3\xf3\xd8\x7d\xf2\x28\x1a\x38\x84\x38\x08\x4d\xe0\x1e\x87\xf9\xf1\x78\x91\xed\x68\x67\xe7\x29\x1a\x74\x94\xf6\xc7\x50\x7c\x77\x57\x14\x87\x9a\xb6\x65\x4d\x8e\x11\x06\xa5\xda\x7f\x8b\xf1\xb0\x51\x08\x89\x76\x18\xe1\x94\x38\xab\x4c\x98\x07\xcd\xac\x23\xfb\x21\xcd\xd8\x53\x98\xa6\xa9\x79\x9c\xc0\x5f\x1c\x13\x67\xef\xd9\xfe\xf3\x17\x3f\xfc\xf8\xd3\xcb\x7f\xfc\xf3\xd5\xeb\x37\x6f\xdf\xfd\xeb\xfd\xc1\xe1\x87\x9f\x3f\xfe\xf2\xeb\xbf\xe3\xe3\x64\x46\xe7\x27\xa7\xe9\xef\x67\x8b\xf3\x2c\x5f\x7e\x2e\x4a\xb6\xba\xb8\xbc\xba\xfe\x32\xf6\xb7\x1f\x3d\xfe\xf6\xc9\x77\x4f\xbf\x1f\x6c\x39\x52\x27\x24\xb6\x74\x42\x82\xc1\xa0\x44\x45\x58\x46\x24\x0e\xcb\x08\xe7\x61\x6c\xaf\x76\x89\x22\x52\x06\x9d\x64\x9b\xd6\x56\x98\x7b\xec\xef\x8f\x77\xc7\x6d\x86\xd5\xcb\xec\x22\x5e\xa4\xb3\x9e\x00\xb0\xa3\x9e\x80\x10\x16\xdc\x39\x5f\x2d\x58\xba\x5c\x80\x6b\xd4\xc7\x8e\x72\x3d\x61\xf8\xf9\x7c\x42\xe5\x7c\x0e\x81\x5e\x72\x5d\x0f\x9c\x4d\x85\x19\x06\xa7\xa6\xd3\xf1\xe4\xf1\x30\xfb\xfb\xe3\xa8\x15\xbe\xc2\x52\x66\xc0\x5a\x1f\x86\x05\xe5\x4e\x16\x94\x03\xf2\x08\xe5\x7c\x99\x4b\xbe\xf3\x9f\xb8\xfe\x93\xef\x7c\xff\xc9\xd3\x31\x1a\xf0\xb4\x81\xcf\x97\xde\x7d\xf2\xed\x36\xa4\xf0\xfd\xcc\x53\xb7\x23\xb8\x49\xc5\x36\xf0\x52\x92\xa3\xdd\x5d\xff\xa9\xdc\x02\xe9\xee\xae\xbf\x6d\x9e\x9f\xc8\xc7\x27\x8f\xdc\xd4\xf8\x39\x8c\xcd\x8e\xc8\x43\x67\xe8\xd8\xf3\x3c\x46\x11\x79\xb2\x8d\xf3\xd0\xf9\xd4\x4e\x7f\xd4\x25\x21\x8b\x9b\xe2\x42\xcb\x0b\x1c\x07\x73\xe4\xe9\xc3\x7c\x58\x0c\x7d\x9c\x10\xcf\xdf\xd9\x29\xd1\xd0\xc7\x0b\x92\xec\xee\xfa\x78\x45\x86\xdf\xe1\x25\xc9\xa6\xf9\xd0\x9f\x8c\xf1\x9c\x64\xd3\xa1\x3f\xf1\xf1\x0c\x5c\x99\x2e\x23\xd8\xaf\xcb\x01\x99\xe3\x94\xcc\x5c\x5e\x7a\xb8\xe2\xc5\x67\xbb\xbb\x64\xb8\xc2\xab\x01\x29\x83\xd5\xee\x38\x48\xc9\xf6\xb7\x4f\x1e\xa6\x03\x51\x0a\x43\x89\xd5\x90\x3c\x15\x9a\x1a\x31\x49\xad\xb2\xa9\x2e\x5b\x40\xd9\x18\xca\xc6\x1d\x65\x25\x09\x96\xa2\x94\xf8\xc3\x85\x96\x12\xa4\x96\xdf\xe9\x5e\x3c\x7d\x13\xbf\x99\xf8\x5b\xe3\x87\xde\x0c\xfa\x8e\x38\x70\x78\x1d\xb3\xd3\xd1\x32\xbf\xf4\xb6\xc1\xd3\xdd\x90\x2c\x24\x6d\xaf\x32\x3d\x8c\x1f\x5a\x79\xd2\xa1\x10\x67\x36\xa9\x40\x35\x99\x38\x95\xbe\xb8\x31\x88\xe7\xc8\xd3\x87\xe9\x30\x1f\xf2\xe9\xe3\xc3\x5a\xf0\x51\x2d\xc9\x8a\x4f\xe8\x9c\x6c\x3f\x02\x78\x63\xd5\x3e\xdc\x7e\x8c\x86\xf6\xfb\x77\xdf\xa1\xc9\x18\xcf\x48\x31\x1d\x4f\xd2\xa1\x8f\x4f\x49\x31\xf5\x27\x43\x1f\x1f\x13\xb6\x33\x5e\xaf\xf9\xa0\x99\xeb\xfa\x5b\x6c\x67\x3c\xf5\x27\x42\xd8\xc7\xc4\xa0\xe2\xe3\xd2\x63\x08\x43\xd0\x1a\x10\x00\x33\x42\x88\xbf\x35\x9e\x7a\x25\x51\x89\xbc\x0c\x8e\xc9\x0a\x4d\xbc\x58\x94\x9a\x2f\xf2\xbc\xf0\xe0\x71\x91\x9f\x78\x0c\x6d\xc1\xf3\xab\x37\xdb\x08\xb3\x87\x5e\x62\x4f\xd8\x30\x46\x68\xc7\x77\x5d\x2f\x1e\x0e\x71\xf2\x90\x6c\x23\xec\xb1\x01\x89\x07\xcb\x5d\xe2\x4f\xe7\x5b\xc9\x64\x6e\xcf\x9d\x3f\x5c\x22\xf4\x30\xd9\x25\xdb\xbc\xc8\x60\x80\x93\x2d\x5e\x04\xb2\xaf\x78\xaf\x64\x57\x64\x79\xaf\x24\x1e\x7b\x98\x0c\x7d\x64\x57\x92\xf3\x02\x64\x89\x26\x5e\x49\x98\xfd\x61\xd9\x91\x91\x8c\x11\x0a\xf2\x5d\xf2\x34\xa0\x61\x36\x98\x89\x8b\xa6\xc4\xb3\x01\x39\xc5\xe5\x16\xdf\x4d\x38\xb7\xf6\x5e\xbc\xb3\x93\xaf\x4b\xbc\x18\x90\x3c\x58\xec\x8e\xed\x42\xb1\x28\x14\x8b\x42\x0b\x28\x04\x9f\x87\xa7\xd1\x9a\xf8\xdb\x4f\x1f\x1e\xb7\x64\xd2\x02\x32\xdd\x54\x9a\x22\xb1\x1c\x8b\xd5\xc4\xf3\x5d\xd6\xa2\x4e\x28\xac\x7a\x84\x20\x3f\x72\x08\xc9\xa4\x36\x6d\x17\x6a\xa5\x21\x59\xa1\x25\x82\x9f\x92\xe3\x92\xd0\xf5\xfa\xa6\xb2\x54\xe7\x0a\x49\x33\x6f\x94\xfe\xe5\xb7\x4b\xff\xf2\x90\x46\x88\x12\x21\x3e\xb3\xdd\xb6\x85\x1d\x12\x40\xde\x03\x70\xb5\x6b\xbf\x79\x0d\x59\xe0\xfd\x6a\x64\xb7\x56\xd9\x14\x0c\xe6\xf7\x17\x0c\x3a\x28\xb8\xbb\x71\x2d\x1b\xdc\xd0\xbc\x11\x12\x7e\xd5\xba\x48\xc9\x87\xf0\xc2\x1b\x46\xff\x5b\xcb\x24\x3a\x20\x6e\x29\xed\xd2\xf8\x3f\xb1\x78\xf5\x86\x30\xbb\xbd\xa9\xff\xda\xa2\x36\xbb\x85\xb3\x3b\x3a\xa6\x96\xbb\xe6\xb6\x30\xcf\x0a\x5a\x52\xb6\x61\x76\x21\x24\x90\xaa\x44\xe5\xb5\xea\x55\x49\x1e\xaa\x6a\xb5\x16\x14\x2c\x3c\x3a\x8f\xd6\xad\xd5\x04\x26\x1a\xd1\x18\x4b\x06\xa3\x1c\xa8\x44\xc1\xe8\x0e\x0b\xa8\x50\xd0\x34\xc3\xb3\xf2\x85\x34\x0a\xc7\x51\x54\x63\x9e\xeb\x2f\xaa\x12\x8b\x21\xbd\xa1\xbc\x27\xb0\xe4\x3b\x32\x35\x92\xfc\x48\xb2\x2a\xef\x9d\x1f\x37\x52\xb6\x23\xd4\x54\xbd\xb4\x15\x2f\xac\xf9\x34\x13\xc5\x4f\xe4\xe6\xb0\x4d\x92\x8d\x63\x87\x6d\xd2\x93\x9c\xf7\xd2\xac\x57\x20\x09\xa1\x39\x4e\xa5\x14\x7f\x8a\x30\x8f\xda\xba\x3f\xf2\x28\x9b\x75\xae\x2b\x71\xb6\xe1\x48\x87\x92\x99\xbf\x35\xc6\x05\xd1\xd7\x84\x88\x73\x17\x39\x38\x27\x5b\xe1\xd1\xd1\x6f\x0f\x46\x0f\x07\x53\x0f\x85\x47\xd1\x4d\xb5\x8e\xb6\x4e\x70\x4a\xde\xd3\x93\x17\x57\x4b\x2f\x1f\x09\xf7\x80\xfc\x7e\x34\x11\x04\x8d\x74\x99\xff\x1b\x89\x1e\x12\x15\xab\xc6\x75\x19\x2e\xdb\xb9\x4b\xba\x98\xbb\xae\xf9\xdb\x2e\xc6\x53\x39\xf1\xb0\x5e\x97\xeb\xb5\x0a\x62\xe0\x39\x16\xcb\xd8\x41\x1e\xc2\x8b\xf6\x94\xa8\x4b\x13\xaf\x48\x32\x12\xa3\xe3\xa8\xd3\x74\x65\xf2\xa8\xf8\x54\x73\xb2\x9c\x2e\x75\x01\x99\x1a\xd4\x19\xff\x96\x2c\xdd\x62\x76\x68\xf9\x7c\x3a\xef\xf0\xd6\xe9\x94\xd0\xac\x63\x07\xbc\x69\xe7\xea\xf7\xa9\xeb\xb6\xa6\x06\xe4\xea\xae\xbb\x50\x97\x36\x21\x05\x4f\x51\x2d\xce\xa7\x73\xf5\x65\xa2\x24\x05\x84\x0e\x34\x37\xdd\x19\x3b\x12\xb3\xa3\x84\x0c\xb3\xa9\x33\x1c\x3b\x13\x56\x75\xf9\x6e\x54\xba\x17\x12\x6d\xa5\xa0\xbb\x06\x62\x05\x8a\xa6\x8e\x33\x99\x79\xe0\x8a\x36\x05\xbd\x62\x8f\xa2\x29\xd5\x8e\xed\x72\xec\x1c\x1d\x3d\x70\x1d\x34\xa1\x55\x85\x6c\x85\x23\xcf\xff\xb6\xeb\x3e\xb3\x39\x26\x9a\xb3\xb9\x3d\x1e\xe3\x9c\x38\x9f\x3e\x2d\xf2\x59\x5c\x9e\x7e\x3a\xe5\x7f\x34\xa5\xfa\xe9\x93\x83\x53\xf2\xfd\x78\xfc\x9d\xff\xfd\xf7\xdb\xdf\x3e\xfe\xee\xf1\xf8\xfb\xef\x7d\xbe\xf7\x0c\x86\x23\x8f\x54\xc4\x69\x4d\x9d\xfc\x2c\xcf\x17\x34\xce\x22\x07\x27\x26\xf1\x79\xcc\x68\xe4\xe0\x85\x49\x51\x9b\x2a\x72\xf0\xca\xa4\xfe\x48\x33\x5a\xc4\x2c\x2f\xac\xcf\x4b\xf3\xf9\x75\xbc\x8c\x1c\x3c\x37\x09\x22\xc2\x63\xe4\xe0\x99\x49\x13\x5b\x32\x72\xf0\xa9\x49\x13\x67\x28\x72\xf0\xb1\x75\xf4\x28\xcf\x74\x6e\x25\xc0\x3e\x8b\x1c\xfc\xba\xe3\x7c\x9e\x90\x3a\x6a\x27\x38\x66\x91\x83\x2f\x6a\xa3\x8c\x7f\x4e\xe9\x65\xe4\xe0\x6b\x6b\xa4\x8b\x3c\x66\x8f\xb6\x25\x42\x88\xf7\x1a\x5f\x9e\x3c\x56\x5f\x2e\xcd\x97\x97\x8a\x21\x10\x39\xf8\x4b\x2d\xd9\x7f\xa2\xd2\x3f\xd5\xd2\x4d\x03\x6f\x4d\xba\x61\x2c\x44\x0e\x3e\x6c\xa4\xef\x2f\xe2\xf3\x25\x9d\xa9\xcf\x57\xf5\xcf\xa6\x9d\x37\xf5\x0f\xa6\xa1\x57\x64\xeb\xe8\xf2\xe1\x83\x2d\xfc\x82\x6c\xfd\x76\xa4\xf2\x8c\x06\x53\xb0\x9d\x2c\x56\x09\xcb\x8b\xa3\xe8\xc1\x16\x3e\x20\x5b\xbf\x79\xd3\xc9\x78\x1d\xfa\xc3\xef\xa3\xa3\xd9\x43\xf4\x60\x0b\x7f\x26\x37\x55\xf0\x39\x8c\x23\xf2\x39\x6c\x62\xcd\x3c\xed\x84\xff\xb9\xe0\x7f\x4a\xfe\x27\xe1\x7f\xae\xf9\x9f\x3d\xfe\xe7\x92\xff\xf9\xc2\xff\x7c\xe2\x7f\x96\xfc\xcf\x9c\xff\x99\xf1\x3f\xa7\xfc\xcf\x31\xff\x73\xce\xff\xbc\xe6\x7f\xde\xf2\x3f\x87\xfc\xcf\x15\xff\xf3\x26\x22\xfd\x31\xb6\x9a\x06\xec\x44\x34\xbd\xa8\xf5\xe9\x23\x8d\xcf\x60\xe3\x45\xa4\xef\xc3\x91\xdf\x6f\x83\x54\xea\xba\x20\x6c\x6b\x41\x52\x8a\xcf\xfe\x30\x00\xfe\x48\xf6\xd7\xeb\xb3\xdb\x00\xf0\x73\x0e\x6c\xfa\x6c\x94\xe5\x33\xb0\xac\xe7\x00\xff\x19\x79\xde\x01\xd8\x32\xd7\xcd\x5c\xb7\x9f\x59\x59\x33\xfc\x8e\x3c\x73\xdd\x67\x1a\x38\x11\xf2\xdc\x80\xdf\xf7\x0d\x33\x43\x8e\x9f\x00\x5f\x17\xf4\x50\xb0\x15\x45\xf1\x97\xa6\x41\xe2\x8c\xc3\x2e\x3b\xc7\xef\x4d\x85\x6c\x08\xf3\x42\xa7\x8a\xb1\x24\x29\xe0\x02\x6c\x8f\xbc\x8c\xd0\x70\x30\xc8\x23\x14\x0c\x06\xf9\x4e\x1a\xa0\x8c\x30\x2f\x03\x05\x5f\x9c\x5b\x1a\x29\x96\x03\xca\x97\x86\x59\x25\x02\x55\x09\x6f\xa2\xd4\x0e\x6d\xdb\x37\x51\x1d\xd4\x9d\x83\x58\x71\x7d\xc3\x48\xbf\xef\x71\x18\x8e\xaa\x24\x66\xc9\xa9\x97\xa1\x9b\x0e\x45\x81\x0f\xa6\x89\xa1\x8f\x33\xa2\x62\x0e\x96\xe9\x17\x6a\x89\xe2\x3a\xf0\x7b\x3e\xec\x2c\x1c\x0c\x58\x44\xc2\x02\xd3\xa8\xaa\x3b\xcf\xfc\xe9\x6e\x7d\x77\xe6\x65\x08\x59\x2a\xf2\x3f\xfc\xe1\xbe\xe8\x9e\x50\xd1\x0b\x5e\xc9\xcf\x92\xac\xd5\x17\x34\xfe\x95\xb4\x83\x07\xe3\x1f\x5b\x97\x3d\xfe\x27\xf9\x18\x3a\x9f\x3e\x25\x79\x41\x87\xbf\x97\x9f\xca\xd3\xb8\x80\x9b\x23\xc2\xff\x6a\x85\x06\x20\x5b\xe1\x6f\xa3\x68\xf0\x60\x6b\x44\xaf\x68\xe2\xfd\xd3\x75\xff\x09\x44\x91\xfa\x1d\xbd\x7c\xf1\xe9\xdd\xfb\xb7\x87\x6f\xd7\x6b\xc7\x88\x27\xe8\xd4\x11\x20\xd8\x2b\x8b\x04\x7d\xf2\x47\xce\x80\x4e\x1c\xa7\xf2\x10\x7e\x40\x7e\x35\xd8\xc6\x3f\xc8\x8f\x0d\x6c\x0c\xff\x9b\xfc\x68\xbe\x53\xaa\xf0\x28\xe7\x37\x67\xf0\x40\xdc\x99\xff\x40\xc6\x57\x6c\x27\xf2\x25\xaf\x59\x93\xab\xde\xc4\x5a\x4f\x2c\x1a\x3d\x9c\x7a\x53\x72\x74\x74\xe4\xa1\x75\x6f\x9e\x17\x1c\x0c\x8a\x84\x08\xf1\x8a\x1e\xf8\xa3\x87\x53\x07\x0d\x9c\x07\x0e\xc2\x8c\x92\x77\xd3\x8f\x52\x6c\xa7\xb0\xa1\x8c\x92\x8f\x0a\x61\x2a\xf8\xb3\x01\xde\x38\xa7\xe4\x27\xaf\x33\xfc\x20\x16\xa9\x08\xa7\x0d\x81\x1f\x8e\x29\xf9\x91\x2f\x15\xf4\xf4\x65\xf9\x42\x87\x74\xc4\x25\x25\x3f\x4b\x85\x69\x9c\x50\x72\x5b\xfc\x65\xbc\xa0\x84\xd1\x29\xa3\xa3\xb4\xac\x77\x77\x65\x75\x89\x2f\x9f\xee\xc8\x92\x92\xe7\xd4\xfb\x88\x1d\x75\x1b\x3a\x08\xcf\x55\xda\xeb\x78\xe9\x20\x3c\x53\xaf\xef\x8a\xfc\x3c\x2d\xa9\x83\xf0\xa9\x4a\x3a\xa0\xcc\x41\xf8\x58\xbd\x4a\xe0\xeb\x20\x7c\x0e\x49\xa2\x15\xec\x88\x41\x3a\x08\xbf\xa6\xe4\x77\xea\x2d\x29\xc2\x27\xf0\x34\xa7\x08\x5f\xc0\xd3\x8c\x22\x7c\x0d\x4f\xa7\x14\xe1\x3d\x78\x3a\xa6\x08\x5f\x52\x92\xd1\x69\x46\xdb\x08\xe9\x17\x4a\x2e\xe9\xf4\x92\x8e\xc0\x24\xfe\xed\xbc\x85\x92\x7e\xa2\x8d\x83\xd7\x02\x61\x40\xcf\x24\x0b\x1a\x17\x1e\x07\x5f\x6c\x27\x0b\x74\xb4\x54\x4e\x7a\x08\x5d\x65\xca\x3c\x90\x6b\x15\x1c\x94\x5a\xe7\xfa\xed\x7f\xb8\xfe\xc3\xff\x70\xfd\x57\xd4\xf0\x4b\x3e\xcd\x62\x16\x7f\xfa\x04\x22\x3b\x18\x97\xc9\xf6\x86\xda\x9c\xb6\x0f\x14\xbc\x96\xb7\x31\xf4\xde\xbd\x92\x6e\xc5\xe3\x7f\x82\x86\xe1\xf1\x1f\x2a\x50\x8f\xc3\x7f\x29\x75\x38\xb1\xd7\x8f\x69\x2b\x79\xbd\xfe\xb7\xc1\xfe\x63\x28\x3d\xdd\x64\x31\x3a\xf4\x71\xa1\xa0\x2f\x9f\xaf\x6c\x87\x06\xa8\x08\xb3\x88\xdf\x58\x96\xaf\x69\xad\x58\x86\xe5\xc5\x33\x09\x23\x5c\x68\xb3\x4b\x9c\x93\x7e\xbf\x30\x36\xa2\x42\x95\xa0\xcf\xef\x76\xdd\xed\x14\xad\xd7\x10\x46\x45\x3a\x5b\x20\x24\x5d\xaf\xdf\x53\x08\xf5\x82\xd6\x6b\x6d\xc4\xd8\x71\x3b\xbe\xa2\x8d\xb8\xbd\x7c\x25\xff\x61\x02\x17\xb9\xee\x4b\xea\x15\x38\xe3\x33\x62\xd4\x3c\xd7\x6b\x26\xfa\xb1\x5e\x8b\xe8\x32\x99\xb5\x84\x2f\x68\x73\x2a\xb4\x90\x28\x1b\x0e\x03\x94\xce\xbd\x97\xd4\xa3\x61\x16\x01\xca\xa0\x09\xa8\x4c\xcb\x78\x4c\x5d\x07\xd4\x66\xc4\xe3\x17\xa2\x9b\x07\xa0\x37\xe4\xba\xde\x01\x49\xa7\x85\x47\xe5\xb7\x49\x01\x91\x38\x74\x37\x0f\x54\xcd\x90\xbf\xff\x2b\xb5\xa8\x35\x2a\xb1\x35\xd8\x61\xfc\xf3\x3e\x10\x94\x07\x5d\x9a\x52\x6a\x25\xc0\x52\xde\xe0\xaf\x1e\x43\x01\x73\xdd\x36\x0d\x1a\x8e\x23\x7b\x4f\x81\x18\xcb\x11\xd1\x33\xe0\x59\x89\xb6\x30\x7f\x5f\xae\x18\xbc\x2f\x57\x96\xd1\x09\x68\x70\xf7\xb5\xc5\x4f\x17\x13\x1a\xb6\x97\x89\x42\x07\xc6\x60\x62\xb7\x15\x48\xda\xc8\xf2\x3d\x57\x04\x46\xed\xc4\x8a\x67\x4c\xf1\x01\xaa\x74\x3c\xce\x33\xf2\x0e\x2c\xb1\x3e\x92\x33\x42\x16\xeb\xf5\x19\x21\x2b\x3e\x27\x3f\xd8\x33\x56\xef\x84\xa5\xf5\xde\x33\x56\x39\x17\x3a\xfa\x70\x7d\xa6\xb4\x8e\x4d\x43\x2f\x29\xe3\x78\x86\xa7\x14\xa2\xce\x08\x99\x41\xe3\xf1\x7a\xfd\xd1\x75\xfb\x29\x34\xf3\xd2\xea\x43\x3a\xa5\x93\x9b\x2a\x68\x2d\x54\xd3\x36\xd1\xc2\xe7\xac\x6e\xac\xd7\xbf\xf0\x01\x4d\x6f\xaa\x89\xc7\x48\x0e\x43\xfe\x95\x7a\x0c\x4d\x53\xfe\x77\x72\x23\x3d\x30\xb2\xca\xfb\xc8\x33\xdd\xb2\x06\x32\xf1\x8c\x6f\xcf\x67\xc2\x8a\x8d\x43\x03\xdc\x99\x8b\xba\xee\x19\xf5\x18\xfe\x91\x02\xee\x8b\x2a\xef\x00\x82\x76\x2b\x5e\x68\xff\x73\x78\x16\x35\x86\x78\xb0\xd1\x60\xb1\x36\x24\x6d\x9e\x21\x34\xfc\x7b\x27\x4a\xbd\x7e\x1f\xf6\x35\xa4\x95\x60\xbd\xd0\x4b\xd4\x27\xbe\x3c\xb9\x37\x50\x9f\x2f\x26\xb7\xec\x32\x36\xe5\x15\x8d\x8e\xe1\x7e\x47\x13\xf5\x14\x58\x55\xd5\x57\x3a\xc3\x14\xd4\x40\x84\x07\x1b\xf9\xf2\x4a\x06\xcd\x06\x7c\x57\xb4\x7a\x2d\x3a\xb5\x27\x7e\x2e\xc5\xcf\x17\xf1\xf3\x49\xfc\xbc\x15\x3f\x87\xe2\xe7\x4a\xfc\xbc\xf9\xcf\xf6\x76\xd1\xee\xe9\xb2\xab\x45\x4b\xb5\xe4\x77\x8f\x4d\x33\xef\x03\x9c\xd8\x31\x9a\xc0\xc3\x7b\xdc\x6a\x4b\xd4\x89\x33\x59\xeb\x5c\x0c\xe7\xbc\xbe\x28\x6a\x4d\x4e\xdb\x6d\x2a\x68\xd4\x75\xb8\x04\xf7\x0f\xbf\x12\xe8\x33\x35\xda\x07\x96\x87\x13\x42\xcd\x33\x66\x95\x6e\xea\xf8\x5e\xc3\xfb\x41\x0d\x0f\x1e\x7e\xb9\x73\x78\xaf\x55\xad\x29\xa1\xf8\x0b\x9d\x0a\xdc\xcc\xfb\x22\xaf\xd4\x14\xf1\xd3\x06\x14\x46\xca\x0b\x9e\xe1\x03\x30\x06\xab\x5e\xac\xd7\xde\x0b\x18\xe3\x15\x15\x87\xf1\x39\x79\xc1\xf1\x4f\x09\xa5\x9f\xab\x63\xf2\x9c\xbf\xbd\x00\x74\x83\xc3\x32\xdc\xdf\x47\x3c\xf7\x33\x52\x8f\x05\xbf\x61\x6c\x52\x0f\xd5\xd2\x04\x83\x7b\x60\x5a\x6c\xf4\xff\x00\xe0\x96\x99\x3b\x99\x5a\x01\xe4\x39\x90\xa5\x61\x3e\xe0\x57\xbb\x05\x66\x69\xc5\x2f\x4e\xbe\x1c\x7c\x88\x3f\x72\x40\x01\x18\xc3\xe4\x47\x6a\x35\x7c\x6b\x83\x35\x1c\x0c\x5a\x72\x5d\xb0\xe9\x65\x70\x7f\xe2\x8c\x93\xbc\x28\xa8\xbc\x67\xeb\x35\xc5\x86\x96\x03\xa1\xf5\x33\xe1\x05\x22\x4c\x49\x1e\x21\xfc\x8a\x7a\x07\x38\xc5\x07\xd4\xcb\xe5\x85\x9a\x62\x8a\x5f\x20\xc4\x89\xbd\x03\x73\xe3\x7e\xa6\x16\xfe\x24\x2f\x4d\xb8\x5c\x28\xfe\x97\xeb\xfe\x8b\x5f\xfb\x22\x0e\xd6\xcf\xe2\xcb\x4b\xe0\x3f\xd2\xc9\x0b\x24\xb8\x91\xbf\xc3\x9d\x21\xe1\xa8\xae\x75\x9f\xde\xbe\x83\x2d\x28\x61\x9f\xd6\x82\x43\x4c\x58\x64\xf9\xc6\xef\x77\xab\xda\x33\x6a\xa0\x63\x06\x91\x28\x38\x0c\x37\xfe\x2b\x80\x97\x60\xc5\xfa\x07\x96\x81\x90\xe6\x13\x16\xe6\xa0\x3d\x36\x2d\xbc\x2c\x8c\x23\x0c\xd1\x4a\x62\x98\x52\x85\xdc\xbf\xa2\x5e\x86\x63\xac\xf5\xba\xcb\x29\xcf\x34\x29\x2d\xa3\x09\xdd\x95\x8f\xb4\xee\x3d\x46\x21\xb9\xed\x75\xd6\xf6\x43\xf2\x8a\x52\xfc\x61\x83\x47\xac\xd7\x46\xc9\x92\xbf\x18\xa6\xf5\x7a\xed\x1c\x0b\x26\xaa\x03\x4a\x8b\x3a\x5e\x91\xd3\x27\x84\x4e\x04\x9f\x98\xd0\x8a\x5f\x6a\x59\xd8\x42\x4d\x8c\x9a\xe3\xc4\x39\x8d\xcb\x53\x27\x9a\x40\x60\x2b\x33\x8c\xe7\x74\x93\xfe\xb6\x31\xd5\x87\x46\xe8\x54\x4c\xcb\x84\xe3\x7f\x55\xcd\x66\xf6\x33\xf5\x32\x34\xcd\xe4\x2c\x56\x9f\x2c\x72\x4a\xd0\x0f\x6d\xe1\x97\xa2\x08\xce\xe9\xf4\x5c\x05\x65\xbd\xa9\x2a\x5c\x2b\x2b\xa2\xb4\x76\x39\x99\x82\x4a\x4e\xe3\x12\xb0\x79\x19\xcc\xb5\x56\x31\x38\xce\xaa\x55\x76\x42\x3b\x6c\x8e\x49\xad\x10\x07\x31\xe7\x54\x5f\x2e\x21\x35\xae\x5d\x40\xcd\x43\x4e\x80\xb6\x9c\x91\x28\x1f\xc3\x14\x4d\x79\x6e\x35\x01\xf5\x86\x4f\xe3\x2e\x67\x5f\xf5\x86\x65\x85\xe7\x6a\x92\xf9\x89\xe7\x15\x5a\x2d\x34\x6a\xad\x09\x2a\xed\xd5\x6a\x4e\x03\x39\xa7\x56\x18\x7a\x36\xcd\x27\x4c\x46\xc7\x7e\xfb\x15\xeb\x14\x46\x8d\xfc\x1d\x6b\xd3\x31\x30\x9c\x91\x17\x14\xba\xaf\x7c\x7c\x78\xd9\xce\x18\x50\x63\x62\x99\x05\x4c\x99\x08\xa2\x3c\x29\xa9\x1a\x70\x86\x7d\x24\x42\xbd\xbe\xfd\xca\x55\x6c\xb5\xd9\xcb\x76\xc6\x6a\xed\x38\xbc\x0e\xfd\xe6\x60\x9a\x4b\x24\xcb\xf1\x6a\x6a\x35\x53\xb4\x3b\xf4\x1b\x65\xdb\x0b\x61\x49\x5b\x75\xc9\x82\xf7\x29\xb3\xfa\x54\xec\x8c\xa7\x99\x2d\x48\x9f\x64\x61\xc1\xbb\x46\xd4\xf2\x1c\x7e\xc5\xf2\xdc\xf0\xc3\x3d\xe1\x30\xf3\x13\xc5\xe7\xf1\x92\x3f\x7a\x73\xba\x5e\xbf\xa5\x08\x0b\x08\x20\xbf\x56\x8d\x8a\x37\x9f\xb1\x8f\x54\x99\xfd\xc9\x4c\xa0\x90\x7c\x78\xdb\x6a\xb4\x4b\x8a\x9b\xbc\x51\x6c\xc3\x74\x5b\xc5\xc4\xd1\x6e\x14\xdb\xb8\xe5\xad\x82\x02\x3f\x60\x2a\x00\xfc\xd5\x57\xcc\xa1\x60\x4e\x34\xca\xdc\x01\x82\x54\x61\x7b\x86\xae\xee\x31\x43\xf5\xc2\x6a\x92\xae\xee\x31\x49\xf5\x92\x6a\x9e\xae\xbe\x7a\x47\x02\x63\xbc\x97\x82\x63\xcb\x84\x5f\x15\x6f\xa9\x71\xb7\x66\x67\xea\xf3\x6d\xa4\xdc\x9b\xec\x14\x43\x5f\xdb\xc1\xb4\xd4\x40\x82\x46\x1b\x30\xa5\x87\xd4\xcb\xcd\xfd\xd9\x58\x20\x40\x1b\x9e\x51\x92\xd0\xe9\x4f\x5e\x42\x15\xe3\xb0\x1d\x34\x98\xc3\x9f\x77\x9d\xeb\xa0\x19\x34\x96\x39\xfb\x7b\x5a\xf7\x6e\xe8\x31\x29\x51\x65\xd3\x74\xc2\x38\xf8\xb1\xee\x5b\x2d\x17\x3e\x50\xe2\x55\xe4\xba\x14\x1c\x4a\xd0\xbf\xfb\x84\x8c\x5d\x97\xee\x58\x38\xc8\x2f\xb4\x61\x54\x65\x93\x67\x0a\x15\x24\x84\xd4\xa2\x6c\x5b\xb2\x79\xb3\x52\xeb\xf5\x8f\x16\x1b\x05\x10\xa9\x1b\x23\xaf\x40\x37\xac\xb8\x56\xa3\x7c\xa0\x47\x29\xe4\x12\x0c\xdd\x54\xd6\x67\x3a\x70\x1c\xeb\x4b\xa5\x6c\xcf\x2c\xa9\x08\xad\x93\xa8\x22\x78\x3e\xe5\x58\x84\xeb\x32\x7e\xdf\x54\xde\x92\xba\xee\x3b\x0a\xa8\xd7\x52\xfc\x58\xe2\x4d\xcf\x47\x08\xf5\xc9\xc5\x7a\x3d\x37\xd9\xe6\x14\xf5\xc9\x72\xbd\x9e\x51\xd7\xd5\x42\x32\xc9\xc9\x8d\x9c\x3e\x79\x47\xbd\x19\xa8\xc0\xe4\x8b\x0b\xea\x21\xb4\x5e\x9f\x9a\xc2\xa7\xbc\xf0\xf1\x7a\x7d\x6c\x17\xd6\x12\x36\x28\xcc\xb3\x1d\x8b\x48\xa4\xef\xba\x2e\x1b\xbd\xf8\x38\x23\x8c\x90\xd9\xb4\xb6\x1a\x8a\x97\x5b\x90\x6c\xfa\x3b\xc7\x51\x14\x9e\x97\xce\xbd\x42\xb9\x25\x28\x24\x25\xfd\x9a\x2a\x12\xe6\x42\x90\x34\x27\x3a\x61\x29\x09\x67\x95\xd0\x1e\xa9\xa4\x71\x75\x89\x63\x91\xb0\xd7\x2a\xa1\x87\x67\xa4\x4a\x02\x77\xfe\x40\xeb\x0a\x85\x66\x33\xff\x64\x21\xe8\x3d\x2d\xcb\xea\xe0\x86\xb4\xb6\x74\x7b\x1b\x93\xd4\xb0\x1f\x91\xeb\xf6\x01\xa7\x07\xb2\xec\x07\x4a\x16\xb6\x6e\x84\x3e\x3c\xbe\x75\xae\x7e\xb6\xb6\x3e\x10\x0a\xd3\x7f\xdb\x2a\x10\x6a\x48\xc0\x53\x62\x84\xac\xcc\xf6\xfb\x95\x6e\xc4\x83\x81\x69\xeb\x59\x5c\xdb\xf5\xba\x76\x72\xac\x23\xf2\xa3\x3d\x15\x30\x2f\xd3\x37\x60\xc2\xd8\x50\xa0\xeb\xff\x62\x33\xb2\x56\x40\x7e\x89\xb6\x43\xa3\xf1\x03\x46\x5a\x92\x4e\xa5\x08\x69\xfe\x5d\x86\x5c\xd7\xb1\x76\x91\xd3\x27\x19\x1c\x5b\x0e\xed\x0c\x23\x17\x48\xea\x2a\xeb\xd4\xe6\x50\x6c\x48\x7e\xe6\xfa\x63\x40\x63\xda\xba\x19\x38\xf3\x1e\x7d\x8f\x80\x5c\xfc\xeb\x94\x34\x9e\x8e\xc7\xca\x11\x51\x4b\x5f\x23\xe9\xd6\xd7\xb0\x14\x31\xf6\xca\xeb\x2c\xe9\xd6\xc6\xe8\x56\xc2\xe8\xd2\xd1\xa8\xa9\x64\x2c\x16\x77\x2b\x64\xbc\x2b\xf2\xab\xeb\xba\x3e\xc6\x07\x35\x2a\xd0\xca\xb8\x5d\xa3\xe0\x75\x97\x46\xc1\x09\xb9\xa9\x82\x93\x70\x83\xe2\x45\x44\x9a\x9f\xb4\xe6\x45\xed\x93\xa5\x7a\xd1\x4c\xd7\x3a\x11\xcd\x0f\xdd\x8d\xd8\xda\x17\xed\x0f\x75\xf5\x8b\xd6\xf7\xee\xb6\x6a\x0a\x18\xa0\xc1\x70\x12\x26\xb5\x1c\x5d\xa5\x6a\x0a\x2b\xb5\x2f\x5a\x59\xa7\x96\x6a\xf4\x58\x9a\xc9\xb4\x91\xa4\x95\x26\x4e\xc2\x55\xed\x83\x54\x98\xb0\x52\x94\xaa\x0e\x4f\x9c\xd5\xbe\x28\xe5\x9c\x5a\x22\x68\xe7\xd4\x53\xa4\x7a\x4e\x2d\xb1\xad\x9c\x71\xf1\x55\xca\x19\xd7\x7f\x58\x39\x63\x8f\x5f\x8b\xd7\xb7\x29\x67\x5c\x76\x28\x67\x7c\x21\x97\xf7\x55\xce\xf8\x44\xbe\xb8\xee\x17\x4b\x39\xe3\x12\xbf\x25\x9f\x5c\xf7\x82\x23\x13\x09\x2d\x4b\x7c\x58\x43\x6c\x8b\x6b\x29\x68\x87\x62\xd2\xdb\xb9\xf5\xe8\x39\x2b\x96\x2e\x1c\x04\xfe\x07\x4b\x8d\xb5\xac\xd7\x6f\x5d\xf7\xed\xe8\x38\xcd\x66\x69\x76\x62\x3d\xaa\xfc\x36\x8e\xe1\x21\x7c\x45\x0e\x5d\xf7\x70\x94\x96\xbc\x9f\xb3\xc6\xbd\xf5\x46\x01\x33\x79\xd1\x2a\x01\x97\xbc\x6f\xc7\x13\x23\x1a\x00\xc0\x28\x39\x89\x7e\x33\x1d\x67\xe1\x38\x92\x1f\xb7\x3b\x3f\xe2\x2c\xf4\x55\x8e\x47\x9b\x73\xe0\x0c\x74\x4a\x8d\x6e\x0a\x78\x01\x05\x5d\x60\x3e\x59\xaf\xf0\x0b\x7c\xd0\x52\x7f\xf8\xdc\xa5\xfe\xb0\xdf\x56\x7f\x38\x23\x7b\x1b\xd4\x1f\x3e\x92\xcf\x46\xf7\xe0\x39\xd9\x6f\xea\x26\x3c\xbb\x4b\x3d\xe2\xcc\x75\xcf\xa4\x7a\xc4\xd9\x1f\x53\x8f\x78\x47\xf6\x4d\x17\xde\x93\x8f\x62\x6a\x94\x94\xfe\x17\x5b\x1d\x42\x7e\x7b\xfe\xbf\xa4\x0e\xf1\x3b\xf9\x34\xdd\x6b\x68\x43\xbc\x24\x7b\x4a\x19\xe2\x03\xd9\xb3\x75\x21\x7e\x22\xbf\x4f\x7f\xb7\x2d\x64\x55\x91\x1f\x88\xf7\x8a\x74\x2b\x49\xbc\x90\xe9\xb8\xe3\xc2\x7e\xe5\xbd\x80\xfb\x18\xe1\x9f\x1b\x1a\x14\xbf\x92\xfd\x6e\x05\x8a\x1f\xc9\x81\xd2\x9f\xf8\x27\x79\x39\x7d\xa9\xe7\xf9\x30\x56\x6a\xac\x75\x05\x18\x73\x36\xf7\x8c\x0a\x43\x3d\x62\x98\xb5\xa6\xde\x4d\x85\x1d\x07\xdf\x54\x08\xd3\xc6\xe1\x7b\x00\x83\x6f\xea\x62\xfc\x43\x58\xf7\x9c\xc7\x57\xf8\xdf\x84\x43\xe9\x51\x96\x5f\x62\x0a\xad\xed\x29\xa5\x0b\x56\x6b\x5c\xeb\x4f\x64\xb4\xa6\x55\xad\x0e\x32\xf5\x8c\x12\x94\xad\xc4\xcc\x11\xad\x7d\x6a\x22\xd4\x0b\x41\xdd\xcf\x0a\xed\xfa\x99\x1f\x69\x8b\x2e\x25\xcc\x16\x17\x1a\xc1\xa0\xc9\xa0\xb4\x5f\xf8\xf0\x0c\x1c\x29\x9a\x8a\x0a\x8a\x1f\x09\xae\x17\x8c\xb7\xc0\x3f\xa7\xae\x90\xff\x57\x5a\x49\xff\x2b\xad\xc4\x74\x03\x6b\x0c\xa6\x1e\x46\x2a\x6b\x48\xbf\x50\xc2\xe0\xc7\xf2\x78\x55\xe3\x08\x03\x7e\x8d\x0b\xd2\xcf\x5c\x17\x54\x3a\x70\x0e\xcf\xfd\xc2\x75\x5f\xc0\x7b\xaa\xdf\xfb\xb9\xeb\x7e\xa4\xc2\x56\x3b\x5b\xaf\x8b\xf5\x3a\x5f\xaf\x53\x5c\x92\xf8\x3f\xa3\x34\x91\x90\xd2\x9e\x34\x5e\xe3\xc2\x52\x97\x78\xae\x30\xfa\x05\x5a\xaf\xe3\x9a\xba\xc4\x42\xea\x4f\xc8\x28\x1c\x90\xe0\x08\x37\x99\xfc\x05\xad\xd7\x29\xff\x2c\xc4\x89\xf2\xb3\x11\x59\x58\x09\x6f\x75\x05\x68\xbd\xbe\xa4\xde\x02\x27\x9c\xca\x95\xb6\x28\x0b\x3d\x82\xd2\x72\x35\xa5\x35\x30\x8c\x03\x99\x6c\xbd\x3e\xa4\xa0\x59\x81\x33\xb4\x51\xf5\x62\xa9\x4a\x5a\x0e\x95\xba\xd4\x39\x9e\xdb\xea\x1c\x87\xb7\xab\x73\x74\xd4\xb9\xba\x5b\x9f\xe3\xf0\xbe\xfa\x1c\xba\xfa\x1b\x4b\x74\x01\x6a\xf1\xff\x9a\xfe\x0b\x3e\xdd\x24\x79\x36\x4f\x4f\x56\x00\x4e\x27\xfd\x31\xa6\x1a\xb8\xf2\x37\x11\x2c\x31\xc3\x97\x45\xca\x64\x5a\x85\x26\x42\x07\xa5\x2a\xbe\x82\xbd\x07\xaa\x6b\x5a\xd2\x80\xcd\xfe\x1f\x57\xb8\xb8\x3f\x67\xfb\x0e\xa1\x43\xcd\x93\x0e\xaf\x7e\x48\x18\x58\x68\xb2\x46\x2b\xf7\x14\x47\xb0\xaf\x10\x47\x3c\xdf\x24\x8e\x28\xfe\xa0\x38\x82\x35\xc5\x11\xcf\x6d\x71\x44\xf1\xf5\x3c\xc7\xe6\xe4\x0c\xec\x39\x9d\x8e\x27\x3e\xce\x42\x1a\x11\xb6\x49\x62\x91\x7f\x95\xc4\xa2\xbe\xc6\xf9\x1f\x92\x5e\xac\xbe\x46\x7a\xf1\x63\x4d\x78\x31\x1c\xea\xf6\x85\x20\x23\xff\x7a\x41\xc6\xea\x6e\x41\x46\x7e\x0f\xa6\xf1\x6a\x83\x20\x23\xff\x23\x82\x8c\x55\x5b\x90\xe1\x0d\x06\x66\xac\x35\xa9\x46\x5b\xac\x91\xde\xbd\x86\x62\xc9\xf0\x26\x11\x47\x61\x44\x1c\x94\xae\xd7\x79\x5d\xc4\x51\xd0\xaa\xd1\xc8\xc6\xc5\xbe\xee\x90\x70\xdc\x76\x80\xd3\x7b\x70\xf6\xaf\xdb\xb2\x8f\xf4\x1e\x2b\x74\xdd\x96\x7d\xa4\xf7\x59\x1c\x53\x0e\x54\x08\x79\x87\x83\x6e\x5e\xbb\x3c\x70\x22\x0f\x01\x73\x74\x5f\x2e\x49\xfc\x95\x52\x92\x9c\xd6\x8f\x56\xfc\x87\x8e\x16\xbb\x65\xd2\x25\x52\x82\xb3\x46\xe5\x5f\x25\x4e\x89\xff\xb0\x38\x25\xfe\xf3\xe2\x94\x7c\x93\x38\x85\xde\x5b\x9c\x22\x66\x62\x30\x10\x4b\xb6\x59\xc2\x92\xde\x22\x61\x11\x75\x58\x35\x08\x91\xcb\x9c\xe2\x59\xd3\xf7\x81\xb9\xf0\x0b\x8e\x96\x29\x4f\xf9\x02\xc5\xcb\x04\x56\xa7\xe2\xbb\x04\x31\x47\x04\x84\x0f\x73\x92\x86\x73\x3a\x8d\x27\x83\x41\x01\xbe\xcb\xfb\x3e\x87\xda\x5e\x1e\x96\x11\x2e\x71\x8e\x90\xf0\xa9\xae\x95\x64\x0c\x66\x7f\xda\xe4\x6c\x1b\x2d\x03\xf0\x1b\x7e\x3c\x99\x4f\xfe\xe9\xba\xff\xac\x31\x6a\xa7\xed\x9d\xa5\xf1\x9d\x7f\x22\x9c\x11\x1a\xfe\x33\x0a\x38\x95\xc5\x1f\x24\x4d\x21\x5d\x41\xf5\xc7\x92\x86\x4a\xd1\x4d\x25\x56\xe7\x9d\x62\x60\x43\xc8\x26\x36\x85\x42\xd9\x44\x5e\xef\xfc\xcd\x8a\xa1\xd2\x64\x35\xcb\x0f\xba\x8e\xaa\xa6\xda\x7c\x6c\x0f\xef\x8c\x02\xda\x00\x43\x26\x24\x31\xb9\xce\xeb\xfa\x37\xfb\x9b\x34\xa0\xfb\xfd\x67\xae\xfb\x0c\xd0\xb6\x4a\xc8\xa8\xbc\x03\xe0\x80\xff\x32\x39\x97\xaa\x38\x0d\x2e\x78\x97\x1c\xe9\xe3\x1f\x94\x23\x01\x59\xac\xfb\xfc\x5a\x89\xaa\x44\x77\xdb\x2a\x93\x6a\x65\x84\x37\x7b\xd5\x91\x0d\x9c\xf7\x6e\xd6\xba\x64\xd8\x7f\xa1\x42\xba\x63\x31\xee\x0b\x81\xbb\x7a\x0d\x26\x7d\xb1\x5e\x73\xb4\x5f\x6f\x86\x02\x99\x78\x2e\x45\x97\x2a\xf4\x09\xb5\x3d\xa8\xd0\x3e\xa0\xa5\x33\x7e\xe3\x9a\x99\x4c\x71\x2c\xc2\x9f\xac\xd7\x5e\x0e\xa7\x2d\xa6\x08\xef\x53\x2f\x45\xa8\xdf\xd4\xd8\x04\xb5\xe4\x58\x1d\x8b\x4f\x14\x98\xf7\x38\xe1\x4f\xfc\x7c\xe1\x05\x89\x01\x38\x25\xa0\xda\xb6\x50\xd3\x06\x5b\x14\xa8\x82\x0c\x2f\xc4\xb8\x57\x24\x9d\xa6\x5e\x89\x13\x9c\x0d\x1c\x07\xf3\xfa\x63\x25\xbd\xc2\x4b\xa2\xcf\x08\x68\xed\x2e\x45\x8b\x73\x4e\xab\x25\x08\x9f\x92\xfe\x1c\x68\xb3\x04\xe1\x63\x78\xee\x9f\x02\x5d\x96\xa0\x60\x45\x12\x3c\x5f\xaf\x4f\xd7\xeb\xe3\xe9\x1b\xea\x95\x68\xba\x22\xe5\xe4\x8c\x7a\xe7\xa4\x44\xae\xfb\x8a\x7a\xe7\x3c\xe9\xaf\xd7\x3f\x2e\xd1\xe4\x74\xea\x2d\x49\xdf\xc7\xcd\xea\x6f\xd3\x2c\xd6\x54\x5f\x41\x7e\x9a\xfe\xe4\x65\x68\xd2\xa1\xd3\xd9\x54\x32\x2e\x10\x2e\x2a\x2f\xe1\x48\x17\x9a\x1c\x6f\x68\x55\x29\x90\xde\x4f\xe1\x72\x83\xba\xda\x07\x5b\x5b\xed\x83\x54\x56\xfb\x8b\x14\x52\x65\xff\x57\x24\x8c\x5a\xe2\xad\x33\x01\x24\x00\x98\xf4\xc9\x4c\x47\xd3\x91\x67\xe6\x07\xa9\x3c\x29\xb5\xc3\x98\x89\xbf\x24\x46\xad\xd1\xf8\xda\x09\x82\x80\x30\x6d\x59\x76\x87\x14\x3b\x73\xdd\xda\x5d\x97\xb9\xae\x84\x2b\x19\x22\xe4\x7d\xe5\x25\x68\xbd\xbe\xe2\x1b\x6e\xea\xad\x48\x89\xaf\xe4\x4e\xbb\x53\x51\xd3\x28\x3d\xf7\xb3\xc0\xe8\xf7\x81\xda\x28\xdf\x80\xb1\xd1\xed\x93\x1b\x2e\xdd\x89\xf5\x3d\xc4\xc2\x34\xc2\x89\x54\xf0\x2b\x23\x4c\xc5\x0d\x64\x2b\xf8\xe9\x83\x93\xb8\xae\x97\x10\x0a\x31\xd0\xf2\xe9\x92\xa3\xb4\x25\x4e\xd0\x64\xa1\x9e\x8c\xc6\x9f\x47\xf1\x73\x2a\xb4\x3a\x4b\x34\xd9\xe7\x63\x71\xdd\xfe\x01\xff\x5d\xaf\xbd\xae\x51\xdd\xad\x97\xfe\x45\xe9\xa5\x67\x14\x54\x6d\xf9\x7a\x23\x84\x26\x7c\xab\xc2\xc5\x74\x1e\x2c\x21\x54\x1b\xdf\x5c\x09\x5e\x21\x9c\x7b\x2b\x9c\x80\x12\x27\x38\x6b\x94\xa8\x53\x82\x50\x20\x21\xc7\x0a\xb4\x4e\x19\x68\x34\x9e\x50\x80\x69\x81\x56\xf8\x17\x6a\x8f\x00\x91\x62\xc4\xeb\x50\x50\x25\x6f\x4f\x4d\xe9\xba\x5e\x49\x52\x84\xa1\xe2\x18\x97\xa8\xaa\x10\x7e\x6e\xdf\x6c\x17\x75\x65\x82\xb7\x74\x93\x1b\x3e\x46\xfe\xe1\x59\x94\x9c\x71\x52\x3c\x61\x78\x8c\xb0\xcd\x6d\xd4\xb8\x87\x76\xcf\x80\xa5\x3e\xe7\x3f\xbc\x42\xbb\x62\xe6\xa5\x62\x09\x77\x52\x6d\x14\x1a\x0b\x3f\x0d\x6c\x90\x47\x01\x2f\xa4\xaf\x0a\xe9\xa5\xc7\x63\x03\x5f\x64\x66\x01\x2a\x95\x53\x07\xcd\x9b\x01\x66\x82\x17\x23\x0c\x22\x0b\x8e\x4e\xf3\x31\xc3\x50\xde\x53\x84\x85\x3d\xa8\x1e\xfc\xf5\xff\x3f\x14\x3f\xf7\xfe\x02\xc5\xcf\xf3\xba\xe2\xa7\xae\xfb\xb2\x56\x77\x4b\xde\x6f\xa9\xe3\x94\x4d\x75\x9c\xcc\xcc\x02\xc8\xdd\x5f\xdf\x4f\x29\xe7\xcb\x5f\xa8\x94\xb3\x6f\x2d\xf6\x27\x6a\x1c\xc3\x37\xf0\x8d\xba\xa2\x82\xe5\x7f\x33\x64\x11\x72\xdd\xda\x8a\x99\x0b\x8e\xcf\x21\xef\xe6\xdb\x2e\x12\x69\x8c\x2d\x37\xd0\x0d\xa9\x50\x41\xfe\xed\x21\x9c\x93\x78\xe8\x15\xc3\x4c\xc0\x77\x52\xe0\x7c\x77\x0c\xbd\x1b\x0c\xd8\x2e\x49\xb5\xa3\x34\xed\xe2\x64\x1c\x09\xff\xd2\xcc\x54\xac\x24\x5f\x12\x9d\xd0\x79\xf9\x9e\xff\xd7\xb4\x73\x27\xfc\xcb\xa3\xd8\x51\x92\x0d\xe7\x76\x9e\x9d\x2f\x79\x76\x5e\x46\x18\x6e\xe9\x93\xf4\xb2\x0a\xd5\x99\x79\xe2\x52\xaa\x26\xef\xa9\xc5\xf4\x3f\xbc\x5b\x5d\x89\x17\xbb\xa2\xe4\xd8\x02\x3e\x3a\xbf\x1e\x53\xe5\x21\x34\x3d\xee\x0a\xe1\xa6\x30\xf2\xe7\x1d\xb6\x80\xfd\x5f\x5b\x89\x15\x7e\xb3\x51\x43\xe7\x55\xa7\x86\xce\x67\x5a\x53\xb5\x39\xd0\xaa\x36\x2f\x28\x79\x70\x97\xa6\xcd\x41\x27\x86\xad\x6f\xf8\xd3\x1a\xd5\x4c\xc8\x0a\xf4\x6d\x96\xf0\x57\xe8\xde\x9c\x76\x6b\xf8\xdf\x4b\x49\xa8\xec\xd6\xe3\x6f\x9c\x63\x33\xd2\xfb\x29\xef\x9c\x75\xce\x52\x87\xb5\x26\x6f\xed\x23\x25\x57\xb7\x1a\x76\xd4\x42\xec\xf1\x9d\x7b\xd5\x49\x9a\xc9\x45\x6e\xac\x45\xff\x24\x84\x19\x8c\xac\x19\x7f\x6e\x77\x0f\x56\x74\x5a\x0a\xfd\x1d\x34\x79\xad\xd7\xee\x19\xc5\xef\x28\xf1\x9e\x75\x05\x3e\x33\xf4\x04\xaa\xf0\x05\xed\x8e\x36\xd5\xb4\x2b\x29\x76\xfd\x29\x0b\x8b\xa1\xaf\xd8\xb5\x38\x25\xc5\xee\xf6\x94\x85\xdb\x91\xb6\x39\xce\x0b\x2f\x27\xcf\xd4\x08\x76\x1f\xd9\xae\x0c\xf4\xc4\xe5\x53\xaf\x18\x0e\xcd\x8d\x8e\x53\x5b\x4b\x4c\x7b\x56\xe6\x1b\x2a\x6b\x6c\xa8\x42\x83\x42\x03\xa3\xcd\x4e\x29\xa6\xaf\x78\x11\xd7\xbd\x04\x3a\x46\xcd\xe3\xc4\x5c\x3a\x85\xeb\x82\x40\x21\x13\xf2\x86\x2c\x64\x11\x98\xbd\x69\x1f\x11\x18\x22\x74\xe6\xa4\xd8\x79\xa4\x6e\x93\x1c\x17\xc4\x47\x98\x1a\x36\x83\xa2\x1f\xb4\xbd\x46\x16\x05\xb1\xeb\x3e\x13\x68\x48\x86\x73\xcb\x0b\x13\x42\xa8\xae\xee\x69\xb6\x83\xa5\x93\xf5\x8e\xde\x5f\xed\x4a\x2d\x50\xdb\x05\x4c\x71\x8b\x67\xa3\xbc\x01\x13\xba\xbd\xfb\xb4\xee\x7d\xad\x73\x0a\x41\x7f\xba\xb4\xf9\x6e\x35\x65\x2e\x8c\x51\x72\xb6\xc1\x67\x61\x4b\xe3\x4a\x2c\x34\x27\x51\xbb\x34\x1a\xe2\xb6\x46\x43\x49\x52\x33\xce\x84\xc4\x4d\xbd\x85\x05\x29\xeb\x7a\x04\x2b\x12\x9b\x02\x4b\xe2\x15\x1b\x24\xf0\xf9\x2d\x12\xf8\xc2\xcb\x85\x04\x7e\xc3\x4c\x82\x42\xf2\xd7\x4c\xd6\x7a\xbd\x52\x93\xd5\xe7\xc8\x45\xfb\xd2\xfd\x8b\x9d\x84\x74\x40\xeb\xe5\xad\xf4\x58\x41\x92\x3f\x49\x8f\x15\xae\x5b\xd8\xf4\x58\xe1\xba\x72\x69\x0a\x44\xc8\xe2\x2e\x3f\xde\x17\x2a\xf0\xd9\x13\xf0\x6e\xcf\x1f\x1e\x21\x9c\x92\xad\xdf\x8e\x66\x83\x07\x5b\x01\x84\xb0\x2e\xbb\x94\xaf\x3d\x46\x44\xb8\x3d\xe6\x39\xd8\x69\x06\xd3\xd4\x33\x7c\x53\x19\xd4\x83\x15\xe9\xb9\x87\x64\xa1\xad\xa3\x72\xb0\xd5\xe9\x07\x51\x02\x2b\x90\x8d\xea\x28\x39\xa3\x55\xb1\x20\x34\x50\x66\xb1\xe5\xea\x58\x9c\x28\x6f\x6c\x47\x9b\xc1\x71\x23\x40\x4d\x49\xa0\xff\x2f\x33\xe6\xe5\xd8\x1f\x23\x9c\x88\x04\x50\xfc\xf3\x72\x11\xa4\xeb\xd2\x21\x84\xc4\xda\xc7\x56\x8e\x10\x1b\x5d\xa6\x33\x76\x4a\x4a\xed\x2f\xd1\x39\xed\xc8\x74\x4a\xd3\x93\x53\x26\x73\x81\x8f\xb2\x2b\x8e\x0c\xc6\xeb\x75\xc1\xc9\xb3\xcd\xde\x91\x8b\xa4\xa4\xac\x37\xa3\x65\x52\xa4\x4b\x96\x17\x10\xd7\x6b\xe0\x8c\x1c\x14\xb0\xd1\x8c\x66\x65\xca\xae\x49\x02\x5e\x0a\x19\x87\x77\x22\x84\x21\x52\x31\x35\x1b\x93\x25\xe7\xe8\x1f\x07\x6f\xdf\x8c\xc4\xac\xa4\xf3\x6b\xd8\xf4\xa4\x91\xc6\xc0\xb7\x35\x04\x30\x15\x46\x7b\x98\x99\xaf\x5d\x34\x7a\xee\xd1\xf6\xca\x8a\x70\xc2\xab\x62\xd1\x11\xb0\xec\xfd\xab\x5e\x5a\xf6\xa4\xaa\xd9\x6c\xe4\x68\xe5\x5b\x28\x60\xec\x25\xc5\x04\x6b\xdd\x5a\xf9\x3e\x70\x2e\x1d\x84\xa9\x9c\x58\xeb\xab\x48\x18\x38\xa7\xf0\x59\xce\x90\xf5\x5d\xa6\x0c\x9c\x2b\x07\x61\x26\xbd\x2e\xf7\x1c\x04\x93\x27\xde\x30\x7f\xbd\xe3\x38\x18\xc0\x23\xd4\x14\x47\xe0\x69\xb7\xd3\x29\x05\xe0\xa3\x77\xd5\x57\x73\xfc\x07\x3e\x4d\xd2\x8c\xd3\x67\xd6\x39\x56\x07\xf9\x80\xda\x97\x8c\x3c\x16\xd6\xed\xa0\xf4\xc3\xfa\xbe\xcd\x51\x3a\xa0\xcc\x0b\xfb\xe3\xa8\xeb\x20\x31\x74\x43\x09\xdf\x3e\xb8\x3f\x16\xf4\x22\x9a\xde\xe2\x81\x8e\x84\x51\xb3\x66\xba\xc1\x4f\xa9\x9a\x76\x24\x36\xe8\xe4\xb6\x5a\x65\x5d\x96\x37\xa2\xd6\x1e\xd6\xa0\x9c\x69\x11\xbb\xc7\xc0\x7d\x94\x30\x44\xae\x10\xda\xd4\x86\xf6\x26\x4f\xc2\x08\x0b\x7f\xfe\x46\x61\x61\x30\x40\xe0\x43\x9c\x69\xef\xe2\x34\xcc\x22\x64\xb6\x0d\x7f\x33\x8c\xca\x7b\xb9\xd0\x6b\x44\x41\xf8\xf4\x89\x96\xaf\xf3\xd9\x0a\x62\x73\x62\x7e\x76\x21\xf0\x5d\x5d\xf4\x30\xf3\x32\xef\xf1\xb7\x88\x03\x58\xfe\xf8\xdd\x77\x88\x83\x58\x48\xe5\x8f\x31\x3c\x7e\x3b\x46\x08\x97\xe2\xd1\x47\x1c\x50\xf1\x47\xff\xe9\x23\x84\xf0\x42\x64\xfe\x1e\xe2\x18\xf0\x47\x48\x5d\x8a\xcc\xfc\x71\x2e\x52\x1f\xdb\x98\x51\x2b\x60\x92\xe9\xeb\x94\x4e\x6e\x54\x88\x3e\x6a\x29\x0f\x9d\xd6\x1c\x6a\x36\xfd\x68\x62\xb1\x98\x4a\x63\x47\x4d\x37\xcc\x33\xf0\x7d\x0d\xe5\x69\xf8\xbf\x62\xfe\x45\x05\xae\xdb\x08\x6b\x1c\x8e\x45\x5c\x79\x08\x14\x81\xc0\xd0\x3c\x57\x53\xc8\x31\xfb\xd3\xd1\x72\xb1\x3a\x49\x9b\x2c\x0a\xdd\x5f\x75\x2a\x32\xc2\x36\xd1\xb5\x46\x22\xba\xcc\x4b\x96\x94\xe5\x3b\x51\x23\xc8\xaa\x45\xca\xcf\xb4\x28\xd3\x3c\x23\x5e\xad\x7d\x34\xba\x10\xe9\xd2\x3b\x96\x66\x25\x48\xc4\xa6\xae\xb6\xe7\x65\xd8\x91\xd5\x39\xf8\xe6\x84\xb2\xb6\x19\x53\xaf\x58\xaf\x3d\x7e\xd7\x22\x84\x8b\xaa\x42\x38\x53\x0a\xbc\x75\x7a\xc2\x84\x51\x3e\xf5\xc2\xcc\x2b\x50\x84\x54\x46\x11\x45\x15\x67\x15\x3e\xb5\xc0\x76\xaa\xba\x8c\x4f\xe5\x6d\xbd\xb0\x52\x2e\x68\x36\xcb\x39\x9e\x61\x92\x16\x69\xc9\xc8\xca\x4a\x48\xf2\xf3\x46\xb8\x7a\x43\xac\xd1\xcb\x5e\xac\xd7\x84\x22\xde\x74\xcc\xde\xf3\x0d\xbf\x21\x77\xd9\xc8\x3d\xa3\xc9\x62\x53\xde\xa2\x91\xb7\xb8\xa5\xde\x65\x33\x6f\x9e\x6f\xec\xf1\xdc\xce\x0b\xa7\xf0\x98\x9c\x06\xe6\x78\x1e\x63\x03\x4e\x74\x6a\x85\xf1\x1d\x61\x62\x0d\xcc\x2a\x38\x10\xbc\xc7\xe1\xcf\x49\xcc\x4f\xfc\xf7\x70\xe2\xf9\xe3\xe3\xa7\xf6\x19\x8d\xef\x7d\x46\x05\x47\xd3\x66\x9a\xaa\x3a\xb4\x96\x95\x90\xf9\xea\x6d\x21\x05\xf5\xe7\xf1\xf2\xed\x92\x95\x04\x58\x80\xc6\x6f\x35\xcc\x9e\xd0\xcb\x18\xe5\xf0\xbd\x92\x1c\x34\x73\x0b\x19\xcf\x12\x69\xf9\x3a\x5e\x92\xd6\x96\xee\x0c\x68\xa1\xab\xe4\x0d\x4e\xfb\xfd\xda\xbb\xf0\x0b\xbc\x2c\xe8\x45\x9a\xaf\x4a\x0f\x29\xb2\x76\xcc\x31\x11\x95\xdc\x56\x8a\x06\xf9\xb7\x2d\xb6\x57\x59\x5f\xc7\xcb\x72\xbd\xf6\x5a\x69\x5a\x05\x88\x8f\x73\x74\x19\x2f\xce\xea\x17\x63\x3a\xf7\x98\x74\xa5\xc1\xaf\x03\xf1\x24\x3c\xf3\xf0\x6e\x1a\xb0\xd2\xfc\x12\xc0\x8d\x42\x6b\x8d\x59\xb1\xc5\xf9\x1a\xd6\x3e\x49\xf1\x26\x47\xe5\xa4\x54\xde\xfe\xcc\x47\x9d\x96\x2f\xb3\x45\x5a\xd7\xbf\xe5\xa8\xe4\xc6\xb9\x95\x2b\x3a\x4a\xa1\x58\x2d\x8e\x64\xfd\x53\x60\x26\x4f\x7f\x89\xb3\x2c\x67\x31\x6f\x46\x79\x9c\xb5\x1a\x22\x35\xf2\x14\x90\x06\xf0\x8e\xd5\xbd\x68\xeb\x75\x33\xbd\xcc\xcf\x69\xd7\xc5\xde\xa3\xb2\x47\x7c\x16\xc4\x98\x0f\x60\x5e\xcb\xfd\x3c\x63\x35\xc8\x73\xf7\xd6\x52\x23\x29\x6b\x35\x4c\x6f\xf9\x36\xf9\x2b\x06\x70\x99\xb2\x53\x59\x9f\x07\x18\x09\x66\x42\x5f\x66\x4f\xcf\x68\x63\x05\x85\xf3\x8e\xee\xc9\xd7\xf2\x70\xaa\xdc\x7b\xc3\x46\xcd\xf2\x19\x2d\x4d\xc4\x3c\xb6\x4b\xc6\x01\x1b\x0e\x91\x23\x21\x34\x5f\x21\x8f\x36\x0b\x84\x2c\x12\xd6\x1c\xae\x2b\x22\x19\x32\x7a\x65\x70\x1e\xe7\x6f\x3d\x31\x1d\xaf\xe3\xe5\x32\xcd\x4e\x3e\xbc\x7f\x45\x80\xc0\xd4\x95\x88\xd8\xfb\xfb\xa7\xe9\x62\xc6\x6f\x5d\x4e\x13\x50\xb6\x79\x81\xcc\xae\xc2\x40\xdf\x6d\x3c\x67\x82\x8e\xcb\x94\xc3\x6a\x1d\x26\xb5\x76\xa6\xe6\x45\x7e\x2e\x5d\x7c\xf5\x21\xde\xde\x0d\xff\xab\x22\x9d\x73\x5a\xaf\xa0\x8b\x98\xa5\x17\xd4\x2b\x50\x00\xd4\x88\xe9\x9e\x5a\x90\x1c\x37\x6a\x4d\xca\x52\x39\xf5\x97\xa8\xc1\xbb\x82\x5e\x00\x64\xe8\x1c\x89\xb5\x09\x30\xab\xf3\x75\x14\xaa\x23\xa2\xd2\xb3\x29\x9d\xd0\x50\x98\x24\x8c\x52\x26\x2c\xe0\x22\x0f\x05\x4a\x49\x1b\x34\x37\xc5\xc0\x77\x4d\xb4\x3c\x11\x16\xb9\x20\x34\xcc\x06\x83\x48\x7b\x83\x82\x50\xf6\x19\xbd\x62\x1e\x42\xa3\x59\x9e\x51\x9d\x31\x13\xce\x07\x2b\xc1\x0f\x2b\x70\x29\x17\x5d\xcd\x45\xcc\xf1\x68\x8a\x80\x39\xc3\xe7\x7e\xbd\xd6\x68\xc0\x68\x96\x16\x59\x7c\x6e\xf2\x2c\xd4\x8d\x24\xd4\x73\x6e\x39\x44\xde\x82\xd4\x90\xa0\xd1\x81\xda\x39\xfb\x79\x56\xae\xce\x69\xe1\xc5\xb0\xbb\x80\x24\xb5\x8b\xba\xae\xb7\x68\x24\x91\x66\x42\x83\x92\xac\x31\x84\x39\x64\x98\x2c\x48\x0c\x5c\x0f\x68\x08\xe9\xfb\x4b\x2c\xa0\xee\x8a\xb7\xc0\x25\xae\xcf\x46\x82\x38\x69\xc7\xe1\x4a\xf7\x69\x54\xac\x22\x28\xa5\x00\xae\x87\xd6\xeb\x7b\x80\x59\x73\x68\xa7\x1b\xd2\xff\x12\xf8\x62\xaa\x53\x40\x92\xe5\xcf\x20\x90\x6a\x17\x92\x53\x4c\x0b\x38\x39\x1e\xc4\x1f\x6f\x04\x5e\x45\x93\xcb\x34\x9b\xe5\x97\xa3\x63\x96\xc7\xde\x2a\xa3\x65\x12\x2f\xa9\x07\xb1\x14\xe9\x87\xf7\x2f\xf7\xf3\xf3\x65\x9e\xf1\x73\x43\x65\x53\xf1\x6c\xd6\x3d\x71\x70\x42\x02\x79\x46\xcc\xc4\x4d\x9d\x59\xcc\xe2\x09\x5f\x97\x34\x81\x42\x5b\xbf\x97\x79\x16\x88\x0e\x60\x47\x06\x2e\x95\x03\xf0\xf4\x42\xea\xae\x22\x9b\x85\xfc\x47\xa7\x5d\x60\x16\x2b\xb6\x5c\xb1\x1f\xd2\x05\xf5\xd0\xc0\xe1\xd9\x94\x3f\x76\xe7\x28\x73\x82\xa1\x06\xc2\x49\x69\x2e\x6a\xe7\xa8\x38\xca\x1c\x41\x7b\xc8\x67\xac\x32\x0d\x08\x1b\x38\x5b\x0f\xbb\xa0\xe6\x80\x0e\x9c\xde\xc3\x2d\x87\x4f\x99\x69\xb7\xbd\xd1\x2c\x1c\x88\xe5\xd3\xfa\x56\xb5\x3f\xc9\x30\x09\xf0\xc6\x57\x73\x63\x56\xfe\x11\x4d\x1c\x96\xf3\x0e\x42\xf3\x27\xc2\xfa\x96\x76\xe2\x65\xa2\x7d\x95\x45\x4d\x39\x96\x8b\x58\x87\xec\x9e\xba\x0a\x5a\x30\xdf\x6b\x20\x2c\x16\xb6\x26\x8b\xd4\x00\xab\x69\xc0\x6c\x25\x5d\x79\x6d\x83\x99\x9c\x7a\x3f\x85\x6a\xf6\xa3\x89\x7e\xd4\xe7\x3f\xe2\x03\x56\xb3\xd2\x1d\xbb\x57\x2f\xec\x8e\x83\x6a\x61\x01\xb6\x7e\x3b\xba\x1c\x4c\x8e\xb6\x8e\xb6\xb6\xb4\x34\x59\x7f\xb7\x94\x53\xd5\x62\xb5\xa1\x68\x7d\xc1\x9c\x91\xd3\x12\xe5\xdf\xb1\x7f\x61\x97\xb5\xeb\x35\x29\xca\x47\x02\xc3\x9b\xb0\x05\x84\x30\x25\x76\x01\xb5\x43\x30\x45\xd8\x39\x3a\xe2\x9d\x30\x9f\x4b\xba\xb4\xa2\x04\x6c\x1d\x1d\x6d\x9d\x60\x67\x0b\xc2\x04\x60\x85\xd1\xbe\x8b\x1b\x81\x1b\xbb\xd0\x48\xb3\x27\xed\x94\x49\x7d\x97\xd2\xf6\x7d\x8e\xec\x1d\x2a\xb6\xdf\x06\x9c\x5e\xad\x35\x71\x1c\x3d\xf8\x4d\x57\x90\x36\x38\xf7\x6e\xf8\xbd\xd6\x3e\xfe\xca\xa5\x23\xc4\x8d\xf4\x71\x4a\xfc\xa0\x4e\x13\x79\x1a\x55\xa9\xf9\x4f\x8b\x71\x09\x5b\x89\x8a\xe3\x9f\xe3\xd8\x75\x1d\x9a\xc1\x8d\x50\x0a\x55\x1c\x49\x29\xa8\xa7\x11\xc4\x75\x99\x0a\x6c\x24\x9e\xcd\x24\x90\xf0\x6e\xc4\xe7\x09\xb5\x66\xd9\x8b\x11\x56\x73\x31\x9b\xdc\xf0\x0d\x3f\x29\x70\x92\x2f\x56\xe7\xd9\x24\x05\x55\xfc\x22\x3d\x49\xb3\x78\x21\x3f\xd6\x1b\x19\xf1\x34\x95\xbd\xf1\x49\xa4\x0e\xfd\xaa\x42\x93\x8d\x7d\x71\x76\xb2\x5c\xc2\xb2\x5d\xa7\xd9\x96\xaf\x6a\x1e\x57\xb7\x77\xb2\x42\x08\x7b\x8c\xe4\xa3\x73\x10\x7b\x6c\x1d\x65\x5b\x27\x08\x4d\xbd\x62\x60\x24\x9a\x19\xc9\x8d\xdf\x41\x80\xb2\x1c\xae\xa6\x24\x37\xc1\xc7\x27\xe9\x40\xbf\xc2\x34\xc3\x40\x60\xa2\xc5\xbe\xe0\xf8\x8c\x30\xc6\x5a\xaf\x6f\x8a\xf8\xb2\x9c\xdc\x54\x55\xe0\x39\x33\x9a\x2c\x80\xb7\x3e\x12\x8a\x1a\x71\x9f\x90\x04\x5a\x5b\xaf\x93\x11\xcf\x38\x2a\xe9\x79\x9a\xe4\x8b\x1c\x0c\x9e\x3a\xd6\x8c\x66\xb3\xbf\x64\xc5\xb6\x37\xaf\x18\xcd\x66\xdd\xeb\xc5\x3f\xfc\x77\x57\x4b\x21\xbf\x2a\x5f\x83\x38\x31\x56\x86\x5d\x70\x99\x63\x59\x08\x75\x5d\x26\xf0\x45\x12\x96\x8d\xe0\xe1\xb7\x1f\x33\x86\x6e\xe8\x40\xb0\xa3\xc1\x41\x1b\xad\x3c\x64\x71\x64\xca\x4e\x8e\x4c\x9d\x23\xfb\x78\x1b\x49\xf3\xe0\x4d\xf2\xdb\x3f\x1d\x2d\x53\x49\xb4\x40\x10\x23\x10\xa6\xd6\x85\xb3\x03\x5a\x46\x3b\x59\x23\x12\x76\x16\xd2\x28\xe8\x0c\xbf\xfb\x5a\x46\xbf\x3c\xa6\xec\x92\xd2\xac\x37\xee\xc5\xd9\xac\xf7\xe4\x11\x48\x7d\x60\x91\x66\xb4\xd5\x92\xac\xf5\xc9\xb7\xb2\x39\xf2\xfd\x78\x4a\x87\x4f\xbe\x9d\x7c\xff\x9d\x4a\xf1\xb7\xb7\xa7\x74\xf8\xfd\x77\x83\xed\x27\x93\xc7\x4f\x55\xea\xb7\xdf\x4d\xe9\xf0\xf1\xd3\xc1\xb7\xdb\x93\xc7\x8f\x08\xa1\xd3\x27\xdb\x93\xc7\xdf\xc1\xc3\xa3\x09\xdf\x1b\x1b\x23\x5c\x3f\x7a\x6a\xb1\xa6\x72\x6d\xfe\x11\x43\x0c\x57\x1d\x02\xab\xcc\x0b\x46\x67\xc0\xf1\x82\x77\x7e\x06\xc9\x8d\xde\x8e\xaf\xf8\x66\x1c\xfa\x66\x7f\xee\xab\x2d\x5b\x59\xb1\xa7\x47\xab\x4c\xd4\xf3\x83\x90\x2f\x34\x38\xbc\x56\xc3\x5a\x02\x21\x78\x9f\x76\x1d\xf1\xac\x1e\xec\xbe\xdf\xb5\x27\xe8\xa8\xd6\x35\x9c\x13\xd6\x48\x49\xed\x3c\xa2\xb7\xa0\x6d\xda\x48\xd3\xa6\x00\xbb\xd9\x7a\x9d\x43\x64\xd2\x78\x97\xa4\xeb\x75\x31\x4a\xf2\x73\x0e\xb3\x9e\x5d\xff\xa8\x8a\xbc\xcb\xcb\x94\xf7\xa4\x7c\x99\xcd\x17\x3c\x01\xba\xb4\x43\x64\x5c\x78\x31\x6b\x98\xa2\xa9\x57\x9f\x54\x1f\xdb\x43\x97\x52\x16\x34\xb1\x0a\x29\xbe\x5e\x23\x4b\x7d\x66\x58\xde\x08\xbc\xdb\x30\x7a\x11\xcd\x29\xc6\x99\xac\x0a\x64\x8c\xf7\x1a\x0c\x6a\x6e\x05\x64\xf7\x89\x6f\x68\x09\xd6\x5e\xa5\x25\x23\xf9\xad\x3b\x4e\x48\x9d\xbf\xdb\x16\x96\x26\x4f\xb7\xd1\x08\xba\x7e\x40\x19\x8e\x79\x82\x8f\x70\x09\x39\x1e\xa1\xd1\xe7\x55\x9a\x9c\x1d\xe4\x05\x33\xdb\x34\xa9\xad\xf5\x46\xd4\x8c\x82\xe1\x5e\x21\xf8\xe3\x1a\xa3\x78\xc9\x31\x16\x50\xdd\x16\x2a\x00\xd9\xa8\xa4\x50\x6d\x39\x05\x8e\xb3\x97\x61\x26\xd4\xce\x17\xf0\x68\xd9\xde\xd6\x9b\xfd\xea\x06\x25\x73\xa3\x18\x9d\x50\xb6\x57\x9c\x78\x19\x76\xa4\xb8\xc1\x81\x68\xd7\x56\xba\xa4\xa1\x1d\x3e\x0f\x76\x3a\x47\x22\x4b\x07\x87\x11\xc2\x49\x47\x81\xf7\x79\xce\x1c\x18\x17\xc2\x8b\xae\x0a\x25\x96\xaf\xf2\xac\x6a\x79\xce\xc5\xfa\xf1\x56\x97\xb5\x0f\x1c\xf3\x92\x45\x38\x7a\x9d\xf7\xa5\x51\x92\xec\x7d\x87\x44\x38\x2b\x57\xcb\x25\x6c\x94\x9e\xcc\xc4\xe1\x5e\x8e\x02\xa1\x87\x5d\x8c\xb2\xbc\x38\x8f\x17\xe9\x17\x20\xe3\x71\x4c\x62\xe0\x13\x48\xa5\x0b\x78\xb6\xf2\x74\x28\x1a\xc8\x9d\x9d\xb8\x6e\xc1\x89\x8f\xe3\x32\x5f\xac\x40\x3f\xba\x91\x40\xd1\xb4\xb0\x58\x06\x98\x72\x84\x58\x71\x65\x3f\xc1\x74\x92\x14\xf0\x57\xc1\xf7\x29\xed\x7e\x60\xb3\xc9\xe5\xfc\xd5\xf2\xc6\xd6\xf7\x58\x36\x28\xa9\x29\x52\x2b\xa5\x8e\xa6\xb7\x79\x20\xe2\x08\xea\x0a\x3e\xbc\x7f\xc5\x3b\xcb\xb7\x9f\xea\xac\x59\x61\x92\xd8\x29\x86\xf3\x22\xbb\xa2\x96\x91\xac\x6a\x7d\x7f\x1d\x2f\x39\x3d\x2b\xe9\x0d\xbe\xa4\x64\x69\x87\x53\x96\x00\xb8\x06\x26\x95\x51\x66\x03\x2a\xaa\x64\x51\x31\xe8\xf6\x4a\xa1\x82\x44\x5d\xa0\x6c\x3b\x59\x96\x36\x1f\xf8\xfc\xc3\xab\x65\x40\xfe\x5f\x3c\x64\xf2\xdc\x3b\x7f\x7a\x57\xd7\xf7\x08\xd8\xe8\xd5\x76\x18\xa4\x04\x42\x9c\x23\x30\xb7\xa1\x85\xd6\xa9\xe2\xb2\x3b\xf2\x2c\x34\xb5\x2f\x36\x28\x5f\x1c\x88\x2e\x81\xa3\x95\x55\xb1\xe8\xcd\x53\xba\x98\xf5\xd2\xac\xa7\xaa\xeb\x65\x39\xeb\xa5\xe7\xcb\x05\x3d\xa7\x19\x33\xea\x19\x99\x99\x0b\x8a\x95\x63\x04\x0e\x99\xed\x29\xe2\x7d\x05\x74\xde\x4e\x14\x1d\x97\xb3\xb6\x53\x02\xf2\x0b\xb7\x23\x11\xcf\xae\x9b\xee\x94\x12\xf3\xed\xe8\x30\x95\xb8\x06\xb4\x58\xea\x30\xe1\x79\x31\xa3\x05\x9d\x01\x9a\x94\xe5\xd9\x30\xbf\xa0\xc5\x42\x6c\xe5\x91\x71\x90\x52\x92\x0c\x1b\xbc\x43\x58\xd1\x4c\x1a\x88\x48\x3e\x68\x63\x22\xe9\xc0\xaf\xb0\x62\x33\x02\x74\x4f\x3c\x7b\xfc\xe7\xc2\x4f\x8a\xc0\xa0\x13\x38\xe4\x7a\x6f\x75\x2b\xcb\x2f\xea\x99\x24\xaa\x92\x58\x17\xb2\xda\x49\xe4\x51\x3d\xf9\x93\xee\xdc\x6b\x75\x54\xe1\x48\x74\x0b\x99\xad\xa2\xd8\x69\x17\xbd\x43\x39\x7b\x8c\xbb\xe5\xd2\xd2\xaa\xb4\x55\x9d\x64\x5f\x7e\x82\xd3\xa5\x12\xbd\x3a\x60\x69\xc2\x23\x05\x03\xdb\xb5\x55\x15\x6a\x0c\x5d\x81\x82\xaf\x1f\x79\xb3\xe4\x9f\x1b\x78\xb3\xb6\x3f\x35\xee\x66\x65\xad\x61\x27\xa7\x71\xf1\xb2\x94\x9f\x0f\xe8\x32\x06\x96\x46\xa7\x85\x1a\x85\xb0\xf0\x7b\xcc\xd3\x56\x17\x4e\xe0\x08\x8f\x21\x0e\x86\x87\xc6\x26\xab\xf5\xb8\x85\x52\xb7\xa0\xc5\x71\xb2\x88\xcb\x92\xca\x73\xa7\xe1\x42\xaf\x5e\x8f\x03\x5b\xf9\xc7\x17\x6f\x5e\xbc\xdf\x3b\x7c\xf1\xfc\xd3\xdb\xf7\xcf\x5f\xbc\x27\x3e\x4e\x46\x6f\xdf\xbf\xfc\xf1\xe5\x9b\xbd\x57\x32\x69\x9b\x67\x7b\xff\x62\xef\xf0\xc5\xc1\xe1\xa7\x57\x6f\x3f\xbe\x78\xff\xe9\xd9\xdb\x0f\x6f\x9e\x43\xde\x57\x2f\xf6\x0e\x0e\x3f\x7d\x78\xf7\x4e\xa7\x6e\xd7\xfa\x4e\xe3\xe4\x54\xb6\xd8\xb2\x4d\xbe\x10\x21\xfd\x09\x5b\xaf\xf9\x16\x51\x71\x30\x32\x4e\xf9\x37\xfa\x25\x1d\x8c\xb5\xd2\x27\xb9\x84\xe8\xad\x7d\x19\x08\x89\x8b\x2c\x56\x1f\x92\x2e\xd5\x5c\x55\x59\x48\xc9\xe7\x3b\xae\x87\xb3\x2c\xbf\xcc\x04\x20\xeb\xe5\xf3\x9e\x90\x14\xa5\x79\x36\x72\x90\x94\xe9\x34\x76\x50\x90\x6f\x52\xa1\x54\xf6\x3e\x32\xf3\x94\xbf\x4f\xea\x48\x45\xcc\x34\x1b\x4e\x6d\x15\xc5\x50\x60\xa4\x03\x9f\x88\x31\xeb\x40\x08\x2c\xae\x07\x00\xcf\x26\xe9\xd4\x04\xa4\x6d\xb2\xc9\xbe\xf4\x27\xb4\x86\x03\xe0\xfa\xcd\x6f\x7d\x95\x65\xf9\xf5\xa8\x6d\x9b\x00\x1d\xb0\x47\x0a\x97\xa7\x18\x27\x7f\x04\xbb\x34\xfe\x05\x59\xf4\x61\xda\x00\xba\xf1\x62\xd1\xa6\x61\x7e\xa8\x1d\x36\x35\xc7\x36\xfc\x97\x17\x5d\x46\xd4\x14\xda\x1f\x45\x12\xbf\x1c\xed\xa1\xb2\xe6\xe8\xec\x22\xf2\x8e\xc4\x63\x04\x4e\xb2\x94\xa4\x52\x6e\xad\x79\x9a\xcd\xc4\xc2\x00\xdb\xcc\x88\x4b\xb5\x48\x73\x67\x2c\x59\x0c\x61\x24\xcd\x21\xc3\x08\xc7\x56\x71\xc5\x43\xca\x70\xf7\x6e\xc5\x8e\xdd\x59\xc7\xbc\xee\xcb\x9e\x59\x44\xdf\x5b\xf9\x49\xcf\x17\xce\xdb\x67\x17\xae\xfb\x78\x97\x8c\xb5\xf9\x65\x67\xbb\x61\x0c\x26\xe0\xc6\xaa\x5f\x21\x02\x4a\xf8\x9d\x90\x3a\x9e\x18\x94\xae\xdb\xc0\x1c\x09\x49\x02\x94\x0a\x32\x57\x32\xba\xd4\xd4\x96\xd8\xa9\xed\x4f\x45\xc9\x24\x8d\x25\xb0\xf3\xa9\x11\x4b\xba\x28\x2e\x59\x73\xc1\x4a\xec\xf0\xe4\x1f\x3b\x4b\x54\x08\x6f\x1c\xec\x60\x10\x47\x42\x5d\x58\x3b\xa4\x22\x4d\x7c\xb7\x73\x80\xcc\x4e\x93\x78\x31\x59\xfc\x7f\x68\xd4\x4a\x01\x3e\xe5\x94\x7f\x4b\x62\x4c\x12\xbc\xb0\x1c\xbd\xd5\x7c\xeb\xd9\xf7\x3a\xb2\xb3\x69\x31\x70\xbd\x74\xeb\xb8\xb4\x8f\x32\xe6\xa4\x82\x56\xea\x6f\x00\x59\x49\x2f\xd4\x25\x6c\xe6\x33\xce\x50\x83\xc8\x03\x85\xd4\xac\xce\x0a\xd5\xdf\x8c\xda\x8f\x70\xdc\x06\xd1\xc7\x3b\x69\x40\x13\x95\x84\x99\x88\xed\x8d\x3c\x21\x8b\x08\x31\xea\x3c\xc6\xa1\x16\x5e\xdc\x8a\x83\x5e\xd8\x31\xc9\xe5\xb4\x2e\xec\x69\x05\x37\x24\x6d\xf2\x96\x2a\xa0\xaa\x29\x52\xa0\x61\x63\x9e\xbb\x8b\xc4\xa5\x1d\x34\x2c\x2f\x11\x64\x36\x3d\xaa\x73\x89\xf9\x6c\x12\xa6\xd4\xdc\xc0\x0d\x61\x63\xd6\x55\x7d\x56\x43\xb1\x32\x41\xaa\xc2\x2e\x58\x50\x9c\xb5\xc8\xd9\xac\x4d\x7c\x77\x55\xfb\x35\x94\xb7\xdd\x03\x45\x84\x07\x06\x7e\x51\x83\x12\x5a\xf5\x4b\x47\x06\x78\x09\x0e\x60\xda\x28\x7e\x18\xe1\x39\x7c\x6a\xa1\xc0\x61\x84\x67\x64\x8c\x4f\x49\xa2\xb6\xcc\x6c\xe7\x34\x98\xa9\x00\xf6\xc7\x24\x09\x67\x11\x3e\x07\x2a\x72\x15\x9c\x37\x48\xf4\xe3\xc6\x85\x7d\xde\xa2\xd6\x8f\x5b\x57\xf6\xb1\x16\x94\x78\xe7\xea\x66\x8a\xf5\xd6\x3e\xd6\xb7\xd1\x79\x1d\x6c\x1d\xd7\x2f\xf7\xf3\x26\x00\x3b\x6e\x5e\xef\xc7\x70\x6f\x43\x2b\x40\xea\xe7\x56\x1b\x70\xa3\x23\x3c\x17\x00\xef\x1c\x21\xbc\x54\x8f\x0a\xb6\x94\x5e\xd7\x7c\xdd\x7a\x73\x21\x9c\x55\x75\xe0\x61\x88\xb0\x6e\x2a\x63\x61\x53\x19\x8a\xef\xb6\x49\x9d\xb7\xfb\xa0\xcb\xa5\xe7\xe8\xc9\xe2\xbe\xa8\xb9\xf6\x8d\x02\x4e\x44\x12\xbc\xc0\x4b\xe2\xe3\x39\x19\xcb\xbd\x30\xc6\xc7\x64\x8c\xcf\xc9\x18\xbf\x36\x5e\x31\x4e\xc8\x18\x5f\x90\x9b\x0a\x5f\xf3\x3f\x7b\x7c\xe7\x5c\x92\x30\x0a\x4e\x76\x5e\x83\x9b\x3e\x41\x2a\x68\x12\xe2\x04\xa1\xe5\x60\x80\x4f\x06\x03\x5e\xb1\x31\x6b\xc1\xcd\x5c\x27\x83\x81\x30\x67\xe1\xbd\xf2\x84\xc7\xce\x15\x6a\x6c\xb4\x25\x4e\xc8\x49\x90\xec\xbc\x76\x5d\xa1\xfb\xb2\x81\xac\xf1\x28\x4e\x50\x90\x0c\x06\x80\x31\xa4\xe4\x22\x04\xe3\x1d\x98\xa3\x13\x9c\xa0\x08\x9d\x18\x79\xa0\x69\x36\x15\x03\x49\x02\x14\x4b\xd1\x88\x47\xf1\x09\xbe\x46\x78\x41\xae\x85\x62\x14\x3e\x21\xd7\xa3\x82\x96\x0c\xa7\xda\xdf\x62\x3a\xf7\xb6\x41\x10\x2e\x05\x33\x2d\xb4\xfc\x87\x7c\x95\xcd\x7a\xb1\x94\xaf\xe1\xde\xf1\x8a\xf5\xb2\xbc\xc7\x2f\x58\xe0\x35\xd8\xdc\x8c\x47\x5f\x51\x13\x14\x06\xb9\x9f\xaa\x52\xd7\x74\x11\xe6\x11\x49\xab\xac\x75\x12\xe7\x83\x34\x1c\x0b\x38\xd0\x3c\x92\xaa\xd9\x5d\x1f\xe2\x48\xca\x43\x79\x3c\x48\x43\x3f\xc2\xc7\x03\x02\xbf\x59\xfd\x3c\xce\x06\x69\xb8\xcd\x81\x47\x3d\xbd\x91\x6d\x40\x7c\x2b\x45\xf6\xe4\x74\x90\x86\x8f\x22\x7c\x4a\x9a\x5f\x4c\x47\x1e\x43\x47\xe0\xdc\x9e\x0f\xd2\xf0\x71\x84\xcf\x79\x37\x1e\x47\x08\xe1\x4b\xa5\xe3\x8a\x8d\xd9\xa8\xf6\x16\x52\x6b\xdd\x75\xf7\xb4\x3e\x6c\xe9\x5d\xe2\x5b\x65\x0d\xcf\x69\x5d\xd6\xd0\x01\x46\x2f\x71\xe9\xed\xdd\x01\x02\x36\x90\xe5\x64\xaf\x6a\xe3\x15\xdd\xf4\xa7\x74\xbc\x01\x7c\xb7\x30\x8b\x76\xc8\x18\x75\x4a\xf9\xf8\x08\x35\x07\xeb\x04\xee\xe1\xa2\xc7\x4e\x63\x4e\x05\xf6\xe8\xe7\x55\xbc\xe8\xb1\xbc\xe7\xe3\xde\x49\xce\x7a\xce\x40\x18\x9f\x40\xa5\x45\xb4\xb3\xa1\x4e\xb1\x0e\x77\xd7\x3a\x36\xb5\x16\x96\xd3\xaa\x51\x49\xe3\x42\x88\xce\x60\x0c\x55\x03\xc5\x82\xbb\x4e\xb4\x71\xb0\x8c\xb3\xba\x7e\xb9\xb6\x03\x19\x07\x74\x67\x03\xf1\x6c\xf0\x9a\x86\xab\xb7\x56\xce\x90\x02\x2d\x40\x07\xfe\x1d\x75\xd5\x5d\xac\x75\xd4\x33\xf0\xa1\xa6\x86\x14\x8f\x10\xfb\x20\xf1\x14\x74\x23\x22\x22\x36\x70\xda\xf6\x79\x1b\xfa\x41\x92\x67\x2c\xcd\x56\xb4\xaa\xba\xcb\xf8\x5b\xe3\xaa\x3e\x79\x79\x63\xab\x75\x93\x95\x0d\x6e\x64\x07\x95\xd9\xa4\xa9\x3b\x08\x47\x54\xe1\xac\x83\xda\x53\x14\x7c\x6b\x8a\x5a\x04\x42\x9b\x10\xb8\xd7\xc9\xc3\x76\x5f\x8e\xd3\xb8\x74\x36\x30\x78\x90\xb0\x70\xd5\xf4\xe0\x46\x5e\x4b\x98\xc1\xd2\xe5\xad\xa5\x63\xcd\xa5\x13\x74\xae\xee\x40\xae\x09\x6f\x29\x7a\x12\xd8\x3d\x49\x5d\xd7\x4b\x49\x8b\x17\x92\x0a\x36\x75\x0b\x99\x6b\xa2\xfb\x69\x17\x13\x44\xb0\xc4\xe3\x5a\xe3\x1c\xf2\xa9\xa6\x6b\x5e\x0c\x48\xec\xba\x9e\xa2\xc5\x35\x8f\x22\x46\x08\x2b\xe6\x41\x8a\xeb\xf4\x5b\xde\xa4\xc6\xbb\xc9\xb7\xbc\x4d\xa5\x8b\x8c\xc0\x26\x89\x2b\xe5\x9f\x4d\x35\x03\xbc\x53\x68\x09\x9e\x64\x75\xf0\xac\x19\x2b\x8d\x2d\x7c\x1a\x2b\xe4\xbb\x7c\x3b\xdf\x5b\x2c\x14\xca\xbc\x49\x6f\xb6\xa5\xf0\xdb\x91\xaa\x2e\x8c\xc6\x9a\x94\xe9\x17\xea\x21\x85\x2c\x34\x8a\x6c\x54\x8a\x95\x3e\x68\x84\x3e\xac\xdd\xf3\xd2\x56\xfe\xfe\xa1\xc5\x3d\x4d\xe7\x5e\x57\x43\xc8\xaa\x36\xb0\x81\x4c\x93\x05\x43\xcd\x7e\xae\xe9\xb7\xd4\x6a\xe3\x7b\x59\x31\x26\x6f\x25\x38\xd3\xdb\x08\xce\x54\xcb\x9e\xdb\x05\x73\x52\x8c\x56\xc5\xe2\x1d\xc7\x1c\x9b\x05\x11\x52\xae\x12\x52\xa3\xe8\xf7\x1b\xa8\xc5\x81\xae\x23\x76\x04\x16\x23\xe4\xb5\x84\xe4\xa3\x32\x39\xa5\x1c\xff\x6e\x93\xb7\x31\xba\x6d\x98\xdd\x24\x6f\x8c\xe0\x24\x7b\xfd\x7c\xb4\x8c\xd9\xe9\x7a\xed\x6c\x41\x2b\xfc\x05\x75\x35\xe2\x6c\x39\x83\xf4\x0f\x34\x24\xca\x45\x95\xed\x29\x0e\x16\xb0\x89\x92\x7d\xe3\x7c\x33\x48\x07\xdf\x38\xbd\x54\x8a\xb9\x78\x2b\xb4\xa7\xa9\xe6\xd1\x37\x8d\x4d\x74\xd2\x04\x7c\x77\x73\x06\x15\xf3\x0f\x86\xce\x36\xec\x1e\x86\x90\xe6\xd8\xdd\x74\x9f\x48\x8b\x03\x03\xe7\x52\xee\x46\xcd\xb2\xad\x33\x17\x3b\x6e\x8d\xbb\xb9\x8d\xa8\xc2\xf9\x7f\x8d\x45\xf8\x75\x17\x45\xae\x2f\x8a\x74\x13\x57\x29\x87\xdd\x95\x2a\xd4\x97\x68\xa3\x91\xda\xbc\xea\x66\xd3\x7b\xf2\xc4\xd2\xaf\xe2\x89\xa5\xb7\xf2\xc4\xaa\xaf\x5a\xe1\x0a\xb3\xd1\xb3\xb8\x4c\x93\x36\x7b\x6c\xc1\x89\xdd\xfb\xb0\xc7\x96\x0d\xf6\x98\xf4\x0d\x41\x92\xda\x97\x3b\x89\xdc\xe5\xbd\x88\x5c\x83\xfe\x85\x11\xb6\x39\x5b\x4a\x96\xac\xbd\x41\x0e\x06\xc6\xb9\x27\x58\x04\xd7\xf3\x85\x2c\xd2\xcc\x3c\x75\xe4\x6d\x0b\x6d\x2a\x48\x82\xbb\x0b\xd9\xc6\xda\x94\xd3\xd7\xcb\xff\x45\x74\x4c\xa3\xd6\x5a\x8e\x22\x7b\x8e\x3b\x3d\xff\x34\x24\x29\x43\x0b\xdf\x11\x72\xeb\xfa\x77\x8d\x63\xac\xd7\x2d\x19\xcb\x6d\x65\x45\x8e\x0a\x8c\x4d\x1b\x13\x6a\x2c\xb2\xd3\x69\x6a\xe6\xb6\x63\xde\x24\xc3\xb9\xd1\xa5\xa1\x97\xde\xde\xe7\xa1\xaf\xcf\x5b\xab\x47\x77\x16\x6e\xa3\x80\xd3\x5b\x4a\x28\xb4\x7d\x32\x46\x98\x83\x9b\x09\x1d\xf1\x9f\x0a\x4d\xbe\x12\x1b\x5a\xfe\x11\x6c\xa8\xd7\x38\x07\xf4\x82\x16\xd7\x1b\x8c\x7a\xf4\x3c\x6f\xa8\x5d\x5a\x12\x2e\xef\x8f\xdb\xdc\x76\xd4\xec\x63\xa5\xc2\x9e\x37\x77\x41\xf3\x58\x99\x86\x84\xbf\x2b\x11\x1f\x51\xf1\x43\xef\x77\xed\xd2\xbb\xae\xdd\xe5\xd7\x5c\xbb\xc6\xa5\xc3\xed\x40\xa7\x46\x27\x5a\x80\x83\x8f\x00\xac\x7e\x32\x33\xd6\xd6\x25\xdd\x75\xab\x23\xe3\xb5\x5b\x17\xec\xea\xad\xc4\x0f\xf3\xda\x5d\x94\x83\xba\xcb\xc0\xcb\xee\x7d\x4a\x72\x29\x0d\xbb\xb3\x0c\xe1\x88\x15\xaf\x7d\x7a\x4b\x46\xeb\x4c\x54\xb7\xdf\x4d\x8d\x7d\x7f\x87\xd2\xc0\x06\xd6\x8b\xd6\x06\xee\x62\x61\x07\xf7\xdd\xa4\x26\x78\x7b\x6b\x9f\x82\xd9\x80\x59\xbf\x36\x91\x1b\x93\x71\x10\xef\x18\xa7\xe4\x6a\x47\x24\x24\x0d\xe3\x08\x2f\x6a\xc5\x2d\xda\x30\xd1\x72\xf2\x45\x17\x89\x98\x37\x0f\x08\xa0\xe9\x8b\x4e\x69\x79\x83\xee\x9c\xcd\x3c\xd0\xb5\xec\x46\x64\xb5\x77\x67\x38\x46\x89\xe2\x86\xaf\x6a\xfd\xd4\x14\xa4\xf8\x5e\xd3\x4d\x84\x06\x56\x08\xaf\x6a\xd4\xa6\xaa\x7e\x25\xe9\xd6\xa5\xc6\x22\x17\x0d\x69\x7e\x52\xdf\x55\x03\x9b\x0c\xdf\xb4\x55\x9b\xd7\x61\xd2\xdc\x70\x77\xd6\x42\x08\x69\x34\x3c\xbd\xa5\x84\x0d\xd9\x6b\x38\x70\x72\xab\x2e\x41\xd2\xa9\x4b\xb0\x52\xda\x74\x1d\xbc\x26\xc0\x39\x96\x5d\x2c\xcb\x65\x83\x65\xb9\x61\x9b\xab\x1a\x2a\xa5\x19\xd4\xb1\x45\xef\xc9\xdf\xd4\x35\x7c\x9d\x74\x83\xa3\x94\x00\xcc\xe8\xac\x8d\x54\x2e\x9b\x06\x12\x6c\x93\x6a\x0e\xeb\x54\xcd\x61\x12\xbf\xb1\xe1\x81\x74\x96\xae\x5c\x73\xd5\xcd\x1f\x86\xbe\xd4\x4d\xb0\xfc\x52\x68\xb7\xe8\x58\x1b\xf7\x40\x80\xb2\xf9\x22\xcf\x0b\x0f\x5c\x99\x6e\x6d\xa3\x41\x86\x17\x24\xf6\x72\x9c\x86\x49\x04\x57\x90\xbc\x6f\x78\x2b\x8b\x69\x32\x59\xec\x8e\xa7\xc5\x30\xd9\xf5\xa7\xd4\x4b\xac\x2a\x27\x25\xc7\x1a\x5a\xbd\x9f\x16\x1a\x2a\x4c\x8b\xc9\xd0\x9f\x24\x93\x64\x98\x41\xe9\x0c\x27\x77\x96\x4e\x26\xd9\xce\x78\x3a\xf4\x27\x59\xe5\x0d\x7d\xed\xf2\x10\xcb\xf1\xaf\xd7\xdd\x33\x29\x04\x1c\x9a\xf0\x93\x7e\x88\x83\x74\xe8\xef\x92\xb1\xb0\xcb\x2f\xbc\x2c\x4c\x23\x9c\x85\xe9\xd0\x17\x03\x45\xc3\x61\xaa\xd1\xb2\x96\x33\x3f\xcb\xcd\x4d\x3b\xce\x13\x44\x41\xa2\x1c\x50\xf2\x3f\xa4\x30\x5a\xb3\x05\xe4\xce\x71\x2a\x9c\xd7\xef\xa4\x8a\x53\x90\x0f\xfd\x80\x57\xc5\x61\x0e\x5e\x92\x14\xc3\x62\x14\xf9\x2a\x9b\x79\xab\x81\x78\x89\xb3\x59\x7e\xee\xa1\x87\xde\x72\xb8\x42\x1c\x8f\x44\x96\x3f\x65\x2a\x9c\x6c\xe7\x41\xb2\x93\x82\x50\x87\x79\x94\xaf\x59\x89\x76\xf8\x18\x79\xdd\xf1\x80\xf8\x38\x41\x81\x78\x86\x47\xa1\x09\x11\x0f\xfc\x40\xf5\x6c\xc1\x41\x8b\x78\x59\x0c\x7c\x9c\x0a\x8d\xa8\x15\x5e\x56\xcc\xa8\xf8\x37\x35\x2d\x21\x7b\xcd\xd9\xdb\x2d\x96\x2c\x4f\xc7\xa8\xc3\x6e\x10\x4c\x0d\x1e\x3d\x05\xff\x76\xde\x51\x31\x3d\xca\xd0\x16\x8e\x89\xf3\xe0\xc1\x03\x65\x15\xfb\x26\x9f\xd1\x07\x0f\x1e\x38\xc6\xc0\xa0\xb4\x03\x05\x08\xab\xa9\xd3\x74\x31\x2b\x68\x66\xc2\x0c\xd9\x98\x54\x49\x94\x8b\x95\x85\xd2\x7c\x26\x44\xaa\x32\x49\xd3\x8d\xc4\xe8\x3e\x13\xc2\xa4\x96\x53\x4b\x8d\x9a\x90\x4c\x7c\xca\x1a\x0a\xd2\x84\xe4\xe2\x43\x0e\x1f\xc2\x18\x02\xc0\x0a\x2e\x52\x61\xec\x6d\xbd\x02\x55\xc2\x60\x53\xa8\xb0\x7f\x4c\xd9\x69\xb7\x0e\x81\x35\x73\xf4\xb2\xc7\xaf\x56\xe5\xd9\x2f\x45\x38\x21\x63\xbc\xe8\xc0\x82\xa9\x87\x06\x1e\xd8\xd0\x3b\x8e\x65\x36\x44\x4d\x8e\x64\x27\x56\xe7\x30\x0e\x93\xc1\x40\x07\xa5\xaa\xf0\x8a\xf8\x78\x49\xc6\x78\x2e\x6e\x43\xed\x67\xc6\xd2\x02\x6c\x29\x3d\x4b\x86\xeb\x5c\xf0\xf7\xbc\xd5\x4e\x83\xa8\x42\x8a\xca\xf3\x32\x12\x87\x49\x04\x1d\x93\x8e\x02\xc1\x4b\x60\xf3\x96\x59\x6a\x48\xc3\xb3\x93\x4c\xe5\xed\xca\x89\x97\x1d\x46\x42\x33\x6f\x8e\x19\xc2\x7c\x54\xde\x9c\x50\x54\xf1\x84\x85\x87\x10\x5e\x0d\x06\x7c\x7c\x15\xc0\x80\x56\x4f\x03\x54\x08\x6c\x41\x66\x85\x40\x0e\x3b\xad\xfa\x15\x86\xab\x06\x13\x88\x52\xd9\x2d\x63\x42\x08\xdf\x31\x96\xce\x91\x54\x73\x42\x95\x3e\x1d\x36\xcb\xe6\xba\xde\xdc\x75\xf5\xa0\x44\xf3\xb1\x0c\x79\xe9\x25\xca\xb1\x9e\x03\xae\x6d\x34\x6d\xdf\xe9\x31\x4e\x72\x7b\x3a\x88\x0e\xc5\xcb\x4f\x5d\x57\x2e\x71\xe6\xba\x1e\x25\xb9\xa8\x3d\xc3\x14\x9a\x6e\xb9\xfc\xa0\x38\x45\x60\x11\x51\xd4\x5c\x9e\x49\xfe\xaf\xd2\x23\x5c\xaf\x2d\xed\x33\xc5\x42\x82\x71\x30\xcb\x45\x7e\x4a\xb2\xa9\x69\x4f\xe5\xd3\x36\xa1\x6a\xe2\xf9\xe1\xf0\x1a\x5a\x8d\x2d\x35\xc6\x14\x33\x2c\x75\x14\x39\x26\x8e\xcb\x5b\x0c\xd6\xd2\xb9\xd7\x74\x35\x82\xe8\x06\x97\x7b\xea\x54\x53\xa4\x56\x4a\x7b\x9d\xec\xd3\x30\x8e\xc0\x96\x16\xec\x23\x2c\x77\xe4\xdd\x52\xc5\x17\x57\x4b\x9a\x30\x3a\xeb\xc5\x3d\x03\xf5\x70\x4f\x14\xc7\xbd\xbc\xe8\xc5\x59\x0f\x4c\xb9\x7a\xf9\xdc\xca\x52\x82\x9c\x5b\x64\x2b\x47\xbd\x1f\x85\xc4\x11\x05\x0a\x4b\x52\x80\x51\x7b\x07\xb4\x08\xe6\xfa\x44\x2c\x0b\xba\xa4\xd9\xdd\x93\x61\x68\x41\xda\xe1\x15\x07\x1a\x95\x55\x41\x00\xc5\xff\x3b\x53\x52\x9f\x8f\x55\x56\x9e\xa6\x73\x76\xeb\x94\x5c\xc6\x8b\xb3\x6e\x3a\x18\x67\x64\x8c\x25\x29\xaf\xab\x54\x54\xd4\x4e\x01\x94\x94\xe2\x46\xab\xef\x61\x16\xa1\x30\x8e\xa6\xd2\x27\x0f\xc4\xe8\x17\x41\x6e\xa8\xc7\xb4\x6c\xca\xba\x72\x04\xb7\x44\xdf\x5b\x9a\x95\x63\xee\x2b\x81\x54\xeb\xab\xa8\x42\xf5\xfe\xf3\xd3\xd3\xa5\x8d\xb7\xa9\xe7\xe9\xdc\x2b\x76\xc7\x62\x98\x96\xf7\xc6\x82\x23\x29\x1c\xb5\xb0\xd8\x82\xf6\xa0\xb0\xf6\x3d\x19\x6c\xce\x52\xbb\xa5\xd9\xe6\x39\x97\x92\x93\xf7\xe0\xc5\xb5\x8b\x6f\x57\xaf\xbb\x6b\x1c\x43\xdf\x78\xcd\xe4\x13\x9e\xd5\x2a\x85\xba\x3a\x3c\x9d\x48\x9f\x26\x77\xd5\x4c\x74\x6d\xa2\xa2\x8e\x53\xe6\x38\xb5\x2c\x08\xb7\x47\xd9\x04\x9d\x5d\x34\x7e\x1d\x85\x09\xf3\x11\xcb\x0f\x28\x93\x9e\x43\x28\x8a\x08\x6b\xef\xd6\x83\x3a\xda\xb3\x81\x87\x83\xb3\xee\xf5\x67\x3b\x19\xb0\x71\x1a\x13\x11\xc1\xb9\x6d\x26\x76\xb4\xa7\xc2\x44\x69\x4f\xd3\x67\xf4\xba\xf4\x3a\x06\xa3\x95\x33\x71\x46\x8a\x66\xeb\xd4\xcb\x05\x8a\xa4\x07\x5b\x84\x26\x06\x5b\x7d\x52\xf8\x97\xa8\xb1\xeb\x95\x43\x9b\xb6\x7b\x8b\x86\x71\x7c\xdb\x05\x9d\xb2\x86\xa7\xdd\x35\x6e\x42\xd7\x34\x2f\x3b\xc9\x67\x74\xe2\x38\xb8\xe5\x19\x40\xe8\x6c\x15\x32\x5e\xaf\x8f\x53\x61\x58\x13\x8b\x1f\x69\x66\x93\xd4\x31\xaf\x8e\x2e\x52\x0c\x4e\x0e\x79\x33\x03\x42\x25\x7e\x49\x0a\xad\x2e\xa8\x13\x84\x9d\x97\x7e\x15\x1d\x99\x7a\x29\xb1\x73\xc7\xc4\x64\x2d\x89\xc9\xe7\xba\x09\xbc\x71\x90\xb2\x5e\x67\x5d\x2e\x11\x54\x25\x4d\x6f\x08\x45\x0d\x52\xa9\x0a\xdb\x9e\x11\xea\x2e\x34\x98\xce\x07\xf0\xac\x90\xc0\x0c\x14\x06\x64\x3b\xb1\xec\x29\x18\xdc\x4a\xe0\x97\xc8\x3e\xf2\x29\x1d\xa3\x49\x0e\x0a\x51\x76\x67\xef\xd9\x2a\xb4\x04\x2b\xc0\xd7\xc6\x50\x57\x0b\x32\xc6\x2b\x13\x63\x6b\xb1\xb3\x0a\x16\x83\x01\xf2\xc7\x5a\x3d\x6f\x3f\x9f\xd1\x3d\xe6\x2d\xd0\xd4\x13\x75\x0f\x06\x58\x55\xcb\x71\xf4\x81\x4f\x08\x59\xf1\x79\x37\xd5\xf3\x7e\xfe\xef\xcd\x29\xd2\x1f\x06\x03\x6d\xbb\xda\x71\x92\x1b\x22\x93\xac\x0b\xd9\x13\xd6\xaf\x62\xd3\x8b\x4d\x29\x02\x81\x56\x46\xe7\x9c\xdf\xc7\xa4\xfc\xc3\x2e\x7b\x1b\xb8\x48\x11\xd2\x48\x12\xf3\x01\x7f\xe6\x99\x3b\x9d\x85\x25\x79\x56\xe6\x0b\xea\xba\xf2\x61\x74\x19\x17\x59\xfd\x4d\x7b\x21\x2d\xc8\x4d\x15\x74\xba\x1e\xfd\x0b\xfc\x0c\xe3\x9c\x80\x7f\x59\xff\xbb\xef\x10\xd8\x3e\x5b\xce\x44\x0b\xe3\x4c\xb4\xb0\x02\x5f\xa4\x9d\x42\x85\x2e\x39\x02\x08\x90\x46\xc6\xaa\x8e\xd8\x2f\xeb\x75\xdf\x07\x66\x95\xb1\xc1\x83\xe9\x02\x4d\x4d\x27\xcd\x7a\x85\xeb\x7a\xc5\x48\x85\x7e\x01\x87\x01\xdd\xc2\x49\x8a\x0b\x0e\xc8\x71\x81\x2a\x69\x26\x75\xb7\xcb\x53\xe9\x1c\x37\x2f\xb4\xcb\x53\x5a\x96\xf1\x09\xad\x3b\x01\xad\x3b\x3b\xd5\xde\xbe\x54\xe0\x79\x51\x30\x56\xf1\xf5\x2a\x8d\xbd\x00\x35\xdc\x72\x89\x1a\x77\x42\x7e\x1b\x9a\x26\x65\x59\xe1\x18\x96\xbf\x89\x5a\xe8\xa0\x58\xe0\x19\xea\xa6\x02\xa4\x06\xdc\x12\x4b\xd3\xc3\x45\x5c\x32\xe1\xa7\x58\x5e\x85\x26\xa1\xee\xc6\x18\x1c\x65\x4b\x1f\xc9\xb7\x66\x44\x56\xfc\x7d\xe3\x62\xd9\x8e\xe7\x54\x9b\x39\xad\xd2\x99\xa9\x31\xd4\x85\x03\x0d\x77\x51\xaa\xd4\x66\xd7\xde\x8e\xac\x43\x68\x1b\xf3\x99\x14\xee\x69\x08\xc5\x5e\x46\xc2\x9b\x33\x7a\x3d\x71\x12\xe5\x91\xe0\x16\x85\x6b\x3e\xad\x55\x84\x5c\x37\xf5\xec\x80\x15\x19\xc2\x05\xa4\xe1\x02\x35\x5d\xcb\xc4\xdd\xce\x7e\xff\x0a\xcf\xde\x1b\x37\x27\x80\x90\xae\x85\xe6\x63\x00\x41\xbf\x9e\x11\x99\x46\xaf\xc0\xb5\x07\x78\xf4\x74\x5d\xf1\x5b\xf3\x9c\x99\x11\x99\xb8\x94\x2c\xe0\x67\xd7\x9c\x88\xb5\x58\x4d\x02\x26\xd7\x58\x4c\x0a\x30\xd7\xe2\x67\x32\x40\xba\xc2\x22\x22\x2c\x2c\xb4\xf5\x0e\xbd\x03\xad\xb1\x57\x81\xf7\x63\xaa\x9f\x46\x14\x88\x28\x3d\x0e\x7c\x23\xb6\xa4\x74\xf6\x0b\xcf\x18\x04\x15\x22\x05\x1e\xf1\x65\x5e\xcc\xc4\x3b\x7f\xaa\x90\xda\x46\x76\xa9\xa9\xf5\x3c\x70\x26\x3d\xe5\x58\x90\x5e\xb1\x89\x7e\x6a\xf9\x12\x2a\xfe\x73\x0b\xbe\x30\xae\xdc\xf9\xa3\x2f\x3d\x3b\x2f\x94\x03\xf7\x58\x3c\xfa\xe0\xcb\x7d\x21\x7d\xb2\xe3\x44\xa4\x3e\xb2\x5d\x3f\x2f\xbe\xca\xf5\xf3\x6a\xd3\x56\x93\x30\x10\x7c\xaf\x29\xf8\x07\xe0\xae\xe6\x8a\x5b\x6e\x8a\x55\x51\x70\xfc\x5f\x67\x92\x68\xee\x32\x4e\xa8\xf1\xc0\xa6\xdd\x68\x69\x6f\x34\x42\x19\xe5\x30\x3f\xa3\x59\xfa\xc5\x78\xe6\x04\x97\xaf\x92\x61\x79\x03\x1d\x98\x50\x0c\xfe\xbc\x9a\xee\xaa\xfc\xaa\xba\xcd\xbb\x74\xa3\xfe\x56\x00\x6a\xa6\xbf\x78\x63\x6c\x1c\xb4\x7b\x66\xe4\x20\x0c\x69\x44\x2a\xb1\x74\x58\x82\x7e\xbd\x9e\x11\xcd\x66\x6f\xe7\xc2\x69\x5c\x80\xa4\x39\xb1\xf2\xab\x6b\x72\x65\xf4\x8a\x41\xaf\x3c\x84\xc2\x71\x24\x6c\x8b\x1d\x98\x2e\x67\x62\x4d\xdd\x80\xd0\xd0\x8f\x2c\x43\x62\x27\x90\xdf\xe7\x05\xa5\x07\x6a\x3e\x39\xc5\x62\xe5\xa9\x64\x1e\x60\x5e\xd4\xbe\x28\x67\xbf\x8a\xfa\x86\xb7\x46\x9e\x98\x0d\xf9\xb1\x91\x79\x62\x56\xac\x16\xb4\x91\xe5\x46\x35\x70\xbe\x64\xd7\xef\x6b\xdf\x8d\xe1\x32\xbf\x11\xd9\x29\xe5\xd4\x42\xa5\xba\x23\xbd\xe9\x01\x76\xd9\x76\x0c\x6f\xc2\x3a\x68\x8f\x83\x81\x5c\x89\x94\x79\x0c\xd3\x70\x3b\xc2\x34\x7c\x14\x19\xa6\x20\xaf\x54\x3a\xbb\xa0\xe1\xe3\x48\x6d\x0b\x1a\x7e\x1b\x29\xdd\x37\x3e\x83\xd2\x30\x64\x1b\x0f\xb7\x91\xf4\xdd\x58\x3e\x7c\x20\xfd\x36\x66\x08\x31\x01\x25\xf9\x46\x15\x1e\xdf\x16\x74\xce\xf8\x5d\x2e\xde\x0a\x20\xe3\x1d\xc7\xf0\xf5\x0a\xf0\x7a\x0e\xfe\xea\x7e\xf3\x8e\xca\x87\xc8\x0b\x7f\x8b\x1e\x86\xbf\x1d\x95\x11\x82\xf7\x07\x5b\x1c\x6e\x40\xad\x05\xef\xb6\x5d\x6f\x11\xfa\x51\xbd\xea\x22\x7c\x14\x01\xbe\xa9\x67\x74\xc3\xc4\x24\xf7\x98\x18\xba\xa0\xa0\xbd\x65\x46\x23\xdd\x83\xe9\x83\xa8\x8f\x2b\xb8\x1b\xe5\x8b\xb4\x81\xc6\xee\xfb\x58\x7a\x52\x29\xf8\x73\x2e\x9e\xa5\x99\x70\x18\xe1\x92\xd0\xa0\x0c\x04\x5f\x94\x94\xe1\x38\xc2\xb1\xb8\xe0\x4b\x84\x1d\x4f\x79\x14\x08\xe1\x01\x89\x68\xc7\x25\x52\x76\x35\x32\xc3\xd4\x41\xce\xc4\x89\x1c\xa4\x4d\x87\xc6\xb6\x81\xcc\x8d\xb6\x38\x12\x4e\x9f\x8b\x5a\x80\x63\x18\xce\x8c\x26\x0b\x2f\x96\x3b\xb0\xe2\xf9\x6f\x1c\x3b\xc4\x8f\xc9\x09\x7b\x39\x16\xfa\xab\x95\xac\xb3\x71\x34\x8f\xe3\xe4\xcc\x8b\x47\xcb\x7c\xe9\x71\xc2\x82\xf4\xc7\xb2\x5e\x67\x02\x05\x38\xbe\xc9\xd1\x4c\x11\x00\x31\xe3\x5d\x0d\x53\xc3\x58\x71\x5d\x2f\x15\x85\xb1\x3d\x0c\x50\xba\x05\xf5\x3e\x14\x94\xb7\x40\x83\x4a\xd9\x70\x76\x42\x14\xb8\xec\x39\x8a\x9b\x36\xfd\xa5\xae\xb2\x64\x91\x97\x74\xf6\xac\x88\x93\x33\xca\xbc\x1c\x61\xe6\xba\x85\x58\xcb\xc0\x62\xbb\x4b\x20\x43\x08\xf1\x4a\x12\x87\xb1\xe9\x39\x87\x43\xeb\xb5\xed\x0f\xbc\x44\x01\xba\x6d\x76\x02\x7b\xf6\x65\x40\x48\xd1\x19\xf0\x51\xf0\x31\x2f\x66\xfc\x03\xdf\x85\xcd\x1d\x4d\x45\x15\xc1\xdd\x3b\x7b\x1c\x89\xcd\x3d\x8e\xe4\xfe\xae\xed\x68\x0b\x56\xee\x65\xb3\x7d\xd1\xf7\xf2\x87\x22\x3f\x7f\x01\xc0\x4f\xde\x27\xf1\xa5\xc7\xb0\xa3\x4e\x86\x83\xd5\x87\xda\x41\x68\x85\x93\x30\x9d\x2b\xba\x3a\x27\x31\x5f\x9c\xd7\x23\x43\x01\xe1\x2d\x76\x6c\x1e\x8e\x23\xad\xcd\x6e\x2e\xbf\x31\xa6\x6a\x7f\xe5\xe1\xe3\x68\xda\x01\xcc\x72\x0b\x98\xe5\x1c\x98\x4d\x3a\x33\x6d\x5b\x99\x1e\x45\x55\xe0\x00\xe4\xee\x13\x02\xf3\x35\x8e\x02\x24\x62\x0a\xa8\xe5\x6f\x2d\x0f\xb5\x66\x74\x9e\x17\x74\x40\xe8\x48\x70\x94\x51\x28\x87\xc2\x6a\x9e\x41\x35\xb0\x15\xeb\xa2\xe1\x2d\x2c\x8f\x08\xb5\x90\x2f\x01\x54\x2a\x5a\x4f\x89\x68\x54\x97\xf8\xd9\x83\xa3\x94\xae\xd7\x66\x37\xa6\xf5\xad\x97\x4a\x77\xe5\xa2\xbe\x7a\xaf\x2a\xd1\xab\x06\x64\xb3\x1b\xd4\x4d\x80\x17\x74\x59\x52\x5c\xb4\xf5\x72\x03\x92\xe9\xfb\xb5\x12\x93\xc7\xcf\x38\x2c\xdb\xd6\xd1\xa5\xba\x20\x42\x3f\x42\x1d\x93\x27\xb9\xc6\xed\x0a\x2b\x07\x02\xea\x8a\xce\x43\x65\xce\xc3\x5a\xc2\x7a\xed\x35\xa6\x5d\x7f\x52\x53\x28\x7e\xe4\xc5\xe5\xa3\x76\x43\x9b\xb7\xfe\x01\x5f\x28\xbd\xf9\x97\x05\x4d\x4e\x69\x72\xf6\x3a\x2d\x4b\x3a\xab\xe1\x0c\x0a\xd0\xc7\xb6\x10\x24\xde\x1d\x07\xf1\x70\x28\x66\xb1\x9f\x9e\x73\x6c\x37\x96\x01\x02\xf8\x6d\x1a\x47\x7c\x11\x46\x2c\x7f\x95\x5f\xd2\x62\x3f\x2e\xa9\x87\xf8\xbc\xea\x9c\xca\xc3\xbe\x84\x73\x82\x45\xfd\x03\xb8\x14\xc7\x31\x0a\x9c\x9e\x55\x69\x1f\xe0\x90\x35\x14\x73\x74\x07\xa5\x88\xd6\x04\xa3\x36\x95\x97\x36\x9c\xaf\xf5\x2e\xeb\xe8\x96\x6d\x4f\x2d\xa6\x72\x8c\xf0\x82\x5f\x84\x2b\x12\x07\xab\xdd\x71\xb0\xe2\x43\x15\xfa\x4d\x49\xb8\x52\x3b\x14\x34\x44\x54\x58\x39\x6d\x31\xd0\x77\x90\xeb\xca\x3d\xdb\x27\x64\x29\x37\xe9\x82\x24\xe2\x3c\x87\x7e\x34\x58\x54\xb7\x94\xf5\xea\xd3\x84\x5b\xa3\x5b\x60\x4a\x12\xb8\x05\x4c\x33\x62\x3b\xea\xd3\x21\x53\x44\xdb\x95\x0d\xdf\x04\x53\x84\x03\x37\xe1\x9b\x5c\xd8\xb3\x9a\x2e\x4c\x74\x70\x86\x0d\x1b\x02\x1c\xb6\xb3\x16\xb0\x36\xf2\x96\x5a\xcc\x9e\x40\x70\xe3\x6c\x04\xcb\x47\xd8\x71\x34\xd7\x55\x1f\x19\xfe\x32\xdb\x13\x98\x64\xa1\x81\x2f\x40\xd1\xc2\x42\x5e\x02\xa3\xb5\x07\xcc\xe5\xbe\x8f\x41\xe9\xef\x56\x1c\xdb\xe0\x07\xf7\x40\xb3\x8b\x2e\xb4\xd1\x06\x63\x00\xc3\x9a\xe0\xba\x89\x58\x50\xa8\x2b\xad\x7f\xa9\xac\x2f\x73\xaf\xd4\x17\xb4\x92\x43\x95\x61\x46\x4a\xeb\x96\x60\x7a\x27\x71\x32\x1e\x60\x35\xcf\x34\x1c\x66\xf0\xcd\xeb\xe8\x2a\xb3\x2e\x05\xc6\x2f\x05\x83\x58\x6b\x04\xbc\x82\xc6\xa5\x20\x0b\x6f\x9e\x38\x74\x93\x9b\xfe\x57\xc5\xd7\xdc\xaa\x25\xc2\x6a\x20\x53\x4f\x96\x8c\xe7\x8c\x16\x6f\xf8\x6e\xb8\x0b\x2c\x95\xd6\x9d\x5c\x60\x67\x19\x17\xf1\x79\xe9\xe0\x12\xe1\x1c\xa4\xf3\x65\x68\xcd\x12\xee\x5c\xb0\x06\x9e\x5f\xa3\x35\xeb\x23\xc1\x45\xf3\x9a\x40\x68\xd2\xee\xb3\xe3\x60\x70\xf5\x17\x9f\x73\x62\x15\xe1\x14\xe6\x1f\x22\xa0\x68\x4e\x9f\x42\x15\x0a\x38\x25\x4d\x11\xb3\x9d\x45\x14\x54\x27\xcd\x4e\x33\x68\x58\xed\x5b\xdd\xc7\x34\xa9\xef\x3f\xb4\x91\x76\xb6\x4b\xc3\x58\x48\x47\xb5\xf0\x01\x14\x56\x06\xd6\x34\x75\x92\xe7\xaa\x9c\x70\x92\x3d\xad\x57\x76\xdf\x73\x53\xe3\x04\xd4\x6b\x94\x52\xc6\x55\x46\xa5\x48\x7c\x9f\xa3\xac\x12\xec\x48\xe2\xb0\x45\xa1\xd7\xab\x68\x62\xbb\x8b\x3c\x39\xf3\xea\xb8\xdc\x7f\x64\xf6\xff\xcc\x5c\xf3\xd1\xd5\xa8\xf5\xa6\x3c\xa0\x45\xef\x77\x8c\xa7\x66\x03\x5d\xfb\x12\x6e\x1c\xa8\x82\x32\x1c\xec\x02\x90\x91\x91\x7c\xfa\xb2\xbb\xf9\x65\xa6\xfb\x64\x6e\x5a\x3b\x95\x6c\xde\x32\x32\x2a\x4a\x96\xb2\x96\xc2\x57\x7d\xdd\x24\x24\xa2\x9a\x9f\x63\xf3\x71\x98\x56\x1f\xaf\xb0\xe0\xf3\x18\xce\x4b\x85\xa9\x8d\x22\xdd\xd2\x17\x6c\xdf\x8d\x54\x8e\xb2\x85\x75\xfb\x82\x12\x89\x2f\x5b\x1d\xd6\x2c\x4c\xa5\xc2\xa9\x55\x50\x71\xc2\xab\x5f\xf0\xab\x7a\x45\xb6\x7e\xf3\xc2\xd1\xfa\x6f\x11\x9a\x7a\xe1\xd1\x65\x84\x06\x5b\x29\x5e\x92\x71\xb0\xdc\x29\x83\xe5\x80\xf8\xc8\xee\x86\x27\x44\x26\xe1\x32\x42\x92\xb0\x82\x65\xd0\x1d\x9c\xda\xd8\x6e\x6e\x63\xc2\xb9\xeb\x2e\x39\xf1\x35\xf4\xa7\x0b\xd2\xf7\x27\xc9\x00\x18\x06\x13\x2f\xe6\xd5\x71\xa0\x98\xf2\x87\x81\x1f\x61\x83\x23\xc4\x02\x47\xd0\xef\x29\xbc\xaf\x04\xfe\x1a\x0b\xfc\x55\xbe\xa5\xfc\x6d\xaa\x6a\x5d\x80\xac\x30\x9d\x7b\xfd\x85\xd8\x63\x73\x50\x0d\x98\xad\x92\x56\xa8\x71\xc5\x52\x1c\x30\x8e\xe2\x22\x30\x04\x15\x4b\x14\xb2\x88\xdc\x88\xf8\xfc\x09\x2e\xe2\xcb\xc9\xbc\xaa\x40\x8d\x34\x81\xb0\x10\x1b\x2e\x92\x8d\x3a\x29\x16\x32\x5f\xa7\x58\x59\x9d\xd2\x6a\x53\xac\x0c\x05\x88\xa3\xfc\x1a\x1b\xd3\xbe\xb5\xb3\x8d\x3d\x81\x6b\xe9\x8f\xf5\x65\xbc\xa9\x0b\x0d\x32\xaa\xdd\x87\x5b\xa7\xa0\xde\xa8\x69\xb3\x39\x78\x8e\x31\x58\x63\x65\x26\xe0\xa8\x0e\xbe\xcb\xdb\xd9\x68\xe7\xc3\xaf\x3d\xc2\x82\xc2\x04\x36\x2d\x06\x03\xe8\x7c\x58\x44\x56\xbf\xa9\x52\xcc\x63\x46\x49\x96\x81\x04\x07\xa4\xb0\x0d\x88\x66\xcd\x1e\x2e\x70\x4e\xc6\x38\x25\xe3\x20\x35\x8d\xa4\x83\x81\xc0\xda\x3c\x49\x53\xc0\x5c\xa6\xe2\xa0\xb8\xae\x97\xf3\xb3\x84\x1d\xa4\xd8\x2d\xf9\x90\xbf\x8f\xc5\xd1\x90\x5c\x18\xc9\x0a\x82\x6a\x14\xd9\x56\x88\x33\xb0\x2c\xf2\x93\x54\x26\xf8\x11\x52\x0e\x18\x8c\x36\xb4\xe0\x5a\xe4\xab\xe3\x05\xdd\x07\xc4\x97\xa1\xaa\xd0\xca\x3c\x7d\x9f\x0f\xab\xc1\x4f\x69\xdc\xf5\x45\x7e\xd9\x33\x80\x4a\x0a\x29\x9c\x0f\xb2\x4c\xef\x58\x14\x72\x2c\xd4\x56\xd4\xa9\x49\xc7\x7b\xd6\x27\x5c\x3d\xc2\xf8\x5a\x9c\x10\x51\x63\xed\x2a\xbd\x67\xad\xaa\x4c\xaf\x6a\xf7\xd0\xba\x57\x37\x84\x33\x6b\x20\x04\x00\xcd\x83\xbb\xa7\x84\xd7\xe8\xf0\xed\x23\x54\x1b\xa5\xbb\x3e\x60\xbb\x98\x95\xb8\xd7\x00\x9e\x43\xfe\x1e\x6c\xbc\xf6\x00\x2c\x52\xa3\xd3\x4d\x69\xbb\xbe\x3d\x36\xe4\xb9\x7b\x97\x29\x3b\xcd\x57\xac\x27\x3c\x32\x30\x60\xda\xaa\x7a\x37\xd0\xd0\xf6\x14\xc1\x61\xb8\x35\x4f\xdd\x91\x89\x26\xc2\x75\x3c\x3f\xdb\x5d\x53\x41\xc6\x38\x27\x6c\xe8\x07\x39\x68\xf9\xdb\x90\x87\x13\xe1\x39\x9c\x96\xf5\x7a\x9b\x5f\x35\x05\x3f\x30\x28\xc8\x87\x43\xb4\x71\x25\x44\xaf\x7a\xfa\x3e\x74\x70\xc6\x47\x98\xc1\x08\x5b\x72\xae\xd5\x5f\x2a\xe7\xba\x4b\x48\x2d\xf9\x68\x87\xf8\x0a\xbf\xc1\xaf\xf0\x0b\x7c\x80\x3f\xe3\x7d\x7c\x86\x3f\xe2\xe7\xf8\x19\x7e\x87\xdf\x13\x08\xa0\x23\xe8\xd9\xb7\x73\x0f\xe1\x5f\x08\x1b\xa5\x27\x59\x5e\x08\x35\xcb\x12\xff\x4e\xde\xab\x3b\xfb\x25\x19\xfa\xf8\x03\xf1\xf1\x4f\x64\x8c\x7f\xe0\x08\xfc\xcf\x60\x3a\xa6\x64\x5b\xbf\x7a\x7a\x37\xd0\xd6\x46\x75\x06\x0c\x7f\xc0\x3f\x0d\x5f\x2a\x85\xca\x9b\xe3\x38\x39\x9b\xd8\x8b\xf8\xb3\xd6\x42\xc5\x9a\xc0\x9c\x34\x70\xba\x9f\x1b\x21\x3c\x7e\x96\xfc\x4e\x50\x30\xff\x69\x97\xfc\xae\x75\xca\xfb\x7d\x90\xd1\x89\xc1\xa8\x6e\x28\x47\xb4\x9e\x97\x91\xf7\xb6\x8e\xce\x4f\x08\x71\xdc\x60\xbd\xce\x08\x21\x0b\xf1\xb3\x74\xdd\x7a\x9e\x81\x8f\x20\xec\x8d\xeb\x7a\x2f\xc9\x4f\xf8\x03\xc0\xd3\x4c\x3a\xb0\x2d\x27\xc2\x21\xad\xf8\x59\x89\x9f\xa5\xf8\x59\x4c\x0e\xc9\x4f\xc1\x2c\xbf\x39\x1c\x10\x1f\x37\xdb\x3e\x14\x6d\x43\xad\x87\xa2\xd6\xea\xf2\x94\x53\x93\xbc\x17\x89\xe8\x8c\xec\xda\x4a\x76\x4d\x76\x14\x05\xef\x48\x28\xb7\x30\x7e\x2f\x99\x05\x3f\xe1\x43\x14\xe1\x9f\xc8\xe1\xd0\xb7\x5d\xe5\xce\x45\x5f\x66\xe2\xe7\x5c\xfc\xbc\x16\x3f\xd7\xe2\xe7\x44\xfc\x1c\x4f\xf8\x14\xfe\x48\x84\x44\x19\xb4\xed\xf6\x65\x77\xbd\x0c\x9a\xfc\x11\xff\x28\x56\xd3\x96\xa1\xf5\x4e\x27\xe9\xdc\x7b\x4e\x7e\x50\x44\xec\x0f\xfa\x0e\x9d\x38\x0e\x7e\x46\x5a\xb3\x89\x9d\x55\xb1\xe0\x67\xef\xb9\xeb\x3e\xeb\x13\x52\x88\x9f\x5c\xfc\x24\xe2\xa7\x14\x3f\x2b\xf1\xb3\x10\x3f\x4b\x74\x23\xa7\x34\x9d\x7b\x67\x9c\x76\x83\x28\xaf\xde\x21\x79\x6f\xf8\x32\xc8\xc1\x87\x03\x1f\x21\xd8\x39\xbf\xac\xd7\x4c\x14\x12\xb4\xf9\xaf\x9e\xa3\xee\x13\x04\x9c\xcf\x8f\xe4\x30\xa8\xf5\xf0\xe3\xd0\xe7\x0b\x93\x06\xe8\xe3\x90\xf8\xf8\x8c\xf4\xcf\xe4\xba\x9c\x89\x79\x97\xe5\xcb\xda\xd4\xf3\x61\xc1\xd4\xe0\x0f\xf8\x70\xf8\x12\x16\x42\xf0\xf0\x9b\x7d\x83\x19\x78\x41\x1a\x65\x61\x1c\x87\xeb\xf5\x27\x81\x55\xbe\x40\x53\xde\x94\xe7\x60\xfe\x5f\xcc\xf9\xc4\xab\xb7\xfe\xa2\xd5\xa0\x2d\x55\xec\x15\x62\x55\xf3\xc9\x15\xe1\x9b\xa6\x98\x3a\xdf\x38\x93\x6f\x9c\x6f\xf0\x9d\x33\x78\xd5\x35\x7f\x03\xdf\xcc\xa0\x54\x93\xfd\x23\x13\xd8\x1a\xf8\x1b\xf2\x42\xc5\xf2\x81\x28\x54\xde\x2b\xf2\xc6\x98\x0e\xed\x8e\xa7\xde\x67\xf2\x61\xf0\x0a\xef\x93\xc3\xe1\x9b\xf0\x55\xa4\x20\xc1\x84\xa7\xe3\x7d\xf2\x12\x61\x38\x0c\xa2\x4b\xdd\x4b\xf2\x19\x1f\x0e\xf7\x23\xfc\x92\xec\xe3\x0f\xe4\x33\x9f\x29\x7b\xa2\xf6\x26\x97\x26\x1a\x16\x1f\x28\xbe\x14\x8b\xf0\x1e\xe1\x43\xc2\x41\xab\xf5\x7d\xfa\x5e\x77\xce\x2e\x36\xdc\x86\x5e\x28\x61\xef\x5d\x3b\xc3\x6e\x3e\x9d\xf0\x59\x3c\x24\x3f\xe1\x03\xd2\x1f\xd7\xa7\x92\x17\x16\x53\x09\x20\xe4\x80\xf4\x0f\xc0\x83\x0d\x69\xe5\xc2\x07\xae\x9b\x09\x37\x47\x99\x38\x44\x99\x38\x44\x99\x38\x44\xfc\x67\x29\x7e\x16\xae\xeb\x41\x75\x6f\xe5\x30\x95\x53\xc1\x43\x84\x24\x8f\x37\x68\x7d\xe2\x1b\x42\xf4\xa2\xb3\x87\x89\xac\x13\x55\x7c\x1a\xbe\x66\x0e\x94\x84\x9b\xef\xd1\xb8\x03\xf4\x12\x42\x2e\xa6\xc0\x40\xae\x9f\xf2\x87\x5b\xfc\x28\x6d\xa3\x81\xcf\x01\x33\xdf\xa6\xd3\x43\x7d\x69\x4d\x7e\xf5\x34\x11\x81\x3a\x4e\xdb\x5f\xb4\xe9\x54\x13\xfa\x28\xb6\x37\x1a\x9a\x78\x5f\x1a\xbb\xeb\x4b\x63\x77\x7d\xe9\xde\x5d\x5f\x5a\xbb\xeb\xee\x69\xfd\x41\xdc\xa5\xef\x10\x34\xad\x14\x86\x7e\x1a\x0c\xf0\x3b\x8e\x95\x28\x7e\x65\x87\xce\x16\xef\xc8\xcf\x9a\x48\xe2\x57\x6a\x85\x95\xfe\x52\x47\xf6\x9f\xaa\x4a\x29\x4a\x3a\xdf\x38\xf6\x9a\x8d\x11\xce\xc9\x37\xce\x37\x8d\xb4\x94\x38\x47\x47\xcd\x8c\x31\x71\xb6\x9a\x69\x25\x84\x03\x6d\x24\x26\xc4\xe9\x35\xd3\x16\xc4\x39\x9a\x37\x13\x57\xc4\x39\x62\xcd\xc4\x25\x71\x8e\x8a\x66\xe2\x9c\x38\x61\x33\x6d\x46\x9c\xa8\x99\x76\x4a\x1c\xaf\x99\x76\x4c\x1c\xd4\x4c\x3b\x27\xce\x4d\x33\xed\x35\x71\xaa\x66\xda\x09\x71\x82\x66\xda\x05\x71\x1e\x36\xd3\xae\x89\x33\x69\xa6\xed\x11\xe7\x7f\x9a\x69\x97\x64\x2b\xec\x1d\x65\x47\xec\xa8\x38\x9a\xdf\x54\x1e\xfa\xc6\x39\x3a\x0a\xb6\xc2\xa3\xe8\x6f\xd1\xd6\x09\xfe\x62\x7f\xe6\x78\xf5\x24\xf8\x9f\x3e\xcf\x72\x14\x85\x7f\x8b\xd6\x47\x5b\xde\x94\x1c\x3d\x44\x5b\x27\xf8\x13\xd9\x1a\x85\x47\x47\x5b\x9e\xf3\xcd\x51\x16\x6d\xe1\xb7\x64\x2b\x8c\x87\xf3\xf1\xf0\xfb\x68\x2b\xfd\x8f\xe9\xc2\xea\x58\xfb\x58\x46\xe0\xff\x56\x47\xe0\xf7\x9f\xfa\x7f\x2c\x04\x7f\xdd\x24\xf4\xff\xb2\xd6\x6c\xcb\x66\xf3\x7e\xca\x89\xc6\x68\xce\xc9\xa1\x9d\x7a\xa8\x9d\xbe\xd1\x0b\x6c\x3b\x44\x7d\x97\x97\x6c\xff\xe0\xa0\x57\xd0\x84\xa6\x17\x80\xa2\xd3\x81\xd3\x4b\xb3\x92\xd1\x78\xd6\xcb\xe7\x3d\xfe\x55\xdd\xf0\x26\xee\x27\xb5\x62\x02\x63\xe7\x68\x35\xa7\xf3\xb9\x43\x4c\xc8\x5e\xa0\x9f\x78\xfa\x7c\x4e\x1b\xe9\x92\xf7\x7d\x1a\x97\xcf\xde\xbe\xd6\xf1\xe8\x78\xa5\xea\xc1\xc8\x65\x27\xb5\xac\x3e\x16\x71\x4a\x5d\xb7\x1d\x1f\x56\x46\x30\x15\x9a\x87\xe0\x6f\x9a\x59\x51\x4f\x21\xa1\x68\x47\x6e\x15\x85\x6c\x2d\x5b\xad\x1c\xe5\xa9\xde\x60\x26\xfc\xca\x89\x00\xda\x82\x01\x0b\xe1\x4e\x83\xa6\xdb\x11\x0f\x41\x43\x52\xa4\xc6\x1f\x5d\x37\x57\xcc\x52\xd1\x27\x59\xf8\xbd\xec\x40\x8e\xa4\x94\x89\x7f\x5d\xaf\xbd\x84\x5f\xc4\x82\xbe\x9c\x11\x67\x07\x88\xcc\x5e\x52\x96\x3d\x67\x90\x0c\x9c\x5d\xc7\x04\xd7\x56\xd5\x9e\xc7\x4b\xab\x6a\x11\xc5\x55\x31\x88\x62\xbc\xe8\xd2\xdc\x5b\x08\xba\xac\xe5\x2f\x55\xea\x12\x04\x7a\x8b\xc1\x46\xd6\x34\xa4\x74\x97\x28\x2c\x0f\x3c\x7e\xc2\x65\x85\x5e\x4a\xe2\x69\x53\x43\x39\x16\xcc\x88\x58\x19\x62\xc4\xda\x4a\x03\xba\x8b\x0b\xa9\x1e\x2a\xe2\xb4\xd5\x74\x9b\xb1\x51\xf3\x36\x91\xae\x4c\x01\x24\xb5\x26\x9b\x4c\x6e\x6c\x5b\xc7\x81\x1a\xb7\xb5\x0c\x5e\xaa\xe2\xdc\x9a\xb9\x82\x20\xeb\x69\x85\x17\x72\x4c\x9b\xdc\x11\x9e\xc7\x4b\xa4\xd8\x57\xb6\x03\x42\x3e\xf5\x56\xd8\xf3\xc2\x72\xc4\xdb\xf6\xcb\x64\x8c\x2e\x2a\x41\xa8\x16\x75\xd7\x68\xb2\xea\x9c\x58\x41\x72\xad\x8d\xa2\x73\xe3\x5b\xed\x3d\x52\xed\x71\xcd\xb2\xd5\x2d\x1a\x21\x46\x7a\xa9\xeb\x7a\xb9\x12\x19\xa4\x08\xe7\x7c\x0e\x4c\x63\x1d\xf1\x2c\x3b\xc2\x31\x4f\x79\x2f\x5a\x07\xaa\x3d\x2f\x96\x3f\x96\xf5\xda\x19\x39\x98\xb6\x14\xc8\xf9\xae\xbd\x55\x7b\x5c\x9c\x0e\x79\x2e\x84\x1e\x79\xd9\xd4\x23\x8f\x21\x0d\xc7\x2d\x3d\xf2\xc5\x1f\x60\xb7\x18\xe6\x3c\x18\x53\xdd\xe3\xea\xca\x49\xc9\xef\x2b\xa1\x57\x5c\xaa\x5b\x2c\x86\x47\xff\xe9\xb6\x7d\x75\x95\x5f\xa5\x42\x9c\xdc\x76\x21\xc0\x94\x2c\xf2\xd8\x8e\xd2\x6d\x34\x00\x40\xbd\x5c\xaa\x89\xc4\x05\xfb\x98\x32\x69\x76\x69\x42\x54\x63\x11\x11\x5e\x07\x14\x83\x60\xff\x53\xf8\x0b\x01\xc4\xa5\xed\xbf\xb2\x06\xe5\x4d\xbd\x8e\x97\x12\x70\x02\x08\x50\x80\x48\x68\x63\xa2\x5b\x15\x86\x95\x9b\x93\x4d\x46\x02\xf2\xfb\x7e\x9c\x9c\x52\x15\xe5\xb2\x96\xb8\x29\xc6\xb4\x72\xa0\x62\xba\xa2\xec\x96\x6a\xc5\x2b\xcc\x46\x97\x29\x3b\x6d\x59\x54\x1a\x97\xa9\xf5\x46\xf5\xf6\x35\xee\x53\x6f\xff\x6e\x34\x13\x84\x98\x40\x4e\x7b\x67\xfc\x31\xc9\x9c\xd2\x6e\x01\x54\x61\x4e\xe4\x80\x94\xa1\xbe\xb0\x1d\xbc\x4e\xaa\xc3\x3a\x6f\x1d\x3d\x3c\x2a\xbb\x82\xdf\x7b\xa3\x87\xe8\xa8\x7c\x78\xf4\xf0\x68\x6b\x0b\x05\xda\xfd\xab\xd9\x01\x84\x81\x66\x0f\x28\xd4\x58\x41\x6d\x45\x88\xf7\xce\x38\x1d\x62\xcb\xc4\xcb\xe5\x22\x4d\xa0\x8a\xad\xdf\x4b\xbe\x93\x02\x2d\x6e\xd5\xbb\x8d\x9f\x4c\xc5\xa5\x13\xf5\x7e\x78\xff\x72\x3f\x3f\x5f\xe6\x19\xe8\x46\xab\xc1\x6b\xaf\x34\x52\x81\xb8\xd9\xc2\x11\x34\x11\x70\x5c\xb7\xa4\x8c\xac\xd8\x7c\x38\x7d\x1a\x1c\xc7\x25\x7d\xf2\x18\x6b\x90\xb4\x5e\x6f\x2c\xd9\xcc\xaa\x3d\x9a\x12\xdd\x87\xf7\xf4\xe4\xc5\xd5\x12\xc8\xac\xd7\x7c\x56\x55\x97\x70\x31\x2d\x60\xbb\x7b\x0c\x3b\xa2\x1e\x07\x59\xe8\xcf\xe4\x32\xcd\x66\xf9\xe5\x28\x66\xf9\xb1\xd2\x5b\xcc\xcd\xd2\x6c\xe8\x90\x17\xfe\x86\xa3\x01\xc2\x5b\x20\xc3\xba\x35\x50\xa1\x74\x56\x7f\x1e\x2f\x7b\x10\xda\x38\xcd\x4e\x20\x66\xa1\xda\x22\xed\xd8\x22\xc0\xf5\x06\x71\x99\xbe\x5c\xc0\x23\x1c\x48\x74\xda\xf1\xef\x4d\xf0\x12\x70\x3d\x2b\xab\xaa\xe5\x50\xa6\x2c\xca\xc9\xae\xeb\x6a\x4d\xa5\x11\xbd\x4a\x4b\x56\x1e\x5c\x67\x49\x77\xaa\x15\x88\x25\xb6\x6e\x8c\x18\x74\x12\x44\x06\xec\xf0\x25\x7d\x5a\x9b\x57\xb9\x27\xbb\xe6\x86\xe3\xd5\x3d\x96\xf7\xf8\xe8\x7b\x1c\x4c\xa5\xf9\xaa\xb4\xe6\x69\xd2\x73\x06\x99\x55\x95\xd0\xfc\x05\xac\x36\xce\x12\x3e\xa2\x5b\x60\x08\xd2\x6e\xd8\x37\x87\xb2\x6f\x04\x0e\x64\x76\xbf\x83\x7b\xb4\xa5\x2b\xd2\x53\xdf\xac\xe0\x54\x07\xf4\x66\x7a\xf6\xfe\x71\xf0\xf6\x8d\x1d\xae\xbb\x73\x6e\xcc\xbe\xe9\x98\x98\xde\x3c\x2f\xce\x63\x06\x16\x39\xad\xf9\x31\x97\x46\xcd\xdf\xaf\x0d\x0f\x9a\xc0\xc3\xf4\xd5\x4a\xb3\x7d\x18\x9a\xe4\xc0\xdc\x78\x5e\x41\x34\x9a\x2d\xdc\x77\x98\xd7\x59\x5a\x64\xf1\x39\xe5\xb7\x58\x81\x2c\x8b\x15\xd2\xce\x52\x20\xdc\xf7\xfa\x5d\x3b\x6e\xbd\xee\x4c\xf6\x0a\x84\xec\x2d\x5a\xdb\x83\xc5\x2d\x7b\x50\xa8\x63\x94\x4d\x8b\x6e\x69\x23\xd7\x45\x74\x75\x1c\x33\x88\x1d\x2f\x23\x15\x76\x7d\xd5\x11\x69\x50\x4b\x62\x94\x7c\x6d\x94\xf5\xbf\x84\x16\xbf\x59\x16\x74\x9e\x5e\x4d\x6e\xb9\x77\x7e\xf3\x86\x47\x97\x83\x21\xda\x32\xf6\x88\x53\x16\x8e\xa3\x89\xe3\x54\x78\x95\x89\x0a\xe8\x6c\xd2\xe9\x65\xd3\x38\xc0\x86\x4a\xc0\xf9\x75\x55\xfd\x49\x83\x30\xe5\x4a\xca\x7f\xfa\xad\x8c\x51\xfd\xf4\x09\xb2\x2d\x67\x8d\xf5\x29\xcb\x93\x7c\x61\x85\xb2\x2d\x17\x71\x79\x4a\x4b\x2b\x25\x5e\xb1\x53\xeb\xf5\x34\x2f\x99\xf5\xca\x3b\xd6\xf8\xaa\x9d\x3d\x61\x45\xb8\xda\xe5\xa5\x6f\x36\x93\xf0\x79\x45\x8b\x6b\xbb\xc6\x98\x9d\x36\xaa\xe0\x49\x76\x8d\x05\x15\xce\x97\x2a\x65\x38\x75\x81\x35\xfa\xdd\x1d\xe5\xf4\xc2\xa3\xb8\xef\xe3\xfe\x18\x19\x34\x5d\x68\xeb\x88\x37\xc1\x9b\xe8\x2e\x4b\xa7\xed\xd2\x22\xbf\xc7\xd0\x04\x90\x14\x01\x51\x6a\xe7\x22\x1f\xa5\xa5\xf6\x41\x01\x7a\x87\x17\x10\xd7\x57\x55\x6a\x03\xc7\x74\x4a\x65\x15\x1e\x9a\xa4\x96\x2d\xa3\x48\x14\x5b\x5c\x68\xb1\x7d\x28\x16\x24\x95\xa4\xe8\xd6\x6f\x5e\x18\x0f\xbf\x8c\x87\xdf\x8f\x06\xc3\x68\x30\x41\x5b\x29\x2e\xc9\xd6\x24\x1c\x0f\xbf\x8f\x1e\x3e\xd8\xc2\x09\xcf\xc2\x09\x96\xa9\x37\xed\x1f\x6d\xa1\xf0\xb7\xa3\xe9\x51\x19\x3d\x44\xde\xd1\x14\x2c\x89\x1e\xa2\xe9\x83\x2d\xbc\x20\xa1\x73\xe3\x60\xa7\x72\xb0\xb3\x76\xb0\x73\x74\xe4\x60\xe7\x37\x07\x3b\xff\x8f\x03\x3e\x57\x93\x98\x79\xa1\xb3\xe3\x60\x67\xd7\xc1\xdf\x38\xdf\xf0\x0f\xd8\xe9\xf1\x9c\x05\xff\x93\xf1\x3f\xcc\x89\x10\x5e\x91\xd0\xf9\xc6\x14\x5a\x20\xbc\x24\xa1\xf3\x77\x07\x3b\x5b\x0e\x76\xa6\x0e\x76\x02\x07\x3b\x7f\x33\x39\x56\x08\xcf\x49\xa8\xbf\xfe\xcd\x89\xf0\x8c\x6c\xfd\x16\x0e\xc4\xb8\xf6\x86\xff\xfe\x34\x8c\x6e\xc6\xf8\xc9\xa3\xea\xc1\x16\x3e\x85\x21\x77\x7c\x43\x1c\xc3\x7b\xb0\x85\x8f\xc9\xcd\xef\xf1\x45\x5c\x26\x45\xba\x64\x93\xfe\x18\x3b\xd6\xab\x33\xe9\x8f\x2b\x7c\x7e\x77\x96\xd7\xe4\xe6\x94\xb1\x25\xff\xc8\x7f\x4b\xfe\x30\x17\xef\x27\xf9\xf2\x94\x16\x90\x90\x8a\xf0\xac\x0e\x64\x75\xf4\x63\x29\x9f\xe7\x3a\x55\x96\x91\xc9\xbc\x98\x68\xe6\x04\x0e\xe6\x77\xd6\xc1\xbc\x50\xa7\x39\x9d\x7b\xd4\x75\xf9\x16\x92\x1b\x8d\x6f\xa1\xfa\x96\x51\xd7\x13\x0d\x8c\xfb\x33\xed\x90\x4f\x86\x95\x96\xd5\xe1\xa2\xb2\x37\x55\xc3\xd6\xd0\x34\xd9\xaf\xed\xd9\x6e\x67\x43\xef\xe2\x22\x3e\xa7\x8c\x16\xbd\x6f\x56\xc5\xe2\x1b\x1d\xde\x25\xd6\xfe\x86\x32\xf0\x23\xa4\x5d\x16\x49\xd7\x8a\x96\x92\xf8\x14\xc2\xc1\x83\x02\x79\xea\xba\xe9\x8e\xf5\xe9\x6f\x0e\x9a\x3a\x53\x67\xe2\xfc\xcd\x01\xb6\x8d\x10\x48\x94\x28\x58\x84\xe3\x88\xf0\x3f\x06\x60\x1e\x1d\x6d\x9d\xf0\x7d\x25\x5a\xb8\x20\x94\x2c\xc4\x3d\x5a\xc2\x85\x7c\x41\x2e\xe4\xc5\x85\xfb\x99\xeb\x0a\x2b\x15\x29\xe0\xf8\x9b\x83\x6a\x11\x5b\xae\x49\x32\xa2\x57\x34\xf1\x2e\xa0\xe8\x75\xed\xea\x07\xe0\x73\x61\x41\x9e\x8b\x06\x9c\xba\x0e\xfd\x08\x5f\x87\xdb\x8a\xa9\x27\x21\xdc\x35\xe8\x77\x18\x08\xc7\xa6\x27\x72\x55\xac\x5c\x0a\xef\xd6\x6c\xbe\x8e\x64\xa3\x69\x08\xf5\x2a\x65\x5a\x51\xab\x32\xcc\x06\x92\x73\x8f\xc4\xf6\x38\xf6\xc4\xe8\x2e\x89\xb7\x47\xf6\xc2\x71\x84\xea\xb6\x0b\x41\xfd\x0e\xb8\xc4\x7c\xca\x64\xc3\x7b\x6a\x7e\x38\x52\x94\xad\xd7\x7b\xeb\xf5\x85\xbe\xef\x38\x44\x09\x7f\xfb\x9f\xa3\xad\x68\xf0\x3f\xf2\x77\x4b\x6a\x1b\x7c\x21\xce\xd6\x16\xbf\xd1\x2f\x0c\x49\xb7\x8d\x82\xfe\x97\xf5\x7a\xcf\x75\xcf\xc3\xbd\x68\xbd\xf6\xac\x76\xb6\x51\xfd\xda\xe9\x8f\xa1\xc5\x3e\xcf\xe9\xba\x9e\x28\xd6\x7f\x1d\xee\x45\x96\xa9\xc5\x27\xfc\x16\x1f\x92\xa1\x8f\xaf\xc8\x38\xb8\xda\x99\x2b\xee\xf5\xd5\x60\x80\x6e\x60\x5f\x79\x6f\xc8\x85\xde\x55\xf3\xf0\x2a\xe2\x38\x8f\xa7\x04\xca\x6f\x76\x0e\xf9\xeb\x21\x79\x83\x2a\x91\xfd\x2d\x11\xdf\xa6\x17\x46\xc2\xc4\xf7\xe3\xff\x38\x68\xd2\x4a\xc2\x87\x50\xdb\x27\x3e\x0a\x61\xf0\x81\xdf\x22\x31\x79\xf0\xfa\x76\xe0\x23\xeb\xea\xec\x20\xf9\x3e\x21\x04\x03\x00\x73\x04\x31\x88\x65\x6d\x10\x7c\x94\x6f\x82\xf6\x50\x96\xb7\x0f\x85\xa7\xc1\xdb\x85\xa6\xdb\xcc\x9d\x6d\x7a\x7b\x68\xf7\xf6\x50\x19\xf1\xf0\xad\xf9\x53\x5e\x32\x0f\x35\xae\xf2\xda\x1b\x38\xf3\xe3\xdd\x7b\x45\x84\xd5\x65\xed\xab\xd0\x8f\x8b\xda\xe9\xb5\x37\x4b\x7b\x98\xaf\xf5\x2b\xed\x2a\xed\x45\xbd\x94\x3c\xae\x5b\x47\xa3\x2d\x84\x0f\x08\x9f\x29\xfc\x42\x8d\x2c\xb8\xda\x39\x30\x93\xf5\x99\xbc\x08\xaf\xa0\xba\xcf\xae\xdb\xff\x2c\xb7\xea\xcc\xda\x34\xfb\xfc\xe0\x9c\x91\x31\xfe\x48\x3e\xab\xb9\x3e\xdb\xf9\x18\x9c\x0d\x06\xe8\xb3\x2d\x40\x3a\x43\xbb\xfe\xf6\x77\xd3\xfd\x01\x71\xae\x9c\xc9\xfe\x80\x7c\x0e\xcf\x44\x47\xf7\xad\x6a\x79\x95\xcf\xc9\x0b\x3d\xa7\x57\x08\x3f\xd3\xaf\x57\x7c\x07\xbc\x23\xaa\x1b\xa7\x28\x78\xe7\xba\xde\x73\x29\x89\x0c\xfd\x08\xe1\x67\xda\xb1\xda\xbb\x70\x3b\x42\x3c\x41\xeb\x80\x5e\x10\x67\xcb\x19\x3c\x93\x2e\x0a\x47\x0e\x1a\x5c\x34\xd7\xe4\xb9\xf9\xa8\x2c\x2c\xaa\xae\x39\xde\xdd\xfe\xf6\xdb\x69\xbd\xa8\x23\x4d\xab\xbb\xd7\xb7\x0e\x22\xf0\x2b\xc5\x81\xd2\xb9\x8b\x11\xcb\xf7\x0e\xf6\x5f\xbe\xac\xa7\x4b\xf9\xc1\xff\xcb\xde\xbf\xf0\xb7\x8d\x1b\x8f\xc2\xf0\x57\x91\xd1\x2e\x97\x88\x20\x5a\x72\x6e\xbb\x94\x61\x1d\x37\x49\xbb\xfb\x36\x4e\xf6\x4d\x9c\xb6\xfb\x28\xfa\xe7\xd0\x22\x24\x71\x43\x91\x2a\x09\xd9\x56\x2c\x7d\xf7\xe7\x87\xc1\x85\xe0\x45\xb2\xe4\xec\x6e\xfb\x9c\xb3\xed\xfe\x62\x11\x97\xc1\x00\x18\x0c\x06\x83\xc1\xcc\x3b\x6a\xa4\x42\xc1\xc6\xdb\xe6\xcb\x47\x88\xfc\xab\x81\x94\x0a\xfa\xfc\x57\xfb\x5d\xc1\x64\xdb\x45\x51\xf2\x5a\x33\xc0\x2d\x18\x6b\x5e\x49\x1a\x89\xec\x04\x8b\x4d\xe2\x88\xd2\x6b\xf9\x54\x52\x0e\xee\xb5\x3c\xee\x1d\x5d\x0d\x6f\x46\x58\xad\x42\xf2\x9e\x2e\xcd\x2a\xb4\x89\xeb\x17\xba\x54\xc4\x05\x2b\xb2\x58\x8e\xda\xc6\xea\x47\x0a\x3a\x89\xf2\x22\xff\x05\xf7\x7f\xa4\x94\xfe\x02\xd6\x4c\x2c\x1f\x07\x0b\x26\x2a\xc8\xa5\x07\x84\xfd\x8b\xf2\x42\xf9\xa3\xba\xfa\xfa\x60\x81\x16\x7b\x94\x64\x00\x1f\x4c\xf7\x85\x20\x6d\x38\xe7\x07\x7b\x11\x77\xc9\x07\x35\x01\x3f\xd8\x30\x06\x32\xdc\x0b\x80\xf9\xa1\xbc\x3b\x19\x38\x3f\x60\x7b\x3b\x29\x92\x81\x89\xe9\xa6\x65\x66\x69\xff\x82\x24\x5c\x46\xe2\x87\xbd\xb6\xab\x6b\x5d\xc2\xec\xa0\xd7\x98\x5c\x0c\x6f\xb4\xef\x34\x3d\x83\x3a\xe4\x92\x2e\x56\xab\x26\x36\xff\xf2\x5e\xac\xf4\xe3\xb2\x69\x7c\xa7\xa9\xd1\xe4\x2a\xde\xf5\x57\x6a\x15\x2b\xc8\x10\x76\xfa\x77\xed\xbf\xda\x4e\xf7\xe4\x96\x2f\x15\xf0\x4a\x42\x57\x6e\xea\xea\x72\xfa\x16\x7b\x56\xb1\x0b\x40\x23\x0c\x8e\x01\x2e\x6b\xa2\x16\x86\x71\x21\xda\x7c\xf3\xf8\xfc\x38\x22\xc8\x47\x98\xb0\x36\x15\xbb\x50\xdf\xb2\xeb\xd4\x3b\xb6\x80\xa9\x3d\xd4\xd9\x5d\xd4\x7a\x6a\x41\x2f\xf0\x0d\xef\xdc\x02\x6a\xaf\xb6\x41\x44\x59\xdb\x7c\xf9\x95\x71\x77\x45\xae\xdc\x63\xca\x6b\xca\x7e\xe8\x57\x66\x2b\x3e\x1a\xa2\x76\x29\xa5\x8d\x46\x66\x7a\xd2\x0c\xa2\x49\xb5\x69\x89\x27\x60\x9b\xf4\x4a\xe2\xae\x45\x61\x8e\x53\xf3\x91\x27\x33\x0a\x7e\x19\xd0\xa9\xad\x11\xb2\xa8\xb3\xf4\x4a\x54\xcd\x76\xe0\x38\x68\x80\xda\x81\x74\x4b\xab\x66\x1a\xcc\xbe\xe1\x45\xa3\xa2\xff\x0e\xd8\xd0\x70\xc0\xb8\x2c\xa3\xac\xd7\xee\x11\x5f\xaf\x2f\x86\x7c\x84\x1d\x07\x0c\x6b\xa3\x81\x1b\x81\xe0\xd3\x76\x23\x78\x9d\x43\x12\xc7\x91\x5c\x27\xd1\xe6\x42\x5d\x0c\x01\x9c\x05\xf3\x49\x30\xf6\xa3\xf5\x5a\xd4\x41\xe0\xfb\x07\xfd\x09\x49\xf7\x73\x56\xd1\x8c\xa2\x3f\xa1\x76\x86\x49\x0e\xf8\x1e\x51\x9a\x97\xf2\x73\x2a\x7a\x91\x63\xc2\xdb\x51\xdb\x4d\x2c\x77\x8b\xc7\xc3\x01\xd8\x39\x34\x86\xf5\x68\xa2\xbc\x0d\xc6\xb8\xed\xe6\x34\x37\x20\x84\xfc\x8d\xbe\x39\x79\x8c\x30\x6e\x67\x65\x52\xaf\x1f\xb3\xcb\xf7\x17\xe5\x03\x72\x71\x72\xc6\x66\xfd\x34\xc2\xab\x1d\xc0\xa5\x07\xf0\xd2\x81\xc4\x76\xdf\xd1\xe7\xe6\x88\x23\xe1\x13\x46\xf9\xa6\x30\x6b\x80\x42\xa4\xee\x60\x11\xab\xe0\x0b\x59\x2d\xf8\x42\x4e\xb3\x61\x30\xea\x27\xc3\x7c\x04\x04\x33\xcc\x21\x72\x57\x22\xf9\x2e\x04\x59\x99\xc9\xb7\xa7\x0c\x98\x82\x09\x2d\xa2\xf4\x11\x05\x7f\x48\x20\x5a\xa4\xa6\x17\x30\x3e\xd0\x6b\xd6\x7e\x2f\x6c\xa3\xc6\x30\x89\x69\xb7\x1f\x9f\x9a\xd8\xc9\xb1\xc6\x6b\x49\xc7\xc3\x78\xd4\x47\x1a\x04\x92\xd6\x6b\x6e\x32\x5c\x8e\x28\x1b\x2e\x47\xc6\xa8\xe9\x62\x98\x98\x86\x46\x8e\x93\xd8\x9c\x34\xb1\xd9\x68\xa2\x34\x2a\x15\x56\xda\xd0\x93\x0d\xf4\x44\x03\x75\x9c\xe2\x37\xd0\x76\xd1\x2d\xb1\x99\x5e\x0c\x8b\xec\x51\xd1\xd3\x45\xb5\xa7\x13\xda\xed\x4f\x0a\x89\x77\xa2\x7b\x1a\xd2\xc5\x70\x22\x66\x20\x14\x1d\x0b\x8d\x77\xa7\x2d\x78\x15\xcd\xd3\xa2\x5d\xc2\xa0\xd7\xeb\xf5\xbc\x84\x8c\xd5\x55\x66\x7e\x16\x41\x7b\x45\xeb\x33\xea\xb2\x12\x1f\xc5\xfa\xb8\x28\xce\x98\x33\xc3\x6e\x8e\x5c\xd9\x04\x9d\x99\x77\xff\x7d\xdc\xd7\xcd\xea\x4c\xb1\xb2\x99\x25\xea\xb8\xcc\x96\xc0\x30\x01\x97\xb6\x33\x10\x49\x66\x46\x14\x14\x19\xba\xa1\xd3\x93\x6a\x8e\xd5\x87\x99\x12\xff\x8e\x91\x3c\xa0\xe9\xcd\x96\xa9\x1f\x24\x51\xfb\x2d\x93\x7f\x89\xa4\x05\xaa\xb1\x14\x1b\x87\x3c\x9d\x30\xf8\x43\x0a\x5a\xa1\x36\xd6\xf2\xb7\x68\x39\xcd\xe4\x4b\xa0\x8c\x5b\x78\xac\xd7\x89\xd9\x6b\xaf\x21\xc4\x77\x52\xde\x89\xa6\x34\xb1\x77\x59\x45\x77\x57\xed\x69\x31\xb5\x46\xe1\x58\xf0\x57\xb3\x74\x1a\x29\x52\x9e\xf6\x6d\x7a\x86\xf8\x7d\x56\x4a\xc1\x27\xc9\xca\x74\x99\xd5\x2a\xb0\xa6\x0a\xe7\x74\xb5\x5e\x5f\x8b\x8e\x89\x6a\x40\xf0\xaa\x10\xb9\xa1\xe7\xe4\x4b\xa9\x61\xab\xc9\x82\x54\xd6\xeb\xe1\x88\x7c\xa2\xee\x8c\xda\x4d\xb2\xad\x45\x13\x6b\x79\x1d\x95\x96\x30\x08\x6f\x9f\x60\xbd\x5a\xb4\xa3\x67\x43\x46\x84\x52\x68\xba\xc0\x98\xbe\x0c\xbb\xa3\x81\xf8\x87\xca\x74\xff\x8b\x21\x20\x99\x80\xb1\xa6\x04\x84\x88\xbd\xae\x6d\xf2\x04\xc0\xcc\x6a\x84\x95\x1a\x11\x44\x3b\x10\xff\xa8\xa1\xf5\x0b\x2a\x65\xba\x11\x56\xa8\x89\xc5\x90\x9e\xdb\x75\x05\x25\x28\x5c\x31\x26\x2b\x5c\x23\x4d\xc9\x61\x85\x90\xa2\x1a\x48\x34\x15\x36\xd2\xa8\x55\x41\x24\x0c\x8a\x9f\x7e\x51\x83\xdc\xbf\x44\xbe\xd0\x99\xf1\x0f\x64\xee\x3d\xbf\xac\xd7\xee\x17\x3a\x1c\x61\xf2\x45\xf9\xdc\xf9\x42\xbf\x68\xe5\xe5\x0c\xdf\x0f\xd6\x80\x04\xe5\xda\x9b\x65\x1c\xbf\xcd\x3e\x68\x4f\x9c\xae\xae\x25\x0d\xcb\x3f\x61\xab\x8b\x6a\x58\xbe\x68\x26\x43\xdc\xd7\xf4\xe8\xc8\xd5\x13\x2e\xff\x16\x02\xd9\xff\x42\xf8\x4c\xc8\x05\x2a\x5d\xd1\xd8\xff\x42\xa0\x2d\x50\x6b\xfd\xb5\x81\xa5\x80\x5b\xcd\xbd\x2e\x98\x59\xb1\x34\xef\x19\x31\xdd\x23\xb7\x58\x07\x58\x8a\x71\x2a\x55\x75\x6e\xbd\xd6\x3b\x8e\x55\x72\x50\xfc\xf4\x11\xc2\x6d\x53\x7c\xa0\x7f\x88\xe4\xad\x9b\xd2\xd1\x97\xca\xfb\x97\xa4\x72\x71\x60\x81\x83\xa6\x41\xf0\xd2\x90\x13\xeb\x4a\xa1\x69\xff\xd6\x7b\xc2\x5b\x31\xfe\x70\xb8\xe9\xf4\xf0\xb0\x3b\x22\x97\x54\xcd\x80\xe6\x8d\xeb\xf5\x17\x13\xf1\x5c\x0c\x35\xf2\x04\x39\xbe\x5d\xaf\x91\x27\x7f\x61\x45\xa1\x6f\x89\x38\x62\xbe\xa1\xba\x78\xff\xcd\x19\xed\xf6\xdf\x74\x3a\x58\x56\x71\xdf\xd2\x2f\xc3\x37\x23\x3c\xf8\xa2\xdf\x42\xbe\x21\x3d\xec\x6b\x30\x03\xb7\x94\x4e\xc4\xe1\xd4\xbf\x75\x9c\x6a\x72\xa7\x23\x2d\xab\xce\x1d\xe7\xe8\x06\x4e\xb6\xfd\xdb\x4e\xa7\x7f\x8b\x0b\x56\x20\x40\xe2\xfe\xd1\xb9\xb5\x10\xd7\xeb\x2f\x52\x75\x73\xac\x53\x0a\x96\x28\x7a\x68\x6f\x43\x97\x5a\xb4\xfd\x52\x6c\x42\x25\xa9\xf9\x8b\xf6\xee\x2d\xc5\xef\xd7\xe4\x15\xdd\xab\xa1\x7e\x85\xd5\x29\x22\x7d\x35\x40\xc8\xd7\xa3\x36\x30\xeb\xc1\x47\xe8\x77\x5b\x12\xc6\xc8\xef\x9c\x9e\x17\x5b\x83\xa1\x40\xc7\x39\x7a\x25\x3e\xed\x51\x32\x08\x5b\x74\x69\x0d\x98\xef\xd6\xe9\xd5\x90\x24\xfe\xbd\x56\x96\x25\x01\x80\xff\x6a\x29\x09\x1c\xbc\x23\x93\xda\xed\xc2\x0f\x62\x28\x9b\x4f\xc3\xc0\xca\x39\xcd\xa5\xa2\x9a\x49\x73\x1c\x79\xf8\x72\x39\xb8\x29\xc1\xe6\xa0\x2f\x76\x20\x6e\xe9\xc2\x09\xa3\xcc\x8e\x20\xa2\x5f\x0a\x1b\xc3\x19\xc2\x6a\xba\x22\xd6\x14\x6b\xa7\xe2\x29\x1c\xac\x55\xfa\x47\x26\x31\xc2\x77\x5c\xfb\x31\xbd\x5c\x2d\x18\x81\x0d\x5c\x7f\xa9\xdb\xb7\xe2\xca\x5b\xdd\x75\x64\x8e\x93\xf5\x03\x6f\x1a\xa7\x57\x81\x0a\xaf\x1d\x78\xd2\x2e\x46\x7f\xe5\x2c\x9e\xc8\x33\x29\x19\xd3\x93\xde\x93\xe7\x4f\xbe\x7b\xfc\xec\xc9\x73\x12\xd3\xc7\xcf\x54\x60\x99\x93\x67\x64\x42\x1f\x7f\x47\x42\xfa\xbc\xdb\x25\x33\xfa\xfc\x84\x5c\xd1\xde\xc9\x77\x64\x4e\x51\x07\x91\x0b\x7a\xfc\x3f\xb7\x49\xa7\x73\x4c\xa6\xf4\x78\xf8\x3f\x1f\x6f\x4f\xba\x9d\x8f\xb7\xcf\x5f\x8d\x8e\xc9\x35\x3d\x1e\x7e\xbc\x3d\x79\xf5\x71\xf9\xb8\xdb\x3d\xf9\xb8\xfc\xeb\x5f\xbb\xaf\xc4\xbf\xcf\x7a\xe2\x34\xb8\xa2\x77\xe9\x35\xcb\x26\x71\x7a\xe3\xa3\xb7\xfa\x57\x4b\x5a\xd7\x26\x8c\x85\x79\xeb\x26\x0a\x59\xd6\x8a\x12\xce\xa6\x2c\xcb\x5b\x3c\x6d\x29\xf7\xc4\x88\xa0\x24\xe5\x9d\xab\x20\x8f\xc6\xc8\x47\x3f\xc6\x31\x9b\x06\xb1\xaa\x7b\x46\x5b\xdd\xdb\xef\xba\x2d\x37\x49\x79\x2b\x68\x41\xa1\x96\x38\x65\xb6\x16\x69\x94\x70\x8c\x08\x8a\x92\xeb\x20\x8e\xc2\x0e\x54\x10\x00\xe4\xb7\x04\x80\x36\xe4\x9c\xc6\x9d\x25\xb9\xb1\x22\x6c\x91\x2f\x4d\x6f\xee\x8a\x9b\xb2\x4f\xc5\xfb\x5d\x71\xd2\x7b\x17\x24\x53\x75\x43\xb5\x1a\xb2\x11\x2e\xec\xdd\xdf\x56\xed\xdd\x35\xd5\x90\x8c\x0e\x47\xfd\xa4\xd3\xe9\xe3\x6c\x98\x8c\x28\x77\x99\x1d\xa5\xd5\x0a\x4a\x75\x59\x8e\x86\x5a\xf0\x11\x92\x59\x9e\xf2\x13\xb3\x0d\xc0\xe1\x3d\x19\x76\x47\x6d\xf4\xbf\x10\x61\xe0\x35\x0a\x93\xac\xfd\xd6\x75\x05\xfd\xea\x33\xf6\x35\x41\x1e\xc2\xe6\x90\xe1\x21\x4c\x38\x2e\xd4\xba\x45\xfb\xb7\xb5\x37\xef\x74\x38\x52\xcf\xde\xcd\x93\xf7\xf4\x34\xea\x63\x97\x97\xfd\xad\xa7\xed\x36\xc6\x67\xf4\xe9\xd3\x93\xef\x9f\x39\x0e\x3f\xa5\x4f\x9f\x3d\xee\x7d\xef\x38\xe9\x69\x34\x78\xfa\xec\xf1\x49\x97\x52\xf7\xd9\x93\xa7\xbd\x13\x07\xdc\x98\x55\x6b\xe2\x41\x26\x59\xb9\xeb\xf6\xba\x27\x8f\x1d\x8e\x4f\x4f\x7b\x5d\xdc\x96\x5f\x09\x6e\x3f\x7b\xfa\xf4\xf1\x33\x70\x77\x23\xa3\x59\x60\x92\x76\x3a\xd8\x37\x9f\x0d\x83\xf9\xc6\xd2\x17\x88\xb9\xa9\x45\xda\xe1\xd6\x98\xb2\x33\xd1\xc2\x53\xa9\x88\xf9\xe2\xba\xac\x43\x65\x93\x67\x67\x67\xbd\xae\x23\xd0\x58\x43\xe7\x04\x67\x80\x0e\xad\x01\x35\x86\x09\x54\x00\xd5\x86\x89\xf4\x53\x20\xf1\xba\xe2\x6e\xe2\xe4\xa4\xfd\xfc\xe9\x23\x97\x9d\x9e\x3c\xc3\x1d\xd7\xed\x1e\x51\xd1\xd5\xa7\x56\x8d\x57\xe5\x58\x53\x5d\x90\x10\x18\x4d\x06\x37\x2e\x3b\x0e\xb1\xcf\xce\xce\x7a\x84\xb5\xa9\xf8\xe4\xb8\xcf\xce\xce\x1f\x2d\xce\xce\x7a\xfd\xac\x4d\x63\xcc\x20\xf9\xdc\x0c\xc7\x8d\x9b\xb5\xdd\xf3\x76\x0f\x3f\x62\xc7\x2e\x6b\x4f\xb0\xd5\xd0\xfb\x92\x3b\x2c\xed\x2e\x84\x4c\x48\x48\x2e\xc8\x94\x5c\x8b\xa9\x5f\x15\x44\x7c\x4e\xbb\xe4\x0b\xbd\x22\x6f\xe9\x0c\x50\x82\x79\xb4\xef\xab\xe6\x18\x9f\x76\x41\xf3\xd4\x15\xf4\xda\xed\x67\xa7\x49\xbf\xdd\xce\x70\x69\xba\x33\x7c\x26\x78\x8c\xe3\x7c\x72\xad\x95\x8e\xc9\xb5\x7a\x88\x5c\x2e\x2b\xdd\x68\xa5\x34\x39\xeb\x0e\x92\x76\xcf\xef\xf6\xd3\xd3\x55\x5f\xd2\x68\x44\xcf\x49\x40\x7b\x24\xa7\x71\x3f\x3d\xa3\x2b\x00\x59\x5e\xff\x98\xb8\xee\x84\xba\xd3\x06\x8a\xeb\x3c\xf9\xee\xb4\xd7\x1d\x4c\x3b\x27\x27\xfe\xb4\xf3\xec\xe9\xe9\xc9\xb3\x81\xf8\xeb\x4f\x3b\xdf\x3f\x97\x1f\xdf\x3f\xf7\x63\x7c\x46\xe3\xf5\x7a\x72\x76\xe3\xba\xe3\xce\x39\x3e\x0e\xc4\x96\xfe\xc9\x45\x9a\xc1\x21\x4c\xce\xdb\x74\xf2\x28\x20\x47\xee\xe4\xd4\x0d\x69\x7e\x4a\xdf\x0e\x96\x7e\x7e\x46\xdf\xb6\x17\x83\x85\x9f\x77\xde\x62\xdc\xcf\xc5\xe4\x04\x67\x37\xee\xf8\xd8\xbd\xa0\x71\x27\xac\x83\x09\x1e\xd1\x8b\xfe\x5b\xfa\xca\x3d\xef\x44\x84\x9b\x7b\xb5\x76\x8f\x74\x29\x8d\x30\xb9\x71\xcf\x8f\x39\x3e\x1b\x77\xbe\x54\x6b\x7e\x11\xc4\x20\x32\xc9\xf9\x37\x94\x93\x6b\x2d\xa6\x9d\xb7\xdb\xa4\x4b\xbe\x18\xa5\xcd\x1b\xf7\xda\x9a\xfe\x7f\xdf\x33\xfd\x64\x45\xce\xe1\xf6\x53\x47\x2a\xa5\x2e\xa3\xb7\xa0\x3d\x56\x14\xc1\xe9\x15\x04\xdd\x89\xe8\x4c\xa9\xba\xae\xfb\xed\x76\x80\xc5\x78\x0f\x83\x11\x3e\x85\x79\xbe\x94\x13\xfb\xc5\x9d\xaa\xd9\xcc\x68\x4a\x2f\x35\x8c\xd4\x14\x98\xe3\x7e\x76\x7a\xad\xe6\x36\xa7\xe3\x46\x90\x67\x94\x3b\xce\xf4\x34\x07\xad\xe4\x54\xc2\xcb\x3b\x5c\x4e\x4f\x82\x8f\xdd\x15\xcd\xda\xbd\xfa\xe0\x26\x6d\x2a\xca\xe1\x47\x2b\x21\x10\x94\x40\x47\x13\xd7\x20\xcc\x1d\xa7\xdd\x4e\xce\xc6\xd5\xea\x53\xe3\xd1\x60\x42\x13\x12\xd2\xb8\x0f\xb3\x7d\x41\xc3\x53\x1a\x0d\x96\x7e\x78\x46\x23\x98\xed\xb0\x13\x61\xdc\x0f\xc5\x6c\xbf\xa5\x93\xce\x05\xec\x37\x17\xc4\x8c\xc1\x6b\xf7\xa2\xfd\xf6\x9b\x73\xd2\xc5\x18\x93\x09\xbd\x71\xdf\x8a\xc5\x6a\x65\x4f\x64\x56\x44\x5f\xb9\x09\x59\x91\x8c\xd2\x14\xc3\x20\xb7\xdb\xd9\xa6\xdd\x4e\x48\xbb\x6d\x22\xf5\x5c\x16\xfc\x26\xa7\x77\x2a\xa0\xb9\x8f\x7a\xde\x13\xaf\x87\xc8\x72\x9c\x9f\xf8\x77\xf2\x4a\xd8\xbf\x25\x52\x1d\xeb\xbf\xd9\x10\x95\xf4\x5e\x27\xfd\x9b\xa8\x6b\xb6\x26\xb3\xb1\xcb\x2a\xe3\x54\xe9\x53\xf3\x2e\x01\x09\x19\x01\xb5\x05\x39\xf9\xca\x5d\x7d\xfa\x21\x89\x00\xf4\x01\x00\x2f\x0c\xc0\xf7\xae\x76\x6f\xf8\xa4\x62\x46\xa0\x1a\xd8\x10\xf3\x64\xc6\x4d\x1b\x8c\xdb\xf3\x8d\xb2\xd4\x23\x09\xe1\x84\x61\x0c\x3a\x31\x6d\xd9\x96\xe2\x8d\x8b\x2b\xc6\x7c\x8f\xbf\xc7\x2e\xc3\x24\x71\x7b\x4f\x45\x07\x76\x5a\xbc\x15\x90\xee\xb4\xc6\xb8\xa1\x9f\x0d\x16\x87\x1b\xa2\x2f\x1d\x9a\xca\x37\x59\x35\xaa\x60\x31\x50\x53\x48\xe3\x4d\xe3\xa9\x5f\xa3\xe9\x32\xd6\x99\x7f\x7b\x71\xb6\x69\x90\x54\x2b\x36\x8b\x92\x4c\xa8\xb6\x7b\x4b\xdc\xde\x77\xdf\x61\x70\x6e\xa6\xd2\xcd\x3d\x08\xe4\x7d\x7f\xdf\xb8\x19\xc6\x93\x95\xb6\x44\xa5\xb0\x2d\x45\x18\x7f\x7b\x93\xe8\x47\x7b\xca\x20\x8d\x70\xbc\x29\x06\xbe\xf2\x92\x4a\xc8\xd0\x94\xaf\xd7\xc8\x41\x24\x01\x27\xcd\x14\x29\xc9\xf9\x6e\xd3\xb7\x6c\xb0\xad\xf8\x66\xeb\x75\xd7\x72\x26\x6b\xec\xa5\xd5\x2d\xce\xf1\xc7\xf6\xf1\xb4\xcf\x8c\x08\xa6\xcc\xcc\xc7\xb4\xc7\x1e\xf7\x23\xc7\xa9\xc7\xc3\x8d\xbc\x79\x70\xfb\x77\xb6\x12\x9c\x69\x4c\xcd\x97\x8e\xeb\x69\x84\xa7\xf1\x59\xd7\x71\x62\xc1\x61\xdc\x98\x8e\x0b\x2f\x91\x4b\xda\xed\x2f\x4f\xe3\x7e\xbb\xbd\x54\x1e\x3c\x81\x13\xcf\xc8\x15\x28\xde\x8d\x28\x97\x13\xf4\xcd\x49\x17\x61\x32\xa7\x57\xe6\xfc\x99\xe0\xfe\xfc\x8c\x76\x07\xee\x82\x5e\x15\x87\x96\xb9\xe0\x30\xe6\x7b\x2e\xd8\xa2\x2f\x4a\x90\x09\xa8\x85\xc3\x26\x73\x91\x05\x26\x8d\x66\x24\x13\x4c\x32\x37\x20\x21\x1e\xa4\x6e\x30\x0c\x47\x78\x20\xfe\x95\x6c\x6b\x86\x7d\xf1\x41\x87\xe2\x5f\x32\x1b\xc9\xaf\x99\xe6\x52\xc1\x46\x99\xe8\x97\xc2\xd6\xad\xd7\x0d\x6b\x60\x28\x17\x41\x0b\x4a\x80\x69\x47\x8d\x3a\xb4\xad\xb0\x31\x54\xdc\xcb\x3e\xd5\x6e\x4b\x79\x23\x31\x56\x63\xca\x5d\xbd\xa4\x10\xdf\x98\xba\x41\xea\x55\x9a\xc6\x2c\x48\x8a\xe4\x01\xe2\xd9\x92\x21\x1f\x4d\x82\x38\x67\x48\x96\x52\xc4\xa0\x0b\x45\xf9\x5f\xa3\x24\xe2\x4c\x3e\xda\x42\xc8\x3c\xb2\x57\xbd\x44\x1b\x3b\xb8\x4d\x85\x96\xf3\xe2\x8a\xab\x4a\xd2\xe6\xe1\xa9\x34\xf1\x04\x16\x88\x49\x03\xe3\x18\x44\x6e\x20\xd8\x59\xc1\x66\x03\x7d\xef\xd4\x70\x29\x97\xb9\x01\xc6\x85\x6f\xb1\xd4\x85\xad\x70\x10\xc1\xdf\x46\x56\x9d\xb7\x1b\xc1\x30\x5c\xc8\xc0\x1c\xfb\xdb\x4a\x09\xe8\xe5\x82\x83\xc6\x82\xb9\xc0\x6a\x6b\x4b\x3e\x42\xbf\x2d\x5d\xd5\xa2\xff\xc0\xf5\x54\xf1\x36\x51\xda\x97\x0b\xce\x50\x1c\xf8\x86\x23\x25\xf7\x96\x7d\x90\xa9\x33\x8a\xcb\x86\xd9\x88\x64\x96\xda\x53\xc5\xee\xb1\xee\xac\xca\xe8\xcb\x43\x8a\x1d\x29\xbe\x15\x25\x2d\x86\xf7\xe4\x99\x09\x76\x1c\xae\x63\xd4\x14\xfe\xd4\xf6\xb5\xe8\x7e\xa6\x0c\xba\x9f\x43\x2c\x2e\xf7\xe4\x09\x26\x01\x4d\xbc\xc4\x8d\x30\xc9\x45\xc2\x33\x4c\xc6\x90\x90\x63\x4b\xa3\x61\x9d\x60\x51\x18\x70\xc6\xa3\x39\x5b\x44\xe3\xcf\x2c\x43\x70\x8a\xd5\x2a\xed\x44\x80\x47\x9e\xf9\xce\x44\x33\x77\x2f\xcf\x2f\xcf\x3f\x5d\xbe\xfd\xdb\xdf\x5e\xbf\xf2\xbf\x1d\x86\x01\x0f\x3a\x3c\x9d\x4e\x63\x46\xd1\xb7\xa6\x24\xf9\x16\x8d\xbe\xc5\x1b\x12\xd0\xbb\x1f\xdf\xfc\xf4\xe1\xd2\xb7\xa0\x12\xa4\x65\xff\x0d\xc9\xe9\xdd\x8b\x1f\xce\xdf\xfc\xed\x95\x8f\xc6\x33\x71\x6e\x37\xc5\x52\x4c\xfe\xf2\xfa\xc3\x3b\x1f\x5d\xc5\xcb\xcc\x4e\xfd\xfb\xab\x9f\x3f\xfc\xe4\xa3\xcf\x6c\xb5\x5c\x54\xd2\x5f\xbe\xfd\xe7\x1b\xc8\x09\xd3\x9b\xc4\xce\xfb\xeb\xdb\x17\x1f\xde\xfb\x68\x92\x8e\x97\xb9\x9d\xfe\xe2\xf5\x8f\x2f\xfe\xfe\x09\x7a\x74\xfe\xd3\x8f\x3e\x1a\xc7\xd1\xf8\xb3\x55\x40\xff\x42\x1e\xf4\x33\x58\x44\x08\x93\x0f\x3f\xbd\x3c\xbf\x7c\xe5\xa3\xe5\x42\x0c\x9e\x0d\xee\xd5\xbb\x77\x6f\xdf\xf9\x08\x1e\x13\xdb\xe9\x3f\xfc\xf8\xf2\x95\x8f\x66\x51\x58\x2a\xfd\xfe\x87\xb7\xff\xf4\x51\x3e\x4b\x6f\xac\xd4\x0d\x19\xd3\xe1\xdd\x8b\xd7\xe7\xef\xdf\x7f\x7a\x73\x7e\xf1\xca\x47\x61\xb0\xca\x11\x79\x73\xfe\x8f\x4f\x7f\xfd\xf0\xe6\xc5\xe5\x8f\x6f\xdf\xf8\xe8\x42\x26\xbc\xbf\x7c\xf5\x93\xdf\xdb\x90\x52\xf9\x79\x9a\xf0\x59\xad\xc6\x6a\x47\x8d\x15\x0b\xb2\xdd\x15\xba\x95\x1a\x21\x1b\x07\x21\xbb\xa7\x4e\x77\x33\x22\x31\xbd\x5b\x2e\xfc\xc7\xdf\x91\xc7\xdf\x89\x01\x43\x44\xcc\x8c\xff\xa4\x4b\x9e\x74\x7d\x04\xb3\x44\x62\x36\xe1\xfe\xe3\xe7\xe4\xf1\x73\x1f\x89\xdf\x88\x40\x90\x0a\xff\xf1\xf7\xe4\xf1\xf7\x3e\x82\x0f\x44\x78\x70\xe5\x7f\x4f\xbe\xf7\x11\x0f\xae\x10\x91\x16\x54\xfe\xc9\x73\x72\xf2\xdc\x47\xf2\x0b\x11\x96\x70\x96\xf9\xbd\xc7\xa4\xf7\xd8\x47\xf0\x81\xc8\x22\x98\xb2\x0f\x0b\xff\xf1\x63\xf2\xf8\xb1\x8f\xe4\x97\x4c\x7d\x29\x30\x79\xfc\x84\x3c\x7e\x22\xd3\x5f\x02\x36\xa0\xb4\xf5\x7b\xcf\x48\xef\x99\x98\x9b\x48\xe0\x33\x4e\x13\x9e\xa5\xb1\xdf\x7b\x4e\x7a\xcf\x65\x74\xa7\x2c\x8d\x11\x01\x07\x53\xfe\xe3\x13\xf2\xf8\xc4\xd7\xde\xa6\xb8\xff\xdd\x13\xf2\xdd\x13\x1f\x71\x44\x42\x16\x33\xce\xfc\x27\xcf\xc8\x93\x67\x62\xcc\xc4\x17\xda\x80\x5d\xbc\x58\x72\x39\x22\x6a\x72\xcd\x9c\xe9\xa9\x30\x03\x3c\x22\x0b\x7a\xb7\x21\x13\xf1\x4f\x48\xef\x44\xb5\xff\x27\x4d\x20\x5c\xa2\x7a\xb8\x74\xd4\x23\x61\xb0\xfa\x47\xc4\x6e\x7e\x60\x41\xc8\xb2\xbf\xca\x64\x74\x71\x71\x71\xd1\xfa\xf9\xe7\x9f\x7f\x46\x84\xdd\xf2\x2c\x90\xe9\xb9\x28\x9f\x73\x06\xef\x6a\xfc\x1e\x99\x47\xc9\xcb\x80\x33\x91\x3a\x0f\x6e\xf5\xcf\x65\xce\x5e\x48\xbf\x7b\xfe\x51\x97\x8c\xd3\x38\x0e\x16\x39\x18\xb8\xc7\xe9\x38\x88\x21\x6a\x1e\xfc\x70\x31\x51\x5b\xa7\xae\x1a\x46\x79\x70\x15\xb3\x50\x7c\x43\x63\x2c\x29\x7f\x47\xe3\x34\xc9\x7d\xe8\x89\xd8\xa3\x5b\x93\xa0\x33\x8e\xd3\xf1\xe7\x4e\x8a\x88\x58\x4f\x26\x31\x88\x59\x12\x06\x19\x22\xcb\x85\x4e\x0b\xb2\x2c\xbd\xe9\x18\x32\x2a\xa5\x4a\x62\xd2\x2f\xbc\x0c\x94\x19\xbb\xce\xd2\xa4\x23\x09\x2b\x61\xb7\xbc\x9a\xa3\xe9\x2b\x0d\x83\x55\xb5\xed\x0e\x78\xd8\x13\x98\x8d\x63\x16\x64\x3a\x5b\xcd\x24\x01\xe7\x69\x3a\x51\xce\xa8\x38\x5a\xa5\x31\x8f\x16\xa2\x8b\x12\xe4\xdf\xd2\x16\x17\xff\x85\xc1\xca\xc0\x79\x21\xfe\xb4\x64\x80\x88\x28\x4d\x0c\x28\xf0\xab\xd8\xe2\x33\xd6\xd2\xfc\x58\x96\xb9\x10\xf4\xe1\xa3\xf7\xf0\xd1\x82\x2f\xd9\x57\x95\xf1\x93\x7e\xd8\xa6\xb2\x44\x47\x55\xd6\x1b\x76\x6b\x6a\x48\x60\x3f\x03\x0a\x0a\x96\xf8\x90\xa0\x64\xb2\x81\x24\x33\x04\x20\x99\x01\x70\x64\xa2\x04\xf3\x12\x48\xd4\x00\x92\x9f\x12\x94\xce\x32\xc0\x74\xa6\x00\xa7\x33\x01\xa0\x5d\xeb\x05\x4b\xf8\x32\x5b\x59\xd5\x54\x8a\xac\x67\xb2\xa1\xa2\xc9\x12\x03\xf5\x43\xba\x14\xa8\x47\xe3\xcf\x2d\xf1\x13\x91\x28\x19\x67\x6c\xce\x12\x2e\x73\x7e\xd4\x9f\x2a\x3b\x64\xa5\xec\x97\xac\x9c\x2d\x40\x5e\x44\xc9\x52\x10\x23\x00\x95\x1f\x16\x58\x9d\x5b\x00\xd6\x45\x0c\x68\x5d\xa4\x00\xae\x8b\x08\xf0\xef\xd9\x38\x4d\x42\x05\x5e\x7e\x58\xe0\x75\x6e\x01\x5e\x17\x31\xe0\x75\x91\x02\xbc\x2e\x22\x37\xe3\x9f\x58\x16\xa5\xa1\x8f\x2e\xe1\xab\x25\x3f\xf5\xd4\x5d\xc2\xe2\x53\x13\x27\x3e\xcc\x9c\xc2\x02\xd4\x33\x1a\x48\x76\x95\xb3\xf7\x20\x78\x00\xeb\x88\x42\xf6\x97\xd5\xfb\x28\x64\x8a\xf1\xe4\x6f\x27\xff\x64\xec\xf3\x4b\xb5\xec\x45\xaa\x5e\x3d\x22\x1d\x96\xfc\x75\xc4\x6e\x2e\x20\xc8\xab\x64\x77\x62\x89\x5c\x05\xd9\x4f\xe2\xb8\x24\x50\x17\xbc\x11\x98\x08\x22\x57\x4b\xce\x81\x3f\x88\x6d\xf1\x12\x16\x90\x68\x75\x96\xde\xc0\x92\x29\x3e\xc4\x72\x39\xea\x6d\xc8\x4d\x14\x4e\x19\xd7\xde\x25\x04\x53\xbb\x9b\xa5\x59\xf4\x25\x4d\x78\x10\xfb\x28\x58\xf2\x14\x91\x6b\x96\xf1\x68\x6c\xbe\x4d\x2d\x70\xf2\xed\xcb\x20\x43\xe0\x10\xf1\x1d\x0b\xc2\x34\x89\xa1\xd1\xcf\x8c\x2d\xde\x2e\x58\x22\x7e\x83\xe0\xf0\x36\x79\x3f\x4b\x6f\x04\x17\x94\x6f\x42\x75\x21\x75\x81\x21\x3f\x57\x7f\x89\x92\x30\xf7\xc5\xae\x67\xa9\x3d\x8c\xe7\x0c\xd9\x70\xd9\xc3\x85\xba\x0b\xfb\x24\xb8\x9f\x74\x13\x03\xdf\x53\xc6\x2f\x52\x08\x98\x55\x0e\x6d\x28\x41\x78\x93\x28\x09\xa5\x5c\xa2\x65\x37\xec\x45\xb9\x8b\xfc\xeb\x28\x8f\xae\x62\xa6\x6d\x32\x45\x01\x97\x79\xe3\x38\x4d\x98\x0b\x77\xb3\x3c\x0b\xc6\xdc\x7d\x4e\x50\x88\xf4\x43\x93\x4a\x21\x08\x2b\x2f\xdf\xad\xcb\x9d\xc2\xc5\x04\xcd\x11\xc6\xe4\xa8\xbb\x91\xbc\xf7\xde\xce\x49\x64\xc5\x64\xb9\x98\xfc\x27\x7a\x2a\x3a\xb1\xab\x93\x66\x24\xb6\xf7\x54\x6f\xf5\xad\xe5\x02\xfd\x97\x4f\x67\x8f\xa0\xd5\xae\xe9\xec\x11\x34\xab\x75\x0b\xf6\xcc\xff\xce\x8e\x29\x9c\xb7\xf6\xc9\xee\xb8\xe9\x18\x88\x92\xff\xe9\xee\x28\xc3\xf5\x1d\xf8\x86\x1a\x5f\x29\xe8\xfe\x77\x22\xac\x26\xc0\xe0\xaa\x04\xe9\xff\x4e\x64\xed\xd1\xbd\xb0\x31\x7e\xb9\x17\xaf\xfa\x4f\x0e\xb0\x41\x57\x9e\x5e\x1a\x1c\xb0\x58\x8d\x19\x83\x86\x28\x14\xb2\xf7\x51\x17\x6f\xf4\x59\xe8\xf0\x8a\x86\x0d\xa8\x40\x90\xfb\x41\x28\xf7\xda\x52\x1d\x6c\xe9\xb5\x5d\xfe\x5b\xef\x8a\x27\x52\x65\x10\x40\x53\x14\xd9\xd2\x0a\x1a\x7d\x8b\x3d\x38\x82\x6b\x14\x1b\xfc\x1f\x35\x22\x05\x43\x5b\x9d\x2c\x05\x43\x9d\xc2\xf6\x03\x04\xf2\xb9\x6a\x5d\x54\xbd\x5a\x4e\xc5\xbe\x1e\xc4\x71\x7a\xf3\x63\xb2\x58\x72\x29\x4f\xd9\x27\x1d\x21\x3f\xfd\x28\xe6\xee\x3a\x88\x73\x3b\x43\x08\x93\xf6\x11\xc8\x7c\x0b\x79\x48\x9f\x97\x00\xf2\xc5\x32\xe6\x51\xa8\xcf\x61\xfa\xe3\x3d\x5b\x04\xe0\x12\xc3\x47\x04\x6d\x36\x6e\xe0\x05\x64\xec\x05\x15\x2d\xbe\x74\x61\x52\xc4\xf3\x2e\xb4\x8c\xbf\xfc\xff\xe1\xdd\x43\xcd\x23\xc6\x25\x9b\x2f\x84\x4c\x9e\xce\xa3\x64\x99\xb7\xfe\x92\xa6\x3c\xe7\x59\xb0\x78\xf2\x6d\xde\xca\xd8\xbf\x97\x51\xc6\x72\x55\xd9\x53\x7f\xcd\xcb\xde\x28\x19\xc7\xcb\x90\x85\x2d\x19\x25\xa3\xb5\x0b\xd6\xff\x2f\xb8\x0e\xde\xc3\x53\x6a\x4f\x3e\x3d\xaa\x2b\xce\x54\x2b\x93\xc4\xfb\x05\xac\x08\xb5\xfd\x43\x0b\xe1\x61\x77\x64\x59\x43\x80\x57\x8d\x61\x77\x74\x7a\xe2\x38\x7c\xd8\x1b\x9d\x7e\xbf\x5e\xf7\x54\x24\x23\xc7\xf9\x1e\x7e\xf5\x46\x22\xef\x64\x74\xda\x5b\xaf\x45\xfa\x19\x7d\xf2\xc0\xce\x07\xbc\x15\xb3\x20\xe7\xba\xf7\xd7\x8f\xbd\xae\xd7\x6d\x5d\x2d\x45\x7a\x9e\xb7\xf8\x2c\x48\x5a\xd7\x4f\x44\x22\xc2\x1b\x21\x32\x34\x8d\xff\x1c\xe8\xf0\x81\x28\xc8\xca\xde\x2f\xb9\xd7\xba\xd0\x3f\x7f\x85\x59\x90\x5a\x3f\x05\x5c\xdd\x47\x56\x86\x39\x11\xc3\x4c\x4f\x1c\x27\x11\xe3\xdc\x7b\xbe\x5e\x27\x30\x98\x8f\xbf\x76\x30\x4d\x97\x5a\xd7\x27\x5e\xef\x79\x7d\x40\x1f\xcb\x01\xb5\x34\x95\xda\x58\xac\xc9\x05\xcf\xfb\xd5\xfc\x2a\x8d\x1d\x07\xe5\xf0\xa3\x96\xe3\x45\x5c\x7a\x94\x19\x34\xbd\x4e\xd1\x37\x7e\x8d\x8e\x38\x1c\x67\x57\x83\x0c\x9c\x5d\xf1\x6c\x09\x61\x4f\x29\x35\xe9\x47\xfa\x77\xa1\xf7\x1d\x68\xec\xfc\xe2\x8e\x91\xef\xf2\x5f\xf6\xdf\xe9\x8b\x53\x0d\x8c\xc1\x5b\x79\x47\xd4\x5a\x72\xc7\x61\x0d\x41\xcc\x99\x0c\x62\xce\x37\x1b\xd7\x72\x6b\x60\x39\x64\x72\x4b\x4e\x0c\xf8\x16\x27\x03\x2f\xc0\x63\x4e\x6b\x1c\xc4\x71\x2b\x68\x8d\xe3\x20\xcf\x5b\x41\xde\x0a\x0c\x36\x48\xba\x58\x2b\xb9\x6f\xd4\x76\x7c\x75\x05\x77\x44\xe5\x5e\x6d\xa7\x05\x3b\xb5\xda\x95\xd2\xa3\x6f\x41\x6d\x2d\xd5\xda\x69\x5b\x2b\xb3\x37\x64\x5c\xd3\x65\xb7\x23\x5b\x87\xdd\x8e\xca\xba\x6b\xf9\x5d\xd6\x59\xb7\xa3\xb2\xae\xba\x1d\x6d\xd1\x51\xb7\xa3\xb6\xa5\x94\xae\xea\xa4\xdb\x51\x59\x17\xdd\x8e\x6c\x1d\x74\x3b\xb2\x75\xcf\xed\x68\x43\xe2\xff\x93\x74\xce\xcb\x3f\x74\xce\x35\x9d\xf3\xe2\x20\x9d\xb3\x56\x37\x6f\xc8\xec\xbf\x47\xe7\x9c\xfd\xa1\x73\xfe\x43\xe7\xfc\x87\xce\xf9\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\x0b\xa6\xf3\x0f\x9d\xf3\x1f\x3a\xe7\x3f\x74\xce\x7f\xe8\x9c\xff\xd0\x39\xff\x1f\xaa\x73\xee\x57\xf5\x3e\x96\xbe\xea\x4a\xea\x71\x12\x69\xa0\x7f\xa5\xdc\xe2\x7c\x4a\x17\x22\x57\x79\xd9\xf9\x34\x65\xfc\xad\x4c\x70\xb9\x2e\xc1\x62\x10\xc0\x28\x23\x16\xe5\x9b\xb8\xe7\xf2\x53\x1e\x1c\x39\x0b\x8b\x74\xdd\x01\xcb\xf5\xeb\x32\xc9\x19\x2f\xe2\xa5\x68\xf3\x53\x13\xb2\x5c\x0e\xb3\xf9\x5c\xe6\xec\xe4\x09\x0c\x88\xed\xd0\x76\xcc\x97\x41\x2c\xdb\x2b\x39\x99\xcd\x72\xa6\x8e\xaf\x56\xb2\x8a\x46\xfa\x0f\x25\x5c\x5a\x39\x17\x51\xa2\x53\xdf\x80\xb1\x31\x55\x68\x7d\x8a\x04\x5d\x68\x0d\xda\x95\x65\x12\x2a\x72\xaa\xef\x62\x95\x57\x27\x3d\x48\xa0\xe1\x71\x11\x0f\xb2\x29\xe3\xda\x6a\xb2\x5f\x2e\x22\x56\x80\xca\x91\xbb\x9a\x0c\x06\x52\x2a\xa4\x82\x16\x1c\xa9\x20\x39\x45\x29\x94\xb0\x20\x63\xb9\x34\x4e\x1e\x94\x01\xcb\xe5\xa6\x40\xfb\xcc\x35\x2e\x9a\x1a\xa7\x6c\xd8\x95\x9e\x72\xec\xd5\x50\x9d\xba\x6a\xbe\xe6\x4b\xe0\xd5\x98\xb3\x24\x74\xf5\x64\x6a\x3a\x2a\x5a\x08\x2e\x53\x4d\x4a\x1a\x8f\x54\x93\x96\x5d\x03\x9b\x61\x8f\xb8\x22\x23\x29\x62\x15\x43\x60\xba\xaf\xd8\x85\x8c\x83\x62\x8d\xa3\xe3\x94\xcb\x79\xd7\x41\x6c\x5c\x5f\xeb\xb7\xdc\xb2\x99\x9c\xf1\x7f\x04\xf1\x52\x71\x82\x4f\x40\x37\xb0\x68\x5f\x1a\xf6\x50\x07\x81\x49\x57\x49\x18\x1a\x6b\xcf\x52\x69\x38\x4e\x23\xaa\x45\x9c\xa3\x02\x68\xc0\x79\xe6\x22\x78\x77\x30\x4b\xe3\x50\x70\x44\xd5\xa7\x2a\x62\x0d\xed\x90\x6e\x65\xd1\x2a\x5f\xe7\x0a\x82\x14\xa3\x37\xa4\x44\xb2\x52\xbf\x58\x0b\x9b\x5f\x66\x68\x9f\x26\x51\x1c\x43\xff\x75\x03\x22\x41\xf0\x2c\x08\xa8\x50\x02\xa8\xd1\xac\x46\x6d\x2d\x82\xca\xc0\x2a\x1f\x88\x95\xe6\xdb\xe4\xc6\x47\xf2\xc5\xad\xd8\x5d\xcb\xee\xd9\x4d\x77\xca\x7c\xce\x71\x7a\x7a\x44\x25\x08\x3d\x91\x6e\x46\xdd\xac\x71\xdd\x81\x2e\x15\xb7\x11\x41\x85\x3f\x36\xf3\xd8\xbd\xc6\x3e\xa0\x20\x41\x56\x59\x44\x2a\x09\xc7\xe4\x63\xfe\xe8\xcf\xe0\xd7\xdb\x5e\x3b\x45\xc0\xeb\x1e\x6e\x64\x83\x76\x01\xec\xbb\x0d\xdc\xef\x5e\x36\xba\x65\x01\x54\x49\x34\x33\xb1\x52\x44\x0a\xcf\xa2\xe9\x94\x65\x66\x61\x54\x78\xb8\x3d\x4c\x44\xd7\xfc\x94\xa4\x3c\x9a\xac\x5e\x5d\x8b\x25\x7e\x27\x66\xd9\xbf\xf2\xe0\xcb\x93\xea\x71\xa2\x77\x9d\x34\x06\x15\x9d\x9f\x6c\x14\x72\xb2\xbe\xa4\x31\xe9\xf5\x9f\xd1\x42\x78\x51\xea\xbf\xf2\x1c\xcb\x44\xdd\xf4\x2c\xc8\x2f\x95\xba\xd2\xc5\x8e\xc3\x3c\xfe\xa5\x52\x5e\x6b\x33\x31\x29\xa8\x41\xe7\xe9\xf3\x98\xa8\x38\x07\xc5\x49\xee\xc2\x2b\xf4\x2c\x5d\x26\xa1\x5b\x24\xe2\xe3\xe6\x8a\xf8\xd1\x96\x74\x2f\x07\x45\x49\xee\x9a\x25\x17\xe5\xff\x10\x07\x78\xf0\x64\xa6\x23\x06\x18\xca\x2e\xef\x8d\x66\x16\x21\x47\x93\x1f\xfa\xf9\xe7\x9f\x7f\xee\x5c\x5c\x74\x5e\xbe\x44\x35\x46\x6b\x06\x8d\xec\x5e\x11\xf5\xd5\x70\xd6\x2b\xee\xa0\x52\xda\xed\xa7\xa7\xf5\x32\xfd\xb4\xdd\xc6\x59\x9b\x22\xe5\xbe\x4f\xe1\x9d\x8e\x76\x2c\x8d\x32\x1e\x75\x79\xa3\x9f\xd1\xac\x69\x99\xc8\x18\xb1\x19\x2d\x0f\xd0\xf6\x86\xfa\xbf\x13\x95\xab\xd5\xa7\x44\x0b\x43\xb3\x07\x2d\x81\x4a\x9f\xf4\x94\x59\xcb\x42\xf6\xbe\x3c\x76\x96\xfa\x67\x70\x48\x6b\xcc\x06\xec\xef\x35\x4c\x08\xb5\x2d\x5e\x33\xd0\xce\x62\xf7\x98\x06\xbc\xd7\x00\x6f\x47\x1c\x6e\xaf\x1a\xf0\xae\xec\x1e\xf2\x9e\xad\xd8\x3b\x0a\xcf\x0c\x2e\xf7\xa4\xd4\x84\x4b\x3b\x2f\xc9\x68\x32\x68\xdc\xaa\x13\x0c\x4a\xb9\xd2\x69\xab\xd8\x44\xc5\xb4\x7b\x39\x4f\x17\x3f\xce\xe7\x2c\x8c\x02\x0e\xf7\xa4\xc1\x54\x06\x98\xc2\xe4\xa8\x57\xc1\xac\x90\x7c\x4b\xd8\x59\x41\x76\x0a\x89\xe7\x6e\x43\x66\x84\x57\xfb\x66\xf1\xb2\x86\x17\xb4\x66\xfe\x32\x8f\x7f\xa9\x4a\x0c\x35\x6e\x67\x1e\xaa\x6e\xcb\x06\x0f\x74\xcd\x99\x15\xb4\xa2\xfc\x95\x3c\x5a\x54\xdd\x33\x36\x3e\xe1\x64\x05\x5b\x69\xbc\xdc\x35\xd0\x5a\xec\x76\xc1\xc6\x3c\x6f\x05\xad\x3c\x4a\xa6\x31\x6b\x8d\x67\x81\x38\x5e\xb3\x4c\x39\x93\x6f\x2d\xb4\xb7\x79\x84\x75\xc0\x72\xfd\x36\x70\xa5\x9f\xf6\x75\x0c\x57\xb7\xc9\xb1\x70\x03\xf4\x33\xc2\xf2\x45\xe0\xc5\xbe\x35\x2e\x74\x8d\xf0\x9e\x1a\xa5\x77\xd0\x45\xfd\x50\xd7\x9f\x21\x08\x38\x8d\x7e\x78\x18\x9c\x99\x86\x33\xdf\x17\xf3\xb9\xae\x91\xef\x5b\x23\xd7\x35\x02\x85\xeb\xf9\xc3\x70\x0d\x10\xae\x3c\xa9\x3c\xea\x6d\x9a\xc9\x7b\x5b\xe4\xb3\x82\xce\xa0\xeb\x4a\x2d\x62\xa7\xce\x1b\x53\x73\xd4\xb0\x8e\x5e\x56\x64\xd6\x6d\x0d\xad\x1a\x41\x5e\x34\xa6\x86\xb5\x86\x4a\x87\x94\xbd\x0e\x76\x98\x24\xf4\x6e\x53\x84\x83\x13\xfc\x4e\xd5\x77\x9c\xd2\xa7\x6d\x28\x21\xcd\x35\x1c\xe9\xa6\xa5\xe0\x22\x09\x29\xd5\x00\xc7\x7b\x2c\x18\xcf\xca\x02\x50\xdd\xc7\x4a\x26\x2d\x1c\x50\xdb\xf2\x7c\xe8\xf1\xf4\xc3\x62\xa1\x27\xb6\xcd\x4c\xfc\x51\x6b\x7b\x1d\x66\xa3\x41\x32\x64\x23\xf8\xe5\x4b\x8d\x47\x4b\x24\x6c\x30\xf8\x81\x2a\x8d\x8d\xc5\xe9\x4b\x7c\x83\x79\x22\x9f\x52\x5a\xde\xb1\x84\x04\x26\x25\x14\xf9\xd7\x8b\xf2\xf7\x10\x03\xc9\x53\x7b\x01\x5e\xaf\x8f\x74\x91\x23\x93\xaa\xa7\x49\x0f\xb2\xde\x77\x58\x75\xaa\x84\xa0\xf4\xa1\x72\x94\x61\xf8\x0e\xad\x90\x79\xbd\x0b\xf2\x15\xba\x7f\xa7\x92\x96\x17\x44\xee\x44\x3e\x2b\x14\x2d\x65\x91\x4c\xef\xee\xb5\x2d\x4c\x1c\xb3\x40\x97\x60\x23\x52\x3e\x54\x19\x3f\x56\x55\xf5\x03\x08\xa7\xf3\xe0\xd6\x6d\x56\x41\x10\x99\x1f\x25\xee\xe3\x46\xf5\x45\x9b\x99\x7d\x7a\x9b\x5e\xb1\x75\xd6\x0a\xa3\x6b\x84\x95\x12\xcf\x9b\x44\x31\x17\x1b\xb9\x55\xa4\x83\xda\xf1\xb0\x09\xfc\xc8\x2b\xcc\x37\xb0\x3a\x4e\x56\x7b\x1f\xe5\x3f\x26\x2f\xed\xeb\xfb\x06\x57\xc2\x47\xe6\xd0\x5b\x9c\x62\xed\x2a\xc3\x66\x99\x78\xd4\xd0\xd4\xab\xe4\xd0\x96\x6c\x53\x82\x03\x1a\x7a\x69\xeb\xe3\x0e\xeb\x13\x54\xb1\x9a\xfa\x61\x67\x57\x0e\x68\xc0\x56\x09\xde\x07\x1f\x0e\x27\xd4\xb6\xf7\x52\x7a\x6c\x4f\x1f\x5c\x70\x39\x92\xde\xf6\xe9\x71\x1c\x04\x56\x91\x89\x3e\x6e\xd4\xe6\xbc\x08\xe8\xd6\x04\xcc\x9e\x01\x0b\xd6\x51\x01\xcc\x9e\xd5\xdd\xb0\x94\xe9\x89\x60\xae\x51\xfe\x17\x30\x9e\x6c\x2e\x51\x44\x69\x6c\x04\x23\xcd\x56\x24\x98\xf3\x09\xd7\x61\x36\xab\x05\x76\x43\xa9\xdf\x64\x5b\xdd\xeb\xd4\x8f\xa7\xf5\xf2\x66\xc7\x15\x9c\x7f\xe5\xe2\x7d\xe6\x04\xa6\xdf\x71\xc4\xae\x2a\x5a\x5a\xaf\xd1\x5c\xff\xc8\xe1\x07\x6e\x9a\x27\xa8\xb5\xd7\x3c\xed\x03\xbf\x3e\x77\x7b\xc0\x6f\xd4\x7d\xef\x6c\x48\xef\x6f\x12\x5a\xd3\x6e\xd8\x0c\xd4\xda\x23\xe5\xe1\x1c\x88\x85\xdf\x30\x26\xb5\xdd\xc3\xae\xd4\xb2\x0c\x7b\x23\x13\x89\x30\xa3\x47\x5d\x71\x0a\xc0\x98\x64\xa6\x13\x1b\xbd\x16\x2b\xeb\xab\x7c\xf4\x68\xf2\x9e\x5e\x56\xf6\x19\x74\xcb\x15\x07\x99\x17\xe5\x4a\x97\xca\xc0\x85\x4e\x55\xc3\xca\x30\xf6\xd9\x4e\x18\x2e\xc3\xa4\x2a\xe2\x2b\x63\xc4\x86\xf0\xaa\xd2\x39\x25\x35\x21\x70\xd5\x8f\x54\xff\x88\xf4\x8f\x80\x0e\x47\x24\xa7\x77\x1b\x32\xa6\xcc\xbb\x99\x45\x63\xe9\x92\x0c\xdc\x23\x4c\x86\xe3\x11\x45\x0b\x44\x26\x78\x52\x71\x8c\xe0\x0a\xf2\x40\x0b\x31\x7f\x93\x61\x32\x72\x1c\x37\xd0\xee\x11\x88\x42\x9c\xbb\x09\xe9\x75\xf1\x11\xa5\x63\xc7\x71\xf3\x61\x32\xa2\x47\x5d\xe5\xb8\x0a\xc0\x57\x8f\xcb\xd2\x3c\x02\xd7\x08\x4a\xe7\x34\xa2\xd0\x14\xf3\xb3\xb1\xb6\xc4\x32\xa5\x89\x65\xbb\xae\x75\xc4\x94\xd2\xc0\xb8\x0a\x5f\x8a\x5e\x53\x9a\x0e\xd3\x22\xe4\x8d\x76\x93\x76\x24\x06\xd3\xa4\x9f\xf4\xb3\x33\xda\xed\x67\x9d\x0e\x06\x33\xd9\xe5\x30\x1d\x66\xa3\x51\x94\xb4\x72\x8c\xef\x22\x41\xcf\x32\xcc\x4b\x34\x71\xa5\x67\x9d\x6d\x98\xe9\x70\x30\xe0\xc0\xd2\xb8\x53\x82\x08\x74\x70\x9a\x2d\x1f\x62\x19\x04\x38\x66\x09\x7f\xa9\x42\x8f\xd7\xb6\x6b\x30\x5c\x2d\xd1\xc5\x64\xa8\xa6\x77\x44\x51\x86\x48\x68\x3e\x1d\xc7\x2d\x3e\xe8\x51\x8f\x3c\xac\x45\xe0\x70\x7f\x8b\xae\x59\x52\xd9\xb4\xcd\x51\xff\x6e\xa3\x62\x5c\x18\x47\x81\x6a\xa1\x97\x96\xb1\xbc\x6b\xcd\x1a\x35\xf4\xb8\xcf\x8a\x6d\x0d\x9c\xe9\x6f\xd9\xe8\x21\x22\x15\xc6\xe4\xe8\xc8\x76\x62\x9f\x14\xd1\x27\xaa\x62\x6f\x81\x7d\x65\x9f\xb6\xb0\xdf\x89\x76\x02\x92\x95\x68\xf8\xc0\x76\xed\xcb\x8f\x2d\xce\x57\x0d\xc1\xc8\xbe\xae\xd7\xe8\x75\xeb\xf5\x25\x22\x92\x9e\xfa\xb5\xd3\x9e\xe5\xae\xf2\xd8\xfd\x38\x1c\xfe\xcf\xc7\xe1\xe8\xd1\x08\xaf\xdd\x8f\x1f\xf1\xc0\x7d\x7d\xf9\x7e\xfd\xfa\x72\xfd\xfa\xf5\x40\xfc\x7f\x1d\xdf\xf5\xc8\x93\x0d\xde\x12\x79\x82\x17\x97\x46\x4a\x83\xfb\x12\xce\x43\x5e\x9c\x26\x53\x31\x2f\xb2\x45\xe0\x6a\x6c\x83\x71\xc3\xa5\x5c\x65\xf3\xb1\xcc\x4d\x07\xdb\xb3\xd4\x39\x06\xfb\x5a\x4f\x6e\x83\x34\xbb\x29\x03\x2f\x89\xdb\xf3\xeb\xea\xae\xe6\xf2\xd2\xa9\x4c\xad\x70\xed\x36\xf2\x90\x73\xf5\x69\x4f\xb5\x54\x2a\x5f\xc4\xc1\x1b\x7a\x8f\x06\xa3\xe3\x29\xdc\x3a\xd8\xba\x83\xd3\x1e\x69\x3a\xee\xea\x93\x45\xfd\xfa\xf2\x04\xd7\x2b\x5c\xec\xaa\xd0\x6b\xa8\x10\xee\xaa\xa0\x75\xe1\x87\x9e\x6a\x9a\x2a\xd9\x5a\x59\x7d\x0a\xac\xdc\x80\x69\x82\x23\xdd\x2a\x8f\x99\x32\xfe\x3a\xc8\xf9\x4f\xe2\x38\x13\xee\xd4\x15\x28\xc5\xe7\x4c\xdd\x6d\x97\x6b\x81\x97\x4d\xb7\x26\x4c\x37\x97\xdb\xdd\x84\xd9\x21\xca\xb0\xcc\xc6\xde\xb0\x35\xab\x40\xb5\x46\xc1\x68\x24\x08\xb6\x5e\x6b\xb7\x54\x83\xcc\xd5\xf7\x8e\xa5\x9b\x92\x41\xe6\xf1\x2f\x2e\xab\x2f\x09\xd2\x74\xd9\x52\x49\x34\xb6\x9a\x64\xcb\x4d\x8b\x9f\x7d\x35\xe8\x2d\xf7\x3b\x7c\xd7\xfd\x0e\x2f\x8f\x9d\x7a\xcd\xb1\x65\xd8\xe5\xf9\x57\x45\x31\x82\xa3\xae\x8a\xc0\xd8\x70\x09\x5a\x36\xdb\xac\xaa\x41\xc5\x90\x07\xd9\x74\x29\xa6\x29\xaf\x38\xaf\x2b\xa3\x5a\x86\x03\x5e\xf0\xb4\x37\x33\x4b\x87\xba\x45\x6f\x5a\xaa\xdb\x72\xb1\xa5\x3f\x55\x40\x4a\xfa\xd2\x5d\x2d\xd3\x8a\xfc\x97\x36\xe8\xad\xef\xe9\x58\x45\x9b\x5d\x6a\x4d\xba\xa0\x2f\x07\x00\x97\xdb\xd8\x96\x07\x3f\xfa\x5a\x1f\xcb\xf1\x52\x9f\x45\x77\x5a\xf9\x2c\x5d\xc6\x21\x04\x1a\x4d\x5a\xca\xb9\x1a\xee\xef\xb0\x21\xd0\xef\xde\x60\x5f\xbb\x4f\x2b\x06\xd7\xcf\x5a\xcb\x95\x0c\xd9\xc8\x71\xc4\xbf\x2e\xc7\x9b\xaa\x74\x52\x51\x20\xa9\x77\x4d\xe0\x16\xae\x4b\xee\x25\x84\xda\xc5\x76\xf3\x2d\xdd\xc0\xe6\x0b\xd2\x23\xdb\x3d\x77\x69\x78\xcb\xcd\x12\xbc\xee\x53\x0e\x2b\x1d\xa7\x41\x5f\xef\x38\x47\xa5\x23\x05\xc4\xb7\xb1\xe7\x0d\x54\x6f\xcd\xb3\x26\xef\xbf\xac\x59\xd2\x8f\x15\xd3\x84\xb5\xd2\x49\x6b\x08\x67\x07\x13\x18\x56\x3e\x06\x6c\xa5\x19\xc0\x1c\x19\x12\x35\x4c\xdb\xf0\x2c\x6b\x80\xea\x47\x97\xea\xad\x49\x43\xec\xe5\x83\xd6\xa4\xac\xbf\xc5\x23\xa5\x38\x6c\x36\xac\xd0\xf5\x1a\xe2\x7e\x6d\x1b\x18\xed\x1b\xdf\xbe\xe1\x90\x17\x1a\x69\xa6\xd7\xaa\x0f\xce\x0a\xad\xc1\x43\x6d\x56\x5d\xb4\xaa\x6b\xac\x6e\xb7\x64\x0e\xec\x15\x93\x97\x0a\x03\xac\x5d\x26\x1d\x3a\x38\x1a\xc2\x96\xe1\x69\xee\x7e\xc2\x6e\x24\xbb\xae\xf7\x7f\x3b\x83\x32\xb8\xb2\xea\x82\xab\xbd\x3a\x7a\x78\x77\x1a\x80\x1d\xd4\xb3\x86\xfa\x87\xf5\xb2\xa9\x37\x95\x0e\xdb\xc2\xeb\xc3\x7b\x6a\x43\x01\x6e\xdc\x93\x2c\xa0\xb2\xba\xc1\xf9\xe2\x16\x2a\xb6\x41\xd8\xbd\x4c\x5a\x81\xa8\x25\x68\xb9\x42\xc3\xb5\xee\x96\xfa\xd2\x20\x11\xec\x47\xc6\x61\xb3\xb6\xf8\xfe\x3d\x6a\x87\x8a\x72\x60\xf6\x8e\xea\xe6\x55\x2e\x57\x33\xda\xb2\x33\x61\x60\xf9\x1e\xad\x35\x58\x0d\x1c\x75\x1b\x36\xc9\x5d\xd3\x51\x02\xd8\x34\x1f\x3b\xa8\xae\x84\x8b\x1e\xf2\xd2\x29\xbb\x30\xd6\x6c\x52\xc2\xd6\xf1\xaf\xd0\x6c\xa3\x92\xfd\xd0\x09\xb2\xa1\xec\x98\x1f\xbb\x58\x75\x7a\xec\xbc\x5d\xb3\xb3\xbb\x73\x87\x4f\x8e\x0d\xef\xb0\xb9\x29\x61\xb2\xe7\xd4\xdc\x43\x5b\x35\x06\x5a\xd1\x21\x7f\x15\xff\xac\xea\xa3\x95\x99\x5a\x17\x97\xa4\xd9\x92\xc7\xec\x6d\xc6\x7a\x0d\x98\x6d\x9f\x8a\xbd\xd9\x56\x1d\xea\x7d\x13\xb2\x87\x9a\x1e\x14\x21\xe1\x72\xcc\xdc\x8a\xd8\x28\x3b\xe6\x72\x6a\x54\x95\x9c\xf4\xba\x18\x9f\x3d\x5b\xaf\xf9\x69\x77\xbd\x8e\xf2\x37\xc1\x1b\x97\xe3\x01\xf3\x65\x44\xd5\x22\x8a\x2a\x07\x7b\x35\x1d\x3a\x83\xe1\x0d\x26\xc3\x11\xf6\xf2\x34\xe3\x35\x33\xae\xe2\xad\xac\xd1\xa5\x37\x58\x07\x99\x48\xda\x9c\x76\xfb\xbc\xc9\x8e\x8b\xb7\xdb\x65\x8f\x03\x46\x31\x2f\x95\x61\x65\x31\x12\x1e\x66\xf4\x1b\xcc\xd5\xac\x77\x1b\xe4\x71\x0f\x54\xef\x30\x19\xe8\x32\x8b\x58\xd8\x7a\xdc\x6b\xc1\x43\xd5\x16\x4f\x5b\x93\x28\x09\x5b\x41\x4b\x46\x7c\x81\x6b\xe7\x7e\xd2\x6e\x6f\x76\x1c\xd8\xf9\x48\x08\x79\xbb\x68\x5a\x5d\xb6\x3c\x9c\x90\x15\x80\x41\x63\xaa\x16\x9e\xfd\xc6\xdc\x1d\x74\x0e\xd3\xbb\xb3\xc1\x66\x02\x6f\xf0\x4b\x2f\x04\xcf\x24\xbd\x41\x4a\x70\x97\xb2\x33\x7c\x35\x29\xfd\x31\x2e\x45\x08\xae\x4b\xcd\xfd\xea\x4d\x5e\xe3\xd2\x51\x48\xba\xb8\xf5\x02\x8e\x5b\x49\xca\x5b\x00\x0a\xe6\xad\x58\x33\xbe\x14\x56\x1f\x7e\xd7\x76\x6f\xfb\xe5\xf6\x5a\x51\xae\xfd\x9e\xd8\xe7\x43\x0d\x4d\xa0\xc3\x77\x18\xa6\xf5\x9b\xa7\x82\xf7\x2b\x9e\x37\xea\xab\x25\x69\xb7\xf1\x43\xd6\x61\xc9\xcc\x72\x98\x8c\xcc\x9d\x21\xbb\xcf\x58\xbb\xb8\x46\x54\x58\x1b\x6b\x02\x73\xed\x68\xf4\x6b\x96\x95\xfd\x96\xe7\x86\x35\xb3\x54\xf5\xea\x70\xe7\xda\x92\x83\xfa\x15\x6b\x4b\x02\xa8\xae\x2d\x99\xba\x6d\x6d\xc9\xdc\x07\xae\x2d\x85\xf1\x7f\xf7\xda\x92\x48\x3e\x7c\x6d\xed\x79\x01\x7d\x6f\xf3\xf5\xa5\x15\x08\x68\x95\x95\xa5\xbc\x34\x1c\xb8\xb2\xd4\x44\xfc\xbe\x2b\x4b\x31\x9a\xfb\x97\x96\xb9\xe7\xaf\x2f\x2d\xcd\xac\x76\xae\x2d\xf3\x5e\xf9\x21\xcb\xca\x7a\x85\xf1\x15\xf2\x57\x01\x64\xb0\x35\x67\xcb\x12\xb3\x4a\xec\x7a\x41\x61\xe3\x09\x91\xb5\xb7\xac\x20\x46\x61\x0d\x49\x6d\xb3\x5e\x43\xa0\xbd\xa9\xae\x1f\xbf\x92\xc0\x7e\x9d\x05\x65\x21\x7a\xc0\xa2\xaa\x8a\x3b\x7b\x01\x57\xc0\xf2\x9c\x85\x62\xbd\xa8\x70\x56\xad\x60\x3c\x4e\xb3\x50\x1c\xf8\x79\xda\x32\x6f\xd1\x5a\x39\xe3\xcb\x85\x94\x77\xe0\xd2\x33\xaf\x9f\xc7\xac\x31\xe6\x64\xfb\x73\x1d\x4d\xd0\xe5\xc7\x3a\xeb\x75\xa3\x25\x37\xc4\xd8\x2c\x12\xca\xaf\x8f\x0e\x7a\x22\x54\x26\x5c\xa9\xa6\x7f\x38\xcd\xca\xfa\x30\xf6\x99\x7d\xf3\xb7\x8d\x53\x69\x97\x2f\x2d\xf9\x43\xcc\x5c\x1b\x89\x61\x17\x93\x1b\xa7\x41\xc8\xc2\xd6\x24\x4b\xe7\x5a\x9f\x28\x8b\xe5\x47\xb5\x51\x56\x88\xb3\xfe\x5e\x42\x71\x45\xbe\xdd\xf5\xf2\xa4\xca\x3e\xee\x7f\xa5\xb2\x8f\xea\xce\xb6\xca\xab\xbc\xa3\xb5\xee\x25\x2a\x93\xa3\x19\xd0\xc3\xa7\x47\x43\xe8\xb3\xe2\x08\xc3\xc4\x11\x86\xb8\xf2\xe8\x02\x17\xb2\xa7\x10\xdc\x96\x15\x37\x7e\xd5\xea\x55\x2d\x56\xc1\xcd\x1b\x2e\xae\x86\xe0\x80\x48\x3b\x24\x92\xfe\x89\x10\x41\x33\x70\x8b\x82\xe4\x93\x1b\x34\xea\x1f\xd4\x8f\xa2\xc1\x6d\xd7\x2a\x8d\xfa\xef\x66\x1a\x2c\x80\x35\x5e\xb3\xa4\x8d\x06\xea\x96\x22\xb1\xc4\x2a\xe1\xd4\x57\x98\x5c\xb3\x4a\xf8\xac\x83\x30\xa8\x36\xdb\x4a\x27\xb0\x45\xcb\x98\x63\xa4\x85\x6a\x7b\xb2\x35\x11\x95\x29\xd2\x0e\x97\x1e\x4e\x3b\x1a\xc2\x61\x17\x59\xba\xd6\xbd\x37\x58\x35\x19\xc8\x60\x5c\x88\x82\x47\xdd\xfe\x96\x32\xec\x41\x0b\x0a\xfc\x46\x3d\xe8\x1e\xac\xa6\xa7\x02\x50\x07\x5f\x85\x41\x2d\x6b\x68\x8a\xa9\xe6\xa9\xba\xff\x7a\x5b\xbb\xff\x6a\x68\x98\xf0\x87\x71\x14\xed\x58\xea\xd7\x19\x03\x0d\xed\xe0\x61\xd0\x15\xbf\x6e\x24\x34\x94\x87\x0e\x86\xb9\x8d\x7e\xf8\x1a\x31\x20\x0e\x5b\x24\xa6\xda\x81\xf7\xbc\x05\xc6\x95\xd5\x5e\xb8\x54\xfa\x8a\xbd\xc2\xc0\x38\xac\x33\x45\xbd\x03\x7b\x63\x21\xfd\xb0\xe5\xac\x7d\x42\x3d\xbc\xcf\x1a\xc2\x41\xf7\x44\xba\xd2\x7d\x97\x43\xd1\x44\xea\x04\xaf\x3c\x6d\xd5\x62\x9b\x24\xdd\x0b\x7b\xeb\xcd\xab\x8b\xda\x36\xc8\x62\x77\x68\x23\xdc\x92\x7e\x41\xab\x43\x6d\x46\x8a\xdd\x63\xa2\xd3\x8c\x6b\xa7\xb7\xc5\x29\x82\x16\x18\xf4\xa3\x87\xea\xb9\xa8\xe4\xc6\xeb\x2b\xb6\x22\x1b\xcc\x81\xfb\x91\x5d\x75\x17\xbf\x31\x04\xdb\x3c\x82\xe5\x9e\xb0\x9d\xa7\x41\xe5\x80\xec\xd7\x61\xb2\x0a\xd8\xc1\x3c\x56\xd5\xdb\x93\xc5\x4a\x7b\xea\x26\x2e\xab\xe0\x08\x26\xdb\x30\xea\x8d\x65\x3d\xe3\x78\x6d\x27\x6a\x45\xb1\xfb\x45\x85\x83\x9a\x06\x37\x6f\xf7\x37\x2d\x1d\x28\xfe\xda\x4d\xa7\xf9\x16\x4a\xac\x15\xdb\x87\x59\x1e\xc8\x11\xb5\xbf\xb9\x87\x2f\x35\x0d\xe1\xb0\x55\xa6\x6b\x1d\xb8\x03\x18\x74\x59\xd5\xea\xc3\xb8\xca\xfb\x1a\xd3\x0f\x03\xe4\xb0\xce\x58\x15\x0f\xec\x8f\x8d\x77\xa5\x4b\xf2\x74\xff\x15\xc6\x65\x50\xff\x40\xa3\x32\xa8\x73\xa8\x2d\x99\x44\xb4\x7a\x9c\x10\x6b\xa5\xe6\x26\xa4\x6c\xdd\x53\xa3\x45\x69\xb6\xfe\x35\xb4\x28\x21\xd4\xa8\x46\x01\xae\x1a\x93\xb0\xab\x65\xed\xac\xbc\xff\x68\x41\xf5\x03\x07\x4b\x36\x59\xc1\xa3\xea\xe8\xe9\xe1\x03\x50\x85\x74\xd8\xf4\x57\x6b\x1f\xd8\xb7\x5a\x37\x58\x9d\xd7\x28\xbd\xed\xd7\xb1\x1b\x05\xe4\x70\x8e\xa3\x2a\x3e\x80\xe9\x68\xbc\x6b\xe6\x48\xfa\x11\x24\xf4\xfb\x6b\xae\xd2\x4b\x80\x0e\x34\x43\x2a\xd5\x3d\xd4\x04\xa9\xdc\x83\x4a\x07\x77\x3c\x54\x3a\xa8\x7f\x65\x38\xd0\x3d\xf3\xc0\xe6\xde\x0e\x56\x54\xc2\xd8\xb6\xff\xcc\x2d\x2f\xf0\xfd\x5d\x6d\xd6\xa6\xae\xe9\xe1\xd7\xd7\x9b\x13\x95\xc0\xed\x61\x56\x54\x2a\xbf\xcd\xbc\xa8\x54\x68\x1f\x33\xa3\x72\xa7\x7e\x45\x73\xa3\x12\xe0\x87\x99\x1d\x95\x71\xe3\xbb\xaf\x49\x9a\x5f\xd1\x3e\x74\x72\x00\xcc\x1e\x93\x02\xe5\xb6\x4d\x06\x64\xee\x33\x09\x12\xe9\x5f\x71\xf0\xe5\x1b\xc9\x83\xcd\x57\x4a\xe8\x68\x6d\x73\xe9\x59\xd2\x56\x73\xaf\x4a\x17\x1e\x68\x7e\xb2\xf3\xda\xcf\x98\x9f\x64\xbb\xcd\x4f\x92\x11\xf8\x5c\xad\x9b\x9f\x24\x23\xcb\xd7\x2c\x39\x79\x42\x29\xcd\x4a\xe6\x27\x27\x4f\x76\x9a\x9f\x64\xbb\xcd\x4f\x92\x11\x49\x76\x9b\x9f\xb0\xc6\x87\xd8\x0f\x34\x77\xbb\x8f\x44\xed\x62\x5b\xcc\xdd\xee\x25\xd0\xe6\xc9\xfd\x6a\x73\xb7\x87\x91\x67\x09\x99\x3d\xa9\x73\xcb\x0a\xfb\x83\x3c\x9b\xc8\xd3\x5c\x5d\x1f\xbc\x79\x57\x5d\x57\x34\x5d\x14\x1b\xe8\x95\x47\x56\x75\x37\xb6\x85\xb3\x47\x49\x60\xbf\xf2\xf3\x03\x8d\xc8\xce\x27\x08\xf7\x3d\x3e\x28\x3b\xaa\x6c\x7a\x6e\x60\x8a\x7d\x68\x1c\xec\xf2\xcb\x8d\x87\x9f\x2d\xca\x70\x1e\x22\x88\x17\x48\x54\x04\x9f\xfa\x73\x91\xaf\x30\xee\xa9\xbb\x71\x7b\xa8\x23\xa8\x3a\xa8\x03\x3d\x42\xdd\x87\x99\x18\x07\xee\x5e\x11\x78\x86\x32\xbc\xfb\xcc\x56\x3e\x7a\x73\x7e\xf1\x0a\x91\x29\x6b\x70\xf9\xdb\x4a\x37\x1b\x22\x4b\x41\xe8\x9d\xbf\xbf\xfa\x79\x4b\xc9\x6a\x7c\x20\x53\xef\xd5\x3f\x5e\xbd\xb9\xdc\x51\xb1\x15\x95\x9b\x38\xff\xe9\xc7\x5d\xcd\x14\xd1\x7e\x8a\x6a\x01\x67\xf0\xae\x30\x03\x0d\xec\xb6\x76\x62\x53\xc1\x28\x6b\xb7\x15\x5d\x14\xd8\x5f\xb3\x84\x6f\x2b\x36\x36\xc5\x64\xdc\x86\x34\xdb\x56\x32\x28\x90\xd5\xf1\x16\x9a\x0b\xce\x36\x24\xb7\x33\x18\xbe\x9b\x51\x66\x6a\xbf\x88\x83\x3c\x7f\x13\xcc\xd9\xb6\xfa\xf9\x66\x33\xc2\xe4\x6a\xe3\xe2\x8d\x2b\xc3\xb6\x11\x15\x80\xcd\x8a\x27\xc6\x75\x58\x28\xee\x4d\x92\x61\xe6\x09\x02\x18\x91\x88\x0e\x11\x4f\x17\x88\xa0\xab\x94\xf3\x74\x8e\x88\x8c\xd9\x30\x22\x01\x1d\xaa\xf8\x40\x3a\x26\x90\xce\xc9\xe9\xb0\x88\x20\x51\xae\x3d\x22\xe3\xda\x35\x77\x42\x59\xc9\x97\x2f\xc2\xc6\x69\x82\x7e\xb2\x99\xac\xd7\xe0\xd1\x49\xfa\x74\x9d\x65\x6c\x82\xf0\x7a\x8d\x10\x49\xe8\xf1\xff\xfc\x69\x18\x74\xbe\x8c\x8e\x23\x8f\xb3\x9c\xbb\x09\x1e\x24\xe0\xad\x0e\xc3\x2b\x33\x37\xa5\x22\xcd\x78\xa6\x4d\x7d\x37\x95\xad\x65\x9e\x26\x5e\xbc\x5e\x73\x4b\xaa\x48\xb5\x03\x2a\x69\xc9\x85\xd5\x27\x26\x29\xde\x90\xb8\x40\x3f\xb5\x3c\x3e\x8f\x4b\x1e\x9f\xc7\xd2\x6e\x27\xab\xbf\x7f\x3b\xb2\x99\xda\x3b\x36\x61\x19\x4b\xc6\xe6\x2a\x6f\x16\xe5\xad\x59\x90\x27\xdf\x0a\xce\xcc\x92\x56\x94\x44\x3c\x0a\xe2\x28\x67\x61\xab\xd3\xca\x97\x0b\x96\xb9\xb8\x54\x62\x1c\xc4\x31\x0b\x91\x76\x84\x7e\xc4\xd7\x6b\xa4\x5e\xfd\x59\x2a\x56\xdb\x67\x83\x95\x3c\x60\x3e\xdf\x48\x8c\xd3\xc2\x03\x02\x11\xb8\x1a\xcf\xea\x99\xb4\xbf\x70\x31\xc9\x6a\x91\xce\x4c\x84\xc5\x26\xe0\x85\x5b\xbd\x66\xa6\xf6\x5e\xf4\x46\xf0\xb1\x8c\xe5\xb9\x18\x42\xd8\x90\x58\xc4\x67\x2c\x13\xfb\x92\xa8\x2d\x76\xa1\x22\x96\x19\x01\xc3\x16\xd4\xd6\x2d\xe0\x3e\x2b\x78\x37\x55\xaf\xff\xc7\x19\x03\xd7\x05\x8e\x63\x07\x5d\xbb\xb3\xa2\xd2\xf9\x77\x70\x2b\xe1\x33\x52\x44\x86\xf3\x8f\x7a\x44\x87\x7d\x93\x21\x96\x8a\x10\x71\xfe\x51\x77\xb3\xc1\x84\x3b\x8e\xab\xda\xc8\x19\xff\x49\x83\x7e\x3b\x19\x34\xa6\xc2\xe0\xf8\xcc\xfb\xf4\x09\xb0\xf8\xf4\x89\x72\xbc\x71\xc7\x24\xc5\x64\x5c\xf5\x46\x40\x2b\x2e\x55\x80\x5b\x6b\x3f\x5d\xb3\x20\x87\xf5\xad\x1c\x44\x76\xa6\x59\xba\x5c\x20\x5c\xf6\x56\x50\x76\x4b\x6d\x69\x2e\xa4\xa2\x1c\xe1\x3e\xbc\x76\x2e\xb9\x67\x2e\x7c\x82\x37\xc0\xb8\x2f\xcc\x9b\x92\xaf\x0b\x18\x82\x1b\x8d\x2b\x4f\xbb\x0b\x16\x7c\xc9\xe6\x8b\xb8\xf2\x78\x5c\xe1\xef\xa2\x53\x3e\x63\x41\x78\x86\xb0\x17\x2c\x16\x70\x69\x22\xd2\xb2\x6a\xc2\x0c\x12\xc2\x50\x8d\xc6\x22\x63\xd7\x22\x01\x38\x82\xe5\xc2\x1e\x11\xa4\x83\x4e\x95\x01\xe4\x8b\x20\x29\x81\x68\xb0\x05\xf0\x74\x55\x8c\x77\x37\x2e\xbd\x7b\x49\x4f\x8b\xdb\xb0\x80\x32\xef\xcb\x45\xc6\x69\x2c\xf0\x40\x64\xc7\x8d\xd8\x00\x3d\x43\x3e\x7a\x8a\x76\xa3\x90\xb0\x5b\xbe\xa5\x65\x9d\x75\x60\xdf\x45\x35\x8c\x31\x26\x89\x9c\x95\xab\x34\x5c\xdd\x3b\x2b\x72\xde\x0e\xe8\xdb\x77\xc8\x47\xcf\x11\x36\x1c\x66\x28\xc0\x84\xd1\x75\xb9\x77\x96\x0b\x35\x88\x51\x54\x6e\x54\x2c\xcb\x72\x79\x48\x6a\xc1\xbf\x9d\x7c\x5e\x14\x67\xe5\x8a\xaa\x4b\x58\xf0\xf6\xdd\xad\xaa\x08\x70\x7b\xb5\xdb\x19\xa7\x49\xc8\x92\x5c\x30\x62\xd3\xb0\x16\xe9\x4d\x4a\x62\x52\xee\x6f\x5d\x86\x9d\xfb\x0f\x35\xae\x63\xdd\xfd\x36\xcd\x8f\xea\x7c\xe2\x32\x9a\x6b\x51\x2d\x88\x92\x7b\x78\x85\xa0\x40\x4d\xa1\xf0\x3b\x2b\x7e\xf7\x77\x78\xc9\x04\xbf\x3e\x75\xca\x2d\x12\x02\x43\xc9\x77\x42\xc0\xf0\xd1\x9f\x20\xca\x21\x9c\xb8\x7d\xd4\xe9\x21\xc2\x23\x1e\x33\xbf\xd9\x70\xc6\x2b\x85\x38\xdb\xd8\xe3\x74\xc5\x93\x2d\x0b\xb5\x54\xe7\x21\xec\x6a\xb9\x90\x0b\x76\x67\xc7\x6a\x90\x50\xc1\xca\x3b\x60\x4a\xa8\xfb\x2d\xd1\x13\xb9\x1d\xc3\xd9\x91\x0f\xe6\x86\xf9\x3d\xdd\xd7\x61\xdf\x36\xcd\x3d\xcd\x67\xe9\x8d\xea\x24\xc6\x24\xfb\x2d\x27\xa2\x14\x4c\x6e\xcf\x89\x28\xd5\x79\xc8\x44\x84\xe9\x4d\x82\xb1\x71\x19\x59\xf1\xc5\x6a\x6c\xe5\xf7\x22\x49\x83\x6f\xae\xcf\x67\x68\xcb\x1c\x37\x95\xf4\x66\x7c\x1e\xbb\xc8\x47\x5b\xc6\xb9\x11\x3a\x26\xbf\xcf\xda\x90\x21\xf7\x0e\x5d\x1d\xb2\xd6\x7f\x66\x7d\x28\x1b\xdb\x7b\x56\x88\x72\x7e\xbf\xc7\x1a\x29\x46\x60\xcb\x2a\x31\x9d\xfd\xdd\xd6\xc9\x41\x93\x52\xa9\xf5\x2b\xaf\x95\xbc\x79\xad\xcc\xff\x6f\x5c\x2b\x32\x7e\xe4\xa1\x6b\x45\xd6\xfa\xcf\xac\x15\x19\xc8\xe1\xbe\xb5\xa2\xc2\x3d\xec\xb1\x56\x8a\x11\xd8\xb2\x56\x4c\x67\x7f\xb7\xb5\x72\xd0\xa4\x54\x6a\xfd\x0a\x6b\xa5\x70\x8c\xb6\x5e\x7f\xe5\x7a\x28\x12\xe4\x19\xb1\x5c\xfd\x8a\x27\xad\x2b\x9e\x74\x16\x59\x34\x0f\xb2\x55\x65\x4e\x55\x0f\xfd\x72\xb4\xb0\x43\x06\xd4\xae\xb8\xd9\x36\x7d\x5b\x96\x5f\xa3\xfc\x6a\x91\xa1\x89\x7f\xf6\x40\xf1\x75\xc8\x48\x42\xb2\x11\xc6\xbb\x24\xd5\xdd\x52\xea\x2e\xf4\x66\x75\x11\x63\x1f\xec\xb4\xd0\xbb\x0b\xf4\xbc\x89\x27\xef\x07\x3c\xbb\x17\x78\xde\x44\xc4\xfb\x01\x4f\x69\xe1\x17\xae\x59\xd8\x77\xf1\x68\xb7\xf0\x9e\xca\xe7\xff\x6c\x9b\x80\x95\x1a\x57\xa8\xcd\x9b\x8a\xca\xcf\x30\x49\x1b\xa6\x55\x06\xc0\xad\xcf\xe5\x70\x54\xbf\x95\xab\x59\x5c\x16\xbe\x09\x1e\xc6\x79\x6a\x6b\x0a\x1e\xf9\xdc\xb3\x7c\xc2\x60\xb5\x39\x9c\x9d\x40\x3d\x60\x27\x95\xcb\xbf\xc2\x7e\x5c\xbf\xba\x52\xa1\x01\x5c\x6c\x25\xa8\x30\x55\x4a\x6b\x5b\xf1\x74\xdb\x57\x41\xd4\x6b\x8e\x79\xb5\xc1\xf4\xc0\x4d\xaa\x61\x34\x74\x7f\x8a\x68\xc7\x24\xa3\x8d\x7c\x30\xe0\x0c\xfb\xf7\x01\x10\xf8\x6d\x01\x20\x70\x03\x9f\xaa\xbf\xe6\x44\x01\x0f\x53\x81\xc1\xe5\x7c\x25\xf7\x4c\x4a\x26\x06\x7f\xd3\x78\x61\x54\x33\xa7\xfd\x95\xe9\x0a\xcc\x0e\xef\xa1\x2b\x28\xf3\x00\xba\x82\x7a\x96\x48\xb7\xd5\x9c\xf7\x57\xef\x53\x9a\xb3\x7b\xfb\x94\xe6\xec\x41\x7d\x4a\x73\x06\x7d\x2a\xe9\x4e\x11\xf2\x0f\xdd\x50\xf6\xd2\xa6\x89\xa6\x1a\x38\xd3\x61\xdb\xcc\x55\x9a\xf2\x9c\x67\xc1\xa2\x53\xd6\xd8\x76\xa4\xed\x73\x2b\xcc\xd2\x85\x10\x29\x3a\x73\x96\x2c\xd1\xd6\x2d\xa5\x14\x3b\x55\x23\xac\x19\x78\x5d\xab\xeb\xee\xb3\x7f\x34\x40\xaa\xef\xa6\x70\xcb\x02\x90\x96\x71\x19\x50\x1c\xe5\xbc\xb3\x4c\x72\xbe\x82\xfb\x0e\x12\x41\xa9\x38\xda\xa5\x97\x6d\x6f\x79\x15\x37\x40\xfa\x45\x72\x9a\x28\x15\x37\xf2\x91\xad\x6f\x35\x18\xca\x8d\xc1\xc5\x15\xd5\x52\xd9\xc0\x57\x10\x75\xc6\xe6\xe9\x35\xd3\xe3\x57\x19\xe6\x8a\xec\x26\xca\x17\x38\x2f\x73\xc6\x6f\x58\xc2\x57\x13\x50\xc5\x6c\xd9\xbf\x8e\x76\xc2\xb8\x89\x20\xbe\x61\xf5\xc9\xe9\x01\x4c\x7d\xe0\xb2\x2d\xdb\xfe\x55\x8e\xb0\xbc\xc5\xab\x71\xf6\x6a\xe0\x78\x40\x4a\x0e\x61\x54\x39\x26\xd5\x28\x23\x4b\x6f\x90\xa5\x1f\x2c\x32\xc6\x69\xdc\x99\x87\x9d\x67\xd6\x7c\x64\xcd\xd9\xd8\x5c\x2b\xd6\x03\x34\xd5\x30\x33\x37\x92\xf7\x96\x5d\xaf\x4b\xbd\xc0\xbe\xbb\x6f\xef\x53\xab\x5e\x6d\xc0\x53\x7b\x38\x2a\x84\xdb\x4c\xa7\xf5\x49\x32\x4f\x42\x81\x5e\x0f\xae\xef\x38\xf7\xee\xd1\x48\x9c\xd0\x66\xa5\xb9\x11\xe3\xac\x07\xef\xa1\x83\xa0\xdb\xff\xaa\x41\x90\x23\xf9\xf0\x41\xd0\x33\x71\xff\x20\xc0\x08\x48\xe8\x8a\x02\x2d\x62\x3b\x70\x0c\x0c\x31\xa5\x35\x06\x0f\x8e\xa9\x9b\xee\xc3\x55\x6c\x9f\x40\xff\xf5\xe4\x62\x94\x96\x43\x24\xa3\x49\xd1\xb8\xe4\xec\x3f\xa5\x79\x24\xbe\xa3\x64\xea\x5d\xb3\x8c\x47\xe3\x20\x26\xe9\xee\x72\xb3\x34\x8b\xbe\xa4\x09\x0f\x62\x3b\x36\x81\x9b\x14\xb7\x7a\x8e\x63\x7d\xe8\x0d\xd0\x4a\xf2\x13\x73\x6d\x88\xbd\x85\x02\xed\x62\x92\x3f\x1c\x4a\x3a\x99\xe4\x8c\x2b\x7f\xac\x35\xec\x83\x4c\x14\x8a\x1a\xfa\x05\x39\x05\x3b\x51\xe1\xc4\xfb\x10\x23\x50\x82\x6a\x88\x09\x2c\x21\xe9\x0c\xf0\xee\x52\xd4\xf5\x16\x81\x7c\x55\x0e\x40\xee\xca\xf8\x48\xc6\x8f\xad\x88\x14\x6e\x19\x56\x05\x11\xdc\xb7\xb3\x89\x55\x72\x3c\x8b\xe2\x30\x63\x09\x04\x10\xca\x72\xee\xe2\x2a\x22\x9b\x68\xe2\x4a\xd3\x0a\x4a\x69\xe6\x38\x6e\x46\x05\xcd\x2d\xda\x3d\xef\xe9\x23\x5d\xca\x9b\xb1\x68\x3a\xe3\x2e\x3e\xa3\xdc\xbd\x89\x92\x30\xbd\xc1\x26\xad\x5d\x24\xe5\xe3\x2c\x8d\xe3\xcb\x74\x21\x16\x42\xad\x72\xdb\x42\x2c\x5d\x72\x96\xfd\xa0\x32\x4e\xa1\xc5\x01\x30\x42\x5f\x2f\x04\x4c\x0c\x5a\x29\xc4\x79\x88\x04\x3c\x3e\x83\xe2\x31\x9b\xf0\xb6\x69\x00\x80\xfd\x53\x66\x1e\x9f\x38\xce\xae\xfc\xb3\x02\x5b\x05\x6e\xa0\x2c\x4c\x7c\x69\x70\x52\x6c\x47\xd9\xc0\x40\xb0\x36\xaf\x74\x01\x61\x65\xad\x0d\x59\x23\xec\x37\x14\xd7\x79\xe5\x1a\x00\x44\x5b\xb6\x88\x0e\x36\xb5\x34\x89\xd3\x80\x77\x64\x19\x0b\x76\x09\x50\xa9\x0c\x41\x19\x8b\x03\x1e\x5d\x33\xb1\x0d\x45\xde\x18\x84\x16\xb5\x70\x40\xc9\x19\xd1\x48\x11\x5e\x5e\x84\x94\x72\xeb\x16\x4f\x06\x8e\xe0\x46\xca\x4e\xa5\x02\x6d\x83\x0d\x49\x49\x19\x36\xd2\x06\x6b\x85\x41\x86\xf5\x4e\xa2\xd8\xf3\x6d\x17\x2d\xe6\x39\x01\xf0\xaa\xb0\x75\x13\xf1\x59\x94\xb4\x82\x96\x46\xa0\xa5\x1b\x64\x61\x6b\x2c\xb8\x49\x94\x80\xcd\x99\x19\x0d\x81\xd5\x1d\x4f\x17\x7e\x31\x69\x92\x6c\xfc\x00\xa8\x78\x1b\xc9\xb5\xd1\xe2\x16\x11\x39\x3b\x56\xdd\xa8\x5c\xaa\xe3\x46\x94\x5a\x4b\x6b\xd0\x95\x60\x65\x75\x5f\xb6\x44\x04\xd9\x28\xe2\x81\xb9\x6c\xaa\x24\x72\xcb\xb5\x60\xd2\xec\x6a\x0a\xef\xa8\x44\xae\x9d\x6a\x07\x74\xfa\xee\x46\x36\xd5\xcd\x00\x02\x43\xdb\x8f\xf4\x1a\xaf\x3d\x1b\xad\x4f\xbd\x9c\x07\x19\x7f\x3b\x71\x91\xd8\xb7\xcd\x47\x88\x64\xe4\x97\x86\x78\x57\xa5\x4b\x79\x4b\x6c\x6b\xb2\x34\x18\x0b\xa0\x9c\xdd\x72\x17\xfd\x09\x61\x31\xb3\x15\x9f\x75\x35\x74\x58\x12\x2a\x64\x70\x1f\xef\x84\x1d\xa6\x06\xb8\x09\x1e\x8d\xc2\x10\x29\x4d\xb4\xf1\x9d\x68\xbf\xe0\xac\x5b\xb9\x80\x8d\x40\x0b\xcc\x48\xec\x03\x55\xc3\x00\x5f\xc0\xb5\xbe\x3d\xc6\xda\x88\x99\xd1\xe1\x68\x8f\x01\x5e\x55\x07\x38\xd1\xf1\xf7\xca\x35\x89\x28\x29\x3a\x6f\x4e\xbb\xe6\xd0\xd9\xa4\xcc\x06\xf5\x05\x20\x57\x1a\x9e\xb9\x4a\xa9\x0c\xd0\xc5\xc5\x45\x79\x84\x2e\xee\x1d\x21\x69\xcf\xd0\xe2\x62\x80\xd8\x7c\xc1\x57\xee\xf6\x81\x92\xc6\xd2\xf5\xa1\xb2\x2c\x8e\xee\x69\x07\x68\x95\xa9\x6c\xd1\x03\x92\x15\x9f\xe2\x24\x8c\xb0\xfa\x02\x8b\x11\x38\xf4\xcd\xa2\xbc\x9f\x78\xec\xdf\x6e\xb7\x9c\xa7\x06\x0c\xce\xf8\x55\xdb\x92\xe2\xba\x20\x63\xd7\x3f\xb3\x20\x13\x63\xc2\xfe\xed\xf6\xf6\xab\x25\x87\xdd\xaa\x77\xf2\x80\xa6\x13\x76\xab\x40\x30\x33\x1e\xca\x08\xbf\xba\xa9\x14\xe9\xa4\xc9\x5c\xbe\x4e\x75\xda\x47\x61\x0f\xc8\x89\xc8\x20\x9c\x7a\x90\xac\x55\x54\xc0\xd5\xdd\x07\x8a\xa9\x80\x5d\x31\x38\xca\xee\xd7\xb6\xa2\xac\x4a\xb3\x27\x5b\x9a\xcd\xca\x1d\x15\x84\x7d\xcd\x4c\x37\x6b\x61\x3e\x5c\xbc\x63\xd5\x98\xc3\x6e\x92\x33\xee\x38\x99\x68\x77\x3b\x1c\x20\x38\x30\x35\x31\x78\x99\xd6\x33\x19\xce\xa0\x14\x65\x27\x2d\x7a\x9e\x36\x74\x5b\x82\x63\x98\xa8\xd0\xa6\x6a\x6b\x6d\xea\xf4\xa6\x49\x61\xf3\x5e\xf0\x86\x57\x49\xf8\x73\xe9\x8d\xaf\x15\xb7\x9f\x1d\xf7\xba\x24\x93\x5e\x22\x26\x71\x9a\x66\x2e\x3f\x66\xf8\x11\xd3\xe6\x50\x19\xc9\xda\xdf\x3f\x4a\x48\xa9\x40\x82\x1f\x25\x55\xc3\x19\xb9\x4a\x45\x3b\x07\x2f\x52\x65\x5e\x44\x78\x79\x8d\x6a\xee\x57\xe9\x86\xdb\xeb\x92\x2d\x94\x94\x6d\xe3\x97\x50\x20\x19\x76\x47\x7a\x69\x6f\x2f\xd3\x1b\x61\x12\x51\x84\x60\xab\xe2\x5f\xc3\x00\x5e\x82\xe1\x12\x26\xfc\x60\x16\x50\xaa\xf9\x50\x26\xa0\x81\x1c\xce\x06\x8c\x65\xbe\x71\x0b\xdb\x94\x6c\xdc\x59\x66\x6a\x99\xf0\x5d\x8c\x80\xdb\x8c\x20\x53\x33\xd6\x46\x1d\xd4\x4e\x2b\x8c\xc0\x34\x63\x1c\x67\x36\x25\x17\x9b\x7e\x6a\x37\xbf\x8d\x21\x44\x6d\xfa\x2d\x6c\x79\x2d\x6b\xa7\xa3\xa8\xe0\xb8\xa8\x35\x16\x95\x28\x78\x38\x6b\xa5\x71\xf8\x6d\xdb\x2d\x33\x26\xd9\x4d\xd0\x48\xb4\x0a\xc8\xed\x6f\xd1\xd9\xb7\x6d\xd3\xa3\x4e\x0f\xb7\xd1\xe9\xb1\xdc\x5c\xfb\xf0\x46\x46\x0e\x52\xaa\x76\xe0\xc3\x10\x01\xc8\x25\xd6\xd4\xc0\x73\xea\x5c\x0a\x34\x8a\xc0\x74\x7c\x84\xf0\x21\x1d\x29\x66\x46\x77\x82\x64\x16\xef\xed\xff\xc6\xe3\xd8\xd0\xbc\x61\x09\xa1\x36\x90\x88\x9a\x05\x04\x49\xef\x07\x33\x1f\x63\x5e\xb8\x3f\xfb\xf9\x1d\xf8\xcf\x51\x8f\x04\xe2\x9f\x5c\x6b\x42\xc6\xbf\x0a\x4b\x7a\xc1\x12\xbe\xcc\x56\x5f\xc9\x59\x0c\x94\x43\x58\x0b\xbc\x55\xd2\xf3\xab\xe3\x7e\x3d\x88\xd3\xfc\x97\xb3\x9a\x82\x15\x74\x4f\xbb\x83\x71\x9b\x2a\x59\xdb\x49\xae\xf2\x45\x5f\xd3\xb5\x3f\xde\xb5\x92\x24\x2d\x9b\xb5\x24\x69\x54\xac\x26\x24\x4b\xcb\x52\x50\xc1\x62\x3e\xed\x67\x75\x76\xd4\xbd\x87\x1f\xe5\x66\x4e\xda\xbd\x1e\x89\xe8\xd7\xed\x00\x8d\xa5\x24\xf8\x53\x9a\x93\xa0\x0a\xfe\xbe\x71\xdf\x09\x5e\x95\x2a\xc0\x1f\x3e\xa4\x86\x39\x35\x8b\x84\xaa\x79\xd3\x74\x53\x29\xd3\xfc\x3e\x4c\x77\xbd\x8e\xd6\xeb\xa0\x81\xf7\xed\x35\xad\xdb\x99\x73\x57\xce\xe6\x6f\x49\x53\x7b\xb1\xe6\x71\xa3\x16\xa1\xf9\xc2\xf0\xde\x13\x74\xd3\xa9\x6d\x38\x6a\x8c\x60\xab\x7e\x68\x6e\x59\x58\x49\x18\x35\xbb\x3c\x59\x7f\xd5\x81\x0e\x4e\xa0\x0f\x39\xd1\xd9\x15\x1f\xca\x73\x15\x8c\x43\x38\xee\xae\xb3\x97\xed\x1a\xdc\xf2\x30\x52\x0b\x72\xb4\xef\xf1\xcc\x3e\x1a\x5e\x20\x7d\x5c\xd9\x79\x34\x3c\xe4\xd8\x57\x01\xb9\x8d\xf5\x6e\xdd\x5b\x8d\x8a\xe4\x02\xed\xd0\x4e\x91\x9c\x76\xfb\xf9\xe9\x93\x93\x7e\xde\x6e\x9b\xf7\xb5\xa9\x77\xc3\xd8\x67\x08\xda\x0d\x0a\xd1\x42\xff\xb5\x53\x87\x15\x69\x7d\xc6\xb7\xa7\x3c\xd4\x8b\x6e\x7c\x23\x96\x92\x84\x28\x97\x12\x18\x1d\x90\x4c\xea\x65\x22\x8c\x49\x40\x11\x22\xe9\x36\x9d\x16\x51\x81\x3d\x83\x36\x45\xb0\x76\x31\x94\xb5\xfd\xca\x37\x16\x4d\xd8\x4d\x0d\xe1\xf2\xe3\x63\xb9\x2e\xc7\x6a\x04\xe1\x71\xb8\xf2\x72\x6c\x05\x2f\x4f\x1b\x83\xed\xe2\x3e\x84\x40\x1f\x3b\x4e\x5a\x16\x56\xcb\x50\x86\x63\x19\x97\xa4\x72\xa0\x96\x08\xea\x43\xf2\x06\xae\x48\xd2\x3d\x84\xde\xfb\x20\xf5\xcb\x04\x96\x42\x8d\xf5\x5a\x16\xb2\x89\xa6\xd4\x96\xf5\x0c\x5e\x35\x21\x2b\x48\x33\x28\x4c\xba\x47\x82\x22\x14\x35\x3c\x2b\x3e\x34\x60\x31\xb3\x2c\x81\x23\x47\x89\x00\x9a\x18\x72\xb0\x52\xac\x37\x0c\x56\x82\xe9\x16\xa3\xfb\x5a\x6e\x0a\x9a\x55\x07\xab\x6f\xdb\x81\x64\xc3\xf0\x1a\x94\xd9\xb4\x93\x5a\x7a\xc9\x4d\x55\xab\x55\xd1\xad\x65\x65\x5f\xf7\x52\xa7\xe6\x96\x13\xe1\x08\x5f\x49\x53\xb2\xb5\x8b\xab\xcf\xea\x04\x7f\xaf\xb8\xd3\xd8\xc1\xe0\xab\x66\x87\xf2\x85\xd4\x5e\x9a\xe4\xb0\x60\xff\xc5\xfb\x1a\x90\x87\xcb\x15\x05\x5c\x17\x9f\xf5\x7a\x4d\x36\x0a\x89\xcc\xee\x9d\xec\xd0\x93\x5a\x71\x70\x6d\xf3\xd6\xc6\x66\x4e\x7b\x27\x06\xa8\xf8\xd8\x52\xec\xac\xd7\xc3\x7d\xac\xcb\x7d\xf3\x84\x52\xda\x85\x0b\x2a\xeb\xd5\x90\x64\x00\x29\x86\xf9\xdc\x4d\x37\x02\x23\x43\x1b\x02\x66\xed\x88\x95\x80\x0b\x8b\xe6\x23\x56\x52\xe2\xfd\x45\x17\x07\xe8\x87\x1f\x90\x8f\x66\x33\x64\xd1\x56\x62\x79\xc4\xe8\xb3\x3a\x35\x35\xa9\xb4\xa5\xd1\x67\xb3\x4e\x7b\x37\x4d\x28\x7b\xd1\x03\xa8\xc2\x12\x0a\x7a\xb5\x4b\x05\xed\xe2\x7c\xf0\xd4\x6f\xce\x20\x16\x33\xaf\x87\x96\x00\xea\x48\x94\xaf\x90\xc4\x93\xc8\xb9\xf8\x1b\xf7\xc9\xa3\x14\xab\x29\x8c\xea\x53\x28\x78\xf8\xbd\x4b\x5f\x0e\x92\x99\x44\x09\xbb\x69\x1a\xe7\xf7\x4e\x23\x9a\xcf\xeb\x33\x96\x42\xcd\x3d\x67\x4c\x99\x83\x3f\x64\xc6\x94\x11\xee\x01\x33\x36\x6f\x5a\xc7\x5b\xc7\x7e\x2e\xc7\x5e\x36\xe3\xe2\x6f\x4e\xba\x5f\xb9\x76\x64\x5f\xcd\xc0\x4b\xc0\x4d\x03\x9f\xdf\x3f\xf0\x79\x5e\x1f\xf8\xa7\x50\x73\xcf\x81\xbf\x8c\xe6\x0d\x82\xb1\x92\x65\x75\x58\x68\x3d\xa6\xdb\xe6\xa0\x25\x04\xc9\x61\xc3\xdb\x06\xe3\x2b\xa5\x6c\xa5\x7f\x0f\xb4\xa1\x3d\x68\xb6\x59\xfc\x08\x34\x24\xdb\xcf\x41\xf5\x60\x2b\x4d\xa5\x66\xd2\xf3\xd0\x19\xed\x9d\x0c\x3a\xbd\x13\xbf\x77\x22\xbd\xed\x30\x5b\x4a\x6d\xaa\xa8\x07\xfd\x1c\xd5\x45\x52\xc9\xed\xaa\x46\x6f\x66\xde\x7c\xd6\x28\x2d\x8a\x29\x53\x17\xda\xa8\x69\xfc\x28\xe0\x3a\x42\x78\x4f\xd4\xb6\xf3\xd3\x7b\x5b\x52\x8c\x6f\xff\xb6\x60\xd1\xdf\x0b\x56\xad\xce\x03\xc0\x0a\x92\xd6\xc3\x6b\xb6\x76\xd7\x4e\x51\xec\xbd\x94\xa6\x18\x88\x5b\xa5\xf1\x30\x3d\x97\x74\x64\x5d\x3c\x24\xc6\xad\xc7\x36\x64\xe0\xf0\xe6\x32\xed\xc8\xfa\x12\x9c\x70\x60\xb0\x93\xb1\x4e\x3d\x3a\x8c\x40\xaf\x2f\xad\x2b\xdd\x84\x26\xeb\x75\x43\x3d\xe9\xca\x43\x5d\x6d\x62\x7c\x37\x0e\x72\x26\x9f\xa4\xfb\x02\x91\x88\x66\x5e\xc5\x37\x8b\x7c\x1c\x50\xf1\xa3\x3d\xf2\xde\x9c\xff\xe3\xd3\x5f\x3f\xbc\x79\x71\xf9\xe3\xdb\x37\x55\x8e\x25\x88\xfe\x10\x38\xef\x2f\x5f\xfd\x44\x22\x7b\x0c\x95\x54\x5b\xc0\x55\x5e\x8b\x22\xdc\xbf\xca\x58\xf0\xb9\x0f\x78\x1b\x57\x02\x80\x7b\xf0\xab\xe0\x6e\x8e\x6e\x07\x77\x20\xd8\xa7\x03\x41\xb9\x03\xb6\x17\x02\xb5\x2d\x1b\x0f\xe3\xbd\x52\x51\xfb\x12\x1a\xba\x9b\x53\x31\xbd\x5c\xcd\x2b\xd8\x43\xe7\xbc\xf9\x02\x57\x1e\x58\x5c\xab\x7c\x6d\x93\x91\x37\x6b\x39\x6e\xf6\x9a\xae\x64\x89\x9a\x57\xf4\x81\x5a\x44\xc6\xc3\x57\x5a\xd6\xdf\x36\x2b\x86\x55\x63\x8d\x18\xe0\xad\xb7\x92\x3f\x42\x1f\x6a\xca\x4a\x1d\x4c\x08\x52\xa5\xdb\x68\xec\xbb\x95\xa1\xec\xf4\xea\x73\xd3\x30\x39\x70\x53\x5f\x1b\x73\xd0\xe3\xfb\xf2\x38\x58\x84\xc7\xb4\xc6\x1e\xb8\x09\x26\xbd\x2e\x5e\xaf\xbb\xd5\x81\x85\x3e\x8f\x7f\x97\x71\xfd\x4f\x8e\x9c\x38\x00\x37\x0d\x9e\x52\xb3\xc1\xf0\xc5\xcd\xc3\x27\x59\x92\xd1\xb7\xa1\x9d\x23\x19\xff\xdf\x3b\x92\xc1\x4a\x0e\xe3\x72\x8b\x54\xd9\xb7\x07\x15\xf6\x07\xd0\x88\x38\xce\xb2\xa6\x8f\xaa\x95\x04\x85\x88\x28\x69\x99\xac\x88\xb6\x16\x74\x29\x4f\xd8\xf7\x10\x3e\x26\x13\x5a\x0d\x61\x53\x56\xa8\x0c\x40\x29\xe2\x4e\x76\x6b\x54\x16\xcd\x1a\x15\x3c\xa8\xcc\x22\xf8\x42\x9b\x68\x3f\x92\x26\x79\x71\xcf\xc4\xb5\x7b\x07\x57\xa9\x99\x49\x57\x2f\x6b\xb4\x6b\xf7\x6a\x7a\x89\x28\xb6\x0c\x4a\x89\x64\xec\x29\xaf\xf8\x9e\x80\x79\x0f\x69\x5a\x55\x04\xce\x6a\x7a\x9d\x90\xc8\x17\x79\x95\x5e\x86\xf7\xf5\xb2\xb1\x71\xfd\x8a\x1c\x9a\x9f\x55\x9a\xdf\x72\x88\x84\x43\x4a\x19\xa7\x19\x91\xaf\x00\x2b\x38\xcd\x1e\x84\x93\x7e\xad\x0b\x38\x5d\xd5\x87\x24\xaf\x35\x7f\x45\xe4\x23\x8d\x4a\xf3\x57\x87\x34\x5f\x71\x41\x01\x8d\xcf\xad\xc6\xed\x05\x56\x9f\x94\x79\xf3\xa4\xcc\x1f\x84\x41\x69\x52\x2e\x9a\x70\xd8\x7f\x66\x2e\x9a\x67\xe6\xe2\x41\x88\x95\x66\x66\xba\x65\x70\xea\xd3\x33\x6d\x9e\x9e\xe9\x21\x38\x94\x5e\x3a\x57\x57\x78\x99\x44\xd2\xad\x87\xae\xc3\xdb\x93\x4f\xa7\xa0\xbf\xd7\xb6\x34\x46\x56\xf4\xba\x90\xc8\x02\x84\xc9\xb9\x9d\xb0\x8c\x11\x26\x37\xf4\x5c\x9f\x37\xe5\x8b\x0e\xf2\xa5\x48\xd1\xcf\x23\xfc\x24\xe5\x2e\xe4\x63\x84\xc9\x27\x7a\x0d\xdc\x5a\x0a\x75\x83\x6b\xff\xba\x6c\xa6\xf7\xd6\xba\xef\xb9\x71\x9c\x1b\x6d\x50\x7c\x17\x4d\x5c\xf7\x2d\xbd\x51\x3b\xad\x79\xa0\x81\xb1\xe3\xbc\xf5\x78\x16\x24\xe6\xd9\x41\x11\x8e\xec\xa6\x78\x90\xe5\x16\xbf\x5d\x24\x78\x95\x40\xd6\x4a\x92\xf8\x63\xdf\xbd\x29\x9f\x39\x75\xbf\xec\xb7\xe2\xb2\x28\xf9\xa4\xde\x98\xef\x78\x0c\x1b\xcd\x59\x1b\xb5\x50\xbb\x29\x13\x34\xf4\xe4\x53\xe1\x7e\x6d\x6b\xa1\xc1\xea\x10\x43\x23\x78\xc7\x7a\x48\x0d\xb1\x25\xe0\x8d\xbd\x57\xcf\xd2\x1b\x4d\x17\xbb\x55\x0b\x67\xad\x30\xba\x96\x13\x5c\x7b\x1e\x8f\x11\x2e\x85\x40\xd9\x0a\xa4\x5e\x15\x61\x15\x30\xa5\x5f\xc1\x4a\x71\xae\x07\xc0\x3b\x18\x13\xfd\x88\xbe\x19\x11\xc3\xc0\x7e\x0f\x54\x8a\x47\xf7\xcd\xc8\x18\xa6\xf5\x7b\x20\x53\x3c\xd2\x6f\x40\xa6\x50\x66\x03\x43\xb9\xbc\xef\xac\xd1\xa0\xcd\x2a\xf3\xb6\xde\xc9\x11\xa5\x97\x8e\xe3\x5e\xb6\x69\xef\x04\xfb\xbd\x13\xaa\xbe\x69\xd7\x88\x35\x0d\x5c\x52\xc2\xb8\xdc\x57\x08\xb6\xde\x42\x06\xc8\x48\x47\x65\x0f\x00\x87\xc9\x4c\x4a\xd8\xd3\xfa\x12\x97\x11\x7b\x59\x29\x09\xae\x2e\x33\x95\x74\xc9\xdb\x37\x01\x45\x11\xf7\x4b\xb4\xbf\x52\xf7\xf3\xdf\xb5\xfb\x4a\xa3\xbb\xbd\xfb\x8a\x06\x7f\xdb\xee\xff\xa6\x1d\x95\x4f\xe5\x95\x8b\xcb\x18\x0e\x6c\xe5\xec\x34\xd7\xf3\x5f\xaf\x2c\x2f\x2e\x61\x85\xdd\xd6\x42\xa4\x57\x24\x93\x5b\x75\xfd\x55\x19\xcb\xdb\xfb\x86\x66\xa3\x95\x71\x65\x05\xe0\xac\x14\xb4\x50\xeb\xb7\x8f\x7a\x4d\xf1\xaf\xca\xec\xa4\xd8\xb1\xab\x26\xd3\xda\x6e\xb9\xe4\x0c\xd7\xda\xe1\xb5\xe7\xd9\x64\xbd\x3e\x4a\xca\x5b\x3d\x68\xbf\x8f\xba\xe4\xa8\x87\x37\x18\x13\xb6\x5e\xcb\xa6\xad\x97\x81\xe5\x6f\xcb\xd9\x29\x78\xd5\xa9\xe5\xdb\x5b\x7a\xc5\xc8\x5c\xbf\x64\x53\x1c\xd3\x3c\x21\x4b\x27\x13\x17\x65\x2c\x8f\xbe\x98\x9d\x16\x9e\x32\x19\x02\xd3\x2f\xd0\x44\xb9\x71\x1c\x8d\x3f\x23\x82\x6c\xa5\xfc\x08\x35\x14\x9c\xa7\xcb\x9c\x85\xe9\x4d\x82\x44\xef\x4a\xf9\x52\x40\x29\x73\xed\xc2\x11\x7f\x92\xf2\x68\xb2\x02\x07\xd2\xee\x9d\x98\x34\x3f\xf3\xe0\xcb\xfb\xe1\xc7\x97\xaf\x88\x90\x28\xfc\x2d\x93\x5f\xe8\xfc\x37\x98\x34\x46\xb6\x2e\x7e\x7b\x57\xf1\x32\x2b\x69\x07\x2d\xdf\xed\x3b\x20\x57\x4d\xda\xf3\x59\xd3\x8b\x24\x73\x51\x72\xb7\x62\x41\x56\xf2\x4b\x6d\x62\xf0\x49\x65\x5b\x17\xcb\xc3\x7d\x4f\x33\xfd\x6e\xc1\x1f\xba\x05\xa7\xec\xe2\x0d\x81\x0a\xcd\xb0\xf6\x05\x11\x06\xab\x66\x00\xf7\x55\x14\xf9\xcd\x35\xb7\x21\x0b\xbf\xef\xab\xb2\xd9\x08\x41\xb9\x61\xaa\x0a\x3f\xbf\x72\xb6\x16\x59\xba\xb0\xaf\x4a\xd6\xeb\x8a\x7f\x96\x68\x9a\xa4\x19\x7b\xc7\x82\x30\x4d\xe2\x55\x69\xa6\x65\xdd\x4c\x65\x19\x0e\xa9\x1e\x8f\x4a\xac\xfa\x0d\x38\xc8\xb8\xe7\x8e\xd3\x94\xaa\xa2\xa1\x97\xfc\x05\x57\x83\x2c\x54\x22\x00\x6c\x01\x81\x49\x57\xb1\x59\x65\x33\x52\xee\x97\x1d\x8f\x42\x5f\x95\x95\x2c\x42\x6a\x71\xa2\x77\xd6\x4f\x86\xdb\xb2\x47\x2e\xab\x4b\x24\x8c\x74\xb1\x32\x80\xf9\xaf\x46\xd1\xe6\xdf\xc5\x1a\x2e\x9c\x66\xd8\x5a\x3f\x21\xf5\xd9\xd7\x47\x25\x8b\x93\xdd\xd6\x21\x7b\x0a\x9c\x96\xc4\xbb\x57\xf1\x42\x26\xb5\x8b\x17\x41\x55\x78\x59\x8b\x59\x62\xde\x49\xc1\xbb\xef\x24\x38\x20\xa6\x8d\xcd\xc9\x2b\xec\x39\xd9\xc6\xc6\x09\xac\x95\xdb\x95\x5b\x16\x0a\xa0\x76\x75\x33\x48\x9a\x59\xfc\x6f\xb2\x73\xe9\xfd\xa8\x84\x81\x14\xdf\x77\xb0\x79\x43\x40\x56\xa0\x44\x6d\x82\x23\x97\xa1\x38\xc8\xfb\x90\x6b\xf0\x91\x19\x90\x66\x06\x7e\xfb\x8e\xf4\xfe\x87\xb7\xff\xac\x3e\x53\x0d\x59\xce\xb3\x74\x55\x0b\x5f\x58\x9a\x5a\xfd\x1c\x56\x6e\x85\x2f\x2b\xde\xf6\xb7\x17\x82\x77\xc8\xa8\xda\xa2\xe4\x8a\x3b\x5b\x7c\xf8\xbc\x34\x9a\x35\xde\xb7\xb9\x56\xd8\x35\x39\xea\x56\x70\x96\x91\x7b\x6a\x28\x3f\x1c\xcd\x6d\x26\xa7\x07\x63\xda\xab\x60\x5a\xf5\x5d\xf1\xf0\x80\x27\x55\x48\x07\x05\xea\xab\x56\xde\x37\x1e\xf4\xfd\x51\xa0\x1b\x20\xef\x8a\x06\xbd\x5f\x0c\xe8\xda\xa8\xed\x1f\x74\xdb\x1e\xfc\x9a\x4f\x8e\x83\x46\x7f\x6b\x20\xac\x1a\x58\x19\x7b\x77\x28\x03\x43\xa8\x40\xc5\x23\x31\x29\x77\x1b\x8f\xa7\xef\x61\x78\x65\x00\x88\x6d\xa3\x58\x03\x59\x0e\x66\xa5\x20\x5f\x07\x59\x24\x0d\x93\x64\x10\xe4\xc2\xc3\x88\x8c\x13\x51\xa7\x06\xbb\xc8\xde\x0d\x17\x75\x4c\x8b\x66\x26\x35\xb5\xd4\x51\xa0\xf6\x87\xc7\xd3\xd7\xe9\x0d\xcb\x5e\x04\xb9\x98\x22\xa0\xa5\xa0\xa0\x25\x1b\xad\xc3\x07\xc4\xc2\xaf\x1a\x27\xba\x20\xb4\xa0\x4c\x68\x35\x12\xdb\xe5\xaf\xa5\xd4\x95\x0d\xf4\x53\x3b\x7d\xd9\x3a\xd0\xa6\xc0\xde\xdd\xd1\x35\xee\x1f\x64\x5d\x92\x16\x3f\x9b\x06\x38\xb2\x06\xd8\xa0\x73\xf8\xf0\x1a\xbc\xb6\x0f\x6e\x74\xf0\xe0\x36\x74\xa1\x16\x3a\xac\x61\xe9\x82\xa7\x8e\x87\xf3\x4c\x1b\x8a\xcd\x2f\xa9\x1d\xf8\x4b\x08\x9d\x20\x1a\xaa\x80\x2a\xcc\x71\x9a\x03\x84\x95\x03\x82\x6d\x0b\x66\x6e\xb7\xd9\xc4\x66\x21\xe6\x8a\x8c\x12\xa4\xd7\xf5\xf6\x58\x52\xa5\x61\x38\x84\x09\x7e\x92\x2d\xfc\x10\x24\x61\xcc\x2e\x67\x91\x65\x0d\x99\x90\x94\x44\xf2\xa8\x19\x40\xf0\x9e\x5a\xbc\x1e\x18\x2a\x15\xe6\x86\x52\xea\xa2\x65\x12\xb2\x49\x94\xb0\xd0\x1a\xb9\x74\x60\x25\xfb\xcc\x4d\xd5\x3b\x36\xc3\x34\x33\x4f\x85\x5d\x22\x29\x26\xc1\x7a\xed\x06\x54\x0c\xd5\xd8\x15\x6d\x8a\xb4\xa6\xb6\x49\x80\x9b\x44\xfe\x14\x26\x5e\xee\xc6\x62\xf6\x87\xe9\xa8\xe6\x65\xe5\xdb\x37\x69\x6b\xce\xf8\x2c\x0d\x5b\x49\x30\x67\x61\x0b\x7d\xdb\x4e\xdb\xdf\xa2\x6f\x8d\x73\x39\x53\x3f\x1a\x08\x08\x2e\xf6\xe1\x4f\x24\xad\xc0\xd5\x90\x41\x80\xd0\x49\xd9\x71\x14\xe1\xe6\xfc\x69\xcc\x72\xd5\xd9\xad\x61\xa8\x61\x62\x86\xdd\x11\x44\xfa\x91\x87\xb3\x9a\xd2\x67\x5b\x35\xa8\x23\x5f\xbe\x6f\xdc\x0c\xf7\xb9\x1b\xa6\xe3\xa5\xf2\xdd\x94\xb8\x5a\x74\x7c\xf1\xfa\xc7\x17\x7f\xff\xa4\x43\x77\x91\xcc\xd3\xb1\xb0\xe4\x40\x5e\xbe\xfd\xdb\xdf\x5e\xbf\x22\x55\x2d\x13\xa3\x62\xf0\xa5\x3c\xde\x17\x52\x8d\xf6\xba\xe8\x38\x71\xad\xfb\x6a\xc3\x22\xea\xaa\x4c\xfa\xbb\xb1\x51\xf8\xe1\xfc\xcd\xdf\x5e\x11\xe4\xa1\x76\xe6\x99\x10\x59\xde\x8f\x6f\x7e\xfa\x70\x49\xdc\xba\xd3\xad\x4a\xd3\xc9\xbd\x4d\x27\x04\x7d\x1a\xcf\x82\x64\xca\x10\x61\xd5\xd6\xff\xf2\xfa\xc3\xbb\x87\xb4\x0d\x4e\xbb\x6a\xf4\x5e\x46\xc8\x4d\xad\x27\x44\xec\x6a\x39\x5d\xaf\xe5\x81\x49\x7f\xed\xc0\x18\x2e\xd7\x08\xc3\x55\x7c\xff\xfe\xea\xe7\x97\x6f\xff\xf9\xe6\x37\x1e\xae\xcf\x6c\x25\x4f\x54\xb5\xf1\xfa\xfb\xab\x9f\x3f\xfc\xf4\xdb\xb7\xbe\x5c\x34\xb4\xfd\xd7\xb7\x2f\x3e\xbc\xff\xad\x26\x2b\xad\x58\x66\x58\x51\xc0\x77\x62\x0b\xf7\x98\x12\x57\x62\x47\x64\xa3\xf5\x3a\xa5\x7c\xef\x45\x11\xea\x8a\xc6\xe5\xac\x24\x7d\x91\x26\x93\x38\x1a\x97\x42\x4e\x19\x79\xd2\x6a\x24\x25\xf5\x66\x36\x3a\x78\x1c\xde\x88\xdd\xd0\xe6\x3e\x24\xc1\x77\x1b\x22\xfe\x57\xe6\x49\x47\xd5\xd1\xe3\xf4\x4e\xdd\x6f\xfa\x77\xa2\x87\xfe\x51\x8f\x8c\x73\x79\xf6\xf1\xd1\x24\x4e\xf9\x65\xb4\x40\x64\x9c\x26\x9c\x25\xdc\x47\xdf\xe4\xad\x75\xeb\x5f\x7e\xeb\x9b\xdb\xd6\xba\xf5\xb3\xdf\xfa\x66\x85\x08\xbc\x42\x95\x86\x3d\x10\xe8\x8d\xac\xaa\x09\xa0\x4a\x14\x93\x98\xcb\xef\x30\x58\x59\x5f\xf9\x2c\x9a\xf0\xdc\xbf\xbb\xf5\x7b\x5d\xb2\xf2\x4f\xba\x1b\xa2\xdc\x1b\x5e\xce\xd8\x1c\xe2\x7f\xe5\x49\xb0\x10\x7f\xe3\x28\x61\x39\xe0\x18\x47\xe3\xcf\x97\xd1\x02\x3e\xd2\xe4\x87\xf4\x9a\xd9\x0a\x43\xd1\xd7\x0d\xf9\xb3\x38\xaf\x05\xdc\x3f\xea\x6d\x36\x7d\xae\x2f\x72\xdf\x2e\x78\x4e\xcd\x57\x5f\xd2\x90\x3d\x2e\xc0\x80\x79\xb4\xd0\xe2\x08\xbd\xbb\xf5\x05\x62\x5d\x25\xd7\x43\xfc\x35\x86\x37\xfd\xc4\x92\x3f\xca\x71\xc3\x8c\x77\x11\x2e\xfd\x03\x32\x6f\x11\xa7\xdc\x5b\xc4\xcb\x69\x94\x98\xa0\xad\x5a\xe7\x28\xf2\x7e\x92\x59\x74\x38\x22\x99\x09\xf7\x9a\xd2\x6e\x3f\x3d\xcd\xfa\x69\xbb\x8d\xab\x25\x95\xff\xed\x12\xe0\x61\x3a\xf2\xc4\x56\x86\xfb\x26\x10\x5e\x54\xac\x93\x3b\x81\xf1\xad\xc0\x25\x98\xb2\x7f\x91\xc4\x5b\xa9\xdf\x3f\x13\x88\x96\x76\x29\x47\x44\x77\xdb\x4d\xf0\xc6\x80\x09\xdc\x4c\x4a\x01\x89\x07\x43\x3f\x07\xff\xd1\xcc\xe5\x9e\x10\x37\xc4\xb1\x6b\x96\xc6\x21\x03\x5b\xcf\x2b\xd0\x38\x09\xbc\x66\x62\x5a\x10\xc9\xc5\x8a\x11\x8c\x4e\xb5\xe0\x62\x62\x81\xa1\x47\x3d\xec\xbb\xb9\x6a\x80\x24\x02\xe2\xcb\x74\xfe\x2a\x56\xc7\x43\xa9\x37\xb9\x8e\xf2\x08\x4e\x32\x42\xfe\x6a\x6c\x76\x99\x34\x35\x5c\x6a\xa8\x8b\xad\x2e\xe9\x16\x95\x60\x53\x5e\x3e\x24\x33\xeb\x10\x1c\xbf\xe4\xff\xce\xb8\xeb\x26\x1d\x86\x1f\xc1\xbf\x6d\x37\xeb\x70\xfc\x08\xfe\xc5\xa0\x55\x8e\x30\x57\x2e\xc8\x65\x1f\x23\x92\x58\x14\x27\xed\x72\x92\x60\x31\x88\xfc\xd4\x76\x83\x28\xb0\x35\xf9\x2c\x8b\x58\xee\x01\x91\x03\x2c\xc7\x01\x57\x61\x35\x40\x50\x42\x22\x9e\xd3\x32\x8c\x69\x16\x85\x1e\xa8\xca\xce\x41\xa9\xf5\x2e\x08\xa3\x65\x4e\xc6\xf4\x2e\x8c\xa4\x28\xea\xe7\xed\xde\x86\xc4\x34\xed\x33\x29\x66\xc0\x60\xbe\x94\x21\x16\x2d\xf6\x2a\x86\x40\x13\x62\x44\xbb\x24\xa7\x9d\x1e\x59\xd2\x5e\x7f\x79\x9a\x49\x27\x98\x8a\x8c\x97\xed\x36\x96\x29\xc3\x65\xa7\x37\x1a\x76\x47\xa7\x34\xf5\x6e\x1d\x47\x27\x8a\xa4\x33\x99\xe4\x46\x74\xd9\xe9\x91\x9c\x2e\x95\xce\xe0\x88\x52\xd5\x93\x85\x58\x67\xaa\x4a\x24\xaa\x90\x95\xf5\xd9\x1b\x6d\xc8\xc4\x2a\x91\x97\x4b\xe4\xb2\x44\x58\x9b\x46\x31\xc5\x24\x97\xb1\x1e\xf3\xf5\xda\xcd\x1b\x4b\xc8\x53\x5a\x21\x9e\x16\x72\x7c\xa2\x0e\x0a\x77\xb7\x7e\x42\x56\x3e\x87\xb9\x6e\x2c\x99\x15\x25\x99\x40\x6c\x03\xac\x25\x80\x71\x3b\x76\xdd\xa8\x93\xe1\x63\x37\xed\x24\xc6\x77\xf1\xdd\xad\x1f\x50\x37\x7d\xe4\xb2\x47\x79\x87\xb7\x33\xdc\x4e\xc4\xef\x4e\xde\xe6\x9d\x08\xe3\x63\x37\x7f\x04\xe5\xdb\x59\x27\xc2\x64\xe5\xe7\x8f\x82\x4e\xfe\x88\xb5\xf9\x66\x53\xc2\x1d\x7b\xb7\x67\xd2\x7f\xd1\x3c\x02\x69\x1d\x3b\x4e\xee\xdd\x9e\xaa\xb4\xe0\xd6\xa4\xad\xac\x72\x19\x89\x64\x9a\x55\x4e\xa4\xe9\x67\xb0\x59\x27\x12\x44\xd2\x49\xc8\x92\x26\x8f\xa2\x4e\xf6\x28\xed\xdb\x2b\x22\xb8\xca\xdd\xf1\x23\xd6\x8e\x1f\xf1\xf6\x12\x1f\x17\xab\x64\xfc\x68\xdc\x8e\x1f\xc5\x78\x23\x27\x35\x30\x0b\x8a\x4c\xd4\x87\x40\x5a\xc3\x5a\x9c\x4d\x06\x13\x7f\xb1\x71\x33\xef\x36\xb8\x15\x2c\xee\x64\xec\xa6\xde\x2d\xb8\x91\xb0\x12\x56\x22\xa1\x28\xb1\xa8\x96\x58\x54\x4b\x4c\xaa\x25\x26\xa2\xc4\x51\x0f\xe8\x2e\x3c\x1d\x7b\x7a\x3d\xc8\x0e\xcf\x68\x20\x80\x92\x85\xb7\x22\xa9\x77\x4b\x44\x8b\xa7\x81\xab\x7e\x92\x89\x77\x4b\x04\x80\x41\xe4\xe7\xe4\x8a\xba\x92\xec\x16\x69\x24\x4e\x94\xf2\x4f\xf4\x85\x91\x61\x2a\x41\xb4\x45\x6b\x1d\x81\xd3\x23\x57\xc0\xe8\x08\x7c\x8f\x05\x4e\xf0\x0b\x8f\x70\xdf\x5e\x91\x21\x89\x38\x9b\xfb\x77\x06\xa6\x7f\x45\xc4\x6f\xb8\x5e\xf6\x67\x44\x32\x06\x3f\x53\x3f\x64\x32\xdb\x6c\x9a\x59\x8c\xe3\xb8\x31\xbd\x03\x26\xef\xdb\x23\x72\x05\xee\x57\x80\xe1\xfb\xf6\xc0\x5c\x0d\x7b\x23\xbc\xc1\x1b\x75\xf1\x52\xe6\xd4\x42\xdc\x29\xc6\xea\x34\x6f\xf7\x06\x65\x3e\x37\xf6\x04\xee\x24\xc6\x7e\xb5\x66\x23\x38\xee\xcd\xd2\xf4\x73\x0e\x9b\x04\x48\x7b\x6a\x23\x2b\x18\x0f\x17\x8c\xa7\xca\x1b\x29\x30\x29\xf5\xe1\x82\xef\x5f\x19\x9e\xba\x38\xf2\x95\xf9\xa0\x1a\x17\xc7\x71\x1b\xd3\x85\x10\x20\x2f\x53\x1b\xb3\x49\x63\x6a\x73\x59\x01\x8a\x84\x2c\x66\x9c\x35\xe3\x20\x0a\x08\xca\x03\x31\xb4\x21\x5f\xb1\xfa\x66\xf6\xb3\xb5\x82\xd8\x8a\xcb\x93\xbf\xb5\x2b\x15\x1a\x51\x62\xd1\xc0\x4d\xbc\x1b\x31\xea\x14\x81\x5b\x57\x44\x12\x6f\x26\xbf\xa5\xfb\x59\x84\xfd\xa2\x48\x94\x24\xca\x93\xa6\x55\x0e\x12\x7f\x50\x85\xfb\xb5\x9d\xbb\xbf\xbf\x7c\x50\x43\xd2\x08\x78\x8e\x73\x1f\x14\x75\xbb\x14\x54\xa5\x0a\xc2\xdc\x4c\x97\x83\x1d\x71\x9e\x5e\x33\x44\xc4\xe9\x1d\x64\x78\x49\x88\xf9\x6c\xc9\xc5\x19\xa8\x4e\x86\x09\xbe\x3b\x44\xd2\xb8\xbf\x6c\x81\xa8\xbe\x40\x28\x04\x22\xe6\x26\x45\xe1\x32\xb6\x80\x6c\x5d\x3e\xab\x49\x9b\x19\xad\xcd\x00\x49\x69\x56\x72\x82\xda\xae\x73\x0c\x90\xbe\xbd\x5b\x12\xe9\xa2\x3f\x14\xce\x87\x9b\xcb\xae\xfa\xdc\xbb\xed\xb0\x8a\x0f\xe3\xd7\x6c\xc2\x5d\x7c\x66\x92\x87\x8a\x76\x46\x2e\xee\xa4\x8e\xe3\x8a\x3a\x34\x25\xdc\xbb\x2d\x36\x1c\xee\xdd\x12\xb0\x3c\xf2\x56\x35\x78\xe0\x13\xb9\x04\x6e\xa6\xc1\x45\x00\x6e\xd5\xa1\x11\x26\x51\xfe\x26\x78\x23\x00\xe1\x41\x62\x4b\xed\xde\x2d\xad\x7c\xff\x94\xb1\x6b\x41\xd1\xe5\x42\x02\x85\x86\x82\x22\xbd\x00\xbe\xaa\x02\x5f\x55\x80\xaf\x9a\x80\xaf\x28\xf7\x56\xa4\xa1\xa0\x48\xc7\x1b\x52\x62\xa4\xb6\x5c\x92\x91\x54\x4e\x69\xd4\x30\xa5\x01\x4d\x3c\xa9\xef\x92\x47\x2c\xb7\xbe\x76\xe4\x69\x8d\x30\xdc\x47\x82\x97\x04\x42\xee\x92\xfe\x69\x82\x66\x5a\x72\x85\x78\x53\x1e\x04\xb2\xaa\xa4\xac\x36\x98\x48\x0f\xc9\x77\xe0\xbe\xb7\x52\x7e\x07\x65\xf1\x74\x51\x85\xb5\x9d\xb6\x36\xda\x54\x92\x14\x61\xac\x6d\x26\x5f\xa9\xa6\xce\x7e\x8e\xb3\x2d\xc7\x65\x42\xa8\xd9\x94\x4f\x20\xf6\x71\xbb\x7e\xe0\x90\x2a\x52\x15\x8c\x0e\x41\xdd\xd2\x72\xdd\x5d\x5b\xdb\x1b\xc1\xf6\x5c\x1c\x10\x4b\xc5\xaa\x26\x3c\x9c\x32\x13\x93\xa1\x14\xd9\xa2\xdc\x27\x75\x95\x58\x9d\x6e\x75\x5e\x77\x1c\x08\xb0\x0e\xb0\x3c\x65\x45\xbd\xa5\xa8\x89\xbf\xee\x38\xae\x6b\x1a\x6f\x1d\xd7\xfd\xff\x6f\x07\x20\x1f\x76\x5f\xa6\x2e\x52\xef\x0f\xd5\xb0\x01\x85\x68\x27\xd4\x3e\x0a\xae\xf2\x34\x5e\x72\x86\x36\x4a\xe9\x5c\x81\x68\x1f\xf5\x1d\x47\xb9\xa7\xbe\x0a\xc6\x9f\xa7\x59\xba\x4c\x42\x1f\xfd\x69\x32\x99\x20\x82\xbe\x74\xe0\xb2\x02\xf9\xa8\xd7\x7d\xd2\x45\x64\x11\x84\x61\x94\x4c\x7d\xd4\xf5\x9e\xb0\x79\xab\xeb\x3d\x63\x73\x88\x6b\x9f\x85\x2c\xeb\x64\x70\xec\x41\x22\xf7\x29\xa4\x4f\xd2\x84\x77\xc0\x70\x41\xa4\x7d\x27\xd2\x64\x51\x1f\xf5\x16\xb7\xad\x3c\x8d\xa3\xb0\xf5\xa7\x5e\xaf\x87\x48\x18\xe5\x8b\x38\x58\xf9\x28\x49\x13\x86\x08\xba\x99\x45\x9c\x75\xf2\x45\x30\x16\x95\x93\xf4\x26\x0b\x16\x08\xb8\x72\x79\x86\xed\x45\xd9\xe4\x6a\x54\x1d\x46\xc4\x89\xe0\xf8\x9b\xfc\x98\x8c\xe9\xf1\x37\xe3\x63\x12\xd3\xe3\x6f\xe2\xdb\x63\xb2\x14\x7f\x57\xc7\x64\x41\x8f\xbf\xb9\xfd\xe8\xdd\x75\x49\x6f\xe3\x7e\x0c\xef\xba\x64\x83\x8f\xc9\x84\x1e\x7f\xb3\xaa\xa6\x6e\x3d\x8b\x70\x7d\x96\xe4\xb3\x8c\xe5\x62\x37\x82\x60\x4f\x85\xd0\x2a\x0e\x4f\x59\x29\xa1\x07\x1e\x09\xac\x84\x93\x11\xf6\x77\x03\x1f\x2f\xb3\x6b\x16\xbe\x16\x87\xd1\x3d\xc0\xdf\x07\x0d\x0e\xb5\x82\x02\xca\xc7\x60\xce\x16\x0a\xba\x4a\xaf\x09\xde\xc3\x93\x47\xb2\x25\x90\x8b\x65\xc3\xfb\x95\x6d\x43\xa7\x11\x92\x91\xac\xec\x4a\x43\x1b\xa2\xee\xcd\xd6\x7c\x35\x76\x5b\xf3\x4f\x46\xf2\xb2\x48\xf0\x31\xd3\xbd\xe0\x8a\xc5\x56\x77\xd3\x2c\x9a\x46\xc9\x7b\xf8\x80\xed\xcd\x2e\x47\x1b\x8b\xc9\xbc\x66\x46\x29\xef\xa9\x58\x05\x0e\x9c\x19\x39\x6e\x94\x9f\x99\xe3\x1c\xe9\x08\x0a\x08\x09\xd2\x4a\x25\x0c\x2f\x63\xd2\x22\x06\x7d\x33\xe6\x88\xa4\xa2\xfa\xce\x99\x5c\xb0\x6c\xcc\x12\x3e\x88\x68\x35\xe9\x1e\x12\x50\xa5\x72\xe9\x58\xa4\x9a\x5a\x1a\x53\x4c\x50\x02\xcf\x3d\xad\x1e\x44\x85\x41\x58\x10\xfe\xb2\xcc\xf9\x3f\x82\xf8\xa7\x8c\x8d\xa3\x5c\x2c\xc4\xe3\x6f\x16\xb5\x55\x05\x7b\x03\x31\x2d\xcd\x82\xfc\xed\x4d\xf2\x53\x96\x2e\x58\xc6\x57\x2e\x5a\x44\xa0\x70\xda\x8d\x34\x4c\x77\x57\x10\x81\xe3\xb8\x01\x6d\x48\x6f\xc2\x35\xa8\x8d\x6d\x82\xe0\x2e\x8b\xd1\x7b\x96\x89\x98\xc7\x41\x51\x31\x27\xe5\x2c\xec\xdb\x79\x08\xdd\x0f\x71\x9c\xc6\x69\x66\x41\x1c\x93\x72\x96\x0d\x71\xac\x20\xca\xab\xc4\x20\x3f\xbf\x8d\xf2\xd7\xa2\x59\x17\xc1\x41\x13\x11\x8e\x2d\x50\x71\x01\x4a\x9e\x43\x8d\xea\x5d\xd7\xb3\x81\xc7\xdb\x81\xaf\x1a\x80\x2f\x0b\xe0\xab\xfb\x81\x2f\x01\xb8\x54\xe0\xc2\xbb\x4e\x30\x6e\x2b\xb0\xd6\x66\x3a\xf9\xbf\x0a\xed\xb5\xcb\x71\x65\x9a\xd4\xdb\x51\x08\x58\xc3\x83\xf9\xe2\x32\x05\x63\xcb\xa4\x71\x6b\xb3\x14\xe3\x5b\xc6\xc1\x44\x68\xb3\x51\x5a\xd5\x50\xfa\x79\x17\x4a\x93\x66\x94\xb2\x46\x94\x56\x4d\x28\xad\xaa\x28\xd5\xc9\x35\xd9\xb9\xb4\x16\x84\x91\xa4\xb1\x5e\xb6\xb3\xde\x84\x30\x92\xdd\xcb\x4e\xe4\x88\xf1\x68\xfc\x59\x69\x0a\xc3\x7e\x68\x68\xe4\x5d\xca\x03\xce\xc2\x7f\x09\x5a\xb9\x14\x45\x5c\x8e\x07\x28\x93\xa9\x90\x80\x7c\x04\x75\x51\x5f\xea\x79\x6c\xfe\xaf\xdb\x80\xaf\xbe\xd6\x76\x5e\xb5\xa2\xa4\xd2\xfc\x30\x1c\x49\x1b\xe1\x6a\x6a\x95\x67\xcc\x8c\x4f\xb6\x46\x2a\xc3\xca\x2e\x37\x7f\x11\x70\x36\x4d\x05\xa8\x4a\x89\x41\xad\x89\xe1\x6c\x24\x97\xb6\xdf\x98\x75\x8d\x29\xa5\x49\x9d\x4e\xb7\x82\x31\x85\x8e\x3f\xfe\xf9\x78\x4a\xd0\x9f\xff\xfc\xe7\x3f\x23\x8c\xf1\x66\x73\xaf\x38\xb1\xb2\xa6\x42\x8f\xd6\xbc\x34\x5a\x76\x89\xd2\x80\x59\x19\xd5\x31\x9b\x6f\x1f\x96\x55\x7d\x58\x2c\x40\xc3\x79\x6d\x64\x2a\xb9\x30\x38\x59\x7d\xc5\xec\x02\xb6\x75\x7c\xd4\xde\xb8\x27\xb1\xea\xa7\xee\xd5\xd6\xd1\x37\xb7\xa8\xca\x0e\x4a\xe5\x05\x37\x29\x65\xe3\x3a\x46\x32\xda\xda\x9e\x73\xb5\x1d\x93\x15\x6a\x1a\x8a\x02\x93\xac\x92\xbd\x0d\x13\x56\x96\x84\x0b\xd2\x6f\xb4\x89\xd8\x89\xf7\x90\x8d\x0c\x23\x9f\xa7\x21\x53\xe1\xc1\x90\x25\x3b\x55\x8b\x54\x1b\xb7\x38\x38\xad\xbf\x08\x68\x6e\x7d\x37\xfb\x76\x1c\x65\xeb\x73\x4f\xb9\x2a\x26\x3f\xff\x3a\x98\xac\xf6\xc4\x64\xb5\x1d\x93\xf2\xc2\xfa\x55\xa6\x65\x6c\x40\xee\x3f\x39\x95\x5d\x8a\xda\xea\x36\x92\x69\xd7\x48\xea\x56\x33\x0c\x38\xfb\x1b\x4b\x18\x84\x9a\x06\xbd\x70\xdf\x3c\xea\x80\x02\xd2\x73\x04\x6c\x77\x29\x69\xde\x83\x8b\xab\xe7\xe6\xd3\xa7\xba\x89\xc6\x65\x34\xeb\x7b\x15\xad\x5e\xaf\x83\xc6\x4d\xe3\xa3\xe7\xc4\x9b\x07\x7c\x3c\x73\x99\x10\x1a\xc5\x20\xbe\x63\xd3\x57\xb7\x0b\xef\xcf\x3d\x88\x12\x66\xbe\x48\x02\x77\x7a\x7f\x8d\x6e\x99\x74\x49\x49\xb9\x59\x58\x72\x27\xad\xcc\x9f\x2d\x0c\xd1\xb2\x8a\x52\x62\x00\x17\x69\xcc\x8b\x92\xf3\x2c\x0b\x56\x2e\x32\x22\x50\xae\x1e\x59\x59\x37\xc7\xdb\x24\xda\x44\xcf\x20\x1f\xd5\x45\x29\xc7\xd9\x99\xad\xd4\x09\x67\xdd\x1a\xde\xb5\x0d\xba\xa4\xb7\x6c\xc6\x5e\x30\xa1\x77\x29\x4f\xb3\xfd\x91\xaf\x30\x54\x5b\x00\xd8\xf4\x2b\xd7\xef\xa0\xe9\xbd\x8b\x92\x88\x97\x1e\x0c\x25\xec\xa6\x95\x40\xf4\x1d\xd5\x3d\x9f\x93\x24\x98\x33\x1f\x29\xa2\x41\xe4\x9a\x65\x39\x68\x35\xba\xde\x77\xde\x53\xb4\xc1\x85\x09\x06\xa9\x19\x60\xa0\x65\xce\xc0\x88\x6f\xcc\x51\x5f\x1a\xf9\x7a\x12\x71\xb3\xf3\x71\x82\x3e\x7d\x82\x25\xb9\x8c\x19\x22\x77\x60\xdd\xec\x1f\x75\x37\xe2\x50\xf2\x22\x5d\xac\x2e\xd3\x17\x71\xb4\xb8\x4a\x83\x2c\xd4\x4f\xfd\xa5\xaa\x57\xc1\x0b\xf2\x3c\x9a\x26\xeb\xb5\xdd\x0f\xbd\x31\x73\xda\xeb\xf3\xd3\xaa\xe1\x63\x9f\xb7\xdb\xda\x22\xc0\xe4\x0d\xf9\xc8\x48\x3f\x99\xd8\xcf\x13\xac\x1a\x28\xcd\xa5\xb5\x69\x6b\xbb\x98\x0c\xc4\xd1\x61\x36\xa2\xc9\x30\x1b\x99\x50\xca\x6c\x43\xd2\x92\x3f\x45\x7d\xeb\xce\x24\xc7\xd1\x8d\x25\xb4\xdb\x4f\x4e\x75\x14\xc2\x7e\xa2\x71\xcb\x28\x1f\x26\xa3\x7e\xe6\xb1\x64\x39\x67\x19\x58\xef\xdb\x1f\xeb\xf5\x51\x8f\x64\xde\x38\x4d\x26\xd1\x74\x29\xf3\x8f\xba\x04\x49\xf3\xf0\x28\x01\xc1\x33\xf3\x6e\xb2\x88\xab\x3c\x4c\x9a\xa7\x80\x91\xcc\xfb\xcc\x56\x24\xc3\x1b\x8d\x7c\x95\x29\xe9\x45\x2e\xaf\x22\xcc\x88\x90\x04\x93\x0c\xd2\x88\x58\xc3\x9b\x8d\x8b\x49\x44\x73\x37\x71\xbb\xe0\xc6\x58\xfc\x3a\xe9\x76\xb1\x65\x8d\x91\xdb\x0f\xd3\x1c\x87\x79\xc5\xec\x0f\x98\x7f\xa7\x74\x61\x3e\xdb\x14\x66\x0a\x63\x39\x60\xd1\xc4\x3d\xb2\x6d\xf5\xdf\xb1\x09\xcb\x58\x32\x36\x66\xf5\xb3\x28\x6f\xcd\x82\x3c\xf9\x96\xb7\xae\x18\x4b\x5a\x82\xbc\xa3\x20\x8e\x72\x16\xb6\x3a\xad\x7c\xb9\x60\x99\x8b\x4b\x25\xc4\x0c\xb2\xb0\x78\x31\xca\xd7\x6b\x6d\xc4\x69\xad\x2b\xc7\x29\xd4\x0b\x56\xf2\x80\xf9\x7c\xe3\xd6\x89\xb4\x44\x88\xba\x0f\x5c\xdb\x13\x8a\xf1\xec\x1f\x95\x37\x1f\xd1\xb3\xfd\x2c\x65\x5f\x04\x49\x92\x72\xc0\xbb\x15\x48\x0f\x96\xad\x20\x6f\x05\x66\xc2\x10\xde\x48\xa3\x48\x8e\xfb\x85\x0d\x4d\x75\x05\x90\x9c\x4a\x3e\x93\x62\x12\xd3\x6e\x3f\x3e\x4d\xfb\x71\xbb\x8d\xf3\x61\x3c\xb2\x96\x44\x6c\x22\xe0\x27\x34\xa3\x63\x09\x58\x1c\x66\xbc\x4f\x9f\x80\x06\x3e\x7d\x5a\xaf\x15\x4d\x4d\x19\xff\x49\x93\xc5\xdb\x89\xcb\x31\x86\xf5\xe1\x05\x8b\x45\x2c\x48\x0c\xde\x98\x8d\x04\xb9\x8e\x03\xee\xc2\x19\x2b\xf3\xd2\xe4\x45\x1c\x8d\x3f\xd7\xe2\x8d\x72\x9a\xc1\x3b\x91\x9c\x24\x94\xc3\x03\x6d\xd0\x2e\xa5\x89\x18\x6b\x92\xd3\x22\x46\x25\x19\x8b\x74\xc9\xac\x48\x4c\x23\xad\x4c\xf5\x5e\xa8\x02\x5e\x9a\xc4\x2b\x37\xc7\x64\x49\xdd\x2e\x09\x74\x3e\x76\x13\x32\xc6\xfd\xd4\x71\x52\x37\x21\x4b\x4c\x62\xc7\x89\x65\x9b\xf6\x74\x17\xc7\x38\x95\xa9\x51\x36\xa5\x75\x82\x8c\x59\xe6\x66\x24\xc1\xb5\x45\xa4\x27\xb9\x91\x8c\x0a\x71\xa6\x79\xca\xdf\x0b\xba\x6d\xb1\xdb\x45\xc6\x72\xc1\x79\xa5\xc9\x3b\x8b\xf8\x8c\x65\xad\x2b\x06\x1b\xaf\xb4\x90\xd6\xd0\x49\x4b\xd0\x08\x6a\xeb\x16\xb0\xe0\xfe\x7a\x6e\x34\xdb\x1c\x67\x0c\xde\x48\x3a\x8e\xbd\x9e\xef\xc6\x85\xa9\x9e\xaf\x78\x31\x23\x05\xd3\xf1\x8f\x7a\x44\x73\x14\xff\xa8\x4b\x6c\xee\x23\x98\xb6\xe0\xda\x8e\xe3\xaa\x36\xf2\x12\x4d\x0c\x1a\x53\x61\x70\x7c\x56\x50\x14\xe5\x82\x84\x09\xc3\x24\x75\x39\x19\xde\x7d\x66\x2b\x1f\x65\x2c\x09\x59\x86\x88\xc4\xa8\xd9\xcf\xb4\x24\x18\x4e\x5d\xe9\x48\x94\x30\x4d\x2f\xcc\x10\x08\x33\x74\x83\x49\xd2\x18\x0b\xeb\x6e\x53\xde\x05\x18\xe6\xe6\x89\x40\x86\xcf\x68\xd7\x10\xfc\xee\x6d\x81\xc9\x6d\x41\xec\x08\x54\xec\x0d\x46\x6e\x4b\x36\x62\x31\x20\x81\x21\x22\x48\x62\x28\x7e\x48\x0c\x11\x41\x1a\x43\x04\x81\x62\xb6\x11\x34\x37\x00\x8b\x12\xf0\x60\x5a\xdf\xc2\xa4\x24\x73\xef\x36\x24\x21\x77\x8a\x40\xa5\x55\xb5\xfa\xd8\x88\xb3\xee\x48\xb0\x6c\xb7\xa8\xff\xd3\x32\x63\x2f\xf4\xfb\x2e\x8c\x75\xba\xe8\x58\x4e\xef\x24\xaa\xbe\x7a\x68\xad\xe5\x03\xf9\xb9\xa9\xdb\x5e\x96\xb6\x7e\x75\x37\xeb\x9e\x74\x7b\xa2\x53\x48\x40\x6a\xf1\xb4\x35\xd6\x4c\xd3\x6f\xfd\x49\x4c\xf4\x86\xb4\x5e\x25\x9c\x65\xa8\xcf\x3c\x76\xbb\x48\x33\x9e\x37\x5e\x23\xc0\x15\x02\x19\x93\x98\x2c\xc1\x97\xc0\x7a\xed\x72\x7a\xb7\x01\xe7\xc3\xda\xe2\x58\xa4\x67\x2b\xb1\xec\x02\x9a\x41\x04\x60\x6d\x16\xae\x68\xff\x5d\x90\x4c\x99\x8b\xc9\xb8\xc8\x98\x32\xfe\x5e\xbb\xe4\x73\x31\x71\xe3\x6a\x1d\x3d\xba\xca\xfb\x90\x74\x1e\xf1\x42\x5e\x36\x52\x46\x62\x0f\xa2\xc1\x7b\x41\x1c\x53\x04\x4f\x77\x91\x49\xd3\xf7\x41\x14\x4d\x84\xd0\x5b\x64\xf0\x74\x41\xbb\xe6\x4b\x0c\x09\x45\x19\x1b\x73\xb7\x4b\x5a\xea\x3f\x5c\x94\x86\xab\x98\xf7\x8b\x60\xcc\x28\x5a\x64\xcc\xca\x60\x57\x9f\x23\xfe\x21\x67\x99\xec\x02\x55\x34\xa6\xf3\x2f\xd2\x2f\xdb\x33\xe7\xf9\xf6\xbc\x65\x43\x4e\x10\x4a\xd3\x95\xd7\x51\xce\xc5\xf1\xc4\x45\x63\xa0\xe3\xc2\x78\x20\xc1\x77\x89\x97\xf3\x74\x21\xc8\x27\x98\x06\x6a\x48\xf5\x89\x45\x5a\xa5\x64\x4c\x00\x51\x6f\x1e\xb4\x4d\xa4\xa4\x88\x97\x01\x0f\xa4\xa7\x0b\x65\x97\x57\xcd\xcb\x95\xc5\x9e\x86\xa8\x2c\xc8\x89\x99\xb1\xab\x34\x5c\xa9\x2b\x3a\x58\x3b\x6e\x8c\x89\x76\x61\xf4\x26\x0d\x99\x9a\xb6\x5c\xa4\x8f\x45\x8f\x24\x41\xe4\x98\x1c\x19\x18\xec\x96\x8d\x5f\xa4\xf3\x79\x90\x84\xaa\x8b\xb8\x1e\xaa\x56\xa4\xb7\xc6\xb2\x54\xeb\x26\xc8\x5b\xcb\x24\x5f\x8e\xc7\x2c\xcf\x27\xcb\x18\xe1\xfe\x92\x1e\x75\x37\x63\x38\x16\x2d\xf0\x5d\xe2\x38\x82\xc9\xa6\x31\xf3\x98\xac\xbf\x84\xa7\x99\xb0\x1e\x04\xa4\x65\x1e\x25\xd3\x96\xd5\xb2\xdf\x42\x64\x81\x89\x55\xf1\x26\xc8\x12\x17\xf1\x6c\x25\x4a\xfe\xf8\xaa\x95\x2f\xd8\x38\x9a\x44\xe3\x56\xce\x97\x93\x09\xc2\x40\xf9\xca\x00\x7f\xf7\xa8\xad\xd7\x6a\x4e\x99\xd8\x21\x1f\x80\x67\x09\x7c\x1d\x53\x55\x75\x12\xc4\xb1\x28\x7d\x15\x8c\x3f\x0b\x00\x8b\x2c\x9d\x2f\x38\x12\xd2\x62\x7d\xef\x77\x8f\xe7\xc1\xb8\x95\xe6\xad\xdb\xe3\xc8\xe3\x2c\xe7\x6e\x12\x5c\x47\x53\x71\x04\x06\x62\x3c\x9f\x0a\xfe\x34\x40\x1f\x97\x27\x8f\x7b\xdf\x21\x1f\xbd\xe0\x59\x8c\x70\x1b\xb5\x5f\xa0\xe2\x78\x6c\xd4\x34\x7f\xba\xfb\x98\x3f\xfa\xcc\x56\x1f\xf3\x47\x9b\xe3\x29\x11\xdb\x0b\x9a\xb3\x3c\x0f\xa6\x20\x26\xf3\x01\xf7\xd4\xa7\x9f\x62\xa2\x46\x4d\x22\xe8\x46\x84\xe1\xcd\x66\x12\x25\x41\x1c\xaf\xee\xc6\x8e\xe3\xda\xb2\x81\xda\x60\xc7\xea\xc2\x1b\xe8\x67\x50\xfa\x72\x73\xec\xeb\x84\xf3\x38\x86\xb4\xdc\xc5\x20\x6e\x94\x09\x55\x3d\xa7\xd5\x84\x1a\xb8\x46\x8c\x58\x56\xb8\x2b\xbe\x6b\x60\x8e\x7a\x27\xdc\xc2\xca\xfa\x20\x3c\x7b\x99\x68\xff\x45\xba\x4c\xb4\x17\x86\x96\x05\xa0\xd8\xf9\x78\x01\x46\xbe\x0b\x7f\xa5\x83\x84\x83\x71\x36\xed\xf6\xb3\x53\x1b\x58\x3f\x6b\xb7\x71\xa2\xcd\xb1\xa7\x8c\x43\x3f\xcf\xb9\x9b\x61\xac\x7d\x33\x73\x8f\x07\x53\x78\xc5\xc0\xd3\x0f\x8b\x85\x7e\x86\xa7\x9c\x31\xc3\xcb\x06\xe4\xc3\xef\xcb\x57\xff\xba\x3c\x7f\xf7\xea\x1c\xf9\xda\x67\x88\xf2\x65\xa3\xcf\x06\x9c\x0a\x99\x67\x63\xcd\x74\x65\x78\x89\xd5\x2b\xf4\x22\xc8\x18\xbc\xc9\x62\x9e\x98\x2f\x71\xe4\xa8\x57\xb0\x7b\xb3\x5e\x83\x7f\xf7\x57\xe5\xf7\x47\x30\xec\x86\x49\x70\x69\x93\x24\x84\x27\xf5\x74\x7d\xb3\x69\x38\xff\xba\x35\x73\xf8\x7e\x52\xbe\x8a\x32\x87\x09\xee\xcb\xb7\x4c\x0d\xfb\x1e\xc8\x8e\xcc\x7b\xf1\xfe\xbd\x40\xfe\xc5\xfb\xf7\x1e\xcb\xc7\xc1\xc2\xc4\x7a\xb7\xd3\xfa\x72\xfe\xea\xcf\xff\x6a\xaf\xff\x1a\x85\xcd\xff\x5d\x40\xfa\xdf\xad\x8c\xfd\x7b\x19\x65\x0c\x9e\xd3\xea\xea\x1e\x2a\xce\x15\x82\x1e\xe4\x4b\x5d\x97\x61\x92\x99\x17\x26\x24\xa5\x9d\x1e\x04\xd0\x04\x4b\x9d\xf1\x2c\xc8\x5e\xa4\xa1\xa0\x87\x2e\xee\xb7\xdb\xe9\x69\xd6\xc7\xdd\x23\xea\xf2\x72\x66\x8a\xf1\x20\x6a\x53\x7e\x46\x7b\x8e\xc3\x4f\xe9\xe3\xde\x7a\xdd\x3b\x79\x4e\x29\x5f\xaf\xbb\x10\xcf\x9d\x9f\xd1\x27\xdf\x41\xde\xd3\xe7\xeb\x75\xaf\x96\xe6\x38\x4f\x9e\x52\x1a\x0c\xd0\xc7\x8f\xa8\xcd\xcd\x3b\x62\xb7\xf7\x0c\xb7\x51\x0b\xf9\x12\x4a\x0f\xd4\xe1\xa2\x24\x5f\xaf\x8f\x5c\xd1\xde\xc9\x77\xeb\xb5\x4a\xf8\x5e\xfe\x29\x37\xc5\xcf\xe8\xb3\xa7\xf0\xf5\x7d\x17\xbe\xbe\x7f\x0e\x5f\xbd\x93\x13\x2c\x5b\x93\x3d\x81\x5e\xf8\xf6\xef\xa8\x4d\xd1\xc7\xe5\x64\x32\x09\x0d\x6b\x8a\x36\x7d\x7b\xe2\xd6\x6b\x39\xb7\x20\xbf\xd8\x53\x49\xb9\x10\xcf\x12\xbc\x91\x27\x29\x79\xfa\x4a\xdc\xde\x53\xdc\xf0\xd4\xa5\x24\x6e\x71\xeb\x50\x4d\x8f\xba\x46\xfc\xea\x0a\xe1\xcb\x0d\xdc\x4c\xf0\x97\xc4\xed\x89\x43\x58\x44\xc5\xcf\x67\xe2\x8c\x2e\x7e\x3c\x7d\x62\x1f\xd6\x83\xc3\x0f\xeb\xf9\x6f\x71\xa4\xfd\xff\x84\x2a\xc0\x20\x19\xff\x71\xe0\x3b\xf4\xc0\x27\x5d\x3c\xf7\xba\xcf\x1f\x3f\x7f\xd2\xfb\xee\xe4\x71\x9f\xeb\xd3\x47\xa3\xfc\x1f\x90\x05\x45\x9f\x3e\xc9\x2e\x75\x32\x16\x8c\x79\x07\x4c\xfe\x6e\x79\x07\xb5\xdd\x2e\x89\x8a\x73\x3e\x6e\xa3\x4f\x9f\x10\x99\x34\xeb\x65\x8c\xf9\x19\xc9\xfa\xea\x39\x69\xb2\x53\x73\x12\x15\x9a\x93\x80\x76\xfb\xc1\x69\xda\x0f\xda\x6d\x1c\x0d\x03\x5b\x73\x12\x18\xcd\x09\x2f\x34\x27\x6c\x97\x46\x24\x92\x1a\x11\x36\x8f\x38\x67\x59\x83\x54\x34\xd4\x20\xef\xd2\xa4\xa4\xb4\xe5\x6a\xe3\xc5\x1b\x92\x4e\x26\xe5\x2c\xca\x75\x78\x08\xb7\xae\x73\x6e\xf1\x23\x4a\x19\xbc\x9c\x9d\x32\xee\xd7\xdf\xdf\xb1\x0d\xc9\xed\x0c\x50\x05\x32\x9a\x48\x29\xbe\xbe\x41\x6a\xb0\x70\xfa\x85\x23\xe6\xc6\x55\x8a\x1c\x0f\x48\x0b\x83\x86\x84\x1b\xd1\x26\x76\x13\x21\x78\x56\x8c\x04\x41\x08\x7a\x21\xa7\xb3\x26\xe1\xa8\x41\x70\x99\xe0\x97\xc3\xc5\x48\x9e\xfd\xd5\xb0\x55\x6f\xe1\x8c\xb7\x92\x7f\x46\x71\xfc\x8e\x8d\x59\x74\xcd\xe4\x71\xb6\xb2\x41\x16\x0a\x04\x89\x28\x28\xe3\x25\xca\xd6\x33\x36\xbb\x04\x3c\x69\x93\xbf\x74\x34\xc2\xbe\xeb\x46\x34\xc1\x94\x52\x71\xe4\xc4\x83\xee\x11\xa5\xd1\x7a\xdd\x3b\x8e\x28\xa5\xbd\xe3\xc0\x8f\x44\x82\xe3\x04\x47\x94\x06\x78\x90\xd2\xae\xef\xa6\xb4\x49\xd9\xc4\x07\x1c\x06\xdb\x5f\x42\xb0\x31\x37\x5d\xd3\xae\xb6\x85\x50\x5d\x15\xab\xca\x35\x18\x60\xb9\x84\x22\x12\x94\x07\x40\xea\x4d\x9a\x9e\x56\x16\xdd\xd1\x0a\x87\x0d\x49\xc4\x74\x15\x1a\x80\xfe\x44\xe6\xa9\xa9\x10\x2c\x2a\xa7\xae\x9b\xe8\x91\x4f\x8d\xe6\x40\x32\x4a\x2f\xca\xdf\x49\x91\x21\x14\x8b\x48\xba\xef\xb6\xe9\xa3\xb6\xea\xd8\x6f\xb5\xea\x58\xb1\xea\xb8\xbd\xea\x78\xf3\xaa\xcb\x79\xc0\x19\x55\xec\x2f\x13\x34\x28\x5d\x5d\xe1\x0d\x28\x29\xa5\x97\xfa\x0a\x27\x82\x89\x71\xbb\xeb\xcc\x4b\xaf\x72\x96\x5d\xb3\xf0\x2f\x11\xcf\xb1\xc3\xb1\xe3\xc0\xec\xbc\x17\x40\xdd\x26\xa0\x4a\x53\xc8\x4a\xeb\x80\xe3\x07\x90\xae\xb2\x9c\x2d\xa1\x20\xfd\x21\xd8\x29\xd4\xbc\xe2\x17\xc2\xad\xb2\xc2\x1b\x2c\x7d\xbe\x65\xb5\xbc\x8c\xc2\x0b\x21\x09\x37\x78\x0b\x02\x4a\x18\x2e\x46\xc6\x1d\x90\x4e\xf0\xc4\x14\x4b\x0d\x93\x1c\x2e\x49\x00\xb6\x6e\x6e\x6f\x2c\x99\xc1\x92\x0d\x96\xfe\xae\x35\xfd\x21\x99\x1f\x8e\xe8\x64\x52\xc1\xb4\x66\xa6\x0c\x13\xb5\x6d\xd5\x14\xa0\x06\x55\xd0\x53\xc6\x5d\x5c\x45\x78\xdb\x1a\x74\x4b\x63\x63\x14\xda\x40\xe8\x5e\x94\x4b\x82\x67\x78\xc0\x86\xdd\x91\xcf\x94\x7d\x08\x50\xaa\xe2\x4c\x72\x80\xeb\xcb\x56\x21\x1b\x6a\xcc\xf4\xc2\x0d\xb6\x2d\x5c\x12\x60\x72\xf7\x53\x96\x5e\x47\x21\xcb\xfc\x09\x79\x91\x26\xb9\x10\x00\xfc\x70\xb3\xb1\x4e\x24\x66\x4f\x6e\x7c\x69\xbd\x97\x02\xf0\x31\x3c\x50\x77\x9f\x0a\xb9\x13\xe4\x51\x71\x40\x48\xdc\x08\x93\x9c\x0a\x81\x94\x8c\xe1\x3b\xc7\x24\xa6\x89\xfb\x04\x93\x25\x7c\xc7\x98\x2c\x68\xe2\x9e\x60\x32\xa1\x77\x71\x34\x9d\x71\x7f\xec\x05\xde\x55\x9a\xc6\x24\x0c\xb2\xcf\xc5\xd7\x64\x19\xc7\xd6\x57\x74\xcb\x42\xf8\x94\x96\xc9\x24\xe7\xd1\xf8\xf3\xca\x4e\x01\xfb\x3e\x3b\x21\x4b\x63\x66\x7f\xf3\x60\xea\x2f\xbc\x5f\xc8\x58\x3f\xc3\x2f\xd5\xce\x95\x38\x0c\x89\x6a\x34\xd9\xed\x22\x48\x64\xb3\x69\xc2\xde\x4e\xc4\xf8\xbb\x43\x83\x54\x51\x7d\x84\xcb\xef\x35\xb5\x28\x92\x50\x18\xf4\x20\x09\x49\x44\x99\x67\x5a\x26\xb9\xf8\xd2\x4d\x92\x31\x65\x1e\x0c\x06\x89\x29\xf3\xc4\x38\x90\x09\x04\xcb\xbd\x65\x21\x09\x29\xf3\x64\x6f\xc9\x4c\xd4\x12\xdd\x24\x57\xe2\x10\x1c\x4c\xc9\x5c\x09\x85\x6e\xea\x05\x18\xf4\xd1\xb2\x39\x44\x90\x69\x4c\xfc\xce\xcd\xbd\x2c\x82\x86\x10\x41\xa2\x19\x44\xb4\x0e\x13\xc9\x26\x44\x59\xd1\x00\x22\x88\x07\x53\x34\xc2\xe4\x42\xb7\xb0\xf0\xa6\xd8\x5d\xba\xd8\x8d\x08\x4a\x82\xeb\xab\x20\x43\xa4\x6e\x07\x02\x4f\xc3\x98\xe3\xb8\x47\x6a\xfd\xa3\x5b\x30\xa9\x60\x03\x55\xa9\xa3\x10\xf4\xcb\xdf\x1d\xd4\x66\x58\x1c\x92\x88\xeb\x72\x7a\xa7\x33\x25\xb2\xfe\x58\x37\xd9\x01\xac\xfd\x78\x83\x87\xe8\x6a\xda\x41\xed\xd9\x88\xce\x08\x1f\xca\x6e\x74\x50\x7b\x32\xa2\x13\xf1\x2d\xbb\xd3\x41\xed\x70\x44\x43\x30\x13\xce\xcd\x7a\x0a\xbc\xa0\xa2\x05\xbe\x52\x17\xaa\x6e\x26\x86\xf1\x6e\x43\xe6\xe4\xae\x20\x93\x0b\x21\x01\xf5\x43\x58\xdf\x72\x09\x4e\x48\x58\x51\xaa\x0b\xe2\x12\x38\x22\x4d\x34\x47\xbd\x0d\xe1\x5e\x40\xc3\x3d\x35\xea\xbf\xc6\x82\xd2\x14\x0e\x9e\xf6\x6c\xe2\xde\x9b\xe2\x35\xf3\x82\xb4\x04\x4c\x5e\x1a\xe8\xba\x44\xca\x49\x89\x94\x81\xcc\x35\x07\xcc\x15\x95\x8e\x6b\x54\xba\x8d\x38\xcd\x9d\x89\xa1\xbf\xb8\x46\x7f\xdc\x10\x83\xf4\xce\x92\x21\x2c\x84\x8e\xad\x93\x9b\x57\x27\x77\x6c\x4f\x6e\xbc\xc1\x24\x5a\xaf\xeb\xd5\xe4\xcd\x80\x5d\xd4\x46\xa4\x82\x42\x27\x1a\xa7\x09\x22\x09\xde\x97\x54\xae\x96\x9c\x8b\x1a\x30\x55\xfa\xeb\x00\x8a\x01\x62\x79\x2c\x89\xe5\x29\x10\x8b\xfb\x5c\x91\xca\x09\xd0\x8a\xdb\xfb\x4e\x92\x4a\xb7\x42\x2a\x3d\x41\x2a\xe2\x7b\x81\x49\x28\x49\x69\x06\xdf\x21\x26\x57\x02\x68\x0f\x93\xb9\x24\x29\xb3\xf6\xc7\x6a\xe4\xae\xbc\x4b\xe3\x84\xb9\xe8\x23\xb9\x8b\xf2\xb7\x0b\x96\xf8\x13\xc3\x19\x35\x19\x4d\xca\xac\x53\x7c\x06\x62\x3b\x7c\x3b\x71\x27\x8a\xc2\x30\xd1\xbf\x46\x18\x78\xf4\xbc\xc4\xa3\x75\x26\x91\x03\x6e\xb5\x61\xe8\x77\x52\xd0\x2f\xbc\xe2\x7c\xc7\x26\x4d\x0d\x8b\x41\x85\xb6\xd4\x02\x28\xaa\x8d\xf0\x06\x93\xe9\xce\xce\xda\x53\x68\xfa\x7b\xd4\x23\xc1\x62\xc1\x82\x4c\xfc\x62\x09\x67\x99\x38\x59\xb3\xdb\x88\x8b\xbf\x30\xcf\x61\x74\x8d\x08\x8f\xe6\x2c\x5d\x72\x7f\xee\x31\xef\x85\xf2\x6e\xbd\xc1\xe4\x9a\xba\x6e\x06\x5b\xf9\xdc\x0b\xbd\x57\x6f\x2e\x5f\xbd\xfb\xf1\xcd\xdf\x46\x54\x7b\xc0\x8e\x92\x29\x22\x59\x91\xf9\xea\x65\x91\xc7\x5a\xd2\x89\x8b\xca\xfe\xd7\x8f\x97\x5b\xab\xfe\xeb\xc7\xcb\x52\x4d\x44\x32\x4b\x33\xb4\x2a\xfb\x17\x86\xe7\x8a\xf2\xd5\x24\x1c\x44\xce\xb7\x59\x41\x18\x3d\xa8\x92\x81\x80\x0d\x18\xed\x16\x57\xae\x82\xb1\x96\xc8\xe5\x33\x5c\x70\x92\xb2\x21\x43\x94\x26\x70\x3d\x08\x68\xea\x0f\xd8\x86\xd2\xe4\xd5\x6d\xc4\xcd\x0f\x53\xe0\x36\xe2\x2c\x44\xa3\x86\xe3\x2a\xc3\x77\xc9\x90\x8d\xa8\xf8\x47\xbe\x90\x55\xf3\x18\x88\x79\x4c\xe4\x5d\x52\xb2\x51\x89\xb9\x48\x84\xe7\x84\xea\x34\x58\xc8\x77\xe6\x62\xd7\x2b\xb0\xab\x1c\x15\xa4\xe4\x66\x4e\x04\xaa\x53\x62\x08\xf5\x8b\x30\x6d\x4a\xa0\x01\x40\x3d\x21\x46\x9a\x4e\xee\x05\x12\xc6\xa9\x09\x24\x0b\x6d\x88\xb7\x11\xaf\xbb\x7b\xd9\x0f\xbf\x5b\xe9\xf8\xc5\xc0\xa9\x7a\x88\x64\x42\xbc\xce\x19\x97\xb4\xd0\x6f\x86\xdc\x6d\x02\x2b\xd5\xc8\x05\x64\x16\xee\x81\x63\x63\x87\xa1\xb2\x82\x55\x17\xbe\x8b\x53\x89\x8e\x65\x6a\x59\x9a\x04\x53\x78\xe6\x24\x17\x2a\x09\x28\x2f\x09\x5f\xdc\x93\xdc\x84\xc4\x94\x5b\x9b\xd7\xc2\xb6\x47\x99\x50\x97\x7b\x9a\x9f\xe8\x2d\x24\x92\xe4\x33\x84\xdd\x89\x20\x09\xbe\x22\x6c\x69\xe1\x68\xdb\xc6\xa6\x61\xa2\x11\x16\x1c\xd8\x3a\x0d\xc8\xb1\x28\xd8\xee\xdc\x8b\xb0\x3b\x21\x73\x6f\x6c\xb1\xa7\xb9\x37\xd3\x89\x9a\x62\x97\x75\x81\xc6\xe2\x5d\xc4\xde\x7c\xef\x36\xe4\x82\xdc\x45\x89\x9f\x91\x82\x48\xb5\x45\x81\xfe\x26\x86\xd8\x4a\x39\x2c\x24\x72\x52\x4c\xea\x6d\xc4\x89\x99\x74\x3b\x55\x01\x81\x09\xb4\xd3\x59\xb8\xb1\x1d\xb3\x98\xd7\xde\x75\x41\xb2\x75\x3d\x64\xa3\xf5\xba\xe0\x5a\x1b\x97\x8b\xed\xce\x8c\xc2\x14\xbb\x33\x17\xbb\x01\xc9\x48\xee\x38\x7a\x3f\x2e\x82\x07\x90\x18\x36\x3a\x79\xfc\x0c\x07\xe2\x87\xaf\xa9\x2d\xdc\x6c\x1f\xba\xda\x78\x4d\xc9\x1d\xdc\x9f\xfb\x95\xfd\x61\x2a\xaf\xd5\xc9\x04\x5b\xdb\x55\x44\x32\x36\xf1\x99\xa2\x61\x3d\xd5\x1b\x4c\x16\xd2\xb3\x1d\xdf\xb8\xb1\x7d\xc4\x3b\xb7\x44\x85\x0b\x72\x5e\x16\x15\xa6\x20\x0f\x9c\xff\xae\x12\xe4\x55\x5e\x9c\xba\x16\x51\x1c\x5b\x9f\xda\x79\xe5\x5e\x07\x22\x52\x78\x11\xb5\xa5\xce\x5f\x96\x39\x8f\x26\x91\x3a\xcc\xa9\xb3\x9d\x7d\xd2\x53\xdb\x7c\x01\x33\xc8\xac\xb2\x07\x9f\xe1\x1e\x22\xbf\x8a\x41\x00\xd9\x15\xfa\x0f\xa7\x33\xdd\x75\x52\xf6\x8f\x0a\xc7\x34\xd3\x25\x38\xaa\x89\xde\xc0\x41\x4d\x71\x98\x2b\xd8\x17\xb3\x90\xcc\x95\x30\x7c\xb1\xb7\x30\x2c\xf0\x40\x04\x01\x16\x88\x20\x8d\x03\x22\xa8\xc0\x00\x11\x64\xda\x87\xd3\x5c\x1c\x97\x58\x50\x90\x85\x85\x2c\x3d\x6d\x90\xa5\x67\xe6\x60\x26\x4e\x2f\xea\x0c\x73\x74\x14\x3b\x8e\x02\xbc\xea\xa8\x37\xf8\x1d\xd4\x8e\x0f\x3b\xf1\x4d\x62\x76\x2b\x56\xe4\x72\x9e\x20\x5f\x7e\xa1\x36\x6b\x23\x9d\x86\x37\xee\x18\x13\x38\xec\x75\xa0\xb3\x7e\x24\x51\xee\xcc\x58\x10\xb2\x4c\x25\x5e\x39\x8e\x3c\x73\x76\xe4\x50\xf8\x79\xb9\x94\x4a\xbd\x72\x9c\x5c\x16\x2b\x46\xc4\x9f\xc8\x14\x18\x17\x5f\x30\x9f\x5d\x27\x85\x79\xf5\xa4\x70\x61\x8b\xff\xd3\x7d\x65\xfb\x65\x8c\x8a\xb5\xf2\x9f\x3c\x07\xca\x3b\x7f\x6b\x2d\xfd\x96\xab\x46\x36\xf6\x80\x33\x9f\xf2\x58\x7f\xef\x89\xaf\x13\x71\x36\x17\xb4\x19\x39\x4e\xe1\xe6\xfe\xab\x4e\x7e\xfb\xcd\x67\x1c\x1d\x72\x32\xab\xcd\xe1\x73\x79\x3c\x13\xe7\xb2\x5c\x4e\x69\x69\x0a\x7b\x95\x29\x7c\x52\x39\x9f\x9d\x88\xf3\x19\x20\x12\x7a\xbf\x14\x07\x9c\x65\x99\x07\x2f\x8b\x33\xd0\x52\x9f\x75\x96\x36\x3b\xd6\x7e\xda\xa1\x22\x50\x83\xa2\x8e\x65\x9d\x3a\x96\x4d\xd4\x61\xb5\xa0\x0d\x11\x4d\x4b\xb3\x4c\x61\x14\x24\xab\x0d\xb9\xfa\xda\x33\x83\xb6\x26\x4e\xf4\xaf\x92\x5c\x1f\x29\xb9\xbe\x10\xea\x83\xfd\x84\xfa\xba\x89\xb2\x25\x6e\xea\xf1\x19\xb0\x9a\x35\x9b\xef\xa2\x3f\x21\xed\xfa\x56\x96\x16\x1d\x76\x9c\x7a\xd1\xb2\x00\xab\x0c\x8c\xeb\x69\x2e\xc3\xf7\x0a\xb5\xc6\x0c\x76\xaf\x65\x17\xa8\x65\x97\xc3\xdb\x13\x25\xb4\xc6\x0f\x5b\x83\x25\x11\x95\x2c\x35\x90\x50\x2c\xc7\x49\xb1\x1c\xe3\x28\xf9\x8c\xc8\x9d\x21\xac\xd8\x8c\xa1\x26\xad\xa8\xc4\x6f\xc7\xb5\xf5\x19\x54\xd7\x67\x4c\xee\x04\x25\xe5\xa4\xc9\xd4\xd5\x26\x50\x2d\x4b\x09\x98\x96\x34\x75\x65\x2d\xe6\x19\xb9\x6a\x5a\xcc\x81\x5a\xcb\x57\x0f\x5a\xcb\xbd\xef\xe4\x62\xee\xc2\x5a\xf6\x12\x37\x50\xca\x16\x58\xcb\x5e\x22\xf6\xb3\xa5\x5c\xc4\x0b\xf8\x5e\xc2\x6a\x16\x8b\x18\xd6\xf2\x73\x58\xcc\x46\x3d\x12\x6b\xe5\x86\xc5\x95\x6c\xb5\x5d\x9a\xb3\x17\x5b\x73\xce\xb3\x28\x80\x07\x4b\xa5\x1c\xb3\x5e\x63\x4b\xab\x07\xaa\x71\xab\xd4\x24\x08\x65\x01\x58\xf8\x4a\x9b\x61\xbe\xa5\x4e\x0b\xbe\x61\x75\x8b\x71\x9b\x78\xbf\x90\x22\x00\x97\x84\x35\x0b\x16\xcc\x0d\xbd\xa0\x18\x74\x5c\xf0\xa7\xb8\xcc\x9f\x2c\x6c\x2c\x3c\x74\x13\x23\x2c\xb8\xc6\x9d\xc4\x13\x29\x9b\x4b\xa4\x11\x2b\xe9\x52\x2a\x5d\x47\x2f\x20\x60\x9a\xec\x91\x28\x58\xe0\x68\xb3\x8b\xbb\x0d\x11\x88\x96\xb5\x38\x4b\x79\xe7\xf4\x56\x9e\x69\x8e\xba\x1b\xbc\x29\xf4\x22\xf3\x1d\xfb\x5e\x69\x5e\x60\xe9\x95\xb1\x02\x91\xb1\x58\xa6\xb1\x5a\x9b\x4b\xa3\xbe\x17\xf2\xa1\x3a\x9a\x82\x26\x1f\x06\x1c\x24\x44\x73\xfc\xbc\x10\xe9\xc5\x19\x6e\x2a\x44\xcb\x20\x64\xe4\xda\x5e\xe0\xab\xdd\x0b\xbc\x84\xa7\x4e\x30\x58\xd6\xa4\xcd\xa9\xa5\xfd\x37\x27\x5b\xe5\x01\xbb\xac\x9a\x35\x78\x09\x91\x33\x08\x59\x85\x65\x9c\x6b\xb4\x26\x82\x65\x2c\x24\xcb\x08\x62\x96\x71\xa4\xfe\x76\x50\x7b\x49\xee\xd4\xef\x30\xca\xe7\x51\x2e\x7d\xa2\xfa\x57\x1b\x4c\xc6\x98\xdc\xd4\x40\xa8\xd0\x78\x24\x81\xfc\x2f\xf4\xbe\xe9\xbd\x20\x77\x57\x81\xea\xbf\x3f\x1d\x5c\x78\xc5\x17\x2a\x54\x72\x22\x43\xff\xee\x6e\x0c\xaf\xca\x6b\xbc\x2a\xf4\x6a\xdc\x6a\x45\xbe\x10\x60\x2a\xf6\xde\x79\x4e\xa2\xc4\x9f\xc9\xcb\x27\xdd\x67\xb3\x28\xae\x37\x98\x5c\x0d\xea\xc0\x8d\x3a\xf8\xae\xa4\x0f\xb6\xc0\xde\x10\x14\x64\x51\xd0\x81\x57\xdd\xc8\x0f\x0c\x87\xbc\xda\x90\x06\x78\x4a\x77\x2d\xeb\xcc\xa2\x30\x64\x42\x02\xe7\xd9\x92\xa1\x0d\x41\x1f\x6f\xc3\xe7\x08\x63\xe5\xd0\x18\x6f\xe6\x25\xb6\x39\x2f\xb3\xcd\x2b\x60\x97\xf3\xff\x80\xf8\x9a\x47\x5f\x1e\x76\x8d\xf1\xb0\x43\x9f\xdc\x3c\xc1\xf7\xe5\xfe\xc2\xab\x5c\x35\xe0\x8c\x69\x9b\xe8\x0a\xd1\x72\x3a\xd3\x2c\x5d\x2e\x10\xc9\x07\xf6\x77\x07\xb5\xa5\xe3\xe8\xdd\x72\x6c\xf4\xeb\xc8\xb1\x82\x7f\xfe\xee\x87\x91\xc4\xfd\xbe\x2b\x36\xbf\xe2\x50\x12\x86\x69\x72\xa9\x6f\xa8\x60\x8b\x70\x87\x68\x91\xb1\x05\x83\x7b\x4b\x69\xe8\x8f\x46\xd8\xb6\x42\xa9\xdd\x4b\x1d\x42\x0c\xb3\x07\x13\x83\xc1\x55\x72\x74\xcd\x9b\xf7\x97\xab\x24\x79\x18\x30\x95\x57\x41\xe1\x3d\xe4\x22\xc8\xc3\xa2\x8c\x7a\x68\x88\xf1\x60\x0f\x62\x89\x6d\x62\x11\x47\xe0\x7a\x9d\x89\x17\x90\x42\x2a\x19\x6f\x30\xf6\x0f\x06\x4c\x4a\xf5\x37\xfd\x99\x45\x90\x21\x99\xed\x26\xc8\xd9\x7f\xee\x64\x65\xd0\x5e\x6a\xd2\x02\x1e\x6c\x9d\x81\x80\x0f\x59\xdf\x57\xf9\xfb\x4a\xca\x75\x10\x47\xd6\xc9\x2a\x4a\x2a\x09\x5f\x7d\x7a\x5b\xc4\x41\x04\x26\x20\xd6\xf1\x4d\x10\xd5\x03\x4e\x6f\xbf\xc2\xf9\x6c\xca\xf8\x3b\x36\x91\xfe\x1c\xdf\xb1\xc9\x96\xd3\x99\x34\xa8\xa7\xea\xef\xaf\x71\x84\x53\xed\x6e\x39\xc1\xe9\xc1\x2d\x1d\xb8\x74\xa2\xab\x43\xf9\x65\x6c\x42\xc1\xae\x47\x62\x57\xb5\x37\xca\x4c\xfd\x8c\x4d\xcc\x93\x80\x5f\xe7\xa8\x06\x76\xba\x42\x5a\x94\x04\x04\x1c\x06\x08\x05\x24\x44\x45\x34\x20\x25\x0a\xfe\xb3\xd0\xfc\x07\xa4\x45\x43\x00\x20\x30\x1a\x01\xb0\x6e\xff\xb1\x95\x13\x49\xf6\x23\x9b\x46\xf0\xba\x3c\x0a\x41\x6e\xd3\xbf\x2c\x5e\x85\x08\x32\x0d\x56\x64\xbb\x0b\x3a\x44\x59\x10\x46\x29\xf0\x32\x36\xfe\x7c\x95\xde\xa2\x91\x79\x5a\x19\xe1\xb3\x4e\x8f\x4c\xa9\x34\xe6\x9e\xbe\xba\x5d\xb8\xe8\xe3\xc7\x97\x88\xa0\x29\xc2\xe4\x9a\x2e\xd7\x6b\x57\x05\x7b\x16\x7c\x2c\x52\xcf\x96\x82\x8c\x05\xf0\x3d\x88\x7c\xc9\x01\x11\x26\x2b\x8a\x26\x69\x36\x07\xfd\x63\x96\xc6\xa8\x3f\x1b\xb8\xab\x36\x45\x1d\x0b\x37\x80\xa8\x6b\xf8\x68\x12\xc5\x4c\xc2\x81\x82\xf0\xe9\x5f\x38\x8e\xbb\xa2\x0b\x79\x05\xa0\x40\x0a\xcc\x3b\xba\xa1\x39\xec\xfa\x8e\x33\x95\x8f\x94\xe4\x27\x36\xd6\xd0\x6e\xe8\xc5\xd8\xfd\xf6\xa7\x98\x05\x39\x6b\x2d\x21\xa2\x27\x6b\x89\x39\x6f\xe9\xf1\x04\xfb\x78\x16\x84\x2d\xf0\x7a\xc2\x5a\x52\x22\x80\xd8\x51\x69\xca\x73\x9e\x05\x8b\x8f\xdf\xe6\x2d\x68\xb0\x95\x47\x5f\xa2\x64\xea\x7d\x2b\xb8\x97\x6c\x4b\xfb\x5c\x56\x2d\xf7\xe5\xcd\x6b\xfd\xdc\x1d\x3b\x0e\x8a\xf2\x8e\x99\xb3\x5c\x7e\xab\xaf\xa3\xa3\xc0\x71\x4a\x43\xd6\x41\xed\x80\xac\xac\x2d\xc4\x55\x43\x45\x29\xbd\x5e\xaf\x97\xcd\x2f\xa4\x97\xa2\xeb\xff\x2f\x77\xd7\xff\xdb\x36\x8e\xec\x7f\x7f\x7f\x45\xac\x07\xf8\x44\x84\xf1\x3a\x6d\xf7\xdd\xad\x72\x3a\xa3\xed\x76\x77\x8b\x6e\xda\x60\x9b\xbd\xbd\x45\x10\x04\xb2\x4d\xdb\x6a\x64\x49\x27\xc9\x4e\xdc\x58\xff\xfb\x03\x87\xdf\x86\x12\xe5\x38\x49\xaf\xbb\x38\xa0\x68\x2c\x8a\xa4\xf8\x65\x38\xc3\xf9\xcc\x70\xb8\x04\x72\x0d\x63\x3e\x3a\x8a\x45\xf6\xfb\xbd\x45\xbf\xaf\xa6\x4f\xf8\xc0\xb6\x85\xd2\xda\xca\xb2\x6e\x0e\x23\x5c\x52\x72\x70\x13\x57\x8b\x83\xe8\x80\x17\xe1\x63\xe6\xfd\xe5\x30\x3e\xfc\x8b\x77\x30\x11\x67\x08\x16\xd1\x9a\x1d\xa8\xaf\x0e\x0e\xd0\xc8\xcb\xa8\x08\xdf\x78\x52\x9c\x80\x83\x9f\x1e\x7e\x3e\xa6\x7a\x28\xcd\x09\xe1\x36\xf2\xb0\x76\x38\xfc\x14\x6c\x16\x8c\xf1\x4e\xfe\x71\x20\x03\x6c\xe0\x81\x38\x9f\x02\x34\x7c\x11\xd1\xd6\x44\xf8\x2c\x15\x02\x0b\xb4\x24\x93\x68\x9e\x10\x25\xa0\x86\xa3\xf7\x6d\xec\x30\x5b\x55\x49\x9c\xb2\x2f\x28\xe1\x5a\x98\x62\x53\xea\xb6\xe5\xf4\xfe\x80\x25\xa8\x8e\xba\xb1\xff\x85\x08\xe5\xde\xb0\xe3\x03\x44\x99\x44\x16\xd3\x90\x5d\x60\xc2\xb9\x04\x59\x06\x24\x23\xa1\x0f\xcb\xa9\x91\x8f\x34\xc8\x33\x23\xfb\x0c\xee\xc1\x65\x9a\x24\x1d\x90\x6a\xc0\xfb\x8c\x2f\x23\x12\x6c\x6d\x2b\x99\x86\x28\x51\x5b\xa8\x07\xed\x68\x7a\x3b\x0a\xa0\xc0\xb6\xbf\x4b\x5c\x43\x7e\x5d\xe9\x6c\x0e\xc0\xf3\xa4\xb4\xc2\xf2\x18\xbe\x76\x8a\xf8\xa0\x6f\x1e\xc2\x36\x77\x71\xab\xdf\xbd\xa1\x51\xbd\x81\x0c\xe6\x21\xdc\xc8\x7a\xe8\xe7\x23\xef\x48\x35\x2c\xf0\x3c\x72\xe8\x01\x3e\xb2\x6e\x49\x00\xbe\x4b\x07\x52\x2e\x6b\x5a\x6e\xb7\x50\x9c\xff\x98\xd3\x1e\x70\xe6\x71\x95\x1e\x79\x87\x0b\x69\x23\xe1\x4f\x72\x7c\x14\x2b\xa8\xcc\x5a\x76\x50\x56\x4d\x68\x42\x4e\x4e\x25\xba\xad\x50\x88\x30\x0c\xc7\xfd\xbe\x3f\x0e\xbd\xc8\x13\x0d\xdf\x84\xe5\x48\x02\x6f\xa0\xbd\x76\x23\xbc\x0d\xc7\x4a\x0b\xdd\x10\xf5\x9e\x2a\xe2\x1c\xa9\x74\x15\x8a\xc0\xb6\xbe\xad\xc1\xb0\xbe\x74\x23\xc3\x16\x63\x4b\xb7\xdb\xcd\xa3\x58\xb7\x82\x1f\xe1\x4e\xe9\xa8\xd8\x78\x14\xbb\xea\xfd\xe1\xdc\xbc\xcd\x00\xe3\xf4\x0b\x33\xe1\x3f\xa1\x12\x51\xae\xc6\xcb\xb8\x0a\xd5\x8f\x3f\x9d\x1a\x21\xdb\xb7\x5b\x8f\x10\x99\xbe\x98\x22\x21\xe6\xfd\xa9\x36\x1f\x51\xcb\xde\x36\x1f\xc1\x53\x60\x77\x29\x4b\x3e\xd6\xb8\xe3\xb0\xe3\x94\x0f\xb4\xe2\xf0\x66\x3c\x69\x45\x3e\x0d\x99\xb4\xf8\xcd\xa3\x1c\xad\x9b\x87\x13\x9a\x58\xa7\xe5\x6b\x23\x36\x2d\x0f\xc7\x34\x4b\xad\x65\x2a\xf7\x95\x89\x24\x99\xfd\xa9\x44\x8a\x49\xe4\x7c\x22\xcd\xf4\x33\x07\x78\x65\xe4\x8e\xc2\xaf\x62\x5a\x8e\x50\x82\xae\x26\x30\x89\xf7\x18\xf1\x27\x3b\x61\xa7\xd9\x43\xc0\x4f\x89\xca\x8b\xaf\x7e\x7d\xb7\x8c\xfd\xa9\xa3\x49\x0d\x22\xbc\x3f\x76\x9a\x12\x29\x09\x2b\x91\x7f\x16\xcf\x9c\xe3\x4c\xf6\x89\x1a\xb8\xde\xc5\x3c\x16\xac\xcc\xb3\xb4\x54\x0e\x22\xf7\xfa\x73\x29\xda\x37\xe5\xce\x65\x8a\x16\x37\x8e\x7a\x40\xc6\xe0\xee\x62\xa7\xeb\xa7\x90\xb4\x1a\x12\x20\x69\x33\x1a\xb0\xf5\x94\x03\x01\xde\x59\x70\x9a\x66\x0a\x5e\x5b\x6b\x26\x2c\x6f\xa6\x07\xd6\xde\xd3\xea\x18\xd8\xdf\x34\x53\x9d\x3f\x74\xb9\xa8\xd6\xe9\x9f\x09\x18\x34\x3d\xd9\x32\x73\xfc\x46\xde\xb9\xe3\x99\x8f\x6b\x86\x6c\xb5\xa7\xc1\xa0\xd7\x2e\xe4\x18\xce\x76\x2b\x07\x19\x78\x80\x05\xd8\xeb\x95\xfa\xd9\xb4\xab\xd7\x9b\x34\x52\x45\x13\x85\xeb\x97\x48\xd7\xad\xed\xf5\x66\x3a\x51\x34\xbc\xd7\x9b\xea\x14\xd1\x07\xbe\x8a\xe9\x26\xdc\xe3\x70\xcd\x5c\x08\x82\x53\xc4\x2e\xd7\x35\x81\xd0\x26\x0b\x41\x05\x2f\xad\xee\x81\x63\xd9\x62\x24\xbf\x86\x46\x2a\x68\x25\xc1\xee\x77\xb7\x8b\xd7\x1d\xd6\xf0\xe9\x46\x1f\xdd\xdc\xec\xc5\x46\xe4\x18\xdb\x8b\xe0\x8f\xb1\xac\x68\x69\x94\x66\x3f\xae\xaa\x8a\x15\xe5\x23\x3c\xbd\x28\x97\xa4\x4f\x12\x32\xfa\xeb\xc8\xf5\x8b\x41\x50\xa2\x07\x48\x19\x5d\x89\xa6\x7e\x90\xf0\x1d\x62\x26\x1e\x79\x69\x76\x34\x97\x25\x84\x19\x73\x32\x12\x7b\x93\x22\xbb\xf1\x02\x8f\xff\xff\x40\xdf\xb0\xc7\x8b\x95\xa7\xcc\xfc\x8b\xe7\x8d\xa9\x7f\x94\x6e\xe0\xd8\xe7\x8b\xf0\xf5\xf6\xf6\x7e\xec\xca\x08\xf4\xe2\x2c\x21\x7e\x82\x97\xc7\x9d\x46\x63\xf6\x2e\x7d\x49\xa8\xb8\x94\x66\x41\xc5\x49\x82\x60\x51\x93\x4b\x42\x97\xc6\x99\xed\xb6\x0c\xc6\xb4\x5c\x06\x63\xba\x9c\x06\x63\x9a\xcc\x83\x31\xbd\x4d\x2c\x10\xee\x3e\x64\x07\xae\x7b\x2b\x85\xef\x59\x51\x44\x9b\x9a\x9e\x62\x81\x2f\x5f\x5f\x78\xb7\xc0\x7d\x97\x1e\xf5\x96\x9c\xfb\x26\x9c\xc4\x6e\x13\xef\xb2\xa6\xf3\x56\x38\x64\xe9\xd7\x0a\xd7\x95\x6e\xb7\x1e\x57\x54\xd3\x11\x1b\x79\x93\x8c\xef\x5b\x26\x00\xab\x56\x81\x17\xad\xaa\x0c\xbf\x3b\x82\x04\x9d\xe1\xd0\x93\x09\xf2\xad\x77\x98\xe2\x77\xde\x61\x5a\xd3\xf5\x83\x57\x9b\xe8\x90\x5e\x6a\xfb\xaf\x30\x51\xd0\x6c\xdf\x56\xe1\xc5\xe5\x49\xec\x0a\xff\x80\x62\x57\x5f\x54\x97\x70\xc5\xa4\x80\x54\x93\x8b\xea\x92\x66\x72\x44\xf4\xad\x5e\xbd\x82\x67\x89\x7c\xe2\x67\xf2\xc2\xcd\x92\x4e\xc2\x78\xe4\x1d\x79\x81\xa7\x3a\x4b\xf3\x70\xee\xc7\xb4\xa2\x99\x44\xb8\x57\x22\xd6\x45\x53\xcd\xf0\xfd\xd2\x9c\x6d\xe6\x39\xd5\xd7\xa4\xe0\xbf\xf0\x80\xa6\xbc\xc3\xc9\x61\x36\x80\x9f\x3c\x23\xfc\x80\xd8\x42\xea\x01\x72\x02\xd5\xc9\xac\xf0\x1b\xf2\xc2\x2f\x9d\x19\x9e\x68\xc9\x75\x48\x22\xae\x79\x94\x57\x68\xca\xe6\xea\x96\x2e\x48\x0d\x77\xed\xad\x64\x24\x83\xed\x56\xbe\x00\xb2\x10\xfa\x66\xee\x50\x9b\x56\xbb\xb5\xa4\xdd\x6c\x28\x07\x36\xb4\x46\x6c\x68\x49\xd7\x36\x1b\x3a\x05\xe6\xb3\x7e\x18\xf3\x39\x7e\xe6\x96\x3b\xcf\x9f\xed\xe7\xce\xf6\xe2\x85\xcb\x37\x55\x60\x4c\xe7\xd1\x18\x9c\xbf\xa2\x74\xd3\xe1\xd6\xe6\x70\x51\xfb\x02\x78\x82\x3c\x68\x66\x1a\x91\x4a\xdd\x5d\xa7\xd4\x34\x55\xc2\x1e\xaf\x1a\x08\x51\x2a\x2e\x0e\x66\x45\xbc\x66\x53\x38\x99\xf4\x43\x91\x2d\x9b\x61\x1a\x28\x0a\x8d\x62\xaa\x85\x10\x23\xfa\x69\x84\x5a\x80\x92\x6b\x79\xf4\xad\xda\x19\x4f\xe0\x41\x48\x40\x26\x79\x40\x6c\xa8\x6e\x41\x50\x00\x14\x15\x24\xfa\x9a\x6d\x4a\x7f\x41\xf8\x0c\x63\xf2\x04\x9f\xaa\x2a\x1a\x2b\xf7\x7e\x0f\x02\x57\xec\x90\x98\xb3\x41\x34\x50\xb1\x05\x54\x78\x6f\xd3\xd9\xb7\x12\x51\x14\x27\x99\x4c\xbf\x6b\x87\xbb\x41\xd6\x24\xfa\x18\x13\x7d\x59\x13\x89\x0a\xc4\x18\x15\xd0\x07\xf8\xf2\x2c\xd9\xcc\xe2\x24\x21\xfe\x98\x08\x04\x80\xee\x81\x18\x80\xa0\xbe\x67\x95\xa4\x83\x29\x78\xaa\xe1\xf0\x97\x7a\xc6\x17\xb5\x84\x6d\x9f\xbe\x7d\x7b\xf1\x02\x79\x85\xde\x29\xf7\xca\xfd\xf7\x6c\x15\x0c\xf7\x44\xfa\x5b\x1b\x9f\xc5\xc5\x03\x4e\xb8\xbc\x9d\x3e\xc2\x55\x1f\xca\x61\x4f\x7d\xc7\xb9\x2d\xec\xb7\xb7\x52\x34\x96\x47\x29\xf3\x68\xa5\x71\xe8\x38\x84\x80\x45\x34\x25\x75\x37\xc1\xe5\x00\xde\x8a\x08\x16\x70\xe7\x18\xf5\x5d\xe2\x12\x91\xe0\xa3\x8f\x02\x88\x38\x80\xfc\xdf\xbe\x6e\x2b\x5f\x13\x37\x68\x46\xb6\xc8\xad\x13\x53\xd5\x1e\x6a\xb8\xb2\x83\xb5\x35\xf2\x4b\xf2\x34\xe7\xaa\x47\x84\x07\x00\x53\x90\x05\x5a\x4e\xe4\x61\x2b\xed\x2a\x3b\xdb\x3f\x62\x80\x72\x58\x55\xda\xb1\x38\x30\x65\x88\xd4\xe9\x64\x35\x8e\xa6\x73\xd0\xd3\xf9\x5f\xa9\x25\x73\x7d\x58\x3c\x43\x05\x98\x19\xce\x94\x49\x04\x0c\x3b\x61\x18\x26\x70\x31\xb5\x17\x79\x2e\x6f\xaa\xa4\x49\x6b\x33\xdb\x51\x0a\x50\xd0\x3d\x14\x8c\xb6\x3d\x02\x26\xbe\x77\x2c\xec\x12\xd0\x96\x3f\x00\xc5\x6a\x51\x4b\x91\xdd\x20\xcd\x73\xc1\x26\x08\x74\x92\x26\x0a\x03\x49\x29\xf3\xd3\xd7\x3d\xd2\x57\x64\x37\x40\x71\xfa\x84\x82\xf0\xe7\x63\x93\x6b\xe9\x7b\x03\x80\xfa\x4c\x52\xdf\x74\x6f\xea\xe3\x7a\x26\xf5\x54\xad\xca\x25\xa6\x09\xae\x5f\xf2\x6d\x52\x17\x5a\x0a\x55\x28\xed\x55\x14\x97\x4e\x2a\xd2\x65\xb4\xe7\xf7\x26\xdb\x6d\x2f\x21\xda\xb9\x43\x3a\xaf\x88\x2f\xc8\xd7\x70\x9b\x88\x6e\x08\xf6\x1a\x9c\xc5\x2c\x99\x96\x22\x74\xea\xac\xdf\xf7\xa7\x7a\x14\xc2\xd2\xe9\x0c\xd8\x24\xdf\x29\x26\xdf\xc5\x9f\xd5\xdb\x94\x6b\xd2\x6d\xcd\xd8\xc1\x0b\xa5\xa6\x3a\xb1\x35\x63\x47\x46\x04\x59\xe2\x32\x48\x21\x5e\x74\xaa\xb8\xed\x55\x22\xcc\xc0\x9d\x0b\xa5\x09\xf9\xce\x6c\x96\xaf\xf6\xd8\xfb\x6f\x12\x3a\x95\x6b\xa9\x13\x4f\xda\x2a\xb3\x34\xaa\xff\xd7\x29\xcd\x62\xe8\x81\x01\x48\xfd\xd9\xd8\x41\x14\x1b\xc8\x15\xb8\xbc\x10\xe8\x15\x1d\xef\xcd\x04\xa4\x81\xbf\xa1\x63\x1b\x5e\x20\x31\xe1\x59\x56\x78\x40\x1c\x17\x97\x27\xe5\x83\x14\xef\xb1\x4b\xf1\xa6\x91\x54\xbd\x67\x0d\xd5\x3b\xb2\x55\xef\x93\x38\x9c\xfb\x91\x51\xbd\xe9\xb2\xad\x7a\xaf\x90\xea\x1d\x7f\x75\xd5\x1b\xb6\x81\x5c\xf5\x3e\xd0\x4d\xd5\xad\x14\x37\xdc\x03\x8b\x38\x0d\x9b\x4d\x56\x2c\xb4\x2c\x8e\xb2\x34\xd9\x28\xf0\x1a\x31\x49\x49\xd1\xbd\x5e\xde\xef\x03\x1d\xc1\x3b\x48\x3d\xf2\x0e\x73\xba\xa4\xbd\xde\x52\xdf\x1f\xdd\xc8\xf1\x30\xc3\xd4\xa2\x5a\x26\x3f\x64\x45\xb0\xa8\xe9\xb8\x1d\x3d\xea\xcb\xeb\xf0\x5f\x04\x3a\x9e\x25\xab\x78\xfa\x95\x0e\x08\xc3\xb7\x1e\xa1\x74\x40\xb9\xdd\xc7\x83\x63\xce\x2d\xd2\x2a\x8a\x53\x56\x1c\x89\xfc\x81\x49\xf9\x3a\xa7\x84\x1f\x2d\xef\x86\x30\x91\x83\x54\xc4\xc4\x84\x19\xb3\xce\x16\xfe\x55\x02\xc1\xcf\x04\x16\x73\xdc\xc0\x62\xbe\x15\xd2\xee\xf8\x6f\x10\xc7\xc9\x7f\x3e\x84\x30\x4e\x83\xd4\x5f\x88\x38\x4e\xdf\x7d\x4b\xe8\x29\x24\x2c\x09\x9d\x73\x0a\xf8\x8e\xd0\x35\x24\xcc\x09\xdd\xf0\xa2\x43\x42\x5f\x42\xc2\x86\xd0\x1b\x5e\xc7\x73\x42\x3f\x43\xc2\x0d\xa1\x57\x3c\xc7\x31\xa1\x1f\x20\xe1\x8a\xd0\x73\xfe\xd1\xbf\x11\x7a\xcb\x2b\xff\x3f\x42\xdf\xc3\x8b\x5b\xe2\x13\xff\xae\x04\xd7\x0a\x11\xc2\xf9\x7d\x36\x65\xea\x96\x91\xc2\x91\x58\x13\xfa\x73\xe8\x67\x46\xc7\x77\x04\x17\x38\xe8\x08\xa2\x58\x13\xfa\xa6\x19\xfa\xd5\x79\x75\x34\xbe\x42\xac\x15\x8c\x34\x05\x37\x65\x51\x75\xf5\x8f\xe3\x51\x75\x74\x1c\x0c\x09\x2d\xc2\xe3\x93\xe2\xef\x32\x18\xfe\x45\x71\x74\x8c\x43\x93\x16\x26\x34\xa9\x0c\x45\x2a\xbb\x98\x92\xba\xa6\x1f\x43\xd7\x75\xf1\xb4\xca\xf2\x60\x48\x13\x36\xab\x82\x21\xcd\xf2\x68\x12\x57\x9b\x60\x48\xe1\x1e\x6f\x56\xc0\x05\x1c\xa5\xbc\xa3\xbd\xa6\xff\x0e\xef\x6a\xfa\xba\xfb\xf6\x29\x1c\xb5\xbd\xd5\xa5\x02\x75\x29\xe5\xf4\x35\x3c\xc9\xfe\x9e\x9e\x64\x87\x87\xa4\xb8\xc8\x70\x47\x32\x14\xd9\x78\x67\x40\xe3\x82\x48\x8c\x8d\x7e\xf0\x89\xff\x92\x2f\x38\x42\x3d\xc0\x79\x3c\x7a\x37\x8d\xaa\x48\xcd\x32\xdc\xd3\xc0\x6b\x37\x33\x8c\x8b\xe4\x59\x9e\xb3\xe2\xad\x8c\x24\xee\x51\x91\xc9\x95\x87\x53\x89\x47\xc5\xc1\x28\xfc\x36\x2a\x8a\xec\xa6\xeb\x65\xc9\xaa\x33\x54\xda\xc2\x0a\xe0\x3a\x7e\x53\xb7\x8c\x58\xf1\x46\x5c\x81\x86\xfc\x7b\x04\x14\x68\x32\x86\x8c\x56\x83\x15\x04\x17\x3d\xb3\x5a\xef\x8b\xb8\x52\x8d\xef\xbf\x34\xed\xf3\xed\xc8\xce\xba\xe5\x10\xa7\xd9\x2a\x27\xaa\x07\xd0\xf1\x34\x9b\xc6\xb3\x98\x15\x1e\xbd\x63\xa9\xd0\x93\x7a\x43\xb9\xc7\xfc\x6e\x38\xa4\x33\x3b\x60\xb4\xf0\x71\x82\xc3\x01\x62\xdc\xf5\x8c\xa2\x00\x4b\x30\x41\x0c\xcd\x4d\x5a\x13\xca\xea\xc6\xdc\xcc\x59\xf5\x41\xdd\x5c\xd4\x06\xbf\xee\x4c\x69\x35\x62\x3a\x85\x82\x2b\x6a\xf9\x46\xb6\x57\xbd\xb7\x52\xa9\x5a\x14\x70\x4d\xa4\xa9\x03\xa7\xd2\xa5\xec\x7c\x19\xac\x7d\xe0\xc3\x2a\x9b\x7e\x41\xef\x60\x18\x3b\xdf\xcb\x88\xe8\x38\x49\x0c\x3c\x1a\xce\x1e\x9a\x0b\xca\x12\xd5\x29\x9d\x56\x13\x0a\xcb\xe0\x23\x84\xfc\x31\xe5\x8e\x6b\xea\x98\xa8\x40\x51\x87\x95\x5a\xc3\xa6\xa5\x39\xbe\x82\x80\xa0\x5e\x27\xc0\x88\xe9\x0e\x2e\xd3\x07\x24\x95\x4f\xdf\x08\x3a\xac\x19\x0b\x7e\x25\xb7\x51\xa5\x2c\xab\x87\x94\x8f\x0e\xca\x05\x91\x8a\x4a\x12\x7c\xec\x6c\xd7\x99\x9a\xcf\x8e\xb6\xa1\xd6\xa8\x87\xf6\x72\x6f\xd5\x0d\x0b\x62\x57\x97\xf5\xb8\x37\x7a\x6c\xb5\x3e\xd2\xb5\x94\xc1\xbf\x1d\x5f\xf9\xb0\xaa\x3e\xcc\x5e\x65\xab\x74\x1a\x15\x31\x2b\x3f\x0a\xd6\xb4\x6f\x37\xe0\x13\x8b\x18\xc9\x25\xfb\x03\x53\x56\x56\x45\xb6\x39\x6b\x70\x2f\x5c\xbd\x9a\x3a\xf5\xb6\xdf\xf7\x9b\x49\x03\x59\x8d\x6f\x18\x8c\x7a\x05\x41\xaa\x5a\xec\xc4\xc5\x75\x9a\x5f\x75\x36\xcd\x57\x01\x9b\x45\x4d\x88\xaa\xa8\x74\x88\xcc\xc1\x2b\x51\x5e\xb4\x20\x96\xc0\x49\xda\xef\xbb\x9a\x0d\xe2\xe4\x7c\x10\xf9\x29\x65\xc2\x48\x22\xd9\x84\x4f\x1c\x1c\x70\xb2\x60\x7c\xd3\x26\xa2\x31\xdf\x37\x44\xad\x11\xb2\x8b\xfb\xe2\x66\x96\xfa\xb3\x7f\xbf\x47\x27\x0e\x78\xed\x8c\xf1\x8d\x5c\x39\x35\xd5\x82\xdd\x46\x3f\x09\x11\xd7\x31\x3a\x90\xb5\x99\x68\x95\xb0\x58\x99\xa8\x19\xa7\x88\x00\xd3\x6e\x41\x82\x3d\xb1\x2d\xae\x09\xd5\x58\x29\xca\x27\xb5\x45\x6c\x1d\x35\x8c\x1c\xd9\x07\x82\xa5\x59\xb7\x7e\x95\xba\x15\x0d\x9a\x15\x40\x51\x33\x2f\x90\x30\x1a\x46\x64\xf8\xd1\xc9\xb2\xa9\xad\x39\xa5\xe9\xbd\x81\xbf\xdf\xf8\x0e\xcf\x5b\x29\xf0\xe1\x4d\x07\xd9\xbb\xbd\x6b\x25\x91\xfc\xec\x3b\x62\x74\x13\x1f\x3c\x91\x54\x48\x42\xb3\x7d\xa0\x22\xe2\x1b\xbc\xb0\x59\xb7\x4f\x90\x28\xb5\xdf\x6b\x16\xea\x13\x9a\xd9\x2c\x49\xe7\x74\xb1\x2a\x9f\x50\x7b\x98\x02\xc7\xd0\x51\x60\x82\xa0\x70\x04\x56\xa3\xf5\x9e\xa3\xd1\x66\xc3\x7a\x7d\x2e\x8e\xc0\xa0\x96\x59\x06\x35\x9f\xf8\xaf\xa9\x87\x55\x19\x8f\x22\x49\xef\x8d\xb3\xaa\xca\x96\x5e\x43\xc0\xf7\xd0\x6e\x5e\xae\x04\xbd\xff\xb3\xa4\x7c\xef\xb8\x26\x27\xe7\x83\xc8\xd0\x44\x69\x4c\x55\xd7\x58\x6b\x6c\xd6\x47\xd3\xf0\xd4\x17\x4a\x61\xf3\x95\x67\x2e\x60\xcc\x1a\x7a\xdc\xfb\xfb\x8c\x45\x05\xfe\x14\x1f\xb1\xae\x9a\x5e\x53\x10\xb8\x1d\xdd\xe4\x04\x3f\xaa\x82\xa2\xa6\x22\xb8\x28\xc4\x49\xfd\x2d\x84\x2b\x77\xe8\xf7\xa0\x0c\xfd\x46\x4e\xd0\x50\x03\xe7\x7a\x25\x74\xef\x33\x11\x05\x06\x92\x7e\x41\x30\x61\x2e\x61\x42\x7c\xe8\x5d\x2c\x46\x13\x00\x26\x47\x16\x20\x3d\x4b\xae\xc4\xb3\x82\xcd\xe2\x5b\xfc\x0a\x88\xc7\x59\x13\x17\x7c\x40\x2a\x90\xa8\x11\xf9\x57\x83\x4f\x2a\xfc\x8a\x4a\xb7\xce\xe3\x6b\x4c\x20\x47\x61\xa1\x04\x06\x9a\xdb\x48\x2a\x6e\xa0\x46\x52\x2f\x09\x9d\x45\x49\x32\x8e\x26\xd7\x67\x56\x57\xba\x0b\x02\x56\xc9\xcb\x25\x71\x6e\xda\xaa\x95\xfc\xe0\xd5\xe0\x9a\x56\x51\x31\x67\x15\xff\x89\x1b\x6b\x36\x96\xa8\xb1\x63\xbd\x06\xd5\xec\x76\x7f\xfe\xd5\x20\x92\x27\xd4\xb2\x92\x4d\x21\xa3\x08\x26\x1c\x4d\x19\x1a\x36\x13\x7a\x26\xd7\x38\xf1\x99\x15\x1e\xa7\xa6\xff\x0a\xef\xda\x5f\xf6\x44\xd8\xdd\xb3\xa8\x80\xfd\x17\x5a\x82\x00\x86\xa2\x39\xea\x1d\x53\x13\x7b\x58\x8e\xf7\xd0\x31\x94\x1e\x1f\x25\x4f\x8c\x95\xb8\xec\x47\x8e\x92\x37\xce\xa6\x1b\x0f\x0d\xc9\x5d\x6d\x3a\x86\xb8\x66\xbd\x23\xa2\xce\x54\xe2\x24\x67\x8d\x90\x2b\xa4\xa6\x9f\x9e\xea\xc5\xb1\x88\xd2\x69\xc2\x74\x47\x5e\x2f\xa2\x74\xce\xc2\xd4\x9d\x6e\x1d\x06\x99\xa0\x33\x23\xac\x3a\x07\x4a\x00\x85\xab\xf1\xdc\x55\x68\xde\x28\x34\xdf\xb3\x50\xe7\x21\x16\x94\x4d\x8d\x70\x68\x7e\x76\xb6\x5d\xb8\xb1\xc8\x59\x56\x11\x6c\x6b\x73\xc4\x25\x79\xb4\xcf\x8a\x8a\x39\xd4\xef\xf7\x54\xbd\x23\xf5\x21\xf5\x4e\xfa\xa9\x3c\x76\xb3\x25\x77\x5a\x57\x52\xb1\x92\x9b\x00\xf5\x28\xe4\x2e\x1f\xcf\xb2\xfb\xcd\xc5\xf0\x72\xe7\x4b\x71\x28\x7f\x8f\x2c\x62\x43\x60\xd3\x42\xeb\xcc\x4f\x65\xde\xc1\x71\x9e\xb9\x3b\xbb\x7d\x71\x88\x29\x24\x8b\xbc\x56\xeb\xab\xa3\x94\x9c\xba\x57\x83\x19\xb1\xb6\x21\xaa\x18\xa9\x69\xf7\xb1\x24\xd5\x47\xd1\x40\xf7\x02\x71\x20\x67\xae\x4d\x99\xbd\xe5\x55\x5b\x34\x0d\x15\x18\xc6\x83\x72\x01\x5a\x80\x69\xb8\x39\xd9\xe6\x88\x29\x7f\xad\x62\xe0\x99\x5a\x35\xc3\xaa\xd1\x0e\x4d\x5d\x82\x7c\xbf\xf7\x93\xc6\x90\x53\x1c\x82\x25\x33\x11\xb4\x22\xc0\x96\xe3\x9c\x4e\xe0\xc6\x68\x98\x1b\xaa\xc2\x57\x13\x30\xf1\xb4\x18\x24\x9c\x49\x6d\xc8\x4b\x11\x71\xc1\x12\x94\x60\x0c\xd2\xdc\x17\x4e\x0b\x34\x84\x32\x0a\xeb\xea\x33\x33\xa1\x94\x19\x08\x82\x40\xf0\xae\x16\xd7\xa7\x6b\x5e\x42\x0d\x1b\x15\xe1\xbd\x08\xdd\xd8\x71\xbf\x50\x28\x2d\x05\x93\x77\x44\x95\x56\x01\xbb\x04\xe7\xf7\xc4\x38\x78\x54\xd9\x62\xa8\xd7\x1a\x04\x11\xe5\x01\x0f\x81\x27\x21\x36\x1c\x34\x4c\x77\xdf\x53\xe8\x1c\x7e\xab\xa2\x86\x29\xa8\x9d\x7a\xba\xdf\x70\xf6\xa1\xd1\x69\x71\x53\x36\xf4\xd8\x84\x0e\x43\xe1\xc4\x2e\x51\xe4\xaf\x57\x83\x39\xf1\x4b\x9f\xf8\xa2\x4d\x70\x21\x6d\x45\xe8\x67\xa7\xba\xb1\xdd\xbe\x44\x90\xd4\x55\xf8\x79\x50\xe6\x49\x5c\xf9\xde\x91\x47\x2e\x86\x97\xf4\x43\xab\xd6\x31\x5d\x8d\x56\x60\x53\xbc\x0a\xae\xac\xc0\x8d\x7a\x84\x09\x3d\x0f\x2d\x99\x27\x25\xae\xfa\x3b\xa9\x85\x84\xd5\x28\x51\x44\xc7\x6c\x11\xad\xe3\xac\x08\x92\x9a\xca\x53\xda\x1f\xd6\xac\x98\x25\xd9\x4d\xe0\x90\xfc\x73\x85\x2a\x05\x0e\xc0\xef\x5b\x00\xfc\xa0\x61\xce\x55\x5f\xd7\xf4\x94\xd0\xdb\xf0\x1e\xb1\x4c\x37\x38\x12\xda\x7a\xb4\x71\x47\x42\xe3\x2f\x1c\x91\xd0\xe2\x96\xbd\xe4\xac\x1d\x09\xed\x96\xbe\x84\xa0\xe2\x59\x2b\xe8\xb7\xa4\x6e\xb8\xd7\xa1\x26\xb4\x5d\xdb\x35\x6d\xef\xb3\x1b\x4c\x16\xed\x56\xce\xd1\xe6\xe8\x73\xed\xf6\x07\x2b\xd8\x0c\xee\x74\x13\xd1\xb9\x33\xbc\xd0\x81\x57\x18\x45\xaa\xbb\x8f\xc2\x7b\x5c\xe8\x59\x52\xaf\x2a\x90\x75\xec\x03\xf5\x6e\x8f\x74\xad\x5e\x90\xd5\x34\xa5\xbd\x45\xbf\xef\xa8\x49\x9e\x05\xe7\x55\x45\xd0\x36\x1c\xd4\x4d\x54\x2d\xf1\x39\xe1\x81\xb6\x5b\x8d\x55\xbc\xd5\x08\x29\xbf\x43\xb8\x88\xf1\x23\x8a\x1d\xc3\x72\x91\x42\x5f\x79\xa7\xd8\x31\x4d\xf5\x22\x1e\xc9\x73\xab\x98\x4f\xfb\x24\x18\xeb\xbe\x9d\x65\x45\x15\x25\xfe\xee\x61\x93\x6a\xe8\x2f\x6c\x56\x53\x67\x85\xb2\x65\x4d\xf1\xe9\xcb\xc0\x74\xd2\x03\xd4\x3a\xbf\xfd\x09\x99\xe1\x7e\xa1\x9f\x6c\x33\xdc\xbf\x60\xd3\xf2\x36\xfc\x44\x7f\x0d\xef\xf2\xb6\x56\xe1\xbf\x1a\x8c\x49\x87\x8a\x60\xab\x11\x0d\xc5\xc7\x38\x2d\xe9\x14\x87\xd6\xf4\x70\x85\x62\xe2\xd2\xc7\x00\xef\x70\x6a\x6a\xdd\x3a\xdc\x0e\x45\xd1\xa9\xa8\xc9\x00\x9f\x5a\x8f\xe1\x5a\x06\x00\xa0\xba\x33\x3b\x54\xc9\x29\x4b\xa2\x8d\xb3\x6f\xd2\x31\x66\x21\x47\x45\xfa\xcc\xe8\x8a\xc5\x73\x4d\x6c\x35\xd0\xa9\x9c\x3d\x4c\x93\xd4\x8e\x8f\x8e\xfc\xd0\xbf\x46\x41\x75\xfe\x90\x56\x45\x3c\x9f\xb3\x02\xf7\xce\x56\xe9\x2c\x5d\xb3\xa6\x3f\x85\xa2\x77\x43\xd1\xa9\x61\x4d\x7f\x08\xd1\x5d\x30\x96\x9a\xa6\xc7\xb4\x77\x2c\x87\xec\x27\x35\xee\x96\x9a\xa5\xda\xe0\x4d\x92\x78\x72\xad\x03\x99\x22\xaf\xde\x7f\xda\x8e\xe7\xfd\xbe\xcf\xc4\x05\x80\x95\x5a\xb2\x25\xc4\x13\xe6\xd4\xff\xfb\x53\xf5\xaf\x2b\xb1\x3e\x00\x92\xa6\xe9\x20\x9a\x4e\x05\xa7\x11\x36\xca\xb0\x95\xd2\xa5\xc6\x08\x81\xf5\xbd\xbc\x7d\x5c\x05\x4b\x71\xa4\x76\x55\x20\xae\xf6\x6e\x7c\xbc\x9d\xd8\x55\x5c\x0c\x75\xa8\x7e\x74\x6a\x5b\x8b\xec\xe6\xb7\xb8\x5a\x7c\xcf\x67\x28\x6c\x3c\x77\xf6\x2d\x9e\x32\x5c\xc8\x7a\xee\x56\x01\x4f\xb3\x55\xc9\xf8\x66\xe0\x3c\xcb\x92\x2a\xce\x5f\x0b\xbf\xfb\x70\xc7\xbb\x7b\x2a\xfb\x99\x45\x6b\xd6\x55\x9b\xe3\xe5\xae\x51\x90\x9d\xdf\xd5\x67\xd9\xd5\xee\x46\xbd\x29\x27\xef\xd8\xe6\xfb\xec\x26\x0d\xed\xc7\x3f\x81\xfa\x3c\xb8\x8a\x4b\xb8\x0b\x93\x4d\xc3\xde\xb1\x43\x9d\xde\x57\xe5\x75\x5f\xa8\x89\x6b\x1f\x52\x84\xf6\x0b\x62\xdd\x0f\xf8\x6e\xd5\x74\xac\x24\x67\x93\xec\x95\x96\x35\x49\x58\x54\x7c\x5c\x64\x37\xe7\x62\xe7\x66\xa5\xff\x14\x4f\x99\x4e\xaf\xff\x93\x70\xc1\x4e\xfa\x76\xeb\x8b\x92\xef\xe9\xc0\x71\xf2\x24\x34\xf9\xc7\xd1\x31\xff\xa0\xc9\xa8\x18\xa9\x32\x73\x5c\x2d\x4c\xb7\xd4\x9d\xa0\xad\xde\xb6\x37\x3d\x76\xa5\x2a\x4d\xec\x34\x81\x45\xf8\x84\xd4\xbb\x97\x56\x47\xc0\x90\xc7\xf7\xa4\x34\x13\x87\x7b\x62\xcf\x27\x1b\xe4\xac\x28\xe3\x52\xf7\x0a\x0f\x40\xc8\xb7\x82\x32\xab\x50\x14\xf4\x02\x05\xc6\xce\xcc\x26\x0b\xb8\x93\x0f\xea\x9c\x47\x54\x5f\xd1\x8a\xc5\xbd\xf3\xde\xc0\xc5\xf5\x70\x8d\xc7\xe0\x9a\x6d\x64\xeb\x78\x59\x19\x43\xca\x01\x56\x88\xfd\xb7\xc3\x74\x73\xc2\x65\x56\xd7\xed\xc8\x8c\x04\xea\x7a\xf6\x10\x5f\xad\xee\x57\x83\xc9\xaa\x28\x00\xf7\x50\x5b\xc5\xab\x3c\xcb\xf9\xd8\x6a\xa8\x46\x70\xe0\x9d\x8d\x00\xd9\xab\x5c\xa1\xdb\x1f\x1a\xc5\xe5\xfb\xe8\xbd\x5f\x5d\xb0\x4b\x32\xfa\xe9\x82\x5d\x06\x15\xfc\x57\x2b\xb6\xd8\x15\x25\x06\x08\x68\xbb\xf5\x77\x2e\x43\x49\x59\x32\xda\xbf\x2d\x6c\xda\x38\xcf\xfe\x84\x8d\x29\xa7\x45\x02\x86\x8d\x77\x90\x00\xdc\x1c\x27\x9a\x04\x6c\x7d\x67\x17\x15\xb1\x76\x35\xc5\xee\xa2\x2d\x1a\xdb\x5d\xdc\x8b\xe2\xbf\x1c\x95\x03\xd3\x6d\x7c\x00\xf3\x23\x78\x67\xd5\x8c\x5b\xe8\x1a\x6c\x15\x9b\x2a\x6d\x0d\xc8\x3d\xf5\xa2\xee\xb8\x7a\x68\xea\x75\xed\x9c\x76\x52\xb8\xe2\x3f\x12\xf0\x38\xf0\xc8\x49\x65\x98\x51\xc2\xe6\xd1\x64\x23\xb9\x91\xef\xa0\xe0\x7f\x1a\xd0\x4c\x34\x4b\x29\x8e\xa3\x07\xf3\x5b\x9b\x6e\x7a\xad\x9a\xe5\xf2\x25\x23\x3d\x89\x9a\x56\x38\x1f\x70\x34\x4e\x13\x34\xce\x48\x02\xd4\x3f\xb1\x6d\x16\xdd\xeb\xea\xca\x23\x44\x07\x6e\xc6\xae\xe6\xb6\xda\x56\x3b\x76\xcd\x88\x32\xec\x2b\xea\xe5\xd4\xb5\xa1\x4f\xd7\xa4\x1e\x1d\x03\x3b\xd6\x3d\x5f\x46\xe9\x2a\x4a\x3c\xde\x3b\x9f\xb9\x06\x64\xbb\x65\x4e\x3a\x20\xfd\xfe\x54\x92\x17\x6f\xaa\x65\xdd\x57\xe5\x29\x82\x9d\x2c\x5a\xa4\xbd\x21\xb1\x46\x97\xeb\x23\x6e\xd9\xe7\xe3\x6c\x8e\x2f\x2d\xb9\xa0\x15\xf1\x4f\xda\x63\xd9\xfa\x4e\x67\x05\xab\x4a\xb5\x16\xcf\x10\x2f\xcf\x85\xa7\x6e\x19\xd8\x04\xf6\x6c\x19\xe4\x8d\x53\xd4\xae\x7d\x9a\x03\xa5\xec\xe6\x88\x56\xdc\x53\xee\x9a\x6d\xa6\xd9\x8d\xfa\x1a\x16\xca\x50\x9c\xd4\xb5\x5b\x1f\x6a\xed\x1c\xf5\x84\x58\x1f\x14\x25\x9f\x36\xf6\x3b\xea\xe8\x1e\xfe\x3d\xaa\xd8\xdd\xf5\x3d\x2a\xd8\x67\xa6\xba\x0b\xba\x26\x4b\x2f\x0d\x67\xb1\x3d\x56\x07\x9f\x2d\xbc\xf7\x6f\x9b\x38\x76\x23\x76\x27\x4c\xb9\xd4\x34\x26\xb4\x5b\x0d\x50\x5a\x3b\x13\x8f\x0d\xfe\x23\x77\xb6\x52\x25\xee\x32\x15\xd9\xa1\x20\xb7\xdb\x5e\x43\x1b\x19\x31\xd7\x85\x47\x98\x69\xeb\xad\xc0\x4e\x73\xd1\x3d\x86\xa1\x06\xb3\xec\xb5\x36\xf2\x44\x69\x65\xab\x24\x39\x71\x28\x5a\x27\x0f\x3e\x44\x6f\x43\x6e\x32\xac\x1e\x48\x91\xd2\x58\x99\x26\x96\x25\x28\x71\x5a\x74\x2c\xa3\x12\x98\x93\x9a\x26\xa6\x59\xdb\xc4\x34\x75\x18\x95\xc4\x45\xef\xca\x96\x34\x0e\x91\x35\x09\x0c\x4e\xf2\xec\xcc\xa9\xba\x14\x66\xae\x4c\x60\x6b\x43\x5b\xdd\xb1\x00\x7e\x25\xc4\xdc\x1c\x03\xf6\x90\x29\x4d\xd1\xad\x2d\x90\x94\xa1\x33\x13\x6d\xa0\xf7\x2d\x3e\x22\x51\x29\x50\x35\x52\xc8\x69\x89\xb0\xb0\x89\x03\x19\x45\x00\x63\xb0\x6a\x83\x8d\x4d\xa8\x73\xd6\x42\x38\x37\x08\xb1\x5d\x20\x0c\x71\xac\xa0\xc3\x25\x42\x3e\x53\xe3\xe1\x60\x5b\x25\x00\x6b\x3b\x15\x28\xdf\xbc\x76\x18\x27\x04\x9e\xdd\x30\x76\xac\x5b\x00\xb7\x75\xfd\x8b\x88\x31\x57\x09\xd5\x51\x85\xab\x55\x31\x60\x4b\x8a\xf4\x64\xd5\x9a\x0e\xc5\x99\x62\x55\xd4\xca\xeb\x50\x4e\x69\x96\x4a\xc6\x19\xb4\x58\x29\x8a\xa7\x60\xa1\xe9\xbf\x23\x34\xfd\x57\xfa\xbb\x8d\xa6\xff\x00\xeb\xe8\xc7\xf0\x77\xfa\xce\xb1\xfd\x04\xb3\x9c\xe9\xa3\xd0\x28\x68\x6a\xa5\x1f\xc1\xba\xf2\x68\x73\x81\xed\x20\xab\x1f\x9b\x63\xcd\xe8\x5d\x73\xea\xab\x26\x44\x9e\xc2\x09\x9d\x77\x56\x67\xde\x35\x4e\xe8\x20\x97\x9a\x2a\xcb\x3d\x84\xce\x0e\x5b\xe4\xe7\x8d\xcb\x23\xdd\x35\x1b\x9e\x3d\x80\xed\xcd\x81\xd8\x4a\xd4\x27\xd5\x20\x0a\xdf\xd5\x97\x97\xe4\xe4\x7f\xbe\xf9\xe6\x7f\x0f\xca\x6c\x55\x4c\xd8\x69\x94\xe7\x71\x3a\xff\xf5\x97\x9f\xc3\x67\x83\x17\xcf\x66\xdf\xfe\x35\x9a\x3d\x1f\x4c\x16\xab\xf4\x7a\xf0\xa9\x1c\x2c\xa3\xfc\xff\x03\x00\x00\xff\xff\xfa\xca\xff\xb4\x72\x79\x0f\x00") +var _pkgUiStaticReactStaticJs2926cad18ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x93\xdb\x36\xb2\x30\xfa\x57\x24\xae\x3f\x86\xb0\x20\x0e\x29\x69\x5e\x94\x61\x95\xd7\x76\x36\xc9\xf1\x24\x7b\x12\x6f\xb2\x67\x39\x74\x3e\x8e\x08\x8d\xb8\xa1\x48\x85\x84\xc6\xf3\xa0\xf6\xb7\xdf\xea\x06\x48\x82\x14\x65\x67\xf3\xe5\x3b\xe7\xd6\xad\x5b\x65\x8f\x48\x10\xcf\x46\xa3\xd1\xe8\x17\x2c\xb1\x8e\x0b\xfb\x23\xbf\xd9\x86\xcb\x5f\xbe\x29\xb2\x74\x7b\x9b\x87\xdb\x35\xeb\x4f\x2e\x4b\x3f\x20\xf6\x76\x57\xac\x2d\xdf\x9f\x04\xd4\x5f\xed\xd2\xa5\x88\xb3\xd4\xe2\x54\xd0\x94\x3c\x19\xbb\x82\x0f\x0a\x91\xc7\x4b\x61\xcc\xb9\xcd\xef\xb7\x59\x2e\x0a\x96\x5a\xae\xe3\x92\x3d\xed\x66\x6f\xe7\x38\x23\x56\x4f\x9e\x56\x95\xa9\x1d\x59\x82\x1a\xb7\x06\xb5\xea\x7c\xe4\x29\xe7\x62\x97\xa7\x83\xe5\x9e\x10\xaa\x72\xac\x7b\x73\x24\x5a\x8e\xb8\x37\xc7\x4e\xcb\x91\xf4\xe6\x58\x69\x39\xc2\xde\x1c\x6b\x2d\xc7\x2f\xbd\x39\x6e\xb4\x1c\xff\xec\xcd\xb1\xd1\x72\xf0\xde\x1c\x57\x5a\x8e\x65\x6f\x8e\x5b\x2d\x47\xd4\x9b\xe3\x4e\xcb\x71\xd3\x9b\xe3\x41\xcb\xb1\xea\xcd\xf1\xb8\x27\x64\x7e\x17\xe6\x83\x9c\x66\x2c\xb5\x2e\xce\x09\x8d\x59\x6a\xa7\x56\x46\x68\x08\xf3\x4a\x68\x81\xef\x21\x99\x57\xa5\x07\x4b\x98\xdd\xa6\x1b\x59\x1c\x0d\x1c\xc6\x18\x37\x4d\x8b\x33\xc3\x20\xb4\x4e\x12\xa6\x69\x09\x96\x13\x2a\x16\xdc\x2e\xb6\x49\x2c\x2c\x63\x60\x10\x7b\x13\x6e\xad\xa6\x37\xbc\xae\x4b\xf8\x3c\x28\x4b\xbe\x27\xc4\xfe\x67\x16\xa7\x98\xd9\xe3\xfb\xba\xe5\x44\xb6\x0c\x1d\x4e\xd9\xd3\x7e\xae\x8a\x7d\x77\xf3\x4f\xbe\x14\xf6\x2f\xfc\xa1\xb0\x38\xb1\x57\x59\xfe\x36\x5c\xae\xb5\x16\x72\xf2\x34\x76\xa1\x3f\x76\x9c\x46\xfc\xfe\xbb\x95\x95\x13\xd3\xb4\x52\x3f\x0f\x18\xf7\xf3\x80\x20\xa0\x9a\x76\x76\xb2\x9d\x55\x96\x5b\xd8\x16\xcd\xd9\xab\x3c\x0f\x1f\xec\xb8\xc0\x5f\x4b\x90\x85\xf0\x7c\x11\xd0\x8c\xe5\x76\xc2\xd3\x5b\xb1\xa6\x31\xf4\x28\x7b\xe9\xcc\x49\xec\xa7\x2c\xf7\xb3\x31\x73\x03\xa8\x3f\x0d\xaa\x8e\xc6\x7b\xa8\x6e\x0b\x19\xeb\xb6\x56\x30\xfe\x2d\x0e\xdc\x32\x76\x69\xc4\x57\x71\xca\x23\x63\xc8\x98\x78\xd8\xf2\x6c\x35\x58\x66\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x11\x33\x32\x84\x83\xc1\xea\xa2\x1f\xe3\x34\xca\x3e\x9a\xa6\xfc\xb5\xdf\x26\x7c\xc3\x53\x51\x96\x1a\x22\x68\x3d\x59\x57\xab\x36\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\xe9\x12\xaa\x8a\x08\x51\x83\x48\xf9\xc7\xc1\x5b\xec\x82\xf1\x75\x7a\x17\x26\x71\x34\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xd1\x40\x64\x90\x96\x8e\x8c\xff\x6d\x0f\xde\xde\x6f\xf9\x52\x70\x95\x55\x64\x83\x1b\x3e\x08\xd3\x41\xd5\xc0\x20\x5b\x0d\x54\xef\xec\xc1\x8f\x50\x67\x28\x81\x13\xc6\x09\x8f\x6c\x43\x0e\xf1\x86\x15\x76\x68\x67\x29\xff\x6e\xf5\xfe\x61\xcb\x2d\x1f\x5e\x81\xba\xa4\xb7\x14\x1e\x61\x24\x74\x8d\x8f\xc5\x3a\xdc\x72\xeb\x69\xb9\xcb\x73\x9e\x0a\x0f\x92\xc2\xf4\x61\x4f\x02\x42\x37\x7d\xb5\x60\xd1\x4e\x75\xaa\x8e\x67\xcf\x24\x34\xb1\x92\xe2\x61\x73\x93\x25\x34\xe7\x69\xc4\x73\xaf\x2a\xb9\x27\x58\x20\x04\xdc\xf8\x6e\x65\xfd\x5f\xa8\x3f\x20\xd0\xf5\x2b\xf6\xf4\x65\x18\x71\xcf\x3d\x75\xe8\xeb\x2c\x49\xc2\x6d\xc1\xbd\xe9\xa9\x43\xaf\xb2\x28\x4c\xbc\xa9\xe3\xd0\xd7\x61\x9e\xed\x0a\x9e\x78\x67\x8e\xb3\xa7\xb7\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x6d\x2a\x78\x6e\x50\x63\x97\x56\x09\xf7\xb1\x30\xa8\x11\x6e\xb7\x3c\x84\x0f\x5c\x65\xe0\x32\x5d\xc4\x1b\x9e\xed\xe0\x29\xab\xcb\xaa\xa7\x38\xbd\x6d\x5e\x78\x24\x9f\x65\x29\xf9\x50\x67\xb8\x8f\x05\x8f\x8c\x80\xde\xb1\xa7\xb7\xdf\xbe\x7f\xfb\xfd\xd7\xdf\xfe\xc5\x93\x0d\x61\x16\x4c\x7b\xfb\x46\x25\x41\x4d\x6f\xff\xfe\xf5\x7b\x99\xa9\xaa\x06\x52\x30\x8b\xac\x6b\x4f\x1f\x98\x6f\x84\x3b\x91\x8d\x0b\x11\xe6\x38\x82\x9d\xc8\xd4\xcf\x98\xa7\xd0\x1d\x91\x6d\xeb\xaf\x22\xdb\xaa\x14\xf9\x2d\x8f\x6f\xd7\xa2\xfe\x8a\x6f\x75\xaa\xcc\x71\x93\x09\x91\x6d\x5a\x2f\x4d\x6a\x55\x30\xe1\xab\x2a\x3f\x3c\x56\x29\xf2\x73\x40\x5f\xb1\xa1\xbe\xa4\xbb\xeb\xb2\x2c\x87\x6a\x61\x46\xd9\x72\x27\x57\x66\x37\xc5\x5e\xe6\x3c\x14\x5c\xad\x0d\x8d\x08\x7f\xd4\xc8\x66\xba\x4b\x92\xa1\x24\xc0\x6d\x32\xc5\x49\x59\xbe\x32\x4d\x23\xdd\x6d\x6e\x78\xae\x75\x80\x2b\xa2\x45\x1a\x9a\xf7\x08\x15\xc2\x2a\x13\x4c\xa7\xcc\xf1\xaa\x87\x50\x0f\xad\x21\x2f\xcb\x8a\xde\x34\xa4\x8a\x13\xd3\x34\xd4\x9a\x33\xe2\x74\xc0\xf7\x16\xaf\xe9\x06\xb7\xd5\x97\x79\xbc\xb2\x62\x8b\xe8\x9f\x2c\x02\x89\x86\x5c\x1c\x7a\x3f\x4d\xf3\x55\xd5\xab\x1a\x24\xbf\xee\x78\xfe\xf0\x03\x4f\xf8\x52\x64\xf9\xab\x24\xb1\x38\x96\x16\x6a\x4c\x65\x69\x7d\x2a\xb3\xf1\x27\x63\xc4\x09\xa1\xc3\x2a\x3f\x11\xeb\x3c\xfb\xa8\x93\xb5\xf7\x6b\x3e\x10\x61\x7e\xcb\xc5\xe0\x0b\x63\xc4\x47\xc6\x17\x83\x65\xb6\x4b\xa2\x41\x9a\x09\x20\x5c\x71\xc4\x53\x11\xaf\x80\xc6\xc5\xe9\x40\xac\xf9\x20\xca\x36\x74\x20\xe2\xad\x37\x58\xae\xf9\xf2\x97\x41\xb1\xe5\x49\x02\x43\x21\x15\xe9\x17\xfb\x6a\xac\x00\x93\x2a\xf5\x23\xee\x24\xbe\x13\x78\x62\xff\x19\xee\xa9\x9e\xa8\xbc\xde\xbe\xad\x9c\xa9\xad\x2f\x2c\x8a\xf8\x36\xd5\x08\x3b\x6f\x76\x2f\xc1\xdc\xb9\x78\x11\xe6\xb7\x08\x90\x42\x8d\x7a\x2e\x46\xa3\x6a\x27\xad\xbf\xf9\x22\x98\x57\xc5\x72\x18\x5b\x4a\x54\x03\xdb\x3c\x13\x19\x4c\x8a\xbd\x0e\x8b\xef\x3e\xa6\x7f\xcd\xb3\x2d\xcf\xc5\x83\xbd\x0c\x93\xc4\x4a\x29\xee\xa7\xb0\x95\xb2\x14\xf7\xd3\x7a\xb0\xc4\x0e\xb7\xdb\xe4\x01\x59\x55\x5a\x37\x44\xf6\x9f\x64\xc2\xf2\x3d\xe9\x61\x26\xb1\x57\xf3\xa1\x96\xbd\x05\xa0\x8a\x2b\xe8\xf4\xb0\x01\x5c\x66\x35\x40\xe1\xcc\x0f\xa8\x60\xce\x27\x21\x93\xb7\x21\x13\x03\xdb\x80\x1f\xe2\x0a\x3f\xf3\x0e\xda\xc6\x65\xa9\x2d\xb6\x98\x70\xc9\x6f\xe7\x64\xce\x93\x82\x0f\xe2\x55\x67\x81\x02\xd8\x2a\x06\x42\x56\x1d\xb2\x4c\x41\x0c\x56\x35\xcd\xc9\x3c\x34\x4d\x55\x4d\x48\xf6\x55\x35\xda\x5e\x1f\x93\x6a\x50\x05\x4c\x59\x4e\x52\x39\x29\x39\x2d\xa0\x76\xbf\x08\xea\x0a\x0a\xb2\xaf\x67\xa6\xe1\xb0\xf6\x35\x27\xbf\xb0\x32\x3b\xe2\xab\x70\x97\x08\x96\xd1\x86\xc1\xcf\x88\x57\xf3\x74\x56\xce\x0e\x27\x2c\xdb\x57\xd3\x4c\xfd\x80\x90\xb2\xb4\x9a\xc2\x39\xd9\x7f\xf6\x68\xa0\x21\x37\x72\x5e\xf1\x0a\x87\xcf\x18\x57\x24\xe2\x69\x3f\x57\x9c\x18\xcd\xd8\xd3\x9e\xc6\xac\xcd\xf4\x21\xda\xe6\xcc\x99\xe7\x2f\xe2\x6a\x1e\xf3\xd1\x88\xa4\x2c\xf6\xf3\x80\x36\x8c\x5f\x4a\x5e\x32\xa7\x2c\xad\xcc\x4f\x25\x6f\x56\xaf\xc5\xec\xf7\xe0\xe4\x27\x47\x51\x1d\x3a\xda\xe4\xb4\x4b\xa2\x89\x4e\x18\xf4\x25\xac\x00\xf1\x03\xb2\x04\x76\x2c\x78\x1e\x8a\x0c\x97\xa5\x1c\x3b\x66\x37\x7c\x89\x09\x83\x57\x15\xaa\x06\x80\x14\x07\xcb\x56\x64\x3f\x20\x96\x4a\xdc\xe0\xa4\x5a\xfb\x7e\x40\x73\x36\x74\x68\xc6\x86\x2e\x8d\x99\x9c\xe6\xb9\xc8\x1f\xea\xa5\x12\xd2\x82\x71\xbf\xd3\x8b\xc0\x22\xf3\xa1\x95\x33\x2b\x64\x85\x9d\xf2\x7b\x61\x11\x62\x47\x59\xca\x91\xaf\x56\xe8\x6a\xdf\x85\xc9\x8e\x03\xa9\x2d\xcb\x54\xcd\x0a\x6c\x16\x64\x0e\x4d\x92\xf9\x7e\x19\x8a\xe5\xda\x5a\x92\xa7\x0c\xba\x10\xb3\xe5\x7e\x15\xa7\x61\x92\x3c\x3c\x41\x07\xf2\xb2\x94\x48\x50\xd8\x12\x44\x65\x59\x3d\x59\xa4\xce\x19\xaf\xac\x4c\x91\xf0\xb8\xc6\xee\x74\xbf\x47\xf8\xb5\x58\xdd\x86\xce\x03\x5f\xd6\x61\x61\x43\x21\xf8\x66\x2b\x80\x35\x8d\x78\x21\xf2\xdd\x52\xec\x72\x3e\x48\xb3\x74\x8c\x63\xbe\x49\x78\xcd\xad\x1a\x88\xd1\x7f\x24\xb6\xe0\x44\x37\x27\x29\x6d\x4b\xfa\x9e\xaf\x78\xce\xd3\x65\xd5\x5f\xa0\xa3\x83\x75\x58\xa4\x5f\xc0\x56\xc4\x81\x85\x8e\x45\x1c\x26\x71\xc1\xa3\xc1\x18\x98\x6f\x9e\x5b\xa4\x95\x03\x66\x9c\x47\xcd\x56\xc4\x7f\x4b\xd7\x7f\xd3\x51\xfe\x78\x05\x9f\x3e\x98\x66\x9f\x3d\xfe\xc6\x9f\x3d\xfe\x86\x9f\x3d\x64\x17\x9f\x3d\xfe\xea\x42\x87\x7e\xb1\x44\xf2\x59\xb1\xc4\xee\xb3\x62\x89\xed\x67\x05\x06\xab\xcf\x0a\x1d\xa2\xcf\x8a\x36\x74\xc1\xc5\xe6\xa8\xe0\x42\x1e\xf6\xd9\xd3\x36\xe7\xab\xf8\xde\x33\x56\x61\x61\xd0\x78\x99\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\x1f\xc7\x51\xf6\x31\x95\xa9\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\xb3\xbc\xb4\x67\x83\xea\xff\x64\x66\x9f\x0d\x9c\xc1\x74\x6a\x5f\xbe\x9b\xcc\xdc\xc1\xec\x7c\xba\x1c\xab\x8f\x63\xfc\x08\x0f\xf0\x79\xe0\xbc\x73\x27\xf6\xf9\x60\x72\x7e\x61\x9f\x61\x9e\xfa\xbf\xac\x04\x73\x61\x33\x63\xd5\xcc\xe9\xf8\xd2\x3e\x1d\x4c\xe0\x67\x3a\x98\xce\xec\xa9\x3d\x7b\xe7\x5e\xcc\x06\xd3\xd9\xd4\x9e\xfd\x78\x7a\xb6\x74\xc6\xee\xd4\x9e\x0e\x5c\xc7\x3e\x1f\x4f\xa0\x33\xe3\xc9\x6c\x3d\x9d\x2c\x31\xd5\x19\x4c\x66\xf8\x69\x80\x9f\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\xba\xbc\xb4\xa7\xe3\x4b\xfb\x02\x06\x71\x31\x76\x1d\x6c\x62\x6c\xcf\x1e\x8d\x60\x0f\x9b\xcf\x27\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xbb\x89\x73\x3e\x98\x5e\x2e\xd5\x27\x04\x2a\x3e\x48\xb8\x25\xee\xe5\x0c\x46\x09\x7f\x8f\x02\x7f\xe6\x4e\xb1\xc1\xd9\x12\x81\x06\xc0\x9b\xc0\xcf\x74\xac\x46\xf5\x6e\x72\x36\x1b\xb8\x67\x17\xf6\xd9\x8f\x33\x00\xdd\x00\x80\x34\x56\xf0\x91\xd0\x5b\x8f\xa7\x93\xa5\x04\xa9\x33\x9e\xcc\xc6\x0a\xae\xe3\xc9\xec\x47\x2c\xf8\xee\xec\x12\x70\xe0\xe2\xd2\x76\x97\x38\x27\x97\xf6\x05\x8c\xe3\x62\xe0\x3a\x63\x39\x3f\x08\xbb\xf8\x28\xec\x96\x61\xc2\xd3\x28\xcc\xc7\xc8\x3d\xf7\x42\x70\x72\x3e\x43\xd4\x9b\x9e\x0d\xdc\x33\xe7\x2b\x77\xb2\x1c\x9f\xd9\x67\x93\xf3\x81\x33\x76\x27\xe3\x53\x7b\x7a\x3e\x85\x07\x77\x72\x37\x9e\x02\x06\x4c\xce\xec\x53\x77\x30\x71\xed\xd9\xe5\x78\x76\x31\x98\x5d\x8c\x67\x17\xeb\xd9\xc5\x8f\xee\x64\xe9\xa8\x92\x55\xa1\x01\x96\x5b\xcf\x9c\xa5\xaa\x71\xe0\x4e\xe4\xc7\x01\x7e\xbc\x3b\x9d\xac\xdd\xc9\xef\x2e\x3a\xbb\x58\xca\xce\x38\x83\xd9\x85\xec\xd1\x00\x7b\x74\x07\x1d\x1d\x60\xc1\x71\x55\x46\xd6\xf9\x78\x05\x3f\x97\x93\xf5\x6c\x32\x3b\x56\xf3\xe4\xcc\x59\x3a\x03\xac\x79\x5c\x55\x2a\x47\xfa\xd5\xec\x62\xa9\xc6\xef\x8c\x67\x17\xe3\x0a\x08\xe3\xd9\xc5\x8f\x13\x67\x76\x64\x10\x8f\x9b\xe9\x74\x6a\x4f\x2e\xcf\x06\x97\xa7\xf6\xe5\xec\x3c\x19\x4f\x2e\x6c\xf7\xec\x12\x7e\xa6\x97\x17\xcb\xf1\xcc\x3e\x3b\x3b\x1f\xcf\xec\x73\xe7\x74\xec\x4e\xec\xc9\xd9\x29\xbc\x4c\xcf\xc6\xee\x99\x7d\x79\x3e\xb6\x9d\xb3\x8b\x77\x80\x8c\xee\x64\x30\x3d\x83\xcc\xa7\xc9\x78\x76\x6a\x5f\x5e\x8c\x67\x67\xf6\xf4\x74\xd2\x53\xc3\x99\x5e\x83\x8b\x55\x24\xb2\xbd\xf3\x01\xb4\x7e\xbe\x94\xb9\x07\x75\x49\x98\x7e\xd9\x36\x64\x1e\x60\xc1\xe4\x62\x62\x9f\x39\xee\xe0\x62\x6a\x4f\xce\x2e\x97\x98\x77\x20\xcb\xc9\xbc\x03\x55\x10\x32\x63\x1b\xee\x6c\x62\x5f\x9e\x4e\xc7\xee\xcc\xb5\x2f\x9c\xd3\xa5\xec\x52\x5d\x10\x7a\x84\x05\x21\xb3\xec\x1c\x22\x70\x78\x1c\x81\xd7\x61\x2e\xc6\x61\xce\xc3\x0a\x79\x01\x71\x6b\xe4\x75\x57\x1c\x90\xf7\xd4\x71\x06\xd3\x0b\x9c\xd1\x6a\x3e\x67\x6a\x36\x67\x8e\x44\x85\xb1\x4c\x92\xb3\x52\x61\x79\x85\xe3\x33\x89\xe1\x3f\x9e\x9f\xc9\x39\x1c\xc8\xa4\x16\x12\x76\x2b\x9e\x3a\x17\xeb\xd9\xf4\xec\xf1\x6a\x7a\x0e\x64\xd6\x3d\xbd\xb4\x4f\xdf\x4d\x2e\x00\x11\xcf\x92\xf1\xc5\x29\x2c\x76\x77\x6a\x9f\x2f\xc7\xa7\xb6\x3b\x3e\x03\x8a\x77\x6a\x9f\x8e\xcf\x20\xfd\xd2\xbe\x1c\xb8\xef\x2e\xcf\x06\x93\xd9\xc5\x9d\xeb\xcc\xd6\xd3\x8b\x59\x32\xbe\xb8\xb4\x2f\xc7\xee\xc5\xb9\x7d\xb1\x1c\x4f\xed\xc9\xf8\xcc\x3e\x1d\xbb\xae\x3d\x1b\x5f\xd8\xe7\x63\xf7\xdc\x9e\xc1\x3c\x21\xbc\x8a\xcf\xc0\x2b\x89\x53\xde\x0b\xaf\x89\xe3\xe2\x62\xbf\x3c\x03\x78\x7d\x75\x36\xfb\xf1\xc2\x59\x3a\xe3\x0b\xfb\x62\x36\x3e\xb7\x5d\x40\x18\xf9\xef\x2b\xf7\xec\x35\x24\x0c\xce\x66\x03\x67\x70\xee\xc2\xa3\x33\xb8\x70\xee\xa6\xb8\xb6\xdc\x73\xfb\xec\x7c\xe0\xce\xec\xe9\x74\x30\x9d\xc8\x7f\xeb\xd9\xd9\x6c\x09\x35\x01\xa4\xce\xb0\xba\x01\xd6\x75\x07\x64\xae\xaf\x91\xc7\xab\xd9\xd9\x6c\x70\x79\xf6\xd5\x14\xd0\x79\xb6\x84\x05\x35\xbd\x00\x22\x3d\xb1\x9d\xcb\xc1\xe4\xd4\xbe\x38\x95\x58\x32\x98\x39\x80\x8f\xd3\x09\x10\xe9\x09\x10\x57\x00\xf4\x6c\x62\x9f\x9f\x26\xe3\xf3\xa9\x3d\x3d\x97\x7f\x97\x80\x5f\xa7\xf2\xcf\x74\x62\x9f\x9f\xc9\xc7\xd9\xa9\x3d\x39\x1d\x38\xc9\x18\xa8\xea\xe5\x00\xff\x02\x02\x4c\x4e\x07\xf0\x47\x3e\xb9\x67\xd8\x38\xec\xb9\x67\x53\xd8\x17\xcf\x70\xff\x3d\x9b\x2c\xeb\x8c\x2a\x0f\x3e\x62\x36\xd8\x64\x2f\x27\x83\xc9\xf4\xdc\x9e\x9c\x26\xd8\x85\x81\xec\x08\xb4\x3b\xc0\x3f\xd8\x0f\xf9\x58\xf5\xe3\xf2\x6c\x0c\x33\x50\x8d\x66\xe9\x9e\xc2\xe2\x96\x7f\x71\xa4\x83\x99\x0d\x9b\x3b\x3c\x4a\x00\xfc\xe8\xba\x93\xa5\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x62\xf9\x09\xa4\xe0\x77\x79\x96\x7e\x82\xfd\x38\xbf\x00\xb4\x98\x38\xe7\xb6\x33\xb9\x1c\x4c\x2f\x5c\x7b\x76\x7e\x06\xfc\xc3\xd9\xc5\xd9\x00\x50\xd2\x9d\xe2\x76\x0a\x74\x4d\xff\x3b\x99\xd9\xa7\x67\x97\x6a\x5b\x9d\xb9\x08\xb5\xb3\xf3\xb1\xfc\x81\xfd\xfe\xf4\x7c\x8c\x7f\x61\xef\x3c\x9d\x4c\xb0\xd8\x29\xee\xa0\x0e\x90\xa5\xd9\xbb\x09\xec\x84\x17\x33\xfb\xd4\x39\x4d\xdc\xd3\x99\x7d\x3e\x3b\x1d\xc3\xaf\x33\x71\xa1\xfc\xf9\x25\x14\x99\x9e\x62\xf9\x19\x6c\xd7\x53\xf7\x5c\x95\xb7\x9d\x99\x6a\x70\xd0\x34\x78\x0e\xbb\x64\xf3\xb7\xea\xe0\x40\x76\xf0\xdd\x04\x61\xea\x56\x43\x54\x63\xc2\xcc\x93\x6a\x34\xf2\x05\x0b\x4c\x06\x0e\xc2\x36\xf9\x2c\x6c\xa5\x98\x52\xc2\x76\x3a\x71\x34\xd8\x9e\x4e\x15\x87\x72\x0a\x88\x72\x69\x3b\xd3\x77\x93\xc9\x85\x7d\x71\x3e\x98\xcd\x00\x0f\xa1\x39\xec\x06\x76\x56\x3d\x62\xeb\x03\x07\xc7\x27\x87\x87\xa3\x03\xf6\x4e\xfe\x51\x10\xb5\x1d\xc9\xb5\xbc\x73\xa7\xb8\x55\x4d\x4e\xcf\x12\x09\xbe\x01\x42\x13\x99\x2e\xe0\x5e\xa6\x17\xf0\x67\x22\xe1\x38\xae\x8a\x21\xb7\x54\x37\x20\x9b\xc6\xfe\x60\x57\xe4\xa3\xea\xca\x3b\x35\x82\xf3\x89\x7d\xa9\xb2\x6a\x7f\x64\x7e\x85\x07\x08\xb2\xdd\x67\x41\xa6\xa4\xc3\xbd\x30\x43\x9e\x64\x72\x71\x0a\x93\xa4\xda\x74\xdf\x5d\xba\x80\x87\x83\xd9\xd9\xb9\x3d\x75\x67\xfa\xdc\x4d\xf5\xb9\x9b\x2a\x6c\x84\x05\xdf\x46\xc8\xb1\x86\x91\x12\x15\xc7\x0a\x2f\x6d\x47\x72\xcd\x8e\xfb\xce\xbd\xb8\x00\x6c\x04\x50\x02\x87\x3a\xbb\x00\xae\xd6\xb5\x27\xa7\xa7\x4b\x89\x8b\xe3\x1a\x2f\x5d\x39\xf0\xd9\xac\x29\x7e\xb8\x04\xaa\xc5\xa2\x70\x51\xbd\x54\x5d\x7c\x27\x07\x79\xaa\x50\x43\x43\xe1\x89\x8e\xc2\x17\xb6\xe3\xb8\xaa\x10\x82\x77\x7b\x14\xbc\x9b\x38\xdd\x15\x47\x98\xe5\x0b\x79\xca\x38\x1b\x4c\x9c\x8b\xaf\x90\xf9\x44\x42\x0e\x14\x57\x52\xf3\x31\x92\xf2\x3b\x20\xd8\xfd\x44\x1e\xb6\x59\x55\x68\x30\x9d\x8c\xab\xaf\xe3\xe9\x44\x91\x79\xfc\x38\xae\x2a\x93\xff\xb0\xc7\xab\xa3\x3d\xde\x26\x47\x3b\x7c\xae\x77\x78\x72\x3e\xf9\xf1\x6c\x76\xa4\x0d\xc5\x4c\xf7\x8f\xc7\x9d\xcd\x7e\xdf\x70\xdd\xd9\x0c\x0a\x1f\x85\xc6\xe4\x08\x30\x7e\x9c\x3a\x33\x28\xfc\x3b\x61\x15\x1d\x85\x55\xc1\xc3\x7c\xb9\xee\xdd\xdc\x1d\x67\x22\x99\xa1\xd3\xc1\x0c\xb6\xc6\x77\x33\xe7\x14\x0f\x72\x53\xe0\xf6\x4e\xf1\xbf\xeb\xd8\x67\x63\xe0\x26\xc6\xe7\x5f\x4d\xcf\x27\xcb\xc9\xb9\x7d\x36\x9e\x42\xb6\xd9\x6c\x7c\x7e\x69\x03\x51\x1a\xbb\x93\x8b\xd7\x00\xf3\x4b\x38\x8d\x4e\x27\x13\x38\x14\xc1\x04\x0c\x9c\x1f\x1c\x99\x88\xaf\x05\x3e\x42\xba\xfa\xbf\x9c\x5d\xe0\x39\xf0\x72\x62\xe3\xb6\x05\xac\xd2\xc5\x18\x20\x78\x66\x4f\x91\x0d\x9b\x0d\xea\x6d\xf1\x7c\xe0\x9e\x27\x97\xd0\x22\xfc\x59\xb6\xce\x58\xda\x59\x0c\x98\x56\xe4\x5c\xeb\xd3\x5a\x75\x98\xb3\xdd\xf1\x74\xf6\x78\x05\x6d\x03\x53\x32\x3e\x87\xa3\x15\x30\x74\x17\xe3\xd3\x73\x7b\x82\x0f\xee\x04\xd8\x09\xfc\x52\xa5\x0d\xaa\x74\x99\x1f\x5e\xf1\xdb\x40\x7d\x03\x76\x07\xce\x61\x55\x5a\x55\x06\xe7\x65\x7d\x7c\x5e\xb6\x71\x9a\xf2\xbc\x9f\x4b\x75\x1d\xdc\x02\x9c\xd9\x60\x76\x71\xe4\x6c\x51\x74\x0e\x14\x9d\x13\x56\xe7\x84\xf3\xb8\x81\xb4\xe9\x59\xeb\x3c\xa2\x17\x29\xb4\xcc\xf2\x9f\xde\x9e\xde\xd0\x18\x6a\x9b\x38\x17\x63\x98\xc0\x3f\xa4\xb6\x2b\x60\x6c\x4f\xeb\xb3\x62\xe7\xf3\x0f\xc0\x61\x5d\x42\x61\x07\x72\x7d\xba\xea\xc7\x8d\x3b\xb1\x2f\x27\x13\xc0\x11\xe7\xfc\x77\xf6\x4f\x75\xc4\xb9\x94\x89\xae\x3e\x6e\x38\x56\x9d\x9e\x0d\x9c\x3f\xa4\x66\x0d\x04\xae\x73\x81\xfd\x3e\x73\xe0\xe7\xff\x04\xae\x5a\x77\x01\x03\x6f\x8e\x62\xa0\x88\x37\xbc\x26\xa3\xd3\xd3\x16\x61\x88\x70\x3b\x05\xa2\x30\x91\x2c\x82\xe3\xd8\xce\xf9\x58\xfe\x00\xaf\x8a\x78\x6e\x23\xa6\xc3\xf3\x74\x62\xbb\xc0\xd6\xcd\x60\xff\x93\x22\x95\x99\xfc\xbb\x1c\x6b\xb9\x65\x3e\xf5\x8c\x79\x81\x21\x06\x6e\xf7\xe2\x12\x2a\x3b\x3f\xb5\x2f\xa7\x03\x78\x76\x3f\x5f\x0e\x72\x0d\x5c\x38\xf0\x9c\x2e\x5b\x9d\x91\xcf\xaa\x4b\x03\xcc\xfe\xce\x75\xb0\x01\xd8\xa3\xb1\xdc\xf4\xf4\x0c\x46\xf2\xb9\x72\x28\xee\x9a\x0d\xe4\x48\xb4\xbc\x90\x6b\xa2\x1e\xf5\x71\x00\xf1\x3b\x9f\x28\x70\x0d\x74\x70\x1d\x2d\x97\xe8\xc0\xfa\x0c\x64\xdf\x35\x53\x02\x93\xdb\x96\x6b\xeb\x86\x60\x1d\x4d\xc7\x7f\x9f\x40\xfb\xb7\x74\x49\x8a\xb1\x2b\x75\xec\x20\x4e\x07\x7c\xa1\xd4\x24\x52\x43\x5f\x69\x0c\x31\xeb\x13\xea\x2e\xbc\x94\xf2\x74\xb7\x91\xf2\x7f\x6f\xe8\xd0\x65\x96\xae\xe2\xdb\x5d\xfd\xfe\x31\x8f\x85\x7a\xde\x13\x8f\xfb\x22\x60\x29\xed\xf6\xe7\xb3\x8a\x22\xde\x28\x6a\x2a\xcd\x8d\xd4\xfb\x5b\x9a\x0a\x87\x50\x2d\x9b\xbd\xcc\x52\xa9\xa5\xc8\x72\xc6\x29\xb7\x7f\xfe\x19\xbf\xfd\xfc\x33\x13\x7f\xb0\x1e\xeb\xbf\x0f\x6a\xff\xa7\xfd\xfe\x64\xf9\xab\x46\xfa\x9d\x5a\xd3\x33\x82\x06\x6f\x6e\xc7\xde\xcd\x39\x62\xef\x56\x6b\xdc\x97\xcc\xa8\xd2\x35\x33\x05\xa9\x1c\x33\x4d\x43\x9a\xef\x1c\x7c\xa9\xd5\x66\x8b\x3e\xa3\x37\x65\xea\xb0\xf7\x7a\x3e\x72\xd3\xfc\x54\x83\x6d\x3c\x60\xac\x4e\x1f\x56\xcf\x0d\xca\x2c\xaa\xde\x79\x75\x8b\xc4\xe2\xa4\x63\x5d\xf7\xdf\x37\xdb\xba\xb5\xdd\xbf\x63\xad\x20\xad\x5d\x74\xcd\xfc\x42\x7f\xf1\x9e\xf6\x34\x6f\x69\x87\x53\x32\xef\x83\xa1\xca\x72\xcb\x85\x66\x2d\x20\x81\x56\x98\xa6\x95\xb3\x1c\x80\xbb\x0c\x85\xf5\xa9\x9c\x56\x4a\xec\x55\x9c\x08\x9e\xf7\x5a\x34\xf6\x16\x7d\xc3\x8b\x65\x1e\x6f\x45\x96\x5b\x29\xe5\xc4\x6e\xc0\xb7\x27\x84\x10\x9a\xf7\x98\x30\x0a\xf2\xa4\xe6\xc7\x17\x68\xaf\xd8\x98\x58\xd4\x80\xdc\xfe\x16\xe5\xf9\x81\x7e\xf9\x7f\x40\xd1\x8e\x6d\xcf\xe3\xd5\x27\x21\x5b\x99\x5a\x7c\x12\xfa\xff\x7e\x87\x0e\x34\xe3\x5b\x55\xe5\xd7\xc5\xdb\x7a\x1e\x94\x96\x9c\xa6\xc4\x34\xb5\x11\xec\xeb\x11\xb4\xcd\x37\x7f\xa3\xa2\x5f\x43\x72\x87\xa6\x0c\x76\x43\xf5\xad\x32\x01\x99\x8b\x17\x5c\x47\x79\x98\x6c\x06\x2b\x66\xae\x2b\xb6\x49\xdb\xd0\xe7\xff\x9e\x8d\x80\x6a\x54\x0e\x64\x95\x67\x1b\xa0\x17\xed\xf6\x7f\xbb\x5a\xbd\xd8\xe6\x3c\x8c\x3e\xa5\x51\xaf\x81\x1a\xe9\xe4\x91\x71\x6a\x89\x31\x73\x08\x2c\xdd\x05\xf7\x2c\xce\xb8\x9d\xf3\x6d\x12\x2e\xb9\x75\xe2\x5f\x8f\x7f\xbe\x2e\x82\x91\x65\x93\xc5\xc9\xad\x46\xf8\x75\x0b\x0c\xb1\x10\xb6\xc8\xfe\xb6\xdd\xf2\xfc\x75\x58\x70\x8b\x78\x86\x01\x4b\xcd\x2e\x76\x37\x85\xc8\x2d\x87\xba\xc4\x16\xd9\xbb\xec\x63\x95\x61\xc4\xab\x6f\xae\xdc\x35\x04\x5a\xa0\xae\xd9\xd0\x45\xe3\x88\x35\x1b\x3a\xca\x7c\xe1\x8e\x3c\x35\x3d\xbf\xe9\x98\xe5\x01\xf3\xb3\x80\x07\x4f\xb3\xd8\x81\x0d\x05\x6d\x72\x90\x43\x86\xa7\x8a\x3d\x5e\x70\xaf\x8b\x35\xa6\x39\x81\x4a\x14\x56\x2c\x2a\xb6\x9a\xfb\x4e\xd0\x70\xd5\xdc\x77\x83\xbd\xd7\x63\x3f\xb7\x38\xc2\x86\xf3\xbd\xb2\xe8\x69\xba\xbe\x69\x81\xac\x6b\xef\x6c\x9a\x95\xbd\xdc\x4b\xa7\x2c\x87\x3d\x9f\x17\x89\xf5\xb4\xa7\x50\x87\xf7\xb4\x6f\xaa\xbd\x6a\xec\x0a\xe5\x38\x69\xca\xb8\xbd\x09\x8b\x5f\x68\xc6\x78\x65\xf0\x1a\x33\x6e\x2f\x93\xb0\x28\xa0\x77\x34\x64\xdc\x16\xb1\x48\x38\x2d\xd8\x8d\x25\x08\x5d\xb2\x8d\x65\xe0\x77\x38\x3b\xf8\x41\x45\x99\xdb\xc6\x89\xd8\x0a\x56\x0f\xc7\x5c\x9a\x33\x6e\x6f\x77\x49\xc1\xb1\xa1\x55\x7c\xcf\xa3\x9f\xe2\x08\x2d\xb5\xb9\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x59\x1e\xf1\x9c\x16\x00\xe5\xb8\x10\x5f\x0b\xbe\xa1\x4b\x28\x92\xc4\x5b\xba\x83\xea\xe2\x47\x4e\xb7\x80\x76\x99\x40\xc3\x64\xba\x92\x75\x27\x34\x62\x56\x62\x09\xf6\x64\xac\xc2\x31\xb4\x6a\x78\x29\x85\x67\x6c\xd8\xf0\x72\x7c\x59\x7d\x34\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x3f\x66\xa9\x08\x13\xc3\x33\xb4\x17\xc0\xa0\xb2\x34\x6e\x32\xb1\xc6\xe7\xa6\xc4\x1d\xcf\x45\xbc\xc4\xfc\xf5\x63\x37\xf7\x1e\xb3\x1b\x15\x04\x77\x84\xf6\x5a\x9d\xef\x4c\x53\x99\x95\xee\x08\x4d\xd0\x84\x22\x1c\xe3\xf0\x79\x53\x78\x7b\xa4\xf0\xb6\x2e\xbc\x6d\x0a\x03\xb8\x9a\xa2\xab\x23\x45\x57\x75\xd1\x55\x53\xb4\xf8\x18\x6e\xc7\xd9\x36\x5c\xc6\xe2\xc1\xa0\xdc\x86\xf7\xef\xe4\x2b\x81\x9d\xa4\xc7\x0f\x20\x3a\xee\x65\x10\xf9\x3c\x58\x70\x0f\x9a\xd9\x93\x4f\xee\xde\xb0\x1f\xa3\x09\x2b\x5d\x59\xb1\xe6\xc0\x00\x9b\xf4\x16\x50\x52\xe4\x61\x5a\xac\xb2\x7c\x63\xd0\x9e\xc5\x67\xd7\x9f\x17\xb9\x1d\x35\x6f\x96\xf6\x85\x78\xfa\x0b\x8d\xa0\x56\x58\x1c\x06\xbd\xb1\x52\x42\xe8\x9d\x22\xd3\x56\x6e\xdf\x10\xab\xa0\x3b\x58\x64\x4b\xba\xa5\x11\x7d\x92\x6b\xc7\xcb\x28\xae\x15\x2f\x04\x0e\x37\x5e\x59\xc3\x3b\xd2\xdd\x90\xe4\xda\xe0\xf3\xe1\xba\x76\x23\xe8\x67\x2c\x5b\x3e\x06\xe8\xd0\xa1\x52\x88\x4c\x52\x66\x7e\x5c\x37\xe5\xb4\x8c\xd7\xb5\x75\xec\x2a\x4e\xa3\x01\xac\x72\x83\x16\x84\x02\x88\x91\x7a\x3e\xb0\x3b\x3b\x04\x72\x1a\x2e\x05\x7d\xf5\xef\xb8\x6e\x08\xf2\x74\x55\xd9\x24\xc2\xe6\x5f\x74\xcc\x3b\x2d\x41\xca\xd2\x7a\x55\xed\x93\xe8\xc9\x71\x6b\x3d\x00\x75\x7c\x45\xf6\x57\x76\x14\x17\xdb\x24\x7c\x00\xb2\xc2\x8c\x2f\xb3\x54\xbc\xfa\xc8\x8b\x6c\xc3\xbf\xc6\x3e\x5e\xe1\xee\x0f\xfb\x56\xc1\x9e\xe4\x62\xf4\x62\x3b\xb4\x6f\xb2\x2c\xa1\x35\x3d\xc2\x24\x65\xb8\x0f\x73\x83\xef\x9a\x81\x3f\xbe\xe2\x40\x68\x5c\xb9\x01\xd0\xa6\x4c\x40\x68\x43\x7c\x9a\xea\x15\x29\x68\x12\x60\x09\x37\x55\x5b\xbe\xbe\xe6\x69\xb3\xa0\xa9\x5c\xcb\x01\x91\x32\x94\x7f\xbb\x2f\x15\x89\x6b\x1a\x86\x95\xd9\x6a\xb8\x32\x88\x47\x6d\x51\x40\x28\x12\xb3\x26\x7f\x45\x05\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x5e\xb6\x2a\x4c\x6e\x0d\x6a\xdc\x17\xb0\x4a\x60\xa9\xb8\xf7\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\xdc\x43\x1f\x80\xb8\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xb7\xbe\xf2\x2a\x4f\x03\x47\x68\xbb\xa1\x37\x75\x17\xf6\xb4\x8d\x97\x35\xfe\x0c\x5d\x0d\x73\x0c\x43\x62\x0c\x1a\xf3\x6a\x58\x30\x74\xeb\xf9\x1f\xba\x72\xe6\x31\x0b\x4e\x29\x3e\xd5\xd3\x34\x74\xe5\x04\x61\xaa\x9c\x89\xa1\xdb\xcc\x01\x26\x23\xc0\xe5\x13\x80\x69\xe8\x56\x00\x1a\xba\x6a\xf8\x86\xa1\x0d\x5b\xe6\xd4\x06\x35\x74\x25\xdb\x7f\x5b\x1f\x0f\x06\xdc\x6a\x8c\xae\x59\xf7\x3c\xf6\x72\x62\x9a\x92\x7f\x18\x32\xed\x28\x36\xd1\x8f\x62\x13\x38\x8a\xf5\x9b\xf5\xa7\xb5\x2f\x11\xb6\x9a\x31\x2b\xb5\x97\xeb\x38\x89\x72\x9e\x4a\x37\xc5\x36\xed\x6e\xce\xa4\xb2\x57\xb0\xc8\xdb\x07\x93\xd4\x0e\x85\xc8\xe3\x9b\x9d\xe0\x45\x59\x3e\xed\x89\x9d\xf3\x68\xb7\xe4\x56\x87\x21\x54\x02\x00\x2d\x37\x30\xd7\xc5\xc7\x18\x38\x39\x41\x9e\x96\x61\xc1\x25\xa3\x61\x78\x1c\x73\x15\x0d\x5f\xc2\x72\x1a\xf1\x84\x0b\x3e\xd0\x2b\x90\xdf\xe7\x37\x39\x0f\x7f\x99\x63\xf9\x42\x3c\x24\xbc\x29\x8f\xaf\x2c\xaf\xf6\x8f\xf9\x27\x1c\xe0\x60\x2f\x88\x37\x16\xf9\x0d\xfb\xd2\x27\x06\x08\xac\x4f\x73\xee\x31\x3c\x83\xd0\x8c\x45\x96\xb0\x8b\x24\x5e\x72\xcb\xa1\x39\xc2\xaf\x7a\xcf\x47\xc0\xfd\x62\xbb\xf5\x11\xcd\x46\x1f\x96\xe2\xa7\x58\xac\x2d\xe3\x23\xbf\xf9\x25\x16\x06\x59\x70\xdf\x4a\x59\x46\x61\xb2\xc2\xfc\x95\xb0\x1c\xd2\x66\xab\x47\xa9\xaa\xd2\x25\x24\x60\xb1\xc7\xfd\x2c\x60\x31\xe5\x7b\x42\x9f\xf6\x44\x81\x48\x2d\x1a\xcf\x69\x39\xe4\x19\x61\x1e\x87\x63\x83\x94\x65\x27\x3d\x0a\x05\xa4\x2f\x14\x34\x7d\xd1\x66\xd4\x03\x96\x57\x80\xf6\x23\x4b\xc0\xbb\xe6\x7c\x40\x9f\xf0\x0b\x30\xa4\x84\x86\x30\x07\x30\x17\xb4\x60\xb5\x68\x32\x5c\x3c\xed\xbd\x90\x2e\xd9\xd6\xca\xa9\xaf\xa6\xae\x39\xab\xc6\xad\x39\xc4\xcd\xb7\x95\x04\xbb\x9c\x50\x9b\xa2\xac\x93\xfa\xa9\x2d\xc2\x5b\xaa\xe7\xa5\x4b\xa2\xb1\xac\x19\x21\x64\x6f\xdf\xc4\x69\x24\x6d\xfc\x0b\x3b\xec\xb8\xf9\x74\xc5\x99\x38\xa9\xf3\xb4\xc7\xf0\x5e\xac\xe3\x62\x6f\x11\x3c\x93\xa4\x2c\x2d\x4b\x38\x87\x7d\x59\x65\x33\xb4\x5c\x06\xb1\x88\x3a\xb1\xe4\xe4\xe9\xb8\xaf\xa0\x95\x32\xf9\xa8\xf9\x05\xb0\xf4\xdf\xb7\xdf\x1f\x5a\xcd\xf1\x2e\x5b\x0d\x04\x21\xbd\x07\xc5\xd7\x61\x0a\x7c\x03\x9c\x38\x07\xe1\x00\x97\xd2\x20\x2c\x06\x61\xcd\xbb\x18\x7f\xac\xa5\x75\xcb\xaf\x93\x39\xf3\xf4\x45\x75\xae\x99\xa7\x8d\xdf\x87\x40\xa7\x4d\x4d\x30\xc3\xf4\x97\xb2\x04\x02\x6c\xeb\x72\x2e\x36\x74\xa8\x81\xe2\x30\x23\x4e\x07\xc0\x39\xe5\x76\x25\xf7\x62\x43\x87\xd0\x63\x52\xb4\x1c\xe8\x17\xcd\x89\x76\x62\xca\xba\x72\x38\xd3\xcc\x2d\x4d\xf6\x4b\x05\xa1\x29\xa6\xd1\x94\x7c\x4e\x6c\x9a\xfd\xbf\x57\xdc\xab\x0f\xf8\x0f\x16\x00\x66\x7f\x80\x00\x30\x63\xd9\xff\x94\x00\x30\xeb\x67\x84\xf3\x23\x02\xc0\x3f\x12\x01\xfe\x7f\x61\xd6\x1f\x24\xcc\xfa\x1d\x44\xcb\x6a\x85\x54\x98\xb8\x84\xd8\xe2\xd1\x4e\xb2\x30\xb2\xe0\x7d\xf2\xbb\x26\xb2\x71\x12\x2c\x38\x70\xaa\x12\x3c\xdf\xad\x16\x0d\x66\x6a\xa9\xbd\x3a\x88\x46\xb9\x54\x8b\x4f\xdb\xa5\x00\x92\xa8\x4b\xf8\x63\x7d\x62\xea\x01\xfc\x7f\x57\xe7\x92\x69\xe3\xcc\x7e\xeb\x38\xf3\xee\x12\x21\x7d\x63\x04\x10\xfe\xf7\x8d\x2f\xaf\x71\xa0\x1e\x5b\xac\x0b\x14\x87\xa2\xe5\x30\x9c\xa1\xcc\xb0\xe9\x46\x23\x00\x12\x8b\xff\x31\x2d\xb2\xc5\x89\xf7\x19\xed\x69\xfc\x7b\xbd\x00\x8f\x2d\xc3\xae\xc3\xdf\xe1\x9a\x63\x82\x22\xd6\x50\x41\x3a\x3c\x02\x82\xa7\x17\x86\xb5\x10\x4d\xf4\x73\x5d\x3f\x00\x3c\x06\xfc\x7e\x9b\xf3\xa2\x40\xe1\xef\xae\x10\x03\x1e\x8b\x35\xcf\x07\x37\x1c\x45\xd7\x83\x2c\x6f\xb1\x61\xf3\x4f\x68\xa9\x4d\x53\x23\xbd\xf4\x49\x43\x20\x4f\xf1\x08\x5c\xe7\x02\xba\x1c\x02\x70\xe7\x92\xcb\x81\x41\xfe\x8e\xed\xac\xeb\x1a\x7c\x38\x2b\x87\x0c\x6f\xe3\xf5\xda\x90\x5d\x51\x3b\xde\x2f\xa0\x92\xa1\x43\xbc\x0e\x36\x0e\x79\x9d\xe5\xd0\x71\xfc\x9f\xff\xb9\xe3\xf9\xc3\x20\xe7\xbf\xee\xe2\x9c\x03\x17\x2b\x59\xe9\xc1\xc7\x58\xac\x07\xe1\xa0\x2a\xd9\x20\x5d\x8a\x8b\x14\x76\xf7\x7d\x7f\xf4\x0f\x59\xc1\x42\xfe\x78\xe8\x45\xad\x9d\x8b\x69\xd6\xe3\x04\x1d\x33\x3f\xa0\x21\x4b\xeb\x8e\xd2\x82\xf5\x92\x6d\xba\x64\xb1\x3c\xb0\xd1\x84\xc5\x8a\xd9\xa1\x3b\x16\xa3\xff\x26\xdd\xb2\xb8\x3a\x86\xd1\x15\x7b\xda\xd3\x88\xad\xea\x6d\x95\xae\xd9\xaa\x23\x8a\xa3\x37\x6c\xdd\x7c\xdf\xb0\x1b\xb9\xf5\xca\xa6\x31\x78\xc5\x9e\xde\xb2\x43\x82\xd4\x47\x8c\x78\x13\xb5\x40\x0b\x2f\x60\xa7\x59\xc4\x01\x8d\xf7\xf4\xae\xa7\x22\x15\x08\x81\x9b\x26\x47\x95\x89\x04\xda\x9e\x3e\xb0\x27\xa8\x01\x10\xaf\xc8\x97\xf0\x93\x66\xe9\x92\xcb\x87\xab\x2c\xda\x49\x24\x6c\x56\xee\xab\x16\x5e\xd1\x8c\xc6\xcc\xc2\xd3\x55\x48\xda\x27\x35\xcb\x90\x8c\x9c\x81\x82\xd7\xd8\x16\xfc\x5e\x30\x40\x62\x54\x4a\x02\xe7\xf2\x40\xac\x8c\x09\x3f\x0f\xca\x12\xc1\xff\xaa\x92\x1b\xc0\x92\xd1\xdf\xad\x9c\x10\xd3\x8c\x81\x3c\x68\x69\x34\x23\xf3\xd4\x5e\xf3\x30\x82\x43\x26\x4f\xa3\xd7\xeb\x38\x89\xac\x98\xd8\xdb\x30\xe7\xa9\xf8\x36\x8b\xb8\x9d\xf3\x4d\x76\xc7\xab\x2f\x0d\x91\xe8\xc6\x88\x60\x8c\x2f\xf8\xc8\x30\xbc\x9e\xc5\x50\x96\xbd\xd3\xb0\x58\xf9\x51\xc5\x41\x05\x0d\x05\x6f\xb6\x33\x80\xd0\xe3\x81\xd4\x48\x0b\x15\xc3\xed\x55\x6a\x03\x35\x96\x92\x1b\xfa\x33\x3b\xf9\xe0\x5f\x17\xd7\xbb\x2f\xdf\x7e\xf9\xe5\xf5\xfd\x2b\x27\x18\x95\x9d\xf7\x67\x27\xb7\xcd\x5c\x7c\xd7\xe8\x8f\x86\x43\x40\x0b\xc9\x51\x62\x78\x09\xd8\xac\x54\xf4\x9d\x94\x7d\x6c\xe2\x2a\x0c\x6f\x51\x71\x36\xbc\xc3\x1f\xcb\x40\x29\x28\x0c\x2b\x55\xe2\x85\x96\x9b\x7e\x43\x34\xc5\x4b\xc7\x34\xc5\xd8\xc5\x73\x0f\xd9\x3f\xda\xab\x94\x3d\x6a\x54\xef\xe9\x9f\x18\x4e\xc2\x33\xa6\xf6\xcc\x76\x0d\xaa\xd3\xb9\x47\x2a\x7b\xe2\x39\x54\x64\xc8\x64\x7a\x3d\x0e\xa7\x12\x96\xb0\x8c\xc9\x9e\xde\x72\xd1\xb7\x3f\x57\x53\xa5\x67\xf6\xf8\x0b\x67\x01\x4f\x3e\x1f\x61\x78\x2f\xd9\x58\xe0\xc9\xb4\x60\x4f\x61\xc9\xfe\x20\xc2\xe5\x2f\xde\x81\x4a\x8c\x3d\xda\x1b\x9e\xdf\x72\x19\x2f\x4c\xeb\xb4\x45\x68\x13\x8b\x02\x28\x38\xbf\x93\xab\x15\x43\x88\x51\xb1\xa7\x3c\x5c\xae\xfb\xfa\xf8\x68\xc3\x17\x19\xd5\x81\x93\x3d\xdd\x84\xdb\xbe\x6c\xd8\x60\xdd\x33\xeb\x11\x05\x5f\x1d\x22\xa6\x23\x8c\x52\xbc\x0b\x9a\xc2\x46\x40\x80\xd4\x23\x7d\xea\x01\x65\xa7\xea\x65\x7f\x9c\x09\xd8\x2b\xe2\xbc\x10\xc7\x2a\xe0\xbf\x5a\x0e\xd9\xd3\x24\xfc\x64\x96\xb1\x4b\xf6\x94\xff\xda\x03\x59\x6d\x2e\x68\xca\x46\x7c\x64\xe1\x44\x79\x4e\x03\xd6\x76\x3f\xd3\x97\xcc\x31\xcd\xf4\x85\x58\xf8\x38\x75\x69\x10\x78\x7e\x00\xd5\xa7\xd1\xd1\x51\xd6\xf3\x52\x96\x87\x53\x28\xa7\xde\xdb\xd1\x22\xcb\x85\x17\xdb\xf0\x43\x8b\x2d\x82\x4d\x2a\xad\x96\x7c\x4f\x1f\x6d\x7e\x2f\x78\x1a\x31\x40\xea\xea\xb9\xab\x1f\x02\xa2\x47\x91\xde\xd1\x50\x3b\x60\x3b\x41\x59\x3e\xed\x69\xc1\x5c\xba\x3c\x10\x05\xd3\x84\x0d\x5d\x34\xc2\x30\x6e\xb2\x2c\xe1\xa1\x4e\x3f\x42\xd3\xb4\x12\x16\xb6\x6a\x2b\x54\x6d\xa3\x11\xa1\x87\x84\x28\x2c\xcb\x5b\x2b\x24\x65\x69\x85\xec\x69\x4f\x68\xc1\x18\x5b\x9a\xa6\x15\x4a\x94\x2c\xc6\x63\x32\x2f\x5e\x2c\xe7\x50\x5c\x19\xaf\x0c\x99\xc5\x5b\xf5\x13\x24\xbf\x52\x7a\x41\x72\x3c\x72\x52\xa3\xe6\xa7\x70\x43\x31\xcd\x70\xc8\x58\x0e\xdd\x33\x4d\xf8\x79\xb4\xe3\xe2\xaf\x49\x18\xa7\x95\xba\x0d\xba\x90\xb1\x6e\xb8\x0e\x42\x16\x56\xca\x42\xa8\x31\x66\x99\x69\x76\x14\xe1\x29\x59\xf8\x81\x97\x95\x65\xb7\xba\x94\x2c\x52\x29\x98\x18\xba\x14\x8a\xb3\x6a\x42\xac\x84\xc6\x34\x27\x55\x84\x0d\xd5\x2b\xcc\x92\x93\x1a\x8b\xc2\x66\x06\xad\x27\x7e\xbf\x0d\xd3\x28\xf3\x14\xbf\x61\x8c\x2c\x45\x90\x46\x57\xa1\x58\xdb\x39\x7c\xdc\x58\x28\x22\x56\x56\x12\xd7\x6f\x4e\x6e\xa9\x61\x10\x1a\x17\xdf\xf3\x30\x7a\x80\xad\x0f\xf5\x79\x2d\x94\xee\xf2\x33\xb0\xb0\xd3\x2c\xdb\xea\x78\xb9\xa7\xad\x81\x1d\x2e\x09\x9a\xce\x5b\x41\x82\xaa\xe3\xba\xcc\x1f\x00\xf4\xeb\x1d\x05\x88\xf3\xd0\x12\xac\x80\xe7\xde\x1d\xc8\x4a\xd9\xba\xa2\x09\x86\x86\xf6\x06\x1a\x24\x68\x09\xc4\x34\x15\xbf\x91\x12\xc6\xd8\x86\x40\x47\xdf\x6e\xb6\xe2\xe1\x58\x47\xe7\x3a\x92\xc8\x1e\xbb\x55\xd7\x9d\x3d\xbd\x4d\xb2\x9b\x30\x79\x7b\x17\x26\x5e\x9b\x43\x07\xe6\xe0\x49\x32\x10\xc8\xf7\xe2\xe3\x9e\x1c\xd0\x4a\x5d\x1a\xef\xa0\xb1\x13\x8c\x12\x1a\x4d\x6b\x73\x8e\x79\xfe\x22\x35\xcd\xa1\x0b\x28\xa9\x80\xe2\xe7\x01\xcd\x29\x46\xa5\x43\x3b\x26\x19\x39\xa6\xe6\x27\x38\x60\xfd\x50\x06\xb3\x3b\x28\x40\xa4\x84\xbd\x3e\xd0\x50\x91\xc7\x9b\x4f\x6d\x31\x86\xe1\x59\xc0\x11\x34\xa8\xf2\x33\xa0\x09\xd0\xf3\x5f\x78\x67\x13\xd3\x42\xef\x89\xb2\xf4\x1b\x29\x4e\xc5\x74\x59\xdf\x59\xb5\x9c\x86\x2c\xaa\x3d\x27\xed\xd3\x8c\x2f\x7c\x1e\x78\x9c\x78\xbb\x2a\x7e\x10\xc7\x00\x7c\x34\x4e\x0f\x1b\xd5\xf9\x09\xec\xb6\x58\x8c\x5d\x6f\x5b\x61\x05\x47\xae\x02\xdb\xea\xf4\xb5\x11\xf3\x8e\x2a\x19\x2f\x4c\x05\x5a\x83\x34\xe0\x47\x20\x73\x3f\x1b\x8d\x02\xe4\xd3\x6a\xe8\xa9\x3c\x2c\xa3\x7c\x4f\x6f\x73\xbe\x3d\xe8\x55\x1d\x2a\x09\x18\xee\x8c\x39\x68\x58\xa2\x1a\x0a\xd9\x30\x9d\x67\x2f\xe2\x79\x36\x1a\x91\xa1\xb0\xb8\x9f\x05\x34\x23\x43\xc6\x42\xd3\xcc\x65\x80\x14\x48\xab\x57\x78\xde\xdd\x44\xbb\x1c\xa8\x43\x43\xe6\x07\x2d\x44\xca\x9b\x91\xc4\x2f\xf2\x79\x3c\x1a\x11\x45\x10\x33\x06\x4d\xc6\x01\x8d\x69\x0a\xcb\x2c\x94\x2d\x66\x1a\x3a\xc5\x12\x9d\x3e\x5b\xa0\x8a\x84\xa1\x36\x58\x38\x5b\x00\xef\xb2\x8b\x23\xcf\xa5\xc5\x6e\x0b\x27\x27\xef\x6a\x4f\xe8\xa7\x84\x0a\x16\x6c\x3b\x07\x41\x64\x58\x7c\x90\x44\xa8\x62\x2d\x8c\x3f\xcb\xdd\x64\xf0\x2d\x32\x6a\x03\x79\xac\xa8\x75\x1b\x52\x8e\x37\x78\x13\x0a\x3e\xf8\x9e\xdf\xbe\xbd\xdf\x2a\x0a\x23\x69\x97\x6a\xd8\xd0\x8c\x36\xba\xb6\x61\x2b\xbf\xa6\x4d\x18\xb9\x30\x30\x02\xd6\x51\x2e\x55\x26\xc3\xef\x59\x0f\x99\xab\x36\x4a\x5a\xd0\x25\x4d\xe8\x8e\x6e\xe9\x8a\x46\x74\x4d\x6f\xe8\x86\x5e\xd1\x5b\x7a\x47\x1f\x98\x51\xc4\x8f\x8f\x09\x37\x46\xee\x73\xa0\xab\xd0\x5d\xfa\x8a\x35\x67\x48\xfa\x91\x39\xf4\x91\x39\xf4\x67\xb6\xe4\x16\xa1\xdf\xc9\x9f\xf7\xf2\xe7\x5e\xfe\x7c\xcb\xfa\x65\x04\x2a\xc2\xe6\x16\x15\x0c\xce\x9e\xbe\x3b\x8c\x7e\x45\xdf\x02\x6e\xfe\xc0\xde\xda\xdb\x6c\x4b\x7f\x85\x5f\x38\xda\xbd\xae\x1e\x7e\x61\x6f\xd5\x09\xf0\x27\x76\x6c\xf5\x38\x54\xc3\xb3\xf4\x45\x8e\x8a\x92\x78\x65\x71\x3f\x0d\xa0\x0b\x8d\x32\x57\x3e\x8c\xdd\x3d\x7d\xc3\x0c\x8c\xe5\xc0\xa3\xb2\xc0\xe0\x6b\x3c\x2a\xc3\xe2\x21\x5d\x96\xe1\x4e\x64\xab\x6c\xb9\x2b\xf0\x69\x9b\x84\x0f\xe5\x32\x4b\x45\x9e\x25\x45\x19\xf1\x15\xcf\xcb\x28\x2e\xc2\x9b\x84\x47\xe5\x3a\x8e\x22\x9e\x96\x71\xb1\x09\xb7\x65\x92\x65\xdb\x72\xb3\x4b\x44\xbc\x4d\x78\x99\x6d\x79\x5a\xe6\x3c\x8c\xb2\x34\x79\x28\xd5\x81\x3b\x2a\x8b\x65\xb6\xe5\x91\x41\xff\xcc\x0c\xff\xfa\xfa\x7e\xe2\x5c\x5f\x8b\xeb\xeb\xfc\xfa\x3a\xbd\xbe\x5e\x05\x06\xfd\x2b\x33\xac\x85\x77\x7d\x7d\x7d\x6d\x97\xfe\xf5\xf5\xc7\x71\x50\xfa\x1f\xae\x9d\xf1\xf5\xf5\x7d\xe8\x04\x64\x64\xd0\xef\x99\x71\x7d\xed\x1b\xa3\x3f\x8f\x8c\xe7\x96\x31\xfa\xeb\xc8\x20\xd6\xc2\x53\xef\xfe\xf3\x0f\xcf\xca\xe1\xbf\x82\x05\x23\x2a\x65\xe1\x7d\x61\x35\x35\x7e\x80\xdf\x2f\x02\xf2\x9c\x7c\x51\x5e\x1b\xdd\x0f\xd7\x06\x7c\xb9\x36\x4a\x55\x2f\x29\x55\x2d\xd7\xd7\x81\x41\xff\xce\x0c\xaf\x69\xf0\xfa\xda\xb2\xac\x7f\xbf\x6a\x52\x76\xbf\x58\xc4\xbf\xbe\x0e\x82\xd2\x18\x7d\x3f\x32\xc8\x73\x52\xda\xcf\xc9\xf5\x35\x34\x4d\xff\xc9\xa4\x24\x0d\x16\x8f\xf5\xe7\x91\x31\x32\xa8\x71\x6b\x10\xfa\xb5\x9e\x6e\x7c\xc0\x3e\x8e\xb0\xe2\x0f\xaa\xd2\x80\x54\xad\x90\xe7\x72\x0c\xa3\x67\xaa\xf0\xdf\x7a\x0a\x3f\xa7\xf2\xc7\x20\xf4\xab\xbe\xcf\x96\xff\x72\xf4\x2f\xe8\xe2\x9f\x47\x06\xa9\xb3\x7e\xd9\xe9\x5e\xf9\xd2\x20\xf4\x47\x3d\xf1\xef\x84\xfe\x57\xb7\xbe\xbf\x8e\x8c\x67\x06\xa1\x7f\x61\x4f\x5f\xbf\xf1\x5a\xdf\xfe\xa4\xa0\x6b\x10\xfa\xfa\xdd\xab\x1f\x7e\x68\x7f\xbd\xbe\xb6\x9b\xef\xef\x5f\xfd\xa5\xfd\x55\x7e\x2a\xfd\xe7\x01\x7c\x7e\xf5\xfe\xfd\xf7\x5e\xa7\xdd\xef\x09\xfd\xeb\x0f\x6f\xff\xf6\xe6\xbb\xee\x87\xbf\x13\xfa\xfa\xab\xaf\xdf\x75\x3a\xe3\x59\x88\xb8\x78\x36\x29\xe1\xf4\x51\xa6\x62\x0d\xff\xc7\xf0\x42\xc6\x16\x9a\x43\x94\xd9\x6a\x8c\xae\x1f\x12\x23\x14\xb4\xf8\x1d\x4f\xcb\x2c\x8a\x4a\xcb\xf2\x47\xe3\xa0\x24\xd6\xf5\x75\xf4\x9c\xa4\x65\x83\x94\xea\x83\x7a\xbf\xbe\x8e\x46\xa4\x24\x35\xb6\xe1\xec\x1b\xb1\x41\x28\x70\xec\x9d\x91\x02\xb2\xbf\x19\x19\xe4\x99\xca\x92\x72\x1e\x15\xaf\xb3\x54\xf0\x7b\xd1\x1d\x1b\x54\x27\xe7\xce\x6b\x7a\xc5\x7f\x2d\x6f\x45\x99\xc8\x11\x35\x03\x6c\x8f\xc1\x5a\x78\xe3\xeb\xeb\x88\x2c\xb0\xeb\x5a\xc7\xac\x05\xf3\x3f\x8c\x83\xf2\x99\xea\xe2\x9e\xfe\x07\x3b\xf9\xea\xfd\xd5\xbb\x67\x27\x31\xfd\x4f\x76\x02\x1d\x8c\xd3\xed\x4e\x28\xba\x52\x42\xbf\xc2\x9c\x87\xe5\xcd\x4e\x88\x2c\x25\x90\xef\x19\x3b\xf9\xb0\xbe\x8e\xe0\xf1\x1b\x76\xf2\xc1\xff\xf0\x14\x8c\xae\x9f\xae\x8b\xe7\xd7\x7e\x1a\x8a\xf8\x8e\x0f\xae\x3f\x9e\xd0\x7f\xc8\xda\xfe\x64\xf9\x40\x08\x46\xa4\xb4\xae\x3f\x8e\x48\x79\x6d\x57\x09\xe4\xd9\x09\xe5\x9c\x9d\xf8\xa3\x7f\x05\x27\x54\xf0\x16\xae\xe1\xe2\xf2\xaf\xaf\xa3\x70\xbc\x0a\x9e\x5c\x7a\xb6\xc7\x51\x2c\x4a\x39\x44\x52\xda\x38\x82\x5b\x04\xe1\x81\x1b\x92\x64\x1b\x0c\xe7\xde\x18\x89\xf1\xd9\xe9\xe9\xf4\xac\xe6\x03\xe0\x04\x50\x96\xe9\x42\x78\xf9\x0b\x67\xa1\x94\x58\xab\x3c\xdb\xbc\x5e\x87\xf9\xeb\x2c\xe2\x56\x3e\xc2\x12\xc4\xeb\xfd\xf8\xf2\xa5\xeb\x94\xa7\xa7\x93\xcb\x33\xea\x3a\x93\xa9\x99\x97\xa7\x67\xd3\x09\x9c\x72\x73\xce\x4e\x2c\x1f\xc8\xdd\xbd\xbb\xba\xbe\x3f\x5f\x05\xe5\x87\xf1\xe2\x3a\x22\xe5\x87\xf1\x33\x45\x08\xd5\x97\xf1\xf5\xee\xcb\x2f\xbf\xfc\x12\xe0\x70\x72\x4b\x33\xde\xbf\x03\x89\x85\x71\xed\x18\x68\xe3\x6c\x5c\xef\x56\xab\x55\x64\x78\xbc\xb6\x32\x19\xbb\x64\x64\x5c\x5f\x1b\x23\x8e\xf6\x22\xd0\xbb\x57\xa2\x56\x0f\x8e\xd1\xe4\x5a\x8e\xc0\x72\xcf\xc8\xc8\x18\x18\x9e\xcc\xbe\xa7\x31\xd7\xcf\xa6\x2b\x38\xe4\x86\x9c\x3d\xf0\x3e\x15\xeb\x10\x75\x03\x76\xb5\x6b\x98\xa6\xb1\x8a\x79\x12\x15\x1c\x8f\x95\x52\x66\xf8\x6d\xb8\xe1\xdd\xad\x9d\x3e\x45\x71\xee\x19\x8d\x1c\xcd\xa0\x29\xe0\xb8\x91\xf0\x5b\x9e\x46\xc6\x5e\x5a\x55\xbc\x56\x7c\xcf\x5b\xf6\x8b\x64\x39\x5f\x49\x53\x25\x28\x51\x10\xda\x7e\x7b\xeb\xeb\xef\x95\x90\xa6\x11\x5b\x4a\xfb\x8b\xef\x38\x79\x7a\xcd\x9e\xb0\x5e\xef\x6d\x65\xd9\xdd\x86\xf0\xaf\xb5\xa5\xa5\x6a\x56\x90\x96\x36\xa7\xbd\x45\x73\x8d\xbf\x9d\x73\x3f\x55\xcc\xec\x68\x14\xcc\xc9\xbc\xe6\x64\x61\x67\xd6\xec\x0c\x0a\x8e\xd8\x98\xd3\x4c\xb9\x5a\xd0\x42\xf1\x31\x6b\xe0\x5f\x18\x9e\x6e\xb2\x8f\x29\xcf\xdf\x34\xdc\x8a\x58\x88\x7a\x38\xde\x25\xc6\xc4\x04\x74\xf5\x83\x9a\xcd\x1f\xea\x42\x45\x38\x02\xc2\xe9\xe6\xa3\x69\x5e\xca\x1f\x17\x5f\x2b\x9e\x01\x03\x68\x0e\x33\xd3\xb4\x2c\xa8\xb9\xd5\x5a\x59\x0a\xef\x15\x70\xcc\x91\x69\xae\x2c\x41\xa8\x80\x83\x47\x44\x6f\x08\x4a\xe2\x5d\x55\xaf\xb5\x65\xff\xb0\xf9\x3d\x5f\x02\x57\x0c\x7c\x49\xcc\xb6\xbe\x1b\x60\x9e\x4b\x06\x6d\x49\x73\x94\x84\xa1\xc0\x55\x49\x6e\xff\xfc\xf0\x75\x64\xc5\x84\xb4\x3a\x92\xd8\x71\x84\x11\x35\xab\x44\xc9\x04\x27\x84\xe6\x75\xe4\xcd\x5b\x14\x69\xdc\xf6\x54\x65\x9a\x77\x96\xa0\x09\x31\xcd\xcf\xd5\x03\x1d\xda\xfa\x93\xa0\xfa\x5e\xe1\x58\x4e\xf5\x2e\x16\x7f\x7e\x78\x1f\xde\x02\xea\xa2\x09\x32\xf6\x10\x07\x37\x0d\x88\x69\xa6\xed\x9c\xaf\x2b\x23\x35\x25\x57\xee\xf9\xf2\xd9\xd6\xea\x9c\x30\x1a\x9a\xef\xe3\x95\x95\xda\xbf\x16\xa1\x69\x0e\xef\x7d\x0e\x0b\x34\x80\x03\xfb\xa6\x2c\x87\x1b\x5b\xf0\x42\xa8\x23\x3c\x4e\x44\x3b\x1e\xf0\x91\x55\x27\x67\xee\x8a\x71\x40\x2f\x0a\xa7\xd8\x8f\xa6\xf9\x65\x5d\x17\x62\xb4\xb5\x63\x1d\xc9\xb8\x11\x47\x06\x21\x8b\x1d\xdb\xd5\xc7\xd4\x9c\xd3\x8c\x13\x4f\xb4\xc5\xe5\x90\x91\xee\xd8\x03\xa1\x05\xb3\xd6\x2c\x84\x3a\x2b\xc6\xb5\x18\x8f\xe7\x64\xed\x17\x01\x33\xfe\x64\x8c\x76\x30\x9a\xd1\x1d\xb7\x20\x85\xcc\xaf\xd8\x5a\xc5\x43\xa5\x06\xa1\xb7\x8c\xf3\xaa\x4f\xa6\x79\x85\x5e\x98\x35\x95\x20\x65\x29\xf6\x18\x9e\xb2\x0b\xcd\xdb\xc3\x60\xc3\x57\x08\x47\xb9\xea\x1f\xc9\xd3\xbd\xc5\xe9\xd0\x69\x62\x57\xee\x18\x63\x0f\x30\x61\x52\x82\xdf\x19\xf1\xbe\x0e\x67\xb9\xb4\x1a\x8f\x97\xaf\xa9\xf1\xcc\x35\x88\x5a\xb8\xcd\x6a\x86\x93\xc2\x53\x15\xda\x76\xde\x31\xe2\x18\x08\xa9\x2b\xaa\xcf\xb6\x88\x8f\x29\x00\x81\xbc\xcc\xed\x65\xb8\x5c\xf3\x77\x08\x27\xd3\x54\x26\x8e\xc2\xe7\x76\xb1\x8e\x57\xc2\x22\x01\x15\x3e\xe6\x0d\x58\xa6\xd1\x8f\x84\xeb\x4a\x65\xff\x21\x60\x43\xa7\xe5\xd7\xc7\x1b\x39\x69\xd4\xd5\x9b\xd4\x34\x5a\x52\x59\x45\xca\x87\xdc\x12\x44\xa3\x92\x95\x5c\xa6\x89\x0b\xaa\xcd\x04\x2a\x1d\xfb\xb5\x20\x48\x2c\xd0\xc0\x5f\xf3\x8e\xe3\x87\x54\x53\x9d\x0e\x4b\xb4\x90\xac\x42\x94\xce\x33\x40\x95\x1c\x4d\xf7\xbe\x0a\xd3\x28\xe1\x7e\xea\x67\x41\xc0\x84\xe6\xf6\xc5\x5b\xf2\x10\xd3\xe4\x34\x67\xa9\x69\xba\xf5\x96\x03\x04\x52\xbe\x0b\xed\x9d\xdb\x45\xb6\xcb\x97\xfc\xeb\x34\xe2\xf7\x63\xa1\xbf\xc9\xf8\xc2\x3a\x39\x4a\xf1\x90\x3f\x4f\x59\x8a\x21\x56\x7f\x88\x6f\x92\x38\xbd\x9d\xa3\xdc\x53\x3b\x78\x8d\xdd\x5a\x66\xb1\x70\xbd\xb1\xab\xf9\x51\xf1\x3e\x83\x9e\x7a\xff\x36\x90\x91\x32\xd8\xf1\xf5\x0a\x20\x46\xcd\x07\x63\x5c\x03\xe5\xfa\x58\xbd\x0a\x1c\x47\x6a\x53\xdd\xb4\x9a\x76\xd3\xb2\x34\x24\xdf\x86\x6f\xc7\xda\xbb\xf9\xcc\x38\xd0\x03\x23\x96\x7e\x5e\x3a\x7e\x28\x39\x59\xc5\x1a\x2c\x8c\x24\xbc\xe1\x89\xcc\xa9\x3d\x6b\x65\x5a\x15\xd4\x05\xa1\x3b\x9e\xe8\xbe\xc6\xc5\x1b\x2d\xa1\x2c\xf5\x94\x21\x63\x43\x6e\x9a\x21\xe0\x73\x5f\x69\xad\x75\x18\xb3\xfe\x4d\x1b\xf7\x46\x1f\x77\xc2\x3b\xd6\x60\x95\x7f\xdc\x48\xd0\xd6\xb7\x94\xe6\x0d\x96\x67\x34\x66\xdc\xf2\x03\x5a\x61\x37\x15\x84\x86\xac\x76\x95\x0c\x01\xd7\x53\x3f\x63\xb1\x1f\x06\x01\x5e\x8a\x91\x05\x6c\x68\xe5\xf0\x03\xcf\x04\x6d\xcd\x88\x46\x69\xae\x78\xc7\x98\xa4\x4f\x6f\xcd\x7b\x37\x32\xd3\xe4\xfb\x5a\xec\x9a\xb2\x82\xdb\x4a\x80\x24\x5d\x4d\x0b\x6e\xc7\xc5\xdf\xaf\xde\x1d\x8a\x5b\x60\x51\x85\x1b\x5e\x6c\xc3\x25\xff\xdb\xf7\x5f\xd3\x94\x59\xbc\xcb\x2d\x70\x52\x8b\x55\x54\xc3\x95\x38\xf7\x3f\x24\x35\x17\x65\x99\xc2\xc6\x59\x61\x67\x59\x1a\x70\xb2\x80\x43\xc6\x0a\xfb\xc2\x45\x55\x5b\x8f\xc0\x27\xa3\x21\xe3\x8b\xc3\x56\xbd\x57\xb5\x90\x5e\xf2\x2a\xc0\x74\x84\xda\x9a\x0f\xbb\xdd\x5a\x58\x6b\x66\x45\x2c\x3c\xe8\x2f\xbd\x61\xc3\xd8\x8a\x08\x7d\x25\x6b\xb2\x32\x16\x55\x4e\x06\x3f\xc6\xfc\x23\x31\xcd\xcc\x16\xd9\x76\xc8\x18\xb0\x4c\x99\x1d\x46\xd1\xdb\x3b\x9e\x8a\x77\x71\x21\x78\xca\xf3\xc5\x61\x92\x65\xec\xd2\x24\x0b\x23\x83\xc6\x9c\x0e\x5d\xe2\x65\x40\xd8\xc2\xe5\x1a\x73\x41\x85\xda\xab\x65\x64\x69\x93\x1d\x03\xca\x36\x86\xee\x6c\xd7\xcb\x7f\x0f\x34\xcf\x3d\x66\xc4\x06\x1d\xf2\xce\xf6\x5d\x7f\x36\xe4\x45\x2b\xbd\xa8\x71\xbc\x76\x5d\xf1\x5d\xed\x23\xaf\xb3\x8d\xdc\x47\x0c\x42\x54\x83\x87\x5c\x93\xf1\xdc\xa8\xb6\xff\x9e\x76\x6b\x6e\x87\x7d\x23\xd1\x23\x3a\xc6\x37\xc9\x92\xc0\xe6\x1d\xeb\xe4\xba\xd5\x49\x4e\x80\xff\x7b\xa0\xc3\x4e\x8d\x12\xe7\xfa\x52\xad\x87\x83\x8e\x42\x73\x0b\x2b\x57\xb6\xa5\xf6\xd7\x6f\x7a\x17\x45\xc5\x15\x08\x4e\xd3\x46\x95\xdb\x0b\xc6\x43\x96\x0a\x88\xe3\x7e\x4f\xa1\x8d\x34\x6a\xb7\x50\x19\x17\xf5\x2d\xed\x2e\x1b\x6d\x9a\x37\x0d\xe5\xef\xb0\xc5\x4d\x9f\xd2\x85\x9f\x06\x9e\x1f\xec\xf7\xc4\xfb\x03\x86\x25\xdb\x3b\x4e\x7a\xea\xa1\xca\x9d\xe0\x30\x4d\x82\xa0\xee\x1d\xd0\x05\xb4\x54\xfa\xc3\x81\x22\xe5\xc4\xbd\xa0\x81\xc3\x0a\x56\x69\xa5\x2c\x3e\xd2\x43\xa2\xf7\xac\xe2\xe1\xfd\x58\x5e\xd4\x90\x31\xd1\x83\x4c\x9c\x48\x95\x13\xcb\xd4\x11\xf0\xf7\xb5\xa0\xb8\x4f\x9c\xb2\x0a\x1e\xef\x5f\xfd\x85\xf5\xaf\xdf\x45\x9f\x84\xe0\xb3\xa0\xd2\xca\x1f\x3d\xfa\x78\x78\x08\x59\xf4\x5e\xfc\x51\x79\x31\x1f\xd1\xbb\xd5\x7a\x99\xa3\x95\xa3\x83\xd2\x73\x94\x14\xc8\x4d\x73\x9e\xb2\x18\xb5\x41\x73\x02\xdc\x43\xaa\x11\x72\x75\x8c\x4b\x35\x9d\x4d\x6d\x16\x58\x01\x08\x45\x8b\x5d\x10\x69\x87\xb3\x7f\x1f\x9b\xda\xe5\x6f\x48\x6d\xae\x71\xe4\xec\xc6\xc9\x9e\x5e\xc1\xc8\x37\xf0\x47\x9e\xe0\x1a\x12\xd7\x85\x21\x1e\xe0\xba\x54\xed\x90\x9c\xa5\x29\xcf\x61\xaf\x64\xc6\x8b\x70\x10\x47\xec\x0b\x63\xf4\x30\x32\xbe\x78\xf9\xe2\x24\x7c\xf9\x42\x4a\xe2\x9a\xe4\xf1\x75\x7e\x7d\xfd\xc5\x60\x53\x84\x49\x92\x7d\x5c\x86\x5b\xb1\xcb\x39\xfb\xe2\x8b\x97\x2f\xb2\xad\x92\x3c\x48\x95\x00\xa6\x9d\xc8\xc4\x97\x2f\x4e\x64\xf2\x4b\x83\xf2\x9e\x6b\x5b\xfc\x76\x75\x1f\xd8\x17\x5f\x04\x35\x79\x37\xcd\x8d\x9c\x1b\xc3\x7f\xfe\xe1\x59\xc0\x1a\xe9\xfc\x17\xe5\xb5\x71\x8d\x42\xdd\xde\x4a\xab\x9e\x34\x55\x95\x65\x55\x55\xa3\x07\x58\x78\xb8\x3c\x4a\x29\x19\x3d\x56\x57\x1c\xfd\x8b\xc9\xf1\xf7\xd5\xf6\x2f\x76\xa4\x9c\xa7\x14\x25\x3d\x65\x9a\x4f\xbd\x25\xc3\x3f\x61\x73\xa3\xe7\x3d\x45\xed\x3f\xd9\x23\x7f\xf4\xaf\x40\x6e\xb9\xdd\x09\xe6\x9d\x19\x5d\xe7\x7c\xc5\xbe\xf8\x62\x50\xf3\xa1\x5f\x54\x4f\xed\x29\xee\xfd\x2e\xe7\xef\x44\x9b\xc0\xf9\x91\x43\x9f\xe4\xfb\xc9\xbc\x7b\x6c\x07\xac\x37\xa8\x21\xf5\x3d\x38\x58\x1d\xff\x04\xe9\x64\x07\x4e\xd0\xa0\xc6\x9b\x63\x13\x01\xdf\x59\xd4\x87\x1d\x58\x52\x8a\xad\x6b\x55\x8e\x41\xe8\x64\x08\xa7\xb6\x9e\xa9\xe1\x29\x0e\xb2\xa7\xa6\xfa\x13\x35\xbc\x0a\x16\x06\xa1\x07\x2b\xa7\x86\xd8\xd0\x39\xde\x4c\x53\xc1\x6f\x6d\xa7\xaf\x9a\xe7\xd4\xbb\x37\x08\xad\x4a\x52\xfb\xb9\x87\xb3\x4f\x80\x08\x6c\xe0\x4c\xcd\x8b\xaa\x40\x45\x10\x6e\xd9\xba\xfa\x54\x96\x6b\x5b\x7a\xfa\x5d\xb5\xf3\xc2\x87\x4d\xf6\xd8\x93\x9a\xf5\xe5\x2c\x3a\x89\x40\x61\xba\xf8\x97\x02\x5c\x96\x59\x9a\xe2\xe2\xc3\x02\xac\xf2\xd4\xa0\xa8\xfd\x69\xde\xfc\x62\x08\x6b\x1d\xc7\x76\xa5\xc6\x36\x64\x06\xfd\x3b\x62\xf6\x86\x6d\x6a\x98\x69\xe2\xf9\x8d\x12\xe7\x94\xc0\x1f\x5e\xb1\xab\xbe\x3c\x57\x7a\x1e\x51\x41\x64\x6d\x2f\xb3\x0d\x9c\x01\x2b\x16\xff\xaf\x59\x11\x43\xbf\x09\xbd\x63\xa2\x2c\xb5\x6c\xa9\x08\xe3\xb4\x20\x8b\x3e\x13\x89\xcb\x96\x20\x60\xc1\xbb\xac\xbe\xc7\x69\x2e\x25\xac\xcd\x79\x73\xae\x29\x76\xf3\xb2\x1c\x5a\xc3\x5c\x4a\x4f\xf3\xba\x22\x48\x4d\xeb\xa6\x17\xcd\xa3\x95\x13\x8f\x1f\xeb\xba\x69\xba\x67\xe6\xd1\xaf\x68\xd6\xd4\xdd\x41\xe3\x95\x25\xad\x58\xe7\x82\xb5\xfa\x08\xcc\x84\xd0\x18\x85\xa1\x33\xaf\xa5\x34\xf4\x5b\x26\x16\x07\xf5\x70\x5d\x49\xbc\x85\x85\xe0\xa8\x40\x5c\xc3\xa3\x7d\x1a\x0f\xc5\xb1\x4f\xf5\xe6\x5b\x96\x96\x6b\x5a\x79\xef\x49\x90\x31\x66\x1d\x8a\x93\xc9\xe2\x38\x10\x04\xf1\x5c\x52\x96\xc3\x14\x0d\xe8\xde\x70\x38\x13\xf1\x48\x5a\x19\xf5\x97\xc0\x56\xf2\x05\x0c\x2f\x2a\xcb\x4e\x27\x18\x63\xaf\x4c\xf3\xce\x7a\x45\x39\x59\x8c\x5d\x4f\xc8\x5c\xe2\x58\x2e\x41\x16\xae\xb7\x5b\xfc\x64\xed\x28\x27\x63\xf8\x11\xc4\x73\xbc\x99\x99\x43\x69\xb7\x6f\x7e\x8e\xc1\x35\xad\xad\x5c\x9a\x69\x43\x16\x48\x7b\x0d\x99\xcf\x03\x5a\x30\x75\xaf\xd5\x30\x2b\xcb\x61\x2d\xae\xc6\x11\xd5\x9d\x5e\xb8\x5e\x06\x2f\x71\x5f\x07\xa1\x70\xa6\x8b\xba\x95\x60\x6c\xae\xec\x9c\x50\x78\xa5\x63\x4f\x68\xef\x52\x29\x56\x4c\xab\x4c\xe2\x20\x53\xd1\xcd\x34\x0f\xfd\x3c\x60\x8c\x15\x7e\x1e\xcc\x49\x3e\x1a\xd5\x48\xb0\x58\x71\x0b\x3e\x52\xf8\x44\x3c\x95\xef\x15\x74\xb8\xa8\x9e\x5d\xcf\xd9\xd3\x88\x78\xd1\x9e\x16\xbc\x22\x77\xfd\x1a\x2d\xd4\x89\xa0\x57\x2e\xfe\x11\x44\x2f\x52\x13\xcf\x83\xa9\xe8\x43\xc1\x4a\x71\x81\xe7\xc7\x4e\x0d\xa6\x79\x83\x42\x75\x51\x0b\xd5\xaf\xca\x72\x78\xa5\xc4\x14\xd2\x2e\x4e\x13\xb3\x0b\x42\x88\xc8\x1f\x94\xd6\xb0\x26\x8d\x32\x86\x56\x5e\x96\x3d\xe4\x14\x10\xb2\x22\x39\x4a\xe9\xd2\x24\xd4\xe4\xa4\x16\x37\x6a\x32\xd7\x7b\xe9\xf8\xb0\x6f\x20\x22\x68\x24\xc1\xe1\xf3\x80\xd4\x51\x80\x10\x32\x15\xf9\xe9\x85\xe6\x67\xa0\x72\x27\xdd\x3d\xa0\x9a\x50\x88\x2e\x54\x3f\x5d\x58\xc5\x0d\x68\x09\x69\xbb\x9e\xe1\xd2\x42\xf3\x9d\xba\x0d\x4d\xcb\x49\x3b\x39\xc9\x42\xba\xdc\x0e\x6f\xaa\xf3\x44\x85\x5e\xb5\x4d\x66\xbc\x88\xbd\x76\x8c\x81\xe1\xcd\xa2\x73\xa6\x16\xc4\xb3\x62\xd6\x73\xd2\x14\xca\xb2\x7f\xcb\x97\x78\x6b\xe0\x22\xb6\x95\xe3\xec\x2e\x49\x70\xfc\xbc\x58\x86\x5b\xde\xe3\xd2\xd0\xb1\xce\x93\x6a\x0f\x59\x24\xcf\x5b\x98\x78\x68\xbe\x69\xfc\xf0\x90\x8a\xf0\x7e\x80\x39\xe9\x60\x97\xe6\x7c\x99\xdd\xa6\xf1\x23\x8f\x34\xd7\x1f\x6f\x60\x8c\x54\x95\xbb\x34\xfe\x75\xc7\x7f\xc8\xf2\x3e\xf1\x97\x76\x98\xc2\x55\xbf\x65\xc3\xd4\x8e\xb8\xe0\x4b\xf1\x66\xb7\x4d\xe2\x65\x28\x78\x41\x77\x4c\x11\xd0\x1f\xd0\xd7\x07\x05\xde\x52\x1d\x0c\x3c\x0b\x7c\xb0\xbe\x25\x74\xab\x8e\x5a\x82\x71\x3f\xc6\xa3\x16\xee\x28\x7e\x1c\xa0\xcc\x4b\x9d\xb3\x62\xa2\x16\x3f\xca\xe3\xb9\x32\x65\x46\xc9\x24\x75\x6b\xfc\xdc\xa1\x9c\x9f\xf2\x3d\xcd\x58\x81\xc0\x7f\xcf\xef\xfb\x06\x90\x32\xc3\x40\xca\x18\x6b\x1b\x73\x73\x04\x77\xe5\xf5\x7d\x97\xf2\xc7\xc5\x57\x79\x40\xeb\x0b\xec\xc3\xef\x05\xda\x44\xa4\xa2\xb9\xde\x52\x4b\xc4\x7e\x73\x8c\x3a\x95\x17\x02\x99\xc1\x39\x9f\x43\x82\x26\xc8\x27\xe9\x88\x65\x70\x5c\xab\x54\x8b\x53\xd9\xf6\x4c\xa7\xa7\xb2\xab\x3f\x02\xba\xec\x6b\xd3\x3d\x04\x9c\x3c\xda\x63\x1d\x4d\x08\xa4\x74\x4f\xad\x5c\xca\x32\x25\xa5\x29\xd8\x93\xa6\xdd\xf1\x4e\x1d\x2a\x79\xf2\xbf\x16\x7c\x17\x65\x5e\xc2\x29\x92\x26\xef\x2f\xb4\x59\x1f\xde\xd3\x9e\xc2\x61\x16\x43\x29\xf2\x04\x2d\x26\xbc\x27\xe3\xa5\xe1\x1d\xaa\xcc\xa5\x75\xfd\xd0\xd9\x53\x63\xd0\xf3\x7d\x4f\x8d\x51\x9d\x9c\xf3\xbb\x38\xdb\x15\x6a\xf8\xad\xb2\xff\x3a\x96\x69\xbf\xa7\xdb\x9c\x7f\x89\xd2\x22\xef\x09\x2d\x6f\xfa\xa4\x5b\xbe\x1b\x30\xf8\xd3\x91\x1c\x51\xee\x4f\x03\x66\xc1\xdf\xb2\xe4\xfe\x0c\xff\x9e\x06\x65\xa9\x2f\x2a\x95\x15\x4e\x68\x88\x85\x93\x00\xef\xb2\x9c\x06\xcc\x80\xb5\xe1\x4f\x03\xd4\x93\xd1\xc6\xb2\x61\x46\xf6\xca\xa8\xe7\x93\x7d\x69\x11\x19\x6a\xa4\x32\x02\x17\x7e\xaa\x6a\x9a\x92\x85\xea\x5d\x51\x5f\xec\xec\x3b\x01\x74\x7c\x16\xb0\x91\x05\x3f\x0b\xe8\x32\x3c\x9e\x05\x65\xe9\x12\x6f\xf2\xdc\x32\xf8\x1d\x4f\x65\x65\x53\x74\xcb\x89\xa2\xea\x8d\x40\xd9\x53\x59\xf6\x3c\x18\x71\xff\xe2\x20\x83\x07\x3f\xa6\xd9\x6d\x71\x5f\x59\x30\xf5\xad\x9d\x21\x34\x6f\x9a\x00\x9d\x0a\xd7\xfe\x62\x23\x0c\x94\xa6\x14\xea\x90\x91\xee\x70\x40\x0b\xc8\xc9\xda\x20\xf7\x52\xd3\xfc\x51\x66\xc7\xc0\x8a\x82\x85\x56\x0a\x7b\x8d\x7c\x49\x9b\xa0\x1f\xc4\xa8\xf5\x15\x63\x41\xc6\xd5\xb3\xbc\x64\xd4\x81\x7a\x9d\x06\x86\x02\x46\x3c\x09\x58\xaa\xa5\xe8\xb3\x35\x25\x64\x0f\x08\x2d\x51\xe8\xfd\xab\xbf\xf4\xf8\x71\x74\x45\x8e\xbd\x8a\x2b\x25\x27\x5a\x1c\xb8\x69\x0c\x9d\x7e\x47\xdb\x5a\xd3\x00\x74\xb0\x5f\x27\xa6\xc4\x8d\xd2\x22\xed\xb0\x5f\x3f\x2b\xbd\x7b\xed\x4d\x82\xb7\xdb\xea\x76\x48\xd6\x87\xda\x70\x8e\x8f\x0c\x69\x7c\x54\x3e\x23\x28\xd6\xfb\xd9\xe2\xb4\xf7\x9e\x75\x39\x09\x7d\x94\x6d\xd9\x88\x9a\xb4\x97\xb2\xfc\x0d\x92\xd6\xae\x94\x55\x09\xfe\x0d\x82\xcb\x0d\xfd\x36\x3b\xeb\xb7\x65\xdc\x5d\x27\xab\x4b\x56\x91\x9c\x03\x51\xb2\x72\xcd\x4b\x49\x9a\x80\x67\x0b\x38\x02\x42\xbf\xbd\x21\x80\x24\x1b\x01\x71\x37\x64\xd2\x02\x18\xd2\xd4\xab\x72\x2c\xb2\x21\xbe\x7e\x50\xaf\xa9\x69\x3a\x8c\xb1\x4c\x0b\x0c\xea\x19\xcf\x9b\x8f\xfa\x87\x97\x63\xd7\x33\x9e\xe9\xdf\x24\x52\x35\x18\x29\x9b\xfa\x97\xca\x62\x01\xc5\xc8\x6a\x5c\xfa\x27\x10\x45\xb4\x6c\x22\xdd\x4a\x4b\x59\x02\xf7\x3b\xd4\x83\x66\x35\xbe\x56\x75\x8f\x5c\xac\x7d\x64\x8c\x0d\xc4\xe0\x2e\xc5\xa9\xbc\x75\xaa\x40\xa9\x48\x60\x90\xcf\x6b\x30\x9f\x86\xcc\x48\xc2\x42\xe8\xe9\xe3\x19\xa1\x05\x33\x94\x6d\x21\x76\xa3\x82\x2e\xec\x7a\xb9\x82\x4f\x8f\x4f\xf9\x70\xa8\x9f\x29\x34\x9c\x87\x9e\x2c\x65\x3f\x5a\x96\xd0\x2c\x1e\x32\x16\x2e\x0c\x6d\xd7\x33\x7a\x36\x82\x4d\xfb\x70\x72\xc5\x0a\xe9\x58\xd1\xb7\x60\xe8\x2d\x1b\x2e\x4d\x73\x58\xd0\x3b\x36\x74\x61\xff\xde\xe0\x36\x1d\x2b\x9e\xe2\x66\x2e\x1f\x56\x4c\xcc\x57\x6c\xe5\xdf\x48\xf9\x77\xb1\x58\x1d\x5f\x81\x57\x1e\x0c\x7c\xd5\x65\x8b\x87\xee\x7c\xcd\x6e\x98\x91\xa5\x09\x7a\x0f\x72\xd3\x1c\xae\x4d\xb3\x35\x9a\x7d\x4d\x01\xe2\x95\xb5\x66\x7e\xb8\xd8\x68\x9b\xbe\xb7\xb1\x01\xfa\xf8\x1c\xd0\xd0\x34\x6f\x95\x66\x96\x59\x11\xb3\x12\x66\xed\x98\xb5\x65\xd6\x8a\x6d\x88\xff\x10\x94\xa5\xb5\xf2\x1f\x02\xf6\xb4\x27\xc4\x5f\x29\x76\xec\xeb\x37\x90\xbe\xd5\xdf\x65\x06\x1e\x60\xa8\x2c\x20\x87\x68\x46\x93\xf8\x6e\x40\xe0\x67\x12\xd0\x15\xf0\xc9\x1b\xcd\x14\xcd\x8f\x82\xf9\x8a\x8d\x46\xc0\x3e\x9b\x26\x40\xa5\x2c\xad\x3b\x16\x31\x87\x94\xe5\xda\xde\x66\x5b\x8b\x20\x9c\xda\x80\x30\xcd\xd1\xe8\xce\x34\x57\x78\xd2\x7c\xda\xf9\x3c\x60\xfe\x47\x1a\xd1\xbb\x40\x06\x73\xda\xb7\xcc\xa2\xa0\x3e\x7d\x50\xe2\x0f\x1a\x14\x45\x3d\xfe\x9d\x14\x47\x58\x9f\x1b\x06\x6c\x12\x9f\x98\xee\x21\x4e\xf7\xb0\x35\xdd\x65\x39\x1c\x8d\xee\xca\x12\x47\x21\xbb\xbf\xfa\x1d\x5d\x07\xd8\xdc\x05\x84\xae\xd0\xf1\x9e\xcc\x6b\x83\x87\xbb\x31\xcb\x88\x14\xea\xdc\xfd\xaf\x9c\x31\xe6\x98\xe6\xdd\x49\xfe\x92\x39\xfb\x7d\xcf\xae\xdb\x68\x30\x90\x17\x46\x4e\xad\x40\xd0\xe4\x76\xc1\x85\x64\x86\x0a\xbf\x33\x30\x9d\x87\x30\x76\xa9\x52\xac\xf3\x68\x20\x2b\x90\x7c\x7e\x1d\xe0\xcb\x7f\x08\x16\xc0\x38\x7a\x59\x75\xa0\x73\x17\x56\xca\x7c\x4e\x39\x35\x0c\x2a\x02\xaa\xb7\xd5\x0d\xba\xd8\x35\xeb\x5a\x24\xed\x40\x64\xba\x73\x0c\x1c\xc3\x70\x4c\x07\x66\x07\xdc\xcf\xd9\x4f\x16\xa7\xb1\x1f\x06\x24\x60\x43\x2b\xf5\xd1\x27\x24\xc4\xf8\x36\x7d\x3b\x2a\x54\xe4\x60\x00\x38\x2f\x03\xce\x50\x82\xc6\x7b\x4a\x33\xe1\x25\x1d\x19\xa3\xdc\x40\xfd\x80\xaa\x4b\x8e\x8b\x43\x23\xaa\x46\x91\x03\xe0\xe8\x8c\x01\x68\x5a\xd6\x8c\x23\xa6\x21\xcb\x2b\xe1\x40\x46\xfd\x80\xc8\x80\xb1\x9a\x75\x99\x15\xb3\xd0\x2f\x02\xc9\xa5\x14\x30\x20\x01\x3f\x31\xe9\x0c\x87\x66\x34\x6e\xf6\x62\xe4\x67\x68\x0e\x34\x14\x23\x00\xd2\x94\x50\x4c\xc4\xd7\x61\x2a\xb1\x7a\xbf\x27\x84\xae\xc3\xe2\x60\x98\x47\xad\x62\x94\x7d\xa7\x76\x60\x87\x2a\xaa\x03\xfb\xb1\x7a\xf8\x01\x2b\x44\x0f\xab\xb6\x84\x7e\xd8\x29\x4b\x40\xa4\x66\x87\xe3\xb0\xc3\x61\x63\x49\x98\xde\x1e\x6b\xe8\xbf\x14\xdf\x88\xcc\xc1\x31\xd4\xc5\x0a\x10\x71\xe9\x61\xc7\x3a\xfb\xc2\x81\x1d\xd2\x3c\xca\x30\xbe\x39\xbb\x59\x08\x1b\x6b\xea\xda\x15\xde\x6f\x12\x0f\x3e\x40\x07\xba\xdf\x64\xba\xda\x09\xac\x94\xa5\x1d\x94\x97\x36\x3f\x0e\xaa\x08\xeb\x91\xe3\x5e\xbd\xff\xb8\x8e\x61\xd0\x6d\xc1\x29\xe9\x1a\x83\x91\x46\x6e\x0a\xb0\x12\x61\xde\xf2\x07\xaf\x25\xc9\xdc\x4e\xb2\x65\x28\xc5\xb8\xcd\x33\xac\xc8\x75\x4b\x7b\x5d\x45\xde\x93\xe1\xf3\xa2\x3d\xcd\xb3\xac\xd7\xbf\x9c\x33\xc6\xd6\x7b\x8a\x4e\x38\xc7\xbe\x47\x76\xb8\x84\x63\x9f\x92\x56\x9b\xa6\x35\x8c\xa0\xc9\x2f\xd1\x73\xa7\x6c\x9e\x91\xde\x0e\x87\x40\x11\x50\x3c\xcd\xed\x75\xce\x57\x65\xf9\x2f\x6e\x8b\xf0\x06\x0d\xdb\xd0\xb9\x19\x15\x17\xde\x0d\xb7\x86\x2e\xa1\x95\x22\x03\xdf\x1d\x42\x95\x9a\xab\x97\x2f\xff\xa4\x29\x99\x66\xc1\x06\xbd\xe0\x76\xe5\x74\x54\x1a\x52\x2b\xa5\x7d\xaa\x54\x7d\x7b\x5a\x3d\xf5\xf3\xec\xba\x01\x99\xfe\x56\x57\x80\x83\xa2\xca\xec\xbc\xa9\x95\x6f\xb6\xe2\xa1\x55\xe5\x6f\x12\x02\xc4\x2b\xab\x11\x47\xbc\x38\xeb\x73\x45\x95\x7d\xe8\xe9\xed\xb0\xde\x1d\x6c\x6c\x1d\x75\xbf\x6b\x1e\x46\x3c\xef\x1b\xdb\x33\xb5\xe4\x6a\x98\x92\x3d\x45\x00\xf6\x65\xfe\xcf\x9e\xcc\xd2\x54\xef\xff\x70\x9a\x34\x83\xbf\x0a\x69\xb4\x24\xb1\xa7\xe8\x69\x72\xe8\xae\xdb\xad\xea\x58\x9b\xa6\x69\x40\x0d\x4d\xfd\xa6\xa9\xee\x38\xb0\x04\xeb\x9e\x50\x90\x03\x46\xdf\xe3\xaa\x4c\x57\x36\x58\x05\x10\xd8\xe8\x64\xac\x82\x92\xef\x04\x92\xce\x75\x33\x68\x52\x50\x5f\x8c\x5d\xcc\xc5\x7f\x3d\xc8\xd3\x1c\x7f\xfc\xf4\x85\xb3\x48\x47\xc2\x4b\x65\xde\x3b\x9e\xf6\xd4\xd8\x89\x5c\x38\x4f\x47\x6c\x42\x78\xd7\x2c\x81\x43\x0d\x59\x14\x7d\xb2\x02\xf7\x73\x15\x24\x87\x43\x6a\x3b\xbd\xd6\x3d\x7e\x29\x16\xc2\x4b\xe7\xe3\x31\x70\x34\xf3\xaa\xba\xbc\x5d\xdd\xed\x6f\xae\x6e\x3e\x1a\xe5\x2f\xc4\x91\x7a\xf6\x7b\x52\xe3\x7c\x2a\xd6\x4c\x5b\x01\xbf\xd2\xa7\x3c\x8c\xe2\x0c\x03\x0c\x01\x1d\xb8\xc9\xee\xe1\x79\x15\xcb\xa0\x43\xdb\xb0\x28\x3e\x66\x79\x04\xcf\xf1\x26\xbc\x95\xf1\x08\x1b\x06\x4b\x04\x0c\x85\xb5\xb5\x63\xf8\x53\xb1\xbb\xd9\xc4\x02\xf2\xe7\xbc\xe0\xe2\x30\xff\x5a\xe6\xaf\x2c\x23\x6f\xb9\xa5\x5f\x06\x70\xc7\xdb\x81\x0d\x1d\xda\xf2\xd4\x30\x8c\xb9\x78\x91\x62\x68\xbc\x7c\x84\x51\x0a\xa4\x58\xb8\xb1\x2e\xa9\x6b\x7a\xe0\x6d\xc7\x21\x61\x47\x71\x4e\x33\xd8\x4d\xf8\xbd\x00\x0e\xab\x2c\x73\x1a\xb2\xd4\x34\x75\xe9\x1b\x63\x2c\xa6\x05\x7b\x6c\xf4\x25\x42\x12\xa3\x45\xeb\xe4\x96\xd5\xe2\x58\x74\x80\xae\x8e\x01\x42\xd3\x3a\x86\xb5\x3c\x52\x95\x68\x36\xaf\x4f\x9d\x02\x81\x23\x2e\x50\xc3\xb4\x3c\x6c\xa3\xa7\x11\xd3\xe4\xaa\x96\x5a\xbb\xd8\x92\x7a\x7e\xa2\x7f\xf1\x4a\x32\xee\x42\x32\xee\xa2\x66\xdc\x45\x87\x71\x17\x6d\xc6\x9d\x66\xa6\x99\x7d\xc2\x04\x9a\x88\x2a\x7c\xcf\xbc\x72\xdd\xb0\x12\xb6\xf3\x63\x79\xd8\xd2\x0f\x2a\x8c\xb1\xa2\xd6\x83\xf9\x93\x80\xc1\x59\x0c\x06\x0f\xb9\xd9\x8a\x62\xda\xe1\x00\x1b\x36\xa0\x9e\xef\x57\x2d\x13\xdb\x86\x43\x6f\x81\x5a\xb7\xf2\x6d\x38\x51\x14\x96\x63\xa0\x2a\x3f\x0b\x54\xbe\x9e\x4d\x05\x2f\x90\xd0\x42\x05\x71\x5d\x9e\xa0\xf3\xbc\x7e\x40\x0b\xe6\xe0\x7d\x08\x75\xc0\x0f\xe9\x33\x2e\xea\x40\x1c\x56\xcc\xb8\x62\x7c\x53\xd3\x1c\xa6\x56\x8c\xf5\x94\xa5\x15\x56\xa2\x7c\x9a\xa0\xae\x1b\x5e\x0a\xa2\xc7\xb5\xa8\xbb\xf0\xa8\x75\x41\xe3\x8f\x73\xd3\x1c\x02\x7b\x8e\x57\xf2\x3c\x62\x98\x24\x98\xb2\x61\x26\xd3\x32\x48\x83\xfc\xa4\x6d\x04\xad\x1c\xb3\x3b\xd8\x18\xd0\x08\xfe\xac\x59\x58\x0d\xe6\x86\xc5\xed\x10\x6c\x6d\xa2\xe4\xe0\x22\xab\xa3\x05\x64\x18\x2d\x40\x32\xd6\x7e\x1e\xd0\x54\x13\xbc\x5b\xa2\x2c\x8d\xe7\x06\x2d\x1a\xad\xbf\x5f\x04\x5e\x81\x47\x85\x0d\x1b\xf2\xb2\x1c\xc6\xa6\x29\x16\x37\xde\x47\x6e\xdd\xd0\x15\xe5\xd8\x43\x7a\xc5\xd2\x45\x56\x96\x56\xbc\xe0\xde\xba\x2c\x73\x8c\x21\x12\x7a\x1b\x74\x01\x30\xcd\xd4\xda\xd0\x2b\x99\x33\xc7\x23\x70\xc2\x3e\x72\xeb\x8a\x46\x84\xe6\x56\x42\x61\x7e\xe0\xdb\x8e\x25\x55\x3f\x77\x78\x18\xd9\xb2\xc4\xdf\xe1\x9c\x5c\xf9\x91\xbf\x0b\xe0\x3c\xb2\x51\x4f\x5b\xa2\x19\x1f\x66\x65\x29\x63\x9b\xa9\x99\x4f\x00\x44\xbb\xda\x66\xa2\xae\xee\x4a\x56\x97\xc8\x59\xdc\xf8\x3b\xa8\x67\x9e\xc9\x20\xc6\x68\x71\x96\xd0\x25\x41\xfb\xee\xe3\xa5\xad\x84\x65\x8b\x9f\xac\x98\x6e\x89\xb7\x82\xa4\x97\x63\xd7\x34\xad\xd8\x4f\xa0\x7f\x21\xfc\x6c\x81\xca\xe3\xaa\xbf\xc2\x91\x62\x94\xe6\xab\x4a\xfd\xb3\xa6\x55\xd5\xc4\xbb\x22\x34\x5b\xa8\x0e\x84\xf4\x8a\x2e\x89\x57\xb9\xe3\x84\xf4\xaa\x6d\xb5\xfe\x73\x9b\x18\x03\x11\x6b\xc7\x6b\xc8\xed\x4a\xd7\xe1\xa3\x78\x19\x58\x03\xc0\xfd\x10\x8e\xdd\xf5\x27\x63\x60\x04\x74\xc9\xc2\x85\xeb\x39\x74\x77\xc4\x25\x51\xba\xe6\xef\x09\x2d\x28\xb0\xb7\xdb\x63\xd9\x7e\xb2\x04\x95\xa7\xa5\x2a\xeb\x8a\xf9\xfa\x31\x9a\xd6\xb2\xd0\x61\x08\x0b\xa0\x2c\xd3\x21\x63\x09\xac\x2c\x4b\xb0\x94\x34\xa8\xb6\x53\xd9\xbd\xad\x7a\x68\x02\x10\xc9\x83\x64\xb6\x0f\xe6\xcb\x17\xf1\x7c\xa9\x02\xe7\xb4\xc7\xbb\x54\xe3\x25\x2b\xe6\x3f\x70\xeb\x15\xb7\x56\x84\xa6\x24\x68\x68\x1e\x14\x90\x32\x74\x2d\xbb\x02\xb6\xd4\xc0\x41\xaa\xd2\x73\x13\xe2\x3f\x04\x12\xda\x19\x1b\x8d\x96\xf3\xec\x45\x0c\xeb\x58\x6f\x32\x53\x75\x60\x84\x8c\xaa\xb3\x8f\xdc\x5a\xbe\x74\x4d\x53\x76\x00\x1f\x61\x17\xad\x25\x9a\xcb\xb1\x4b\xaa\xa8\xbc\x2a\xb2\xa0\x31\x90\x9a\x8d\xe5\x78\x22\x6b\x5c\x18\xcf\x0d\x79\xc1\xcf\x81\xd3\x54\x4a\x97\x2f\x32\xd3\xfc\xb9\xa9\x72\x49\x33\x20\x28\xd0\x3d\x48\xad\x85\xa4\x75\x2a\x6e\xe2\x64\xbf\xaa\x78\xa4\x4a\xef\x88\x3d\xac\x5e\x6e\xf5\xd8\x88\x15\x9c\x8a\x86\x39\x69\x09\x53\x50\x7c\x7f\xcb\x69\xc8\x0a\xd8\x6b\x7e\xe1\x69\xfc\xd8\x75\xb0\x55\xe2\x1f\x3d\xbe\x04\xfb\xae\xd2\x05\xc0\x8e\x52\x9b\x81\x2e\x1c\x6f\x57\xeb\x58\x91\x75\x29\x18\xa7\x4b\x5c\x8e\xd0\x81\x4a\x79\x36\x2f\x94\x60\x34\x44\xdf\x0b\xd3\x1c\x5a\x19\xfb\x9b\x74\x9c\x2c\x08\x46\x3b\x32\x4d\xab\x60\x45\x05\x00\x58\x03\x6a\xa1\x95\x65\x41\xe8\x52\x91\x72\xe6\x07\x84\xd0\x94\x0d\x5d\x6a\x65\xec\xab\xba\x06\x0c\x1d\x9e\x55\x3e\x63\x54\x06\x11\xb4\xea\x10\xd1\x18\x81\x0f\x2b\xd5\x26\x65\x60\x10\x8c\xf1\x54\x35\x5a\x8b\xd5\xa5\xc1\x31\xf4\x9b\x40\x3f\xff\xe2\x87\x81\xd6\xd5\xc4\x0f\x03\x39\x00\x78\x82\xb9\x2a\xcb\xcf\x37\x1e\x52\x85\x9d\x5e\x76\xa4\x51\x34\x85\x49\x65\x14\x9d\x7d\x0d\xe0\xca\x8f\xd7\x2b\x16\x8d\xca\x8c\x78\xdf\x59\x9c\x2e\x49\x0d\xfa\x3d\xd4\x28\xcd\x8b\xe2\xe4\xc8\x74\xc2\xa4\xc4\x72\x47\x7d\xaf\x4d\xe6\xb0\x90\x33\x23\x95\x3b\xe8\xb5\x48\xd3\x66\xdb\x49\x91\x82\x16\xec\x67\x6e\x09\x3f\x0d\x70\x6d\x2d\xb2\x6a\x2f\xf5\xe2\xea\x69\x6e\x15\xec\xbd\xc5\xfb\x62\xc7\xb3\xe6\xf2\x26\x2d\xfc\xcd\x4b\x87\xc6\xac\xbb\x63\xd2\x9d\x2c\xb3\xa5\x6b\xba\xa1\x57\xcc\xa1\xb7\xcc\x70\x0c\x7a\xc7\x62\xd3\xf4\x03\xfa\x00\xfd\x7f\xc5\x12\xfa\x08\x3b\x67\x66\x9a\x8d\x65\xb8\x05\xdb\xdf\x8e\xd0\x9f\xd9\xc7\x11\x93\x47\xae\x57\x0b\xd7\x6b\x05\xa5\x2a\x4b\xdb\xa5\xdf\xb1\xc7\x6a\x70\xb8\x5b\xc8\x28\x61\xd2\x42\x2a\x2c\xcb\x1d\x99\xdf\x0e\x19\xfb\xae\x8a\x62\x6a\x6d\xd9\xa3\x7f\x1b\x90\xf9\xed\x68\x24\x37\x2a\xd3\x54\x26\x04\x6b\xe6\xd0\xb0\x2c\xb7\x07\x66\x55\x51\x59\x5a\x2b\x6b\x0b\xf3\x3c\xbc\x21\xf3\x0d\xe3\xfe\xba\xb2\x85\xdf\x58\x5b\x28\x14\xd1\x82\x90\x27\x85\xd6\x5b\x75\x3d\xc1\x1e\x3a\xf3\x91\xfd\x4c\xf6\xa9\x69\x5a\xd6\x96\x0d\x37\xd0\x98\x69\x5e\x8d\xc7\x14\xc8\x41\x95\x9d\xec\xe3\x95\x75\x35\x62\xb7\x34\x35\x4d\xe8\xee\x55\xdd\xa3\xf9\x86\x09\xd5\xda\xc6\xba\xa3\x0f\x00\x58\x6d\xbf\xbd\x7a\xe9\x48\x51\xf6\x2d\x4c\xec\x9d\x7f\x1b\x94\xe5\x03\xfe\xb5\xe0\x87\xfd\x20\x2d\x56\x96\x84\xcc\x1f\x60\x03\x7c\x20\xfb\x6a\x57\x5b\xd2\x07\x42\x77\xa6\x09\x8c\xc4\x43\x3d\x8b\xa6\x79\x55\x47\x38\x02\x8a\xd9\x32\xe5\xb0\x96\x8d\xa9\x84\x1c\x1a\x4d\xd8\x2b\x42\xef\xf6\x8d\x67\x46\xc2\xad\x98\x78\xf1\xde\x8a\x81\x1a\x92\xda\x78\x80\xf1\xda\x0a\x68\x4f\x97\x8d\x59\x01\x3b\x14\x93\x4a\x76\xb1\x0e\x84\xd3\x1b\xca\x98\x9b\x26\xa7\x11\x1b\x66\xa6\x19\x5a\x9c\xad\xea\x76\x80\x01\x41\x6e\x87\xe1\xf5\x1f\xe8\x18\x1c\x55\xab\x12\x77\x9f\x25\x8b\x80\xd5\x8e\x34\xbd\x6f\xed\xda\xfb\x72\x62\x9a\xc6\xd7\x6f\xa0\x21\x2b\x61\x4b\xdf\x09\x88\x3a\xf7\x5f\x76\xbc\x2f\x6f\x00\x5b\xeb\x2d\x68\x89\x3a\x7a\xdc\xf5\xa4\x87\xb8\x60\x56\xed\xf6\x61\x25\xd5\x5e\xa6\x93\x2c\x25\x11\x15\xa4\xd2\x52\x90\x26\xf8\xcd\x0a\x95\xd8\x2d\x91\x1f\x6d\xf6\x93\x65\x45\x9b\xe4\x19\xaf\x1a\x1c\x72\x4b\x31\xfb\x8b\xad\x87\xd9\xa8\x7c\x8f\x17\x8e\xb7\xac\xe3\x3b\x8d\xc7\xb8\x4a\x96\x7e\x1c\x50\x7d\x23\x05\xbe\x4f\x0e\x42\x1e\xaa\xb6\x4c\x8e\x41\xb1\x5b\x19\xdb\x7e\x72\x28\x95\xa7\xf3\xb2\x62\x79\xfa\x3d\x9e\x95\xe7\xf6\xb2\xe2\xc2\x62\xea\x12\x3a\xb4\x38\xcb\x6a\xcb\xda\x3b\x0e\x28\xdb\x75\x32\x07\xe4\xa0\x69\xa5\x2d\x52\xd2\xd4\x55\x59\x16\x16\xa7\x11\x21\x56\x86\x76\x57\x34\xa5\x43\x51\x96\x9f\x71\xbb\xc6\x10\x61\xba\x79\x11\x7b\xa8\x3c\x78\x0d\x52\x19\x17\x29\xa3\x5e\xf4\x6e\x7a\xa0\x87\x26\x4a\x6c\x38\xdc\xd2\x95\x45\x68\xdb\xd0\xf3\x98\x67\x97\xfb\x09\xbb\xd9\x4f\x38\x35\xf7\x5a\xdd\xd7\xe7\xb9\x3e\xe3\xfb\x3f\x49\x4b\x7b\x83\x1a\x7f\x92\xa2\xab\x46\x6a\xd8\x91\x59\x41\x7e\xd4\xa7\x97\xe5\x56\x89\xb0\x4a\x14\xba\xae\x79\x7c\xbb\x16\xe5\xc7\x38\x12\x6b\x83\x1e\x88\x5a\xe4\xe6\xd6\xef\x0f\x26\xa8\x51\x2b\x83\xdb\xe7\xdf\x85\xeb\x4d\x94\xdb\x5e\x63\xfe\x76\x68\xd1\xdd\x3b\x36\x94\xd5\x9d\xa0\x43\x87\x36\x9a\xb6\x31\xbf\xbc\x34\x03\x83\x13\x1a\x9f\x19\xb8\xcc\xda\x8c\x5c\x15\xed\x1f\xa8\x69\x7e\x5e\x54\xd8\x00\xa3\x72\xb2\x44\x3b\xab\xe3\x53\xa7\xe2\xe6\x75\xfa\xd5\xd8\xe5\x57\x5d\x7b\x73\xd8\x29\x19\xa2\x5a\x9f\x03\x29\x41\xf6\x45\xb0\xe8\x80\xdc\xc3\xc0\x6e\xfd\x66\x84\xb9\x66\x46\x98\xeb\x66\x84\x84\xd0\x82\xef\xad\x94\xcc\x1f\x71\xfd\xb3\xf7\x18\x31\x72\x9b\xb3\xf7\x8d\x31\x98\x4a\xf2\x0d\xcf\x90\x11\x28\xb7\x0d\x8b\xfa\xa8\xdb\xff\x55\x2f\xec\xbd\x96\x4a\x1f\x65\x80\xe3\xf7\x95\x95\x1d\x7d\x94\xfe\xba\x6f\xb2\x25\x7b\x2f\x1f\xe9\x63\x63\x13\xfa\xbe\x7e\x84\x76\xd1\xc4\xb1\x36\xa1\x7d\xaf\x12\xd0\x90\xf3\xfe\x20\x3e\x4e\x27\xb4\x5e\x6d\x87\x99\xce\x81\x47\xf7\x05\xd0\xb6\xcb\xa1\x6e\x62\x5f\x8b\x85\x9a\xa4\x8a\x57\x78\x44\x17\xa6\xc2\x4a\xeb\x00\x89\x2a\xfe\x5e\xbd\x33\xe6\xfb\x83\x20\x6b\x8d\xa4\xd4\x0f\x7a\xc4\xf6\x5d\x47\x7f\x2e\xa3\x8a\xa6\x55\xcd\x9a\x41\xde\xbb\x0a\xd2\x48\x85\x5b\x94\xbe\x11\x1d\xbe\xed\x84\x7f\xff\x6d\x96\x43\x9d\x98\x36\xd0\xdf\x1f\xd8\xc9\x87\x17\x96\x1f\x8e\x1f\x03\xff\xc3\xf5\xc9\xb5\xf3\xd2\xc3\x40\x68\xe2\x3a\xbf\x4e\xaf\x57\xc1\x73\xe2\xb7\xdf\xaf\x4f\x16\x2f\xad\x85\xf7\xe2\xfa\xe4\xda\x7d\x59\x92\x67\x27\x71\xd3\xab\x5f\x3b\x36\x3a\xb7\x96\x20\x8b\x47\xfb\x36\xe7\xdb\xb6\x69\x11\x1c\x54\x2b\x1b\x91\x2a\x30\x25\xcd\x29\x9a\xec\xa6\x7b\x42\xbc\x66\x1b\xee\x2d\xdf\x3e\x39\x57\x85\x0e\x43\xca\x88\x4f\x97\x6e\xa2\x42\xc2\xa9\xba\xaa\xe6\xb1\xba\xa0\x45\x45\x8b\xac\xde\x8f\x44\x65\x12\xbe\x13\x68\x9a\x35\x8b\x33\xc3\x4b\x33\x61\xa1\x81\x15\x31\x08\x95\xc2\xc7\x6a\xdf\x43\x9b\x19\x7d\x74\xc8\x41\x74\x0c\xbe\xd1\x86\x69\xe1\xe7\x81\xe7\x07\x5e\x3b\x8b\xc5\xa9\x1a\x93\xe8\x1d\x53\x1b\xd3\x64\x50\x64\x2d\x88\xaf\xf5\x84\xa6\x9a\x3d\x36\x7b\x34\x6f\x85\x27\xce\xf0\x4d\xbf\x90\x4d\x33\xe4\xaa\x8f\x93\x9d\x80\xcd\x78\x29\x63\xf7\x76\x1b\x75\x5a\x61\xce\x5c\xbc\xc8\x51\x7e\x1d\xaf\xac\x66\xdd\x5b\x99\x2f\x02\x8a\x61\xab\x1b\x21\x27\x21\xb5\xb9\x7f\xbb\x09\x3f\x20\x54\xaf\x4a\x02\xc7\xe2\x14\x6b\xd1\x7c\x2d\x5f\xba\x0b\x9d\x44\x59\x29\xf1\xd2\xda\xac\xaf\xcf\xc8\xad\xdd\xce\xaf\x2a\x58\x35\x32\x98\x43\x97\x60\x6c\xdb\x5e\xcd\xd7\x27\x0b\x3a\x04\x23\xcb\xf6\x29\xe3\x86\x2a\x67\x8f\x59\x9d\x69\xbe\xab\x99\x3a\x80\xa9\x57\x77\xa3\x72\xfb\xde\x4b\x93\xf6\xd7\xf4\x17\x19\x95\xec\xba\x78\x6e\xbd\xf0\xaf\x3f\x5e\xff\x14\x8c\x5e\x12\xff\xc3\xcb\xe0\x79\xf9\x27\x2d\x30\xd9\x1c\x23\x6a\x62\x60\xf5\x7e\x34\xa6\x19\x6e\x36\xad\x99\xad\x79\xec\xd7\x7d\x9d\x54\x5c\x70\xce\x8c\x17\x52\xa2\xe2\x04\xa6\x69\xbc\x94\xcf\x4d\xd8\xae\xa0\x89\xba\xfe\x92\x4d\x17\xbe\x14\xfe\xa0\xf1\x42\xe0\xfd\x52\x47\x62\x2a\xcb\x61\xee\x43\xe6\xca\x42\x1a\x18\x3c\x61\xcb\x08\xea\x0b\x8c\xc5\x40\xd4\x54\x13\xef\x20\xaa\xb5\xa8\xbf\xa1\x8b\x43\x15\xcf\x49\x30\xa1\x5f\x2a\xf6\xb8\x80\xb5\xea\xc1\x3e\xd4\x04\x38\xa7\x8f\xc0\x36\x16\x1c\x78\x10\x2c\x49\x45\x65\x4d\x86\x0b\xb4\x27\xca\x54\x88\xf3\x4a\x7f\x90\x73\x94\x4b\x43\xaa\x6e\x08\x67\x41\x9a\xa8\xfe\x82\xdc\x62\x5b\x7e\x1e\x90\x85\x7a\xb0\x04\x7a\xa0\xe0\x50\x94\xd9\xa2\x90\x51\x7c\x9b\x09\xa8\x18\xe0\x8c\x85\x5d\x77\xf0\xdc\x9f\x04\xd2\x10\x16\xaa\x73\x02\x96\x51\x6d\xf5\x32\x97\x50\xad\x02\xed\x2a\x84\x45\x5d\x80\xb7\x0b\xc8\x15\xe8\xdd\x02\xce\x35\xfb\xa7\x9d\xf3\x30\x7a\x58\xa8\x5f\x44\x45\xeb\x11\x48\x64\x1d\xf1\xd7\x92\xf5\x90\x3d\xd1\x64\x5a\x80\x6c\xf4\x35\x7b\xb4\x42\x89\xa7\x3f\x49\x2c\x95\xfc\x79\x51\x6e\x73\x7e\x67\x2d\xbc\xbf\xa5\x22\x4e\x4a\xf4\x2a\x3e\xa1\x6f\xd8\x53\x75\xa7\xa3\xba\xf2\x43\x40\x5e\xbc\x75\x81\xdf\xa3\x56\x0d\x8a\xb5\x6f\x5e\xf8\x73\xb3\xf9\x6a\x3b\xbd\xdb\xd9\xe9\x1b\x85\x60\x8b\x10\xae\xc3\xa2\x2f\xf8\x7d\x35\x20\x5d\xa6\xa2\x2f\xf5\x23\xf4\x4d\xc6\x52\x72\xe6\xfc\x45\x3a\xe7\x07\x34\x4e\x06\xc8\xf7\x79\xd0\xa2\x71\x7b\xba\x4c\xb2\x82\xeb\xc1\xe4\xdb\x71\xa0\x15\x15\xae\x68\xb2\xba\xaa\xa3\x87\x20\x4b\xae\x05\x97\x70\x4d\x3a\xa4\xd4\xa0\xd2\x42\x34\xd4\xd4\xcf\x83\x79\x6a\x9a\x29\x14\xef\xf8\x52\xa1\xa8\xb7\x31\x2f\x70\x5d\xd3\xb4\xc2\x45\x28\x2d\x56\x94\x2d\x6a\xd7\xcd\xfd\xc8\x0e\x86\x41\x9a\xc9\x53\x5c\x2b\x8b\xdb\x62\xb2\x36\xd1\x8c\x1b\x9d\x55\x8b\x68\xc7\xc4\x8b\xd1\xea\x20\xe2\xf7\xbd\xe6\x17\x8b\xbe\x68\xd1\x6a\x5b\x07\x88\x50\x85\xed\xa4\x8e\x00\x8d\xc4\xb9\xa2\x2b\x40\xb4\x3c\x45\x50\x90\x7e\xa9\x87\x56\x88\x1f\x39\xe9\x79\x01\xa7\x71\x40\xc1\x57\x49\x62\x55\x84\xd8\x1b\xbb\x7b\x1a\x46\x91\xd7\xeb\x1e\x76\x70\x9f\x81\x36\xb4\xd6\x25\x0b\xb7\x5c\x58\x84\x22\xea\x11\xdc\xb1\xc3\x28\xfa\x73\xf7\x72\x06\xbd\xd2\x30\x8a\xac\x2a\x2a\x77\x27\xe8\xbf\xd7\x79\xaf\x10\x96\xa3\x36\xbc\x8a\x97\xfc\xd4\x63\x25\x52\x19\x67\x1c\xba\x98\x56\x3e\x61\x3a\x5d\x54\xee\x48\x6a\x4d\xf7\xf5\xf4\xde\xe2\x54\xd7\x2f\x93\x3a\x37\xae\xfc\x63\x96\xdd\xdd\x62\x18\xb1\x3b\xed\x5a\x79\xa8\xcc\x40\x01\x5a\x16\xb6\x64\x2f\xe9\xc4\xb1\xbc\x5d\x6b\x62\x55\xf7\xab\x24\x39\x3a\x84\x9e\xea\x3f\x95\xfd\x48\x0b\x9f\x1f\xb3\xde\x0e\x0e\x1a\x6a\xfa\x0d\xa0\xea\xda\x47\x43\xd1\x42\xbe\xf4\xce\xcb\xb7\x96\xa5\x4f\xb2\xbc\x00\xb7\x39\x46\xe3\x0d\x1d\x35\x2d\xee\x2d\xaf\x9f\xba\x21\x73\x45\xac\x0f\x33\x1f\x71\x04\x50\x25\xaa\x5d\x75\x71\x90\xe2\x59\x70\xc4\x31\x04\xdf\x6c\x93\x50\x70\x03\xad\x24\x59\x9d\xad\x2c\x39\xa9\xb7\x71\x3f\xa0\x5c\x8f\xab\x49\xf6\xfb\x6e\xf4\x6e\x8c\x27\xce\x83\x86\xf7\xd1\x74\x65\xda\x35\x23\xa2\xe1\x20\x0d\x04\x7c\xcb\x10\xfe\x94\xa0\x56\x39\x25\x34\x37\xcd\x43\xc2\x93\x4b\xfd\x72\xb5\xde\x72\x54\x15\x69\xe4\xfb\x25\x50\xd3\x37\x68\x98\xdb\xa2\x04\x19\xa1\x3f\x35\x82\xac\xcc\xce\x39\xde\xf4\x6c\x55\xa5\x1b\x02\x92\xa1\x5d\x27\xee\xa8\x7f\x65\x27\xfe\x87\xd6\xc9\x6c\xa4\x5f\x83\xf3\x7d\xeb\xfa\xdf\x3a\xf9\xef\x8d\xe3\x9f\x96\xfa\xcf\x4a\x93\xae\x20\x82\x21\xf6\xb8\x69\xde\x5a\xe8\x15\x9c\x67\x9b\xb8\xe0\x64\x91\x55\xf7\x30\xd8\x51\x96\x72\xe4\xb9\xc2\x38\x01\xc6\xba\xce\x2b\xd6\x3c\x6d\x32\x22\x38\xbd\xee\x7d\xb7\xbc\x12\xc9\xe6\xa4\x8a\xdd\x87\x2e\xfe\xdd\x5c\x64\xbf\x7f\xb4\x5f\x87\x49\x72\x13\x2e\x7f\x29\x5a\x1e\x7a\x9c\xf5\x91\xfd\x43\x52\xd6\x5c\x1c\xaf\xa8\x9e\xf2\xcd\xb5\xfe\x8a\x12\x59\xda\xb1\x41\x16\x7e\x1a\x30\xdc\x98\xa9\xc0\xdb\xdd\x9a\x3b\x34\xf6\x54\x39\x91\xd6\x16\x07\x72\x2b\x46\xe5\xcc\xd8\xa5\x4b\xd6\x61\x07\x32\x96\xa1\x93\x77\xba\x44\xcf\x7d\x36\x74\xe6\x61\x6d\xfd\xcb\xc6\xae\xda\x8f\xc3\x4a\xce\x3b\x1f\x8d\x8a\x17\xb5\xbd\x33\x41\x13\xf6\xd8\x2f\x6a\x95\xa9\xef\x04\x34\x95\x9c\x26\xb7\x0b\x91\x6d\xbf\x4b\xbf\x0c\x93\x82\xa3\x12\x2e\x6e\xee\x94\x19\xba\x64\xce\xed\x0d\xdf\x64\xf9\x03\x6a\xb9\x86\xc0\x0a\xb2\xa1\x4b\x33\xd3\xb4\x62\x96\x2e\xfc\xc0\xc3\x3b\x1b\x12\xf6\xd4\xda\xb8\x9a\x4b\xeb\x94\x5d\x86\x68\xd5\x3d\x76\x69\x58\xed\xe5\x8d\xf5\xec\x00\x0e\x56\x4f\x0a\xba\x29\xed\x44\x95\xbb\xb5\x72\xb2\xa8\xb4\x0b\xa6\x99\xd8\xeb\xb0\xc0\xab\x52\xe2\xca\x56\xcb\xcb\x4d\x33\xaf\xcf\xc6\x1a\x63\xf3\xd1\xca\x89\x69\x0a\x2b\x47\xb5\xbc\xd5\x5c\xd1\x43\x55\xd7\x96\xd5\xfa\xd8\x53\x19\xca\xb1\x67\x24\xaa\x5f\x75\xe1\x83\x98\xfe\x95\xd0\x66\x6e\xa5\xec\xd1\x56\xd7\x49\x58\x42\xde\x6a\xf0\x72\xec\xce\x49\x75\x25\x8e\x95\x52\x97\xd0\xf4\x05\x2b\x4c\xb3\x18\x8f\xf7\x75\xe3\x5d\x2e\xb2\xe6\x4c\x9a\xfa\x38\x8d\x91\x73\x8a\x35\x67\xe8\x8e\xf9\x67\x0b\xf8\xa8\x33\x55\xd5\x2b\x61\x61\x4f\xce\x8c\x85\x52\x41\x88\x9e\xaa\xad\xdc\x3d\xb3\x3a\x8c\xf7\x34\xc9\x74\x8e\xa2\x5b\x51\x5a\x96\xa2\x2c\x2d\x59\x5f\xd5\x3c\x14\xe9\xad\x6e\x98\xa1\xa5\x23\xff\x29\x16\xad\x5b\x4c\x9a\xbd\x29\x43\xf4\xf3\x39\xad\xf4\x34\x4a\xf9\xb9\xa8\x6c\x8f\x89\x97\x06\x0d\x4e\x51\x51\x96\xda\x9c\x42\xdd\x3d\x7d\x4d\xec\xaa\xd1\xee\xd5\x4d\x5a\xb9\xde\xfe\xe6\xfb\x9a\x18\x24\xfa\xed\x38\x6f\xf8\x8a\xe7\x79\xaf\x35\xb1\xef\x1b\x69\x26\xe2\xd5\x83\x01\x9b\x6c\x76\x9b\xf3\xa2\x30\xa8\x46\x94\x2c\x43\x2e\x34\x83\x1c\x49\x9d\x04\xd4\x37\x72\x5e\x64\xc9\x1d\x37\xa8\x01\x74\xb3\x53\x01\x10\x88\x41\x7f\x2d\xed\x4f\x0e\xad\x2a\x8a\x0c\x59\x2b\x46\xcf\xa5\x06\x10\xe1\xdf\x5b\xa9\x4b\x55\x3d\x50\x69\x40\x73\x66\x6c\x79\x1a\x21\x13\x91\xb1\xa7\x42\x84\xa2\x6f\x12\xf2\x3d\x0d\x93\x8f\xe1\x43\xd1\x87\xbf\x72\x73\x68\xe6\x45\x6e\x12\x07\xf3\x84\x84\xbf\xd7\x67\x03\x37\x11\x65\x23\x02\x3c\x50\xbc\x6d\xf5\x41\x9e\xb3\xea\xfa\x1a\x02\x5f\x4d\xa4\x1e\xda\xb2\x26\x4d\xa2\x75\x83\x58\xbd\xf5\xdf\x5a\xdc\xcf\xfd\x59\x80\x64\x55\x3e\xcd\x63\x1f\x4e\xf4\x41\xeb\x80\x27\x1b\xcd\x30\xfc\x61\xdf\xbd\x61\x73\xdc\x01\xb5\xbd\xb2\x7e\xc4\x33\x83\x44\x1d\x3c\x59\x01\x3a\xa9\x0d\x14\x0e\xd5\x38\xa1\xd5\x46\x6a\xcb\xb9\x20\x5e\xea\xe7\xbe\x13\x8c\x0c\xc0\x73\x23\x90\x8d\x65\x78\x09\x4e\xd3\xa4\x0c\xb3\x49\x39\x53\xe2\xfc\xa6\xc1\x3d\x05\x08\xea\x8b\x52\xf3\xfa\x73\x1a\x1e\x21\x6c\xe2\x79\x77\xbd\x42\x64\xee\x42\x5e\xa2\xa5\x5d\xe2\x45\x93\xee\x25\x60\x29\x4d\xe6\xf2\xfa\xf6\x17\x31\x21\xb5\xe9\x8f\x84\x52\x41\x97\x44\x0a\x9e\xeb\xce\xf5\x5f\x30\xfa\x7e\x2d\x4d\xfe\x07\x05\x4f\x56\x63\x04\xcb\x4e\xc8\x6b\x44\x13\x96\x9a\xa6\x75\x78\xf3\x57\xda\x7f\x05\x61\x8a\xe1\xe9\x00\x00\xf4\xd6\x4a\xc8\x22\x5b\x24\xd5\xa5\x41\xa1\x15\x53\x41\xbf\xa7\x19\x51\x8f\x7f\x07\x0e\xcd\xb3\xe2\xd1\x88\x7e\x3a\x53\x9d\x2a\xd4\x0c\xc2\xc4\x10\x28\x9b\x0f\x19\xfb\x1e\xf7\x49\xc5\xb8\x2c\x99\x9f\x06\x84\x5a\x59\x59\x8a\x6a\x7e\x31\xb7\x04\xc6\x7e\x4f\x77\x2c\x5b\x24\x3a\x46\x03\xb7\x95\xd4\xb7\xed\x23\xce\x56\xb8\x6c\xf3\xfb\x25\x47\xcf\x84\xaf\xb2\xec\x17\x38\x6b\xf7\x7f\xb1\x52\xba\xb3\x0b\xe0\x11\xdf\xe7\xe1\x92\x13\xca\x47\xee\x4b\x06\x7b\x09\x74\xf0\xef\x3d\x1d\x14\x0a\xd9\x90\x94\xaa\xae\xcd\xf9\x62\x67\x11\xcf\xd2\x5a\xb9\xe5\x02\x59\x4f\xd9\xbc\xa5\x37\xc2\x8e\x64\xb3\x50\xf9\x57\x70\xf1\x3e\xde\xf0\x6c\x27\xac\x1d\xd4\xfd\x99\x65\x2a\x7c\x27\xf0\xa7\x01\x9e\x6b\x43\xcb\xa1\x30\x7b\x19\x59\x64\xde\xf7\x34\x6d\xc1\x9c\x0a\xdf\x3d\xc8\x09\x0b\xce\xfb\x1e\x3f\x4e\x0e\x3e\xe6\x64\x91\x7b\x7f\xc7\xd5\xa2\xaf\x11\xf5\x78\xec\xba\xab\x21\x83\x1d\x5c\x6d\x12\x9c\x66\xd2\x83\x2c\x3e\x64\x29\x45\x97\x8b\x84\x55\x11\xb2\xd4\x9f\x00\x6b\x98\xfa\xa7\xc1\x3c\xf3\x81\x73\x0b\x58\x08\xfd\xa2\x85\x69\xe2\x43\xdb\x3f\x80\x15\x7b\xe8\xfe\x74\xcc\x03\x7f\x12\x54\x71\xc0\xaa\x94\xa9\x9e\xe2\x60\x0e\xd8\x99\x69\x05\x36\x78\x21\x54\x56\x9b\x42\x02\x6c\x83\x84\xc6\x3e\xf0\x8d\x01\xeb\x21\xd3\xf8\xa5\x45\x61\x80\xe1\x54\x92\x3f\xaf\x7f\x6f\x6d\x17\x62\x61\xbd\x17\xa3\x03\x41\x0d\xdc\x98\x50\xe9\x0e\x0e\x2b\x2a\xa6\x31\xa1\xf1\x9e\x7e\x5c\xf3\x3e\x4f\x90\x83\xeb\x01\x53\x26\x68\xce\xaa\xeb\xf1\x68\xc6\xd4\xb5\x96\x5a\x67\x62\x0d\xf3\x2c\x42\xc3\xbe\xab\x5d\x75\xdc\xca\xe1\xe0\x27\x69\x28\x3c\x75\x9b\x7c\xe9\x2e\x0e\xda\xf0\x52\x3a\x1e\x0b\xe0\x53\xb5\x25\x8c\x27\xba\xfd\x1e\xc8\x9d\x78\xc1\xe0\x30\x07\x07\xa7\x6a\xc3\x03\xb6\xb8\xca\x4d\x63\xb5\xba\xe8\x50\x10\x5a\xef\xa9\x00\x61\x1b\x37\x55\x8b\x94\xe5\xad\x95\xf9\x69\x60\x9a\xf0\x57\x1e\x9c\x6a\x05\x73\x2c\xf7\x40\x15\xcf\x04\x0d\xba\xfe\x89\xb9\x29\x34\x53\xd7\x5e\x0b\x36\x63\x0d\xb1\x95\x66\xe0\x6b\x76\xf2\xc1\x7a\x7b\x17\x26\xe5\xd7\xa9\xe0\x79\x1a\x26\xe5\xf7\x61\x7a\xcb\xcb\xfa\x2a\xec\x52\xc6\x7b\x29\xd1\x22\xfe\x6f\xdf\x7f\x4d\x90\x16\x3f\x3b\x99\x1f\x23\x32\x1d\x8d\x27\x06\x13\x2b\xb2\x84\x03\xc1\x55\x8f\xf6\xc7\x30\x4f\x4d\x93\x9b\xe6\xd7\xb5\x3f\x50\xb8\xe1\xa4\x9b\xa5\xba\xfb\xb8\x6e\x69\x50\xb7\x84\xfe\x7b\xf6\x86\x17\x45\x78\xcb\x29\x97\x04\x07\x03\xff\x3c\x4a\x21\xf4\xdb\x2a\x67\x6b\xde\x5b\x14\x47\x5f\x59\xd5\x69\x97\x90\x3d\x02\xe6\x6f\x2d\xec\x69\x76\xc3\xaf\x2c\xf2\x14\xaa\xa8\xf0\x9d\x88\xc8\x6f\xbe\xbb\x52\xbe\x8b\xef\xb2\x30\xe2\x91\x41\xbf\x02\x12\xd7\x9b\x57\x06\x43\xfe\x8a\x54\xbd\xb5\xe4\xbd\xb0\xf2\xa5\x0f\x53\xff\x26\xe7\x9a\x13\x5b\xd2\xff\x96\x4e\xaf\x3b\x64\xbc\x35\xbd\x5a\x8e\x0d\x0f\x5b\x5f\xd3\xe8\x52\xcc\xff\x53\x18\x0b\x4f\x3d\xb7\x16\x9d\x25\x8d\x08\x16\xe3\xb1\xaa\x19\x73\x3e\xda\xaa\x02\x52\x96\x56\xfd\xc2\x86\x0e\x1d\x3a\x43\xf4\x63\x6f\xe5\x7f\xe9\x94\xe5\xdf\x5a\x0b\x23\xa4\xfe\x63\x50\x89\x17\x31\x1f\x0e\x8a\xc9\xb1\x51\x63\x99\x6d\xb6\x09\x17\x68\x2f\x12\xca\x0c\x3f\xc0\x32\x28\x4b\x84\x97\x3a\xf2\xe9\x5f\x4c\x73\x78\x10\x07\xdb\x8e\xb2\x1f\x96\x79\x96\x24\x8b\xd6\x64\xab\x16\x89\x67\x85\x3d\xd1\xac\x8f\xcc\xdd\x61\xc6\x6a\xe2\xe4\xf2\xf9\xb2\x73\x47\x71\x73\x7b\x9b\xa4\x5c\x4b\xe6\xd0\xa4\xd6\x0f\xd0\x9d\xb2\x5f\x44\x8b\x0d\x8d\x57\x81\x53\x2c\x9e\xf4\x97\x83\x38\x1d\xc4\x00\xd2\x9c\x28\x97\x0e\x9a\xfb\xcb\x80\x0e\x1d\x69\xee\x57\x39\xc6\xd7\xaa\x17\x79\x5c\x1f\x3a\xb8\x11\x96\xa5\x55\xe0\xb5\x6d\x3b\xd8\xca\x17\x56\x5a\x29\xae\x33\x42\x53\x6c\x9b\x78\xd6\x8e\xa5\x34\x3d\xd0\xee\x55\xc6\x7c\x9a\x4c\x3c\x95\x06\x3a\x4a\x41\xb0\x7c\x91\xa0\x95\x77\x6a\x09\xe8\x50\x4e\x8b\x45\xe6\x29\x11\x0e\xa6\x2c\x69\xf5\x49\xf3\xc4\x88\x17\xc2\xdb\x2d\xaa\x7e\x10\x2f\x59\x40\x26\x07\x32\x79\xe1\x9e\xfe\xc8\x4e\x3e\x8c\x37\xc5\xf8\x84\xfe\x17\x3b\x19\x4b\xfb\x02\xa2\x0b\xa8\xfe\xd2\x16\x94\xdb\x22\xfb\xdb\x76\x5b\x5b\x26\xd4\xd9\xfe\xa3\x65\x2c\x54\x19\xa3\xfd\x48\x8d\x4d\x31\xd6\x62\xf2\xfc\x17\xfd\x8b\x34\x67\xf8\xcf\xbe\x25\xd6\x56\x89\xcb\xa0\x4d\xfa\xfb\x70\xa4\x29\xcc\x9b\x2e\x3e\x43\xea\x11\x17\xb6\xba\x40\x55\xda\x65\xc0\xd3\xe8\x99\xbd\x8b\xa3\xd1\x68\x8f\xbf\xcc\xa5\xcf\xf4\x5b\x9f\x31\x80\x52\x9f\x60\xdd\xd7\x6b\xeb\xc4\x68\x79\xda\xd3\xff\x94\xd7\x4f\xeb\x61\x20\xdb\x25\x98\xf0\x94\x48\x5f\x8a\x54\x1b\xff\x7a\xaa\xe7\xa3\xca\x8e\x59\x1c\xdc\x9b\x4f\x50\xb2\x45\x0b\x2e\x8e\x5d\x1c\x29\xd5\x4d\x38\x82\x2a\xda\xf1\x81\xa4\x4d\x90\xcc\xff\x0f\x4b\x90\x80\xa5\x9d\xdb\x46\xe5\x97\x9c\xb4\xaf\xc6\xcc\xba\x57\x57\x6b\x13\x2f\xd1\x1d\x83\xa1\xb4\x5a\xf6\x3a\x43\x87\xe3\x59\x2b\x41\xf6\x60\x4f\xc3\xe5\x92\x17\xc5\x31\xf9\x78\x53\x7d\x59\x8a\x3e\x99\xad\x30\xcd\x3a\x4f\xba\xa8\x75\x31\xd0\x45\x4f\xaa\x66\x0a\xf9\x4a\x53\x42\x1b\xb5\xe8\x22\xf5\x04\x39\x14\x3c\xb5\x94\x77\xdd\xe9\xd6\x17\x77\x8e\x27\xa5\xfa\x15\x76\x53\x66\x89\xce\xf5\xc1\x82\x2c\x04\x8a\xa6\xff\x03\xfa\xc2\x60\xc0\x24\x4e\x07\xf9\xc2\x17\x81\x27\x5a\x92\x4c\xa2\xdb\x47\x4b\x86\x41\xdd\xcb\x92\xfb\xc2\x4f\x83\x60\x6f\xe9\xa0\x00\x1a\xaf\x5d\x76\x2b\xef\x92\xff\x14\xe2\x29\xb6\x50\xd5\xd9\xf9\x0a\x87\x9a\x75\x58\xbc\x09\x45\xf8\xdb\xb1\xbe\x19\xbb\x69\x0e\xbb\xfd\x11\xc0\x66\x41\xf1\x6f\xd0\xf9\xe1\x19\xfd\x87\xfa\xe5\x5c\x99\x3b\x3c\x49\x5b\x87\xe7\xd7\xfb\xf2\xda\xaf\x9e\x03\xf2\x0c\xef\x5d\x3b\xf1\x5f\x8d\xff\x11\xe8\xd4\x26\xe5\x07\x76\x75\xcd\xb4\x77\xaf\x61\x21\x78\x4b\x95\x11\x85\x22\x1c\x1b\x23\xa1\x9b\xc0\x1a\xe3\x67\xa6\xd1\x8d\x24\x70\x80\x55\x78\x63\x6f\xf7\xb2\x7e\x79\xce\x4b\x7b\xe8\x93\x21\xf2\x1d\x6e\x8d\x78\xab\x7e\x98\x14\xdc\x90\xbb\xae\x65\x00\x65\x97\x41\xa4\x30\x54\x16\x67\x8c\x8d\xf8\xc8\x30\x16\x23\xee\x35\xd6\xaf\x8b\x6f\x7e\xf8\xee\x5b\x69\xc5\x80\x4b\x87\xec\xad\xb4\x3a\x4e\x66\xe4\x69\xff\x0f\x0d\x89\xa5\xa7\x54\xca\xda\x81\x0b\xd3\xfd\xa3\xae\x16\x3f\x98\x4a\x95\xed\x1f\xb6\xfa\x68\x71\x52\x96\xdf\x68\x6f\x7b\x1a\xb5\xcb\xb4\x96\xe1\x3f\x6c\xb9\x4c\xab\x3e\xa8\x85\xf3\xa6\x5b\x84\x3c\xfd\x43\x71\x55\x2a\xd6\xe3\xcf\x9f\xaa\xf5\x9b\x6e\xad\x3f\x1f\xad\xf6\x9b\x56\xb5\xc8\xa6\x68\x86\x00\x07\x8d\x74\x42\xf1\x4b\x9d\x30\x0d\xe1\x40\x1d\x6b\x66\xad\x2d\x34\x92\xf6\x30\x9a\xba\x07\xb5\x41\xff\x40\x72\x12\x4b\x23\xb0\x58\xd3\x9a\x0f\xbf\x91\x5f\xa8\xa1\x80\x08\xc8\x52\x18\x44\xdd\x6a\x95\xd6\x2e\x87\x72\x35\x87\x78\x54\x80\x76\xac\x9c\xc1\x8b\xe4\xab\x9b\x10\x68\x12\x5b\xa5\x82\xea\x3f\xac\x5c\x89\x58\x4f\x61\x9f\xe7\xd2\xbf\x12\x6f\x7c\x9e\x7f\x83\xb8\xd0\x6d\x56\x8f\xe0\x99\xa9\x87\x43\x91\x8b\x52\x35\xe3\xb1\x57\x67\xb1\x25\x7e\x55\x97\xfb\x13\xe2\x7d\x79\x70\x69\x7f\x15\x63\x23\x5e\x59\xb1\x46\x72\xeb\x70\x88\x35\x39\xb0\xd2\x0a\x66\x94\x13\xb2\x48\x3d\xfd\x0b\x0e\x45\x4f\x9e\x7f\xbe\x43\x30\xe1\x70\xf8\x57\x11\x5a\xe9\xe1\xf1\x4f\x7e\x19\x3a\xc7\xf0\xb2\x73\xbf\xff\x61\x63\x0a\xb7\x1a\x00\x28\x3d\xbb\x42\xaf\x5f\x77\x7c\xc7\xfb\x37\x5c\x80\x47\x63\x72\xc5\xd0\x27\x74\x75\x6f\x90\x91\x81\x85\x0c\x9a\xb3\x6f\xea\x0d\x89\xa6\xa6\x89\x31\x9e\x0f\x2e\x91\x87\x5c\xda\x5a\xd0\xad\x73\x52\x42\xbc\xbc\xd1\xdb\xe0\xdd\x7b\x7b\x1a\xf1\xc3\x4e\x91\x27\xbc\x30\x0f\xda\x97\x71\x81\xd9\xa3\x8d\xb9\x64\xe3\x79\x7d\xe1\x15\xde\x7d\x55\xbb\x4e\xb1\x47\xfb\x67\xcc\x06\x47\xc4\x42\x86\x99\x35\xe2\xb4\x96\x97\x33\x75\xf9\x8c\x56\x26\x1f\x8f\xd1\x29\xd7\x82\xb6\x98\x32\x84\xad\x42\xf8\xea\x65\x09\x55\x3b\x4e\x8c\x2a\x2f\x5a\x2b\x16\x75\xf8\x3f\xda\x6a\x34\x72\x71\x13\x74\xee\x1d\xe6\xa6\x89\xab\x15\xf5\x2c\x28\xa8\xb0\x80\x42\x34\x3d\xed\xbf\xa9\x5c\x01\x1e\x73\x18\xf3\x9a\xd0\xc8\x29\x48\x91\xe8\xd5\x80\x4e\xe9\x93\xd4\xe2\x1c\x17\xb0\x1f\xc8\x79\x34\x42\xe4\x8b\x7a\x96\xd3\x40\xe2\xe8\x01\x65\xea\x9b\x25\xd9\xd3\x49\xa5\xa6\xee\xb3\x05\xb2\x04\xe3\x94\x33\x00\x2f\x4d\x01\xd8\x5d\xa4\x7f\x91\x2e\xaa\xc9\xad\xa8\x5b\x7d\x39\x46\xcd\x8c\x79\xfd\xf8\xde\xc6\x8d\x7a\x91\xcd\xdb\x78\xa0\x16\x03\x55\x53\xcc\xa5\x7d\x7d\x35\xb1\xc0\x43\xa1\xbd\x4d\x33\x79\xda\xea\xe9\x41\xcf\xcf\xac\xc1\xfe\x6a\x96\x09\x0f\xf3\xff\xfc\x64\x4d\x0a\x71\x24\xda\x53\x3f\xe8\x15\x0c\xea\x5c\x9d\x4b\xb3\xb6\xf8\x49\xee\x0f\x34\x6c\x19\x6a\x15\xba\xc8\x6d\x3c\xce\xcb\x32\x6b\x1d\x98\x63\xea\xc7\x01\xd9\x23\xbb\xf6\xa9\x19\x94\x33\x82\x8e\x41\x6a\x65\x62\x24\x2c\x2b\x55\x64\x21\xf6\xc3\x80\xf2\x16\xd2\xca\xfb\x59\x10\x31\x61\x33\x18\x8d\xa8\x7a\x43\x5c\x2c\x9a\x13\x5c\x61\xe9\x42\x3b\x51\x4b\x8e\x72\xbc\xc2\x76\x1c\x2c\x80\xcf\x8a\x9e\x5f\xdb\x25\xb9\x8e\x46\xd6\xc2\xf3\xf9\xdb\x00\x3f\x5c\x47\xa3\x92\x9c\xa8\xcb\xe8\x68\xd6\xbe\xe8\xf6\x43\x75\x9f\x30\x61\x25\xb1\x8c\x51\xce\x47\x06\xc1\x03\xe0\xff\x0a\x9e\xd7\xd7\x04\xc7\x9c\xf9\xc6\xfb\x6c\x6b\x50\xe3\xfb\xf8\x76\x2d\x0c\x6a\xfc\x39\x13\x22\xdb\x18\xd4\x78\xc7\x57\xc2\x08\x68\xc8\xd9\x81\x08\x80\x16\x7d\x51\x8f\x07\x9a\xa1\x5d\x27\x0c\xb4\xb4\x65\x81\x43\x59\xb6\xd9\x66\x05\x8f\xd0\x7e\x30\x44\xf6\xec\xfb\x2c\x53\x71\x7b\xac\xdf\x51\x6d\x59\xb6\x2a\xb1\x96\x18\xdf\xbd\x93\x4f\x81\xf4\xc0\xc1\x53\xad\xdd\x34\x4b\x91\xf1\xb3\x38\x93\x17\x92\x15\xe2\x21\xc1\x7b\xe4\xf0\xa2\xf3\x52\x79\xb8\xb4\x52\x4d\x13\xb9\x3c\xd3\xac\x4b\x3f\xda\x4b\xa4\x47\x86\xca\x61\x90\x3d\xdd\x75\xef\x10\xae\x75\x5e\x34\xa6\x21\x7b\x92\xa8\x17\xcb\x43\x5b\xe8\xc7\x41\xd5\x8c\x1f\x07\xb4\x79\x64\xa2\xba\x3a\x08\xb3\x02\x11\xaf\xee\x99\xc5\x9d\x84\x50\x41\xb4\xdc\x50\x51\x73\xea\x6b\xd8\xef\x2d\xef\xeb\xc4\xc4\xa1\x05\xcb\x0f\xc3\xa3\x0e\x72\x7b\xb9\xcb\x2d\x3d\x86\xbd\x3e\x25\x6a\x93\x43\x1b\x86\x25\x03\x2c\x46\x15\x51\x8a\xa1\x6d\x2d\xcc\xf0\xed\x6e\x73\xc3\x73\x5f\x04\x0b\xc3\xf0\x8c\xed\xbd\x41\xe8\xae\xe5\x7e\xd1\xc9\x56\x96\x90\x69\xc8\x58\x62\x9a\xa3\x25\x31\xcd\x8c\x4b\xc3\xe4\xba\x39\xe9\xec\xbb\x33\xcd\x9d\x3f\x0d\xd0\xa7\x1e\xd9\xb4\xe5\x09\x9b\xd0\x84\x25\x65\x09\xe9\x74\xc7\x46\xcb\xb2\x74\xe5\x22\x7d\x94\x70\xc1\xce\xee\x46\x09\xa1\x96\x3b\x8e\xc9\x73\xcb\x1d\x5b\x31\x74\xfb\x64\x59\x96\xf6\x29\x21\x2f\x98\x63\x9a\x56\xc8\x1c\x42\x77\x27\x2c\x9e\xef\x9e\xb3\x09\x3d\x28\xac\x74\xe8\x7b\xcd\xd1\x60\xc7\x46\xbb\xb2\x84\x16\x1d\xd8\x92\x7d\x37\x58\xec\x46\x16\xfc\x8e\x5c\xf2\x3c\xf5\x27\x81\x37\x42\x35\x44\x0e\x84\xc0\xde\xa5\xb1\x60\x09\xcd\xed\x42\x84\xb9\x60\x3b\x9a\xdb\x3c\x8d\x18\x7a\xae\xa3\xec\x64\xc5\x11\x2f\xaa\x49\x8b\xb8\x1e\xd0\xb7\xbb\x00\x72\xcd\x4b\x8a\x66\x6c\xc5\xf5\x03\xbf\x8c\x3a\x6b\xdf\x64\xd1\x43\xeb\x82\x93\xb4\xe3\x01\x87\xc1\x39\x14\xfe\x0a\x0d\x7f\xe9\xa7\x6e\xea\xac\xf1\x5e\xb2\x15\xc6\x4d\x92\x2d\x7f\x31\x08\xc5\x2e\xb0\xac\x75\xcb\xe9\xba\x7b\x89\x27\x30\xc2\xd2\x6a\xc2\xa1\x61\x13\x05\x25\x7e\x11\xce\xe3\xd1\x88\x58\x39\x86\x15\x57\x0b\x11\x5d\xd4\xf3\xf6\xf2\xa3\x62\x61\xd5\x3d\x80\x59\xc8\x00\xf1\x25\x35\xce\xb5\x21\x94\xa5\x0c\xa3\xe0\xc7\x80\x95\x9d\x4a\x18\xde\x43\x87\xab\x3b\xef\xae\xee\x84\xa3\xe5\x8b\xac\x37\x92\x47\x47\x4f\xb6\x38\xd4\x5a\x94\x29\x54\xb2\xf3\x5a\xc3\x34\xad\x5c\x27\x30\xf0\xba\x1a\x97\xd4\x68\x65\x32\x62\x3a\x8c\xb0\xd3\x1f\xf8\x72\xcc\x4c\xba\x58\x67\x1f\x7b\x56\xe2\x5a\xed\xb5\xc8\x37\xaf\xe3\xa8\xcf\x50\x40\xe5\x21\x7b\x2a\xb2\xdb\xdb\xa4\x6f\x1b\x36\x6e\xb2\x2c\xe1\x61\xcb\xef\x77\xa1\x0e\x1a\xd0\xb2\xa5\x4c\xe4\xa1\x85\xea\xf9\x60\xfb\x4f\x54\x3b\x8b\x47\xf9\x5b\x95\xac\x5e\x65\x61\xc9\x98\x23\x41\xbe\x51\x72\x84\x2a\xee\x53\x89\x91\xa0\xf0\x32\xf8\x0d\x67\x27\x6d\x87\xa8\x8e\x3f\xd4\x49\x4c\xaf\xa0\xf8\xb3\xf2\xc3\x26\x8b\x76\x09\x7f\x56\x5e\x9f\x58\x0b\xef\x9f\xe1\x5d\x58\xf2\xe5\x26\x24\xc5\x32\x8f\xb7\xe2\x24\xa6\xb7\x9c\x3d\xc9\xc0\x72\x9e\xef\x52\xa3\xba\x16\x69\xb3\x4b\x44\xbc\x4d\x38\xfb\xa2\x7a\xfa\xe2\xa5\x41\x8d\xe6\x42\xa4\x80\x8a\x35\x0f\x23\x59\x08\x5d\x57\xe5\x77\xf5\x18\xd0\x65\x96\x78\xfe\xa4\xfe\xf8\x62\x99\x25\xb7\x79\xb6\xdb\xca\x6c\xf5\x9b\x56\x42\xe4\xad\x02\x02\xd6\xa6\xaa\x14\x1f\xf5\xac\x91\xe7\x4f\xbb\x59\x5f\x88\x5c\x65\xcf\x5f\xf6\x94\xf9\x59\x79\x44\x7a\xbe\x43\x0d\x83\x1a\x46\xa0\x51\x92\x3b\xfd\xf6\xdb\x5a\xe4\xf0\x89\xdb\xf8\x0e\x6f\x7b\x3b\x72\x65\xa3\x8c\xa1\x43\xbc\x23\x55\x75\x2f\x3d\x5a\xf4\xdc\x83\x54\x55\xe1\x07\xb4\x23\x2d\x94\x3e\x76\x8b\xda\xca\x94\x07\x14\x9d\x88\xea\x71\x3d\x1c\x5c\x11\xec\x20\x5d\xac\x0e\xee\x2f\xf2\x79\x3a\x1a\x11\xb9\x46\xb9\x9f\x06\xd4\xb8\x4d\xb2\x9b\x30\x79\x7b\x17\x26\x06\xba\x30\x4b\xc2\x21\xba\xdf\x08\xd9\xdf\x72\x3b\xdb\x0a\x9c\x47\x26\x9f\xe3\x2c\xa5\xb7\xdc\x46\xd8\x43\x92\x58\x65\x99\x80\x87\x6a\xbe\xf1\x39\x94\xba\xb1\x5b\x34\xc6\x0c\x23\x2c\xb1\xc6\xd7\x08\x51\xff\x15\xe0\x77\x69\xfe\x69\x71\xfd\x71\x34\x3f\x69\x26\xe9\x68\x48\xa7\x2a\xa0\x08\xdd\x32\xa1\xe8\x77\xb5\x0b\x7c\x99\x87\xb7\x48\xc8\x49\x15\x2d\xc9\xa1\xeb\x06\x00\xd1\x8b\xf5\x3c\x92\xae\x10\x18\xf2\x29\x0a\x88\x0c\x81\x19\x93\xae\x9a\x24\x26\xa4\x82\xf3\x8a\xc6\x5a\x48\xa4\x38\xf0\xe2\x46\x3b\xf2\x4a\xc9\xbc\x62\x25\x26\x09\x19\x46\x73\x68\x5d\xff\xd5\xf5\xb2\x8e\xe2\x3b\xa0\xb6\x05\xb3\x36\x6a\x57\x8f\x49\x59\xfa\x12\x4b\xc9\x61\xe0\xfd\x25\xbb\xe5\x7e\x11\x94\xe5\x2d\xb7\x2b\xb4\xa6\xa1\xe6\xa8\xbc\x84\x1d\xf6\xd1\x5e\x8b\x4d\xf2\xd7\x9c\x2b\x6b\xdf\x98\x8c\x96\xb0\xd7\xee\x30\xa2\x80\x0c\x63\x14\xb2\xb0\x89\xe7\x3c\x6f\xc6\x17\xea\xc6\xca\xd4\x0a\xd9\x56\x37\xa7\xd6\x63\xa5\x32\xc3\x50\x01\xcd\xe4\x11\xbe\x1a\xdc\x7b\x7e\x2f\xb9\xce\xea\xd2\x8b\x6d\xa7\x14\x4c\xc5\x3c\x66\x2b\x3f\xaa\xa2\x58\xe4\xe8\xa2\xa4\x2c\x12\x63\x9a\x93\x97\x63\x97\xa0\x45\x93\x0a\xb9\x55\x03\x39\x61\x52\x89\x1f\xb2\x3b\x6e\xb5\x81\x1b\x13\x6a\x48\xea\x66\x60\x88\xae\x07\x6e\x85\x84\xca\x8b\xa7\x77\xd8\x62\xe8\xef\xb0\xc5\xab\x6a\xa6\xaa\x98\x8d\x06\xa9\xdd\x5d\xe3\x7a\xab\xd9\xee\x87\x87\xa6\x5d\x47\x91\xac\xd5\x95\xf0\xc8\x3c\x0b\x76\xf0\xe5\x33\xf7\xc8\x21\xed\x47\xa6\xa3\xfd\xb9\xba\x4d\x8f\x1a\xcd\xbd\x7a\xdd\x3c\xea\x6e\x39\xd1\x73\x0b\x1d\xbd\x92\xe1\x45\x5f\x27\x59\x8a\x96\xeb\xf0\x8b\x93\x36\x74\x48\xe7\xad\xc6\x92\x2a\x22\x29\x6d\x7b\xc6\xc3\xe4\x86\x39\x0f\x5f\xde\xbf\x38\xa9\x9f\x0d\x7a\x65\xa7\x19\x56\xff\x5a\x96\x62\x18\xd3\xf4\x48\xcd\x2d\x9f\x75\x4b\xee\x83\x8f\xb0\x91\xfd\xc2\x1f\x4e\xe8\xcf\x6a\x47\xdc\x64\xbb\x82\x97\xdb\x2c\x4e\x05\xcf\xcb\xa5\xf4\x3b\xde\xf0\x74\x57\x46\x79\x78\x5b\x46\x79\xb6\x25\xe5\x32\x89\x97\xbf\x9c\xd0\xef\xb0\x8c\xff\xc1\x0e\x9e\x13\x38\x2c\xda\x96\x3d\x22\x25\xd1\x88\xca\x7b\xae\x5f\x7a\x50\x27\xdf\x6b\xc9\xda\xfd\xe3\xdf\xf2\xb6\x57\x33\x63\xac\x63\x26\xa5\xbe\x84\xed\x70\xb3\x8d\x15\xf9\x7e\x8f\x8e\xce\x96\x81\xd1\x6a\x91\xa7\xd0\xb8\xc1\x77\x9d\x90\x71\x68\xa9\x43\x8b\x8e\xce\xb6\xd6\x72\x21\x85\x29\x06\x71\x8f\x8c\x25\x45\x39\x6b\x5e\x96\x29\x4d\xeb\x43\xba\x20\xd8\x40\x81\x0d\x08\xbf\x08\x68\xac\xf1\x54\xf1\x4a\x39\xec\xe4\x32\x4e\x0d\x63\xd9\xc2\xca\x58\x4a\x73\x56\x57\xe1\xa9\x0f\xa6\xd9\xa3\x76\x4b\x21\x7b\x4e\xf3\x3a\xb3\x7a\xd5\xba\xa0\x42\x9f\x67\x24\x63\xf7\xbc\x5e\xcf\xc3\xac\x0e\x5c\xa0\x07\xee\x8f\xf1\xd4\x91\x51\x2b\xeb\x3d\xfb\x5a\xc4\xce\x56\x78\xf1\x52\xd8\x6f\xf3\xb8\x27\xf6\xed\x2e\x8e\x58\x88\x3f\x18\xbc\x0f\xdf\x1f\xf1\x67\x34\xc2\x4b\x35\x7a\x24\x35\xfc\x8e\xa7\x02\x85\x11\xca\xe5\x22\xa3\xb9\x54\x49\x37\x33\xf5\xb6\xd6\xd7\xa4\x0b\xeb\x9b\x5a\x7d\x31\x74\x51\xae\x5a\x57\x00\x69\x4f\xf5\x45\xdf\xde\xd0\xa5\x6b\xbc\x91\x26\x3f\xd0\x43\x49\x49\xbe\xda\x6d\xb1\x59\x3c\xd0\xb9\x26\xb7\xe3\xe2\x7d\x1e\xdf\xde\xf2\x5c\x79\x7f\x09\xe9\x3b\x5a\x19\x6b\x13\xab\x6a\x11\x23\x29\x84\x09\x9e\x17\x9f\xf6\xc4\x8e\x78\xc2\x6f\x81\x18\x57\x57\xf5\x8b\x6c\xfb\xd7\x3c\xdb\x86\xb7\xa1\x1c\x6c\x3d\x03\x71\x8f\x15\xd3\x37\x8d\x8c\x5a\xd0\x18\xe5\xab\x55\xcf\xa8\xea\x87\x45\x68\x3c\x64\xcc\xca\xda\x1d\x27\x65\x99\x2f\x5a\xc5\xf1\x9e\x6e\xbc\x13\x7d\x08\xb3\x5f\xeb\xcb\xa1\x47\x5f\x6f\x36\x3c\x8a\x43\xc1\x5b\x5d\xa3\x1c\x3d\xc4\x78\x2a\xde\x48\xb2\x80\xc2\xa0\xbb\xe6\xde\xa0\xb8\xd1\x62\xb4\x9a\x52\xba\xe5\x0a\x26\x42\x82\xce\xaa\xa5\xdd\xb1\xef\x04\xf4\xd1\x46\xe3\x8a\x46\x29\x4e\x68\x5c\x07\x9c\xae\xdc\x45\xe9\xa7\xfa\x87\x8e\x2e\x8d\x40\xb2\x11\x82\xc3\x2e\xd6\x46\x80\xf7\x9c\xec\x55\x1a\x7b\x92\x3c\x94\xf7\x74\xe8\x94\xd7\xba\xfc\x42\xe7\x6a\xaa\xcb\x27\xe8\xa6\x6a\x86\xc8\x6b\x22\x50\x0f\x63\x2b\x8c\xc2\xb3\xa0\x15\xb3\x94\x54\x29\x34\x63\x71\x1d\x2a\x03\xe5\xd9\x47\x3c\x21\x43\x8e\x66\x1a\xd5\x32\x49\x3b\xcb\x84\x5a\x4b\xb6\x91\xfd\x2f\x48\x59\x6a\x6f\x18\x6f\xd4\x0a\xd9\x46\x35\x89\x11\x32\xeb\x37\xa6\x6b\x57\x3e\xe1\x6c\xf5\xd8\x80\x4c\xcd\x16\x8f\xd0\x95\x4f\xc8\xf8\x03\xf2\x13\x9c\x04\x31\xde\x44\x25\xdf\xd1\x8c\xe1\xd4\xa5\xc9\x84\x26\xcc\x52\x4a\x0a\x83\xe8\xfa\x67\x60\xa4\x2a\xa6\x2f\x41\xe5\x33\xbb\x61\x56\xc1\xbe\x53\x0c\x97\xf0\x93\x40\xc5\x40\x72\x03\xba\x66\x56\xe1\x4f\xd4\xad\x4a\x2a\x20\x8f\x5d\x45\xe4\x21\x34\x32\x4d\x6b\xcb\xba\x8b\x2e\xc2\x45\x47\x23\x66\x65\x8b\x6d\x6b\xe9\x79\x5b\xfb\x26\x4e\x23\x75\x33\x43\x44\x8f\x96\xdd\xfd\x3f\xd4\xfd\x09\x97\xdb\x36\xf2\x2f\x0c\x7f\x95\x16\x5e\x0f\x2f\x60\xa1\xd5\x92\xb3\xfc\x27\x94\x61\x1e\xc7\x4b\xe2\x89\x3b\x76\x6c\x27\xb1\x87\xad\xe9\xc3\x96\xa0\x16\x63\x8a\x54\x48\xa8\x37\x51\xdf\xfd\x3d\x28\xac\x5c\xd4\x71\xe6\x3e\xf7\x9e\xe7\x89\x67\x5a\x24\x08\x02\x20\x96\x42\x55\xa1\xaa\x7e\xcc\x9d\xc9\x40\x84\xb7\x05\x2d\xca\xf4\x12\xca\xb8\x50\xe7\x97\xa5\x25\x20\x39\x95\xc3\x13\xaa\xc1\xa2\x66\x98\xc3\x82\xfa\xf1\x38\x42\x18\xf4\x03\xc1\x3a\x14\xff\x23\x47\xde\x12\xa8\x95\x8e\x36\x34\x42\x64\x2f\xd7\x3c\x5e\xb2\xb9\xe2\x8a\xb1\xbe\x64\xf1\xcc\x11\x96\x67\xc5\x36\x17\x6c\x4c\x37\x72\x01\x6e\x37\x41\x30\x98\x0c\x18\xd3\x77\x2e\x6a\xc6\x8a\x26\xa0\x8d\x6c\xdb\x34\x49\x9a\xd4\xb1\x73\x5a\xd0\x84\x10\xba\x91\x0f\x64\x3f\xcb\x5f\x53\xd2\x96\xd0\xad\x99\xdc\x66\xb2\x36\x13\x98\xea\x0e\x42\x68\x11\x2d\x8d\x63\xcc\xb2\xd9\xde\xe1\x90\x8e\xe9\x96\x84\x9a\x63\xdd\x3a\x8a\xad\xd6\xa6\xfc\x48\xef\xac\xed\xbf\x58\xa3\xee\xd4\x39\x08\x1a\x2b\x36\x08\xfc\xa5\x64\xa2\x93\x7e\xe1\x94\x4d\x97\xf8\x7f\x6b\xd6\xaa\xea\x0e\x4e\x3e\x18\x5e\x86\xcb\xfb\x27\x2f\xc0\x99\xd0\x8a\x55\x80\x2a\xd6\xc2\x6d\x3a\x3b\x1b\x11\x34\x34\x73\xe8\xec\x6c\x84\xa3\x70\xf4\xf0\xec\x6c\x54\x13\x44\x86\x08\xcb\xab\x07\x04\x01\x70\x06\x5b\x7a\x91\xc0\xa6\x64\xcb\x96\x10\x08\xac\x08\x82\x8b\x01\x63\xdb\x91\x99\xf8\x75\x0d\x60\x00\x72\x54\x21\x5d\x0d\x7b\x15\x04\x83\x4a\xcd\xdf\xed\xc8\x4e\x5f\xb9\xef\x04\x41\x09\xf9\x2a\x8b\x4c\x89\xd1\xc3\x87\x92\xda\x94\x75\x3d\x70\xe9\x72\x4a\x2f\x1b\xd1\xbf\xfc\x77\x5a\x53\xe6\xf8\x98\x6e\xb4\x96\x2f\x08\xcc\x95\x9b\x95\x64\x9a\x04\xc1\x60\xe9\x36\x24\x29\xec\x24\xe5\xa2\xb8\xce\xed\x92\x30\x09\xe6\xad\x15\xf5\x88\xe6\x9d\x6f\xaa\x89\x39\x5d\xb8\x87\xe6\x80\x11\x96\xa1\x8b\x1d\xbd\x38\x4a\xf3\xa3\x39\x31\x63\x69\xcf\xec\x16\x43\x39\x29\x60\x9a\x0e\xc6\x64\xda\xb6\x5b\x99\xc3\x8c\xb4\xb9\x91\xaa\xe4\x48\x4d\x48\x44\xf6\xe0\xa0\xb5\xe9\x78\xbe\x34\xfc\x0a\xe5\xb4\xb7\x93\x68\x99\xde\x48\x0e\x6c\x0e\x27\x2c\x4a\x74\x6b\x1f\xe5\x01\x55\xf6\xf8\x03\x64\x6a\x03\x26\x25\xae\x54\xb4\x37\x98\x57\xdb\xce\xe4\xb4\x4f\xf5\x81\x80\x94\x5d\x59\x45\x05\x9b\x4c\xc5\xe3\x76\x4d\x10\x6f\x65\x1e\x0b\xcf\x84\x5a\xe3\xc1\x56\x6e\x4e\x03\x2c\x85\x3a\x12\x1b\x6c\x25\x8f\xf1\x5c\x7f\x71\x5d\xc3\x50\x35\xd2\x3c\x97\xfc\xca\x4a\xf4\xa6\x8d\x9a\xf0\x54\x7e\x26\x9a\xa9\xe8\x2f\xb8\x60\x49\x2c\x86\xc3\x19\x81\x99\x9a\x56\x1e\xf3\xf0\x5e\x14\x9b\x0d\xd8\xf6\xc2\x0e\x5e\x8d\xe6\xdb\xb2\xe4\xb9\xd0\x4d\x2b\x46\x3c\xe3\x6b\x9a\xcb\x52\x52\x56\xd8\x6a\xe2\xdc\x2b\xae\x8f\x29\xf1\xca\xad\x46\xa5\x5d\x15\x7a\x0a\xa6\x23\x3f\xc5\xcf\x60\xe4\x60\x7f\x1d\xe1\x4a\xd7\xfb\xe6\xe2\x0f\x96\xd2\x6a\x24\x77\x1f\x96\xc2\x8f\x33\x33\xc3\x25\xc3\x1d\xee\x33\xb5\x6b\x57\xb3\xa1\xaa\xa0\xba\x4e\xcd\xa7\x10\xbd\x87\xeb\x2f\x9d\x03\xe4\x86\xe4\xf8\x71\x35\x2a\x79\xb5\xcd\x04\x03\x0d\x73\xd5\x65\x01\xab\x2e\x13\xeb\x0e\x0c\xb7\xa3\x4d\x51\x09\x33\x76\x41\xd0\xbc\x6f\x8c\x25\x35\x35\x81\x69\x98\xea\xe0\xc3\x16\x36\x30\xe5\xe3\x19\x9d\x33\xd1\x24\x0c\x34\x63\x7c\xa4\x90\x4e\x20\x28\x7c\x10\x64\xbe\x09\x0d\x46\x20\x88\xfa\xd0\x0d\x7c\xa4\xb0\x21\x9e\xb0\x89\x36\x6f\xcd\x24\xaf\xb3\x4a\xab\x69\xc6\xb2\x86\xd3\x3b\xb0\xa1\x3a\x08\x98\x5f\xac\x29\x75\xe0\x00\x27\xc0\x0c\x3a\xb3\xe0\xec\x7a\xaa\x6a\x17\xe0\xdd\x9e\x2a\x7c\x85\x39\x68\xfb\x2c\xcf\x9a\xc4\x85\x1c\x41\x88\xc1\x6a\x69\x9f\x01\xf0\x4d\xe2\x62\xc6\xca\x06\xbf\x10\xdd\x61\x15\xc3\x45\x5b\xf5\xe0\x0c\x9c\x46\x75\x80\x23\xf5\x48\xe3\xea\x66\x76\xef\x22\x54\x96\x14\x04\xd6\xa1\x76\xea\x18\xf7\x4a\x47\xb5\x95\xb3\x20\xcc\xdc\x38\xa4\x7b\x6b\xeb\x93\x69\x0f\xaf\xc7\xe2\x2f\xdf\x12\x26\x32\x25\x84\xe0\x05\xfe\x5a\xce\x93\xd6\xa8\xf6\xdb\xa7\x76\xe4\x01\xca\xe9\x8e\xe7\xdb\x35\x37\xa6\xa9\x6d\x53\x55\xb0\x18\x85\xf0\x61\x9e\xec\x68\xec\xab\xe4\x02\x48\xf3\x24\x83\x42\xad\xf5\x4c\xdf\xb3\xc6\x11\xe2\xfd\xaf\x77\x9e\xc4\x7c\xd6\x32\x95\x3d\xf8\x7d\xda\x08\xe2\x2f\x3e\xe9\xba\x4c\x85\xb9\xd6\x16\xba\x60\xf2\xb1\xa7\xcb\xb4\x3f\xba\x49\x6c\x2d\x8e\x67\x11\x0f\xe5\x1e\xa0\x7b\x12\x2c\xee\x34\x45\x08\x77\x59\x91\x2c\xc2\x5d\x5e\x7c\xbf\xbd\xd0\x86\xbe\x14\xa6\x70\xb8\x03\x4e\xb1\xc7\x28\x53\x36\xb8\xae\xad\x3a\xe0\x42\x13\x29\x61\x42\x7a\x8a\x11\x14\x10\x04\x2f\xb0\xa0\x46\x7f\x16\x04\x2f\x20\xf2\xa3\x5a\x1e\x52\xee\xa2\x83\xc9\x9e\x6a\xa1\xe2\xff\x4c\x2d\x84\xca\xaf\xb1\xa7\x0b\x3d\xe6\xa5\x86\x3e\xfc\xcd\x4a\xf4\x8e\x69\xeb\xa9\x6b\x78\x9e\xc0\x2e\x7d\xc1\x97\x45\xc9\xb7\xb9\xea\x58\x9f\xca\x35\x5b\x60\x08\x35\xd7\xd4\x4e\xd2\x9f\xc6\x1c\x02\xab\xda\x46\xca\x48\xb5\x13\xb4\x70\xf6\x3d\xb2\xdf\xef\x95\x7f\x8b\x65\x53\x3a\x76\xfc\xbc\xcf\xdf\x44\x56\xd8\xe7\x86\xa2\xec\x21\xf5\x64\xe9\xe2\x8f\x0f\x60\xc6\x36\x42\x63\xa9\xac\x2e\x3e\xad\x3f\xd7\xa8\x00\x07\x57\x45\x0d\xa3\x9e\x45\x64\x62\x49\x81\xfd\xbb\xca\xa6\x12\xd2\x4a\xef\x2d\x6f\xd5\x4e\xc3\x17\xcc\x06\xcf\xb4\x49\x75\xed\x8c\x28\x3b\x0f\xf5\xd6\xc5\xfd\x7e\x8b\x3e\xf0\xf0\xc6\x54\xa9\x76\x75\x33\x0d\x82\xe0\x2b\xb5\x1b\xc0\x9d\x67\xd0\x6c\x52\xdc\x0e\x10\x9a\x34\x55\x50\x93\x4b\xe0\xcd\x7b\x95\x05\x82\xe8\xf2\x85\xcd\xd2\xb8\xd7\x67\x93\xaa\x0b\xa8\x50\x82\x21\x08\x9b\xbe\x56\x67\x24\xd2\x35\x7f\x2f\x92\xf5\x86\xa9\x1e\x35\xb7\x75\xfd\x3c\x11\x7c\x94\x17\xd7\x58\xeb\x7f\xdc\xda\x67\x72\x0d\x74\x68\x28\xdb\x79\x11\xd0\x42\xfd\x98\x76\x7b\x5c\x76\x55\x1f\x83\xa4\xd2\xef\xe1\x74\x54\x86\xf7\xe9\x7a\x0b\x9f\x19\x0e\x26\xb4\xc9\x30\x74\xdd\xb2\xbb\x53\x63\x7a\x68\x1e\x7c\xe0\x54\xee\xe1\xfa\xb1\xad\x05\x40\xb4\x5a\x6c\xc9\x9e\xb6\xb8\x92\xbf\x53\x71\xf7\xbb\xee\xab\xba\xc3\xfe\xa8\xba\xfb\x7a\xe9\xef\x34\xe2\x9e\x5e\xfe\xab\xd6\x1c\xd0\xdf\xa9\x03\xf2\x4e\x6b\xf7\x36\xbe\x53\x92\x89\x9f\xf8\xad\xdc\x6b\x2e\x60\x5b\x80\x48\x6a\x73\xb9\xdc\x33\xbb\x41\xad\x92\xfc\x92\x2f\x3e\x14\x5b\x08\x73\x2f\x53\x44\x99\xe9\xb7\x16\x5c\x24\x69\x26\xaf\x60\x30\xde\xae\x92\x0a\x5e\x5a\x73\x91\xe8\x2c\x9b\xe4\x92\x7f\x34\x17\x9f\xe4\x05\x98\x70\xea\xa7\x57\x29\xbf\xd6\xb5\x94\x6a\x3b\x5c\x98\x5a\xcb\x67\xfa\xfa\xb3\xca\xfa\x99\xdf\x9a\x14\x8d\x19\x66\xaf\x54\xb3\xb2\x94\xe7\xe2\xa3\xbb\x84\xca\x8a\xe5\xb2\xe2\x2a\x55\x5d\x42\xaa\x3e\xba\x78\xb5\xf0\x6e\x40\xd2\x96\xcd\x9b\x97\x9c\xe7\x1f\xdd\x25\xbc\xa1\xa8\x80\xd7\x0b\xa2\xd0\x07\x0b\xea\xc6\xa6\x5f\xaf\xd2\x3e\xc9\x8d\x19\xa6\xb3\x09\x3a\xcc\x47\x90\x3f\x08\xee\x8c\xa1\xbe\xda\x92\x22\xed\x5e\x3c\x32\x1d\x11\xb9\xcb\x90\x8f\x6c\x5f\xd8\xf7\x7d\x57\x89\xf3\x56\x59\x93\x40\x44\x93\xf0\x51\x20\xa2\xaf\xc2\xaf\x03\x11\x3d\x0a\xc7\xa1\x7e\x51\xcd\x05\xa3\x2a\x95\xd3\xc4\x05\xff\x52\x60\x7e\xea\x94\x24\xcd\x11\xbd\xc8\xb6\xa5\xbe\x2d\xb6\x02\xf5\x84\x4f\x6a\x0a\x21\x7c\xc6\xda\xbc\x85\xe5\x5a\x5e\x58\xa3\xd0\x9f\x0f\x71\x08\xdd\xbc\x6a\x9f\x6f\x68\x46\x04\xe0\x1c\x9a\x16\xc3\xb9\x94\xa4\x1c\x65\x88\xe0\xba\xb8\xe2\x25\xa2\x70\x99\xf1\xe4\x8a\x9b\xe4\xad\x40\x66\xd8\x75\x76\x7d\xa7\x5e\xd0\x37\xfa\x15\xf3\xe8\x4b\xbf\xb9\xd9\x40\x6a\x54\x37\xa1\xd0\x7c\x72\x67\x72\x98\xa8\xaa\x00\xa3\xd0\xd8\x2f\x00\x4d\xc6\x0a\x81\xd6\x74\x4a\x23\x3c\x97\x75\xed\x59\x1f\x42\x28\xa9\xba\xd6\xa3\xce\x9c\x08\x48\x73\x66\xc5\xbe\xfe\x53\x1a\xaa\xdf\x81\x68\xe8\xba\x47\x3d\xe3\x9e\x06\x3c\x9f\x31\xd1\xd3\x6d\x79\xed\xac\x7b\x21\x7d\x4f\x8b\xbc\xab\xaf\x3b\x94\x9d\x4e\xe4\x0b\xcb\xe5\x21\x4f\x33\x30\x7d\xef\x52\x7b\x99\x62\x7b\xc5\x70\x23\xa5\xdf\x55\xf4\x0e\xf3\x96\xbe\x41\x1d\x55\x95\x4e\xc4\x8e\x4a\xdb\x45\x43\x34\x42\x43\xef\x51\xe8\x1e\x01\xcc\x8a\x92\xcb\x68\x69\xa5\x67\x20\xad\xfd\x67\x82\x1a\x11\xa8\x38\x4a\xf3\x23\x4e\x14\xb9\x5f\x2e\x21\x28\x3d\x8f\x8b\xde\xd8\x9d\xa0\x1c\x10\x41\xe0\x62\x55\x78\xd1\x89\x21\x42\x8e\xa0\xc2\x1e\x21\x02\xaf\x93\xc3\x59\xc3\x8d\x0e\x5e\x78\xf8\x08\xad\xe1\x76\x40\x73\xed\xe8\xa0\x2d\x9c\xde\x83\x19\x53\x34\x48\x4a\x9e\xd4\x17\x65\x3d\x2f\xb2\x9a\xaf\x2f\xf8\xa2\x5e\x95\x75\xba\xbe\xac\x81\x13\xae\xb3\x34\xff\x5c\x4b\x92\x5e\x6f\x92\x32\x59\x13\x7c\x9f\xe5\x13\x84\x95\x25\x67\x27\x4f\x4e\x2e\x53\xfa\xa7\xac\x40\xd9\x02\xd4\x8f\xc1\x9a\xac\x7e\x2c\x4b\x3b\x49\xe9\x33\xce\x4e\xf4\x39\xf6\x59\xf5\x10\x47\x61\xfc\x1f\x36\xab\xd9\x59\xf5\xd0\x1c\x6f\x8f\xc8\x49\x4a\x3f\x73\x76\xf2\x9f\xb3\xea\xe1\xe3\x01\x8e\xc2\xb3\xf8\xd9\xf3\xa7\x1f\x9e\x9e\xc5\xf5\xf1\x31\xa9\x65\xc2\xec\x6c\x26\xaf\x9f\x9c\x55\x0f\x1f\xf8\xbe\x5c\xbf\x37\x4f\x89\x55\x98\x38\xb9\xa5\x81\xec\x80\xbb\x71\x0a\x85\x1f\xdb\x0e\x89\x52\xe6\x83\x48\xc5\x26\xc6\x1d\x46\x60\x53\x83\x48\x3c\x9e\xd5\xb5\x17\x18\xed\x79\x13\x57\x0d\x16\x12\x56\xe4\xfb\x10\x34\xe4\x10\x9d\xa0\xa1\x66\x81\xbd\x92\xbe\xe7\x2d\x7f\xaf\x13\x65\xf7\xeb\xac\x23\x2c\x66\xd1\x37\x24\xe2\x3e\x27\x6d\x5d\x79\x42\xc3\xeb\x77\x6a\xf5\x6b\x7a\xcb\x7b\xf5\x2b\x74\xae\x02\xb5\xb4\x40\x65\xa5\x34\xd0\xd4\xa8\xe3\xd4\x73\x26\x21\x34\x61\xfa\xf8\x8f\xa6\x84\x66\x2c\xb5\xda\x75\xbb\x10\xb4\x06\x35\xd1\x0b\x88\x26\xee\xf4\x8a\x66\x3a\xcc\xd9\x98\x96\x2c\x8b\x8b\x59\xdb\x34\xaa\x71\x1a\x4c\x0b\x2a\xf3\xc4\xf9\x8c\x4c\xff\xdd\x6c\x53\xc5\xfe\xed\xb5\x69\xce\xfc\xc0\x6c\x15\xa1\xda\xdf\x47\x45\x31\xb1\x3d\xf1\x8e\x37\x21\x6d\x0e\x60\x8e\xba\xb8\xff\x79\x10\x5c\xb4\xf6\x57\x61\x66\x2c\xb3\x60\xb1\xa1\x7e\x41\x59\x63\x22\x63\x8e\x01\xf7\x75\x8d\x45\xc3\xd0\x82\x35\xb1\x02\xbc\x23\xee\x8f\x9e\x4d\xb4\x60\x99\xa6\xde\xf1\x4c\x0a\x5b\xd6\x46\x5a\x21\xec\xd0\x0d\x1b\xd3\xa5\x03\x1f\x5b\xb0\xe5\xf1\x84\xae\x20\xf2\x38\xbd\x60\x97\x78\x05\xe7\x1f\x17\x75\xbd\x7c\x32\xe9\xf3\x72\x5d\x05\xc1\xc0\xb7\x46\x09\x82\x67\xfa\x3b\x57\x1e\xa8\x41\x8b\xd0\xd8\x90\x41\x7c\xc4\xff\xc4\x05\x99\x5e\x04\x01\xb8\x78\x33\x5f\xd7\x57\xd0\x14\x2c\xa1\x30\x21\x84\x7e\xe4\x10\x27\x07\x36\x0b\x65\x31\xbd\x84\x09\x85\x0b\x76\x2d\x85\x7a\x00\x4a\x6b\xda\x11\x0f\x26\x94\xd3\x92\x34\xe2\x4f\x82\x0d\x83\x67\x23\xe5\x3b\xd4\xa5\x84\xa6\x75\x5d\x6a\x15\x5c\xc5\x40\x61\xbc\x4e\x36\xf8\x8a\xe3\xc2\x33\x4e\x7a\xce\x2d\xe0\xcb\x74\xf3\x78\x39\xdd\x0c\x87\x64\xce\x0a\xba\x19\x30\xb6\x80\x83\xa2\x3b\x65\x29\x83\xe7\x14\x02\x1d\x10\x5a\x49\x99\x4d\xd9\x68\x25\xf4\x4a\x3e\xb0\xc5\x41\x48\x1b\x75\xb4\x10\x6f\x66\x74\x4e\x37\xf0\x75\x95\x36\x7c\x4a\xe2\xc4\xc5\xbb\x6e\x7d\xa0\x6a\x5d\x42\xbf\xe7\x44\x8e\xe3\x74\xf3\xb8\xd2\x8d\x49\x64\x51\xc6\x4e\x6a\xee\xdb\x49\x0d\xec\x0a\x9c\x37\xcd\x02\x65\x0b\x2d\x57\xb0\xa5\x73\xb9\x36\xe6\xa3\xaa\x9c\x07\x01\x52\xc6\xa8\x72\x1a\xfa\x85\xb5\xd0\x39\xee\x46\xe7\xfc\x2a\xc9\x7e\x2d\xb3\x20\x18\xcc\x47\x79\x71\x0a\x6f\xc9\x72\xcd\x03\x55\x20\xdd\xe5\x45\x3e\xe7\xa1\xcc\x93\xcf\x79\x5d\xcf\x5b\xf4\x0e\x92\x11\xd9\x93\xf0\xa9\xac\xcf\x59\x9f\x59\x7f\xd9\xcf\x1c\x60\x3a\xe6\x74\x4b\xac\xc2\xd1\x8f\x3a\xc9\x3b\xe8\x0d\xb4\x60\x22\xf2\xc3\xef\x93\x90\xd3\x94\x8d\xa7\x1a\xd8\xa9\xd4\x86\xca\x60\xd2\x5c\xd7\x92\xd2\x97\x9e\x1f\xbf\x1c\x51\x9e\xe4\x40\x36\xae\x14\xf4\x63\xd9\xc0\x67\xc6\x39\x78\x4f\x94\x04\x2c\xd7\x64\x16\x6f\x88\x1b\x79\x1b\x46\xe7\x1e\x3a\x1e\xf7\x1d\x65\x7d\x03\xc0\x7e\x70\x68\xd3\x15\xef\x39\x45\x8f\x1f\x4c\x9e\x3c\x3e\x79\xf0\xe8\x09\x52\x71\x9f\x3b\xbc\x94\x67\xa9\x02\x1a\xf1\x96\x29\x17\x20\x2a\x99\x20\xcf\x6d\xcb\xaf\x20\xc0\xed\x28\x07\x93\x96\x57\xb3\xf6\xb3\x56\xf8\x1b\x26\x3c\x34\xd8\xf8\x55\x44\xc7\x9a\xc6\x29\x53\xf8\x75\x6d\x08\xcb\x77\x1c\xa7\x71\x39\xa3\x09\x44\x28\x4f\x97\x58\x40\xa4\x68\xa2\xd4\xe0\x69\x5d\xc3\x6b\x14\xcc\x31\xfd\x02\xd3\x76\x41\x6f\x1b\x05\xc1\x79\x1b\x6c\x58\x95\xe9\x61\xdd\x22\x6f\x5c\x3c\xdc\xaa\x5b\xb9\x32\x07\x73\x85\xb2\xe7\x0f\x5d\xa5\x9c\xbd\xf2\x8e\xe7\xa6\x0f\xe0\x58\x82\xaf\x41\x83\xa9\x87\xc9\xe5\x7b\x98\x72\x3b\xbf\xd2\x25\xfe\x05\xe7\x44\xc7\x91\xcf\xe3\x7f\x39\x7f\x77\x48\x32\x1b\xa1\x0b\x7e\x60\x52\x8a\xb8\x9c\x45\x2d\x26\x0d\xb0\x16\x9b\xe7\x90\x60\x25\x66\xce\x21\xa7\x7e\x05\x9a\x1d\xdc\xe7\xf1\xbf\xbd\x00\x08\xd8\xbf\x35\x1c\xe3\xbe\xeb\xcc\x0c\x08\x45\x7d\xd3\xf1\x0f\xcb\x2b\xf6\x9f\xbf\x77\x33\x92\x1e\x74\x6d\x9d\xa7\xe3\xe2\xcb\xbb\x41\x17\x78\xa4\x10\x60\x94\x15\xbe\xb6\xdd\x07\xe0\x71\xd2\xe5\x6a\x27\xfa\x9c\xc6\x3b\x89\x99\xf4\xa4\x7d\xd7\x4e\x92\x5b\x2e\x28\xd6\x3c\xfb\x57\xee\xbb\xfc\xf2\x8e\xf7\x23\xd9\x53\x65\xaa\xd9\x23\x91\x7e\xe4\x2d\x09\xaa\xf9\x89\xff\x7d\x2b\x7f\xb7\x9d\xda\xb0\x13\xd5\xae\x8a\x9b\x92\xff\x77\x0d\x32\x2c\x5d\xb3\xb2\x49\x4f\xda\x77\xed\x24\xa3\xbe\x70\x2d\x9b\x8a\x51\x9a\x57\xbc\x14\xdf\x83\x02\x5c\x92\xa5\x46\xa0\x67\x68\xaa\x52\x8e\xff\xfd\x96\x42\xdd\x3e\x35\x6e\x25\x74\xaa\x56\x66\x62\x72\xb0\x96\xa2\x57\x7b\xf0\x7f\xa0\xc2\x06\x68\x0f\x54\xde\x09\xd4\x6a\x83\xfd\xc3\x49\xb4\xde\x99\x94\xf2\x2f\x16\x33\x02\xa7\xe4\x6d\xb8\x1f\xdc\xda\x9a\x38\x40\x8a\x48\xd9\xbc\x61\xb5\xdd\x14\x20\x7b\x36\x09\xcf\x36\x56\x6b\x91\x82\x40\xb6\x43\x69\x9c\x44\xc4\x43\xad\xaa\x96\x3c\x47\x17\x7f\xfe\xc8\xf0\x3c\x0d\xd7\x78\x2a\x37\xb2\x2f\x5d\xe3\xee\x64\x07\x84\x25\x75\xf8\xd9\x84\x8e\x69\x86\x45\x50\xd1\x35\x3c\x91\xc3\x86\xfc\xb1\x06\xce\xfd\x61\x66\x78\x10\x0c\xfe\xf4\x10\xde\x06\x97\x3c\xb6\x26\xfc\xfc\x3e\x13\xfe\x19\xd9\x71\xd6\x36\xd0\x97\xb3\xbb\xbc\x55\x50\x11\x46\xfc\x80\x43\x71\xfd\x35\xb9\x3e\x4e\x3f\x3c\x68\x42\x0d\x9a\xd7\x70\x26\x0b\x65\x63\x2f\xd4\xc6\x5e\xe8\x69\x66\xe8\x9c\x5a\xeb\xb0\xcc\xef\x21\x47\x9a\x4f\x68\x06\xd3\x35\x6a\xe5\xd8\x3a\xd6\xdd\x37\xe1\x9d\xa0\xd3\x9c\xe5\x53\x2f\xae\xb1\x5a\xe5\x8f\xc7\x3d\xdf\x06\xf0\x3b\x14\x8c\x81\x74\x63\xb4\x1d\xbb\x46\xe6\xd9\x13\xb9\x1d\x78\xf8\x01\xea\xc3\x3e\x14\x21\x52\x57\xc8\xd0\x30\x99\xa4\x2f\x11\xf5\x97\x58\x88\x14\xe9\x30\xa9\x4f\x61\x59\x23\x58\xdd\xc8\x74\xc1\xd3\x2c\x0b\x91\xd7\x1d\x7d\x7a\xb9\x56\x28\x77\xde\xf0\xef\x53\x08\x60\x10\xe7\x2a\xb5\x70\x83\xc7\x13\x9a\xb0\xf1\x34\x79\xcc\xd2\x69\x22\x99\x47\x80\x0f\x4d\x3d\x37\x77\xb5\x2e\x24\x9b\x75\x87\x8b\x38\x99\x91\x58\xcc\x70\x4e\xe8\x56\x0b\x66\x25\xcd\x15\x4a\x43\x63\x8d\x7a\xb1\xd9\x4b\x17\x9b\xfd\x55\xdb\x23\xda\x78\x41\x47\x83\xcd\x0d\x51\xae\xd0\x43\xe3\x09\xfd\x6b\xd3\xf5\xd8\x68\x94\x1b\x42\x84\x95\x21\x53\x7e\xed\x41\x32\x88\x51\xb1\xe1\x39\x2f\x95\xbb\xa5\x9c\x99\x97\x5c\x3c\x2b\xd6\x9b\xad\xe0\x8b\xf7\xca\x7f\x94\xec\xe9\x8f\x8d\xe6\xa4\x5c\x1b\x90\xd5\x88\x40\x0b\x9c\x66\xe5\x25\x3f\xc4\x88\x82\x7e\xc7\x70\x68\xe0\x8a\xfa\x2b\xf0\x89\x41\x80\x11\x48\x1c\x09\x83\xee\x31\x27\xe2\x20\xec\x62\x41\xea\x3a\x97\x34\xb1\xae\x81\x73\x05\xf3\x55\xcf\xb3\x95\x10\x3a\x38\x1d\x6d\xd2\x1b\x9e\x7d\x5f\xdc\x40\x83\x2b\x4c\x82\xe0\x95\x5e\xf5\x09\x09\x82\x1f\xcd\x79\xae\x0a\x6d\x52\x8d\x00\xae\x90\x16\xac\x1a\xad\xd3\xfc\x77\xb8\x49\xe5\x4d\x72\xa3\x6e\x5c\xba\x97\x6a\xde\x63\x09\x95\x2d\xbd\xd6\x39\x55\x5a\xe9\xbf\x53\x50\xef\xad\x94\x78\x41\x9f\x92\x28\x19\x22\x14\x7a\x10\xf4\xbf\x35\x34\x51\xbb\x46\x90\x2b\x75\xce\xea\x40\x03\x2d\xce\x07\x13\xe4\x40\x0c\x61\xad\x48\x31\x19\xf7\xfb\x86\x73\x8c\xad\x95\xab\xb2\xb7\x64\x97\x69\x2f\xce\x79\x55\x7d\xe0\x37\x82\xa1\x8d\x86\x9a\x0c\x93\x0b\x88\xa0\xcb\xa7\x19\x5f\x8a\xf0\x78\x22\xff\xdb\xdc\x4c\xe1\x7b\xc3\x6f\xc7\x9b\x9b\xe9\x3a\x29\x2f\xd3\xfc\x58\x14\x9b\x50\x3e\xd9\x24\x8b\x45\x9a\x5f\x86\xe3\xe9\x45\x51\x2e\x78\x19\x8e\x11\x44\x94\xed\x2f\xde\xa0\x89\x4e\xb5\xff\x68\x08\x3e\xb8\xd3\x8b\xe2\xe6\xb8\x4a\xef\x64\x39\xaa\x94\xe3\x8b\xe2\x66\x5a\x5c\xf1\x72\x99\x15\xd7\x61\x05\xc1\xfb\x74\xcd\x61\xb2\x15\x85\xa9\xcc\x6f\x81\xdf\xce\x7f\x4c\xa1\x7d\xff\x40\x34\x69\x7a\xd7\x64\x4d\x26\x6a\xab\xd6\x1d\x57\x93\xb0\xb9\x02\xb6\x64\x5a\x32\x34\xf9\x87\xb6\xe7\x29\x36\x74\xce\x26\x8f\xe4\x36\x03\x68\x00\xb2\x2d\xaf\xf9\x52\x10\xfb\xb9\x65\x7a\xb9\x12\x0c\x7d\x3b\xfe\x07\xa2\x15\xfb\xea\x5b\x9d\x15\x92\x09\x2d\x5c\x0a\xb4\xd2\xbd\x67\x7a\x87\x21\xd3\xfb\x88\xa6\xa6\xaa\xed\x48\x1d\x51\xc1\xbc\x3a\xf9\x8a\xc8\x0f\xf2\x45\xcc\x8c\xe8\x18\x82\x9e\xfe\x4a\x78\x5b\xb1\x02\x45\x2e\xb6\xf9\x02\x43\x9c\xa7\x97\x59\x91\x00\xc6\xcf\xde\x2d\x55\xd0\xf1\x75\xbd\x9f\xc0\x2f\x8a\x6e\x0f\x3c\x98\x6e\xad\xaf\xb3\xf9\x90\x8b\x64\xfe\xf9\x12\xea\x7a\x96\xa5\x1b\x86\x34\xe4\x86\x1c\x4c\x39\x29\x9a\xfe\x45\xfd\xaf\x20\x7a\x0a\xfb\x4b\x09\x32\x2a\x0c\x44\xb3\x1c\x06\x46\xa4\x3d\xef\xba\xb8\x39\xa7\x74\x77\x51\xdc\xbc\x87\xf9\xf4\x8e\x67\xe9\x81\x30\xf8\x1c\x13\x5a\xec\x69\x93\x8a\x1c\xc8\x57\xe9\x7c\x06\x92\xf5\x40\xb6\x52\x6e\xc8\xaa\xc2\x53\x3b\x41\x0e\xe4\x9d\xef\xa9\x9a\xd7\xaa\xad\x87\x5a\x98\x02\xef\xac\xbd\xae\x3e\x71\x16\xa3\xdf\xf9\xc5\xe7\x54\x20\x8a\x4e\x8b\x3b\x44\xd1\xba\x42\x33\xfa\x03\x3f\x30\x4a\xaa\xab\xe8\x4f\x4d\x0f\xfd\x5f\xb8\x07\x5b\x25\x97\xa9\x24\xbf\x15\x00\x8c\xfc\xc4\x63\xde\x88\x30\xc8\xa5\x88\xfa\x03\x8f\x78\x08\x8f\x7a\x77\x4f\x01\x20\x6e\xcd\x50\x8c\x43\xee\x1c\x37\x72\xf6\x89\x37\xa2\x52\xa5\x4b\x8c\x39\xfb\xc4\xe3\x7c\x36\x14\x04\x2a\xb0\xea\xc4\x3d\x10\x7c\xae\x26\xe8\x03\xf0\x14\xcb\x8b\x9c\xd7\xa0\xaa\xc7\xd1\xe0\x78\x1e\xf3\x64\x46\x46\x43\x72\x42\xff\x25\x1f\x1f\x1f\x9f\xd0\x7f\x73\xb6\xb3\x54\xc6\x5b\x47\x57\x69\x95\x5e\xa4\x59\x2a\x6e\x43\xb4\x4a\x17\x0b\x9e\x23\x6a\x68\x8f\x0e\x00\xb0\xa7\x5c\xb0\x5d\xc6\x85\xe0\xe5\xfb\x4d\x32\x97\xb4\x04\x8d\x11\x5d\x16\xb9\xf8\x1d\x90\x6e\x43\xf4\xf5\x78\x8c\xbc\xfe\x13\xa2\x89\xe4\x68\xa2\x3e\xb8\xc0\xba\x65\x04\x0b\x6f\x9d\xdc\xe0\x31\x2d\xe3\x47\xb3\x63\x9c\xd7\xf5\x98\x90\x21\x2e\x21\xde\x04\x04\x97\x08\x85\x5b\xb4\xb9\xe8\xf1\x31\x63\x48\x81\xec\x42\x68\x9d\x49\x38\xa6\x15\x1b\xd3\x39\x1b\x2b\x80\x3d\xc6\x70\x19\x21\x45\x0a\x51\x68\x96\x09\xb2\x9a\xd9\xb1\x8a\xea\x97\x3c\xfe\x7a\x9a\x0c\xd9\x23\x82\x14\xd5\x32\x01\x08\xe6\x43\x1b\x01\x24\x1f\xa6\x3c\x4e\x20\xa8\x68\x41\x08\x2d\x23\x6c\x4b\x33\x99\x8f\x5d\xb8\x10\x4d\x71\x51\xf3\x25\x53\xfa\xa0\xfb\x82\x6e\xa2\xca\x3f\x44\xbf\x2b\xe0\x60\xf5\x1e\x09\xfd\x86\xf4\x96\xed\x52\x21\x84\xa2\x9f\xfd\x9e\x92\xc3\xea\xcb\xf2\x99\x31\x83\xc8\x4f\x4f\x20\xa6\xc6\x7c\xc8\xbc\xe1\x83\xcb\x39\x4f\x33\xcc\x63\xa4\xa8\x31\x1a\x8a\xee\x84\x17\x76\xc2\xcf\x8e\xd3\xe3\xf9\x71\x75\x3c\xfa\x86\x10\x39\xea\x74\xee\xc6\xb9\x6c\xcd\x1d\xe0\x87\x68\xc1\xf0\xe0\x74\xd4\x21\x5b\x58\x32\x42\x24\x08\x90\xdb\x16\x1b\x81\x5b\xec\x0b\x88\x0e\x26\xb4\x04\xce\x95\x26\x4c\xf3\x63\x25\xa1\x15\xfb\xb2\x16\xcb\x09\xe5\xb8\xa7\x16\x86\x73\x32\x4d\x18\x92\xdb\x2e\x32\xb8\x82\xfd\x6d\x0d\x82\xa2\xae\x55\x46\xc6\x58\x52\xd7\x03\x6f\xcb\x91\x3c\x19\x4a\xf3\x2c\x3d\x10\x7b\x46\x7d\x00\xa0\xd4\xc8\xad\x18\xac\x35\xde\xf1\xb9\xa8\x2c\x64\x9a\x8e\xda\xf1\x85\x3d\x81\x53\x56\xa9\xe3\x56\x70\x57\xe4\x71\x35\x23\xca\x67\xda\x6f\x93\x1c\x9d\xa1\x59\x7a\x75\x8d\x8b\xbe\xf5\x44\x53\x5a\xd2\x84\x0c\xe5\x9a\x75\x03\x59\x08\xdf\xf3\xc4\x33\x7f\x2b\x3c\x5b\x2b\x00\xce\xf4\xf2\x79\x5a\xe0\x79\x55\xa9\x78\x62\xbb\x42\x52\x1d\x71\x1b\xee\xba\xd1\x4e\x41\x63\xaa\xe5\x33\x18\x55\xa4\x33\x5b\x91\x1f\x82\x81\xe4\x11\x9a\xa0\x30\x07\x6b\x40\x1b\x9f\x26\xdc\x25\x79\xba\x06\x03\x9f\x57\x82\x97\x70\x01\xd6\xd1\xca\xa8\x26\xdb\xae\xdd\xed\x32\xcd\xb2\x37\xba\x19\xf2\x36\xe3\x37\x3f\x94\xc5\xb5\xb9\x7e\xbf\x2a\xd3\xfc\x33\xdc\x39\xaa\x38\x18\xd3\xcb\x32\x5d\x3c\x2d\x79\x62\xae\x9f\x41\xa9\xcd\xbb\x17\xf9\xa2\x99\xf0\x5e\x24\xa5\x7d\xfb\x9d\xaa\x44\x5f\x7a\x79\xdf\x15\xd7\x36\xa3\x9c\x34\x3f\xda\x4a\x0b\xd7\x4e\xc5\x05\xc2\xc5\x66\x95\x28\x9b\x9f\xeb\x74\x51\x5c\xc3\xd5\xdd\x2b\x80\xff\x93\x57\x45\xb1\x56\xe6\xad\x7a\xaf\x0b\x77\x7b\x0a\x5b\x63\x8f\x59\x82\xb2\x2f\xf8\x6a\xd0\xd4\xc4\xfc\xb3\x75\xaf\x65\x1b\x2f\x2e\x11\xad\x20\xd4\x2a\x9d\xb3\x7f\x59\xd9\x03\x0c\xd1\x95\x10\x94\x2e\xf1\x1c\x04\xae\x5f\x38\x96\x22\x73\xa2\x26\x2f\xcc\x01\x70\x0d\xf5\x6e\x2b\x2f\xa6\x84\x5b\x86\x41\x80\x2e\xb9\x40\x29\x5c\x3a\xe5\xb3\x06\xf9\x04\xdd\x90\x5c\x42\x51\x11\x66\xb1\x98\x4d\x3d\xcd\x08\x4e\x7d\x98\x0b\x5c\xd8\x1d\x2b\x97\x2b\xae\x00\xfc\x54\x9c\x33\x1d\x6e\xa9\x90\x74\x04\xe5\x30\x89\x90\xd2\x3e\x0c\x20\x52\x92\xde\x0b\xcc\xa3\x01\x63\x69\x5d\xcb\x8f\xca\x87\x80\x71\xd2\x8d\xa4\x54\xb9\x48\x4a\xa4\xcb\xda\xd5\x35\xd2\xa7\x9f\x60\xa5\xe4\x82\x52\x3a\xd6\x0e\x49\xe1\x4f\x7e\x0e\x43\x69\xbe\xe2\x65\x2a\xd7\xa3\xec\x89\xaa\xd5\x13\x0c\xd4\xf0\x89\x76\xf9\x95\x03\x09\x3e\x91\x51\x26\x53\x9c\xc1\x35\xcd\x09\xf4\x0e\xcb\x01\x53\x63\xde\x09\x01\xdc\x08\x35\xa5\x87\xd4\xc6\xf3\xb3\xe3\xea\x0f\x24\xbe\x7f\x24\x49\x63\xd8\xfc\xd1\x1a\xd3\xdc\xca\x89\x36\x2c\x91\xa5\xdd\x10\xb0\xa8\x5c\x27\x99\x0e\x59\x24\x80\x9a\x09\xc8\xc4\x85\x94\x8e\x55\x20\xa0\xbc\xae\xf3\x08\xa7\x3e\x5d\x2b\x08\x85\x78\xed\x79\x5d\xa7\xd5\x4b\x49\x82\x38\x4e\x49\x94\xd6\xf5\x38\x54\x80\x14\x56\x1d\x13\x23\x85\xe6\x8f\xa8\x66\x35\x66\x5d\xb5\x89\xf7\x6d\xac\x4d\xa3\xcc\x8a\xb1\x60\xf3\x0f\x74\x1f\x75\x83\x8b\x99\xc8\x67\xfd\xb4\x1d\x1e\x7d\x2f\x87\x3c\xcd\x2f\x5d\x16\x4c\x94\xb8\x14\xe9\x7d\xb3\x24\x21\x04\x6c\xfc\x77\x33\x96\xa3\x61\xbb\x4c\x26\x50\x4f\x56\x3d\x4d\xd5\x43\xab\xb7\xdd\x84\x0d\x4e\x47\x0d\x36\x5c\xee\x62\x8e\x7f\x84\xd8\xab\x86\xaf\xa4\x15\xc3\x49\x5d\x97\x5f\xbc\x1f\xa7\x92\x16\x94\x91\xde\x5e\x4a\x5a\xd1\x94\x84\x36\x74\x6e\x15\x04\x89\xe2\x93\xfe\x1b\x06\xc3\x1b\xed\x54\xce\x85\x63\x5d\x8b\xd9\xbe\x54\xfd\xc0\x81\xd0\x79\x77\xc9\xeb\xb0\x65\xb8\x70\xcc\x28\x98\x9c\xab\x88\x6c\x72\x79\xd0\x9c\x79\x41\xcc\xa8\x10\x80\x8a\x32\x27\xc6\x16\xcc\x4c\x0a\x4f\x14\x66\xbf\x71\x7c\x3a\xea\x4a\x40\xed\x19\x05\x9b\x9a\xe6\x24\xbc\xef\x50\xfb\x9b\x2b\xce\xcd\x98\xde\x69\x91\xf1\xa5\x38\x86\xb9\xb0\x73\xef\x84\xe3\x7d\xdf\xbc\xb8\xbf\x94\x3d\x21\x7a\x73\xf7\xed\x06\x95\xb6\x01\x21\x6a\x14\x0c\x08\x51\xad\x76\xd0\xfc\x63\x8f\x86\xd1\x2e\x15\x3e\x94\x8b\x45\x9d\xba\xb9\x49\xe8\x9f\x59\xc3\x39\xe7\x6e\x2f\x49\x6d\x4f\xc8\x86\xdc\xb8\x8a\x1e\x21\x12\xc6\xf9\x6c\x5a\x3e\xfe\x1a\x0e\x42\x8b\x98\x4b\x2e\xb6\x9c\xc9\x0a\xd2\xb8\x9c\xd5\x75\x1a\x97\xc7\x8f\xe0\x77\xec\x45\xd1\xdb\xfb\x1c\xb9\x0d\x5d\xe7\x5a\x27\xe9\x22\x13\xa0\xc9\x6f\x1e\x04\xb6\x69\xe2\x3d\x6a\xfd\x96\xd2\x4f\x7e\x4e\xa2\xa4\x93\x76\x44\x72\xf5\xe1\x8e\xdd\xb5\x08\xc9\xc9\xe3\x02\x34\xab\x69\x2c\xe2\x64\x36\x73\x93\x0e\xd8\x7f\xb9\xa1\x59\xe4\x80\x7d\x3b\xe6\x6f\x1e\xf9\xe1\xee\x72\x12\xba\x19\xbb\x27\x60\x4f\xd8\x0d\xda\xab\x75\xd1\x1f\xae\x39\xcf\x59\x21\x68\x71\xd0\x32\xbe\x10\x54\x92\xce\x1e\x47\x63\x29\x9f\x29\x65\x7d\xc6\xd7\xc6\x87\x61\x53\x16\x1b\x96\x1b\xd3\xbb\x2a\xcd\x2f\x59\x21\xb7\x02\x75\xed\x22\x02\x29\xeb\x3f\x08\xb6\x54\x31\x61\xec\xb1\x93\x52\x98\x43\xb6\x6b\x66\xfc\x0a\x8c\xb9\x36\xcf\x17\xac\x54\x97\x10\x8c\x2f\x6d\xed\xb2\xb9\xdb\x65\xf7\x74\xbe\x2d\xbb\x47\x01\xea\x2b\x37\x9a\x8c\x9b\xe6\xda\xd9\xc2\x35\xfd\x55\xe1\xb2\xf4\xb1\xab\xff\x8e\x6d\xbe\x7b\xbe\xa7\xe5\xb6\x07\x99\x87\xe6\x7f\x55\x99\xdf\x01\xa3\xc5\x56\x31\xa6\x1a\x8c\xb8\xa8\x98\x60\xa6\xcf\x62\xaf\x2f\x67\xe6\x9c\xad\xfd\xe2\x43\x4e\xc7\x74\xd2\xff\x4c\x1f\x1d\xab\x52\xcd\x39\x5d\x71\xcd\xb0\xe9\xd5\x63\xd7\xfb\xe4\xa1\x18\xba\xbb\x66\x79\x95\xe0\x1b\x7d\x3c\xe3\x27\x39\x6b\x26\xe5\x30\x69\xca\x37\x30\xe0\x41\x00\x78\x23\x0a\x75\xe4\xde\x4e\xb5\xcf\x15\x42\xcb\x9e\x76\x64\x08\x6f\x92\xfa\xcf\xa8\x5f\x1e\xdb\x59\x7f\xa7\xd6\x36\xad\xc7\xc6\x46\x71\x01\x5e\x56\xb6\xd9\x3b\xe6\x35\xd6\xe5\x32\x39\xe6\x6a\xc8\x4c\xc4\x19\x9d\x59\xed\x0e\xfa\x59\xd4\xcc\x1a\x62\x61\xd6\xae\xea\x0d\x95\x4e\x11\x04\x96\x55\x52\xe1\x00\x22\x04\x4b\x1a\x5d\xb5\x9a\x77\x37\x5a\xde\x40\x9f\xda\xd2\x3b\x29\x98\x93\xb0\xb7\xe1\x03\x9f\xb0\xdd\xd3\xee\x5f\xb8\x02\xda\xdb\x90\x76\xdb\x81\xb1\xbf\x0e\x2d\x31\x69\x7c\x00\x3c\x1b\x02\x18\x29\xf8\x5b\x35\xba\x5c\x33\x0f\x1f\x8a\x0d\xeb\x49\x86\x4d\x71\xd7\xfe\xd6\xd6\x07\xc8\xa5\x07\x09\x0d\x83\xa3\xbe\x06\x1a\x2f\x0d\xa0\x2d\x3b\x29\x14\x25\xfd\xe6\x43\x7b\x5a\x5d\xcb\x1d\xab\xfb\x6c\xf4\xcd\xb1\xe2\x36\x8a\x0a\xf3\x87\x70\xf9\xf6\x15\x39\x79\xe4\xb9\xca\x21\x78\x17\xc9\xaa\x96\x37\xac\x33\x11\xa9\x1d\x18\xb6\x53\x58\x0b\xa9\xa0\x89\xa0\x95\x50\x71\xa0\x54\xc0\xc6\xba\x5a\x15\xd7\xf5\x2a\x5d\x70\xf2\xe0\x84\xce\x05\x3b\x71\x91\x86\x1f\x78\x71\x9e\x32\x81\xc9\x2e\x91\x4c\x2d\x58\x30\x27\x23\xa5\xa4\x53\xa7\x89\x7f\x6e\x79\x25\x9e\x1a\x19\xf6\x65\x99\xac\x79\x74\x20\x1d\x67\x82\x84\x0d\x74\x9f\x4c\xb7\x14\xec\xf4\xaf\x92\x8c\xa8\x5b\x91\xce\x3f\x63\x3f\x62\xd0\x56\x38\x36\xe1\x20\x16\x54\x6a\x2c\xad\xe5\x66\x99\x0a\xe6\x5c\xae\x5c\x41\x1b\xd1\xc5\xe0\xdf\x29\xe6\x3a\xe4\xca\x4b\x5e\x28\x2d\x9e\xde\xcb\xd9\xa3\x63\x41\x8a\xd8\xec\xd2\x43\x9c\x33\xd8\xd8\xc9\x8c\x15\xb1\x53\x84\xe5\x33\xe6\xc3\xa9\xe3\x62\xa4\x05\x60\x56\xe8\x73\x28\xb9\xa1\xba\x76\x2c\x45\x9f\x79\x1c\x5e\x88\x91\x90\x7b\x1e\x2f\x95\x8c\x12\xcf\xc8\x68\x5e\xe4\xf3\x44\x34\x1e\xa1\x87\x68\x46\x74\x94\xd3\xa2\x1d\xe5\x14\xf0\x2d\x8a\x38\x9d\x19\xd0\x43\x41\xb9\xd5\x36\x96\xae\x09\x0b\xd1\x65\x0d\x64\x81\x0b\x39\x99\xf4\xb9\xba\x17\xf2\xda\x0f\x8b\x3d\x52\x00\xa1\x8d\xde\x37\xa1\x16\x60\x49\xc8\x11\x68\x80\x26\xa7\x4b\x6c\x22\x17\x0d\x26\x53\xa7\x92\x4e\x45\x5d\xcb\xc1\xa5\xb9\xaf\xcc\xcb\x14\x7d\x97\x83\x3c\xcc\xec\x46\x71\x0c\x71\xea\x27\xc7\x38\x3f\x71\x89\xa0\xb9\x53\x0d\xcf\x54\x07\x55\xed\x0e\x31\xe9\xb2\x4b\xca\x6d\x8e\x1d\xb3\x52\x79\xe0\x83\x98\xd3\x38\xa3\x25\xcd\x67\x84\x96\x8f\x27\x41\x90\x44\x79\x28\x45\x89\x6e\xa6\x09\x1d\xcf\xb4\x13\xbc\x8d\xf9\xcd\xc1\x6f\x9b\x0e\x26\x80\xbd\x5c\xd9\xc8\xdb\xca\xd3\x9a\xd3\x0d\x28\x34\x7c\xcb\x66\x41\x68\xb1\x11\x5e\xda\x60\x4c\x77\xda\x72\xed\x05\x90\x8f\x70\xb7\xa7\x8a\x90\x84\x1d\x0e\x65\x4f\x73\x42\x8d\x37\x9a\x96\x9c\x53\x5e\x85\xc2\x26\xbe\x51\x9b\x60\x98\x53\xdb\x99\xa1\xed\x6e\xd3\x7d\x61\x6e\x7b\x92\xaa\x5e\x0a\xe3\x19\xd5\x61\x08\xe5\xbd\xe7\x1f\xed\xd4\xa1\x9a\x33\xc3\x9c\x66\x72\xaf\x05\x64\x75\x7d\x39\x6a\x7c\x01\x4c\x62\xfd\x40\x7d\x80\xed\x7b\x3b\x5a\xda\xb5\x9d\x96\xca\x19\x2f\xec\xda\x3c\x80\x05\x4a\xd4\x1a\xde\x10\x38\xd8\xc2\xf7\xf0\x9e\x2a\x68\xee\xc1\xd8\x9a\x80\xd8\xa1\xcf\xd5\xd0\x4f\xdc\xf9\x7e\x84\xbf\x7c\x60\xa9\x98\x11\x12\x56\x3e\xa8\xa6\x49\xd6\xbc\x00\xa1\x5b\x96\xc1\x36\xa0\x5a\x31\xb8\x27\x1c\x02\x64\xc8\x95\xda\x53\x7e\x02\x13\x71\xc9\x7e\xc2\x39\x99\xd1\x94\x41\x20\xd1\x26\x5f\x9e\x2a\x6d\x50\x1a\x4f\x4c\x06\x26\x85\x08\x42\xf3\x01\xc4\x9b\xc3\x10\x1a\x39\xa5\x16\xbf\x07\x20\x4a\x1b\xfa\x8e\x12\x14\x1c\x4a\xd0\x01\x1d\x07\xb1\x6d\x48\x59\xa2\xed\x0e\x71\x4a\x5c\x19\xe5\x8c\xa6\x44\x35\xb2\xae\xb1\xae\x34\x9f\x51\x40\x51\x2f\xb4\x71\xa7\x80\x98\xcc\x7b\xbc\xed\x1d\x7c\xd2\x24\x49\x0d\xba\x62\xc9\x53\x46\x39\x35\xaf\x5b\x2a\x75\x09\x21\x95\x8b\x0d\x01\x81\xc8\x07\x1e\xc8\xd4\xae\xaf\xab\x83\x07\x04\xb2\x32\xf5\x06\xc4\xdb\x51\xb6\xc1\x0e\xc9\x73\x9d\x6c\xf0\x96\x2e\x05\xcd\x08\xbd\xc4\xa6\xa9\xc0\x4f\x06\x81\x7f\x6b\xe2\xcb\x64\x84\x66\x0e\xd8\x57\xe7\x30\xf7\x1a\xdf\x57\xa7\xca\x6b\xd3\x1c\x03\x84\xa7\x11\x7f\x75\xaa\xbc\xb6\x14\x53\xa7\xa9\x3b\xbb\xdb\xad\xfd\x18\x6b\x73\x6a\x68\x46\x92\xa7\xeb\x30\xa3\x0a\x2d\xc1\xff\x64\x49\x5e\xb3\xfd\xdd\xc8\x6e\xaf\xce\x65\x62\x21\xe8\xce\xec\x13\xe1\x0e\x3d\x44\x61\xdc\x33\x15\xb5\xf0\xe2\x96\xb9\x72\x03\x37\x71\x3b\x39\xce\x35\x77\x45\xdd\xa9\x99\x24\x38\xf9\x7e\xb6\xa7\xba\xf8\x96\xf8\x09\x38\xad\x1a\xd8\x40\x6d\x50\x21\x67\x0e\x91\x7f\xea\x1b\xf1\x8c\xc1\x61\xae\x65\x3c\x9c\x33\x98\x75\xfe\x3e\x97\xcf\x58\xf3\x16\x02\xdd\x34\x93\x2c\xb4\x88\x50\x86\x96\x7a\x82\x35\x3f\xbb\x63\xf5\x62\x83\xde\x6a\x85\x5a\x0a\xe7\xa8\x46\xcd\x26\xef\xe8\x52\xb9\xf6\x2d\xa4\xbc\xbc\x32\x0a\x62\x7a\xd1\xd0\x2f\x83\x0d\x8e\x0b\x2d\x47\xd1\xf2\x46\xf2\x54\x48\x7d\x2e\x18\x0e\xe7\x6a\xc8\xea\x5a\x07\x88\x84\x85\xd9\xc4\x54\x01\x50\x18\x32\xda\xe6\x90\xba\x08\x02\x9c\xd8\x1b\x36\xa6\x95\x5c\xa1\x16\xe8\x84\xfa\x37\xfe\x16\xeb\xde\xa9\xeb\x0a\x4b\xd9\xda\xa5\x0c\x87\x74\xd9\xb7\x69\xf7\x26\xba\xd7\x8e\x8f\xa9\x43\x89\x81\x56\xea\x41\xab\xeb\xa4\x89\xbd\x02\x00\xbc\x84\x0a\x4b\xd0\x66\xb4\xb2\x31\xd2\x60\xfb\x37\xf6\x2f\x40\x59\xa4\x70\x8c\x14\x13\x0a\x8a\x53\x5a\x30\xc6\xf0\x45\x84\x24\x33\x8a\x42\xa4\x3a\x11\xde\x53\xd7\x03\x26\xe5\xf4\xc1\xda\x8b\x26\xb0\x96\x54\x6d\x5e\xe4\x22\xcd\xb7\x7c\x7a\xc1\x06\xe3\xfd\x42\xd2\xa3\x75\x10\xac\x41\xe3\xe2\xd4\x0e\x25\xd9\xa7\x4b\x8c\xe7\xac\x07\x8b\x8c\x80\x6c\xd2\x4c\x5d\x10\x67\xf8\xbd\x69\x03\x88\x05\x01\xce\x47\xc6\xec\x85\xc5\x2b\x7b\x4d\xdd\xe5\x47\xef\xfa\xd3\x8c\xea\x91\xcf\xa0\x6d\x26\x2c\xbb\x24\x6e\x99\x9b\x39\x4e\x03\xeb\x62\xe0\xe3\x6d\x0f\xfc\x03\xbc\x17\x6d\x59\x16\xe2\x95\x8a\x5b\x3d\x18\x7b\x47\x18\x0e\x5f\x22\xa3\x7d\xaf\x53\xf5\x92\x1c\x2d\xec\x1d\xf5\x6d\xeb\x5a\xdf\x1d\xab\x13\x77\x99\xa6\x24\xb4\x01\xcb\x7a\x01\x29\x96\x59\x91\x40\xb4\x0d\x38\x32\x59\x2a\xb2\xe8\x4f\xa4\x95\x8d\x40\x9f\x01\x24\x25\xf4\x42\x06\xd8\x06\xf6\x11\xcd\x98\x2d\x79\x1b\x21\x14\x6e\x09\xa1\xee\xc5\x66\x9b\xc0\x51\xc7\xf4\x6b\x10\x60\xd7\xc9\xcc\x1a\x0e\xf4\x4e\x69\x2f\xa3\x2b\x20\x1e\xcf\xfc\x21\xf3\x9f\x4c\xfc\x27\x9f\xfc\x27\x8f\x66\x30\xd1\xe7\x6c\x30\xa1\x0b\x22\x3f\x7c\x1d\x99\xba\xd3\xfc\x68\x1d\x04\xf8\x82\xad\xb5\x84\x44\xc2\xb5\x8f\xdd\x64\xa8\x03\xdd\x19\xeb\x86\x6c\x4f\x68\x1a\x04\xd8\xbc\xc0\x06\x17\x84\x5e\x04\x81\x37\xb0\x3d\xfd\x6a\xe7\xe6\x45\x5d\xeb\xd1\xa4\x7e\x60\x32\x43\x84\xe8\xc2\x83\xa9\x28\xa9\x5c\x1d\x44\xb7\x7e\x29\xf0\x45\x24\x97\x49\x38\xa6\x25\x5d\x12\x0a\xe5\xad\xe5\xe7\xc8\x35\x34\xd7\x0a\x96\x0b\xf0\x40\xe2\xf9\xc2\xa6\xe8\x5f\x36\x26\x64\x3f\x73\xf4\xb6\x8d\x35\x15\x35\xa5\x08\x43\xa3\x39\x09\x9b\x0f\x80\xf9\x33\xa6\xa7\xd5\x86\xf3\x45\x27\x34\x8a\x62\x39\x79\x10\xf4\x41\x96\xf9\x0c\x35\x27\xe1\xce\x6c\xc1\x61\x5e\xd7\x83\x3c\x08\x44\x5d\x5f\x82\x7d\x31\x77\x2c\x2f\x37\x4c\xb5\x7a\x2e\x82\x60\x70\x09\x16\x88\xc2\x43\xff\x5e\xde\x8c\x8a\xe5\x32\x2a\x2d\x7b\xcc\xc6\xa1\x77\xa4\xa6\x1b\xe0\x1e\x03\x08\x87\xb9\x91\x7d\xa9\x24\x70\xf9\x45\x95\x5f\x8a\x97\x1c\xbb\xe4\x59\xd8\x9f\xc5\xb2\xfb\xe6\x80\xaf\x54\xe4\x38\x08\x20\x68\x55\x69\xf7\x16\x7d\x05\xa0\x50\x84\x96\xa3\x22\x5b\xb0\xd2\x32\x24\xd4\x5d\xfa\x3b\x86\x64\xb3\x8a\x6c\x41\x82\x00\x7e\x9d\xa6\x4c\x96\xa0\xeb\x69\x61\x2f\xe9\x74\xb2\x97\xec\x7a\x43\x21\xbd\x4c\x16\xfc\x43\x71\xd8\x81\x1c\x38\x0e\x6d\xad\x9d\x71\x02\x44\xc4\x9e\x93\xd3\xb1\x41\x75\x90\x93\x4d\x0a\x98\xc0\xd9\x70\x6c\x8f\xdd\xc5\x9e\x72\xed\xa7\xae\x9f\x1d\x3a\x12\x64\x6d\x6a\xce\x15\x8e\x19\xf4\xa8\x42\xfb\x6d\xc0\x8a\x1b\x1b\xab\x85\x0e\xb1\xd7\x9c\x52\x34\x25\x53\x5c\xd8\x50\xfe\x10\x83\x6f\x99\xe6\x69\xb5\x02\x4a\x2c\x80\xeb\xc4\x83\x31\xb1\x73\x27\x19\xa9\xe7\x2c\xa1\x72\xcb\x52\xd0\x80\xd0\x6b\x1e\xc0\x5e\xa2\xb5\x9e\xaa\x6b\xf5\x73\x9a\x90\xb6\x0c\xd4\x58\x03\x7d\x96\xc4\x32\xbb\xb1\x2d\x55\x77\x54\xe0\xdc\xb6\xa6\x1f\x7e\x4a\xb9\xa5\xfb\x10\x54\x42\x07\xba\x33\x7e\x14\x1d\xe4\xac\x03\xde\xea\xaa\x19\x03\x80\xa8\xb1\x2e\x0b\x0d\xc4\x2a\xe8\x7b\x60\x71\x2b\x70\x37\xb6\xaa\x69\x25\xbe\xa9\x00\x67\xf2\x2f\x34\x3e\x08\x4a\x88\x9e\x46\x1c\xf6\x2c\xb8\x21\x27\xdd\x8c\x73\xcb\x5f\xb8\x97\x94\x00\x68\xfd\xd2\x0a\x30\x63\x93\xaf\x48\x6e\x56\x7b\xed\x58\x25\x6a\x10\xc0\x23\x68\xeb\x00\xf0\x39\x31\x24\xc8\xf9\xa5\x86\x35\x27\x54\x48\x42\x9f\x9a\x58\x97\x05\x9d\x10\x32\x1d\x88\x20\xc8\x25\x7f\xd1\x07\x4b\xa6\x06\xbf\x47\xab\x67\xfa\x17\x5b\xb8\xaf\x7b\x3b\x95\xe6\x7e\x67\xd1\x92\xe5\xb1\xe9\x58\x34\x03\x44\xa0\x66\x3f\xcf\x9a\x1d\x5d\x46\xa5\x13\x94\x55\xac\x63\x3d\x2d\x07\x63\xda\x82\x77\x93\xc3\x0b\x58\x01\xaa\x63\xd5\xaf\xe7\x05\x2c\xb7\x21\xe1\x7a\x55\xa8\x5e\x15\xaa\x57\xb5\xdf\x91\xec\x4c\xa1\x3b\x53\x39\x86\xc0\x91\xa7\xd7\x99\xb2\x14\xdb\x91\x02\x3a\x52\xa9\xdb\xc6\x53\xf1\x38\x01\xc7\x9a\x32\x16\xb3\x20\x90\x7f\x75\x63\x1b\x37\x1e\x7d\x32\x33\xde\x7c\x94\x43\x65\x54\xc7\xe5\x9a\xb5\xa4\x8a\x79\xa4\x8a\xad\xec\x1c\x9a\x1b\xac\xbb\x65\x1e\x8b\xd9\x54\xff\xfa\xfb\x4f\xc3\x68\x48\xe9\xaa\xeb\xba\x17\xd3\x26\xef\xb7\xfa\x56\x8b\xdc\x10\xb3\x8d\xc0\x02\x3a\x53\x95\xdc\x88\x80\x52\x65\xe9\x82\x3f\x2f\xae\xf3\x70\x23\x34\xcf\x4b\x28\x24\xfe\xba\x81\x24\xf8\x04\x9d\xf4\x41\xe1\xed\xc8\x64\xfd\xa5\x84\x4a\xfa\xfb\x2a\x77\x76\x4a\xaa\x8c\x3d\xa4\xbf\xd9\x0a\xef\x01\x94\xa4\x1e\xe8\x82\xdc\x33\x5d\xdc\xfe\x0b\xfc\x32\xba\xd4\xdd\x7c\xa7\x30\xa4\x5a\x7d\xa0\x9a\x93\x2c\x9e\x39\xe5\x6e\x9b\xfa\x82\xb7\x15\x1c\x66\xab\xcc\x0a\xe2\xc8\x57\xe1\x4e\xc5\xe3\xdc\x8f\x54\x8a\x39\x03\xe7\x03\xac\xbd\x10\xd4\x02\xce\xed\xfc\x3a\x3e\xa6\x13\x32\xcd\xad\xbc\xa2\x15\xe2\xc5\x06\x83\x6e\x58\x2b\x8a\x3d\x01\x9c\x35\x4f\x3a\x54\x3b\x0c\x7f\x62\xf4\xe9\x49\x09\x01\xab\x1a\x3a\x6b\x36\xf9\xca\x7b\xdc\x90\xc8\x44\x5d\xe3\x04\xc8\x63\x26\x30\x31\x2f\x82\xba\xa2\x91\x4d\xd9\x86\x53\x6f\xe3\x67\xbb\x2a\x2b\xae\xc3\x6f\xc7\x63\xba\x4c\x2a\x11\x3e\x1a\x8f\x9d\xf2\xff\xeb\xf1\x58\x6f\xbe\x0b\x2e\x99\xe4\x03\x3e\x64\xb2\x38\x08\x5b\x6e\x19\x0e\x3e\xab\x6b\xd9\xd5\x1a\x08\x94\x7a\xa4\xde\x3f\xff\x17\x6e\x2f\x6d\x28\xdb\x05\xe5\x64\x5a\x76\xda\x9f\x2b\x8b\x21\x93\xab\xd0\x9e\x84\x9d\xe3\xcd\x43\xc8\x1d\x7d\xa0\x1e\x2a\x72\x0b\xfa\x0b\x50\x10\x75\xce\x87\x08\x99\xea\x98\x1a\xc8\x40\x3e\x21\x83\xcf\xf1\x26\x67\x48\x39\x07\x40\x50\x46\x7a\x3a\x2a\x36\x42\x05\x6f\xe7\x0b\x26\x74\x88\x18\xbe\xa0\xf8\x70\x03\x89\x7a\x97\x21\x81\x4c\xc0\x1d\x0d\x2b\x42\x4f\x47\x70\xf1\x9b\x79\xce\x6c\x4d\xc6\x1c\x7c\x25\xe8\x85\x60\x3a\x8e\x78\x22\x44\xf9\x23\xf8\x04\x4f\x1b\xcc\x93\x4c\xbf\xf7\x38\xff\x0e\x5e\x3d\x78\x5a\x4e\x5d\xe8\x90\xbf\x03\xab\xe9\xde\x3a\x08\x6f\xdb\x69\x59\xf3\xc0\xc0\x89\xc5\x72\x3b\xff\x6a\x00\xc0\x13\xff\x54\x3f\x8f\xe4\x0f\xe9\xc4\xae\x67\x4d\x34\x28\x1b\x74\x20\xba\x03\xfd\xa9\xb1\x12\xc0\x1a\xc5\xa2\xe1\xd5\x5e\xd7\x58\xf2\x77\xd0\x8d\xea\xe0\xba\xe5\x1b\x08\x67\xee\x5e\xc8\x76\x49\xab\x8d\x39\x58\xb4\x12\xa1\x85\xd2\xf0\xd1\xde\x81\xb2\xb3\x3c\x82\xb4\x46\xaf\x00\x52\x7c\xe1\x0c\xd9\x0a\xdf\xa4\xaf\x64\x85\x35\x64\x13\x84\x44\x65\x88\x79\x13\x40\x46\xd0\x7c\x88\x10\x91\x9f\x53\x38\x03\xb3\xc2\x88\xd5\xaa\x08\x83\x7d\x20\x0b\xd0\x8a\x82\x92\x69\xb0\x81\xc4\x34\x82\x44\x1a\xa4\x1d\x18\x60\xf3\xf9\xa1\x8a\x74\xbf\x6b\x43\xfe\x2b\xd3\x60\x7f\x6e\x06\x81\x9e\xb1\x0a\x90\x17\xc2\xea\x98\xd9\xad\xf7\x41\x3d\x6f\xa7\x0e\x5f\xa2\x07\x4e\x47\xe3\x14\xeb\xbc\xe0\x96\x06\xf6\xac\xbd\xf3\xaf\x7d\xd0\x06\x4e\x6d\x56\x21\x28\xd9\xbf\x0e\x38\xbb\x72\xe0\x64\x45\x5c\x02\xce\x50\x37\x26\x4e\x0e\xf3\x73\xd5\x39\xb1\xf5\xb1\xc3\x81\xe7\x16\x51\x6b\x24\x73\x12\xb6\xbe\x29\x57\x2a\x4d\x1b\x55\xaf\x3b\x73\x14\x08\xaa\x6e\xf3\xc9\xd9\xf5\xf0\xe4\x92\xf4\x73\x11\x17\x42\x1b\x15\xda\x71\x9b\x42\x52\x53\x9c\x6d\x20\x64\xb6\xe6\xae\xf5\x4a\x90\x7c\xa8\x2c\x2f\x99\x51\xf8\x0b\xea\x31\x6d\xdf\xa9\x4b\x89\x12\x98\x2a\xfa\x79\x4a\x68\x61\xdd\x13\xd7\xfa\x88\x57\x45\x80\x52\xe4\xad\x36\x61\x6c\x6a\x15\xca\x0e\xa0\xf0\x4e\x75\xc6\xa4\x96\x4f\x64\x92\x3b\xf1\xbd\xf4\xbc\x93\x30\xf7\x23\xeb\xcf\x88\x76\x30\x3c\x42\xde\xb1\xea\x95\x68\x04\xc6\xf0\x97\xb5\x36\x5a\xf1\x91\x97\xb2\xa4\x82\x08\xe6\xc8\x33\xd4\xbe\xf5\x4b\x68\x9e\x7f\x70\x12\xf1\xb0\xd7\x83\xb8\xd9\xb2\x26\xb0\xe1\xa6\x1b\xbe\xb8\x4d\x52\x95\xe5\xc0\xfd\x24\xb5\x15\x05\xf9\x2f\x48\xaa\xe7\xe4\x17\xab\xf2\x5f\xa6\x37\x6a\xdb\x9d\x75\x48\x6b\xa7\x85\xff\x1d\x69\x3d\x3a\x40\x28\xe5\xa6\x63\x5a\x20\xa7\xa6\x80\x00\x19\x9e\xcd\xcf\xac\x41\x05\xbf\x9c\xca\x29\xd3\xc3\x2f\xa4\x68\x32\x33\xa0\x2e\x6f\x0c\xc5\x4a\x2e\x94\xc5\x77\xbf\xf5\x4b\x8b\xf2\x21\x91\x5c\x80\xc1\xb1\xe7\x3d\x1f\x81\x39\xe2\xab\x5c\x32\x24\x93\x31\x09\xd7\xc2\x44\x75\x32\x31\xa0\x48\x5d\x9f\x76\x13\x21\xf8\x5c\xc9\x97\xd1\x38\x3c\x9e\x48\xa2\xa5\x7b\x27\xdc\x2d\x8b\x32\x44\x2b\xb1\xce\x5e\x16\x25\xa2\x30\x3f\x43\x35\x4d\xe5\x8b\x48\x0e\x5b\x83\x6f\x80\x5d\xc6\xb3\x23\x31\xec\xc4\x81\x4f\xe2\xbe\xc3\xb6\xef\xe0\xdb\x08\x5f\xe0\xc7\x2e\x30\x25\x42\x4f\x51\xc5\x1d\xb6\x2d\x54\x7a\xca\x16\x41\x80\x45\xeb\xe5\x2f\xad\xa5\x25\x40\xe9\x51\x42\x14\x95\x3c\x59\xbc\xc9\xb3\x5b\x44\xd1\x3a\xb9\x79\x0d\x0b\x04\x51\x34\xe7\x59\xa6\x3d\xb1\xf4\xdd\x5b\x6d\x0c\x41\x51\x59\x5c\xbf\xdf\x24\xb9\x4c\x2f\x32\x7d\xb5\xad\xf8\x69\xb2\x41\x14\x2d\xcb\x64\xcd\xbf\xd7\x06\xb0\xc6\x7f\xe3\xc5\x42\x45\xcf\x6e\x08\x69\x92\x45\xb1\x33\x18\xa2\x80\x34\xf6\x7a\x90\x3b\x3b\x86\x91\xc9\x62\xf1\x0c\x06\xb0\xc7\xe8\xcd\x0f\x98\xa6\x2c\x20\x2f\xb1\xb3\x8d\xe8\x5b\xd2\x52\xf2\xd1\x30\xa3\xa6\x60\xcc\x3d\xd1\x58\xd0\x2b\x2d\xa1\x13\x13\x14\x0b\x0b\x06\xc4\xcc\x06\x71\xd7\x7b\x1a\x10\x85\xb9\x01\xec\x2b\xd8\x95\xc0\x39\x18\x34\x48\xde\xc3\x3b\x5d\x40\x47\x68\x78\x29\xd9\xe8\xa1\xa4\xb1\x1a\x36\x61\x3c\x4d\x99\x88\x13\x78\xbb\x74\x26\xf8\x47\x68\x98\x42\x36\xf0\xfa\x2f\x87\x4c\xdd\x4d\x0b\xb9\x14\x2b\x76\x09\x20\xbc\xda\xc2\xad\x43\x81\x69\x65\x03\x37\xa9\x88\x14\xda\x65\xf5\xff\x48\xef\x79\x65\xff\x55\x07\x0e\x3a\x21\x14\x1a\x42\xa6\x24\x0c\xe6\x0b\x10\xfa\xbf\xd3\xe5\x50\x5e\x5f\xbf\x3f\x39\x9e\x4c\x49\xc9\x4a\x1b\x0b\xca\x3e\xa2\xff\x1b\x03\xa1\xa4\xf0\xf6\x40\x78\xa7\xb7\x7a\x07\xa4\xa5\x6f\x96\x9c\xd7\x75\x7b\xe3\x34\x5a\xc0\xae\xca\x42\x04\x41\x19\x09\xa5\x91\x74\x33\x5b\x2b\x2c\x1a\x83\x45\x42\x38\xda\xed\x1b\xdf\xdc\x8d\xaf\xd7\xe4\xc6\xf8\xe6\x76\x7c\x21\x48\xb6\x1c\xe3\x03\x30\xbf\x6a\x96\x29\x0b\x89\x74\x89\x4b\x15\x83\x90\x8d\x69\xca\x74\x25\x34\x51\xc3\x3c\x15\x2c\x89\x0b\x35\xac\xa3\x55\x52\xa9\x5a\x05\x89\xd2\x46\xcb\x05\x09\x53\xf7\x6d\x42\xab\x14\x5d\x58\x77\xf0\x10\x50\xfd\xa2\xa3\xfb\x61\xc1\xec\x6c\x0c\x02\x0f\x19\x0d\x9d\x9f\xdb\xed\xe0\xfc\x1c\xd9\x78\xdf\x55\x83\xd1\xe9\x24\xd9\x01\x16\x5a\x11\xcc\x23\x84\x42\x5f\x95\xdc\x2c\x17\x78\x22\xa2\xc3\xb6\xe8\xef\xea\x5f\x89\x6c\xac\x95\x67\x72\xbe\x71\x39\xdf\xcc\x74\x2f\xcd\x74\x6f\x4f\x72\xac\x67\x39\x2c\x02\x35\xd3\xed\x84\x16\x80\x17\x6a\xa0\x1c\xa7\x16\xbc\x51\x87\x1b\x7d\x2a\xd8\xc9\x59\x79\x72\xd9\x14\x5a\xaf\x92\xec\x10\x99\x30\x21\x64\xac\x4e\xbc\xb5\xa2\x23\x5c\x32\x39\xab\x7a\x15\xa0\x9a\x0b\x2a\xa6\x9d\x30\x47\x41\x60\x0e\xd1\x0b\x56\x46\xcd\x69\x66\x26\xe2\x55\x92\x61\x42\x42\x4e\xa2\x82\x21\x64\xcf\x6c\xdc\xcc\x2f\xa2\x62\x28\x9f\x34\xd7\x4a\xa1\x8c\x6c\x94\xb1\x48\xd1\x1b\xf9\x4a\x6b\x00\xe5\x10\xf2\x21\x42\x70\x92\x06\x5c\xd6\x55\x92\x79\x66\xd4\x1a\x73\xa7\x9d\xdc\x1f\x9f\x12\xec\x72\x34\xdb\x25\xfc\x60\xd0\x6e\xee\x15\x14\x81\xb0\x05\x4e\x56\x50\x94\x92\xbd\x0a\x75\xe6\x1e\x16\x51\xb3\x11\x45\x4f\x0b\x8a\xfb\xaa\xbf\xec\x56\x8f\x73\xa6\x8c\xc8\x5d\xe5\x24\xca\xbb\x4c\x38\xce\x99\xc6\x15\x24\x91\x0d\x2d\x83\x9f\x02\x7e\xbf\x16\x66\x73\xd9\x5f\xb9\x41\x99\x6b\x30\xc0\xa6\x79\xa1\x81\xd1\xfe\x32\x96\x50\x37\xc8\x8f\xc7\x3d\x00\x93\xe5\x4b\x81\x75\x48\x32\x0e\x7e\x63\x8a\xbf\x39\x50\xaa\x9e\xa8\x06\x7b\xb9\x02\x8e\xbb\xc9\x3a\x25\x4c\xeb\xa1\x8e\xf5\x01\xb5\x8e\xfc\x5a\xb1\x04\x94\x06\x60\x2a\xc7\x92\x28\x1d\x4e\x42\x6b\x86\xa9\x3c\x28\xd2\xc7\xe3\x68\x1e\x26\x51\x0a\x86\xa4\x73\x30\x70\x91\x1b\x15\x06\xd9\xd6\x42\xc6\x48\x56\xb2\x04\xc8\xe4\x20\x18\xe4\x16\x82\x26\x08\xf0\x20\xf7\x39\x35\xf3\xa0\xae\x07\x2f\xb0\xff\x84\x22\x03\x23\x8d\x88\x89\x66\x77\x87\x73\xbd\x0c\x68\x62\xb7\xce\xa9\xd6\x65\x0a\xbb\xd5\x54\x1d\xdf\xab\x0e\x94\xbe\xdf\x39\x72\x65\x7c\xe6\xc6\x53\xc4\x37\x3c\x4d\x8e\x8f\xa7\x04\x83\xd1\x69\xe2\x7d\x19\x73\xa1\x89\xdc\x4c\xd4\x05\x2a\x40\x7d\x42\x53\xa0\x3b\x70\x22\x35\x18\xbb\x11\x85\x60\xd8\x8d\xb1\x60\xc7\x13\x08\xb3\xd0\x60\x52\xb5\x0e\xce\x29\xfd\xda\xcc\x63\x63\x05\xce\xba\x2a\x03\xe8\xb0\x8e\x13\x8c\x15\x63\x4d\x70\x58\xef\x43\x30\x37\x5d\x0b\x24\x73\xbf\x77\x7a\x46\x10\x0a\x9a\x35\x42\x44\x98\x83\x94\xa4\x13\x64\x58\x4f\xec\x08\x15\x39\x0a\x8d\x1a\x11\x5c\x7f\x4e\x47\x3a\x98\x3b\x43\x45\x6e\xe2\xba\xa7\xf9\x51\x0e\xe4\xf9\x5a\x4b\xf2\xfa\x01\xfc\xd4\x26\xdc\xfb\x45\xb6\x2d\xc9\x83\x13\x7a\xd7\x6c\x49\x1f\x18\xc2\xd4\x2e\x4d\x1d\xdf\x90\xee\xba\xf0\x2f\xe0\x24\x67\x51\xfc\x9a\x18\x7e\x17\x2c\x2e\xeb\x3a\x99\xd1\xb5\x89\x22\x2b\x25\x38\x08\x62\xac\xa3\x1e\x87\x9c\x9e\x7a\xcf\x6c\xdc\x6e\xc8\xe0\x40\xb5\x1c\x02\x5f\x18\x2b\x0c\x32\xb6\x60\x73\x06\xa0\xbc\x09\xfd\xaa\x11\x19\x54\x09\xc5\xfe\xfd\xe0\x5a\x0b\x7f\xeb\x61\x07\x1b\x93\x80\xb5\x85\x65\xe4\x46\xc0\xc2\x05\x01\x3e\x65\x6b\xaf\x56\xba\x66\xa7\x23\x65\xb2\x20\x3b\x5f\xa1\x00\x12\xba\x65\xde\xab\xa1\xe2\xba\xe5\x60\x0d\xd7\x14\x73\x76\x0f\xa0\xcf\x9a\xf6\x18\x2f\x04\x81\xe4\x58\x2d\x40\x2d\x2b\xa2\x47\xe1\x57\xd4\xeb\x06\x76\xea\x10\x25\x29\xf7\x40\xc7\x98\x97\x29\xea\xc5\x11\x3c\xfd\x4b\x1c\x41\xa5\x40\x32\x18\x35\xfa\x40\x84\x1a\xd4\x14\x15\x8e\x5e\x41\xa1\x94\xc4\x8b\x41\x17\xf3\x59\xd8\x20\x05\x14\xcc\x4f\x96\x1d\xf0\xb9\xb5\x8a\x1f\x57\xd4\xf5\x60\x69\xba\x5f\xa3\xc4\xd9\x7b\x1b\x7d\x4b\x68\xe2\x35\x28\x00\x0b\xd0\x80\x1d\x05\xc1\xe0\x0a\x97\x16\xeb\x71\xd9\x00\x57\xac\xeb\x35\x35\x03\x9d\x0d\xd7\x80\xbb\xc6\xfc\xd8\x68\x64\x5a\x4d\x5b\x29\x17\x8a\x08\x56\x10\x6e\x75\x3a\x87\xe0\x1c\xcd\x60\x5c\x75\x9d\x90\x20\xd0\xf9\xe6\x7e\x68\xae\xba\x9e\xeb\xa2\x7e\x4f\xf3\x45\x71\x5d\xd7\x39\xd9\xab\x10\xa9\xe3\x29\xae\xd8\x45\x9c\x6a\x8c\x39\x7e\x10\xb2\x6e\xc1\x2a\x73\x82\x90\x3e\x99\x44\x59\xb8\xb4\x00\x91\xf2\x73\xf0\xc6\x80\xfd\x75\x90\xfe\xd4\x5b\x33\x03\x6d\x54\x19\xf8\x41\xb0\x42\xd8\xe8\x8e\x04\x20\x1a\xbc\x61\xdb\x20\xa8\xe2\xed\xcc\x3d\x09\x82\x5f\x70\xa5\x9c\x47\xf5\x78\x37\x5e\xb1\x20\x3c\x06\xe6\xa8\x8d\xd1\xe2\x22\xe4\xaa\xc6\xaf\xe5\xb8\xf2\x1e\xe0\x17\x4c\xea\x7a\x69\xad\x56\xb4\x51\x81\x4b\xd0\x95\x5e\x8c\x36\x70\x10\x27\x48\x5d\x0f\x7e\xc1\x25\xa9\xeb\x6d\x10\x5c\xe2\x32\x5e\x43\x07\x5e\x41\x10\x5f\x8c\xe7\xac\x54\x9f\x81\xe5\x2f\xcc\x41\x07\x38\x6a\x97\x34\x5b\xd3\x43\x3d\x1e\x04\x8b\x2e\x48\xea\x9a\xde\x09\x42\x65\x5d\x80\x94\x7c\xf8\xcd\x3e\xec\x25\xf5\x72\xb7\x0d\x7a\xfd\xcc\x4d\x5b\xe7\x10\x00\xd2\xc2\xe4\x55\x1a\xf8\xe5\x80\x65\x87\x25\xbc\x1e\xd1\xa0\x39\xdd\x69\x92\xd9\xc0\xe9\x19\xef\xc9\xb4\x0d\xd0\x5c\xaa\xe8\x83\x82\x74\x02\xc6\xf6\x11\xf0\xbf\x3c\x17\x6a\x16\x2e\x5b\x2a\x6c\xb8\x4e\x9d\xfa\x63\x07\x8a\xbb\x69\x5c\x2c\x99\x7f\xcf\xe3\xfc\xa8\xaf\xd0\x1c\x42\xd5\xee\xbd\xed\x4d\xb9\x62\xfe\x37\x18\x26\xaa\xe6\xe6\x19\xae\x26\x48\xba\xeb\xb0\xb0\xd4\x8d\x36\x11\x38\xd5\xce\xd7\x42\x01\xef\x81\x40\x51\x63\xa5\x3c\x0c\x9b\x34\x43\x31\xea\xce\xd6\x4f\x52\xb4\x69\x51\xd7\x65\x77\xf6\x71\xf5\xd9\xd4\xcf\x4b\x71\x01\x31\x4e\x26\x10\x92\x57\x61\x9d\xfe\xf7\x15\x1f\x4f\xa6\x45\xd4\x28\xbe\x20\x21\x2e\x7b\xa7\xb3\x6b\x8d\x36\x1f\x04\x5a\xbc\xb7\xa7\x09\xe7\x82\xe5\xa3\xac\x98\x2b\x0f\x91\x37\xfe\x89\x3c\xfd\x20\xa5\xc2\xe8\x64\x7a\x37\x02\x85\xec\xc7\xd3\xd7\x5d\x0b\x25\xd0\xe7\xf0\xba\xee\xb1\x43\x22\x1e\x33\x04\xc1\x3b\x05\x83\xe9\x9f\x8f\x9e\xbf\x39\x7d\x2b\x4b\x2c\x89\x2a\xf9\x65\x59\xac\xdf\xc3\xfb\xc0\x4f\xf0\x1b\x71\x72\xb3\xce\x10\xd1\x91\x39\x21\xc4\xbe\x96\x2f\x9c\x76\x75\x00\x02\x8c\x3e\xca\xad\xbe\xbf\xfd\x90\x5c\x4a\xf9\x07\x23\x28\xb2\xe4\x65\x59\x94\x9e\x3d\xf3\xdd\x08\x52\x30\x7a\x95\x5f\x25\x59\xba\x38\xfa\x78\xfa\x3a\x94\xb2\x35\xa1\x42\x79\xd0\xdd\xc8\xcf\x8d\xcf\x66\x0f\x4e\xe8\xcf\x20\x0f\x47\x67\xf9\xc9\x25\x7d\xad\x99\xaf\x6a\x7b\xb1\x4e\x85\x3e\x60\xa9\xd3\x75\x72\xc9\xeb\x92\x57\x5c\xd4\xcb\x34\xe3\x70\xe2\xf2\xe2\xde\xa3\x99\xcf\xfc\xf6\x92\xe7\xc4\x3f\x86\x79\x2f\x5a\xb6\x6d\xbd\x4e\xdb\x7a\xc9\x34\x4f\xf0\x0b\xb2\xcb\xeb\xda\xe0\x54\x73\x12\xc9\xb1\x2e\x48\x28\x8b\x1c\xa2\x18\x0d\x7b\x00\x50\xac\x1a\xbf\x88\x44\x88\x24\xb7\x30\x43\xb4\xb0\x01\xff\x0d\xde\x7d\x5e\xd7\xe6\xdd\x01\x63\xd7\xc0\x32\x6b\x18\xb9\x86\xcd\x96\x20\xb6\xb2\x02\x8a\x12\x71\x31\x53\xa5\xc1\x94\x49\xd6\xac\xff\xac\x10\x62\x7c\xf6\x2d\x6f\x80\x8c\x14\x98\x84\x62\x5a\xc6\xc6\xbe\x69\xc6\x78\x3e\x2f\x16\xfc\xd7\x77\xaf\x9e\x15\xeb\x4d\x91\x2b\x04\xc5\x21\x62\x68\xd8\xf3\xc4\x97\x4a\xc9\x1e\x68\x94\x92\xeb\xcd\x49\x35\xea\x76\x32\xc4\x3a\x1b\xfd\xf1\xe7\x96\x97\xb7\x3a\xd0\xfa\xdb\x2c\x49\x73\x6b\x60\x68\xc6\xa0\x19\xef\xa2\x50\xe2\xba\x64\xd5\xa8\x13\xdc\x5d\x5f\x7a\x7e\x40\xef\x05\xce\x29\xf8\xfe\xc8\xa1\xb3\x47\x81\x9a\x8b\x0b\x10\x69\x59\x5b\x56\xbc\x4c\x93\xac\x3f\x22\x9d\xee\x5c\xac\xd5\x51\x3a\xa3\xfa\x12\x15\x71\xc3\x4f\xea\x29\x40\xf4\xc5\x18\x56\x36\x1c\xfa\x8c\x5e\x29\xaf\xb8\x5e\x5c\x4e\x16\xe7\x91\xcf\x1b\x6a\x75\xe2\x1e\xf0\x1f\xc0\xf0\xb3\x5b\xa0\x55\x99\x34\x1c\xcf\x65\x97\xc9\x8e\xd6\x3a\x9d\xb4\xc2\x28\x34\x32\x30\x00\xc1\xe8\x79\xdd\xd0\xac\x48\xce\xe1\xb5\x70\x21\x85\xd5\x53\x2d\xc4\xd5\xf5\xc0\xa2\x7f\x80\xe2\xa4\xf5\x81\xbe\x41\x98\xaf\x49\x6a\xa2\x7e\x29\x63\x81\x96\xea\x28\x27\x91\x52\x1b\xe5\x7d\x6a\xa3\x9d\xfc\x96\x50\xa8\x59\xa0\x80\x41\x1d\x72\xc0\xcf\x82\xa2\xb3\xf2\x2c\x47\x60\x33\x13\xf6\xe4\xcd\x0f\xe4\x55\xe1\x6a\x8d\x82\xee\x4f\xc1\x4e\xfe\xf1\x68\x7c\x72\x49\x9f\x09\x76\xf2\xff\x1b\x3d\x7c\x70\x42\x3f\x0b\x76\x82\xe3\x28\x98\x91\x73\x16\xff\x27\x98\x3d\x3c\xa1\xbf\x03\x01\x1a\x3d\x8c\x48\x18\x1f\x9d\x89\xd9\x43\x1c\xff\x47\x16\x39\x7b\x48\x1e\x9c\x5c\xae\xe9\x73\x4d\xa0\x7e\x78\xf1\xa1\xfe\xf1\xc5\xd3\xe7\x52\x6e\xfc\x5e\xa6\x9d\x9d\x9c\x9d\x9c\xd0\xb7\x82\xed\xf6\xf4\x1d\xfc\xfd\x28\x18\x7a\x78\x82\x8c\x77\x2a\x7a\x88\x08\xfd\xa3\xc7\x90\x27\xf1\x43\xd0\xbe\xf2\x0f\x79\x9b\x8e\x85\xdd\x0d\x42\x58\x43\x55\x59\xf8\xd4\xf8\xc8\x8e\x69\xda\x3e\x39\x6f\x9c\x02\xab\x73\x89\x5c\xe3\x03\x97\x2c\xd5\x9a\x62\x34\x94\x94\xae\x8c\xc7\xb3\x08\x97\xac\xb4\x51\x5a\xea\x1a\x3d\x44\x54\xf9\xd0\x71\xf0\x1b\x89\x67\xc4\x1a\xac\xe7\x84\x84\xed\x67\x20\x1a\xe4\x3e\x16\xcd\xaf\x6d\x3a\xad\x42\x86\x70\xc6\xd8\x3b\xe1\x3e\x3f\xc1\x95\x7a\x3e\xb7\x01\x40\xe2\x6a\xa6\x0c\x32\x15\xf9\x88\x2b\xe5\xe2\xe4\xcf\x4b\xfd\x4e\xc6\x2a\x6d\xbc\x7c\xd0\xb4\x37\xab\xeb\xb4\xae\x8b\x38\x9b\x45\x69\x34\xc0\x73\x96\x11\xad\x77\x0b\xb1\x00\xf4\x69\x29\x68\x38\x6b\xfc\x8c\xd0\x44\xfe\x19\x4c\x40\xc9\x30\x37\xbb\x67\xe2\xe7\x8e\xc7\x33\xc9\xa5\x17\xe0\xd3\x15\x04\x09\x0c\xb5\xfb\xf4\x1f\x45\xcb\xc3\x91\xdd\x8d\x92\x3f\x92\x9b\xf7\x5c\x88\x34\xbf\xac\x46\xcb\x2c\x11\xda\x15\xd5\x02\x91\xe7\x6a\x7b\x70\xda\xce\x38\x9f\x49\x7e\xbf\x88\x73\x29\x39\x97\x75\x8d\x4b\xb6\xdb\x13\x12\xe7\x33\x05\xb1\x6c\x29\xa2\x87\xbc\x39\x18\x03\xb8\x0c\xe5\xfb\x3f\x04\x1c\xec\xb2\x73\xf5\xeb\x9b\x2f\xcd\x45\x7a\xc5\xc3\x31\xcd\x92\x4a\x9c\x16\x8b\x74\x99\xf2\x05\xf8\xd5\x8a\x04\xfc\x6b\xfd\xb6\x86\xbb\x6d\x99\x85\xa6\x10\xe0\xbd\xd1\x0f\x2f\x3e\x20\x9a\x56\xaf\x8b\x79\x92\x85\xca\x5e\xe2\xa2\xd8\x8a\x3a\xd9\x6c\xe4\xff\x8f\x2b\x51\x94\x72\xab\x1f\x0d\x8f\xa1\xce\x2a\x2d\x72\xd8\xf1\xe5\xe6\x5f\x5f\xa7\x0b\x00\x0f\x7d\x70\xa2\x48\xcf\xb9\x76\xd4\x9f\x17\x19\xa1\x0a\xfa\x05\x80\x0c\xcb\x42\xf2\x6a\x80\x6f\x31\x18\xd3\xa4\xba\xcd\xe7\x1a\x63\x58\xf0\x5c\x00\x08\x1d\x92\xa2\x53\xaa\x18\xb1\x93\x9b\xe3\xeb\xeb\xeb\xe3\x65\x51\xae\x8f\xb7\x65\xa6\x76\xb9\xc5\xf4\x68\xbe\x92\xbc\x8d\x60\xbf\x7e\x78\x79\xfc\x4f\x44\x25\x07\xb8\x11\xda\x0d\xf0\xa3\x50\x68\x0f\x8a\x7f\xda\xc8\xed\x0b\xa9\xd8\xf0\x2a\x45\x5e\x22\x7a\x23\xef\x1b\x35\xad\x33\x7a\x64\x59\x2e\xfa\x47\x05\xa1\x3b\xbd\x0c\x32\x45\xe7\xf8\x23\xb9\x4a\x34\x6a\xc7\xde\xb4\xbd\x0a\x77\xb2\xcc\x93\xb3\x8b\x9b\x75\x76\x76\x71\xa2\xaa\x3c\x39\xbb\x90\xbf\x27\xaa\xbc\x93\xb3\x0b\xf9\x7b\x76\x71\xb2\xa7\x25\xaf\x36\x45\x5e\xf1\x97\x29\xcf\x16\xfa\x65\x64\x12\x3f\x9e\xbe\x46\xfa\x2b\x4c\xd2\x07\x7e\x23\x4c\xb3\x4c\xda\xbf\xde\xbf\xf9\x59\xb5\xe0\x8a\x97\x42\x3b\x42\x42\x13\x51\xa8\xf8\x48\xc5\x45\x1e\xc1\x37\xcb\x8e\x56\xb7\xb2\x14\x14\xca\xb7\x15\xdf\xa9\x93\xe5\x87\x87\x8e\xc9\xdd\x53\x6f\x4a\xab\x29\x63\x86\xea\x46\x48\xf1\xcc\x4e\xaa\xed\x01\x03\x14\x11\xfd\x28\x30\x2c\x9c\xe6\x5a\x91\x02\x71\xf8\xa3\xc0\xcd\x54\x00\xea\x90\x09\x0e\x8d\xe6\x95\xc0\x6f\x05\x81\xc4\x0f\x65\x92\x57\x9b\xa2\x14\x32\xf1\x9d\x4e\x6c\x55\xdb\xab\x7b\xc2\x2d\x07\x00\x26\x60\x79\xb6\x02\x0e\x5b\xd5\xde\xca\xad\xeb\xed\x46\xbb\xaf\x5f\xb0\xd5\x48\x7f\x77\x5d\xaf\x94\xd2\x4f\xdd\x06\x01\xbe\xf0\x82\x7f\x5c\x68\xde\x89\x44\x77\xf8\x82\x84\x46\xbb\x78\xda\x08\x2a\x40\x2f\xd9\xdd\xe8\x59\x92\x65\x17\xc9\xfc\x73\x85\x51\x91\xcf\xf9\xd1\x9a\xaf\x8b\xf2\x16\x11\x7a\xc5\x56\xa3\x4a\x24\x62\x5b\x3d\x03\x7c\xf7\xdd\x9e\xde\x4a\x2a\xfb\x54\xfe\xb9\x66\x48\x61\x9f\xf2\x05\xa2\xe7\x6c\x57\xf2\x64\x71\xfb\x5e\x48\x79\x1b\xb0\xc6\xdf\xe9\x89\xf1\x23\x4f\x16\x7d\x58\xd6\x53\x15\x71\x5b\xca\x2a\x0a\xf2\xa5\x62\xbb\xfd\x54\xb0\xdf\x85\x72\x7e\x4d\xc9\x94\x54\xb1\xe8\x40\x11\x00\xde\x3b\xc3\x07\x1f\x35\x02\x38\x88\xf8\xd1\x8c\x4c\x05\xab\x62\xde\x93\x75\xdf\xe0\x33\x84\xe2\x33\x84\xe6\xff\xe8\x91\x64\x00\x2f\xb9\x78\x9a\x65\xcd\x6f\xe9\x8b\x85\xbc\x8d\xd2\xd0\x9a\x8c\xbc\x53\x81\x38\x3a\x5f\xee\x4d\x47\x55\xe5\x16\x3c\x13\x9e\xb6\x1b\x37\xeb\x49\xaa\x6b\x4e\x6f\x63\x3e\x63\xfa\x18\x74\x4f\x8b\x2b\x5e\x96\xe9\x82\x9f\xa6\x6b\x85\x9e\x79\x50\xe9\xbd\x05\xb7\xbd\xb5\xce\xc7\xb8\x29\xc1\x8d\x6d\xff\xf0\x80\xab\xfc\x96\x9c\x1b\xef\x3e\x1e\x9f\xeb\xf9\xe0\xfb\x8a\xa8\xf0\x7b\xe4\x4a\xca\xef\xb1\xfc\x4b\x79\x2c\x66\xb3\x26\xf0\x46\x72\x21\x97\x4b\x8f\x29\x4d\x5d\x5f\x7b\xfb\x4c\x39\x82\x8c\x58\x10\xfa\x06\x8f\xcd\x91\xef\x1e\x44\x86\x53\x1b\xdf\xe1\x9c\xd0\xd5\x68\x5b\x66\x0c\x63\x5e\xd7\x70\x59\xd7\x7a\x0b\x21\x43\x84\x88\xe5\xdf\xbe\x17\xd4\x23\xff\x43\x74\x72\x82\xe4\xbb\x0a\xbf\x73\xb4\xe6\x62\x55\x2c\xea\x5a\x68\x70\xaf\x95\x4d\x51\x59\xe8\xca\x6d\xc9\x0c\xbb\x1b\x60\x5f\xc8\x61\x7e\x08\x21\xe3\x7e\xba\x1a\xcd\xcb\xa2\xaa\x9e\x17\xeb\x24\xcd\xc9\xae\x27\x96\xb8\xe4\xd5\xa4\x20\x9e\xa9\xdd\x14\x3e\x86\xea\x1b\xf5\x43\x1b\x85\xb0\x3f\x5a\xdf\x33\x94\x1b\x71\x51\x89\x01\x53\xc1\x10\xbc\x27\x19\x3c\xd0\x12\xfb\x07\xb2\x6b\x16\x24\xa9\x66\xba\xd4\x9f\x15\x04\xab\x91\xb7\x23\x3a\xc8\x3b\xc7\xe9\x98\x8c\xfa\x0d\x66\x44\x1e\x75\x2b\x7b\xb5\x4c\x16\x10\x0f\x30\xc9\x08\xa1\xbf\x4a\x7a\x49\x57\x54\xd0\x73\x42\xb7\x46\xf1\x70\x0e\xbc\xc8\xf2\x28\xcd\xf1\xc6\xa8\xaf\x65\xdd\x6a\x5f\x26\x41\x30\x06\x6f\x57\xc5\x42\x0c\x87\xc0\x79\x34\x74\x58\x08\x08\xa2\x48\x4a\xe1\x46\x52\xfd\x34\x63\x02\xd2\x15\x58\x29\x68\x20\x98\xc1\x73\x2d\xa3\xa8\xac\x84\x16\xaa\xa7\xed\x44\x79\x06\xc7\xa7\x8d\x97\xa2\x03\x3d\x03\x01\x35\x35\xd5\x55\x7c\x82\x82\x85\xb3\x87\x14\x7f\xc9\x34\x80\xff\xae\xee\x45\xf5\x63\xdb\xf1\xa7\xa0\x68\x88\x24\x03\xbc\xd0\x2d\x54\x3c\xb3\x39\xf8\x23\xd4\x1b\x06\xaf\x59\x4e\xdb\xc3\x5a\x03\x06\x67\xec\x43\x86\x3f\x58\xd7\xad\x08\x05\x28\x44\x11\x22\x43\x3d\x74\xda\x82\x52\xe7\x57\x9a\xe9\xd5\x68\x9e\xcc\x57\x5c\x05\x48\x74\x00\x74\x82\xa2\x07\x13\x44\xe8\xa2\xbf\x40\x74\xce\xd0\xf0\x8d\x18\x0e\x87\x0b\xb3\x46\x0b\x75\x99\x2e\x0d\x27\x08\xf1\x25\x7c\xd6\x10\x9c\xcc\xce\x47\x6d\xc2\x89\xd1\xab\xe5\xb1\xc9\x73\xfc\x3e\xcd\xe7\x1c\xd1\xce\x9b\xa0\x17\x16\xc9\xe5\x7d\x85\xfc\x5c\xe4\xfc\xf8\x54\xae\x02\xe4\x72\x13\x42\xbd\xb9\xef\x86\x5d\xeb\xcf\x5b\x03\x2c\xfc\x5b\xd2\x5f\x93\x2e\xe0\xf8\x03\x58\x6d\x37\x0a\x20\xb4\xef\x85\xa7\xc0\x2b\x22\x9f\xcc\xc4\xe3\x99\x6c\x8e\xe6\x22\xe3\xe6\x93\x59\x74\xf0\xc9\x50\x8a\x08\xd0\x6c\x3f\x39\x92\xbb\xd8\xf0\xa3\x18\xa2\xe9\xd1\x9f\x6c\x3c\x1a\x4f\x50\x88\x10\x09\x5d\x31\x2a\xaa\xd1\x6a\xb4\x52\x3b\x1b\xe9\x69\xe6\xd2\x3d\x8e\x97\x0a\xab\x6e\x35\x52\xb8\x33\xef\x79\xbe\x30\x11\xaa\xfc\x34\x75\xd6\x78\x41\xcf\xe9\x8a\xd4\xf5\xd6\x1e\xef\x9e\x6b\xf2\x0e\x85\x5c\x33\x04\x77\x88\x5e\x02\x5a\xe9\xca\xc5\xf2\xa0\xe7\xca\x01\x7b\x35\xaa\xb6\xa0\x51\x95\x29\x10\xdf\x63\xa5\x54\x86\x84\x96\xec\x57\xc9\x7b\x69\x02\x03\x7c\xc4\xf9\xc8\xf1\x20\x6c\x42\x37\x41\xb0\x6e\x91\x0d\x00\xd0\x89\xcf\xe9\x6a\xd6\x20\x49\xab\x11\x70\xff\xb2\xe3\x85\x72\xa8\x79\x02\xc1\xce\xd9\xc1\xb0\x57\xe6\x43\x90\xce\x8f\xc8\x1e\xa8\x91\xba\x23\x8a\xa4\x6f\xd9\x60\x02\x80\xc8\xf9\x02\xdf\xd2\x37\xc4\x11\x62\xd8\x56\xc5\xaa\x2c\xae\x8f\x3e\x4c\xdf\xe0\xe3\x09\xfd\x40\xf6\x7b\xd8\x51\xe1\x0e\xfd\x5c\x1c\x59\x26\xd3\x17\xe6\xdf\x80\xcc\x9b\x58\xf9\x14\xd8\xc4\x5b\xfa\x94\x5e\x33\x31\xdd\xd6\x35\xde\x4a\xc9\x76\x1e\x04\x2d\xff\xa0\xb9\xec\x30\x7d\x5c\x92\xb2\x4a\x12\x2c\xda\xe8\x2e\xfe\x64\x1c\x7d\x2d\x45\x36\xc6\x9f\xb0\x47\xe3\x71\x10\xf0\xc7\x5f\x8d\xc7\x75\xfd\xd5\xf8\x6b\xc6\x18\xa7\x92\xe2\xdc\x76\xfc\xc4\xbd\x40\x5a\x0e\x62\x51\x0b\x21\x74\xce\xb8\x9b\x8d\x53\xf4\x50\x92\xa6\x79\x3c\x9e\x4d\xc9\xdc\x9e\xf3\xda\xc8\x12\x25\x80\xd1\x70\xcb\xa5\xc8\x25\xd7\xe1\x22\x5b\x6b\x4c\x99\x2e\x96\x0e\x38\xb7\x92\x0c\x4b\x05\xa4\x40\xfe\x55\xf4\xa9\x24\x64\x37\xb7\xf2\x77\x41\xa6\x17\x25\x4f\x3e\xcb\xad\x4f\x36\x26\xcd\x8f\x72\x92\xaa\x76\xc9\x01\x70\x70\xd4\xb9\x62\x4e\xe7\x0a\xc2\x78\xe4\x24\x9b\xb8\x90\xdc\xe3\x50\x3e\x98\x91\x5d\xca\x0a\x5d\x62\x02\x68\x3c\x05\xd9\x43\xa8\x8d\x44\xd6\x60\xed\xc5\xd3\x81\xfa\xf6\x20\x70\x4d\x49\x09\xcd\xe3\x74\xb6\xc7\x2b\x7a\x4e\x13\x42\x68\xbb\x7f\x5b\x11\x97\x01\x8c\x64\xb7\xa7\x5b\xbf\x5f\xf5\xfe\x00\x3d\xb1\x8d\x27\x33\x85\x41\x09\x2c\x99\xd7\x64\x92\xc5\x49\x9b\xc7\x6c\x7c\x52\x32\x53\xee\x7f\x6c\x6b\x86\x66\x9a\x82\x45\x1b\x9c\xa7\x79\xd2\x61\x9c\x2a\xe0\xc4\x9e\x74\xe0\x4d\x07\xf3\x20\x28\x83\x40\xb5\xf0\x25\x88\x4e\x4a\xee\xf1\x12\xe0\x54\xc8\x7c\x01\x84\x46\x48\xa9\x57\xb3\xac\x56\xcd\x96\x54\x8e\x8c\xd5\x81\x2b\x0a\x37\x0f\x82\x39\x58\xe2\xc3\xe8\xe0\x84\x65\xf1\x1c\xc6\x23\x9d\xd5\x75\x16\xa3\x87\x70\xe9\xa1\x29\x67\x60\x04\x54\xb1\xc2\x0b\x1c\x4b\xe2\xc9\x4c\x59\xf0\x7b\x05\x00\x21\xb5\x65\xc0\x1d\x21\x3b\x88\x17\x9d\x44\x09\xa0\x2d\x87\x10\x02\x20\x83\x19\x86\x53\x26\xf3\xd0\xad\x1d\xd0\x4a\xf6\xbf\x37\xbf\x20\x73\x22\xab\x4f\x64\x8f\xc0\x82\xaf\x88\x60\x89\x35\x8c\x54\x47\x30\xf2\xde\x11\x07\xad\xc2\xac\x40\x94\x6a\x9c\x9c\x50\xf8\x09\x93\xe8\x43\x28\x29\x84\x1a\xbe\x0a\x42\xdb\x95\xc5\x5a\x4e\xc9\x21\x3a\x12\x85\xec\x80\xfd\x7e\xdf\x2c\x47\x13\x52\x44\x65\xbf\x87\x62\x2f\x67\xdd\x2d\x3d\x87\xb0\x4b\x11\x6e\xed\xcf\xf8\x29\x3b\xef\x5b\x7d\xaf\x93\x4a\xd8\x2d\x59\x45\x45\xe9\x6c\xc8\xec\x29\xa1\x87\xde\x97\x5b\xaf\x79\x4d\x6f\xc3\xec\x29\x21\xf4\x91\x22\x32\x75\x8d\x7e\x7c\xf1\xf4\x39\x82\xdd\x44\x32\x31\xd1\x35\x43\x79\x61\xe0\x06\x42\x4d\x8b\x54\xaa\x58\x9b\x76\x84\xf8\x9a\xdd\x82\x60\xc2\xe9\x92\xdd\x2a\x9e\x26\x63\x03\xbc\x60\xb7\x7a\xbb\x50\x0c\xd5\x35\x1d\xf0\x20\xb8\xae\x6b\xb9\xf7\x98\x2e\x05\x2b\x6e\xce\xc6\x84\xc0\x26\x0d\xe2\x0d\xe3\xf6\x12\x70\x9a\xb0\xa8\xeb\x6b\x29\x59\xd0\x2c\x3a\x6d\x44\x2a\xbb\xa0\xf1\x92\x5e\xd3\xf3\x19\x09\x4f\xfd\x50\x65\x17\x72\x9b\xb9\xa6\x8b\x99\x2b\x54\xca\x59\xf8\x4a\x4a\xd5\x9a\x10\x37\x36\xa8\x2c\x52\x5b\x94\x1e\xa6\x10\xee\x5e\xa8\x36\xca\x1d\x8b\x66\xd1\x32\x94\xc5\x5d\x42\xf8\x1f\xaf\x92\x19\x91\x25\xe1\xd6\x5e\xf7\x4c\xef\xa5\x76\xbf\x3b\x3e\x36\x6c\x35\x1c\xbc\xf5\x31\xd5\x05\x18\xb4\x19\xa9\xf8\x1c\xa4\xdf\x7f\xbd\x7f\xf3\xf3\x01\x97\xaf\xa3\x3b\xe3\x75\x42\x73\x8a\x40\x91\xa3\x24\xe6\xf7\xa0\x8f\xea\x17\x7c\xcd\x3b\xba\x0f\x84\xc3\x9c\x6d\x98\x99\x5d\x72\x81\x28\xda\x14\x95\xe8\x89\xbb\xde\x72\xf1\x6a\x02\x4d\x5c\x62\x13\xc9\xbf\xae\x4b\x5a\x42\xbc\x6e\xa3\x70\x51\xea\x14\x17\xf6\x0b\x14\x49\x5c\x69\x1d\x05\x35\x14\x29\x2c\xd4\x22\xc9\xa9\x5e\x34\x21\xc4\xdd\x68\x9f\x3f\x81\x29\x91\x76\xb7\x36\x48\xcf\xfd\x6e\xc1\xba\x5a\xbf\x36\xa5\xe3\xb4\x35\x9a\x4e\xa0\xc0\x74\x7b\xfa\xc8\x89\xd5\x58\x4e\x9a\xba\x35\xd0\x92\xe9\xb7\x7c\x7d\xc4\x7e\x4f\x1d\xa1\x6d\x45\x92\x75\xb8\xd7\x2a\x12\xf4\xbe\x7d\xc2\x75\x5d\x26\x9b\xa7\x59\x8f\x85\xb1\x2f\xcc\xc3\x2e\x86\x55\x84\x17\xcc\x99\x67\x11\x1c\x8f\x25\x57\x2d\xd8\x9d\x0e\x49\xdc\xc1\x26\x27\x23\xfe\x27\x1e\x13\x0f\x1a\xd0\x64\x6b\xfa\xcb\x34\x60\x44\x4d\xc9\x54\x74\xce\xc7\x2c\x70\x28\x1c\x69\x4d\xb9\x82\x56\xd5\xb2\x35\xf8\x2f\x4f\x89\x6c\x61\x37\xd9\x06\x84\x25\x16\x50\x52\x99\xa0\x6b\xd5\x88\xec\x89\x57\x79\xde\x8f\x42\x7d\xd0\x36\xdf\xf3\xbd\xb0\x05\x34\x3d\x2f\xc8\x5f\x19\xe3\x5b\xbb\xfb\x9c\x59\x99\xa3\xc2\xce\xab\x3e\xca\x47\x7a\x94\xe0\xa8\xcf\x47\xc3\x24\xaa\xd9\x3d\x5a\x96\x4b\xe7\x96\xd0\x6b\x7f\x92\x37\xdb\x2d\x0b\x17\x4d\x53\x6f\x12\xea\x1a\xb6\x79\xa7\x8e\x06\x7a\x23\x8c\x23\xe6\x64\x94\x17\x02\xa3\x8b\x62\x71\x8b\x7a\xa0\x89\x9d\x87\x8a\x85\xa5\x34\x27\x87\x06\xa2\x1e\x8e\x47\x4c\xa0\x47\xed\x25\xba\xa9\xf8\x76\x51\x54\x26\x70\x53\x4f\xbc\x8f\x56\x46\x40\xb9\xd2\xa0\x8d\xfd\x8f\xfa\x0a\x19\x60\xee\x83\xcb\x49\xee\x4f\xdd\x2a\xa8\x95\x7b\xd0\x1a\xa0\x9a\xc6\x51\xcc\xcd\xaa\xf4\xfd\xf6\xe5\x86\xef\x21\xe2\xe4\xa3\x8f\xa7\xaf\x7f\x14\x62\xa3\x45\x2e\xcd\x05\x70\xb9\x8e\x41\x2d\xfc\x52\xb0\xdd\x18\x22\x11\x4c\x1e\x3d\xfa\x2a\x7c\x34\xfe\x7a\x4f\x7f\x13\xed\xf3\x9e\x9b\x55\x89\xc9\xf4\x74\x34\x2f\xca\x8a\x0d\x06\xbf\x89\x20\x40\xd7\xa9\x58\x3d\x2b\xf9\x82\xe7\x22\x4d\xb2\x0a\xa5\xf9\xd1\x6f\x82\x9e\xc2\x8b\xec\x37\x01\xd9\x74\x63\xad\xa8\x81\xbb\xc0\xb4\xb4\x54\xba\x37\x59\x74\x5d\xcb\x92\x07\xbc\xa1\xd4\x32\x6c\x46\x03\x6b\xd9\x01\x75\x81\x48\xa0\xda\x27\x79\x73\xc0\xd7\xc4\xda\xa6\x9b\x83\xb2\x8b\x2b\xe9\x4b\xde\x55\x1c\xec\x2d\x29\x1f\x6d\x92\xaa\xba\x2e\xca\x05\xa1\xf0\xb6\xe2\x31\x7d\xde\xd6\x25\x4a\xe6\x95\x79\x09\x86\x97\xd5\x19\x8d\x40\x11\x04\xd5\xa8\xad\x32\xed\x4b\xc3\xee\x15\x59\xb9\xf7\xa9\x75\x5d\xc4\xe8\xe3\xb1\x1e\x2a\xbe\x38\x06\x34\xd5\x59\x5d\xe3\xde\x74\x86\x9a\x63\x8b\x08\x2d\x48\xd5\x95\xaf\x13\x0a\x36\xdc\xd3\x5e\xab\x65\x7f\xea\x00\x1f\x5d\xb2\x6a\x54\xe4\x59\x91\x2c\xe0\x02\xb8\x18\xb8\x02\x81\x14\xae\xb4\x14\x0a\xd7\x20\xe2\x01\x6b\x34\x5f\x25\xf9\xa5\x02\x39\xa6\x5a\xf0\x06\x66\xaa\x32\x32\x79\xa8\x59\x22\xe5\x32\xd3\x09\xbb\x55\x69\x36\x26\x4a\xf1\x98\xea\xac\x24\x4c\xb1\x49\xa7\x95\xc7\x31\xc9\x07\x2f\x45\x6c\x92\x66\x75\xdd\x9b\x4d\x1d\xf6\x00\xde\x46\x65\xe5\x09\xad\x51\x83\x27\xa4\xcf\x8a\xc9\xcb\xca\x6f\x44\xb4\xbb\x48\xf3\xa4\xbc\x0d\x5d\xf2\x3e\xdc\xc1\xb9\x50\x33\xe3\x9e\x02\x08\x68\x57\x9d\x8f\x89\xf2\x5c\x30\xfd\x2a\xe5\xd2\xb2\xd5\xbb\xa6\x4f\x05\x36\x9f\xee\xfc\x78\x6d\xef\x47\x6e\x1c\xca\xb0\xb7\xf7\xbd\xe1\x94\xac\x6c\xe5\x89\xe0\xda\x51\xad\x4f\xdb\x20\x82\xa0\xc4\xda\x12\x50\xb6\x40\x8d\x9e\x52\x32\x54\x4a\xbf\xc0\x1b\x1a\x2c\x25\x5d\xa9\xa0\x4b\x46\xb2\x98\x6b\x78\x11\xa5\x76\x98\xef\x3b\x3a\x79\xa8\x07\xec\x1b\x14\x4f\xd3\x38\xfe\x6a\x52\x86\xc6\xb2\x00\x0b\x57\xb3\x53\x8d\x14\x4b\xc2\xf4\xf1\x76\xe3\xfc\xca\x1e\x8d\xaa\x3c\xfa\x0c\xd4\x1d\x60\xd2\xa3\xc6\x19\xe7\x81\x74\x3e\x5f\xf7\xa6\xdf\x1c\xbb\x27\x8d\xa3\x50\x5d\xdb\xc9\xd9\x05\x8e\x42\x59\x6a\x2d\x33\x12\x95\x0c\xe7\x9f\x5f\xc0\x58\x71\x9f\x81\xf5\xd8\x28\x42\xb9\xf6\x8f\x68\x76\x97\x65\xe8\x9a\x14\xd5\x62\x78\x5b\xed\xaa\xbe\x92\x1d\x46\xbb\xdd\xaa\xe2\x9e\x48\x5e\xd1\xeb\x4e\x47\xae\x0f\xd4\xa2\x5c\x6d\xe0\x04\xa7\x49\xbf\xb8\x1e\x9e\xa7\x42\x94\x55\x3f\xe5\x06\x56\x5a\x72\x21\xe8\xb1\xca\xfb\x04\x11\xed\x05\xe4\xbf\xac\x90\xbd\xc1\x2e\x69\xa7\x4f\xc0\x43\x93\xe1\x99\xba\xa7\x55\x39\x0f\x81\xc4\xef\xc9\xa8\xc8\x31\x92\x8b\xeb\x48\x8b\x5d\xcd\xcd\x5b\x18\x4b\x48\xc9\xf6\x28\x1b\xf9\x20\x28\xb0\x47\x90\x94\x38\xf8\xf5\xf8\x6b\xd8\x0b\xd5\xad\x0a\xb7\xba\xe2\xc9\xa2\x11\xb1\x46\x48\x66\xb1\x67\x76\xe7\x41\x90\x63\xcf\xcc\xf2\x93\x60\xf1\x8c\xfe\x20\xd8\x09\x66\xe4\x2c\xc2\x11\x0b\xea\x07\xa4\x3e\x8b\x94\x7d\xa5\x37\x71\xa5\x68\xb3\x09\xd1\x5c\x9f\x93\xaa\xa3\xef\x8d\x39\x36\xed\x62\x8a\x7c\x12\xca\xd6\x1a\x04\x2d\xe5\x9c\x30\x44\xe7\x4a\x31\xde\xe0\xa4\x39\x18\xa2\xf0\xde\x09\x24\xeb\x80\xd3\xf1\x0d\x6a\x01\xcb\xb4\x70\xb8\x54\x8c\xb3\x11\x64\x0d\x02\xfc\x83\x75\xc2\xdf\x96\x19\x89\xd0\xb6\xcc\x50\x5f\x24\x07\xad\xfa\x86\xd3\x0c\xfe\xbf\x7b\x9a\xe1\x2a\xd5\x47\x0e\x48\xfe\x2a\x47\xe1\xaa\xae\x91\xfa\x0e\x18\xc8\x86\x91\x8b\x31\xc9\x31\xed\x37\x7d\x2a\x39\xd6\x66\x0a\x89\x5a\x09\x98\x84\xad\x14\x5a\x45\x3c\xae\x66\x80\x68\x68\x4f\x2c\x7e\x50\x27\x16\xc3\x82\x84\xad\x8e\x82\x0e\xf2\x0e\x46\x4c\x87\x99\xb3\x0c\x9d\x13\x6c\x1a\x0b\x58\x9c\x4e\x5d\xa6\x17\x9e\xb2\x5e\x98\xb1\xee\x79\x70\xe2\xac\x5b\x8b\x21\x3a\xba\x4e\xaa\xa3\xbc\x10\x47\x72\x0a\xc9\x1e\xa3\x49\x3c\x9e\xed\x69\xb3\x37\x98\x92\xa1\x69\xca\x72\x30\xda\x8c\x8b\x46\xc9\x09\xb3\x1e\x9d\x7b\x5a\xf6\x45\x5c\xb5\xe4\x25\x8d\xc0\x1f\xcd\x45\xd3\xc0\x05\x09\xa1\xbc\x94\x72\xa5\xbc\x6a\x77\xb8\x68\xf5\xa5\x9c\xc3\xdb\x6a\x85\x0b\x02\xa8\x72\x97\x10\x11\x3d\xc5\x09\x48\x62\x09\x4b\x3d\xd8\x07\x43\x85\x94\xd3\x94\x3a\xdf\xfc\xf1\x03\x44\xc5\x80\xe6\x76\x02\x8f\xb1\x64\x94\xae\x37\x4a\x1c\x83\x89\xd5\xf3\x12\x96\x93\x50\x8a\x0f\xce\x0b\x22\x95\xe2\x94\xcc\xc3\xd0\x63\x39\x07\x9f\x3c\x3e\x51\x3f\xfe\x0d\xa2\x8f\x14\x7d\xb5\x82\x84\x66\xcd\xf7\x58\x2e\x32\x50\xa7\x41\x19\xfd\x3a\x8d\x1e\x9b\xe9\x28\x9e\x85\xb8\xdf\x9b\x5b\xdb\xca\x49\xda\x2d\xea\x1a\xf7\x7d\x7c\x84\x71\xc9\xb0\xf8\xd2\x4f\x26\xed\xf3\xe1\x8b\xa4\xe2\x32\x19\x0e\x84\x13\x6b\x16\xae\xcd\xa5\xba\xd4\xaf\x94\xe2\x25\x4b\x08\x4d\xd9\x20\x0f\x82\x78\x46\x71\xc1\xde\x2b\x93\x0a\x4e\x48\x14\x8b\x56\x0d\x45\x3c\x99\x91\x59\x88\x0b\x76\xad\x02\xe0\x0a\x9a\x42\x80\xdc\xd4\x22\xd0\xdd\xe1\x94\x38\x0a\x7d\x37\x5a\xf3\xf2\x92\xe3\x78\x46\x0b\x5f\x5e\x23\xc4\x19\xb2\x68\xbd\x02\xb0\x53\x07\xa3\xad\xd0\x44\x45\xfb\x96\x12\x82\xe7\xe5\xef\x90\x22\x94\x97\x58\xc9\x2e\xe5\xe2\x54\x7a\x6e\x29\xa1\x4b\x89\x5e\xdd\x8d\xa9\xbc\x07\x0b\x65\x3d\x14\x5a\xd3\x13\x8a\xbe\xd0\xb5\x0a\x22\x10\xbd\x7d\xf3\xfe\x83\x5c\x82\x26\xf0\xcc\x38\x08\x7a\x34\x34\x45\x5d\xb7\x95\x34\xca\x5c\x4b\x2b\x50\x49\x3b\x46\x30\x27\xbb\xd4\x2d\x51\xb9\x33\x89\x75\x86\xcb\x48\x6e\xa5\x8b\xf4\xea\x89\x0d\xac\x86\xbd\x69\x08\x01\x14\x96\x2a\x7e\xbe\x12\xb1\xcd\xc2\xce\x83\xa0\xa9\x4c\x4a\xba\x62\x74\x23\x02\x62\x5a\xd7\x9e\x56\x1e\xd8\x6b\x41\xf9\x4c\xc5\x09\xd7\x6a\x0d\xab\x5f\x73\xa7\xe8\xd4\x29\xff\x68\x4b\x73\xe8\xeb\x20\x1b\xda\x49\xea\x8e\xd3\x7a\x50\x11\xdb\x21\x1d\x9b\x1a\x02\x30\x3e\xe5\x36\x10\xa3\x2f\x92\xeb\x58\x86\x8b\xbe\x77\xef\x46\x97\x25\xdf\x60\x1b\x6d\xb3\xa1\x74\xb1\xe1\xf7\x18\x13\x06\x0b\xc5\x2c\x7b\x7a\xa7\x85\x77\x70\x2e\x79\x03\x97\x87\x23\x00\xd9\x73\x16\x87\xbb\xac\x41\x0e\x01\xf1\xfd\x4e\x72\x7c\x80\xef\x83\x24\x5b\x9f\xce\xe5\xec\xca\x1c\x40\xa0\x07\x59\x6f\x10\xfd\x11\xa1\x15\x33\x60\xf5\x58\x85\xc5\xd5\x45\x83\xc2\x95\xce\x5d\x42\x06\xe0\x7e\x14\x37\x70\x16\xb3\xba\x46\xcb\xf4\x46\x45\x71\xcb\x48\x10\xe0\x74\x38\xf7\x37\xe8\xad\x28\xc0\xa3\x32\xc2\x09\xc3\x25\xdb\xda\x46\x60\x42\x00\x9e\xbf\x60\x25\xc0\xf9\x91\xb0\x89\xf2\x9b\x92\xba\x1e\xd3\xc2\x4f\x9a\x2b\x58\x66\x15\x9b\x19\x0b\x66\xe1\x19\xf2\x46\x8c\x5e\xb9\xda\x75\x74\x64\x31\x82\x00\xa6\x78\x23\x7f\xd5\xdd\x71\x25\xff\x0e\x13\x97\x45\xd6\x0e\x79\xe4\x85\xbe\x3f\xae\xe0\x47\xee\xad\x68\x5b\x49\xa2\x9b\xe6\x47\x22\x12\x23\xb8\x31\xf5\x6e\x48\xb8\x85\xee\xd9\x28\x90\x27\x4f\x5b\x59\xb4\xc7\x12\x24\x9c\x43\x81\x4c\x1c\xef\x0d\xaa\xbb\x5e\x1d\x1c\x4c\x5f\x55\xec\xc8\x4e\x16\x13\xb1\x15\xe2\x68\x4c\x5d\x34\x88\x56\xb8\x85\x32\x2a\x0f\x69\x85\x22\x29\xb7\x1f\x02\x5a\xa4\x39\x6b\xb9\x43\xfa\x0e\x90\x74\x27\x8a\x4d\x08\xbd\x3a\xcc\x47\x9b\xe4\x92\x7f\x52\xad\xa2\xb2\xef\x42\xd5\x93\xfa\xc9\x47\xf5\x64\x4f\x42\x78\x69\xac\xb2\x8c\xf7\x26\x0e\x00\xdd\xf4\x80\xf4\x4b\x99\x50\x2b\x58\x4d\x54\x50\xff\xeb\x68\xc1\x9a\x85\x49\x8e\xce\x4d\x47\x35\x73\x4b\x7f\x95\x90\x7b\xbe\xd5\x9d\xb0\x6a\x4c\x3f\xbb\x2a\x3a\x9d\x40\xb9\x4c\x81\xc7\x6f\x41\xa7\x58\xd7\xf9\x68\xa1\x1f\xea\xbd\x6b\xaa\x22\xfb\x32\x96\x03\xa7\x50\xd7\xea\xba\x95\x0b\xa2\x3d\xd8\xc5\xda\xb3\xae\x95\x8e\xd8\x0b\xe9\xc4\x83\x80\x2b\x98\x97\x0e\x0a\x01\x2e\x80\x06\xd8\x86\xc3\x02\xeb\xc0\xa9\x7f\x28\x36\x16\x48\x9d\xd0\x42\x0d\x52\x3b\xd3\x6b\xbe\x14\x2e\x97\x39\x76\x71\xe3\x7d\x5c\xc0\x5f\xdb\xc5\x0a\x0d\xeb\x83\xa4\xd3\x00\x3e\xe0\xc6\xff\x58\xd5\xd0\xce\x0a\x50\xa1\xca\xdd\x6f\x4f\xfd\xae\xfc\x52\xf7\x93\xa6\x7a\xbd\x31\x1a\xb2\x8f\xbe\xa4\x57\x1b\xef\x18\x32\x5d\xd7\x09\x6f\x46\x0f\xde\x39\x58\xb8\x10\x79\x73\x19\x51\x0b\x23\xa7\xd2\xf5\xec\x3f\xe4\x8b\xd8\xc8\x23\x77\x83\x69\x27\x86\x6e\x79\x1f\x6a\xa7\xf3\xb2\x97\xf3\xfc\x0a\x73\x12\xa5\x8c\x87\xdf\xb5\xa7\x41\x2a\x05\x19\xb7\x4a\x7d\xac\x62\x7b\xe2\x1f\xa5\xb1\x98\x85\x3c\x2e\x67\xd3\x34\x4a\x2d\x1e\x1e\xce\xa3\xd4\x5f\xae\x61\x41\xf3\xa8\x08\x53\x7f\x71\x13\x78\x8d\x15\x7b\x15\xb6\xb8\x43\xd2\xfc\x28\xc6\x31\x52\x5b\x37\xec\x1d\x7f\x81\x51\x0c\x30\xb4\x9b\xf4\x86\x67\x6f\x0d\x74\xaf\x9f\x3f\x6f\x00\x16\x1b\x60\x75\x41\xa8\x01\xc0\xcf\x49\x04\xb3\xdf\x6d\x30\xb1\x98\x01\x40\x6c\x98\x2b\x38\x12\x3b\xa0\x1a\x95\xdc\x82\x28\xc3\x4c\x0f\x35\xf2\x4b\x4f\xa4\x63\xf5\x96\x45\x94\x05\x5e\x1f\x0d\xb9\xd1\xe3\x84\x82\x22\x14\xa2\x62\x2b\x20\xd9\x2f\x00\xcc\x24\x60\x98\x4b\x6f\x98\x9d\x06\x9a\xb5\xbb\x4f\xf2\xed\x5e\x48\x69\xc7\xea\x17\x72\xab\xce\xeb\x1a\xc3\x99\x7f\x51\xd7\x03\x25\x4c\x19\x20\xba\xd0\x60\x08\x5b\x16\xb5\x33\x85\x24\xf1\xb4\x53\xc8\xec\x3c\x92\x3f\x05\x1b\x17\xb7\x69\xab\x0f\x21\x91\x88\xed\xa7\xce\x42\x61\x49\x57\x9b\x86\xc5\x68\x0e\x64\x14\xb2\x7d\x07\x6c\x8e\x99\x8d\x11\x4e\x59\x27\x3f\xb5\xc0\x6e\x02\x48\x23\x08\xac\x45\x96\xc9\xf7\x69\xda\xb8\x33\x19\x0c\xbc\xb2\xca\xd0\xbc\x73\x95\x13\xe3\xdd\x22\x3b\x28\x52\xcb\x5e\x7e\x73\x45\x2c\x48\x24\x74\x01\xad\x80\xe9\xa4\x49\x54\xe8\x17\x68\xa2\x62\x14\xbb\x39\x82\x2e\xb2\x6d\x79\x04\xee\xc5\x47\xda\xe7\xf8\xc8\x38\x1b\x1f\x95\xbc\x4a\xef\xf8\x91\x6a\xe8\xd1\x3c\x4b\xe7\x9f\x8f\x16\x17\x99\xba\x58\x17\xdb\x8a\x2f\x8a\xeb\x5c\x5d\x6d\x37\xea\x57\x0a\x28\xea\xaa\xb8\xe2\xa5\xbe\xda\x0a\x75\xc1\x73\x61\xd2\x32\x9e\x5c\xf1\x23\xa5\x92\x3d\x52\x2e\xa1\x47\xca\x95\xf4\xe8\x33\xbf\x85\x72\x3f\xf3\xdb\x4d\xc9\xab\x4a\x5e\x6c\x37\x47\xda\xc4\x7e\xcd\xf3\x2d\xf2\xcc\x48\xfe\x9a\xf7\xf5\x4e\xcb\x3b\x01\x2f\xc7\x91\x63\x88\x95\xd2\x8b\x1a\x60\x56\x73\x30\x2f\xcc\x52\xf7\xd8\x9e\x95\xfc\xb8\x7b\x7c\xcb\xdd\xd7\xca\xa5\xea\x3e\x18\x8b\xba\xe6\x5d\x67\xf5\x8b\xd4\x57\xff\x35\x0f\xf8\x4d\xfb\xb8\x76\x75\xa7\x39\x9c\x00\x76\x5e\x69\xbd\xb0\x5c\xda\x37\xc8\x9e\x9a\xf8\x11\x7f\x01\x53\xa1\xe4\x02\x0d\x37\xb1\xcd\x0f\xbc\x65\xdf\x01\x50\xcc\x76\x84\x2b\xaf\x7a\xf4\xf0\x21\xd2\x9d\x29\x13\x04\x05\xab\xed\x87\x88\xe6\xba\x0b\x36\x65\x71\xd3\x0e\xe3\x6d\x1d\xaa\x80\xcb\xe9\xe8\xcc\x94\xc4\xcf\x63\x31\xd3\x48\x0e\xb9\xe4\x94\x3d\xa0\x47\x36\x57\x6c\xab\x93\x02\x1f\x11\x29\x7f\x77\xf7\x5b\x6e\x24\x37\xed\x4e\x5e\x1a\x8f\x85\x76\x09\x10\xa2\x6f\x74\xb9\x4d\x17\x8c\xfb\x3f\x75\x7d\x07\xbf\xc3\x21\x2d\x24\x5f\xbc\x2a\xb2\xc5\x3b\x9e\x2c\x6e\x9b\x11\x67\x20\x20\x6f\xb2\xb8\xfd\x3d\x49\xc5\x70\x18\xea\x3b\xc0\xce\x00\x93\x06\xf0\xa6\x64\x0d\xdf\x4a\xa3\x25\xf9\xd7\xfb\x37\x3f\x33\xcf\x31\xe7\xce\x3a\x7d\xb2\x17\xf0\xee\x4b\x5d\x11\xbb\x84\x5b\x15\xa1\x83\x5d\xd1\xbb\xd1\x3c\x59\xf3\xec\x59\x52\x71\xf6\x13\xbd\x53\x4a\xec\x6b\x78\xff\xda\xfa\xb2\xc3\x2b\x3f\x6f\xd7\xbc\x4c\xe7\x3d\x20\x1b\xea\x2d\x77\x6c\x8d\xfd\x98\x62\x4d\x63\x67\x12\x04\x83\xb4\xfa\x39\xf9\x19\x73\x1f\xfc\x9d\x13\xb2\x77\xdb\x32\x2e\x7b\x06\xe1\x6e\x6f\x46\x81\xc6\x33\x42\x20\xfe\x0a\xbf\xd9\x14\xa5\xa8\x58\xa9\x58\xfd\x9f\x04\xcb\x47\x7f\xfc\xb2\xe5\xe5\x2d\xfd\x45\x5e\x3f\x70\x70\x35\x79\xf1\xac\xc8\x97\x59\x3a\xef\x8f\x37\x34\x7a\x20\x19\x23\x40\xae\x7a\xc0\x7e\x11\x84\xc2\x11\x8f\x2a\xcb\x3e\xd1\xb7\x3f\x09\x42\xef\x20\x70\x8b\x4b\x93\xaf\xdd\xc9\xe4\x46\x60\x77\xbd\x0a\xd0\xb6\xe2\x47\xb2\x13\xe6\x02\x29\xb5\x0b\xcb\xb1\xe4\x35\x59\x3e\xca\x21\xca\x13\xc3\x39\x9e\x8c\xbf\x21\x34\xc7\x13\xf9\xe7\xab\x6f\x08\xa1\x09\x3c\x4e\x61\x9f\xc3\xff\xfc\x46\x0a\x9f\x32\xa1\x22\x34\x63\x39\xfe\xea\x91\x94\x71\x7b\x17\x36\x1f\x55\xdb\x8b\x4a\x94\x78\x4c\x0d\x40\x39\x91\x9d\xbf\xa7\x1b\x76\x20\x9a\x95\x31\x73\xb2\x86\xa7\x05\x13\x86\x76\x46\x88\x48\xe1\x22\x65\x97\x18\x36\x5d\x04\xd6\x7e\x32\x69\xce\x4e\xa5\x8c\x9d\xb1\x31\xdd\xb2\xb9\x09\x77\x95\x3d\xde\x4e\xb3\xe1\x50\xcd\x8e\x0d\x1b\x4c\xe8\x92\xcd\xe3\x6c\x36\x2a\xe5\x46\x2a\x57\xeb\xd2\xf0\x63\xa4\x64\x3b\x48\x0d\x97\x14\x1c\x14\xaa\x70\xb7\xa7\xdb\x32\x0d\xc5\xde\xc9\x1f\xb2\x9c\x05\xbb\xc4\xcb\xd1\x26\x11\x2b\x42\x2f\xd8\x6e\x4f\xd7\x0e\x0f\xd5\x28\xbf\xe8\xc2\x1a\xde\x5f\xb1\xf1\xf4\xea\xf1\x7a\x7a\x65\xda\xf1\x94\x2d\xe2\xab\x19\xbd\x66\x69\x7c\x05\x2e\xb0\xca\x68\xf1\x29\xd9\x5d\x80\x5d\x35\x4b\xb5\x9a\xea\x4a\x39\x3e\x2f\x78\xdb\x31\xde\xc4\x75\x3e\x41\x9e\xd5\xa0\x9d\xb3\xd7\x64\xb7\x61\x83\xb1\x7e\x22\x6b\xbc\x63\x2b\xa5\xc9\x7b\x0a\x9a\xf5\xbb\x20\x18\x54\x64\x77\x2c\x69\xe1\xad\xe5\x2d\xee\xe2\xc9\x8c\xd4\x75\x82\x09\x1e\x4c\x74\x44\x09\xd6\xad\x1b\x5f\x93\xe9\x45\x2c\x33\xcf\xd8\xf9\xde\xd8\x58\x3e\x1d\xb4\xeb\x05\x43\xc6\x0d\xd9\xe5\x9d\x6e\xbd\x80\x5e\x45\x27\x68\x98\x5a\x7d\xdc\x95\xf7\x49\x7b\x53\xc2\xde\xc5\x18\x2b\xd5\xa1\xe4\x9e\x2e\x59\x27\x28\xd8\x56\x92\xed\x13\xe4\x82\x81\x4d\x4d\x90\x74\x37\x6b\x00\x93\x65\xac\xb0\x58\x00\x9a\xb3\x3d\xa5\x12\x76\x29\xa7\x7f\xc5\x2e\x71\x0a\x9d\x04\x53\x2b\xf1\x0e\x1b\xae\x70\x4a\x0b\x15\xf4\x74\x0b\xfa\x6c\x8a\x46\x26\x22\xfb\x9c\x55\x86\x10\x27\xfe\xe0\xd8\x57\xe5\xad\xe2\x09\x91\xfc\x72\x32\x9c\xd3\x42\x45\x24\xd2\xfe\xc2\xee\x75\xba\x61\xf1\x8c\x2e\xd9\x98\x2e\x58\x66\x23\xd5\x3d\x5e\x4c\x97\x66\x02\xad\x58\x16\x2f\x67\x53\x34\x1a\x81\xc9\x63\xb4\x51\xc7\x46\x21\x1a\x81\x29\x7f\x10\x6c\x94\x0e\x7e\x65\x6d\xf2\xae\x64\xfd\xc3\x8d\x6b\x99\xac\x9d\x2e\x7a\xd7\xac\xcc\x79\x09\x2c\x40\xd3\xe9\xde\xc8\x4a\x2b\xa3\x14\xb6\xee\xf6\x91\x88\x65\xaf\xce\x42\x30\x8b\x72\xe3\x48\x57\xec\xe4\x3f\x21\x1e\x0d\xc9\x09\xbd\xe8\xa3\x75\x2b\xe3\xe4\x2f\xd7\x50\x5f\x5b\xf4\xd4\xe1\xb4\x9a\x17\x25\x0f\xad\xf0\x14\x8d\xc3\x4b\xcc\xd5\x1a\x1c\x95\x7c\xb1\x9d\xf3\x76\x7c\x00\x33\x19\x86\xec\x6b\x3a\xe8\xd6\x0d\xc3\xcb\xf7\x92\xc5\xbe\x90\x7f\xf8\x90\x3d\x0a\xfb\xf2\x3d\x74\x19\xf9\x90\x7d\x15\xf2\x63\xf6\x4d\xc8\x87\x6c\x42\xf9\x9e\xd0\x31\xa1\xb0\x7e\x42\xb1\xdf\xd3\xd3\xbe\x6f\xe4\xd0\x8f\x6b\xa2\x02\x93\x1d\x68\xe4\x08\xbe\xef\xb1\x50\xbf\xd1\x24\xd4\x29\x4f\x4c\xca\xb1\x4c\x82\x9a\x8e\x85\xfa\x05\xf2\x7e\xd9\x5f\xa3\x39\xc4\x3a\xc1\xff\x39\x3b\x19\xd6\x67\x27\xc3\x07\xe4\xe4\x92\x22\x44\xcc\xac\x87\xe1\xb9\x3a\x40\xb3\x87\x58\x44\x28\x42\x43\x08\x2c\xb2\xa7\xb7\x2c\x46\xdb\x32\x45\x14\xc9\xfe\x46\x33\xfa\x94\x29\x63\xc6\x51\x52\x55\xe9\x65\x5e\xd7\x7e\x23\x1c\x5e\xf4\x64\x2a\x1e\xb7\x59\x2d\xc0\x83\xd1\x13\xc9\x3e\x8b\xc5\xcc\x42\x8e\x2a\x1c\x4e\xa2\x2b\x70\x48\xe9\xab\xa4\x7a\x73\x9d\x6b\xf0\xe4\x5b\x03\x97\x0d\xa1\xa7\x40\xe6\xcd\x01\x30\xcf\x9a\xe7\xd1\xeb\xbe\x9e\x79\x0a\x38\x61\x2e\x46\x8e\x36\x72\xe6\xa3\x55\x5a\x89\xa2\x34\xc6\xc0\x9f\xf9\x6d\x3b\x0d\xe2\x91\xfb\x09\xa3\xcf\xfc\x16\x60\x18\x53\x91\x26\x19\x02\x93\xc8\xde\x38\x28\xf1\x8c\x96\xec\x1a\x83\xef\xd8\x60\x42\x53\x9f\x9f\x30\xc8\x5f\xbb\x4b\x2e\x8e\x4c\xab\x1c\x9f\x51\x82\x55\xec\x91\x28\x93\x5c\xc9\xcd\x69\x7e\xe9\x9e\x16\x7b\x7a\x5e\xe4\x1f\xec\x43\xa3\x7f\xf7\xb5\x34\xaa\x4a\x4c\xf6\x34\x83\x28\x42\x0d\xc0\xe6\xdc\x44\x99\x9c\xaa\x38\x08\x3e\xa3\xa3\x5a\x2c\xf0\xce\xb4\x2a\x2c\x69\x02\x4f\x43\xf4\xf6\xcd\x5b\xf9\xbd\xee\x80\xad\x13\x37\x09\x6d\x8a\x0d\xf4\x12\xa2\x05\xf1\xc1\x65\x78\x6f\x60\xa3\x66\xf6\x9c\xe5\xdd\x10\x24\xde\xec\x96\x72\x37\x68\x81\x68\x9e\x5c\xa5\x4d\x5e\x5f\x1c\x92\xdd\x9f\x4c\xbc\x88\xa9\x6e\xe2\x4d\x66\x91\x7f\x23\x77\xfc\x8a\x25\x7a\x1a\xcc\x99\xf5\xaf\xa3\x19\xb3\x6f\xcf\x83\x60\x3e\xad\x18\xcc\xa5\x8a\xee\xe4\x64\x71\x81\x96\x20\xd6\x2c\x18\xd8\x14\x75\x9d\x45\x6e\xd2\xe8\x82\xc0\x64\x07\x57\x46\xca\xf1\xa6\x99\x1c\x8b\xd6\x53\x6d\x81\xb3\x91\xfd\x66\xc6\x21\xce\x22\xa4\xcb\x42\x21\x52\x0b\x10\xcd\x20\x54\xa8\x9d\x65\x63\x18\xd0\x2d\xcb\xf9\xf5\xd1\x5b\xed\xfb\xda\xd7\x95\x29\x93\x04\xdb\x92\xf1\xd1\xb2\x28\x5f\x34\x15\xdb\x5e\xb7\xf7\x4f\x85\x5f\xdf\xff\x88\x54\xd8\xcb\xed\x7e\xbf\xc7\x03\xdc\x0b\x1e\x73\xad\x83\xf0\x0d\xd4\x85\xd5\x3a\x74\x53\x9a\x87\x8c\x24\x52\x8f\xbb\xa6\x12\x5d\xa1\xb8\x77\x7c\xc7\xfe\xf8\x8e\x67\x72\xeb\xd5\xe8\x55\xf1\x4e\x12\x33\x88\xe1\xc2\x69\xc5\x93\x72\xbe\x0a\x11\xda\xcf\x20\xa4\xd1\xfd\xcb\x32\x07\x98\x84\xf6\xa4\x6f\x09\xb6\x26\x42\xfb\xfd\x79\xf4\xe0\x43\xd8\xdb\x23\x9e\x8b\x32\xe5\x95\x57\x91\x5a\xff\x40\xee\x3d\x95\xab\x4a\x85\x39\xea\xd1\x0a\x85\xdd\x60\x26\x91\x5f\x93\xa7\xd2\x4a\x7d\x96\xa8\x02\xf6\x46\x4e\x73\xc9\x12\x99\x19\xce\x18\x9b\x4b\x2e\x65\x2e\x49\x35\xd5\x34\xc2\x75\x56\x65\x3a\x2b\xdb\x13\x5a\x5a\x4c\x50\xea\xcf\xef\xff\x27\x2a\x07\x7d\x48\x6f\xb5\x54\x7e\x2a\xe3\x7b\x39\xdf\x08\x99\xde\x8d\x0c\x19\x98\xe6\xa3\x05\x16\x14\x25\xa8\x11\xd9\x49\x77\xd0\xaf\x00\x6b\xab\x72\x5c\xf4\xe6\xf8\xe4\xe5\x98\xf7\xe6\xf8\x6c\x43\xad\xfd\xbf\x7f\x07\x6c\x39\xff\x99\x2a\x75\x54\x17\x5b\x11\x27\xc2\x4a\x00\x25\x79\xc2\xc6\x75\xfd\x45\x35\x73\x55\x73\x6e\xc2\xed\x38\x32\xe2\xe2\xcd\x7c\x70\xf8\x46\x98\x1f\xa5\x79\x25\x92\x7c\x0e\x0a\x11\xa2\xcd\x09\x25\x85\xfa\x70\xbb\xe1\x2f\x54\x3c\xb7\x67\x49\x6e\xac\x5d\x8e\x92\x23\x88\xb6\x7e\x94\x54\x47\x89\x35\x67\xf5\xa3\xd9\xdc\xb8\xd2\xb9\x57\xdc\x3b\xbe\xe4\x25\xcf\xe7\xa6\x4c\xb1\x4a\xab\xa3\x55\x52\xe5\xff\x4b\x1c\x5d\x70\x9e\x1f\xe9\x2d\x3b\xad\xf8\xe2\xe8\xf8\xa8\xda\x6e\x78\x89\x49\x23\x87\xb1\xb6\x31\xb1\xd5\x45\x23\x88\x9a\x53\xea\x20\xdb\x2c\x2f\x39\xe2\xa1\x70\x8d\xfc\xd9\x36\xb2\x37\xb3\xc5\x62\x11\xfd\x1d\xf2\x5e\xb6\xee\x88\xdf\x80\x4e\x51\x96\xb7\xde\x56\xe2\x88\xa7\x62\xc5\xcb\xa3\x0b\x0e\x71\x1a\x8e\x8a\xd2\xeb\x21\x0a\xf6\x42\x68\x68\x6a\x20\x53\xee\x46\xd2\xcc\x5a\x45\x64\xb1\xc2\x35\x31\x0f\xe9\x6e\x5e\xe4\x95\x28\xb7\x73\x51\x94\xe1\x4e\x87\xbf\xa2\x3c\xdf\xae\x79\x99\x5c\x64\x3c\x1c\x4c\xe8\x75\xa9\xb0\x3f\x74\x18\x95\x65\x7a\xb9\xd5\xcf\x20\x5e\xb8\x08\x02\xac\xeb\xa8\xb8\x78\x6b\x8a\x7e\xb3\x8c\x7a\x53\x15\x66\x17\x1f\x9d\x9f\x43\x2b\xce\xcf\x99\x20\x20\xb0\xbe\xee\x65\xa5\xe6\x98\x60\xe1\xed\x57\xcf\x8a\xbc\x92\x8d\x33\x08\xd4\xa0\x63\xe2\x43\x64\x1f\x20\x9a\x8f\xde\x96\xc5\x55\xba\xe8\xc9\x64\x1e\x20\x9a\xef\xe9\x0b\xf6\x1a\xa3\xd7\x9a\xd4\x23\x42\xdf\xf7\x02\xb8\x82\xd5\x4a\xc9\x73\x1b\x12\x6a\xd4\x8e\xcb\xf0\xc2\xd6\xad\x36\xf1\xde\xad\x34\x02\x70\xe5\xee\xcb\x7f\xda\x8d\x5f\xf2\xf6\x7f\x36\x9a\x60\x67\x94\xc0\x56\xdf\x38\xfd\x60\xbc\x43\xec\x9a\x2e\x3a\x3b\x23\x4d\x99\x89\x9a\x4f\x13\x36\x9e\x26\x8f\x8b\x69\x32\x1c\x92\x34\x4e\x66\x1e\x01\x4a\xec\x81\x74\xce\x4a\x76\xa3\x0f\xaf\x61\xad\x6b\x65\x17\xa7\x3a\x50\xb6\x96\x54\x53\x42\xe4\x0e\x00\xfb\x10\xdb\x99\x98\x3a\xea\x30\x5b\xdd\x60\x42\x4b\xbe\xac\xc2\xdd\x36\xd7\xec\x27\xc8\xf0\x7b\x7a\x83\x4b\x9a\x5b\x5a\xf5\x33\x18\x76\x50\x9f\xe2\xb8\x32\xba\x46\x60\xca\x5f\xa4\x2c\x36\x95\xe1\x9d\xa6\x36\x7a\x9b\xe6\x07\xb9\xdd\x13\xa8\x65\x5a\x1c\x0b\xb5\xdf\x37\xea\x9a\x1b\xcd\xc6\xf3\x74\xf1\x4c\x32\x5c\x5d\x0d\xc3\xe0\x25\xe6\x86\x64\xf1\x29\x1e\xd3\x6e\x1b\x6c\x8d\x04\x0c\x02\x53\xba\xd3\x3b\x22\x04\x81\x3d\x5c\xe3\xaf\x9b\x45\xe2\x23\x3d\x2b\x48\x6e\x13\x9b\xc7\xb6\x59\xe3\xe1\x6a\xd9\xa3\xfd\x54\xc3\x59\x34\x1b\xd4\x2b\x1c\xe0\x7b\x9a\x72\x5a\x6c\xfb\x8c\xee\xd4\x14\xf3\xab\x97\x83\x4a\xf3\xbe\x81\x10\x23\x33\xd4\x2c\x1f\xa9\x8b\xc6\xc9\xb0\xe6\x46\x8d\x2b\x24\x26\x23\xb1\x6a\x65\x29\x95\x93\xc3\x53\xb0\xe9\x49\x8b\xfc\x65\x99\xac\x9b\x90\xea\x7c\xb4\xcd\xd7\xb2\xad\x7c\x01\xa6\xc9\x5c\x28\xbe\xb9\xbb\x61\xdb\x59\xc9\x1b\xb3\x52\x9f\x27\xe9\xff\xf5\xf7\xc7\xef\x69\x96\xfd\xaa\xaa\x39\x30\x05\x5d\x5f\x4c\xe1\xde\x36\x0a\x6c\x73\x6d\x47\xb4\x7b\xbc\xe4\xf9\x82\x97\xf7\x96\xa9\x5b\x6d\x3a\x5d\x75\xf1\x97\xd0\x1e\x43\xd2\xa8\xa1\xde\x7b\xea\xb6\x1d\xef\x3c\x42\x11\x20\x61\x0c\xfd\xa9\xd8\x63\x59\x9c\xd3\x2f\x4e\xff\x34\x9a\x16\xb9\xeb\x57\x6c\x67\x18\xd5\x3b\xe5\x5e\xf4\x4c\x92\xcb\xef\x93\x8a\x23\xba\xbb\x48\x2a\xae\x15\x7a\x54\x5e\x4b\x9e\x4d\xde\xec\x09\xfd\xdc\x27\x84\x77\x1b\xfe\xec\x20\xd1\x14\xf7\xbc\xf5\xbe\x9d\x39\xbf\x27\xf3\xef\xf4\x1c\x02\x61\xd1\x9c\x72\x37\xf2\xbf\x1f\x26\xb1\xba\x24\x4b\x61\xa9\x25\x89\xbd\xe0\xc1\xf7\x11\xb3\x7b\x47\x1c\x06\x97\xca\xcd\xc5\x6a\x25\x72\xe6\xd1\xaf\x92\xf1\x91\xe9\x55\x80\xbd\xd8\x94\xe9\x3a\x29\x6f\x69\xe2\xed\x47\xb4\x62\x58\x65\x93\x94\xc7\x9b\xc5\x84\xce\x1d\x67\x5d\x45\x68\x91\x5e\xa1\xb0\xa2\x19\x93\x3c\x61\x8c\x4c\x95\x88\x22\x53\x21\xa2\xc8\x54\x87\x28\xd2\x95\x01\x6e\x83\xaa\x4a\x3f\x57\xfa\x20\x5b\x0f\x9a\x11\xba\x65\x30\x87\x74\x3e\xd0\x7a\x25\xf4\x27\x5c\x12\x42\x17\x4c\x8c\x0c\x2b\x4f\x57\x6c\x83\xb7\x74\xa1\x02\x82\xa8\xbe\xb8\x60\x2b\x15\x14\xa8\x82\xc0\x64\xf2\x23\x4e\xd9\x4a\x29\xe9\xe9\xa5\xb9\x32\x98\x97\xec\xd4\xaa\x01\xcb\xf0\x14\x0a\x76\x1a\xaf\xb3\x87\x0f\x4e\x00\x6a\x4a\x96\x7b\xc5\x60\xd4\x2f\xe8\x4e\x4e\xd0\xb5\xdb\x0c\x44\x8f\xee\xa0\x11\x66\x0b\x4b\xde\x64\x4d\x74\x94\xee\x5b\xf8\x34\xf0\x3e\x35\x13\xea\x92\x5e\xd1\xcb\xd6\xd2\x8c\xba\xf3\xee\x33\xdd\xe9\x3e\x0c\xd3\x7d\xe7\x05\x73\x28\x4e\xe8\x53\x96\x46\xdf\x87\x73\x7a\xcd\xd2\xe8\x1c\x77\x9b\x6b\x7b\x3a\x9c\xef\x69\x46\xc2\xec\x30\x19\x78\xd6\x21\x03\x76\x89\xae\xdd\x02\x2d\xf7\x7b\xda\x7d\xf7\x29\xbd\xa6\xb7\x6e\x32\x2b\x95\xbb\xa6\x0e\x6f\xb7\x25\xf7\x28\xc4\xef\x2d\x0a\x61\x3e\x73\x30\x56\x24\xe2\xb9\x24\x11\x2f\x8b\xf9\xb6\x42\x84\x7e\xdf\xcb\x4e\xc9\x71\xce\xfd\x99\x5f\x32\x6f\xee\xd2\x54\xcf\x52\x35\xd7\xbc\xb9\xea\x4f\xbb\xc3\xfd\xf0\xfc\x0b\x58\xb1\xee\x5b\x1f\x15\xa1\x48\x25\x37\x6c\xba\xbc\xa4\x7a\x53\x82\xcf\x09\xb9\x3a\x15\x72\xc3\x93\x1b\x7a\xf2\x56\x92\xfe\x77\x6c\x4c\x3f\xfe\x7f\x8a\x77\xdb\xd3\x72\xe4\x7f\x61\x93\x6a\xeb\x4d\xa9\x5a\x15\xdb\x6c\x01\xcf\xe5\xae\x0b\x06\x17\x72\x6f\x3b\xc0\xcb\x5d\x72\xf1\x9c\x97\xe9\x15\x5f\xc0\xe6\xfc\xb2\x2c\xd6\x6a\xa2\x74\x98\x2b\x1d\x45\x4f\xce\x06\x1b\x5a\x07\xef\xbc\xea\xe4\x94\xa2\x9c\xd8\x53\x9d\x6d\x99\x0e\xf4\x0b\xb4\x64\x8e\x0b\xb2\x24\x06\xdc\x35\x3a\xa9\x41\xd0\x93\x08\x06\x5a\xdb\xd2\xda\xdc\xb4\x6a\xce\xeb\xba\xdc\x43\x50\xc7\x2f\x66\x9a\xde\x0d\x87\x8a\x3d\xb4\x3d\xf4\x77\xf8\x0b\x49\xa7\x8f\x8f\xdf\x05\x01\x96\x73\xe9\xef\xf2\x8d\xbc\xc3\x2f\x2a\x7a\xd3\xe2\x13\x3b\x03\xaa\xd3\x7b\x5b\xbc\x6c\xce\x88\x1e\x2e\xdc\x9f\x3a\x53\x1e\x71\x17\xe9\x99\x84\x6f\xa3\xb7\x6c\x30\x09\x6d\x0a\xf0\x36\x49\x9a\x57\xd8\x6a\xfc\x54\x70\x09\xa3\xf1\x53\x76\x0d\x2a\x6f\x6f\x7b\xee\xdb\x4d\x1b\x1c\x13\xcd\x19\x16\x6e\x8b\x14\xca\xcc\x88\xd0\x52\x26\xfb\x6d\xa6\x62\x54\x16\xf2\x49\xea\xf6\xca\x32\x42\x0a\xa9\x29\x2c\x01\xfd\xd7\x51\xa5\xca\x65\x4a\xf4\x86\x9a\xd0\xb9\x2c\x53\xce\x47\xe1\x05\xe0\xc7\x82\xc6\xfe\xbe\x09\xf5\x03\x48\xa7\xab\x1b\x00\x38\x21\xd5\x11\x35\xda\xa6\x78\x33\x72\x0f\x99\xab\x24\xc1\x82\xa2\xc3\x73\xbc\x2b\xb6\x22\x4b\x73\x1e\xa2\xbc\xc8\x39\xda\xd3\x9c\x50\x0b\xe2\x8a\x8e\x27\x88\xca\xda\xc2\x54\xca\x65\x61\x9f\x25\x3c\x74\x3c\x13\xfb\x3d\x9d\x93\x9e\xfd\xe1\x79\x67\x6f\xd1\x18\x84\xee\x8b\xf6\xb4\x87\x69\x25\xbd\x4c\xa6\x0e\x89\x91\x8d\x36\x45\x76\xbb\x4c\xb3\x8c\xe0\x8f\x6a\x99\xff\xd1\x38\x25\xa1\xaf\x60\xff\x5d\x16\xe5\x75\x52\x2e\xde\xf1\xe5\xb4\x57\xcb\xfc\x2a\x08\xf0\xab\xde\x03\x31\x1d\x79\xfb\x57\xf6\xaa\x3f\x8a\xb8\xf6\x11\x7a\xc7\x97\xb4\xd4\x9b\x8e\x49\xb8\x77\x8b\x39\xcc\xb8\x82\xb3\xab\xd9\x6c\xa1\xf2\x94\x59\x0e\xed\x70\x81\x1d\x9e\x96\x1b\xe5\xa9\xb7\x4b\x56\x3e\x7f\x38\x67\xe5\x48\x14\x34\x63\x9a\x4e\xd3\x8d\x03\xb8\xa4\x0b\x65\x52\x0d\x84\x97\xae\xdc\xc4\x5d\x44\x7f\x84\x0b\x7a\xc1\xde\xe0\x92\xc6\x48\x14\x30\x39\x15\xf3\x67\xce\x16\x28\x32\x2f\x4a\xde\x6e\xcd\x96\x78\x4e\x53\x42\x4f\x59\xe2\xd3\xce\x35\xbd\x64\x5b\xec\x92\xe8\xfa\x9e\xde\x42\x09\x92\x73\x55\x4e\x3d\x29\x7a\x50\x94\x94\x69\x72\x3c\xdf\x96\x25\x44\xe9\x39\x8d\xc0\x0a\x17\x59\xb3\xf3\x0b\xba\xc2\xbb\xb4\x7a\xa6\x32\x84\xa7\x34\xad\xde\x26\xa5\x48\x93\x2c\xbb\x35\x89\x97\x74\x25\xcb\xf3\x78\xa5\x64\x4f\xe8\x4e\x27\x16\xf9\xb3\x2c\xf5\x3d\x2d\x39\xd9\x5d\x8c\x74\x6a\x10\xd8\x4b\xcc\x09\xfd\x45\x07\x26\xe9\xe0\xe9\xd0\x0a\xaf\xcd\x49\x61\x66\xf4\xdc\xe1\x46\x19\x22\x3b\x39\xd2\xe9\x5b\x7f\x04\xd7\x54\x10\x09\xcb\x94\x71\x50\x68\xbd\xec\x9d\x97\xbe\x4e\xf4\xc7\x3d\xfd\xed\xff\x8a\x38\xf2\x85\x22\xbf\x27\x99\xd8\xc9\x26\x57\x8a\x28\x24\x05\xe5\xa3\x65\x59\xac\xa9\x3d\x6a\x26\xb4\xf0\x88\x67\x5d\x97\x0a\xa2\x0f\x66\x64\xc2\x00\xd9\xf9\xc3\xaa\x2c\xae\xa9\x5a\x5d\x9e\xb4\x01\xb3\x4f\x16\xd6\x98\x7c\x66\x3a\xea\xd7\x80\x04\x7e\x81\xf2\x40\xe0\x05\xce\x69\x42\x9c\xf6\xa5\xa0\x6a\xe4\xd2\x7d\x57\xd8\xff\x22\xc1\x0c\x7b\xdf\x2f\xbf\x9e\xc8\x7d\xa5\xfd\xf9\xd4\x7c\xab\xfd\x50\x62\x29\xc9\x7f\xf1\xad\x1e\xb8\x9e\x3f\x23\x9c\x8a\x58\x4e\xb1\x3d\x5e\x60\x41\x4b\xed\x50\xd3\x43\x5f\xe9\xa7\x2f\x13\xbf\x3b\x44\xe7\x3e\xa9\xfb\x37\x23\x48\x6b\x31\x9a\xfe\xf0\x77\x4d\x10\xf6\xf4\xa7\x7b\x23\x56\x68\x95\x9b\x68\x60\xce\xa4\x4b\x2c\xf4\x9e\x22\x69\x4d\x5d\x9b\x3b\x2d\x84\x98\x60\xbc\x8c\xb1\x4f\xd6\x86\x89\xaa\xb4\x01\xa4\x99\x17\x64\xf7\x6b\xbd\xf7\xa6\x1a\x89\xa2\x3f\x77\xdf\x2e\xd1\xd3\xe8\x0b\x39\x0e\x53\x2f\xbc\x8f\x39\xb9\xce\xb5\xbd\x87\x67\x0e\xc3\x18\x60\xa2\xdc\x93\x63\x8f\xfd\x46\x52\xd7\x46\xe2\x37\xb2\xf1\xdd\xc6\x19\x5f\x6f\xc6\x54\x27\x5b\x29\x2c\x67\xae\x5f\x22\xbf\xf4\xd0\xef\x4e\x5a\x32\x65\x9f\x94\x47\x3c\xfc\x01\x00\x59\x4e\xd0\xf0\x07\x9c\x9b\x99\xd8\x29\xbf\xd5\x0c\x0a\x32\xa5\x68\xcb\xc3\x3f\xe0\x52\x16\xf5\x10\x49\x71\x73\x4f\x7f\xe9\x0b\x9a\xc3\x9d\x1c\xa9\x71\xc9\x94\x73\x39\x1f\x29\x78\x9e\x20\x18\x60\x3e\x5a\x73\x91\xfc\xc4\x6f\xa5\xe4\x91\x64\x42\x5f\xcd\x45\x99\xe9\x4b\x08\xa4\xf7\x13\xbf\x25\xfb\xae\xcd\x63\x6b\x57\x36\x96\x9a\xde\xb2\xef\x58\x45\x0a\x9a\x3b\x7a\x5e\x7a\x67\xaf\x9a\xdc\xc2\x82\x71\xe4\xd6\x9d\xf7\x14\x87\xc8\x3b\xc8\x71\x75\x8d\x62\x75\x90\xa4\xee\x67\xb2\xcf\x3b\xc7\x6d\xa2\x50\x81\xef\xf5\x41\x9b\x57\x7a\xda\x0a\xd1\x3d\x00\x60\x64\x53\xa4\x2a\xe8\xef\x96\x99\x78\x65\x3a\x5f\x37\xf7\xbc\xf2\x6c\xa1\x3a\xf8\xbc\xdc\xfb\xa2\x9f\xe1\xe1\xdf\xad\x7e\x7e\xa8\xc3\x9e\x27\xc2\x2f\x5d\xde\xfe\xdd\xb2\xb3\x36\x54\x91\x02\xb4\x60\xe3\x69\xfe\x98\x9b\xe3\xd8\xe1\x30\x27\xfa\x1c\x5b\x60\x40\xf5\xc9\x1d\xbb\x5d\xba\xc2\xb6\x0d\x05\xd1\x17\x9e\x91\x0a\xaf\x35\x9b\x96\x9d\xab\xc2\xd5\xd8\x02\xa4\x0a\x9c\xe1\xb6\xf1\x33\xe4\x23\x64\xbe\x0e\x29\xe6\xc4\xdc\x82\xc3\xa4\xba\x24\x14\x32\xc2\x0a\x7d\xb3\xd4\xf9\xf4\x1d\x13\xe6\x8a\x50\x6f\x4c\x97\x1d\x53\xfa\x3f\x2d\x2a\x0a\x1d\x8c\xc9\x68\x2b\xe6\xd8\x6b\xfa\xa2\x8b\xac\x3c\x3a\xdf\x2c\xa1\xa6\xf3\xcd\x92\xed\xf8\x7a\x23\x6e\xc3\xc1\x84\x6e\xf3\x6d\xc5\x17\x1f\x8a\xcf\x3c\xaf\xc2\x78\xa6\xef\x5f\xe5\x9b\xad\x90\xb7\xc5\x15\x2f\x97\x59\x71\x1d\x1e\x3f\xa2\x10\xfe\xe3\x35\x5f\x8a\x37\x57\xbc\x0c\xc7\xb0\x09\xa9\x8c\x83\x09\x4d\x15\xb2\xd7\x69\x91\x8b\x95\x42\xbf\xd4\x29\x2f\x8b\x72\x9d\x40\x96\x6d\xc5\x4b\x0d\x00\xa6\xc0\xf6\x26\x34\xad\x0a\xf9\x03\xd6\xdc\x0b\x39\x63\x24\xbf\x08\xed\x58\xf3\x32\x5d\xa4\x7c\xad\xca\x2a\x97\xf3\x47\xff\x7c\xf4\x08\x0e\x34\x39\xff\xbc\x48\x6e\x4f\xd3\x0a\x02\xb1\x87\x83\xc9\x9e\x50\xf8\x2a\xf7\xf9\x2b\xed\x22\x6a\x3f\x3d\xad\x7e\x93\xd5\x1a\x4d\x96\xec\x1e\x5a\xb2\x5c\x07\x3e\x1b\xb5\xea\x3f\x08\x50\x3d\x00\xfb\x1b\x5a\x30\x63\x87\x3e\x3a\x5f\x48\x7e\xfd\x43\xba\xe6\x98\x10\xb9\x4b\x99\x0e\x7b\x3c\x06\x94\x34\xe8\x67\xb8\xf2\x3b\xc8\x4f\xf8\x5d\x7d\x0f\x24\xb5\xbe\x0d\xd2\x6c\x2f\xfb\x2f\xa9\x4e\x85\x94\x56\xaf\x06\x01\x1e\x88\x91\xe9\x3d\xb9\x8b\x9a\xeb\x20\x28\x89\x0a\x15\x73\xae\x28\xa7\x0a\x9e\xa8\x88\xb7\x94\xbb\xbd\xd1\x35\x89\xfe\xec\xb0\x4e\x55\x96\xe8\x88\xd1\x45\x7a\xf9\x63\xb1\x2d\x8d\xff\xaf\x5e\x64\x69\xf5\xb2\x2c\xee\x78\x1e\x04\xad\x04\xcf\x85\xa2\x98\xba\x61\x61\x85\xb5\x82\xb0\x69\x6e\x30\x2f\x9c\x06\x72\x89\x7f\x4e\x7e\x6e\x61\x53\xf3\x68\x23\xf9\x2a\x42\x39\x09\xe5\x6f\xbb\x43\xd8\x60\x4c\xc5\x3e\xd7\xae\x0f\x6e\xfd\x57\xc5\x9a\x47\x7d\x89\x61\xbf\x69\x88\x96\x7d\x5d\xcc\x3e\x6d\xc7\xf4\xe4\xc9\x18\x10\xe3\xcb\xc7\xb9\x01\xa2\x06\x3b\x0d\x88\xce\xe4\x05\x04\x8c\xcb\x19\x05\xfc\x3f\xbd\x8d\x7a\x40\xf0\xb0\x83\xad\x59\x39\x5a\x17\x72\x7b\xd2\x34\x29\xe5\x15\x50\x40\xd3\x0f\xa7\x3d\xae\x2b\x09\x16\xb2\xc7\x9e\x9e\xc2\x8b\xaa\x89\xca\xbd\xa1\x9d\xca\x7a\x32\x52\xf5\xba\x79\x01\xb2\xe8\xc4\xa5\x4e\x94\x04\xe9\x7c\xa9\x13\x33\x9d\x98\x31\xb8\x51\x89\x6a\x2e\xe9\x27\xea\x86\xb9\x64\x95\x47\xdc\xad\x75\x06\x71\xb7\x66\x3a\x41\xd7\x5e\xfd\xfa\xe1\x99\x6d\xf2\xaf\x1f\x9e\x31\x9b\xa8\x32\x28\x07\x35\x9d\x43\x3b\xf8\xbb\x64\x95\x67\x63\x9a\xbb\x59\x32\x39\x07\x4c\x7b\x8b\x79\x92\x71\xd3\x68\xb8\x61\x2e\x99\xae\xad\x29\x1a\x71\xdb\x8c\x49\x9c\xe6\xc3\x21\x49\x70\xc1\x44\x5c\xb2\x75\x9c\xcf\x66\x50\x0e\x78\x6b\x3a\x44\x36\x10\x15\x2f\xd9\x60\xe2\x86\xe9\x4a\x4e\x9b\x53\x2d\xec\x69\x0c\xfe\xf3\x05\x98\xf6\x49\x02\x83\xf5\xac\x1d\x9d\x2f\xa2\x26\xf9\x08\xe5\xdc\x56\xf9\xf5\x1a\xc0\x16\x94\xde\x2f\x40\x66\xd3\xb1\xfb\x2f\x83\x00\x5f\xca\x09\x5e\x8e\xb6\xa0\x5e\xf4\x1c\xd9\x09\xbd\x84\xe0\x5c\xb6\x61\xb7\x87\x36\xee\x2b\x75\xac\x08\xbc\x89\x6d\x5d\x6b\xae\xb8\x62\x9e\xfa\xc5\x3c\x1e\x47\xe0\x49\x31\xe7\x69\x06\x40\x7e\xe3\x10\xee\x97\x59\x51\x94\x8d\xad\xfd\xda\xad\xe2\xa1\x94\x4b\xcd\xf4\x57\x10\x55\x41\x90\x56\x2f\xd3\x3c\x15\x5c\xc5\x23\xc8\xd9\x53\x18\x46\xcf\x36\xe9\xae\x15\xc2\x41\xbb\x70\xa4\x39\x36\x9c\x81\x73\x58\xa1\xa9\x7a\x9a\x5c\x54\xf6\xe9\xb1\x7b\x9a\xb0\xb1\x46\x92\x97\xcb\xb6\x80\x65\x8b\xf3\x20\x90\xa3\x0b\x80\x59\xe5\xac\xae\x07\x79\x10\x5c\xc3\x80\x13\x05\xc4\x28\xaf\x48\x10\x24\x2e\xb4\x53\x32\x4c\x5d\xfb\xce\xe5\x07\xc2\xa8\x94\xa3\x6a\xbb\x01\x03\xa0\xe7\x7c\x53\x72\xa5\xe6\xf8\x3d\x29\xf3\x34\xbf\xac\x82\xc0\x53\x85\x39\xc3\xa2\x79\x91\x57\x45\xc6\x83\x40\x5f\x8c\xae\x93\x32\x6f\xde\x61\xe4\x15\x77\x74\xad\xca\x53\x28\x9a\xfb\x7e\xd3\x31\x4b\x63\x8e\x9a\xee\xde\x7a\x67\x1c\xb0\x72\xb4\x70\x45\x6a\xd0\xd9\x20\xe8\x4b\x55\x0c\x34\x27\x7e\x2c\xf8\x82\xa6\x2c\x9e\xe9\x73\x8e\x8e\xd5\x5c\x32\x1c\x42\x4d\x05\x43\xa8\x07\xa0\xdb\x3f\x0c\x71\x45\x56\x92\x72\x16\x43\x86\xce\xf2\x18\x0d\x93\x21\x9a\x1d\x21\xea\x1b\x84\x92\x62\xc8\xaa\x21\x92\x9f\xed\x27\xc7\xd5\x6c\x88\xe8\x11\x9a\x16\xac\xb0\x2e\x2a\xc7\x8f\x88\x72\x77\x29\x9a\x47\x2f\xa9\x09\x78\xb4\x3f\xc7\x7c\x88\xce\xf2\xa7\xe6\xa9\x2c\xb6\xb3\x25\xc8\xd2\x14\x21\x4f\x8d\xe8\x87\x88\x7c\x0d\x0d\x01\x52\x15\x2c\xbf\xc8\xa8\x12\xc9\xfc\xb3\xdc\x19\x06\x93\x7d\x4b\xf8\x68\xe9\x7a\xf6\x70\x4a\x29\x3f\xf7\x03\xbd\x01\xfb\xbe\x96\xf1\xd9\xdf\x1e\x1c\xf0\xdd\xbe\x89\xf9\xac\xae\xf1\x39\xd6\xd7\x70\x1c\x61\x8b\x7e\x7d\x68\xf5\x1b\xe7\x3e\x8f\x75\x37\x49\x7f\x97\x7d\x7f\xd1\x64\xdf\x01\xc9\x8a\x13\x1f\x94\xce\x32\xcf\x29\xb0\xcf\x10\x69\x0a\x58\xe8\x08\x97\x92\x9d\xde\xed\xe9\x06\xae\x00\xae\x93\x98\x1b\xc8\xa2\x40\xd5\x07\xc0\x72\x47\xa5\x61\xbe\x43\x8d\x69\x52\x02\x23\xee\x81\x7e\x6e\xc1\x27\x37\x08\x06\xa6\x4e\x5b\xa5\xaa\x0a\x5a\x07\x6f\xf5\x09\x0f\xef\x65\x77\x59\xaa\xa8\xc1\x3e\xc1\xf1\xe5\xde\xd5\xad\x80\x20\xba\x23\xa4\x62\xdd\x7d\x30\x9d\xf9\x99\xdf\x56\x91\x77\xdd\x8d\xe4\x4b\x73\x23\xfd\x08\xf7\x39\x92\x34\x3a\x1f\x00\x6b\xbe\xa9\x40\x2a\x1b\x13\xe9\x59\x53\x59\xde\x00\x04\x98\xfe\x29\x3f\xff\xcf\x38\x1f\xa2\x0a\xc9\x0b\x30\xce\xb5\xaf\x7e\xf6\xc4\xc7\x6e\x30\xb9\xe8\x4f\x98\x65\x7f\x76\x60\xab\x8c\x12\xd8\x96\xf3\xbb\xf7\x2d\xb4\x64\x3e\x38\xa1\x1b\x1c\x2c\xd8\x67\x9c\x13\x35\x28\xb2\x1d\x0d\x38\xc2\xbd\x3a\x96\xf6\x3f\xec\x7b\xf5\x61\xcf\x01\x20\xcb\x55\xf6\xb6\x89\xf8\x8d\xd0\xd0\xd1\x7f\xc9\xaf\x8b\x63\x03\x68\x6b\xdc\x4c\xf9\x13\x36\x8e\xf2\x08\x0d\x51\x88\x50\x88\x8e\x11\x51\xaf\x6c\x8a\x6b\x3c\x19\x3b\xb7\xfa\x31\x2d\x20\xf6\x87\x86\x48\x26\xc6\x3d\x72\x42\x86\xaa\x7d\xef\xd8\x09\x3e\x8b\xe3\xff\x9c\xc5\xb3\x87\x67\x33\x52\xe3\xb3\x33\x12\xe1\xf8\xc7\xd5\x6c\xbd\xc6\x55\x45\xa2\xfa\xb4\xa8\x4f\x4f\x23\xf9\xaf\x7e\x5e\xd4\xcf\x9f\xc3\x9f\x48\xfe\xab\x17\x8b\x45\xb4\x88\xea\x45\x11\xd5\xd7\x71\x51\x5f\xcf\xa2\xfa\xf7\xb8\xa8\x7f\x9f\x45\xf5\x2f\x45\x54\x7f\x82\xff\x6a\xf7\xb7\xfe\xf4\xa9\xbe\xbc\xc4\x97\x97\x97\x11\x89\xea\x1f\x7e\xc0\x3f\xfc\xf0\x83\xbc\xe2\xf5\x8b\x3a\xa9\x9f\xd6\xab\x55\x54\xff\xf8\x63\x54\x7f\xfe\x1c\xd5\xeb\x75\x54\x57\x55\x54\xbf\xdf\x4d\xe8\x77\xfb\xfa\xa6\xfe\x58\xdf\xdd\x45\xf5\xbf\xff\x1d\xd5\x23\x72\x72\x49\x3f\xf6\x36\xfc\xf5\x87\xf7\xf5\xeb\x0f\xf5\xeb\xd7\x91\xfc\x57\x67\xbb\x09\xfd\x7a\x2f\xb3\xff\xc1\xe0\x5c\xc7\x1f\x8c\x5f\xdb\xc0\x9c\xe5\xb4\x3b\x65\x4a\x10\x33\xba\xa6\xd9\x10\x77\xa6\x9c\x61\x49\x0e\x79\x10\xe0\x57\x72\x48\x0b\x65\x91\xfa\x2a\x16\xf1\x78\xd6\x17\x6e\xef\x2d\x2e\xfa\x89\x2a\x15\xf1\x44\x12\x8a\x47\x33\x59\x60\x0e\x85\xe4\x7d\x25\xc0\x5a\x56\x2c\xe0\xf3\x44\x24\x98\x8c\x8a\x72\x91\xe6\x49\x76\xb0\x64\x4e\xf6\x3e\x26\x67\xcb\x11\xcc\xf2\x6a\x11\x16\xec\x25\x20\x5e\xf8\xa5\x13\xfa\x87\x9c\xd8\xf2\x4f\x53\x37\x6c\x97\x06\x2d\x18\xd7\xa0\x62\xef\x14\x05\x53\x0e\x0f\x85\xb5\x3f\x7f\x9c\x83\x0d\xfa\xab\xb8\x88\xc5\x6c\x16\xc9\xbf\x4c\xdf\x84\x70\x83\x4b\x26\x7f\x0d\x36\xd9\xc9\x59\x1c\x9f\x55\x67\xef\x67\x27\x24\x2a\x9d\x62\xf7\x3f\x67\x71\x7d\x36\x7b\xa0\x94\xba\xa1\xf7\xe0\xec\x4c\xa5\x4d\x7b\x34\xbb\x8a\xdb\x4a\x19\x42\x1e\xcb\xa4\x25\x9d\x21\x7b\x8d\x0b\xc9\x16\x45\xf2\xaf\x16\x76\xa4\x1c\x26\x6f\x4d\x61\xe9\x7e\x2f\x77\x24\xd9\x01\x52\xfc\x0b\x9b\xdd\x63\x04\x5a\xe0\x6c\xbd\x5e\x7e\xe9\x13\xb0\x6f\x7c\xd5\x9e\x17\x65\x6c\x94\x15\xf9\xa5\x7c\x53\x89\xc3\x0a\x49\x1a\x7c\x34\x3f\x02\x58\x05\x9c\xa2\x4a\xae\xfe\x09\x1b\x07\xc1\x47\xe3\xbb\xa8\x02\xd6\x98\xaf\xff\x48\x4b\x42\x1b\xf9\x69\x7e\xcc\x26\x4d\x16\xff\x37\x76\x72\xb6\x38\xa1\x9f\xe4\x8f\xbc\xf8\x41\x5e\xec\xbe\xda\x9f\xd0\x9f\xe0\xea\xeb\xfd\x09\xfd\x85\x9d\xc4\xc3\xe3\x59\x74\xb6\xd8\x7d\xbb\x3f\xa1\x0f\x54\xde\xe8\x84\xfe\x4b\x5d\xe9\xbb\x7f\xbb\x3b\x9d\xc2\x39\x94\x31\xa1\xb2\x3c\x61\x6e\x64\x91\x39\x77\x65\x4e\xa8\x2c\xb5\x84\xc7\xc3\x13\x5a\xb8\x47\xc3\x13\x9a\x72\x76\xf2\xef\x5a\xde\xcb\x32\xc3\x08\x5a\x79\x99\xd2\xa4\x91\x8e\xa3\x50\x3d\x22\x91\x7c\x58\xc9\x22\xc6\xc7\xdf\xcd\x76\x63\xfa\xe8\x9b\x6f\xf7\xf1\xff\x4a\x8e\xef\xce\xb6\xe3\xf1\xd3\xf1\xf1\xd9\x76\xfc\xcd\xcb\x97\x67\xdb\xf1\xff\x8c\xe5\xcd\xf3\xff\x91\x37\x2f\xbf\x83\x9b\x97\xcf\x9f\xc9\x9b\xe7\x2f\xe1\xe6\xe5\xf8\x7f\xe4\xdf\x89\xba\x79\xf1\x72\xb6\x9b\x40\x69\x75\x7c\xb6\x1d\x7f\x0b\x2f\x8c\xbf\x7d\xf9\xf2\xec\xc4\x3c\xc0\x67\xd5\xc3\xa8\xf9\xd0\x3c\x22\xf2\x77\x7f\x92\xd2\x39\x6f\x10\x9a\x8c\x1b\xfa\x3e\xe7\x92\x4c\xbc\x06\xa8\x72\xdf\x12\xcc\x29\xc6\xa4\x10\x13\xe5\xa1\xf0\x10\x84\xb7\xbc\xb1\x66\xb7\x78\xce\x29\x27\x11\x94\xe5\x44\x58\xea\x44\xc3\x50\xf9\x25\x5c\xbe\xb8\xd9\x60\x08\x14\x6e\x26\x0b\x3a\x3b\x43\xd4\xc7\x1d\x3c\x39\x3b\xc3\x67\x31\xa9\xe5\xcf\x8c\xd4\x67\x31\x8e\xff\x73\x36\x93\x24\x95\x9c\xcd\x64\x2a\x90\xda\x66\x58\xd7\x26\x8c\x85\xa8\x6b\xe5\x2e\x5d\xec\x09\x21\xbe\xfa\x91\xf7\x9f\xcf\xc4\xc7\x67\x27\x67\x67\xff\x79\xf0\x70\x18\x8d\x30\xa9\xe3\xb3\xd9\x6e\x3f\x93\x0b\xf8\xec\xec\x41\x80\x14\x63\xb9\x6c\xf6\xdf\x82\x37\x39\x33\x01\x6b\xb9\x67\x7b\x87\x30\x5b\x31\x9f\x11\x5a\x29\x41\xac\x6c\x85\x38\x01\x2f\x9f\x6b\x40\x21\xa0\x2d\xbd\xac\x14\x98\x97\x3c\x96\x5b\xf8\x8c\x79\xac\xd4\x4a\x57\x0e\x8d\x68\x44\x21\xd2\xfd\x30\x3a\xbf\x66\xf2\x0f\xe0\x8e\x0a\x39\x98\xa3\xf3\x6b\x78\xb6\xf7\xfb\xe3\xc2\x4e\x02\xcd\x07\x06\xc1\x16\x2f\xe5\x48\x06\xc1\x52\x0d\x25\xcd\x47\xe7\x09\x58\x8c\x42\x2f\xac\x39\x1b\xd3\x53\xce\x26\xf4\x92\xb3\x47\xf4\x8a\xb3\xaf\xe8\x2d\x67\x5f\xd3\xa7\x9c\x7d\x43\xaf\x39\xfb\x96\xde\x71\xf6\x3f\xf4\x9c\xb3\x7f\x7a\xde\x37\x7e\xbf\x7f\x90\x37\xd1\x57\xdf\x7e\x1b\x7e\xf5\xed\x37\x9e\xa3\x4c\x63\x6c\xfe\xf1\x35\x63\x92\xc2\xf0\x7f\x4c\xc6\x52\x9c\x1d\xd7\x35\xff\xc7\xd7\xe3\xb1\x4c\xdd\xff\x8a\xd1\x27\x44\xc7\x74\x4c\x0f\xe0\xb3\xdf\xf2\xa4\x74\x50\xe8\xfc\x31\xfb\xee\xbb\xef\xbe\x8b\x10\x1a\xf2\x10\x0d\xd1\x10\x34\x8e\xbf\xe2\x31\x8d\xd1\xa7\x4f\x88\x3e\x9a\xb5\x4a\xf2\xb7\x35\x55\x94\x6c\x85\xff\x92\x7c\xed\x6b\xf9\x1a\x92\xcf\x91\xff\xe0\x13\xa2\xdf\x1c\x78\xf2\x09\xd1\x6f\xe9\x60\xec\x3f\x7d\x86\xd5\x15\x45\xb7\x88\xd0\xef\xcd\xdd\x84\xd0\x8c\xc3\x57\x16\x5c\x5f\x7e\x42\xf4\x01\xfd\x64\x6e\xe4\xad\xe0\xf4\x27\x77\xff\x09\xd1\x9c\xd3\x5f\xbc\x04\x9b\xb2\xe0\xd8\xb6\xcd\x3c\x9a\xd1\x35\x87\x27\xba\xb0\x96\x4d\x88\x88\xd7\x7c\xc6\x54\x38\x58\x1d\x20\xa6\x54\x3a\xdd\x0f\xd7\xc5\xf3\xf4\x32\x15\x9f\x64\xc7\x70\x12\xaa\x99\x6b\x8a\x3a\x50\x50\xff\xbb\xf6\xb5\x03\x6f\xc1\x3b\xaf\x72\x39\x7f\x27\x63\xc8\xdd\x53\x4e\xdf\x91\xa4\x6c\xd3\x10\xcb\xbf\x4f\xbe\xfd\x67\x34\xf9\x6e\x3c\x0e\x1f\xf1\xaf\x88\x62\xeb\x6f\x38\xfd\x99\xb3\xd7\x1c\xa3\x97\xdb\x2c\xfb\x04\xfd\x3d\x18\x7b\xb6\x0b\xaf\x9b\xb4\xad\xc7\xb6\x5a\xad\x96\x3c\xc2\xef\xb9\x89\x70\x98\x93\x3e\x8d\x91\x41\x61\x25\xe1\x0b\x93\xd3\xc7\x61\x7f\xc1\x0f\x72\x3e\x7c\x74\xbe\x50\x50\x3e\x43\xab\xc7\x8b\xd0\xaf\x1f\x9e\x01\x0a\xe1\x50\xcc\x94\x76\xcb\x13\xaf\xec\x5a\xf6\x8a\xb1\xe1\x5d\x40\x32\x70\x1f\xcc\x40\x41\x24\x97\x9c\x9e\xe0\xc4\xc4\xeb\x5b\x17\xb9\x58\xc9\x17\x1f\x7d\x67\x42\x4e\x73\xdb\x9c\xea\x9e\xe6\xe4\xd4\xbe\x4c\xff\xe4\xfe\x2d\x70\x28\x7f\xf9\xba\x4f\x97\xfe\xe4\xd6\x32\x52\x9f\x0a\x90\xba\x56\x57\x56\xdb\x7b\xf4\x73\xf2\xf3\xd4\x50\x5f\x2c\xfe\x81\x73\x36\x79\x44\x86\x39\xf9\x87\x75\x0f\xe0\xff\x7f\xe6\xde\x85\xb9\x6d\x5b\x69\x18\xfe\x2b\x32\xde\x46\x05\x2c\x48\x96\x9c\xc4\x69\xe9\x20\x1a\x37\xce\xad\x8d\xe2\x34\x76\x9a\x26\x8a\x8e\x87\x16\x21\x8b\x8d\x04\xea\x90\x90\x1d\xc5\xd4\xf9\xed\xdf\x60\x71\x21\x48\x51\x8e\xdb\xf3\x7c\xcf\xfb\x8e\x67\x2c\xe2\xb6\xb8\x03\xbb\x8b\xbd\xb4\x18\x96\xed\x94\xec\xf5\xf6\x29\x70\x91\xfa\xfa\xec\xd9\xff\x39\xd8\xff\x29\xb8\xdf\x6b\xa7\xf7\x1e\xdd\xdb\x5f\x7f\xe5\x1b\x9c\x6c\xa3\x0d\xb8\xc1\xcc\x36\xf1\x35\x4e\x7e\x0c\x92\x79\x28\x1f\x6b\x6c\xd8\x3e\xac\x49\x62\xad\x44\xca\x91\x1a\x50\xdb\x7a\x6b\xd1\xaf\xdd\x5b\xd3\xf7\x18\x0d\x10\x1d\xa2\xc1\x00\x0e\x23\x34\x48\x6a\x35\x2f\x8d\x85\x2a\x18\xd3\x56\x4f\x1f\x47\x68\xa0\x0a\x95\x8f\x42\x7e\x0b\x62\x0e\xc5\xb3\xd3\x29\x38\x0a\x36\xeb\xd1\x01\xfa\x07\x90\x7c\x20\x4f\x31\x82\x48\x44\xd1\x40\x1f\x66\x26\xf8\x93\x3e\x94\x06\x88\xfe\x60\xbe\x06\xde\x61\x06\xf5\xd6\xdb\x84\x90\x7e\x7b\xdf\xf1\x4b\xfe\xd5\x9c\x1a\xa6\xdc\x77\x0b\xfa\x65\xe0\x14\x1c\xa8\xc6\x0d\x36\x6d\xfd\xc9\xe1\x80\xeb\x5b\xb8\xdd\x2b\x32\x0f\x74\xf6\xcd\x02\x3e\x85\x26\x2c\x8e\x63\xea\x7c\xab\x4e\x28\xb0\x87\x28\x1c\xcf\xfe\x50\x9f\x18\x49\x5f\xd7\x93\x04\x11\x16\xa4\xf4\x7e\xa5\xd5\xd0\x41\xaf\x84\xb3\xbd\xe3\x61\x72\x3c\xea\x1b\x5a\xf2\xf3\x48\x51\x93\xf9\xe7\x8c\xb4\x54\x5b\xfa\x7b\xf4\x0b\x67\xe8\xd7\x50\x2c\xc3\x74\x75\xfe\x9c\x5f\xa4\xf0\x31\x08\xd3\xf1\xf4\xfc\x68\x91\xc6\xb3\xf3\x41\xb8\x3a\xff\x75\x29\xf8\xf9\xaf\xcb\xd9\xea\xfc\x68\x79\xb9\xcc\xe4\xf9\x29\x5f\x48\x3e\xbf\xe0\xe9\xf9\xc9\x58\x26\xea\xf7\x4d\x72\xa5\x23\x8e\xf9\x18\x3e\x9c\x81\xb6\x73\x44\xe8\x07\x5d\x8b\xaa\x41\x01\x57\xa0\x2d\x60\x05\x57\x81\x55\x30\x15\x34\x05\x49\x01\xf1\xcb\x17\x07\xea\x31\xaf\xb3\x5f\xad\xd9\x1d\x6a\xe0\x7c\x4e\x0a\x88\xbd\x00\x7f\xde\x1b\x4d\x78\x4c\xd8\x88\x65\xc3\x91\x79\x0b\x50\x44\xcb\xa0\x2e\x21\x53\x0b\xa7\x92\xa2\xe9\xad\xde\xfe\x61\xab\x95\x92\x98\x4d\xf0\x70\x9f\xdf\xa7\xe9\x88\x6c\x29\x33\x4c\x47\xac\xd8\x7a\x66\xef\xc4\x80\xb2\xd6\x74\xa0\xbe\x45\x15\x18\xdb\x8b\x17\xf6\x64\x60\xf5\xa9\x73\xba\xdf\xee\xed\x30\x86\x13\xf6\xd5\x7b\xfc\xda\x6c\x26\x0d\x09\xe9\x27\xc0\xd0\x0b\xea\x4b\x54\xda\xe4\x17\xf8\x87\x95\xfd\xed\x7a\xfe\x4e\x81\xbf\xdd\xed\xe2\xfe\xf8\xc5\x47\xce\x61\x49\x79\x77\x62\x61\x22\xa9\xde\x50\x9d\x3a\xb0\xf7\xfe\xf5\x39\x6a\xfd\xb0\xa7\xc9\x5b\x49\x88\x64\xd7\xce\xef\x24\x78\xdd\xc7\x56\x5b\xa9\x72\x1e\xea\xcd\x2f\x89\x57\x8b\x53\x4b\xf0\x5e\x57\xf4\xad\xaa\xee\x49\x7b\x01\x53\x49\xe0\xcd\xfd\xb6\x6b\x12\x41\xbf\x11\x60\xe5\x25\x59\x86\xb7\x7c\xf3\x55\xbd\x8f\x7f\x71\x28\x47\x2d\x6a\x62\x5d\xc8\x15\xb8\x89\x81\xaf\x31\xfd\x77\x9c\x65\x9c\xfe\xa9\xfe\x17\x3b\xf9\x2f\x8e\x3d\xa1\x4c\x5e\x39\x73\xcd\xab\x90\xc5\x18\xd7\x05\xab\x72\x38\xa2\x89\xfa\x17\x3b\x16\x2c\x5c\x95\xbd\x7d\xe0\xc2\x08\xbb\x09\xe5\xc8\xd9\x53\xd8\xd8\x71\x42\x6d\x19\x42\x93\x8d\x64\x9b\x12\xff\x8d\x14\x1f\xa4\x66\xc2\x68\x41\x34\xae\x2a\xb0\x5f\xb1\xfb\x2a\xb5\x16\xb8\xaa\x0b\x0e\xdc\x55\x42\x13\x13\x02\x66\x91\xd7\xb5\xfd\x07\x90\x39\x36\xc9\x31\x24\xfb\x47\x18\x5c\x4d\xcc\xa3\x8a\xd1\xbf\x30\x6a\xc5\xe6\x39\x24\x57\xd3\x4d\x10\x45\x31\xb2\x47\x4a\xf5\x2a\x64\x1b\xd0\xca\x19\xe1\xe6\xa9\xaf\x25\xb9\x53\x2d\xb7\x41\x48\x6b\x20\x14\xeb\xf1\x15\x2f\xa8\x72\x75\xd6\xeb\x9d\x98\x15\x04\x59\x0f\xbc\x24\x3f\x61\xdd\x3e\xce\x8a\x67\x58\xde\x7a\xd0\xed\x96\xca\x51\xf7\x86\x09\xfe\xa7\x2c\xfe\x0a\xf8\x2a\x3c\x1f\xb8\x18\x4e\x48\xe0\x83\x2a\x83\xc9\x8a\xb6\xbd\xe7\x05\xd2\x16\x4f\xb0\xd7\x16\xcb\x1b\xbb\xe5\xb9\xaa\x60\x61\x1e\x8a\x61\x77\xc4\x4c\x8b\x8b\x7a\xc1\x0a\xce\xfb\xb3\xa7\xbe\x8c\x9c\x20\x5e\x3f\x40\x2b\xe8\xfd\xd9\xd3\x52\x57\xc0\x26\x80\x1f\xc9\xcd\x33\xdb\x77\x20\x7b\xc2\xce\xce\x37\x8e\xc7\x56\x2d\x5f\xbb\xec\x51\x4b\xb6\x2d\x6e\xdc\xc6\x8f\x5a\x6a\x24\x68\x97\xa6\xc4\x34\xe9\x38\x5c\x61\xd2\x96\xe4\xde\xa3\x56\xda\xee\x79\x8c\x43\xee\xf3\x58\x40\x8e\x1f\x9c\xe7\xf4\x5a\x8f\x76\xb1\x6c\xf7\x48\x0b\x3f\x6a\x89\x76\xaa\x0a\xbe\xe4\xc6\x12\xb4\x73\x44\xf1\x98\x75\xfb\x21\x3b\xe1\x38\x66\x5c\xe5\xcd\x82\xec\x09\xf0\x03\xfa\x2a\xa6\xd5\xa3\x21\xcb\xda\x10\x41\x02\x15\xa3\xc2\x84\xde\xa8\x53\x31\x88\x69\x14\xae\x4e\x26\x6a\x48\x82\xd0\xa3\x9b\xfe\xd8\x44\x28\xd8\x4b\xff\x2c\x55\xe7\x63\xc8\xbc\x77\x73\x38\x73\x0d\x28\x4c\xda\x71\xbb\x47\xf6\x1e\x91\x96\xe3\x49\x86\x8f\x7b\xfd\x94\x85\xad\x8f\x1c\x27\xcc\xc2\x69\xf7\x00\x52\x10\x3e\xf9\x58\x01\xde\xc7\x29\x0b\xdb\xd5\x58\x5a\x14\x6d\xf5\x48\xe0\x41\xa2\x29\x0b\x09\xbd\xb9\xe6\xfc\x4b\x90\x52\xe8\x5b\xe2\xf5\xe7\x63\x65\xa6\xdc\xcc\xd1\x04\xbe\x5b\xba\x21\xf6\xa1\x05\x46\xab\x9d\xb6\x12\xb2\xf7\xa8\x00\xf2\xa2\x4a\x4c\xea\x47\x5b\x49\x1f\x11\xab\xf2\x56\xf8\xfe\x90\x84\xac\xdf\x63\x74\xad\xc8\x8e\xeb\x6b\x4d\x76\x5c\x27\x88\x22\xd5\x44\xe0\x5a\xa0\x0f\x2a\xed\xc3\x07\x9d\xf6\x41\xa5\xc5\x59\xf2\x41\x27\x3f\xc5\x3a\x23\x45\xd7\x3a\x64\x93\x28\xfa\xa0\x51\x7f\x9d\xfc\x10\xbe\x5d\xe2\x43\x8d\xb9\x5f\x3b\x42\x40\x55\xed\x08\x81\x0f\x2e\x5a\xd5\x0a\xd1\x53\x85\x86\x5f\xab\x6a\xae\x01\x34\x55\x49\xb5\xb8\xb8\x1c\xa6\x85\x99\xcd\x1e\xb1\x1c\x35\xe8\x49\xa4\xe8\x1a\x14\xa9\x2e\x44\xe1\x4a\xf7\x2e\x8a\xfe\x0e\xb1\x63\xa4\xc8\xb2\x41\x2c\x2a\x64\x53\xf4\xcf\x00\xd5\x51\x60\xd1\x3f\x84\x55\x01\xc3\x35\x0c\x64\x92\x75\x77\x9f\x99\x48\x33\x15\x3a\xfe\x29\x86\xf1\xa0\x28\x2a\xa6\x54\x47\xf0\xd2\xac\xea\xb8\x67\x7a\x62\x21\xd0\xeb\xb9\x49\xf6\xc3\x7e\xfe\x9e\xe1\x61\x45\x6e\x56\xb9\xfb\x7a\xe6\xbe\x54\x8f\xb7\x91\x70\xde\xa0\x57\x69\xbf\xe8\x2e\xe5\x6a\xa9\xc6\xe8\x4e\x45\xfd\x52\xb0\x06\x55\x21\x5d\xab\x86\x70\x27\x7a\xd0\x42\xbb\x9d\x22\xec\x44\x15\x7a\xd0\x0c\xa1\x16\x8c\xd4\xb5\xc3\x94\xa8\x29\xd8\xb6\xf6\xdd\x7a\xd7\x96\x77\x39\x43\xa7\x4b\x11\x85\xab\xf3\x41\x02\x3f\x67\x4b\x9e\xa9\xdf\x0f\x3c\x12\xfa\xeb\x6c\xba\x4c\xe1\xe3\x79\x1a\xab\x9f\xd3\x50\x2e\x53\x35\x73\x3e\x09\xf8\xbb\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\xa5\xbc\x3f\x40\xde\xf3\x41\x72\x7e\xb6\x3c\xff\xc0\xcf\xcf\xa6\xe7\xcf\xd3\xf3\xd3\xb0\x9e\x26\xfc\xf5\x1f\xd1\x84\xa5\x11\xf5\xa8\xc2\x52\x7c\x85\xfc\xfb\x50\x9f\x36\x8f\xc5\x46\x8a\x26\x0d\x1f\x95\x29\xc3\xde\x88\xa8\xbb\x03\xa7\x64\x4b\x49\x47\xdc\xf9\xa7\xc4\xf7\x08\xc4\xcd\xa6\x6d\x80\xb9\x1b\xa5\x79\x7d\x2b\x8c\x3b\x51\x9a\xb0\xa2\x6f\xa1\xfe\x4a\x55\x94\xc8\xc6\xef\x14\xdc\xec\xe4\xf7\x89\xc1\xea\xe8\x56\xeb\xfb\xdb\x2d\xfd\x9b\x4d\xfb\x67\xad\xfa\x47\xa3\xf0\xdf\xf6\xe1\xb6\x46\xfd\xad\x12\xff\xbf\x0d\x26\x90\xe5\x6a\x83\x7f\x02\x6a\x92\x4b\xf5\x5f\xca\x12\x4d\x29\xe4\x3f\xa2\x29\xcd\x89\x31\x1c\xd1\x4c\xfd\x1b\xab\x7f\xb3\x32\x79\xf9\xa8\x4c\x5d\xda\x8d\x2c\x89\xf1\xd1\x53\xda\xb0\x40\x0c\xd2\xa4\x6e\x0b\xea\xa4\xb8\xb2\xb3\x74\x6c\xa8\x69\xcb\x94\xd0\xcc\xca\xc0\xd1\xb1\xfe\x8a\x09\x9d\xb9\xd4\x99\x4b\x9d\xd9\x54\xed\x69\xd9\x11\x99\x99\xfb\x1a\xbb\xaf\x59\x85\x04\xd5\x3d\xca\x0c\x51\x99\x01\x05\x3a\x36\xa1\x31\x84\x66\x26\x34\xf3\x08\xce\xd2\xad\xb6\x41\xca\xcd\xb6\x13\x83\x9b\x37\x29\xab\x81\x58\xc9\x6c\xaf\xeb\x3b\x64\xbd\x8d\xc2\x1c\xdf\xb1\x59\xb7\xc1\xc8\xbe\x0f\x63\x10\x8b\xdb\x20\x84\xb7\xd2\xb9\xa9\xac\x70\xe7\xa7\xc9\x32\xcd\x30\xb9\xd7\xdb\xcf\xf3\xde\xbe\xa7\x12\x25\xf5\xb2\x7e\x0f\x14\xd7\xf6\xd7\xc6\x32\x47\xc9\x68\x19\x60\x1f\xb4\x6e\xfe\x3c\x16\x4b\xc9\x21\x58\x7e\xd1\x8d\x65\x65\xff\x9c\x5b\x28\xb0\x2d\x15\xce\xff\x52\xe1\xf5\x2f\x5f\x9a\x77\x4f\xa4\xe0\x6a\x1c\x71\xaa\x12\xa6\x53\x93\x90\x4a\x88\xfc\xa2\x22\xbf\x7c\xf9\xce\x2b\xa9\x69\x5c\x9e\xef\x3f\x30\x58\xe8\x74\x3e\xdf\x7c\xa2\x35\x32\x70\xa8\x95\xfa\x72\x9c\xa4\xf5\x16\x57\x7a\xb5\x4f\x0a\x30\x59\xf6\x5f\x01\xb2\x71\x19\x1f\x27\x22\x2a\x01\x7f\x79\x6b\x1b\xfd\x8e\xdd\xd2\xc2\x97\xdf\x69\xe1\xf7\xc0\x6c\x6b\x5f\xa2\x95\xc5\xc1\x09\x96\xc4\xe8\x08\xd1\x9d\x1e\x20\xe5\x30\x61\x14\x4d\x35\x3a\xae\x43\xbd\xfb\x1a\xbb\x0d\x11\x8d\xa5\xfe\x3c\x2a\x3e\x5f\x3a\x74\x7b\xea\xbe\xbe\xb8\x2f\xb5\x14\x1c\x0d\xa6\xa6\xdf\x05\xd4\xb4\x17\x29\x6a\xb0\x7e\x75\xdf\xaa\xcf\x9f\x0c\x00\x2f\xe5\xa5\x4b\x81\x17\x94\x97\x88\x2a\xf8\x23\x7a\xc5\x4d\x8c\x22\x11\xbf\x7c\xd9\xc4\x63\x2d\xe9\xab\xd0\xd8\x43\x39\xbc\xe2\x23\xb6\xff\x00\xde\xec\xba\x41\xea\x5e\x64\x42\x44\xd1\x51\x5d\x61\xd1\x39\x8f\xb3\xb7\x73\x0f\xf9\x8e\xb3\xb7\xe0\x0d\x41\x14\x5b\x40\x63\xd4\x00\x68\xaa\x46\x70\x5a\x07\x49\xd7\x0d\x66\x84\x01\x29\x37\xfa\x38\x6c\xa7\x6b\x9f\xab\x61\x24\xb6\x34\xdf\x89\xc6\xef\x1f\x3a\x40\x05\x5d\x9a\x12\x42\xe5\x70\x55\x8e\x06\xe3\x50\x5b\x6b\x52\xa3\xf9\xbd\xba\x1e\x00\xe3\xe1\xef\x57\x4c\xf7\x21\xfa\xa8\x1c\x9d\x6c\x6f\xcf\xcb\xff\xf1\x9e\x7b\x90\xff\xaf\xf4\xd4\x52\x4c\xa1\xa4\x99\x04\xa1\x00\xd5\xe5\x4c\xef\xbb\xb1\x64\x37\x6a\x2d\x89\x28\x4c\x83\x9b\x2c\x9c\xf3\xe3\x70\x15\xa0\xe1\x59\x12\x85\xab\x46\x28\x47\x8d\xd7\x67\x88\x0a\xfe\x55\xda\xf8\x79\x92\xa6\xc9\x75\x29\x49\xa1\x45\x1a\x71\x6d\x0c\x6d\xfc\x2c\xcc\x4c\x91\x8f\x3c\x93\x3c\xf5\xc1\xa9\x34\x5d\x66\xf8\x3a\xcc\xe4\xa8\x51\x2e\xaa\x5a\xf1\x6c\x96\xf1\x00\xbd\x46\x6b\x5a\x96\xd6\x0b\x6e\x5e\x9f\x9d\x06\x68\x1a\xcc\xe7\x41\x96\x35\x8e\x10\x7d\x7d\xa6\x83\xf0\x1d\xa0\xc1\x60\xef\xf8\x78\x4f\x0b\x7c\xbc\x86\xf0\x60\xd0\x38\xa6\x0d\x1b\x53\x89\x6a\xb8\xa2\x90\xa4\x1a\x42\x1b\x75\x19\xd6\xd4\x93\x39\x0c\x90\x51\x15\x6b\x44\xda\x9c\xb9\x96\x05\x0d\xd0\xbd\x08\x69\x7e\x1e\x3c\x33\x9c\xe8\x68\xb8\x96\x02\x2d\x9f\xb7\x0f\xd2\x78\xda\xf5\xe7\x59\x3c\xe7\xc1\xcd\x64\x29\x97\x29\x0f\x50\x2c\x1a\xf7\x32\x44\x17\x61\x26\x03\x74\x2f\x6b\x84\x97\x09\xa2\x59\x80\xc2\xc6\x84\x5f\x37\xcc\xd1\x89\x68\x96\xa9\x5a\x8a\xf0\x5c\xe5\xd0\x87\x2d\xa2\xf3\x39\x24\x9a\xb3\x17\xd1\x69\x80\x42\xd1\xd0\xe7\xe7\x74\x0a\x69\x53\x3d\xf7\x91\x2a\x06\x4c\x8c\x28\x82\x78\x85\x28\x20\x3a\x00\x68\xfa\x49\x7b\x30\xd0\xc0\x80\x5b\x8e\xe8\x4a\x25\x69\xd1\x9d\xd5\x0a\x52\x54\x20\x43\x6b\xaa\x73\x04\x5f\x38\xf5\x38\xeb\xc1\x07\x0e\x4a\x97\xc1\x4d\x94\x5c\x07\x5d\x1a\x25\xab\xe0\x60\x6d\xf5\x30\xb3\xe0\x37\x4e\x3d\xfc\x24\xf8\xa1\x08\xea\xe2\xbf\x73\x5a\xba\xd6\x83\xbd\x61\xb8\x18\x7d\xee\xf4\xe7\xfd\xcf\x9d\xfe\x5e\xbc\xa6\x33\xc9\x6e\xd6\x74\x29\x4b\x32\x6b\x0b\x59\xb2\xc0\x5a\x91\x37\x2f\x24\xf2\xce\x11\x45\x6d\x44\x02\x5f\x5b\x56\x62\x27\x3b\x6a\x8d\x11\xec\xcc\xe4\x50\x8e\xb6\x68\xdf\xf0\x66\x13\xac\x4d\x19\x4d\x73\x22\xd3\xd5\x8d\x60\xa1\xec\x9c\x87\x17\x17\xa9\xe7\x8d\xc2\x0a\x6e\x39\xbd\x0f\x67\x02\x79\x12\x0b\x35\xc2\xd1\x72\xc6\x1b\x3f\xba\x3a\x7e\x44\x0a\xad\x05\x2b\xa4\x9d\x71\x12\x71\x86\x06\x27\xc7\xef\x5f\x3f\x3b\x7f\x73\x72\x76\xfe\xfc\xe4\xfd\x9b\x63\x44\xf9\x1a\x13\x1a\x49\x2c\xac\xf9\xf8\x94\xdc\x58\x0d\x12\x68\xb4\xa7\xd6\x2b\xfd\xa7\xc2\x42\xe0\x11\x63\xc1\x42\xf0\x8c\x01\x76\x22\xa7\x3a\x1b\xe9\x87\x92\x89\xe0\x9f\xeb\x1b\x69\x32\xbc\x81\x5a\xbc\x85\xc0\x4a\xf1\x24\x59\x8a\xa8\xd3\x38\x8e\xa3\xc6\x2a\x59\x36\x26\x49\x0a\xee\x0e\x92\x06\x78\xfc\x8f\x65\x1f\x11\x42\xed\xb0\x79\x12\x80\xb2\x64\x3b\x0c\xac\x27\x3b\x59\xc4\xb1\xd4\xb6\x22\x54\x11\xc6\x8d\x22\xe9\x4c\x0e\xf9\x88\xbc\xc1\x48\xb7\x5c\x37\xe4\xe4\x8a\xa7\x69\x1c\x71\x44\x41\xfd\x5f\x2b\x4b\x9a\xb7\x42\x9d\x03\xeb\xeb\xf4\x4d\x38\xe7\xb4\xa1\xad\x1d\x13\xd5\x3c\xe3\x01\x2e\x14\x0d\xfe\x35\xce\x64\x2c\x2e\x1b\xe6\xe2\xb5\x50\xfc\x7a\x6a\xa1\x68\xe3\x5b\x8d\x44\xcc\x56\x8d\x0b\xde\x58\x66\x3c\x52\xfd\x6f\x80\xb1\x0d\x05\x30\x04\x3b\x1f\xba\x68\xe3\x94\xf3\xc6\x54\xca\x45\xb0\xb7\xa7\x2b\xf8\x2b\xeb\x8c\x93\xf9\xde\xe5\x32\x8e\x78\xb6\xf7\x7f\xf6\x8c\xfa\x56\xb6\xa7\x2b\x6e\xeb\x72\x7b\x00\x72\x9e\xa4\xbc\x11\x8b\x49\xd2\x01\x37\x38\x30\x16\x9d\x73\xdd\x10\xf7\xaa\x6b\x1d\xee\x6a\x6f\xa6\xba\xe1\xc4\xc5\xab\x75\x53\x4a\x1a\x91\xb4\x26\xb2\x04\xb5\x50\x98\xc6\x82\xa9\x2d\x54\x86\xed\x1e\x89\x97\x1b\x60\xf2\x1c\x6f\x46\xb2\xe1\x88\xd0\xcd\x68\x63\x9e\xde\xd8\xf1\xd7\xd5\x07\x72\xad\x35\x88\x0f\x53\x85\x13\xe9\x48\x6f\x0b\xf0\x11\x6c\xb8\x53\xfc\x0c\x83\x06\xad\x02\xcb\x47\xcd\x26\xfc\xd4\x3b\x41\x50\x4b\xae\x03\x06\x8e\xc0\x82\x99\x9a\x42\xb8\xbd\x35\xa1\xaa\xca\x59\xf8\x46\x7f\x08\xe2\x68\xf9\x65\x1e\x76\x93\xf7\xfa\xa6\x8e\x08\x83\xb1\x79\x9f\x7a\xb5\x83\xe4\x6c\x25\x8e\xd0\x1d\x27\x42\x15\x02\x88\x9d\x04\x73\xa2\x7d\xf1\xaa\x21\x2e\xd4\xa1\xe5\x21\xc8\xdd\xae\xab\x62\x7c\xbe\x0a\xb2\x65\x24\xb0\xee\x61\x5c\x88\xdd\x12\xe3\x66\x17\x27\x4c\x1d\x99\xc3\x78\xe4\x7c\xc6\xb4\x91\xf3\x8e\x4d\x85\x9a\x55\x9d\xa1\xd5\x1b\x11\xd2\x17\x5e\x2e\x60\x7d\x1c\xca\x27\xdd\x43\x68\x5b\xaa\xda\x96\x78\xcf\x2f\x86\xae\x54\xf0\x9c\x0b\x3c\xd5\x1d\xd1\x6c\x0a\xab\x44\xcb\x64\xb3\xf9\x0d\x27\x54\x28\x6c\xe4\x09\x93\xed\x1e\x01\xaf\x50\x87\xb2\xdd\x5e\xc7\xad\xd6\xda\x0d\xc4\xba\xa4\x34\x36\x97\xbe\xd2\x93\x1a\x39\xc7\xec\x6b\x36\xdb\xfb\x8c\x81\xb6\xbe\xd3\xab\x07\x9d\x21\x31\x1c\xf0\xd1\xe3\x6e\x9e\xc3\xc7\x93\x5e\xaf\x3f\xe0\x81\x18\x5e\xf2\xd1\xe3\x9e\x8a\xbc\xe4\xa3\x27\xff\xe6\x58\x0c\xe7\x6a\x4e\x55\x1e\xd2\xbf\x54\x39\xae\x6c\xb1\x2b\x3e\x7a\xb2\xff\x40\x91\x80\x8c\x31\x08\x36\x9b\xb8\xbb\xa3\xbe\x57\x6a\x41\xeb\xcf\xa3\xe2\xf3\x5a\xc1\xb8\x52\x30\x56\x16\xc6\x8a\x8f\x9e\x3c\xfc\xb9\xbf\x52\x91\x47\x36\xf2\x48\x47\x1e\xa9\xc8\x6b\x1b\x79\xcd\x47\x4f\x7e\xfe\xf9\xe7\xfe\x35\x0f\xda\x3d\x0a\xfd\x39\xb7\x1d\x3a\xb6\x2f\x7d\xaa\x67\x8f\xe7\x3c\xcf\xe5\x93\x4b\xae\x75\xa3\x2e\x01\xaf\xf7\x73\x2b\x64\x2b\x6b\x36\xc1\x13\x98\x84\x3c\xdf\x6a\xf3\x80\x45\x01\x2f\xd7\xb9\xcd\x65\x33\x31\x59\x12\xca\x18\xc8\x8a\xdb\x45\x2b\x98\xc1\xad\xd6\x5d\x5f\x06\x9e\x36\xee\xa5\x3f\x6b\xd6\x9f\x3a\x1b\x8e\x8c\xfc\xca\x79\xa4\x97\x65\x52\x63\x46\xd4\x3d\x12\xa7\xda\x03\x4b\x21\xfa\xdc\x39\x5f\x66\xfc\xfd\xd9\xd3\xfe\x70\xf3\xe1\x99\xda\xa8\x81\x11\xdb\x94\xee\x21\x58\x82\xfe\x99\x2e\x53\x2d\x50\xca\x6d\xb2\xaa\xf5\x47\x79\xe7\xfc\x5a\xab\x3b\x83\x81\x88\x50\xad\x99\x52\x78\xa0\xc2\x5b\x14\x76\xac\xfb\xf8\x43\x77\xe0\x82\x88\xcd\xf9\x35\xe9\xbc\x78\x61\xb5\xa9\x65\xe7\x43\xf1\xf9\x8c\xc4\xac\x47\x43\xf6\x80\x0a\x36\x50\x67\xeb\x8b\x17\x14\xaa\x51\x2b\xf4\x0f\x8e\x9f\x4a\x4c\x68\x8f\x3e\x20\xf0\x06\xab\x8e\x7d\xc8\xf5\x81\xf6\x08\xc5\x38\xd1\xa1\x67\xb4\x47\x88\x5a\xe1\xc9\x93\x47\x6a\x81\x8c\xd9\x4e\xd7\xb8\xda\x8e\xfd\xb3\x47\xe1\x5f\x9d\x28\xb9\x86\x37\x8a\x6a\xec\xea\x50\x3b\x30\xb3\x95\xc6\x34\x24\x87\xa6\x51\x97\x97\x45\xa3\x66\xe5\x96\x5c\xd3\x19\x70\x13\x0b\x57\xef\x51\x5f\x35\x4c\x76\x22\xa2\x16\x79\xf2\xe4\xc0\x35\xc9\x2e\x99\x0e\xef\x43\x0e\xde\x8a\x29\x96\x1d\xae\xf2\xc9\x0e\xf7\x72\x92\x20\x61\xf1\x3a\x55\x7d\x4a\x9f\x7c\xe4\x58\x40\x73\xfa\x35\x6b\x9e\xed\x74\x0d\xd8\x71\x4d\x72\x14\xae\x54\x06\x9c\xb1\xe7\x0a\x88\x13\xa5\xb0\xbd\x61\x5a\x36\x1e\x64\x96\xec\x7e\x63\x59\xf1\xca\x4e\x60\x4d\x14\xaa\xf9\xde\x9e\x0c\x55\xff\xdd\xa8\x24\xea\x3f\xa1\xd8\xcf\xf4\xe4\x84\xe3\x90\xe4\xb9\x36\x82\x54\xc4\xab\x5e\x6e\xd9\xeb\xaa\xef\x54\xb0\xf7\x1c\x87\xb4\x5b\x6a\x95\x69\xf3\x40\xdd\x79\x95\x15\x6f\x97\xa9\x4b\xd0\xeb\xd9\xb2\x5b\xef\x97\x96\xaf\x1c\x81\x3c\xaf\xf9\x66\xc0\x85\x4d\xac\xd7\x12\xc7\x9c\x2d\x25\x97\x4a\xf7\xf7\xe1\x91\xa0\x17\x74\x03\x0b\x0f\xce\x4a\x08\xc0\x71\xd9\xb5\xa1\x55\x29\x74\x54\x0a\x5d\xc3\xc1\xca\x3b\xe7\x86\xf0\xd4\xa6\xd6\x35\x08\xd6\xd5\x42\x64\x0c\x17\x3b\xff\x3d\x0f\x5e\x71\xe2\x8b\x8d\x64\x04\x2c\xd3\xd9\x0c\xd6\x66\x82\x15\x01\x09\x6c\x04\x84\x8a\x29\x94\xdf\xe6\x70\x47\x47\x46\x5a\x65\x60\xb8\x58\x5e\x79\x1b\x45\xda\xdc\x58\xa4\x28\xda\xa9\x1b\x1d\x1a\xd6\x8e\x3d\x2e\xea\x89\x87\xce\xf9\x75\x27\x82\xca\xae\x3b\xd1\x0e\x63\xb1\x9d\xf7\x8a\x39\x17\x50\xc8\x86\x37\x81\x2b\xc9\xf6\xfe\xf5\x39\xdb\xc5\xb8\x1f\x68\xe5\xac\x9b\x83\x75\x0e\x7a\x64\xa4\x8d\xfb\xc1\xe7\xe8\x73\xd4\x56\xff\xf2\x0f\xe6\x53\x7f\xe4\x5a\x67\x0c\x7e\x08\xc1\xfd\x00\x9f\xe5\x0d\x82\xad\x6e\x57\xe5\x77\xd8\xa1\xa3\xcf\x51\x8b\xf4\xe1\x0f\x0f\x3f\xb7\x3e\x6f\xe8\x81\xe5\x9f\xb3\xdd\x4f\x2a\xfd\x87\x3d\xba\xba\xa5\x55\xa6\x51\x45\x9b\xee\xd6\xa4\xf2\xcf\xdf\x6d\xd0\x91\xdc\xa6\xbd\x46\xaf\x25\x1b\x5a\x45\x95\xf6\x60\xd0\x3e\x3e\x46\x74\xcf\x35\xba\xed\x06\x70\x6f\x64\xf4\x59\x5c\x26\xe8\x4f\x25\xc3\x8b\x17\x2f\x5e\xb4\x87\x1f\x46\x1f\x3e\xb4\x9f\xb9\x2c\x76\xe8\x2b\x39\xca\xe9\x7b\x74\xa7\xe7\xaa\x38\x2e\x55\x70\x73\x7f\xed\xd7\x5e\xaa\xda\x2f\xf6\xf1\xe3\x60\xe0\x37\xbf\xd7\x2d\xca\x99\x94\xcf\xd1\xcd\x4f\x6b\xd7\x0e\x68\x86\x6b\xe7\x87\xa2\x26\x97\xe8\xa7\xed\xaf\xfd\xca\x5c\x13\x1f\xad\xf7\x46\x23\xfa\x0d\x86\xf1\xe5\x4b\xcd\x84\xe9\x9c\x9e\x9e\x9e\x42\xf2\xe7\x28\x70\xff\x3e\x77\x3e\x47\x2d\x80\x6f\xf3\xd1\xda\x7c\xb4\x9a\x6d\x23\x47\x91\xea\x27\x99\xd8\xf9\xbc\xdc\x00\xf7\xe7\x55\xaf\xf2\xd0\x9a\x3c\xb4\x9c\xa5\x92\xea\x52\xbc\x78\x13\x67\x62\xd4\x50\x9c\xc3\xea\xdf\xeb\xab\x43\xf5\x33\xc6\x9f\xdb\x7d\xb5\x54\xf7\x62\x4f\x31\x4c\xd6\xa2\x01\x60\x2d\x85\x8e\xd9\x95\xd4\x7e\x36\x33\x92\xe7\x2b\xf7\xad\x50\x84\xb1\x46\x86\xe0\x4c\x88\xb3\x04\x2c\x12\x81\x8a\xef\xb5\xac\xea\xf8\xc6\x13\x7c\xad\x68\xfe\x61\x6f\xa4\x21\x8c\x87\x0a\x5b\xbf\x49\x98\x8e\xee\x8e\x68\xca\x76\x7a\x3b\xcc\x84\xf7\x47\x85\x3f\x59\x7d\x7e\x27\xc4\xb3\x0d\x87\x3d\x23\x4b\x3b\x3d\xdd\x98\xe1\xfd\x91\xa5\x19\x54\x1b\xbe\xd5\xb5\xe1\x5b\xa5\x0d\xf7\x55\x1b\x62\x86\xc7\xc3\xfd\x51\x9e\xa3\x06\x22\xad\x6f\xa6\x3d\xd5\xfa\xe3\x5b\xea\x07\x17\xb3\xa9\xb5\x32\x73\x5b\x4e\xdd\xd2\x07\x23\x6d\x5a\xf2\x48\xda\x86\x3c\x18\x91\xdb\x4a\x85\x0c\x7d\x42\x6b\xb0\x5b\x94\xb4\x70\x9c\xe7\x08\x91\x16\x0e\xe1\x97\x3e\x93\x4e\x54\xb1\x54\x4c\x9b\xe2\x50\xd3\xaf\x8e\xaf\x41\x22\xf2\xb3\x25\xcf\x3f\xf0\x28\x3f\x9b\x2e\xf3\xe7\x69\x9c\x9f\x86\x32\x3f\x5d\x0a\x42\xfb\x9f\x33\xd2\xc7\x86\xff\x47\x3e\x67\xf8\xd7\x50\xe4\xcf\xf9\x45\x3e\x08\xd3\xfc\x68\x91\xe6\x83\x70\x95\xff\xba\x14\xf9\xaf\xcb\x59\x7e\xb4\xbc\xcc\x4f\xf9\x22\x3f\x19\xcb\xfc\x4d\x72\x95\x1f\xf3\xb1\x2a\xa2\xf6\x24\x7d\xb0\xd6\x9f\x9f\x23\x12\xe8\x1f\x75\xbc\xe9\x2f\xd2\xff\x9c\xa9\x96\xbc\x3f\xcb\x5f\x0c\xce\xf2\xe1\xb3\xa7\x83\xb7\xa3\xe1\xe9\xf1\xe8\x8c\xe4\x78\xf8\xe9\xdb\x48\xfd\xe8\xb3\xe2\xc1\x9a\x90\x1f\xf6\x8a\x25\xfa\xb5\x58\xa2\x15\x85\x34\x27\x72\xf9\x98\x3d\xf8\xb9\xbf\xcf\xef\xb7\x64\x20\x41\xd7\x10\x54\xce\x54\x08\xc6\xe1\x8d\x64\x37\xef\xcf\x82\x2e\x7d\x31\x50\xff\x9f\x1d\x9f\x05\xed\xfd\x07\x5d\xfa\xec\xf4\x2c\x68\xdf\xef\x76\xe9\xd3\x63\xfb\x01\x31\x07\x5d\x3a\x38\xb6\x1f\x2a\xe6\xc1\x7e\x97\xbe\x3d\xb6\x1f\x10\xf3\x53\xd7\xe3\xeb\xbd\xf6\x9a\x78\x66\xe6\x55\x4d\x87\xa7\x52\x8b\x87\xff\x22\xa3\xdd\xcf\x24\x1f\x7e\x16\x9f\x25\xe8\xb6\x36\x7c\x9d\x5b\xfc\x39\xfb\x9c\xb5\xc8\x46\xfc\xbf\x54\xfc\xee\x5e\x45\x41\x57\xc5\x69\x17\x13\xb0\xaa\x6a\xac\x83\x16\xe2\xb7\xd6\x78\xf3\x10\x06\x92\x7e\x70\x4a\x54\x58\x12\xea\x06\x54\xa8\x01\x2d\x82\x69\x39\x98\xa8\x60\xa1\xfe\xde\x6c\x9a\x57\x77\x97\x21\x56\x19\x08\x0d\xd7\x58\x0e\x1f\x8c\xa8\x1c\xde\xd7\x86\x0b\xa8\x1c\x3e\x54\xff\x0e\xd4\xbf\x47\x23\x2d\x4a\x54\x7d\x63\xb0\x46\x38\xf3\xfc\xf7\xa2\x71\x9c\x28\x2a\xd6\xd2\x55\x52\x9d\x12\x85\x39\x04\x87\x1c\xe5\x39\x86\xa7\x92\x4d\xb4\x84\x0a\x7f\x3f\x50\xb5\x53\x31\x00\x00\xe7\x2b\xba\xca\x43\x85\x0f\x31\x41\x8d\x11\xaf\x6a\xbb\x62\xd5\x0a\xab\xec\x26\x87\x7c\xa4\xc7\xda\x1a\x79\x32\xae\xcb\x2b\x43\x98\xb0\xf4\x5e\xaf\x6b\xad\x14\xe1\xb4\x9d\x90\xbd\x5e\xb7\xbb\x7b\xd0\x6d\x25\xaa\x05\x3f\xa9\x2e\xfc\x0c\x9d\xe9\x8e\x0c\xb2\xf8\x9e\xfb\xd8\xa1\x6a\x94\x4e\xf8\x3b\x78\x1e\x9c\xc4\xc6\xa6\x20\xdb\xe9\xd6\x9d\x09\x85\xda\xa3\x34\xc6\x04\xd5\xa9\xb2\xc3\x58\xda\x79\x75\x7a\x72\xfe\xd3\x41\xb7\x47\xfc\xc8\x77\xcf\x9f\x9e\x2b\x70\xe4\x06\xc6\x69\x38\xd2\x95\x80\xfd\x3f\xeb\xe0\xd3\x27\x95\x11\x6a\x99\x7b\xc3\xf9\x8e\x98\x19\xb3\x54\x09\x7b\x0e\x70\xa9\x23\xde\x88\xb3\x0f\x91\xe7\xc3\x91\xc1\xf7\x13\xdf\x3f\x61\x0c\xc8\x3d\xc5\x82\xe1\xcc\x64\x5e\x72\x1c\xab\xe9\x53\x45\xc8\xb0\x0b\x96\x6f\x70\xc8\xb2\xe2\xf9\x29\x73\x0b\x48\x10\xc7\x29\x7a\xd2\x6d\x36\xa1\xe9\x9e\x25\x48\xbd\x80\x43\x42\x33\x55\x1c\xd8\x42\x7e\xd9\x96\x70\xa6\xb5\x66\x2d\x56\x04\x5e\x0d\xe3\x51\x1f\x8b\xbe\x3f\x12\xbd\xc0\x03\x6e\x0c\x0b\x5a\x01\x94\x0b\xd5\x62\x58\x72\x81\x67\xa4\x70\x47\x94\x1a\x54\x2e\x73\x08\x29\x25\xdb\x85\x6c\xdc\x9e\xd1\xec\xbb\xbd\xc9\x88\x23\x44\x1e\xb3\xde\x7e\xb3\xb9\xd3\xb5\xbc\x26\xf3\x96\x08\x28\x3d\x64\x50\x50\xb0\x9f\xc4\xac\x1b\x18\x88\xac\x98\x8f\x04\xca\xc7\x72\xcf\x4c\x96\xe2\x55\xb7\x78\xe1\x2d\x08\xa1\xda\x87\xc4\xc3\x92\xfd\x4e\xd1\x97\x81\x25\x6e\x2c\x00\xd5\x92\x7e\x39\x08\xda\x36\x2e\x63\x9c\xbd\x1d\xf4\x31\x4e\xcd\xa7\xb6\xb4\x23\x1f\xab\xde\x62\xd9\x62\xbd\x7d\x42\xd3\x3c\xef\xed\x2b\x62\x26\xcf\x15\x42\x40\xa8\x24\x81\x5c\x17\x06\xf3\x5c\x23\xa9\xd7\x72\x42\x81\xff\x43\xe7\xc5\x8d\x0a\xc7\xba\xe6\x4e\x03\x9e\xe4\xe9\xfa\x4a\xdf\x85\xcc\xb9\xf6\x20\x73\x3e\xf1\xb8\x3e\xc6\x34\x9f\xfb\xca\xf3\x0b\x20\xb9\x67\x9a\x9e\x63\xd0\x3a\x67\x75\x52\x34\x9b\x48\x4b\xb0\x5d\xe0\x1b\xcf\x06\x69\x77\x4d\x82\x3a\x15\x29\x4d\xca\xc5\x4c\x7a\xcc\x90\x45\xca\x17\x56\xf9\x89\xae\xb0\x24\x7d\x75\x7a\x5e\xe1\x39\x28\x50\x05\x78\x0c\xde\xc3\xd5\x71\x23\x83\x04\x0b\xd2\xdf\xca\x08\x52\xc7\x9c\xa1\x76\x27\x76\xe1\x5b\xce\x32\xe0\x7b\xbe\xc1\x4e\x75\xd4\x5a\xb4\xa5\x6a\xd1\xcf\x6c\xfd\xee\x61\xf2\xd8\x83\x75\x98\xc0\xe6\x56\x08\xe3\x40\x9b\xd3\x2a\x48\x5c\x4d\x11\xab\xa9\xb4\xdf\x45\x2c\xa1\x52\x21\x41\x0a\xd2\x30\x19\x29\xd4\x47\x12\x3a\xd5\x36\x1d\xe2\x16\x18\x49\x2c\xef\x1a\x1a\xb7\x58\xaf\xbb\xab\x2d\x68\x6e\x5a\xfd\xa4\x90\x00\xae\xcd\x59\x4c\x0d\xaa\x97\xe6\x79\xfc\x38\xd5\x66\x22\xd4\xb4\x4a\x42\x0e\x17\x98\x53\x91\xe7\x12\x38\x2a\x81\xe8\xc3\xf1\xb9\xa9\x82\x0c\x2b\xe1\x30\x74\xc3\xbc\xc1\x14\x0c\xc6\x9b\x69\xce\x36\xae\x4a\xaf\x99\xe9\xcd\x59\x62\xe7\x1e\x86\xa1\xc5\x98\x61\xe5\x60\x58\xa3\xda\x88\x62\x71\xee\xab\x4d\xae\x5f\x03\x8a\x38\xfa\xfa\xce\x39\x53\x63\x79\xfd\x79\x9a\xcc\x61\x4d\x3e\x0f\x67\xb3\x8b\x10\xbc\x15\x58\xbd\xf2\xa2\x33\x2d\x75\xc1\xea\x51\x4a\x54\x57\x81\xdf\xc0\x66\x58\x16\x27\x47\x9d\x64\xfd\xa6\x99\x01\xd8\x8a\x24\x88\x15\x10\xbf\x40\xc1\x89\xd5\x43\xf1\xc1\x0c\x82\xa9\x67\x28\x35\x4b\xcc\x68\x1f\x53\xd9\x89\xc2\x55\x9e\x4b\x50\xf7\xa3\x12\xa4\x80\x54\x22\x5c\x9e\x54\x1a\x91\x1f\x88\x99\xcd\x62\x1d\x1a\xd5\xbb\xcb\x6c\x36\xb7\xb4\x72\x0d\xdd\xcd\x6a\x66\x96\x04\xb7\x8d\x1e\x70\xe7\xa6\xd8\x9a\xf2\x8c\x80\x55\x45\xc0\xa2\x7d\xa1\x86\x5f\x18\x44\xb6\x2a\x5c\xcc\xf9\x6b\xdf\x01\x26\x7e\xb3\x09\x94\x93\xc8\x73\x9c\x32\x41\x85\x3b\xc5\x71\x0c\xbe\x24\x2a\xa3\x67\x0c\xb4\x5d\x72\xe9\x19\x8a\x7e\x13\xce\x79\xe6\xd0\x9a\xc2\x3e\x5e\x4d\x2e\xb5\xfd\xcd\x2e\xf6\xd4\xee\xb5\x01\x34\x40\x1d\xca\x26\xa8\x0b\x6b\x01\x3b\x3d\xd7\xec\x35\x74\x3a\x81\xe6\x75\x3d\x03\x17\x60\x34\xda\xb5\x3f\xdb\x34\xf7\xba\xa3\xae\x77\x7b\x2c\x64\xd6\xb6\x6a\xa8\x22\x67\x4c\x40\x09\xc6\xd5\xcf\x84\x49\xf5\x63\x2c\xb7\xa6\xb4\x9e\x61\x0f\x47\x23\x9c\xe4\x9e\xf6\x96\xcf\x2d\x93\x9d\x30\x8a\x70\x4f\xab\x67\x14\x29\xae\x89\x72\x8d\x7d\xb3\xeb\x4f\xe5\xad\x16\xad\x7b\x64\xbd\x75\x3d\xb0\x13\xac\x6d\x67\x37\x16\xda\xb5\x4d\xd4\x88\x33\x78\x9e\x8e\x45\x23\x6c\xa4\x7c\x9c\x5c\x8a\xf8\x1b\x8f\x1a\xef\x9e\x3f\x55\x28\x59\x23\x49\x1b\xaf\x4e\x4f\x1a\x13\x38\x83\xed\x93\x6f\xc3\x39\xcf\x05\x91\x81\x70\x36\xcb\x1a\x0a\x7c\x43\x26\x8d\xbf\x32\xbd\x2c\x09\x6d\x5c\x4f\xe3\xf1\xd4\x56\x90\xf2\x59\x1c\x5e\xcc\x78\x23\x1c\xa7\x49\x96\x35\xc2\xd9\xac\x71\x91\x26\xd7\x19\x4f\xb3\x46\x28\xa2\xc6\x15\x4f\xb3\x38\x11\x59\xa7\xf1\x26\x11\xb6\xfe\x3d\x55\xb9\xda\x55\xa6\x05\x59\x23\x4c\x79\x23\x8a\xb3\x71\xb2\x4c\xc3\x4b\x1e\x41\xd1\xeb\x58\x01\xe3\x0d\xed\x85\x3c\x82\xce\x88\xc6\x72\x31\x4e\xe6\xb1\xb8\x6c\xcc\xc3\xbf\x92\x54\x35\x80\x87\x19\xef\x34\xde\xc2\x6f\x23\xe5\x13\x9e\xaa\x16\xdf\xed\xb1\xf9\xaf\xac\xad\xda\xb1\xf1\xcc\x5c\xf5\x83\xe3\x6f\x4d\x75\x68\xb4\x3c\x0e\x2d\x6a\x58\x15\x5f\x63\xe4\xc4\xa2\xc3\x65\x0f\x40\x05\x46\x5c\x8a\x87\x9d\xf0\x45\xaa\x39\xd4\x6d\xc5\x44\x1d\x31\x6a\x80\xad\xd5\x44\x1e\xd1\x86\xf7\xbe\x3f\x0f\xbf\x82\xb9\x4a\x1e\x46\x9d\x3b\x76\x73\x1e\x8b\xf6\x3c\xfc\xba\x87\x6a\x4c\xee\x3c\xdd\xe2\x11\xe0\xd0\x97\x10\xf5\x4c\x92\x94\xcc\x9c\x80\xb9\x8c\xbe\xfa\x17\xf0\xe0\x02\xc3\x00\x7c\xa8\x74\x46\x35\x77\x7b\x67\x54\x57\xff\x1f\xe9\xcc\x93\xcd\xce\x78\x56\x10\x64\xc9\x62\x94\xc2\x72\xe0\x31\xd1\x19\x01\x4f\x80\xcc\xd4\xcf\x94\xf0\x45\x77\x64\x05\xff\x79\x2a\xb1\xb1\xc8\x09\x39\x68\xca\x7a\x87\xe9\x63\x59\x98\x1b\x49\x89\x1c\xa6\xa3\x92\x01\x18\x15\x31\xe4\x23\x2c\xd4\x51\x2f\xc0\x14\xaf\x67\xe9\x52\xb5\xe6\x17\xc9\x86\xd6\x0c\xd1\xbf\x97\x61\x2a\xb9\xfa\xb2\xb6\x3c\x8c\xa2\x9f\x56\x02\x33\xc2\xa7\x56\xa6\x0a\xe9\x4b\x0b\x62\xdc\x15\x86\x3c\x0b\xdb\x6f\x3d\x4c\xf5\x03\x3c\x08\x31\x7d\x49\xe6\x79\x17\x1c\xd7\x99\xfa\x54\x30\x61\xe6\xe2\x54\x81\x98\x69\x6d\x2c\x75\x7d\x1a\xb5\x32\x15\x1d\x32\x73\xa9\x76\x69\xc6\xf4\x8d\xaa\xbe\xc7\xcc\x5e\xab\x2a\x34\x63\xf6\x6e\x55\xa1\x25\x2b\x5d\xb0\x79\xde\x35\x62\xf1\x96\x34\xad\x95\x0c\x70\x77\x0a\xbc\xf8\x5a\x75\x87\x5f\x24\x95\xc4\xd9\x76\x06\xe9\x27\x63\xa0\x66\x28\x47\xde\x5d\xe3\x1c\x1c\x80\xf5\x52\xd0\x2a\xfa\xa5\x34\x4b\xea\xb2\x1a\xfe\xa2\xe6\x42\xf3\xe3\x44\x51\x16\x2e\xfa\xe7\xb3\x24\x94\x45\x16\x30\x97\xec\x42\x60\xcd\x79\xa7\x6b\x1d\x1c\xa9\x2b\x4d\x16\xca\x49\xae\xa7\x19\x6b\x2d\x5b\x3d\x7e\x7f\x77\xd6\x3a\xe0\x0f\x76\xc7\xf0\x9d\xed\x1e\x74\x77\x0f\xba\xd6\x88\x76\xb8\xca\x58\x2b\x6c\x3d\xda\x8d\x4b\xfa\xdf\xac\x95\xb4\xee\xef\xa6\xad\xde\xfe\xae\x70\x59\x65\xc8\x6e\xd6\xce\xbe\x05\xd0\x17\x17\xd2\xe9\x21\x5d\x2c\x2f\x2e\x66\x25\x83\x83\xef\xe4\x36\x03\xb9\x6f\x3d\x2d\xe5\x3f\x65\xc5\xfa\x75\xbb\xb7\x0b\x8a\xbb\x69\xb2\x14\x11\x6e\xf7\x76\x39\x09\xbc\x08\x9f\x0e\xfa\xeb\x16\xb1\x7a\xcf\x1c\xd8\x52\x8e\x8d\xe1\x03\xb5\xfe\x50\x0b\x15\x8a\xe8\x5d\xb8\xf4\xdb\x5c\xc5\xb7\x11\xa1\xa2\xf5\x16\xff\xe7\x3f\x98\xef\x1d\x74\x41\x38\x5b\x42\x98\xdf\x3b\xe8\x6a\xb1\xec\xf5\x5f\x12\xa3\x4f\x88\xa2\x00\x11\x0a\xdf\x9f\xc0\x7a\x1d\x08\x3f\x7f\x42\x34\x34\xe6\xba\x3e\x99\x6f\x10\x36\x56\x59\x3e\x7d\xda\x22\xb6\x6c\xf0\x09\xcd\x31\x92\xdf\xe6\xec\xbd\xc4\x21\xa7\x85\x32\xdf\x2b\xc9\xf6\xcc\xc3\x8e\x7e\x12\xda\xbb\xf4\x38\xe8\xef\xfd\x53\x85\x61\x09\x7c\x59\xc3\xae\xe0\xe4\xd0\xf1\x90\x99\x28\xf9\x12\xd2\xbc\x23\x8c\xc5\xd0\xf2\x16\xda\xbd\x11\xb0\x35\x5a\x45\xf9\x57\x6a\xad\x0f\x51\x1b\xa4\xdb\x47\x34\x61\x07\xdd\xdd\x74\xd8\x1b\xb5\xae\x71\x3a\xdc\x2f\x4e\x11\x85\x45\x25\xfd\x6e\x80\x5a\x8a\x74\x48\x87\xdd\x51\x3f\x09\xda\x89\xa7\x89\x5e\x3a\xfa\x12\x0f\xdb\xd1\x26\x2e\xd4\xb1\xa4\x5d\xcb\x62\x42\x13\x86\x57\x80\xa2\x8d\x31\x57\x48\xad\x23\x50\x02\x85\xe1\x10\x8f\x60\x69\x8b\x22\xa0\x46\x0f\x18\x56\x60\xf9\x1d\x02\x2e\xad\x95\x6c\x58\xc0\x10\x20\x4d\x2f\x2c\x4c\x58\xce\x25\x63\x99\xfe\xaa\xec\x3d\xdc\x6d\xfb\x2b\xd0\xb3\x31\xff\x2d\x11\x16\x24\xd9\xeb\x3d\xf4\x20\xfc\x51\xe8\x86\xec\xec\x54\x6f\x0d\x7b\x00\x01\xb1\x09\x7e\x1f\x20\x42\x5b\xe0\x5f\x97\xdb\xba\x79\xd9\x7f\x04\xc6\xfa\xe7\x76\xfe\xb9\x45\xfa\xb8\x1f\xe0\xcf\xd1\x2e\x19\x76\x1a\x23\x60\xa4\xb7\xc8\xe7\x00\x7e\x70\x3f\xb0\x5f\x9f\x3b\x2a\x8b\x7e\x02\x7c\x01\xa5\x75\xe1\xb7\xaa\xf4\xb0\xdd\x1a\xf5\x87\xdd\xf6\xcf\xb4\x33\xda\x25\x1f\x35\xc8\x72\xe4\xa0\x2e\xf2\x43\x5d\xe4\x31\x44\x9e\x6d\x26\xbc\xbc\x33\xdc\x53\xdd\xd0\x62\x8d\xff\x26\x2b\x7e\x1a\xa8\xb6\x13\xa0\xe5\xdb\xf4\x1c\xc1\x61\xd3\x8f\xd9\xcd\x3c\x53\x54\xa1\x7f\x0c\xd2\x28\xd0\xe2\x00\x19\x1d\x40\x1a\x1c\x71\xeb\x20\x33\x46\x08\xd4\xa1\xd6\x07\x43\x1d\x3c\x88\x3b\xa5\x03\x94\x93\x00\x87\xec\xa3\xa5\x78\x09\x51\x4b\x15\xb5\xd5\x32\x0f\x87\xbd\x51\xbf\xdd\x0b\x7a\x34\x66\x37\xab\xa0\x4b\xa3\xe0\x1a\x83\x30\x01\xd9\x15\x74\x0a\x81\x2b\x1d\x98\x43\x60\xa5\x03\x19\x04\x8e\x4c\x8a\x0a\xfd\x29\xb1\x3a\x99\xe1\x65\x9f\x90\x5d\xb1\x86\x4a\x5f\xdc\xa1\xd2\xdf\x25\x0e\x87\xfb\x23\x2a\x08\x1d\xe8\xc0\x7d\x08\x5c\xeb\xc0\x03\x08\x44\x3a\xf0\x10\x02\x53\x1d\x38\x80\xc0\x5c\x07\x1e\x41\x20\xd3\x81\x9f\x54\x60\xad\xf9\x5d\x8c\xc5\x6a\x44\xd7\xc1\xa6\xad\xf9\xb8\xd9\xc4\xda\x8b\x9b\x42\xbf\xf2\x1c\xc9\x04\xbe\x48\xd9\x34\x71\x8d\x68\x6d\x69\x1b\x94\x4d\xfd\xbe\x94\xda\x53\x9f\xca\xf3\x0b\x9f\x24\x29\x07\x36\x12\xfb\x41\xcf\x7f\x80\x31\x7c\x83\xdf\xb5\xf2\x3c\xb5\x45\x29\x4c\x85\xb1\xf3\x02\x09\xf0\x05\x9b\xfd\xc6\xcf\x14\x74\xad\x70\x76\x77\xbd\xc6\x4f\x25\x8e\xc1\x29\x18\xa1\xf0\x29\x13\xa2\x88\x58\x76\xb3\x26\x9d\x79\xc6\x92\x32\xfc\xb8\x33\x50\x51\x06\x72\x0a\xa8\xfd\x5b\x89\x63\x42\x61\x1d\x36\x9b\x4b\xcc\x29\x32\xb7\x24\xb8\x23\x4a\x37\x79\x72\x84\x7a\x02\xbd\xbf\x97\xce\x71\x4b\xef\x1b\x34\xa0\x10\xcd\xa6\x88\xa2\x0e\x72\x04\x23\xb6\xd6\xfd\xfa\xdd\x40\x90\x5d\xef\x5a\xfd\xa1\x04\xcf\x51\xed\x0d\x37\x32\xd2\x9a\x92\x6b\xf3\xc2\xa8\xdc\xfe\x2e\x96\xd6\xf8\x85\x33\x0d\x48\xb9\x3d\x9b\x81\x20\xb5\x10\xc0\xca\x5b\x27\xce\x8e\x26\x92\xa7\xc0\x06\x6b\xbb\xd1\xa6\xe5\xf9\x60\x2d\xd9\x6e\xdd\x02\xc5\x77\x4a\xf1\xab\xdc\x62\x7d\xd1\x69\xd8\x97\xb9\xb8\xc0\x32\x83\x51\x68\xa5\x0a\xc3\x7d\x83\x25\x2d\x68\x07\xd4\x92\x2d\x84\x17\x3c\x8d\x93\x88\x36\xb4\xef\x2e\x52\xa6\x26\x1c\xe5\x57\x10\x15\xae\xa0\x2e\x40\x1b\x1a\x00\xe9\xfc\x0d\x29\xe4\x30\x8a\xda\xb1\xb8\xe2\xa9\xe4\x51\x1b\x1c\xbb\xd7\x88\x22\x27\xc0\x33\x49\x69\xca\x12\x42\x3f\x19\x83\x10\xbf\x49\xb5\xdf\x37\x78\x71\xa2\xdf\x12\x81\x1a\x05\xeb\x03\xc5\x33\x20\xf2\xc9\x12\xfa\xd6\x40\x0b\x93\x95\x33\x30\x64\x7f\x4a\x2c\xf5\x31\x48\x68\x66\x42\x66\x05\x1f\x96\x76\x25\x4e\x8c\xdc\x52\x92\xe7\x09\xcd\x9a\x4d\x30\xa7\x05\xb6\x2a\xad\x85\xa8\x56\xb6\x2b\x08\x0d\x9b\x4d\xb0\x3a\x89\x8e\x41\xd1\xe3\x59\xf1\x4d\x5a\xa1\xca\x10\x17\xf2\x42\x70\x2d\xf3\xf2\xb5\x1c\xab\x3c\x49\xb3\x59\xb9\x9b\x39\x0d\xf3\x3c\x23\x64\xfd\x9b\xec\x4c\x04\x7b\xeb\x79\x4a\xa0\xbf\x39\x7f\x4d\x35\x76\xc8\x7f\x93\xc0\xf7\xd5\x97\x24\x17\xec\x57\x89\x7b\x14\x85\x11\xf0\x4f\x20\xd8\xee\x51\x94\x2d\x2f\x64\x1a\x8e\xa5\x6f\x8d\x40\x94\x9c\x1c\xd6\x6f\x83\x16\xae\xd9\x32\x44\xfb\x6b\xf7\x17\xb6\xa1\x9c\x32\x67\xfc\xbb\x8d\x45\x0b\xcb\x76\xfa\xb8\xdb\xd7\xe6\x28\x71\xda\xae\x94\x51\xed\xb2\xa5\x48\x60\x72\x55\xf2\xb4\xbc\x3c\xed\x94\x10\x92\xe7\x9e\x6f\x80\xd4\xb3\x45\xe9\xbd\xe6\x6b\x4f\x76\x7d\x1f\x69\xd7\x82\xd4\x41\x21\x65\x09\x32\xd9\x40\x76\xfa\xa8\xbd\xb5\x5c\xba\x4e\xad\x73\x42\xc3\x70\xf7\x64\x7f\xce\xac\x5c\xca\x27\x44\x2b\xd9\xde\xcb\x71\x6d\xce\xe1\xa7\x91\x76\x2f\x98\x88\x12\x91\x3f\x0b\xc5\x25\xde\xd8\x99\xaf\x34\x61\x4f\xcb\x7b\xd3\xd7\x92\x6d\xc8\xa4\x01\x1a\x13\x53\xde\x50\x30\x96\xe1\x25\x37\x1a\x06\xcb\x54\xfb\x39\x6f\xbc\xdf\x2c\x8c\x7d\x25\x06\x5b\x2e\xab\xb2\x6d\xb6\x0c\xa4\x5f\x7f\xe0\xc5\x18\x0b\x1c\x6e\x4e\xc2\xaa\x9a\xac\x19\x5b\x20\xba\x33\xc1\x7a\xfc\x3e\x1d\x0b\x85\x55\x67\x82\xce\xe0\x63\x2c\xe8\x52\xb0\xfb\x0f\xbb\x07\xf7\xf7\x7f\xda\x9d\x79\x1e\x18\x17\x25\x5b\x25\x98\xdf\x93\x2d\x49\xee\x79\x27\xfe\xa4\xf2\xa0\x5d\x32\xb3\xb5\x69\x63\x8b\xb4\x97\x22\x28\xdb\xcb\xf2\x70\x6b\x4f\x41\xe6\x36\xb0\xd6\x28\x55\x05\x6c\x11\x0d\x51\x9e\xda\x8a\xb0\x04\x5b\x97\x0e\x39\xb5\xac\xd7\x11\xed\x96\xdc\x04\x5e\x88\x0d\x8b\x53\xe5\x43\x9f\xf7\xff\x30\x36\xeb\x54\x0e\xd8\xa1\x01\x96\x4f\x70\xcc\x3e\x5a\x03\x54\x9a\x8f\x12\x13\x3a\x17\x9e\xcf\xb0\x02\xac\x2f\x2f\xbf\x59\x1d\x2b\x19\xbd\xa2\x21\x7b\xcf\x71\xac\xb9\xfb\x5d\x1a\x7b\x52\xae\x87\x1b\xc6\xa2\xc3\x4d\x0b\x5f\xd4\x33\xdd\x1a\x96\x45\x50\x4d\x1a\x18\x04\x0c\xab\x42\xa8\xea\x90\xd7\xf6\xa3\x2f\x2f\xbf\xa3\x81\x7d\xcd\xf9\x97\x8f\x35\xb6\xaa\x5f\xbc\xf8\x4e\x41\xc3\x5c\x29\x97\x9d\x0a\x8c\x2e\x2f\x55\xa5\xc8\x02\x46\x45\x6c\x4d\xf4\x8b\x17\xaa\x22\xe4\x01\xf3\x12\x36\x53\x8c\xb1\x21\x6d\x7c\x59\x75\xce\x37\x37\x64\x62\x5f\xbc\x28\x2c\x49\x7d\xb4\x56\xb1\x7f\xa9\xe4\x32\x46\x86\x5e\x14\x86\xb2\x2f\x8b\x4f\x55\xb1\xd3\x5f\x56\xad\x76\x01\xdd\xa8\xc2\x80\xb6\xee\x54\x11\x36\xad\x2e\x0c\x6a\x9b\x6e\xeb\x08\xb0\xc9\x63\xc6\xc1\x8e\x87\xe9\xa6\x2e\xf8\x7d\x0b\x55\xfb\x9e\x85\x2a\x03\x4e\x77\x79\xb3\x68\xa2\x8a\x26\xb7\xd9\xd0\x7e\x8f\xd1\xef\x60\xe2\xea\xf7\xc4\xe3\xe0\xc1\x90\x16\xec\xbc\xdf\xf5\x68\xba\x88\x47\xba\x63\xbf\x23\xfa\x87\x56\xc1\xfd\xbd\xc6\x0a\xf7\x80\x8f\xd8\xfd\x5d\xac\xed\xe2\xda\xba\x8e\x11\x1d\xa2\xe3\x63\x6d\x18\xec\x58\x5b\xd5\x92\xdc\xda\x93\x02\xb6\xe0\xb1\xb5\x15\xa5\x42\x3f\xeb\x9a\x8e\x9d\xc6\xb9\x2a\xeb\xa6\xe2\x38\xd9\x66\x8e\x89\xf7\xa5\x91\xe2\xde\x50\x18\xcd\x73\xd9\x39\x4f\x7c\x0d\xd2\xad\x59\x5f\x73\x11\x73\x21\x9d\xe6\xf7\xb1\x6a\xde\x31\x1a\xd1\x4b\x63\xff\xbc\xa6\x01\x12\x64\xc2\xaf\xb1\x75\x22\xf2\x03\x08\x7b\x58\x86\xcc\x40\x80\xa2\xb0\x46\x7a\x76\xba\xe4\x50\x8d\xc9\xb1\x19\x15\xf5\x7b\x5f\x8d\xcb\xb1\x19\x19\x73\x50\x38\x73\x5b\x26\x08\x39\x9c\x45\x2d\x1b\xf9\xc0\x0e\xd0\x31\xa2\x9c\xbb\xc0\x31\xa2\x2f\x6c\xf3\x8f\x75\x07\xa0\x0b\x75\xfc\xa4\x42\x18\xdf\xb3\x80\x36\x57\x8d\x9b\xcf\xad\xcd\x07\xc3\xbe\xd5\x26\x9b\x2d\x2b\x77\x6e\x6c\x36\x9b\x70\xcf\xb4\x65\xee\xa6\x4d\x95\x87\x69\x83\x86\xcc\x55\x91\x39\x1a\xd1\x15\xd7\xc3\x72\xa9\x87\x65\x60\xf5\x6b\x77\x7a\x30\x32\x99\xaa\x3a\xcb\x6c\xd5\x86\x45\x0c\x55\x3b\xe6\x71\xa6\xab\xb6\xe1\x9e\xb1\x13\x97\xb9\xaa\x55\xf9\xa2\xea\x4c\x15\xc9\xd0\x88\x1e\x99\xaa\xaf\x04\x5d\xe9\xda\x4f\xad\xea\xaf\xaa\x7d\x92\xa4\xf8\x3d\x46\xa7\xdb\xac\x33\xfc\xe7\x3f\xd6\x1c\x83\x43\x94\x31\x48\x4b\x91\xe2\xfc\x3c\x3d\xdd\x7a\x7e\x6e\x2b\x5e\x2a\x7d\x0a\xcb\xa1\x5b\x66\x90\x7b\xc9\xa7\xc6\x91\x40\xcd\xf1\xdc\xeb\xee\x6e\xc2\x2f\xc1\x56\xa5\x1f\x6e\x2d\x7d\x87\xe2\xa7\x88\x1e\x6c\x2b\xcf\xef\xdf\xa1\xfc\x29\xa2\x8f\xb6\x02\x78\x70\x17\x00\xa7\x88\xfe\xb4\x15\xc2\xc3\x3b\x41\x38\x45\xf4\xe7\xad\x20\x0e\xb6\x80\x80\xa5\x5f\x4c\x09\x45\xf3\xcc\x6e\x00\x2f\xb6\x77\xa0\x17\xe0\xa9\xda\x8f\xea\xa4\x84\x80\x0e\x7d\xb4\x21\x1d\x7c\x41\xe8\x95\x60\x7a\x4e\x0f\xaf\x2c\x5b\xf5\x31\xfb\xf9\xf0\x4a\xb4\x18\x3a\x45\x64\xc6\xf1\x95\xa0\x29\xf7\x50\xc4\x23\x77\xe2\x5c\xc3\x89\xa3\x46\x1d\xa3\x6e\x07\xb5\xe0\x25\x3e\x49\x31\xc0\xdc\x02\x30\x02\x80\x47\x42\xef\x82\x6b\xbb\x01\x0b\xb2\xcf\xed\xc2\x6f\xc6\xfe\xdf\xb7\x44\xf0\xa3\x8b\x0b\x63\xf1\xe5\x9b\x1f\xfd\x26\x9c\x73\xa4\x21\x7d\x13\xec\xaa\x20\xba\x8a\xd6\x9e\x97\x64\x12\xd6\xdf\x84\xa2\x4c\x18\x17\xf4\x1b\xe0\x58\x60\x28\xa1\x8e\xf9\xc3\x78\x9e\x83\x66\x54\xc2\x5e\x4a\xac\x5f\x14\xc0\xbd\x5f\x2a\x4f\x26\xd8\x18\x65\x8c\x59\xea\x80\x18\xef\x43\x80\xb2\x25\x24\xcf\x91\x35\x7b\x80\x68\x08\xea\x77\xaf\xb1\x1c\xc6\x23\xd2\x57\xff\x3d\xf4\x4e\x90\x00\xe2\x4b\x58\x99\x7e\x22\xc6\x61\x9e\x6f\xda\xd8\xb1\x15\x62\xfd\xfe\x41\x9f\x4a\x10\xdc\x5b\x43\x8f\x14\xf5\x55\x43\x66\xea\xc7\x7b\x4d\x1c\xa9\x7c\x51\x3c\x99\xd4\xcb\x9b\x59\x69\xa6\x0a\xff\xd7\xf7\x60\xa0\x52\x71\xca\x34\x87\x5c\x81\x24\xf5\xf9\xb2\xeb\x58\xdd\x44\x09\x3b\xe0\x0f\x76\x71\xea\xbf\x69\xb4\xab\x8f\x1c\x84\x4a\xf6\x05\x4b\x42\x6e\xc6\x61\xc6\xf5\xcb\x5e\x10\x33\x61\x6c\x57\x82\x43\x04\x2d\x63\x7e\x08\x19\xf4\x4b\x5f\x29\x87\x9f\x6c\x51\x86\x32\x88\xfb\x7e\x16\xb3\x5d\x82\x98\x41\x3a\xf8\x5c\xe0\xa5\x1c\xe6\x5a\xf1\x73\x1c\xf0\x07\x7e\x0e\x78\x5a\xf4\xd3\xef\x1f\xf0\x87\x7e\x06\xb5\x4c\x8a\xf4\x76\x42\xf6\x7e\x3a\x78\x50\xce\x02\x6f\x95\xe5\x3c\x07\xdd\x07\x3f\xb9\x4c\xd6\x75\xbf\xb6\xe5\xd5\x4e\xd7\xce\x08\x5e\x1c\x1c\xe1\x58\xcf\x27\x17\xd1\xc9\x64\x53\xcb\x52\x4d\x95\xa3\x04\x31\x67\x20\x83\x94\xe7\xa5\xf3\x42\xd1\x88\x79\xbe\x65\xba\x55\xac\xf6\x58\xc1\x3c\xfe\x7f\x3f\x12\xc1\x44\xd8\xf9\xe5\xa5\x39\x93\x4c\x8f\xb7\x33\x2a\x4b\xbb\xb4\x47\xda\xbd\xda\xd9\xa9\x64\xf6\x69\x0e\xb3\x44\x4c\xe0\xde\xfd\xd6\xfd\x0d\x30\x66\x0d\xdc\x06\xa4\xd5\xdb\x28\xa5\xc7\xfb\xb6\x42\x1e\x79\x63\x5a\x61\x64\xa5\x31\x69\x3d\xaa\x40\xb3\x76\x62\xef\x0e\x10\xfb\x24\x0c\x00\x6d\xf7\x36\xe1\xc2\xc2\x31\x5f\x6a\x0d\xde\x15\x7c\xab\xda\x5d\xbd\x44\xa5\x99\x3e\x8f\x95\x45\x65\x8b\xcd\x44\x7b\x21\xb0\x6c\x61\x7f\x72\xbb\x41\x75\x73\xee\x8e\x05\xa1\x33\x51\x1d\x7e\xb3\x3d\xb6\xc0\x1e\x6b\xd8\x74\x5c\x2d\x67\x37\xde\x96\x72\x99\x29\x97\xa9\x72\xeb\x12\x2b\xa2\xe0\xca\xc9\xdb\xed\xc3\xc3\x9e\xd0\x67\x68\x69\x53\xf0\x3c\xc7\xe6\x81\x35\xce\xde\xcb\x31\x26\xfd\x4d\x1e\x50\x50\x89\xd2\xf7\x8b\x64\x2f\xad\xd1\xda\xc3\xad\xe6\xcf\x16\x49\x26\xcd\xd1\x2d\xf5\xc6\x9c\xa4\xc9\x9c\xd5\x5b\x6e\xad\xbc\xaf\xc1\x0b\x62\x49\x38\x03\x2e\x20\xee\x1f\xae\xfd\xdf\x24\xbe\x91\x09\x4c\x10\x55\xa0\x03\xbe\x76\xec\x21\x9f\xab\x43\x48\x67\xba\x9c\x87\x22\xfe\xc6\xf1\x8e\x2c\x71\x7c\x6a\x3d\xee\xd9\xa6\xbe\x49\xae\xeb\x9c\x13\xe9\x3b\x29\x4d\xe6\x5a\x59\x98\xeb\x02\xb2\xfa\x6a\xf2\xdf\xf6\x0c\x7a\x04\x7d\x93\xc9\xff\x64\xcf\x64\x72\x5b\xbf\x64\x52\xea\xd5\x25\x97\x75\x59\x5f\x6b\x8f\x38\xfa\x0c\x55\xb7\x38\x84\x46\x86\x9b\x06\x25\x4d\xc5\x47\xb2\xe6\x02\x8e\xf4\xe5\xeb\x14\xef\x75\x01\xfd\x10\x51\x8b\x7e\xac\xe0\x25\x59\xbf\xf5\x5a\x39\xc0\xea\xa5\x9c\xe7\x3b\xc2\x1b\xc3\x66\x13\x57\x4f\x76\xac\x6f\xd5\xca\x91\xaf\x5b\x5f\x6c\xbb\x27\xde\xa3\x74\xe0\x7d\x6b\xbf\x40\x96\xa3\x6b\x71\x1f\xe9\xbf\x67\x9b\x7e\xe8\xa7\xaf\xff\xeb\x1d\x79\xec\x77\xa4\xd4\x78\xb8\x20\x4b\x4d\xf7\xf3\x16\xdd\x90\xd7\x9c\x6f\x2a\x05\x59\x3b\xc9\x7e\x5f\x68\xcc\x56\xda\x01\xe1\x53\x59\x38\xe2\xdd\xd9\xc1\xd5\xe5\x9f\xf8\x81\xb8\xd2\x4d\x0c\x9d\x4b\x59\x9a\xe7\x08\x13\xa4\x88\xf6\xbe\x01\xa0\x1f\xa9\x12\x85\x20\xda\xe1\x32\x2f\x8c\x2a\x0e\x4a\x13\x2d\xbc\xd0\x73\x65\x4c\x86\xd8\x2f\xa4\xe1\xa8\x28\xdb\xcd\xd3\x70\x5e\x3b\x57\x34\xbd\xeb\x6c\xa5\xff\x13\xb3\x05\x4e\xd2\x8b\xf9\xc2\xc2\x0f\xd2\xef\xae\xbd\xc7\x4c\x34\x9b\xe2\x31\xfb\xce\x3c\x97\x7a\x7d\x92\xd6\xed\xb8\xf2\xb9\xa5\xf2\x41\xbc\x41\xbe\xed\x08\xaa\xa8\x12\xa8\xda\x45\xff\x3d\x58\x66\x86\x3c\x60\x7f\x6c\x79\x1a\x9a\x7a\xf8\xfa\x2c\x14\x97\x2c\x01\xa2\xc5\xbc\x75\xa4\x5e\x40\x1d\x7c\x2c\x84\x88\x79\xf8\x95\x7d\x90\xf0\x15\x0b\xf6\x05\xbe\x16\x61\x9a\xc5\xe2\xf2\xf9\x2c\xbc\xcc\x6a\xea\x01\x17\xd8\xe6\x7c\xd2\xb5\x95\x24\x38\xac\xcd\xa6\xcd\x07\x75\x6d\xcd\xba\xaa\x46\x67\x45\xe7\x8c\x59\x5b\x48\xd6\x92\x69\x46\xe5\xe6\x66\x29\x62\x19\x08\xba\x48\xe3\x24\x8d\xe5\x2a\x38\x1e\x8a\xd1\xda\x93\x27\x06\xfb\xb1\x5b\xf8\x6b\x1d\x5b\xaa\x2d\xdd\xa7\x22\x8d\xe5\x1a\x73\x90\xd6\x23\x46\x76\x4d\x38\x4f\xcf\xad\x16\x81\xc3\x5a\x0c\xd3\x51\x47\xd5\x3d\xc2\xdc\x0b\x14\x2e\x72\x2a\x47\xbc\x8f\x03\x83\x5f\xc9\xd2\xc5\xaf\x07\x4a\x2f\xcb\xff\x17\x11\x6f\x40\xbb\xff\x5b\xa4\xbb\x02\xe2\x0e\x08\x77\xa5\xc4\x7f\x85\x6c\x93\xff\x1f\x10\x6d\xf2\x3f\x81\x64\x93\x3b\x22\xd8\x6d\xf6\x77\xb0\xeb\x3b\xe3\xd6\x1a\xac\x42\xac\xef\x8c\x56\x9b\x22\x99\x20\xff\x0d\x46\x6d\x9f\xa1\x99\x14\x1a\xad\x02\xb7\x33\xac\x56\x82\xd1\xec\x95\xa1\x73\x27\x52\xb8\x5a\x74\xbe\xa4\x38\x08\xc3\xea\x34\xe8\x30\x7c\x5a\x8e\x17\xc4\x7a\x1c\xb0\x91\xc1\xe5\x8c\x6a\xc3\x6d\xb5\x82\x2b\x96\x2c\x70\x75\x1b\xa1\x99\xa2\x09\xaa\x01\x81\x6b\x07\xd8\x50\x0c\xb8\xb3\x57\x6c\xec\x2d\x06\xdc\xb3\x7a\x6b\x25\x70\xb8\x67\xf5\xb6\x24\x9a\x53\x6a\x6d\x86\xc9\xda\x34\x57\xe1\xa1\x5b\x38\x32\x5a\xe9\xa5\x74\x27\x5a\x84\xf5\xd5\xe9\x89\xf6\x35\xcf\xaa\xca\x3c\xf5\xe7\x85\x93\x90\x94\x0c\xb4\x5c\x38\x15\x4c\xf6\x4b\x57\xe3\x52\xd1\x3b\x81\x37\x4a\x0d\x61\xc6\x07\xcc\x53\x99\xef\x27\xe0\x77\xf6\x25\x16\x54\xf6\x4b\x96\x35\x86\x67\x23\xdf\x42\xc4\xf0\xd3\x08\x05\xb7\x65\xf8\x84\x48\xf0\x5a\xbb\x00\x2a\xfc\x12\x79\x1d\x23\x7d\xd3\x3e\x3d\x44\x98\xf8\x89\x98\x04\x5b\x06\xa8\x75\x60\x78\xc4\xfe\x0e\xea\xf1\xfb\x95\xe2\x85\xf8\xd1\x27\x44\x55\x6f\xd0\x27\x44\x48\xe0\xf5\xeb\x3b\xbd\xda\xd6\x27\x83\xe9\x67\x8b\xca\x1a\xdc\x3a\x35\x46\x5e\xc0\x52\x07\x78\x6f\xb7\x61\x2c\x2c\x9f\xc7\x2d\xd4\xd8\xdd\x23\x5a\xb8\x80\x33\x93\x13\x51\xc9\x10\x3a\x34\xc0\x5e\x6b\x31\x4f\x20\x5c\x9d\xd4\xa5\xd7\xf7\xbe\x85\xbf\x94\x63\x14\xd8\x00\x3c\xbb\x7d\x4a\x04\x07\x60\x9f\x0c\x8f\x54\x30\x34\x44\x2d\xde\xfa\x11\xa3\xd1\x8f\xea\x9e\x7c\xec\xfb\x1e\x36\x22\x9e\x66\x49\x18\xff\xc3\x60\x66\x35\x70\xce\x79\x13\x26\x5b\x3f\x0e\x11\x19\xfd\x58\xc7\xae\x14\xad\xb4\x85\x6a\x07\x0e\xb5\x12\xbb\xb2\x7f\x3d\x3d\x79\xb3\xcd\x21\x7f\x21\x5a\x67\x56\x46\x69\x41\x2c\x67\x33\x03\xa3\xba\x35\xca\x50\xec\x82\x37\x14\x23\xe2\x02\x11\xdb\x44\x14\x45\x51\x03\xcc\xc1\x1e\x6b\x73\xb0\xb6\x95\x8d\xe1\x8b\xc1\xd9\xe8\x93\x9d\xe1\xa5\x88\xbf\xd6\xc0\xf7\xdc\x33\x95\x97\xe5\x9e\x5a\x82\x50\xd2\x44\x6d\x6b\x9c\x7f\x2e\xb7\x81\x31\x2a\x3d\x39\xda\x3c\xef\x1a\x46\x2e\x18\x94\x4c\x04\xa0\x76\x1b\xa0\x6e\x62\x50\x76\x35\xab\x88\xea\xbe\x99\xe0\x84\xea\x7e\x9b\xa0\xd1\xdf\x85\xcb\x27\xf0\x2e\x22\xaa\x55\xbd\x4c\x94\x0e\xe8\x23\x4b\x2d\x00\xf6\x86\x6b\xe4\xf4\x35\x0f\x17\x65\x97\xc5\xbe\x53\x6c\x6f\xc1\xe8\x66\xdb\x87\xef\x3a\x0a\xfa\xa2\x22\xd4\x60\xef\x7a\x7b\xb7\xba\x7b\x9f\x6e\xd2\xf4\x85\x31\xb3\xed\x69\x2b\x8b\x50\xbb\xb7\xf6\xbb\xb6\xc2\x14\xb1\x35\xfb\x28\x03\x58\x63\x03\xb8\x06\x7f\x62\xc5\x67\x56\x07\xdf\x0a\x7b\xc0\x4a\x19\xf3\x78\x86\x71\x99\x21\x49\xf6\xee\x1b\xda\x54\x47\xdd\xdf\xc5\xe0\x64\xac\x8c\x79\xe9\x3a\x21\xc8\xde\xc2\x5c\x44\xe1\x2a\x7b\x25\xb4\xe3\xd5\xcd\xc9\xf8\x37\xdf\x8a\xb9\x14\x33\xc3\xcc\x6f\x56\x83\xae\x6f\x8e\x2b\xcc\x0d\x50\x05\x55\x41\x16\xb3\x6a\xc2\x28\xc2\x8f\x54\xeb\x25\x01\x85\x3f\x7f\xf8\x59\xf1\x59\x57\x9b\x15\x85\x01\x5b\x77\xaa\xa2\xbf\x53\x05\x74\xe1\x95\xa8\x2e\x4b\x4f\x7b\x62\x73\x7d\x58\xf8\x1f\xcb\xe3\xc4\x61\x4d\xf1\x8d\xd5\x53\x03\xbe\x1e\x80\x5b\x1e\x0a\x95\x60\x03\x61\x66\x8a\x99\x09\xfb\x1b\xb7\xf7\x8e\x11\xd5\x0a\xac\x93\x68\x59\xc2\xfc\xed\xe1\xe1\x1b\x3d\xf3\xe2\x20\xe2\xb0\x02\x0e\xd7\x13\xa7\x56\x4e\xd3\x33\x5e\xd6\xe7\x81\xf5\x5a\xdd\x47\x5a\x82\xb4\x20\xf4\x30\x67\xb2\xea\x18\x8a\x10\x63\x13\x32\xa8\x28\xf9\x9a\x37\xa1\xd2\x14\x98\xf5\xa8\x26\x93\xb7\x25\x4c\x24\x09\xa4\x9b\xcb\xc8\xc7\x21\xff\xc9\x38\x61\x83\x9b\x03\x83\xbe\x7d\xcb\xe9\x41\xee\x3d\xba\x65\xa1\xd9\xb6\xf9\x0b\xe1\xbf\x68\x9b\xb3\x0a\xe9\x56\xfd\x6d\x93\xe1\x91\xd5\xfd\xcd\xd1\xbe\xf7\x28\xcf\x1f\x15\x53\x04\x03\xcf\xeb\xc7\xba\x74\x31\x83\xef\x18\x37\x38\xf7\x1e\xa9\xee\xb6\x1f\x95\x89\x80\x48\x5b\x85\x79\x64\x96\xb1\x15\xc5\xd8\xdc\xb4\x9e\x3e\x09\xae\xe5\xce\xe8\x57\xd1\x76\x7d\x1a\x50\xa9\xc4\x3c\x80\x79\x6e\x0c\xbf\x37\x11\x0a\x29\x67\xe6\x37\x63\x99\xe5\x6d\x2c\x25\x67\xee\x2b\x63\x97\x42\x33\x2e\x14\xf2\xcd\xdc\x57\xc6\x56\x9a\x2b\x52\x60\xe6\xec\x5b\x45\xce\xfb\x1a\x72\x38\x8c\xaa\xf6\x55\x34\xb1\x9e\x74\x8a\x6b\xfa\x96\x37\xd2\x5b\x57\x42\xad\x03\x5f\x4e\x0a\xb3\xcb\x0c\x73\xa7\x4f\x55\x62\x07\x68\x0b\x1b\x30\x09\xe1\x45\x86\x39\x79\xdc\x3b\xd0\x76\x51\x30\xdf\x65\x07\xce\xb8\xd3\x8e\x77\x6c\x34\x9b\x12\x84\xa3\x9f\x4b\xc3\xdf\xa1\x7e\x37\x98\x59\x3f\x46\x2d\x7c\xa7\x6b\xac\x4a\x24\x06\x15\x54\x73\x91\x68\x29\x9b\x58\xd1\x14\xcd\x26\xde\x91\x86\x93\x75\xae\x05\x51\x5f\x89\xb7\x69\x72\x99\xf2\x2c\xeb\x7b\xb2\xe0\xbc\x1d\xeb\x62\x60\x45\x28\xa8\x2f\x90\xe7\xb8\x3e\x41\x35\xe4\x36\x5a\xb4\xa6\x04\x58\x02\x30\x94\x6a\x09\xdb\xd2\x87\x67\x1c\xd8\x01\x58\x9b\xc9\xde\xfa\x1a\x50\xa0\xd6\x5d\xfb\x22\x00\xdb\x6b\x6b\x01\x3b\xd0\xb8\xa6\x78\x79\x78\x7b\x94\x9b\x81\xb5\x84\x34\xb6\xcd\x82\xd1\xf2\x28\x6d\x87\xbf\x57\x48\x0c\x63\x52\x15\xa0\xca\x6f\x73\x52\xa9\xd3\x25\xd0\x9d\x1e\xb5\x56\x61\x1b\xf5\x3e\xa3\x75\xcb\xec\xb5\xf9\x5e\xe2\xd8\xad\x06\xeb\xe9\xcf\xc8\x0e\x17\xf0\x39\xa9\x72\x2f\xba\xb4\x50\xea\x2c\xf8\x62\xd3\x30\x3b\x9a\xc5\x97\x82\x47\x2f\x93\x65\xba\xb1\xb1\xb6\x2b\x99\x61\xce\x78\x5f\xbf\x0d\x79\x34\x4e\xd0\xa5\xd5\xd1\x25\x6d\x4e\xee\x1d\x28\x82\xa8\x6b\xcf\xeb\xe3\xd3\xb3\x6d\x48\xb7\x57\xee\x49\xe9\x74\xd2\x28\x52\xb7\x54\x9b\x59\xe0\xdf\x29\xf3\xb0\x54\xc6\x34\xe1\x75\x79\xa5\x6c\xef\xa7\xbf\x47\x4d\xd9\xf7\x9b\x27\xd0\x9d\x94\xf1\x8a\xe2\xec\x0f\x69\xbe\xcf\x9e\x9a\x6f\x2b\x3b\xb3\x95\x1a\x29\xfb\xeb\x5e\xdb\x32\x6f\x4a\x2f\x04\xf5\x65\x9e\x26\x5a\x9a\x51\xf2\xa8\xf1\x5e\xc4\x57\x3c\xcd\xc2\x59\xe3\x2c\x9e\x73\x07\x4a\xed\xe0\x8c\x9d\x68\xa9\xca\xac\x11\x8e\xc7\x3c\xcb\x92\xb4\x2a\x32\xff\x3e\xe3\xda\x32\x82\x55\x8a\x47\x74\x20\x88\x43\x80\x33\x2d\x75\xaf\xbe\x6e\x05\x01\x59\x2c\x0c\x44\xdf\x72\x62\xc9\x19\x80\x00\x1f\xb7\x02\x50\x39\x8a\xf2\x6f\x74\x79\x35\x1c\x25\xb1\x7f\x15\xb1\x5d\xb9\x1f\x7b\xeb\xe2\xef\x2a\xf9\x2b\xc8\x7b\xdb\x44\x4b\x1d\x52\x57\x83\xbe\x19\x8d\x60\x73\xde\x78\xfb\x95\x5a\x95\x88\x60\x43\xe2\x66\x4d\x88\xdb\x37\xa7\xd3\x78\x22\x79\xa4\xba\xe9\x87\xab\x63\xf4\x37\xfc\x19\x64\xb2\x9d\x69\x20\x15\x15\x22\x45\xa9\xc6\x89\x28\xdb\x31\x50\x77\x69\xe8\xd8\xa4\x45\x03\x4a\xf7\x5f\x39\xc9\xf0\x4c\x6e\xd6\xea\x76\x1d\x58\x49\x24\x8a\x39\xd3\xf6\x49\x3a\xe7\xa1\x6f\x64\x08\x96\x2c\x18\x6a\x0b\xb5\x02\xad\xfa\x38\xdc\x04\xcb\xaa\x3b\xed\x1b\x64\xa5\xd2\x72\x3b\x31\x21\x4f\x8c\xa9\xb8\x9a\xd2\xce\x66\x4b\x4d\xa2\x95\xc5\x3d\x11\xec\xb4\x4e\x52\xed\x6c\xe3\xb9\x11\x54\xd5\x63\x36\x51\x68\x14\x97\xe0\xf5\xc0\x82\x4f\x86\x62\x04\x86\xdd\x0a\x95\x80\xaf\xbe\x15\xbe\x0c\x1b\xe3\xf1\x9c\x16\x06\x62\x38\xe3\x79\x8e\x90\xb5\xdd\x6d\x07\xd7\x55\x6c\x18\xfc\xba\x99\x29\xb8\xbf\xd7\x9e\xe6\xe1\x45\xa5\xb7\x0f\x6f\x29\xc9\x30\x1d\x31\x28\x92\xfa\x45\x6c\xbb\x8a\xf6\xbc\xf1\xfa\x83\x2e\x92\x64\xc6\x43\x51\x42\x73\x71\xa6\x2d\x51\x09\x26\xa9\x2c\x4c\xc4\x30\xad\x10\x1e\xa8\x78\x68\xfe\x4e\x8f\xde\x9a\xf3\xd0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\xbd\x47\x34\x35\x2e\x96\x01\xcc\xd8\xf6\x59\xdb\xe0\x7a\x04\x96\xb7\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\xfa\x64\x8b\x38\x61\xe1\x11\xca\xa0\x2e\x26\xd3\x90\x8f\x1c\x26\x65\xa2\x3a\x56\x62\xf0\xd0\xc9\x1c\xa4\xa4\x9f\x1a\x7e\x05\x15\x24\x48\xd7\xf4\x44\xe1\x23\xbe\x07\xa5\x6d\xb4\xfc\x79\x39\x1b\xf8\xb5\xd8\x92\xd2\x91\xc9\xfb\xc5\xc2\x3a\xd5\x71\x46\x2b\x65\x9e\xef\x88\xbe\x0c\xf0\x16\x78\x4c\x14\xf6\x35\x07\x83\xc1\x20\x1f\x0c\xf2\xe3\xe3\x3c\x8a\xa2\x68\xef\xb2\xde\x26\x94\xb1\x6a\xa5\xe5\xf2\xb7\x80\x25\xd0\x49\x4f\x8a\x63\xfb\x45\x54\xe4\x81\x32\x46\xba\x7e\x3b\xaa\x66\x32\x14\xcc\xe1\x7b\x11\x02\x2c\xef\x44\x38\x63\x70\xec\x5c\x40\xd0\x89\xf2\x98\x08\xdf\xcb\xd3\x56\x01\x01\x5d\x8d\x9f\x75\x28\x46\xc5\x74\x26\xa4\x9f\xb8\x22\x41\x52\x0c\xdf\xbd\x68\x2f\x76\x0d\x09\x33\xf9\x1c\x9c\x48\xd5\xca\x53\xd4\x54\xc1\x9f\x74\xfb\x48\xfb\x9d\x42\x01\x52\xe5\x91\x57\xa9\x20\x7d\x81\x25\x09\xbc\xd9\xba\x97\xed\xc5\xf0\x00\x7d\x52\x7d\xec\x75\x76\xed\xb4\xc9\x16\xfd\x70\xfb\x5a\x9d\x23\x43\x61\xa5\x5e\xc4\x88\x69\x62\x6d\x88\xce\x51\x4b\x85\xcc\x41\xaa\x75\xd8\x1c\x55\x71\xab\x72\x83\xef\xb6\x12\xdf\x96\xbf\x93\x25\xcb\x74\xcc\xed\x66\x49\x36\x93\x48\x0b\xe5\xa8\xe5\xfc\x71\xd9\x58\xe8\x9d\x41\x20\xb6\x28\x6b\x24\xd6\xc7\xac\xd6\x29\xed\xfb\xa1\xa1\x7b\x2d\x1a\x05\xa5\xf8\x52\x99\x4e\x9c\xe9\x85\x9b\xe7\x4f\x39\xe9\x48\x9e\x49\x2c\x49\x1f\xe9\xa5\x83\x02\x94\xc9\x50\x44\xa1\x42\x1d\xd1\xc8\x07\x79\x5b\xd5\xa5\xfa\x3a\x05\x04\xaf\x47\xe0\x54\xeb\x6e\xdd\x82\xac\xe5\x0a\x20\x6a\x5b\x07\x75\xe2\x53\xfe\x8f\x3b\xb3\xad\xc2\xcd\x5a\xea\xfb\xa6\x7d\x5b\xdf\x2a\x9d\xec\x43\x82\xec\xcf\xbe\x86\x63\x77\xa1\x1d\xf3\xaa\xfa\x9c\x56\xac\xd8\x28\xe5\x48\x50\xbf\x62\xe7\x6e\x5b\x9d\x4c\x83\xba\x04\xf0\x1d\x5c\x4e\xb1\x62\x07\xe6\x92\x54\x57\x70\x62\x9d\xf8\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\x53\x63\xad\x26\x95\x9d\xbb\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x70\x8c\x3a\x60\xd4\xa5\x85\x7e\x28\xf9\x8c\xad\x36\xf5\x76\x98\xda\x77\xf0\xed\x80\x09\x18\x76\xac\x8e\xda\x30\x1d\xe5\x39\x8e\x59\x6d\x23\x5b\x28\xdf\x5a\x0f\xad\x03\xe5\x37\x31\xae\xb6\xc4\xb6\xa2\xd9\x04\xcf\x7f\x48\x7b\xb7\xd9\x36\x82\x7a\x15\xf3\x0d\x8f\x45\xa8\x5a\xb4\x66\xa4\x6a\xcb\xee\x08\x5b\x62\x7e\x7b\xe6\xb5\xb7\xa4\xb5\xa7\xde\xad\xf7\x52\x75\x21\xf7\xf1\x52\x2f\x5e\x74\xee\x95\x47\x24\xcf\xff\xf2\x96\x36\xa1\xbc\xbc\xc9\x0a\xa7\xc0\xa5\xad\x06\x31\x24\xd8\x0a\x13\x6f\x64\x66\x7f\xf2\xf2\xc4\x78\xa0\x9b\xcd\xbf\x53\x6b\xf5\xc8\xfa\xdf\x19\x88\x8a\x93\xe5\xcd\x83\x67\xcb\x90\x14\x69\x1b\xe3\xe2\xb5\xfe\x5d\x75\x70\x2a\xd5\x6d\x8c\xd0\x1d\x9b\x03\x63\x05\xef\x34\x35\xe3\xf3\x07\xb7\xdc\xde\xca\x5b\x58\xf1\xfc\x05\x65\x01\xc8\x24\x4e\xc1\x5b\x67\x95\x95\x5b\x19\x6d\x5b\xb2\x52\xe6\x43\xa9\x09\xf5\x65\xae\x5d\x63\x2b\xcf\x1c\x05\xa2\x92\x54\x7c\xb2\xdb\x1b\xc1\xb9\x8c\x2c\x07\x87\xbc\xd9\xd4\xa2\x0b\x76\x7f\xd9\x14\x77\xc7\x7e\xe7\x46\x72\xe6\x32\x41\xed\xfd\x05\xc7\xa2\x32\x60\x24\xe0\x7d\x31\xe4\x9a\xe3\x3d\x0a\x44\xa9\x0f\x83\x58\xd4\xb1\xa8\x1c\xb0\x72\x9b\x06\x71\x1d\xf0\x8d\x3c\x45\x65\x1b\x49\xa5\xca\xab\xd7\xf9\xf7\xaa\x87\xfc\xdf\x6d\x80\xbd\xe6\x6b\x9b\x00\x89\xa5\x46\xdc\xf9\xde\x2d\x15\x28\xdd\xbc\xbf\xde\x7a\xf3\x96\xca\xb9\xfd\x55\xae\xde\x5d\xb2\x55\xbf\xff\x95\xeb\x77\x4b\xda\x64\x39\x9b\x55\x93\xec\xdd\xfc\x68\xf3\x6a\xb6\xfe\xf5\x53\xff\x86\xde\x80\xe1\xdf\xd1\x75\x89\xb5\x37\xaa\x73\xba\x5f\x73\x9d\x7e\xfe\xdc\xe9\x6f\xb9\xab\xff\x16\xec\xad\xf7\x75\x7d\x05\xd5\x21\xfd\x1e\xf8\x41\x2c\xee\x00\xbc\xea\x9e\xbe\x1e\x1f\x28\x0f\x87\x87\x11\xd4\xf4\xa5\x26\xd5\x35\x65\x4b\x65\x77\xc5\x18\x14\x71\x5a\xba\xf6\xeb\xe6\x73\x2b\xce\x50\x2d\x5c\x3b\x63\xb7\x94\x2e\x15\xae\x99\x8d\xef\x20\x1c\xd5\x4e\x6f\x41\x39\x6c\xb6\xef\xdc\xb5\x9b\xbb\xd8\xbb\x6d\x4b\x30\xd4\x65\x28\x64\xdd\x7d\xeb\x26\x6f\xe3\x76\x2b\x01\xf0\x6f\xda\x0d\xc8\xb8\xa6\x00\xfb\xc4\xab\x33\x5d\x7b\xc1\xde\xb5\xfe\xcd\xc3\xf6\x7f\x73\x70\xea\xef\xff\xcd\xe6\xd4\x0d\x53\x2d\x4a\x52\xd3\x13\x2e\x37\x06\x6c\x2b\x5a\xf2\xf7\x1b\x56\xbd\x29\xff\x17\x47\x6f\x10\x8b\xed\x4d\xb4\x4d\xa9\x1b\x39\x9b\x56\x33\x6e\xae\x07\x72\x63\xd4\xca\xd5\x6d\x8e\xd9\xdd\x9a\xa3\x59\x58\xd9\xdb\x41\xcd\x18\xa1\x05\xa8\x48\x70\xb0\x5a\x59\x76\x67\x3d\x9e\x86\xe9\x91\xc4\x5d\x83\x36\x5b\x6f\x11\xd5\x2b\xd9\x12\xfa\x4f\x7a\xbd\xbe\xe8\xa3\xc5\x1c\x05\xe8\xed\x00\x05\xa2\x8f\x42\xf5\x7d\x34\x40\x6b\x1a\x49\x90\x7c\xa3\x37\xdf\xf1\x5f\x8e\xe5\x34\xcf\x64\x2e\xa2\x3c\x8d\xc8\x9e\x73\x7d\xbe\xc9\x55\xe4\xf7\x7a\x5d\x67\x12\xaf\x05\x86\x80\xaf\xb1\x8a\xec\xee\xf5\xba\xa4\x8f\xe4\x14\x05\x60\x1d\xb8\x8f\x32\x89\x02\xed\x39\x10\x89\x08\x05\xf7\xf5\x67\x1a\xa1\x40\xe5\x22\xeb\x35\xa1\xa9\xd6\x69\x70\x0f\x2b\x10\xac\x7f\xd5\xd1\xc9\xda\xa5\x72\xf1\x42\x14\x49\x0b\x04\x64\xe4\xca\x80\x54\xd4\x77\x81\xe9\x4c\x0e\xe0\x85\xd1\xf4\x7b\x2d\x98\x7d\x64\x2f\x98\xf3\xcf\x36\x58\x7d\xbf\x49\xe0\xc9\x7a\x0e\x2c\x7c\xb1\x82\x16\x4b\x77\x93\x8a\x3d\x33\x63\xd1\xd1\x24\x81\x71\x47\x67\xda\xd1\xe6\xd7\x06\xe6\x78\x9d\x6d\xda\x53\x51\xb1\x3a\xeb\x09\x23\x5a\x7b\xb3\x20\x70\xe6\x3f\x0a\xfc\xdb\x2f\xf4\xe0\xa7\x6e\x77\x97\xef\xf5\x1e\x1c\x74\x7f\x7e\xe4\x59\x61\xf7\xf3\xe8\xc4\x5d\xbe\xa7\x32\x17\x79\xbe\xf8\x79\xb6\xd0\x06\x61\x06\xc6\xfd\xd5\xf0\x7c\x10\xec\x8b\xc0\xda\x3e\xc1\xb1\xfe\x06\x53\x05\x26\x1a\x11\xfa\x56\x7f\x4e\x11\xa1\xef\xf4\x67\x84\x08\xfd\x53\x7f\x5e\x23\x42\xff\xd2\x9f\x03\x44\xe8\x2b\xfd\xf9\x3b\x22\xf4\xbd\xfe\x5c\xf9\x96\xd0\x5e\xde\xa1\x6d\x15\xc9\x52\x30\x0d\x3c\xe4\xa3\xe0\x4d\xf8\x46\xb7\xf8\xb9\x60\x2f\x45\x49\x91\x49\x35\xf8\x0f\x1d\x5b\x44\x7c\xb4\xd9\xb4\xc5\x10\x42\x5f\xe8\x08\xed\x86\x9f\xd0\xdf\x74\x10\xbc\xef\x13\xfa\xbb\xc9\x6d\x4c\xa0\xd1\x1f\x74\x58\x3b\xda\x27\xf4\x57\xe1\xc9\xd4\xd0\x4f\x82\xdd\x64\x59\xf0\xe0\x01\xcd\x82\x07\x0f\xe9\x5c\xfd\x9b\x06\xfb\xfb\x34\x0a\xf6\x0f\xe8\x20\xe8\xf5\x3c\xff\x59\x5a\x1f\xc9\xda\x7f\xb2\x8f\x2f\x25\x26\x35\x96\x79\xde\xa3\x3b\x3b\x82\x72\x9a\x12\xe8\xa4\x4c\x6b\x96\xb6\x48\x8b\xe1\xc3\xfc\x49\x97\xb4\x31\x7f\xdc\x25\x79\xde\xf2\x3c\x03\xa7\xe9\x6d\x32\xce\x35\xaa\xb0\x25\x2d\x4c\xfd\x58\xa7\xda\xcb\xa4\x63\xc3\x79\x23\x0d\xe2\xb3\x34\x2d\x12\xb5\xc9\xbf\xc4\xcb\x6d\xad\xfe\xb1\x23\x2c\xc0\xd2\xb1\x64\x47\xc6\xe6\xb1\xb8\xc7\x0e\xba\x94\xab\xff\x87\xda\x12\xd6\x11\x4e\xf6\x7a\xfb\x84\x86\x2c\xb9\xc7\x7a\xfb\x34\x63\x29\x1d\x33\x49\x67\x8c\xd3\x25\x13\x7d\xd1\x91\xc9\xf3\xf8\x2b\x8f\xf0\x7d\xdf\x47\x58\xa7\xdf\x6d\x69\x1f\x61\x01\x42\x74\xc1\xcc\xaa\x3e\xb5\x22\xfd\x80\x8d\x2d\xac\x5c\xf7\xdb\xee\xb1\x96\xdc\x9e\xb0\xc5\xe3\x6e\x1f\xb5\x91\x2a\x15\x31\x51\x69\xf3\x0e\x53\x51\x0b\x62\x73\x4c\x8b\x1c\xd0\xcd\x6a\xfa\x85\x07\xc1\x1f\xa3\x4a\x3e\x7b\xf0\x4c\x5a\xe8\x2d\x6a\xe1\xb8\x1f\xb5\xe2\x16\xfa\x08\x36\xf9\x5b\x38\xec\x47\xad\xb0\x85\x06\x26\x98\xf5\xa7\xad\xac\x85\x8e\x4d\x70\x9c\xe7\xb3\x3c\x5f\xf6\xd1\x99\x8d\xe8\x5f\xb4\xc6\x2d\xf4\xd2\x04\x67\xfd\x8b\xd6\xac\x28\xbd\xec\x5f\xb4\x96\x2d\x74\x0a\x41\x58\x48\x49\x5a\xb2\x71\xe8\x5e\xff\xd2\x5b\xf4\xd9\x74\x97\x4c\xfa\x9a\x26\xa9\x5a\x86\x5b\x04\x38\x61\x7f\x96\x9f\x52\x4b\x42\x5b\xaf\x45\xdd\x08\xf9\x16\xc2\x5d\x0e\xbd\x94\xfc\x19\xf1\x4a\x1b\x6b\xa8\x65\xdd\x0d\x95\x5e\x8e\x29\xd4\x52\x4c\xa2\x17\x6f\x25\xd0\x4c\x21\x08\x58\xd5\x16\x13\x0b\x9f\x4e\x03\xc6\x66\x75\x75\x6b\x09\x05\x88\x84\x4f\x2b\x07\xa4\x46\x28\x8a\xea\x99\xfc\xcf\x44\x41\x63\xf7\x08\xe4\x75\xda\x39\xdf\x2d\xd0\x36\x25\xc2\xbb\xca\xa7\x3a\x51\x4b\x75\xe0\xb0\xcd\x91\x57\x1b\xc3\xbc\x04\x97\xf5\xdd\xac\xd2\x99\xd6\x75\xd3\x32\x80\xea\x9b\x18\x15\x36\xa7\xac\xa4\xee\xc5\x54\xcb\x06\xba\x67\x4a\x73\x33\xfe\x5b\x60\x49\xa8\x55\x76\x33\x3a\x68\x56\x28\xa2\xa2\xdb\x66\xa3\xf7\xee\x1f\x7a\xaa\x71\x2e\xb6\xb7\xaf\x5f\xee\xeb\x6a\xf7\xa4\x1b\x9f\x56\xd6\x47\x51\xbb\xd6\x67\xb3\xeb\x72\xef\x51\x2b\xb5\xc6\x3a\x0a\x85\x32\x9b\x6a\xfb\xe3\xab\x89\x99\xb4\xfd\x07\xbb\x2a\x19\xac\x85\x94\xf4\xbd\xdc\x25\xfc\xa0\x0b\x39\x0e\xf8\x83\xb2\x76\x97\xc9\xf0\xd3\xc1\x83\xae\xce\xd1\xe3\xf7\x2d\x88\x42\xb5\x30\xd8\x54\x57\x80\xa6\xec\x4a\xd2\x4a\x9d\x45\x11\x39\x4d\x93\x6b\x50\x44\x7a\x96\xa6\x49\x8a\xd1\x7b\xf1\x45\x24\xd7\xa2\xb1\x14\xb1\x6c\xa0\x96\xba\xcc\xf5\x32\xf1\xed\xf3\xb0\x0f\x42\x47\x9a\x63\x91\x1d\x0b\x9b\x49\x6f\x84\x5f\x4c\xf8\x25\x6c\x80\xb7\x26\x74\xac\x36\xe5\x3b\x13\xd0\x62\xe1\x7f\xda\x82\x7a\x57\xfc\x65\x82\xbf\x5b\xe9\xfa\x57\x26\xe2\x23\xec\x8f\xf7\x10\xfa\x8e\x76\x45\xf5\x9a\x2f\xa1\x64\x66\x08\x8a\x29\xf7\x27\xf9\x5e\x6f\x7f\x77\xff\xe1\xcf\xfb\xfc\xa0\x75\xbf\xf7\xf0\xfe\x01\x3f\xd8\xbd\x2e\xad\x02\x75\xa1\x00\xba\xa0\x9a\x61\xd0\xb3\x8d\xd3\xab\xf0\x21\x59\xb3\x4b\x68\xe8\xad\x37\x9a\x95\x56\xb9\xba\x9e\x36\x0e\xbe\xf8\x09\xeb\x36\x9b\x21\xfc\xcf\x9e\xb0\x6e\x9e\xc7\x8f\x21\x06\xfe\x67\x8f\x55\x0c\x8e\x5b\x4c\x77\xec\x54\xa8\x85\x9b\x91\x56\xa8\x2e\xbe\x2e\xcd\x58\x97\xd0\x71\xf9\x64\x8b\xef\xa9\x8b\x56\x5d\xa2\x31\x68\xac\xd0\xb1\x3b\xd7\xc0\x61\x40\x71\xa9\x8e\xdd\xc1\x26\x55\x82\x60\x47\x58\x9a\x04\x7d\xb2\x89\x7b\xfb\x0f\x68\xd8\x82\xfb\x78\xff\x81\xba\xac\x8f\xf0\xbf\x05\x0e\x09\xa1\x59\x8b\x25\x34\x6c\x33\xdd\xa2\x04\x74\x72\x8f\x30\x8c\x20\xcd\xe0\x42\x1e\x6b\xe9\xf8\x50\x55\xa3\x67\x3f\xa3\x63\x73\x10\xa6\xc5\xf1\xb7\xcd\x9c\xd1\x6f\x4e\x9a\x33\x49\xb7\x19\x6c\xd0\x87\x10\xad\x59\x16\x43\xde\x42\x19\x1a\xe1\x62\x3a\x4b\x63\xf4\x1c\x16\x9a\x0d\xfd\x21\x74\x06\x3d\x16\x1f\x21\xa4\x07\xe0\x05\x7c\x43\x3f\x7e\x83\xcf\x8a\x6a\x85\x6b\xc9\x91\x13\xc1\xce\x30\xd9\x7b\xa4\x5b\x6d\xba\xfd\x3b\x94\xd4\x1d\xff\x41\x03\x37\xd6\x2d\xee\x78\x34\xdf\x05\xf3\xaa\xd1\xee\xa0\x55\x23\x07\x56\x4a\xe5\x37\x10\xbe\x0c\x2f\x32\x30\x7d\xf5\xab\xc0\x6a\x07\x02\xf6\x4e\x68\x5c\x84\x41\x5c\x35\x2c\xc2\x53\x15\xce\x8a\x70\xa4\xc2\xe3\x22\x3c\x50\xe1\x59\x11\x5e\xa9\xf0\x92\x25\x8f\xd9\x27\xd1\xc9\xb2\x66\x13\x4c\xe4\x25\xa3\x3c\x4f\x1e\xab\x18\x88\x30\x31\xf1\x63\xd6\x53\xe1\x39\x82\xc0\x27\xd1\x99\x43\x70\x8e\x68\x3c\xca\xf3\xd0\x24\x4f\x11\x04\x3e\x89\xce\x14\x82\x53\x44\xc3\x51\x9e\x67\x26\x39\x42\x10\xf8\x24\x3a\x11\x04\x23\x44\xb3\x51\x9e\x8f\x4d\xf2\x00\x41\xe0\x93\xe8\x0c\x20\x38\x40\x74\x3c\xca\xf3\x99\x49\x5e\xa9\xe4\x21\x5a\xad\x10\x9d\x39\xd9\x8a\xe5\x70\x7f\xc4\x24\x5d\x0e\xef\x8f\x58\x8b\x3f\xe9\xd2\xe5\xf0\xc1\x88\x09\xca\x53\xdf\x21\xcf\x92\xac\x8d\xfc\x32\xf7\x04\xb8\xb8\x16\x67\xf2\xa4\x3d\x30\x9c\x47\x54\x10\x42\xa5\x6f\x49\x46\xe8\x05\xe3\xeb\x84\xa6\xa9\x8e\xa9\x04\x41\xb5\x4e\x07\x0a\x2b\x01\x2e\x60\xad\x04\x68\x58\x99\x2d\x7c\x82\x91\x17\xdc\xb4\x67\xec\x59\x1a\x2f\xe9\xe3\x59\xca\xb9\x81\x45\x22\xe3\x31\x07\x73\xc6\xe3\x70\x11\xcb\x70\x96\x11\x44\xd3\x94\x40\xdd\xc6\x72\xc1\x7b\x8c\xfe\x34\x96\xdb\x96\x22\xfe\xaa\x8d\xb9\x7d\x35\x31\xe6\x54\x37\x3e\x49\xbe\x16\xe6\x50\xff\x34\x0e\xd1\xfb\x9f\xa3\x16\x78\x84\xb8\xe9\xd1\xfb\x6b\xd2\xdf\xd3\x76\x30\xff\x44\xf5\xf6\x24\x0b\xbf\x55\x3d\x7e\x7f\xd7\x37\x4b\x0f\x4e\x77\x8d\x61\x4d\x55\xd1\x77\x8a\x5f\x2b\x3c\x46\x3b\xb8\x32\x4e\xbd\x18\xda\xef\xec\x3f\xe8\x74\x11\x95\xec\xa9\xa4\x69\x67\x22\xd8\x37\x41\xe1\x88\xa8\xd9\xfb\xc7\x12\x23\x6b\xf4\x01\xd1\xe1\x48\x0b\x40\x69\x7e\x97\xf3\xd4\x44\x55\x9b\x14\x88\xb0\x4e\xe7\x50\x83\x00\x1b\x14\xdf\x85\x20\x7c\x3b\x37\x05\x84\x50\x72\x95\xd4\xb7\x1f\x98\x04\x2d\xdb\x47\x55\x0c\x04\xe2\xd5\x6f\x49\xeb\xb1\x38\x4b\x9f\x6a\x77\x0f\x5c\xb7\xf2\x16\x91\x1a\x23\x83\xe8\x28\x5e\x95\x3f\xce\x40\x88\x6b\x4c\xdd\xaa\x8c\xd4\xb8\x59\x9b\xe8\x17\x34\xed\x44\xc6\xee\x35\xfb\x0d\x52\x32\xed\xc3\x8e\xad\x68\x5a\xff\xc4\xe8\x31\xc1\x9c\x94\x21\xb2\x39\x75\xad\xb5\x12\xf4\xae\x3b\xf5\x0e\xb3\x8a\x42\x18\x60\x78\xfb\xe6\x42\x37\xec\xd8\x36\xf4\x9d\x74\x23\x71\x8b\x28\x4e\x79\x38\x20\xa3\x6e\x5d\xfd\xa3\xe3\x77\x3a\x36\x88\x85\x2e\x1d\xf1\x49\x2c\xf8\x6b\x3d\x98\x53\xe9\x94\x25\x4c\xcc\x86\xe9\x0e\x2b\xef\x59\x78\x23\x61\x63\x69\x64\xfc\x71\xca\x26\xd6\x98\x7a\xc2\x52\x2b\xc4\xa5\xe8\xeb\x67\x38\xa1\x92\x50\x2c\x60\x3f\x9c\x62\x49\x60\x84\xb8\x90\xa6\xa2\x19\x48\x15\xce\xb4\x2c\x20\x8d\x0a\x37\xb0\x1a\x34\x24\xa8\x63\xae\x08\x95\xca\xf7\x75\xc9\xcd\x84\xa0\x54\xde\xb8\xd8\x84\x90\x3b\x3e\x21\x54\xcc\x51\xdd\xb5\x7b\x86\x67\xb2\x34\xd8\x9b\x13\x75\xeb\x70\x7b\xd3\x25\xd4\x49\x3c\x8b\xbf\xf1\xf7\x22\x96\x19\xfb\x42\xd3\x12\xa7\xe5\x9d\xa2\x1a\xaa\xba\xfa\x06\xae\x67\x88\xfd\x57\x11\x20\x9b\xc3\x17\x84\x6d\x36\xf1\xaf\x82\x71\xd0\xa4\xa8\x40\x3e\x9b\xa6\x3c\x9b\x26\xb3\x2d\x54\xa0\x06\xbe\xc3\xd8\x27\xa1\x87\xda\xd5\x26\xfb\x10\x15\x60\xf8\x61\x92\xa2\x0c\x08\xaf\x66\x13\xc3\x85\xcb\x64\xbb\x47\x54\x8d\x50\x65\xd9\x86\x65\xbd\x39\x4c\xb0\x19\x89\x25\xd5\xbc\x2d\xd0\x2e\xb1\x74\xd5\xe3\xf6\x41\xbf\x30\x77\x19\x88\xc7\xed\x5e\x1f\xcd\xc2\x4c\x6a\x8b\x1d\xe2\x71\x57\x07\x8f\x15\x79\x24\x1e\xf7\x74\x66\x13\xda\xef\x23\xe3\x25\x52\x85\x1e\xe9\x90\x2e\x58\xc0\x84\x1d\x6d\xb9\x0d\xfa\xbc\x7d\x79\x36\x78\xfd\xf0\xfc\xf9\xe0\x8c\xdd\x1c\x1f\x9d\x3d\x3b\x7b\x35\x78\x76\xfe\xfa\xe4\xe9\xd1\xeb\x60\xc3\x86\x3f\xa2\xe5\x1c\xe7\xa7\xcf\x9e\x9e\xbc\x39\x3e\xdd\xcc\x19\x28\x9c\xa3\x92\x79\x50\x9f\x0f\xd4\xda\x21\xaf\x9f\x8c\xa8\x2a\x19\x20\x53\x2f\x80\x71\xb5\x15\x55\x40\xfc\xc0\x8b\xd2\xd0\x3e\x3c\x7b\xf6\x5b\x00\x06\xb9\xdb\xc3\x0f\xa3\x0f\x1f\x10\x1d\x9c\xbc\x39\x7b\xe9\x2a\x50\xe3\xb0\xc6\x64\x4d\x7c\xfb\xa1\xf8\xfe\xcf\x04\xae\x29\x5a\x5d\xda\x48\x5d\xda\x5a\xb5\x1b\x19\xf7\x59\x02\xdf\x07\x17\x1e\xf8\xa1\x42\xe7\x04\xee\xfd\xa4\xd0\x38\x81\xbb\x0a\x7b\x13\x1d\x85\xbf\xd3\xb1\x8a\x57\xd8\x9a\x0a\x8f\x15\x9a\x26\xf0\x03\x42\x17\x10\x5e\x12\x3a\x51\x50\x7a\x84\x46\x4c\xe0\x7d\x42\xa7\xc6\xf9\x29\x8e\x3b\x21\xc1\x37\x6b\x3a\xe9\x9c\xa5\xa1\xc8\x62\xd5\x14\x35\x6b\x8b\xb3\xd5\x82\x67\xf4\x66\x3c\x8d\x67\x51\xca\x45\x30\xeb\x84\x1d\x70\x42\xa5\x12\xf0\x50\x05\xc3\x34\x0d\x57\x27\x13\xac\xbe\x45\x12\xa9\xeb\xdf\x7c\x8d\x08\x95\xe1\x65\x10\x75\xfe\xa2\x17\x61\xc6\x9f\xce\xc2\x2c\x03\x08\x5a\x0d\xa2\x88\x3c\x1a\xab\x5d\xe3\x27\x8d\x55\xf4\x9b\x70\x5e\x8e\xcc\xb2\x41\x12\x2d\x67\x3a\x52\x1b\x35\xa2\xb1\x10\x3c\x7d\xc7\x27\x75\x4d\x33\x59\x3c\x10\xea\x53\x8d\xf5\x88\xac\x09\xbd\xb8\xb5\xfb\x86\xd6\x7e\x9b\x26\x8b\x8c\xde\xa8\x8e\xa0\x28\xbe\x42\x5e\x57\xd0\x24\x8c\x38\xda\xe8\x06\xca\xa6\xc9\x35\xa2\x32\x9e\xf3\x64\x29\x83\xa8\xc3\x3b\xcf\xc3\x88\xd3\x70\xb1\xe0\x61\x1a\xec\x74\x29\x17\x92\xeb\x8f\xaf\xb1\x54\xbf\xb1\x00\xf7\xd7\x05\x67\x77\xee\x3b\x5a\x96\xe1\x25\xf8\xdc\x76\x15\xd1\xd8\x0f\xe9\x6a\x69\x08\xae\x41\xcc\xb0\xd1\xb1\x0a\xd9\xf1\xa2\x33\x15\x32\x73\x48\x97\x8c\x77\xec\xa8\x15\x4b\x20\x51\x63\xc0\xe9\x10\xc9\xf0\x12\x51\xe4\xa0\xfb\xdf\xba\x26\x44\x91\xab\x47\x7d\xdb\x5a\xd4\xb7\xa9\x03\x51\x64\x6b\x40\x23\x6f\xa0\xa3\x4e\x4c\xf0\x94\x46\x9d\x31\xa1\xf3\x22\x72\x6a\x23\xed\xb9\x94\x75\x42\xe3\x3d\xf6\xd9\x8c\x83\x6e\x8e\x3f\x35\xf4\xa2\x2c\xa2\xae\x5f\x75\x10\x8c\x2a\xd7\xd6\x99\xe8\xa4\x80\x7e\x49\xf0\x02\x13\x1c\x52\x41\x93\x66\x33\x26\xf4\xb6\x7a\x24\x35\xe5\x52\x58\x13\xc5\x3a\x9c\xac\xe9\x9c\xde\xa4\x7c\x12\x2c\xd7\x84\xce\xc0\x3d\xdf\xbc\xd8\x23\x6c\x4a\xe7\xa5\x25\xc3\x2e\xa8\xec\x84\x6c\xbe\xa6\xb4\x7c\x28\x17\xdc\x7b\xec\x49\xd7\xf3\xaf\x8b\x24\x95\x19\x13\xd6\x1f\x71\x98\x65\xf1\xa5\xc8\x73\xbf\xa3\xce\x5f\x24\xeb\x1d\xca\xc7\x0e\xfb\xb1\xf6\xb2\x64\xab\x65\xcf\x7c\x97\x36\x94\x85\x31\xaf\xb4\x11\x8b\x86\x20\xa6\x82\xc2\xb4\x4b\xd9\x8d\xb1\x3e\xa0\x04\x05\xbf\xe0\x5a\x40\x63\x98\x8e\x9c\xa6\x20\x5f\x53\x61\x70\x30\x38\xc4\x0a\x1c\x6c\xed\xf5\xe2\x3b\x27\xda\x4e\xf1\x1a\xa2\x1f\x27\xd0\x52\x68\xd4\x28\xf2\x94\xa3\xce\xcf\xdf\x3d\x3b\x7a\x7a\x76\x7e\xfc\xec\x8f\xb3\x93\x93\xd7\xa7\xe7\x2f\x5e\x9f\xfc\x72\xf4\xfa\xfc\xe5\xc9\xc9\x6f\xe7\xe7\xcd\x66\xdd\x95\x7c\x7b\x99\xce\x78\xca\xc7\x5f\x8e\x9f\x3e\x23\x37\xdd\x43\x99\xae\x6e\xee\x98\x5d\xa1\x47\x63\x30\xce\x2f\xc9\xcd\x38\x11\x59\x32\xe3\x1d\x0e\xac\x37\x49\xd6\xeb\x35\xd8\x23\x70\x9d\xc7\xbd\xee\xfe\xdd\xce\xf4\x0c\x0b\xdc\xeb\x3d\x20\xea\x60\xd7\xdf\x3f\x03\xb1\xae\xbe\x0f\x1e\x00\x9d\x0e\x9f\xfb\xbe\xa3\x97\xac\xec\xaa\x9b\x77\xce\xcf\xb9\xd9\x82\x7d\x1e\xdc\x58\x1e\x21\x5f\x7b\x13\x72\x53\xec\x9e\x20\xb4\xeb\x94\x16\x91\x2f\xd2\x64\xb9\x08\x62\x97\xf2\x4e\xbf\xac\x78\xa5\x12\x97\xf6\xf4\xf4\xd4\x8b\x77\x26\x57\xd7\xdf\xe9\x71\xf1\x20\x55\x7e\x30\x70\x6e\x9c\x35\x43\xe8\x98\xa7\xf1\x15\x8f\x4e\xa5\x71\x1d\x0d\x9b\x49\xb3\x61\x16\x70\x14\xc3\x67\xa6\x92\xad\xb2\xab\xc2\x8d\x1c\x3e\xe5\x14\x75\xb9\x04\x18\xa5\x37\xd5\x44\x0d\x5d\x39\xd9\xb5\xb9\xac\xa6\x71\xa7\x56\xf9\x5c\x01\xd3\x14\xe1\x35\x45\xf4\x85\x36\x7d\xd3\xb9\x88\x85\x33\xd3\xe7\x1a\x13\x1b\x63\xec\xe9\xca\xaf\x58\x77\xd2\xb0\xea\xa1\x9b\x87\x45\xbc\x55\xd0\x80\x78\x66\xc5\x08\xcf\x53\x1e\x8e\xe5\x2b\x75\xfc\x89\x70\x76\x2a\xc2\x45\x36\x4d\xe4\xf3\x59\x78\xc9\x76\xba\xb7\xe6\xd1\xb5\x5c\x72\x69\x23\x34\xb9\xfb\x1e\x68\x12\x38\x03\xd6\x93\x58\x84\xb3\xd9\xea\xc6\x6b\x84\xf0\x1b\x91\x7a\x8e\xc1\x42\xff\xd6\x2a\x9e\x98\x80\x05\x96\xe7\x3b\xb2\x13\x67\xef\x54\x33\x9e\x26\xf3\x45\x22\xb8\x90\x64\x83\x91\xfd\x34\x14\x8d\x44\xcc\x56\x8d\x45\x32\x5b\x4d\xe2\xd9\xac\x01\x47\x70\x63\x6c\x8b\x64\x08\x1e\xf3\x8a\xbd\xef\x29\x53\x6e\x9d\x29\xff\xac\x28\xf2\xcb\x6d\x3d\xb7\x1c\x3a\x6e\x6c\x2f\x69\x62\x53\xff\x68\x8d\xf5\x72\x13\x3c\xdd\xec\x8e\x6b\xe8\x87\x78\x36\x1b\x24\x4b\x21\xfb\x82\xa1\xcd\x58\x54\x4b\x51\xc8\xce\xfb\x37\xa7\x47\xcf\x9f\x9d\x6f\x16\x00\xae\x13\xda\x9a\x8c\x08\xbd\x43\x83\xde\xf1\x31\x8f\xaf\x38\x0c\x4a\x3f\xac\xb4\xcb\x4f\xfc\x3b\xcd\xf3\xcb\x35\x9b\x38\xac\x6f\x65\x09\xfa\x9d\x1a\xab\x27\xa3\x9f\x55\x9a\xa9\xa3\xff\x4e\x03\x75\x89\x66\x13\x67\xf5\x4d\x33\x10\x09\xb5\x9b\xd8\x3a\x5d\x66\xa1\xfb\xca\xf4\xca\x1e\x03\x39\x95\x2d\x66\xe1\x4a\xa1\x05\x79\xce\x3b\x42\xe1\x5b\x33\x56\x4b\x20\x6e\x5d\x91\x7d\xb4\xf5\x54\x21\x28\x40\xdb\xb6\x24\x41\x87\x7a\xcb\xb8\x77\x9f\x2c\x9c\xf0\xc6\x8c\x5f\x86\xe3\x55\x63\x16\x4f\xf8\x78\x35\x9e\xf1\x4c\x7b\xa3\x17\x89\x6c\x5c\xf0\x86\xba\xd0\x79\x04\xca\xbc\xc5\x36\x6a\x2c\xb3\x58\x5c\xc2\xd6\x73\x91\x8d\xa3\xb7\xaf\xb2\xce\x67\xf1\x59\xa0\xd6\xb8\x85\x1a\xcb\x8c\x67\x0d\xd4\x9a\xb5\x50\xe3\x62\x29\x1b\xe1\x2c\x4b\x1a\xe3\x44\xc8\x30\x16\x19\x30\x0d\x27\xc9\x6c\x96\x5c\x2b\x38\x1b\x2d\x08\x50\x0b\xdb\xe1\xec\xa3\xcf\xa2\xd1\x40\x2d\xa1\x1f\xa5\xed\xd8\xda\xe8\xb0\x14\x9d\xd9\xe8\x0c\xa2\x91\x6a\xce\xd9\x94\x37\xc2\x8b\xe4\x8a\xfb\x5d\xcc\xa6\xc9\x72\x16\x79\x2e\xf7\x3b\x8d\xd7\x3c\x4c\x85\xd6\x58\x0e\x2f\x92\xa5\x04\x1e\x7b\xc3\xe8\x36\x37\xa6\x3c\xe5\xc1\x67\x31\x95\x72\x91\x05\x7b\x7b\x93\x8b\xce\x9c\xef\xc1\xb9\xd8\x0e\xb3\x95\x18\xb7\xdd\x40\xb4\x5d\x35\xed\x69\x92\x7c\xc9\x10\x59\x6f\xd9\xf0\xb7\x9d\x39\xb8\xee\x34\x60\x29\xbd\x65\x4f\xb2\x64\xdb\xce\xd8\x76\x54\xdd\x6c\x39\x0c\xbd\x4a\x8e\xe3\xc8\x64\xae\x3b\x6e\xd5\x22\x71\x87\xed\xd6\x75\x57\x5d\x3d\x72\x1a\xca\x46\x94\xc0\x12\xd3\x98\x5b\x63\xb3\x3e\x4c\x1a\x89\x80\x85\xe2\x2e\x03\x44\x0e\x6b\x77\x39\x8b\xe1\xac\x5d\xb2\xba\x76\x1f\xd6\x45\xde\xaa\xab\xbb\xfd\x4a\xec\xdf\x96\x21\x10\x87\xcb\x8a\x18\x7c\x4a\xd6\x05\xea\x2b\x3a\x0a\xe1\xa3\xa2\x13\x61\x49\x91\x1d\x35\x54\xe7\x0b\x26\xd4\xbc\xe7\xf3\xf3\x6c\xb9\x58\xa4\x3c\xcb\x8e\x0d\x67\x3e\x4e\xc4\x07\xbd\x20\xd5\xed\x9c\x7c\x37\x47\xfc\xbd\x1c\xeb\x0a\x81\x51\x60\x7d\xd5\xf8\x82\x0f\x63\x68\x00\x4d\xfb\x60\x8f\x18\x50\x88\x6c\x41\x19\x78\x58\x10\xe3\x54\x61\x9a\x90\x76\x7e\xce\xfe\x0e\xba\xe7\x33\x33\x19\xb3\xb7\xab\x71\x2f\xad\x99\x9a\xb5\x8c\xcf\x2d\x79\x6f\xd6\x34\xb6\x1d\xf8\xc2\x57\x0a\x1d\xf6\x74\xdd\x63\xdf\x7a\xb0\x60\xf1\x30\x1d\x51\xd9\x89\x45\xc4\xbf\x9e\x4c\xb0\x20\xf0\x18\x8b\x93\xa1\x18\x69\xc5\xd8\x42\xfd\x5d\xa3\x73\xf1\x04\x1b\xd8\x97\x5c\x7a\x64\xd1\xe9\x6a\x7e\x91\xcc\x32\xeb\xb1\xef\xb6\x3c\xff\xa0\x41\x1b\x34\xd9\xc2\x80\x7c\x95\x3d\x13\xcb\x39\x4f\xc3\x8b\x99\x79\x39\xe0\x54\x00\xc7\xd7\xf5\x60\xed\x7a\x60\xd6\x65\x58\xbb\x20\xd3\xf5\x77\x19\x4d\xf5\x2b\xc7\xbe\x8b\xd3\x90\x66\xfa\x3d\xd3\x60\x79\xe3\x92\xad\x64\x49\xc6\xcc\x3b\x59\x06\xb1\x88\x27\x31\x8f\x1a\xfc\xeb\x98\x2f\x34\xf6\x3d\x1e\x2f\xd3\x94\x47\x87\xfa\x49\x6a\xca\x1b\x22\x11\xed\xb9\xcd\x18\xf1\xab\x06\x17\x57\x71\x9a\x08\x45\x50\xc2\x89\x03\x97\xcc\x72\x36\x6b\x00\xb1\xd5\x98\xf3\x2c\x0b\x2f\x79\x23\x14\x51\x23\x8c\x22\xa0\x40\xc2\x59\x63\xca\x67\x8b\xc9\x72\x66\x0f\xfa\xac\x83\xb4\xfd\x1c\x68\xe5\x8c\x0d\xbd\x0e\x8c\xe8\x92\x75\x0f\xb1\xdf\x54\x59\xd2\xae\xbe\xac\x1b\xbb\xd9\x70\xd9\x6a\x8d\xd6\x84\x10\x02\xd7\x3d\x43\xaf\xc4\x55\x98\xc6\xa1\x90\x8d\x3f\xe2\x64\xa6\x0d\x63\xac\xf5\xf1\x3a\xee\x4c\xd2\x70\xce\xb3\xb3\xe4\x6d\xb2\x60\x3d\x3a\x5e\x7f\x6f\xaf\xf8\x4f\x59\xa9\xc7\x21\x48\x3c\xf1\xbe\xa4\x16\xc1\xd0\x2b\xae\xd9\x44\x19\x7c\x6c\xa4\x74\x62\xc9\xd3\x50\x26\x69\xbf\x4e\xe2\xdb\x5c\x61\xeb\xa0\xee\x11\xbe\x9e\xbe\xb6\x15\x96\xcf\x06\xc6\x5c\xfc\x8e\xfd\x2e\x16\x73\xdf\xb6\x2e\x70\x35\x92\x12\x59\x66\x28\xa1\xc2\x26\x79\xf7\x50\x3c\x96\x76\xdf\x08\xcb\xd6\x48\x99\x04\x9d\xfc\x0e\x77\x5b\x82\xf9\x81\x3c\xdf\xe9\xd1\xb4\xe3\xfc\xb1\xaa\xf4\x1d\xfb\x46\x89\x62\xd1\x48\xc1\x35\xf6\x75\x1a\x4b\x93\x46\x0c\xb7\xc7\xbc\xcb\xd8\x7d\xac\xa6\x41\x1d\x2d\x70\xf8\xfb\xd4\x4d\xe9\xdd\x41\x82\x8a\x7d\x7f\x1b\x04\x49\x6f\xa0\xe2\x40\xd0\xa2\x89\xc1\x4e\x97\xfa\xed\x53\x61\xdb\x1e\x60\x01\x06\x7c\x28\xe1\x21\x7a\x5d\xa6\xf7\xef\xce\xfa\xd1\x68\x94\xcf\x00\xea\xfb\x81\xe0\x66\x4d\xd3\xd2\xf1\x29\xc8\x61\xdd\x4c\xdf\x76\xc2\xa9\x71\x64\x30\xd2\xe3\x50\xde\x7a\x5e\x62\x41\x3a\x93\x78\x26\x79\x8a\xeb\xcc\x4a\xd4\x16\x3d\xe6\xd9\x38\x8d\x17\x32\x49\xb1\xa0\x9c\x78\x33\x0c\x3b\x90\xa6\x9d\x49\x92\x3e\x0b\xc7\x53\x5c\xa2\xde\xcd\xfc\x0c\x25\x38\x4f\x2c\x2e\x6d\x37\x90\xe3\x7a\x5f\xdf\x1a\x87\x02\x13\x31\x9d\x38\xd3\xa6\x62\x0a\xcd\x1c\xbe\xc6\x9c\xf8\x6c\xb8\xe2\x61\x65\x38\xa2\x29\xdc\xe1\x6c\xa7\x47\x63\x63\xdc\x04\xd8\x4a\x76\xb6\x42\x9a\x31\x3e\xac\x6c\xc5\x11\x26\x87\x3b\x38\x65\x38\x64\x59\x47\xf0\xaf\x12\x13\xd2\x89\x12\x01\x66\x5f\x84\xb6\xb4\x1f\x6a\x71\x29\x42\x15\xe1\x6c\x0d\xe2\x2b\xe4\x8e\x1c\xaa\x2a\xc9\xa1\x61\x47\x8d\xc9\x4d\x02\x48\x02\x1b\x17\x94\x7a\xba\xba\x49\x35\xdd\xc2\x58\xd6\xd1\xfd\xc8\x73\xfb\x85\x0b\x9a\x3e\x9e\xe0\xc4\xe0\x84\xb1\xc3\x72\xc4\xda\xb8\x3d\xf0\x8e\xc1\x02\x6f\x3c\x5b\x2d\xb8\x39\xe1\x5f\xe9\x67\xe0\x46\x28\x25\x9f\x2f\x64\x43\x26\x8d\x88\xeb\x23\x61\x99\xea\xb3\x1d\xba\x7c\x61\x84\xff\x43\x31\xe6\x88\xac\x7d\xc1\xf8\x59\x9d\xf8\xf7\x96\xf9\xf0\xb6\x40\x97\xea\x87\x4d\x93\x66\x86\x87\x1c\xca\xc7\xdc\xdf\x10\x6a\x29\x30\xb5\x9f\x1c\x8f\x66\x5d\x9d\x4c\xa8\xaa\x32\x3f\x6a\x5b\x1b\x26\xb0\xca\x8c\x86\xfa\x19\xa1\x71\x64\x77\xd1\x48\xed\x92\x8d\x1b\xdb\xca\x74\x98\x5b\xda\x2d\x20\xdd\x11\x70\xc1\xc3\x49\xa5\xfe\xbb\x8f\x6c\xb6\x48\x79\x18\xdd\x36\xa8\xe6\xf2\xbf\xa8\xbd\xfc\xdf\x83\x4b\x52\x93\x65\x5c\x9b\xe5\x9d\x9f\xa5\x1e\x85\xf8\xcb\xcf\x12\xd5\x66\x79\x25\xad\xb1\xa4\xa5\xff\xb0\xbb\xa6\x0b\x85\xb7\x4d\xd4\xbf\x48\x33\x52\xa6\xec\x66\x1e\xa6\x5f\x82\x25\x9d\xf3\x30\x5b\xa6\x3c\x58\xae\x61\xf3\xd4\xf2\x82\xaf\x63\x11\x25\xd7\xcd\x26\x5e\x30\xfd\x49\x68\x6d\xbe\x28\x19\xc3\x24\x35\x9b\x78\xc2\x6c\x60\x4b\xde\xc1\x52\xc2\xc5\x7d\x72\x91\xf1\xf4\x8a\xab\xdb\x21\x62\xd5\xc8\x2d\x65\x17\x3c\x05\x21\x1f\x31\xe6\xcd\x26\x9e\x32\x2f\x6c\x59\xc5\x7f\x48\x72\x03\x22\xd7\x17\x0c\x2f\x3a\x22\xbc\x8a\x2f\xd5\xf2\xca\xf3\x9b\x35\xe9\x2c\x33\x9e\x1e\x5d\x72\x21\xe9\x9c\x39\x14\xea\xa2\x8f\x50\x70\x41\x07\x6c\x41\x2f\xd9\x84\x5e\xb1\x88\xae\xd8\x94\x1e\x31\x3c\xe8\xd8\xbe\xd0\x9d\x9d\x4b\x17\x30\xaf\x16\xcd\xa6\x8a\x9c\xf2\x30\xaa\xbf\xb4\x2f\x3b\x61\x14\x3d\xbb\xe2\x42\xbe\x8e\x33\xc9\x85\xea\x6a\x7d\xbe\xd2\x63\x08\xa1\xd7\xec\x3f\x73\x87\xaa\xa2\xc1\xe9\xab\x67\x88\xe4\xb9\x1f\x77\x96\xc6\x11\x17\x72\x0f\x11\xfa\x8d\xf5\x0e\xe8\x39\x43\x93\x10\xd1\x13\x86\xb2\xab\xcb\x76\x2c\x66\xb1\xe0\xed\xb6\x8a\x3a\x63\x28\x0a\x65\xd8\x9e\x84\xed\x78\x3f\xbb\xba\x44\xf4\x6b\x11\xb3\xc8\xf8\x32\x4a\xda\x5c\x57\x8c\xe8\x9b\x6d\x49\xed\x05\x87\x07\x7b\x44\x5f\x9b\x2c\x8b\x94\x4f\xe2\xaf\x88\x3e\x33\xe1\x78\x9c\x08\x44\x4f\x19\x9a\x24\x42\x86\xd7\x3c\x4b\xe6\xdc\xd6\xf8\x6f\x86\x80\xd2\x47\xf4\x29\x1b\xa2\x97\x67\x83\xd7\x88\xa2\x97\xcf\x8e\x8e\x11\x45\xa7\x67\x1f\x5f\x3f\x53\xbf\x4f\xdf\xbd\x7a\x7b\x86\x46\xb4\xa4\x49\x0f\x87\xaa\x51\xec\xf6\xe6\xd7\x44\xf5\xe0\x09\xe0\x03\xbb\x99\x84\x59\x80\xb2\x64\x16\x47\x88\x4e\xc2\x34\x40\x29\xbf\x5c\xce\xc2\x54\x85\x66\x01\x9a\xc5\x97\x53\xa9\xbe\xa3\x00\x45\xcb\x44\x82\x99\xf7\x49\x78\x11\xa0\x8b\x34\x04\x0f\x9a\x93\xd0\x96\x5f\xd3\x63\x76\x03\x9f\x01\x9a\x84\x19\xa2\x06\x94\x0a\xa5\x88\x02\x28\xf5\x3d\x43\xd4\x80\x82\x07\x49\x44\x35\x28\x15\xb8\x40\x6b\xfa\x8b\x9a\x90\xf6\x2c\x5c\xf1\x34\x6b\x4b\xfe\x55\x22\xfa\x96\xed\x3d\x4f\x84\x6c\x1c\xe9\xc1\x69\x3c\x6c\xe0\x53\x55\x4f\xfe\x4e\xd7\x90\xbf\x56\xb0\xf3\x63\x0d\x35\xff\x05\xe0\xe5\xcf\x53\xce\xf3\xb7\x69\x42\xf6\xe8\x3b\x76\xf3\x73\xb7\x6b\x9a\xf5\x40\x7f\xa5\x88\x6a\x59\x0b\x13\xb8\xaf\xa3\x67\x68\x4d\xff\x64\xc3\x1e\xdd\xa7\xf7\xe9\x03\xfa\x90\x1e\xd0\x47\xf4\x27\xfa\x33\xed\x75\x47\xf4\x2f\xf6\xa7\xc5\x21\x86\xbd\x1e\xed\xed\xd3\xde\x7d\xda\x7b\x40\x7b\x0f\x69\xef\x80\xf6\x1e\xd1\xde\x4f\xb4\xf7\x33\xdd\xef\x8e\x08\x7d\xc5\x86\xfa\xd9\x51\x7b\x80\x2e\xe6\xdd\x9f\x75\xb7\x68\x64\x1a\x8a\x4c\x6d\x48\x2f\x6e\x1e\x66\x5f\xd0\x88\xbe\x67\x37\x2f\xde\x9d\xbc\x7f\x1b\xa0\xcb\x34\x59\x2e\x10\x3d\xfd\x70\xf4\xf6\xfc\xe4\xed\xd1\xd3\x57\x67\x1f\x03\x94\x5d\x87\x8b\x76\xb2\x08\xc7\xb1\x5c\x21\xfa\xf6\xdd\xab\xc1\xd1\xbb\x8f\x01\x5a\xa4\xf1\x3c\x4c\x57\x88\x6a\x91\x00\x88\xd3\x82\xa6\x2a\x76\x4d\x5f\xb2\x21\xfa\x0a\xae\x82\x55\x95\xb3\x4b\x44\xd1\xe4\x1a\x51\xb4\x9c\xa9\x60\x8c\x28\xba\x48\xd2\x08\x7c\x63\x2f\x96\xb3\x59\x7b\xc6\x27\xd2\x7e\xa7\x7a\x55\xa0\x6c\x11\x0b\x1d\x97\x71\x44\x51\x9a\xc8\x50\xf2\xf6\xcf\xdd\xe2\xbb\xf7\x93\x17\xd8\x7f\xa4\x02\x93\x59\xbc\x68\x4f\x93\x34\xfe\xa6\x96\xfb\xcc\xc6\x5c\xf1\x54\xc6\xe3\x22\x7c\x91\xc8\xa9\xaa\x42\x86\xe3\x2f\xf6\xb7\xdd\xfb\xea\x3e\xf7\xbf\xc2\x9b\xed\x15\x4f\xa1\x6e\xbd\x5e\xdc\x87\x59\x38\x36\x34\x4e\x96\x02\x64\xda\xde\x77\x60\x28\xe9\xfb\x8e\x3f\x88\xf4\x7d\xc7\x8c\x9b\x4a\xb0\xe3\x35\xb2\x53\xfd\x67\x67\x1e\x2e\xea\xb0\x41\x84\x6c\x16\x4e\xd1\x57\xa4\xb0\x38\x62\x63\xfe\xda\x5a\xe8\xba\x5d\x14\x83\x22\xf4\x39\x1b\x74\xd4\x02\x37\xeb\xfb\x29\xe0\xdb\xea\xd8\x55\xf4\xea\xe5\xb6\xa3\xef\xdf\x4b\x9e\xae\x4e\xf9\x8c\x2b\x8a\x86\xdc\x0c\x87\x76\xe1\xcc\xe3\xd9\xaa\x58\x6d\x3a\xfc\x56\x07\x47\xd4\xe4\x32\x14\x24\x9c\x50\x76\x95\x7a\x71\xfa\x25\xdd\xe5\x0e\x97\x32\xb1\x45\xda\x70\x30\x21\x15\x65\x1e\xdd\x4e\xaf\x2e\x2b\x59\xc3\x28\x6a\x8f\x01\xa6\x0a\x1e\x45\xd1\xd3\x0d\x68\x61\xaf\xb7\xb2\xe9\xea\xd3\xa5\x66\x3c\x4c\xc7\xd3\xca\x29\x0a\x0b\x15\x12\xde\x42\xfc\x33\x1b\xed\x8a\x25\xfa\xfa\x6b\xcf\xcd\x75\xa8\x4a\x98\xb8\x81\x8b\x72\xb9\x21\x17\x6f\x87\x8b\x45\x9a\x84\x63\xb5\xd0\x74\xcc\x91\x8d\x70\x39\xbf\x70\xbe\x68\x27\x69\x7c\xa9\x50\xd0\xb6\xb6\xf7\x85\x28\x52\xd1\x27\x26\xf6\x54\x47\x16\xc0\x35\x7a\xd0\xf6\xae\x58\x55\x81\x8e\x7d\xeb\x45\x16\x7d\x9e\x26\xd7\xed\x79\x9c\x65\xb1\xb8\x84\x93\x01\xfa\x3b\x4d\xae\x07\x3a\xee\x15\x44\x8d\x46\x35\x74\x84\x7b\xc0\x52\xc4\xc2\x3e\xa1\x82\xc9\x61\x57\xe1\xf9\x72\xd8\x1b\x95\x18\x55\xc5\xaa\x35\x2a\x32\x93\x50\xed\x5b\x63\x6d\x19\xc9\x74\xc9\x4d\x8a\x42\xfb\x36\x2b\xa8\xac\x38\x8c\x34\xd1\x03\x6e\x3e\xd0\x48\xbf\x72\x39\xeb\x1c\x40\x22\x1d\x49\x99\xc6\x17\x4b\xfd\xa6\x89\x85\xc2\xb3\xec\x53\x63\xd2\x6c\x1a\xf6\x79\xd2\x6c\xe2\xe7\xc3\x74\xc4\x12\xa0\x82\x54\x5d\x7f\xb0\x0c\xdf\xac\xe9\x8d\xbf\x74\x83\x73\x5a\x5d\x9f\xc1\x09\x2d\xaf\x42\x45\x9c\x16\x0b\xce\x85\x7a\xbd\x95\xfa\xae\x5b\x3f\xc1\x4e\x8f\x56\x57\x89\xca\x5b\x5e\x0d\x81\xbd\x84\x37\x67\x1d\x32\x6f\xcc\xac\x02\x5b\x9d\x3e\x45\x2d\xd3\xe7\xe4\xf0\x8f\x4e\xb9\xd1\x79\x8e\xff\xe8\x54\xdb\xc0\x76\x7a\x1a\x29\xfd\xa8\x87\xe2\x0f\x72\x58\x73\x44\xb0\x8f\x90\xe7\x05\x1b\xc0\x61\xf1\xa2\x73\x7e\x7e\xfe\xfc\xe4\xcd\xd9\xf9\xd1\x87\x67\xa7\x27\x83\x67\xe7\xe7\xe7\x79\x8e\xeb\xa2\xd9\xcd\x9a\xd0\xba\x84\x4e\x26\x57\x33\x9e\x6d\x29\x66\x52\xb7\x97\x86\xc7\x87\x6d\x85\x21\xf1\x96\x9a\xa7\xf1\x7c\x7b\xc5\x2a\x91\x0d\x47\x7a\x54\x7e\x63\x75\x99\xe8\xef\x8a\xc2\xfd\x81\xed\xf4\x0a\x66\xee\xaf\x6a\xfd\x1e\x35\x9b\xf8\x87\xbe\x71\x3f\x95\x2c\xd5\x71\xdd\x25\xc1\xef\x9a\x72\xe5\x84\xac\x55\x06\xfc\x03\xc3\x1b\x88\x6a\x27\x4a\x4e\xc7\x69\x32\x9b\xf5\xf7\xfe\x35\x4b\xc2\x88\x47\xf9\xbf\xc6\x7b\x41\x11\x88\x55\xd8\x18\xe3\xbb\xec\x28\x92\x67\x05\xaf\x2a\x84\xe4\xf9\x26\x16\x8b\xd1\xf1\xc9\xe0\x69\x22\x24\xc8\x9f\x2a\x08\x1e\x4d\x02\xa2\x25\x0a\xc6\x3c\xb9\xe2\xdf\x2d\xc6\x09\xfd\x81\xf5\xe8\xef\xdb\xae\x19\x05\x6d\x0d\x02\xe5\x7a\xc8\x3e\x51\xce\x19\x72\xc8\xa8\xe4\x0c\x65\x5c\xca\x99\x82\x25\x38\x43\x93\xe5\x6c\x12\xcf\x20\x98\x72\x86\x52\xae\xa8\x45\x15\x4a\x78\x99\x2e\x8a\x39\xab\x25\x30\x78\xb3\x59\x1f\xaf\x48\xce\x31\xcf\xb2\xfa\x7b\xcc\x25\x77\xf8\x3c\x96\x34\x2c\x41\x2f\xb2\xa5\xde\xf4\x05\x29\x05\x63\x3b\xc5\x2c\x8f\xd5\xd0\x59\x72\x9b\xb3\xee\x21\x7f\x9c\x39\xca\x9a\xb7\x5a\x24\xe3\x43\x3e\x1a\x76\x47\x58\x7f\xf4\x46\xe4\x50\x9b\xf2\xf9\xc4\x76\x7a\x1e\x79\xaf\xbd\x25\xde\x64\x5c\xaf\x8d\x21\xa7\x72\x44\xe8\xa7\x3c\xc7\x9f\x98\x3a\x4e\x38\x1e\x73\x10\x80\x77\x45\x96\xdc\x97\x21\x48\xae\x05\x4f\xd5\x19\xdc\x39\x07\x69\x03\x75\x0e\x6b\x45\x2b\x9a\x00\xf3\x1b\x24\xe1\xe4\x94\x8b\x6d\x0f\xf2\x09\xb9\x11\x4c\x70\x20\x2c\x53\x96\xe0\xd4\xa7\xce\xa6\x1c\xc7\xf4\x0f\x49\xd6\xeb\x85\xfa\x4a\x49\x9e\x63\xc1\x18\x13\xbc\xd9\x9c\xe8\x18\xaa\xc2\x29\x6f\x36\xa7\x3a\xec\x35\x75\xc1\x3d\x66\x10\x54\x10\x4f\x30\x07\x4e\x78\x2d\x55\x7f\xd4\x58\xa4\xc9\x3c\xce\x78\x06\x2f\xb2\x17\xe1\xf8\x4b\x63\xac\xdf\xdf\x9c\x46\x50\x28\x1b\x59\x38\xe7\x36\x67\xc7\x5c\x03\xea\x42\xa9\x7b\x15\xcc\x73\xcf\xb7\x63\x82\x25\x21\x8e\x53\x7a\xeb\xa8\xa4\xce\xee\x8c\x35\x51\x5b\x2c\xf9\x94\xdc\x08\x18\x87\x9d\x2e\x95\xaa\xf3\xfd\x88\x03\x5f\x3a\x98\xe8\x5f\xb2\x26\xb4\xc4\x78\x73\xd9\xa7\x7a\x44\x40\xed\x62\xa7\xbb\xde\xa0\x93\x1a\x22\xcf\x21\xcf\x1f\x12\x32\x38\xea\xc9\x8d\xe9\xc4\x8c\x29\xdf\x01\x73\x3b\x0b\xeb\x82\x33\x32\x7e\x37\x5d\xc6\xc8\x66\x34\x2b\x43\xdd\xb4\x60\x4c\xdb\x86\x25\xd7\x56\x1b\x64\xc8\x24\x9d\x71\x3c\x07\xaf\x0c\x05\x80\xe9\xdf\x05\x30\xa8\x00\xb8\x80\x95\xca\x3b\xe7\x6a\xa0\x99\xf9\x75\x18\xc5\xd2\xe7\x6f\xcf\x6d\x56\x0d\x59\x70\x7a\x51\x96\x4b\x1a\x70\x35\x8e\x76\x95\xb3\x14\x32\xa8\x31\x92\x9d\xf3\x69\x28\xa2\x19\x8f\x9a\xcd\x18\x84\xbd\xfc\xed\x8d\xd1\x52\x98\xe4\x77\x70\xc0\x80\x79\x6e\xbb\x43\xfc\xe1\xba\x84\x0a\xaa\xa5\x53\x5b\xe8\xa5\x06\x82\x4a\x65\xae\x38\xde\xfe\xbc\xcc\xeb\xd7\xf8\x5b\xbd\x6e\x1b\x29\xcf\x92\xd9\x15\x4f\x1b\x80\xcd\x34\xe2\x0c\x1e\x8a\x43\xc7\xe4\x33\xeb\x7a\x1a\x67\x8e\x8b\x95\x4c\x1a\x57\x6a\x16\x76\x7a\xf5\xa0\x9f\x87\xf1\x8c\x47\x0d\x09\x22\x08\x9a\xcd\xd8\xf8\xd1\xd4\xf7\x63\x50\x52\x76\x9a\xf2\xc6\x8f\x82\x5f\xff\xd8\x48\x16\x9a\xa5\x47\xb5\x20\x80\x61\xe4\x79\x2f\x17\x76\x03\x16\x52\x12\x61\xe6\x35\x53\xed\x3f\xfd\x5e\x0c\x93\x3c\x1c\x6d\x97\xe5\xe4\x70\x9c\x48\xca\xc9\x5a\x1d\x05\xbc\x7c\x89\x4c\x4c\x12\xa1\xc2\x3f\x80\x04\x86\xd3\xc7\xda\x40\x5f\x5f\xf9\x6f\xb4\x37\x5e\x3b\x83\x2b\x4e\xf5\xe2\x08\x38\xa7\xd0\x1a\x10\x2d\xa3\x30\xd5\x81\xc6\x03\xa9\x5d\x2b\x0a\x5f\x82\x2c\x75\x5c\xeb\x1b\x38\x54\x8d\xb3\x6e\x80\xc3\xaf\x1b\x55\x99\x37\x9c\x70\x42\xdd\x1d\x16\x70\x6a\x2f\xb0\x40\xae\x9d\xb3\x92\x66\x73\xc7\x19\xf7\x35\x35\x3b\x7b\x3d\x26\x5c\x08\xa0\xd9\x4d\xa6\xce\x52\xb5\x92\x67\x1c\x5f\x9a\x6e\x93\x4a\x16\xe1\xa0\x16\x85\xfa\x33\x8e\x97\x9c\x0a\xeb\x92\x04\x36\x1b\x5c\x2a\x82\x50\x01\x87\xdd\x9a\xc2\xc0\xd6\x3d\x66\x41\x19\x95\x47\xeb\x0d\x81\x7a\xf4\x15\xef\x84\xb3\xd9\x86\xae\xe6\x06\xdf\xb9\x76\x31\x7e\x4c\x96\x8d\xf9\x32\x93\x8d\x45\x98\x65\x8d\x50\x34\x40\x0a\x5e\x2d\x4e\xb3\x22\x15\x6c\x4c\x3a\x85\x9d\x71\x05\xe0\xca\x5f\x15\x9e\xcc\xc2\x50\x51\x16\xdd\x43\xff\x3d\xac\xb0\x0c\xd2\x6a\x15\x8b\x4e\x90\x9b\x54\xab\xec\xb4\xdb\x49\x9e\x4b\x0c\x0f\x54\xde\x63\x43\xf7\x30\x2b\x78\xe0\x59\xab\x45\x70\xc8\xf8\x30\x1b\x91\x7a\x6c\x21\x84\x41\xe9\xeb\x1f\x1c\xe3\x8c\x80\xad\xf2\x61\x36\x62\xe1\xa1\xad\x80\x10\x18\xac\x34\x1c\x6f\x6a\xb6\xfe\x4f\x8d\x96\x02\x7e\x87\xe1\x72\x92\xcc\x54\x1b\x79\x77\x5d\x4d\x54\x57\x53\xc6\x87\xc9\xb6\xae\xa6\xba\xab\xfa\x47\xdb\x64\x2f\xf5\x4e\x1f\x58\xb5\xea\xc8\xcd\x66\xe9\x96\xd5\x1e\xf1\xcb\xcf\x9f\x57\xbc\xcf\x83\xcd\x36\x93\x1b\xc3\x94\x30\x75\x94\xdd\x9f\xf2\x92\x4b\xd1\xcd\xde\x0a\x53\x16\x10\xce\x15\xaf\x7d\x00\x36\x03\xd8\x37\xbf\xea\x9c\x38\xe2\xec\x1b\xbd\xe6\xec\x26\x8b\xbf\xf1\xa0\x77\x40\xbf\x06\x5d\xba\x0a\xba\x54\xf3\x8d\x82\x2e\x9d\xcc\xe2\xc5\x9f\xea\x90\x50\x1f\x1f\x83\x1d\xdf\x3c\xcd\x37\x7b\xea\xf3\x66\xf3\xa8\xa0\x55\xcb\x52\xf2\x08\x08\x17\x90\xe5\xc9\x7c\xba\x14\x81\x88\x0f\x45\x92\x7f\x95\x7b\xe3\x2c\x43\x04\x44\x1d\x04\x4f\x5f\x9e\x0d\x5e\x33\x5e\xf8\x95\x66\x9a\x5f\xad\xb5\x12\xde\x24\x11\xcf\x68\xaa\xdf\x05\x12\x66\xdf\xbb\xda\xbd\xc3\xe4\x89\xfa\xd7\x6e\x5b\xb1\x0b\x31\x4c\x46\x34\x64\x38\xee\xc8\xf0\x52\x0b\xe0\x69\x5b\x5c\x9e\x15\xfc\xc3\xa1\xe3\xe5\xbe\x7e\xf5\xe6\x37\x34\x72\xdc\xea\x90\x3c\x69\xf7\xe0\xed\x32\x76\xef\x83\xa6\x1d\xb1\xc8\x78\x6a\x64\x9e\xb0\x54\x88\x1f\xd7\xd6\x85\xce\x39\x43\xdd\xde\xfe\xfd\x07\x0f\x0f\x1e\xfd\xf4\x73\x78\x31\x8e\xf8\xe4\x72\x1a\xff\xf5\x65\x36\x17\xc9\xe2\xdf\x69\x26\x97\x57\xd7\x5f\x57\xdf\x8e\x7e\x79\x7a\xfc\xec\xf9\x8b\x97\xaf\x7e\xfd\xed\xf5\xe0\xcd\xc9\xdb\xdf\xdf\x9d\x9e\xbd\xff\xe3\xc3\x9f\x1f\x3f\x79\xb2\x30\x27\x65\xc4\xba\xb7\xaf\x1d\x86\xf2\x76\xbb\xf1\xa4\x7b\x48\x64\x8b\x9d\xf3\xe1\xc1\xfe\xae\xb6\x68\x11\x8a\x28\x99\x63\x92\x77\x0b\xbb\xfe\xc5\xed\x7c\xc6\xcb\xcf\xc2\xc3\x11\x15\x0c\xf3\x3c\x1f\x8e\x88\x19\xbf\x27\x4f\x9e\x74\x0f\x45\xbb\x7d\x48\xa4\x15\x16\xa9\x01\xf4\x95\x97\xcc\xfc\x03\xf7\x4a\x51\x4a\x7d\x55\x43\x11\x24\x01\xe6\x65\x26\x84\x61\xc7\x12\x3d\x05\xd9\x62\xa6\x50\x8a\x06\xba\xf5\xbd\x97\xaf\x7d\x14\xea\x0d\x2f\xbb\xb0\x97\x16\x4a\x1b\x11\x9a\xb0\x74\xd8\x55\x08\x7e\xea\x5c\x0f\x74\xfe\x4a\x62\x01\xa9\x4e\x6a\x67\x47\xf3\x5e\xd4\x8e\x88\x01\x0d\x8d\xe9\x7f\x5e\x7a\xd2\x35\xc6\xe3\x5a\x5c\x54\xfa\x9a\xd7\x72\x1c\x3d\x6b\x42\xcd\xbd\x4b\x8a\x9a\xe1\x7c\x71\xe8\xd9\xcf\xdc\x43\x10\xfb\xef\x65\x22\x4b\xd1\x3f\x42\xf4\xff\xb9\xff\x73\x29\xf6\x31\xc4\xce\xca\x59\x9f\x40\xe4\xa5\x8a\x2c\x9a\xf3\x8c\x6f\x3e\x87\x6b\xa9\x26\xfd\x50\x94\xf2\x68\x39\xde\x38\x1a\x9c\xa5\x92\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\xa2\x8e\x90\xaa\x8a\x50\xe4\x57\x78\x5a\x9e\x6f\x75\x48\xec\x30\x76\xad\xbf\xf2\x9c\x77\xbe\xea\xe0\x57\xf5\xbd\xd2\xdf\x2b\xf5\xad\x8f\x0f\x1d\xa1\xbf\x55\x2c\x9c\x25\xf6\xe3\xa3\x67\xbe\xac\x44\xc8\x39\x7e\x3c\x28\x32\x19\x19\x52\x9e\x7e\x88\x23\x39\xa5\x29\xe3\x9d\x78\x9c\x08\x1d\x4a\xd8\x8d\xcb\x1d\x20\xf8\x9c\x85\x6a\xb9\xb9\x8e\xee\xed\x53\xd4\xd8\x7f\x78\x40\x10\x59\xd3\x98\xd5\xe5\xb9\xbf\xbf\x2b\x3b\x5f\x29\xa2\xde\x88\x40\xdc\x8a\x22\xd2\x40\x84\x86\x0c\x65\xda\xc7\xac\x4d\x96\x30\x00\x7b\xbd\x83\x5d\x2c\x75\xaf\xfa\xed\x5e\xd0\x23\x65\x20\x1b\xb9\x3e\xda\x5c\x00\x36\x63\x86\x3b\xef\xc3\xd5\x31\x14\x35\xba\x8d\x2e\x71\x6b\xf7\x26\x59\x4a\x9e\x06\x89\xd6\x60\x0b\xfc\x4e\xbb\xb2\x31\x45\x5e\xdd\x61\x29\x94\x91\x35\x5d\x84\x72\x1a\x7c\x67\xb8\xd2\xbd\xfd\xdd\x76\x8f\xa2\x46\xdb\x0c\x99\x3e\xd7\x9e\x72\x76\x63\x2f\x86\x6b\x35\xf0\x01\xea\x75\xbb\xf7\x10\x9d\x72\xfd\xb2\x04\x21\xef\x62\xf8\xe2\x4d\xe8\x0e\xae\x4a\xa0\x3c\xe9\x79\x8a\x0f\x85\xbc\x49\x6f\x44\xf2\xdc\x0f\x16\x46\xf7\x42\x7b\x90\x64\x40\x75\x15\x41\x75\x7e\xcc\xf2\x1c\xdc\xc6\x6c\xc4\x33\x74\x31\x0b\xc7\x5f\x10\xf1\x25\x64\x3e\x94\xd6\x1a\x30\x7c\x81\x69\x30\x0f\x63\x7d\xac\xcc\xc3\xec\x0b\x4d\x40\x29\x81\x4f\xe2\xaf\xc0\x35\x50\xd9\x40\x55\x2e\x2c\xad\xcf\x31\xe3\x1d\x2d\xae\x04\x5a\x73\x32\x96\x33\x0e\x2a\x73\xfc\xab\x4c\x43\xba\x60\xbc\x73\xad\xd0\xcc\xf0\x62\xc6\xe9\x84\xb9\x3e\x2f\x9a\xcd\x05\x8d\x58\xda\x99\x24\x4b\x11\xf5\xd3\x40\xd0\x29\x8b\x3a\x30\xb4\xf4\x82\x45\x1d\x3d\xae\x74\x0e\xef\x71\xde\xa3\x45\x61\xfd\x6f\xba\x77\xb1\xdb\x3b\x20\x84\x0e\xd8\xf0\x63\xa7\xca\x9e\xa5\x71\xbf\x58\x18\x1f\x3b\x3e\x33\x97\xaa\x23\xd1\xad\x19\x30\x81\x36\x1f\xdd\x72\x0c\xb7\x7b\x8c\xb1\xa5\x3e\xdb\x79\xe6\x4e\x4b\xc0\x36\x2c\x18\x97\x6c\x4f\x5d\xb5\xbc\x2f\x59\xa1\x0a\x3a\x1c\xd1\x62\x6e\x02\x60\xab\x2e\xbd\xd9\xa2\x37\xa5\x67\xba\x20\xf1\x1f\xea\x82\x58\x6b\x78\x06\x03\x9a\x26\x33\x1e\xf8\x05\x3b\x2a\x26\xcf\x51\x3c\xbf\x44\xf4\xeb\x7c\x26\xb2\x00\x19\xd7\x55\xd7\xd7\xd7\x9d\xeb\xfb\x9d\x24\xbd\xdc\xdb\xef\x76\xbb\x7b\xf0\x74\x72\x15\xf3\xeb\x5f\x92\xaf\x01\xea\x36\xba\x0d\x37\x40\xd3\xd2\x5e\xb9\x20\x6b\xb2\x3e\x9c\x34\x9b\xf8\xd2\xab\x69\x78\x36\x62\x08\x11\x3a\x6b\x36\x2f\x9d\x7a\xa4\x26\x2a\xb4\xbe\x27\x4c\x3e\xf2\xbb\x79\x13\x47\x41\x09\x04\x0a\xd3\x38\x6c\xcf\xc2\x0b\xae\x08\xa5\x0b\x30\x36\xa2\xcb\x15\x33\xac\x6e\x7d\xb2\xa6\xc5\xc8\xcd\x46\x6b\xcd\x45\xbc\xd2\xec\xe8\x4b\x7a\xa3\x87\x49\x9d\x06\x66\x59\x06\x31\x55\xcb\x37\x10\x54\x2d\xde\x20\xa5\xc5\x2e\x0f\xa9\x5e\xa0\xc1\x98\x6a\x06\x72\xb0\x34\x9c\xe4\x35\xa1\x2b\xbb\x04\x9b\x4d\x61\xd6\xe2\xc6\xdb\x83\x3e\x84\xad\x3e\xa8\x3a\x7e\xbd\x79\x53\xdb\x04\x36\x4e\x0c\x1f\xd9\x97\x8d\x0d\x92\x98\x55\x3d\x63\x09\xec\x22\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\xbf\x39\xbe\xf1\xdb\x5c\x3e\xf4\x83\x25\x75\x47\x7e\x30\x5e\x13\x1a\x31\x3d\xe6\xa9\xc2\xb3\x37\x56\xd6\x53\x4e\x6f\xd4\xf6\x0f\xd0\xf5\x34\x96\x1c\xad\xc9\x9a\x4e\xd9\xcc\x75\xa2\xef\xab\x28\xbb\xa9\x9c\x87\x0b\xfc\x85\x93\x75\x70\xb3\xa6\x17\x06\xfe\xe5\x26\xf0\x89\x46\x51\x89\x37\x43\x5f\x38\xce\xf4\x22\x98\x81\xfa\x6d\xb5\xc8\xcc\x1f\xb1\x49\x47\x9d\xc3\xaa\x45\x84\x8c\xd6\x74\x7e\x5b\x4d\x70\xe8\xfb\x35\x5d\x8c\xd6\x74\xc0\x90\x1a\xe8\xca\x8a\xa1\x97\x0c\x8d\x67\xf1\xa2\x1a\x7d\x65\xe0\xc3\x7b\x76\xed\x48\xc5\x51\x30\x80\x65\x03\x46\x0f\x02\xb4\xcc\x78\x7a\xba\x08\xc7\xfc\x44\xbc\xcf\x38\x82\x24\xc3\xff\xae\xcf\xb1\xf6\x5b\x18\xd1\xf9\x68\x4d\x57\xa6\xd6\x88\x4f\x32\xe4\xa5\xea\x58\xd5\xce\xb7\xa1\x9c\x6e\x6e\x16\x6f\xdd\x63\xc9\x16\x14\x69\x57\x96\x6a\x54\xfb\xb2\x53\xc0\x91\x23\x45\x24\x8d\xd6\x8e\x00\xd4\x1b\x71\x45\xb7\x2f\x0b\xbd\x20\x40\xa6\x58\xc8\xa7\xc9\x2c\x49\x41\x35\x39\x5e\xb4\xd5\x7c\xa0\x00\x2d\xd3\x19\xfe\x3f\x6e\xf4\x2e\x29\x22\x88\xe8\xed\x54\x49\x1a\x40\x92\x1a\x3c\x85\x2e\x15\x6b\x49\xf8\x35\xa6\xeb\x35\xbe\x22\x75\xe6\x75\x8b\xbd\x24\xca\x7b\x29\xb5\x7b\x29\x29\x6d\xa1\x98\x29\xac\xcf\xec\x59\xe0\x84\x59\x21\xf1\x27\x5d\x90\x01\x84\x14\x16\x13\x7a\xca\x71\x62\x78\xba\x61\x65\x47\x25\xd5\x1d\x95\x9a\x3d\x58\xec\x2b\x13\xb3\x56\x74\x9a\x77\xac\xd5\x2c\xcc\x70\x73\x61\xde\x92\x77\x63\xbb\x40\xde\x14\x76\x3e\x6c\x17\x97\x62\xe2\xdc\xf8\x54\x61\x99\x74\x6f\xc8\x42\xb3\x99\x46\xeb\xd1\xda\xd8\x24\x31\x8d\xd7\x79\x1d\xfa\xe4\xea\x90\x3e\x54\x01\x93\x44\x8f\xd8\xaa\xa8\xf4\x9a\xad\xbc\x1a\xec\x02\xbb\x72\x19\xd8\x11\xbd\xf2\x32\xb0\x6b\x3a\xde\x3c\x33\x0b\xe4\x41\xf8\xc8\x43\xea\xcf\x7e\x52\x9e\xfd\xd8\xa1\x12\xa6\x4e\x33\xa6\x70\x6d\xf9\xfb\x04\xa6\x3b\x40\x46\xaf\x2c\x68\x88\x44\xf0\x43\xb4\xde\x98\x0c\x23\x46\xbd\x31\x8a\x09\x6c\x79\xf0\x38\xe1\x23\x09\xb2\x84\x17\xdc\x82\x32\x08\x12\xc4\xfe\x96\x4f\x61\xf4\xef\xb4\xd8\x0d\x8a\xc5\x0b\x14\xab\x3a\x00\xb0\xc8\xcb\x77\x88\x5a\xf1\xa7\x1c\x87\xc4\xdd\x51\xcd\xe6\x8e\xb9\xb6\xac\x9a\xdd\xcd\xd7\x40\xe8\xe5\xbb\x27\x0c\xee\xb4\xb7\x4f\x57\x41\xe7\xe1\xfa\x30\x31\x1b\xe4\x19\x9c\xd2\x6b\x1a\xd3\x1b\xe4\x80\x1b\xe9\x02\xe4\xa1\xd1\xe3\xce\xd7\x56\xd8\xf9\xba\xd7\x3b\xa0\x88\xcf\x3d\xbc\x60\xdc\x59\xb5\xc2\xce\xca\x24\x20\x4f\x6e\x78\xcb\x54\x25\xc5\x20\x49\x3d\x44\x05\x16\x7a\x5c\xc2\x42\xc7\xfa\x7c\x85\x41\xba\x76\x64\x8e\x41\x02\xab\xc7\x81\xc5\x33\x43\x87\x67\x8e\x4b\x78\xe6\xac\xc0\x33\xc7\xcd\xe6\x98\x2e\x99\xd9\x89\xfe\x60\xf7\x6f\x00\x48\x10\xc3\x7d\xa7\x4d\x17\x04\xa1\xc3\xf2\x1c\x16\xb7\x26\x87\xb3\x66\x13\x2f\x0d\xfa\x03\x88\xc8\xc2\x02\xb4\x67\x12\x1c\x3c\xcd\x26\x5e\x14\xed\xac\x71\x57\x58\x25\xec\x6c\x47\x9d\x44\xa3\xe8\x7f\x0b\xf4\xbe\x30\x3d\x8f\x8b\xb4\xa4\xff\x2d\x48\xa0\xcb\xe0\x69\xfc\xa9\xb1\xdf\x40\xb3\xa2\xb3\x61\xb3\xa9\x86\xa2\x30\x99\x3b\x6e\xb1\xac\xd9\xbc\xee\xd7\x11\x3a\xb2\xf3\x75\xef\x88\xb7\x53\x45\x1e\xf2\x79\x99\x68\x5b\xa9\x94\x58\xa7\x28\x42\x2d\xc8\x7c\x10\xe3\x70\x36\xc6\xed\x87\xdd\x7b\x8d\x56\xa3\x02\x0e\x0a\xd0\x46\x29\x47\x05\x2e\x64\x01\xa0\xdb\x5b\x55\xdf\x22\xdb\x1a\x3a\x6e\x6d\x23\x47\x8f\xf8\x5d\xc8\xd1\x22\x57\x99\x1c\x55\x70\xb7\xd3\xa3\x11\xbf\x54\xb9\xd6\xe5\x5b\xa5\x34\x19\xa0\x9f\x00\x77\x89\xb0\x84\x61\xba\x26\x74\x31\x44\xed\x6b\x7e\xf1\x25\x96\x9e\xa4\xdd\x88\x79\x8b\x85\x18\xfb\xca\xcf\x38\x5e\x90\xc3\x89\x7f\xbd\x19\x64\x95\x4d\x74\x9e\x88\x0d\x1d\x55\x18\xf9\xd7\x54\xb6\x08\x45\x69\xf3\x2d\xa9\x8f\x2e\xac\x09\x8d\x9b\xcd\xdb\x4b\x98\x4d\x80\xb2\xb4\x9d\x88\xd9\xaa\x74\xa4\xc6\x0a\x42\x54\x6c\xdf\x5f\xb6\x6e\x5f\xbd\x37\x53\xb7\x37\x13\x66\xee\x2e\x6f\xf7\x09\xbb\xfb\x84\xbf\xfb\xd2\xba\xdd\xa7\xaf\xff\xb4\xb8\xfe\xfd\xc1\x49\xdc\xdd\x7f\xa8\x2f\xfd\x62\x70\xc2\x5b\xbb\x9a\x54\x07\x47\x34\x9b\xb7\x97\xb8\x6d\x70\x84\x82\x10\x02\xa3\xe0\x6d\x45\x60\xe1\x1d\x67\x1f\x3b\x9b\x32\x3a\xcd\xe6\xaa\xd9\x5c\x75\xe6\x61\xfa\x05\x7e\x75\x86\xfe\x2a\xd0\x52\xde\x6f\xb9\x13\xf3\x7e\xcb\xd7\xf4\x4f\xce\x7e\x7c\x7e\xd4\x40\x0f\x3b\xbd\x5e\x67\x1f\xfd\x48\xff\x2a\xb3\xde\xdf\x71\x80\x84\x8b\x33\xfc\x4f\x5e\xa2\xe8\x54\x88\x83\x61\x77\x42\x55\x66\x0d\xfb\x96\xfc\x84\xde\x0a\xeb\x82\x5f\xc6\x02\xf4\xd2\xef\x50\xe3\x9a\xbe\xe2\xec\x06\x8a\xd4\xbd\x36\xdd\xa9\xf1\xb6\x42\x42\x6b\xe4\xec\xe1\x75\x78\x4d\xb9\x88\x82\xbf\xf8\x9a\xbe\xdf\xea\xb6\x54\x2b\xb5\x55\xb4\x21\xe9\x98\x59\xb6\x8c\x7f\x73\xf8\x3a\x60\x75\x7a\x30\x46\x4b\xce\xe7\x05\x1b\xf7\xb5\x26\x61\xbd\x06\xce\x78\x20\x35\x1b\xbf\x38\xe3\x71\xc2\x7a\x14\x1e\x9a\x86\xdd\xd1\x88\x04\x38\x61\x5d\x1a\x32\x41\x0e\x93\xc7\x63\x78\x9b\x09\xd9\x0c\x87\x94\x0f\x63\x96\x0d\x93\xd1\x88\xc6\x94\x3b\x1e\x6e\xe8\x31\x99\x5e\x56\xb8\xda\x08\x51\xad\x0d\xc6\x4b\xda\x60\xb2\xc5\x30\xea\x76\xbb\xa8\xc5\xc1\xf3\xc6\xd3\x24\xe2\x47\x0a\x8f\x71\x5a\x18\xb8\x77\x40\x88\x61\x1c\xb7\x1f\x14\x7e\xee\x8b\xfd\xfe\xdc\x67\x3e\xb3\x4d\x86\xd6\x7e\x2d\x43\x6b\xdf\xd7\xa6\xda\x1f\x05\x37\x6b\xd2\xc9\xbe\xc4\x8b\x97\x49\xf2\x25\x73\x37\x9f\x36\x04\xa2\x2e\x3e\x7f\x66\x64\x0d\x37\x97\x7b\x9a\xcb\x05\x7f\x7e\x67\x47\x23\xbb\x7d\x3e\x4c\x1d\xae\x39\x62\xfa\x3b\xe0\x43\x31\x62\x29\xe5\x8a\x54\x59\xfb\xca\x5b\xc5\xf3\xfc\x6f\x5a\x3a\xac\x13\x46\xd1\xdb\x70\xfc\x25\xcf\xd3\xfe\x6f\xe6\xc0\x19\xf2\x91\x3e\xbf\xbc\x88\x3c\x57\x58\x24\x09\x2a\xc5\x30\xa7\xa0\x8f\x1e\x5a\x0b\x74\xcf\x39\x06\xf1\x7e\x69\x04\x0b\x39\xb3\x40\xe8\x47\xf8\x9e\xc6\xf3\x8c\xbe\xe0\x4c\x81\x87\xff\xbf\xc3\xff\x1f\x36\xed\x2d\xd7\x3d\x83\xbd\xe7\xf8\x0f\x4e\x4b\xac\x6e\xb5\xd2\xed\xdc\x0d\xd3\x11\x7b\xcf\xb1\xa0\x5c\xf5\x9b\x4a\xdd\xff\xf5\xe1\x0b\xce\xca\x43\x5a\x62\x91\x0f\xef\x8f\xc0\x90\x91\xfa\x18\x31\x41\xd4\xb8\x11\xd5\xba\x9a\x32\x76\x22\xf6\x0b\x3e\xa5\x1a\x6b\xb1\x4d\xe5\x4c\x2b\xeb\x29\x78\xdc\xaa\xbd\x48\x06\xf2\xef\xb1\x68\xfc\xc1\x0f\x7f\xe7\xaa\xc1\x1f\x39\xad\x9d\x70\x31\xec\x8e\x68\xc2\xc4\xb0\x37\xa2\x31\x13\x45\xad\x00\x61\x87\xb1\x24\xcf\x65\x9e\x83\xea\x67\xa8\xce\x26\xb0\xc6\x54\xc7\x2a\x5a\xdb\xc5\xe0\x6d\xa5\x5f\xb9\xbf\xcd\xf1\x0b\x6e\xe6\x99\xa8\xeb\xe1\x07\x6b\x60\xf8\x93\x37\x85\xbe\x35\x66\x5b\xce\xd6\x06\x4f\x73\xae\x42\x08\xa5\x3c\x93\xc1\x70\xb4\xf6\xea\x94\xb2\xf4\xb6\x50\xb3\xda\xdd\x86\x7b\xc3\xab\x14\x89\x56\xbe\xfe\xa4\xc6\x94\x58\x62\x8b\x49\x50\xe4\x6d\xc4\x13\xfc\x11\x04\x3d\x9f\x73\x39\x9e\x9e\x5e\x5d\xfe\x7f\xe4\xbd\x09\x7b\xdb\x38\xb2\x28\xfa\x57\x64\xde\x19\x36\x11\x81\x34\xa9\xc5\x0b\x65\x58\x37\x5b\x9f\xce\x39\x59\xfa\x26\xe9\x99\xe9\xa7\x68\x72\x68\x0a\xb2\x39\x91\x41\x0d\x09\xc5\x49\x2c\xcd\x6f\x7f\x1f\x0a\x0b\xc1\x45\xb6\xd3\xd3\x73\xce\x79\xf7\xf5\xcc\x17\x8b\x20\x08\x14\x0a\x85\x42\xa1\x50\x8b\xeb\xce\xa4\xfb\x81\xf4\x36\x90\x7e\x10\xd2\xff\x01\x1c\x1f\xc4\xbf\xd6\xcd\x1f\x47\xe7\x7e\xd4\xd5\xaa\x99\x0c\x51\x5f\x10\xb9\xaa\x32\xfd\x3f\x62\xe6\xb7\xdb\xfd\xe3\x17\xfb\xfc\xa4\x3a\x09\x92\x6a\xa1\x6e\xb7\x0c\x9b\xae\x0a\xf5\x63\xbb\xd5\x45\xea\x50\x7b\x40\x48\x5b\xc9\xeb\xba\x82\x77\x54\xee\xe1\x4a\x57\x0c\x37\xce\x02\xdf\x72\x43\xb7\x62\x11\xef\x10\xa6\xdc\xb3\x2f\xd5\x18\xb7\x92\xc9\x53\xd7\x15\xf8\x94\xff\xce\xd8\x1c\xd5\x67\x95\x5b\x43\xc2\x8a\xb7\x40\x3d\xcb\xed\xb5\xe0\x5d\xb1\xe8\x6a\x4a\x0e\x6b\x2b\xb8\xdd\x29\x79\xdf\x9c\x12\x6b\x12\xff\x6c\x1e\xe7\x9a\xc8\x65\x48\xbe\x5a\x5e\x79\xb8\x9b\x8b\x9d\x33\xfb\x08\x6b\xed\x9b\xfb\x1d\x48\x7f\xe3\x8d\xd9\x0f\xc4\xf9\xc1\xb4\x2e\x3a\x17\x28\xc2\x3f\x38\xbd\x1f\xd4\xb5\x59\xc0\x8b\xec\xda\x43\x3b\xaf\x40\xd8\x39\xb7\x94\xec\xa0\x5b\x2c\xb8\x56\x8e\x0b\xc1\xe1\xec\xd0\x92\xcb\xa1\xb6\x4c\xb8\x51\x5b\x55\xd6\x62\xc9\xac\xc5\xd2\x42\x46\xe3\xb2\x75\xda\xb8\x7b\x7d\x8f\x80\x06\x65\x0f\x09\x27\xb7\x8a\x90\xba\x0e\xec\x82\xcb\x30\x42\x67\xd1\x7c\xaf\x71\x6b\xa1\xcc\x14\xd4\x68\x3e\x68\xfb\x2c\x15\xdb\xf5\x75\xbe\xa0\xae\xcb\xa5\x8e\xe8\xa7\xf7\xaf\x5e\x22\xeb\x37\x61\x7d\xef\xd7\xa0\x6d\xca\xed\xba\x70\x7a\x3e\x50\xca\x3e\x41\x64\xf5\x9c\x59\x53\xe7\xc3\x97\x61\x7a\xe0\xfb\xf6\x99\xcb\x34\x8b\x9d\x9e\xef\x7f\xf8\x32\xa4\x90\xd2\x05\x99\x05\x6b\xc3\xa4\xd7\xae\xb6\x32\x6e\x59\x29\x08\x91\x17\x94\x5f\xe6\x13\xbd\xe2\x9e\x0a\xf2\xf4\x0a\x0c\xa9\xa8\xac\xb1\xec\x76\x98\x09\xbe\x76\x27\x1e\x05\x6e\xfe\xf1\x85\x8a\x0d\x5d\x2f\xd4\xf6\x52\x36\x0e\xa0\x49\x15\x60\x80\x22\x1d\xcc\xd3\xca\xdd\xb8\xff\x52\x27\x78\xe4\x20\x34\x51\x51\x74\xc5\x6e\x61\x5f\x93\x00\xd3\xc6\x7b\x5e\x66\x8b\x89\x8c\x8a\xd8\x7c\x01\x32\xbf\x7d\x59\xdf\xcd\xa3\xf5\x6a\x21\x5d\x4c\x6a\xbb\xe5\xc1\x35\xd8\xb0\x15\x68\x0a\x8e\xaf\x9f\x2f\x35\x63\x8a\xc5\x33\x20\x5a\x15\xc8\x9d\x49\x96\xc5\xb3\x39\x86\xda\x62\xdb\x40\x93\x4e\xd8\x48\xae\x1a\x34\x27\x26\x95\x19\x88\x7d\x17\xf5\x36\x0d\x53\x94\x53\x4e\xae\xa1\x33\xad\x23\xdc\xa8\xfa\x5e\xe6\xaa\xb4\xcc\x56\x32\x7b\x8b\x83\xb4\x8d\xb7\xb5\xf4\x5e\x29\xb7\x37\xb6\x4e\x43\xdd\x29\x8f\x73\x2e\xc8\x06\xe2\x09\x6b\x87\x65\xe6\x59\x71\x2a\x0a\x52\xf2\xc9\xaf\x41\xdd\x55\x82\x10\xf2\x77\x30\x58\x79\x15\x14\xf4\xef\x1b\x5a\xf2\xc7\x2c\xbb\x06\xa7\x86\x1f\x0b\xd8\x6a\x4a\x41\xc1\x9e\xd7\x10\xaf\x38\x01\x6d\xe0\xaf\x0d\xe7\x88\x69\x45\x8b\x71\xc2\x67\xcd\xd7\xf3\xed\xb6\xaa\x80\x0b\xf2\x82\x06\x70\x4c\xf1\x94\x3b\x8f\x58\x86\x30\x0b\xd0\x27\xc2\x4c\xda\xc4\x03\x13\x5a\xf1\x9a\xa3\xc0\x86\x7b\xe8\x16\xca\xe0\xed\x9a\xcb\xb0\x69\x95\xa1\x2f\x57\x66\x46\x9f\x5d\xf7\xd7\x96\xbf\x86\xad\x5f\xa2\xf4\xa9\xb2\x96\x86\x8d\x87\xe5\x8b\xaa\x40\x9c\xc9\xd7\x35\x0f\x14\xf3\x4a\xec\x41\xcd\x66\xdf\xe6\x79\x43\x03\x75\x19\xe7\x13\x01\x1b\xbd\xe9\x7d\xae\xd3\xd6\x8a\x6f\xb7\x60\x63\xd3\xed\x24\x94\x2d\x3d\x19\xed\xf4\x65\x56\x72\x29\x38\x88\xb9\x16\xfb\x74\xb2\x58\x50\x69\xd2\x64\x1d\xec\x0f\x04\xb7\xb7\x5e\xcd\xc2\x39\x72\x5d\xef\xd7\xa0\xcb\x8d\xc6\x75\x0b\x4f\x6c\xb5\xc5\x25\xe4\x86\xac\x7e\x23\xec\x54\xeb\xa5\xde\xab\xac\x51\x63\xd8\xf7\x37\x6e\xf3\xd2\x7d\x4d\x67\x56\xff\xae\xfb\x8f\x17\xd5\x75\x71\xb5\x76\x05\x73\x47\x08\x70\x02\xeb\x0c\x3e\xaf\xbf\x55\x51\x5a\x39\xf7\xbe\x50\x7b\x40\x19\xc9\xb5\x62\x3d\x51\xf7\x89\xa2\xfe\x24\xb3\x06\x55\x5f\xca\x35\xef\xcf\x0c\xe1\xe4\xee\x9a\xd2\x33\x34\xd1\xf1\xcd\xab\xbe\xa5\x3b\x07\x7e\xec\xba\x6b\xae\x49\xc5\xcb\xd4\xed\x8f\x98\x56\xf0\x78\xaa\xf4\x25\x07\x21\x16\x67\xcd\x24\xe5\xb4\x78\x96\xf0\x04\x9c\xa0\x36\x17\x82\x42\x21\x74\x87\x25\x33\x2d\xb8\x75\xd7\x0a\x54\x7a\xb9\x77\x08\x08\x48\xb5\xe3\x3d\x00\x8e\x0c\xbd\x1e\x10\x1d\xb7\xf7\x3d\xfd\xc2\xa7\xd6\x6f\x25\xa4\xc4\x8e\x83\x13\x8d\x60\x64\x44\xc4\xc2\x75\x73\xd7\xf5\x12\x23\x90\xe2\xa4\x12\x5a\x73\x84\xf5\x0b\xd7\x35\x8a\xa8\x68\x6a\x55\xf1\x38\x49\x6a\x57\x1f\xba\x5b\xec\xfd\x87\x90\x16\xe5\x99\x82\xcd\x51\x5c\xb5\x14\x11\x42\x74\x6b\xd0\xb7\x69\xed\xdf\xa9\x81\x04\x8b\xc3\x7e\xd5\x1c\x42\x5a\xe3\x74\xc5\x3b\x54\xcd\x2d\x6b\xc6\x96\x11\xa3\xb1\x6f\x34\x77\x88\x74\xda\x10\x39\xee\xdf\xf8\x54\x24\xce\xee\xcf\x7c\x07\xe1\xea\xd8\xd6\x65\x96\x96\x2d\xbd\xc2\x75\x1d\x48\xa6\x95\x9b\x10\x22\x52\x7f\x4b\x0e\x42\x4c\x75\x8d\xcf\x1d\x35\x7e\x35\x35\x72\x62\x65\xbe\xc8\x11\xce\xca\xd7\xc9\x6b\x2f\xaf\x82\x92\x4c\x54\x1e\xac\x42\x65\xb7\xba\x2c\xf2\x1b\x27\x96\x36\x5c\x44\xfe\xe9\xe7\x93\x8b\x82\x26\x9f\x54\x16\xaa\xab\x22\x63\x9f\x1a\x55\xfc\x5a\x15\x70\x49\x8e\x69\xf0\x85\xd0\xe0\x4b\xfd\x95\xf4\x50\xd6\xef\xea\x2d\x6f\xd6\xe2\xc5\x57\x42\x83\xaf\xf5\x8f\x16\xf9\x0d\x33\xaf\xea\xdf\xc8\x99\x12\x2f\xe5\x2f\xa2\x7f\xf4\xf3\x9d\x75\xb2\xe1\x28\xe6\xd6\xd6\x7b\x61\x9d\x44\x60\x85\x81\x91\x8f\x75\x15\xc7\x35\x65\xe5\x84\xc3\x71\x09\x67\x9d\x97\x16\xf5\xc5\xa6\x6c\x59\x31\xb3\x74\xad\x5c\xe5\x78\x51\x13\x3f\xb9\x97\x5e\x54\xc5\xb8\x9b\x42\xec\xb5\x68\x6b\x7b\xe1\x40\x9f\x2b\xfa\x89\xcd\x71\x03\xe9\xe3\x3c\xc2\x6c\x27\xc6\x99\x74\x69\x4b\xae\x78\xcb\x22\xb3\xed\xfe\x8e\x20\xe4\x08\x2e\x1f\x80\x07\xfd\xb1\xba\x65\x6c\x46\xb6\x05\x27\x24\x90\x69\xb6\x5b\x2e\x5b\x4d\x3b\x5a\x05\xab\xd1\x8a\x6b\xde\x2d\x60\xaa\xed\x02\x58\x1b\x4b\xae\xe1\xcc\x00\xb3\x61\x95\x78\x74\xc6\xe1\xe7\x9c\x70\x1d\x15\x47\xa1\x07\xf8\x51\x7d\x10\xd2\x64\xc7\xc0\x2e\x25\x9c\xc7\x51\xf4\x55\x4c\xe8\x94\x77\xd8\xeb\x10\x5b\x00\x6f\x19\x5d\x39\xbe\x32\xe6\x41\x35\x23\x8c\xd8\xd3\x4d\x5d\x65\x8b\x05\x65\xa2\x19\xf0\xf8\xc5\x3c\x58\xe6\xe9\xa6\x84\x00\x53\xca\x25\x58\xc8\x98\x80\xaf\xd5\x77\xcc\x02\x58\x77\x98\x71\xf0\x29\x87\xcb\x9e\x8a\x7d\xed\xf5\x53\xd4\x47\x56\x84\x50\x4c\xb9\x07\x33\xa5\xef\xcc\xad\xd3\xbe\xbc\xad\xd8\x83\x3e\xac\xf4\x03\x9d\x56\x47\xa5\x34\xa1\x58\x61\xb8\x0d\x51\xd7\x08\x70\x03\xa1\xac\x91\x32\x7b\xd7\x4c\x77\xd6\xbe\x78\xcd\x4d\x00\x66\x19\x46\xcd\xf2\xe8\x75\xa4\x17\x88\x0a\xf1\x06\x56\xbd\xa2\xb8\xb7\x61\xc9\xe7\x24\x5b\x09\x84\x3a\x26\xf0\x70\xfa\x89\x78\x26\x82\x1b\x92\x25\xbb\x6b\xbe\x37\xc2\x21\xd4\xb3\xa3\x1c\xda\x75\x6b\xb6\xfc\xd7\x1c\xce\x1b\xaf\x38\xe9\xb2\x2f\xd9\xe1\x4b\x4e\x6e\xcd\xf0\xde\x7f\x5d\xd3\xd8\xf9\xcb\xab\x97\x0e\x2e\xe8\x9a\x26\xfc\x69\xbe\x61\x3c\x76\x32\xe9\x72\x99\x71\xea\xe0\xc5\xa6\x88\x9d\x41\xe9\xec\xf0\x67\xae\x6c\x68\xd6\x4d\x4b\x19\xd0\xc7\xbe\xe2\xf8\x76\x11\x3b\xaf\xa2\xf1\x51\x30\xc6\xa3\xd1\x71\x70\xbc\xf2\xa3\x41\x70\x84\x07\xa7\xc1\x38\xf5\xa3\x93\xe0\xd8\x3f\x0d\xc6\xfe\x70\x1c\x9c\xfa\x83\x28\x18\xf8\xe3\x48\x3c\x8e\x82\xd3\xd5\x60\x10\x1c\xfb\xe2\x9f\xa7\xd1\xe0\x38\x38\xc2\xa3\x61\x18\x8c\x71\x34\x8a\xa0\xa9\x10\x5b\x8d\x7e\xeb\xbd\x1a\x85\xa2\xd5\xe3\xc1\x4f\x27\xc1\xb8\x97\x46\xc1\x08\x8b\xe6\xf0\x38\x18\xe1\x51\x14\x1c\xe3\x48\xfc\x73\x14\x05\xd1\xcb\x71\x88\x87\xe2\xdd\xd3\xd1\x38\x88\xf0\x30\x1c\x8b\x56\xa2\xe0\x04\x0f\x4e\x4e\xb1\x6e\xc6\xb4\x38\x0a\x45\x63\x02\xd2\x13\x3c\x0e\x06\xfe\x10\x9a\x8a\xfc\xf1\x28\x88\x56\xbe\x18\x06\x0c\xa8\xf7\x34\x1a\x89\x5e\x4e\x47\xc1\x10\x47\x21\x1e\x44\x47\xc1\x31\x3e\x09\xc6\xa2\x85\x9f\x44\x53\xdf\x7a\xaf\x8e\xe0\xa5\x00\x3b\x3d\x0e\x4e\xfc\x68\x14\x9c\xe2\xe8\x38\x18\xf8\x83\x13\xe8\x3e\x88\x7c\x31\xba\x97\x47\xa7\xc1\x31\x3e\x1d\x04\xc3\xd4\x8f\x86\xa2\xd5\x71\x70\xe4\x0f\x04\x9c\xc3\x41\x70\x02\xd8\xc1\x02\x4f\xbd\x97\x55\x8b\xdf\x7a\xaf\x86\xa7\xc7\x78\x14\x9d\x06\x47\xf0\xd9\x29\x8e\x06\x02\xbe\x11\x1e\x0c\x82\xa1\x3f\x3a\x82\xc1\x06\xa3\x55\x14\x05\xa7\x02\xff\x27\xe9\x20\x04\xf4\x9f\xe2\xe1\x69\x70\x22\x50\x7d\x84\xc7\x47\xc1\xa9\x3f\x3c\x0e\x8e\x5e\x9a\xd6\xbe\xf5\x5e\x45\xd1\x58\xc0\x33\xea\xa5\xa2\x61\x3f\x1a\x88\xef\x47\xe2\x8b\x21\x16\x0d\xfb\xd0\xb0\x2f\x5a\xf6\xa1\x65\x5f\x34\x8d\x4f\x45\x5b\xa7\x62\x68\x83\xe0\xc8\x1f\x1f\x05\x27\x18\x9a\xd6\xcd\x09\x24\x8b\xe9\xc3\xc3\xf1\x58\x90\xc3\x71\x70\x82\x05\x52\x7c\x81\x14\x81\x8f\x13\x81\x99\x48\xcc\xce\xb8\x07\xf4\x20\x5a\x3a\x16\x40\x1c\xfb\x02\x29\x58\x20\xc5\x1f\x0e\xc4\x10\xc4\x77\x02\x29\x2f\xad\x26\x45\x07\xc7\x40\x0b\xc7\x83\xd4\x17\x3f\xc4\x3c\xfa\xe3\x60\x80\x87\xc7\x02\xdc\x08\xc3\x3c\x8a\x69\xc4\x30\x8d\xe9\x71\x30\x16\x84\x18\x89\xc7\x81\x3f\x1a\x8a\x17\xc3\xe0\xc8\x3f\x3a\x0a\x4e\x7e\x82\xc6\x04\xa6\x81\xb6\x46\x47\xa2\xd1\x71\x70\x8c\x01\x86\x01\x3e\x11\x5f\x9c\x06\x03\x7c\x1a\x8c\x3e\x0f\x07\x41\x94\x02\x49\x47\x8a\x06\x7d\x41\x8c\x82\x04\x45\xcf\xc7\x2f\x4d\x23\xdf\x7a\xaf\x06\xa3\x10\x43\xe3\xb0\x26\x4e\xc4\x27\xfe\x50\x7c\x30\x00\x42\x03\x50\xed\x95\x03\x10\x1e\x0b\xc2\x1d\x4a\xc8\x07\x58\x00\x08\xa0\xfe\x49\x43\x39\x3a\x1a\xe0\xe8\x34\x0c\x4e\xd2\x31\x06\x30\x4f\xc4\xb8\x07\x12\x3e\x2c\x00\xbd\x12\x40\xf6\x00\x33\x6a\xf5\x05\x23\x1f\x40\x15\x10\xfa\xb0\x5c\x4c\x2b\xdf\x7a\xaf\xc4\xa4\xe1\xe1\xe9\x71\xea\x47\x03\xa0\x31\x20\x01\xa0\x32\x20\x01\xa0\x32\x58\x15\x27\x62\x95\x9c\xa6\x82\xb8\x80\x14\x80\xb8\x80\x16\x04\x05\x00\x99\xf5\x5e\xea\xe6\x04\x02\x8e\x07\xb0\xf6\x52\x58\x68\x02\x63\xc3\x23\x41\xe5\x62\x09\x8f\xc4\x6c\x08\x04\x88\xf1\xc3\x92\x7b\x3a\x8c\xc4\x1c\xc3\x92\x1b\x9c\x8e\xd5\x92\x3b\x16\x33\x30\xfe\x93\x5a\x6c\x00\x33\x1e\x87\xbd\x54\x8c\xdd\x87\xb5\x33\xf0\x05\x0a\xc4\xc8\xfd\xd3\x60\xf4\xa7\x13\x41\x74\x30\x0b\x91\x1a\xb7\xe0\x17\x30\x6c\xe0\x17\x2f\x75\x1b\x40\xa8\x82\xd8\xc5\xa2\x7c\x09\xab\x02\x47\xd1\x38\x85\xf0\x3e\x62\x88\xe2\x1d\xac\x35\xe0\x51\x02\x0b\x3d\x41\x54\x27\xb0\x24\x9e\x8e\x8e\x43\x1c\x0d\x04\x33\x18\x8d\x8f\x01\x58\x98\x00\xd3\xa2\x5a\xbb\x02\x1d\x15\xd7\x03\xd2\x3a\x02\x06\xe0\xc3\xb2\x07\x5a\xaf\xd8\x63\x45\x0d\xbd\xa7\xc3\xe3\x30\x18\xe1\xe3\x81\x58\xe2\x27\xa3\x60\x84\x4f\x04\x93\xd4\x6d\x7e\x03\xdb\xd2\xaf\x5c\x59\xe6\x72\x7c\x5b\x3b\xc7\xc6\x8e\x8e\x0d\xb4\x43\xf8\x31\xaf\x4c\x3d\xab\xbb\xf3\xcf\x5c\xd9\x2c\xa6\x59\x91\x36\xec\x87\x0d\xa3\x4f\xbf\xc4\xce\x60\x7c\xe4\xe0\xf4\x6b\xec\x0c\x8f\x46\x0e\x16\xbb\xc4\x49\xdd\xf2\x52\x36\x93\x80\xc6\xa7\xa3\x9d\x0e\xe0\x0a\x07\x83\x88\x54\x8a\xc6\x26\xd1\x68\x32\x38\x99\x98\x1f\x30\xb2\x7b\xda\xfc\xaa\xc3\x56\x96\xb1\x13\x4d\xc2\x49\x34\x91\xff\x8a\x6f\xe7\xfa\xeb\xfd\xfb\x97\x42\x4e\xec\x44\x0e\x16\x7b\xd9\xe0\x48\xb0\xe4\x61\x34\xb8\xf2\xa3\xa3\xd4\x3f\x0a\x8e\x70\x28\x96\x83\xa0\x1c\xb1\x2a\x06\x69\xe8\x1f\x47\xf8\xf8\x58\x50\x92\x20\x0e\xf8\x15\x85\xc7\xc1\x49\x1a\xfa\x83\x50\x30\xb7\x13\x7f\x14\x8a\xd5\x26\xde\x88\x5f\xa9\xa0\xea\x08\x87\xfe\x48\xf0\xf3\x53\xc1\x2c\x4f\x25\x07\x3c\xee\xa5\xbe\x68\x64\x2c\xb9\xd5\x91\x1f\x1d\x89\x17\xc0\x6d\x87\x41\xe4\x9f\x8a\x8f\x05\x9d\x88\xc5\x28\x78\x77\x14\x09\x52\x11\x84\x73\x1c\x0c\x24\xff\x19\x1c\x03\x9f\x11\x7d\x89\x05\x73\x2a\xca\xc4\xaf\x74\x2c\x08\x30\xc4\xa7\xc7\x82\x43\x8a\xb5\x09\xbf\x4e\xc2\x60\xd0\x4b\x43\x7c\x74\x1c\x1c\xf9\x02\x78\x7c\x34\x0c\xc6\xf2\x17\x0c\xe3\xe9\xe0\x58\x70\x93\x61\x78\x04\x7b\x65\x18\x0c\x05\x3a\xb0\x41\xcc\xb7\xef\x9a\xf2\xe6\xf4\xc8\xff\x7d\xff\xf4\x84\x6a\x7a\x86\x03\x60\xd9\xa3\x60\xbc\x3a\xc6\xd1\xd1\x49\x2a\xe0\x3b\x0a\x46\x78\x0c\x8b\x16\xd8\x25\xfc\xbd\x3a\x4d\x45\x71\x08\x4b\xdd\x1f\x03\xcb\x17\xe8\x1b\xaf\x8e\x7d\xf5\x9d\x7f\x24\x77\x0b\xb1\xd6\xc6\x72\x76\x83\xf1\x95\x3f\x18\xf6\x9e\x0e\x86\xc0\x81\x06\x03\x3c\x00\x96\x2a\x64\x94\x63\x6c\xf5\xfe\xdb\xb1\x10\x1a\x22\x0d\x15\x16\xe6\x3b\x7c\xc3\xcd\xad\xa6\xe5\xd9\xc8\x3b\x95\xf9\xb8\x20\xa9\x47\xd5\x51\x6d\x84\x70\x84\x66\xc6\xe1\xee\x16\x4c\x12\x2b\x23\x28\xae\x8d\xa0\xd4\x6d\x59\xdd\xfd\xb5\x40\xd3\x2e\xa3\x59\x6d\x67\xf3\x10\xe7\x0d\x15\x50\x0b\xb5\x6d\x3f\x5b\x93\xfa\x7d\xcd\x9a\x30\x5c\x08\x77\x99\x4d\x2f\xe2\x62\x16\xce\x77\x7b\x29\xe8\xfb\x3a\x53\xd1\xbf\xf6\x77\x15\xcd\x77\xbb\xf9\x2e\xde\xd7\xd9\x9e\xcf\x76\xf6\x51\xe2\x23\xaf\xdd\x54\x88\xc3\xc0\x57\xfb\x94\x69\x6c\x64\x32\xa2\x67\x31\x52\xb3\x38\x8e\x06\x7a\x1e\xc5\x4f\x39\x93\x1c\xa2\x83\x51\xd7\xe5\xae\x7b\xc3\xe1\xce\x14\xfe\xcc\xa8\xbe\x34\xed\x31\xef\x1b\xf7\x4c\x21\x9a\xd4\xbc\x82\x6b\xf1\x84\xfe\x23\xe3\x32\xa4\x10\x82\x13\x6d\xe3\x9e\x53\x06\xb0\xec\xac\x1f\xf0\xfc\x13\x65\xae\xdb\xdd\x9a\x7c\x8b\x25\x90\x07\xbf\x06\xcd\x98\x48\xd3\x02\x0e\x45\xd7\xdc\x93\x47\xa7\xac\xec\xa9\x28\x58\x10\x4c\x5b\x1e\xea\x7a\xb5\xcb\xd5\x9b\x8c\x5f\xf5\x04\x06\x7a\xe2\x40\x56\x33\x98\x42\x28\x66\x5e\x66\xa2\x48\xbd\xe9\x5a\x53\xef\xad\x35\x05\xea\x19\xb5\x70\xfe\xc1\xa5\xad\x5c\xcb\xc7\xe8\x09\x9a\xee\x51\xb8\x29\x23\x3b\x6e\x99\x94\xe6\x44\x35\x83\x33\x3b\x07\x8b\x98\xa8\x1b\xf9\x65\x29\x15\x65\x2f\x18\xf7\x2e\x29\xe4\x95\xd9\x70\xba\x78\x27\xa0\x94\xaa\x7b\xc6\xdf\x65\xdf\x20\x77\x2c\x98\xd4\x5e\x52\xfe\x44\xa5\x7c\x7c\xba\xca\x28\xe3\x6f\x69\xca\x3d\x34\xc9\x48\xaa\x8c\x8d\x4b\x9c\x90\x54\x1b\x1c\x97\xbb\x0e\x3d\xc2\x01\x03\x3b\xbd\x96\x13\x50\x43\x13\x80\xf0\x57\xe3\x56\xee\xcd\x28\x7e\x46\xbd\x5b\x65\x55\x18\xd3\xea\x76\x49\xd1\x64\xa6\x29\x32\xb1\x8e\xdc\x85\x3a\xa5\x33\x75\xd4\xce\xb1\x31\x09\x06\x8d\xf3\x1c\xc9\x58\xbd\x9d\x71\x1e\x1a\x9a\x31\x89\xdf\xbc\xd2\x91\x65\x35\x54\x27\x84\x6b\xb7\xb7\x52\x3b\xcc\xad\x34\xfa\x27\xfb\x16\x19\xc7\x1b\x74\xfb\x55\x06\x3b\x98\x7d\xe4\x1e\xc3\x39\xc2\x1f\xb9\x57\x56\x7d\x97\xaa\x3f\x34\x47\xd2\xf5\xbe\xfa\x5a\x5d\xf3\x6c\x48\xea\x95\x78\x80\xf0\x9a\x6c\x04\x5b\x5e\x92\xcd\x2c\x9a\x4f\xb8\x40\xda\x9f\xa9\x07\x4a\x8b\x32\xbe\x05\x6f\xa8\xb5\xd4\x3d\x2c\x77\xb8\x6d\x05\xc3\x2c\xcc\x65\x5a\x59\x91\xa8\x0f\x14\x26\x0b\x85\xc9\x55\x1b\x93\x70\x1b\xb0\x6b\x84\x99\xf9\x62\xd1\xf7\x83\x5d\x1e\xa7\xf6\x43\xac\x29\xf6\xb1\x9e\x98\x76\x54\x2c\xe3\x64\x8d\x8b\xce\xe8\x00\x41\xb2\x58\x58\xf7\xc4\xef\x6a\xec\x16\xf2\x47\x76\x05\xa6\xeb\x31\x15\xfc\xea\xee\x4f\x33\x52\xb7\xac\x99\xda\x26\x15\x7f\x46\xb1\xfd\xf8\x86\x23\x9c\x90\x99\x13\x98\x06\x9f\x60\x27\x66\x39\xf7\x66\x55\xab\xef\xb1\x33\x47\x0e\x9a\xd7\x6d\x25\xba\x42\x37\x06\x76\xc0\xc7\x3d\xcd\x40\x10\x48\xa9\x20\xc5\x3d\xa9\x61\x07\x7c\xeb\x3b\x54\xc5\x06\x66\x73\x88\xc0\x54\x4a\xfd\x63\x2d\xb2\xde\xe3\xd5\xca\x4b\x50\x2d\x2a\x6f\xb6\xf4\xaa\xcb\x39\x74\x5b\x78\x26\x92\x17\xc2\xb9\x07\xe9\x86\x56\x14\xee\x3b\xa5\x33\x42\x75\x11\x9a\xb3\xf7\x05\x15\x8b\x7b\x05\xa1\xb5\xbb\x54\x9b\x55\x42\xaf\xf7\xdc\xe3\x68\xc2\x20\x6c\x8f\x0c\x55\x62\x01\xf1\x69\xbb\xfd\x13\xb7\xa3\xdf\x5c\x73\xd7\xad\xe7\x96\xfb\x13\x47\xb6\x3a\x7c\x36\x47\x7b\x57\x22\x98\x95\xa9\x95\xb8\x6a\xad\x34\x86\x6e\x53\xb1\x3a\x6b\x01\x9b\x3d\x27\x91\xf9\x1c\x11\x2e\xec\x31\x0b\x0c\x54\xe8\xe8\xbc\xce\x76\x5d\xee\x21\x9c\x7a\x08\x9b\xb0\x68\x81\x1c\x99\xdd\x43\x5a\x5d\x11\x23\x54\xdb\xbc\x5f\xff\x4e\xcb\x0a\xb6\x9f\xe6\x60\x29\xba\xa5\xae\x9b\x0a\xfe\x31\xc7\xf2\x9a\xaf\x72\xfe\xaf\x5f\xd5\x1b\xfa\x7b\x6d\x59\xd4\x6b\x63\x0d\x27\x76\x60\xb5\xec\x47\x7a\x81\x73\x2b\x4b\x73\x53\x95\xcb\xcc\x75\x4d\xe1\x69\x23\x06\x19\x53\x41\x89\x76\x77\x47\x4a\xa8\x37\xf6\x05\x09\xf4\xef\x90\x10\x4e\x71\x42\x5e\x05\xed\xed\x0e\x73\xb1\xc7\x25\xe2\x8d\x8e\xa4\xff\x27\x21\x24\x7b\x10\x09\x59\x05\x32\x05\xcd\xb1\x98\xa8\x9f\x05\x09\xef\xad\x7c\x03\x9b\x91\x5c\x6e\x99\xeb\x1e\xa4\xc8\x32\xea\x13\x3c\x45\xda\xcf\x64\x60\x07\x20\x2a\xa5\x9a\x97\x77\x35\xa9\xb6\x3d\x47\xb0\xf8\x7f\xcc\x9c\x77\x32\x3e\xb2\xf3\x56\xc7\x46\x76\x5e\xaa\x08\xb8\xcf\x74\x4c\x64\x47\x06\x1d\xb6\x2c\xf8\xd2\x59\x34\x47\xd3\x67\x33\xf1\xb7\x7e\x3b\x37\x8f\xdf\xce\x56\x62\xdb\xf8\x89\x7a\x43\x70\x6c\x96\x84\x34\xdd\x04\xe5\xe6\xa2\xe4\x85\x17\xe1\x08\xc5\x1b\x84\x17\xe4\xdf\xa9\xb7\xc6\x4b\x84\xaf\xc8\x02\xd2\xd2\x2d\xb6\xdb\xcc\x75\xb3\x3a\xae\x5f\x0a\x5c\xaf\x5b\xc5\xcf\x45\xf1\x15\x2a\xb4\xd1\x06\xad\xdf\x36\x33\x7c\x05\x1e\x09\x4d\x0c\x4d\x64\x08\xf0\xdb\xba\xf1\xa4\xda\xd8\xc5\x4f\xdb\xc2\xb0\xda\xc1\x6e\xa8\xde\xc2\x0e\x22\xb9\x87\xc9\xd0\x45\x75\x9d\xfb\x6c\xae\x95\xee\xb7\xbb\x9a\x08\xbd\xdb\xed\xf0\x35\xb9\x50\xfb\xf7\xb5\x2d\xad\x7c\x99\x13\x2e\x36\xe9\x05\x5e\xb7\xd6\x4e\xae\x65\xe6\x3f\x2b\xd7\xaa\x0b\x5c\xdb\x7f\x73\x09\x0a\xdc\x2b\x68\xc0\xd7\xd5\x16\x7c\xa5\xe0\xbb\x6e\x6c\xaf\x62\xd7\x68\xc7\x90\xf9\x7c\xe9\xa0\x89\x13\x5f\xc8\x14\xfb\x90\xfa\x9a\xd6\x03\xb1\x24\x98\x06\xcb\xac\x28\x39\x20\x13\xc5\x34\x48\xd6\x82\x35\x49\xdc\x26\x48\xfb\x2d\x4a\x33\x9d\xef\x31\x10\xc2\x7a\x9a\xec\xf5\x2a\x88\xb9\x62\x65\x39\xda\x49\x9b\x01\x59\x6a\x85\xec\xb0\xad\x5c\xb5\xf4\xf3\x52\x6e\x62\x6a\x30\x08\xab\xe7\x04\x92\xff\x0b\xf9\xa2\x0a\xc0\x51\x37\x92\xad\x4c\x30\x0e\x48\x65\xc9\x26\x83\xb9\x1f\xfc\xe3\xa9\x65\x6e\x51\x59\xd1\x59\xd1\x6e\x90\xeb\x1e\xb4\x78\x85\xeb\x7a\x07\x76\xcb\xdb\xad\xb6\xc5\xb3\x4b\x75\x83\x16\x6c\x7f\xd7\x66\x39\x8f\xd1\x7e\x99\xcf\xd8\xcc\x76\xef\xb5\xce\x23\x07\x19\xd6\xf6\x8e\xcb\xab\xaa\xe7\x1c\xe1\xdc\xda\x47\x3b\xa3\x0f\xa3\xc9\x8a\x93\x83\x10\x2b\x9c\x16\x2d\xf2\x44\xb7\xb9\x87\xf0\x46\x6c\x3e\xdc\xdb\xb3\xeb\x98\x1a\xd5\xd6\x03\xf1\x2e\x38\xf9\xa1\xfc\x7c\x09\x52\x46\x5c\xe4\x39\x47\x41\x3d\x42\x7d\xef\xf6\x03\xeb\xf5\xf2\xcf\xb4\x58\xae\xf2\x9b\xb8\xf7\x39\x2b\xb3\x8b\x15\x9d\x7c\x60\xbb\x0f\xec\x03\xeb\xac\x6d\x3c\x36\xd5\x8b\x8b\x55\x9e\x7e\x9a\x88\x37\xc0\x45\xc1\x64\xa1\x97\xb1\x2b\x5a\x64\x1c\x8a\x95\x90\xdf\x8b\xe8\xf5\x64\x5f\x77\xbd\x9e\x0e\xde\xed\x27\xab\xec\x92\xc5\x3d\x3f\x0c\xa2\xc1\x18\x3e\xd9\xb5\x20\x09\x96\x89\xbf\xba\x94\xf0\x74\x7c\x38\xb8\xf3\xc3\x1b\x3f\x92\x5f\xca\x53\x48\x2f\x0c\xc2\xa3\x7b\x3e\x18\x34\x3e\xb8\x1b\xb2\x1b\x7f\xd8\xac\x7f\x72\x7c\xf7\x07\xa3\xc6\x07\xf7\xb4\x3f\x6e\x54\x1f\xde\x07\xd0\x51\xf3\x83\x7b\xe0\x39\x6e\xd4\x1f\xdd\xf7\xc1\x49\xe3\x83\xbb\x6b\x9f\x36\x6b\xdf\x37\x01\x51\xd8\xf8\xe2\xde\x0f\x9a\x73\x7c\x74\xdf\x14\x44\xcd\x49\xbe\xaf\x7e\x73\x92\x4f\xee\x9b\x84\xa8\x39\xcb\xf7\x82\xd4\x9c\xe7\xd3\xfb\xa6\x21\xaa\x4f\x74\x74\x77\xe5\xfa\x2c\x47\xf7\xaf\x83\xe8\xa4\xf1\xc5\xbd\x43\x3e\x6d\x7e\x70\xdf\x98\x07\x61\xe3\x8b\x3b\x7b\x30\x79\x05\xe4\x47\xd7\x49\x71\x99\x31\x99\x5c\x00\xc8\x5c\xb1\x1c\xd5\x98\x38\xf2\xdd\xdd\x14\x7c\x59\x6b\x4b\x34\xfe\xbd\x4d\xc9\xb4\x07\xb2\x19\xc3\xfd\xee\x5c\x12\xab\xac\x36\xea\xc1\x1d\x55\x97\x37\x7b\x11\xf4\x81\x05\x26\xef\x45\xaf\xfc\x7c\xd9\xc9\xbf\x2f\x72\xce\xf3\xeb\xb8\x17\xc2\x70\xd4\xf0\x26\xd5\x88\xcd\xd8\x7a\xbd\x75\xae\x12\x5e\xf7\x92\x8b\x32\x5f\x6d\xb8\x64\xd5\x1a\xbd\xf0\xc0\xf3\xb5\xfc\xd9\xec\xff\x9e\xcd\xa2\xb9\x2b\x54\x7d\x15\x74\x95\x88\x33\x9a\x6c\x9e\x7e\xe1\x9a\xb3\xa7\xe0\xa0\x7b\xdf\x6e\xd1\x41\xfc\xf7\x23\xa5\xe5\xd9\xab\x3c\xea\x75\xa7\x76\xdf\xfa\xbf\xfb\xeb\x36\x50\xa2\x73\x48\xe0\x5e\x50\x4f\x4f\x72\x1f\xae\xf6\xcc\x43\x27\x6e\x9a\x7d\x56\xed\xcb\xa9\x1e\x87\x7f\xac\xe6\x4d\x3f\xb4\x86\x1f\xf7\x2a\xb7\x6e\x7f\x1c\xfe\x11\xf7\xc4\xbf\xa8\x7b\xfc\x77\x55\xfe\x2f\x45\xac\x22\xf0\x24\xfd\x74\x59\xe4\x1b\xb6\xf0\xd3\x7c\x95\x17\x71\xef\x7f\x2d\x97\x83\xf1\x30\x99\x48\xf2\x17\x6b\xd3\x2f\x92\x45\xb6\x29\x2b\xf2\xd3\x70\x5e\xe4\x5f\x84\x08\x93\xb1\xcb\x58\x57\xbd\xc8\xbf\xd4\xc0\xbb\xa3\x4a\xd5\xdf\x72\xd2\xb5\xf8\x7b\x3d\x98\x59\x53\xac\x96\xdd\x17\x5f\x91\xac\xae\x75\x9d\x31\xdf\xac\xef\x71\x4b\x6e\x92\x5a\x57\x49\x1a\xc9\x62\x01\x90\x18\x99\xa1\xb9\x3e\x05\x91\x54\x9f\xd2\xd5\x2a\x5b\x97\x59\x59\x5f\xbb\x9d\x14\x20\x9d\xf3\x45\xbb\x7b\xe7\xbd\x59\x65\xff\x6c\xf3\x7c\x2d\xe1\xba\x67\xa6\xed\x7a\xcd\x59\x96\x9c\xcb\xe6\xd1\x75\x5e\xd6\xe6\x4b\x86\x93\xfd\xab\x87\x27\x01\x79\xd0\x08\x1b\x55\xf7\x0c\xb2\xda\xd3\xf6\xf3\x6b\x35\x5e\x33\xc8\xff\x96\x21\x0b\x80\x1e\x36\x62\x55\xb3\xc5\xa0\xf2\xb5\x3d\xa5\xdd\x9b\xcb\xff\x37\x08\x54\x0c\xa5\x9a\xb8\x7b\xa7\xea\xbf\x6e\x60\x0f\x98\x24\xab\x5a\x35\x2c\x75\xc4\xb2\x0e\x76\x51\x30\x34\xff\x75\xb1\x34\x23\x36\x77\xee\xd1\xe1\xd1\xd1\x71\x5d\x58\xf9\x52\xb6\xba\xb0\x25\x6f\x59\xa9\xbc\xee\xa8\x74\xd2\xac\x15\x7d\x69\x43\x5b\xaf\x31\x68\xd7\x18\xd4\x6b\x0c\xdb\x35\x86\xf5\x1a\xa3\x76\x8d\x51\xbd\xc6\xb8\x5d\xa3\x01\xe9\x51\xbb\xc6\x51\xbd\xc6\x71\xbb\x46\x03\x71\x27\xed\x1a\x27\xf5\x1a\xa7\xed\x1a\xa7\x0d\x8c\x85\x1d\x28\x0b\xeb\x75\xb4\xb8\xb9\x47\x10\xdb\x2b\x85\x6e\x56\x6a\x15\x64\x25\xf7\x41\x5f\xe7\xf3\xaf\x6b\xaa\x02\x3d\xb5\x04\xec\x81\xd9\xe6\xd4\x8e\xe6\x57\xcb\x67\x67\x5a\x3c\xef\x69\x41\xb9\x53\x5c\xac\x08\x37\xb3\x97\xa0\x3f\x68\xc9\x98\xf7\xcb\x51\x0d\x59\xbc\x41\xe6\x95\x7e\xc3\xf4\x69\x0b\xfd\xf2\x77\xdc\x83\x54\x76\xbd\x30\x08\x4f\xe8\x75\xef\x7f\x51\x4a\xbb\x44\x90\x30\x88\xea\x43\x87\xcd\x9c\x5e\xab\x2d\x5d\xbc\x6f\xe0\xb6\x71\xea\x59\xae\xf2\x84\xc7\xad\xd5\xdb\x3c\xd0\xa8\x6a\x4d\xe6\x55\x6b\x10\x43\x51\xd9\x51\x56\x74\x94\xad\x3a\xca\x2e\x1e\x7c\x2c\xdb\xd5\xbb\x87\xb7\xcd\xfe\xad\xc2\xa2\xab\x70\xd5\x55\x78\xf1\xe0\xe3\x5c\xc5\x61\xd6\x19\xab\x9f\x04\x12\xed\x73\x18\xf7\xf4\xfb\x41\xd9\xcb\x98\x34\x71\x06\x6a\x48\xea\x62\xeb\x43\xbf\xb0\x27\xa8\xa4\xf7\xf6\x1a\x59\x6d\x94\x9c\xae\x4b\xef\x04\xdd\xd7\xef\x9e\x6f\xa0\xe7\xff\xad\xfb\xfa\x44\xbf\xca\xa4\xdd\xbd\x1a\x02\xc2\x3f\xca\xbf\x9d\x3b\x93\x0a\xac\x14\x2e\xe8\x65\x1d\x88\xda\xe6\xd4\xaa\xb5\x13\xff\x44\xe1\x43\x9a\x1e\x1e\x3d\xac\x71\xbb\xde\x4e\x0f\xed\xff\xb6\x21\x09\x2a\x31\x29\x11\x15\xa5\x5c\x97\xbe\xd4\x33\xc7\x3d\x67\x5d\xe4\x97\xd9\x22\x7e\xf6\x97\x17\xd7\xc9\x25\x7d\xaf\x5b\x0c\x5e\x65\x69\x91\x97\xf9\x92\x07\x4f\x92\x32\x4b\xe1\xad\x07\x0d\x65\x39\x23\x11\x72\xf6\x49\x1e\x0a\x92\xd3\x36\xc0\x77\x54\x32\x04\x5d\x65\x6c\xfc\xdd\x60\x1d\xdc\x0b\x6b\x74\xf2\x10\x60\xab\x5a\x4d\x68\x07\xc7\xbf\x1f\xb4\xc3\x7b\xa1\x1d\x1c\x3f\x04\xda\xaa\x56\xb5\x0f\xd7\x73\x5e\xfe\x6e\x20\x87\xb8\x77\x9d\x15\x45\x5e\xdc\x45\x16\x52\xda\xf4\x23\xdc\x8b\xee\x91\x48\x4d\x9d\x3a\xe0\x5a\x16\xfc\xfd\xe8\xe2\xe1\x60\x47\xb8\xe7\xdf\x07\xb6\xa9\x53\x07\xfb\x22\xe7\x57\x52\x5b\xd3\x40\xff\xff\x88\x81\xf9\x0f\x19\x99\x5f\x1f\x1a\x5c\x03\xf5\x6a\x7c\x05\x77\x94\x46\x27\x9d\xc5\x83\xe3\x7a\x71\x03\x2b\xed\x77\x1a\x3d\xed\x37\x02\xb5\xf5\xbd\x4f\x23\xce\x08\x88\xfa\xbf\xc6\x8b\x6a\xd3\xe6\x49\xfa\xe9\xa1\x7a\xc6\xb6\x0c\x58\xd3\x33\x6a\x61\x2f\x68\x1e\x3d\x54\xd2\x58\x6c\x3f\xea\x73\xc4\xbf\x56\x95\xda\x56\xfd\x6a\x60\x1a\x9a\xe5\x86\xda\xf3\x6e\x8d\x79\x7d\x04\x4d\xec\xec\x43\x83\xca\x92\x2b\x3f\xaa\x6b\xb9\x14\xb0\x32\xa0\x5e\x5d\xfc\x95\xc3\x4a\x57\xd9\x5a\x60\x3b\xe5\x5e\x88\x7b\xea\xff\xa8\xae\x1f\x5b\x7f\xa9\xa1\xcd\xd7\x05\xf7\xe8\xbc\xee\x42\xad\x46\x07\xb4\x54\x03\xd2\x37\xde\x8a\xb1\xb4\x06\xc2\xbd\x8e\x57\xf0\x4b\x0d\x18\x46\x60\xe6\x52\x43\x6d\x0a\x34\xd8\xe1\x1d\xf7\x9b\x15\x94\xa5\x58\xe9\x69\xf7\x65\x42\xfb\xce\x15\x04\x45\x99\x88\x59\x89\xf1\xd9\x6a\x15\xf7\x3e\x27\x85\xe7\xfb\xd5\x3b\xa9\xea\xc4\x3d\xdb\x80\x58\xe2\x58\xdb\xbf\x2b\x6d\xa3\x79\x6c\xb5\xa0\xde\xd4\xf8\x77\x07\x30\x26\x03\x74\x27\x38\xe6\xed\x03\x00\x0a\x83\xd1\x1e\x90\xaa\x56\x0c\x50\x61\x30\xda\x07\x16\x40\x65\xa5\xb0\x6e\xe3\xec\xbf\xa6\xcb\x06\x66\x7e\x4f\xc4\x5f\x27\xe5\x27\x7b\x58\xf8\x8e\x2a\x9d\x13\x04\x19\x24\xac\x15\xbd\xb8\x6f\x55\xff\x60\x65\xc1\xe0\x26\x80\xdd\x47\xcc\xc9\x1b\xcc\x48\xc3\x14\xbe\xe8\x88\x98\x83\x73\xf2\x14\xc2\xbf\x30\x99\xaf\xa6\x38\x20\x84\x9b\x9c\x46\x56\x2c\xa0\x0f\x1f\x6a\x36\x91\x1f\x3e\xf8\x0e\xc2\xce\x25\x24\x2c\xa9\xd7\xf3\xfd\x3d\x15\xcb\xbd\x0d\x72\x59\x63\x92\x93\xdc\x18\xb9\x65\xd8\xb2\xc2\x64\xd2\xde\xcd\xbc\x4c\xb0\x63\x75\xd3\x7c\x5b\xda\x9f\x16\x26\x72\x72\x2f\xb7\x12\x73\x08\x6c\x29\xdb\x69\x48\x22\xec\xba\x07\x7f\xe1\xae\xeb\x7d\xa3\x9e\xc0\x24\xc2\x7f\xe1\xe4\x20\xb4\x83\x28\xd7\xcd\xfa\x95\xf1\xa9\x4c\x60\xaa\xad\xca\xc4\x80\x93\x8b\x92\x17\x49\xca\x1d\x7c\x7b\x49\x79\xcc\x77\x08\xef\xad\x7b\xc5\xaf\x57\xaa\x5e\x3b\xd6\x26\x0d\x74\x53\xf7\x9a\x0f\xed\xee\xea\x84\xe5\x0b\xda\xee\xa4\xb2\xfb\xed\x48\xa2\xb5\xc8\x3e\x5b\x1e\xde\x76\x9e\xac\x40\x80\x8c\xab\xf0\xf8\x3b\xd1\xb5\x95\xf0\xe4\x09\xef\x8c\x4b\x6e\x02\xdb\xf0\xa9\xb3\x4c\x9c\x98\x9b\xd4\x3a\x32\xa4\xca\xd2\x33\x89\x3f\x19\xf7\xde\xaa\x61\x00\x2b\x2e\x21\xd4\xe2\x76\xcb\xb8\x67\xe2\x01\x8a\x12\x19\x02\x96\xe3\xb7\x10\x24\xc7\xb6\xb3\x31\xc0\x50\x0f\xdd\x1e\xd4\x4d\x60\xb3\xa5\x77\xe0\x51\xdb\xb8\x95\xef\x49\x0d\xf7\x54\xe6\x5f\x4c\x93\xd5\xaa\x97\xf4\xc0\xac\xad\x9e\x82\xd1\x41\x3b\x48\x29\x88\xa9\x4a\x13\x68\xc1\x4c\x6e\x65\xec\x21\x08\xb2\x62\x10\x49\x28\xf6\x18\x99\xdd\x7e\xa2\x5f\x63\x27\x59\x2c\x94\x4b\x9c\x3d\x2d\x55\x0a\x2e\x99\x06\xb1\x65\x84\x8a\x19\xac\x22\xe9\xd7\xc3\x11\x2e\x48\x38\x29\xce\xf8\xa4\xe8\xf7\x11\x9b\x15\x73\xcb\x30\xb5\x98\xeb\x50\x5b\xda\x1e\x58\x66\x28\x5c\x6f\x56\xab\x67\x16\x7e\x6f\x77\x68\x62\xdb\x52\xe7\x5d\x91\x85\x20\x49\xa7\x35\xc2\x19\x57\xc1\x3a\x9b\xa5\x32\x62\xe7\x8c\xcf\x11\xfe\x91\x7a\x5c\xfd\xfc\x83\x32\xc7\xdd\x61\x39\xfa\x82\x96\x94\x77\x8c\xbf\x0b\x91\xfa\x9b\x26\xe0\xad\xcf\x6b\x3e\x06\x3a\xe2\x4b\xe5\x6d\xa0\x7f\x4f\x6f\xc3\x98\xef\x62\x3e\xe9\x88\xd4\xc7\x9a\xf1\x0b\x78\x15\x13\x93\xcf\x71\x6e\xa2\x26\x42\xfa\x2f\x2b\x53\x8f\x7c\x98\xd0\x59\x3e\xdf\x6e\x3d\xf1\x07\x12\x60\x8b\x1f\xb3\x6c\x4e\x12\x19\x8a\x73\x37\x47\xae\x9b\x79\x96\x8b\x3f\x66\x08\x17\x50\x26\x53\xbb\x69\xd6\x13\xe1\xbf\x71\x72\x9b\x0d\xca\xcf\x97\x71\x2b\x42\x69\xcb\x32\x39\xec\xb4\x4c\x0e\x6d\xcb\xe4\x70\x1e\xdf\xee\x94\xb9\xbf\xe0\x7e\x13\xbd\x48\x05\x7f\xa8\x2f\xd1\x4b\xb5\x3e\xd3\x2a\x64\x95\x79\x6b\xc5\xea\x45\xb7\xbb\xb8\xa8\xe2\x59\x74\x87\x74\xfa\x3b\xf7\x18\xc2\x5f\xa4\x07\xc6\xae\x32\x4d\x94\x29\x07\x3d\xe7\x0d\x24\x42\x85\x70\x8e\xf4\xef\x9b\xac\xa0\x62\x89\x3d\x7b\xf3\xaa\x97\x2f\x7b\x65\x7e\x4d\x7b\x9f\x32\xb6\x08\x1c\xb4\xc3\x69\x59\xc6\x9f\x38\x96\x66\x98\x4f\xcb\xd2\x46\xcb\x5f\xf8\x76\xdb\x62\xdd\xd2\xd4\xf3\x77\xc4\x1e\x16\xe8\xaa\x07\x26\x83\xc0\x5d\x6c\x4f\x44\xaf\xc9\x41\xd4\x11\xea\x0c\x82\x6b\xd5\x8b\x04\xb8\xb8\x1d\x6c\x8c\x1c\x84\xf8\xdf\x6b\x26\x84\x3f\x72\xef\xb6\x0d\x00\x6c\x32\x4b\xee\xdd\xda\x31\xc9\xe2\x2f\x1c\xdb\x21\xc9\xe2\xd7\x1c\x77\x47\x24\x8b\xff\xce\x5b\xb9\xf1\xa1\x59\xb6\x53\x6b\xf6\x05\xb7\x53\x9f\xed\x89\xf8\x22\x2a\xfe\xc2\x89\xf7\x73\x57\x90\xa4\xdf\x68\x4b\x7f\xbb\x83\x48\x3a\x95\x37\x50\x2d\xa4\xe7\x0d\x85\x90\x9e\xc6\x3f\xc8\x0a\x48\x95\xbb\x6e\x0e\xae\x43\xe0\x2f\x94\x56\x5f\x25\x32\xed\x5e\x02\x3e\x44\x3a\x87\x96\x79\xbb\x92\x6f\x57\x78\x4d\xb8\xf6\x10\x33\xb9\xb4\x08\x21\xeb\xe9\x6c\x1e\xaf\xf1\x82\x70\x3b\xce\xe8\x55\x55\x61\x31\xbd\xdd\xc5\x0b\x7c\x21\x80\x92\x7b\xd5\x75\xf5\xf2\x42\xbc\xbc\x00\x6f\x3e\x89\x97\x57\xd5\x1e\x79\x69\xe7\xee\xf8\xac\x1e\xf4\xe2\x7a\xc6\x21\xe9\x0f\xc4\xf4\x80\xe0\x5b\x3b\xb1\xe9\x78\x6d\x99\x41\x2c\x6c\x5c\x0b\x2d\xb3\x99\x5e\xfd\x7e\xa1\x65\xae\xf6\x84\x96\xb9\xea\x0c\x2d\xd3\x74\x91\xfa\xc6\xbd\xcf\x2a\xcb\x4d\x3a\xfd\xc6\xbd\x54\xa6\x4d\x89\x9b\x5e\x90\x60\x4e\xae\xdd\x59\x75\x74\x5b\x69\x38\xae\x0c\xbb\x5f\x55\x86\xdd\x97\x96\x65\x3a\xec\x47\x37\x54\x30\x52\x65\xa1\x9e\x29\x73\xf6\x8d\x36\x4f\xb7\x2c\xd1\xaf\xb4\x81\xfa\x35\xd6\x46\xeb\xcb\x9d\xa6\xf8\xdf\x97\x82\x75\x00\x58\x19\x39\x3b\x16\x42\x12\x14\x98\x14\x70\x56\x18\x26\xaf\x20\x5e\x61\x55\x2f\x44\x75\x59\x80\xf0\xcf\x82\x8f\xc2\x30\x39\xbe\x95\xe9\xb7\xc0\x92\x18\xff\xc4\xc9\x2d\xcb\x1f\x6f\x78\x6e\xf3\xbb\x36\x9f\x89\x3a\xd9\x4c\x84\xd7\x1c\x82\xcd\x2d\xb2\x32\xcd\x19\x03\xd7\xc3\x1d\x4e\xc1\xb7\x33\xfe\x15\x2f\xf2\xeb\xf8\x6f\x1c\xaf\xb2\x8b\x22\x29\xbe\xc6\x6f\x39\x06\xe7\xc6\xf8\x05\xc7\xcb\x8c\x2d\x5e\xa4\x39\xab\xf6\xe5\xf8\x89\x0c\xde\x1b\xff\xc2\x31\xa7\x5f\xba\x22\x96\xfe\x6b\xb9\x81\x5c\xd5\xb5\x68\x8a\xb0\xaa\x25\x43\xd0\xab\xba\xc6\x13\x66\xf3\x38\xc1\x9b\xfa\xaa\x5e\x57\x15\x36\x62\xe1\x6e\xf0\xb2\x5a\xd5\x8b\xea\xe5\x52\xbc\x5c\x5a\x4b\x55\x2d\x54\x31\x76\x07\x1b\xc7\xca\xdd\xde\xf5\x5a\xf3\xbf\xec\x26\x67\x95\x3f\xa5\x83\x8a\xd7\x9a\x8a\x17\x86\x8a\x67\x77\x38\x43\x5b\xf6\x66\x96\x23\xdc\xca\x4b\xe1\x10\x01\xf9\x80\x95\x99\xd6\xef\x3f\x6d\xca\x8f\xd6\x9a\x32\x98\x16\x39\x69\x7a\x5a\x5a\x41\x99\x61\xd2\xac\x69\x29\xed\x79\xbb\xdd\xc5\x09\x4e\xab\x69\xb1\x58\x79\x2a\x5e\xa6\xed\x69\x51\xc3\x7b\xd0\xcc\x3c\xa9\x79\xc6\x9a\x08\xfe\xa8\xe1\xb3\x69\xcf\x47\x69\x32\xdf\x7d\xcf\x7c\x68\xa0\xec\x29\xc9\xaa\x29\x81\x5a\xbf\xfb\x84\x68\x94\xd7\xa6\x64\x36\x8f\x59\x1b\x69\x00\x80\x53\x47\x94\x25\x44\x56\xe1\xe9\x1a\xd9\xe5\x9b\x59\xb8\xa7\xb4\x7d\x96\xe5\x02\x14\xa5\x2f\x30\x47\x5e\x31\xee\x78\xef\x1b\x3c\xbb\x3b\x73\xc8\xfd\x18\xaf\x61\xba\x40\x56\x2a\xc9\x5d\x3d\x91\x92\x40\x3f\xcf\x7f\xe2\xd7\xab\xb8\xe0\x3b\xfc\x23\x6f\xe7\x0b\xf8\x17\xc8\x93\x75\x61\x7c\xe2\xd9\x47\x14\x7d\x0a\x36\xc9\x94\xc3\xed\xb6\xee\x28\x8b\x5c\xf7\xb1\xeb\xb6\xe5\xce\x9f\x78\xb0\xc8\xaf\x03\x38\x54\x78\xb7\x42\x38\x04\x11\x6f\x87\x54\x3e\x0d\x71\xe2\x64\x5e\x34\x46\xe2\xdf\x68\x80\x82\x92\xf2\x17\xd7\xd7\x74\x91\x25\x9c\x22\x7b\x53\xc4\x70\x1c\xa4\x5f\xd6\x79\xc1\x4b\x72\xfb\x5e\xb0\x79\xc5\xf0\x9e\x65\x05\x05\x7d\x6d\xec\x2c\xf4\x4f\x07\x3f\xcd\xaf\xc5\xc0\xc5\xf2\x83\x1f\x0e\x7e\x97\x16\xd9\x9a\xc7\x4e\x09\x7f\x1d\xfc\x4e\xa6\x1a\x93\x51\xf6\xf0\x7b\xc8\x72\x99\x5c\x3a\xf8\xe9\xb3\xc7\xef\x1f\xc7\x4e\xba\x48\x78\xe2\xe0\x67\x79\x2a\x29\x72\x21\x7f\x38\x38\x2b\x45\xdd\x0e\x1f\x5e\xf1\xb5\x89\x16\xbb\xdd\xea\x8e\x6a\x45\xd0\x99\x29\xd9\xed\x9a\x63\xe4\xe0\xbf\x54\x5c\x92\x66\x3e\x86\x6c\xe9\xf1\x5e\xc6\x7a\xd4\xb8\x1f\xce\x38\x44\xdf\x1e\x12\xd2\x22\x08\xa3\xda\x98\x54\x9a\x06\xa9\x65\xf8\xc1\xf9\xa1\xcf\xfb\x3f\x38\xbd\x4c\x1c\x7b\xd4\x09\x68\xd1\xd3\x0d\x04\x3f\xa8\x1c\xeb\x8c\x1c\xfe\xd5\x9b\xc6\xde\xec\xc3\x4d\xff\x83\x1f\xcc\xfb\x28\x46\xd3\x0f\x87\x1f\x0e\x45\xe1\x87\x9b\x7e\xfc\xe1\xa6\x8f\xfe\x37\x9a\x8a\x0a\x81\x3f\x7f\x84\xbc\x69\x1c\x7b\x1f\x16\x7d\x84\xa6\x5e\xf0\x08\xfd\xe1\x10\x17\xe4\xf0\xaf\x02\x87\x71\xd0\xff\x80\x83\xfe\x1f\x0e\x2b\xd5\x61\x6e\xeb\x6c\xa4\x13\x26\xb3\x02\xfc\xdd\x96\xe9\x15\xbd\xa6\x31\x9f\x45\x73\x9c\x6c\xf8\x55\xcc\x67\x83\x39\xbe\xca\x4b\x1e\xf3\xd9\x70\x8e\x05\x15\xc4\x7c\x36\x9a\xcb\xb4\xbf\x7c\x36\x9e\xef\x64\x26\x82\x2a\xa4\x7c\xd5\x45\x95\x33\x8b\x06\xb2\x65\xd7\xf5\x78\x9f\xe8\xa7\x3e\xc4\xaa\xe4\x7d\xe2\x1c\x1e\x3a\x18\x16\xc8\x95\xae\x21\x7e\xf7\x9d\xff\x0d\x5e\x72\xa2\x7f\x5d\x2e\x7e\x8b\x32\x01\x89\x2c\x73\x62\xa7\x2f\x9f\xa1\x3c\xa9\xda\x80\x2c\x7e\xd8\xca\xb7\x92\x68\xd8\x18\x11\xfb\x93\xc0\x86\xd4\x48\x81\xb6\xa8\x90\x1f\x98\xf8\xa6\x8c\xc8\x92\x9d\x56\xd5\x24\x10\x97\x20\x2b\x1f\xab\x7b\x0d\x71\xde\x4d\x09\x53\x21\x11\x0f\x3f\x1c\xf6\x0f\x11\x5e\x91\x10\x6f\x48\x5a\xe5\x8f\xdf\x9c\x93\x70\xb2\xf1\x7d\xe4\x04\x82\x00\xbd\x84\xa4\xb3\xcd\x1c\x4d\x53\xf8\x2e\xa5\xde\x06\x47\x28\x76\x02\x78\x9b\x4c\x57\xfd\x7e\xbc\x82\xc8\x9c\x8e\x2c\xf0\xaa\x8a\xfd\x08\xaf\xa0\x07\x14\x5b\xa5\x78\x80\xf0\xca\xf7\x8d\x93\x30\x7c\xe7\x31\x92\x2a\x56\x77\xe8\x20\x04\xb1\x44\xcb\xa9\x73\xe8\xc4\x4e\xe0\x20\x5c\x4c\x3d\x39\x38\xc2\x70\x26\xd8\x62\xcc\x2a\x34\x95\x72\x49\x38\x2a\xe3\x8a\x47\x09\x7c\x23\x23\x6f\x0a\xe4\xc2\xb3\x22\xd7\xdc\xe3\x08\x97\x06\x97\x90\x49\x99\x94\xd0\xf6\x76\x2b\xfa\xc6\xcc\x75\x0f\x98\x9a\x72\x8d\xdd\x52\xe6\x98\x84\x32\x52\xea\x97\x38\x13\xe4\x98\x2d\x3d\x66\xc7\x77\xd7\xdf\x70\xd5\xfe\x41\xa9\x28\xe2\xa0\xac\xcd\x98\x2c\x26\x1c\x67\x5e\xa9\xbd\xe6\x9d\x43\x99\xea\x33\xbd\x4a\x8a\xc7\xdc\x0b\xd1\x94\xc7\x89\x47\xab\x84\xe8\x1f\x0e\xfb\x7f\x38\xc4\x8e\x83\xfa\xce\xa1\xd3\xaf\xb2\x5a\x94\x53\x4f\xb6\x4e\x52\x68\x0f\xc5\xe9\x8e\x07\x9b\x62\xf5\xb3\x90\x87\x49\x8e\xe1\xe1\xdf\x28\xa3\x45\xc2\x29\xc9\x30\x0f\x58\x5e\x5c\x27\xab\xec\x1b\x25\x09\xe6\x80\x7b\x52\x62\x9b\x5e\x3a\x02\x24\x48\xf8\x68\x05\xdf\x76\xcb\x02\x4e\x21\xc2\xfb\x0e\xf3\x40\x5f\x8a\x92\x3a\xb7\x6a\x4e\x0d\x44\xaf\xad\x86\x24\x47\x34\xd1\x74\xcb\x48\x38\xa9\xe7\xf4\xa0\x62\xb4\x68\xa2\x35\x5e\x34\x58\x25\x25\x7f\xa1\x13\x7e\x1c\xaa\x28\xc2\x67\x61\x0d\xf5\x1e\xc4\xec\x05\x9a\x0b\xb1\xd8\x49\xe5\x04\x1d\xfe\xd5\x9b\xfd\xf5\xc3\xe1\xbc\x1f\x7f\x38\x14\xac\xea\xd1\x1f\x0e\xad\x29\xeb\xf7\x99\xd6\x05\x49\xd1\x80\xf5\x4d\xb4\xe2\x20\x38\x74\x50\x9f\x6b\x17\x69\x1d\x93\xbe\x1f\x29\x5e\x98\x92\x03\xcf\xf9\xf8\x11\x34\x68\x1f\x3f\x3a\x99\x51\xe0\xa9\x88\x9a\x90\x7e\x02\x55\xdc\x6d\x55\xcb\xf2\x5f\xc5\x81\x57\xfe\xa4\x07\x9a\xfa\x0e\x22\xa3\x12\x53\x19\x9d\x04\x93\x3f\x3b\xad\x5e\x67\x4b\xef\x74\x7c\xa0\x27\x46\xa5\x76\xe2\x7e\x84\xb6\xdb\xae\xf2\x01\xda\x6e\xa3\x28\x6a\xbf\x18\xc2\x8b\xa3\xf6\x8b\xd1\xbe\x2f\xc6\xf0\x62\xd4\x7e\x71\x04\x2f\x06\xed\x17\xc7\x7b\x80\x3a\xd9\x53\x7e\x8a\xaa\x71\x56\x14\xc2\xfd\x28\x9c\x30\xc1\xaa\x98\xef\x23\xb1\xbd\xb5\xa0\x66\xd6\x87\xea\x47\x58\x61\x79\x5d\xbb\x34\xa1\x20\xd1\x84\xb0\x37\x08\x52\x9d\x46\xfa\x27\x9f\xfa\x51\x4c\xcf\xf9\x34\x8a\xfd\x68\xc7\x85\xac\x4d\xb9\x14\xb7\x49\x3a\x5d\x75\xe9\x9c\xc4\x04\x4e\x9d\x3f\x38\x7d\x2a\x44\x78\x1e\x2c\x8b\xfc\xfa\x61\x1f\x51\x13\xfe\x58\x7e\x99\xe6\xd7\xeb\xa4\xa0\x4f\xbe\xea\x3c\x21\x3f\xab\x6b\xe0\xb2\xb5\xef\xcb\x95\xb1\xf6\x68\x50\x42\x2e\x11\xcc\xd5\x0f\xc3\x22\x64\x42\xb3\x22\x16\x7f\x3d\xb1\x88\x72\xd5\xe8\xcb\x8c\x51\x9f\xd7\x1e\x51\x57\xbd\xa7\xf9\x6a\x73\xcd\xac\x9a\xb2\x40\xf0\x00\xbb\xfa\xa5\x62\x32\x0b\x53\xbf\x51\x82\x3a\x6b\x2b\x28\x6a\xcf\xa2\xa6\x18\x12\x4b\xae\xc5\x80\x18\x78\x5e\xdb\x78\xd1\x0c\x6d\x61\x10\xf3\x8c\x2e\x57\xa2\x60\x0f\x82\xee\xe9\x70\x2f\xae\xee\x1f\x54\x0d\x0b\x5d\xf3\xd0\x89\xd3\x7f\x16\xf7\xdf\x8f\xa0\x17\xac\x03\x41\x46\xcc\x78\x38\x7a\xd8\x94\x49\x30\xd9\xc3\xe6\xdc\xd4\xee\xc6\x8d\xd5\xd8\x9d\xb8\xe9\xa8\xb7\x17\x37\xac\x13\x37\xa0\x21\x92\x09\x77\x5e\x25\xeb\x17\x6c\xbd\xe1\x5d\xa1\x80\xfe\xfd\xdd\x9b\xd7\xb2\xae\xbd\xff\xfe\xf5\x03\x9a\xef\x7e\x98\xfd\xf5\x03\x9b\x3f\xfa\xc0\x60\xdf\x32\x08\xdf\x70\xd5\xec\x2f\x6f\x5f\x76\xca\xe5\x84\x6f\xb7\x8e\x83\xc5\x46\xe8\x1c\x42\x68\x81\x19\x35\x82\xd7\xdc\x75\x65\x21\x9f\x85\x90\x7e\x4d\xc8\x99\x42\xde\x24\xb4\xcf\x51\x45\xc1\xb9\x92\x39\x0e\x0a\xd4\x14\xda\x9d\x52\x8f\xea\x97\xb7\x2f\x7b\x69\xbe\x59\x2d\x7a\x2c\xe7\xbd\x0b\xda\x83\x81\x2c\xd4\x46\x29\xc5\x10\x95\x35\x58\x3e\xb5\x77\xd4\xf4\x9c\x08\xa9\x4e\x89\x5d\xaa\x96\xdc\xfa\x32\x76\xe9\x85\x38\xed\x47\x08\xed\x38\x29\x3d\x21\x91\xe1\x2a\xf0\x4e\xe2\x71\xd4\x3a\xb0\x54\x87\xb2\xce\xc8\x2d\x37\xf4\x62\x9d\xa4\x9f\x7e\xce\x57\x5f\x97\xd9\x6a\xb5\xdd\x7a\x34\x58\xd0\x75\x41\xd3\x84\x37\xb2\x69\x4a\x41\xb9\x24\xb3\x39\xae\x02\xc3\xc0\x07\x26\x3b\xf5\x6c\x7e\xc7\xb5\xf3\x2a\x4f\x16\x74\xe1\xe0\x5b\xca\x36\xd7\xb4\x50\x11\x37\xf0\xbe\xbb\xee\xd5\x9d\x77\xd8\xd9\xc3\x1b\xca\xe0\x46\xba\x39\x52\x12\xc1\xf5\x1b\xee\x66\x57\xcc\x3b\x1a\x23\x9c\x8b\xbf\xc7\x96\xe4\x90\xd5\x12\x74\xa9\x84\x46\x06\xc3\x33\x2e\x30\x53\x3d\x10\x86\xd9\xce\x3a\x14\x83\x48\x58\xc4\x05\x7e\x9f\x7f\xa2\x2c\xfb\x46\x8b\x98\x79\x47\x47\x08\xab\xfb\x17\x08\xd1\xcd\xbc\xe1\x31\xc2\xcf\xf2\xeb\x9f\x12\xb6\x58\xd1\x22\xce\xc5\xc0\x7a\x3f\x52\xba\x50\x25\xd5\xd8\x32\xcf\xb1\xca\x1d\x71\x48\x1f\x0a\xda\x80\x2f\xde\xf1\x82\x26\xd7\xb5\xca\xb2\x08\xea\x8d\xc6\xba\xde\x9f\x8b\x8c\x0b\x14\x76\xd4\xaf\xbf\x12\xdf\x1d\x8f\xf4\x67\x3f\x17\xf9\x97\xaf\x5d\x10\xd9\x2f\xa0\xab\xf1\x40\x7f\xf3\x2c\xbf\xfe\x85\x67\xab\xb2\x56\x5f\x17\x8a\xba\x47\xa7\xba\xea\xd3\x7c\xb5\xa2\x29\xcf\xd8\x65\x57\x1f\xad\xb7\xb2\xa3\xa1\xf8\xfa\x19\x5d\x26\x9b\x15\xaf\xa3\xef\x6d\x59\x76\xb5\x53\x15\xab\x78\xed\x16\x3a\xd1\x4e\xea\xb4\x9f\xbd\x79\xd5\x79\xa1\x2c\x96\x7f\x6e\xe5\xb7\x13\xcf\x85\xc7\x30\x47\x01\x65\x0b\x48\xf9\x10\x2c\xf2\x6b\xd5\x8a\x68\x38\x6e\x07\x26\xc9\xa1\x19\x43\x23\x76\xff\xd6\x89\x5b\x36\x9d\x63\x26\x9b\xe6\x08\xe7\xb2\x69\x29\xe0\x3e\xcb\xaf\xe5\x0c\xc5\x5d\xc4\x9c\x29\x48\x65\x51\xbd\xc9\x4c\x70\x0f\xfc\xfc\x4f\xcf\x5f\xbf\x7f\x67\x29\x2d\xe3\x01\x06\xed\x0a\xe4\x57\x8e\x43\xf9\x40\xd9\x22\x0e\xa5\xfe\x3e\xc2\xeb\x22\x4f\x29\x84\x6b\xcc\x54\x3c\xfa\x2c\x67\xe2\x33\xa5\xd5\x89\xf4\x2f\xf9\x55\xba\xca\x4b\xca\x93\xcb\x38\xc2\xf9\x9a\x32\xf1\x6b\xa0\x7f\x89\xfd\x21\x8e\x30\x84\x11\x13\x7f\xc5\x07\x6d\xbd\x4b\x57\x6c\xaf\x9a\x94\x3f\xed\x62\x74\xa0\xb1\x11\x3c\x3d\x28\x37\x6b\x5a\x7c\x24\x1c\xb2\x1d\x76\x07\xde\xb7\xef\xe0\x6f\xad\x38\xfb\xb1\x0c\xe0\x1a\x53\x6c\xf3\x9b\x08\xdf\xa8\xd5\x01\xd9\x76\xe0\x62\x64\xa3\x79\xd1\x6e\x87\xd0\x2e\xde\x07\x91\xd8\x92\x04\x63\xd6\x30\xa9\x13\x72\x2d\xf5\x1e\xb3\xc0\xb4\x01\xb3\xc1\x17\x73\xc8\xec\x92\x5a\x76\x80\x96\xf2\x4a\x10\x84\xb3\x29\x69\x4f\xec\x24\x29\x77\x26\x5e\x53\x7f\x2c\xf8\x5e\x34\x3a\x95\x8c\x2f\x1a\x87\x08\x67\xf0\x23\xb2\x58\x60\x52\x2d\xa0\x34\x78\xff\xeb\xcf\xcf\x9f\x7d\x7c\xfc\xf6\xed\xe3\x5f\x3f\xbe\xfb\xe5\xe7\x9f\xdf\xbc\x7d\x3f\x1d\x44\xa3\xe3\xd1\xc9\xf0\x68\x74\x1c\x47\xe1\xf1\xf0\x78\x14\x9d\x0c\x86\x2d\xa5\x41\xb6\xf4\x12\x0f\x9d\x71\x6b\x2f\x7d\x9b\xb0\x4b\x6d\x6b\xf3\x82\x7d\x4e\x56\xd9\xa2\x27\x46\xb5\xe8\x25\xe2\x44\xd8\x93\x1b\x76\x65\x86\xd4\xdd\xbd\x27\xf1\xf2\x4b\xc6\xf8\x89\xb6\x89\x41\x81\x39\x1d\x92\xb4\x42\x57\xec\xe9\x63\x07\x9c\x90\xc5\x67\xa9\xa8\x8d\xb5\x70\x40\x78\xcd\x94\x29\xb5\x64\x8a\x83\xce\xde\x5d\xf7\x00\x94\xa6\xb6\x39\x51\x8a\xec\xf8\x44\xba\x0d\x21\x0f\x38\x6c\x73\x7d\x41\x0b\x3b\xad\xa4\xcc\xd6\xd5\x0a\xc3\xca\xdb\x22\xc7\x8b\x65\x8f\xb2\x34\x5f\x64\xec\xb2\x97\x95\xbd\x72\x4d\xd3\x6c\x99\xd1\x45\x8f\x5f\x51\x26\xfe\xe9\x41\x34\x2a\xa3\x39\xec\x5d\x6f\x4a\x90\x48\x92\x9e\x6a\xde\x20\x72\xad\xad\x96\xb4\x20\xa1\x34\xbf\x12\xd2\x9d\x7d\x6e\xd6\x19\x9d\x3b\xa1\xe7\x9d\x76\x53\x3f\x38\xb0\x7c\x9c\x06\x24\x4a\x3e\x4a\x7a\xb2\x99\x1f\x8c\x56\x6a\x23\x13\x52\xd0\x85\x95\x23\x18\x26\xf2\xc9\x66\xb9\xa4\x85\xeb\xd6\x22\x11\x5a\x6f\xa6\x75\x62\x57\x60\xf2\xe0\xe2\x2b\xa7\x2f\x95\xa9\xd4\x59\xb8\xdd\xda\x25\x67\x6c\x0f\x01\xfe\x90\x2f\x97\x25\xe5\x3f\x08\xdc\xe6\x1b\xde\xcb\x97\xbd\x8b\x7c\x03\x39\xb5\x27\x8d\x56\xcf\x58\xdf\x2b\xb6\xdb\x10\xed\x6b\x4a\x12\x53\x67\x53\xdc\xba\x69\xd1\x77\x04\x60\x53\xd3\xa2\xe1\xf8\x8e\x97\x98\xa1\xb8\x5d\x86\x0b\x34\xd9\xbb\x46\xf8\xbe\x35\x41\xc9\x12\x56\x68\x95\xb6\xd5\xa0\x33\xee\x20\xcc\x69\x8b\xc3\xb4\xea\x30\xd7\x75\xc4\x5c\x0a\x59\x91\x11\x67\xc3\x97\x27\x12\x89\x07\x69\x90\x95\xcf\x15\x11\x7b\xac\xdb\xec\xee\x07\x47\x93\xb9\x63\x91\xb0\xe4\x0e\xb2\x2b\xb3\x0e\x7e\xd0\x29\x2b\xc3\xed\x15\x20\x05\xe7\xc4\xa3\x44\x70\x9c\x02\xa1\x40\xf0\x6b\x0a\xe5\x93\x5c\x1c\x33\x61\xd1\x57\x9a\xaa\x1c\xb5\xc6\xdc\x8c\x56\x9b\x2d\x3d\x01\xb2\x24\x37\xc1\x29\x94\x28\x10\x6e\x17\x1e\xd7\xaa\x7d\x73\x56\x23\x44\xf7\xce\x90\xbe\x9a\x99\xd2\xd8\x13\x87\x96\xb5\x10\x62\x43\x1c\x0a\x20\x29\xda\xc9\x1d\x41\x2c\xaa\xfb\xa9\x3f\xb8\x80\x5f\x7b\x16\xc1\x76\xeb\x28\x3e\x99\xb1\x1e\x57\x9c\x47\x2f\xd5\xaa\x49\x0d\xed\x76\xeb\x15\xc4\x80\x0e\x87\x6f\x01\x70\x88\x62\x45\x05\x02\x26\xd9\xb2\x54\x90\xaa\x44\x7b\x1e\x0f\x84\x4c\x60\x58\x1b\xd4\x96\x45\x60\xe6\x58\x4c\x3a\x4d\x28\x7f\xbc\x9b\x25\xe1\x9e\xec\x0a\xdb\x23\x52\x0f\xb8\x97\x17\x72\x23\xf0\x57\xd9\x27\xda\x93\x01\xad\x03\xa7\x15\x07\x57\xab\xf1\xda\x83\xa6\x7b\x08\xac\xcc\xbe\xb5\xd8\x53\x9d\x35\x65\x4b\x8f\x9e\x85\xdd\xeb\xbb\xfb\x7b\xc5\xde\x18\xbd\x04\xbd\xec\x0f\xa8\xa5\x01\xcb\x96\xde\x06\x92\x8e\x02\x89\xf0\xb3\x70\x1a\xc6\x40\x48\x08\xe1\xee\xdd\x05\xd9\x8a\x5a\x76\x06\x4a\x53\x04\x59\xbf\xc3\x49\x5b\x9d\xb9\xac\x5b\x3f\xca\x29\xae\x7a\x31\xe4\xaa\x49\xd4\x28\xf9\xa4\x01\x29\x9b\x14\x7d\x12\x21\x48\xfb\x35\x18\x8f\x5d\x3e\x2b\xe6\x1d\xbd\x2c\x14\xb6\xe9\x39\x49\xbc\x7d\x1c\xf0\x31\xe7\xf4\x7a\xcd\x7b\x3c\xef\x25\xab\x55\x2e\x8e\x96\x6a\xa6\x7b\xab\xa4\xb8\xa4\x45\x8f\x5f\x25\xac\x77\x9d\x7c\xc9\xae\x37\xd7\x3d\x15\x2a\xe0\x8b\xd3\x4f\xbc\x7a\x9a\xfc\xbe\xd3\x13\x7c\xb7\xac\xf6\xae\x70\x6b\x01\x73\xd5\xb5\x4c\x69\x95\x8a\xce\x52\xe3\xde\xbf\xd0\xba\x24\x4e\xab\x42\x90\x95\x7f\xca\xe8\x8d\xeb\x7a\xed\x42\x8f\xa2\xed\x96\xee\x59\xa1\x16\x38\xd5\x1e\x32\xd1\x6c\xd3\xa2\x56\xa9\xb6\x77\xfa\x54\x5f\xa1\xd8\xf0\xc3\x8e\xa1\x5b\x0a\xad\xb9\x3b\x88\x26\x13\xa4\x52\xee\x71\x95\x72\x2f\x29\xd3\x2c\x73\x62\x99\x3a\x2f\xe1\x19\x8b\xd4\xc3\x45\xc6\x92\xe2\xab\x13\x9b\xeb\x48\x99\x26\x4f\x70\xe8\x58\xff\xf4\xd5\xef\x9e\xdc\x80\x74\xdd\xbf\x79\x54\x33\x35\xf5\x55\x5a\x0e\xf4\x57\x69\xe9\x0f\xaa\x16\xa2\xa3\x15\xb5\xda\x93\x8f\xaa\x99\xc1\x23\xd5\xe9\x15\xfd\x52\xc1\x71\x7e\x7e\x1e\xc9\xe2\x8b\xa4\xa4\x47\x23\xf3\xe6\x85\xd5\xeb\x42\x1e\xf4\x62\xdb\x56\xdc\x86\x8a\x13\xcf\x71\xfa\x1c\xd5\x43\xb0\xe2\x82\x08\xf9\xbc\xca\xd4\x57\x3f\xf8\x4b\xa5\xbe\x57\x5d\xb7\x6f\xb7\xfc\x2c\x44\x70\x9b\x15\x22\xcc\xcf\xe1\x98\x58\xbb\xc5\x75\x9c\xfa\x27\x6c\xbb\x65\xb5\x6a\x32\x41\x9f\x55\x80\xd9\x19\x09\xeb\x5f\x8b\x21\x93\x10\x9d\x11\x8f\xcb\x5f\xd5\x6b\x31\xb7\x74\xbb\x15\xc4\xa0\xf6\x4e\x33\xc1\x54\x4d\xb0\x8d\xbc\xe7\x52\x78\x83\x7d\x6e\xcf\x74\xaa\x9a\xef\x9b\x35\x15\x9d\xa8\xd7\xaf\x9b\xaf\xef\x22\x9d\x97\xcd\xca\x8d\x89\x7b\xd3\x82\xea\x37\x91\xcb\x3b\xab\x99\xda\xfc\x77\x6e\x37\xbf\xb0\x4f\x2c\xbf\x61\x46\x40\x88\x7b\xb0\x9a\x28\xf1\x68\x1f\x32\xa6\xdf\x45\x18\xd7\x0d\x05\xf6\x8c\xcf\x27\xe2\x1f\x22\x38\x2e\x06\xb6\x5b\x54\xb5\x5f\x69\x29\x49\xc5\x59\xae\x25\x4f\x96\xc0\xfb\x40\x5a\x1d\xf2\xd1\xd4\x2b\x08\xc3\x8c\x84\x28\x66\xe7\xd5\xf1\x69\xca\x88\x75\x96\x62\x67\xbe\x79\x3a\x01\x8a\xb2\x9e\x11\x66\xa4\xcf\x54\xee\x4d\x26\x09\x2e\x9f\x86\x71\xa5\xe5\x14\x34\x17\x42\xb9\xb9\x3e\x63\x08\xb3\xf3\x0a\x48\x01\x75\x5e\x81\x5a\x55\xf4\xa3\x9d\xce\x68\xce\xce\x42\x79\xfa\xa9\x55\x0c\x77\xdd\x87\x16\x58\x34\x29\x5c\xc3\x80\x31\x3b\xc2\x75\xe9\xc9\x12\x94\xf4\x76\x34\xf5\xa3\xf8\xd2\x42\x65\xf7\x31\x89\x9b\x7b\x43\x57\xec\x4d\x78\xcf\x59\xac\x8b\x83\x57\x22\xb2\x75\x6c\x56\xd7\x9d\xd3\x7c\x7a\xd7\x6b\x69\x13\xa3\x04\xc3\xce\x8a\x96\x2e\xb7\x56\x59\x8c\x68\xc6\xe7\x7a\x4c\x9d\xb4\xfa\x39\x59\x19\xc9\x43\x4b\x43\x72\xe0\x42\xf0\x51\x22\x98\x25\x45\xd8\x58\x92\x7a\x1e\x9c\x90\x08\x97\x66\xda\xc0\x0a\xae\xda\x30\x8c\xfd\x91\x90\x7b\xe5\xea\x23\x70\xd7\xa1\x76\xd7\xa2\xb1\x1c\xd0\x76\xab\x16\xa6\x38\x72\x88\x07\xb5\x32\xab\x47\xdf\x3c\x23\x29\x03\x68\x21\x63\x20\x0e\x59\xfa\x77\x45\x29\x09\x19\xe0\xf2\x90\x0c\x70\x2a\xfe\x61\x87\x64\xd0\x38\x5b\x1a\xcd\x42\x04\x16\x0d\x62\xb5\xc5\x34\x28\x68\xb2\xf8\xe5\x05\xe3\xd1\xd1\x93\xe7\x1e\x7f\x94\x80\xb8\x9c\xeb\x20\xde\xbe\xbc\x9d\xcc\x08\x9b\x64\x67\xe5\x24\xeb\xf7\x51\xb6\xf4\x44\x73\x19\x22\x84\xac\x3c\x8e\xfd\x08\x2c\x36\xc3\x38\xf3\x37\x12\x52\x59\xe2\xba\xde\x86\x64\x08\x67\xfe\xa6\x2f\x0a\x4c\xe4\xf0\xcd\xa3\x04\x48\xde\x8f\x0e\x64\xb5\xcc\x27\xe2\x5b\x2c\xba\x93\x8b\x41\xf4\xc9\xfa\xe9\x79\x29\x2d\x26\xfc\x14\x74\x25\x93\xec\x9c\x84\x93\xcc\xf7\x2b\xbf\x9d\x35\x39\x08\xf1\x92\x84\x93\xe5\x59\x3a\x59\x5a\xd0\xf5\x97\x42\xde\x16\xf0\x2d\x11\xba\x5d\x8b\x9d\x07\xd2\xce\x8a\xd1\xad\x35\x24\xd9\x4e\x63\xaf\x42\xd5\xe7\xea\x7c\xcb\xc8\x6b\x20\x11\x8f\xa1\xed\x36\x54\xce\x3d\x66\xdd\xb2\x49\x21\x58\x8b\xaa\x52\x20\x74\x9e\x83\x35\x71\x8e\xe2\x82\xe4\x2a\xcc\xbb\x4d\x23\xd9\x1f\x07\x07\x84\x84\xdd\xcc\x54\xab\x64\xae\xe8\x17\x4b\x83\x70\x9e\x1d\x0e\xa0\xd1\xec\x70\x50\x89\x90\x09\x09\x27\xc9\x59\x31\xe9\xf7\x93\x56\xf2\x13\x73\x8f\x3f\x78\x94\xe0\x01\xc2\xd1\x91\x0c\xdd\x0e\xbc\xab\x34\x5c\x21\x99\xd0\x19\xeb\x27\x73\x62\x12\x9b\x24\x15\x0a\xbe\x56\x28\x50\x2f\x7f\xf1\xfe\xe6\x71\x5c\x0d\x1d\x61\x2a\x9d\xc2\xcc\x37\x8f\x3b\xbe\xb1\x15\x60\x1a\x76\x4e\x66\x73\x2c\x25\x6c\x23\x70\x09\x41\x9b\xcb\xc4\x08\x42\x16\x6e\x5e\x77\x1b\xcb\xa8\x1d\x08\xf4\x8d\x8e\x6f\x5a\x1d\x57\xa0\x54\xb5\xbe\x75\x80\xf7\xa2\xab\xb9\x8f\x77\x8e\x43\x2c\x22\x73\x4c\x10\xcc\x01\x67\x62\x3c\x72\x42\xa8\xc9\x73\x7d\xe0\x79\xdc\x27\x03\x74\x16\x22\x98\x24\x56\xbf\xc2\x4f\x20\x35\xf0\xf9\xf9\x09\xce\x09\xfb\xe3\x60\x7c\x84\x33\x39\xfa\x1c\xe9\x5f\x85\x19\x75\xb6\xbb\x07\xf3\x6f\xf4\x4e\x6a\x33\x7c\xd7\x65\xd6\x16\x39\x2d\x60\x9b\x78\xf2\x95\x53\x6d\x19\x1a\xb7\x8a\xd4\x51\x5d\x34\x65\xb5\xfe\x5e\xb7\xce\xc8\xab\x84\x5f\x05\xd7\x19\x33\x9c\xa8\x7e\xac\x99\xcd\x71\x4e\xf8\x24\x3f\x63\x13\xc3\x32\x71\x89\x53\xbc\x22\x74\x96\xcf\xf1\x46\x66\xee\x59\x93\xd5\xf9\x60\x78\x3a\x1d\xc5\xab\xf3\xc1\x60\x38\x1d\xc6\xab\xf3\xe8\x34\x9a\x0e\x62\xd8\xc0\xf3\xfe\xfa\x8c\x30\x2d\x81\xad\xa5\x04\xd6\x8b\xe2\xd5\x59\x34\x38\x01\x96\xb2\x42\x56\x02\xe9\xde\x20\x8e\x06\x27\x82\xd5\x46\xa7\x03\xd7\xcb\x44\x57\xfd\x68\x0e\xa6\x56\x29\xf1\x86\x91\xbb\x42\x67\x67\x47\xdb\xa3\xa1\x9b\xa1\xf3\x68\x70\x0c\x4d\xa4\xb5\x26\x86\xb1\xfe\x0c\x27\xf0\x63\x30\xc7\x56\xa3\x19\x72\x5d\xeb\x31\x51\x4d\x47\x63\x68\x3a\x1a\x6c\x3d\x68\x5c\xf5\x92\xa0\xf3\x41\x38\x12\xdd\xa4\x67\xe3\xf1\xe0\xf4\x68\xbb\x4d\xcf\xc7\xc7\xc3\xd1\x10\x75\x74\x3d\xea\xe8\xba\x84\x1f\xc3\xfb\x60\xb0\x1e\xcb\x06\x48\x27\x06\x24\x05\x5d\xa2\xa1\x2b\xd1\xf9\xd1\x78\x3c\x1c\xbb\x6e\x7a\x16\x45\xd1\x28\x8a\x06\x0a\xaa\x9d\x52\xd6\x6e\xa6\xde\x86\x88\x3a\x43\xbc\x26\x11\x8a\x37\xfa\x03\x6f\xe3\x43\xf9\x11\x2e\x24\x89\x6e\xc4\x31\x22\x74\xa3\x70\x30\xdc\xc2\x48\x05\x03\x1f\x1f\x0d\x07\xe1\x56\x94\xb9\x1b\x64\x6a\x22\x9c\xf7\xc9\x5a\x73\x9a\xb6\x5d\x75\xdd\x02\x88\x7c\xd1\x5c\x4a\x6e\x9e\x40\xa8\x4f\xd5\xf2\x09\x92\xf5\x7a\xf5\xd5\x93\x6f\xb0\x39\xbc\x39\x0e\x78\x66\x0a\x6a\x04\xf7\x4c\xc4\xfa\xe4\xfe\xaf\x15\xc9\x17\xb8\xe8\x93\x2f\x56\x7a\x8f\x9d\x57\xa0\x1d\x0f\xa4\x58\x40\x52\xcc\x83\x77\xab\xfc\x46\x3d\xda\xe0\xf7\xe9\x81\x52\x6f\x87\x96\xe2\x1c\x4e\xe1\x5e\x5f\xde\xcb\xbf\x78\xfd\xee\xe7\xe7\x4f\xdf\x7f\x7c\xf5\xf8\x2f\x1f\x9f\xfc\xfa\xfe\xf9\x3b\x32\x0e\xbb\x45\x2a\x3b\xbd\x7f\x97\x5e\xb1\xb3\xb4\xe6\xcc\xa9\xf2\xcd\xb4\x74\xf4\x55\xde\x71\x6a\xe9\x25\x6f\xcd\xcf\x4e\x79\x0b\x2f\xf3\xbc\xe3\xc6\x77\x34\xd8\xed\xf0\x68\x00\xdc\x65\x99\xe7\x1e\xea\x96\x04\xa9\xd8\x87\x40\xa1\xe4\xba\x52\x5a\xd7\xcf\x90\x84\xc3\x3a\x9c\xab\x4c\x38\x46\x3c\x39\x88\x76\x3b\x0f\x61\x1e\x7c\x7a\x95\x7c\x91\x55\x48\xe2\x09\xe9\x76\x9d\xe7\xab\x77\xd9\x37\x4a\x4e\xa2\xd3\x01\x4e\x83\x8f\xc9\xe6\xf2\x9a\xb2\x4e\x3b\x07\xda\xad\x80\xc5\x74\x87\xa5\xcc\xdc\x32\x65\x30\xda\x79\x99\x5e\x43\x6a\xe7\xf7\x09\xbf\x9e\xd5\xa6\xd5\x53\x27\x1e\xd3\xce\x0a\xb8\x53\x47\xf2\x0e\xfc\xa8\x5c\x57\xfe\x0d\xe0\xde\x81\x96\xae\x9b\xce\xea\x25\x73\x21\x50\xb9\x6e\xf7\x05\x7e\x8a\xeb\x95\x55\x8e\x44\xe9\xdc\xd5\xbc\x4b\x83\x73\x03\x50\xec\x3e\x8c\xb4\x15\xff\xc6\xb8\x8b\x23\xcc\xcf\x48\x38\x95\xd7\x4e\xb1\x21\x60\x36\x6d\x1f\x58\x0a\x55\x2b\x58\x66\xab\x15\x64\xe5\x8b\x6b\x05\xfa\x71\xd7\x9c\x00\x00\xee\x17\x56\x26\xcb\x2e\xdb\xcd\xde\x5a\xd5\x6f\xd6\x15\x4b\xf6\xde\xfa\xfa\xc0\xd4\x51\xf1\x40\xdd\x5f\xd1\xed\xf6\x80\x06\x1f\x75\x4d\xf8\x4c\x19\x22\xb5\x6f\x1e\x0f\x6a\xaa\xb1\xed\xf6\xa0\x7e\x26\xeb\x14\xfd\x1e\x6b\xf3\x75\x73\x42\x91\x1f\xa8\xcb\x10\x30\xe2\x6b\xeb\xa2\xaa\x13\x24\xae\x74\xcc\x38\x27\x21\xce\xaa\x9d\x1a\x6e\x29\xf2\xb3\x6c\xd2\xef\xe7\x42\x34\x16\x1b\x31\xd8\xe2\xe4\x73\xb1\xa3\xc3\xbe\x5c\xc0\xa3\x92\x8e\x35\x07\x3c\x2b\xc4\x59\xb1\x38\x63\xd3\x28\x0e\x25\xa2\xf4\x55\x42\x0d\x55\x6a\x9f\x56\xa7\x1c\xda\x3c\xe5\x58\xfa\x93\x3b\x74\x5f\xf7\x6b\xd0\x6a\x3a\x8f\xdf\xae\xe0\x38\x08\x8d\x5a\xa3\xe2\x35\x30\x9d\x2c\x4d\x78\xc7\x6c\x66\x1e\xdd\x77\x6f\xb2\xca\x4a\xde\xa5\xd6\x56\x16\xb6\xbd\x7c\xa9\xa7\x51\x6a\xb8\x3b\x54\x16\x66\xab\x08\xd5\x36\x56\x9d\x24\x61\xce\xc5\x54\x73\x12\x76\x8a\xcb\x7d\x50\x94\xe8\x22\x29\x81\xd5\xc8\x1f\xec\x18\xd4\x96\xd8\xd1\xc0\xad\x3c\x48\x88\x46\x26\x0d\xba\x4d\x7e\x97\x21\x27\xf2\x1e\x46\x1c\xa0\xc5\xee\xaf\xd3\xb4\x69\x0a\x2b\x04\xde\xab\x4d\x80\x5c\xe1\x1a\x47\x35\xeb\xf2\x20\xac\xbd\x28\x6f\x92\x75\x74\xd4\xf6\x09\xb2\xf4\x7f\xb0\x66\x5a\x47\x2d\x5b\x61\xae\x94\xe3\x65\xf6\x8d\x5a\xd7\x11\xd7\x9b\x15\xcf\xd6\x2b\x2a\x86\x11\x1d\xf9\x17\x19\xe4\xa1\xa9\xce\x2d\xe1\x84\x9f\xd1\x09\xef\x93\x01\xba\xd6\x7a\x32\xde\xaf\xb6\x56\x51\xb4\x6b\x01\x3b\x1c\x3c\x00\xd8\xd1\x3f\x05\xec\x70\x70\x07\xb0\x23\x1b\xd8\x21\xc2\xfa\xa9\x1f\x61\xde\x1f\xdc\x03\xfc\xd1\xe8\x01\xc0\x9f\xfc\x53\xc0\x1f\x8d\xee\x00\xfe\xc4\x06\xfe\xb8\x01\xfc\x91\xf5\x3c\xc0\xbc\x3f\xb6\x9e\x87\x98\xf7\x47\x77\x0c\x4e\xdf\x7a\xb4\x87\x17\x6e\xed\x01\x5a\x47\x2a\x3a\x75\x9c\x38\xec\xf0\x36\x9a\x2a\x45\x6f\x88\x29\x8a\x2f\x94\x84\x09\x25\xa6\x26\xaa\xf7\x4e\xff\xbe\x49\x56\x75\x8b\xc1\xd6\xd6\x71\xf7\x56\x61\x21\x53\xeb\xae\xec\xc1\x12\xd8\xb5\xc0\x2b\x53\x6f\x55\xc6\x08\xa1\x06\x49\xc6\x84\x88\xd0\xe1\x63\xe7\x38\xe0\xb2\xd8\x12\x5e\xed\x5e\x2c\xf7\x3b\x4f\xd1\x85\xb9\x4d\x02\x9e\x0f\x17\xb0\xda\x3f\x21\xb8\x1d\xec\x0e\x2f\x2d\xc7\x3f\x6c\xb7\xc1\x94\x69\x68\x2f\x08\x82\x9e\x83\x10\x76\xce\x14\xed\x38\x7d\xda\x77\xce\x9d\x3a\xdc\x5d\xfb\xaf\xa5\x1e\xfe\x67\x51\x59\x63\xc3\xfa\x72\xc2\x36\x25\xf0\x18\xa1\x53\xcd\x4f\x63\xfb\xa5\xf4\x28\xb7\x4b\x72\xd7\xf5\xf2\xfa\x05\x05\x3f\x0b\xb7\x5b\x76\x4e\xcd\x35\x71\x21\x0a\xf2\xda\xb5\x46\xf7\x82\x52\x16\x0e\x85\x28\xea\x81\xe6\x54\x19\xbf\x9e\x8b\x7e\xf8\xb9\x7d\x6b\xa5\x8a\x6b\xfa\x71\xbb\x86\x2c\x50\xe4\xd2\x16\x30\x32\xe2\xe5\xf2\xb2\xc4\xf7\x0a\xf9\x03\x27\x44\x5f\xa5\xf8\xfa\x26\x05\x97\x95\xb8\x91\xe1\x04\xe1\x95\x1c\xab\x3e\x5a\xe5\xe2\x58\x68\x2b\x17\xf0\x9a\x84\x93\xf5\x59\x39\xe9\xf7\xd7\xa0\xae\x9b\xad\x85\x4c\xb2\x99\xad\xe7\xe8\x36\x23\xe2\x11\x27\xf0\x58\x97\x49\xb2\xb3\x44\xc8\x24\xc9\x59\xa6\x65\x12\x9b\x8e\xd3\xd5\x66\x41\xdb\xfe\x03\x7a\xec\x42\xe8\x11\x50\x19\xd7\x1b\x23\x5d\xb6\x14\xd1\xfb\xc4\xe0\x57\x96\xd9\x0e\x86\x78\x27\x69\xb7\x72\xfa\x61\x0d\x44\x8d\x06\xc0\x7e\xa2\x45\xd0\x40\xce\x96\x48\x50\xa8\x5b\x2a\x5c\xbb\xf2\xc2\x82\x67\xea\x5b\x04\x9b\x4e\xbb\x6c\x9d\x0a\xc2\xf7\x7c\x2d\x45\x9e\xf2\x47\x08\x91\x5c\x17\x57\x6b\xfc\x5c\xd9\x7a\x68\x3d\xba\xbe\xff\xc1\x3d\x69\xd5\x33\xc3\xca\x98\x6c\x8e\x7a\x59\xd9\x63\x79\x6f\x95\xb3\x4b\xb1\x0d\x6c\xd6\xeb\xbc\xe0\x60\xb0\xcd\xb7\x42\x52\xd5\x7d\x31\x34\xf5\x98\x28\x69\xac\x23\x75\x25\x87\x62\x75\x87\x23\x5f\x4b\x23\x88\xda\x9a\xf2\x79\xc7\x2d\x61\xae\xae\x6a\x2a\x93\x33\xe0\x55\xd2\x4c\xe9\x2c\x44\xdb\x2d\x7f\xc0\x92\xb3\xae\xd7\x61\xdc\xbd\x7c\xc3\xcb\x6c\x41\x7b\xca\x52\xc4\x58\x1b\x15\x60\xee\xa1\x6f\x11\xab\x65\x64\xdf\x19\x17\x1d\x57\x8a\x9f\x6d\x7b\xb0\x7b\x2e\x15\xbf\xb6\xeb\xd6\xaf\x15\x1f\xb7\x2b\xdc\x75\xb1\x78\xd3\xae\xde\xb8\x5a\xfc\xd6\x01\xdd\x6f\xba\x5c\xfc\x58\x6b\xc8\xba\x5e\xcc\x1e\x7e\xbd\x58\xa0\x49\x01\xf7\xce\xcd\xfb\x14\x9c\xc1\xf5\x62\x63\x93\xff\xf7\x77\x6f\x5e\x93\x96\x0a\x43\xf9\xd8\x2b\x6e\x8f\xc1\x49\xb7\x79\xd7\x04\xec\xaa\x72\xd3\x0e\x3e\x26\x45\xb1\xdd\xca\x7d\x1e\xed\xa4\x63\xdc\x17\x32\x0a\x4f\x8f\x2a\xdb\xcd\xd7\xf5\x2b\x4d\xc7\x99\xdc\xa3\x33\xd5\xea\x52\x71\x38\x2b\x3a\xf5\x55\x5e\x34\x38\x76\xc5\x29\xcd\x6c\xef\xd6\xa5\xe8\xcb\x7f\x41\x7f\xfb\xfa\x7a\xde\xf4\x37\x52\x02\x92\x77\xd0\xb8\xc2\xf7\x0e\xc4\xd2\x93\xfb\x5b\x21\xd7\x5f\x61\x43\xe0\x38\x38\x23\x7c\x92\x01\x18\x19\xca\xfb\xe4\x2f\x1e\x9d\x65\x55\xa7\x56\xd0\xc0\x77\xba\xd3\x4a\xc9\x5c\xdb\x48\x54\x6b\xe1\x24\x3b\x2b\x8c\x48\x2a\xe4\xf3\xbc\x7b\x70\xc5\x2c\x9b\xf7\x07\xe3\xa3\x47\xc5\x2c\xeb\x47\x9d\x5d\xfe\xdd\x32\x42\xa5\x7f\x14\xdb\x46\xb8\xdd\xee\x35\x4e\x72\x24\xc3\x93\x5c\x8e\xf7\x36\x19\x53\x99\x72\x69\x9f\x9f\xef\xb3\x7d\x7c\x5f\x7c\xcd\xd8\x25\x58\xeb\xa4\x29\x2d\xcb\xde\x05\xfd\x9a\xb3\x85\x66\x27\xda\x0e\xb7\x82\xe9\x69\x25\xdd\xe0\xec\xa1\xf2\xcd\x0f\x8e\x6c\xaf\xd3\xf2\xea\x49\xdd\xc6\x4d\x1e\x50\xf9\x79\x2e\xa6\x32\xdb\x67\x87\xd5\xb4\x33\x6d\xda\x5b\xca\x56\x58\xbf\x30\x72\xcd\x5e\xeb\xe3\x05\xfd\xd2\xb3\x25\x19\x7b\xb4\x9f\xaa\xad\x8f\xc3\x9d\x3a\x07\xb5\xf3\xb8\x0f\x67\xad\x8a\x90\x6a\x7a\x8e\xea\x7e\x04\x0f\x2a\x85\x07\x9d\xb1\x7e\x3e\x27\x1e\x77\x07\xe3\xf1\xd9\xd9\xc9\x23\xaf\x98\xe6\x71\xe4\xe7\x08\x9d\x9f\x9f\x5b\x8f\x56\x9c\xca\x76\xef\xa3\xc1\xe9\xe8\xf4\xe8\x78\x70\xfa\x60\x10\x46\x2d\x10\x78\xd5\xdf\xd0\xcf\x91\x80\xc7\x8a\x74\xd9\x9a\xdf\xdf\x88\xc4\x89\xb2\x21\xf8\x2d\x68\x7f\x62\x80\xc8\x2a\x17\x8e\xed\xf6\x19\x18\x52\x8a\x21\xe1\x5c\x6d\xfb\xba\xde\x60\x28\x4a\x59\x7f\x54\x35\xf2\xf3\xdd\x8d\x9c\xb4\x1b\x19\x0f\x44\x29\xeb\x9f\xec\xd2\x26\xf7\xed\xf2\xe4\xc3\x45\xf3\xfc\xe9\x51\xf2\x8f\x7f\x50\x74\x16\x4e\xc5\xf9\xa1\x40\x67\xa1\x52\xc7\xc7\xf4\x5c\xda\xa0\x16\x08\x7b\xdc\x8e\xf0\x51\xc4\xff\xf8\x07\x87\x2f\xb8\xf9\x42\xf0\xae\x98\xc3\x17\x5c\x7c\xc1\xcf\x20\x4a\x02\xa1\xa8\x5b\x03\x8c\xb4\xcd\x91\xd1\x6a\x0b\x20\xf7\x58\xfd\x4a\xe1\x4a\x71\x60\x9f\x4e\x98\x32\x86\xcf\x95\xb8\x63\x0b\x0b\x82\x99\xe5\xc0\x1a\xd9\x2c\x9b\x43\x1f\xb3\xac\x4f\xe7\x46\x33\x57\xdf\xe3\xf4\xed\xfd\xcb\xe7\x2d\xa9\x93\x0a\x79\x0a\xc4\x2c\xb6\xdd\x4a\xbe\x66\x0b\x3b\xd6\xcd\x1d\x74\x42\xe7\x38\x27\x11\xb0\xd3\x7e\x3f\x3b\x13\xc7\x9e\xfc\x11\x19\x8c\x8f\xd0\x44\x6c\x16\xb2\x4e\x3f\x9b\x3f\xca\x27\xb6\x0a\xa7\x0d\xca\x93\x7f\x1e\x94\xbe\xef\x43\xf0\xc7\x68\xc2\x41\x62\xeb\x00\x44\xd4\xb8\x17\x94\x93\x06\x0d\xe9\xc3\xab\x04\x22\xc2\xf5\x43\x99\xc4\x42\x77\x4b\xd1\x51\x03\xc3\xcd\xc6\x06\x9d\x8d\x6d\x15\xb4\xd1\xfc\xec\xec\x64\x5f\xcb\x4f\x7e\x4b\xcb\x67\x67\x27\x55\xe3\xdd\x2d\x0f\x07\xf7\xc0\x3c\xaa\xb7\xec\x75\x01\xad\x1f\x06\xf3\xb3\xb3\xe8\x08\xf5\xa3\xa3\xe3\xe3\xe3\x41\x74\xf4\x48\x95\x0f\xf7\x76\x7e\xcf\xb0\x1a\x9d\x37\xda\x9d\xf7\x3d\x0b\x8a\xe8\xc8\x06\xc3\xc0\x34\x9c\xa3\x76\xe7\xff\x5d\x8b\xe1\x9c\x88\x2a\xd1\xe0\x44\x08\x3d\x85\x2f\x37\x86\x75\x7e\xe3\x0d\xf0\xc9\x23\x8e\x10\xee\xa0\xd1\x7f\x7a\xb5\x28\x28\xcd\x9a\x28\xe6\x93\xa2\xbe\x62\xb2\xbe\xfd\xb6\x82\x37\xab\xc1\x9b\x75\xc0\x9b\x75\xc2\xfb\x5d\x4b\x2a\x1a\x9c\xb8\x0a\x9f\x53\x3f\x7a\xe4\x0d\xc6\x63\x5f\xcf\x6f\x84\xe2\xbd\x2b\xae\x7b\xc1\x75\xae\x07\x75\xff\xdb\x45\xba\x7a\xa8\xc3\xc1\xf1\xd1\x89\xcb\xa6\xb0\x91\x87\xd1\xf1\x51\xb8\x65\x71\x07\x1f\xed\x5e\x8c\xf7\xf7\xda\x8f\x74\xbf\xbf\xb1\xd7\xef\x5d\xa8\xf7\xaf\xd3\x6a\x85\x9c\x9d\x0d\x46\x7b\x3a\xfd\xbe\x05\x6a\x46\x38\x18\x6d\x1f\xb2\x34\xdb\x9d\xfe\xb8\xca\x93\xe6\xda\xbc\xa7\xd3\x1c\x3e\xd4\x07\xc7\x83\x50\x0a\x1d\x7b\x9a\xfe\xbe\xf1\x34\x9a\x8e\xf6\x35\xfd\x2c\xdf\x5c\xac\xe8\x3d\x60\x9f\xdc\x03\x36\x88\x39\xfb\xda\xbe\x07\xee\xbb\xdb\x8e\xba\xda\x06\x19\xab\x53\x2c\x10\x82\xad\x47\x49\x9f\x6a\x06\x43\x42\x88\xf6\xfd\xd4\xd6\x4d\xd5\x58\x01\x43\x7e\x84\xd5\x05\x95\xe6\x89\x70\x31\x25\x26\x9a\x4b\xef\x05\x0a\x5c\x92\xd9\x7c\x47\xbe\xee\x67\x73\x42\x0f\x73\x21\xef\x1a\xcd\x71\x9f\xed\x01\xb6\xc5\x0a\xff\x59\x60\x99\x2f\xc0\x8d\x2c\x70\x85\x2c\x2e\x01\xf6\xfd\x5c\x46\x02\xc8\x1a\x10\xe7\x02\xe2\xec\x61\x10\x9f\xec\x53\xf5\xd9\x40\xdb\xe0\x46\x78\x30\x1e\xe3\x70\x8f\x50\x09\x56\xe8\x30\x9e\xe5\x2a\xcf\xe1\x68\x87\x6b\x68\xc6\xbc\x1f\xed\x01\xa5\xc5\x2f\x1f\x00\xcd\x00\xc3\xc9\x6a\x2f\x3c\x53\xaf\xd1\xbb\xc4\x50\x34\x27\x54\x9c\x67\x50\xfc\xa9\x6a\xeb\x20\x44\x98\xf7\x07\x7b\xa1\xeb\xd8\xe7\x7e\x37\xe8\x00\x1a\x0b\x3a\x80\xb6\x0e\x5d\x74\x17\x74\x2d\xfe\xfb\x00\xe8\x46\xb8\x3a\x17\xde\x0b\x62\x7f\x28\x81\x1c\x8c\x34\x94\x03\x59\x10\x1d\x35\x91\x5a\x9f\x70\x14\xff\xb9\x89\xe2\xd1\xde\x41\x7c\x3f\x8a\xbf\x6b\x10\xcd\x21\x44\xcd\x21\x0c\x1a\x33\x31\xec\x1c\x44\xb4\x6f\x10\xfb\xd8\x15\x98\x40\x68\xf8\x0f\x0a\xed\xd9\x5f\x5f\xf7\x7e\x84\x26\x35\xb6\x90\xfb\x11\x16\x27\x7b\x75\xaa\x52\xd6\xdb\x77\xb1\xae\x44\x33\x02\x2a\x4e\x84\xe2\xa8\x58\xba\x6e\xa8\x2e\x0e\x04\x2b\x83\x60\x26\x5e\x49\x22\xbd\x2a\x05\x77\xf3\xe8\x61\x72\x7e\x1e\x22\xbf\xbc\x9f\x65\xec\xe3\x71\xbf\xc7\x08\x05\xaf\x6b\x8f\x51\x40\xa8\xf9\x5d\x26\xf9\xdd\xbd\xc3\xec\xff\x0e\xc3\xfc\x0d\x8c\x31\x1a\x1c\x63\x5f\x88\xa3\x0f\xe7\x8d\x54\x1d\xf6\x07\xe3\x71\x9f\xf6\xa3\x87\x31\xcb\xdf\xcc\x2b\x85\x40\x77\x8c\x7d\x90\xeb\xfe\xa5\x0c\xf3\x37\xf3\xcb\xef\x82\xf0\x9f\x61\x9a\xbf\x99\x67\x56\x1e\x37\xb8\xe6\x5f\xf3\x5b\xb0\xb9\x97\x95\x1a\x66\xfb\x40\xee\xf9\x9b\x99\xe7\xbe\xd1\x68\xba\xb4\x34\x87\x40\x9e\xff\xad\xec\xb5\x4b\xfa\xb6\x46\xf9\xc4\xc6\x54\xeb\x6a\xb4\x6a\x61\x3f\x9e\xec\x16\xa2\xee\x16\x3a\x65\x69\xab\x89\x9f\xef\x07\xa2\x53\x64\xde\xd3\x44\x1b\x8a\x34\x5f\x7f\xed\x66\xc0\xd2\x7d\x3e\x44\xb8\x90\x86\x13\xf2\x32\xaf\x7e\x02\xaa\xdc\xb9\xa4\x6e\xb0\x7a\xb3\xdd\xca\xdb\x0f\x38\x7c\x17\xb0\x9d\x14\x84\x21\x5c\xd4\xfd\x48\x1b\x66\x60\xb2\x27\xde\x72\x79\x94\x35\xf9\x5e\x4d\x2e\x4f\x8a\x4b\xca\xdf\xf1\xa4\xe0\x5d\xd1\x13\xd4\xed\x4b\xad\xe1\xee\x86\x64\x60\xad\xbd\x0d\x15\x7b\x21\x90\x1f\x3e\x67\x8b\xd6\x67\x85\x7d\xa3\x0a\x68\xa8\xe1\xd0\x68\xc9\xf9\x59\xe1\x4b\x34\x55\x45\x7d\xa6\x24\x77\x9c\x91\xc2\x67\xb6\x79\x82\xeb\xb2\x33\xee\xba\xfc\xac\x00\xab\xb8\x9c\x64\x7e\x34\x11\x12\xbc\x10\xe4\x11\x9d\xe5\x7d\xae\x94\xa5\x79\x9f\xcd\xcd\x5d\x78\x76\x16\xd1\x21\x58\x61\xee\x73\xf8\xce\x49\x68\x29\xeb\xbb\x9a\xe9\xf4\x45\x2b\x29\x37\x3e\x68\x35\x35\x30\xc3\xac\x9f\x21\x2b\xc2\x43\x43\x8d\x02\xc1\xb1\x3a\x29\xb0\x7d\x57\xbf\x37\x5e\xc9\x54\xa0\x15\x4b\xd3\x40\x1b\xbd\x1d\x21\x24\x14\x29\x36\x2a\xe2\xc8\xb6\x46\xbc\xd5\x9e\x4d\x96\x8f\x4a\x88\x26\xf9\xd9\x60\x7c\x04\x8c\x2c\x07\xa7\x30\xdb\xc7\xad\xed\x50\xbd\xc7\x49\xd4\x44\x51\xe9\x08\x90\xd2\x39\xb8\xc2\x75\xeb\x91\x2b\x8a\x3d\x06\x3c\xdd\xf7\xc3\xe0\x3f\xd6\x11\xfa\x45\x8c\x03\xdc\x19\x91\x5a\x5b\x5b\xdb\xd0\xeb\x8c\xd7\x1f\xf7\xdd\xdd\xbd\xd9\x63\x7e\xc3\xce\x2a\x13\x5d\xd1\x8e\xf4\xfe\x92\xb7\x6a\xe7\xe7\x30\x4f\x56\xcc\x77\xab\xa7\x98\x9d\x9f\x9f\x87\x58\x3a\x20\x87\x08\x77\x05\xad\x91\x0e\x78\xd5\x9d\x29\xd0\xa7\x38\x58\x57\xf7\x0a\x09\xa9\xdd\x08\x4e\x69\xfc\x37\x4f\xc7\xc3\x29\x2c\x27\x7f\x84\x70\x69\x4c\x31\x95\x67\x5f\x28\x1a\xf6\xb9\xd5\xb4\x58\x04\xc9\x2c\xfb\x63\x69\x6e\x1d\x44\xb9\xbc\xf4\x7e\x4b\x0e\x67\x7f\xed\x7f\x38\x0c\xfd\xd3\xc7\xfe\xff\x93\xf8\xdf\xfc\x8f\xf3\xc3\xcb\xea\x12\xfc\x2f\xb6\x0d\xfe\x59\x74\x34\x75\x42\xa7\x4f\x6b\x61\x06\xe2\xfa\x63\x75\x7d\xf4\x37\xeb\xa6\x67\x02\x61\x05\xa3\x43\xdb\xf9\x9e\x56\x56\xce\x32\x4f\x49\xe5\x7b\xa5\x9c\xe1\xc0\xd7\xbb\xe9\x6c\x85\xce\xc7\xe3\xc1\xe9\x58\xb0\x90\xf1\xf1\x70\x34\xd2\x3e\xb6\xc0\xf6\xcf\xc7\x47\xc3\xe8\x14\xdd\x7a\xdc\x27\x43\x74\xee\x47\xae\xab\x5c\xb0\x06\xc3\x53\x1c\x9d\x46\x38\x3a\x39\x45\x93\x34\x67\x3c\x63\x1b\x2a\xd6\x41\x02\xee\x8c\xc5\xc3\xbf\xc9\x09\xab\x35\xc0\xce\xc0\x4d\xe6\xbe\x06\x70\xed\x3b\x26\xbd\x6f\xfa\x5e\xee\x83\xb7\xcd\xd9\x59\x14\x6e\x99\x2f\x5b\x92\x5e\x93\xb9\xd8\x96\xee\x04\x29\x5b\x7a\x0a\x77\xec\x4c\xc8\xda\x80\x30\xee\x93\x08\x9d\x85\x48\xfa\x25\xa9\xcf\x18\xb2\xdc\x92\x07\xe1\xa8\xaa\x3b\x68\xd7\x3d\x3f\x3f\xda\x46\xa7\x03\x7c\x34\x74\xd9\x56\xb4\x6b\x7d\x0b\x50\x9b\x8f\x87\x5d\x1f\x47\x83\xed\x60\x30\xc2\xa2\x19\xf7\x68\x28\x1a\x68\xb4\x24\xd3\xc8\x31\xed\xb2\xd4\x61\x98\xa4\xdd\x27\xd3\x7c\x41\x7b\xeb\xdc\x5c\xc4\x8b\x3e\x47\x9d\x7d\x9e\x6c\x07\xa3\x10\x43\xef\xba\xd3\x6e\x00\x8c\xfd\x59\x45\xa8\x2f\xec\x9c\x80\x01\xcf\x2b\x2f\xba\x86\x4d\xa7\xd7\xe9\xb1\x40\x03\x5e\x64\xd7\x53\xf9\xc7\x43\x71\x2d\x10\x67\xd9\xdf\x7e\x28\xfb\x7f\x38\xbc\xc4\x0e\x44\x5f\xa9\xd2\x2c\xbe\x85\xb0\x9c\x4d\xcf\x5f\x15\xc2\x60\xa2\x17\x87\x34\x26\x9e\x20\xda\x27\x0e\x71\xec\x98\x3b\xb6\x5b\xdf\x2f\xd5\xd6\x63\xdd\x67\x4f\xf2\x33\xc1\x7e\xbd\xbc\x2f\xc4\x07\x23\xa5\xe4\x96\x1f\x3b\x6c\x94\x1c\xb6\x47\x70\x1f\xa8\x6c\x28\xda\x69\x0d\xee\x48\x61\xd0\xf6\x01\xd3\xec\x4e\x07\x35\x3e\x80\x78\xa2\x32\x0e\x8d\x03\x91\x22\x6c\x37\xa3\x56\x28\xce\x56\xf8\x35\x16\x2c\x3c\x8e\x9d\xc4\xe9\xca\x36\x92\xef\x90\x8e\x66\xc4\xbc\x10\x56\x5a\xc0\xbc\x02\x05\x89\x0a\x57\xf7\x34\x67\x9c\x7e\xe1\xde\xed\x0e\xdd\xd3\x8f\x8a\xc7\x13\x7c\xfc\x48\xcb\x57\xf9\x62\xb3\xa2\xe4\x20\xc4\xe0\x93\x93\x6c\x56\xfa\xe2\x59\x69\x24\x5b\xc3\xc6\xac\x62\x9d\x85\x67\x98\x9f\x04\x53\xb2\x32\x83\x53\x8e\xe4\x26\x85\x20\x4c\x10\x71\x16\x34\x5d\x39\xd8\x04\xf6\x66\x84\x62\xb8\xbc\xde\x1b\x82\xcf\x8a\x7a\x87\x30\xdf\x13\xd8\x8e\x63\x6e\xdd\x62\x33\x5c\xec\x3c\x4f\x48\x10\xde\xe8\x08\x21\xd7\x2d\xac\x81\x4e\x8b\xf8\xd6\xf8\x53\xec\x90\x1e\x32\x9a\x54\xa3\xcf\xab\x90\x9d\xc4\x94\xde\x83\xd1\x07\xe1\xb2\x20\x89\xc7\xbc\xe3\x31\x12\x93\x07\x3f\x8f\x10\xc2\x19\xfc\x1c\x1d\xa3\x5a\x48\x3d\x6b\xe5\xb9\x2e\xb5\x07\x40\xab\x01\x50\x99\x41\xb2\xb4\xed\xc5\x4c\x1b\xb4\xe6\xc2\xdc\xcb\x58\xcf\x6c\xe7\xd2\xfd\xef\x76\xa7\xec\x99\x8b\xe4\xa6\x24\xb7\x3b\x4c\x91\x39\xd6\xcd\xf8\x7c\x57\x65\xe8\xd4\x36\x01\x7a\x67\x0d\x20\x34\x63\xdb\xf7\xa4\x61\x80\x6c\x3a\x50\xa1\x85\x6f\xab\x1b\xa8\x40\x67\x51\x7e\xf2\xd5\x0a\x98\x69\x55\x0e\x32\xb6\xde\xa8\x8e\x3c\x8a\x59\xb0\xca\x98\xf8\x93\x42\x40\x61\x2b\xc4\x2d\x84\xad\xd4\xd8\x56\xb1\xef\x6f\x92\x82\xed\x89\x3a\x2d\x53\x9a\x48\xd9\xc0\x70\x11\x81\x1c\x86\x8a\x59\x3e\x27\xcc\xe2\x0f\x14\x1a\x82\x40\x15\x32\xa2\xfe\x75\xfe\x99\xb6\x6d\xf3\x24\xd8\xeb\xa4\xa0\x4c\x88\xfb\xd5\x83\xfa\xe2\xe9\x55\xb6\x92\x97\x1f\x0a\x1d\xf2\xad\xa2\x0c\x28\x12\xcd\xb7\xed\xfb\x05\xc6\xea\x53\x96\x19\x7a\xc5\x34\x90\x62\x68\xb6\xfc\xaa\xc3\x96\xe9\x67\x9d\x72\xc7\xca\xa2\x21\x57\x63\x3d\xa7\x4e\x9f\xd0\x1d\x42\x98\x43\xd0\xe4\x55\xce\xe8\x5d\x3d\xdf\xee\x74\xab\x16\x81\xd9\xe1\x71\xe9\x4d\x8f\xdb\x8b\xb2\x8e\x5d\x8e\x20\x44\xde\x55\x52\xbe\xb9\x61\xc6\xe9\x2f\x47\x3a\x20\x29\x9f\xe5\x42\x2c\x52\x0c\x35\x9b\x38\x12\x47\x8e\xb4\x45\xaf\x58\x2a\x49\xa6\x70\x3a\x80\xa9\x12\x67\x07\x20\x16\xa8\x36\x85\xc2\x2c\xce\x5a\x51\x96\xd4\x9b\x76\xd6\xce\x0a\x3b\x62\x8a\x11\x8a\x3d\xbb\x27\xd7\x15\x52\xc7\x01\x21\x99\x0b\x5e\xda\x5e\x86\x10\x96\x4d\xa1\xca\x25\x48\x4e\x6c\xe5\xe2\x26\x33\xbe\xf0\x19\x93\x61\x61\xaa\x40\x00\x1a\xcb\x4f\xe8\x32\x2f\x1e\x88\x6b\x20\x17\xf8\xca\xa3\xf5\x55\xa2\x28\x4c\x66\xba\x94\x4d\x6a\x8e\x6b\xcd\xe8\xe3\x25\x6f\xf8\x09\xfe\xb3\x5d\x41\x8b\xf5\x9e\xd4\x5e\xff\xe7\x8c\x5f\xd9\x8b\x43\x9d\x84\xd5\xe7\x76\xda\xda\x56\xbe\x5a\x6e\xe5\xab\xa5\x48\xfb\x8e\x4d\x58\xbf\x2f\x11\x59\xe5\x44\x62\x73\x3b\x28\x19\x38\xef\x17\x67\xb9\x71\x7d\xe9\xf7\x35\x41\xe5\xb3\x62\x3e\xb9\x1b\x53\x19\xda\x49\xf6\x07\xab\xd4\x43\xb5\x83\x03\xe6\x01\xa3\x5f\xf8\x5d\x03\xb2\x7c\x8b\x4c\x1f\x0b\xfa\x45\x11\x44\x07\x06\x05\xeb\x51\xc6\x2f\x10\xfd\xbc\xa0\x9f\xff\x15\xed\xfb\xaa\xfd\x8b\x36\xa1\x3d\x88\x82\x54\xae\x62\xd1\x44\xd2\xa2\x9f\x87\x10\x86\xd5\x40\xdb\x9e\x59\x8e\xea\xb6\xe2\xbe\xb0\x35\xc1\x98\x34\x02\x1a\x5c\x82\x23\xd7\xd5\xfc\xa0\x4a\x3d\xae\x2c\x19\xf8\x7c\xc2\xda\x0b\x1e\xa2\x32\xb1\x7d\x39\xb1\xad\x45\x5e\x1d\xb5\xb5\xed\xf5\x54\xff\x10\x42\xae\xe0\x09\xed\xda\xcc\x75\x99\xa9\x2d\x7b\xaa\x3e\x81\xe7\x9d\x11\x61\xc5\xfa\x48\x6e\x3a\x2f\xcb\xe1\xb4\x9b\x1b\x8e\x2e\xea\x19\x45\xa0\xdc\x70\xf2\xbc\x46\x80\xf5\xc4\xcf\x13\xaa\x26\x60\x82\x28\x31\xbf\xed\x8e\xd3\x15\x4d\xd8\x5b\xb1\xb9\xdb\x38\x50\x31\xca\xcd\xce\xaf\xe8\x04\xb7\xca\x61\xf2\xc5\x31\xbf\xe3\x0b\x7e\x43\x29\x03\x22\x56\xfb\xf8\x0b\x56\x66\x8b\x3a\xb1\x55\xce\x71\xbc\xe6\x67\x85\xb4\x62\x47\xed\xf4\x10\x53\x5a\x6f\xec\x45\xc7\x2b\xd8\xfa\xa5\xa8\x4f\x27\x79\xbf\x8f\x9c\x0f\xd2\x6d\x7f\x96\xcf\xa7\x1e\x23\x11\x86\xc0\x84\x31\xeb\x13\x9d\x5f\xe4\x56\x7c\x13\x17\x58\xb6\x1a\xb3\x9d\x0d\xeb\x93\xaf\x5d\xb2\x7c\xb3\x5b\xb0\x89\x96\x4b\x0e\xf1\xba\xd0\x22\x07\x6b\xde\x1a\xd5\x1d\x0d\x6e\xf2\x62\x51\x93\x73\xaa\x51\x57\x7e\x3c\xb2\xd6\x04\x3c\x7c\x18\x48\x4a\x5d\xad\xb3\x2a\x29\x3d\xdf\x41\xd6\x67\x4b\x46\x2d\xff\x65\x32\x2a\xce\x09\x88\xce\xc7\xf7\x88\xce\x2a\x58\x50\x9d\xb0\x6b\x14\xed\x71\x54\xc9\x24\x42\x32\xb3\xe0\xcf\x1e\x06\x7f\x3d\x1c\x8f\x16\x3c\x9a\x41\x6d\x48\x88\x2d\x95\x6c\x34\x29\xce\x49\x38\x29\x7c\xdf\x28\x09\xc5\x5e\x20\x73\x68\xe5\x53\xaa\xb3\x5f\x15\x56\xf2\xac\x7c\xea\xd5\xca\xb1\xd8\x7a\x62\x26\xe3\x84\xdb\xc5\xbe\xaf\x42\xb3\xc2\xf9\x95\xf9\xfe\x84\x21\x1a\x6c\x58\x79\x95\x2d\xb9\x27\x5a\x43\x1d\x21\x31\x0b\x23\x21\x83\x32\x95\xd3\xa2\x8a\xf8\x28\x9f\x85\x10\x5c\x8d\x67\x36\x57\x39\xdb\xa9\xbd\xb3\x71\x4f\x0c\x04\x17\x98\x22\xc1\x80\x40\x2b\x20\x4a\xac\x18\x20\x62\x33\x2e\xf3\x55\x5d\x4a\xad\xd6\xa1\xe3\xe0\x9c\x1c\x44\xe2\xc8\xd1\xd8\x82\xfd\x68\x92\x9d\x13\x3f\x72\xdd\x83\x5c\x46\xab\x92\x2a\xba\xec\x9c\x84\x56\x4a\xc2\x6c\x1e\xd3\x20\xbd\x59\x78\x35\x45\x68\xa5\x50\x4d\xee\x8b\x16\xc0\xf3\x1e\x64\xaf\x50\x60\x36\xe2\x9b\x95\x0e\x9a\x24\xb0\x20\x12\x99\x54\x0b\xe7\x2a\x0f\x57\x52\xe5\xb9\xd2\xab\xc2\xcb\x65\x52\x32\x07\xf5\x3d\x4e\x98\x57\x78\x5c\xe5\x53\x83\x64\x1d\x1d\x7c\xff\xe0\x00\x04\xde\x83\x1c\x59\xf9\xcd\xb6\x5b\x27\x70\x76\xb5\x24\x5c\x4d\xe6\x90\xd5\x73\xb7\x51\x84\x13\x05\x56\xee\x51\xec\x1b\x77\x6a\x8f\x02\x18\xf4\x81\x60\x64\x75\x30\x32\x19\xd0\x11\x92\x72\xb9\x6e\x62\xe5\x1d\xf1\x32\x33\x52\xe0\xeb\xdf\x97\x17\x6c\xa7\x53\x8a\xb5\x36\xe1\x3b\x1c\x88\xcc\x94\xe3\x2a\x48\x8c\x85\x22\x31\x4a\xec\xb5\xce\x7f\x1d\x21\x4b\x1f\x4a\x10\x02\xc2\x0e\x6a\x30\x6b\x09\xd9\xc8\xda\x97\xdf\x8c\x59\x4c\xa2\xa8\x6f\x41\xe0\x9f\x6d\xae\x78\x64\x16\x34\x21\x3c\xf0\x7e\x1f\x75\xc4\xa7\xf0\x23\x48\x69\x65\x6a\xb2\x39\x64\xb7\x32\xa8\x38\x87\x2c\xa8\x96\x67\x8f\xcf\xfb\x11\xda\x51\x62\x56\xa0\x47\x91\x0e\x6b\x16\xc1\x8e\x67\x5e\x30\xeb\x85\xe5\x99\x51\x27\x1c\x84\x33\x52\x78\xac\x56\x92\x54\x9e\x1b\x5a\xe4\xc5\x99\xb9\x1e\x29\x49\x82\x53\x12\x4e\xd2\xb3\x64\x92\xca\xa8\x72\xf9\x2c\x9d\x8b\xf3\xcb\x2c\x9d\xa3\xdb\x92\xa4\xca\x39\x55\xf4\xb7\x22\x33\x29\x4a\xa7\xa4\x9c\xa4\x95\x08\x2d\xbe\x5c\x49\xde\x62\x73\x33\x6f\x45\x56\x3a\x19\x6a\xa6\x46\x5d\x22\x7b\x52\xc4\x9c\x94\x74\x2d\x28\x16\x76\x96\x55\x76\x9d\x09\xe1\xd1\x89\xe1\x39\x2b\x58\x72\x4d\x9b\xfe\xe3\x7b\x62\xdc\xf6\x89\xe3\x20\xdc\x11\x7d\xc2\x09\x1c\xcb\xe7\xbe\x71\xf9\x83\x19\x19\x1d\x0b\xb1\x00\x17\xc4\x8f\x04\xa7\x0b\x71\x66\xcf\x68\x76\x4e\xa2\x89\xef\x67\x02\x35\x50\xd3\x6b\xb4\x91\x21\x64\x14\xed\x05\xc9\x14\xba\x94\xa2\x9a\x98\xe4\x65\x10\x2b\xb0\x98\x32\x9d\x14\x51\x6c\x14\xb2\x48\x14\xd8\x99\xee\x40\x0c\x4f\x4a\xda\x18\x7b\x15\x85\xd9\xc6\xc7\x5d\xc8\x98\x28\xcd\x1b\x6c\x75\x6a\x70\xd2\x66\xc6\x1e\x20\x97\x97\x8b\xdc\x0c\xb0\x9e\xc0\xad\x1a\x1c\x23\xbc\x1f\xd9\xc3\x93\x43\x02\xaf\xef\x83\x48\x08\x61\x55\x90\x08\x35\x5a\xa7\x1a\x19\xc4\x72\xb3\x4f\x89\x62\x3b\x52\x24\xed\x47\x8f\x4c\x20\x69\xa5\x08\x62\xc4\xbc\x0d\x31\x33\x37\xa7\xba\x16\xc2\x20\x48\xd2\x2f\xbc\x45\x21\x77\x62\xa4\xa2\x03\x3f\xaa\x23\x06\x4b\xe3\x29\x0b\x31\x89\x44\x8c\x09\x3d\xd8\xb8\x6d\x99\x00\xbe\x0e\x08\x29\x51\x13\x11\x49\x3f\x42\x78\x74\x44\x08\x29\xa7\xf0\x8e\x4f\x39\x49\xe2\xc8\xa8\x05\x22\x14\x4b\x57\x6d\x78\x12\x9b\x81\x96\x06\x25\xa2\x93\x0a\xd1\x16\x3e\xf9\x76\x2b\x7b\x92\xf7\xe9\xd9\x76\x2b\x9e\x32\xd7\xe5\xa2\x50\xec\xc3\xe2\x07\xeb\x47\x36\xde\x41\x4b\xa1\xb4\xb2\xce\x85\x60\x4c\x4e\x72\xe1\x54\x98\x47\xad\xd0\xfb\x46\xca\x50\x75\xc0\x81\xbc\x95\x13\x46\x4f\xa3\xf2\x2a\x32\xe1\x60\xa5\x96\xc9\xfa\xb2\xa1\x2e\x3f\x8a\x9a\xea\xf2\xdf\xaa\x17\xcd\x3c\xe6\x45\xc7\xc7\xa0\x18\x95\xbf\x4f\x51\x2d\xc9\xd2\xf7\xa8\x43\x93\xce\x95\x56\x17\x4d\xc5\x0b\x2c\xf3\xe0\x54\xca\x43\x86\x26\xbc\xf8\x7a\x9b\xa9\x5c\x63\x48\x45\xf9\x4a\xd0\xad\xdc\xc4\x12\x73\xad\x02\x47\x33\x5b\x9e\x4d\x7e\x83\x3c\xfe\xdf\xa7\x85\x37\x09\x96\xff\xef\x53\xc4\xff\xf7\x21\x35\xe1\xc5\x66\x45\x05\x4e\xff\x35\xc8\x54\x30\x17\x6d\x7d\x7c\x1e\x24\xeb\x35\x65\x8b\xa6\x84\xc7\xa5\x02\x0c\xd4\x42\xdb\xad\x57\x3d\x90\xd9\xdc\x16\x7a\x5a\xfa\xb8\xc2\xd2\xc7\x31\xa4\x8e\xde\x0c\x8e\xde\xa0\xff\xac\x0e\x04\x46\x59\xee\xd5\x6e\x0a\x14\x40\x92\x5d\xe8\xf0\x32\x78\x26\x20\x30\x39\xd5\x0b\xc1\x3c\xf2\x60\x5d\xd0\xff\x61\xb0\x2b\x88\xee\x07\xde\x50\xf7\x78\xf0\x3f\xeb\x9a\x49\xb0\xd0\xd1\xd8\x70\xd3\x71\xf8\xdb\x98\xa9\x7d\x1d\xd5\x38\x70\x4f\xd8\x99\x09\x13\xcc\xb4\xd6\xb5\x20\x1c\x34\xde\x41\x95\x15\x8b\xd8\x0f\xdb\xad\xd8\x52\x03\x3b\x9a\x9f\x18\x84\xf2\xd2\xce\x58\x0f\x02\x68\x04\x3a\x8b\x16\x39\x08\xf7\xa7\xfb\x2b\x82\x4f\xf4\xab\xd8\x0f\x9b\x37\x60\x66\x29\x67\xd5\x90\x4b\x3b\xf9\x5f\x67\xb0\x23\xb9\x94\x77\x99\x5c\xb9\xe5\xfe\x95\x9b\x7d\xff\xca\xcd\x64\x4a\x62\xbc\xc2\x1b\xbc\x26\x65\x7b\xfd\xae\x41\xde\xee\xbe\x75\x57\x77\x45\x92\xe3\x98\x45\xa0\x0e\xff\x5a\xcf\xba\x0e\x68\x92\xd6\x1b\x90\xf6\x3a\x49\xc9\x9f\x27\xe9\x95\x5e\x40\xfa\x19\xf2\x16\x98\xd0\x32\xd5\x02\x53\x8f\xd5\xc5\x9d\xfe\xa0\x4f\x22\xfb\x9a\x40\x17\x6b\x6b\x37\xfd\xe1\x8c\xcf\x49\x68\x81\x59\x0b\x3c\x3c\x69\xd4\x3c\xb3\x86\x63\x4c\xef\x18\x69\xd4\xc2\x07\x91\x4a\xc0\x6a\xf1\x80\x19\x9b\x63\x86\x90\x72\x80\xb1\x6a\x57\x0a\xc0\x9e\xad\xb4\xb4\x9a\x2b\x76\x02\x5d\x37\xc9\xea\xd3\x5e\xb5\xb6\xc0\xa5\x7d\x4f\x64\x2e\xb9\x40\x3a\x00\x48\x84\x30\x24\x85\x03\xe9\xfc\x9e\x05\xeb\xbc\xe4\x69\x59\xbe\xce\x17\x94\x70\x9c\x05\x25\x4f\xd2\x4f\xae\xab\xd3\xaa\xba\xee\xe1\x07\xf6\xa1\xbc\x1d\xed\x12\xde\x3b\x94\x79\xba\x55\x25\xa4\xd5\x54\xba\xee\x44\xbd\x20\xea\xaf\x95\x9f\xbb\x6a\x02\x3b\x7f\x70\x9d\x7e\xae\xae\x49\x97\x45\x7e\xdd\x77\x62\x51\x50\xa9\x4c\x6b\x05\x52\x11\xda\x17\x5f\xa1\x9d\x14\x67\x74\x24\x71\xc0\x30\xe4\x11\x12\x68\x91\xf6\x8f\xf0\x13\x0c\xd6\x8b\x9d\x60\x75\x12\x65\xcf\x68\xba\x6a\xa6\xae\xd3\x98\x9b\xd6\xb2\x9b\xbc\xa5\x97\xcf\xbf\xac\xa5\xd5\x18\x34\x55\xe1\xd3\xd8\x0e\x82\x2d\x80\x90\x72\x55\x0a\x21\x2a\xd1\x02\x7b\xe3\xba\x4a\x04\x2e\x8f\x1b\x48\xba\x5e\x3e\xb8\x31\xd9\x8a\x1d\x25\xaa\x6a\x48\xf0\x7b\xdc\xd5\x1a\x55\x51\x34\x4c\x6b\x14\x5a\xab\x5a\x10\x15\x76\xa8\x42\xc8\xdb\xcd\x8a\xfe\x7e\x08\x01\xf9\xa1\x0b\x21\x25\x5d\x51\xc1\x58\xbe\x17\x29\xcd\x06\xab\x96\x7e\x2b\x62\x74\x8b\xf7\x21\xe6\x31\xff\x7d\x51\xa3\x84\xab\x2e\xe4\x40\x36\xe1\xef\x44\x4c\xbb\x39\xd9\xce\x6f\x45\x4b\xd5\xde\x7d\x88\x79\x2a\x45\xef\xce\xdc\xbb\x5d\x5d\xe8\xc0\x2e\x46\x66\x37\x39\xb7\x90\x75\x7b\x0d\x7d\x88\x2e\xda\x82\xe0\x7f\xfd\xb5\x2b\x4e\x88\x62\xd5\x5a\x5b\x98\x55\xbb\x89\xd6\x53\x49\xdd\x63\x56\xca\xde\x4b\x84\x57\xca\x09\xa8\x24\xe9\xb4\x8c\x4b\x1d\x3b\x38\xe3\xb4\x48\x78\x5e\xcc\x3d\x34\x51\x31\xda\x37\x62\xdb\x49\x01\x2b\xab\x73\x62\xec\x83\xa5\xb5\xdc\x86\x94\xb3\x55\xbf\x3f\x37\x36\x78\xde\x8a\x94\x70\x95\xeb\x21\x14\x2c\x72\x46\x4d\xc5\x55\x00\x82\x07\x08\x10\x6b\xb2\x99\x34\xb7\xd7\x75\x65\x47\xa7\xb7\xd9\x0e\x61\xf5\xf7\xc2\xaf\x12\xa0\x40\x4f\xf8\x99\xc2\xf9\x13\xe7\x0d\x34\x15\xc8\xb8\xb2\x16\x24\x9f\x16\x71\x71\x07\x9a\x92\x89\x4c\x8a\x21\xb6\xa7\x73\x52\xd4\xd1\x94\x90\x62\x96\xd5\xd0\x94\x91\xa2\x0b\x4d\x09\xc9\x2c\x34\xc9\xb9\x6b\xcc\xae\x12\x4c\x20\xb9\x24\x76\x14\x8a\x1c\x64\x8d\x63\x45\x52\xbc\x69\x8c\x65\x25\x83\xea\x89\xb1\xac\xc8\x66\xba\x8a\x57\x77\x8c\x65\x29\xc6\xb2\x81\xb1\xac\xcf\xc9\xaa\x3e\x96\x25\x59\xcd\xd6\xb5\xb1\xac\xc9\xaa\x6b\x2c\x4b\xb2\xb6\xc6\xb2\x20\x4b\x7b\xca\xf5\x1d\xce\x02\xed\xf4\x94\x5e\xe9\x9b\x69\x2d\x40\xd4\xc5\x8d\xab\x39\x69\x3c\xf7\xd3\x46\xc4\x58\x4d\x37\x1d\x37\xb1\xfa\x3e\xc8\x92\x20\x75\xa5\xda\x21\xb3\x26\x4e\x59\x17\x8b\x50\x82\x8b\x06\x56\x99\x1d\x40\xb7\x98\xb2\x98\xdd\x81\x55\x30\xf6\x96\x1c\x31\x3f\x27\xac\x8e\xd5\x8c\xb0\x59\x5e\xc3\x2a\x18\x1c\xb6\xb1\x9a\x91\x5c\x61\x35\xab\x86\x00\x79\xc7\xc5\xc8\x6d\xf3\x82\x3d\xd1\x71\x54\x5a\xc4\x0a\x97\x42\xee\x70\x5d\x43\x49\x38\x6f\x52\x1c\xb7\x90\x32\xa3\x73\x5c\xd8\xc4\x96\x91\x1c\x27\x0d\xb4\x64\xc8\x38\x19\x66\x24\x99\x66\x71\x76\x07\x5a\x52\x81\x16\x69\x98\x5d\x9e\x93\xac\x8e\x96\x94\x64\xb3\xb2\x86\x96\x92\x64\x5d\x68\x49\x49\x69\x11\xdb\x8a\xa4\x36\xb1\xa9\x3b\x45\x8a\x43\xbc\xaa\xe8\x6d\xd3\xa2\x37\x7a\x46\x9a\x22\xf1\x66\x0e\x71\xcb\xea\x45\x84\xf5\x73\x63\xed\xda\xa0\x3d\xcb\x3c\xa3\x31\x01\x0d\x9c\x4f\x6a\xe1\x8a\xf6\x62\x1b\xd5\x18\x54\x81\xb3\x06\xae\x73\x04\xf6\xed\xca\xe5\x65\x9a\xc7\xf9\x1d\xb8\x2e\x21\xd1\x8b\x4c\xfe\x7b\x4e\xf2\x3a\xae\x4b\x92\xcf\x92\x1a\xae\x13\x92\x77\xe1\xba\x24\x89\x85\xeb\x94\x94\x5d\xb8\xee\x47\x38\xc4\x69\x85\xed\x55\x07\xb6\x9b\xc8\x5e\xb5\x91\xbd\x12\xc8\x2e\xf6\x21\xdb\xb2\xf8\x6b\x1f\x49\x1b\x46\x62\x75\xec\xd7\x91\xdc\x61\x23\xd8\x24\x9d\xa8\x7e\x86\x43\xda\x8c\x40\x03\xca\xe6\xe8\x1c\xac\xbc\x1a\xa5\x84\xfb\xcd\x00\xd0\x1a\xee\xc7\xb6\x9f\x4f\xcd\x00\x49\x72\x1b\xde\x98\x6a\xb5\xa9\x41\x3a\x3a\xc2\xa7\x34\xa6\x77\x4c\x75\x31\x31\x39\x4d\xed\x24\x63\x72\x06\x0b\x42\x67\xac\x36\xd5\x8c\xd0\xae\xa9\x2e\x08\x53\x53\x5d\xd4\x71\x64\xb3\x5c\xa3\x29\xc2\xd5\xf8\xe0\x08\xf5\x27\xf1\xe5\xbe\x88\xab\x3d\xe9\x4f\xc7\xb1\x65\xb9\x6a\x4e\x3d\x96\x48\x56\xa0\x5b\x38\xf8\xaf\x4b\xd7\x95\xca\x7c\xf9\x64\x0c\x3c\x0a\x79\x82\xd9\x6e\x79\xb0\x4c\x4a\xae\x6a\x15\x12\x6e\x53\x4b\xbe\x44\xdb\xad\xa7\xde\x98\x1a\xfa\xbc\x07\x69\x62\x77\xc8\x3a\xe5\x7f\xa6\xc5\xd7\xbd\x92\xa3\xa4\x0f\xa8\x03\x76\xb0\xeb\xa0\xcc\xaf\xf7\xdb\x7f\x29\x72\xca\xaf\xa9\xaa\x0d\x80\x75\xdd\x28\xb7\xfd\x7b\xa6\xd2\x84\x56\xb5\x61\x0c\x5b\xa0\x99\xae\x7b\x74\xcd\xee\x65\xd8\x9f\x6e\x27\x2a\x8a\x68\xcd\xb6\xb4\x82\x76\xaf\xe1\xa6\x32\x79\x13\x34\xae\xa6\x9c\xea\x5f\x08\x19\x83\x26\x75\xac\xc6\x5c\xc8\xc8\x1e\xf3\x46\xa7\xc8\xa3\x48\x55\x33\xb7\x35\x4d\xca\x36\xd1\xe6\xab\x84\xc0\x62\x13\xa9\x57\x4b\x10\x5c\xb9\x8a\x05\x90\x90\x72\x9a\xc4\xc9\x1d\x0b\x60\x25\xc6\x5d\xca\x64\xa4\xe7\xc6\xa3\x49\xd1\xf5\x8a\x24\xb3\xb4\xb6\x00\x52\x92\x74\x2d\x80\x15\x49\x2d\x5e\xb7\x21\xab\xc9\xc6\xd8\x1e\x6f\xba\x0c\x8f\x37\xd8\xc9\x2e\x59\x5e\x50\x07\xed\x8c\x8f\x8b\x53\xe4\x39\xb7\xce\x2b\xb7\x52\x08\x16\x83\x55\x74\xa1\x87\xbc\x6c\x0c\x79\x8d\xf0\x42\x0d\x79\x4d\x96\xd3\x75\xbc\xbe\x63\xc8\xa0\x21\x5a\xc2\x90\x17\xe7\x64\x5d\x1f\xf2\x15\x59\xcf\x16\xb5\x21\x2f\xc8\xba\x6b\xc8\x57\x64\x61\x0d\xf9\x82\x5c\x4d\x2e\xcc\x90\x2f\xba\x86\x7c\xd1\x35\x64\x35\x52\x4a\x66\x74\x6e\x59\x6c\xc1\x52\x6d\x24\x5a\xb6\x53\xc2\x40\xc7\x6d\xe7\x1d\xe0\x24\xbd\x65\x46\x57\x8b\x5e\x56\xf6\xae\xb3\xb2\xa4\x0b\xb0\x23\xcf\x17\xb4\x07\xca\xc2\x2c\x67\x0e\xea\x4a\xe3\x2a\xdb\x04\xe3\x22\xb9\xf0\x75\x2a\x0a\xd5\x19\xc2\x94\xcc\x9a\x76\xed\x73\x6b\x20\x46\x1f\x70\x2b\x2b\x7a\xcc\x1b\x0f\x11\x6a\xd4\x82\x83\xb1\x55\x23\xb2\x6a\xc0\x45\xb0\x38\x42\x7f\xe9\x48\x24\xaf\xbd\x14\x61\x28\x02\xe8\xae\x71\x29\x10\xf3\x1a\x88\x46\x6d\xb9\xc7\xf2\xd2\x28\x34\xc5\xf9\xbd\x63\xe2\x28\xc2\x7b\xa6\xc1\xb2\x54\x74\x5d\xee\xba\x9d\x99\x68\x78\xbd\x9a\x57\xfb\x8c\xd4\xde\x56\x4a\xb5\xd9\x5f\x3f\x94\x73\xe9\xba\x84\xb0\x51\xb8\x66\x98\xc2\x91\x3a\x25\x25\xf6\x56\x64\x76\xfb\x89\x7e\x8d\x1d\x38\xe3\x38\xf8\x92\xf2\xb8\xc3\x70\x57\x72\x94\x16\x8f\x9d\x85\xf3\xdd\x0e\xcb\x06\xc4\x11\xf8\xbb\xbf\x6f\x29\x4a\xc1\xc2\x57\x88\x26\x89\x9d\xd3\x07\xaf\x10\xde\x40\x19\xde\x20\x5c\xee\x3c\xb8\x06\x38\x42\x9d\xb7\x0f\xff\x3a\x03\x42\x79\xe5\x30\x30\xb7\x0f\x27\xc3\xff\x3f\xde\x3e\x40\x40\x51\x5c\x56\x03\x4f\xbf\xf3\x3a\x51\x5d\x26\x9a\x1b\x30\x56\x5d\x7f\xb5\xae\x6d\xd3\xdf\xfb\xda\x96\xa4\xd8\xcb\x34\xd1\x6b\x6e\x53\xb6\x08\xd7\xdc\x3f\xaa\x69\x0b\xd2\xfc\xfa\x3a\x91\xc4\x6c\x78\xd4\x0e\x97\xf6\x57\x0d\x83\x5b\x55\x6b\x5a\x7b\xd2\xf9\x17\xf0\x87\xf2\xd1\x21\x92\x39\xa0\x18\xe1\x53\x3e\x0b\xe7\xb1\x83\x9d\xbe\x36\x45\xf6\x1c\x65\x8a\xec\x60\x47\xae\xeb\x37\x6b\x2a\xb8\x53\xad\x39\x42\xa5\x99\x12\x43\x7a\xd5\x58\x97\xa8\x58\x9c\x0d\xa1\x0c\x97\x08\xa7\x3b\xaf\xf8\xbd\x96\x8b\x24\x4a\x0b\x5d\xbb\x49\xd5\x48\xd1\xfe\xb8\x7a\xc9\xbc\x28\x8a\xee\x33\xad\xa8\x55\x1f\x0c\xd1\x0e\xdf\x5d\xdf\x6b\x4e\x01\x23\x9d\x4c\xf4\x26\x63\x8b\xfc\x66\x0f\x87\x5d\xe4\x29\xa8\xac\xf6\xbc\x66\xc9\xe7\xec\x52\xc8\x00\xb8\xe8\xd6\x91\xcd\x9c\xe7\x8b\x4b\xea\x60\xe7\x7d\x91\x2d\xc0\x04\xc1\xf9\x31\x2b\xe8\x32\xff\xe2\xcc\x71\xdd\x4a\x6f\xc2\xfb\x24\x42\xe2\xb4\xe0\xba\xa6\xdd\x60\x53\xd2\xe2\xf1\xa5\x71\x86\x10\x52\xe7\x8c\x8b\x93\x4e\x58\xa5\x88\xd0\x11\x29\x76\x9e\x89\xaa\xe6\xba\x72\x58\xc1\xcf\x45\x7e\x9d\x95\x74\xda\xa6\x47\x63\xde\xd5\xb3\x20\x97\x51\x32\x0e\x42\x5c\xff\xdc\xd8\xf2\xa1\x80\x5f\x51\xe6\xd9\xee\x9a\xa2\x25\x4c\x3d\xa9\xf5\xdd\x75\x10\xfe\xdd\x1d\x95\x94\xbf\xcf\xae\x69\xbe\xe1\x7b\x5a\xc5\x85\x68\x77\x2f\x47\x75\x66\xd2\x5f\xa1\xf7\xa3\xaa\x30\x17\xfb\xe8\xed\xce\x58\xa2\xab\x18\x10\xa8\xc5\x60\xb3\xa5\x17\x41\x22\x3f\xc1\x68\xde\x57\x1a\xe6\xd9\xdc\x64\x9b\xcf\x6f\x18\x2d\x9e\x29\x1a\xd0\xcb\xe0\x4f\x19\xbd\x09\x2e\x29\x7f\x9a\x5f\xaf\x37\x9c\x2e\xde\xf1\xaf\x2b\x38\xbc\x6c\x56\xab\xea\xa0\x39\x65\x33\x3e\x8f\xd9\xce\xba\x94\xad\x4e\x18\x3f\xbd\x7f\xf5\x52\x4a\xa3\xa2\xef\xd7\xc9\xb5\xd8\x0c\xf4\x5e\xfc\x3a\x5f\xd0\xed\x96\x06\x57\x79\xc9\x77\x16\x3f\x55\x29\x68\x8c\x22\x5c\xd3\x66\x70\x91\x2f\xbe\x4e\x74\x3e\x74\xd3\xa2\xca\x62\x00\x5d\xc9\x70\xff\x4f\xde\x3c\xfb\xd5\x84\xfa\x6f\x0e\x0e\x1a\x81\x6a\xff\x4b\x37\x6c\xd5\x15\x6f\x95\x83\x64\x22\x8f\xc1\x3c\xc8\x3f\xd3\x62\xb9\xca\x6f\x20\xb7\x99\x7e\xf8\x0b\xce\xad\xa7\x5f\x15\x3a\x0e\xbd\x64\xc3\xf3\x6d\x99\x16\xf9\x6a\xb5\x15\x6f\x57\xc9\x57\xa4\xee\x05\x59\x3f\xef\x17\x68\x4a\xe3\xd4\x2b\xeb\x1e\xd0\xab\xe6\xe6\x59\xd0\x25\x2d\x28\x4b\xa9\xc0\xd1\xb4\xf1\x1c\xeb\x23\x02\x73\xdd\x03\xef\x40\x51\xf0\xab\x77\x2f\xd8\x7a\xc3\x5f\x51\x7e\x95\x2f\x94\xcb\xf0\x76\x7b\x60\x90\xa7\x7f\xbc\xca\x17\x14\xe1\xb5\xf8\xf8\xf0\xd5\xbb\x17\xcf\x7b\x51\xa8\xe1\x6b\x2f\x46\x6b\x83\x5f\x5a\x30\x46\x10\xb2\x63\xba\x89\x23\x99\x8d\x68\x1d\x6f\xb6\xdb\x75\x35\x9e\xc5\xfe\x39\xd4\x3f\x9e\xaf\xa8\xf8\x63\x59\xfb\x2d\xbd\x28\x44\xd3\xda\x64\xeb\x1d\x82\x06\x32\xb8\xfd\xcf\x40\x37\xdb\xad\x28\x9e\x30\x69\x86\x28\xb5\x09\xaa\xb9\x77\xd9\xc5\x2a\x63\x97\x13\xc4\x08\xb8\x4e\xb6\x5f\xa1\x5a\x53\xda\xef\x1a\xee\x89\x14\x3d\x99\x28\xba\xae\x2b\x29\x49\x45\x19\x01\x02\x13\xbf\xa7\x60\x17\x38\x73\xde\xff\x24\xf8\xdd\x33\xf1\xcf\xe3\x27\x2f\x9f\x3b\x73\xc3\xba\xaa\xc6\x10\x84\x27\x49\x78\x96\x82\xb5\xbb\xc7\xb0\xa3\xdd\x41\x1c\x34\x5d\x78\x0c\xc5\x2c\x16\x33\xdc\x58\x81\x75\x2c\xc5\xfb\xd0\x57\xa1\xfc\xca\x9a\x1e\xe5\xde\x68\xaf\xb3\xa9\x58\x31\xd5\x23\x8a\x2d\x2f\x86\x8b\x2a\xc7\x9c\xcc\x2f\xa8\xf9\xc4\x76\x7b\x20\x48\x88\x37\x19\xc7\xfe\xd9\xd4\xfc\x44\xe5\x44\xd2\xe3\xf9\x59\x0d\xd9\xe3\xc8\x15\xdd\x07\xcf\xde\x3c\xfd\xe5\xd5\xf3\xd7\xef\x3f\xfe\xfc\xe6\xdd\x8b\xf7\x2f\xde\xbc\xfe\xf8\xe3\x9b\x97\x2f\xdf\xfc\xf9\xc5\xeb\x7f\xc3\x05\x61\x53\x1a\x73\x9c\x13\x36\xe5\x31\xc5\x19\x31\xdd\x49\xd9\x07\x82\xa0\x78\x68\x92\x05\xa5\x8a\x3c\xe4\x15\x38\x44\x18\x9e\x9f\xb3\x85\x97\xeb\xb0\x9b\x09\xc9\x40\x74\xc9\xd9\x63\x96\xd2\x92\xe7\x85\x58\x18\x49\xc6\x28\x28\xad\xe8\x01\x78\x83\x72\xf1\x67\xbb\x05\x11\x52\xbc\x2c\xbd\xdc\xdc\x3b\xb6\xb9\x3c\x6d\x12\x8a\x21\x12\xee\xba\x9e\xe1\x78\x7c\xbb\x5d\x80\x57\x48\x51\x6a\xec\xc0\x51\x08\xc1\x55\xe4\xce\x4b\xd0\x34\x89\x17\x5e\x22\x01\x2d\xc9\x95\x65\x77\x5b\x02\x4b\x9c\x5e\x78\xf2\x07\xe6\x28\x16\x73\x74\xe5\x71\x04\x05\x16\xe7\xb8\xae\x00\x73\x78\xbe\x86\x44\xef\xcd\xfb\xaa\xf3\xc8\x75\x4d\xbc\x9c\xea\x6e\x2a\x9a\x4f\xed\x87\x18\xbe\x47\x53\x47\x32\xaf\xf7\xf9\xda\x89\xd5\xef\x97\x74\xc9\x1d\x58\x86\x66\xe8\xe2\x5c\x0d\xe3\x96\xf9\x6d\xcc\xb0\xad\xac\x1c\x77\x52\xb4\xf1\xac\x68\x54\x93\x1d\x66\xec\x52\xd5\xdb\x6e\x0b\x34\xe3\xd5\x01\x54\xfc\x36\x83\x7f\x65\xdb\x81\x3a\x5f\x00\xed\x53\x07\xa0\x8d\x1d\x31\x00\x5c\x10\xf9\x08\xa1\x6e\x9c\xb7\xd9\xe5\x95\x78\xf5\x24\xe7\x3c\xbf\x36\x4e\xd4\x60\x15\x0a\x01\xc5\x3c\x3a\x73\x2e\xf2\x62\x41\x0b\xa7\xcf\xfa\xce\x9f\xb3\x05\xbf\x72\xe6\x38\x0a\x51\xbf\xbb\x52\x51\xab\xd4\x91\xb2\xbf\x4a\xb8\x04\x16\xfe\xc9\x17\x8f\xcf\x54\xa6\x0e\xa7\x4f\xe7\x98\xcf\x14\x8e\xe1\x89\xcd\x9c\x74\x95\x89\x1d\x49\x3d\x59\x35\x59\xad\xa6\x64\x96\x26\xd3\x7a\xad\xaa\x02\x56\x94\x17\x33\xe7\x3a\x29\x2e\x33\xe6\xf4\x3d\xe7\x27\x0a\xe3\x97\xf9\xe3\xe4\xfc\x02\x72\xd0\xc3\xbe\x50\x58\x8b\x15\x1a\xd1\x1c\xc5\xf6\x90\x3f\xdb\x4b\x44\x30\x6f\x20\x98\xc6\xb4\x0b\xf1\x51\x40\xee\xba\x2d\xb9\x82\x69\xf2\xbf\xbd\x82\x5e\xe3\x4b\xd3\xbf\x42\x25\xbe\x11\xa8\x16\xe5\x12\xe7\x3a\xb1\x3a\xec\x86\x5f\x3b\x32\x66\x7a\x35\x73\x84\x7d\x29\x4f\x9f\x26\x8c\xe5\xbc\x27\xa4\xa7\x5e\xd2\x4b\x57\x49\x59\xf6\x92\xb2\x97\x98\xb5\xef\xa0\x1d\x7e\xbc\x2f\x14\xc3\xff\xdc\x13\x6c\x93\x83\xd5\xe9\x91\xb9\x2e\xf5\xac\x73\x23\x66\x08\x17\x50\x26\x30\xcd\x21\xed\xf1\xcd\x3e\x85\x3a\xb8\xf6\xd2\xe9\x3e\x18\xb8\x49\xf2\x8b\xab\x41\xc6\x07\x61\x33\xdf\x2f\xd6\x23\x82\xdc\xbf\xca\xc5\x16\xd3\x1d\xfe\xa6\x0f\xbb\x49\x59\x66\x97\x6c\xbb\xed\x76\x3f\x8d\x26\xfc\xac\xc9\xec\xc0\xf1\xe7\xb6\x61\x43\x3a\xe3\x96\x9d\x83\x0c\x0a\xa1\x3a\xa8\xce\xcd\x75\xe7\x64\x29\x4c\x0b\x84\xb9\x2e\x38\xe3\x11\x36\x2b\xe6\xa8\xf2\xff\xad\x04\xa3\x8f\xd6\xce\xfb\xcd\xbb\xdd\x61\x8a\x6f\x0b\xa0\x60\x71\xe2\x59\xf2\x3e\x0d\x80\x70\xf1\x05\x2c\x20\x88\x38\xb5\xee\xd3\x40\x92\xf9\xae\x9e\x3d\x5f\x2f\xa1\xdb\x9d\x34\x59\x5f\x7a\xb0\x5e\xc4\x39\x81\x0a\x59\xfc\x49\xbe\x61\x8b\x8c\x5d\x3e\x05\x36\xf1\x96\xa6\xdc\xd3\x01\xe0\xaf\x3d\x8a\x25\x0f\xc7\x85\x7c\x58\xc1\xea\x9e\x70\xe8\x90\x30\xcc\x25\x3c\xa4\xc0\x42\xbc\x12\xc0\xc8\x52\x80\xb6\x4f\x0a\xa9\x63\xbc\xa3\x27\x65\x1b\xb7\x40\xb7\x2a\xeb\xd9\xad\x68\x30\x96\xed\x62\x9e\xaf\x63\xe8\x4b\x2d\x54\xd5\xb0\xaf\x5e\xab\x65\xad\xbb\xf6\xa1\xea\x0e\x67\xa4\xeb\x94\xf0\xb9\xb9\x33\xa0\xf8\x76\x87\x4b\x92\x49\x5c\x8a\x63\x83\xe4\x94\x7f\x96\x8f\xb9\xc2\x71\x4a\x32\x85\xd8\xaa\xca\x4f\xea\x39\x57\x6f\xf0\xca\x08\x94\xf0\xb5\x5f\x42\x56\x40\x59\x22\x2b\xfb\x70\x57\xbc\xda\x6e\x37\x5a\x83\x2e\x4e\x03\x93\x95\x4f\x5e\x79\x6b\xec\x7c\x71\x10\xde\xa8\xdf\x5f\x1d\xc8\x24\x03\x0d\x91\x15\xd6\x9d\xf8\x64\xa3\x89\xe5\xa3\x67\x67\xf5\x79\x6f\x6f\x5a\xad\xad\x7a\xd0\xb9\x55\x0f\xe6\xae\x6b\x3f\x69\x36\x8a\xf3\x0a\x79\xdc\x20\x0f\x67\x44\x50\x12\x2e\xc9\x1b\x8f\x83\x91\x86\x78\xda\x90\x44\x3c\xad\x89\xb5\x93\x6d\x02\xb9\x91\xbd\xcf\xd7\x80\x09\xb1\x89\xe1\x45\x57\x0d\xb1\x51\x98\x2a\x13\xe6\xba\xb9\xeb\x7a\xa5\x98\x41\x62\x76\x36\x78\x14\x82\x58\x09\x13\x6e\xbf\x00\x02\x08\x55\x9c\xa3\x2b\xf2\xd1\xbb\x15\xc4\x92\x89\x0f\x7c\xf8\xcc\x5f\x63\x20\xa5\x0c\xaa\xfa\xf2\x0b\x7f\xa1\x28\x49\xcd\xba\x26\xa1\xcc\xac\x1d\x31\x4b\xa2\x0f\xb1\x61\xbd\xcf\xd7\x24\xc4\xfa\x49\x00\x0c\x11\x8c\x5d\x37\x97\xd8\xbe\xa8\x8f\xcb\x7c\x04\x83\x7e\xd5\xf5\x52\xb4\x01\xe3\xbd\x02\x10\xc9\xda\xbf\xc0\x57\x9a\x7c\xd5\x13\xc0\x49\x16\xfe\x2b\x7c\xa5\xc8\x5d\x3d\x54\x40\x5d\xd4\x81\x7a\xa5\xfd\x5c\x0b\xd7\x3d\x60\x53\x5e\x89\x9d\x2b\x14\x73\x42\xc8\xca\x3a\x78\xac\xec\x93\x84\x77\xd5\xe9\x01\xf3\xdb\x89\xe8\xda\xe3\x9a\x65\xe4\xf2\x41\xb2\x0c\x9c\x11\x36\xf5\xa3\x38\xaa\x22\xe6\x00\x0b\x29\x1e\x65\x98\x1a\xd6\x21\x9f\x24\x4b\xc9\xe1\xb7\x62\x24\xf0\xb0\xf3\xae\x30\x47\x08\x5f\x55\xa4\xff\xc5\x1c\x0b\xe1\x98\x21\x8f\x23\x46\xd0\x5b\x7a\xe8\x3b\x4e\x8b\x8d\xcf\x27\xdc\x75\x1d\x96\x33\x2a\x8f\x59\x62\x58\x45\xc2\xca\x65\x5e\x5c\x3b\x68\x82\x38\xe1\x8d\xfa\x7a\x27\xdb\x6e\xef\x3f\x5b\xbd\xae\xa4\x39\xc9\xf6\x5a\x18\x1f\x75\x62\x7c\x54\xc3\xf8\x68\x8e\x33\x02\x74\x1f\x4a\x5a\x0f\x77\x78\x43\xf2\xa9\xc0\x0a\xc8\xf7\x2b\x8f\x23\xe9\x7f\xfd\x39\xa3\x37\xeb\xbc\x00\xc9\xab\x40\x59\x47\x54\x83\x07\xcb\xf8\x36\x04\xd1\x1c\x77\x28\x7b\x5a\x12\xda\x7b\xb8\xa0\xc6\x79\xb5\x80\x99\xcd\x6c\xb5\xca\x2c\x63\x8c\x16\x8a\xfd\x8a\xd3\x57\xbb\xba\xe4\xa5\xb5\xfa\x9a\x17\x43\xfe\x56\x3e\x0d\xe3\x6b\x8f\x09\x4e\xa5\x7e\x9a\x3d\xcb\xb0\x4e\x40\x58\xe2\x17\x40\x80\x85\xb5\x6a\x01\x85\xa5\x5f\x48\x02\x2c\xec\x25\x2b\x99\x46\x6e\xd8\xc5\x0e\xed\xbc\x0d\xce\x51\x15\xa3\x72\xad\x6f\x36\x94\x4c\xfd\xb3\x89\x4a\x54\x4c\xcd\xb9\xc6\x5b\x93\xd4\x2b\xc5\xa4\x20\xb3\x0a\x5d\xd7\x5b\xdf\x87\x42\x14\xaf\x89\x23\x07\x2d\x5b\xbc\xef\x74\x5f\x00\x5b\x5c\x92\xf7\xde\x1a\x03\x9c\x82\x06\xb4\xba\x61\x6d\xfa\xae\xc4\x20\x79\x8d\xae\x8c\xc6\x1e\x72\x28\xd3\x06\xe1\x50\x65\x99\x7d\x91\x97\x70\xb0\x4e\x2a\x75\x84\xae\xa5\xef\x7b\xca\x2a\x82\xd7\xc1\x01\xc8\x86\x85\x40\x24\x12\x04\x59\xa1\x72\x41\xda\x7b\x35\xbe\x22\x0b\xbd\xd9\xbe\x22\x0b\xc9\xbd\x27\x99\x64\x22\x4b\x60\xa6\x4b\x6b\x2a\x33\xc5\x52\xc8\x55\x1f\x5e\xe2\x4c\x71\x95\xa5\x64\xaf\x4b\x7b\x72\x33\xc9\x65\xc8\xab\xbe\x7c\x2b\xc5\xff\x4b\xd2\xb2\x66\xf0\x98\x40\x42\xe5\xe6\xae\x1b\xbd\x9c\xb2\x98\xc1\xef\xed\x36\xc4\x0a\x28\x59\xc8\xf3\xb5\x2c\x53\x9c\x5c\x96\x16\x8a\x64\x0d\x9c\xfa\x85\x7c\x82\x37\xad\x4c\x98\x32\xff\xb3\xb4\x8d\x68\x2d\xd6\x71\xe7\x62\x1d\xdb\x07\xf2\xf1\x3c\x86\xc8\xcb\xbe\x8c\x8e\xab\x35\x4b\x4e\xb2\xe1\xb9\x99\xaa\x1e\x55\x6a\x8e\xd7\x9e\xbc\x97\xca\xc5\x5a\x82\x25\x73\x2b\x17\x41\x52\xdf\x39\x41\xe6\xf2\x13\x29\x79\x49\x21\xd5\x54\xd4\xc2\x1a\xfc\xd5\x1f\x24\x7a\xab\xd5\xd2\x6b\x77\xbb\x49\x25\xd4\xc9\x1f\x3b\xb9\x3e\x6f\xb5\x24\x08\xf3\x98\xd4\x04\x41\xd3\xf4\x0e\xa7\x5a\xde\xff\x44\xbf\x96\x5e\x89\xf6\x5e\x33\x7f\xf3\xe0\xea\x8a\xee\x30\xd8\x07\xde\x26\x05\x4d\x62\x8f\x13\x78\xe2\x12\xa6\x47\x5c\x35\x8c\x74\x0c\xac\x1d\x42\x41\x99\x17\xdc\xf3\xba\xcd\xd6\x03\xd1\x8c\x4f\xe1\xcf\x0e\x81\xc4\xa4\xc3\x77\xb4\x2e\x57\xc4\xce\x23\x87\x5e\x10\x2d\xc3\x57\xd1\x03\x48\x8d\x53\xba\x6e\x51\x95\xfc\xa4\x44\x16\x21\x89\xad\x4c\x0a\xe0\xe9\x6a\x16\xce\xc5\xb0\xe3\x54\xfd\xc0\x82\xbf\xa8\xe8\x00\xbe\x83\x66\x91\x09\x35\xb6\xe9\x7b\xeb\xa9\xe3\x3b\xfd\x75\xec\xd8\xe9\x12\x1b\xf9\x50\x5b\xd4\x36\xec\xa4\xb6\xa1\x4d\x6d\xc3\x39\xa8\x5a\x75\x4f\xef\x05\x39\x4d\xbf\x78\xa0\x78\xe2\x78\xe5\x31\x84\xc4\x99\xd2\x74\xf9\xce\x46\xc7\xf7\x5c\x1e\x20\xcc\x6c\x49\x8b\x57\x5c\x40\x2c\xd5\x7e\xc7\xab\x27\x7a\x91\x89\x63\x4d\xc7\xfb\x97\x72\x21\x77\x7e\xfb\x56\x6f\x36\x5a\xb5\x20\xc9\xb1\x26\xfd\xf7\x0b\x4d\x90\xf5\x23\x40\x9f\xed\x6a\xa9\x58\xcd\xc9\x0c\x08\xdb\x29\xa4\x66\x42\xae\x21\xb9\x6b\xe9\x25\x02\x12\x15\x9c\x86\x1c\x59\xe2\xec\x2a\x39\xca\x98\x27\x00\x03\x92\xac\x45\xf1\x11\x9e\xaf\x0f\x2f\xbb\x02\x8b\xf4\xf8\x8c\xce\x77\xa8\x9d\x86\x15\xdd\x82\x0f\x7e\x45\x2c\xa1\xb6\x37\x17\x13\x84\x73\xa2\x06\x5c\xd4\x57\x6b\x61\x16\x75\x46\x94\x2e\x5b\x0d\x47\x0e\xc4\x52\x64\x8b\x6d\x3a\x9b\xc2\x88\xf4\x28\x4b\x51\xb0\x92\x4a\x36\x18\x69\x2a\x0a\x64\x8b\x4e\xec\xdc\x48\xdd\xcc\x4a\x14\xca\xdf\xb1\x7e\x69\xfc\x5a\x67\xc9\x9c\xf0\x59\x32\xef\xf3\x59\x3a\x3f\x1c\xf8\x05\xfc\xc1\xf9\xac\x9c\x13\x06\x2e\xf9\x7c\x56\xce\xfd\x62\xb6\x9a\xc7\x7c\xf6\x77\xaf\x44\x73\x9c\x37\xd2\xb2\x1a\xe4\x34\xa3\x9d\x2c\x33\xb6\x98\xca\x3f\x82\x80\xad\x48\x3c\xb3\x70\xde\xca\xae\x6a\x82\x76\x59\x31\xb1\xa9\x15\xeb\xa1\xa9\x01\x31\x16\x65\xf5\x0e\x21\xa1\xa9\x1d\xfc\x47\x15\x75\x1b\xcb\xcc\xf8\x5c\x74\x54\x05\x7e\xfd\x54\x0f\xbb\xd2\x59\xd3\x34\x6e\xcc\x11\xd1\x4e\x9c\xf2\x59\x72\x4d\x1d\x70\x9b\x0b\x96\x79\xf1\xbc\xee\xe4\x46\xd1\x2d\x0d\xf4\x93\xeb\xa6\x39\x2b\xf3\x95\x8a\x7f\xe9\xfc\xe7\x75\xbe\xc8\x96\x19\x2d\x4c\x8d\xff\xec\x65\x65\x6f\x41\xd7\x05\x4d\x13\x4e\x17\xb8\xb7\x29\x69\xcf\xaa\xc6\xfe\xf3\xc0\x41\x46\xcb\xaf\xbf\x12\x47\xed\x25\x9b\xd0\x80\xb2\xe4\x62\x45\x17\xae\x9b\x79\x0c\x0c\x6c\xd5\x8a\x2a\x83\x75\xbe\x5e\xd3\x82\x7c\x6c\x15\x21\x5c\x95\x98\x5b\xae\x5a\x3d\x53\x8a\x30\x27\xcc\xe3\x98\x2a\xe3\x49\x3b\x6b\xad\x3c\x57\x48\xeb\x00\x9e\x70\x1a\x64\xe5\x33\x5a\xf2\x22\xff\x4a\x17\x26\x36\x9d\x56\x06\x82\x8d\x23\x2e\x05\x47\x2a\xe3\xdb\x1d\x4e\x8a\x22\xbf\x79\x57\x3d\x72\x5e\x64\x17\x1b\x2e\x9f\x96\xab\x6c\xbd\xa6\x8b\xf8\x20\xc2\x0a\xa2\xf8\x76\xb7\x9b\xd0\x0e\xa8\x9f\x7b\x15\x00\x2a\x22\x28\x8c\x51\x45\x63\xd5\xf5\xe4\x63\xbe\x16\xa0\x57\xd1\xc1\x7e\x14\x52\x19\x18\x2a\x09\xfe\x20\x58\x29\x79\xe9\xd5\x6b\xea\x17\xb8\xa3\xf3\x07\xf7\xa7\x27\xb3\x0c\xc4\xc8\x02\x48\x96\x90\x14\x19\x2d\xf5\x01\xe0\xae\xda\xeb\x64\xb1\xc8\xd8\xa5\x00\x33\x2f\xb2\xcb\x8c\x25\xab\x9f\x0d\xb8\xb4\x06\x61\x6d\x5c\x64\xff\x90\xad\xc1\x28\x22\x79\xea\xd9\x63\xe9\x1a\xab\xd5\x13\x6a\x7d\x6f\x9a\xbf\xa3\xd3\xa9\x12\x82\x63\x27\x51\x11\x97\x1c\x4c\x89\xcc\x5d\x52\x8d\x59\x07\x3c\x34\x24\xf5\x14\xee\x9f\x16\xd3\x5a\xc3\x39\xfb\x65\xbd\x48\x20\x7e\x54\xec\x75\x55\x07\x93\xaa\xfa\x17\xf2\x0d\x5c\x02\x37\xd2\x1e\xdb\xb1\x3d\xf2\x6b\xda\x16\x40\xe0\x1a\xc6\xba\xa6\xb4\x56\x1d\xdc\x88\xd6\xf6\x89\x9f\xeb\x0a\xd3\xd9\x41\x84\x9d\xeb\xd2\xc1\xce\x9f\xe9\xc5\xa7\x4c\x30\xfc\x57\xf9\x37\x07\x3b\x6f\x1c\x79\x34\x34\xc1\xa5\x02\x9e\xff\x22\x90\x29\x33\xda\xf7\x35\x3f\x8c\x90\x0a\x60\xc6\x5b\x3e\x62\x39\xe1\xb3\x42\x1c\x71\xf3\xa9\xe3\xf4\xf3\x3e\x8b\xe5\x81\xe4\x2e\x6b\x13\xb8\x27\x08\x60\x21\xce\xb2\xb9\x66\x9f\xd9\xce\xba\xc7\xac\xc6\xf2\xb6\x11\x98\xb7\xb5\xce\x05\x9e\x9f\x34\xa7\xd0\x01\xb7\x70\x58\xdc\x8e\xb1\xf9\x57\x84\xa2\x8c\xe3\xf5\x72\xf7\x9c\x2f\xbe\xa1\x2b\x07\xd9\x2b\x4a\xc2\x58\x51\x96\xe3\x74\xbc\xe5\xf9\xba\xfb\x05\x68\xc3\x3a\xdf\xc8\xa3\x4c\xe7\x2b\x75\x24\xea\x7c\x77\x93\xad\x56\x4f\xaf\x12\x76\x49\x3b\xdf\xcf\x7e\xf6\x6c\xf5\xc7\x1c\xa2\x2e\x41\xad\x45\x56\x0a\x5a\x79\xfe\x99\x32\xfe\x32\x2b\x39\x65\xb4\x28\x3d\x54\x27\x4f\x89\x96\x37\x4c\x21\x56\x87\x3e\x56\x8b\xcb\xdc\x21\xb7\xa2\x20\x57\x1c\xfd\x2a\x2b\xab\x79\xfb\xcb\x5e\x59\xb1\xb2\x21\xa9\x89\x8d\xb1\x3c\x3b\x37\x72\x31\x48\xfd\x0b\x0b\x36\xb0\xd8\x40\x3b\x4d\x0a\x2c\x1a\x0f\x92\xc5\xa2\x36\x22\xcf\x29\x68\x99\x7d\x03\x33\x3b\xab\x3a\xbe\x5d\x27\x65\x99\x7d\x96\xd7\x0d\xca\x82\x28\xb5\xee\x5d\xed\xe3\x75\xfd\x04\x67\x8e\xd5\x96\x96\x55\x08\x46\x7c\xbf\xf0\x1b\xf3\x49\xd2\x86\x4c\xb4\x5a\x03\x03\x67\xdb\x2d\xf5\x52\x2f\xb1\x6f\xe7\x55\xe7\x38\x97\x0e\x8b\x09\xda\x79\x39\xd6\xd7\x7f\x8d\x41\xb1\xc0\x56\x61\x94\xc8\x14\x28\x7e\x4e\x72\xcc\x02\x2a\x80\x28\x9f\x4b\x46\x21\xd6\x09\xb3\x13\x08\xa8\xa8\x02\x72\x41\xd5\xaa\xea\x00\x02\xf0\x8a\xfc\xcd\xbb\x63\x63\xc1\xcd\xbd\xaf\x4c\xaf\xe8\x62\xb3\xa2\x92\x3b\xd6\x03\xfe\xab\x2d\x19\xab\x68\x20\x1d\x3d\xbb\xae\x97\x8a\xbd\x7a\xf5\x98\x65\xd7\x60\x9b\xfc\x63\x91\x5c\xab\x60\x01\x8d\xa6\xad\xae\x8d\xc3\x99\x05\x24\xb1\x20\xfb\x8b\x4c\x62\x20\x08\x77\x0f\xc9\x70\x1b\xbb\x42\x3a\xa9\xa1\x77\x9f\x88\xd5\xd9\xa4\x9e\xb0\x7a\x93\x20\xbb\xd4\xc8\x18\xac\x5c\x1a\x1d\x81\x93\x4b\x63\x26\x55\xbd\xc6\x64\x46\x98\xdb\xc8\xfd\xc9\x32\xbf\x12\x2c\x97\xba\xee\x41\x56\xbe\x4e\x5e\x7b\xf6\x15\x36\x42\xae\x9b\x95\x3f\x66\x0c\x12\xe0\x5b\x9f\xff\x28\x37\x21\xfb\x3c\xce\xbb\x04\x4b\x73\xdc\x74\x9c\x89\x3a\x43\x28\xc9\x5f\x4b\xfb\x52\xb3\x8c\xcd\xd1\x42\x9d\x85\x3a\xce\x18\xae\xfb\x93\xc7\x67\x0c\x7c\xb2\x0a\xe2\xac\xbf\x38\x32\x0c\xba\x60\x65\x6c\x0e\x97\xa7\x7d\x08\x57\x20\x7a\xfc\x13\x58\x2e\x29\xe3\xc2\xc3\xec\x21\xa6\x4b\xbf\xd6\x0f\xc8\x7b\x85\x6d\xed\x2a\x0e\xa7\xf4\x9c\x48\xa5\x57\xc7\x36\xdc\xac\xcf\x44\x35\xb3\x0b\x0b\xd1\x68\x41\x8b\xb3\x42\xfe\xdd\x49\x9d\xee\x41\xc5\x4b\xfe\xd3\xe9\xf3\xbe\xf3\x9f\x0e\x4e\xe0\x37\x13\xbf\x27\x35\xc9\x3c\xe9\x3b\x3d\xbd\x85\x09\x89\xbc\xa0\x7f\xdf\x64\x05\x5d\xf4\x2e\xbe\xf6\x9c\x7e\x56\x7b\xcb\x7a\xd0\x4d\x8f\xe7\xbd\x9b\xbc\xf8\x84\x21\xce\xe2\xa6\xa0\xa2\x20\x63\xe9\x6a\xb3\xa0\xbd\x8c\xf7\xa4\x15\xad\xfc\xfa\xc0\x31\x17\x99\x39\xe0\xf4\xdf\xc8\x0c\x14\x4b\x3e\xc4\x94\x70\xb0\xd4\x32\xc9\x3f\x3e\xb8\x6a\x3a\x70\x53\xa3\xde\xca\x79\x15\x25\xf2\x9d\xd4\x1c\xe9\xb7\x7a\xbe\x65\xa9\xac\xa1\xb4\x43\xf6\x43\x55\xaa\x3f\x04\x1d\x91\xac\x22\x4f\x9a\xb2\x44\xbe\x9e\xe3\xff\x20\xff\xa6\xa4\x90\xa1\x35\xb7\xff\xe7\xf7\xd0\x89\xff\x87\xe5\xea\x84\x0b\xf2\x1f\x3a\x1e\x5e\x3f\x42\x3a\x30\xd0\x7f\x98\x13\x21\x43\x96\xf1\x63\x51\x39\x4d\xc6\x05\xe0\xf2\x0f\xe4\xf6\xc7\x97\x2f\x7e\x8e\x1d\x21\x30\x3b\xf8\xe9\xcb\x37\x4f\xff\xe3\xcf\x2f\xde\x3d\x8f\x9d\x74\x95\xa7\x9f\x6e\xb2\x92\x3a\xf8\xe9\x9b\x5f\x5e\xbf\x7f\xfe\xd6\x7e\x99\x6f\x18\xa7\x45\x55\xc7\xba\x61\xfe\xf7\xe6\xfd\xc3\x2c\xc4\xe1\xfc\xde\xc3\x7b\x81\x20\x58\x9e\x54\x0f\x1c\x7a\x1f\xfa\xdb\x0f\x3e\x3a\xdc\xaf\x5c\xd3\x39\x60\x76\x2a\x33\x93\x6e\xe7\x93\x97\x74\xad\x17\x5f\x1a\x95\x96\x34\x29\xc0\xa6\x7b\xfb\xa1\x3c\x04\xe3\xd8\x49\x32\x2b\xe7\xca\x39\x4e\xfc\xac\x94\x97\x58\x88\x60\xf5\x33\xe8\x1b\x29\xbb\xf7\x4a\xba\x4e\x0a\x21\x2d\x0b\x1a\xbf\xb9\xca\x38\xed\x95\xeb\x04\xa2\x51\xf6\x92\x82\xb6\x0e\xa5\x49\x0f\x6c\xd2\x7b\x1e\x46\x60\xe4\x41\x93\x45\xa0\x8e\xa6\x29\x39\xfc\x50\x3e\xc2\x1f\xca\x47\xdb\x0f\x65\xff\x10\xaf\x24\x9e\xca\xe9\x2c\x31\x93\x58\x9a\x89\x9d\x01\x88\x12\x49\x29\x9a\x85\xf3\x39\xc2\x8d\xb2\x68\x6e\xe2\x43\xe9\x16\xca\x7e\x84\xd0\x3c\x9e\x25\x73\x3b\x90\x66\x03\xb3\xd5\x84\x79\x32\xd6\xe2\x41\x16\x67\xa8\xad\x2b\x49\x2c\xd3\x61\xb1\x95\x2c\x36\x29\xed\xd6\x55\xaa\xa8\xa5\x55\x04\x44\xc0\x33\x10\x41\xdf\xc1\x8e\x6f\xcd\x3e\x47\x53\xaf\x56\x93\x70\xd1\x51\x88\x29\x8a\x93\xc6\xab\xbe\x7c\x17\x89\x77\x54\x0f\x95\xa3\x1d\xc2\xb3\xf9\x7e\x7a\xa9\xab\x46\xaa\xc1\x52\x6d\xe6\xef\x79\xd3\xf8\x83\xbf\xfd\xd0\x47\xd3\x0f\x8b\x47\x1f\x02\xf1\x2f\xf2\x82\x47\xe8\x10\xe1\x8c\xf4\x73\xb1\xf8\x12\x92\xcf\x06\x73\xe0\x90\x59\xa5\xd5\x56\xc9\x09\x2b\x1a\x74\xfe\xe8\x20\x1d\xe4\x51\x5d\xdd\x28\x43\xe0\x44\xd9\xff\xfe\x71\xed\xc4\x25\x61\x13\xe5\xa5\x0d\x45\xca\x1e\xf8\x8f\xc5\xff\x4b\xde\x9f\xb7\xc7\x8d\xe3\x8a\xa3\xf0\x57\xb1\x35\xf3\xf3\x48\x63\xd9\x5d\x8b\xd7\x72\xab\xfd\xa6\x63\xa7\x93\x9e\x6c\x93\x38\xe9\xc5\xf1\x2f\xa3\x92\x58\x55\xea\xa8\xa4\x32\x25\x79\x89\x5d\xdf\xfd\x7d\x08\x70\x01\x29\x95\x9d\xee\x73\xce\xbd\xe7\x79\xee\x1f\x71\x8a\x20\xc4\x05\x04\x41\x10\x04\x41\x6f\xa4\x2e\xa0\x54\x11\x37\xe7\xf2\x55\x70\x5e\x5f\x7c\xd7\xef\xf5\xfe\x99\x2d\xe1\xdc\x6d\x06\xc7\x22\xf7\xf7\xde\x15\x1c\xdd\xc4\xda\x3a\xa4\xb2\x8e\xf5\x21\xd7\xaa\x63\xc3\x6f\x39\xfb\x1a\x7d\x6b\x29\x0f\x1c\xb8\x05\xb2\xdd\x7a\xd3\xe4\xb3\xb0\x0c\x55\xc8\x90\x15\xd6\x20\x7c\xf8\xa8\x63\x35\x17\xa3\xf7\x1c\x8d\x36\x25\xc4\x5b\x2a\xfe\xe9\x7b\x5b\xc8\x6d\x7c\xab\x7f\x01\xa7\xc1\x81\x2c\x3a\xc4\x55\xe3\xf7\xe8\x4e\x6f\x97\xb4\xa9\x33\xb4\xf6\xd9\x23\xc1\x53\x54\x5d\x19\xad\xf7\x42\x67\x7f\x01\x96\x15\xb9\x23\xa6\x97\x50\x96\xa1\xda\x59\xdb\x50\xbd\xb7\x1b\xdd\x41\x64\x87\xd1\x1d\x2c\x80\xa3\x7e\xaf\x17\x32\x53\xcb\xa4\xe8\x70\xd1\xa7\x26\x8a\x22\xaa\x6d\xd3\x29\xf8\x77\xdb\x96\x77\x8c\xa3\xa0\xd8\x5a\xda\x19\xc4\x1e\x97\xe8\x97\x71\x54\x2a\x5b\x45\xa5\x24\xb2\x5e\xe2\xc4\x52\x69\x99\x53\x93\xa8\xb2\xad\xa7\xb9\x00\x38\x86\xd2\xb0\x89\xee\x60\xd9\x1b\x5d\xfb\x77\xcb\x30\x09\x21\xd2\x6f\xc8\x8a\x94\x02\x36\xb3\xf3\xfc\x62\x2b\x3e\xcf\x2f\x02\x6a\x8f\x92\x56\x14\x70\x45\x8a\xc3\xc6\x76\x5b\x5a\x4a\x23\x96\x22\xda\xe0\x01\xa2\x85\xe4\x8c\x11\xbf\x82\x33\x0f\x43\x41\x97\x26\x92\x0a\xb1\x45\x9e\x2a\xe2\x0e\x99\x13\x35\x83\x65\xab\x92\xe8\xb9\xbf\x59\x04\xc7\xe7\x9b\x45\xd8\xbb\x18\xfd\xec\x17\x61\x16\xc6\x61\x15\xc8\x15\x0d\x0c\xc2\xbe\x3c\xa8\x4b\x44\x09\xd2\x4b\x24\x4a\xce\xfb\x17\x81\xb2\xc5\xaf\x42\xdb\x54\x68\xd2\x3f\x16\x90\x54\x06\x60\x81\x73\x87\x44\x92\x23\x87\x4f\x51\x77\x20\xca\xd2\xc0\xc0\x05\x74\xce\x42\xa6\x89\xda\x5b\x86\x0b\x0e\xfc\xfe\x46\x5e\x0c\x50\x74\x1e\x7e\x23\x9d\x5b\xe6\x38\x74\x23\x56\x96\x4b\xb5\xc5\x3e\x22\x20\x63\x7f\xc4\x57\x07\x8a\x28\xf5\x0b\x6d\x59\xb6\x4d\x01\x30\x64\x4e\x61\xa8\x68\xc3\x00\xd6\xe5\x02\x46\x0f\x8e\xe9\x2a\x7c\x6b\xa5\x54\x76\x8d\x52\xdb\x31\x04\x5c\xe8\xfd\xb8\xd8\xbe\x6e\xb7\x2f\xec\x6a\x5e\x58\x2b\xf3\x61\x58\xb8\xf6\xc1\x40\x56\x93\xa9\x5a\x62\xac\xa4\x0a\x29\x49\xa2\xe4\x08\x63\x6e\xd4\xdb\x0b\x9e\x95\x3c\xab\x6f\x89\xe7\x96\xb6\x18\x2e\xa2\xbb\x05\xcf\xe6\x31\xbf\x6d\x49\x80\x22\x6a\xce\x99\x39\x50\x3b\x67\x17\xdf\x27\xe7\xec\x62\x63\x63\xbd\xde\x66\x55\x12\x2f\xe0\xb5\x9b\x77\xaa\xc9\x40\x4d\x2d\xab\x05\x7a\x28\xd0\x83\x20\xbc\x46\x47\xbf\x02\x6e\xc1\x25\xa5\x68\x60\x57\x6d\x86\x35\x99\x3d\xeb\x79\xd4\x90\x47\x84\x44\xc9\x3f\x3c\xd2\x10\x6e\x82\x84\x8b\x4f\xa1\x21\x5b\x3e\xad\xa0\xc1\x53\x9e\x51\xa3\xce\x3f\x55\x3b\xd1\x4b\x56\x55\x96\x77\xef\x61\xaf\x64\xc8\x65\x90\x5f\x52\xff\xb6\xa5\x17\x0b\x8e\x3d\x49\x58\x6f\xe4\xe9\x6e\x7b\x47\x0d\x0a\x9b\x26\x5c\x9c\xd7\x17\xbe\x34\xcf\xb7\x04\x52\x23\x26\x8a\x1a\xb7\x91\xae\x83\x5b\x9b\x45\x39\xfd\x2e\x42\xc9\x2a\xa3\xdd\xb0\x35\x25\x46\xb6\xd3\xc6\x32\xfc\xc2\xd8\xe2\xac\x9c\xb2\x7a\xc6\xb8\x9a\x70\x3b\xdf\xb4\x1a\x28\xe9\x25\xa6\x9e\xe4\x1e\x0e\x91\x9a\x14\xcf\x96\x54\xe0\x39\x72\x2c\x23\x6f\xc0\x87\xb1\x22\x9d\xdd\x0f\x4d\x3c\x38\x99\x8f\x8f\x65\x77\xcd\x72\x99\x08\xa0\xbd\x1e\xc4\x2b\x0f\xce\x8a\xf3\xea\xe2\xfb\xcc\xe7\x62\x35\x80\x6b\xd0\x36\x89\xcf\x93\x8b\x48\xe6\x6e\x15\x62\x59\x08\x8b\xf3\xe4\xe2\x07\x01\xaa\x1e\xfc\xa0\x12\x2c\x2d\x16\x07\x38\x09\x51\x24\xdc\xfd\x16\x99\x05\x9a\xdb\x6f\x54\x04\x50\xdb\xab\x28\xce\x0b\x3d\x3a\x40\xae\xf3\x82\xa0\x37\x93\x4e\x59\xdd\x8f\xf0\x4a\x67\x6e\xde\x21\xba\x2e\x1b\xc6\x6f\xdf\xcb\xeb\xa0\x3e\x0f\x4c\xd9\xfa\xbe\xfc\x7a\xfb\x2b\xed\x70\x67\x02\xef\xd9\x9b\x92\x5f\x9e\xbc\x7b\xfd\xe2\xf5\x4f\xa3\xb5\xff\x40\x0f\x54\xfb\xfe\xa3\x1f\x32\x48\x66\x59\x9e\xae\x95\x93\xb5\xac\xae\xd6\xb0\xd4\x35\x89\xb4\xee\x05\x21\x3b\x52\x2a\xc3\x6a\xde\x31\xcc\x57\x45\x99\x62\xbe\x24\xca\x08\xf3\xe5\xce\x74\x44\xde\xb1\x78\xaa\x89\xf2\xf6\x7e\x62\x21\x80\xc4\xc1\x3f\x9c\x44\x8b\xed\xba\x7c\x59\x5e\x2b\x83\x7e\x98\x0a\x14\xca\x76\x33\x01\x18\x2b\x17\x7f\x39\x29\xc7\xd1\x7b\x9f\x07\xe7\xcd\xc5\x51\x72\x3e\xbb\xd8\x1a\x7f\x5f\x9d\x4f\x2e\xba\xf8\x68\x72\xb1\x15\x89\xbc\x2d\x1f\x11\x83\x20\x4c\xce\x27\x17\x9b\xe3\x1f\xaa\xf3\xd9\x8a\x2f\xc4\x4a\x2a\x50\xb6\x04\x4a\x87\xbc\xf8\xdc\xfa\x08\xd7\xb4\x39\x7e\x97\x9c\x37\x17\xdf\x0d\xb6\xc6\xdf\x0d\xc2\x57\x51\xdc\xb1\x46\x86\x53\xea\x2e\xf0\xca\xdc\x6b\x58\xc0\x65\x8d\xf0\xca\xc9\x56\x77\x3a\x16\xd6\x9d\x8e\xf0\x36\x9a\x6f\x75\xf5\x77\xba\x75\xa5\xa6\xe5\xad\x59\x23\xb4\x8c\xae\xce\x9b\x8b\xad\x71\x78\x1b\x84\x3d\xd1\x37\xe0\x23\x65\xc7\xa3\x87\x5a\x90\x11\xf9\xd7\x7e\x11\xdd\x2d\xc3\x49\x08\x05\x70\x21\xf2\xfc\x5b\x90\xdf\x45\x98\x86\x9e\x17\x84\x85\x98\xa1\x21\x53\x22\xf0\xfc\x66\x0b\x3e\xbd\xf0\xf0\x88\x52\x4d\xda\xbd\x47\x26\x6d\x36\xf1\x7f\x5c\x31\x5b\x61\x7f\x41\xa7\x27\xbe\x6b\x83\xe7\x9f\x10\xd8\x41\x1f\xf5\x89\x8d\x7f\xeb\x00\xd0\x9e\xd7\xc5\x5f\x51\x0c\x3a\x14\xa0\x96\xaa\x60\x2b\xa1\xce\xbc\x2a\xa3\x4b\x8c\xa6\xb7\x02\xa5\x7f\x71\x7f\xef\x89\x1d\xf7\xf9\x85\xda\x40\xd6\xdb\x63\x36\x8b\xaf\xb2\x92\xe3\x4e\x72\xed\xef\xdb\x60\xc0\x89\xa3\x73\x1e\x96\x17\x64\x43\xb9\xf6\xf7\x6d\x63\xb1\x89\xa3\x7f\xfb\x3c\x70\x72\x5d\xb3\x0e\x20\x85\xeb\x3d\x85\xa7\x76\xa1\x71\x64\x6a\x55\xca\x79\xdc\xb1\x2e\x57\x21\xc6\x43\xe4\xeb\x51\x54\xdd\xdf\xab\xd8\x32\x51\x14\x25\x9b\x7d\x43\xef\xc7\x29\x22\x15\xa7\x96\xae\x44\xd5\x27\x33\x20\x0b\xba\xb2\x4d\x22\xad\x86\xf3\x8d\x8d\x85\x9f\xe3\xa9\x55\xf0\xc3\xc2\x6f\x40\x59\x0b\xee\xef\x8d\x1a\x22\x51\x00\xfe\xbd\xc0\x40\xe4\xfb\x7b\xa5\x7e\x4b\x04\x14\x35\x58\x48\x0d\x41\x95\x88\xea\x2d\x71\x04\x1c\xca\x90\xc8\x61\x1a\xd1\xb2\xd1\x89\x2f\x08\x67\x91\xd5\x28\xe9\xb0\x17\x84\xe3\x88\x14\x02\xce\x7d\x41\x38\x8f\xec\xca\x0b\x5d\xf6\x2b\xab\x9b\xa9\xd3\xa7\x99\xd5\x81\xb1\xdb\xda\x79\x38\x7d\x64\xfd\xe7\x42\xe0\xac\xaf\xd7\x30\x9f\x3e\xc6\x3c\x83\x33\x0d\xb1\xc7\x98\xe2\x15\x51\xf4\xf6\xcd\xa0\x6a\x01\x62\x45\x2a\x01\xb3\xfb\xfb\x75\x17\x69\x2c\x61\x06\x6b\x2e\x44\x55\xbb\x82\x1f\x6f\xe1\x2e\x70\x51\x77\xd4\x34\x73\x6b\x4a\x3b\x6a\x9a\xb7\x6a\x1a\x07\xe1\x93\xe8\xea\xfe\xfe\xf6\xc8\x9f\xdc\xdf\xbf\xba\xbf\x7f\x82\xba\x85\x94\x14\xd1\x7a\x2f\x84\x0c\x34\xe7\xc7\xe7\xc9\xa6\xd8\x30\x3d\x81\x77\x34\x3a\xa2\x50\xc9\x82\xd9\xb1\xac\x76\x64\xaa\x67\xc7\x90\x3b\x62\x4b\x78\xa3\x93\x4a\x20\xbe\xe9\x67\xe0\x0c\x97\x8d\x3c\xaf\x63\xf5\xc0\x9b\x38\x2e\xbb\x3f\xed\x14\x49\x0f\x3b\x18\x04\xe0\x19\xd0\x29\x32\x59\x88\x56\x5e\xa9\xf1\x2e\x43\x35\xa7\x95\xf5\xf7\x41\x2d\x56\x7b\x79\x87\xf6\x90\x8d\xd6\xfb\xe1\x8a\x41\x1c\xad\xf7\x97\x21\xc8\x69\x25\xef\xf7\xa9\xbc\xef\xff\x35\xab\x87\x51\x45\xe0\x19\x02\x24\x4b\x16\x71\xcb\xc8\xf1\xb0\x2a\x02\x4e\xdc\x60\xf1\x55\x33\xa0\x75\xca\x43\xbc\xbf\x2c\xd5\xe3\x22\xca\xce\x8b\x8b\x2d\xbf\x3a\x86\x1c\x47\xf5\xbd\x18\xf5\xec\x81\xbf\xf4\x3b\x7c\x3e\xa2\xcf\x42\x19\x12\x1a\xec\x2c\x4b\x99\xa2\xcd\xc1\x83\x7b\x80\x87\x14\x57\x51\x8a\x07\x31\x4f\xe9\x66\xde\x55\x5d\xeb\x4e\xe1\x59\x44\x5f\xba\x4b\xed\x7a\xb1\xd2\xad\x01\x6f\x41\xc5\x73\x78\x18\xcb\xf0\x0c\x84\xd8\x93\xa2\xea\x7b\xe9\xa7\x8c\x4e\xb5\x3f\x68\xff\x64\xf0\xed\xfd\xc1\x78\x25\x4b\x4f\xde\xef\xa5\x98\x84\xfe\xe2\xd3\x4b\xa2\x77\xa6\x27\x98\x06\xcb\xf0\xb6\x71\x7d\x3a\xf7\x6e\xb6\xca\xa6\xde\x2a\x27\x5b\xa6\x19\x9e\xd8\xf6\x9b\x38\x53\xfd\x07\x4a\xeb\x7f\x53\x69\xeb\x7d\x6a\x9a\x4a\xd0\x57\x14\x9c\x35\xf4\x18\xee\x7e\x9b\xe1\xe4\x06\x36\x6e\xb7\xd4\x26\x65\x38\xf9\x4f\x0c\x08\x71\x17\xb1\xc6\x62\xba\x68\x9e\x24\x09\xcb\x19\x87\x29\x79\xa4\x0f\x96\x32\xf7\x44\xc3\x6c\x1e\x9c\x6f\xfe\xb3\x86\x47\xe5\x6b\xf3\xf2\x8a\xa5\x6b\x75\xb9\xf6\x1f\xda\xe3\xff\x98\x43\xbd\xb8\x48\xd7\xae\xb3\x3c\x5f\x2b\x4a\x7c\x37\xad\x59\x08\x41\x81\x81\xc8\x26\x4d\xdd\x70\xb6\x76\xc5\x78\x25\x64\x83\xd8\x85\xbc\xc5\x7d\xcd\x1f\x95\xf2\xce\x8b\x23\xd3\xbe\xe3\x6c\x54\xbb\xcd\x0f\xab\xa8\xcb\xac\x14\x26\xd1\x1b\x8c\xd9\x7c\xa7\x74\xae\x51\xa9\xd5\xaf\x65\xd8\x74\xde\x3f\x32\xe2\x83\x47\x85\x22\x7a\x19\x15\x64\x4e\xc8\xad\x32\xe8\xb5\xea\xb9\x33\xd4\x2e\x3a\x03\x66\xb3\xa5\xd8\x09\xf9\xf2\x5a\x9d\x68\x4f\xe6\x73\x95\x68\x1e\x11\x45\x96\x73\xd8\x22\x92\xc7\x54\x46\x3d\xd2\x47\x0a\x5b\x5e\x10\x4e\xa2\xfa\xb8\xb9\xbf\x5f\xdc\xdf\x27\xff\x67\x10\x45\x51\xfe\x7f\x06\xc7\xd9\x28\x1e\x55\x61\x1a\xd5\xc7\xd9\xa8\xd2\xef\x8e\xb2\x49\x3d\x9a\xf8\x88\xd5\xdf\xd8\xc8\xd5\x8f\xf5\xc5\xc6\x46\x7d\x8c\xd7\x50\xb6\xfa\x23\x2e\x95\x92\xba\x5c\x8c\x52\x9f\xa3\xd6\x21\x1d\x83\x45\x5a\xa9\x1b\xe8\x38\x3c\xf1\xb9\xd4\x56\x96\x4b\x9f\x29\x43\x7f\xca\xae\xb2\x84\xbd\xcd\x6e\x58\xfe\x4e\x0c\xd7\xf7\x83\xfb\xfb\xf5\x8f\xa2\x33\x44\xeb\x28\x94\x57\xae\xb2\x24\x4c\x88\xb5\x89\x6b\x09\x2b\x77\x72\x33\xd7\x10\x38\x56\x21\x48\xe7\xca\x1a\x9b\x4d\xfc\x39\xad\x60\x71\xac\x2f\x90\x54\xe6\x62\xe6\x56\x65\x1d\x70\x6c\x2a\xe5\x6c\xb4\x95\x48\xb3\x93\x01\x81\x66\x17\x8e\x49\xbb\x26\x0f\x97\x89\x0e\xd9\x52\x67\x14\x25\x5e\x5b\x00\x54\x37\xc3\x78\x63\x63\x16\xe4\xe7\xb3\x8b\x08\x7b\x94\xc7\x35\x1b\xa6\xbe\xb7\x39\xde\xf4\x16\x37\xe1\x9a\xb7\x39\xc7\x1f\xbd\xc0\x0b\xf3\xf3\xc5\x45\xd4\x0b\xf3\xf3\x09\xfc\x67\xb9\x4e\x19\x7a\x98\xeb\x2c\xaf\x6c\x12\x6c\xf5\x47\xfd\x70\x6a\xf5\x00\xee\xc5\x41\xb1\xf3\x7f\xbe\xc2\x82\xc7\xff\x9c\xda\x45\x2f\x36\x3d\xd1\x8e\x09\x9c\x93\x5c\x45\x77\x96\x67\xd9\x88\x70\x23\xf1\x0c\x37\xd2\x12\x95\x97\x2b\x4b\x82\x6a\x8f\x08\x99\x9b\xeb\xb4\xde\x5e\xbe\x27\xd9\xce\x06\xd3\x46\x01\x55\xc5\x91\x08\x42\xb8\xde\x18\x66\xba\x55\x9c\xb3\x0c\x8d\x44\x54\x32\xf9\xf0\x71\xdb\x5a\xa8\xa2\xa1\xad\x3d\xeb\x54\xb9\x54\xd3\xeb\xb6\x51\x07\x1c\x11\x4d\xc7\x43\xea\x8a\x52\xac\xf0\x71\x86\xa7\x2e\x8a\x73\x76\x71\x5c\x6f\x57\xac\x36\x2e\x7d\x2c\x14\xd0\x60\x54\xb7\x9c\xfd\x98\xb4\x52\xd2\x9d\xf9\xc6\x06\xad\xcc\xa6\x99\x7e\xcb\xe4\x99\x6f\x7f\xd4\x41\xdb\xb2\x78\x59\xc6\xe9\xc8\x3d\x20\x35\xfe\x64\xa7\x7e\x19\xd6\x21\x0b\x0b\x77\x6f\x1b\x47\x2f\xfd\x82\xa8\x6b\x99\x44\x7b\xd4\x6b\xb7\x85\xa2\x5c\x75\xcd\x2b\x9f\x16\x61\x2c\x8e\x0c\xe3\x20\x7c\xe6\xd7\xa1\x91\xfa\xc5\xa3\xfe\xb2\x4b\x78\xdf\xcf\xe5\x22\x19\xb3\x77\xb9\x0c\x19\x5b\x11\x32\x81\x78\xe2\x80\x1f\x76\xfc\xed\x17\x58\x8f\x69\x62\x74\xb7\x3c\xba\xb5\x1e\x26\x77\xfc\xc2\xa2\x76\x44\x3b\xce\x2e\x1b\x56\xd5\x8e\x4f\x19\x97\xde\x58\xc1\x12\x8b\xc1\x54\x54\xfa\x24\xb5\x3d\x86\xfb\x04\xb3\xac\x0a\x6c\x77\x49\x35\xdf\x4e\x70\x6b\x5f\x09\x5a\x12\x7f\xb4\x3b\xe2\xa0\x2a\x14\x74\xed\x15\x2c\x12\x96\xc7\xd7\xe8\xfc\x62\xe9\x78\x6e\x47\xf5\xc6\x46\xbd\xfd\x07\x58\x39\x31\x48\x5e\x4d\xbd\x3d\x31\x6e\x91\xcc\x2e\x44\x76\xb1\xc2\x7b\x3b\xba\x5b\x5a\xf3\xc8\x69\x33\xd1\x89\x62\xf3\xbb\xf3\x08\xb9\x0e\xee\x78\xbb\xfc\xf3\xfa\xc2\xa5\x83\x95\x79\x7f\x7f\xb7\xa4\x45\x1f\xc7\x56\xf6\xe8\x6e\xa9\xe3\x21\x93\x46\x5b\x4e\x68\x9d\xfd\x7a\xf0\xa6\x98\x50\xdd\x46\x6c\x19\x76\xb5\x97\x5d\x04\x8f\xdc\x0a\x93\x6e\x5c\x5b\xb5\x76\xe3\x72\x9a\xb7\xca\x15\x90\x5c\x82\x60\xdb\x28\x09\x02\xf0\x0a\x83\x9f\x3e\xdd\x55\xe9\xcd\x96\x6e\x62\x28\x80\xc0\x39\x86\x20\xc8\x80\xbe\x8a\x14\x64\x51\xc2\x3a\x5c\x3f\xaa\xa4\xaf\x2e\x36\xa1\xdb\xcb\xb7\xc3\xd7\x32\xaa\x94\x16\xfe\xc4\x67\xa1\x8c\x0e\x89\xb5\x7a\x21\x46\xf2\x68\x4f\xa5\x13\x13\xe3\x32\xd0\x61\x50\x53\x64\xf5\xd5\x5f\xbd\xeb\xfa\xaa\xab\xb9\xab\x8b\x78\xd1\x59\x71\x97\x63\xf3\xea\x32\x3e\x58\x65\x5c\x04\xf8\x0c\x3b\x63\xdb\x1f\xea\x2c\xaf\xa2\x6e\xaf\x75\xd4\xce\x8e\xf1\xbf\x11\x0b\xb6\x51\xed\x86\x4f\x42\x46\x16\xf5\x2a\xfa\x49\xa4\xd5\x4c\x88\x7e\x0f\xeb\xed\x38\x62\xcc\x79\x66\xb3\xbf\xfb\xe8\x33\x9b\x28\x26\xe5\x3c\x98\xb2\x9a\x44\x28\xc1\xe0\xcc\x62\xcb\xfe\x48\x28\x93\x30\x6b\x63\x2c\x64\xde\x8b\xea\x54\x07\x68\x39\xa2\x71\x03\x31\x9c\x7b\x93\xe7\x62\x13\x74\x7f\xaf\x2f\x47\xad\x78\xf7\xd9\x0a\xd7\xb2\x96\x60\x44\x9d\x31\x83\xa0\x3a\x4c\xec\x65\xea\x19\x78\xf3\xaf\x95\x7c\xcd\x90\x56\xaf\x4d\xf8\xb9\x58\x92\x4d\xf0\x4b\x1a\x23\x11\x23\xa1\xac\x5b\xb5\x98\x3b\xcd\x78\xbb\x47\xb4\x48\xc6\x5b\xf6\xe2\x71\xe2\x81\xd7\x25\x3b\xdf\xbd\x88\x3c\xd8\xcb\xef\x0a\xed\xad\x93\x92\x42\x07\xad\x7c\x16\x9c\xf7\x2e\x4c\xa1\xe6\xd2\xc4\xdd\x52\xbe\xf0\xd2\xef\xc9\x27\x5e\xbc\xcf\xde\xa6\x8c\xb9\x38\xe1\xe5\xfc\xa9\x7c\x72\xd6\x2f\x82\x8b\x08\x0e\xc4\xbc\x5e\x7f\x30\xdc\xd9\xdd\xdb\x3f\x38\x14\xfc\xf3\x40\xad\xf5\x6a\x09\x26\x2f\xfd\xc9\x97\x98\xcd\xf5\xec\xbe\xe4\x8a\x3b\xa5\x3b\x8a\xee\xa6\x6c\x32\x9d\x65\x7f\x7c\xc9\xe7\x45\xb9\xb8\xe4\x55\xed\x29\x2b\x8f\xb7\x42\x65\xe2\xe7\xec\x22\x82\x07\xcb\xbb\xbf\x37\xd4\x02\xf9\x6b\xd1\x5e\x48\x7a\x4e\x9a\x26\xe3\xc2\x94\xfa\x25\xf4\xfe\x72\xe9\x07\xc7\xd6\x37\xce\xbe\xdd\x3c\x20\x57\x85\x09\xc6\x5a\xcc\xa3\xfe\x51\xde\x0e\xe8\x93\x6f\x6e\x1a\x74\x78\x4a\xa3\x90\x2d\x33\x91\xce\xce\xf3\x8b\x20\x28\x55\xd0\x9e\x26\xd8\xd8\xf0\x13\x78\x3e\xe3\xbc\xb9\x08\xa4\x17\x4f\x15\x71\xbf\x30\x4f\x4c\x2e\xa2\xde\xd1\xe2\x7b\x5d\xcb\x62\x73\x33\xc8\x54\x01\xd5\xf9\xe2\x02\xcb\x10\xbf\x44\x31\xf0\xbf\x09\xaa\x94\x2c\x1f\x99\xb8\xd6\x82\x29\x7d\x01\x3e\x7f\x9e\xe6\xe5\x38\xce\x3f\x37\x45\x76\xd9\xb0\xcf\x59\xfa\xf9\x33\x0d\xf7\xda\x16\x53\xf0\x9a\x10\xb8\x46\xc3\x0d\xd7\xbe\xfb\x50\x6f\x5b\x82\xe8\xd7\x57\xc0\x10\xa2\x4a\xbe\xb3\xc2\x8a\xaa\x67\x6f\x49\x64\x70\x13\x9c\x74\x6d\x16\x57\xd2\xec\xc0\x8a\x35\x3d\x53\x69\x50\xd1\x8e\xef\x93\x9c\xc5\xfc\x5b\x4b\xa8\x94\x78\x11\xbb\x40\x5d\xb1\x32\x21\x91\x38\xa9\x2c\xec\xc1\xe0\x01\x66\x76\x7f\xbf\x5e\x04\x1b\x1b\xed\x2f\x0a\x52\x4a\xe8\x7e\x0e\x4f\xfb\x49\x3c\x80\x48\x5e\xad\x51\xac\xa8\x2c\x39\xf2\x4d\x9e\x87\x36\x92\x8d\x80\xda\xa6\x40\x58\x2e\xd7\x1d\x09\x55\x44\x9e\x8e\x18\x66\x4e\xaf\x4d\x7b\x8e\xcd\xcf\x51\x26\x2b\x60\xc1\x5d\x11\x65\x4b\x7c\x7f\xb0\xeb\x73\x4a\xd8\x63\x9a\x18\xc5\xa6\x08\x1e\xc5\x4b\x15\x13\x37\x09\xf3\xe8\xfc\x22\x6c\xa2\xf5\x3e\x18\x3f\x68\x00\xcf\xe0\xae\xd9\xd8\x48\x36\x36\x7c\xc8\x55\x6f\x1a\x1d\xe7\x51\xa2\x7c\x3e\xf3\x60\x24\x3e\x0a\x73\xbd\xdb\x49\x7d\x7a\xb9\x20\x95\x17\x2d\x1b\x75\xa7\xb2\xf2\x27\xc1\x51\xa3\x1e\x2d\x47\x81\x99\xeb\x50\x5c\x47\x38\x71\x93\x28\x87\x56\x1d\x6d\x6e\x2e\xbe\xaf\x8f\x82\x64\x63\x23\x39\x5f\x5c\x6c\xf3\xa6\xf0\x83\x23\xa8\xd0\x7c\xb5\x4c\xf0\x9e\x03\xb4\xd1\xb1\xd7\xf2\x28\x8a\x28\x11\xf4\xe9\x3d\x81\xf9\x0c\x79\x86\xa3\x27\xe7\x3a\x0f\x36\x36\xba\xbe\xe1\x56\x49\xa1\x5b\x04\x0c\x89\x58\x91\xba\xd8\x85\x53\x76\x69\x33\x0b\xa7\xcc\x22\x58\x45\x94\x63\x85\xea\x14\x13\x15\x1f\xd7\x6a\x0a\xf5\x06\x5d\xcc\x79\x7c\x1b\xd5\x34\x2e\x67\x70\xb7\xc4\x77\x71\xce\xb2\xe4\x4b\x47\x14\x18\xf3\x0c\x99\x2b\x35\xb7\xfa\x40\x85\xb6\x4b\x7c\x60\x82\xd5\xf5\x8f\x8a\xb6\xb4\x95\x8f\x98\x6d\xf5\x9d\x67\xcc\x72\xbc\x8a\x24\x6a\xc4\xf6\x07\x61\x1f\xe2\x13\xe1\x77\xf7\xf7\xcd\xfd\x7d\xe5\xa7\xc1\x32\x9c\x11\x3d\x83\x37\x85\xb5\x90\xcb\x2e\xcb\xb7\x5a\xf1\x3e\x8b\xee\x3b\x3c\x1b\x5c\x67\x75\xce\x22\x6f\xcc\xcb\xeb\x8a\x71\x2f\x2c\xb7\xe5\xcf\x68\xbd\x17\x96\xdb\xac\xb8\x12\x0b\x72\xb9\x1d\xf3\xe9\x95\x60\xf4\x72\x5b\x1a\x42\xd1\x45\x4d\x59\x45\x11\xa9\x2c\xa2\xb1\xc0\x4d\x53\xa5\x13\x42\xba\x14\x5b\x2b\xf8\x31\x99\xc0\xff\x68\x1b\xb0\x70\xf4\xc3\x39\x5a\x9b\x04\x30\x9b\x67\x35\xfc\x90\x8f\x58\x59\xdf\x48\xd8\x9b\x22\xb1\xcb\xca\x75\x11\xed\x65\x5e\x6c\xfa\x4a\xd8\x5c\x66\xc5\xd4\x79\xe9\xd5\x11\xb2\x0b\x5e\x26\xac\xaa\x14\xf2\x5a\x86\x62\x56\x1b\x87\x3d\x20\x60\x72\x9d\xb6\x57\x12\xef\x3b\x0f\xf2\x66\x69\xc6\xbf\xad\x12\x40\x5d\x51\x45\x33\x8f\xab\x2f\x1d\xcb\x55\xef\xb1\x55\x71\xf5\x43\x03\xf5\xf6\xe9\xaf\x2f\xce\x5e\xbc\xfe\x49\xfc\x7a\x7d\x76\xfa\xee\xf4\x44\xfd\x92\xc0\x5f\x5f\x9c\x01\xec\xc3\xeb\x57\x70\xca\x7e\x62\x3f\x4e\xe0\x48\x0a\xe7\x09\x02\xf7\xdc\xe6\x6e\x79\x24\xf5\xdb\xf5\x88\x05\xf6\xf3\x4d\x41\x36\xf1\xbf\x29\x3a\x20\x3c\xe3\x73\x67\xa9\xe8\x76\x28\x44\x6d\x4e\xb2\x35\xbf\x13\x56\x25\x3c\x5b\xd4\x25\x3f\x7e\x24\x1f\xaa\x18\x09\x45\x4f\xa0\xdc\xdf\xf3\xed\x8a\xd5\x2b\xc2\x2e\xa2\x0b\xfe\x08\x54\x06\x76\x5e\xe8\x90\xa9\x86\xc6\x2c\xac\x97\x7e\xe1\xf7\xe1\x72\x53\xe5\x17\x7e\x2f\x08\xc2\x0c\x7e\x0d\xc5\xcf\x38\x2a\xfc\xe1\x20\x38\x2a\xfc\x3d\x7a\xc3\xa6\xfa\x53\x8f\xf4\x27\x91\xd7\x14\x73\xb8\xcc\x92\x8a\x01\x37\xc3\xa5\x9c\x37\x3d\x76\x93\xc9\x4c\x39\xa8\xf9\x11\xc6\xb3\xf6\x58\x51\x33\xf0\xfe\x3a\x22\x63\xdf\x1c\xa1\xba\x86\xb9\xf2\x43\xc9\x22\x8b\x23\xc3\x38\x50\x2e\x7c\x8c\xd1\x94\xba\x6c\x92\xba\x53\x9c\x3e\xff\xcb\xed\x07\x1b\xc2\x42\x3e\xd9\x80\x5e\x5c\x61\x16\x15\xdb\x60\x2a\x06\x7b\xd8\x4f\xbc\x6c\x16\x61\x1c\x65\x1b\x1b\xeb\xd9\x76\x56\xbd\x12\x7d\xcd\x8a\xe9\x71\xbd\x0d\x0d\x1c\xd5\xf0\x58\x67\xcc\x75\x1c\x69\x99\x7e\x5f\xc7\x75\x53\xa9\x4b\x7c\x59\x71\x1c\x1f\xfb\x65\x94\x87\x4e\x7e\x13\x8c\xca\x68\x31\x2a\xa3\x7a\x5b\x12\xf2\x4d\x71\x7a\x93\xc1\x01\x9f\x4a\x8a\x7a\x8e\x93\x51\xae\x6c\x05\xe0\x2d\x5e\x37\xd5\xa8\x5c\x86\xf8\xda\xe3\xd3\x38\xcf\xc7\x71\xf2\x05\xab\xe3\xff\x93\x4f\xd7\xc7\x5d\x4f\xd7\xc7\x10\xfb\x65\x96\xe5\x2a\x14\x79\x5b\x5c\xdc\x39\x34\x85\x08\x34\x4b\xd1\x81\x29\xab\x4f\x18\xcf\xae\x58\x2a\x68\xc2\x9e\xf1\x72\x2e\xd8\x7c\xc5\xab\xb3\x6c\x3b\x2b\xe0\x41\x66\xa4\x5f\x14\x25\xc7\x8a\x1c\xf9\x12\x0b\x0d\x63\x88\x48\x5d\x16\xac\xa8\x4f\xb2\x14\x86\xac\xb5\x2e\xa1\xc1\x03\x47\xc1\x57\x57\xf6\xe9\xd0\x04\x6e\x39\xae\x99\xd1\xac\xcb\x4d\x9e\xab\x00\xd3\x68\xaf\x13\xcd\xb7\x9e\x79\x44\x33\x0c\xb6\xf3\xc8\xe0\x08\xbe\x28\xd6\xa3\xa8\xd9\xd8\x10\xff\x2d\x36\x36\xfc\x5a\xb0\x04\x85\xc1\x8b\x02\x9a\xdb\x83\x65\x47\xeb\xfb\x61\x6d\xb7\xf6\x97\x2c\xcf\x3f\x20\x3b\xb5\x3a\x8e\xf7\x6c\x5f\x13\xae\xf1\xe1\xe3\xa9\xd6\x57\xab\xd6\xeb\x71\x68\xd0\x26\x9d\xdb\xae\x11\x55\x9f\x67\x44\x75\x54\x44\x3c\x44\x19\xcb\x37\x36\x54\x7c\x2e\x63\x4f\xe1\x1b\x1b\x3e\x04\xc2\xbd\xc9\xea\xb0\x86\x88\xb8\x35\x98\xff\xb5\xed\x57\x4d\x8d\x63\xf5\x63\x54\x07\xe1\x9d\xc0\x1f\xb1\x50\xce\xb6\x50\xe6\x14\x4b\xd1\x66\x4a\x86\x76\x44\x60\x63\xc6\x80\xaa\xd7\xfb\x81\x6c\x5f\x54\x3f\x40\x0b\xe9\xce\x96\xe9\xd7\x50\x26\x59\x91\x9e\xbc\x79\xf5\x5a\xec\xf9\xc1\x84\x74\x54\x47\x51\xd4\x60\x58\x88\x05\xe3\x93\x92\xcf\x61\x8e\xfa\x45\xc8\xe4\x8b\xc5\x0a\x7c\x93\xd5\x7e\x11\xc8\x48\xab\x86\x7a\xd6\x54\x97\x56\x3c\xca\x22\x18\x16\x52\xbe\x7e\x52\xc3\xb4\xf0\x15\x97\x27\x4b\x18\x2e\x5a\x71\xe7\x39\x2d\x48\x37\x6b\xcc\x90\xe0\xf2\x19\xce\x04\x27\xaa\x2b\xea\x8e\x1f\xca\x24\xf2\x6f\x54\x87\xf8\x0a\x1c\xe5\x1b\x5f\xac\x2a\xe5\x71\xa6\x86\x2f\xc3\x2a\x8f\xc4\x5a\x76\xec\x93\x96\x94\x28\xd4\x7c\x16\x96\xca\x4e\x19\x4f\xd8\x7b\xb7\xab\xcd\x32\xa4\x8f\x67\x14\xf6\xd7\xf0\xd6\x96\x28\xa0\xd8\x2e\x8b\x33\xdd\xd2\xd3\x22\xf5\x59\x18\x3b\x5f\x76\x96\xbf\x78\xb0\x7c\x96\x42\xf1\x4b\x75\x0f\x4a\x0e\xed\x5f\x2c\x09\x9f\x76\x8e\x29\x67\x74\x88\x12\xdc\xe9\x5b\x83\x26\xa6\x0b\xef\x20\xf5\x51\xe1\x92\x54\x30\x1b\x7b\x88\x9e\x5a\x8a\xd8\xad\xad\xad\x22\x80\xac\x10\xa7\xa7\x45\x54\x39\x79\xed\x6f\x3b\x6b\xca\x1f\xaa\x41\x93\xe3\x51\xb2\x7e\x5b\x31\x42\xf2\xb5\x26\x32\x95\x61\x6a\xd6\xc3\x03\x5c\x04\x47\x05\x08\xa1\x30\x59\x94\xb2\x9f\xb7\x56\x57\xa8\x8e\x36\xd6\x99\x7c\xfa\x45\xa4\xda\x12\x2b\xea\x05\x60\x3d\x9d\x99\x94\xd9\x0e\xe2\x6a\x9e\x58\xef\xd1\xd7\x3e\xed\x86\xe9\x8f\x78\x70\x87\x97\x82\xc4\x9a\xd0\xa1\x1a\x30\x9f\x07\xea\xdc\xab\xa3\xd7\x16\xd1\xa2\xf5\x7e\x07\xa6\x68\xb3\xc3\x19\xad\xb8\xe1\x9d\x14\x28\xd4\x1d\x25\xb4\x33\xd7\x1b\x1b\xeb\x84\x7d\xe3\x34\x3d\x35\xfb\xab\x23\xb6\xb1\xb1\x6e\x8b\x0c\x1b\x41\x45\x29\xe9\xc8\xf2\x59\xbb\xd1\x4a\xf0\xd7\xd4\xa0\xd4\x1e\x7b\xb1\xcf\x1d\x3d\x88\xd0\x83\x31\xe3\xac\x48\x19\x5f\xf1\xc6\xaa\xb5\xd4\x0b\xad\x40\xe8\x28\x01\x89\x71\x73\x64\x86\x15\x3b\x00\x5e\x7a\x70\xc7\x80\xb3\x22\x74\xa5\xb9\xb6\xcc\xab\x6d\xcd\xdd\xf2\xc8\x58\xfd\xee\x96\xc6\xe0\x8f\xc7\xd8\x81\x7c\x58\xbc\x77\xc4\xbf\xcf\x68\xdc\x9e\x22\xca\xce\xf9\x45\x58\x13\x27\xbd\x1f\xa2\xde\xfd\xbd\x5f\xaa\x4d\x84\x71\xda\x5b\xfa\x75\x78\xee\xa9\x36\x79\x68\x55\x95\x2f\x71\xf2\xed\xac\x08\xf5\x6f\xaa\xa4\x1a\xa8\xb5\xc0\x19\x30\xae\x0b\x26\xcd\xec\xaf\x98\x85\x2c\x55\x0c\xf2\xb5\x35\xce\x06\x5e\xba\xb5\x9b\x05\xa2\x05\x63\xa9\x05\xb2\x2a\xd4\xf2\xcf\x05\xb1\x34\xec\xb2\xd6\x15\x01\x31\x35\x4a\xa7\xeb\x2c\x32\xcf\xa8\x3d\x95\xe4\xdb\x2e\x8b\xfc\x96\xba\x44\x9a\x87\xd6\xf2\xb2\x60\xf2\x4c\xdf\xcf\x42\x1e\x2c\x43\xbe\xf4\x49\x09\x4a\xa1\x23\x1b\xb4\xd4\x0f\xee\x96\x13\xb5\x44\x9f\xdd\x2e\x58\x15\xb5\x94\x6b\xbe\x8d\xcf\x47\x2d\xc3\x09\x72\xd6\xd3\x07\xd1\xe9\x8d\x5b\xf1\x89\x60\x4b\x89\x2a\x92\xb2\x39\xa8\x95\xdf\x65\xc5\x68\xbd\x1f\xd2\x71\x17\x69\x6b\xc4\x05\x40\xea\x00\xeb\x7d\xa9\xba\xad\xf7\x42\x50\xe5\xd6\x7b\xa1\x1c\x8b\x51\x1a\x9a\x91\x32\x09\x96\xe2\x6f\x81\xac\x7e\x68\x04\x18\x8d\x51\x2a\x5a\x65\xf6\x9a\xbd\x70\xa2\x36\x97\x7d\xf1\x53\xed\x25\x07\x2a\x71\x7a\x12\x0d\x25\x8e\x80\xef\xc8\xc0\xe4\x7e\x4f\x2c\xc8\x65\x7e\x3b\xc9\xf2\x3c\xf0\x27\xf4\xa9\xb8\xd9\x9f\x36\x6e\xc0\x5b\x12\x70\xce\xf3\x7e\x16\x2f\x58\x54\x2b\x0e\x96\x69\x6a\xc0\x38\xf2\x79\x04\x7b\xf3\x8d\x0d\x4e\x0a\x3a\x72\xbf\x01\x79\xd1\x2e\x1a\xb7\x39\x7f\xd1\xf8\x62\x19\x52\xaa\x0e\x13\x01\xd8\x05\xc0\x3e\xd0\x1f\xf4\xfe\x92\x69\x40\x7f\x92\xe8\xfd\x9f\x9f\xfc\xef\x7f\xe5\x21\x90\x96\x4a\x74\x54\x51\x15\xb9\x2f\x77\x59\x3b\x0b\x72\x40\xaa\xaf\x6f\x4a\xdb\x9a\x28\x65\x6d\x16\x57\xc5\x3f\xe4\xe1\x48\x56\x64\x75\x16\xe7\x59\xc5\xd2\xb5\xad\xb5\xaa\x59\x30\xee\x07\x16\x06\x1e\xa0\x9a\x93\x52\xf5\xf4\x97\xec\x18\x9c\x6f\x57\x36\xe5\xac\x33\x55\xb5\x04\xac\x7c\x6a\x19\x5e\xd4\x11\x1a\xc0\xe2\xdb\x0d\x26\x61\x19\xf9\xab\x6c\x26\xc1\xf6\x2c\x2e\xd2\x9c\xe1\xbc\x44\xaf\x99\xdc\xcf\xe1\x6e\x9e\xb1\x88\x48\xab\x05\x45\x1d\x95\x21\x3c\x96\xf4\x0e\x96\xd2\xd1\x7a\x6f\xf9\x3f\x6b\xb6\xc8\xba\xcc\x16\xd9\x5f\x30\x5b\xdc\x91\x3d\xd0\x3a\x31\x1a\xb0\x74\xb9\x5c\x86\xd9\x37\x58\x1e\x14\xbe\x0e\x14\x28\xed\x67\x91\x20\x42\xf6\x6d\x9b\x78\xfd\x49\xff\x4f\x58\x50\x94\xf3\x34\x51\x35\x6a\x6b\xfc\x94\xf7\xab\x42\x18\xd5\xdb\x64\x90\x8e\x41\x5c\x4e\x59\xfd\x02\xf9\x18\x08\xf7\x2a\x5e\x2c\xb2\x62\x1a\xc0\x0a\x38\x52\x18\xa0\xf8\x39\xd9\xf0\xa6\x8f\x35\xe6\x7d\x20\x18\x6d\x40\x67\x83\x55\xa1\x76\x81\x44\xff\x53\xcd\x0d\x8e\x98\x98\x00\x20\x0b\xee\xef\xe5\xa3\xd0\x66\xb7\x00\x77\xda\xec\xfd\x43\x1d\x58\x23\xe0\x6e\xb9\x3b\x8e\x75\x13\xff\x6e\x19\xd6\xa4\x4a\xf5\x86\x01\x6a\x0c\xc5\x39\x34\xe1\x22\x34\x34\x2c\x96\xf0\x84\x64\x98\x3d\xac\x36\xa2\x26\x58\xcb\xd7\xd4\x80\x01\x64\x8c\xc6\x2c\x4f\x9f\xc5\x82\xb1\x6f\xff\xb7\xe8\x86\x4c\xe8\x86\xaa\x95\x5e\xe8\xd1\x36\x7a\x17\x62\x09\x69\x68\x68\x4c\x4d\x2c\x10\x4b\x2d\x9a\x7d\x9b\x5a\x28\xbd\x53\xea\xe3\x6c\x44\xf4\x27\x90\x0a\x4a\x81\xaa\x43\x1e\x66\x0f\xa8\x50\x8b\x6f\x51\x85\xf4\xbb\xb1\x52\x83\xda\xce\xaa\x77\x32\x1e\xd7\x32\x5c\xd8\x9a\xd1\xc2\xd1\x8c\x34\x4d\x46\x5e\x9a\x5d\x79\x21\xa5\xcb\xa8\xd3\xf1\x7d\x29\xad\xd7\x7e\x2f\xcc\x88\x26\xb2\xa0\x9a\xc8\xe4\xdb\x1e\xad\x95\x9b\x2b\x7f\x6f\x0f\x42\x41\x67\xc5\xa2\x41\x65\x6b\xa1\x1c\x7e\xcb\x45\x3d\x85\x3e\xc2\xfb\xa4\x39\x4b\x20\x7f\xdc\xd4\x35\xe6\xa7\x71\x2d\x56\x27\x80\x0a\x0a\x41\xb8\x75\x10\x4a\x82\x4c\x23\xf1\x0f\x44\x16\xfc\x4d\x21\xa7\x9e\x8d\xee\x00\xb0\x14\x90\xbb\x7a\xc6\xe2\xb4\x85\x04\x6f\x3b\xde\xa9\xac\x3c\x2b\xbe\x40\x0b\xe0\xd4\x03\x10\xf2\x6c\x74\x97\x67\xf0\x73\x31\xba\x5b\xc0\x8f\x59\x5f\xff\x1a\xe8\x5f\x43\xfd\x6b\x47\xff\xda\xd5\xbf\xf6\xd4\x2f\xd9\xb9\x32\x44\x22\x94\x61\xd9\xd4\xf8\x43\x76\xb6\x34\x7d\x2d\x4d\x57\x4b\x45\xab\x3b\x4d\xb3\xa5\x21\xda\x1d\x21\xdf\x72\x19\xc6\xd1\x9d\x5e\x63\xf0\xe1\x4a\x49\xae\x70\x1c\x57\x4c\xfd\x3f\x29\x0b\x24\x32\xc7\x07\xb1\x72\xfc\x6f\x3e\x8f\x0b\x20\x06\x9b\x8f\xa5\x57\x35\x8f\xe7\xf0\xd5\x0c\x30\xb3\xf9\x14\xfe\x53\x83\x98\x55\x30\x31\xc5\xcf\x2f\xec\x76\xca\x0a\x4a\xc9\x39\xab\xa1\xe2\x45\xcc\xe3\x39\x90\xb6\x6c\x78\x02\xa5\xd5\x3c\x4e\x00\xe7\x7a\x8c\x8b\x6c\xd5\x6a\xf6\x3c\xc6\xc1\xaa\xae\xa6\x80\x91\xb4\x31\x32\xa8\xa5\x84\xbf\x50\xf3\xbc\x82\xbf\x82\x72\xe2\x87\x07\x1e\x60\xe0\x62\xbb\x75\x33\xcf\x3d\xe8\x50\xc9\x59\x36\x2d\x50\xfc\x00\x77\xb1\x2a\x81\x26\x65\x35\x3e\x01\x16\xe6\xd1\x77\x9f\xaa\xfb\x4f\xdf\x7d\x67\xf4\x8e\x86\x1c\x96\x7f\x56\x2e\xb7\x35\xf8\x93\x22\x2c\x19\x57\x11\x23\xe9\x3a\x9e\x42\x58\x3e\x15\x18\xf5\x33\xba\x92\x77\xc1\xf0\x91\x7e\x07\xa8\x4e\x68\x00\x54\xd5\x71\xf2\x05\x42\x31\x42\x52\x76\x41\xe9\x06\x0a\x0e\xf7\x15\x21\xdc\x77\x24\x17\x70\x26\xc3\x7f\xd3\xb2\x72\x75\xfd\xfe\x2c\x9e\x82\xe6\x1e\x79\x14\x54\x79\x99\x34\xe4\xa8\x6e\x1e\xaf\xaf\x5b\xe9\x6d\x0b\x7d\xe4\x64\xde\xcc\xf3\x57\x65\xca\xdc\xca\xb4\xc7\xb7\x5b\xa5\x9d\xf1\x27\x2a\xb7\x3f\x7c\xb8\x19\x0a\x7a\x56\x7e\x61\x45\xf6\x95\xc1\x43\x76\xd1\x8a\xbc\x40\x8d\xa0\x02\x80\x7f\x03\xf7\x2d\x74\xc0\x09\xcc\xd8\x6f\x97\x05\x5c\xe3\xe7\x42\x97\x96\xcb\x75\x0b\x2e\x1d\x3d\x0b\x7f\xa7\x1f\xf8\x4d\x28\xb6\x31\x87\xc1\x36\x38\x8b\x9e\xce\xb3\xba\x16\x75\x37\x44\x77\xfc\x8c\xc7\x08\xea\xd9\x52\x4b\x33\x56\xcb\x0e\x1d\xe6\x63\xa7\xe1\xdb\x9f\x2b\x06\x1f\xc0\xeb\xa4\xdf\x47\xec\xb8\xc5\x27\x23\x17\xf2\x60\x11\x5b\xac\x1b\x5f\x35\x60\xb3\xef\xf0\x9d\x5b\xda\x94\xd5\x4f\xa4\xe7\x3e\xc6\xa5\x0f\x96\x56\x8f\x5d\x6d\x97\xa9\x29\x67\x53\xc2\xef\x07\x76\x45\x5b\x5b\xd6\x50\x88\x42\xec\x41\x10\x10\x9f\xb5\x6a\x2b\x17\xac\x50\x33\xd5\x39\xba\x5f\x31\x5b\xe0\xc4\x86\xd9\x61\x2c\x02\x67\xce\xb3\xb0\x9b\x1b\x37\x36\x98\xd0\x01\x33\x7d\xd2\x5f\x1f\xf9\xd2\xde\x86\x53\xfc\x9c\xfc\x36\x61\xf1\x02\xf1\xcd\x39\xbb\xc0\xf3\xb9\xb2\x48\xf2\xb2\x62\x75\x3c\x85\x77\x9a\x1e\xac\x29\x56\x81\x73\x65\x91\xe0\x3b\xc3\x82\x10\x32\xab\xe3\x2e\x69\x82\x38\xeb\xbd\x60\x04\x48\x89\x22\x63\x27\x56\x3f\xb0\xa7\x00\x21\xa7\x4d\x7e\x92\xa1\x4f\x02\xec\x2c\x65\xf2\xd6\xe2\xef\x6e\xb9\x6a\xb4\x58\x91\xb6\xf6\x1d\xab\x18\x44\x15\xa7\x8b\x77\x2a\xed\x00\xfa\xd6\x60\xda\xc5\x04\x1d\x32\x3a\x58\x39\xda\xb4\x70\x35\x68\x0a\x2a\x8b\x87\x51\xea\xc6\xb4\xdb\xe1\xf2\x98\xe7\xb9\xd4\x51\xdf\x75\x33\xf2\x2a\xfa\x7c\x23\x83\xfb\xc8\x32\xf7\xf7\xc8\x15\xc1\x2a\xb6\x28\x17\xbe\xa6\x07\x65\x63\xf9\x61\xac\x8c\xeb\x2e\xb1\x82\x4e\xe8\xfd\xbd\x37\xe6\x32\x7a\xb0\xb7\x80\x1f\x8a\xa3\x57\xf1\x94\x20\xc2\xd3\x86\x73\x56\xd4\x67\xf1\xd4\x0f\xc8\x6b\x5b\xd6\x54\xdb\xce\xe3\x0a\x45\x18\x84\x94\xc2\x37\x8e\xe0\x04\x56\x93\xcc\x1e\x0e\x98\xb4\x4e\x11\x38\x43\xeb\xa3\x7a\x6b\xeb\x28\x78\x60\x0c\xe5\xec\x13\xc4\xc1\xf6\xac\xb5\x8b\x89\x6a\xc8\xd1\xdd\x5c\x41\x90\x3f\xd9\xfb\xa5\xcb\x25\x15\xcb\x27\x02\x2d\x2b\xa6\x16\xaf\x38\xba\x8d\xa9\xd0\x06\x73\x96\x94\x53\x21\xcb\xdf\xb3\x7c\xf2\x14\xcb\x51\x38\x36\x2f\x9c\x77\x32\x88\x16\x6a\xc7\x2b\x5a\x3c\xb2\xfb\xc7\x8a\xd4\x5d\x23\xdc\x6f\x56\xec\x5b\xd5\x4c\x39\xea\x28\x30\x7c\x54\xe6\xca\xc3\xf9\x87\x66\xb0\x33\xd2\xcc\x2a\x55\x0e\xb6\x4b\x7d\xa2\x04\xb6\xd7\xb8\x15\xaa\xcd\x43\x2b\x0e\x29\x8f\x75\xd7\x25\xf6\x13\x1d\x75\x11\xcd\x73\x73\xd5\xa7\x9d\x72\x16\x7b\xad\xef\x45\xda\xc4\xd0\x60\xdf\x6d\x5e\x5b\xe1\x6d\x09\xe8\xf5\x6f\xb2\x92\x5a\x1f\xb5\xa8\x10\xb8\xcb\xc8\xb9\x8b\x71\x11\x3d\xd2\x92\x87\x34\x74\x87\x11\xc1\xe4\x84\xd6\xbd\xac\x2c\x5e\xbb\xa3\xaa\x62\x33\xc8\xd0\xc4\x79\x10\x16\x51\xfd\x7d\x0f\xdf\xf5\x69\xc6\x55\xcd\xfd\x5e\x58\x07\xd6\xe9\x69\xa7\x3c\x2e\xa2\xc2\x1d\xfe\xc2\x1d\xb2\x94\x25\x79\x8c\xb7\x1f\xbb\x17\x00\xa9\x8c\xa2\x5f\x65\x56\x4c\x33\xd3\xf2\xc0\x12\x8f\xed\x5e\x81\x23\xf2\x63\x85\xf8\xde\xba\xb7\x59\x87\xe2\x2f\x6b\x8b\x9d\xce\x4f\xfe\xdf\x6a\xe8\x31\x34\xf4\xb8\xb3\xa1\x62\x0f\xcc\x8a\x6f\x50\x41\x77\x6c\x35\x46\x7e\xe7\x08\x07\x04\xba\x2a\x8f\x04\xb3\x22\xed\x44\xef\x90\x79\x65\x91\xac\x98\xc8\xab\xd6\xf5\x6f\x95\xe3\x4f\x4f\x9e\x9c\x3d\x39\xb6\x05\x9d\xa8\x0a\x54\x7c\xa7\x79\x1a\xee\x07\xdf\xa6\x6e\x87\xad\xcf\xdb\x7d\x96\x50\x3f\xd0\xa2\x5f\x51\xcd\x3b\x87\xc6\x9d\x7b\x9b\x6c\xd3\xbb\xb8\xf0\x5a\x34\x61\x9c\x97\xae\x1f\xb1\x29\x19\x72\xed\xca\x00\xd4\xb1\x0d\x70\x24\xdd\x43\x1a\x00\x5d\x61\xe8\x9a\x71\xc4\x7e\xe8\x1d\x3d\xa6\x02\x9c\x6f\x6d\xb1\x8b\xc0\xe6\xd1\x16\x45\x3a\x86\x9f\xb3\x8a\xb5\x6d\xed\x12\x1f\x32\xed\x22\x00\xe4\xb7\x36\xb2\xdb\x0e\xfc\xdb\x4d\x14\x0f\x59\x23\xfe\xe4\xee\xd7\xea\x18\xe4\x3e\x2d\xe7\x8b\x9c\xd5\x1d\x4b\xa2\xd5\x5e\x41\x17\x77\xe8\xae\x79\xd6\xf5\x1d\xe9\x32\x60\xb4\xbe\xb3\x06\xbc\xe3\xab\xae\xba\x16\x71\x53\xb1\xf6\x20\x98\x8f\x00\xa1\x63\xe8\x9a\xf9\x83\x9f\x21\x86\xfb\x1d\x52\x66\xd6\x14\x5f\xa2\x56\x87\x2d\xc4\xb4\x2c\x58\xe4\xf4\x8d\x18\x66\x9b\xb6\x41\xd6\x64\xce\x55\xec\xcb\xc2\xef\x0f\x76\x82\xb0\x84\x1f\x7b\x78\xd6\xda\x1f\xec\xab\xc3\xd6\x83\x20\xac\xa2\x5e\x98\x44\xd5\xe6\x66\x98\xc3\xdf\x06\xfe\x2e\xe0\xef\x04\xfe\xa6\xf0\x77\x06\x7f\xc7\xf0\x77\x0e\x7f\x5f\xc1\xdf\x29\xfc\xbd\x82\xbf\xb7\xf0\xf7\x09\xfc\xbd\x86\xbf\x5f\xe1\xef\x67\xf8\xfb\x06\xfe\x9e\xc1\xdf\x1b\xf8\xfb\x1a\xfe\xbe\x84\xbf\xa7\xf0\xf7\x3d\xfc\xbd\x84\xbf\x4f\xe1\xef\x17\xf8\xfb\x0b\xfc\x3d\x81\xbf\x3f\xc2\xdf\xb7\xf0\xf7\x1d\xfc\xfd\x15\xfe\xfe\x01\x7f\x5f\xc0\xdf\x0f\xf0\xf7\x39\xfc\x7d\x06\x7f\x3f\xc2\xdf\xdf\xe0\xef\x4f\xf0\xf7\x5f\xf0\xf7\xdf\xf0\xf7\xef\xf0\xf7\x67\xf8\xfb\x3b\xfc\x65\x0c\xfe\xab\xf1\xbf\x02\xff\xe3\xf8\x5f\x89\xff\x65\xf8\x5f\x8c\xff\x55\xf8\x5f\x82\xff\xe5\x2c\xea\x85\x0d\x8b\x72\x26\xa8\x29\xff\x9f\xe0\xff\xc4\xb5\x82\x91\xd0\x40\x6b\x1e\x5e\x86\xf5\x3e\x15\xfa\x57\xad\x7f\x4d\xf4\x2f\x78\x83\x96\x91\xfb\x3e\xcc\xb6\xc8\x3b\x2a\xa5\xf1\x98\x8d\x22\x7e\x6c\xdd\x25\x07\x88\x9e\xfb\x35\x8b\xea\x91\x4f\x93\xf2\xba\xff\xe7\x0c\x4d\x31\xc1\xd2\x9c\x29\x94\xc1\x5d\x29\x3e\xbf\xbf\x2f\x21\x90\xda\x9f\x29\x85\x5c\x41\x62\x76\xa0\x9f\xce\x86\x53\x5f\x33\x8e\x4f\x0f\xf3\xc7\xea\x6c\x56\xd7\x39\x67\xd4\xe4\x8b\xe8\x89\x44\x1f\x37\x93\x09\xe3\x46\x48\x52\x1b\x99\xb2\xbd\x62\x99\x3a\x85\x9f\xe0\x33\x13\x06\x18\x57\xec\xbd\x55\x72\xb5\x60\x49\x16\xe7\x51\xc3\x88\x5d\x59\x46\x5b\xf8\xcc\x9b\xa2\xc8\x8a\xa9\x3e\x9f\xfd\xcc\x8a\x54\x3e\xbd\x03\x49\xb9\xd6\x47\xeb\xea\x69\x73\xb5\xb9\x96\xf9\x29\x4b\xca\x94\x9d\x16\x75\x56\x67\xac\x32\x68\x36\x3c\x58\xce\x19\xd5\x72\xa1\xeb\x67\xae\x59\xce\xfb\x1e\x23\xe3\xf9\xa4\xb3\x3f\xb4\xa9\xd1\xa1\x16\x68\xe5\xed\x3d\x93\x22\x91\xec\x9c\x6a\x16\xe5\x5d\x44\x25\xb5\x48\x3d\xc1\xe9\x8d\xaa\x48\x11\x30\x8a\x1a\xb6\xb1\xe1\x6d\x78\xd6\x4e\xee\xbf\xa5\x99\x1d\xa3\x06\xa9\x92\x3d\xd6\xf2\x65\xd8\x41\xda\x1f\xe1\x49\x1c\xa9\xee\xdb\x34\xfe\xce\x6b\x31\xf0\x64\xe4\x50\xfe\xdb\x28\xbb\x92\x96\xde\x0f\x52\x60\x58\xe4\x5b\x17\xe4\xbb\xbf\x07\xb9\x63\x55\x9f\x8c\xbc\x75\xab\x7a\x04\x5f\x3f\x52\xcf\x66\x3f\x18\x79\xc7\x1d\x1f\x7e\xfe\x86\x0f\xad\x0f\x2c\x4e\xbf\xbf\xf7\x2a\x65\x1e\x7a\x0f\x3f\x8e\x9b\xd1\xdb\xbf\x34\x0a\x2f\x8a\xae\x11\xf0\xe5\x10\xdc\xdf\x6b\x3a\x01\x4d\xcc\x3e\x93\xcd\xb3\x1a\x8e\x0e\x7c\xcf\x32\xca\x78\x36\x53\x8f\x5d\x41\xb3\x9a\x13\x9e\x0a\xc5\x31\x2b\xa6\x5d\xed\x81\xca\xef\xef\x7d\xd9\x1a\x67\x68\xda\x43\x78\xec\x55\xaa\xfd\xef\xdb\x5f\xbc\xb3\x49\x9b\x38\x6d\xb4\x73\xd3\xc7\xc8\xba\x8a\xae\x0f\xf5\xc7\xff\x26\xb2\x2a\x55\xda\xa1\xe9\xec\x5b\x68\xfa\x64\x52\x33\xfe\x50\x13\x64\x0b\x74\xcd\x36\x2d\x1e\xe0\xcb\x07\x86\xd0\x32\xe0\x74\xd5\x76\xdc\x65\x8d\x76\x4c\x53\xdf\xd6\x8a\x51\x97\x90\x58\x8c\x14\xa3\x50\xe8\xfc\x2f\x4e\x0c\x62\xea\x3b\x73\xcc\xcb\x9d\xdd\xb1\x4d\x8c\x7f\xa1\x4b\x5d\x8d\xff\xa6\x09\xf4\xa2\x58\x4d\x79\xdf\x8b\xd4\x54\x78\x6c\x4e\x53\x63\x56\xa1\x5f\xfb\x7b\x5c\xb0\x6e\xf5\xad\xae\xbe\xfa\x66\xfe\x7c\x80\x5f\xa2\xf6\xe8\x4e\x47\x6e\x0f\x8e\x3b\x1a\xde\xe6\x26\x97\x84\x0e\x9d\x1f\xfe\xf8\xaf\x31\x8f\x33\x1d\x3e\x82\x1d\x8d\xf6\xef\x1f\xde\x3f\xda\x8b\xc2\xd5\xb7\xb0\xfd\x3f\x3a\x56\x93\xdb\xbf\xc8\x5c\x4f\x1e\xf9\xee\x4f\xf2\x1e\x74\xf3\xa4\x6c\xc6\x39\xfb\x77\x53\xd6\xac\x7a\xa8\xcb\x96\xa4\x33\x36\x5b\xcf\x36\x9e\xac\x1c\xd3\x55\xda\x90\xab\xf9\x3c\x56\x8d\x51\x6a\x48\xf1\xff\x1d\xea\x8d\x4b\x97\xf7\x59\x31\xed\xa4\x8b\x33\xa2\xff\x5f\xa3\xcb\xeb\xb2\x83\x26\x92\x59\x9d\x69\xfe\x5f\x24\x8d\x2b\x06\xfe\x97\x13\x0a\x65\xc8\xc9\x0a\xfb\x36\xad\xc0\x3b\x47\x32\xbd\x1c\xc9\x37\xc3\x8e\xdf\x8c\xbe\xae\x20\xfe\xaa\xf2\x5c\x75\x00\x69\x49\xac\xeb\x8f\xee\x5f\xfe\xaa\xea\xf0\xa2\x78\xab\xcd\xd5\x2f\x56\x18\xc9\xbb\x5b\xd7\x6d\xe6\xfe\x9f\x6a\xa7\xd4\x52\x3b\xec\xe4\x8a\xea\x96\x6c\x3d\xfb\x06\x99\x4c\xf1\x57\x0d\xd8\x03\x15\x3a\xba\xdb\x0a\x3e\x42\x4d\x10\x4b\xe9\xaf\xe6\x21\xd9\x87\xd7\xa3\xb3\x47\x4b\x19\x3c\xae\x0b\x29\x5b\xb6\x9c\x23\x60\x04\x90\x87\x3f\x59\xa1\x6d\xc3\x84\x34\xd6\xe4\x1c\xfc\xf9\x21\x13\xac\xbf\xde\xa6\xc9\xd9\x83\x63\x29\x26\x72\x3f\x9a\x31\xdf\x7b\xea\x85\xa7\xe1\xd7\xe0\x11\xdc\x01\xe0\x9e\x78\xe1\xfb\xc7\x71\x87\x80\xfb\xc4\x0b\x2f\x1f\xc7\xdd\x01\xdc\x33\x2f\x7c\xfa\x38\xee\xae\x2a\xf7\xcb\xe3\xb8\x7b\xf6\x40\x9d\x77\xb0\xe9\x2f\x7f\x76\x23\xfa\xf5\xdb\x94\x82\xa7\xad\x73\x1b\xef\xa2\x8b\x69\x4f\x1e\x62\x5a\x1c\x9f\x95\x2c\x8b\x05\x1e\xff\x38\xfa\xe5\x91\x32\xbe\x85\x61\x05\xde\xff\x93\xec\x7a\xd1\xc5\xae\xbf\x3c\xc4\xae\xef\xa5\x89\xc7\xea\x4b\xa2\x34\xe2\xa7\x6d\x85\xf9\xd7\x91\xa7\x0d\xa4\x67\xed\xec\x7f\x3f\x62\x13\x7c\xb4\x25\xa7\x9d\xa7\x09\x66\x1f\xbe\x10\x15\x27\xca\x50\xf1\x14\x0d\x15\x2e\xd2\x44\x20\xd5\x0a\xe9\xcc\x42\xb2\xf7\xf7\x90\x62\xcc\x4a\x3e\x7b\xa8\x95\xe0\xd0\xdc\x8f\xc6\xcc\xf7\xde\x79\xe1\x1f\x0f\xcc\x16\x44\x1d\x00\xea\x0b\x2f\x7c\xf1\x28\xea\x10\x50\xdf\x7a\xe1\x87\x47\x51\x77\x00\xf5\xcc\x0b\x9f\x3f\x8a\xba\xfb\x27\x8d\x30\xca\xe8\xb7\x60\x36\x03\x3a\x43\xb9\x7a\x76\x28\x12\xcd\x90\x44\x1f\xc3\xa4\xb3\x8d\x04\x17\x45\xe0\x0b\x2f\xfc\xed\x71\x5c\x14\x81\x6f\xbd\xf0\xa7\xc7\x71\xb5\x08\xfc\xd7\xe3\xb8\xbb\x5d\xd3\x59\x59\xed\x1c\xd2\x34\xb6\x2e\xf6\x98\x35\x67\x6b\xaf\x5b\x4b\x94\xac\xf8\x10\xb7\xd5\xb7\x39\x43\x66\xfb\xcd\x0b\xff\xfe\xd0\x58\x0b\x4c\xe4\xb5\x97\x5e\xf8\xf3\x63\x98\xc8\x6a\xa7\x5e\xf8\xfb\x63\x98\x3b\x7f\x91\x7d\x26\x7f\x99\x7d\xb0\xcf\x33\xec\x73\xcd\x1e\x1c\x3a\xec\xf5\x0c\x7b\x5d\x3c\x8e\x8b\xdc\x73\xea\x85\xfc\x71\xdc\x9d\xff\x41\x8e\xd8\xfd\xab\x1c\x01\x7b\x8a\x5b\xe8\xc5\xdf\xbc\x30\x63\x61\xcc\x1e\x18\xc1\xd7\xcd\x9c\xf1\x2c\x21\x1f\xfd\xea\x85\x09\x0b\xab\xd6\x47\x70\x44\xfa\x3a\x9e\xb3\x14\x91\xdf\xc3\x0d\xd3\xce\x83\x7c\xda\xa9\xcd\xfe\xf7\x74\xcf\x61\xf9\x8c\x7d\xc3\x8a\xa7\x7c\x9c\xe5\xe7\x61\x6d\x9b\xa4\x8f\xe3\x51\x79\x54\x3b\xae\x4b\x3e\xb3\x2d\x9b\x6f\x63\x5e\x67\x71\xee\xd7\xe7\xec\xe2\x31\x13\xbd\x50\xc3\x5d\xe2\x42\xcf\x5f\xb2\x69\x9c\xdc\x4a\x3a\xad\xf0\x81\x73\x1b\x6e\x0d\x28\x83\x4b\x57\xf5\x0f\x7b\x10\xdd\x67\x2f\x38\xaa\x7f\x88\x06\x47\x56\x78\x20\x9b\x20\x70\x20\x76\x94\x4d\xfc\xcc\xed\x5f\xa1\x9f\xa4\x69\x77\x32\x3b\x2f\x2e\x82\xf0\xaa\xcc\xd2\x2e\x6a\x46\xf5\x66\x3f\x38\xaa\xb7\xb6\x5a\x9d\x94\x0a\x14\x19\x60\x9b\xb9\x8f\x2c\xed\xa5\x9b\x19\xfc\x2e\xea\xda\x0c\xa0\x3d\x52\x1d\xb7\xdd\x16\x8d\x9d\x6d\xb4\xb3\xeb\x0d\x46\x3e\xfb\xde\x8b\xbd\xfb\x7b\xf6\x83\xf7\xd5\x83\x9b\xbc\xdf\x7b\x4f\x30\xfd\xbb\x4a\xf7\x30\x7d\xe8\x19\x7e\x70\x1c\x74\xec\x86\x2a\x0f\x7f\x6c\xaa\xb6\x5a\xe9\x5a\xd7\xa3\x28\x39\xf6\x22\xa9\x35\x3c\x4c\x89\xd1\xca\x7e\x3d\xd8\xb1\x47\xb4\x21\x34\x1b\xd8\x93\x76\x55\xd4\x1f\xa7\x77\xf0\xb2\x5f\xb1\x6e\x75\x51\xbd\x72\xbd\x62\x3a\x16\xf6\xdc\xcb\xf0\xed\xc4\x17\x45\xed\x97\x82\x35\xdb\xcc\xc7\xe1\xc5\xae\x87\x67\xd8\x92\x7a\xe4\xd2\xdb\x0e\x5b\x47\x0f\xd0\x65\x15\xbb\xae\xa0\x44\x8b\x61\x3b\x08\xe7\x0f\xe0\xa9\xc7\x0e\x52\x6d\x22\x7b\xad\x66\x9f\xe3\x07\x5a\x3a\xfa\xb6\x0a\x1f\xd9\xc8\x3c\x67\x37\x7f\xad\x53\xc3\xb0\xbf\xf7\x50\xa7\xe4\x9c\x99\x38\x73\xe6\xd9\xe3\x73\xe6\x2f\x76\x9a\x36\x68\x55\xa7\x93\x9c\xc5\x45\xb3\x68\xfb\xed\x58\x37\x6a\x7a\xc7\xd6\x4e\xc9\x38\x04\xd0\xd3\xfe\xcd\x55\x96\xe4\xa8\xa7\xe6\xa4\x3c\xd8\x77\x36\x41\x62\x6e\x77\x88\x4c\x7b\xc2\xac\x3c\xb9\xb6\x25\x77\xbb\x18\x73\x9c\xfd\x5f\x6b\xbb\x35\xab\xac\xa6\xfd\x97\x89\x63\x7f\xff\x8d\xdd\xb2\x06\xb6\x43\xec\x3c\xd0\x88\xae\x72\x6c\xd7\x0e\x97\x4f\x56\xf9\x9f\x81\x63\x46\x97\xef\xa1\x0c\xc1\x20\xdd\xd2\x82\xb5\x58\xa8\x6e\x6b\x69\x59\xb0\x75\xcf\x19\x91\x4d\x15\x91\x17\x45\xb6\xdf\xe2\x51\x00\x5b\xaf\x9b\x94\xdc\x3f\x22\xdd\xff\xde\x22\x99\x0a\xa5\x6c\xb1\xdc\x51\xa7\xfe\x93\xcc\x62\xfe\xa4\xa6\x3e\x13\xc1\x91\xcb\x99\x24\x7d\x86\xde\x9e\x23\x1b\x25\xa7\x28\x96\x93\x43\x1b\xb7\xa1\xb8\xfa\x28\xbe\x8d\x37\x69\x97\xe9\x9c\xed\xb6\xbf\x49\xed\xb2\x1f\xc5\x9f\x51\xfc\xae\xe3\xe3\xf6\x27\x0b\xbb\x0a\xfb\xc0\xb4\x8d\x3e\x6e\xf7\xc2\x3a\x01\x6c\x7f\x31\xb7\x2b\x78\x04\xfb\x55\xab\x07\x8f\x7c\x30\x7d\xa0\x41\x70\x38\xd1\xfe\xe4\x6a\x45\x8b\x5a\x67\x5f\xed\x4f\x6f\x1f\xfa\x94\x1e\x0f\xb5\x3f\x7d\xf2\xd0\xa7\xea\x04\xa5\xfd\xd9\x75\xbb\x7f\xc4\xfe\xdf\xc6\xff\x6a\x57\xf3\x20\xee\x67\x1b\xb7\xd3\x86\xdf\xfe\xea\x4d\x07\x23\x6b\x67\x71\x07\xf7\xcc\x61\xe0\x55\x78\x37\x6d\xc6\x95\xd6\xee\x36\xee\xeb\x55\xb8\x83\x36\xee\xcb\x8e\xb6\x82\x45\xb2\x8d\x7a\xba\x02\xb5\xa3\xd4\xf7\x2b\x50\x87\x6d\xd4\xcb\x15\xa8\x3b\x6d\xd4\xa7\x2b\x50\x77\xdb\xa8\x5f\x56\xa0\xee\xb5\x51\x7f\x71\x46\x00\x6c\xa4\x2d\xac\x93\x36\x4d\x57\x90\xe9\xc7\x6e\xcc\x0e\x2a\xbd\x6d\x37\x52\x1a\x1d\xdb\xb8\xef\x56\xe2\x42\x94\x44\x17\xfd\xd7\x0e\x74\x34\x83\xb5\x71\xff\x58\x85\xdb\xd1\xe4\x17\xab\x70\x3b\x46\xf6\xc3\x2a\xdc\x8e\xa1\x7d\xbe\x0a\xb7\x63\x6c\x9f\xb5\x08\xbc\xb2\x6b\x1f\x57\xa0\x76\xf4\xec\xb7\x15\xa8\x1d\x1d\xfb\x69\x05\x6a\x47\xbf\xfe\xb5\x02\xb5\xa3\x5b\xff\xee\x20\x01\x98\x9e\xda\xa8\x7f\x5f\x81\xda\xd1\xad\x9f\x57\xa0\x76\x74\xeb\xf7\x15\xa8\x1d\xdd\x62\xac\xdd\xaf\x15\x6d\xad\x57\xa0\x76\xb4\xb5\x58\x81\xda\xd1\x56\xbe\x02\xb5\xa3\xad\x25\x6b\xf7\x4b\x6e\x16\x5a\xb8\x59\x07\xae\xbd\xbf\x68\x7d\x12\x33\x5b\x7e\x90\xcd\x79\x1b\xb9\x72\x91\x1f\x2e\x3b\x71\xd0\xf5\x36\xcd\xa0\x76\xe8\x9f\x4d\xf1\xa5\x28\xaf\x8b\x35\xfc\xca\xf6\xab\xb3\x34\xe8\xcd\xcd\xa5\x2c\x04\x37\x44\x2d\x2d\x74\xc5\xad\x08\xed\xaa\xdc\x77\xf0\x57\xdd\x87\x68\xf9\x36\x3f\xaa\xc1\x4a\xad\x38\xec\xd0\xb8\x27\x59\x91\x55\xb3\x56\x5b\xbb\x6f\x7d\x3c\xaa\xab\x83\x0b\x85\xab\xa9\x2b\x73\x8b\xba\x5f\x62\x7b\x64\xf7\x6c\x8f\xed\x47\xda\x25\xe1\x8f\x6c\x36\x09\x59\x54\x79\x18\xa2\xea\x8c\xc7\x59\x9e\x15\xd3\x13\xb1\x2a\xd9\x3e\x20\xf2\x2e\x91\x5d\x5b\xfb\xab\x55\xe6\xc3\x47\x37\x5b\xce\xae\xe0\x17\x6d\xc5\x52\x4b\xa2\x0b\x50\x2b\x1f\x3d\x6c\x6c\x2b\x3c\xee\x57\x37\x2e\xe0\xb5\x5d\x4c\xa7\x46\xb4\x2e\x26\x9e\xfa\xb0\xc3\x62\xb0\x2e\xe6\xda\xc3\xf9\xc9\x23\xf9\x8d\xf6\x3a\x97\x80\xb1\x0b\x98\xba\x80\x57\x2e\x60\xee\x02\x6e\x5d\xc0\x95\x0b\x78\xe2\x02\xd2\xce\xdb\x77\xa3\xbf\x60\x94\xb1\xb9\xac\xc3\xf3\xda\xb5\x0b\x76\xb1\x60\xf0\x60\xd5\xab\x8c\x5c\xff\xcd\x55\x3f\x60\xbf\xfd\xef\xaf\xb4\x2d\xe4\xec\xfb\x7a\x73\x1a\xa5\xf0\x4e\x32\xd3\xc8\x62\xad\xd0\x76\xc0\xea\xf4\xca\x22\xc1\x86\xdc\x2a\xdd\xc8\x2a\x5d\xcf\x78\x91\x39\x2d\x0d\x1f\xa4\xf7\xae\x94\x30\x8e\x43\x8f\x14\xf5\xcd\xfe\x01\x2d\x41\xa4\x5d\xca\xba\xef\x70\x9e\xb3\x8b\x6f\xf7\xbc\xed\x2a\x5b\x1a\x81\x3b\x4a\xb7\x0d\xe8\x74\xee\x18\xcf\x36\x77\x01\x55\x21\x64\x56\x47\x38\x1b\xee\x07\x61\x19\x7d\xf7\xa9\xda\xfc\x6e\x0a\x57\xe8\xf6\x0e\xe4\x0d\xba\xa1\x13\xae\x54\xc6\x45\xc5\x48\x6e\x24\x72\x2f\x3b\xf6\x8b\xa8\x0e\xeb\x88\x85\x18\x4c\x35\x18\x75\x05\xf8\xad\xe1\x52\xb8\xc0\x4b\xb4\xbc\x57\xe1\xb4\x9d\x98\x47\x51\x7d\x7f\xaf\xfc\x30\x18\xc6\xa3\x7b\xfa\xa3\xba\x6b\x95\x96\x73\x73\x8f\x13\x2e\x12\xea\xbb\x44\x75\x3c\x7d\x6f\xdf\xf3\xc4\x9b\x9c\x11\x4d\xdc\xdf\x43\xc0\x57\x7c\x70\xe5\xae\x28\xf9\x3c\xce\xb3\xaf\xec\x97\x59\x56\xb3\x6a\x11\x27\x6c\xb4\xde\x0f\xaf\xb3\x7a\xf6\x5e\x06\x0c\xca\x12\x56\x29\xd8\x29\xc4\xee\x91\x90\xe5\x51\x65\xdf\x17\xd7\xd7\x46\x3b\x46\x4f\xb6\x84\x2d\x43\xfb\xa3\xd6\xb4\xab\x68\x6c\x50\x8b\x4c\x36\x91\x5c\xfa\x04\x6e\xc9\x9d\xa1\x10\x04\xc1\xf4\x91\x0c\x52\xaf\x67\xd3\x8a\x5c\x9a\x45\xb9\x61\x82\x8e\x8b\xb1\x75\xaa\x71\x70\xa2\xea\x91\xcb\xce\xd9\xc4\xef\x64\x0e\xab\xa3\x81\x9d\x54\x41\xc8\xd3\x72\x2e\x23\x91\x64\x13\x5f\x05\x8b\x6d\x11\xb4\x1d\x52\xa6\x15\x62\xe3\xbd\x89\x76\x71\x64\xd1\x74\xdb\x1e\xe3\x8d\x0d\x78\xec\xc2\x0d\x0d\x85\x84\xd2\xd0\xc0\x1d\x09\xb5\xb0\x69\x00\x5c\xcb\xb5\xa8\x86\xb1\x16\x4f\xca\xb9\x0c\xb7\xe8\xd2\x68\xbd\xdd\xac\x93\x72\xfe\xf2\x2a\xef\x3b\xcf\x31\x1d\x59\x0f\x30\xd5\x91\x57\xc7\x53\x38\xdd\xd8\x16\x15\x1d\xdb\x01\x5f\xe3\x60\x64\x03\xb2\x20\x64\x81\x1b\xb3\xc2\x2f\xe0\xd0\xa2\x15\xab\xb2\x76\xfa\x10\xa7\xe9\x8a\x0e\xd0\x80\x07\x8a\xdc\xe7\x0e\xf5\x75\xd4\x92\xb0\x88\xea\x63\x13\x04\x74\xa4\x86\x3a\xe4\x51\x71\x5e\x18\xbc\x23\x06\xd1\xe3\x29\x7f\x52\xf2\xd0\xd9\x0a\x83\xd6\x8a\x0f\x26\x87\xcd\xc0\xdd\xb0\x03\xee\xe0\x7f\xc3\xc8\xf3\x63\x88\x8c\xca\xae\x22\x2e\x5f\x0f\x8a\x58\x30\x92\x20\x68\x69\x61\x02\x58\x6d\x2f\xe0\xb5\x6a\x21\xdd\x30\xe6\x74\xd5\x15\x29\xaa\xf3\x24\xf2\x4e\xe0\x8c\x3c\x0c\xf3\x88\xa7\x57\x7c\x1b\xb7\xdc\x23\x0f\x1e\x84\xd7\x40\x78\x6d\x9e\x6f\x9f\xc5\xd3\x10\x5f\x71\x0e\xe5\x75\xf8\x51\x1d\x6a\x22\xc3\xd3\x69\xb2\x53\x2e\x2f\xfa\x85\x9a\x15\xd6\x08\xfb\x65\x10\xba\x33\x48\xf4\xac\x6c\x09\x9e\x56\x38\x34\x19\x11\xd9\x09\x5e\xd7\x21\x7a\xdd\x88\x0f\xd9\xb4\x28\x39\xc9\x3f\x32\x53\xc3\x61\x24\x39\xe7\xd2\x72\xae\x01\x2a\xf0\x51\x5a\xce\xcf\x9d\xcc\xad\xfe\x45\x00\x13\x44\x6c\xb9\xb7\xcf\xd8\x4d\x1d\x14\xc7\xf5\x36\xb8\x3d\xfa\xf8\xff\x26\x0b\xb6\x39\x83\x77\x89\xfd\x32\xf4\xd6\xbc\x60\x24\x33\x22\xa6\x85\xd0\x8a\xa6\xf8\xdf\xcc\xfc\x01\x22\x6b\xee\x3f\x37\x3f\x2d\xa4\xfa\xbf\xda\x5a\x78\xc9\x82\x45\xcc\xc1\x52\x71\xf6\x57\x70\xc2\x9d\x28\x62\xc4\x42\xe0\x3e\xac\x7a\xd9\xcd\x1c\x99\xd0\x31\xaa\x47\xa3\x92\xfc\x29\xc9\x20\x46\xbb\xb6\xfa\x2e\xed\xbd\x81\xd3\x37\x39\x47\xec\xc6\x4a\xdc\xff\x4e\x3e\x6f\xf5\x50\x07\x17\x69\x2f\x36\x26\x66\xf1\x39\x36\xcc\xf3\x2c\x32\x5e\xe8\x76\x9e\x3c\x39\x7b\xb2\xd4\x6e\x2e\xad\x56\xb2\xee\x56\xd6\xdd\xad\xac\x5b\xb3\xd1\x04\x68\x89\x3a\x5a\xdf\xa9\x24\xd8\x4b\xa4\x5b\xe0\x63\x61\x71\x5c\xff\x89\x36\x57\x49\xb9\x04\x64\xa9\x15\x1d\x4e\x32\x2e\xb4\xe3\x2b\xb6\x82\xc3\x8a\x60\x49\x42\x44\x54\x9d\x6f\xf7\xd2\x77\x7b\xa7\xac\x5e\x83\x08\xd9\x10\xea\xda\x56\x02\xd4\xd8\x1c\x91\x00\xfc\xe7\xbd\x0b\x25\x97\xc5\xa7\x79\xfc\xed\x5f\x32\xc3\xb3\xb4\x88\xa2\x4c\xd9\xd9\xed\x82\x99\x2d\x48\x89\xbc\x2e\x7a\x7c\x71\x7f\x5f\x6e\x4b\x0d\x61\xb9\x0c\x79\x74\x57\xe3\x49\xdd\xc8\x83\xab\xb8\x28\xab\x5f\x97\x29\xab\x46\xe6\xed\x90\x10\x97\x10\x01\x1e\x79\xf8\xdb\x0b\xc5\x62\x93\x95\x4d\xf5\x3e\x1b\x8b\xfd\xdd\xc8\x13\x00\x2f\x14\xab\x91\x06\x89\x84\x17\x8a\x16\xc1\xb1\xd3\xc8\x83\x7b\x30\x62\x72\xdc\xc9\x46\x8c\xfa\x10\xbc\x77\x34\x0c\x81\x31\x46\x3b\xa1\xe4\x9c\xd1\xc1\xf2\x88\x06\xbe\xe6\x2b\x5e\xc5\xc6\xb9\xcd\xcf\xd9\xc5\x51\xf7\x33\x8b\x45\xc8\x42\x31\x2c\x1d\x8f\xca\x0b\xb2\x9c\xd7\x9a\x7a\x15\x45\x62\x2e\x96\xd8\x68\x2c\x97\xf8\x5a\x51\xf7\xb6\x46\xb3\xc1\xd1\xb9\xd8\xc8\x0c\x82\xb0\xf0\xfb\x3b\x3d\xfc\xaf\x8f\xff\x49\xe0\x10\xff\xdb\x09\x2e\xba\x7b\xe5\xbc\x05\xd0\xc6\xa9\x83\x3b\x0e\x8d\x3a\xaf\x2f\x30\x66\x3f\x57\xef\x31\x7d\xcb\x03\xf5\xa2\x4f\x4a\x61\xfc\x9c\xcd\x45\xab\xe5\xe3\xf7\x9d\x4f\x13\x3c\xfc\x54\xc4\x0a\xc2\xd7\xa1\x67\x3e\xf1\xc2\x3b\x7c\xda\x7f\xbd\xb7\x44\xf1\x5f\x46\xdc\x2f\xfc\xfd\x3e\xbc\x57\x21\x7e\xf6\x87\x7b\xf0\xa6\x25\x80\x07\x41\x10\x56\x12\xbc\x1f\x90\x2d\x61\x62\x06\xdd\x21\x12\xbe\x6d\x7e\xef\x05\x61\x11\x35\x42\xf5\xc1\x70\xb4\xef\xd8\xf4\xf4\x66\xe1\x7b\x1b\xfe\xf1\xc8\xdb\xf4\xeb\xcd\xc8\xbb\xff\xdb\xf9\xcd\xaf\x17\xe7\x9f\x3e\xa5\xf1\xd6\xe4\xc9\xd6\xb3\x8b\xcd\xfb\xbf\x7d\xfa\x94\x6e\x7a\xc1\xa6\x17\x1c\x79\xa1\x37\xf5\xda\xb1\x32\x0c\x35\xe4\xa3\xf5\x64\xf1\xe3\x61\x11\x2c\x97\xb5\x0c\x0f\xf1\xeb\xab\x97\x51\xe2\xc7\x2a\xce\x77\x10\xaa\x8c\xe7\x67\xaf\x5e\x4a\xd7\xcb\xc4\xc4\x37\x0f\xe4\x33\x9b\xb6\x64\x51\x94\xff\xbe\x3e\xee\x8f\xb6\xfa\x4b\x2b\xc0\xb2\xce\x6e\xbf\x0f\xe1\xfd\x0d\x36\x38\xca\x31\xa1\x1f\x1c\x7b\xbf\x5a\x90\x41\x70\x7f\xef\xdd\x38\xa0\xe3\x4a\xb5\xc6\xd7\x7e\x62\xb5\xb2\x66\x0e\x83\xb0\xbf\x17\x04\xa3\x87\x70\x06\x41\xd8\xef\x05\xc1\x88\x9d\xd7\xdb\x55\x9e\x25\xcc\xef\x87\x5b\xfd\xe0\xc2\x50\x45\x74\xde\x75\xc1\x40\x11\x47\xc7\x51\xbf\xd9\x17\x6c\x57\x25\xaf\xfd\x3c\x08\xed\x81\x2e\xdb\x08\x45\xd4\x0b\x39\x3c\xf8\x5f\xd3\x47\x91\xe1\x79\x90\x28\x12\x5b\x8a\x63\xd8\x58\x6c\x46\xde\xd1\xb1\x17\xf2\xcd\x4d\x7c\x75\x55\xa4\x3d\xf9\x22\x66\x9b\x53\x6a\xc3\x50\x9b\x1d\x1c\x73\x74\x8c\x3c\x73\x74\x1c\x20\xc3\x84\x55\xd4\xd0\x41\xb5\x39\x56\x0e\xce\x11\xf8\x1f\x2a\xa2\x6d\xf5\xc1\x71\x0b\xda\x11\x84\x82\x89\x97\x7f\x86\xeb\xe2\x30\x09\x96\x4b\xdf\x9a\xf1\x34\x66\xd1\xcf\xef\xdf\xbc\xc6\xe8\x48\xfe\x3f\xee\xbc\x27\x71\xd2\xd4\xcc\x1b\x79\x9f\x6e\x92\xbe\x17\x7a\xb1\x49\x33\x91\x7e\x32\xe6\xec\x0a\xd2\x4d\xaf\xdf\x1b\x08\x0c\x0b\x32\x14\x90\x04\x52\x83\xc1\x90\x41\x2a\x55\xc9\x09\x24\x4f\x75\xee\xa7\xa6\x37\x1c\x8a\x2f\x9e\x24\x19\x4f\xb0\x52\x28\x52\x27\x19\x26\x55\x13\xc6\x3b\x80\x7c\x8b\xb5\xed\xf4\x7b\x90\xab\x92\x43\x91\x7c\x72\x9a\x67\x53\x2c\x6a\x4f\xe4\x32\x95\x64\x90\x9c\x60\xe5\xbd\x3d\xe8\xcc\x84\x43\x32\x3d\x18\xee\x7e\x6a\xd2\xb4\xb7\x03\x28\x36\xb0\x2f\x3a\xf1\x64\xca\xe3\x2b\x49\x16\xa8\xd4\xa4\x19\xa4\x73\x36\xa9\x6e\xe7\x58\x78\x7f\xb8\x8b\xa0\xc5\x8c\x02\x9e\xe4\x8b\x59\x8c\x4d\x1d\x1e\x02\x6d\x09\x60\x0c\xed\x99\xc7\x09\x57\x94\x84\x62\x29\xa0\x8f\x80\x7c\x8a\x85\xc6\x48\xce\xf9\xc2\x1b\x79\x1b\xe2\xe3\x57\x6f\xe5\xaf\xb8\x48\xe3\x42\x12\x3d\xde\x85\xaa\x4d\x72\x88\x08\x72\x0c\x06\xfb\x98\xd4\xd9\x09\xa6\xab\xbc\x5c\x30\x05\x3b\x40\xd8\x95\x4a\xc7\x90\x9e\xaa\x22\x7a\x98\x94\xe8\x87\xf1\x0e\xa6\x73\xe6\x20\xcc\xab\x34\x8e\x15\xd2\x81\x81\x8d\x15\xec\xd0\xc0\x12\x05\x8b\x0d\x2c\x55\xb0\xb1\x81\xe9\x4a\x13\x03\x9b\x28\x58\x6a\x60\x53\x05\x63\x06\x36\x53\xb0\x89\x86\xa9\x16\xf7\x11\xc2\x6b\x09\xe8\x4f\x14\xe0\x4a\xb6\x76\x30\x66\x06\xa4\x5a\x76\x28\x6b\xac\xd4\xc0\x0f\x06\x03\x09\xa9\x91\x77\x76\x31\xf9\x35\xe6\x38\xac\x83\xe1\xbe\x68\xf9\x93\x72\x5a\x16\x6a\x9c\x81\x7e\x14\x00\x23\x58\x2e\x26\x16\x5b\x0e\x81\x82\x2e\x74\x17\xea\x5b\x88\x09\x24\x47\x6b\x0f\x9a\xbe\x90\xed\xd9\x81\xaf\x16\x72\x0a\xc6\xfb\x30\x34\x6a\xa4\x07\x3b\x40\xed\x45\xa6\xe8\xb0\x03\x94\x5e\x94\x95\x48\xff\x43\xb4\x62\xb1\xc8\x6f\x9f\x29\x13\x19\x99\x49\xf1\x62\xc1\xcb\x1b\xbb\x12\x01\x61\x97\xb4\xe8\x27\xf0\x08\xb4\x21\x84\x4e\x32\xe8\x62\x95\x58\x33\x2f\x39\x84\x41\x75\xa1\xe3\x3d\xc0\xad\xb2\xa9\x6c\xc1\x60\x17\x28\x06\x24\xfe\x27\xfc\xba\x9d\xdb\xfd\x15\x00\xd3\x12\x31\x48\x4f\xea\x2c\x4f\xe5\x7c\x86\x19\x61\xd2\x0c\x04\x52\x33\xcf\x31\x17\xca\x56\x29\x06\xa9\xeb\xa4\x2c\xb2\x42\xf1\x06\x08\xb0\xf8\x5a\x03\xe2\xbe\x20\xc8\x38\x4e\xbe\x24\xa5\x9e\x24\x3b\x89\x84\xb1\x45\x95\xe5\x6a\x68\x87\x93\x3d\x09\x5e\xf0\x6c\x2e\x47\xa1\x07\xc2\x42\x00\xab\x6c\xae\xea\x48\x0d\x48\x77\x24\x11\xc0\x1f\x05\x30\x8f\x2b\xc5\x70\xfd\x3d\x00\x72\x35\x59\xd9\x3e\x7c\xc9\xaf\x98\x1a\xe4\x31\x96\xc5\xaf\x99\x1c\xe6\x21\x30\xd8\x8f\x16\x64\x4f\xe3\xa8\x79\x8d\x58\xe3\x31\xff\x22\xd3\x63\x95\xae\x09\x0c\xbe\x73\xfb\xfd\xa3\x11\xd8\x40\x1a\x23\xb0\x21\x99\x5e\x36\xa5\xec\x3a\xc8\xda\x31\x4b\xe2\xa6\x52\x3d\xdf\xd5\x10\x46\x41\x3f\xb6\x41\x63\x36\x5f\xd4\xb7\xb2\xe3\x87\xe3\x1e\x80\x16\x55\x66\xd1\x9a\xf1\xa2\x6c\xa4\x54\x1e\x40\xe3\x00\x92\xe7\x59\x65\x43\x6b\x2d\xaa\x07\xf0\x9d\x4e\x8f\x65\x5a\xcb\x76\x2c\xb7\xbe\x66\x4c\x31\xe4\x1e\x14\xe1\x2e\x2e\xd0\x46\x77\x71\x11\xb3\x73\x9c\x4d\x13\x3d\x43\x61\x01\x14\x10\xb9\x04\x36\x83\x5d\xa6\x90\x1a\x8d\x34\x44\x48\x99\x96\x8a\xeb\x60\xbd\x10\xa0\x45\xae\x88\x17\xc3\x92\x21\x60\x75\x36\x67\x1a\x28\x2b\xa8\x2e\x75\x79\x31\x8e\x77\x36\xad\xea\x58\xca\x8d\x3d\x6c\x6e\x36\xad\x79\x06\xc2\x3c\x2d\xaf\x65\xf7\x76\x91\x83\x4c\x96\x2a\x66\x77\x2c\x9b\xd5\xd0\x36\xec\x20\xcc\x30\x60\x22\x5b\x45\x98\x6b\x00\x8b\xea\xf8\x4b\xcc\xcb\x6b\x39\x7e\x3d\xa8\x24\x8f\x93\x2f\x79\xf9\x95\x99\xe5\x85\x8d\x15\xbc\xba\x6c\x62\x2e\xc1\xbb\xb0\x50\x00\x58\xb5\x4a\xb5\x69\xc7\xcd\xa0\x3d\x61\x6e\x66\xce\x26\x92\xa2\xbb\x38\x12\x34\x93\x67\xd3\x99\xca\x1d\x1f\x60\x6e\x21\x79\x7f\x67\x00\x9d\xcf\xbf\xf4\x07\x12\x03\x19\x27\xff\xd2\xdf\x51\x80\x3e\x02\x86\x1a\x80\x9f\x94\x89\x2c\x63\xf7\x00\x0a\x2d\x44\xdb\x23\x31\x1f\x40\x2e\x8e\x0b\x76\xd9\x64\x57\x8a\xb7\xfa\x26\xe3\xb5\x1e\x7d\x06\xd4\x2a\x54\x7a\x08\x9a\xd1\x8f\xad\x35\x43\xac\xb0\xe3\xd6\x9a\x01\xad\x50\x9f\x0e\xe2\x5d\x4c\xd6\xe5\xdc\x86\x5c\xd7\x99\x1e\x2e\x68\x67\x79\x33\x56\x32\xff\x30\xc1\xa2\x6f\xd2\x5c\x76\x05\x5a\x20\x00\x2f\x25\x60\x17\x4b\xb9\x39\x51\x18\xbb\x7b\x12\xa0\x31\xf6\xe5\x27\x92\x07\x77\x7b\x89\x04\xbc\x53\x18\x03\xf9\x89\xc2\x90\x6d\xbf\x39\xd1\x18\x3b\x08\x98\xa9\x22\x64\x33\x9e\xab\x7c\x99\x9e\x49\x51\xb7\x3b\x90\x75\x3c\x57\x80\x3d\x55\xc2\x89\x02\xc8\x86\x3f\xd7\x00\xd9\xf0\x99\x14\x24\xbb\x43\xf9\xc9\x73\x05\xd8\x93\x3d\x99\x7d\x50\x00\x49\xb0\xe7\x1a\x20\xe9\x35\xcf\x0a\x2d\xeb\x0e\x27\x08\x33\xb3\x67\x70\xc8\x10\x44\x26\xf0\x20\x96\x5d\x68\x34\xa9\x65\xe1\x8d\x26\xe4\x18\x01\x1f\x34\xa9\x65\x27\x3f\x68\x8c\x54\x7e\xa2\x08\xd9\x97\x5d\x68\x34\x21\x65\xa1\x1f\x34\xa9\x65\x8b\x3f\x68\x8c\x18\x01\x57\x8a\xd4\x72\x70\x3e\xaa\xfc\xbe\xcc\x57\x63\x31\x94\xad\xb8\x52\x83\xb1\x27\x4b\xf8\xa8\x30\xf6\x64\xc3\x3f\x6a\x0c\xf5\x89\xea\xc9\x40\xb6\xf3\x4a\xf5\x64\x4f\xd6\xf2\x51\x61\xec\xa9\x66\x68\x0c\xc9\x23\x57\xba\xaf\xaa\x50\xdd\x13\x49\xe5\x8f\xba\xaf\x72\x24\x3e\x2a\x8c\x3d\xa0\x79\x7b\x95\x36\x5b\x9f\x41\x2a\x08\xf6\xa3\x0b\x18\xf3\xab\x31\xca\xd4\x9b\x18\xd8\xa6\xa5\xce\x08\x56\xf9\x51\x41\xe5\xf2\x33\xae\xd8\x3c\x93\x15\xed\x40\x5b\x5c\x5d\xa0\xd2\x2d\x41\x3d\x60\x5c\x95\xb9\x52\xa4\x41\xb9\x12\x00\x91\xfe\xf4\xe9\x93\x4c\xcd\xaa\x46\x62\xec\xe3\xfc\x6d\x72\x49\xb3\x1e\xa8\xa9\x22\xcd\x6a\x1b\x62\x14\x29\x26\xd3\x4a\x75\x8c\x15\x40\x2b\x8f\xa2\x9d\x3f\x36\x54\xd3\xd2\x28\x97\x14\xe7\xa9\xde\xcf\x09\xe5\x56\x10\x25\xb1\x20\xfb\x00\x59\x98\x2d\xcc\xce\x0e\x42\xc6\xdc\xac\x58\x3b\x87\x08\xd3\x0b\x67\x0c\xca\xaa\x59\x47\x07\x87\x50\x95\x4a\xa6\x03\x89\x6f\x4a\x90\xf5\x98\x25\x74\xa7\x87\x9f\x64\x75\x9c\x9f\x64\x13\x78\xe4\xb3\xce\xe2\x5c\xce\xfb\xfe\xce\x2e\x7e\x51\xe9\x2a\x3e\x35\x13\x06\x12\x26\x89\xb9\x26\xdd\x4e\x1f\x01\x4a\xcb\x1b\x24\xfb\x50\xee\x6d\xce\x6e\xb5\x92\x21\xc6\x2c\x31\x65\xc5\xa0\x95\x3e\x25\x5f\xf5\x41\xf8\x25\x16\x04\x71\x58\x9a\x49\xdd\x14\x7a\x60\xd2\xa0\xeb\x3d\xd5\x8a\x43\xaf\xdf\x3b\x00\x04\x02\x00\xa2\xd8\xea\x2b\x34\x3f\x69\x4c\x4b\x12\x05\xa8\x24\xcb\xc5\x20\x34\x9f\x2a\x42\xf5\xfa\x3d\x31\x6f\x13\x92\x06\xd2\xeb\x76\xc0\xd2\xf8\x54\x24\xf3\xd8\x00\x12\x5b\x3d\x83\xf1\x60\xd8\x8c\x9b\x58\xa5\x18\x97\xa5\xde\xc0\xbc\x78\x0a\xa0\x13\x0a\x4a\x1c\x0d\x0a\x76\x97\x4f\x27\x9c\x12\xf6\xe9\x73\xad\x62\xc2\x06\x37\x99\xe9\x34\x8e\xfa\x8c\xa9\x25\x77\xbf\x3f\x54\x80\x79\xcc\x2d\xe0\xd3\x99\x52\x1d\x63\xfc\x48\x25\x91\xee\x9a\xaa\x03\x30\x34\x88\xb4\xe6\xf3\x5d\x85\x91\xb3\x98\xf3\xf2\xda\x68\x15\xfd\x71\x6c\x67\x11\x9d\xa2\x3f\x1e\xeb\xbc\x14\xf7\x33\xb0\x06\x10\xa8\xd1\x0a\x07\x87\xa6\xa0\x34\x35\x1b\x00\xd8\x83\x3e\x05\xf0\x89\x5e\xd3\x0f\x0f\x0d\xee\x3b\xa4\x38\x33\x90\xf7\x52\x83\x01\xa9\x80\x9f\xbe\xa2\xcb\xd2\x9e\x06\xbf\x25\x2b\xd3\xae\x86\x9e\x91\xc5\xe9\x50\xf6\x5c\xca\xcd\x44\xb6\xfd\x54\x89\xa6\x21\xa6\x99\x43\xa8\x49\x41\xf6\x4f\x3d\x84\xcd\xd5\x3e\x34\x06\x05\x38\xc9\x78\xa5\x0b\x3e\x04\xe5\xec\xa9\x50\x9d\xae\xb3\x8a\x3d\x2d\x8b\xba\x6c\xf8\x8b\xa2\x66\x53\x1e\xe7\x8a\xb5\x25\x0e\x3c\x6e\x92\xdf\x92\x4b\x34\x72\xa6\xf6\x53\x0b\xc1\xca\x02\x8a\xe5\xcd\x58\x76\x6c\x0f\x56\x11\x00\x34\x59\x6d\xc1\x4a\xdc\xcf\x8d\x44\x59\xa5\xda\xdb\x0d\x06\xc3\x7d\x05\x50\x86\x94\xfd\x1d\x85\xae\xbb\x6f\x20\x97\x36\x68\x3e\x8f\xa1\x44\xf9\x5b\xd4\xf8\xff\xc3\x84\x92\x68\xa0\xdc\x8b\xf4\x44\xd5\x08\x7a\x40\x02\xc1\xdf\xe7\x4c\x4f\x70\x8d\x97\xb3\x1b\x35\x4c\x68\xb9\xa3\xfb\xb4\x5d\x99\x36\xd2\x70\x0f\x88\x53\x16\x53\xde\x98\xc2\xf6\xb0\x30\x22\x3f\x06\x0c\xd1\x08\x64\x82\x90\x8e\x11\x01\xe4\xa4\xa5\x80\xee\xc0\x07\x12\xaa\x1b\xb7\xe0\xa5\x32\x44\x00\x4b\x3c\x05\x48\x93\xd4\x14\x98\x94\x8b\x5b\x64\x68\x10\x6d\x6f\xde\xfe\x66\x52\x22\xaf\x52\x82\xa1\x8f\xc3\xd1\x14\x78\xff\xec\x41\xbe\x81\x61\xe5\xda\x46\xd3\x87\xad\x6e\xc2\xcb\xaa\x52\xf2\x01\x0a\x33\x80\x18\xfb\xdc\x32\x60\x40\x77\x5b\x2b\x3e\x0c\x93\x5e\x8c\xe3\x64\x22\xd3\x8a\x4f\xd2\x3e\x02\xd4\x4a\x95\xf6\x64\x5a\x23\x00\x81\x6a\x3d\x56\x03\x9c\x20\x4d\x1a\x73\x2e\x3b\x71\x08\xf6\x21\x04\xa9\x39\x03\x2a\x4b\xd2\xb0\x05\x57\x8b\x22\x43\x40\xa5\x64\x4a\x8a\xe5\xe4\xa4\xeb\x7b\x1a\xb2\x50\xc5\xc0\xda\xd5\x88\xe5\xd8\x2c\xbe\x58\x1b\x5d\x8e\x41\x6a\x34\x0b\xb3\x04\xef\xc8\xef\x14\x2f\xc4\x88\xa0\xaa\x1e\xca\x12\xcc\x02\x1d\x23\xc4\x74\xf3\x40\x96\x50\x2a\xe3\x16\xb2\x6d\x63\x56\xe4\xd8\xac\xc8\x0d\x1d\xc0\x7d\x0d\x99\xab\x5e\x24\x08\xca\x6f\xd9\xe5\x82\xb3\xc4\x26\x09\x80\xab\x26\x71\x08\xc3\xf3\x5b\xb2\x8f\xd5\xa8\xd6\x4e\x56\x62\x72\xb4\x06\xdc\x80\x39\x34\x69\xf8\x55\x7b\x25\xd8\xb3\x72\xac\x85\x00\xdb\xdb\xaa\x4b\x5b\x68\x64\x35\x8e\x25\x0a\xd8\xe2\x9a\x00\x80\x91\x6e\xf3\xa4\xc6\xe5\x6f\x30\x84\xe5\x31\x8d\xa7\x53\x26\x49\xd3\x83\xf5\xf3\xc4\x82\xf4\x01\x27\x27\x26\x8e\x03\x80\x68\x72\xc2\xbe\xf5\xc4\xa4\x63\xf8\xe2\x89\x4e\xc3\x58\x9a\x35\xa9\xd7\xc7\x3a\xaa\x99\xb6\x4a\xed\x48\x04\xb5\xab\x8d\xe1\x0b\xdb\x00\x30\x01\x50\x1e\xab\x65\x36\x15\x6d\x3f\xb1\x14\x22\x41\x95\xd4\x82\x4c\x00\x47\xdb\x9b\xa0\x1e\x63\x6f\x82\x64\xda\xee\x2c\xe9\x5b\x22\xb8\xee\xc4\x52\xf9\x94\x75\xbc\x0f\x3c\x7d\x72\x52\xd6\x3c\x56\xfb\xc7\xc3\x3e\x16\x50\xd6\x95\x12\xe1\xf1\xbe\x18\xbd\x94\xa1\x69\x13\xec\x50\x27\x4c\xc9\x16\xd0\x6e\x4f\x58\x6e\xcc\x4b\xd0\x26\x02\x18\x23\xc0\x52\x96\xa0\x8e\x49\x56\x29\x06\x39\xdc\x87\x7e\xba\x16\x26\xa8\xd7\xd5\x8f\xe0\xdb\xe7\xca\xae\x73\x08\xbb\xd9\x74\x16\x2b\x41\xd1\x87\x25\x59\x00\x34\x05\x04\x1b\x9d\x64\x71\xc2\xb3\x3a\x4b\xe2\xfc\x89\x7d\xfc\x42\x72\x94\x82\xd1\x1b\xa4\x87\x6e\x8e\x58\x6b\x9f\x18\xb5\x5e\x8e\x9e\xc1\xf8\x49\x1e\xa0\xfc\xc7\x06\x9f\x29\x3b\xac\xf8\x44\x4c\xd1\x34\x8b\xd5\xce\x07\x6c\xb1\x22\x5d\xea\xf3\x8b\x44\xb6\xc8\x05\x49\x2c\xba\x56\xef\x49\x70\x65\x03\xb0\x67\x70\x1e\xd1\xa9\xf3\x23\xd6\x34\xc6\x05\x59\x0c\x10\xf4\x24\xcd\xaa\x4c\xad\xbb\x93\x01\x00\x60\xb4\x6e\x26\xfb\x98\xc8\xa4\x39\x99\xa4\xcb\x82\x6e\xe3\x13\x99\x51\x16\x37\x14\x72\xf2\xb3\x66\x57\x58\x07\xd3\x3f\x74\x1a\xac\x1f\x69\x9e\x94\x5c\xd6\x3c\x04\x7b\x69\x9a\x27\xbc\x94\x42\x73\x08\x7b\x84\xb4\xcc\x73\x18\xf0\xbf\x8b\x02\x5b\x56\xa0\x31\xa0\xb8\x8b\xf0\x2e\xe0\xd6\x86\x1c\xa9\x33\xba\x65\xad\x15\xca\x1e\x0e\x4d\x59\x1b\xb5\xa5\xa7\x00\x46\x5c\x83\x01\xe0\xa4\xac\x4f\x2f\x1b\xbd\xb6\x2a\x3c\x6a\xf7\x18\xca\xda\x88\xdd\x03\x27\x6e\x59\x53\x1b\xdf\x00\xc5\x0c\x70\x96\x6b\x9b\x86\x89\x09\x39\x2b\x14\x8f\x89\x46\xb0\xfa\xa8\x40\xd7\xc5\x13\xae\x45\x0f\xca\x2f\xcc\x7a\xc9\x26\xb5\x95\xd5\xb3\xb2\xde\x09\xa1\x6d\xe5\xef\x58\xf9\x67\x4a\x82\xa3\xc8\x93\x19\x65\x31\x75\xca\xdd\x9f\x1c\xb4\xb2\xdd\xb2\xf7\x27\xb1\x85\xd3\xce\x3f\xd4\xf9\xed\x76\x0d\xec\x3c\xdd\xb0\x01\xa1\xc3\x87\x85\xf5\x49\x9f\x64\xb4\x48\xb4\xab\x33\x3f\x32\x0e\x53\xf7\x47\x25\x63\x06\x03\xcc\x94\x5f\x68\xf8\x21\x6c\xab\xd2\xf2\xba\x88\x49\x49\xb8\x98\x38\xc5\x6b\x60\xdc\x1e\x16\x89\x69\x37\x76\xa2\xaa\x24\x16\x98\x21\xca\xe6\xf2\xba\xd0\x75\x56\x54\xca\x0b\xe8\x2c\xe6\x8b\xb2\x2c\xc8\xb2\x9c\x0c\xed\x2c\xba\x2e\xa3\x68\x2c\xaf\x0b\x3d\x3e\x1f\x59\x52\x2b\x75\xe4\x70\xb7\x47\xb2\xcf\x18\xb3\x33\x19\xc9\xc4\x1c\x43\x99\xdd\xbd\x56\xa6\x52\x05\x52\x99\xa3\x86\xcd\x2e\x74\x42\x73\x5b\xa5\xee\xb7\x73\x55\x4f\xfa\x32\xeb\x8c\x31\x4a\xc7\x78\xdf\xc0\x15\x83\xc0\x5c\xe4\xd6\xe2\x0c\x2b\x7a\xca\xa9\x28\x9a\x20\x84\x88\x22\x21\x23\x4e\x5a\x3a\x31\xe0\xb5\x74\x62\x60\xdd\xf7\x46\xf4\xed\x22\x96\x16\x7d\x98\x2e\x95\x76\x0b\x87\x39\x27\x55\xcd\xcb\x2f\x72\xe5\xc7\x16\x59\x10\x18\x7d\xa2\x25\x4f\x10\xc0\xa5\x65\x6d\x77\x3c\x91\xe9\x89\x02\x80\x38\x6d\xcc\x52\x08\x5c\x95\x36\x33\xb3\x7a\xc2\x27\xd7\xe4\x80\xe1\x10\xcc\x7a\x27\xbf\x9b\xa6\x03\xca\x57\xd3\x74\x4c\x67\x53\xa3\x8f\xee\x4f\x04\xec\x94\xb8\x5a\x88\xee\x33\xe2\x6a\x81\xe9\xaa\x66\xfa\x18\x57\x34\xed\x94\xaa\x3a\x7d\xc1\xc2\xcc\x82\x8c\x01\x47\xbb\x52\x20\x82\x76\xa5\x50\x49\x25\x89\xf7\x20\x4d\x76\xac\x40\xe4\x53\x63\x3a\x49\x01\x41\x5b\x4e\x20\x79\xa2\xd7\x00\x54\x73\x4e\x8d\x15\x08\x8e\x1e\x19\x49\xef\xc3\x07\xf6\x72\xa0\xb8\xaa\x0f\x86\x18\x36\x21\xd9\x62\x6e\x9d\xba\x2a\xcd\x01\x60\x39\x2a\x8d\xc0\x64\xca\x0d\x02\xec\x20\xa7\xc4\x3f\x03\x3e\x21\xfe\x19\x98\x56\x3b\x35\xb0\x66\xb0\x69\x65\x36\xba\x87\x80\x90\xab\x94\x20\xfd\xa9\xbd\x83\x46\x84\x4c\x6c\x1d\x65\x31\x43\xb0\xb5\x31\x65\x40\xed\x83\x64\x63\xb9\xae\x64\x17\x93\xa4\x12\x20\x16\x71\xe7\xe8\x43\x27\x28\x00\x8a\x10\x6a\x9f\xaa\x76\x57\x01\x2a\x56\x53\xd8\xa9\x80\xbd\x9f\xc7\x79\xfe\x9e\x1e\x81\x4d\xc6\x0a\xff\xaa\x85\xfd\x91\xf1\x8e\x2f\x62\xfc\xa2\x5a\xf4\x87\x72\x5d\x87\xd3\x3a\x80\xec\x28\xc8\xae\x84\xa8\xb4\x68\xe6\xe9\xeb\x9f\x64\xab\x61\x93\xc6\xa4\x1d\xa1\xd7\x07\x23\x2c\x2b\x0c\x36\x0c\x2a\x71\x66\x00\x1b\x05\xa3\x00\xa0\x77\x4b\x47\x49\x00\xcd\xd5\x51\x60\xec\x16\x7a\x9d\x81\x45\x48\xa4\x2b\x25\x17\xe0\xf0\x9e\x91\xe3\xc7\x7d\x60\x3a\x73\x0a\x0c\x5b\xf9\x53\xeb\x10\x1e\x07\xcb\x02\x8d\x15\xe8\x4a\x02\x40\x10\xb0\x4b\x62\x7e\xc3\xb6\x5c\xb6\xe6\x0f\xbb\x34\xa6\xfa\x9d\x01\x02\xf2\xb8\xa8\xa7\x35\xb7\x38\x10\xa1\x39\xab\x2c\x9e\x21\xaa\x52\xbc\x8f\xc5\x35\x31\xb0\x55\xa4\x72\x8d\x86\xac\x2b\x68\x98\x36\x16\x82\xb4\x39\xbd\x6c\xb2\x3c\x1b\xf3\xac\x51\x1e\x49\x49\x82\x88\xe4\x18\x51\x01\xd4\x5e\x27\xde\x87\xa1\xb9\xbc\xb2\xe8\x09\x6d\x30\x92\xeb\x10\xe9\xc9\xc9\xb4\x05\x8a\x93\xf3\x0b\x68\x80\x49\x83\x7d\x99\x55\x44\x2b\xec\x01\x82\x22\x52\xbc\x8f\x05\xd8\x44\x3b\x35\xfb\x23\x98\x68\x66\x77\x04\xf3\xe8\x0c\xce\x87\x6e\x40\x19\x93\xdb\xd4\x9b\x09\x94\xab\xfd\x36\x80\x11\xb5\xdf\x06\xa6\xb8\xf2\x33\x00\x77\x21\x76\x93\x88\xdc\x75\xf8\x99\x69\x0a\x22\x83\x0b\x40\x45\x21\xec\x66\xc1\x92\x3a\x36\x8e\x2f\xb2\x67\x37\x8b\xb2\xc0\x2d\x83\x25\xd9\x4e\x0d\xfc\x94\xc2\x27\x71\x9e\x67\x60\x66\xab\x8c\xee\x2c\x7a\xfc\xcc\xc8\x5d\x31\x07\x27\x46\xee\x42\x92\xcd\x75\x05\x7b\x70\x4e\x31\x99\x64\xd2\xb3\xad\x99\x8c\xa1\x85\x93\x09\x01\x20\x4a\x4e\x20\xa2\x98\x67\xae\x78\x3d\x04\x34\x47\xbc\x42\x61\xb4\x74\x31\xe6\xcf\xb2\x3c\x67\x69\x87\xd4\x49\x74\xe6\x0a\x21\x23\x24\xc4\xe4\x0f\x2c\x6e\xf2\x87\x48\xe4\xb1\xde\x95\xa5\x90\x26\x75\x0d\x00\x50\x17\x95\x5a\x93\x45\xe5\x93\xa2\x9c\x48\x79\x01\xa7\xea\xcf\x5a\xf2\x02\xca\x69\xc9\x0b\xa0\x78\xc9\xe3\x5c\x6f\xbf\x7b\xf0\x35\x7f\x62\x43\x26\xa5\x32\xfd\x0f\x40\x81\x17\x69\x65\xab\x80\xcd\xcf\xb3\xb2\xe1\x19\xe3\x35\x57\x36\x4a\x30\xad\x4c\x16\x31\xaf\x8d\xe1\x1a\xf6\x5e\x13\x1e\x27\xe8\x02\x70\x33\xd6\x69\x29\x5e\xfb\x30\x59\x00\xb2\x83\x18\x89\x4a\xef\x2a\x8c\x5d\x05\xd9\x53\x90\x43\x05\x39\x50\x90\xb1\x84\x0c\x74\xb9\x3b\x0a\xa2\xcb\xd9\x93\x90\xa1\xac\x89\xa9\xb4\xc6\xd8\x57\x10\x5d\xae\x6a\xcd\x8e\xc6\x39\x90\x90\x5d\xdd\x9a\x58\x41\xf4\x57\xaa\x97\xfb\x1a\x22\xeb\x52\x52\xa4\x87\x2c\xcc\xb5\xdf\xc5\x10\x56\xf0\x49\x4b\x09\x14\xfd\x7a\x46\x44\x87\xa0\xf1\x94\x9e\x0d\x82\x18\xfe\x89\xec\xc5\x61\x9f\x40\x37\xe7\xe0\x82\x02\x18\xa9\x84\xc0\x56\x75\x6a\x41\x52\x80\x28\x3b\xe3\x81\x20\xd5\x4f\xd4\x8b\x15\xb6\xd5\x53\x0b\x22\xa4\xda\x4f\xfa\x88\xab\xe9\xf5\xa1\x0b\x3f\x91\xb3\x35\x38\x55\x9e\x52\x40\x0a\x18\xda\x16\x05\x4d\x35\xb6\x28\x68\xa8\xd1\x96\xc0\x0e\x37\x25\x69\xe8\xbc\x12\xf4\x60\xb5\x99\x2a\xcf\x59\x70\x2f\x98\x9e\xaa\x85\xe2\x00\x6a\xd6\x26\xa6\x74\x0c\xc9\x4b\xeb\x53\x76\x79\x69\x7d\x2c\xd7\x1f\x25\x83\xa1\xc3\xac\x52\xf6\xce\x18\xec\xe7\x53\xed\x33\xa4\xf2\x8d\x3e\x73\xd0\xd3\x90\x52\x81\x06\x06\xa4\x9b\xb6\x83\x30\xd3\x36\x6d\xa0\x15\x50\x5d\x01\x58\xc1\x7e\x72\xa5\x93\xe0\xb5\xa9\x2b\x9d\xa0\x44\x75\x6e\x01\x0e\x03\x3f\xa9\x14\x4c\xd5\xe9\xd4\x4e\x66\x73\x45\x99\x3e\x1c\xc9\xfc\x44\x0c\x2c\x30\x24\xc4\xc0\x02\xe9\x3c\x56\x44\x00\xca\xa9\xa6\x83\xba\x3b\x55\xd2\x3c\x06\x39\x34\xcd\xff\x50\xb8\xd0\xac\xc2\x30\x55\x2c\xd3\xc6\x2f\x52\xc1\x94\x45\x00\x9c\x7d\xa6\x85\x1e\xd4\x43\xcc\xbd\xb4\xb3\xc9\xc0\x21\x82\x59\x29\x41\x07\xfd\xa9\x25\x0a\x61\xac\x5a\xa2\x10\x4a\x23\x36\xb7\x9f\xe0\xe6\x13\xa7\xb6\x19\xe0\x14\x0a\x7f\xa9\xb5\x13\x64\x2a\x99\xf7\xac\xc9\x73\xeb\xbb\x7d\x93\x27\xff\x53\x54\x19\x98\x1c\x52\xd8\x3e\xf9\xe0\xbd\x60\x43\x4b\xed\x61\x26\x93\xea\x3a\xa0\x27\xfc\xe4\xca\x0c\xa8\x61\x6a\x64\x06\xf2\x8c\xa1\x11\x7c\x35\x35\xde\x12\xf1\x01\x93\x00\xad\xf0\x03\x33\xd6\x86\xf5\xf7\x31\xad\x3d\x68\xf7\xa1\x48\xc1\xf8\x3f\x88\x16\x9c\xa9\x1f\x35\xe5\xc1\x29\xd9\x67\xa6\x58\x42\xfe\x56\x6f\x1b\x41\xb7\x9b\xd6\x44\x51\x8b\xc1\xef\x77\x5a\x73\x9b\x43\xf6\x24\xd0\xe8\x5b\x07\x08\x69\x95\xce\xd9\x65\xee\x0c\x0f\x00\x09\x54\x0a\x86\x9a\xe7\x0e\xe9\xa7\x35\x77\x29\x74\xc5\x78\x6d\xf1\x9a\x99\xa7\x57\x84\x45\x35\xf4\x79\x9c\x30\xb9\xd1\x46\xbb\xe5\x2c\xce\xb8\x51\xfb\x63\x80\xe4\x13\xb3\x0e\xce\xe2\x79\x96\x2b\x3b\x0a\x38\x0c\x3c\x7f\xf2\xce\x58\xea\x07\xf8\x05\x37\xc6\xfa\x1d\x09\xe1\xe6\xd0\x17\x4e\x99\x88\xa5\x1a\xa4\xc6\x8c\x9c\x3b\xec\xc8\x7c\x6d\xcd\x48\xa1\xa9\xa2\xda\xff\x2b\xb2\xc6\xb1\xe6\x13\x21\xd0\x9f\x13\x69\x0d\x72\x65\x46\x01\x62\xcc\x66\x2c\xe6\xb5\xb6\x18\x1b\x08\xb1\x2b\x23\x30\xcf\x33\xd5\xf9\xc1\x1e\x40\x78\xa2\x37\x06\x60\xdd\x98\xb9\x82\x4c\x7c\xf8\x5c\x3b\x2e\x80\xb5\xe4\x79\x96\x8f\x19\xaf\xdf\x2f\xe2\x84\x51\x52\xcd\xbe\x54\x8c\x58\x5f\xb0\x69\x5f\xaa\x6b\x0a\x83\x5a\x4b\x62\xbb\x98\x00\x60\x5e\xcf\xf4\x71\x10\x14\x55\x96\x5f\x72\x36\xa9\xa9\x61\x0d\xa4\xbd\xc8\x00\x5b\x97\x95\x03\x83\xd0\x12\x26\x02\xff\x39\x39\xb0\x85\x01\x2e\xb9\x26\x6f\xaf\x0f\x9d\x2b\x79\xf6\xb5\x2c\xea\x38\x7f\x99\x29\xa9\x87\x0e\x79\xb3\xd6\xd2\x0f\x03\x45\xa6\x31\x34\x95\x38\x36\xcb\x01\xa3\xf6\x1d\xec\xb1\x05\x11\x8c\xf8\xbc\x99\x83\xb5\xf2\xb9\xe3\xbc\x24\xd2\x54\x6a\x81\x2f\xd2\xec\x96\x78\x41\xed\x0c\x01\xb2\x98\x29\x47\x5e\x3c\xb8\x7a\x41\xec\x34\xa2\x99\x19\xb1\xd3\x40\x5a\x4a\x8e\x1e\xb8\x03\xbc\x30\xf6\x17\x06\x99\xda\xfe\xc2\x20\x57\xab\x03\x07\x90\xab\xd5\x01\x91\x7c\x61\x96\x7f\xd8\x5c\xbc\x30\xc6\x18\x20\x68\x66\xac\x31\x43\x4c\xe3\x16\xe6\xd3\x0d\x98\xc6\xb3\xc9\x84\x4e\x84\xcc\x65\x38\x41\xaf\x17\x9a\xe1\xc0\x3c\xf6\x82\xd8\x4d\x04\x03\x66\xc4\x6e\x02\x69\x69\x2b\xeb\xc3\xd4\xcb\xb2\x8c\x68\xbb\x98\x4f\xce\xfd\x81\x18\x59\x31\x51\x07\x23\x87\x29\xa2\x94\x72\xf7\x36\xe8\x83\x53\xd6\x8b\x9f\x95\xba\xdf\xeb\xc3\x91\x65\xf6\x07\x01\x00\x0d\x89\x59\x04\x04\x43\x46\x01\x63\x04\x28\xdd\x48\x76\x64\x1e\x4f\xb3\x22\xe6\xb7\x2f\xac\x06\xcf\xe3\x69\xae\x79\x0f\x6d\x84\x02\x26\xf4\x76\xfa\x75\x36\x8f\xe5\x61\x67\x0f\xb5\xce\x17\x73\x3b\x5b\x6e\x3f\x06\x03\xd8\x7f\x66\xf3\x85\x3c\x88\xed\xa1\x6f\xc0\x8b\xf9\x22\xcf\xb4\x73\x05\xd8\xda\xb3\x22\xd1\x7b\x20\xbc\xc2\xa1\xcf\x8b\xc0\x9e\x44\xe8\x34\x00\x7d\x13\x00\xda\xc5\xf6\x10\x94\xd4\xac\x28\x09\x4b\x40\x53\x8a\x3a\xd1\x2c\x0c\xbe\x44\x64\x00\x04\x65\x5e\x98\x64\x82\xb9\x6c\xaa\xcd\x56\x28\xe5\xdc\xb3\x91\xb1\xc4\xe3\x4e\xc9\x2f\xc0\xe0\xc5\xc8\x65\x0f\xf4\x4e\xcf\x8a\x3a\x8f\xf9\x4c\xee\x98\x62\xb0\xf3\x65\x45\x6d\xfc\x35\x62\x30\xdf\xbc\x28\xae\xb2\x2a\x83\x23\x19\xa5\x9f\xab\x39\xa2\x72\x88\xe7\x50\x0f\xfc\x36\x5f\xbc\x31\xca\x19\x74\xb7\x34\xca\x19\x8c\x0b\xb1\x1c\x81\x33\x49\x46\x01\x13\xc0\x70\x84\x15\xec\x96\xb3\x96\x08\x83\x0e\x96\xc6\xcc\x70\x08\x58\xc6\xce\x00\x69\xb7\x4b\x99\x5e\xc1\x6f\xc0\x78\x9c\xb5\xe4\x18\x4c\x72\x23\xc7\x90\xe3\x2a\x67\xe8\xab\xac\x20\x56\xe9\x5d\x09\x52\xab\x2c\x1c\xe3\x08\x80\x5a\xb3\x27\x3b\x0a\xa0\xac\x37\x93\xa1\x84\x5c\x59\xe5\xd6\x16\x29\x6b\x73\x94\xda\x1f\x60\x3e\x85\xc0\x54\x6c\xbe\x18\x7a\x0b\xf1\x90\x11\x00\x6c\x21\x5f\x68\x83\x0a\xf4\x57\x1b\x54\x44\xea\x67\xb2\x5a\xc2\xd1\xfa\x1f\x14\xb0\x0b\x18\x5a\x7e\x1d\x42\xbe\x16\x5f\x22\xf9\xb3\xab\xef\x0b\x96\xff\xc3\x95\x5a\x82\xbb\xfe\x30\xf3\x13\xfd\xaa\x7e\x6e\x8d\xb2\xe0\x8e\x3f\x5a\xa3\x2c\x58\xfb\xe7\x96\xce\x28\x9a\xf6\x47\x6b\xe8\xa0\x4b\x15\xe3\x86\x22\x07\x80\x47\x20\xa0\x45\xff\x4c\x89\x06\xdd\xa6\x44\x13\x80\x7f\xc5\x8b\x85\x66\x2c\xc1\x68\x5f\x08\x60\xac\x01\xda\xb8\x28\x98\xe4\x5f\x74\x73\x09\x77\x4a\xbe\x58\x90\x7d\xc0\xd1\xe4\x84\x42\x0c\x39\x45\xf2\x5f\x2e\x39\x05\x2f\x7e\x71\xc9\x29\x7a\xf0\x65\xca\xd5\x65\x95\x1e\x3a\x77\xfc\x8b\x78\x4c\x0a\xea\x7c\x21\x1e\x93\x22\xfd\x2f\xb2\x69\x12\x13\xe1\x0b\xd9\x34\x89\xf4\xbf\x5a\xe3\x21\x58\xf0\x4b\x6b\x3c\x00\xb7\x35\x1e\xd0\x5b\x17\x0a\x57\x42\xf2\x27\x46\xa1\x49\x45\x27\x5f\x52\x73\x00\x70\x51\x6e\x41\x62\x80\xd8\xde\x13\x3b\x00\x9b\xf2\x58\x59\xee\xc0\xf6\xfe\x32\x9e\x8f\x53\x3d\x4a\x63\xc0\x21\x90\x31\x42\x94\x87\xdc\x3e\x1c\x23\xbc\x24\xe9\x58\xe6\xeb\xcb\x7f\x7d\x09\x50\x76\x3a\xfc\x24\x37\x5b\xc2\x5d\x28\x01\x6e\xe5\x1a\x43\x12\xb4\x25\x8f\xe5\x1d\xa8\x9b\x18\xab\xe5\x5c\x7a\x87\xf5\xd9\x8e\x02\x4c\xa4\x3c\x38\x04\x63\x04\xf1\xd1\x82\x1d\xcc\x4b\x92\x66\x40\x39\x43\xb8\x9e\xc4\x37\x25\xa4\x12\xa2\x84\x38\xaa\x80\x02\x92\x2f\x14\x44\xb5\x64\xa1\x5d\xca\x14\x8e\xde\x3c\x1c\xc2\xe6\x41\x80\x6a\xb5\xc7\x8e\xb1\x3f\x75\x9c\xa9\xcf\x60\xea\xe7\x4f\x28\x04\x8b\x56\x9a\x84\xac\x49\xf9\x5e\xc6\x71\x2a\xd3\x95\x06\xe8\x7d\x47\x3e\x36\x7b\x23\xe0\xc4\xfc\x47\x02\x80\x8e\x9b\x3b\x6a\xfb\xfb\xd0\x98\x31\x47\x75\xfa\x4e\x25\x44\xf6\x39\x26\xbe\xa8\xf5\xf6\x60\x2c\x01\x55\xae\x46\xf4\x60\xa2\x41\x8d\x02\x89\xa6\xbd\xa4\x87\x6e\x60\x79\xcc\x2d\x08\x03\x1c\x3a\x79\xa1\x6c\x0b\x92\x20\x44\x91\x64\x08\xb2\x26\x4f\xc0\x29\xf0\x0e\xbe\xd7\x53\x1d\x3f\xd6\x53\x1d\x92\x69\xa2\x6e\xd2\x82\xa8\xc8\xe9\x1d\xba\x44\x01\xb4\x32\x0e\x64\x49\x79\x4a\xce\x31\xf7\x11\xd4\x54\x06\xb6\x83\x25\x6b\x8d\x1b\x5c\xb4\xf5\x2d\x5e\xb8\x16\x93\xeb\x9d\xa0\xa8\x15\x7c\x18\x04\xbf\xff\x28\x68\xaa\xce\xa8\xe4\x4c\x51\xfe\x0d\xfa\x34\x5a\x72\xb2\xb3\xf5\x40\xde\x75\x9c\x2c\x34\x30\x76\x3d\x2f\x34\x66\xcb\xc1\x01\x9c\xb0\x75\xe9\x86\xd9\x90\x21\xc5\x77\x4f\x19\x84\x98\xa4\x04\x17\x60\x74\x62\x70\xba\xb0\xa7\x33\xe1\x24\xdc\x3a\x73\x87\xa3\x13\x95\xd9\x3a\x72\x3f\x6c\x65\xaa\x06\x0e\x65\xce\xb3\xbc\x54\xc0\x21\x6c\x94\x45\xab\xa5\xb3\x81\xb9\x9b\x86\x07\xff\x24\x4b\xf9\x45\xf6\xc1\x68\x2c\x32\x74\x6f\xb5\x57\xc3\xbe\xcc\x69\xed\xe3\x60\xa7\xdc\xe9\xb0\xa2\x73\x5a\xdf\xa4\x3b\xad\xd2\x2a\x97\xd8\x90\x25\x1b\xa8\x33\xc7\x34\xb3\xba\x6c\xb2\xa9\xb5\xa5\x4c\x69\x53\x2c\xca\xc2\x3e\x4d\xfa\x4e\x58\x4e\x09\x3b\x06\x2e\x19\x30\x1e\x1a\x90\xed\x11\xa1\x28\x5a\xcf\x38\x63\x96\xc3\xd5\x58\x7d\x22\xaf\xf3\x99\x51\x03\xe5\x86\x66\xc9\x4f\xc6\x03\x07\x4e\x37\x90\x63\xd5\x2a\xf4\x8e\xb1\x5b\xd1\xd7\x79\x2d\xf6\xe9\xe9\xac\x16\xf3\x1c\x38\x59\x6a\xc4\x55\xf3\x5a\x1f\x0c\xac\x0c\x8b\x41\x4e\xd5\x01\x39\x4a\x36\xa6\xad\xa2\x48\xa0\x4b\x6b\x5e\x13\xcb\x0f\x0e\xad\x6d\x1e\x46\x56\x24\xe6\xe1\x03\x04\x38\xf9\xc6\x3c\x0c\xfe\x89\xb9\x6d\x1e\xee\x1b\x90\x32\xad\x1d\x0c\x11\x66\xda\x66\x04\x3d\xab\x8c\xfd\xf9\x50\xe2\x55\xb6\xb5\x6c\x57\x42\x89\x71\x6c\x4f\x82\xd8\xa5\x3e\x70\x55\x3d\x16\x40\x03\x45\xb2\xbc\x64\x55\x05\x63\x6a\xd9\x2d\xf1\x0b\x91\xd7\x32\x75\xee\xc9\x0c\x1b\x7f\x5f\x55\x6b\x2a\xdd\x57\x98\xc6\xee\x19\xc7\x92\x04\x15\xb1\xbe\x0d\x24\x5a\xdb\x0e\x9a\xca\x1c\xcb\x08\x0a\x32\xd9\xf2\x04\x85\xc1\x9e\xb8\x32\xe5\xa5\xab\x0c\xc2\x80\xb8\xca\x20\xac\xcc\x53\xab\x13\x53\x6d\xe0\x86\xc6\x12\xc7\x51\xa8\x7a\x16\xf3\xd4\x12\x50\xb3\x98\x37\x16\xdf\x09\x80\x5a\xe8\xe1\x82\x5f\x3e\x1b\xe7\xfa\x82\x2b\xcc\x19\xa2\x4c\x42\x0b\x88\x32\x09\x69\xa2\xdb\xa0\x48\xd3\xe4\x87\xae\xe9\xc3\x04\xe0\x42\xf0\x87\x54\x23\x81\x1e\x91\x2f\xdd\x55\x06\x39\x80\x34\xfe\x10\x8c\xb6\x79\x6e\x9c\x81\xc0\xb9\xee\xe5\x3c\x23\xfb\x6d\x20\x19\x85\xc0\x56\x32\x9f\x97\x4d\x55\xc7\xc9\x4c\x39\x1f\x8e\x0d\xd4\x82\x90\xc3\x80\x43\x99\xa6\xcc\x8b\x30\x6d\x96\x86\x7e\x1a\x4b\xeb\x01\xe6\x5e\xda\xd9\x64\x9a\x22\x02\x39\x0c\x80\xd1\x2b\x89\x82\x9a\x20\xc0\x18\x04\x61\xbc\x4a\xa3\x1d\xc9\x4f\x84\x5c\xb3\xc8\xb5\x0f\x5b\xd2\x4e\x2f\x45\x95\xd1\xfa\xe2\x80\x14\xe5\xae\x24\xfb\xe0\x03\xbb\xda\xad\x71\x9f\x14\xda\xfe\x36\x96\x25\xcf\xe3\x45\xa5\x84\xc9\xfe\x24\x91\xd0\x36\xfe\x9e\x2c\xad\x5d\x8f\xca\x69\x7f\x03\x63\x51\x96\x0b\xd7\x45\x1f\x35\x53\x95\x41\x3d\x01\x63\x6c\x80\xf6\x45\x39\x44\xed\xbe\xb5\x0d\x1a\x22\x9a\xb3\x0d\xc2\x91\x20\x6e\x2a\x03\x84\xd0\x7b\xfa\xb0\xa3\xce\xcb\x6b\x73\x11\x0c\x0c\x2d\x79\x79\x8d\x66\xd6\xcf\x50\xdf\x35\xe3\x2d\xed\xe9\x50\xe5\xb4\x17\x7b\x1c\xa6\xaf\x92\xe7\x13\xa4\x2d\xb9\x5e\xaf\x41\x2a\x88\x0a\x78\x4e\xe4\xd8\x4d\x5f\xfe\x54\x66\xfc\x43\x14\xcb\xe4\x9e\x05\xea\x05\xdc\x9e\x91\x30\x8d\xb8\xd6\x33\xa5\x7e\xc0\xe9\x64\x84\xde\xab\xab\x19\x3d\x54\xe3\xb9\x9e\x9b\x03\x58\xff\xf2\x2a\x36\x4a\x2e\x6e\x45\x5a\x5b\x46\x58\x75\x89\xf5\x05\x44\x96\x51\x68\x61\xe5\xb5\x93\xb9\x23\x8a\x73\x7a\x54\x94\x4a\x80\x5e\x49\xb1\x1d\x97\x63\xb5\x7f\xa8\x88\xda\x7d\xa0\x00\x5a\xed\x06\x89\x42\xed\xd3\x60\xa4\xc8\x2d\x08\xd4\x49\x0e\x9f\xf6\x30\x6d\x0e\x9f\xa0\xa3\x82\xe0\xdf\x8b\xd2\xce\xd4\x8f\x9a\x4a\xc4\xbc\x76\x57\x40\x50\x7e\xa8\xde\x93\x5b\x9a\x10\x16\x9a\x93\x63\x26\xfc\xca\x3a\xa0\xc2\xcf\xb4\x80\x04\xfd\x55\xa4\x19\xd5\x7f\x72\xe2\x3e\x99\x60\x67\x38\x39\xf7\x82\x62\x1b\x9e\xd2\x6d\x46\x8c\x30\xea\x55\x09\x68\xee\x11\xd4\x81\xd1\x05\xc8\x11\x94\x81\x2a\x9b\xf0\x0d\x04\xf0\xa1\xfe\x31\x03\x4c\x2b\x6d\x7e\xd0\x93\x69\xa6\x02\x86\x20\xe8\x95\x12\xd0\x87\x60\x9f\x9d\xc7\x7a\xeb\xbb\x87\x49\x2d\x6f\x28\x84\xa8\xe8\x70\x54\x88\x50\x2a\x34\x76\x34\x54\xeb\xec\x31\x56\xc0\xbf\xa8\x69\xb1\x0b\x17\x30\xe7\x89\x31\x8d\xc6\xb0\x1a\xbf\x32\xfb\xbe\x04\x10\xf4\xbe\x0f\x92\xf4\x52\x0d\x54\x63\xfc\x31\x07\x60\xfb\x98\xb3\xb8\x6a\x38\x4b\xad\x00\x4c\x82\xed\x5e\xb1\x34\x6b\xe6\xe4\x64\xa9\x07\xae\x62\xaf\x58\x9e\x67\x05\xf1\x6b\x11\xa3\xfc\xca\x8d\x52\x02\x04\x74\x95\x07\xa8\x6e\xa6\x28\x04\x76\xba\x79\x96\xa0\x8f\xd5\x0d\x98\xc5\xe7\x59\x6a\xc2\xf2\xcc\xb3\xd4\xb0\x35\x98\xbc\xf4\x05\xcf\x01\xb8\x1c\xcd\xb3\xd4\xba\xfc\x0b\x57\x04\x54\xb8\x25\x70\x1b\xa6\x97\x06\x60\x6e\x03\x40\x87\x17\x3b\xd0\x90\x46\x91\x54\xb4\x11\xee\xb2\x92\x9b\xab\xe0\x88\x31\xcf\x13\x7d\xbd\x6e\x0c\xe9\x54\x5f\x09\x82\xb1\x2e\x16\xee\x17\x65\xaa\x1d\x3c\x07\x30\xf2\xaf\x5a\xd2\x1e\x86\xa4\x25\xed\x61\xa4\x17\x56\x59\x2d\xc9\x25\x7a\xf3\x8a\xb8\xbe\x20\x56\x2d\x63\x2f\xa9\x58\x6a\xaf\xb0\x63\xbd\x21\x84\x46\x9a\xab\xd4\x18\x53\x62\x8e\xeb\xdb\x76\x70\xcb\x70\xde\x38\x80\x22\x1e\x2b\xf7\x06\xbc\x8a\xf4\x9a\x5a\xcf\x60\xb5\x2a\x2c\xc8\x0e\x40\x48\xb0\x2f\xb8\xfd\x31\x00\xa8\x3e\x5e\x3b\xc4\xa4\x89\x2a\x05\x81\xdd\xb0\x3e\x1a\x4d\x8a\x82\x65\xc7\x7a\x7d\xf5\x35\x0d\x20\x85\xa0\xba\xd1\x87\x14\x7b\xe0\xff\x2c\x41\x6a\xa3\x09\x67\x62\x00\xb3\x90\xc6\x78\x0c\x7d\x03\x71\x32\x0a\x2b\x86\x81\x69\x80\x1d\xb9\xc0\xc0\xc9\x05\x46\x41\x8c\xd7\xd4\xb0\x03\x0e\x7c\x85\x05\x39\x00\x1c\x62\xd8\x01\x6b\x69\x61\x41\xf6\x00\x42\xee\xda\xee\x2b\x00\xbd\x6c\x4b\x9a\x60\x6e\x40\x0e\xa0\x78\x2d\x11\x52\xc8\xd6\x12\x01\x92\x54\x22\xc0\xf0\x31\x73\x34\x73\x08\xc7\x3d\x02\xa2\x4d\x83\x50\x37\x23\xb6\xc1\x7d\x85\x61\x94\x04\x04\x29\x81\x0b\x54\x64\xd4\x7f\x53\x37\xf5\x35\x9b\xc6\x75\x76\xc5\xda\xb2\x05\xce\x6f\x55\xf6\xd9\x2c\x4b\xbe\x3c\x94\x5b\xac\xcc\xfc\xc8\xf8\x6d\x27\x82\x1d\x13\x07\xf8\x91\x55\x4c\xaf\x28\x60\xe6\x2e\x2c\xaf\x52\xd2\xea\xaa\x66\x69\x97\xbf\x0a\xba\x72\x60\xbe\xbd\x75\xc3\x75\xf6\x35\xbb\x56\x27\xd9\x9f\x0a\xa8\x80\xfa\x8d\xee\x68\x48\x45\x41\xaf\x5d\x61\x2a\xa4\x71\xe1\x0a\x53\xe8\x13\x71\xf0\x32\xec\xa0\x7d\xc0\xc0\xf5\xb6\x30\x8e\x5d\x3a\x7d\xd9\xf9\x95\xe3\xe0\x45\xb3\xaa\x0e\x28\x71\xa2\x22\xa8\x44\x3b\x02\xc6\x26\x4e\x2f\x46\x10\x4c\x35\x70\x82\x49\x6e\xa5\x7f\xaa\xaf\xc8\x47\xaa\x68\xe2\xc6\x01\x4b\x61\x41\xfc\x38\x12\x04\x68\xe5\x3a\x86\x1b\x76\x85\x52\x07\x91\x01\x32\x7d\x3c\x96\x60\x52\xc9\x19\xd8\x31\x14\x9a\x39\x90\x9f\xc8\x96\x13\xb2\xc9\x96\x13\xd2\xd4\x9c\x8e\x00\xd2\x1c\x98\x68\x64\x81\x00\x52\x10\x5b\xa8\xe9\x95\x5e\x73\x21\xb2\x5e\xd1\xb2\x76\x42\xd1\xae\x65\x53\x96\xdf\x65\x83\x43\xd2\x74\x9a\xe7\x90\x48\xc6\x90\xa3\x6a\x24\x96\x1c\xda\x2e\xc7\xa0\x43\xb3\xaa\x6e\xa8\x66\x7d\x6c\x83\xd9\x75\x13\x2c\xc2\x1f\xc0\xfe\x44\x2f\x35\xfc\x91\xd7\x56\x49\x46\xa7\x1c\xb0\x58\x01\x14\xdd\x60\xd7\x5a\xbc\x34\x2c\x13\x9b\xda\x88\xbe\x00\x13\xab\xfc\x91\xb3\x58\x8a\xba\x1e\xc8\xa9\xd7\x65\x01\xb0\xac\x98\x6a\x89\x21\xd7\x81\xd6\xaa\x3c\x01\x7c\xed\xc3\x02\x8b\x09\x09\xa8\x05\xed\x50\x57\x05\x13\xcc\x6b\x45\x43\x18\x48\x38\xbd\xe6\x0e\x9b\x99\xd7\x65\xbd\xf2\x72\xdc\x1e\xe6\x3b\x77\x4c\x0e\x25\x94\x1a\x9b\x7a\x04\x66\xbb\xfd\x1b\x61\x56\xd6\xa7\x6d\x91\x53\xd6\x8e\x5c\x9b\x58\x50\x5a\x09\x48\x11\x93\xd5\xf6\xed\xa3\x55\xad\x10\x9a\x1d\x28\xd4\xdb\xef\xd0\xca\xe9\x70\xf8\xeb\xf8\xde\x32\x7a\xc9\xa1\xe9\xf4\xec\xa1\xdf\xb6\x5d\x7c\x0c\xf3\x94\xb5\x39\x84\x3f\x54\x00\x7a\x0a\x6f\xa3\x9a\xc3\x78\x1b\x7e\x15\xb7\x0a\xd1\x21\x41\xc1\x90\x81\x20\x75\x4b\x64\x22\x07\x7b\x95\xd9\x99\xb6\xbe\xc3\xfe\x0c\xf3\xc3\xc9\xa2\x1d\x64\x89\xca\xb7\x67\xab\x04\x59\xe3\xdc\x33\x70\xc7\x78\x79\x60\x72\xac\x15\xcf\x6e\x5c\xa7\x89\xd2\x45\xb1\x86\x4d\xb2\xe2\xea\xf5\x36\x8e\x2d\x46\xee\x5a\x78\xe3\xb8\x4f\x07\xc0\xac\x01\x89\x02\x98\x11\x31\x20\x3d\x22\x4c\x83\xf4\x88\xc8\xe9\xf9\x96\xb3\x84\xa5\x7a\x4b\x7c\xd0\xb3\xc1\xb4\x9b\xb1\x35\x4c\x0a\xc3\xa5\xc6\x80\xc9\x22\xde\xb1\x2b\xc6\x2b\xe6\xcc\x6f\x39\x52\x78\x8b\xb3\xc5\x09\x69\x8f\x56\x61\x21\xa9\xd2\xc7\x1d\x79\x56\xf5\xb2\x63\x78\xf9\xe2\x7d\x33\x36\xb7\xc6\x0e\xac\x0e\x50\x04\xab\x80\x81\x9d\xbf\x10\xbd\xd0\x11\x84\x7a\x5d\x45\x20\x8a\x55\xc8\x50\x62\x58\xf5\x0f\xf4\x62\xa0\xb3\xe8\x47\x07\xaa\xd8\x26\x49\x18\x4b\xf5\x98\xf4\x6d\x30\x1d\x93\xb1\xdd\x1e\x89\xd1\x1e\x13\xa7\x08\x8b\x3f\x6d\xaa\xd8\xfd\x3d\x18\xda\x4d\x6e\xf7\xf4\x40\x8a\x35\x4b\x30\xf7\x09\xcc\x92\x44\x3b\x24\xc3\x95\xb1\xb0\x21\x50\x99\x56\x71\xb2\x8a\x8e\x45\x04\x56\xdb\x45\xcc\xe3\x3c\xd7\x8e\xff\xb0\xb2\x14\x0b\x7b\xa5\x29\xc8\x75\xae\x78\x92\xea\xe0\x91\x85\xf1\x81\x1b\xf4\xcc\x34\x2c\x16\x65\x4e\x42\x31\x61\x35\x9c\x4e\x92\x62\xc1\x93\x86\x51\x9e\x2f\x48\xfc\x94\x03\x0d\xd0\xb6\x6b\x32\x7d\x44\x46\x07\x94\xc7\x5c\xdd\xab\x3b\x1c\x0e\x6d\xb8\xd2\x9c\x40\xe7\xe3\x44\x29\x9b\x28\x0c\xad\x5c\x11\xf5\xa5\x7d\x00\x0a\xdf\xbf\x6b\x29\x51\x58\x0a\xd1\x48\xc6\x0a\xc0\xe8\xbc\x2a\x74\x88\x1c\x60\xca\xa2\x4a\x08\x0d\x24\x84\x75\xb0\x66\xcb\xd5\xe5\x10\x71\x9d\xdd\x3f\x6c\xdc\xaa\x59\xc9\x6b\x47\xc7\x41\x60\xe7\x38\x93\xbd\x4d\x5f\xa6\x19\xe5\xb6\x82\xc6\x0a\x96\x90\x56\xe9\x2e\xb3\x54\x97\x26\x0e\x11\x0a\x04\x00\xe9\xad\x32\xc3\x96\xaa\xd8\x45\x83\x83\x1d\x99\x56\x7b\xff\x84\xac\xa3\xa4\xa8\x03\x05\xe8\x14\x0a\x32\x43\xb7\x96\x62\x6b\x7d\xd6\x29\x3a\x71\x06\x44\x4c\xf0\xcb\xf6\x08\x14\x3a\x8c\xd2\x00\x2c\xf4\x22\xad\xdb\xba\x67\xa1\x31\x3a\xb1\x05\xa0\x53\x1a\xc8\x0c\xd3\xd6\x43\x0a\xbc\xec\x28\xba\x36\x57\x48\x60\x3e\x9b\x50\xd3\x10\x61\xa1\x30\xe9\x09\xa6\xcd\x89\x1c\x7e\xdf\x0a\x4d\x2b\xf5\x66\x9a\xa1\xdb\x83\x8a\x6b\x47\xc4\x5a\xc9\xda\x56\x8e\xf9\x0a\x16\x0f\x6d\x5d\x02\x96\xd7\xd6\x25\x4c\x09\x6e\xfb\x1b\xfe\x62\xea\x22\x25\xde\xf9\x2e\x1a\x72\x3d\x18\x74\xa0\x2b\x12\xf4\xc9\x50\xee\x8a\x84\xa9\x03\x95\xba\xb8\x3a\x21\x10\xa8\xe6\x23\xc5\x81\xd5\xfb\x23\xc5\x81\xe9\x7a\x45\xae\x45\x91\xd2\xf1\x8a\x06\x01\x3c\x27\x9e\x41\xc0\xa7\x57\x96\x73\x32\x94\x7e\x65\xf6\x79\x87\x3d\xfc\x8c\xb8\xbc\x90\xc2\xd0\x06\x6f\x01\xa8\x29\x9c\x64\x70\x52\xe2\x10\x21\x14\x95\x36\x99\x44\xf5\x4c\x0c\xf8\x9a\x5a\x70\x86\x12\xa2\x05\x21\x50\xfc\x9a\x58\x70\xf6\x14\x86\x11\x76\x08\x2a\x88\x3d\x44\x0c\xcb\x1b\xe3\xb8\x0e\xa1\x34\x4a\x93\x9e\x60\xda\x8e\x39\xf8\x46\xfb\xae\x83\x2b\x48\xa9\x93\x13\x95\x54\xd8\x31\x60\x6b\x3b\x15\x83\x6c\x6d\xa7\x82\xa4\x1b\xa2\xf0\x0d\x09\xed\xd4\x87\x3b\xc1\xa5\x05\xe9\x03\x44\xed\xe2\x63\x98\x4a\x26\xdc\x35\x46\x34\x2c\xd3\xaa\xd4\xde\x5a\x60\x04\x7d\x73\x6a\x5c\xc9\xc1\x39\xa2\x64\x04\x00\x9d\x9c\x98\xfb\x24\x70\xae\xf4\xc6\xb5\xcf\xc0\x67\xae\x7d\x46\x14\x6e\x5c\x8d\xf1\xbe\xcd\x1b\xe3\x2c\x0f\x03\x57\x9a\xf4\x04\xd3\xea\xa0\x0c\x0e\xa6\x4a\x73\xfd\xe4\x10\xcc\xe3\xe5\x6c\x2e\xa7\x18\x2c\x0b\xa5\x13\x54\xaf\xa4\x61\xd8\x62\x00\x90\xa6\x23\x06\x09\x4a\x77\x08\x1e\x8b\xa5\x71\x77\xef\x21\xe1\xf5\x69\x1d\x38\x54\xbe\x21\x9e\xf4\x10\xe9\xb3\xa4\x00\x18\x98\x39\x9b\xc6\x56\xbb\x08\x00\x4e\x8e\xde\x80\x99\x5f\x5f\x9f\x9f\x00\x0e\x05\x8d\x25\x48\x0f\xcd\x1e\xa6\x9d\x98\x92\x6f\x5a\xf6\x73\xc0\x73\xa1\xb0\x0d\x26\x27\xad\x70\x38\xf0\x66\xc1\x8a\x55\x51\x1d\x13\x9a\x6f\xe5\x00\x13\x2d\x98\x0e\x65\x07\x5e\xde\xe5\xc2\x89\x6a\x59\xd2\xc8\x71\x30\xd0\x6a\xbf\x02\xde\xbd\xa5\x5e\x32\xa1\x38\xae\xdf\xce\x48\x31\xc9\xb4\x11\x7f\x47\x01\xca\x89\x03\xc2\x8b\x51\x70\xbb\xa6\xe4\x29\xb0\xc1\x0d\x8e\x31\xcf\xa6\xe6\xb2\x01\xd0\x83\x6b\x77\x99\x5d\x4c\x5b\x8f\x73\xec\x03\x48\xbf\xcd\x01\x3c\x60\x05\xf4\x7c\xd3\xd2\x41\xa0\x1e\x72\xd6\xb0\x03\x58\xea\xae\xcd\x0d\xb8\x55\x94\x26\x3d\xc1\xb4\xba\xd3\x39\x80\x43\xe4\x37\x64\x15\x03\x9a\x91\x55\x4c\xa6\xe7\xac\x8a\xf5\x61\xf6\x1e\x7e\x43\x8e\xb7\xf7\x35\x96\x2a\x17\xc6\x55\x79\x98\x83\x58\x2b\x55\x0a\xf6\xd1\xe5\x95\x9e\x40\x43\x30\x7e\xbf\xb9\x62\xc6\x19\x0a\xd9\x1d\x40\x5c\x1b\x8b\x87\x29\x05\x6a\x07\x3f\x0c\xb2\x26\xc0\x6f\xe1\x9d\xb2\x19\xab\x94\x39\x11\xef\x0b\x0b\x8d\x0b\x07\x65\x4f\xa6\xa8\xfe\xb5\x8b\x30\x27\x69\x42\x1a\x80\x34\xb5\xf5\x6e\x04\x18\x85\xdb\x0b\x3d\xf9\x9a\xf2\x89\x05\x33\x42\x54\xcc\xa1\x85\x11\xa2\x90\x64\x3c\x01\x19\xf1\x7f\x30\x91\xc1\xed\x84\x6d\x4c\xcc\x95\xc7\x63\x0f\xee\x0e\x19\x2e\xc7\xf8\xed\x0b\xc6\x6b\xa6\x82\xd5\xf7\xe0\x2e\xc9\x5b\x57\xf2\x41\xb3\x5d\xc9\x27\x9a\xfe\xd6\x84\xc2\x05\x7a\x98\x50\xb8\x32\xa9\x5c\xd9\x81\x17\x16\x33\x19\xb1\x54\x9f\x64\x2d\x66\x3a\xe6\xe9\x1e\x9c\xee\xbf\xd5\xe5\x41\x5b\x75\x71\x98\xaa\x93\x99\x7b\x23\x7f\x61\xaa\x80\x2a\xf3\xb8\x50\x21\x7c\xf1\x6a\x18\x42\xf4\x6d\x31\x26\x41\xea\x1a\xbf\x42\x6a\x2a\xf2\x36\x0a\x2c\xae\x02\xa6\x4f\x19\x99\x04\x10\x9c\x81\x04\x79\x23\x6f\x53\xfe\x4c\xa5\xfa\x83\x61\xca\x00\xa2\x4f\x1c\x77\x25\x44\x07\x7d\x85\x61\xcd\x9b\x4a\x87\xd4\xbd\x81\x90\x06\x02\x67\x5e\xd8\x69\xc3\x41\x83\x3d\x09\xaa\xaf\x95\xff\x1c\x2c\xe1\x8b\xb9\xf9\xe2\x6d\x89\x77\x8c\x44\x37\xf5\x45\x23\x60\x5e\xb1\x92\x90\x4d\x1c\x34\xa9\x25\x55\xb1\x08\x63\xff\x3c\x04\xac\x06\xe3\xe8\xdd\x80\x7f\xe5\x82\xeb\xd3\x30\x10\xba\x6f\x15\x51\x40\x2a\xea\x6d\x21\x5c\x90\xa5\xbb\x42\xf0\x49\x13\x7b\x40\xcb\xe3\x09\x8a\x20\x5b\x45\xf9\x19\x4b\x64\xb8\x4d\xfa\xb1\x63\x9d\x01\xd4\x6e\xd3\x0c\xc9\x68\xed\xfe\xad\xa2\xac\xad\x3f\x93\x55\x93\x4d\xaa\x84\xd8\x5e\x5a\xb0\x40\x00\xd8\xe8\xf6\xb0\x76\x03\x8c\x78\x5f\x1d\x20\xcc\x2e\x4d\x6d\x34\xc6\x43\xf9\x05\x31\x97\x63\x0b\x48\x3c\x79\xe0\x13\x0a\x18\x2a\x8c\xca\x1a\x22\x6e\xfc\xca\x64\xeb\x8a\x53\xbb\x65\xed\x76\xe9\x40\xba\x3d\xa4\x17\x0d\xa3\x8b\x13\x83\x97\x93\x38\xd7\xd2\x75\xc0\x24\xcc\x68\x13\x43\xd0\x8b\x04\xac\x6a\x94\xb7\xc0\x10\x25\x86\x0e\xf9\x35\x80\x13\xca\xb7\xbc\x5c\x94\xbc\xce\xca\x42\x0f\x84\x03\x97\xd0\xe1\xbe\xfc\xba\x2e\x29\xde\x82\xb7\xc8\xd4\x70\x2d\x7c\xc1\x6b\xe7\x6d\x6b\x4d\x03\x86\x6c\xed\xab\x77\x01\x57\xcb\x1a\x20\x86\x4e\xc2\xea\xb8\x68\x8a\xc4\x6c\x5e\x04\xe4\xdf\xae\x54\x14\x73\xfc\xd2\x95\x8a\xa2\x5d\x97\xce\x65\xc8\xcb\xd6\x1c\x13\x24\xfb\x37\x99\x63\x82\x8d\x2f\xe9\xa8\xc3\xf2\xfd\xef\x56\x6f\xa0\xb4\x56\x6f\x84\x4c\xb8\x6c\xe2\x9a\xf1\x22\x33\xee\xd6\x70\x6b\x4a\x80\xc9\x8c\x47\x4c\xf4\xe5\x39\x56\xbf\x4d\xbc\x99\x09\x80\x50\x97\xfe\xe4\x89\x16\x7c\x78\x73\xa6\x13\x9c\xde\xb9\x11\x74\x35\xcb\xe9\x60\x88\x36\x16\x21\x3b\xde\x51\x3f\x01\x50\x8c\xb8\x05\xd9\x05\x48\xaa\x6e\xc7\x0e\xa0\xf3\xdc\xb9\x9a\x33\x04\x98\xf1\x59\x3c\x84\x82\x4d\x7a\x2c\xf3\xf5\x25\x9b\x81\x04\xe8\xe8\x6b\xbb\x12\x60\x6e\xdd\x1c\x02\x44\x5d\xa8\x19\x63\x11\x5c\x8b\xb2\xc3\xfd\x5d\x09\xd1\x57\x6c\x34\x40\x5f\x90\x01\xff\x20\xdb\x2c\x25\x01\xf2\x1b\x68\xc8\x3b\x72\x86\x09\x1f\x90\x5d\xd9\x40\xe2\x9b\x3b\x37\x4c\x42\xcc\x9d\x9b\x58\x42\xcc\x9d\x9b\x44\x42\xf4\x9d\x9b\x1d\xd5\x36\x72\xe7\x66\x47\x56\x5d\xeb\xfb\x34\x7b\x12\xc9\xdc\xc2\x51\xcd\x35\xc6\x31\x00\xd0\x4b\x38\x50\xbb\x75\x2d\x07\x6b\xaf\x33\x35\x1d\x87\x7b\x0a\x50\x10\xaf\x0b\xf8\x8e\x5e\xc3\x81\xa2\xe9\x35\x1c\xc1\x5f\xef\x08\x00\xfc\x87\x38\xbd\x97\x03\xcd\x53\xf7\x72\x96\x2a\x21\xb2\x2f\x30\x61\xee\xe5\x24\x12\x40\xee\xe5\x30\x0d\x52\xf7\x72\xe0\xc6\xc8\x3b\xea\x9a\x01\xbe\xf4\xdc\x82\x00\x73\x51\xd7\x0c\xd0\xa7\xb9\x05\xd9\x47\x88\xb9\x97\x03\xdc\x84\xf7\x72\x96\xf0\xbd\xbe\x27\x07\x9d\x32\xd7\xe4\x20\x49\xee\xe5\x40\x49\x69\x4e\x2f\xdd\x40\x59\xf4\xaa\x4e\xaa\x00\xdc\x86\x18\x1f\x45\x20\x14\x8b\x75\x9c\xb9\x44\xa6\xc9\xa5\xe6\xb1\x04\xd1\x4b\xcd\x0a\x4d\x0f\x9a\x28\xf7\x1d\xb3\xb3\xd5\x12\xb0\x0b\xa6\x17\x2e\x03\x16\x83\xd5\xe5\xdd\xe9\x4f\x24\xd1\x79\xa0\x31\x26\x39\xed\x78\x63\x24\xf7\xc3\xa2\x95\x8f\x71\x14\xb9\xe5\xc7\x0e\x6d\xb0\xfc\xd8\xa1\x63\xae\xe0\x05\xde\x32\x97\xd8\xa1\x27\xc4\x49\x1d\xe4\x10\x71\x52\x87\x9d\x37\x27\x4e\xea\xa0\x62\x72\xcb\x49\x5d\x94\xf1\x4e\x3a\xb2\xf5\x86\x31\x7e\xa1\x92\xb2\x80\x52\x5f\xd6\x04\xd9\x07\x8e\xb5\x1d\x57\x9f\x0e\x75\xa6\x73\xf7\x09\xa6\x71\xcb\x28\x3d\xb0\xd0\x5b\xd0\xd8\x0d\xe0\x6a\x70\x5d\xa7\x5f\x88\x7a\x6c\x2a\xa0\xf7\x9f\x86\xea\x43\xe7\x02\x94\x6e\x6b\xe7\x0d\xa8\x7d\x93\xdb\xbe\x02\x05\x5b\x5d\x9d\xdb\xba\x95\xb2\xdb\xce\x55\xcd\xd4\xbd\x78\xd6\x1a\x69\x72\x95\x88\xf8\x58\x22\xfd\x49\x9e\xf6\xa9\xc4\x91\x14\x39\xed\x8b\x50\x3b\x34\xcb\xbd\x9f\x94\xa8\xcc\x8e\x8b\x4d\x87\x2a\xaf\x75\x6f\xe9\x50\xf7\xd9\xbd\x9d\xb4\x47\x32\xe4\xec\x88\x07\x04\x66\x93\x4e\xf7\xb5\x7d\x41\x29\xd1\x1f\x75\x1c\x10\xba\x79\x4a\x1f\x1a\xba\x19\xd6\x1d\x25\x3d\x14\x1d\x97\x94\x20\x02\x86\xcc\x6c\x35\x33\x31\x79\xad\xf1\xdd\x71\xf3\x94\xb4\x62\x2a\xa3\xf5\xc9\xd0\xce\xb1\x87\x50\x85\x8f\xc4\x7b\x37\x3c\xab\x5a\x11\xf2\x40\x0c\xd2\x6b\x21\x30\xc0\x39\x71\x2a\x87\x41\xcd\xb5\x0b\x39\xc8\x97\xd6\x4d\x8d\xbe\x86\x5a\x90\x82\x3c\x35\x02\x6b\x0b\xbd\x46\x91\x22\xc0\x5c\xa3\x40\x0c\x72\x8d\x02\x24\x3d\xbd\x0a\xb0\x87\x00\x47\x19\x04\x12\x10\x65\x10\x0b\xa6\x97\x00\xb0\x64\xcb\x4a\x02\xe3\x27\x76\x65\x56\x88\x89\x43\x38\xcd\xe7\x58\x65\x20\x7f\x6a\x6b\x23\x5c\xe9\xe3\x0b\xfb\x24\x0f\xf4\x11\xea\xaa\x0f\xd3\xbf\x7d\xe9\x0f\xd8\xd3\x72\xb5\x87\x31\x69\x29\xa3\x20\x1f\x88\xab\x3d\x7e\xa7\xd7\x2d\x90\x92\x76\x92\xa3\xe3\xfc\x05\xfe\x34\x8b\xe0\xa1\x02\x70\x0b\x62\xb9\xb0\xc3\xe8\x5a\x73\x05\x5a\x45\x62\xf9\x1e\xca\x34\xa3\x9c\xcf\x69\x70\xdf\x03\x09\x30\xfe\x47\x87\xe0\x43\xf5\xae\xc9\xd9\x09\xcb\xe3\x5b\xf5\xb8\xc2\x21\xd8\xb7\x79\x93\x53\x17\x75\xf8\xfa\x46\xf5\x56\x7c\xf7\xde\x52\x77\x45\x7b\x2a\x0b\x22\x28\x52\x8d\x49\x47\x01\xc5\x38\x98\x42\x83\xde\x53\x0d\x05\x2c\x9d\x95\x05\xe9\x03\x8e\xfa\x22\x81\x7c\xd9\x43\x70\xd0\xa7\x07\x91\xb0\x84\xd2\x73\x48\x48\xea\xcd\xe1\x0e\x14\x45\x95\x1d\x86\xf8\x04\x32\x01\x1c\x13\xc5\x61\x17\x6b\x24\x00\xac\x83\xec\x41\xb1\x57\x66\x0f\xba\x87\x69\xb2\x07\x3d\x04\x88\xcd\x8e\x43\x80\x91\x8d\x1e\xd6\xac\x95\xab\x3e\xe4\x6b\xe5\x0a\x92\x69\x59\x2b\x43\x4d\xac\x00\x8a\x1d\x76\x65\x5a\x75\x1e\xae\x14\x54\x96\x2f\xec\xae\x84\x68\x15\xfe\x00\x00\x44\x67\x3f\x50\x18\xf6\x85\x99\x4a\x6a\x4a\x37\xe0\xf5\x2d\x9f\x66\x3b\x82\x9f\xd5\xb5\x39\x62\x81\x6e\x32\x2b\xb2\x7d\x7f\x4f\xc2\x0a\x1b\x70\xa3\x96\x59\xd0\xb0\xdf\xbb\x3b\x4e\x40\x72\x80\x60\xd4\xab\x5a\x41\x14\x2b\xb1\xb8\x21\x60\x0f\x94\xaa\xf7\xcf\xe9\xeb\x57\xd0\xa6\x19\x7d\xff\xea\x10\x70\x0c\xc6\x01\x62\xe8\x7c\x60\xca\x59\xc9\xeb\xce\x90\xec\x90\xd3\x79\x5d\xdb\x3d\xbd\x1e\x2a\x58\x97\xf1\x14\x8a\xe9\x56\x7c\x20\xcb\x8e\xed\x0e\x37\x11\xab\x99\x7c\xe7\x47\x30\xe0\xfb\x6c\xaa\x23\x3e\x82\x7e\x53\x11\x40\xa2\x01\x13\x05\x19\x28\xc8\x95\x0d\x31\xa7\x6f\x98\x24\x0e\xd9\x31\x42\xf4\x91\xfa\x50\xa6\x2f\x1d\x80\x0e\x43\xcd\x64\x5a\x3f\x90\xd7\x43\x80\x8e\x33\x97\xca\xb4\xbe\x60\x39\x41\x80\x76\xb5\x86\xe3\x8f\x2a\x9b\xd3\x25\x61\x07\x41\x34\x22\x1c\x34\xdd\x0d\xff\x00\x71\x57\xf1\x39\x2e\xc5\x6a\x30\xb2\x02\xdc\xc9\x94\xf3\xb8\x9a\xa9\x39\x0c\x9b\xdb\x6a\x6e\x47\x52\x86\x9a\xdd\x01\x9d\x67\xaa\xfc\xa1\x04\xe8\x20\x0e\x31\x26\xb5\x09\x2c\x91\x69\xed\xc8\x95\xe8\x9b\x3b\xef\xdf\x3c\x3b\x33\x1c\x08\x88\xe5\xa4\x36\x3c\x88\x90\x9c\x58\xfb\x27\x12\xa2\xe4\xf6\x0e\xa6\xbd\x91\xf7\x9d\x28\xaf\x75\x90\x04\x8d\x69\xad\xc0\xf0\xd5\x22\xd6\x76\xc5\x3d\x14\xb8\x00\x21\x11\xdd\x24\xd0\xb2\xef\x57\x97\xe6\x69\x41\x98\x09\x00\xd0\x47\x17\x43\xdd\x37\xf2\xac\xee\x00\x16\x62\x00\x68\xc4\x1d\x43\x84\x4b\xf3\xbc\x38\x34\xf7\x92\xb8\x55\x4c\x14\x40\x8d\x26\xce\x81\x4b\xdb\x83\x62\x42\x60\x9a\x31\x35\xa6\x6e\x45\x4f\x01\x74\x61\x03\x05\xa1\x0e\x5e\x04\x66\x0a\x43\x4c\x1a\xce\x17\x56\xa4\x15\x90\x8e\x88\x51\x28\x36\xba\x7c\xd2\x1c\x38\x55\x5b\x0f\xfb\x24\xd3\xf1\x43\x6b\xe5\x58\x1f\x0e\x74\xf6\x87\x82\x34\x62\x47\x75\x43\x69\x03\xc8\xae\x97\x0d\xed\x43\x75\xd9\xd8\xd9\xae\xbd\xe7\x7d\xcb\x50\x07\x93\xbe\xa5\x1b\xc1\xcc\x6b\x8b\xfd\xf6\xec\xa9\x6a\xdd\x22\x7c\x45\xf0\xbd\x7e\x80\x19\xd3\xf4\x41\x66\x95\x9e\x28\x00\xf0\x65\xcd\x63\xf0\xe4\xb0\xdf\x15\xa7\x59\xe6\xb4\x26\x95\x60\xdc\x0a\xe1\xbd\x39\xc2\x74\xd0\x45\x9d\x84\x1d\x47\xd5\x8c\x8d\x4c\x04\x47\x10\xcb\xd7\x07\xd3\xda\x71\x66\x4f\xa6\xcd\x27\x28\x8b\x9b\xf1\xbc\xc9\x35\xa8\x8f\x20\xad\x31\x80\xad\x40\x00\x74\x39\x31\x02\x88\x1c\x1c\xcb\xa6\x52\x39\x78\x88\x20\xea\x51\x84\x1d\x30\x10\xd5\x07\xcb\x61\x67\x8f\xc0\x2e\x69\x57\x3a\x1c\x13\x0d\xae\x79\xa1\x4f\x35\x0f\x81\x97\x4e\x2f\xcc\x19\x0e\xa8\xc8\x02\xa2\x5f\x7a\x4b\x77\x15\x44\xdf\x3d\x43\xfa\x24\xce\x49\xc9\x81\x84\x2a\xe5\x68\x2c\xd3\xce\x49\x09\x2c\x85\xb6\xcf\x24\xa0\x76\x3b\x4c\x92\x8c\xf6\x49\x09\x2d\xca\x76\x92\x94\x55\x13\xe7\x2a\x09\x71\x4e\x4a\x62\x05\x26\x27\x25\x7b\x0a\xe6\x6a\x83\x4d\xd2\xd2\xfd\x9a\x64\x76\x36\x8b\x2d\xf3\x52\xa5\xec\x45\x03\xb8\x34\xf3\xde\x4e\x56\x8d\xda\xa4\xed\xe1\x6a\xdd\x2c\xfa\xc0\xd7\x63\xac\x62\x21\xa3\x70\x0f\x30\x35\xc4\x14\x12\x5c\xfb\x84\x81\x74\x32\x8f\xd0\x61\xb9\xe4\x4d\x58\xd8\xd2\x0a\x08\x19\x45\x1c\x1d\xe2\x46\x86\x69\xcd\xbe\xfb\x32\x4d\xa6\xc1\x0e\x56\x63\x7b\x98\x12\x98\xc5\x74\xf2\xfb\x99\x3e\x72\xdf\x4f\x0e\x15\xc8\xb4\x42\x62\xd1\x4b\xbc\x48\xb3\x05\x9d\x6c\xb2\xf3\x66\xb2\x25\x12\xa0\x5b\x2b\x3f\x22\x93\x2d\xc1\x11\x5e\xb4\xdb\x4a\x66\x56\x5f\xe3\x98\x89\xb1\x4f\x60\x97\x0e\x75\xec\x29\x34\xa6\xc0\x4b\xa7\x6d\x64\x0a\x49\x52\x93\x6e\xef\x28\x88\x9e\x42\x50\x81\xe5\x33\xa5\x20\x5a\x78\x03\xf9\xa8\xcf\xd4\xa1\xc2\xb0\x6f\xcd\x57\xd7\x05\x51\xe8\x81\xa9\xbe\x4a\xff\xa1\x1b\x78\x02\xf0\x2c\x86\x86\x7c\xaa\xbd\xd0\xab\x63\x3e\xd5\x0e\x05\x20\xe1\xcf\x62\xe5\x33\x07\x77\x80\x6b\x9d\x84\xf1\xaf\xb5\xc9\x00\xdd\x0f\xce\xac\x8d\x1e\x60\x58\x90\x5d\xc0\x21\xbb\x33\x38\x4e\xaa\x2d\xc8\x10\x70\xb4\x2a\x85\x08\x5a\x8f\x82\x64\x6a\x1e\xed\x12\x54\xaf\x59\xae\x8f\x60\x87\x70\x34\x7c\xe6\x6e\x3f\xc4\x30\xd6\xee\xf6\x43\x8c\x77\x3d\x63\x9c\xc9\x87\x41\x06\xe0\x36\x02\x90\x49\xa9\x9f\xe8\x02\xe0\xd9\x0a\xa0\x09\xb6\x78\x80\x9f\x9a\x68\x8b\x1a\x50\xdd\x2a\x9f\xa8\xb4\xaf\x60\x57\x36\x24\x4b\xbe\xd8\xb7\x45\x0f\x14\xd8\x51\xe8\x5b\xf7\x0e\x77\x27\x3a\x38\x71\xeb\x52\xe1\x21\x16\x42\x9e\x2e\x41\xc8\x17\xe3\xca\x88\xf5\xb4\x6a\x79\xfe\xe6\xdd\x6b\xe4\x10\x06\x08\xf2\x4d\xa4\x1b\x30\x14\xd5\xee\x7b\x76\x54\xb8\x0e\x35\xc0\x72\x07\x1f\x2a\x68\xcb\x51\x7c\x57\xe5\x58\x5e\xe2\xd0\xae\x6c\xce\x2a\xad\x30\xc7\x38\x5c\x00\x93\x58\xb0\x1d\xd1\x16\x94\x1b\x10\x1f\x90\xd4\x01\x2e\x11\xc1\x0e\xe7\x5a\x97\x4c\x1d\x68\xc0\x4e\xb1\x2e\x17\x63\xc5\x4f\x43\xd8\xbc\xd6\xe5\x82\x5c\xeb\xee\x23\x44\xd5\x09\x03\xdf\x52\xce\xc7\x88\xe4\x28\xe7\xbb\x12\xaa\x1d\x3f\x62\xb0\x06\xd6\x65\xa5\x5b\x00\x23\x62\x1d\x9a\x03\x0f\xf2\x58\xd1\x02\xa3\xf2\x9f\xbd\x7b\x72\x72\x4a\x01\xb5\x65\x32\xdd\x05\xd3\x90\x82\x19\x53\x33\xbe\x07\xd5\xf6\xb6\xc5\xc8\x07\x9d\xce\xb6\xe3\x1d\x92\xa3\x8d\x95\x09\x01\x12\x07\x5c\xb4\x51\x75\xfb\xdf\xaa\x26\xe9\xc9\xba\xcb\x64\x29\xcc\x29\x95\xec\xe4\x62\x30\xcd\x9d\xf1\x6c\x41\xde\x7a\x96\xb3\x5c\x00\x0d\x9e\xac\xb8\xd2\xfb\xa7\x14\x01\xb5\x09\x76\x31\xc4\xcf\x16\xec\xab\x3e\xa5\x19\x82\x03\xf8\x59\x4b\xe9\x05\x32\xb5\x94\x5e\x51\xc7\x19\xb1\xe0\xec\x21\x96\x16\x46\x20\x20\x89\xe5\x01\x56\xf8\x9a\x98\x1e\xc0\x60\x76\x46\xa3\x63\xec\x61\x19\x14\x02\x6c\x7b\x9d\xdd\xe8\x2b\x78\x40\x96\xeb\x72\xc6\xe2\xb4\x75\xdb\x92\x99\xbc\xf6\xcd\x4a\xc1\xee\x1f\x88\x47\xac\xa0\x65\x43\x3c\x62\x31\x6d\xd6\x90\x3e\xe0\x9b\xb4\xa0\x42\x43\x96\x14\x95\x5f\x92\x78\xe5\x82\x26\x1f\xc6\x24\xa2\xa8\x68\x51\x43\x00\x60\x82\xfb\x40\x5f\x9a\x80\x0e\x35\x16\x44\x0c\xd6\x07\xe3\x8b\x2b\xc8\xd4\x18\x5f\xdc\x31\xe4\x6a\xb2\x0f\x21\x57\x53\x1d\x92\xf4\x79\x53\xc1\x68\x1f\xa8\xa7\x2d\x98\x92\x1b\x0b\xd2\x07\x08\x31\x7e\x42\xb3\xad\xd3\x3a\x68\xb7\xbb\x70\x1c\x00\x9a\xb3\x70\x08\x1e\xfa\x40\x3c\x65\x05\x4d\x1a\xe2\x29\x0b\x69\x72\x82\x07\x2d\x26\xef\x93\xc2\xac\x6c\xc8\x75\x61\x50\xc9\x1a\x1a\x54\x0a\x7a\x60\xbd\x8b\x99\x68\x88\x89\x43\x23\x61\xe4\x81\x3a\x28\x99\xc6\x80\x12\x1d\xf8\x40\x1c\x62\x41\xaf\x6c\x28\x00\x88\x2f\x9d\x12\xc1\x9f\xe4\x43\x91\x2a\x27\xc4\xcf\x3a\x49\x1d\x10\x27\x14\x4a\x3c\x10\x77\x15\xbc\xc3\x05\x11\x46\x9c\xec\x5f\x41\x02\x01\x80\xc4\xb1\x80\x63\xf0\x0f\x24\xfe\x31\x58\x86\x1a\x0a\x80\xcf\x5a\xf2\x17\x08\xd1\x92\xbf\x62\xae\x49\xbb\x1b\x79\xb1\x11\x8a\x5c\xc4\xae\x35\xae\xc3\x40\xf7\xc1\xc2\x4a\x09\x96\x6b\x49\x04\x1e\x14\x4a\xb6\xf3\x10\x24\x50\xa4\xf5\xd2\xa4\x04\xbb\xd8\x29\x82\x3b\x8e\x96\x81\x3d\x16\xed\x87\x1d\x91\x91\x16\x1d\xcf\x3a\x22\x47\x2d\x5c\xd2\x2e\x16\x1d\xc1\x95\xf6\x54\x4e\xdb\x7c\xb9\x0f\xa5\x18\xff\x22\x6c\xa1\x4e\xa7\x03\x99\x3f\xa3\x80\x0f\xd6\xc6\x3d\xde\x95\x38\x06\x24\x8b\x71\x0f\x1d\x35\x54\xad\xb5\xf8\xa5\x1c\x2b\x7d\x9e\x09\x53\xd2\x7a\xa7\x31\xd5\x10\x33\x35\x24\x8c\x4c\x0d\x20\x80\x39\x99\xeb\x23\x55\x29\x00\xa8\x49\x4e\x60\x60\x22\x7f\x68\x45\x55\x86\xb9\xd9\x5a\x2c\x60\x5e\xd1\xa7\x19\x41\x1a\xd3\xf8\xd4\x70\xe0\xd2\x58\x10\x90\x14\xe4\xc8\x67\x57\xa6\xf5\x09\x8f\x58\x8d\x1b\x22\xb3\xa1\xf7\x1f\xb4\x47\x31\xf0\xbd\xf6\x28\x86\x94\xfd\x92\xa3\x18\xc0\xab\xb8\x98\x72\x7d\x92\x96\x00\x84\x77\x58\x57\xae\x62\x4e\xa3\x3a\x43\x07\xae\x62\x5e\x94\x42\x89\x54\x17\x78\x7a\x12\xd3\x31\xc1\x08\x88\x06\xec\x49\x40\xcb\x0f\xee\x8a\x2c\x36\xf0\x15\x59\x6c\x64\x29\xc6\x4d\x01\x34\xaf\xab\x98\x5b\x86\xf0\x81\x84\xb5\x0c\x18\xda\x08\x49\x73\x8d\x25\xc3\xce\x76\xb7\x6e\x9d\xb9\x66\x0f\x47\xb3\xa9\x8e\x9f\xca\x16\x76\x5c\x67\x1a\x0f\xec\x2c\x7a\x6b\x09\x36\xec\x57\x5a\x22\xc5\xe0\xd1\xf8\xd1\x68\xba\xe0\x22\x26\xf2\xf5\xdb\xe2\x82\x4d\x3e\x1a\x3f\x6a\x28\xdb\xf8\x51\x43\x92\x5e\x32\x02\x00\xbd\x63\x04\x15\x50\x0c\x28\x90\x62\x8c\x15\x86\x32\xae\x40\x24\xbd\x2b\xc6\x74\xb3\x06\xe0\x76\x66\xde\x6f\x07\xe5\xf9\xa3\x39\xcf\xec\x63\xae\xd1\x19\x63\x00\x98\x57\x44\x06\x70\x10\x7d\xc5\xe4\x9b\x1a\xf7\xf0\x39\x7d\x60\x03\x6b\x04\x4e\x95\x99\x35\xcd\xea\xb8\x32\x3a\x24\x60\x19\xc6\xe4\x9e\x80\xde\xb3\x45\xcc\x63\x7d\x36\xbf\xbf\x7b\x40\x32\xad\xfd\x46\x0f\x33\xda\x81\x59\x44\x27\x3e\xba\x4a\x81\xa0\xde\x95\xab\x14\xc0\xa0\x92\x40\x10\xc8\x01\xf4\x62\xa1\xb9\x1d\x78\x45\xef\xf0\x99\x8b\x78\x1f\x5b\xeb\x1a\x4c\x9a\xd6\xba\x06\x93\xda\xf5\x51\xbd\xa2\xd1\xe5\x80\x30\x2d\xc1\x05\x43\xd4\x12\x5c\x30\xac\xb6\xf5\xd2\x30\xbc\x6d\xc4\xa4\x70\x6a\x80\xb1\xe1\xac\x3d\xaf\x3e\x5a\xfc\x09\x9c\xf1\x35\x9b\x7e\x8d\xa7\x4a\x2a\x09\xd0\x2f\xe4\x50\x16\x3c\x02\xaf\x29\x40\xc8\x87\x6b\x96\x9a\x69\x02\x27\xbb\xe4\xc9\xec\x01\xb8\x93\xff\x42\x00\x60\xf5\x01\x0c\xcd\x94\x87\x00\xc9\xf4\x4d\x02\x7c\xbd\xf3\x17\x77\x84\x45\x73\xae\xdd\x11\x16\x4d\xfa\xa5\x35\x44\x82\xa9\xaf\x5b\x43\x24\x4a\xbd\xb6\xea\xb8\xe6\x94\xd9\xae\x39\x53\xf1\xff\x25\xe4\x97\xd6\x70\x09\x96\xb8\x6e\x0d\x97\x90\xdf\x37\xe6\xe4\x06\x24\xe2\x8d\x79\xc5\x73\x17\xde\x31\xb8\x31\x27\x36\xa0\x68\xdd\xd0\x37\x82\x05\xb7\xfc\xea\xf6\x58\x70\xc1\x8d\xdb\x63\x41\xf3\x9b\x19\x79\xe4\x77\x1f\x00\x4f\x0c\x40\x10\xea\x57\x25\xf8\x61\x77\x72\xa3\xdf\x25\x85\x54\x4e\xbe\x86\xe2\x72\xf2\xb5\xa0\xcb\x8d\x8e\xe7\x85\x21\x30\x6f\x48\x18\x1c\x68\x94\xb9\x22\x17\x03\x2f\xfd\xda\x1a\x02\xe8\x71\x6b\x08\x0e\x11\x6a\xf6\x8c\xf0\xfc\xc6\x4d\x49\x76\x88\x70\x41\xe5\x86\xbe\x62\xbc\x07\x00\xd2\x44\x51\xca\xaf\xad\xa1\x01\x9a\xb6\x86\x26\x05\xa8\x39\x2d\x8b\xe1\x80\xe3\xa6\xa1\x6d\xd8\x01\x08\x19\x0d\x28\xea\xca\x96\xa3\x37\xd7\x2e\x17\xff\x46\xb6\x75\xa2\x9a\x5b\xb2\xad\x13\xe9\xdf\x9e\x98\xfd\xd2\x04\xf3\xf5\x86\x49\xa4\x7f\xa3\x53\x49\xb4\xea\x96\x02\xf6\x01\x43\x17\x30\x86\x7c\xfd\x3d\x24\xf1\x71\x85\x1b\xd0\xc9\x7e\x73\x99\x47\x8c\xdb\xad\xcb\x3c\xa2\x96\xdf\xcc\xeb\x40\x70\x8d\xf6\xd6\x3c\x0f\x04\x7e\xa9\xbf\xb5\x62\xd8\x88\xce\xde\xb6\xc6\x52\xb0\xd9\x6f\xad\x51\x10\xb4\xbc\x6d\x8d\x82\x60\xbb\xdf\xc8\xf6\x51\xa4\x6f\xc9\xfe\x11\xd3\x4a\x67\x02\xe2\xc8\x94\x20\x85\x60\xc9\xdf\xa9\xd3\x0b\x1c\xca\x7c\xb5\x20\xa2\x35\xbf\x53\xc3\x26\x9c\x35\x7c\xb5\x20\x0c\x70\xf4\x92\xbd\x0f\x08\x7a\xc9\x16\xc9\xdf\x4d\x14\x5e\x30\x73\x7f\x25\x69\x41\xd0\xaf\x8c\xbc\xa9\x00\xab\xed\xef\x8c\x97\xbf\x64\x69\x3d\x6b\xc5\x0e\xfb\x9d\x58\x22\xf7\xe0\x5b\x63\x88\x84\xb4\x3b\x38\xd0\x00\xed\x73\x8a\xa5\x1b\x43\x06\xac\xb7\x5f\x8d\x1d\x03\xc6\xd2\x7a\xef\xbb\x0f\x5c\xf8\xb5\x35\x50\xd0\x18\xe3\x11\x06\x87\xfd\xbf\xb7\x06\x4e\x30\xd1\xd7\xd6\xc0\x89\xa1\xf8\x7a\xfd\x87\xea\x17\x54\x70\x5d\xe8\x74\xe2\x2d\xff\x11\x2c\xc3\x49\x53\xc0\x61\xac\xcf\x82\x3b\xb6\xcd\x6e\x16\x25\xaf\xab\xe8\xe7\xf7\x6f\x5e\x6f\x2f\x62\x5e\x31\xff\x1f\x77\x5e\x0c\xd1\x74\x36\xbc\xd0\x53\x51\xf9\xfe\x41\x1f\xbc\xd3\xc1\x47\xc9\x8d\x01\xa7\xec\xb0\x0e\x8b\xe0\xce\x6b\x2a\xb6\x56\xd5\x3c\x4b\x6a\xef\xe8\x2a\xe6\x6b\x3c\xaa\x67\x59\xb5\xb1\x21\xfe\x6e\x7f\xfe\x9c\xcd\x45\xed\x27\x6c\x12\x37\x79\x7d\x7f\x4f\x9b\xc6\x59\xdd\xf0\x62\x8d\x6d\x6c\xb0\xed\xcf\x9f\x59\xf5\xaa\x4c\x9b\x9c\x1d\xb3\xd1\x5d\x8a\xe8\x23\xb6\x5c\x1e\xbd\x19\xff\xc1\x92\x7a\x3b\x65\x93\xac\x60\x6f\x79\xb9\x60\xbc\xbe\xf5\xeb\xd0\x33\x9f\x78\xe1\xdd\x55\x9c\x37\x6c\xb4\xde\x5b\x06\xd0\x88\x32\x4a\x7c\xee\x17\xfe\xfe\x20\x08\xb6\x65\x69\x41\x98\x45\xb9\x5f\x06\x47\xf5\x36\x2b\x92\x32\x65\xbf\xbe\x7a\x19\xcd\xfc\x32\xcc\xf0\x9b\x58\x7d\xd3\xa7\xdf\x54\x51\xee\xc7\xc1\x91\x6a\xf7\x5a\x42\x5a\x2e\x9b\xf6\x85\xdd\x56\x3e\x0b\xb6\xab\x92\xd7\x7e\xb0\xcd\x59\xda\x24\xcc\xf7\x75\x57\x81\x4e\xf2\x93\xfa\x9c\x9d\x17\x17\x17\x91\xb7\xe1\x6d\x16\x9b\xde\x91\x17\xd6\xcb\x20\xbc\x5b\x06\x4b\x5d\x43\x2e\x6a\x10\x0d\xaa\xa3\xf3\x8b\xb0\x88\xce\x2f\x8e\xba\xeb\x9b\x94\xfc\x34\x4e\x66\xa4\x26\xd3\xb4\x7e\x14\x45\x6c\x3b\x67\xc5\xb4\x9e\x1d\xd7\xdb\x8b\xa6\x9a\xf9\x62\x10\x37\x59\x30\x2a\x30\xc9\x82\x65\x10\x84\xc5\x76\x53\x54\xb3\x6c\x52\xfb\xde\xb9\xb7\x59\x6f\xff\x51\x66\x85\xef\x79\xc1\xa6\x77\xe1\x05\x61\xc1\xae\xd7\xde\xb1\xe9\xe9\xcd\xc2\x2f\x64\xd6\xbd\x17\x84\xde\xd4\x0b\x96\x8a\x8c\xcf\xcf\x80\x8e\x71\x58\x21\x1d\x9b\xe8\xbb\xf3\xff\xfb\xa9\xb7\xf5\xe9\x66\xff\xd9\xc5\x77\xd3\x70\x11\x7d\x77\xfe\xa9\x39\x39\xe8\xf5\xb6\x3e\x35\x27\x3f\x3e\x7b\x76\x21\x92\x4f\x31\xf9\xec\x99\xc0\x31\xe4\x9d\x98\x3e\x78\x1b\x7f\xbb\xf1\x36\xd9\x76\x32\x8b\xf9\xd3\x32\x65\x4f\x6a\xbf\x17\x6c\xd7\xe5\xfb\x5a\x6c\x48\xfd\xfe\x9e\x48\xc0\xa6\xfc\x69\x5c\x31\x3f\x10\xd4\x34\x54\x4c\x05\x83\xda\x45\xf9\xfd\xde\x60\xe7\x9f\xbe\x53\xe2\xd6\xee\xee\xe0\x70\x2f\xb0\x2b\xea\x07\x5b\xbb\x7b\xc3\x41\x6f\x73\x6f\x77\x77\xb8\xf7\xed\xb5\xce\x68\xad\x6b\x7a\x5c\xcc\xf8\x17\xdb\x70\x75\x2f\x61\x7e\x1d\x12\x0e\x31\x93\xe1\xbc\xbe\x58\x06\x81\xc6\x5a\x84\xa9\x49\x34\xe1\x24\x58\x2e\x05\x8d\xc7\x9a\x93\xab\x24\x5e\xb0\xa8\x6b\x5a\xe9\xcf\xc6\xe1\xe4\xc1\x02\x5b\x73\xda\xc8\x8c\x4a\x4e\xe9\xc2\xdf\xdb\x0d\xc2\x32\x2a\xfc\xfe\xce\x5e\xb0\xfd\x0b\xcf\xea\x78\x9c\xb3\x30\x03\xc8\x7e\xb0\x8d\xe4\x39\x61\x82\x21\x78\x18\x47\x85\xbf\x33\x08\xb6\x7f\x6c\x26\x13\xc6\xcd\xe8\x56\x48\x1e\x51\x66\x11\xa1\x80\x00\x81\xc4\x23\xc1\x68\x1c\x72\xc3\x58\xe6\xa4\x58\x18\x64\x65\x47\xe5\x76\x12\xe7\xb9\x2f\xb2\xc2\x3b\xcc\xc2\x3a\xab\xd1\x7a\x7f\x19\x84\xf0\x4d\x59\x24\xcc\xf7\x26\x59\x91\x55\x33\x8f\xd0\x37\xb8\x2b\xb6\x59\x91\xfa\x31\xfc\x0d\x04\xe3\x2f\x0b\x7f\xa7\x1f\xf8\x55\x58\x06\x61\xb5\xbd\xe0\x65\x5d\xd6\xb7\x0b\xb6\xfd\xf9\x9a\x67\x35\x25\xa8\x24\xc9\x5a\x56\x54\x75\x5c\x24\xac\x9c\xac\xc5\x1b\x1b\x3e\xb3\x5b\xb9\x0d\x9f\xf9\x2c\x90\x2d\x91\xfd\xd2\xe0\xb0\xf0\xbb\x28\x6d\x49\xcf\x9a\x48\xc1\x68\xbd\x17\xd6\x4a\x0a\x45\x57\x65\x96\xae\xf5\xe4\x58\xc4\x7e\xe1\xf7\xf7\x76\x02\x31\x1e\xf8\x7b\x37\x10\xb2\x0d\x7f\xef\x05\x44\x58\xc5\xdf\x2c\x66\xe9\x10\x29\xe9\xe3\x29\xa0\x17\x45\x91\x20\x4e\x39\x59\x7b\x15\x2f\x8e\xc5\x80\xbc\x8a\x17\x23\xd9\x2a\x2c\xdf\xaf\x2c\x26\xcc\x26\x7e\xd1\xe4\xb9\x90\x42\xf7\xf7\x7e\x11\xb1\x70\x4b\x88\xa4\x67\x12\x45\x4f\x28\x1c\xd5\x22\xd8\xce\x8a\x94\xdd\xbc\x99\xf8\xde\x79\x01\x31\x40\xd7\x04\x59\x2f\xbc\x20\x08\x54\xfb\xa1\xfb\xc5\x51\x36\xf1\x4d\xc3\xd6\x75\xc3\x58\x50\xcf\x78\x79\xbd\x26\x1a\x77\x76\xbb\x60\xa7\x9c\x97\xdc\xc7\xa3\xf6\x35\x76\xb3\xe0\xac\xaa\x44\xff\xe6\x4d\x55\xaf\xb1\xac\x9e\x31\xbe\x36\x66\x6b\xa2\x91\x6b\x25\x5f\x8b\xf5\x64\xf5\x02\xa8\xa2\x29\x70\xc5\x49\x49\x1d\x35\xf4\xab\xde\x9e\xc5\x82\x4a\xaa\x61\xf5\xf6\x94\xd5\x3e\x13\xb3\xb1\x12\x3f\x42\x4e\x84\x39\xf7\xf5\x00\x24\x3e\x0b\x63\x3e\x6d\xe6\xac\xa8\xab\xb0\x01\x56\x0e\xb6\x93\xb2\xa8\x6a\xde\x24\x75\xc9\x83\xa5\xc4\xe4\x86\x1f\x23\x29\xf3\x13\x88\xa0\xe6\x33\x93\x13\xde\x91\x4f\x47\x72\x01\xe4\x21\x83\x48\x2d\x62\x72\x8e\xd6\xfb\xe1\xb5\x9c\xa8\xa3\xf5\x5e\x98\x94\xc5\x24\x9b\x36\x32\xaf\xb7\x5c\x06\x61\xee\xf3\x50\x2c\x03\x62\x2d\xa0\x2b\x5c\x48\x96\x2c\x3f\x89\xc8\x3c\xb2\x49\x63\xf8\xe2\x1d\x9b\xe4\x2c\xa9\xef\xef\xd7\xe5\x2f\xd3\x31\x49\xa7\xf5\xbe\xa0\x6b\x2b\x77\xbb\x9a\xc5\x73\x0b\xa5\x8b\xed\xde\xf2\xf2\xe6\x56\x61\xf5\x8e\x6a\x7e\xab\xa8\x7a\x12\xd7\x84\x28\x0e\x5f\xb5\x6a\xf3\x05\x7a\x78\x7e\x61\xc9\x86\x65\x10\x04\xe1\x7a\x6f\x99\xc4\x75\x32\x33\x33\x66\xbd\xbf\x5c\xfa\xc1\x71\xab\x8c\x91\x3b\x89\x71\x5a\x9e\x0b\x56\xba\x38\xe2\xb0\xb8\x6e\xc7\x8b\x45\x7e\xeb\xf3\xb0\x56\xfa\x48\xc1\xae\x7d\xcd\xfd\xe3\xac\x48\x25\x8a\x60\x97\x40\x2d\xf0\xc5\xc6\x46\xee\x97\x61\x61\x3a\x14\x84\xe5\x32\x90\xa8\xa2\x02\xc3\x41\xb6\xc6\x60\x56\x1d\x3f\x57\x3c\x53\xb1\xfa\xad\x2a\xe7\xcd\x84\xea\x5e\x64\x8d\x12\x32\x01\x6a\xfb\xfc\x39\xaa\x43\x26\x78\x21\xac\x49\xd9\x8d\x21\x88\xdf\x74\x97\x7c\x2c\xa1\x53\x0b\x3a\xea\x5c\x93\x74\x65\xf7\xf7\x9d\x5f\xf9\x8a\x1d\x05\xd5\x16\x96\x48\x01\xa1\x14\x16\x54\xba\xd5\x61\x11\xf2\xb0\x0c\xb3\xb0\xc2\xfc\xe4\x48\x33\x2d\x23\x0b\x46\x1d\xdc\xdf\xe3\x74\x2b\xe2\x39\x8b\xbc\xa7\x55\xf5\xfe\xb6\xa8\xe3\x1b\x90\x12\x5e\x98\x6c\x73\x16\x57\x65\x11\xd5\x61\xb6\xb1\xe1\x27\xdb\x93\x2c\x67\x51\x16\x84\x25\xa4\xaa\xb2\xe1\x09\x8b\xc4\x4a\x01\xe9\x45\xde\x4c\xb3\x22\xaa\x82\xb0\x53\x4c\x14\x1b\x1b\x9d\x70\x0e\x1f\xe7\x59\xc1\xa2\x22\x4c\xb6\x93\x32\x6f\xe6\x45\xc4\x83\x30\x11\x04\x7d\xc5\xaa\x2a\x9e\x32\x3f\x08\xa1\x51\xdb\x49\xbc\xa8\x1b\xce\xde\xd7\x71\xf2\xe5\x8c\xc7\x09\xdb\xd8\x58\x91\xe1\x3b\x82\x17\xe5\xb2\x10\xbd\x44\x26\xbe\x63\x13\xc6\x59\x91\x28\xc1\x28\xc8\xb1\x36\x8b\xab\xe2\x1f\xf5\xda\x98\xb1\x62\x2d\x2b\xb2\x3a\x8b\xf3\xac\x62\xe9\xda\xd6\x5a\x25\xe4\xa6\x1f\x58\x18\x82\x9e\x2c\xf5\x34\xb7\xb2\xa5\x9f\x04\x61\x1c\x84\xc9\x52\x08\x78\xbf\x8e\xe2\x60\xa5\xe4\xb2\x78\xba\x26\x33\x96\x48\xb1\xa8\x0e\x6b\xc2\x8e\x05\x4c\x9d\x2a\x8a\x0d\xb6\xaa\xba\x22\x14\xa3\xe2\x09\xd6\xde\xf9\xff\x9f\xbd\x77\xe1\x72\x1a\xc7\x16\x46\xff\x4a\xe2\x6f\x96\x5b\x9a\x28\x21\x81\xa6\x1f\x0e\x22\x17\x0a\x7a\x9a\x33\x14\x70\xa0\xe8\xc7\x84\x0c\xcb\xe5\x28\x89\x1b\x47\x0e\xb6\x52\x0f\x2a\x3e\xbf\xfd\x2e\x6d\x3d\x2c\xd9\x4e\x01\x7d\x66\xbe\xef\x9e\x7b\xef\xea\xd5\x54\xac\xb7\xb6\xa4\xfd\xd2\xde\x5b\x3a\x1d\x3e\xd4\x5a\xcd\x9c\xdf\x83\x20\xea\x05\x51\x10\x10\xb7\xf0\x40\x95\x96\xeb\x3e\xb3\xbf\xa2\xe0\x41\x52\x96\xbd\x94\xef\xf6\x42\x0a\x45\x9d\x34\x41\x16\x96\x6b\x1a\x86\xc8\x6f\x30\x88\x82\x81\xcd\x1d\xd8\x2f\xb5\xec\x98\x34\x0b\xf7\x74\xbe\xda\x89\x15\x29\x47\xe5\x26\xbf\x7c\x03\x5b\x4f\x72\xa5\xed\xb3\x00\x43\x96\x18\xb3\x0f\x15\xd5\x2e\xd5\x48\x32\x50\xc2\x98\xe6\xb2\x54\xd6\x34\x35\x0c\x45\x18\x76\x63\x71\x06\x8c\x4d\x61\x8a\x8d\x4a\xb1\xcc\xf7\x02\x13\x99\xce\x29\x1a\x13\xdb\x02\x46\x1c\x63\x23\x37\xf1\x51\xb9\xcb\x52\x81\xee\xbc\x2b\x66\xef\xf8\x1d\x29\x34\x9d\xc6\x62\x33\xda\xc6\x57\xc8\x42\x60\x78\x8f\x8c\x31\x49\x74\x4e\xca\xeb\x9c\xc1\x5d\x12\x6b\x51\x05\x93\x8c\x6a\x4e\x3b\xc1\x3a\x6d\xea\xe0\x22\xe1\xb2\x33\xb9\x1d\x67\xc1\x96\x33\xef\x6b\x74\x9e\x67\x4b\x24\x70\x24\x6a\x4c\xb6\x3b\x56\x7b\x5d\xc4\xd7\x33\xff\x53\x55\xd5\x85\xe3\x51\x99\xa5\x09\x43\x25\x49\xf0\x68\x1b\xef\x5c\x81\xab\xc6\xff\xe5\x60\x32\xe0\x24\xa7\x41\x2f\x18\x20\xf9\x4f\x81\x75\xbd\x61\x86\x07\x41\xef\xd0\x0b\xe4\x5a\x15\x12\xda\x30\x6d\x55\x31\xa5\x3b\x94\x5b\x86\xfc\xce\xbb\xe5\x9d\x35\x09\x7a\x01\x96\x02\x89\xaa\x2e\x19\x41\xb5\x69\x86\x93\x9a\x75\x97\x32\x96\x58\xe8\xc2\xe6\x58\xec\x51\xf0\x30\xc0\x83\x1d\xca\xf1\x80\x0d\x82\x77\xbc\x17\x0c\xd2\xc1\x1e\x05\xff\x0c\x0c\x73\x21\x47\xa6\xf2\xa5\x98\xa1\x44\xba\x77\x3c\xc0\x72\xc3\x19\xe2\xe9\x9e\x28\x39\x46\x7d\x94\xfc\xfd\x88\x6a\x3c\x00\xbb\x26\x78\xc7\xdf\xf1\x40\x75\x1b\xe8\xed\x2d\xb1\xed\xa0\xde\xda\x66\xb7\xb3\x8a\xc4\x15\x2a\x11\xa0\x22\x2c\x19\x27\xc3\xe8\xee\x48\x2d\x7b\xd8\xd4\x7f\x0d\xdb\x7c\x93\xe4\x59\xce\x23\x39\x1a\x22\x99\x4d\x2e\xa2\xa0\xd7\xeb\xf5\x02\x72\x0e\x66\x6b\x4f\x58\x92\x45\x72\xec\xfa\xfb\xf5\x5e\x22\x80\xfa\xfb\xe5\x8e\xf1\x28\xb0\xc5\x4f\xb2\xbc\xf4\xf2\x4f\xf2\xed\x16\x1a\x95\x49\xf1\x4a\xb0\x42\xfd\x84\xd0\x07\x8f\xf3\xe5\xb5\x44\x39\x89\x2a\xf4\x9c\xad\x04\xb4\xa5\xbf\xe1\x56\x19\x12\x4a\xb6\x4d\xd5\x40\xfb\x93\x4a\xb3\x0e\xce\x6a\xd8\xcd\x2c\x65\x0a\x85\xed\xce\xf7\x69\x26\xc5\x24\x56\x29\xa4\xc0\xda\xd8\x52\x1e\x64\xb9\xae\xe9\xea\x9a\xfa\x4c\x80\x6c\x61\xce\x46\xb2\xf0\x42\x11\x7e\x22\x46\x45\x9e\x0b\x0f\xdb\xa8\x7e\xf2\xe5\xb5\x14\x64\xd8\xa8\x88\x2f\xcb\x11\xcc\x50\x6b\x79\xf4\x10\x90\x9b\x05\x2d\xe9\xe9\x1d\x41\x5d\xb2\x34\x62\xea\xdd\xbe\x80\x04\x0e\x6c\x02\x4c\xb8\x57\x44\xdd\x0d\xda\x32\x00\xaf\x00\x4f\xbd\xde\x83\x3b\x7f\x0d\x06\x62\xc0\x46\x82\x5d\x89\x01\x1f\x04\x7f\xbd\x13\x48\xee\x16\x36\x44\x92\x35\x66\xee\x60\x47\xdd\xc7\x39\x13\x97\x8c\x71\xe8\x25\x93\x72\x00\x29\x14\x30\x77\x03\x3e\x30\x05\x7f\x91\x6c\xb6\x2c\x0d\xfc\x76\x80\xa7\x6c\xa4\x34\x5c\x31\x97\x58\xb5\x18\x50\x0d\x04\x9b\x7a\x38\x04\xbd\xbe\xfd\x92\x27\x43\x95\x0b\xa6\xe6\x94\x98\x09\x14\x7a\xb4\x85\xdc\xc8\x6d\xf8\x67\x79\xf2\x41\x8e\xbd\x39\x92\x92\x65\xca\xbb\x16\xdb\xc5\xc9\x2f\xf9\x1b\xb3\x91\xba\xd7\xc8\x2d\x41\x18\x09\x18\x5f\x06\xd0\x79\x2c\x1a\xdd\xd7\xc0\x0a\xfe\xaf\x60\xc0\xe0\x4c\x2b\xc8\xc4\x45\xbc\x2d\x67\xad\xf1\xa8\xf4\x00\x47\x41\x70\x54\x92\x72\x77\xca\x8b\x78\xcb\x66\xdc\x02\xce\xa6\x45\x92\x5f\xe2\x03\x89\x50\xe5\xc4\x78\xbe\x64\x25\xf6\x40\xc1\x07\x05\x9e\xb2\xac\x64\x37\xea\xa0\x98\xc9\xe9\x95\x3c\x1c\x82\x00\x0f\x90\x98\x05\x53\x49\xef\x1b\xdb\x85\x0f\x8a\x41\x2e\x21\x2e\x67\x2d\x37\xb7\x07\xf2\x55\x5e\x20\x73\x9e\xa0\x67\x4d\x8c\x86\x93\xa9\x78\x38\x0e\x43\xb3\x13\x03\xd0\xb3\x41\x89\xb9\x58\xc0\x41\x9a\x62\x31\xa4\x93\xa9\x69\xc1\xdf\x64\xf6\x7c\xc3\xf6\x1a\x4f\x8b\x07\x7e\xfb\xd3\x62\x30\xc0\x7a\x3a\xa6\xdd\x62\x41\xd2\xba\x91\x5c\xee\x54\xb0\xb3\xc5\xd3\xb4\xb1\xb8\xa9\xde\x51\xf6\xb8\xa3\x9c\x88\x3e\xa5\xc5\xe1\xc0\xf5\x44\x25\xe8\xba\x56\x97\x14\x47\x0e\x43\x8d\xfd\x9a\x10\x14\x83\x62\x10\xdc\x04\x72\xfb\x94\x22\x2e\x44\xbd\x4c\x61\xe8\xcf\x6a\x86\x3c\x14\xe2\x83\x04\x16\x3c\xc0\x38\xea\x4a\x26\x81\xc5\x9f\x12\x29\x34\xe6\xcb\x1b\x27\x28\xa8\x02\x6f\x33\x17\xf1\x65\x4b\x93\x03\xb0\x95\x1b\x93\x83\x62\x42\xc0\x81\xec\xda\xa4\x28\xd7\x5b\x72\x2e\x16\x56\xd8\xcf\xa7\x8a\x68\xc3\xf6\x67\x5c\xc0\x0e\xd7\xeb\x41\x29\xe5\x61\x88\xfa\xe9\xe1\x10\x48\x1c\x2a\x13\x52\xd8\x12\x61\x98\x8e\x56\x69\x51\x0a\x60\xca\x6b\x16\x4d\xf2\x6e\xa9\x69\xba\x98\xf3\x85\x66\xa8\x18\xe0\x60\x04\x9a\x88\x58\x8e\xe1\x24\x4e\x36\xec\x70\x70\x3e\xe8\x4d\x75\x44\xfc\xa8\xcb\xcc\xf9\x02\x5b\x1e\xc6\x49\x6c\x0e\xfa\x70\xd0\xd0\x96\x1f\x56\xad\x01\x80\x85\x42\x8f\x64\x26\xf0\x3a\x8a\x23\x27\x09\x0d\x8a\xf8\x32\x18\x20\x54\x52\x8e\xe7\xe3\x45\x43\x27\x5a\x6a\xd6\x65\x52\x8b\xb6\x40\x69\x92\xc5\x2c\xa7\xfa\x17\x8a\x09\xc3\x51\x3c\xba\x8c\xb3\x0f\xa8\x29\xc2\x7c\xe9\x7a\xf4\x27\x15\xf6\xc0\x50\xf3\xb2\x52\x74\xcb\xa9\x04\x2a\x26\xde\xec\x69\x4e\x72\xbd\x39\x2c\x0a\x6c\x53\x28\xcb\xdc\x74\x0f\xf0\xc8\x46\x0f\xc3\x40\xd2\x1a\x85\x15\xb2\xb8\x14\x7a\xf9\x3b\xe7\x23\x0c\xca\xb3\x48\xc1\x9f\x96\xd0\xa3\x7c\x6a\x4e\xc0\x9f\x1f\xe5\xb8\x46\x53\xf5\x48\x6f\x1d\x93\x22\xe2\x9d\xe3\x79\x06\xdc\xd3\x11\x9d\x33\xd0\x3e\x28\x30\xf3\xbe\x22\xd4\x1a\xa3\x65\x9d\xb9\x73\x98\x8a\x30\x2c\xfa\x94\xb2\x30\x2c\x74\x6a\xfd\x8b\x42\x7a\xb7\xcc\x6d\x30\xbf\xdc\xaf\x06\x81\x7a\x89\x5a\x46\x01\xee\xd4\x6e\x4a\x8a\x04\xcd\xe7\xb9\x45\xee\x0b\x9f\xc1\x2e\x81\xc1\x0e\x30\xe9\x4f\x2a\x80\x80\x3a\x00\x06\x10\x8f\x5d\xc6\xaf\x0b\xa9\xfa\xcb\xa3\x0b\x96\x5f\xb4\xdb\x7b\xcc\x9b\x91\x6a\x68\x38\xe9\x53\x8a\x38\xf5\xf3\x6a\xdd\xa9\x9c\x1b\x88\x6a\xdc\x9b\x06\x5f\x0c\xfe\x72\x47\xce\x03\x26\x72\xec\xc0\xf0\x99\x83\x80\x05\x01\x6d\x53\x50\xf3\xc6\x01\x8e\x78\x47\xdb\x06\x44\x98\x70\x0f\x2a\x4f\x8e\xb0\x5c\x3e\x48\x64\xa9\xff\x81\xf0\x90\xb2\xc1\x57\xc2\xe3\x75\x93\xa9\xbb\xfd\xfc\x72\xa5\x42\x37\xe7\x17\x99\x23\xd2\x07\x85\x3a\x53\xd4\xa4\x2f\xd1\xf5\x17\x1d\x08\x17\x5c\xc2\x3f\x17\x6d\x70\x09\x2a\x6e\x07\x97\xe8\x28\x54\xcf\xbb\x71\x3a\xa4\x9c\xf4\xaf\x42\xaf\xc0\x79\x7d\x8e\x9f\x6c\x4c\xd6\xcb\xfa\xf7\xce\x55\x32\x49\x5f\x3d\x55\x45\x30\xe4\xba\x7e\x11\xad\xd0\x8c\x59\x37\x66\x3e\xf9\x12\x5a\xf6\x67\xce\x9c\xea\xd3\x62\x4d\x3f\xdd\x87\x4d\xe4\xe0\x4c\x33\x34\x87\x8d\xe8\xc4\x09\x9c\x3a\x64\x53\xf6\x3d\x73\x38\xc1\x0e\x44\xe4\x73\xdf\xb7\x55\xd0\x38\x57\xd6\xa9\x19\x1e\x71\xac\xb4\x3e\xd7\xc7\xda\x92\x5b\x39\xc0\x96\xb3\x2f\x2c\x17\x48\x72\xc9\xca\x87\xa1\x62\xfb\x24\xc3\xad\x25\x81\x7c\x40\x27\xa4\xa0\x85\x43\xe0\x60\x5f\x72\x7f\x23\x1a\x55\x50\xab\x63\x45\x3b\xd5\x95\x54\x6a\x74\x64\xa6\xff\x98\x8e\xa7\xf1\x83\x7c\x1a\x0f\x06\x98\x0f\x68\x6a\xf4\x55\x06\xf1\x80\x44\xd6\x29\xc9\xb1\xb9\x58\x80\x0c\xa7\xd9\x29\xb3\x41\x24\xf1\x1d\x81\x64\x2b\x39\xc1\x59\x21\xf3\x23\x5e\x11\x56\x21\x57\x4b\x93\xff\xdb\xb4\x34\x24\xa7\xa8\xa0\x1c\x7d\xff\x03\xc6\x72\x2c\xce\x7d\x65\x51\xdf\x57\x16\x95\xe6\xc2\x8f\x6a\x46\x6a\x15\x38\xe8\xa6\xe6\x0b\x2d\x28\x5c\xb0\xa2\x4c\x73\x4e\x83\xef\x47\xe3\xd1\xe4\x07\xad\x03\x56\x7a\xe1\x52\x81\x9f\xe7\xc5\x36\xce\xd2\x4f\xcc\xdc\x42\x1c\x51\xa9\xec\xcb\xce\x6b\xf7\x76\x83\xfa\x63\x94\xe4\x3c\x89\x05\x6a\x74\x32\x67\x0b\x7d\x67\x5c\x29\xb5\x78\xc2\x4a\xff\x2a\xd5\xce\x4c\xb8\x0a\x4c\x7d\x27\x04\xd7\x1b\xce\x9d\x90\x1d\x5e\x97\x2e\xcf\xd6\xb5\xe6\x0c\x52\x4a\xaa\x3c\x7d\x66\xdd\x85\x85\xa1\x42\x81\x52\xde\x80\x2f\x77\x4e\x86\x97\x44\x42\x59\x16\x15\xa4\xd6\x35\xa5\xac\x50\x06\x24\x56\xb5\xaa\x46\x0b\x6a\x26\x39\xe7\x1a\x0a\x1d\x0a\x22\x30\x7d\x61\xa4\xa0\x8f\x8a\x22\xbe\x1e\xa5\x25\xfc\x95\x12\x9f\x3c\x6b\xf2\x08\x70\x5a\xcc\x78\xc4\xe7\x6f\xae\xb7\xe7\x79\x36\x4a\x05\x03\x43\xe6\x05\xc2\xd3\xa9\x3e\x50\xc0\x50\x02\x7a\xcb\x1f\x52\x6e\xce\xcf\x79\xc1\xe2\x0f\xd3\x94\xf2\x79\x3e\x18\x2c\x2a\x50\x20\xa4\x2b\x84\x24\xc3\xc8\xd9\x95\x40\x18\x8f\x96\x39\x67\xb6\x60\xae\xce\x44\xa5\x0e\x5d\xaa\xa4\xb2\x5d\x5e\x8a\xa4\x94\xb4\x39\xa6\xf6\x0b\x93\x20\x87\x6b\x0f\x87\x8f\x88\xc3\xd0\x9f\x43\x6c\xc0\x87\xb1\xa4\x2c\x7a\x5f\xd4\xa9\xa0\xd2\xe8\x1d\xb9\x09\x8d\xb1\xb6\xe6\x89\xb5\xea\x43\x96\xd3\x7d\x3a\x32\xe0\xe1\xd0\x8f\xd5\x92\x84\x61\x3f\xae\x15\x02\xce\x8d\x90\xba\x08\x8a\x07\x41\x2f\x2d\x7b\x3c\x17\xbd\xb8\xf7\x2a\x2f\xc5\xc9\x9b\x37\x3d\x35\x92\x00\x57\x76\x3f\xb5\x70\x40\xfa\xef\xd3\xd4\x96\x60\xc8\xf0\x3d\x18\x38\xc8\xdf\xdf\x7e\x0f\xf6\x0d\x08\xd2\xbf\xff\x16\x63\xa2\x7e\xdd\xc7\x18\x93\x58\x15\xf9\xd1\x35\x7b\x28\xbf\xde\xec\x21\x51\x5b\xbf\x56\xda\x8c\xa7\xfc\x81\x30\x4a\x19\x6e\x94\x32\x05\x15\x52\x7e\x2e\x46\xf5\x35\x3b\x75\x3f\x0e\x87\xfe\x84\x14\x23\xf7\xaa\x5d\x4e\x54\x6b\x0b\x53\xc0\xb0\x48\x59\x85\xe8\x3c\x4c\xba\x0d\xdc\x18\x29\x46\x1f\xd8\x35\x29\x70\xd5\x30\x0d\xd3\xda\x83\xd6\x3e\x93\xac\x43\xc7\x86\x61\x23\xb1\x61\xbc\x52\x96\x59\xdd\x08\x13\xae\x51\x1d\xcd\x88\xa7\x43\x4a\xd9\x92\xf6\x27\x1a\x51\x2a\xf4\xa4\x52\xda\x23\xe0\x61\x28\xc9\x56\x1f\xf4\x20\x56\x05\xc2\x81\x16\xe2\x9c\x72\xbb\xb1\xb9\x6b\x4d\xc3\x0e\x07\xef\xbb\xbe\x63\x02\x09\x2e\xcf\x05\xe1\xa3\x6d\xbc\x3b\x76\x69\x55\xe8\x4c\xf8\x0b\x68\x0a\x7e\x8d\x52\x9e\xa5\x9c\x1d\x0e\xc8\xfd\xa4\xfd\x89\xc9\xdf\x15\xec\x82\x42\xcb\x8e\x12\xb1\xa4\xb1\xe9\x7e\x5a\x8c\x4a\xb8\x24\x0e\x43\x54\x52\xf3\xa1\x0e\x95\x6c\x43\x21\x3c\x9d\xa9\x3e\xc0\x94\x48\x1d\x3a\x54\x52\xfd\x1b\x83\xb9\x02\x6c\x65\xb9\x9a\xca\xca\x20\xd1\x5a\x5d\x26\x0f\x21\x4d\xaa\x4a\xdf\xfd\x95\xf2\x34\x80\xc5\x53\x8d\x34\x49\x2e\xeb\xe9\xeb\x6f\x52\x92\x7d\x17\x41\xda\x8f\x2e\xe3\x82\xa7\x7c\x5d\x76\x60\x7c\xb5\xa0\xd7\x3c\x41\xd8\x16\x93\xb8\x7f\x7f\x1b\x99\x50\xb7\x95\x65\x09\xc5\x36\x1e\x67\xeb\x50\x09\x28\x15\xeb\xb6\x65\x31\x7d\x8d\xb0\x1f\xc1\x44\x8f\x92\x48\x53\xc5\x18\x5d\xc8\x1a\xab\x94\xc7\x59\x76\xfd\xd9\x3a\xba\x1b\x55\x69\x13\xf3\x65\xa6\x6e\xb5\x9b\x97\x1b\xc5\xf5\x8d\xd9\xcd\x0a\xce\x8c\x34\xaf\xfe\x81\xef\xe6\xf1\x16\x84\x2a\x85\xf6\xb4\x91\x8f\xc6\xe8\xbf\x28\x8e\x01\x4f\x81\x4e\xf4\x4c\x21\x6a\x0b\xbc\x82\x6f\xc2\xbc\x3b\x7c\xbd\xca\x1c\x83\x91\x4e\x9e\xb1\x30\xd4\x3f\xd4\x48\x1a\x9f\x08\xb4\xb3\x7b\x35\xc1\xb3\xb4\x5b\x43\x6b\xaf\x7b\x1d\x0a\xfc\x90\xba\xe7\x32\x2f\x1a\x84\xd9\xd3\xe5\x39\x87\x77\x4c\x18\x52\xdb\xb2\xb6\xd8\x6d\x37\x32\x77\x3a\x5a\x90\x5c\x73\xa7\x7b\x8e\x0a\xad\x08\xd6\xf7\xe9\x74\x42\x32\x94\xe3\x59\xae\x16\xc6\x37\xbb\xb3\x53\x42\x9a\xee\xeb\x15\xf7\xe4\x0f\xee\xae\x22\x98\xc4\x28\x1b\x98\x7a\xbc\x42\x99\xab\x46\xf5\x3e\xa8\xdb\x54\x0d\xa6\xfa\x44\x35\xaa\xa5\x0e\x64\xbb\xef\x35\xa7\x9d\x40\x02\x2b\xb7\x57\x45\xbe\x4d\xcb\x96\x2d\xaf\x5e\xb5\x19\x47\xfa\x17\x8e\x04\x62\x8e\xd6\x1d\xd7\x63\xd5\x0d\xa6\x7c\x3d\x6b\x7c\x47\xa8\x91\x40\x6f\xe9\x12\x64\x62\xd5\x97\xe1\xf2\x6d\xc2\xd4\x6e\xca\x31\x61\x0e\x70\x64\x45\x09\xf0\xd6\xaa\x58\x3e\xd0\xdf\x12\xee\x04\x2a\x63\xc8\x58\x0f\x0f\x4e\x5b\x13\x8c\x76\x3b\x9a\x96\xbc\x2d\xa7\xf0\xd9\xb4\x55\x08\x96\xa6\xd1\x7a\x93\x31\x09\xde\x96\xac\xa7\xf3\x91\x64\xad\xd4\x3c\x92\x73\xdc\x13\x79\xef\x32\x2f\x3e\xf4\x2e\x53\xb1\xe9\xc1\x7c\x35\xc7\x52\x2a\x49\xa9\x3e\xf1\xba\xd5\x3a\x61\xea\xdc\x67\xab\xd1\xb5\xf7\x3d\x11\x0d\xa6\x13\xae\x2c\x14\xd3\xc9\xa8\x98\xb1\x88\xdd\xc2\x74\x16\x30\x02\xa5\xbe\x79\x68\x6d\xb0\x35\x2f\x59\x50\x36\xe7\x1e\xd3\xc9\x25\xfe\x69\x33\x9d\x05\xe5\x0e\xd3\x99\x53\x68\x55\x59\x33\xc1\x11\xcc\x31\xfe\x57\x41\xac\x6a\xaf\x98\x5c\xe9\x62\xcf\xdb\x97\x90\x1a\x64\x59\x5c\x0a\x85\xf7\x28\x73\x8d\xf1\x18\x72\x4b\x01\xe9\x76\x12\xcc\x49\x85\x7b\x67\xbb\x2c\xee\xc9\x17\x84\x61\x22\xe0\xc0\x76\xdc\x58\xd7\xbb\xcd\xe1\x4d\xba\xf6\x5b\x9b\x7f\xd1\xdb\x4d\xd1\x8f\x8e\x3d\x90\xef\x84\x5c\x76\x2b\xa9\x4c\x59\x4d\xfb\xa5\xfc\xa7\x69\x7f\xcd\x46\x3b\xa7\x25\x05\x26\x00\x4a\xb9\x92\x8f\x73\xe9\xae\x55\x48\x75\x6d\x6d\x9b\x03\x46\xcf\x0e\x9d\xbf\x0d\x78\x30\x44\x3c\x5a\x33\x2e\x77\x9c\x63\x7d\xe1\x96\x49\xca\x92\xf2\xf9\x78\xe1\x55\x94\x5c\x11\x9f\x4f\xbc\xc4\x8a\x08\xca\x08\xe2\x74\x7e\xf3\x81\x5d\x47\x81\x3d\x03\x01\x59\x33\xc7\xc2\xd1\xa7\xbf\xcd\x03\x53\x55\x44\x55\x97\x63\xfb\x92\x9a\xb2\x9c\xad\x94\x94\xb7\xd7\x71\xb0\x11\xb0\x21\xb6\x5e\xce\x05\xe3\xe2\xcb\xeb\xaa\xf2\xb6\xfe\x36\xde\x7d\x71\xdd\x6d\xbc\xb3\xf5\x80\x9f\xbd\xb5\xa2\xe2\x4e\x64\xb9\xba\x33\xc5\x11\x7c\x66\xa6\xaa\xa2\x29\x5b\x55\x0b\x1c\x86\x09\x72\xac\xe4\x08\x07\xdb\xc3\x04\x09\x52\xe2\xa6\x28\xb6\xff\x32\x51\x4c\x8c\x94\xf1\xce\x69\xbc\xfb\x9b\xda\x45\x79\x41\x39\xfa\x61\x8c\x3b\x32\x88\x53\xfa\x24\xe7\xa5\x14\x70\xa8\x14\xba\xdc\xd2\x26\xc3\x16\x7e\x91\x2f\x19\x94\xba\x87\x9d\x94\xf6\x50\x8c\x53\xc1\x0f\x13\xe5\x54\x70\xef\x07\x0c\xae\x04\x3f\xdc\xc5\x23\x40\xb9\x6f\x98\x00\x27\x82\xc9\x77\x3f\xe2\xd1\x69\xbc\xdb\xa5\x7c\xfd\x3c\x2d\x45\x43\xc6\x93\xdc\xbd\xba\x09\x55\x46\xf7\x60\xb6\x99\x8f\xd6\x4c\x3c\x2a\xd6\x88\x91\x40\x26\x04\xa0\x4b\x33\x45\x94\x29\xdc\xeb\x3c\x17\x5e\xc1\x3a\xb9\x51\xfc\x43\xba\xfb\x25\xce\xd2\x25\xbc\x87\xe1\x57\xf1\xb2\x02\x22\x25\x0b\xb7\x8f\x52\xf1\xf1\x3a\x4d\xf2\x98\x7e\xca\x56\x4d\x4b\x25\xc6\x7e\xd5\x13\xb5\x67\x4b\x2a\xc7\x52\x79\xfe\x09\x46\x85\x75\x8f\x94\xa3\x55\x91\x6f\xed\x6a\x74\x28\x51\xd8\xa8\x9e\x17\x51\xf8\xa6\x44\x37\x60\xda\xc8\xc0\xc2\x91\xd4\xf9\x91\xa8\x6a\x8b\xae\x11\x8b\x93\x8d\x86\xbb\xcf\xaa\x69\x63\x2a\x83\x87\x96\xd1\x8d\x14\xab\x22\x66\x31\xd3\xf2\x79\xca\x19\x51\x06\x6b\x6e\xf2\x09\xa4\x54\xd5\x54\x89\x88\x66\x68\x20\xb8\x69\x03\x5b\x93\x46\x54\x11\xe1\xe6\xe5\xa3\x82\x65\xe0\x19\x80\x04\x31\xa9\x58\xca\x61\x79\x91\xae\xa5\xe0\x40\xcd\x48\x4c\x82\x3f\x10\x93\xaa\xc7\x41\xcc\x30\xe4\xc2\x40\x47\x60\x1a\xac\xbe\xc1\x2f\x2a\x5e\x2e\x0d\x04\x0a\xe0\x87\xcc\xf0\xca\x0e\xcf\xab\xc2\xa8\x70\x0b\x3d\x3f\x18\x7d\xda\x18\x36\xb4\x6b\xd6\x18\xdc\x08\x52\x7c\x38\x38\x49\xf1\x72\x89\xac\x3b\x9a\xe9\x4f\x6f\x86\x9f\xf2\x42\x72\xde\xaa\xf9\x38\x0c\xb9\x94\x38\xde\xb8\x25\x50\x41\x62\xe5\xd4\x55\x79\x3e\x2d\xf5\x4c\x3a\xf6\x88\xbb\xa5\xed\x62\x81\x01\x96\x9b\x63\xa0\x67\x4e\x47\xd1\x71\x7a\x4c\x5e\xea\xe5\x49\x78\xea\x9c\x69\xd7\x99\x52\x96\xd9\xa3\xf7\x17\x2a\x85\x19\x98\x2b\xdb\xee\x14\xeb\x85\x02\xc5\x89\xb1\x0d\x2d\x1a\x27\x0d\x40\x59\x60\xd3\x94\x0b\x4d\x80\x39\xb4\x90\xc2\x82\xe8\x16\x8c\xa5\x8c\x3a\x97\x76\x29\xdc\x34\xb5\x16\xb8\x71\x5a\x21\xf9\xc6\xdb\xec\x91\xb2\xe7\x24\x8d\xad\x1e\x19\xb3\x4d\xe2\x6e\xc8\x48\x0d\x86\xcb\xf5\x83\x5a\xfe\xbe\x74\xb3\x75\x6d\x35\x9b\xa8\x20\x72\x58\x51\x5a\x61\x7f\x71\x9b\x9b\xa0\x5b\xe1\xaf\xb7\x4d\x13\x07\xc2\x05\xa6\xbb\x47\x1b\xf9\x84\x5b\xf0\x89\x19\xea\x44\x51\x87\x43\x77\x7a\xd3\xfe\x5b\x6e\x00\xdc\x8d\xe5\xe6\xf9\x48\xe4\x6f\x98\xd0\x6b\xc3\xf1\x82\x0a\x2d\x3e\x35\x8b\x86\x21\x5a\xb2\x8c\x09\xd6\xfb\xc2\x96\x40\x67\xed\x3a\x4e\x76\xd6\xc3\x8e\x26\xfb\x28\x1e\xc6\x0d\xc8\x83\x06\xbe\x0b\xfd\xba\x44\x0e\xa4\x1f\xe5\x0a\x25\x1c\xb7\x28\x85\x7e\x5b\x2c\xfc\x37\x6d\x4a\x7c\xb4\xc3\x5e\xc1\x3e\xee\xd3\x82\x95\xc6\x9d\x29\xe6\x3d\x76\xb5\xcb\xd2\x24\x15\x3d\x35\xfe\x1e\xe0\xf8\x5e\x5e\xf4\xc4\x86\x99\xb4\x6d\xbc\x7b\xf7\x4d\xd9\x53\xb4\x51\xca\x0b\xa0\x70\x1c\xf5\x1e\xe7\x62\xd3\xbb\x64\x05\xeb\xe5\xdb\x54\x08\xb6\x1c\x7d\x83\xa5\xc0\x02\x23\xd5\xba\xef\xe6\xfe\xa8\xb1\x11\x2a\xdc\x7d\x14\x83\x57\x8b\x52\xa8\x29\x9a\x97\x68\x3f\xbe\xc6\x69\xda\xf3\x32\x2f\x04\x5b\xfe\xd4\xc2\xa8\xc6\xd9\x4a\xe3\x7f\x2a\x31\x80\xde\x89\x1e\x86\x37\x88\xb7\xc6\xf0\xaf\xf2\x32\x95\x4d\x48\x84\xa9\x68\x82\xe8\xa4\x09\xa2\x49\x13\x0c\x72\x4d\x6b\xda\x64\xfb\x4f\x7d\xda\xc4\xdd\xbc\x5c\xd9\x51\x73\x22\x6a\xba\x54\x03\x46\x74\x90\xb0\xd8\x2d\xea\x8f\x8e\xa6\x0a\x2f\x34\x47\x47\x53\x83\x10\xcc\x20\x35\xe5\x12\x8a\x72\xa5\x9a\x72\xc1\x4a\x65\xd4\xb4\x3f\x55\xfb\x2d\x3b\x1c\x14\x96\xcb\xb0\xfc\x25\x91\x58\x66\xdc\x75\x55\x03\xba\xe0\xfe\x70\x48\xa0\xe0\x1e\xcb\x5f\xb2\xe0\x1e\x6b\x06\xab\xc9\xdf\x94\x1e\x6f\x93\xdc\x4a\x20\x85\x39\x10\x1d\x54\x4d\x18\xc0\x83\xc5\x67\x0d\x5f\x07\xb0\x3e\x44\x1b\xa0\x34\x78\xa5\x45\x0f\x81\xe4\x9a\xc1\xfb\x87\xb7\x49\x6f\x1a\xc7\x97\xa8\x6b\x23\x11\x86\x01\xdf\x6f\xcf\x59\xe1\xba\x7c\x68\x7f\x8f\xae\x1c\xed\xdd\xd1\x12\xcd\xcd\x5a\x42\xd5\x5e\xcc\x97\x3d\x9b\xa2\xaa\xf4\xe2\x82\xc1\x2d\x8c\x6a\xb4\xec\x0d\x87\xbd\xeb\x7c\x2f\xcf\xe7\x79\x7c\x9e\x5d\xf7\xb6\x2c\xe6\x42\x0a\xf2\xf2\x74\xc2\x79\x36\x2d\xf4\xf4\x69\xea\x31\x2e\xd2\x82\x65\xd7\xaa\x7d\x2e\x2b\xc5\x3b\x28\x6a\x49\x53\x6f\xa7\x0f\xc7\xa8\xf7\x6c\xd5\x2b\x73\xd2\xdb\xc5\x65\xa9\xdc\x20\x57\x1a\x4f\xb4\xda\x4d\x79\x29\x58\xbc\xec\xe5\x2b\x89\x63\x94\xda\x5f\xa9\x12\xc0\x38\x53\xe2\x17\x68\x00\x14\x16\xe5\x48\x29\x61\x50\x1f\x49\x18\xc1\x9b\x65\x29\xdc\xc3\x04\x6a\xa6\xfa\x8b\x01\x28\x1e\x8e\xe5\x2f\x95\xf1\x90\x8e\x25\x09\x3e\x1c\xf8\xe1\x50\xe0\x30\xfc\x4c\x03\xc2\xc9\x14\x5e\xa6\x38\xd2\x7a\x18\x0a\x9b\x2c\xdc\x64\xde\xa1\x4c\x79\xc6\x61\x87\x18\x20\x44\xbd\x60\x00\x11\x14\x6a\xf1\xd0\x61\x82\x0d\x23\x1d\xd5\xc4\x3e\x12\x8a\x60\x17\x55\x93\x6e\xbc\x2f\x59\x91\xc2\xbd\xe7\xa9\x11\x01\xdc\x7b\x19\x7d\x05\xa5\xb6\x61\x4a\x62\x3a\x26\x25\x9d\x90\x84\x8e\x49\x46\xc7\x64\x4f\xc7\x64\x47\xc7\x64\x45\x83\x80\x2c\x69\x03\x9f\x8a\x5c\xa9\xac\x30\xd9\xd0\x31\x39\xa7\x4b\x73\x85\xb5\x79\x70\x3e\xdd\x0c\x06\x4a\x93\x28\xab\x22\x41\x97\xf3\xcd\x02\xfb\x8c\x7b\x9f\xd2\x12\x0c\x0c\x62\x3a\x9e\x8a\x76\xde\x14\x33\x30\x5d\x27\xe5\x60\x60\xaf\x73\x36\x0f\xc7\xd0\x6e\x3f\x1f\x25\xf9\x76\x17\x17\xec\xf1\xf5\xdf\x4c\x4d\x83\x8d\xcb\x67\x7c\x95\xc9\x04\x24\xc8\x72\x0e\xb6\x76\x58\x8a\xe6\x29\xdf\xb3\xa9\x6c\x94\x04\x15\x1b\xc0\x6d\x5a\x92\x2f\x19\x12\x4d\xd1\x61\x18\x83\x6f\x78\x33\xd9\xb0\x27\x35\xce\x4e\xa9\xcf\x06\x1a\x53\x0b\x8b\x72\x89\xdb\x4f\x3a\xdc\x61\xb2\xa3\x29\xf1\x3b\x77\x51\xf2\x70\x32\xcc\x30\xc9\x68\x33\xf5\x48\x15\x3d\xdc\x04\x93\x84\x36\x53\xed\x68\x35\xf2\x36\x6e\xf0\x8a\xe5\xac\x47\x0a\xb8\xdc\x6b\x9f\x0f\xf7\x98\xec\xa9\x64\xc8\x56\x03\xca\x8c\xd6\x6e\xd5\xd8\x5b\x06\x3a\x6f\x3c\x06\xa6\xfb\xee\x86\x35\xbd\x99\xd4\x2a\x76\x73\x48\x46\xed\xbc\xcf\xb2\x69\x2d\x9f\x35\x04\x33\x86\x8d\x6e\xcb\x67\xc4\x18\x6e\xc4\xb0\xa8\x47\xbc\x89\xcb\x97\x97\xdc\xdc\x7b\xd6\x4e\x9b\xad\x11\x10\x8e\x67\xdd\x4c\x1f\x5f\x00\xdb\xdc\x8d\xe8\x45\x2e\x8f\x6d\x5b\xf5\x7f\xa3\x05\x69\xcd\x67\xea\x2f\x7d\x8e\x4b\x9f\xfb\x74\x8e\x15\x2c\x54\xe4\x2e\x5a\x9d\x67\x4e\xa1\xa9\xdc\x3c\xe6\x08\x57\x53\x07\x8c\x86\x1d\x97\xfc\x95\x04\xa5\xf2\x3a\xad\xd3\x2c\xe7\xdd\x66\xda\x5d\xc1\xbe\x95\x7f\x84\xcb\x76\xaa\xd9\x6d\xa1\x0a\x76\xef\x99\xba\x34\x71\xbb\x93\x82\x70\x13\xc2\x47\xef\x10\x1b\x18\x13\xba\x53\x0b\x82\x30\x58\xe8\x77\xa8\xa4\xca\xe3\xfa\xa2\xc9\x77\x3f\xd4\xe1\x5b\xba\x9c\x83\x25\x62\xcb\x3b\x2d\x93\x1f\x8c\x67\x93\x01\x1a\xb2\x07\x0f\x26\x38\x1a\x0f\x10\xfc\xa8\xe4\xc6\x5c\xe6\x37\x82\xde\x9b\x84\x39\x41\xf9\xc3\x87\x0f\xe9\x7d\x2c\xe9\x03\x12\x07\x7a\xef\x2e\x26\xdc\x3d\xe2\xb8\xba\xdc\xa4\x19\x43\xf9\xc3\x71\xed\xb3\xad\x1d\x8c\xfc\x11\x39\xbe\x06\x80\xc3\xcd\x3d\x00\x29\xe9\x58\xa2\x72\xd9\xab\xe4\x2f\x1e\xd2\xb8\x4d\x7a\x9e\x5e\xed\x58\x22\x89\xf5\x36\x2f\x58\x6f\x99\xae\x53\x51\xf6\x52\xde\x3b\x8f\x4b\xd6\xfb\xee\xdb\xde\x2f\xcf\xff\x53\xd1\x5a\x4d\x6a\x21\xb4\x02\x4a\xc1\x71\x13\x06\xea\xc5\x32\x11\x83\x01\xee\xba\x2d\x30\x04\x4e\xb6\xfa\xdd\xb7\xaa\x1b\x49\xe5\x54\x65\x59\x71\x38\xc1\x78\x9a\xd3\x7e\x1f\xdd\xbb\x1b\xa6\x98\x94\x03\x8a\xd2\x90\xde\x9b\xe0\x07\x0f\x12\x92\x0c\xe8\x7d\x03\x0f\x3c\xd5\xd7\x15\x5d\x4a\xa8\x87\x0f\x27\x53\x27\x2c\x0d\x9a\x84\x0c\xcf\x86\x22\x12\x15\x2a\x31\xe1\xa3\x82\x95\x82\x8a\x8e\xe8\x18\x66\xd9\xef\xfd\x80\x49\x4e\x3f\x83\x39\x48\x4a\x3b\x6d\x18\x4f\xe3\x9d\xeb\x32\xae\x2f\x32\xde\xc7\xf2\xcc\xd2\xf9\xc2\x9c\x15\x26\x68\x6a\x23\x5b\x74\x88\xae\x55\x0c\xda\x36\x38\xea\x0d\x6c\x5a\x1b\x8d\x28\x4d\x5e\x41\xc7\x24\xb7\x2b\x3e\x2d\x1e\xe4\xe0\xd5\x03\x1a\x25\xc4\xe6\xc5\x82\x08\x77\xf7\xc4\xae\x30\xef\x19\x43\xd9\xdd\x9b\xce\xec\x28\xa1\x48\x54\xfb\xce\x3b\x10\x78\x21\xd1\x11\xb2\x25\x8d\x4c\xeb\xf7\x10\x2f\x97\x9d\x1a\x82\x74\xc6\xa2\xa2\x81\xb3\x49\x4c\x75\xcf\x2a\xe2\x45\x94\x7b\xe8\x99\x09\x50\x4b\x53\x07\xa0\x66\xce\x71\x18\xf6\x85\x51\xa7\xa8\x1c\x1d\x73\x88\xc4\x87\x03\xf2\xe6\x03\x31\x33\x4a\x2b\xef\x33\x31\xe7\x0b\x2a\xb1\x78\xec\xaf\x75\x33\xbe\x48\xea\x5d\xfd\x40\x5b\x6a\x98\xca\x46\x9f\x36\x67\x63\x40\xde\x9a\x84\x68\xf4\xa5\xa9\x70\xbb\x3f\xd7\x77\x11\xfa\xd3\x81\x3f\xd4\x41\x1e\xdb\xf1\x54\xd6\x9c\x84\xb7\x47\x91\xae\x50\x07\x18\x5b\x73\x99\xf3\x45\xd5\xd2\x0e\x04\xdf\x0c\xd8\xe0\x1b\x6b\xb0\x25\x59\x5d\x29\xd7\x33\x31\xfa\xa6\x31\x87\x58\x34\x87\xcf\x80\xd3\x65\x0f\xda\xab\xe5\xf7\x0d\x39\x73\xb6\x98\xb6\x10\xc6\x8b\xbc\xc7\xd4\x6b\xc0\x3d\x00\x11\x5b\xf6\xce\xaf\x25\xc2\x68\xf4\xad\x09\xe2\x31\x93\x12\xdd\xb7\xf2\x10\x02\x22\x60\x54\xfe\x34\xfe\x17\xb9\xfa\x82\xab\x47\x2b\x4e\x47\x6d\xb7\x3b\x5f\x90\x5c\x92\x8a\x94\xf6\x27\x9a\xc1\xee\x4b\x0e\xbb\x3f\x91\x2c\xf6\x34\x7b\x60\x0f\x6f\x66\x2c\xbf\xf6\x94\xcd\xb3\xc5\xb4\x9c\x25\x33\x59\x0e\x22\xa2\x51\x4a\xf7\xf2\x6b\x1c\xed\x29\xa5\x25\x18\xfd\xf4\x27\x38\xfa\x26\xf8\x86\x82\x24\x1d\x7c\xa3\xca\x94\x74\x1f\x05\x48\xfd\x8e\x07\x74\x12\x05\x58\x7f\x00\xa9\x89\x87\x54\x12\x25\x4a\xa5\x74\x0b\xf6\xc1\xc2\xb2\x82\x7b\x0c\x1c\x6d\x7f\x8c\x49\x3a\x43\x81\x44\x6c\x39\x78\xc4\xc8\xe3\x94\x8f\x44\x91\x6e\x11\x58\xca\xe9\xe9\xe0\x28\x1f\xd0\xbd\xe6\x0e\x11\xf8\x40\xca\x2a\xb8\xa3\x4e\x51\x91\x72\x17\x27\xac\x2b\x52\x47\xa1\xdd\x65\x18\x99\x07\xbd\x80\x80\x27\x73\xf0\x4e\x04\x0b\x5c\x81\xd3\x72\xfc\xb9\x4a\x24\x58\x90\xfe\x18\x57\x15\xc9\x69\xf1\xdf\xb4\x1d\x56\xd7\xea\x5f\xb4\xf8\x79\x07\x57\xe0\x04\xa0\xca\x51\xc3\x0f\x05\xee\xdf\xbb\x02\x85\x40\x08\x0b\x7d\xe7\xa7\xdd\x30\x0e\x07\xe3\x90\x01\x06\xc5\xbc\x2a\x54\xd4\x8b\xfc\x78\xd4\x8b\xe2\xeb\xa3\x5e\x14\xda\xb6\x39\x6f\xdb\x78\xa5\xa3\x82\x6d\xf3\x0b\x76\xb2\x49\x33\x07\x8b\xbb\xda\x46\x79\xc0\x60\xeb\x20\x4b\x63\xfa\x5c\xf9\x7f\x19\x6f\x6d\xcf\xa1\x62\x62\x34\x9e\xca\xd5\x74\xb2\x70\x5d\x43\xa8\x93\x53\x78\x39\x98\xb8\x41\x77\x9c\x51\x79\xb0\xac\x48\xda\x65\xe3\xeb\x9a\x1b\xba\xa6\x6c\x75\x59\xaf\x15\x50\xa0\xe2\x74\x85\x82\x5d\xc1\x76\x8c\x83\xed\x5f\x81\x3b\xe6\x32\xe3\xc7\x46\xef\xcf\x2b\xd2\x2a\x64\xaf\xb8\x95\x66\xa1\x5a\xed\x5f\xa3\xd5\x8b\x39\x89\x1b\x56\x21\x92\x21\xd2\x56\x21\x29\x8d\x67\x69\x94\xde\x62\x15\x92\x80\xd1\x30\x20\xe2\xf2\x21\x4d\x7d\xab\x90\x84\xa6\xf3\xd2\xb3\x0a\x29\x69\xda\x65\x15\x92\xd0\x52\x5b\x85\x24\xde\x4c\xbd\x89\x58\xa3\xdd\x5c\xc2\x5f\xe4\xaf\x95\x51\x61\xc7\x79\x6d\x58\xc9\xdf\x54\x60\xaf\x8d\x94\xf9\x3d\xd2\x3f\xbf\xd7\xda\x35\xc2\xb0\x67\x20\x44\xf2\x0a\x21\x30\xd6\xbf\x7f\xf7\x76\x63\xfd\x3a\x9a\xe2\xbf\xd6\x87\x40\x63\xfb\x14\x71\x34\x06\x14\x28\x7f\x4d\xc6\x3f\xb8\xa6\xc0\xe9\x17\x9b\x02\xd7\x43\xab\xe3\x9f\xa8\x53\x0c\xf2\xd0\x95\x38\x1c\xac\x79\xc8\x9f\x18\xbb\x1d\x51\x61\x14\x8c\x10\xb7\x28\x56\x66\x8a\x4a\x53\xce\xe6\xe9\x02\xc5\x98\x38\xcb\x0c\x06\x33\x99\xbf\x62\x1c\x65\xb8\x2a\x61\x5f\xcc\x04\x4a\x70\xa4\x6d\xc6\x24\x23\x9d\x67\x17\x0c\x25\xda\xf2\xa7\x20\xb9\x13\xc9\x29\x77\x40\xd1\x90\x86\x15\x4f\x43\x38\xb5\x9e\x04\x96\x3f\xed\x34\x49\xcb\x89\x66\x86\xa4\x60\xa3\x1d\x11\x08\x6f\x59\x60\xa3\x58\xc5\x66\x22\x09\x09\xe4\x6e\x86\x70\x0c\xae\xc9\x75\xa3\x0c\x70\x1c\x50\xa8\xd4\x41\x8c\x20\x52\x5f\xc5\x47\x4b\x24\x48\x10\xfb\x21\xfd\xec\x2e\xc7\x1d\x61\x49\x5b\x8a\x67\x4e\x83\xb9\xd6\x5c\x3e\x2a\xaf\x79\x62\x62\x71\x2d\x02\x52\xd4\x59\x4e\x6a\x5e\xa7\x5a\xd9\xd4\xc9\x4e\xeb\xec\x17\xfb\x2c\x5b\x04\x24\xae\x53\x20\x5c\xd9\x22\x20\x65\x9d\xf4\xd6\x88\x26\x8b\x80\x24\xb4\xb6\x9d\x36\x9a\x63\xd0\x67\x8a\x91\x22\x1f\xf6\xca\x2a\x0c\x05\xc9\xda\xa5\x4b\x96\xad\xc2\xb0\xfe\xb7\x5d\x4d\xa6\x92\x3d\x4d\x0e\x87\xec\x70\x30\xc3\x46\x81\xc3\x87\x05\x18\x61\xb2\x6b\x49\x55\x64\x45\x77\x4d\xc9\x6a\x49\x77\x56\xc8\x27\x1b\xba\x1f\x29\x3c\x47\xce\xe9\x66\xb6\xb1\x39\x67\xf1\xda\x84\x04\xb4\x6b\xbc\x75\xf6\x9c\xbe\xf8\x9a\xd5\x58\x67\x56\x46\x69\x74\x1e\x86\xe7\x92\x93\x55\x03\x41\x0c\xcf\xda\x22\xe4\x4a\x11\x04\x46\xce\x31\xe1\x94\xcd\xcf\x17\x60\x75\x26\x7f\xf8\x9c\x9f\x8d\xe2\x96\xe2\x1b\x6d\x39\xa7\x49\x92\xe4\xff\x25\xad\x9b\x41\x25\x6e\x48\x80\xfc\xaa\x25\x83\x4a\x0a\x39\x1d\x88\xd2\xb6\x21\x0b\x54\xf5\xe1\x6f\x6a\xce\x3a\xe2\x9c\x68\x23\x7c\x5f\xef\x23\xf1\xad\xb3\xa8\x87\x83\x6b\xb8\x2f\xa0\x97\x3a\x24\x9e\x6a\x68\xeb\x48\x30\x02\x22\x3a\x08\x4a\x73\xf8\x97\xc3\xbf\x71\x55\x61\x87\x6e\x72\x34\xb9\xdf\x75\x30\xfa\xad\xa3\x7f\x53\x4d\x1d\x74\x46\xa4\x84\xb9\xdd\x65\xec\xa7\x34\x6b\xb8\xeb\xb9\x51\x4c\x57\x90\xeb\x3b\xac\xd6\xbe\x47\xac\x14\x50\xbe\x52\x4a\x1e\xf9\x7d\xa4\x21\x6d\x2b\x31\xda\x2a\x33\x70\x59\x87\xe8\xaf\x96\x36\x85\xcb\x99\xde\x54\xd6\x53\x6c\x4c\x52\xc9\xc9\xc7\x54\x34\x94\x2b\x24\xa3\x7c\xb4\x2b\x98\x64\x7e\xc9\x5e\xfe\xce\x4b\x01\x1f\x3b\xca\x47\x49\x5c\xb2\x37\x8c\x97\xa9\x48\x2f\x58\x18\x4a\x31\x75\x24\xf2\xe7\xf9\xa5\x09\x5f\x30\x65\xed\x52\x60\x1f\xee\x97\x32\xe2\xc4\x4a\x32\x01\x0f\xe2\xe9\x6a\x30\xc0\x05\x15\xf3\xd5\x82\xec\xe6\xab\x85\xdc\xe0\xf3\x7c\x31\x43\x05\xcd\x06\xc5\x60\x4f\xc0\x17\x30\x19\xd0\xc9\x20\xc1\x91\x1c\x65\x39\xa0\x09\x49\xe7\x86\x19\x58\xd0\xc2\x6e\x44\x37\x7a\x2f\x2a\xe9\x0e\x4e\xcb\xe4\xce\x38\x2a\xc9\x4d\xc1\xf8\x92\x15\x6c\x19\xa5\x36\x58\x2f\x29\x13\xc9\xd6\x94\x15\x56\x8a\x50\x22\xf4\x02\x79\x50\x97\x4c\x57\x1d\x68\x70\x0c\x6e\x88\xba\x8f\x40\x51\x76\xd7\xf5\x73\xc6\x23\x54\xc8\x7d\x76\x53\x81\x8e\xa6\x11\xd4\x98\x1b\xf2\xa5\x48\x57\x3e\x2d\x46\xec\x4a\x14\xb1\x44\x3e\xe0\x11\xa1\xbf\x50\xae\x55\xc2\x89\xb3\xca\x25\x29\xb0\x7f\x22\x92\x30\x44\x7c\xce\x2d\x28\x6e\xd4\x80\xa2\x64\x64\xa6\xab\xe7\x98\x8c\xe0\x2f\x84\x70\xba\x8a\xd2\xfa\xba\x25\x97\xdc\x4b\x85\xc9\x7c\xa1\x23\x31\xa3\x4e\x1b\x7a\x55\x7d\xc8\xd4\x5f\x3b\x08\xb9\xbc\xd0\xe4\x50\x8b\x5e\x15\xc6\x38\x9a\x2f\xaa\x0a\x7d\x59\xd0\x6b\x8e\xbe\x1d\xeb\x08\xb9\xf7\xbf\x55\xd6\x6c\x93\xfb\xf7\xb1\xb2\x62\xbb\xff\x9d\xe4\x15\xe5\x8f\xef\x25\x75\x97\x3f\x7e\xc0\x72\x97\xa2\xc9\xfd\x1f\x41\xab\x8f\x26\xdf\x8d\x25\x3a\x96\x3f\xee\x61\xb2\x92\x3f\x7e\xb8\xe7\x50\x54\x1d\xcf\x98\x85\xe1\x67\xa3\x40\x73\x7c\x23\x10\x9b\xf3\x85\x3e\x81\xb6\x0d\x2f\x3a\xf1\x4d\xd5\xa9\x7a\xf7\xa3\x3f\x9e\xbb\xb0\xab\x03\x51\xcb\xc1\x78\xd7\x06\x12\x6f\x87\xa1\x1f\x58\xda\xc1\x93\xa7\x00\xa4\x2d\xbd\xf3\xcf\xf9\x3f\xdf\x8d\xdf\x89\x77\xfc\xdd\xea\x5d\xd1\xbb\xf3\x80\x3e\x5c\x0c\xfe\x72\xa7\x9e\xe5\xa9\xab\xfa\xbb\xa0\x81\xc3\x37\x5d\xb7\x5c\x21\x94\x36\x39\x5e\x53\x1d\x14\x29\x16\xa2\x48\xcf\x4b\x89\x4f\x6f\x2a\x62\x72\xcd\xfd\x13\xbd\x30\x58\x42\xe5\xb0\x2b\x41\x4d\x10\xc0\xfd\x6e\x19\x0b\xa6\x9e\xe4\x7a\x91\x2f\xd9\x99\xcc\x74\x10\xe5\x8b\xda\x3c\xe4\xc5\xfc\x45\x1d\x2d\x42\x85\x9a\xa2\x1c\xfe\xe2\xaa\x12\x33\x29\x0e\xa2\x53\xc3\x13\x4a\xf1\x05\x6b\xdf\xa0\x99\x71\x91\xa4\x39\x5a\x13\xf3\x81\x23\x9b\xbc\x8e\x90\xa0\x75\x55\x6c\xd3\x01\x78\x8f\xc8\x25\xf9\x44\xc5\x88\xe7\x5c\x8e\xee\x2c\x5e\x97\x87\xc3\x3c\x28\x93\x22\xdd\x09\x78\xe0\xf9\x3a\x83\x97\xef\xd8\x95\x88\x0b\x16\x07\x8b\xa9\x18\xc5\x59\x96\x5f\xb2\xe5\x23\x00\xcc\x5e\x40\x24\x81\x47\xf4\xa6\x22\x97\xf2\x9f\x25\xea\x28\x41\x1a\xc7\xe6\xd1\x5c\x2c\xe4\xca\xdb\x2d\xc0\xba\xe3\x8e\x27\xb0\x03\x58\xed\xd7\xfc\xd7\x00\x3f\xa4\xe3\x99\xde\x13\x92\x0f\x77\xa2\xdc\xbd\x7b\xf7\xd7\x3b\x6b\x12\x8c\xfe\x1a\x60\x1c\xc9\x2e\xdc\x9d\x73\x29\xbb\x74\x22\x8f\x07\xff\x44\xc1\xc0\x09\x3f\x3e\x08\xf0\x5f\x02\x59\x52\x21\x96\xf7\x92\x82\x39\x73\x39\xc9\xe2\xb2\xec\x98\x48\x18\xa2\x0d\x7a\x04\x22\x3e\xd2\xb3\xc2\xa4\xee\x3b\x48\x64\xbd\x00\x63\xf2\x5e\x66\xb2\x4a\x37\xff\x92\x9c\x99\x0e\x44\x11\xf3\x72\x95\x17\x5b\x09\xfd\x66\xfb\x4a\xab\xd0\xe9\x81\x37\xe3\x94\x45\x06\xc5\xfa\xd1\x16\x39\x3d\xd5\xf4\xf6\xcc\x34\x0e\x41\xa4\x83\xbf\x2a\x47\xf5\x97\x94\x47\x67\x00\x0f\x33\x9e\x2b\x3a\x26\x2f\x24\xdd\x7b\x2e\xd7\xf0\xa9\xfc\xe7\x0d\xed\x4f\xc8\x47\x3a\x26\x27\xda\xa4\xfc\x15\xec\x1c\x74\x93\xf3\x7c\xc7\xb8\x88\xd7\x91\x4f\x7d\xd3\x15\x7a\x83\x3f\xea\x1b\x5c\xa3\x66\x67\x97\x70\xc6\x38\x9e\xbe\x50\x10\x29\x74\xec\x5a\xa5\x26\x4b\x68\xbf\x5f\xc0\x46\x9f\x6e\xd0\x19\x91\xab\x8d\x72\x7a\x36\x87\xc0\x71\x1c\x93\xc2\x9e\x3f\x4e\x73\xf3\x9b\x28\xee\xac\x4f\x69\x0e\x55\xc1\xd0\x32\xe5\x9c\x15\x70\xc4\x54\x22\x26\x4c\x15\x88\xd7\x2f\x7c\x63\xcc\x3a\x91\x3c\x9d\x5f\x2d\xea\x4f\x8c\xc9\x4b\xe8\xff\xe5\x6d\x9d\xff\x99\x66\xed\x36\x92\x6b\x1c\x86\x70\xb5\xe2\xa5\xd9\x1d\xce\x8c\x66\x8e\x80\xca\xee\x93\x9f\xf1\x46\x66\x7c\xa4\x13\x4c\x9e\xcb\x2e\xfa\x63\x4c\xae\x06\x03\x92\x1e\x0e\xe8\x62\x40\x83\x07\xc1\x80\x11\xd4\x7f\x74\x38\xc8\x3d\xc9\xf0\xe1\xf0\x68\x1e\xfc\x35\x58\xe0\x30\x5c\x22\x4e\x3c\x3a\x0b\xeb\xb5\x55\x5c\x55\x6e\x62\x05\x80\xb6\x12\x02\x48\xd9\x36\xb4\xee\xf0\xd1\x9c\x2d\xec\x58\x72\xdb\xb2\xcd\x95\x1f\x5e\xfe\x06\x5d\x42\xed\x4b\x59\x51\xf7\x72\x38\x5c\xea\x5a\xea\xaf\xed\x3d\x91\x82\xb7\x51\x95\x3c\x0a\x43\xd9\x9b\x1a\xd2\xa9\x9c\xf1\x5a\x6e\x95\x6b\xc3\x94\x4b\x26\xdd\xb0\x49\x9f\xc8\x4b\x18\x5a\x97\x92\xa4\x8f\x4e\x29\xfa\x44\x5f\xfa\x3a\x8f\xa9\x6c\x51\xb5\x7d\x46\x3f\x29\x89\x58\xb9\xc1\x9c\xe1\x30\x3c\xd3\x57\xe8\xea\x2f\xa5\x34\xc7\x37\x89\xd1\x0a\x5c\x51\x1d\x5d\x4b\xca\x19\x67\xa3\xed\x3e\x13\xe9\x2e\xd3\x5c\xf9\x0b\x1b\xb0\x14\x42\xcb\x3d\x97\xe3\x7e\x2a\xc7\xfd\xa6\x6b\xdc\x1f\xc9\x09\x7d\xd1\x3d\xe8\xe7\x14\x7d\xa4\x27\x8d\x41\x3f\xb7\x83\x7e\x42\x3f\xea\x41\x03\xe4\xcf\x46\xda\x3e\xc6\xc0\xfe\x89\xdc\x27\x81\x3c\xe7\x57\xb3\x2b\xfa\x24\xba\x82\x58\x77\x83\x27\xb8\xd2\x42\xcc\x2b\x7c\xf3\x54\x0e\xee\x0d\x7d\x55\x69\xdf\x48\xd0\x16\xf4\x9f\x87\xe1\xc9\x48\xd1\xe2\xfa\x17\xc2\xb6\x50\xba\x42\x4f\xf5\x85\xdf\x9b\xaa\x52\x9e\x8b\xad\xee\x39\x86\x1b\x01\x74\x45\x39\x9e\x72\x7a\x55\x39\xdd\xae\x65\xb7\xd7\xcd\x6e\x4f\xc3\xf0\xa5\xed\xf6\x65\x67\xb7\xc6\x8f\xeb\xba\xaa\xaa\x74\x85\x12\xd8\xbb\x5a\xa5\xad\x0f\xd1\x9b\x64\xc3\xb6\xac\x7c\xb4\xdb\x65\x29\x5b\x9e\xe5\x35\xed\x71\x76\x65\x18\xfe\x0a\x27\x1b\xbb\x8a\x0f\x2d\xb3\xd9\xc3\x3e\xcf\x55\x28\xb3\x74\x55\xc4\x5b\x88\xec\xc1\xc2\x30\x28\x8b\x24\x50\xdb\x41\x2e\xc2\x63\xaa\xe3\x85\xa3\x94\xae\xf4\xf3\x27\x9c\xf4\x27\xa4\x3f\xc6\x58\x59\x14\x42\x98\xb6\x4d\x5e\x0a\xe7\x13\xe4\xe1\x24\xcf\x66\x8f\xe9\x06\x74\x0f\x72\xec\xcf\xa0\x9f\xd7\xda\xdc\xe1\x6d\x91\x95\x01\x9e\xe9\x79\xb5\xf3\xa2\xbe\x9d\xb2\xca\xfc\x39\x2f\x85\x36\x1f\x38\x92\x11\x86\xe8\x31\x3d\x96\x39\x5a\xa5\x7c\xd9\xf9\xd8\x07\xb3\x33\x90\x05\x25\x61\xd4\x2b\xf9\x1a\xdf\x3c\xa6\xfd\x89\x5c\x89\xfe\xe3\xcf\x81\x52\x96\x92\xc0\x2b\x99\x50\xf0\xd3\xfe\xb3\x4b\x94\xd2\xbd\x81\x1c\xf6\xf9\xbe\x5f\x6d\x0d\xc2\x46\xfb\x22\xc3\x60\x64\xc0\x2e\xd2\x4c\x9e\x02\x49\xcc\xfb\x28\xa5\xe7\x28\x25\x1d\xe3\xee\xab\x92\x72\xbc\x8d\x9b\xa8\xa3\xab\xcd\xa9\xe3\x19\x86\x3e\xdf\x2e\x71\x6b\x53\x5e\x83\xe5\x4b\x60\xa1\x18\x02\x0a\x17\x2e\x7d\xd4\xf4\x7f\x06\x4b\x99\xfa\x71\x02\x7d\x18\xc0\x89\x41\x07\x43\x2e\x07\x77\x30\x6e\x4b\xca\x76\x9c\x8d\x9b\x1e\x60\x7e\x34\x97\xd3\x0b\x70\x85\x38\x79\x0f\xd1\x41\xbe\x14\x38\xb0\x7e\xc0\x06\xba\xcb\x27\x31\x20\xe2\xdd\xd1\xda\x94\x72\x7c\xbc\xd0\x7a\xf4\x96\x90\xe7\x1b\x0b\x01\x53\x20\x54\x44\x54\x08\x67\xad\x30\x0a\x26\x4c\x8b\x5d\x6a\xec\x53\x39\xf6\x5b\x61\x65\x02\x4e\xc6\x88\x61\x52\xc7\xb9\x1c\xcb\xf5\x15\xf3\x7c\x64\x22\x9a\x2e\xc2\x50\x00\xf5\x99\x95\x28\x46\x5e\x0e\x26\x2a\xa7\xc9\x85\x49\xa2\xd4\xf0\xdd\xb4\xfd\xda\x08\x2c\xca\x3b\xd7\x6d\xee\x70\x50\xcd\x4d\xb9\x62\x13\x3c\xb8\xd0\xdc\x87\x4f\x07\x28\x9b\xfe\xc1\xbe\x64\xa5\x82\x9f\xef\xe0\x70\xcc\xd5\xef\xc5\xa8\xcc\xb7\xac\xfb\x34\x2b\x5a\xab\x0d\x2a\xe4\x58\xc3\x50\xc7\xfc\xe0\x4e\x3c\xc5\xaa\x92\xa7\x71\xbe\xa8\x93\x8a\x0a\xed\xf4\x39\x65\x83\xa0\x77\x03\x2f\x0c\x55\x81\xc3\xd3\xbc\x91\xbb\xa3\xfc\xf2\xf3\xf6\xe5\xe7\xe5\x42\xd1\xae\x9c\xf0\x5a\x54\xba\x18\xd0\x6f\x68\xf0\xcd\xe0\x83\x44\xb8\x63\x3c\xf8\x26\xf8\x06\x2b\x5a\xd4\xd5\xc2\xd1\x0c\x8c\x89\x3e\x29\x25\xcb\x56\x27\x59\x5e\xa6\x7c\xed\x9c\x9a\x19\xf4\x7d\xe7\x61\x10\x01\x67\xf5\x30\x20\x7d\x87\xc7\x3c\x1c\x12\x50\xf0\xb0\x2b\xa1\x34\x5a\x8a\x01\x73\x4a\x48\x74\x59\x11\xa5\xe3\x8f\x9a\x1a\xbd\x37\x75\x78\x54\x4f\xf2\xd3\xa1\x0a\x11\x5c\xf0\xc7\x6b\xc2\xa8\xe5\x74\x9d\xa6\x67\xce\xef\x88\x61\x62\xc4\x35\x1d\x74\xd3\x1e\x56\x8e\x2f\x06\x94\xb9\xa1\x6c\x3f\x20\x46\xfa\x13\x3c\x75\x47\x2e\x27\xea\x7e\xa3\x1c\x47\x17\x03\x9a\x4b\x64\x65\x86\x86\xbb\xe4\x53\x06\xf3\x4b\xb2\xbc\x64\xbe\x2c\xa0\x25\x01\xa0\xd1\xc3\x8f\x7a\x37\x4c\xa5\x38\x51\x29\x79\xef\xc5\x68\x97\xef\x90\xbe\x82\x83\xc2\x92\x4f\x7a\x3e\x1f\x0e\xaf\x6c\x68\x51\xbd\x66\x92\xcd\x55\xec\x3e\xef\x94\xa7\x11\x9e\x4a\x66\x1b\x6e\x9a\xe4\x0f\xa2\xeb\xc9\xdf\x72\x8b\xb2\xab\x24\xdb\x97\xe9\x85\x56\x3c\xca\x3d\xdf\x48\x42\x1c\xcf\x2e\xe8\xc5\xa8\xdc\x9f\x97\xa2\x40\x63\xc2\x5d\xf9\x1e\x47\xe8\x58\xc7\x44\x73\xf1\xdd\xfb\x47\xed\xd4\xe0\xc1\x1d\x08\x5e\xfe\x30\x90\xdb\xa1\xaa\x05\x74\x73\xba\x4e\xea\xb7\x7c\x4e\xd4\x33\x42\xe4\xa2\xd6\x4e\x7c\x70\xd5\x9a\x1d\xda\x34\x39\xed\x01\x0d\xe0\x30\xea\xa7\x81\x94\xad\xd6\x53\x2e\x52\x91\x02\xe9\x97\xb4\xc3\x8a\xc8\xa1\x94\x8f\xc3\x78\xbb\x9b\x06\x8e\xe0\xfc\x00\x52\x33\xe1\x25\xbe\x7b\x08\xa9\x6b\x99\x4a\x78\xb3\xa1\x77\x01\xe4\x7e\xdc\xe7\x32\x1f\x63\xe2\x77\x83\x66\xfd\x79\x3c\xfc\xf4\x68\xf8\x8f\xf1\xf0\xc7\xff\xb5\xb8\x99\x90\xbb\xe3\x6a\x8a\xff\x4d\xbd\x13\x56\xeb\x96\x7e\x75\xa3\xe7\x23\x4e\x1b\xa1\x14\xdf\x5d\x8d\xc7\xc3\x77\x57\x77\xc7\x8b\x81\x8e\xb6\xe7\x0c\xe4\x5d\xff\xdd\xf0\xdd\x70\xf4\xd7\x99\xfc\xa3\x46\x20\x0b\x28\xfd\xe2\x9d\x7f\x22\x3d\xa5\xc5\x00\xbf\x8b\xee\xc0\xf6\xed\x9b\xc0\x09\xfd\x3e\xb7\xe5\xe6\xef\xee\xbc\x7b\xb7\xb8\xb9\x5b\xdd\xc1\x61\x68\xd8\xb5\x57\x9a\xf5\x33\xbc\x9c\xb6\x2b\x28\xe6\xf2\x3c\x79\x1a\x60\xbd\x33\x36\xa8\xc9\xdb\x3e\xbe\x3e\x93\x38\x01\xcf\x7c\xf1\xd1\xcd\xf5\x85\x34\x87\x57\xd4\x85\x0e\x87\xce\xba\x4e\x1d\xf5\x12\xd8\x9a\xde\xf8\x1b\x29\xea\x8f\xab\x69\xad\x46\xa2\x37\x8e\xec\x1a\xcd\x83\xcd\xbd\x80\x04\x9b\x6f\xe5\x3f\xf7\xe5\x3f\xdf\x05\x24\x80\xa0\xd0\x72\x89\x58\x40\x82\x5d\x00\x37\x6d\xc1\x3e\x0b\x48\x90\xcb\x7f\xb8\xfc\x27\x4b\x65\xc1\x80\x04\x29\x28\x9b\x8a\x9c\xaf\x21\x38\xb3\xfa\x4a\x3f\x30\x88\x9b\xbe\x94\x7f\x36\x85\x2c\x2a\xff\x59\xa6\x17\x01\x09\x20\xd4\x91\xfc\xbb\x61\xf1\x52\x16\x8b\x77\xca\x63\x36\x10\xe7\xf9\xf2\x5a\xfe\x2d\x20\x5b\xfe\x23\x0b\xec\x0a\x59\x5c\x73\xf5\x0b\xd2\xd2\x51\x45\x37\xb1\x9c\x49\x01\xef\xb8\x2a\xff\xc2\x40\xc4\xc5\x9a\x89\x60\x41\xd2\xed\x3a\x9a\x83\x10\xb0\xa8\x88\x73\xe2\xa3\x79\x90\x6e\xd7\x66\x64\x30\x46\xd0\x93\x91\xe0\x3c\x2e\x99\xfe\xb3\xca\xb9\x90\x5d\xf3\xdd\x5e\xc0\xa4\xf9\x87\x80\x04\x5b\x26\xe2\x7a\x1c\x7a\x25\xe4\x08\x84\x90\xd0\x92\x7f\xca\x80\x04\x2b\xf8\xda\xc6\x69\x26\xf2\x56\x71\x58\xf4\xe8\xa6\x22\x9f\x95\x82\xea\xa9\xc9\x49\x90\x20\x49\x85\x85\x42\x73\x6f\xca\xc5\x26\x2d\x0d\x52\xeb\xe6\xc4\x68\xb9\xa9\xbd\x7b\xe3\x87\x03\x27\x42\xab\x4a\x6b\x2f\x56\x92\x3b\x91\xd3\x38\x38\x02\xa4\x60\x66\x86\xf3\x79\xba\xa0\x62\x9e\x2e\x94\xf0\x9f\x53\x13\x55\xf2\x46\xeb\x4e\x22\x46\x34\xd1\x8e\xf2\xaa\xfa\xdc\x5b\x67\xd6\xb4\x53\xe9\xcc\xef\x2b\x8d\xf9\x18\xf4\xe5\x23\xae\x6c\x2b\x38\x9a\x80\xb6\x7c\xc4\x51\xa9\xb4\xe5\xdf\x82\xae\x7c\xc4\x51\xa6\x74\xe5\x77\x31\x59\x51\x39\x80\x68\x37\xfa\x83\x00\xbf\x0e\x43\x49\x46\x26\xe4\x19\x49\x4a\x7d\xdd\x0f\x89\xea\xce\xad\x22\xcb\x4e\x67\x69\xdb\x00\x01\xab\x20\x53\x93\xa4\x94\x01\x91\x37\x3e\x8d\x28\x1f\xc5\x18\xac\x9c\x6c\x0d\xb9\x4e\xa5\x7d\x8e\x32\x10\xf1\x3a\x58\xc8\xc1\xeb\x0a\xbb\xd1\x1a\xa3\x3d\xc2\x52\x94\x84\xcd\x35\x5c\x17\xf9\x7e\x37\x94\xf4\x59\xa2\x4d\x8b\x4b\xe2\x51\xac\xad\x0e\x9e\x2a\x53\x3b\x94\xea\x00\x61\xa8\x90\x9d\xde\x54\xa4\x24\x37\xce\x4c\x2b\x8c\xab\xe9\x12\x78\xca\xb3\xeb\x1d\x2b\xe9\x8a\x2c\xcd\xe1\x97\xfc\x67\xa9\xe0\x13\x94\xbb\x98\x07\x10\xe0\x9f\x2e\x3f\xb3\x36\x2d\x7f\x6f\x7e\xfc\x05\x30\xcf\xce\xd6\x70\x04\x9e\xc9\x2d\x73\xf5\xf6\xc3\x49\xed\x62\xde\x64\x80\x9d\xeb\x29\x36\x1f\x2f\x74\xe0\x41\x4e\x0b\xa2\x45\x49\x5e\xb5\xad\x17\x6c\x37\xc2\x5a\xf6\xbe\x67\x5c\x14\x29\x2b\xdf\xbf\xa7\xf3\x45\xe5\xbb\x1d\x34\x5f\x11\x75\xee\xbd\x83\x32\xfd\xc4\x02\x72\x73\x4b\x9c\x06\xa7\x69\x6b\x5b\xeb\xbe\xb7\xd6\x7e\x63\xcd\x37\xfa\x5a\x33\xe7\x56\xa1\xf6\xcd\x45\xcd\xc6\x89\xc0\x26\x1c\xbf\x93\x0a\x81\xe7\xea\x38\x9d\xf3\xc9\xa2\xf2\x5a\x2f\xbd\xd6\x6b\xd2\xda\xd9\xfe\xf4\xbf\x8a\x59\xab\x83\x62\x31\x9f\x2c\xa8\xf1\x88\x70\x26\x0b\xc2\xc7\x5c\x10\xbe\xc0\x7e\x9f\x8a\x87\xeb\x98\x54\xab\x4b\x39\x0e\xae\x3a\x06\xd7\xf5\x1d\x98\x7f\x16\x64\xd2\x68\xd1\x33\xf4\xb5\xd2\x67\xbf\xff\x5f\x9d\xd3\xf0\xeb\x26\x19\x8b\x8b\xd6\x73\x50\xee\x44\x74\xb7\xe3\x46\x45\x7d\xa3\xd1\x34\x8c\xf6\x03\x60\x2a\x17\x76\x27\x42\x60\xc7\x1a\x4d\xf9\x83\xa2\x15\x34\x50\x45\xa1\x9f\x1a\xab\x36\x92\xcf\x27\x0b\x92\xcf\xc7\x0b\x78\x92\xa1\x42\xb8\x42\x72\xbd\x3b\x4f\xd5\x65\xca\x97\xf9\xe5\x91\xa8\xc7\xcb\x3c\x01\x6b\x9d\x30\x54\xc5\x46\x26\x81\x52\x6a\x7e\x92\xbc\xbb\x61\x30\x86\x3a\x8d\xc5\x86\x52\x78\x92\x69\xc6\xa2\xce\x72\x8e\x91\x89\x5b\x5a\x26\x74\x57\x30\x23\xd6\x43\x72\x2b\xa9\xa4\xe8\xb8\x39\x4a\xda\xf9\xe6\x64\xc1\x3e\xee\x59\x29\x1e\xf1\x74\x0b\x11\x03\x7e\x92\x7c\xc1\xac\x33\x15\x5e\xd6\x93\xfc\x54\x87\x5c\x5d\x32\x71\x96\x6e\x59\xbe\x17\x9d\xc1\xb0\xe0\x69\xc0\x11\xcf\x2f\x21\x7a\x17\x99\xb0\x7b\x77\xbe\x93\xfb\x24\xa6\x77\xb5\x23\xf3\xdd\x31\x49\xe8\x3c\x10\xb9\x24\xf3\xe6\x45\x9a\xf3\x5c\x88\x5c\x72\x41\xfa\x15\x9b\xcb\x74\x09\x8c\xcc\x86\xe9\x02\x0a\xad\x04\x97\xea\x7b\x41\xb2\x23\x6e\x0a\x7b\x01\xd3\x78\x79\x5e\xb2\xe2\x82\x15\xe4\x58\xb0\x46\xbd\xab\x93\x9c\x73\x70\x12\x79\x6f\xa3\x33\x6e\x75\x13\x4f\x2f\x18\x17\xe5\xa3\xe5\xb2\x2b\xb3\x34\x1d\xbc\x87\x0d\xad\xdf\x4d\xd5\x69\xe5\x7b\xeb\x11\x91\x73\x60\x27\x40\xb4\x7a\xca\x97\xef\x69\x67\xaa\x82\xb7\xe3\x1b\x5c\xb0\x55\xc1\xca\xd6\x49\x82\x03\xd3\x9f\x90\x42\xfe\x03\x01\x5c\x6b\x4b\x31\x7c\xa3\xe2\xa8\xf7\x27\x84\x81\x59\x72\x18\x66\xc8\xb3\x13\xc3\x37\x29\xf2\xdf\x3b\x34\x4e\x5c\xf5\x9a\xd5\x22\x2a\x1b\xe6\x0f\x62\x23\xcb\x82\x49\x10\x70\x2c\x9c\xf6\xc7\xaa\x7f\x67\x23\x24\x12\x23\xe5\xb5\x37\x5d\x56\x21\x77\x1a\xee\xf4\xea\xe0\xba\xcc\x77\xa7\x30\x00\xf5\x58\x8a\xff\x6a\xc0\xd5\x91\x37\xb5\x5b\x84\x93\x67\x5c\x23\x1a\x0b\xab\x0b\xea\x84\xf7\x08\x57\x1d\x56\xb7\x9d\xbd\x3b\x7e\x0a\x75\x37\x84\x7b\xca\xc6\xe9\x7f\x71\x29\x63\x6b\x8c\xc8\xc9\x04\x93\xbe\xb0\xca\x9b\xc6\x50\x74\xc2\x32\x2d\x8f\x8f\xa6\xb1\xf0\x7a\x9f\x2a\x89\xfc\xa5\x1d\x05\xc2\xba\x2d\x5d\xa1\xd9\x4e\xb3\xfc\x91\xb7\xc8\x1c\xe8\x1d\x57\xb0\xf6\xd8\x68\x1d\x8b\x0d\x2b\x1e\x25\xe0\x9f\x88\x09\xd0\x17\xf3\x55\x61\x27\xe0\xcd\x6d\x8f\x69\xb3\xd1\x79\x91\xc7\xcb\x24\x2e\x85\x53\x97\x30\x1b\x95\xde\x9f\x82\x01\x91\xe7\x00\x21\xe5\xcb\x26\x4c\x91\x41\xd2\x72\x1b\xc1\xa9\x7d\x9e\x96\x82\x71\x56\xa0\x40\xd8\x73\xc6\xf8\x32\xe8\x3e\x93\x98\x68\x24\xdb\xae\x5e\x30\x85\x77\x5c\x50\x63\x92\xe9\x18\x1e\x5d\xc8\x80\x5d\xb6\x70\x10\xf2\x6b\x1f\xa9\x6a\xd6\xc2\xce\x86\xdc\xc4\xb5\x30\x23\x99\xa2\x4d\x9a\x2d\xe5\xd0\xd4\x47\x5c\xc4\x89\x60\xc5\x93\x58\xc4\x32\xa1\xdc\x9f\x8b\x82\x29\x6e\x09\x47\xb7\x81\xe4\xc9\xcb\xd3\x37\xaa\xf0\x69\xbe\x84\xc0\x6e\xcd\xf9\xdd\x82\x06\xc7\xad\xe3\x05\x37\x14\xde\xc2\x39\xdb\xbb\xb1\x76\xb7\x2c\x9d\x3a\x86\xff\x9d\xd5\xeb\x6c\xa1\x7b\x01\x8f\x2c\x81\x1e\x60\xc7\xda\xd4\x53\x42\xb7\x80\x27\x0c\x6f\x9f\xce\x57\x42\xbe\x93\xc6\xdc\x4a\x9d\x3c\x6a\xd6\x58\x95\x16\x25\xea\x12\xdd\x76\x8e\x0f\x1c\x71\xe4\x5c\x31\x0b\x82\x48\x4c\x93\xa3\xea\xf6\x7e\xff\xbf\xb8\x7f\x05\xd3\x85\x9f\xd6\x4c\x3c\xd3\x11\x8a\x8f\xb9\x35\x99\x08\xc6\xef\x4d\x40\x1c\x9b\x00\x67\xcb\xa0\x77\x9b\x2a\x9b\x75\x8a\x48\x38\xb1\x0a\x4c\x72\x8f\x79\x17\x4a\xf2\xe5\x45\xb2\xc1\xb7\xb1\x9b\xc7\xc2\x4a\xe7\x44\xbf\x15\x2d\xe6\xf9\xe2\xe8\x73\xd1\x93\xb6\x28\x63\xc9\x5f\x45\x56\x9d\xd7\x49\x92\xa3\xcc\x2f\x39\x2b\x9e\x58\xbe\xb4\x91\x60\x04\xd3\x5f\x52\x76\x79\x38\xe4\x52\x0e\xbf\x40\x63\x02\xff\x39\xb6\x6e\xce\x23\xcc\x3d\x50\x96\xfe\x94\xe5\xb1\x00\xd2\x39\xf6\x6c\xd3\xdc\x77\xda\x20\x60\xfc\x64\xca\x1f\x58\x1b\x76\x17\x32\x62\xce\x87\x93\x45\x6d\xdf\xee\x08\x53\xa2\x7d\xef\xe5\x2a\x4d\xc4\x60\x83\xd8\x3c\x38\xcf\x8b\x25\x2b\x86\x70\xa7\x32\x54\x4c\xde\x42\xf2\x89\x63\x87\x2f\xd9\xfa\xca\x84\x94\x71\xf1\xab\x2c\xa9\xd4\x09\xf0\xfd\x33\xb0\x81\xea\xd1\xd6\x30\xec\xdb\x37\x35\x96\x5a\x23\x22\xf7\xa0\xdc\x6d\x27\xf9\x76\xb7\x17\xfa\xc6\x46\x5d\x93\xb9\x20\xaf\xa7\x7d\x53\x11\xb5\x33\x6e\x67\x4c\x17\xb7\x6c\x15\x92\x52\x36\x0f\x76\xf1\x72\x99\xf2\xf5\x30\x18\xe4\x8b\xa9\xdc\x1b\x74\x83\xd2\x3a\x38\x68\x85\x0a\x15\xd9\x4b\x36\x37\xc8\x47\xd0\x0d\x89\xc1\xcf\x7f\x37\xc8\x47\xaa\x3b\x52\xd2\x0d\x2a\x46\x00\x1f\x4c\x12\xf8\x50\x9c\xb0\x7a\x55\x5d\x43\xf1\x3c\xbf\x02\x27\x9e\xd1\x79\x7e\xf5\x26\xfd\x94\xf2\x75\x18\x22\x78\x18\xb6\xc8\xf7\x7c\x89\xca\x41\x8a\x75\x08\xb5\x72\x48\xcf\x51\x61\xd9\x6b\x35\x3b\x3c\x48\x31\x71\xca\x27\x83\x18\xab\xa8\xe3\x28\xd1\xe5\x15\x30\x34\x10\xf0\x20\xc6\x98\xf4\x8f\x5c\x9d\x03\xcc\x2d\x02\x34\x3f\xb4\xfe\x05\x6c\xb1\x6f\x54\x4c\x9d\xc6\x08\x87\x82\xec\x69\x63\x14\x43\x3e\x9d\xf4\x95\xb8\x33\x8a\xcf\x4b\x04\x37\xe2\xe5\x90\x66\x98\x78\xe9\xe0\xd6\x97\x0c\xe9\xde\x42\xf8\x02\x29\xd8\x12\x80\x28\x29\x49\xa2\x42\xf9\x9c\x76\xcb\x0b\x6f\x7e\xf9\xdb\xdf\x8a\x78\xb7\x49\x93\x52\x8f\x74\xd6\x35\x3d\x37\xb0\x3a\xcc\xb3\x5d\xaf\xea\x7c\xa9\xbb\xab\xa2\xae\x70\x2c\xce\xfc\x9a\x89\xc7\x8f\xf3\xab\xaa\x3e\xc8\x6b\xd7\x39\x70\x76\xda\x6d\xdc\x6f\x2b\xd6\x1a\x75\x85\x14\x84\xda\x47\x44\x98\x2d\x04\xe6\xf9\xf2\x90\x45\xcb\xfa\xd0\x5d\xd4\x01\x7b\xb4\x42\xf2\x2a\x62\xe4\x3a\x12\x04\x6a\x47\x9c\xa8\xda\x51\xa1\x14\xe6\xd7\x9f\x7b\x4f\xd5\xb0\x7a\x70\x74\xa9\x8e\x1c\x6b\x53\xd5\x01\x36\xc9\x3a\xb6\xe8\x6b\x60\x19\x6a\x54\x66\x8c\x4f\x8b\x35\x13\xb5\x70\xe1\x12\xb5\x54\x73\xa1\x6d\xf6\x76\x8d\x9c\xca\x7e\x94\x57\xaf\x37\x46\x98\x82\x4f\x5f\xbf\xc9\xe1\x0f\xfc\x70\x60\x1a\x6c\xad\x7c\x35\x05\x9f\xc8\xda\x4c\xd9\xf8\x11\x9e\xdb\xed\xde\x1b\x57\x03\x64\xcc\xac\x5b\x17\xe0\xcc\xa8\x08\x53\x4f\x4a\x90\x47\x9d\xb2\x62\xd7\x36\xb9\x02\x3c\x7a\x0d\x0f\xd7\xa8\x1e\xf2\xba\xb9\x23\xde\xff\x4f\x5e\x9e\xca\xf1\xbe\x66\xf1\xf2\x25\xcf\xae\x67\x8d\x6f\xed\x48\x4f\xe2\x86\xdf\x66\xea\xf8\x6d\x9a\xa9\xee\x50\x4c\x6e\xae\x22\x41\xae\x23\xae\xf7\x56\x61\xf6\x56\x4e\x44\xbe\x8b\x38\x01\xf4\x14\x89\x41\x41\x14\xe6\x89\xf2\x01\x27\xf2\x54\x47\xa2\xc2\x24\xae\x24\xcd\xde\x29\x07\x8d\x1b\xb5\xc2\x11\x23\x0e\x5c\x23\x5e\xe1\x8a\x5c\x1e\xdb\xa2\x44\x98\xb8\x54\x60\xef\x0c\x3b\x48\xf1\x5a\x8a\xef\x72\xc4\x77\x2f\x55\x32\x20\x9c\xd4\xa7\xd6\x51\x03\x39\x71\x21\xce\xae\x77\xe6\x75\xf8\xb3\x0d\x83\xe7\xde\xcf\xe3\xe4\x43\x6f\x57\xe4\x17\xe9\x92\x2d\x7b\x71\xd9\x83\xc7\x5d\x99\x60\x45\x6f\x52\x3f\x1b\x62\xda\x1d\x99\x17\x42\x4d\xd5\xf7\xc6\x34\x5b\x4e\xb1\xc8\xb3\x4c\xb2\x84\x3a\xac\xb1\x29\x73\x22\xae\xde\xd3\xa2\xeb\x8c\x68\xb9\xa2\xe5\x65\xd3\x24\xf0\xdd\x53\x98\xf4\x4c\x39\x13\x28\x6f\x49\x7a\xe7\x7b\xa1\x02\x63\x8d\x7b\xbb\x82\x95\x12\xdf\xab\x10\x1a\x9d\x9b\xc7\xe2\xbb\xa7\xd6\xed\xdd\xe2\x44\xb5\x5f\xd4\x80\x50\x1b\x5b\xea\x1a\xb8\x73\x6c\xdf\x74\x40\x31\x5f\xf5\x64\xaf\xbd\x40\xd7\x0c\x46\xdf\x98\x40\x06\xed\x05\x9d\x9a\x50\x07\x92\xd7\xd4\x11\x14\xb4\xfd\x2e\xc6\x2d\x88\xbb\x4a\x0a\x57\x57\xe3\x16\xb1\xdc\x2e\xae\x1a\xf2\x38\xff\xff\x97\xe1\xb3\xcb\x00\x51\xf8\x94\x2e\x1c\xf4\x38\x10\xa4\xa3\x56\xdf\x38\x50\x76\x55\x36\x6a\x2d\x9a\x00\xaf\x25\xb6\x96\x2e\x05\xf4\xdb\x56\x97\xd1\x1e\x8f\x2a\x80\x3a\x97\xb7\xdd\xb1\xdf\xad\xab\x28\x39\xf2\x4e\xc2\x97\x8d\xa1\x33\xf4\x9f\xb0\x04\x0f\x81\x97\x40\x07\xea\xd2\xe6\x65\xca\x67\xac\x93\x34\xb5\x07\x67\x30\xa1\xa3\xd4\xf1\x29\x96\x83\x63\x88\x5e\xc1\xae\xae\x5b\x61\xb0\x1c\xef\xd7\x47\x88\x69\x62\x4c\x1a\x64\x52\x3d\xf3\xd0\xc0\x78\xd6\x8b\x86\x58\x85\x9e\x0b\xb1\xc6\x62\x3b\x79\xad\xd5\xee\x1a\xa8\x73\x7f\xc1\xfc\x4b\x93\x76\x23\x2e\x85\xee\x6a\xcb\x51\x5e\x49\x3a\xfc\xa9\x9b\x80\xfe\xca\xe2\x0f\xa7\xf1\x0e\x42\xe3\xe8\xdf\x91\x22\x27\xb5\x20\xde\x63\xc8\x1c\x41\xd9\x9b\xf7\xb8\x4f\xf7\xd1\x0b\x4e\x62\x2e\x8f\x9b\x04\x56\x2f\xee\xc1\x7d\xa6\x24\x2f\x3e\x2d\xf9\xb7\x60\x19\xc5\x5f\xec\x5d\x91\x1e\xae\x5f\x64\x8b\xf0\xce\xa7\x0a\x22\x36\xfd\x04\x78\x15\x48\x75\x81\xab\xe9\x3c\xd0\x78\x30\x20\x81\xc5\x89\x60\xe2\x60\x8e\x6b\xb0\xe8\x56\x22\xbe\xaf\x17\x6a\xce\x16\xcd\xb3\x65\xae\xd1\x91\xa0\x9f\x20\x9e\x8c\x42\x0a\x73\xb6\xb0\x8e\xd5\xce\xf3\x6e\xd6\x29\xa5\x7b\xb1\xf2\xd1\x6b\x50\x1b\x99\x83\x3e\x6b\x26\x44\x12\x67\xc5\xf4\xe5\x17\xb9\x8a\x7e\xee\x52\xb8\xe5\x96\xcc\xc2\x10\x94\x00\x2d\x6f\x64\x06\xbd\xf2\xaf\xef\xd5\x06\xfe\xfa\xf1\x07\x3c\x3a\xc9\x77\xd7\x67\xf9\x49\x96\xee\xce\xf3\xb8\x58\x4e\x8b\x66\x0a\x2d\x1c\xc7\xfc\xa2\x22\xc4\xe7\x2c\xbb\xfc\x76\x89\x17\x94\x17\x1b\xd7\x38\x63\xa2\x4a\x72\x29\x60\xa7\xd4\xf7\xb9\x83\x4b\x40\xf5\x7a\x7b\xea\xbe\xdb\xce\x69\x0a\xd1\x9d\x7c\x13\xfb\xc3\x01\xe5\x73\xbe\xa0\xf0\x1c\x77\xed\x6a\xfc\x2f\x88\x75\x70\x77\x7c\xef\xff\x91\xb1\x0e\xcc\xaa\x29\x87\xc8\x11\x57\xaa\x03\x8e\xee\x29\xfb\x0e\xf4\xe3\x04\x93\xf2\xd8\x9b\x7f\xa0\x09\x2b\xba\x22\x62\x16\xb4\x89\x0c\x64\xf3\x12\x45\x83\xa5\x2f\x74\x32\x9e\xa6\x0f\x8a\x69\x3a\x18\x28\x83\x95\x5a\xdf\x93\x2e\xa6\x82\xe6\x44\x3d\xfa\xde\x79\x77\xe8\x3f\x5c\xa4\x35\x72\xfa\x10\x2a\x7d\xa2\x7a\xc0\xa8\x0e\xe2\x57\x8c\x12\x89\x3e\x32\x77\xb0\xa0\x83\x80\xd4\x46\xeb\x1c\xeb\xc9\xe1\x8a\x14\x95\xf2\x02\x55\x87\x39\xeb\xba\xbb\xf9\x53\x7e\xe3\xe0\x49\xfa\xe3\x5d\x4c\x76\x7f\x3a\x66\xc0\x8a\xee\x47\xf1\xe1\xb0\xbb\x2d\x6a\xc0\xb2\x83\xcc\xac\x46\xf5\x5d\x5c\x45\x36\x74\x55\x07\x09\x68\x85\x18\xd8\xd2\xf3\x66\x88\x81\x53\x7a\x5e\x87\x18\x58\x1f\x8b\x2b\xa0\xbc\x42\xdb\xd0\xda\x1a\xaa\xbb\x56\xf1\x01\xd6\x26\x3e\xc0\xfa\xf3\xf1\x01\x4e\xeb\xf8\x00\xd6\xb8\x02\xc2\x04\xac\xbd\x30\x01\xeb\x05\x26\x79\x45\xae\xdb\x61\xe8\xcc\x38\x95\x9b\x66\x97\x66\xf4\xda\x86\x0f\x20\x97\xad\xb0\x11\x9f\xba\x63\x44\xbc\xbf\x0d\x06\x2f\xbb\x7a\xe9\x88\xaf\xf0\x29\xba\x8c\xde\x87\xe1\x7b\x3f\xbe\xc2\x05\x62\x38\x7a\x24\x87\x33\x55\xbe\x55\x47\x1a\x83\xfd\xd6\x46\xf2\x15\xb9\xaa\x87\xac\x16\x79\xa1\xce\xfc\x8b\x8e\x96\x82\x12\x4a\x38\xf5\x0f\x87\x33\x60\x99\x5f\x22\x86\x29\xbd\xaa\xc8\x73\xfa\x22\x7e\x41\x9e\xd2\x3b\xff\x7c\x57\x0e\x0e\xef\xca\xc1\x5f\xee\xac\xc9\x1b\x7a\xe7\x9f\xf3\xe1\x60\x31\xbe\x9a\x8f\x87\x3f\xc6\xc3\xd5\x62\xf0\x97\x3b\x29\xf9\x48\xef\xfc\x73\x7c\x3e\x1f\x4f\xd4\xe7\x89\xfc\xcc\xe7\xe3\xe1\xf7\xea\xfb\x03\x05\x7d\xf1\x33\x2e\x60\x40\xbf\x36\x85\x16\x13\xb2\xd9\x91\x7f\xad\x57\x42\xba\x42\x2f\x1c\x77\x81\xe7\xca\xd5\xcc\x68\xff\x84\x67\x9a\x60\x75\x5e\xa0\x4a\x7f\xb9\x9a\xd9\x5f\x08\x47\x6c\xca\x68\x86\x04\x9e\x89\x41\x10\x44\x42\xf9\xd5\x18\x8b\xe0\x66\xbf\x6a\xa1\x58\x34\x90\xb5\x6a\xc3\xd9\xa7\x24\xb0\xbc\xca\x47\x1d\x50\x01\x3b\xde\xea\x27\x26\x6d\xf6\x01\x31\x1d\x4b\xed\x2e\x26\x7c\x76\x37\xfa\x01\x47\x6f\x6c\xee\xf3\x68\xc0\x2a\xf2\x84\xd6\x31\x25\x6b\x16\x2b\x20\x8f\x95\x42\x72\x1b\x5f\x91\x57\xfa\x67\xca\xa1\xd7\xd7\xdd\xe1\xec\x95\xd3\x3f\x44\x6b\x51\x71\x88\xfb\x13\xb2\x92\xff\x6c\x24\x8d\xf2\x9e\x2c\xed\xdf\xae\x62\x78\xe2\x10\xae\xf3\xda\x6e\xa8\x20\x29\xcd\xed\x49\xa4\xb9\x3e\xbe\x64\x4f\x05\xa9\x83\xcd\xa4\x84\x77\xa9\xdd\x39\x65\xc3\x64\xda\x0c\x6e\x94\x1c\x0e\xfc\xa1\x44\x96\xfc\xc1\xf8\x70\x58\x85\x21\x1b\xee\x1f\xd2\xb4\xae\x7f\x6a\xc5\x9c\xa5\xb2\x23\xd8\x3a\xdb\x00\x62\xf6\x95\xd4\xb1\x19\x38\x25\x6d\x56\x48\x0c\x11\x1b\x26\x76\x81\x56\xb3\x57\x88\x93\x54\x26\xee\x31\x8e\x38\x28\x91\xab\x4e\xb5\x68\x69\x66\xb8\x09\xc3\x62\x76\x2e\x8f\x26\x72\xe6\x1d\x63\x57\xd3\xe9\x8c\x93\x70\x15\x12\x24\x5d\x21\x87\x2e\xea\x57\xfa\x48\x42\x8d\x9f\xaf\x05\x83\x8d\xe0\xdb\x71\xda\xf7\x94\x91\xc6\x1c\x05\x26\x3b\x35\x9c\xb8\x42\x09\xf4\xb3\x32\x2d\x80\xd4\x62\x8a\x96\xb8\xa3\xea\x39\x4a\x6a\xc5\xb6\x1d\x81\x7a\x15\xd3\x2f\x8a\x49\x6c\xef\x18\xe8\xaf\x48\xe0\xc3\x61\x4c\x32\xc4\xa5\x4c\xbd\xa3\xfd\x3e\x1f\x65\x2c\x5e\x4a\xaa\x90\x52\xb4\xa2\xc1\x36\xbe\xfa\x35\x4e\x45\x90\xf2\x1e\xc7\xb3\xc7\xe8\x57\xc4\x47\x3a\x0d\xaa\x0a\x1c\xa5\x64\x43\x03\x51\xc4\x69\x26\x8f\x9c\x2c\x38\x93\xed\x98\x94\x68\x83\xc9\x45\x07\xe5\xb6\x0e\x1c\x65\x18\x36\x67\xb8\x87\x2b\x96\x84\xe6\xd4\xac\x57\x45\x2e\x46\xab\x6c\xef\x5b\x3c\xb4\x66\x3c\x8b\xa3\x35\x5a\x42\xac\xdb\x8b\x8a\xfc\xd6\x7d\x0c\xe1\xc0\xfd\x71\xe4\xfd\x88\xfe\x98\xe4\x5f\x7b\xb6\x7e\xb3\x1b\x51\x03\xb2\xa0\x81\x86\x62\x0d\x0e\x9d\x10\x49\x1e\xf7\x36\x68\xe5\x98\xbc\x86\x21\xdd\xd4\x35\x34\xc0\x23\x41\xea\x62\x15\xae\xc8\x33\x7a\xb3\x64\xe7\xf9\x9e\x27\x2c\x7a\x4d\xe4\xd0\x84\xc8\x58\xf4\x47\x45\xde\x76\x11\x99\x67\x73\xb6\xa8\xc8\xcf\x5d\x54\xa3\xeb\x82\xa1\x22\x3f\xb5\x81\xdd\xf9\x24\xac\xba\x58\xaf\xc8\x2f\x9d\xf7\x94\xae\x7c\xaa\xd5\x3c\x87\x83\x97\xfa\xf3\xd9\xe9\x73\x73\x67\xe9\x5c\x67\xfc\x5e\xb7\x82\x7e\xef\x34\x55\x53\xe4\x30\x0c\x6b\xaa\xe7\xe7\x58\x07\xe2\xae\xcb\x1a\x3b\xcf\xce\x0b\x99\xee\x5b\x17\xd3\xa1\x1f\x51\x90\x52\x9b\xde\x37\xbf\x6b\x8e\x65\x66\x46\x17\xd9\x1e\x31\x72\x23\x73\xfd\xed\x7f\xc4\x63\xc8\x7f\x77\xdd\x13\xfb\x92\x19\xae\x9f\xc1\xfe\x1d\x09\xec\x02\xcc\x79\xa2\x61\xd6\x60\x09\x6a\x76\xc9\x39\x4b\xaf\xd9\x8a\x15\x8c\x27\x46\xbf\x00\x6a\x8d\x4d\x5c\xf2\x6f\x44\xef\x9c\x31\xde\x4b\x79\x2a\xd2\x38\x4b\x4b\xb6\xec\x0d\x7b\xe5\x7e\xc7\x0a\x84\xbd\x12\x92\xe5\x63\xcb\xa0\x36\x31\x82\xdb\x2b\x51\x8f\xff\x3f\x9d\xdd\xf4\x9f\x86\xad\x2c\x99\x78\x65\xd6\xe9\xe5\x6a\x56\xc7\xf9\x75\x52\x3b\xb7\x47\x1d\x41\xf2\x70\xe8\xac\x05\xc6\x0d\xde\x32\xff\xc5\x05\x20\xfa\x4b\xf7\x10\x0e\x07\x5f\x58\x6e\xf7\x47\x05\x81\x0d\x24\xa5\x23\xb9\x2d\xfe\xe3\xd8\xeb\xf5\x6d\x6f\x49\xeb\x1c\xea\xab\x6e\x8f\xe8\x6b\x3f\xaf\x34\x0a\x70\x65\xa2\x46\x92\xbf\xab\x5f\xff\x89\x04\xee\x7e\x2b\x5f\x8d\x16\x84\xfc\xe9\xb1\x81\x75\xee\x20\xfb\xca\xb5\xe8\x1e\xe6\x1b\xb9\x1b\x7a\xec\x6a\x57\xb0\xb2\x04\x06\x65\x5f\x0a\xf3\x48\xcf\x39\x53\x6f\x65\xe4\x85\x37\xee\x29\x3b\x1a\x43\x14\xe2\xc2\xd5\xc2\xd3\x8d\x73\xd0\x23\x6d\xca\xc1\x1c\xcb\x8d\xb6\x11\x7a\x85\x89\x08\x43\xb5\xda\x95\x7a\x63\x93\x53\x41\x50\x61\x5e\x7f\x54\x21\x96\x02\xa2\x1a\x3b\xa2\x42\xdc\x15\xf9\xae\x1c\x81\x2d\x57\xc1\xb8\x7a\xa3\xf0\x6f\xca\xb3\x55\x8f\xac\xc0\x24\x87\x34\x92\x63\x22\x2a\x54\x8c\x5e\xed\x0b\x76\x92\x6f\x77\x39\x67\x5c\x38\x0c\xdf\x3f\x9c\xad\xff\x8f\xff\x17\x23\x52\xc6\xfe\x47\x60\x52\xb8\xb5\x30\xeb\x21\xd8\xff\x09\x5c\xc4\xd9\xff\x76\x74\x6c\xfb\x2e\x98\x87\x08\x8b\x23\x00\xf8\x3a\x4c\x68\x5b\xcf\x59\xc3\x0b\x0b\xe2\x76\xb3\xd9\xb1\xf5\x11\xc6\x3e\x8b\xdf\xee\x5b\xe2\x1e\xf9\x0a\x47\x0c\x82\x04\x11\xf5\x50\x57\xca\x8e\xe1\x60\x23\xb1\x4c\xfb\xff\x5b\x90\x70\xf7\xa3\xf1\x0d\x62\xfd\x8f\x5b\x88\x35\xec\x8b\x48\x98\x16\x99\xc4\xe6\xb5\x0e\x99\x61\x4c\x72\x86\x38\x68\xd7\x02\xc5\xd2\xff\x0c\xef\x09\x17\x7e\xac\x50\x78\x64\x20\xfd\xc4\x74\x66\x18\x36\x12\xb4\x38\x10\x86\xa8\x3b\x03\xe9\x77\x0a\xea\x0c\xad\xca\xf3\x06\x50\xc4\xab\x93\x8c\xc5\xbc\xd5\x77\xbc\x82\x1e\xe3\x95\xd7\x8f\xfd\x54\xad\xc7\xab\xae\x36\x45\xbe\x5e\x67\x56\x7f\x1f\x90\x96\x1e\x5e\x50\x2e\x4f\x97\x71\x17\xc3\x53\x51\xcf\xce\x54\x9b\xb3\x45\x67\xa2\xba\x6e\x73\x7a\xab\x1b\xf2\xe7\xa0\xc4\x4e\x15\xba\xa0\x24\x82\xb2\xd1\xc7\x3d\x2b\xae\xdf\xe8\xf8\x09\x60\x92\xa1\x2e\xc9\x9e\xe4\xdb\xa7\x19\xdc\xdc\xfc\x84\xb0\xba\xa1\xb3\x36\x6e\xc6\xc4\xca\xab\x8b\x94\x69\x58\x11\x86\xbf\xa0\xc2\x8a\xdd\x85\xf6\xba\xe5\x23\x66\x6e\x7f\xb5\x02\x2b\x85\x38\x28\x4f\x5e\x9e\xbe\xc8\x97\x0c\x23\x5b\x40\x45\xd6\x37\xf5\xf3\xd1\x0e\x9c\xc0\x8d\x8d\x93\x3f\x4d\x45\x59\xdf\x82\xa9\x79\xd1\x19\x55\x16\xd6\x03\x16\xd3\x2e\x4e\xd9\x7e\x08\x55\x58\x4b\x94\xa2\xb6\x44\xc9\x0d\x9c\x46\x39\x57\xb7\x2f\xd3\x9f\x21\xa2\x4d\x0e\xef\x91\x11\xf5\x6e\xa7\x90\xa4\xfd\x46\x99\x91\x88\xda\x44\x49\x39\xba\xc9\xfe\xba\x46\xfc\xda\xdd\x81\x47\xf6\x42\x29\x5b\x26\x05\x15\xd6\x46\x46\xd4\x36\x32\x66\x05\x63\x9a\xea\x87\xb7\x95\x81\x62\x69\xbf\x6b\x03\xc5\xf8\x70\x28\x75\xf0\x6a\xca\x47\x1e\xc8\x10\x3e\x16\x06\x4e\x43\x45\xd3\x51\x63\xd6\x02\x5e\xa6\xa9\x1d\x52\x56\x0f\x69\x4f\xe3\x30\x2c\xfa\x94\xa6\x87\x43\x19\x86\x79\x9f\xd2\x6c\xda\xe7\xa3\xf2\x43\xba\x7b\xc9\x4f\xf3\xbd\x5c\xf9\x7d\x18\xca\xdd\x14\x86\x89\x81\x58\x6a\x20\x96\x55\x00\xd0\xba\x34\xed\x4f\x20\x66\xb0\x07\x3d\xb9\x10\xab\x06\xbc\xec\xc6\x81\x50\x6f\xfe\x19\x78\x0d\x0c\x91\x44\x7a\x9f\x3b\x06\x8a\x75\x02\x43\x24\xc3\x1a\x19\x0a\xf3\x33\x12\x78\xa6\x79\x2b\x89\xdf\x83\x48\x6e\x83\x59\x00\xe5\x8c\x72\x3d\x88\xac\x77\x67\x5a\xc2\xa3\xa8\xc6\x64\xa1\x2e\x1b\x44\x7e\x48\x13\x9b\x01\x9f\x41\x14\xa8\xad\x1e\xb4\xa6\x71\x06\x27\xd2\x32\x60\x7f\x62\x2e\xe0\xfa\xca\xf3\x25\x93\xb0\x00\xdf\x5c\xb5\xbd\x4a\xaa\x17\x22\xd6\x4b\xaa\x97\x23\xd6\xeb\x5a\x4d\xcb\xcb\x54\x24\x1b\x04\xb8\xa9\x06\xa7\x44\x09\x49\x5c\x32\x0f\x2c\x9e\x8b\x26\x2a\x46\x49\x96\x73\x66\xc1\x00\xfa\x17\xc3\xa7\xca\xed\x3f\x5c\x32\x01\x98\x23\xa8\xf0\x14\x1a\x6b\x40\xf4\xf6\xf6\x72\x54\x62\xb7\xde\x67\xcb\x93\xd2\x2d\xae\x61\x6e\xd1\xcc\x11\xd3\x81\x7e\xdf\x46\xea\x6c\xb5\xc8\x48\x09\x86\x03\x36\x42\x7a\xb3\x7f\xd7\xff\x17\xa3\xb4\xbe\xf6\x95\x4b\xe3\xec\x75\x92\x50\xeb\x78\x73\x9a\x2f\x19\xc9\xea\xef\xd7\x72\x99\xf6\xf5\xf7\x4b\xf0\xb9\x2f\xa7\x7a\x05\xcd\xfa\x19\xe5\xa3\x5a\x3e\xa3\xda\xf2\x4f\x54\xee\x50\x27\x52\x1f\x1b\xfd\xb9\xe7\x5b\x59\x8a\x2d\xa9\x8e\x55\xbc\xa3\x6f\x51\xad\x0a\x6d\x92\xcd\xdd\x6c\x87\x0c\x36\xf1\xd0\x19\xc9\xc8\x1e\x47\xdd\x59\x4d\xd2\xa5\x1e\xda\x19\xc5\x4d\x6a\x8d\x09\xd7\x42\x5d\x42\xb2\xff\x2f\x08\x75\x9a\x75\x75\xa5\xba\xc4\x48\x75\x89\x39\xf7\x4f\xd2\x25\x2c\x64\x87\x80\xa7\x4c\x4d\x3d\x16\x03\x59\x43\x07\xec\x3c\xb9\xaf\x9b\xfa\x35\xcd\xb2\xb7\x6a\xc1\xbf\xb4\xb5\xda\x58\xc2\xb8\x08\xd6\x84\x55\x9b\xce\x38\x6c\x9b\x49\x74\x76\xd5\xb8\x7e\x81\xff\x33\x72\x6a\xde\x72\x9e\xff\x0f\x72\x53\xb0\x55\xa4\xfd\x6f\x5e\xb3\x95\x8e\x0b\xdb\x46\x8e\x60\xf9\x26\x65\x5a\xc6\x3c\xa1\x36\xc1\x24\x53\x89\x24\xeb\x96\x6a\x53\xe6\x78\xdf\xdf\x38\x54\x35\x4a\x46\xe7\x79\x9e\x11\x97\xb0\x9a\x34\xe7\x7c\x99\x24\xe7\xe0\x46\xc9\x48\x5d\x54\x11\xe7\x74\x47\x89\x89\x69\xe0\x1f\x69\x43\x41\x92\x51\xb9\x89\x77\x0c\x23\xab\xa8\xd5\x0d\x5b\x1d\xad\xfa\xae\x30\xf1\x18\xb0\xba\x5d\x87\x83\x8b\x92\x51\xcc\xaf\x89\xe1\x60\xa2\x64\x24\xc1\x4d\xd4\x0a\x98\x2f\x43\x25\x74\x61\x43\x27\xe4\xe8\xe1\xd9\xff\x94\x35\x22\x11\xb8\xc0\xe9\x4f\x7c\xc0\xf4\x27\x1e\x50\xa4\xc0\xeb\x00\x64\xc2\xee\x79\xb0\xd0\x78\xab\x01\x09\x9d\xea\x4f\x4f\xb9\x20\x39\x53\x83\x04\x3b\x33\x65\x6f\xa0\xe6\xa5\xeb\xdb\x79\x29\x14\x67\xa6\x05\xe1\x4c\xd4\x9d\x69\xcc\x68\xaa\x8c\x5a\x62\xf6\x85\xc6\x10\xf7\x55\xa4\x8b\x7b\xca\x14\xe2\x7b\x1d\x19\xfa\x6e\x77\xa0\x8b\x71\x1d\xe8\x62\xca\xd1\xfd\xef\x1c\xdd\xc9\xee\xf6\x5b\x5a\xc7\x16\x67\x02\x51\xc4\xcd\xf0\x6b\x89\x74\xe5\x89\xbb\x20\x8c\x6d\xd2\xe5\x92\x01\x3e\x04\x63\xc6\xe0\x22\x2d\xd3\xf3\x8c\x41\x42\x18\x06\x49\x96\xee\x54\x66\xdd\xca\xd2\xe2\x53\xdf\xb7\xe5\x01\x1b\x95\x49\x91\x67\x99\xfa\x3c\x1c\x3c\x57\x18\x9b\x0b\x5f\xe6\xfa\xac\xed\xf0\xa2\x1f\x8c\x37\x28\x1c\xf1\x51\x7e\xc1\x8a\x55\x96\x5f\xfe\x0e\x11\x7c\xdd\x94\xdf\x24\x06\xd4\x64\x77\xd2\x88\x76\x5d\x3f\xb4\x41\xca\xfa\x39\xb5\x07\x2c\x0c\xe3\x87\xe2\x70\x48\x1f\xca\x5f\x0f\xc4\x6c\x1c\xa5\x0f\xe4\x54\xcb\x07\x94\x1f\x0e\xf1\x43\x2a\xc2\xb0\x7c\x48\xf9\x2c\x1d\xb2\x61\x11\xc5\x0f\xe5\xf7\x03\x7e\x38\x40\xdd\xf2\x21\x9f\xc5\x43\x31\xc8\xa3\x31\xd0\x9b\xf3\x4e\x1b\x76\xa1\xa7\x0a\xa4\x59\x32\xe4\x10\x67\x07\x18\xf2\x94\xc3\x1b\xcf\x92\x25\x3e\xcf\xf7\x7c\x19\x17\xd7\x10\xc7\x1e\x4e\x80\x9e\xd6\xcf\xb0\x26\x1a\x93\x95\xa4\xec\xd4\x93\xa5\xb3\xb4\x53\x05\x23\x39\xea\x0a\xc4\x30\xb9\x5f\xba\x49\x9a\x79\x00\x50\x87\xce\xa9\x63\x1b\x24\x36\x7a\x80\x9e\x41\xca\xd7\xf6\xa2\xe4\x98\xa3\x0c\xc9\xe8\x7c\x21\x39\x8e\xe9\x0e\xbc\x5b\x4a\xb4\xc7\x53\xd8\x1f\x68\xaf\xe2\x47\xea\x98\x5c\x98\x52\x9a\xe0\x9b\x4c\x19\x7c\xee\xf1\x14\xde\xb6\xa9\xf6\x4e\xd0\x82\xd1\x79\xbe\xbc\x0e\xc3\x25\x34\xd4\x5f\xa2\x63\x7d\xe2\xc3\x61\x89\xf6\x24\xc6\x61\x68\x9b\xab\xea\xb8\xfc\xda\xbf\xf2\x22\x2d\xf7\x71\xf6\x4b\xca\x2e\x77\x79\x21\x66\xfe\xe7\x48\x0b\x14\x9c\xb3\x42\xc9\x42\xe7\x5f\x56\x4f\xb3\x4c\x50\x51\x6d\x75\xb2\x35\x35\x15\xd4\x7e\x3b\x1c\x76\xf1\x9a\xfd\xf6\x72\xb5\x2a\x99\x20\xa7\x7e\xee\xef\x2a\xf7\x77\x9d\xbb\xd6\x7e\x30\x72\x37\xa4\x7c\x7d\x02\x47\x46\x59\x99\x92\x0b\xba\x36\xf2\xd2\x35\x5d\x6b\x8e\xfb\x11\x5d\x83\xa3\xd0\x25\x5d\x6b\x67\xac\x4f\x74\x6d\xdc\xb0\xde\xd3\xb5\x72\x26\x7a\x49\x83\x52\xc4\x05\x60\x86\xe2\x70\x08\x38\x8b\x0b\x56\xaa\xcf\xd9\xa3\x28\x30\xcf\x29\xcd\x3e\x45\x8f\x06\x17\x77\xee\x92\x33\x1a\x24\x8c\x0b\xb0\x91\xa0\xf9\xec\xfd\xe0\xfa\xce\x5d\x5b\x2c\x9f\x5d\x46\xef\xc9\x95\x5c\xe8\x17\x74\x3c\x7d\xf1\x20\x33\xaa\xcc\x17\x46\x95\xf9\x9c\x66\xf3\x17\x0b\xf2\x94\x3e\x3f\x3a\x9d\x37\xf4\xa9\x99\xce\x47\xfa\x54\x4f\xe7\x84\x3e\x85\xe9\x7c\xa0\x4f\xf5\x74\x7e\xa5\x4f\xcd\x74\x9e\xd0\xa7\x30\x1d\x1d\xed\x75\xc8\x19\x5b\xaa\x0b\x3f\x1e\x86\x8f\x20\x8c\xed\x7b\xf8\xf7\xd3\x03\x7a\x1e\x86\x97\x0f\xe8\x0a\xd2\x4f\x20\xe5\x57\xc8\x7d\x02\xe9\x1f\x8c\x82\xe0\x6a\xaa\xa2\xc3\xb6\x50\xcf\x73\x4c\x5e\x59\x2b\x12\xf4\x78\xa4\x5c\xd6\x9e\xb3\x95\xf6\xe5\x9b\x8c\x31\x79\xdd\x2e\x70\x96\xef\xea\xfc\xdf\xda\xf9\xaf\xe5\x9c\xea\x12\x7f\xb4\x4b\x3c\x86\xb9\xd6\x45\x9e\xd1\x31\x79\x4b\xc7\xe4\x67\x1a\xe4\xb0\x47\x20\x2b\x48\x79\xef\xf9\xec\xf9\xc8\x49\x1a\x3e\x77\x31\xec\xf0\xd5\xf0\xb7\x68\x4c\x7e\x32\xb5\xd4\xde\xf4\xab\xa9\x34\x5b\x4f\x7f\xbe\x1e\xfe\x11\xc1\x45\x73\x42\x29\x7d\x8e\x9f\xb9\x5b\x67\xf6\xd2\xd9\x2b\x2f\x87\xe7\x91\xbf\x93\x36\xe8\x94\x9c\x0e\xce\xc9\x39\x79\x4d\xfe\x20\xa7\x83\x97\xf2\xff\xc1\x05\xb9\xc0\xd1\xcb\xe1\xf9\x9d\xbb\xe4\xad\xd3\x58\x3e\x3b\x8b\xbc\x4d\x76\x36\x5c\x79\x9b\xec\x6c\xb8\x8a\x36\x68\x4b\xb6\x83\x15\x59\x91\x57\xe4\x37\xb2\x1d\x9c\xc9\xff\x07\xd7\xe4\x5a\x02\xc6\x58\xad\xa0\x31\x79\x36\x38\xc5\xe4\xad\x9b\xf2\x76\xb0\xc5\x2a\x94\x62\x63\x06\xc3\x93\xe1\x6b\x6f\x16\xbf\x0e\xfe\x18\xfc\xd4\x9a\xc9\x09\xf9\x95\xbc\x91\xf3\x18\xfc\x44\x5e\x12\x3b\x0b\x74\x32\x78\x73\xe7\x2e\x1e\xfc\xd4\x9e\xcd\xf0\xc9\xf0\x55\x73\x46\xe8\xc9\xe0\xa3\x2c\xfe\x73\x63\x66\x1f\x06\xbf\x0d\x7e\x8e\x36\xe8\x09\xf9\x40\x3e\xca\xb9\x0d\x7e\x26\x67\x44\xcd\x0c\xb6\xe4\x2f\xf4\xb9\xc6\x10\x72\xcf\x91\xdf\xed\xe7\x59\xbe\x9b\xbe\x1c\xd0\xdf\x87\xc8\x03\x80\x31\xdb\x41\xbf\x0f\x9e\x91\xe7\x1e\xed\x1d\xbe\x19\xfc\x84\x31\x26\x67\x03\xfa\xcb\x10\xbd\xed\xac\xf5\xcb\xe0\xad\xad\xa5\xf6\xcf\xc7\xc1\xcf\x18\xe3\xea\x4a\x21\xd4\x1b\x96\x45\xcf\xc1\xbb\xe9\x99\x72\x64\x7a\x5b\x7b\x02\x5f\x55\x64\x4b\xc7\xe4\xb4\xed\x2f\xa0\x59\xd2\x6c\xb4\x2f\x19\xa8\xba\xb0\x7a\x45\x95\x08\xca\xe6\xe3\x05\x18\xe9\x4d\x16\xfe\x9b\xd0\xaa\xf4\xd3\xd5\x8a\x25\x02\x77\x85\x68\xe1\x68\x30\xd8\x62\x15\x6b\x96\x88\x8a\xac\xdd\x38\x22\x17\x9f\x31\x1e\x98\xb1\xe8\xba\xe6\x0d\xae\x11\xbe\xa9\xbf\x1e\x29\xaa\xad\x05\x40\x16\x86\xe7\x88\x91\x1b\x43\x98\x23\x41\x80\x70\xd7\x1b\x85\xd4\x74\x3d\x72\xd0\x51\xd5\xf5\x18\x87\xa3\x29\x64\x19\x38\xb0\x49\x2c\x57\xc0\xf3\x2e\x2b\x31\x15\xf5\xe2\x52\x4e\x84\xb3\xf2\xb4\xf0\xde\xee\xb8\xf4\x2f\x1d\x28\x98\x7f\x2a\x25\x5b\x9c\xf2\xd2\x28\xdc\xe4\x6f\xe4\x5e\x3f\x7c\x72\x5f\x27\xa8\xaf\x3c\x94\xa5\xaa\x67\xe6\xc2\xbd\xb7\xc2\xea\x4b\xab\xbc\x6d\x76\x9b\x3a\x66\xb7\xb9\xe4\x64\xc7\xd3\xf8\x41\x3e\x8d\x07\x03\x9c\xce\x63\xd7\xec\x36\x5e\x4c\x0b\x30\x56\x3a\x12\x7d\xa7\xdb\xce\x36\x95\xab\x6c\x99\x3a\x78\xb1\x15\xac\x75\x0a\x92\xd7\x63\x7c\xef\x3e\x96\xdf\x1e\xa3\x70\xc6\x08\xb2\xf1\x78\xca\x1f\x30\xe3\x0c\xde\xed\x0a\xee\x5d\x9a\xd8\x3b\xbb\x56\xd3\x85\xd3\x34\x7f\x38\x99\xf1\xe1\x24\x02\x5b\xe7\xc9\x34\x7f\xc0\xa7\xf9\x60\x80\x8b\x79\xee\xfb\x9b\xe7\x8e\xbf\x79\x23\x16\x41\xbd\xac\xa0\x15\xf0\x20\x31\x67\x0b\x13\xb6\xb8\xc0\xea\xd5\x45\x76\x21\x65\xfa\xfc\x92\x97\x9b\x74\x25\x9e\x28\x01\x0b\xdc\x3d\xfd\xa0\xc3\x01\x87\x10\x81\x10\x6f\x21\x00\xaf\x1b\x27\xe1\x58\x3b\xa0\x3b\xb5\x20\x7e\xf9\x6f\x04\xf1\xad\x2d\x73\xbf\x65\x65\x6b\xcf\x94\x91\xfd\xbc\x70\x5b\x2e\x16\x53\xd1\x7d\xec\x40\x09\xed\x01\x53\x3d\x87\x53\x4f\xef\xcc\xbb\x94\x42\x8c\x36\x43\x47\xcf\x24\xb2\x8a\xa4\x48\x24\x66\x22\x72\x44\xa8\x2b\xd7\xc0\xb5\xf5\xae\x07\x3c\x1e\x5a\x17\x7e\xe1\xdd\x8d\x82\xbe\xb5\x52\xac\xd2\x3c\xd8\xa4\xeb\x4d\x26\x71\x35\x5b\x3e\xe3\x4b\x76\x65\x82\x4f\xfe\x02\x37\xbb\x24\x48\xcb\x97\x3b\xc6\x03\x12\xa8\x50\xd5\x6c\xf9\x4c\x40\xcc\x4d\xd9\x43\xb0\xa8\x0f\xf4\x53\x40\x34\xad\xf7\x1c\xa7\x26\x48\x80\x01\xff\xf3\xee\xf7\x82\xda\x11\xab\xc1\xa7\xcd\xba\x2d\x54\x58\x62\x5c\xdb\xdb\x1b\x17\xad\x7d\x60\xd7\x80\xd7\x3e\xb0\xeb\x93\x7c\x59\x5b\xac\x3f\xa4\xf7\xbe\x0f\x43\xfe\x80\x7e\x3b\x56\xaf\x4d\xd5\x7e\x11\xc1\xa3\xa2\xc8\x2f\x03\x3c\xd3\x3f\x06\xc2\x35\x8c\xf9\xd8\x78\xff\x7b\x38\x99\x5a\xc3\x5d\x47\x63\x77\x38\x88\x07\xe3\xc3\x41\x3c\xa4\x6a\xb0\x94\x3d\x1c\xcf\x86\x93\xa8\x18\x4c\x8c\xb6\x54\x0c\xec\x70\xf2\x07\xe3\x59\x4e\x8b\x28\x7f\x58\xc0\xc3\x21\xf2\xbc\xc2\x2a\x9c\xd0\x4f\x1e\x46\xfa\x15\x61\x08\x9b\x6c\x9e\xc8\x0f\x82\x0a\x93\xfb\x63\x37\x3e\xc5\x07\x57\xca\xfb\x15\x09\x3c\x85\xa7\x5c\xbc\x6a\x8c\x9c\x20\x17\x7f\xff\xda\xb1\x40\x46\x9a\x31\xcb\xc4\x9c\x8b\xbc\xc7\xd7\xcf\x96\x28\x88\x27\x93\xeb\x61\x29\x62\xb1\x2f\x87\x5b\x56\x96\xf1\x9a\xd5\x57\xd8\xe2\x70\x40\x08\x42\x4d\x78\x3a\x2f\x50\x53\x60\x3c\x2a\x99\xb0\x41\x45\x51\x90\x2e\x03\xd2\xdd\x1c\x11\x8d\xa2\x45\x0e\x31\x2c\x55\xb9\x8e\xfc\xb8\x48\xe3\x61\x96\x82\xfb\xd3\x2e\xcf\x52\xd1\xd5\x08\x14\x2a\x58\xc6\x2e\x62\x08\xa9\x1a\x2f\x97\x10\xc1\xa5\xec\xe9\x98\x97\x5a\x1f\x1a\x97\x65\xba\xe6\x48\x8c\x20\x18\xb6\xa4\xba\x92\x17\x8e\x82\x71\x40\x92\x2c\xdd\x45\x41\x21\x59\x83\x71\x0f\xfe\xc3\x81\xd1\x54\x07\x93\xdd\x55\x40\xb6\x71\xb1\x4e\x79\x14\x0c\xe1\xcb\xe8\x03\x22\xa3\xce\x20\x3a\xa6\x05\xb4\xb6\xd3\x71\xa2\xa3\x20\x3e\x2f\xf3\x6c\x2f\x58\xa0\xbd\xb8\xa1\xad\x4a\x22\x57\x29\x76\x4a\x94\xc1\xf8\x12\x5e\xb3\x45\x02\x1b\xab\xa6\x27\x74\x4c\x1e\xd3\xbb\xe4\x15\xbd\x47\x5e\xd3\x6f\xc9\x6f\xf4\x3e\xf9\x83\x7e\x47\x9e\xd1\xef\xc9\x5b\xfa\x03\xf9\x99\xfe\x48\x7e\xa2\x93\x31\xf9\x85\x4e\x26\xe4\x77\x3a\xb9\x4b\xfe\x46\x27\xf7\xc8\xdf\xe9\xe4\x5b\x62\xcd\xbb\x56\x05\x63\x9f\x18\xba\xd9\xf3\x0f\x3c\xbf\xe4\xd1\x13\xb2\xcd\xf7\x25\x7b\xbb\x8b\x26\x24\x15\x6c\x7b\x2a\xbf\x9e\x4a\x3e\x32\x7a\x4c\x3e\xb0\x6b\x89\x9e\xe1\x88\xbc\xdd\x45\xaf\xbc\x04\xf9\x23\x7a\x6d\x92\x9e\x96\x49\xbc\x63\xd1\x6f\xf6\x1b\x9a\xf8\xc3\x7c\xfe\x9c\x6f\x59\xf4\xac\xce\x5c\x46\x6f\x25\x74\x93\x0f\x12\x9b\x44\x3f\x93\xf3\x6c\x5f\x3c\x93\x68\x27\xfa\x89\x24\x9b\x98\xaf\x99\xfa\xfa\xc5\x54\x79\xb3\x8b\x13\xf6\x78\x2f\x44\xce\xa3\xdf\x55\x55\xfd\xf5\x37\xa8\xac\x3f\xfe\x4e\xac\xd3\xe9\x52\xa2\x12\x75\x5d\xb8\x7c\xe3\xe0\xae\x68\x72\x9f\x88\x7c\x9f\x6c\xe4\x28\x26\xdf\x55\x98\xfc\xe5\x98\xad\x42\x1d\x21\xb3\xe3\x85\xe6\x29\x1f\xa5\x4b\x7b\xd3\x9a\x2e\x0f\x87\x60\x69\x68\xd9\x30\x18\xe8\xf7\xd6\xd7\x83\x01\x26\x7c\xb4\x65\x7c\xff\xac\x2e\xad\x3e\x0f\x07\xd9\xc4\x20\x18\xca\xcf\x80\xf0\x51\x16\x9f\xb3\xcc\x29\xa6\xbf\x6d\x39\xf8\x96\x05\x01\x43\x3b\x05\xf5\xb7\x2d\xa8\xc3\x07\xc3\xdd\x97\x9c\xb3\x53\xd4\xa6\xb8\xd6\x24\xce\xad\xb3\xaa\x2f\xd8\x76\x18\x0c\x58\x65\xfa\x32\x77\x2d\x32\xa3\x04\x37\x29\xf8\x79\x02\xd7\x33\x3a\x4f\x12\xf4\x34\xdf\x97\xea\xb9\x5f\x95\x05\x21\xd2\x15\xd7\xf5\x6c\x69\x2a\xca\xad\xc1\xe3\xec\x8d\x65\xc8\x3a\x94\x57\xc5\x51\x7e\xcd\x6d\xcf\xfd\xb8\x35\x0c\x5b\x9f\x02\x37\x4b\x20\x70\x1a\x11\x78\xea\xd5\xd4\x8f\x4d\x55\xea\x66\xfc\x99\x9d\x98\x7f\x5b\x5b\x4f\x18\xe0\xb2\xe7\xdd\x65\xfd\xa2\xea\x35\x44\x68\xf7\xe7\x06\xa5\x3d\x16\xec\x53\xa1\x66\xb3\x5e\x5a\x7f\xdd\xac\x8c\x49\x23\x38\xe8\x8d\x9c\x17\x7d\x2a\x11\x86\x07\x62\x75\xcf\xef\x86\x0d\xbe\x69\x92\xfc\x88\x55\x44\x60\x98\x3e\xf0\xe3\xea\xb4\xa4\x39\x6f\x02\xa0\xd9\xea\x8d\xcb\x13\x28\x5d\x75\xcd\x3b\x44\x41\x40\x5a\x3d\x7d\x66\x56\x44\x71\x1b\xcd\x62\xcf\x20\xb5\x22\x4c\x2f\x91\xec\x54\x76\xe9\x5b\xac\x17\xf8\xe6\x0b\x01\x70\x5b\x2f\x5f\x3f\x66\x0f\x08\xcc\x85\x80\x3d\x9e\x82\x6d\xcf\xb4\x23\x15\x38\x61\x09\x4c\x8a\xc6\x5c\x1e\x89\xf6\xa6\xa8\x1f\x29\xd7\x27\x6f\xce\x16\x53\x25\x24\xe6\x10\xc3\xd6\xd6\x46\x39\x94\xae\x9b\x74\x47\xd9\x84\x94\x73\xda\x5b\xfd\xab\xfb\x72\x05\x33\x3c\x6a\xc2\x82\xc0\x5d\x5f\x07\x7c\xbb\x4e\x30\x49\x49\x4c\x6f\xaa\x23\x7a\x63\xc3\x17\xf5\x41\x72\x6c\x4a\x0e\x0e\x0b\xaa\x9e\x75\xd4\xe6\x2c\xcf\x6c\xfa\x09\x50\x09\xc4\x46\x75\x51\xe2\x2d\x72\x45\xea\xa9\x3c\xe2\xcb\x9f\x59\xb6\x63\x45\x89\x30\xb9\xa9\xc0\x6c\xcb\xb1\x82\xf1\x23\x05\x50\x07\x04\xc2\x3c\x1d\x5a\xce\xe4\x47\xc4\xa6\x89\x3d\x99\x70\x8d\xfd\x1a\x22\x77\x15\x48\x90\x44\x4a\x09\x49\x6b\x26\x1e\xdb\x6c\xdc\x2d\x6f\x2a\xb2\x77\x78\xe2\x22\x0c\x93\x91\x5b\xd0\x3c\x36\x62\x13\xe0\xa1\x37\xbf\x0c\x26\x09\xb0\xf9\x54\xfd\x39\x1c\x9e\x10\xd7\x49\x38\x39\xa2\x0b\x10\x73\xb6\xe8\x53\x9a\x80\x45\x16\x8a\xe7\x6c\x01\xbf\xb1\xe6\xe8\x95\xfa\x01\xed\x4d\xba\x5c\xeb\xf2\xc4\xa3\xa9\x2a\xea\x47\x66\x6b\x02\x6f\x5e\xca\x29\xfc\xe9\x55\x4c\xfe\xd4\x2a\x26\x18\x93\xac\xc2\xbe\x51\x09\x12\x18\x61\x0f\x12\x31\xb6\xef\xf3\xbb\x83\x80\x26\x75\xff\xf1\x91\x5e\x20\x16\xac\x53\x05\xc0\x8f\x98\xb7\x0e\x47\xab\x5a\x77\x9e\xd4\x6d\x43\xf7\x98\x1e\xad\x56\x17\x7d\x5b\xaa\x78\x18\x39\x3f\x3e\xc0\x4a\xe1\xed\x22\xcf\xc5\x6b\xd6\x19\x15\x8f\x8f\xde\xcb\xdc\x17\xf9\x92\x29\xc2\xb5\x66\xe2\x75\x9e\xeb\x1b\xd1\xf6\xb9\x95\xa7\xd6\xf1\xe0\xbc\xa9\x22\x46\x4a\x1a\x8f\x0a\xb6\xfa\x3b\xbb\x26\x09\x75\x9c\x8b\x82\x82\xad\x82\xa8\x24\x99\xca\x27\x7b\xea\x86\x8a\x8f\xc9\x3c\x50\xb5\x02\x02\x25\x17\x98\xec\x28\x72\x42\x23\xde\x54\x91\xc0\xa3\x72\xbf\x03\xa3\x86\xd7\x6c\x05\x17\x43\x64\x55\xbf\x65\xb3\x0b\xc3\xdd\xd4\x1f\xf3\x48\x59\xd2\xd2\xfe\xb8\x31\x19\x3d\x44\x9a\x34\xd3\x9b\x1d\xd0\x15\x9c\xc3\x25\xf5\x90\x9d\xa2\x0a\x0d\x95\x20\xec\x42\x84\x52\x49\x5f\xe7\xc9\x82\xbe\x44\x59\x0d\x6e\x4c\xd2\x91\x94\x55\x68\x90\xe4\xdb\xf3\xfc\x3c\xbf\x0a\x48\x3a\x57\x92\x07\xbb\xda\xc5\x7c\xc9\x96\xc1\x82\x2e\x6d\xe2\x26\x2e\x77\xf9\x6e\xbf\x0b\x16\x34\xc8\xd2\x52\x78\x35\x24\xf3\x28\x4b\xcf\x0c\xbb\xa8\x29\xaa\xce\x06\xe6\x2f\x63\xcb\xf3\xeb\x60\x41\x2d\xaf\x48\x52\x4c\xf6\xb0\x05\x0c\xa7\xad\xcc\x18\x4a\x7a\x53\x73\xe9\x6d\x5d\x20\x30\xb0\x70\x73\x6a\xd4\x30\x8a\xb8\x19\xeb\x87\x16\x58\x6a\x4e\x18\x18\xdc\xbf\xb3\xeb\xd9\xfd\x68\xa2\x42\x8f\x6c\xf3\x0b\xd6\xa4\x8a\x88\x93\x1b\x89\x50\xa2\xd7\x95\x7e\x72\x49\x07\x9f\x6c\xb2\x10\x9a\x16\xf7\xc7\x44\x17\xef\xb0\x11\x13\x86\x6b\x05\x9e\x0a\xe1\x29\x7b\x38\x86\xd0\xc1\x6d\xa6\x0a\x7d\x44\x13\x22\x6e\xa7\x61\xd8\x19\x9a\x3c\x3e\x46\xbe\xf9\xf7\x80\x69\x78\x3f\x1a\x7e\x09\xa0\x5e\x7d\x1d\xa0\x5e\xfd\xf7\x01\x35\xfc\x6a\x48\x29\xa9\xae\x1b\x4e\x4e\x4b\x2a\xd0\xb3\x62\xa7\x0a\x2a\x5a\x0d\x43\xa8\x6c\x63\xef\x54\xe0\x9b\x36\x78\x8d\xfa\x04\x40\x01\x9c\x4f\xb1\x20\xa9\xed\x47\x4e\x51\x22\xb4\x9f\x8a\x7c\xab\x66\x53\xa8\xf8\xdb\xe0\x81\x9e\x1f\x0e\x69\x18\xa6\x10\x94\xa6\xd6\x07\x2c\xd3\x32\x3e\x07\x0b\x7c\x13\x9a\x1b\x5a\xeb\x64\x97\x90\x9a\xf6\x1f\x15\xae\x2a\xa2\x45\x5b\x4f\xb3\x77\x64\x3f\x14\xac\x64\x42\x57\xfe\x8d\x7c\x86\x3b\x86\xc6\xf9\xe8\x1c\x24\xd7\xbf\x37\x4e\x6f\x8b\x08\x36\x8e\x37\xb9\x09\x7a\xc1\x17\x8d\x49\x99\x43\x9d\x32\xbe\xd7\x03\xfb\x5d\x76\x8c\x8d\x64\xf7\xf5\x1d\x83\x2c\xef\xb1\x14\x10\x01\xc9\x40\xf0\xa7\xb4\x28\xc5\xcb\xe2\x79\x5c\x6a\x8e\x92\x91\xfe\x58\xef\xa3\x67\x15\x6c\xa2\xe5\x57\x56\x9f\xe8\xea\x6f\xcd\xc8\xd7\x4c\x9c\xc1\xb4\x94\xd8\xdf\x24\x65\x66\x5b\x36\xc9\x58\x4a\x85\xa4\xc0\x59\x9a\x7c\x20\x31\x45\xf2\xe3\x95\xa4\x0b\x44\xfe\xd2\x80\xc0\xa4\xa4\xfa\xf3\xed\x8e\x24\xf0\xfb\x71\xb6\x2f\x48\xe6\xd1\x36\x41\xe6\x81\x6e\x2a\x20\x81\x6e\x07\x7e\xe9\x76\xcc\xef\xb7\x3b\xf8\x25\x9b\x90\xf4\x6f\xdf\x45\x73\xc8\x8e\xde\xe8\xc6\xa2\xf7\xc0\x1a\xa8\x4d\xa1\x60\x0e\xe9\x98\xd8\x96\xa3\xf7\xc0\x0e\xb8\x45\xec\xd8\x75\x97\xd1\x7b\x54\xb6\x8b\xbc\xdd\xc9\x02\x72\x24\xd1\x7b\x94\x34\xf2\x65\x32\xae\xc8\x8a\x66\x23\x73\x52\x24\xd0\x76\x5d\xf4\x50\xad\x46\xa0\xaa\x07\x44\x92\xc0\xfa\xcb\xa1\x56\x41\xb4\x9f\x05\xf0\xea\x5b\x0f\x54\x1c\x51\x90\xef\x18\x57\xbf\x49\x83\x22\x4a\xc4\x16\x2c\x63\x11\x0f\xd5\x86\x0d\xe0\x65\xa1\x95\xe4\xf3\x32\x5c\x75\x4d\x86\xde\xbe\xfb\x3b\xea\x48\x18\x75\x6c\x93\x37\x88\xe1\xe9\x91\x83\x38\x17\xe0\xb8\x70\x2c\x4f\xe9\x85\xac\x63\x40\x8c\x11\xc7\x5a\x4c\x6d\x2d\xe1\x67\xc6\x6b\x19\x3f\xc6\x2f\xd2\x22\xe7\x9e\xb9\x89\x8e\x9f\xa5\x35\xac\x94\xd2\x5b\x0b\x2b\xe3\x15\xe3\x10\x31\x5a\xe5\xc9\xbe\x44\xb8\x53\xf5\xd2\x79\xcd\xd9\xc6\x19\x7f\xab\x0c\xa7\xd9\xdc\x33\x9d\x81\x32\x55\xc7\xd3\xcf\x76\x28\x85\x0b\xd0\x38\x4a\xb0\x1e\x0e\x8a\x20\x7c\x39\x1c\x6a\xbe\xfa\xf3\x65\x47\xe9\x12\xc0\xe6\xa8\xca\xbe\x02\xdc\x42\x96\x77\xb1\xfb\xdf\x2d\x40\xd6\x4c\x3c\x97\x9b\xbd\x8d\x84\xba\x4e\xce\x46\x6c\xb3\x9f\xf2\x22\xb2\x03\x21\xe9\x32\xb2\xdc\x9c\x51\x71\x40\x68\xb0\xdd\xbe\xc5\xa3\xdf\x8e\xd8\xf4\xf6\x04\x3b\x2e\x8d\xb4\x14\x2e\x53\x32\x87\x46\x66\xd0\x30\xc9\x14\xfa\x53\x39\x67\xec\x4a\x90\x36\x76\x73\x31\x19\xe0\x2f\xf9\x43\xd5\x80\x9f\xcf\xf4\x23\x65\x6e\x33\xc1\x02\x63\x25\xdb\x82\x25\x36\x59\x79\xf8\x8e\x2c\xe9\xca\x15\xf5\x36\xf2\x53\xa1\xc0\x73\xba\x6a\xf3\x09\x35\x2e\x3a\x1c\x10\xda\x49\x26\xdc\x0e\x9a\x4a\x1c\x97\x18\x32\xa6\xcf\x19\xe4\x60\xb2\xab\xa1\x41\x15\x42\x75\x0a\x59\x64\xb9\xd3\x50\xa2\x0a\xa1\x3a\x45\x00\x19\x92\x3d\xdd\xe1\x4e\xf4\xa7\x50\x57\xbc\x17\x79\x92\x6f\x77\x19\x13\x2c\x88\x80\x9f\x37\x58\x4d\x6d\x9f\x25\x2b\x13\xc6\x97\x31\x17\x41\xb4\x09\xc3\x3a\xf4\x8b\xd1\x81\x9c\x87\xe1\xf9\x43\x3a\x9e\x39\x7a\x5a\x74\x8e\x15\xab\xa0\x1a\xd2\xda\xec\x32\x88\x36\x0d\xb1\xa0\x25\x14\xd4\xbb\x88\xc8\x91\x9d\xe8\x91\x45\x41\xbe\x5a\x19\x8b\x65\xbd\xdb\xf4\xd6\xab\xc8\xbe\x46\xaf\x6d\x00\x1d\xc3\x94\x70\xec\xba\x78\x07\x8d\x2b\x8f\x64\xdd\x82\x2a\x5b\x2b\xf8\x59\xc5\x23\x9c\xc1\x5f\x48\xcd\x13\x3b\x9c\x95\xc5\x7b\x17\x6a\x8f\x7d\xa5\x3e\xaf\x6a\x0e\xc9\xc7\x72\x8d\xf1\x74\x61\x35\xcf\xb1\xa5\x13\xbf\x84\x61\xbf\xff\x35\x68\xee\x6b\x4a\x8f\x24\x11\x2d\xd9\xd7\x21\x47\x5d\x47\x23\x7e\x59\xd5\x2a\x0d\xbc\x8f\xda\xc4\xe3\xcb\x1b\x97\xb4\xd5\x43\xf3\xac\x89\x4c\x7f\xb2\xc8\x54\xee\xf0\xa6\x1e\x83\x8f\xde\xcb\x64\x4f\x81\x21\x49\xd3\xff\x20\x05\x86\x25\xac\xee\xd0\x9b\x7a\x8c\x3a\xc3\xd7\x63\xd4\xe9\x6d\x3d\x06\xb9\x55\x4d\xa1\xa1\x59\xab\x29\x5a\x3a\x07\x4f\xa9\xb0\x0f\xc3\xbd\x9b\x1e\x2c\x66\x12\xd5\x38\x88\x25\x55\x57\x5e\x0a\x0f\xd5\xaa\x07\x8d\xbd\x8e\x50\x2b\x92\xb6\x96\x23\xa6\xe9\x28\xe7\xb0\x25\x4e\xf3\x0b\x06\xde\x7f\xfa\x1b\x28\x58\x02\xdf\x8a\x51\xcf\x28\x4a\x2d\xa3\x9e\xaa\x1b\x7c\x89\x9b\x53\x10\x0c\xc9\xae\x6e\x7c\xaf\x23\x8f\x45\x7b\xb2\xf2\xd6\x31\x05\x72\x66\xbb\x03\x92\x65\x3b\x53\x04\xac\xc5\xc8\xa7\xc6\x18\x42\xb0\x6d\xb0\xc0\x53\xdb\x4b\x36\x43\x5a\x1b\xaf\xee\x8d\x76\x60\x30\xaf\x53\x8c\x7d\xc1\x0e\xe3\xc8\xe8\xec\xb3\x05\xdd\x69\x7d\x53\x42\x36\x14\x21\x21\xb9\x7d\x3b\x1a\x60\xe7\x5d\xf4\x91\xf5\x29\xbd\x55\x0b\x0f\x57\xfd\x5d\x22\x7d\xa6\xe5\xa4\xc7\x20\x24\xc5\x72\xc8\x6f\x8c\xf9\xb4\xda\x66\x5f\xca\x00\x36\xeb\x4e\x2a\x4c\xee\xde\x1f\x2b\x5d\xaf\x03\x3c\x10\x34\xd0\x67\x18\x71\x59\xcb\x2c\x27\x7d\x8f\x96\x0d\xe7\xe4\xf6\x1d\x84\x99\xc7\xcf\xca\x1b\x55\x60\xe0\x0e\x6a\xb1\xc4\x1d\xc0\xc6\xdd\x38\x55\xb4\xe9\x24\xd8\x40\xf5\x6a\x1a\x9b\x61\x2d\xb3\xe4\xe6\x1d\x58\xd8\xf4\x46\x5e\x0f\xa2\x5b\xc1\x2f\xf7\x40\x45\xce\x25\xe9\x5c\xd5\x97\x66\xcf\xe0\x66\xb4\x75\x0b\x58\xd2\xf9\xa2\x22\x1a\xdd\xdd\x7e\xe3\x77\x53\x61\xc2\xe8\x53\x30\x64\x6a\x93\x3c\xef\x8e\x42\x87\x6c\xf0\xf4\xd0\xdd\x13\xff\x97\xde\x74\x7d\xee\x6a\x4b\x0a\x90\x4c\x5b\xce\x11\x57\x8a\xf8\x97\x4f\xfc\xb8\xae\xd6\xea\xc9\x8a\x8a\x14\x61\xd8\xbe\xec\xfc\x1c\xf9\x57\xf7\x43\xcd\x6b\x05\x65\x08\xe4\xb2\xb2\x39\x2d\x0c\xef\x9a\xd2\xa2\xcd\xbb\xc2\x0d\x9d\xaf\x8e\x7b\x38\xee\xe2\x02\x53\x75\x95\xd7\x3e\xce\x29\x61\x98\xa8\x0b\x0d\x4d\x1e\xa5\xf8\xdc\x80\x67\x37\x7f\x64\x19\x23\x23\x51\x80\x14\xfe\x55\x55\x27\xa6\xaa\x7a\x10\xed\x0d\x18\xe3\x34\x4c\x95\x0c\xa7\xe3\x80\x45\xd4\x77\x95\x2d\x98\x2c\x88\x86\xa1\x03\x93\xda\x27\x5c\x66\x3c\x9a\x4c\xae\x55\x4f\xa7\xca\x3a\xa8\x71\x71\xeb\xec\xb6\xce\x2d\x48\x3a\x8c\x10\xa2\x4e\xd3\x04\x52\x38\x25\x0a\xef\x2c\x08\xb6\x8d\x04\x5c\x12\x4e\xbb\xad\x1a\x0a\xf2\x01\x84\x8a\xe3\x1c\x90\xdc\x3f\x77\xc7\x63\xa5\xc7\x8c\xad\x93\xb3\x64\x43\x8e\x1d\xae\x84\xc6\x23\x1d\x45\xa4\x95\x97\xd5\x44\x2e\x99\x95\x51\x42\xf6\x75\x43\xcf\x8c\x0a\xc9\x56\xd7\x29\xab\xba\xd2\x6e\xb6\x8f\x76\x64\xe9\x14\x71\x65\x30\x5b\x6c\x39\x0b\x82\x68\x49\xce\xeb\x72\xae\xe1\x0c\xd9\xd6\x25\xcf\x15\x67\x70\x4e\x4e\xdd\xd5\x6f\x1f\xb6\xcc\xb0\xe8\x2b\x17\x79\x6c\x7c\xd5\xe8\xb6\xc2\x7e\x94\xd9\xd3\xc6\xdd\x67\xfd\x68\xb4\xb5\x77\x69\xcc\x22\x0c\xd1\xa9\x23\x58\xd2\x4e\xf4\xe4\x37\xab\xae\x80\xe1\xf2\xfa\x94\xf0\x4a\xef\xb3\x58\x89\xbf\xcc\x84\xbe\x74\x7c\x64\x6b\x2e\xce\x1c\x9a\x13\xc7\x7a\xb9\x6c\x85\x4f\x77\x4d\x53\xba\x6e\x62\x3d\xdb\x67\xa6\x28\x9d\x5f\x4f\xd3\x8e\x75\xfb\x92\xdd\xbb\xa0\x68\x06\xfd\x53\x58\x55\x69\xb7\xc1\xf4\x9d\xf8\xd1\xa3\xdb\xcf\x4d\x39\x8f\xd7\xf4\xc0\xbc\x55\xb4\x6f\x7d\x0b\x3c\x13\x0a\xaa\xf3\x62\x11\xb1\x79\xb1\x20\xbc\xc2\xe4\x46\xcb\x4b\x8d\xe2\x5d\x8a\x10\xcb\x13\xd7\xe1\x9c\x20\xfe\x9e\x8f\x12\x8e\xbc\xfd\xa2\xf8\x2b\x13\xeb\xda\xdd\x2d\x36\x1b\xaa\xcf\x58\x23\x21\xea\xe8\xb6\xce\xad\x41\xd5\xc8\xc0\x84\x39\x23\xf3\x2e\x1b\xba\xe6\xe6\x34\xd1\x29\x11\x35\xec\x2a\xdd\x8b\x8c\x67\x4b\x08\xce\x29\x77\xa3\x72\x9d\xf0\x51\xd1\x33\x2e\xf2\x5f\x52\x76\x79\x04\x2e\x9d\xb7\x21\xcd\xcb\xa9\xe6\xb9\xd4\x6f\x06\x68\x3b\x06\xe8\xd5\x74\x83\xf4\x83\x29\x56\xe6\x52\x72\x59\xc7\xcd\x55\xb7\xcb\xa1\x33\x26\x73\x09\x95\xae\x10\x7f\x38\x36\x44\xf4\xa3\xe9\xe1\xb6\x9b\x27\x8e\xcd\xed\x4c\x9b\x2c\x16\x92\xbd\x90\x83\x3a\x7a\x67\x70\x24\x92\x65\xc7\xd8\x86\x93\x69\xf1\x60\x7c\x38\xf4\xbb\xaf\xf3\x0e\x87\xa3\x57\x7f\x5d\x23\x13\xb3\x71\x54\x10\x6e\xf5\x82\x8d\xeb\xfa\xe3\x2b\x58\x13\xcf\x36\xd1\x04\xd3\x66\x47\x67\x56\xd0\x86\xfd\x41\x2e\xf3\x0d\x23\xd2\xd8\xca\x96\x2e\xc6\xfa\x54\x2c\x49\x69\x7b\xb5\x17\xe4\x24\xb1\x69\xad\x6b\x15\x92\xd9\xbc\x5a\xcd\x49\xf6\x36\xd1\x4a\xa7\x64\x57\x03\xd8\xea\x2e\xc9\xca\x83\xba\x4a\x5b\xea\x97\x4c\x34\x33\x43\x36\xfa\xad\x0c\xc3\xa2\x90\x73\xda\xb8\xb9\x22\x5b\xea\x5c\xd6\xc1\xac\x4f\x9b\x29\x5a\x78\x20\x6b\x7a\xfc\x5e\x8f\x5c\xd0\x63\x8b\x47\xae\x69\xfd\x58\x86\xb5\x80\x23\x8f\x9c\x54\x60\xf1\x35\xee\xb9\x71\xe1\x17\x95\xa4\x0b\x74\x51\x42\x3c\xa8\x45\x19\x71\x01\x16\xed\x89\x07\xab\x68\x47\x5c\x30\x45\x2b\x02\x42\x43\x54\xdf\x2c\x12\x03\xb2\x68\x49\x2c\xb4\xa2\x0d\xa9\x01\x15\x9d\x93\x1a\x22\xd1\x96\xb4\xc0\x13\x9d\x92\x4e\xc8\x44\x6b\xd2\x01\x94\xe8\x82\xf8\xf0\x88\xae\x49\x0d\x8a\xe8\x11\x71\x4d\x20\x23\x03\x5a\x9b\x42\x7c\x1b\xc9\x48\x07\x56\xf0\x8a\x18\x23\xac\xa8\xf3\xda\x9b\x78\x1c\x5f\x4a\xd2\x65\x14\xb7\xe5\x16\xe1\x49\x26\x86\xe5\xc8\x7d\x2e\xa3\x00\x9c\xd1\x8a\x49\x71\xe4\xa9\x19\x45\x5e\x6b\xd1\x03\xb0\x88\x65\x43\xd4\x73\xd1\x9a\xbd\x2b\xf4\xeb\x9f\xdd\x98\x5f\xef\x97\x39\xab\x95\x68\x84\xd5\xd8\x75\x71\xf4\x5d\xd0\x9e\x24\xe3\xca\xe9\xea\x70\xe0\x61\x78\x09\xa1\xf3\x7c\xcd\x9a\x96\x0b\xdc\x39\x30\x57\xd7\x46\xa5\x00\xe0\x28\x2f\x79\x2b\x7f\x42\xfa\x02\x71\xf3\xd8\x5b\x18\xb2\x36\x12\x94\x89\xae\xb6\x6e\x52\x75\xc5\xab\x62\xd6\x6c\xe9\xe5\x5e\xb0\x02\x84\x7d\xc4\x6e\x31\x5a\xca\x9b\xa3\x3e\xcb\xf7\xc9\xe6\x34\xbf\x60\x54\xca\x1e\xe9\x2d\xd9\xe3\x8a\xc4\xde\xa4\x34\x7e\xb7\x13\x21\xfd\x09\x9e\x7a\x95\x0e\x87\xe2\x70\xe8\x77\xcc\xee\x70\x68\xcc\xee\xbb\x7f\xcd\xf4\x4a\xda\xcd\x12\x4c\xcb\x8e\x87\x85\xc1\x06\x7f\x09\xca\x28\x8e\xc9\xd1\x12\xfb\x5d\x40\x8a\xee\x7c\xb0\x68\x57\x2e\xa1\x24\xbf\xa5\xc8\x16\xf4\x5f\xe9\x2d\x25\xe0\xbd\xe0\xd8\x79\x3a\x88\xef\x77\x8d\xb5\xe8\x62\x7f\xe1\x6d\x6b\x57\x54\xac\x43\xcb\x95\xdd\x6f\xfa\x36\x27\x7d\xbc\x90\x9d\x77\xf7\x53\xc7\xcd\xa9\x1f\x2f\xe5\xcc\xfe\x78\x21\x0d\x00\x40\x17\xe5\x26\xdf\x67\x5a\x11\xd6\xc9\xef\x38\xca\xe0\x7a\xb9\x9b\x08\x6a\xd6\xa0\xf3\x51\x5d\xb6\x83\xf7\x29\xdc\x46\xdb\x6d\xb1\x48\xb4\x2b\x59\x8e\x58\xbf\x1d\xdc\x71\x88\xfb\xcc\xee\x78\x0e\xe6\xf0\x0d\x6c\xa8\x5c\x25\x1a\x93\x54\x48\xb9\x29\x0a\x34\x8c\x5a\x75\x9f\x9a\x9b\x74\xb2\xd4\x65\xce\xb2\x69\x30\x79\xa4\xb4\x69\xe7\xc8\x6d\xcf\xe4\xbe\x8b\xe5\x8f\xf0\x39\xe8\x58\xdb\x15\x26\x8a\xc7\xf3\x35\x9b\xba\x4b\x77\x99\x41\xfa\x33\xe9\xb7\x31\xe4\x36\x52\x90\xb3\xe9\x95\xd9\x41\x57\xb4\xa2\xce\xb7\xd4\xf8\x7e\xa7\x6a\xa8\xf0\x2f\x6d\x5a\x74\x86\x3a\x42\xdf\x92\x6b\x3c\x6d\x70\x25\x8e\x41\x5a\xdb\x4e\x72\xd2\x91\xa7\xaf\x18\xcc\xb3\x32\xad\xfc\xd6\x55\x43\xa3\x64\xfb\x16\x63\xd2\x91\xd7\xdd\xcb\x2d\x17\x1a\x8d\x92\x35\xef\xd4\xd1\x4d\xcd\x39\xd5\x99\x9a\x6e\x9f\x21\xe6\xcb\x40\x1e\x7e\xae\xfd\xd7\x66\xc7\x80\xa6\x9f\xce\xdb\x75\x8e\x72\x26\xa2\x2b\x24\xf0\x6c\x3f\x8a\xbd\xc0\x6a\x48\xb4\x01\x89\x5e\x20\x81\x31\xd6\x42\x68\xa4\xdc\x41\x44\x85\xb2\x51\x57\x58\xe2\xff\xa8\x9f\x92\x4d\x57\x68\x38\x91\x18\xc0\xbe\x0f\xf2\x70\x3c\x1b\x47\x7c\x38\xe9\x76\x2d\x2c\x94\x13\x70\x94\x3f\xa4\x7c\x56\xa8\x92\x91\xe3\xac\xfc\x8f\xba\x69\xa8\x0f\x7a\xb7\x63\xcf\xce\x15\x88\xe1\x91\xc8\x9f\xe7\x97\xac\x38\x89\x4b\xf0\x9a\xc1\x52\x86\x18\x4c\xcc\x6b\x61\x39\x4d\xf5\xab\x1f\x31\x86\x80\x98\x4a\x04\xea\x74\x2a\x1e\x01\x76\x2e\x7f\x4d\xc5\x46\x29\x3a\xf0\xc3\xe1\x64\x96\x0f\xe2\xc8\xb4\x31\x26\x7f\xa2\x95\x76\x98\x63\x4f\x1f\xfc\x15\xea\x8e\xa2\x97\xc2\x6e\x68\x69\x36\x6a\x67\x30\x27\x42\xf1\x9d\x7f\xbe\x7b\x73\x33\xa9\xfe\x72\xc7\x3c\x72\xd2\x8c\x22\xac\xfd\x72\x83\x01\xb3\xd3\x9b\x48\x78\xbe\xdd\xed\x0c\x3c\x6d\xd6\x04\x37\xe3\x00\x4b\x56\xd3\x7f\x65\xbd\x43\x7f\x54\xe0\x9b\xbe\x2f\xe5\xd6\xce\x22\x41\xce\x83\x01\x8c\x64\x10\x68\x73\x0d\x78\x4f\xdb\x28\xd2\x24\xf6\x07\xf3\xff\x42\xf9\x02\x70\xf8\x90\x25\x50\x81\x2b\x54\x10\x35\x08\xf0\x97\xf2\x0d\xe5\x9d\x16\x80\x2d\xf4\xad\xe8\x39\xae\xfe\xd2\x88\xb7\x75\x44\xd9\xa9\x4c\x18\x3c\x05\x66\xd4\x9f\x90\x2e\x05\x70\x87\xb5\xa9\x15\x77\x79\x53\x14\x2e\x20\xdc\x60\xad\xe3\xcd\x29\xeb\xd4\xfd\xa6\xb2\x0d\x87\x6c\xd4\x08\xa1\x98\x15\x7d\x4a\xf3\x59\x31\x08\x7a\xaa\xa5\x60\x80\x26\x10\x98\x23\xe8\xa5\x65\x10\x05\x65\x2f\x2e\x58\x80\x07\x41\x2f\xbe\x88\xd3\x2c\x3e\xcf\x18\xe9\xed\x4b\xd6\xdb\xef\x7a\x31\x5f\xf6\x24\x47\xd3\x8b\x8b\x22\xbf\xec\xc9\xe5\xeb\x89\xbc\xc7\xe3\x8b\x74\x1d\x0b\x36\xea\xc1\xed\x62\x0f\xcc\x68\x65\xae\xcc\x54\x13\x18\x05\x51\x10\x44\xc1\x8b\x5c\xf7\x0a\xbd\xd4\x3d\x8c\x82\x88\xcf\x52\xc4\x71\x14\x04\x95\x2f\x14\x75\x99\xfc\xeb\x87\x98\x82\x20\x72\x9c\x8e\xbc\xc5\x8a\xae\x49\xdb\x0f\x03\x12\x6b\xaf\x03\xf8\x74\x72\x94\x14\x08\x3f\x6b\x26\x38\xba\x26\x1d\x24\x3f\xea\xf4\x37\x62\x7d\x4a\x45\x45\x1c\x6e\x38\xba\xe5\xf5\x8c\xd9\x4d\x15\xa9\x5f\xc4\x75\xb5\xe9\x6e\x5a\x54\xa4\x89\xa6\x21\xa0\x9b\xa7\xdb\x8a\x1e\x55\xe4\x2f\x4a\x27\xaa\x2d\x96\x20\x64\xde\x7f\x2a\x8c\xca\x68\x5b\x7f\x3d\x9c\x58\x1b\x93\x49\xdb\x9e\xd7\x79\x99\x23\x65\xbe\xae\x49\xed\xaf\x52\x29\x67\x8e\x68\xf5\xe5\x2e\x3c\x76\x1b\x10\x37\x6e\xf7\xc0\x92\xeb\x18\xd7\x67\x0f\x65\x1e\x86\x25\xa0\xd6\x5a\xe9\x99\xce\xd2\x28\x9e\x81\xd4\x3a\x2b\xec\xfd\x74\x8c\xa3\xff\x90\x68\xd0\x49\x20\xe6\x75\x7e\x29\x3c\x45\xaa\xc2\x70\x12\x71\x49\x5b\x74\x8e\x24\x30\x35\xb6\x8a\x99\xcb\x08\x07\x7a\x26\x80\x79\xea\x67\xc3\xb9\x8a\x35\xce\xe6\x7c\x11\xe5\x6c\x2e\x16\x75\xfd\x92\xd9\x00\x6e\x2a\x22\xb9\xa5\x74\x73\xb1\xd0\xea\xf7\x40\xc3\xee\x96\x56\xf5\x30\xc0\x47\x3a\x61\x14\xee\x88\xca\x28\x19\xc5\xa3\x58\x07\x53\x78\x6d\x1e\xe4\xf4\xce\x8d\x2c\x21\xc7\xd2\x8d\x75\x5a\xb9\x46\x03\xd2\x2a\x90\xa4\x45\xb2\xcf\xe2\xe2\x85\x3a\xe4\xf2\xdc\xc8\x3c\x15\x78\xb1\xb9\x9f\x64\x8e\x0e\xac\x78\x0c\x35\x3a\x45\x8e\x6c\x1c\xaf\x88\xda\x9d\xb6\x47\x1f\xa7\xda\x64\xef\x66\xa8\x4e\xf6\x76\x34\x80\x8c\x5f\x93\x8e\xab\x1f\x9b\xa7\x9b\xef\xcc\x4b\x97\xf0\x53\x87\x72\xd4\x26\x23\x6e\x92\x36\x5f\x73\x52\xac\x06\xbc\x06\xa7\x70\xb4\x68\x7e\x61\x0f\x09\xd8\xf2\x06\x2d\xb9\xe8\xc7\xcd\x6d\x02\xaf\x5d\xc2\xc5\x8a\x4e\xb2\x82\x55\x33\xdd\xc5\x5d\x30\xb6\x4d\xbc\x63\xe8\xa6\x29\x4b\xd7\x15\x3a\xe4\xcc\x3a\xd3\x28\x89\xdc\xa6\xfc\x9b\x82\xba\xac\xa7\xf9\xb1\x40\x3f\xcf\x97\xd7\xe6\xa3\xc2\x15\xae\x48\xc6\xe8\x98\xec\x19\x9d\x90\x1d\xa3\x77\xc9\x8a\xd1\x7b\x64\xc9\xe8\xb7\x64\xc3\xe8\x7d\x72\xce\xe8\x77\x64\xcb\xe8\xf7\xe4\x94\xd1\x1f\xc8\x9a\xd1\x1f\xc9\x05\xa3\x93\x31\xb9\x66\x74\x32\x21\x8f\x18\x9d\xdc\x25\x97\x8c\x4e\xee\x91\x4f\x8c\x4e\xbe\x25\xef\x19\x9d\xdc\x27\x2f\x19\x9d\x7c\x47\xce\x18\x9d\x7c\x4f\xae\x18\x9d\xfc\x40\x5e\x30\x3a\xf9\x91\x3c\x67\xf4\xee\x98\x3c\x65\xcd\xf8\x02\x92\xc7\xff\x7b\x33\x5a\x40\xc6\x48\x33\xfd\xed\x2e\xda\x7b\xa9\xda\xdb\x62\xe7\x25\x2a\x97\x03\xbf\x1c\x5f\x46\xcb\x46\x8a\x60\x45\xb4\xf1\xd2\x4e\x36\x71\x11\x27\x32\xfd\x5c\xa5\x83\xf5\xfb\x96\x91\x67\x26\xd6\x01\x98\xe0\x9c\xaa\x04\x45\xd0\xd6\x8c\xb8\xaa\xdc\x56\x4b\x17\x9d\xf9\xf5\x2c\xaf\x8f\xe7\xbf\xdd\x45\x8f\xfc\x5c\xd5\xe5\x25\x23\x26\x7a\xf4\x59\xad\xcb\xfd\x54\xa7\xbe\x34\x8a\xdf\xf7\x75\xda\x89\xd5\x00\xbf\xac\x13\xdf\x74\x28\x71\xcf\xdc\x6c\xab\x1c\xbe\x72\x5b\x62\x71\xf1\x77\x76\x5d\xbe\xc9\x7f\x8a\x8b\xe8\x45\x9d\xf3\x1a\x34\xd0\xcf\x59\xe5\x08\x29\x6f\x5c\xbc\x0f\xfe\x3d\x10\xa7\x36\xa5\xc2\xc6\x76\x17\xd6\xfd\xc9\x84\xe1\x2e\x54\xd8\xed\xde\x29\x8b\x78\x07\x9d\xd5\x91\x59\x2a\x15\x8a\x11\xa2\x5d\xf7\xd6\x50\x54\x23\xb8\x98\xa1\xd4\x06\xa3\xc1\x6d\xc4\xaa\xf2\x5b\xc1\x6c\xb0\x8f\xe2\x52\x6d\x9a\xa0\xbb\x5b\x78\xfd\x6d\x65\x7f\x9d\xa6\x24\x93\x76\x7f\xc3\x49\x45\xda\x77\x35\x10\x02\xf0\xa6\xb3\xcb\x0e\x6b\x88\x0a\xbb\xdd\x67\xdd\x90\xf9\x0f\x14\xcf\xee\x47\x93\x8e\xce\x48\xea\x5d\x8a\x92\x74\xd4\x26\x45\xd8\x9b\xe1\xfe\x78\x17\xe0\xa5\xf6\x2f\xe9\x64\xd5\xdd\xc9\xd8\x2b\xb4\xec\x2e\xe4\x77\x36\x9c\x78\x75\x76\xee\x7e\x38\xb2\x26\x6e\xf9\xcd\xb1\xf5\xfc\xb3\x7b\xe9\x5f\xbd\xe2\xe7\x2c\x92\x67\x48\x72\x76\x1f\xc0\x30\x15\x24\xc6\x0f\xe6\x1c\x0e\x4a\x92\xd1\x7f\xa0\xe4\x96\x55\xd1\x7f\x0d\x4f\x83\xa7\x8d\x09\xdb\xb6\xa2\xa4\x22\x99\x1a\x6b\xdb\x46\xc3\x1f\xd5\x85\x1a\xd5\x5e\x8f\x6a\xd7\x1c\xd5\x9e\xac\xe8\x3f\xd0\x8e\xf8\xa2\xd7\x2c\x6d\x58\x40\xfa\xd9\x18\x38\xe9\xaf\x1d\xf4\xae\x22\xab\x5b\x00\xbc\x6a\xc0\xf3\xda\xdb\x20\xe3\xf6\xc2\xa6\x72\x61\x19\x99\xf8\x1b\xf6\xd1\x17\x56\x1b\x36\xea\x5d\xb2\x08\xfe\x7e\xf2\xea\x5b\xe1\xb4\x1d\x65\x43\xe7\x48\xae\x5a\x37\x39\xf6\x5b\x7c\xff\x85\x23\x69\x54\x7b\xe9\x1f\x0c\x2f\xef\xec\x18\xbe\x6d\x26\x79\xb5\xae\xa0\x96\x07\x74\x5f\x1c\xf1\x4a\xbf\x80\xd2\xf5\xb2\x05\x81\x97\xfd\xbc\x7b\x08\x47\x31\x76\xf7\x29\xf5\x06\xa3\xf2\x7c\x2d\xb4\xe9\xd3\x3c\x6a\x50\x47\x1c\xd6\xd1\x86\x35\xeb\xa8\x1f\x62\xea\x5d\xa6\x62\x93\xef\x45\x6f\x07\xe1\x0a\x7a\xb1\xd6\xf3\x5c\xef\xd8\x28\xb0\x81\xff\x1a\xde\x90\x8c\xdc\x54\x84\x2b\x59\xe3\x23\x23\x27\x8c\x7c\x60\x14\x7d\x64\xf4\x89\xfc\xa0\x09\xf3\x5f\x66\x6d\x9b\x39\x6a\x2e\x89\x71\x51\xa4\xac\x44\x27\xac\x4b\xb7\x53\x1b\x53\xcc\xc7\x8b\xa9\x64\xee\x92\x0d\x4b\x3e\xbc\x32\x31\xde\xd1\x09\x23\x8c\x70\xf2\x91\x8d\x78\xbc\x55\xaa\x30\x4c\x7e\xd5\xb2\xcf\x6d\x8a\x01\x36\xb3\xfa\x00\x50\x24\x7c\x81\x5c\x3d\x52\xe1\x98\xca\xea\x4f\x69\x67\xe0\xa0\x42\x14\x68\x8e\x8d\x56\xcc\x04\x24\x6f\x18\xf3\x08\x10\x52\x8b\xd9\x51\x1d\x48\x10\xfd\x1f\x51\xca\x54\x47\x45\xc0\xae\xb9\x77\x58\xe4\xa2\x31\xf1\xb5\x4d\x18\x09\x39\xd2\x4d\x5c\xaa\x97\xc1\x4c\x9d\x91\x5c\x91\x86\xc2\xe2\xeb\x95\x25\x8e\x52\xe2\x09\x3b\xb2\x0d\x3f\xc8\x0c\xad\x2b\x6f\x6c\xf1\x5f\x99\x32\x80\x55\x3e\xdc\x0a\x5f\xeb\x5f\xae\x31\x49\xa7\xb1\x26\x28\x29\x8e\x40\x0b\xbc\xcf\x7c\x03\xc5\x5d\xfd\x9e\xbf\x35\x59\x14\x0d\x73\x24\xb2\xa4\xc2\xbd\x3e\x25\x9b\x23\xc6\x3d\xfb\x51\x3c\xda\x97\xec\x24\xce\xb2\xf3\x38\xf9\xe0\x1e\x27\x59\x48\x50\xc6\xe4\x2f\x7d\xeb\x66\xf7\x60\x3b\x94\x0b\x49\x29\x94\xc4\x24\xa6\x05\x12\xad\x70\x24\xe4\x46\x9f\x88\x28\xad\xea\xab\x84\x82\x21\xfb\x92\x0d\x89\x31\x89\x2b\x4c\x20\xac\x4a\x6a\x46\x66\x22\xc5\x14\x44\xc8\xa6\xd3\xf9\x78\x41\x4a\x9a\xd6\x51\x68\xe7\x0c\x02\x91\x60\x52\x2e\x2a\xf4\x86\xb5\x1e\x79\x16\x14\x34\x26\x0d\xb4\x07\x91\x4d\x65\x72\x07\x26\x2d\x74\x96\x41\xa2\xc6\x76\xa5\x6d\x13\xfd\x60\x1c\x86\x62\xc6\x1a\x34\x5c\xe0\xda\x9a\xa2\xf0\x31\xb0\x20\x1e\xbe\xaf\x54\xa0\x3a\x72\x4e\x37\x72\x5e\x5b\x7a\x6e\xb0\xc0\x9a\x9e\xb7\xd9\x97\x0b\x7a\xee\x6b\xb7\xae\xe9\x79\xcd\x62\x90\x47\x74\x33\x9f\x2c\xc8\x65\x97\xa1\xdd\x23\xdf\x22\x18\x40\xae\xad\x75\x2b\x72\xd6\x79\x47\xdb\xf0\xd7\x01\x23\xe4\x74\x09\xcf\x64\x59\xc7\x96\xda\xab\x25\xa6\x8e\xab\x00\x81\x18\x63\x9e\x4a\xc2\x75\x20\x2a\x66\x5e\xcc\x37\x86\x70\x54\x18\x20\x1b\x05\x48\x7e\x38\x24\x75\xec\x36\xad\x03\x49\x55\xa2\xf2\x84\xae\xb5\x20\x71\x67\x50\xb6\xc4\x8b\xc8\xd6\x50\x90\x94\xaa\x25\x95\x3a\xd4\x4e\xd8\x55\xa5\x5e\xc1\xbe\xa2\x67\x76\x8a\x2f\xe8\x99\x33\xaf\xe7\xf4\xcc\x4c\xf8\x29\x3d\x6b\x4e\xf1\xa3\x17\x3f\xf9\x35\x5b\x99\xe8\xc9\x27\xc7\x32\x7e\x6d\x67\xe0\xe9\xaf\xa3\x64\x5f\x14\x8c\x0b\x3a\x57\x0a\xbd\x27\xed\x52\xfd\x31\x26\x8f\xbb\x93\x5f\x1d\xe9\x6c\xfa\xb9\x70\xcd\x4f\x4c\xbf\x87\xc3\x07\x14\x5b\xbe\x7f\x4b\x94\x6e\x90\xfb\x5b\xf9\xa2\x61\x64\x54\x61\xb2\xf4\x0c\xb9\xe7\xdb\x85\xa1\xdc\x5f\xd8\x67\xf9\xdf\xef\xf3\xe2\x6b\xfa\x0c\x43\xf4\xca\xc2\xda\x37\xd1\xbf\xd4\xd7\xe7\x2f\x58\x85\x75\x1c\x51\x4c\xae\xc3\xd0\x96\x87\x88\x78\xf3\xeb\xaf\xe9\x6e\x86\x92\xc3\x61\x77\x38\x6c\x71\x18\x9e\x98\x44\xe3\x66\x1e\x6d\x67\xed\xb4\xe5\x71\xd7\xea\x93\x7a\x12\x1f\x9b\xf5\xbe\x14\xf8\x6b\xb0\xe1\xdc\x1e\x0e\x7d\xbb\xe5\x34\x77\x71\x38\xa0\xbe\xe4\x14\x1e\xdb\xb1\xdb\x5f\xb4\x3f\x8e\x56\xc8\x56\x98\xaf\x17\xc4\x8e\x05\x38\xaa\xf9\xfa\x6b\x80\xa2\x9c\xa4\xe6\x0b\x45\x5b\x5e\x1f\x8b\xbf\xd3\x61\x4f\x6a\x96\x28\x63\xc4\xa8\x4d\xa2\x3a\x80\x4c\x75\x24\x42\xcd\x2d\x0d\xed\x8f\x36\xd4\x8a\xdd\x71\x4b\x2b\x2b\xd6\x15\xad\xe3\x96\x0a\x4b\x55\xa1\x11\x2e\xa5\xde\x82\x3b\xdd\x60\x33\x86\xcc\x2d\x4d\x6e\xa0\xca\x59\x7c\xde\xa8\x60\xe6\x14\x86\xa6\xe4\x96\x41\x3c\x95\xdf\xfe\x04\xdc\xaf\xd9\x9f\x80\xf1\x23\xd5\xdf\x1f\xb7\x78\x49\xbf\x9e\x8b\xc5\x4c\xfe\x03\x2f\x88\x32\x78\x64\xd4\x54\x3f\x97\xa2\xc3\x75\x24\xd4\xa3\xf5\x7e\x9f\x05\xcb\x62\xc1\x96\xea\x7d\xa8\x3e\xa5\x1f\xeb\x13\xe2\xcd\xd6\x7d\xd3\xbe\x86\xf2\x25\x64\xfd\x7c\xcb\xb8\x7e\x93\xe3\xfa\xad\x7b\x5c\x17\xf5\xb8\x1c\x4b\xd7\xb6\x69\x6b\xdb\xcb\x93\x77\x44\x25\xe0\x4e\xb8\x15\xee\x44\x28\x90\x54\xf5\x76\x77\x5c\xde\xe1\x8e\xcb\x1b\x31\x57\xea\xf8\x04\x0d\x27\xdd\xee\x18\x5e\xc2\x75\x8e\xf5\xac\x1e\x2c\x80\xd5\x4b\x8c\x10\x2b\xe2\x29\x11\xb7\x05\xed\x12\xed\x30\x5f\x5b\x9b\xe8\x79\xd5\x5e\x0d\x82\x5e\x30\x78\x4a\x84\xe3\x02\x99\x92\xb7\xd8\x0d\x3a\x03\x11\x08\x7e\x06\x0e\x6a\x8f\xab\x86\xd5\xf0\xe7\x42\x4a\xa4\xcb\xe8\x4a\xf9\x6a\x79\xd6\xc5\x5f\xbe\x42\x75\xdc\x08\x5e\xc7\x8d\xf8\xf3\x0b\xd4\x11\x36\xe2\xbf\xb9\x3e\x27\x1d\xeb\xf3\x9c\x88\xa6\x53\x73\x37\xf8\x89\x18\x89\xf8\x5c\xf9\x05\x0c\x27\x12\xc4\xeb\x87\xc3\x49\x18\xde\x1c\x0b\xd5\xf0\x02\xad\x71\x45\x6e\xdc\x78\x3b\x29\xf9\xc3\x09\x9d\x13\x93\x67\xb8\x32\x0b\xe5\xd8\x6b\x7f\xa1\xe3\x73\xaa\xae\x73\xb5\x2b\x33\xf8\x3a\x6b\x50\x7b\x6e\x5e\x0a\xd4\x09\x78\x3a\x4b\x50\xef\x1a\x3e\xd3\x2b\xc7\x47\x7a\xd9\x72\x77\x4e\x55\x94\x76\xe3\xc5\xec\x2d\x00\x69\x39\x43\xab\x33\xb5\xc0\x1d\xd2\x55\xf3\x8a\x99\xcd\x98\xba\x1c\xd6\x04\x16\xee\x88\x1d\x89\xa1\x42\x25\x91\x52\x8c\x14\xfa\x37\x0f\xc6\xb8\xa5\x86\x79\x15\x97\xa5\x79\xb6\x50\x8e\xb2\x97\xeb\xbf\xd0\x46\x2f\xe5\x3d\x17\xaa\xfd\xe0\xd6\xdd\x92\xc9\xdd\xb2\x27\xcd\xb0\xfb\x35\x17\x00\x2e\xda\xda\xb9\x4a\xef\x17\xe3\xf4\x2b\xe4\x74\x29\x5d\xdb\xad\x50\xfb\xff\xf6\xc7\x15\x91\xe7\xea\x05\xda\x58\x77\x67\xed\xab\xbd\xeb\xb2\x0e\xf6\xba\xef\x43\x9b\xc8\xe1\x33\x26\x96\x6a\x9c\x32\x92\xea\x90\xbb\x18\x57\x68\xa3\xfd\xa9\x4d\xe8\xa7\xd5\xe7\x1a\x37\xed\xac\x9d\x76\x74\x33\x15\x59\xe2\xca\x75\x05\xe8\xa0\x0d\x9f\x80\x36\x58\x2f\x82\x8e\x12\xef\xa1\x44\xed\x5c\xd0\x51\xe4\x25\x14\xe9\xf2\x16\xe8\x1a\xe9\x59\x47\x04\x0e\xdd\x80\xbd\x8a\xea\xaa\x77\xc5\x1a\x81\x75\x65\x1d\xe5\x10\xd1\x31\xa6\xe7\x90\xdd\xea\x68\x4d\x2c\x1b\xee\xb3\xdf\x55\xf5\x84\xb5\x0d\x41\x9e\xaa\x17\xf5\xfe\x52\x11\xf2\x85\x4f\xea\xfd\x88\x49\xde\x19\xde\xd6\xbc\xda\xaf\x5f\xec\x5f\xe5\x05\x49\x69\x3e\xab\x3f\x51\x50\xb0\x38\x11\xe6\x31\xd3\x00\x47\xdf\x8d\x27\xe3\x7b\x24\xee\x2c\xb5\xcb\x0b\x11\x67\xba\xd0\x77\xa4\xec\x2c\xb4\x2a\xe2\xb5\xd3\xd6\xf7\x24\xe9\x2c\xa6\x26\xf1\x7e\x9b\x2f\x99\x2e\xf9\x03\xc9\xba\x7b\x2d\xf2\x55\x9a\xb1\x42\x15\x9b\x7c\x4b\xf6\xc7\x8a\x5d\xa4\x4b\x53\x6c\xfc\x23\xd9\x75\x16\x83\xe7\x98\xaf\xf4\xe8\x26\x63\xb2\xea\x9e\x44\x5e\x5c\xc6\xc5\xf2\xbd\x44\x54\xaa\xe4\x5d\xb2\xec\x9e\xc7\xbe\xdc\x31\x5e\xea\x49\x4c\xee\x91\xcd\xad\xc5\xde\x43\x80\x1e\x28\x7b\x77\x4c\xce\x3b\xcb\x6e\xd9\x36\xd7\xcd\xdd\x27\xdb\xce\x22\x59\xfc\xe9\x5a\x17\xf9\x6e\x9a\xbb\x0b\x6c\x67\xb0\xe7\xcb\x58\xae\x83\x5c\x30\xd2\x59\xa4\x60\xe5\x2e\x87\xa7\x44\x8f\x14\x28\x93\x7c\xc7\x74\xb8\xe0\xd3\x2f\xd9\x60\xa9\x60\x45\x2c\xf2\xa2\x56\xfe\xad\xdd\x37\x64\x04\x65\x23\xfd\xde\x02\xe1\x34\xd8\x08\xb1\x2b\xa3\x3b\x77\xa0\xb3\x3f\xca\x51\x5e\xac\xef\x2c\xf3\xa4\xbc\xc3\x24\x8e\x1e\x2e\x59\x92\x2f\x59\x31\xda\x88\x6d\x36\x4b\xf9\x85\xc4\x8e\x5c\xd0\x60\x20\x48\x41\x27\xd3\xe2\x41\xf3\xb9\x14\xf5\x2e\xca\x80\x06\x61\x5c\xac\xcb\xf9\x82\x06\x03\xc6\x65\x1b\x6f\x5f\x3f\xab\x1f\x38\x75\xdf\x4c\xb1\x58\xdd\x8e\x8b\x06\xa7\x29\x4f\x57\x29\x5b\xf6\x5e\xcb\x61\xf5\x60\x2c\xbd\xff\x15\x0c\xc4\x20\x98\xf6\x2e\xd2\x32\x15\xbd\x60\xc0\x07\x41\x6f\x95\x17\x3d\xb1\x61\xbd\xd5\x3e\xcb\x7a\xba\xba\x24\x23\x7b\x88\x9e\xc9\x7a\x3c\xe7\xc3\xad\x69\x6c\xc9\x2e\x7a\x8e\x02\x11\x2a\x43\x45\x68\xbf\x04\xf5\xb0\x79\x1b\x22\xce\x7a\x1b\x96\xed\x56\xfb\xac\x77\x19\x17\x3c\xe5\xeb\x72\xd4\x0b\x08\x03\x85\xff\x05\xbd\x01\xd7\x19\x2e\x5c\xfb\x36\xfb\x7a\xcb\xa4\x22\x8c\x7f\xdc\xb3\x3d\xfb\x29\x2f\x12\xfd\x50\xb9\x5b\xce\xe6\xbf\x66\xbb\x2c\x4e\xd4\xb3\x54\x9d\x05\x8c\xe5\xbb\x97\x59\x91\x6b\x7a\xe3\x28\x77\x1f\x19\xcc\x54\x5b\x2a\x53\xed\x59\xa9\x4f\x1a\x15\x26\x2a\xe5\xaa\xa4\xd7\xae\xb1\x7a\x41\xf9\xe1\x70\xe1\xbe\xed\xe4\xbe\x46\xf5\xe9\xbf\xdf\xf2\xa3\xda\x6d\x1a\x0c\xb0\xe2\xa4\x7e\xe8\x96\xde\x54\xc4\xcd\x2f\xbb\x63\x88\xa7\x2b\x64\x1e\x15\xed\xbb\x8f\x8a\x76\x3d\x9e\xcc\x4c\x30\x51\xa6\xf9\x8d\x35\x52\xdc\xc6\x0f\xf7\xb1\xb6\x95\xd7\xc3\x1b\x35\x40\xac\xde\x74\x90\xf3\x0d\xcc\x38\x02\xec\x8f\x6f\x55\x2f\xa7\x27\x54\x75\x35\xeb\x2c\xbd\x69\x39\x70\xea\xcb\xa6\x2f\x9d\x27\x99\x9d\x6e\xe0\xa8\xbf\xa7\x9f\x9c\x5c\xc9\x34\x5d\x4e\xdf\x8f\x9c\xa7\x99\xe9\x27\x52\xa0\xf7\xee\xf0\x30\x79\x3f\x4a\xcb\x57\xfb\x82\x35\xa0\xdc\x1f\x43\x93\x2f\xe9\x8d\xe6\x43\xb4\xf1\xf9\x19\xbd\x31\x28\x51\xa7\x5c\x35\x8b\xbc\x30\xd6\x3c\x35\x10\xfc\xd0\xde\xe4\x39\xdc\xf7\x45\x7d\x78\x00\x57\xfe\x79\xff\xbe\x64\x99\xf9\x95\xef\x8b\x04\xde\x88\xf6\x9e\x07\x72\xb4\xf5\x24\x97\x9b\x20\x56\x2f\x47\x94\xf0\xc7\x84\x6f\xed\x53\x81\x25\xd6\x02\x93\xec\xda\x75\x5b\x6e\xb5\x30\x44\xa5\xfa\xe5\x04\xd7\x86\x5b\xea\x30\x44\x31\x0d\x82\x01\x7c\x48\x31\xea\x85\x7e\xb0\x83\x14\x38\x0c\xfb\xcf\x9b\x91\xc9\x65\x2a\xca\xc1\xd1\x1d\x70\x91\x8a\xf1\xde\xc4\x6a\xc3\xbb\x72\x50\x13\x78\x2d\x34\xb7\xde\x17\x94\xc3\xdb\x7e\x3d\x99\xf5\x20\xf9\xbf\xd9\xfb\xf7\xe6\xb6\x6d\x2e\x40\x1c\xfe\x2a\x16\x27\xc3\x21\xd6\xb0\x2a\xd9\x69\xda\x50\x41\xb5\xb9\xb9\x4d\x1b\xe7\xe6\xa4\x69\xea\x7a\x33\xb4\x04\xcb\x68\x28\x40\x05\x21\x3b\x8e\xa5\xf7\xb3\xbf\x83\x73\x00\x10\xa4\x28\x27\x7d\x9e\xdd\x9d\xfd\xe3\x37\xe3\xb1\x40\x00\x04\x0f\x0e\x6e\x07\xe7\x5a\x6f\xb1\x25\x06\x6f\xca\x26\x84\x2e\xd9\x60\xb4\x7c\x30\x19\x2d\x77\x77\x49\x79\xb2\x8c\xa3\x45\x2d\x77\xf7\x4f\x47\x51\x63\xe5\x5a\x9c\x67\x10\x28\x2a\x56\x9c\xae\x31\x30\x61\xad\x92\x70\x43\xb0\xe0\xfb\x5e\x4c\xa2\x1d\xf5\xe6\xce\x1d\x5c\x15\xb9\x40\x4f\xc1\x78\xa3\x2f\x60\xa4\x2a\x8a\x0c\x73\x45\x3f\xaa\x2b\xc9\x75\xfe\xd9\x53\xa9\xeb\x56\x70\x25\x27\xad\xeb\x0a\xeb\x5b\x87\xa9\xe3\x7d\xff\x31\xc6\x98\x40\xb1\x28\xfb\xee\xaf\xef\x76\xbf\x9b\xd1\xc7\xec\xe4\xb4\x15\xb1\x28\x58\x36\x3c\x76\x18\xf6\x1a\xeb\x8f\xfb\x0b\xb5\xc8\xc2\x99\xa0\x9c\x12\x37\xe3\x54\xd9\x11\x7d\xa5\xf9\xb9\xf8\xcc\x0c\x55\xa0\x0a\xc7\x24\x55\x61\x27\xd2\x90\xc6\x58\x23\xca\x89\x6d\x6f\xf0\x75\xec\x39\xbe\x9c\x1b\xa0\xe8\x72\x49\xdd\x8b\xb9\xa6\xf0\x5a\x3e\x58\xb7\x62\x24\x79\x15\x72\x1f\x18\xae\x06\xc0\x65\x20\x0c\x98\xf6\x60\x84\x47\x84\x64\x38\xf8\xc9\xf7\x31\x4d\x1f\x87\x5b\x48\x2d\x99\x6b\x5d\xaf\xbc\xc6\xf6\x20\xaf\x6d\x1a\x32\x17\x3b\x18\x91\x54\x85\xb0\x53\xa3\x48\x0c\xd8\x63\xac\x4a\xd3\xe4\x4c\xa9\x92\x17\xb0\x23\x56\xab\x55\x86\xe0\xf8\x69\xdd\x1b\xd6\xae\x91\x99\x21\x13\xbb\x33\xc0\x0c\x76\xaa\x59\x15\xaa\x66\xf9\x30\x62\xa0\xd4\xe0\xbd\xd4\xe4\x50\xbb\x16\xe6\xfb\xf9\x90\xbb\x77\x4d\x98\x00\x4e\xbf\x4b\xa0\x4e\x44\x01\x2f\xae\xed\xe4\x9e\x90\x60\x54\xa2\xec\x36\x0b\x41\x53\xc7\x49\x3f\xd9\x7d\x94\x19\x3a\x20\xb9\x24\x74\x88\x41\x3f\x07\x96\x36\x09\xe5\xb9\xdc\x4d\xf2\x84\x36\x43\xa2\x19\x42\xea\x05\x37\x18\x95\x0f\x3c\xa3\x77\x54\xfa\x00\xb0\x4b\x26\x77\x1f\xd9\x9d\xe2\xa4\x3c\xa5\x25\x19\x4d\x76\x19\xcf\x2a\xba\x04\x5c\xae\xfd\xda\xf5\xf8\x58\xad\x36\x4f\x19\x33\x5e\x02\x06\xf3\x65\x17\xe9\x95\x2d\xd9\x51\x9a\x9a\x93\xa3\xd3\xd5\xca\x9c\x24\xff\xf3\x7f\x7a\xda\x2b\x39\x25\xe3\xa5\xf3\xce\xd8\x41\xb1\x2d\x01\x72\xc3\x96\x6e\x6f\x22\xd4\xf6\xa0\x07\x7b\x9a\xe4\x9f\x4d\x46\x48\x7f\xaa\x24\x1f\x11\x84\x98\x55\xce\x83\xa1\xeb\x10\xb5\x3d\x84\x4e\x84\x0d\x28\x5a\x9e\x95\x3b\xf9\x34\xec\x83\xd4\x1f\x80\x07\x43\x42\x93\x13\xac\xe6\x6e\xd0\xa7\x18\x67\xd4\xbd\x0b\x7a\x10\x28\x14\xbf\x49\x76\x5b\x76\x27\x7f\x2b\x21\xb3\x84\xee\x24\x64\x37\x59\x27\xb9\xa6\x49\x7d\x1d\x9f\xac\x33\x4e\x93\x04\x4d\x45\xc2\xac\x7d\x14\x6b\x0f\x7c\x65\xf7\x70\x47\xb6\xfd\xda\x78\x93\x5b\x79\x93\xb0\x24\x4f\xd8\x20\xa1\x49\x6e\x13\xfb\x89\xe7\x48\x26\x77\x92\xdd\x2c\x49\x76\xc1\xb4\x07\x48\xa9\xec\xbb\x13\x96\x9f\x7e\x37\xa3\x5d\xc6\x4c\xe6\x84\x9f\xc2\x6d\x1b\xbe\x44\x72\xd3\x37\xde\x5a\xf0\xe0\x5e\x04\xfa\x2b\x04\x1d\xd7\x37\x8e\x51\x58\xdf\xd4\xf8\xc5\xbd\xbb\x1b\xbd\xf2\xa6\xad\xf4\x8f\x3b\x07\x68\xfd\x87\x6d\x63\xc4\xd9\xd7\xdb\xa4\x1b\x91\xff\xfe\xc8\x38\xd5\x54\x76\x76\x89\xaf\x09\xba\x09\x85\xd8\xeb\x99\xdd\xb0\x41\xb6\xdf\xa5\xc2\xb1\x79\x1e\xa0\xbe\x26\xb0\x79\xe1\x50\xe0\xc8\x5f\x82\x83\xc1\xd9\x39\xfb\xe3\x81\xf7\x31\xb1\xb6\x83\xad\x76\xb3\x1e\xf4\x6b\xb5\x82\x38\x91\x9f\xf8\x35\x04\x78\xb7\xe3\x97\x24\x79\xe6\x15\xc5\xea\x61\xf9\x87\x26\x77\xd2\xef\xec\xec\xb1\xff\x24\x21\x54\xfb\xbd\x30\xc2\xe2\x1f\x75\x9c\x74\xe7\xc1\x91\x25\x89\x8b\x73\x23\x21\xf2\x89\x6d\x5a\x6e\x69\x96\xda\xbd\xf4\x0d\x35\xec\x53\x66\xa8\x80\x46\x08\x7d\xdf\x08\x41\xfa\x77\x1d\x16\xd6\x1f\x77\xd1\x96\xd8\xa6\x19\x0f\xf6\x87\xb5\x5c\x1f\x49\xff\x67\xec\xe6\xb1\x0f\xc9\x7f\x33\x2f\x16\x79\x9b\x3b\x10\x5a\xab\x8d\x18\x1c\x93\xe0\x24\x04\x9e\x74\x03\x6a\xb7\x07\x50\x2f\xd0\x6b\xea\x74\x7f\xbe\xa9\x39\xdb\xcd\x57\xd0\x4d\x8c\xb7\xe5\xdb\x71\x9d\x75\xa7\x59\xc7\x64\xb1\x2f\x76\x39\xf9\xb3\xa4\x1e\xc1\x30\xf7\x6b\x6a\x14\x4c\xbc\x0e\x9d\x96\x66\x07\x0c\x7e\x78\xdb\xa4\xa4\x66\x4d\x95\x2c\x9b\xed\x88\xf3\xac\x77\x5c\x07\x81\xf7\x78\x1e\xde\x3d\x88\xf1\xbc\xa6\x18\x45\xf0\x0d\x3f\xdf\xbc\x5d\x35\x09\xd4\x35\x0d\x64\x6e\xfe\x90\x5a\xda\xb7\x7e\xfe\xe2\x9a\x79\xec\x8e\xf9\x4e\xad\xa6\x56\xec\x2c\x14\x61\x67\x9c\xd5\x6b\x65\x41\x3f\x4e\x8a\x72\xb2\x2c\x03\x8b\x68\xfa\x48\x98\x2a\x37\xf4\xa3\x03\xc5\x39\x9b\x6d\x3e\xef\xdb\x0c\x73\xa1\x79\x31\x45\x97\x17\x03\xfa\xca\x71\x47\xf0\x60\x78\xac\x64\xb5\x9c\xbb\xa7\x35\xe9\xfb\xd2\xe8\xd3\x4b\xfa\xd1\xd3\x28\x7c\x4d\x79\xdf\xbf\xc2\x38\x4c\x98\xab\x42\x4f\x1b\x38\xe2\x9b\x2b\xfd\x9c\xa2\x41\x71\x6e\xd1\x5a\x16\x5f\xae\x6f\xad\x3d\xa7\x1f\xed\xdd\xc2\x82\x8e\x21\x17\xf3\xbd\x21\xfd\xe8\x68\x28\x87\xf0\x39\x9f\xab\x4e\x5c\xd6\xcd\x9c\x79\x72\x73\xa2\xe6\x8b\x42\xf3\x3c\xd2\xbb\x80\xd3\xd4\xac\xd7\x34\x52\xd1\xe9\x1e\x9a\xbf\x33\xd2\xd0\xe3\xc1\x88\x53\x36\xe7\xb6\x01\xf5\x6f\x61\x9d\xfa\x25\x94\xd8\xde\xfa\x0e\x56\xa9\x5f\x79\x36\x5f\xd8\xe3\x5c\x5c\x72\x74\xff\xbb\xb1\x38\x9b\xaf\xb7\xab\xbb\x5a\xd0\xd4\x13\x7e\xb6\x9c\xe1\x3c\x69\x5c\xf3\x97\x15\x7f\x5e\x5c\xab\xa5\xf9\x06\xf0\xe2\x8a\x35\x90\x47\xdb\x86\xc3\xbf\x66\x2b\xd4\xd5\xbb\x54\xfc\x36\xbb\xe2\x35\x94\xa2\x1e\x74\x4f\xb4\xfa\x85\x73\xb0\x2c\xf4\x31\xb6\x6f\xa9\x8a\x97\x6d\x5b\xf9\xd0\x71\x29\xf3\xca\x2e\x0d\xe0\x2f\xe6\x25\x3d\x06\xa6\x24\x04\xb4\x9e\xd0\x63\x7f\x3f\x9d\xd2\xa5\xac\x4c\x71\x56\xf2\x8f\x3e\xef\xb9\xa8\x4c\x7e\x41\x1b\x11\x47\xf3\xa7\x34\xb6\xc3\xde\xbe\x9d\x32\xbe\x5a\xd5\x22\x99\xd6\x7e\xb4\x7f\xef\x07\xe2\x1d\xbf\x29\xa6\x41\xdf\xd3\xa9\x8b\xd1\xc2\x85\x99\xad\x18\x1e\x96\xf6\x5a\x86\x27\x63\x7c\x6f\xb5\x1f\xda\x76\x65\xa5\x13\x16\xee\x5a\x5f\xb9\xbe\xe2\x01\x0d\x0e\xfc\xed\xd5\xbb\x79\xfd\x03\xc2\xb7\xa3\x64\x64\x89\xcb\x25\xd8\x31\xd7\xb7\xdf\x65\xe7\xed\x77\x89\xb7\xdf\xe5\x69\xa4\x19\x75\xb2\x8c\xcd\x83\xcb\xb1\xbd\xb6\xe6\x36\x17\x95\x5d\x97\xb7\x5c\x8e\x97\xdb\x2e\xc7\x4b\x72\xe3\x2f\xc5\x4b\x32\xf2\x64\xfb\x82\x0d\x46\x8b\x07\xcb\xd1\x02\x2e\xc7\x8b\xf8\x72\xbc\xd8\xb8\x1c\x7f\x9d\x84\xd9\x72\xaf\x9d\x84\xf3\xe4\xb0\xb0\x9b\x5b\xd7\xc9\xf6\xb4\x7f\x26\xe4\x14\x8f\x53\x5e\x3b\x05\xc0\xa8\x6a\xdc\x1e\x65\xa2\xfa\xbd\x28\xc5\xd4\xcf\xab\x63\x7a\xc9\x75\x05\x21\x5c\x87\xf7\xfa\xc3\x41\x7f\x3f\xa9\x27\xa8\xa5\xa3\xfd\x24\x7d\xac\xe4\xb9\x98\xe5\x5d\xca\x68\x6f\x03\x43\x7a\x54\x27\xd9\xc6\x56\x39\x32\xfa\xfa\x86\x67\x64\x7d\x2e\x64\x51\x96\xd7\x37\x51\x65\xb9\x5e\xd3\x8f\x1f\x8f\x9f\x3e\x7e\xf3\xf4\xed\xc7\x67\x2f\xde\x3e\x7d\xf3\xe2\xe1\xf3\xe3\x8f\x4f\x5e\x7e\x7c\xf1\xf2\xed\xc7\x77\xc7\x4f\x3f\xbe\x7c\xf3\xf1\xc3\xcb\x77\x1f\xdf\x3f\x7b\xfe\xfc\xe3\xa3\xa7\x1f\x0f\x9f\xbd\x79\xfa\x24\xbf\x41\x06\x11\x4e\xc1\x27\xa2\x5a\x14\x66\x72\xc1\x75\xfe\x92\xc6\x05\x8f\x6c\xae\x83\xff\x6d\xa3\xe4\x25\x32\x0c\xe8\xb3\xea\x58\xcd\xf9\x1b\x38\x60\xd0\x54\x58\xce\xf2\x70\x40\xf7\x86\x6b\x8a\x21\x75\xc1\xe3\xd2\xbb\x60\x03\x9e\x3f\x5b\xd3\x5f\xd8\xbb\x34\x7d\xb6\x5a\xbd\x1b\xf1\x3e\xff\xbc\x50\xda\x54\xec\x17\x3f\x8d\x57\xab\x5f\xd6\xdf\x26\x76\x81\x50\xe7\x28\x7d\x11\x4c\x66\xc3\xc1\x41\x64\x9e\x54\xfc\x7f\x7c\xef\xff\x7d\x7c\x6f\x4b\xba\x69\xb7\x4f\x16\x7e\x9f\xdc\xff\x81\xe0\x2e\x89\x9c\x3b\x3a\x69\xf0\xa5\xcb\x0c\xf6\xc1\x2a\xdc\xd3\x39\xf0\xb1\xfc\xa2\xc3\xa0\x82\x2c\x32\x14\x01\x51\x71\x2f\xdb\x1b\x3e\x90\xa4\xf5\xa9\xfb\xf7\x60\x47\xb6\xe5\x8b\x13\x79\x8a\xa4\xa4\xe9\xf3\xcf\x46\x17\x13\x03\x46\x95\x55\xfb\x15\xdc\xc4\xfd\xc7\x81\x89\x66\xdf\x65\x06\x34\x9a\x41\x9b\x07\xa4\x7d\x9e\xf7\xe4\x23\xfe\x33\x79\xa2\x4f\x69\xc9\x0c\x9d\x32\xd8\xd5\xcf\xdb\xfb\xe6\x74\x03\xbc\xfb\x84\x4e\xc9\xe8\xfc\x64\x7a\xca\x04\x60\xe4\x82\x89\xfe\xe2\xa2\xa8\xf8\xf4\x0d\x9f\x89\xca\x68\x30\x90\x7a\x51\xcc\x39\x68\xc1\x5f\xe0\xcc\x54\x16\xa8\x0b\x72\xd1\xfe\x80\x22\x69\xba\xcc\x2e\x4e\xd4\x29\x2d\x6d\xc3\x8a\xf5\x06\x8e\x61\xd1\xd7\xad\xf6\xc6\xd9\x32\xdb\xcc\x85\xf7\xa8\x7d\x8f\xe4\xca\x71\x7e\x7a\xaa\x0d\xf6\x8f\x84\x6a\xca\xc9\x7a\x1d\xb1\xbe\x96\xd1\x61\x39\x3d\xe1\xa7\xad\x77\x86\x83\x01\xe0\xd5\x16\x31\x43\x2f\xe0\x27\xc2\xe6\x89\x3c\xed\x4f\xf9\xc2\x6e\x0a\x72\x22\x38\xc6\x97\x5f\xb0\x93\x53\x7a\xce\x6e\xd6\x74\x6a\xff\x5d\x34\xe6\xc9\x59\x7d\xeb\xa3\x82\x16\xb4\xa2\x6e\x8e\xb8\x33\x23\x96\x10\x94\x62\xe2\x42\x30\x87\xb5\x44\x0f\x08\xec\x91\xc6\x45\xd8\x97\xb4\x24\xeb\x89\xdd\xbc\xb2\xa5\xe3\xcd\x2b\x89\xb0\x2f\xc9\x1a\xc0\x99\xb3\xde\x90\x1e\xe1\x9c\x9d\xd9\xf4\x25\xa6\xaf\xd9\x8d\xab\xda\x38\x24\xe6\xac\x37\xa0\x47\x8c\xaf\x37\x85\x2e\x4d\xa0\xe3\x76\xcf\x1c\x38\xd7\x34\x40\x8a\x27\xe8\x15\x96\x7f\xc1\x9f\x8f\xc8\xf3\x0e\xed\xbe\x6c\x33\x12\x30\xa4\x67\xe2\xc2\x74\xef\x01\xa2\x93\x11\xf7\x14\x04\xea\x86\xb1\x8f\x99\x24\xad\x2d\xd3\x81\x56\xd1\x09\x2d\x61\x30\x1f\x3a\x88\x40\x1c\x51\x03\x45\xe7\xb8\x9a\xe6\xed\x81\xbe\xff\xa3\x5b\xdd\x4b\x76\x34\x6a\xa0\x6c\xb5\xca\xc0\x8d\xfc\x25\xb3\x18\xcd\x34\x35\x8e\x8e\xa1\xdc\x12\x2d\x4d\xd0\xe0\xde\x10\xfa\xf7\x36\xc8\x74\x90\x10\x33\xad\xaf\x1e\x0c\x48\xc3\x07\x30\x63\x7c\x6c\xf2\x0d\x9e\x48\x9b\x17\x38\xce\x38\xf0\x13\x5c\x17\xed\x37\x28\x27\xb9\xcb\xcd\xf0\x69\xe3\xa5\x13\x7e\xda\x9f\x28\x39\x29\x4c\x66\x48\x7e\xc2\x69\xec\x95\xe0\xb3\x1f\x89\x8d\x8f\xf3\x60\xaa\x63\xcb\x73\x9e\xa6\x06\xe7\xa4\xb4\x6b\xc9\x62\xec\x45\x6b\x54\x9f\xbb\xdb\x6f\x64\x1f\xf2\x71\xea\x0e\x5e\x6f\x0c\x5e\x81\x9d\x4c\xc8\x7e\x66\xc9\x09\x39\xc1\xed\x62\x2b\xeb\x53\xb3\xc1\x48\x07\xd6\xa7\xf3\xed\x65\xb7\x91\x02\x2d\x32\x8f\x8d\x5a\x2c\xf8\x34\x23\x70\x40\xc1\xe4\x02\xaf\x36\x70\x00\x61\x90\xc1\x34\xf5\x73\x6e\xd4\x05\x95\x67\x68\x6f\x02\xe6\x4b\x44\xf5\xca\x12\x43\xb6\xbe\xc9\xc8\x6a\xc5\x63\x39\x55\x5f\xf3\x92\x17\x15\x50\xfc\xeb\x58\x08\x14\xe6\x80\x0b\x34\xfb\x82\xbd\xcd\x5e\x40\x3c\x5e\xce\x5e\xd0\x17\xae\x71\xa8\x65\x47\xe2\x39\xa1\x2f\xda\xbb\xd7\xf7\x04\x4e\x84\x99\xcb\xe7\xec\xb2\xb1\x9a\x39\x2e\xf6\x63\x76\x23\xe4\xdf\xdc\x9d\x12\xaf\xca\xe5\x4c\xc8\x97\x10\xd9\xbf\xc5\x9a\x68\x1f\x20\xc3\xc1\x90\x90\x51\x75\xdb\x26\xc4\x09\x2d\x33\xb2\xa6\x1b\x1f\xa8\x1e\x5d\xdb\x5d\xb8\x53\xf7\xae\x37\x84\x43\xc9\xb9\xba\x80\xa0\x92\xad\xed\xdf\x90\xb0\xfe\x4f\xcc\x29\x6c\xdd\x1b\x31\x75\x0d\x59\xad\x26\x27\xe6\xb4\xc7\x18\x8a\x52\xec\xc3\x46\x0f\xf6\x21\xc6\xb9\x2d\x62\x9a\x82\x17\xc8\xb5\x4c\x53\x0b\x73\xb4\x97\xfd\x13\x93\xa5\x4e\x1b\xe6\x85\x9a\xf2\x86\xb9\x16\xac\x46\x47\x78\x5d\x65\xa8\xd6\xd5\xd3\x8d\x42\xc9\xb4\x05\x97\x07\x99\x80\x93\x27\x78\xb5\xb2\x3c\x7e\x7a\x5c\x2c\xcc\x52\xf3\x90\xf9\x44\x2d\xcf\x5c\x7c\xb4\xae\xbc\x76\xf5\x3a\x6a\xc7\x46\x4e\x67\x55\xd0\x70\xdb\xc8\xe9\xac\xfa\x6e\xd1\x7e\x0e\xd5\x32\xcd\x7a\x3a\xc4\x9f\x20\xab\x95\xcd\xc8\x7c\xc4\x3b\xc6\x58\xc6\xdd\x96\x4d\x56\x2b\x8c\x7a\x9c\xe0\x65\xd3\x19\xeb\xf8\x27\xc3\x3f\x9b\x42\xf3\x02\x9e\x61\xce\xf7\x34\x4a\x57\x76\x78\x30\x5c\x04\xff\x97\xb0\x6b\xc4\x58\xc6\x90\x99\x5d\xc2\x6f\xd9\xa6\xcf\x0e\x86\x84\x1a\x1a\x4a\xc3\xbe\x0a\xeb\xe2\x31\xd3\xfd\x7f\x7f\x79\x18\x3d\xde\x08\xee\xdc\x7d\x9b\x48\x2c\x76\x1e\xf7\xbb\x0b\x5b\x72\x66\x42\x6f\x6f\x35\xba\x8a\x74\x34\x1b\x95\xb6\x25\xda\x78\x7e\x7d\x62\xdf\xfd\xaf\xac\xff\x3f\xc8\xc9\x5f\x7f\xfd\xf5\xdd\xe9\x77\xf4\xfd\xb7\x2a\x6a\x3d\x61\xef\xbf\x41\x51\xeb\x51\x67\xad\x96\xa2\xd6\xab\xce\x4a\x1b\x8a\x5a\x6f\x3a\xab\x75\x29\x6a\xfd\xd1\xfd\xd5\xb6\xa2\xd6\xdf\xdb\xaa\x35\x15\xb5\x9e\x75\x56\x6b\x2b\x6a\xbd\xdb\x56\xcb\x8d\x66\x04\xe1\x70\x48\x7f\xe9\xee\x72\x87\x5a\xd7\x61\x77\xaf\xdb\x6a\x5d\xbf\xdf\x5a\xad\xa9\xd6\xf5\xa1\xb3\x6e\x43\xad\xeb\xe7\xce\x2a\x0d\xb5\xae\xf7\x5f\x57\xeb\xea\xac\x12\xab\x75\x75\x56\x88\xd5\xba\x7e\xfb\xcf\xd4\xba\x5e\x6f\xf8\xf9\x82\x9d\x65\x53\x53\x06\x19\x09\x5d\xf2\x4b\xce\x7e\x4b\x53\x7e\xf2\xdb\xe9\x6a\xc5\xdb\xf2\x4b\xb7\x82\xc2\xe7\xee\x44\x47\x76\x24\x8e\xf0\x5b\x52\x67\x64\xff\x20\xb3\xb0\x5b\xe6\xa2\x2c\xe0\x4c\xb4\x04\x82\x84\xdf\xf0\xae\x13\x38\x77\xbd\xe9\xdd\x86\x70\x27\x56\x7e\x95\x3b\xd1\x9f\xe7\x1e\x26\x68\x5b\xfe\xc8\xe7\xbf\xc2\x75\x87\xb9\x7f\x84\x5c\xbf\x2e\x30\xff\x8d\xcf\xaf\xb9\x8d\xae\xe4\x30\x94\xf8\xd9\x87\xf9\xbf\xb7\xf3\x2d\x81\x94\xac\x9b\xa2\xd7\x00\xbd\x07\xba\x2d\x14\x7f\xe6\x5b\x71\xfc\xe9\xc0\xd2\x77\x5f\xf9\xbb\x5d\xee\xa5\x02\xae\xfc\x97\xdc\x93\x8f\xc8\xd6\x0f\xac\x2a\x66\x9a\x28\x36\x0e\xc5\x49\x42\x5b\xc8\xcf\x12\x98\x1b\xe3\xe4\x30\x48\x10\x32\xe0\x30\x90\x24\x8f\xf2\x12\x82\x5f\xfc\xe0\x20\xb2\xe3\x8f\x07\x1b\xe6\xff\x9c\xdb\x83\x89\x0d\x41\xee\xe7\xa4\x05\x63\xde\x8f\x85\x05\xa4\x7e\x33\x98\xd1\x37\xe7\xd4\xaf\x35\x41\x9c\x24\xa3\xa9\xba\x09\xa4\x03\xef\x9b\x62\xe6\x90\x76\x80\x9a\x04\x77\xf1\xe7\x1e\xfe\xfc\x80\x3f\xc3\x01\xfe\xde\xcf\x9d\x9b\xb0\x64\xe3\x14\xf5\x17\xa9\x8f\x53\x7e\xb6\x9c\x01\xef\x0a\xc4\xb2\xf8\x7c\x0c\x2a\x4a\x54\xb0\xba\x7f\x12\xc9\x47\x0d\xbe\xbd\xef\x64\x1a\xb3\x09\xd5\x4c\x50\xc1\x92\x84\xaa\xb1\x60\xc9\x4e\x56\x98\x9d\x64\x57\xf5\xed\xbc\xb2\xa8\x0d\x42\xc9\x4f\x34\x49\xc8\x6e\x92\xdb\xc2\x52\x48\xfe\x02\x34\x28\x00\xc1\x28\xc4\x4c\x76\x32\xe4\x48\x4e\x77\xce\xae\x91\xa3\x43\xc0\x7e\x37\xf9\x4b\xee\xec\xec\x58\xba\x30\xd9\xcd\xf4\x6a\x95\xbc\xc3\x5b\x5f\x42\x76\xc5\xda\xec\x32\x49\x39\x0c\xbd\x45\xe5\xfa\xea\x42\x94\x60\xbd\x1d\x1c\xdf\xd9\x9e\xfe\x69\xe9\x91\xed\xd6\xe1\x70\x93\xdc\x56\x18\x4c\xf3\xbe\xad\x56\xbf\xc1\x7a\x27\x94\x73\x44\x9c\x71\xbf\x92\xb7\x6e\x41\x9a\xfb\x6b\x10\xfb\x92\x71\x82\x9a\x7d\x5d\x4a\x7c\xbc\x4d\xc8\xfc\x38\x20\xde\x4a\xfd\x2a\x8b\x28\x54\x32\xe2\x3c\x7e\x76\x1c\x73\x88\x0b\x11\x3e\xab\xe0\xb3\x86\x8f\xa5\xfd\xf3\x62\xe7\x5c\x72\x76\xc2\x4f\x73\xc3\x19\xaf\xeb\x0a\x8e\x4c\x2b\xc3\x83\x13\x78\x4e\x0d\x93\x40\x0b\x4b\xfb\xe4\x26\x87\x6d\x93\xa2\x82\x1a\x67\x83\x11\xaf\xd5\x4f\xf8\xee\x2e\xd1\x3c\x33\x27\xfc\x34\x86\xa2\x68\x7a\x26\xe5\x0d\xb9\x74\xc5\x6b\xad\xa8\xba\x02\x3c\xd7\x95\x26\x16\x36\x18\xe4\x92\xb3\x82\xd3\xa5\xa5\x0f\xe9\x82\xc3\x85\xc2\x57\x3a\xb7\x95\xbc\x4a\x8b\x53\xad\x60\x8c\x49\xbb\xf2\x6d\x03\xd4\xf6\x90\xac\x25\xbf\xda\x39\x2a\x16\xb4\xf5\x8b\xd1\xe9\x38\xfb\xee\x7f\x9d\xe4\x0f\xf7\xfe\xfc\x58\xec\x7d\xf9\x6b\x39\x18\x3c\x1e\xec\xd9\x9f\x27\xf7\xe0\xff\x8f\xf0\x70\x08\x0f\x87\xf0\xb0\x7f\x78\xf8\xd7\x72\x70\xf0\x03\x54\x3b\xf8\xe1\x09\xfc\x3f\xdc\xfb\x6b\x39\x3c\xb4\x25\xfb\x83\xc1\xe3\x3d\xf8\x79\x62\xff\x43\xb5\xfd\xe1\x8f\xb6\xe4\xf1\x00\x1e\x0e\x9f\x1e\xfe\xb5\x3c\x18\x0c\x86\x7b\x7f\x2d\x9f\xfc\x60\xdf\x39\xbc\x0f\x25\x87\x4f\x1e\xdb\x87\x27\x87\xf0\x70\x78\xf8\xe4\xf4\xff\x55\xc0\xfe\xda\xeb\x0f\xf6\xee\xdb\x4f\x3f\xfa\xc1\x7e\x66\x80\xdf\xbc\x07\x9f\x39\x38\x84\xcf\xdc\x1d\x9c\xfe\x8f\x3b\xdf\xd1\x0b\xfe\x55\xb5\xca\x33\xce\x6e\xd6\x74\xce\x1b\x8c\xb2\x23\x1e\x73\x76\x1c\x6f\xab\x98\x4c\xf8\xc2\x54\x8f\x50\xf1\xab\x62\xfb\xa8\xcb\x74\x80\x3f\x77\xed\x0f\xaa\xe5\x16\x3e\x02\xbe\xdd\xac\x98\xee\xc8\xac\x16\xc5\x84\x33\x85\x25\xf3\x65\x65\xde\x55\xdc\x43\xc4\x64\xed\xad\xdb\x3e\x43\x23\x4e\x17\x18\xc4\x24\xee\x2b\x55\x21\x85\x11\x5f\xf8\xbb\x37\xcf\x9d\x1e\xe0\x0c\x3a\x91\x78\x59\xce\xce\xb4\x90\x33\xae\xd5\xb2\x2a\xaf\x8f\xb9\x79\x26\x25\xd7\xbf\xbc\x3d\x7a\xbe\xe3\xf6\x6b\x90\x92\xfa\x87\xc7\x17\x7c\xf2\x89\x4f\x77\x44\xa8\xe5\x7d\x7b\xc2\x01\x29\xcd\xd3\xa9\x00\xa1\xcb\x7b\x64\x56\x87\xe2\x5f\xae\xa7\xc8\x0b\x0d\x05\xe6\xba\xe4\x49\xbf\x5a\x94\xc2\x64\xc9\x4e\xd2\xe5\x6e\x85\x93\x9b\x19\x3f\xe1\xa7\xa0\x6f\x0b\xc8\x1e\xd0\xde\x90\x72\xd4\x74\xe8\x0d\xc1\x46\xe7\xe4\x24\x41\x94\x3f\xbe\x28\x74\xc5\x21\xd2\x2f\x3c\xef\x4d\x5c\xc6\x29\x3d\x49\x26\x65\x51\x55\x16\x47\x09\xc5\x34\xe4\xba\x98\xcf\x09\xa8\x02\xbb\x1c\xb3\x78\xfa\xcf\x52\x5c\x26\x14\xd2\x7b\x1c\x1e\x4e\x4f\xbb\xc1\x73\xa7\xff\xc9\xe0\x74\x34\xe3\xf6\x52\xef\x20\x35\x74\x08\x90\x9e\x0c\x4f\x9b\xc0\x26\x93\x26\x9e\x12\x9a\x4c\x75\x31\x9b\xb9\x74\xb5\xe0\x65\x09\x48\x4e\x68\x02\x3a\x66\xc9\x96\x2f\xb7\x10\xb3\x0f\x9f\x6b\x7a\x86\x6e\x7d\xb9\x58\x1a\xf5\x86\x5f\x72\x5d\xd9\x2f\xf1\xcf\xe8\xcb\xfd\x0d\x47\xa5\xe0\xe0\x8b\x13\x90\x31\x59\x56\x0e\x22\x3b\x7a\x5c\x5f\xf2\x87\xe5\xe2\xa2\xf8\x57\xc0\x34\x3e\x9f\x14\x65\xa9\xae\x0e\x97\x65\x79\x3c\xd1\x9c\xcb\x9d\xa2\xba\x96\x93\x1d\x0b\xd3\xa1\xfd\x1a\xa4\x5e\x95\xc5\xf5\x8e\x0f\xac\xec\xa7\x9c\xfd\xe5\x7a\xc7\xdf\xf1\x7d\xe2\x95\x98\x98\xa5\xe6\xcf\xa4\x4b\xec\x9c\x2b\x3d\x7f\xa1\x40\x2a\x58\x18\xbe\x73\x21\xa6\x53\x2e\x77\x4a\xa5\x16\x3b\x52\x1d\xa9\xe9\xb2\xe4\x3b\xb2\x2e\x87\x78\xf7\x96\x0a\xab\x9e\x49\x4b\x14\xec\x68\x5e\x4c\x5f\xca\xf2\x7a\x47\x3b\x44\xec\x68\x44\xd6\x74\x07\x2e\x07\xd3\x9d\x8a\x17\xf3\x92\x57\x15\x18\xc5\x1d\xc3\x85\xe1\xdf\xce\xdf\x83\xaf\x0f\xd3\x04\x97\x58\x42\x93\xf9\xb2\x34\x62\x01\xa3\x30\x5f\x1a\xc8\x0a\x86\x70\xdf\x36\x10\x07\xb4\x37\x68\x2f\x97\x64\xe2\x98\x27\x14\x3c\x64\x94\xaa\xf8\xd6\xd6\xee\x76\x2c\xbe\x64\xa2\xca\x2a\xa1\x89\x56\x57\xf6\xa7\x12\x5f\x70\x1a\x17\xf2\x1b\x1b\xbd\xd7\xd5\xa8\x56\x57\xc7\xb6\x09\x9a\x60\xf4\x88\x6f\x6b\xea\xfb\xaf\x20\x17\x0e\xd3\x4b\xce\xbe\x3b\xf9\x6b\x2f\x3f\xcd\x4e\x8a\xbd\x2f\xa7\xe4\xbb\x59\xbd\x9f\x5f\xf3\x58\x69\xea\x64\x78\xda\xf4\x0c\x5e\x9f\xfc\x0f\xa1\xa2\xe7\xaa\xf9\x4b\x06\x32\xd7\xbc\xc6\x6f\x4b\x5b\x37\x56\xd1\xdd\x54\xea\xad\xa9\xbb\x3c\x5c\xb4\x3c\xbd\xec\xbd\x33\x45\xb4\xcb\x15\x6f\x7b\x16\x9f\x75\xf0\x2c\xc7\xb0\x25\x01\xe9\x3f\xf2\x9c\x5d\x05\xbe\x9c\x14\x1c\x11\x79\xcf\x92\xd4\xfb\x11\xb7\x3a\x4b\x14\x90\x97\x27\x83\xd3\xd5\x2a\x79\xe9\xd3\xc4\x96\xe0\x45\xf2\x64\x68\x4b\x5e\xf8\x34\x21\x64\xb5\xca\xda\x72\x8e\x58\xaf\x63\x1b\xed\x6a\x62\x87\x2a\xad\xd7\xd0\x89\x39\xda\xb2\x02\xad\xef\x0d\x79\x46\x4d\x94\x7b\x7e\x66\x20\x59\x1d\x66\xe1\x86\xee\x31\xd9\x1b\x8c\x9a\xe3\xe2\xb2\xe1\x3a\xe1\x3e\x36\xee\xc9\xf6\xb9\x9d\x27\xd3\xc2\x14\x7b\x96\x0a\x46\x1e\x62\x3c\xab\x82\xf3\xf8\xef\x09\x49\x53\xb4\x51\xb5\x35\x39\x69\x8d\x5a\x6f\x08\xfa\x99\xd8\x3d\x12\x00\x12\xe7\x99\xae\x3b\x15\xf5\xda\x5f\x54\x5d\xbf\xfd\x7d\xcb\x55\x35\x23\x77\xf1\xf2\xaf\x5a\x74\x62\xde\xf7\x7e\xde\x88\xea\x45\xf1\x22\x33\xee\x56\x78\xaf\x9d\xbd\x5a\x0d\x7f\x32\xeb\x00\x1c\xd0\xb4\x0a\x6c\x31\x32\xe9\xb4\xed\x34\x32\x02\xec\x34\x19\x6f\xaa\x0d\xf5\x7a\x17\x8e\xd7\x3e\xe7\x94\x93\xd5\x2a\x3c\x9f\x71\x08\xcf\x91\x4d\xb9\xf7\xbe\x3f\x9e\xc3\x02\xed\x0d\xf2\xec\xcc\xa5\xec\x52\x24\x6b\x70\x6c\xe0\x67\x88\x1c\x73\x17\xf3\xe5\xa1\x27\x7e\x32\x43\x72\x30\x3f\x8a\x72\x28\x68\x9a\x92\x5c\xb5\x29\xa1\x31\x3f\x51\x0d\x32\xe8\x94\x85\x96\x0f\x7a\x7e\xb2\xa7\x69\x92\xe4\x32\xcf\x0c\x53\x4d\x22\x8b\xea\x76\x0e\x90\x5d\xf4\x76\xe8\x32\xc9\x2c\x45\x97\x29\xd7\x3c\x41\xd2\x4e\xa5\x69\x0f\x1d\x74\x27\x49\x6e\x01\xa6\x7a\xdc\xec\xc8\x8b\x63\x10\xcf\xc9\x8e\x0e\x4a\x42\x62\xe5\xdb\x2f\x3c\x16\x4f\x45\x71\x2e\x61\x3e\x4a\x35\x05\x60\xed\xfc\xab\xf9\xda\xcd\x69\x6a\x97\x2d\x1c\x27\x67\xea\x73\xe2\xd6\xa2\x2e\xa6\x02\x17\x79\xf4\xa9\x8f\x1c\xcd\x2b\x3e\x02\xc9\xf1\x56\x17\x93\x4f\x5c\x43\x88\xbd\x46\x4e\x87\xe7\x0a\x00\x72\x1c\x0e\xad\xdc\x11\x2d\xd4\x7b\x8e\xec\xcf\xb8\x89\x76\xa5\x27\xbc\x9a\x68\xb1\x30\xf6\x96\xd6\x90\x4a\x05\xc2\x9b\x1a\x7b\xb1\x4f\x92\xdd\x20\x69\xe9\xd8\xd9\xd2\xb4\x69\x69\xe1\x39\xea\x31\x1b\xbe\xde\x6a\xc0\x6b\xd4\xb6\xa2\x8a\x1b\xbf\x87\x42\x3d\xf0\xbc\x50\x71\xd3\xb4\x6d\xef\xe3\xc7\x02\x08\x76\x49\xdf\x4c\x80\xc5\xbd\xd4\x96\x1c\xc9\x7b\x03\x3a\x6b\x5a\x40\x07\x93\x19\x54\xf9\xba\x10\x15\x1a\x67\x37\x75\xf1\xa0\xab\x54\xd4\x95\x40\xfc\x1f\xfc\x11\x76\x7d\x97\xcb\xe5\x9c\xe3\x57\x65\xbf\x7e\x58\x13\x7a\x33\xe3\x66\x43\xab\xd1\x1b\x79\xc0\xc7\x5b\xa5\x01\x82\x35\xad\x8c\x5a\xc0\x38\x37\x3c\x14\x6e\xcc\x0a\xe6\x02\x44\x94\xdc\x70\xf0\x07\xbf\x5e\xdb\x2d\x2e\x9e\xb8\x2f\x3d\x5b\xa1\x17\xed\xdc\x41\xcc\x1a\x37\x06\xe3\x6b\xea\x7d\xd1\x47\x76\xf5\xdd\xc8\x70\x2e\x04\xcd\x9c\x34\xcd\xb4\x9b\x72\xbc\xef\xe6\xdc\x38\x31\x7a\xc9\x93\x3c\x39\x2f\xca\x8a\x27\x39\x47\xdb\x0c\xd0\x1a\xd6\x04\x8f\x92\xcc\xf4\x7d\xdf\x33\x4e\x68\x6f\x10\x41\xfb\xb6\xe1\x2c\xdf\xf8\x66\x83\xc5\x53\x76\xb3\xb6\x48\x6f\x5e\x80\x9c\x06\x2d\x8d\xef\x48\x3e\xef\x32\x7e\x70\xad\x39\x93\x00\x39\x96\x39\xef\x7f\xbc\xd2\x85\xa5\x2a\x40\xf3\xd2\x7b\xde\x73\x0d\xc7\x91\x4d\x3e\x37\x20\x73\xe2\xf9\x7e\xfc\x49\xbb\xcb\x34\x73\x28\x0e\x50\xaf\xee\xc8\x38\xa4\xea\xaa\xee\x63\x23\xc9\x1e\x72\xaf\x23\x89\x68\x1b\xbb\xdf\x5c\x12\xda\x82\x94\xdd\x34\x41\xcd\x83\x1b\x7c\x1f\xde\x6f\x12\x82\x51\xe5\xcd\x7d\xc7\x2b\x4d\xd4\x9b\x0f\xe4\x8c\x5b\xa0\xe6\x0d\x50\x22\x7a\xe7\x85\xc3\x04\x96\x67\xa6\x7e\x85\xa4\x29\x10\x43\x35\xd9\x0c\x21\xe6\xea\x57\x9f\xbb\x57\x5d\x13\x6e\x8a\x3d\xe4\x99\xf1\xf3\xc4\xfb\xc9\xae\xcf\x61\x49\xa2\x58\xe0\x7a\x9c\xb9\xc8\x82\x09\x6e\xb1\xf0\xda\x6a\xe5\x12\xb6\x76\x9a\x66\xee\x89\xc1\x21\x95\x87\x32\x78\x6e\x17\xd7\x46\x42\xd5\xf2\x6c\x2e\x60\xe7\xd6\x16\x3b\xdc\xde\x56\xed\x03\x89\xb5\xe1\x37\xcf\x1f\xb7\xc9\x92\x91\xd9\x90\xd2\xb9\x92\x31\xba\x02\x47\xe6\x9b\x24\xf9\x66\xc5\x78\xd2\x24\x24\x4d\xe3\x17\x00\x3b\x71\x05\x42\xa8\x9f\x7e\x0e\xcf\xde\x46\xa8\x3d\xa5\xa0\xaf\xcd\x2c\xd6\xeb\xb5\x6b\x45\xe3\xf3\x94\x47\xea\x4d\x5b\xfb\xb3\x5a\x7d\xad\x07\x75\x04\x7a\x3f\x96\xbd\x80\xdf\x1e\x63\x3a\x4d\x1d\x7e\x7b\x80\xec\x48\xcd\xf7\x12\xc3\x54\x3b\x12\xcc\x4f\x0b\x37\x04\x23\x83\x5e\x96\x3b\xd7\x2c\xae\x38\xb9\x5a\x99\x78\x62\x84\xc1\x36\x76\x09\xc5\x50\x32\xb3\x06\x66\x7f\x26\x99\x73\x10\x0b\xe8\xb2\x29\x96\x24\x51\xed\x80\xb9\x76\x4e\x47\x95\xde\xed\x1b\x0a\x85\x2f\xca\xfa\x43\xb1\x4d\xd8\x71\x40\x7e\x1c\xfc\x1e\xe2\x07\x5d\x49\xae\x9f\x6c\xf3\x0c\x67\x7b\x89\x13\xc2\x92\x47\x8d\x2e\x7e\x05\x5b\x79\xb3\x7a\xbc\x42\xda\xcd\xc8\xf8\x4c\xf9\xa7\xc5\xad\x65\x2a\xbb\xf1\x1c\x2c\xb7\xd7\xae\x2d\xe9\x90\x99\x0e\x22\xa5\x3e\x41\x74\xdf\x5b\x0b\x85\x1b\x25\x6f\x9a\xcc\xd4\xb6\x5b\x66\x97\x39\xf7\x34\xeb\xcc\x04\xd5\x67\x82\x63\x16\x34\xa1\x21\x1c\x75\x00\xf3\x31\x6f\x5c\x66\x2c\xa1\x86\x4e\x6d\x2a\x88\xd9\x07\xdc\x43\xa7\x29\xa4\xd8\x60\xa4\x1e\x04\x5f\xbb\x6a\x77\x97\x98\x93\xe4\x4e\xb2\x2b\x4f\xd4\xa9\x25\x95\xa1\xa6\x64\x83\x91\x7c\xc0\x7d\x2d\xb9\xbb\x4b\x14\xdb\x5c\x0b\x77\x2c\xbd\x24\x4f\xfd\x96\x06\x69\xcf\x2b\xc0\xe8\x33\x59\x23\x8f\x29\x70\x6f\xa1\x7d\x7e\x2b\x7a\x08\xb3\x27\xa4\xdd\xa5\x6e\x10\x86\x24\xd9\xb5\x07\x05\xa1\xce\x9c\x16\x61\xe7\x31\xec\xd0\xdd\x13\xe5\x40\xb0\x1b\x66\x1d\x34\x46\x45\x1f\xee\x0d\x40\x35\x2d\xc3\x4f\xab\xce\x4f\x93\x91\x5f\x8c\xab\x15\xd6\x71\xcc\x1f\xb0\xa0\xb5\x39\x64\xed\x6b\xb8\xc3\x3d\x82\xbb\x1e\x8d\x4f\xbc\xa1\xdc\x06\xbb\x55\x37\xb3\xb3\xad\xc9\x14\xd9\x99\x79\x02\xa0\x71\xac\x77\x9d\xfb\x61\x3a\x7e\x65\x09\xc4\x47\xfc\xfb\x16\xf1\x01\x1f\xa9\x2d\xe0\x9c\x85\x44\xeb\xd4\xa7\x8d\x63\xd0\x4f\xcb\x9b\xe8\xf8\x6a\xf5\x66\x1f\xf5\xb2\x36\x94\xd6\x80\x46\xcb\x86\x3f\x31\xcf\x01\xd8\x50\xa3\x3d\x20\x64\x64\x80\x07\xb0\x96\xcc\xac\x1d\x54\x70\x59\x4c\x12\xb2\xde\x46\x21\x20\x5e\x60\xca\x44\xc3\xf1\xa4\xd1\xd9\xe6\x11\xbc\x79\xe4\x44\x66\x86\x38\x03\xa5\x25\xe6\xb8\xdf\xae\xc3\x2e\x2b\xeb\xb3\x29\x7e\x3f\x32\xdc\xf7\x3b\x4d\xc7\x36\x23\xdd\xc9\xd6\x63\xba\x73\x0f\x8a\xc5\x3d\x8f\x9a\xf7\x31\xfe\xd9\x38\x9e\xf7\x08\xb7\xff\xed\x23\x6e\x49\x07\x9c\xab\xd1\xac\xad\x4f\x89\x35\x30\xac\xa5\xd9\xbb\xe0\x62\x76\x61\x76\x8a\x52\xcc\x40\x33\x7c\xef\xac\xa8\x38\x30\x27\x0b\x5d\x9c\x89\xc9\xde\xb9\xd2\xf3\x1d\x9f\xb9\x07\xae\x16\x77\x26\xc5\xc2\xbf\x38\x29\xc5\x62\x6f\x51\x98\x0b\x4c\xe9\x65\xc9\x77\x26\xaa\x54\x7a\x0f\x22\x77\x2e\x54\x59\xa0\xe0\x6a\x33\x6f\xef\x5c\x94\x86\xeb\xca\x95\x39\xb5\x15\xf7\x84\xb2\x6d\x21\x67\x3b\x53\x35\x17\xb2\x88\x21\xe3\xd2\xae\xcc\xbd\xb3\x62\xf2\x69\xa6\xd5\x52\x4e\x77\xce\x45\x59\xee\xa9\x45\x31\x11\xe6\x1a\x1f\x00\x90\xf3\x52\xa9\xe9\x1e\x34\xe8\xd2\xa1\x8e\x92\x66\xef\xbc\x98\x8b\xd2\xa5\x2b\xf1\x85\xd7\xa9\xbd\x62\xfa\xf7\xb2\x32\x2e\xc3\x68\x6e\x26\x17\xfe\xe1\xba\x74\x15\x9d\x45\x00\x3e\x5c\x21\x3a\x66\xe5\xf5\xe2\x62\xcf\x1e\x7a\x2e\xa9\xb4\xe0\xd2\x60\x7f\x2f\x94\x16\x5f\x94\x34\x45\xd9\x51\x78\xc9\xb5\x11\x93\xa2\xdc\x81\x5a\x7b\xc5\xf4\x72\xef\xb3\x4b\x2b\x2d\x66\x42\xee\x7d\xde\x11\xf3\x62\xc6\x23\xd4\x94\xdc\x18\xae\xf7\x2a\xdb\x29\xfb\x68\x41\x10\x72\xe6\x7a\x3c\x2f\xf4\x27\xae\xf7\xb8\x9c\xfa\xe4\x5c\x84\x24\x30\x39\x77\xd4\x25\xd7\x30\xae\x0b\x55\x09\x14\x94\xfa\x1c\x73\x21\x26\x9f\x24\xaf\xaa\x9d\x45\x21\xa4\xd9\x53\x7a\xca\xf5\xce\xa2\x90\xaa\xe2\x7b\xc3\x9d\x85\x82\xb1\x44\x5d\xe4\x6a\x27\xc0\x04\x43\x2c\xcd\x0e\xc4\x2f\x8a\x40\xb5\x57\x3d\x07\x17\x24\xfd\x40\x54\x46\x8b\x4f\xdc\x6e\x01\xcb\xd9\x45\x0d\x46\x33\xbb\x86\xa5\x32\x5a\x7d\xe2\x7b\xd3\xa2\xba\x80\x80\x5e\x71\x86\x3a\x3f\xaf\xb8\xf1\x39\xb6\x13\x93\x62\x11\x3f\xfe\xad\x84\xf4\xcf\x73\x61\x6c\x47\xe7\x22\xbc\x10\x41\x64\x1f\xaf\xc4\xd4\x5c\xec\xd8\x25\xb7\x57\xc8\xc9\x85\xd2\x98\x9e\xf2\x89\x42\xa9\x12\x3e\xd7\x3d\x5c\xda\x44\x13\x99\x75\x56\xdd\x83\xa5\x14\x13\x35\xe5\x7b\x67\x62\x2a\xc2\x83\xb6\x47\x84\x7d\x32\xd5\xde\xc2\x62\x75\xbe\x73\xb9\x57\x94\x8b\x8b\xe2\x8c\x1b\x31\xd9\xb9\xdc\xbb\x28\xe4\xcc\x7e\xe5\x72\x4f\x4c\xb9\x9a\xe9\x62\x71\x01\xf9\xf3\xc2\x5c\xf0\x79\x81\x53\xe7\x92\x4f\x8c\xd2\x7b\x1c\xec\x03\x77\xec\x8c\x82\x79\x74\x8d\xc9\x30\x8d\xe2\xa7\xeb\x9d\x2b\xa5\xa7\x61\x0a\x5d\x69\x01\x33\x68\xae\xa6\x7c\xe7\xf3\xbc\x94\x55\xfe\xb9\x14\xf2\xd3\xce\x67\xb7\xe0\xbf\x2e\x7e\xa8\xb5\x53\x50\x15\xe2\x92\xd3\x6b\x4e\xba\x65\x55\x4d\x79\x0d\x7c\x29\x2f\x26\x66\x59\x18\xbe\xe3\x9e\xf4\x44\xab\xd2\x3f\x45\xc9\xea\x42\x5d\xb9\xa4\x11\x26\x64\x5b\x4a\xfc\x7f\x33\x8c\x20\x94\xcb\xbf\xfb\xee\xea\xea\xaa\x7f\x75\x00\x66\x42\xc3\xfb\xf7\xef\x7f\x07\x1f\x4c\x6a\x09\xc2\xe7\x79\x99\xdb\x3d\x2a\xa1\x90\x2c\x0b\x39\x73\x49\xe0\xee\x6d\x93\x28\xfc\xb7\xb0\xfc\x71\xf4\xdc\xc2\xf3\xe3\x77\xd2\xf3\x11\x23\x98\xbc\xb3\xcb\x84\x26\x13\xad\xaa\xea\x25\x8c\xfa\x37\x0a\x37\x86\x5f\x93\x1c\xcd\x78\x1f\x90\xf0\x8b\xe6\xe7\xfe\xb5\x24\xe4\x24\xd8\x80\x1b\xd6\x0b\x74\x36\xf9\x15\x5c\x0e\x2c\xd0\x95\x9e\xd8\x9a\xf8\x02\x86\xe2\x40\x71\xe9\x1c\x43\x51\xfe\xf7\xe0\x0f\x82\x6c\xe6\x15\x67\x37\x17\x66\x5e\xe6\x5b\x21\xb3\xa5\x09\xb5\xeb\x6c\x6b\xad\x1f\xbf\x3b\x2a\xcc\x05\xfc\x3b\x7a\x9e\xd0\xea\x72\xd6\x55\x71\x7f\x30\x18\x7c\x57\x5d\xce\x92\x48\x9c\xff\x26\x96\xea\x78\x71\x8e\xad\xe3\x45\x30\xb7\x34\x83\x32\x06\x0b\xd8\x2d\xb5\x37\xa0\x6b\xcb\x78\x6e\xed\x76\x44\x49\xfd\xd1\xbc\x0d\x39\x15\xc0\xd5\xea\xf6\x06\xc0\xd9\xe9\x1b\x60\x5f\xdf\xd6\x15\x8c\x47\x61\x87\x98\x8b\x99\x7c\x59\x2b\xd3\x8d\x6f\x6f\x3e\x47\x8f\x0c\x7f\x73\xfa\x8c\x77\xc4\x07\xe8\xe4\xd8\x1e\x1d\x3f\x5c\x2c\xd2\x14\x7e\xfa\xfc\x33\x9f\xbc\x93\x55\x71\xce\x9f\xab\x49\x51\xfa\x48\x67\xb5\x10\x22\xb8\xa2\xb8\xb5\x7e\xd6\xe1\x52\x01\xd9\xeb\x6b\x42\xd6\x39\x5f\x67\x59\xd3\xfc\x13\x34\xfe\xc3\x82\x7d\xf7\xe6\x59\x8f\xb1\x57\xbc\x5f\x5d\xce\x40\x67\xdc\x5d\x11\x12\xb0\x0e\xb0\x84\x9d\xcb\x60\x66\x14\xae\x48\xd9\xdf\x9c\xfd\xcd\x57\xab\x6e\x55\xac\x2c\x99\x8a\xcb\x84\x90\xe8\xdd\xe4\x41\x75\x39\xfb\x29\xd9\x75\x24\xf0\xcb\xf3\x8c\xd4\xce\x4f\xc8\x6e\xf2\xe0\x3b\x28\xa7\x86\xfd\xcd\xfb\xe7\x42\x57\x06\x2e\xae\xa3\xc6\x03\xf1\xac\x21\x78\xcc\xe2\x32\xb4\xb3\x1b\x99\x56\x75\x4b\xa0\xca\x29\x56\x8f\xcb\xc8\xda\xae\xc1\x30\xbf\xde\x45\x01\x40\x6b\x3b\x84\xa8\x29\xd4\x79\x97\x40\xf7\x96\x85\xcb\x4d\xd3\x03\x10\xd9\x49\x35\x05\xb7\x9d\x31\x17\x2b\xc3\xec\xdf\x3d\xc9\xdb\x20\xa0\x99\xa9\xa7\xf6\x2f\x8d\x4b\xc2\xcd\x3a\xe8\xc8\x9f\xb4\x76\x8f\x53\x66\xda\xdb\xc9\x49\xf2\x9e\x9f\x7d\x12\x26\xd9\xe5\xa7\x2c\xb9\x72\x69\x63\x0b\x8e\xd4\x17\xcc\x9d\xdb\x84\xa1\xa8\x72\x7f\xc8\xd9\x4d\x21\xc5\x1c\x68\x08\x2e\xa7\xf9\x2f\x3c\x4b\x1e\xfa\x8c\x84\xd6\xe9\xa7\x72\x9a\x10\x1a\xea\xa2\x62\xae\x50\x72\xfb\x1b\xcf\x7c\x95\xf8\x3d\xa0\xf4\xb6\xbf\x73\x0c\xd2\x6e\x42\x8d\x2e\x24\x92\x2d\x1e\xa8\xb7\x21\x27\xa1\xd1\x03\x80\xb5\xa6\xbf\x83\x76\xd2\x87\xa6\x76\xd2\xcf\x9e\x0d\xff\xbb\xdd\x8a\xfd\x60\xc0\x03\xb0\xc7\x0e\xe3\x6c\x74\x8a\x62\xa8\x64\x90\x5d\x1b\xc4\x48\x62\xc7\xba\x4b\x04\x03\xc5\x1f\x78\xa3\x61\x26\x4f\xcc\x69\xed\x39\xe4\xcf\x34\xcd\x3e\x70\x76\xeb\xaa\xe8\x03\x15\x1f\xa3\x1a\x2c\xea\x84\x0c\x1a\x92\x99\x93\x36\x1c\xf2\x7e\x3c\x58\xf5\x03\xed\xa8\x10\x46\xe8\xf6\x6a\x30\x20\xf5\x23\x69\x20\xb7\x0d\x48\xfd\x7e\x63\x80\xa2\x27\xa7\x40\xce\xd9\xcf\x3c\x4b\x62\x60\x13\x42\x5f\xb7\x72\x45\x34\x41\xee\xb4\xca\x2a\x37\x11\x7e\xc5\xfc\xc6\xe7\x12\x42\xff\xe4\x2c\x29\xce\x94\xb6\xb7\x3f\xb9\x00\xad\x19\xfc\x75\x44\xfa\xce\x74\x89\x4d\x63\x40\x9c\x1d\x3e\x5f\x18\xc1\xa7\x3b\x5c\x4e\xf4\xf5\xc2\x40\x6a\x6a\xff\x83\x41\x73\xa9\x8a\x29\x9f\x4e\x0b\x53\xb8\xe4\x9c\x9b\x22\x3c\xe2\xe5\x64\x51\x2c\x2b\x0e\xfa\x32\xf0\xcf\x92\xa7\x0b\xad\x66\x10\x9f\x49\x17\x86\xbb\x0f\x55\x9c\x7f\x02\x4d\x19\xfe\x09\x2f\x1a\x18\xd1\x0b\x4d\x02\xa6\x3b\x46\xcc\x39\xfa\x65\xdc\xb9\x54\xe5\x72\xee\x5f\xbb\x2a\x80\xd2\x8d\x69\x45\xca\xc1\x3d\xb3\x31\xec\xe4\x94\x4a\xc7\x77\xd2\x9e\xff\xe4\x7e\x85\x61\x5e\x61\xb2\xa8\x93\x95\xb1\xcb\x7c\x59\x71\x88\x2d\x05\xa9\xe5\x62\xc7\xa8\xe5\xe4\x62\x52\xc8\x09\x2f\x31\x0d\x00\xd9\x04\xf6\xb0\x58\x7e\x9e\x94\x62\xf2\x69\x67\x7a\x56\x62\xc2\x5d\xab\xdc\x3b\xee\x09\xda\x74\xe9\xe5\x62\x67\xaa\x8b\x99\x6d\xc8\xfe\x62\x3b\x53\xad\x16\x3b\x13\x35\xf7\x17\x0f\x5b\x1a\x3d\x62\xa5\x4f\xfc\x1a\x1a\xfa\xc4\xaf\x41\x3d\xce\x26\x96\x8b\x1d\x10\xe4\xc2\x5d\x06\x02\x80\xef\x80\xb7\xe7\x1d\x07\xc0\x44\x2d\xae\x77\x26\x4b\x3b\x16\x95\xe1\x3b\x08\xa3\x43\xa0\x33\x0c\x99\x73\xb9\xdc\x01\x36\xf7\x8e\x63\x7d\xc7\x18\x9d\x18\x86\xaa\x5d\x3b\x67\xe5\x52\x3b\xd0\x0d\xc7\x54\xc9\x8b\x4b\x8e\xc8\xb2\xd7\x4e\x97\xb2\x5f\xc3\xbe\x42\xa6\x4f\x2f\xcd\xce\x4c\x99\x80\x1f\xd0\x27\xda\x29\x55\xd5\xca\x8a\xbf\x1e\x99\xa1\x9b\xb6\x6e\xed\xcd\x59\xa9\x26\x9f\xf8\xf4\xa5\xcc\x39\x35\x6a\xf1\x9c\x5f\xf2\xd2\x9e\x20\xb9\xa1\x70\xa7\x3d\xbe\xae\x0c\x9f\x1f\x96\xc5\xac\xca\x0f\xf6\x57\x92\x4a\xf0\xeb\x02\x0b\x34\xd7\xb1\xad\x34\x7a\x62\x69\x13\x71\xd0\x6b\xa7\x1d\x62\xfb\x9e\xe4\x6e\x46\xc5\x0e\xf4\x02\x3e\x5c\xc5\x80\x95\x24\xd7\x9b\xb5\x03\xa6\x5c\x6d\x8f\xaf\x24\x57\x9b\x95\x23\x1c\xba\xea\x35\x26\x93\x5c\x98\x3e\xee\x2c\x99\xe9\xbb\xfc\x67\xd3\x38\x7e\x62\xb2\x81\x6c\xd7\x4a\x07\xca\xf3\xa2\xb3\xb5\x08\x47\x0b\x13\x7b\xf5\xda\x30\x58\xb1\xa4\x50\x40\x2e\x68\x0c\x95\x26\x50\x5e\x79\xc6\xfb\xed\x11\x59\x31\x30\x59\xaf\x35\x9e\x4d\xcb\x98\xb4\x1f\x86\xb7\x2d\x0e\x7e\x2b\x33\x7b\xaa\xd7\x03\x4e\x37\x9b\xa7\x0d\x80\x5a\xb6\xc8\xcc\x80\xbc\x25\x7c\x80\xb5\xa4\x7f\x53\xe3\x05\x1c\x00\x55\x9a\xca\x80\x9c\xa8\xd6\x85\xc9\xd0\xfc\x1f\xf6\x9c\xd1\xe0\x81\x09\xca\xe3\x41\xeb\x1c\x22\xfe\x75\x77\x0a\x07\xea\x3f\xef\x91\x67\x0a\x8e\x1b\x1d\xc9\x8d\x8b\xd5\x9b\x05\x66\xb7\x34\x69\x7a\x6e\x32\x89\xda\x33\xde\x3b\x96\x2b\xd4\x58\xa8\xa1\x50\xb7\x0a\x15\x16\x2a\x28\x54\xbe\x50\x98\x70\x77\x9b\x1a\x42\x8b\xc6\x63\x8d\x9e\x33\xe3\xfd\xef\xd5\xe0\x79\x1e\x66\x9d\x83\x26\xbe\x30\x1e\x86\xf5\x06\x54\xf4\x83\x03\x96\x6a\x72\xc1\xa7\xcb\xb2\x76\x1d\x15\x95\xbd\x50\x7a\x5e\x94\xaf\xb4\x50\x5a\x98\x6b\x7a\x61\x1a\x3a\x30\x73\x98\x4b\xe1\xd1\x64\xf5\xa5\xe7\xcc\xce\x4a\x4e\xd6\xe2\x3c\x8b\x06\x8c\xdc\xd8\x7c\x3b\x58\xb1\xaf\x09\xc9\x86\x23\x19\x8d\xaa\xf4\x1e\x29\xb5\x1d\x58\x79\x3a\xd2\x8d\xae\x81\x9e\x41\xab\x6b\x64\x1d\x8f\xc2\x99\x1d\x05\x88\xc5\x57\x23\xff\xcc\x22\x3f\xca\x53\x98\xa7\x20\x2f\x42\x75\x13\xd3\x2e\x3e\xfe\x91\x61\x03\x3a\x33\x6c\x9f\x5e\x1a\x36\x1c\xec\xdf\x8d\xb4\x12\x4d\xc4\x99\xa0\x92\x81\x7c\x80\xf7\x8b\x12\x14\x78\x0d\x27\x8e\xd2\x77\x02\x4b\x62\x58\x48\xc3\xfd\x84\x33\x33\x9a\xaa\x9b\x2c\x33\x8c\x93\x3e\xf2\xa3\xde\x16\xb3\x34\x9b\x99\xd5\xa5\x21\xa4\xc7\xd8\x91\x01\x96\xbe\x7f\x8f\x50\x1e\xd2\xc1\xac\xc5\x5b\x0c\x1d\xa0\xf8\xbe\x98\x8d\x65\xcb\x22\xed\xa1\x5f\xf8\x00\x71\xaf\xf6\xe3\x14\xcc\x9f\x7f\xfc\x31\x1e\xdc\x2b\x5f\xbf\x97\xf1\x0e\xa9\x5d\xd4\x45\xa7\x27\x12\xa9\x15\x66\x86\xc1\x57\xda\x12\x0b\xf8\x44\xb0\xc0\x81\xa8\x18\x60\x6d\xc7\xd7\xf5\x5c\xe0\x54\x33\x33\x1a\xd5\x6a\x3f\x0e\x5b\x75\xeb\x2a\x5a\xd3\x82\xa9\x26\x20\xae\x8e\x88\xf7\xb8\x4c\x33\xe5\x91\x47\x6e\x24\xd3\x23\x7b\x22\x0b\xb9\xe4\x6b\x68\xc9\xce\x52\xe7\x3e\xc9\xbe\x8a\x29\xdc\x73\x6c\xfb\x13\xbc\x54\x8d\xa0\x49\x11\x0b\xcf\x1e\x9a\x4c\x11\x0a\xdf\x15\xb1\x66\x00\xe6\x9b\x91\x60\xa2\x5f\x89\xb3\x52\xc8\xd9\xba\x0b\xd9\x40\xbc\xbb\x5d\x97\x31\xed\x61\x94\x4c\x51\xcd\x44\x7d\x81\x45\xa7\x31\xbd\x21\x9d\x04\x70\x26\x08\xce\x04\xc0\xb9\xa9\xec\x9a\xf6\xaf\x85\x3e\x4d\x00\x26\x2c\xd4\x4c\x51\x19\x0a\x27\x6c\x12\x00\xb3\xa3\x57\x61\x6f\x27\xbe\xf3\xdd\xcd\x0b\xdb\xca\xb6\xe6\x85\xfd\xfe\xd6\xe6\xdb\xbd\xbf\x4f\xc8\x1a\xbb\x1f\x46\x0f\x4c\xf3\xdb\x4e\x35\x06\x88\xa5\x83\x1e\x68\x9b\x16\xb3\xdb\x26\x94\xac\x2d\x9b\x42\x0c\x11\x90\x81\xe7\x06\x74\xa0\x1a\x46\x98\x91\xa7\xa3\x11\xf6\xf5\x7b\xbf\x74\x56\xab\x7b\x3e\xe9\x5f\x01\xbf\x97\x4e\x9e\x47\xdc\xaf\x1b\x2d\x66\x68\x10\xf5\xe1\x88\xd9\xaa\x60\xa8\x8e\xd3\x14\x36\x80\x9e\xf1\x08\x19\x79\x6f\x3c\xf8\xfa\x6a\xe5\x53\xac\x6d\x27\x5a\x6f\x15\xeb\xf0\x76\xf8\xa8\x4b\xc0\xb7\x3d\xaa\xbb\xcd\x06\xbf\x98\x9a\xcd\x83\xca\xb2\xe0\x69\xc4\xd2\x12\x95\x9e\xb8\xeb\xde\x6a\x85\xd7\x28\xd2\x9f\x28\xed\xec\x71\x85\x9c\xbd\xab\xfc\x7d\x10\xfc\xa4\xf2\x6d\xa5\x84\x1e\x00\xb7\xc1\x33\x17\xc6\xbc\xbf\x28\xec\x00\xd8\xc1\xc8\x23\x11\xfc\x47\x00\x66\xaa\x6e\x36\x4d\xf3\xd2\xf4\x7b\x38\xba\x2d\xda\xc3\x25\x15\xb5\x5d\x23\xed\xb5\x40\x32\x64\x86\xfd\x93\x71\x2a\xfb\xde\xd3\x06\xda\xb4\x6f\x73\x23\x74\x62\x4e\x41\x39\x40\x76\x39\xed\x78\xdb\x99\x4d\x0d\xa1\xb2\xcb\x93\x47\xa3\x7a\xc8\xa6\x0d\x35\xbb\xb7\x7e\xfb\x44\x59\xe7\x37\xc1\xd8\xf4\xbf\xf5\x11\xc7\xc9\xb6\x4f\x25\x3b\x39\x1d\x99\x11\x91\xc1\x41\x8b\x61\x1f\xed\x79\x8b\xac\x80\x3a\x28\xf0\xe0\x81\xd9\xdb\x1b\x91\x97\x26\xb3\x77\x7d\xea\xcd\x09\xa6\x89\x3f\x70\x0d\x1b\x8c\x4c\xad\xd8\x60\x76\x77\xeb\xca\x67\xcb\xb3\xb3\x12\xeb\x46\x14\xe9\xe7\x80\x72\x9e\xa6\x12\x88\xb4\x66\x6f\xda\xce\x94\xc0\x37\x68\xe7\xd8\xb4\x6b\xfe\x5f\x1d\x91\x17\xc6\x45\x39\xda\x18\x8e\xcd\x0e\xd8\x3e\x37\x07\x00\xfd\xab\x44\x9a\x6b\xd0\xda\xe7\x8c\xd3\xb7\x31\x35\xf6\xd4\xd4\x91\x2d\x06\x91\x2a\x8f\x89\x03\x5e\xd4\x7a\x33\xd1\x65\x2b\x68\x9e\x80\x2f\xc2\x0b\x51\xb5\xa0\xf4\xe6\x63\x11\x54\xde\x8a\x2c\xa2\x57\xc1\xe8\xd5\x87\x9c\x08\xfa\xbb\xcf\xec\x3d\xe3\xbc\x98\x70\xb2\xa1\xae\xab\xec\x10\x78\xbd\x8d\xb1\x7d\xf3\x44\x9d\x32\x93\x49\x92\x27\xf8\xa5\x04\x74\xcd\xd1\x74\x0d\x7d\x14\xe9\xdc\xd7\x93\xf6\xad\x70\xa0\xdb\x2a\xa2\x7a\xe2\xbd\x2b\x02\x65\xcd\xa7\xcc\x2b\x3e\xd4\x7e\x17\x5d\xc9\x78\x33\x2b\x07\xb5\x79\x7f\x28\xa2\xae\xc1\xf8\xa9\xc9\x8f\x5d\x57\xbb\xdc\xf5\x30\x57\x18\x29\xfa\x98\x86\xa2\x0f\xbc\x09\x1f\x78\xa5\x54\xd9\xf2\xa1\xdf\x2a\x6c\x38\xd4\x47\x44\x16\x65\x99\x29\xea\x1b\x0c\xde\xf2\x21\x38\x97\xad\x11\xbe\x15\xe9\xb6\x44\xc4\xd3\x8e\x70\xf3\x51\x9d\x43\xf5\x36\x51\xb4\xff\xc3\x7d\x42\x46\xbc\x3f\xe5\x7e\xbc\x32\x42\x87\x83\x9f\x3a\xa1\x4e\xd3\x36\xbc\x6d\x17\xf9\xef\x71\x9a\xd7\x55\xd8\xc9\x29\xe5\xfd\x19\x87\x07\x3e\x65\x8f\x0d\xe5\xde\xcf\x10\xfb\x64\xd6\x2a\xfb\x27\x32\xad\xa4\x37\xcd\xd0\x8d\xb1\xb2\x31\xce\xca\xf6\xf0\x3a\xcd\x60\x37\xed\xa2\xb9\x38\x42\x45\x90\x66\x7b\xe3\xcd\xd8\x90\xb9\x77\xd7\x15\x1b\x35\xc7\x33\x00\x9a\x89\x9e\x59\x6f\x48\xe8\xb6\xd9\xf6\xd4\x10\x54\x97\x8e\x26\x4a\xdc\x89\x5b\x61\x6d\xbd\x37\xde\xc8\xd9\x06\x2d\x72\x81\x1e\xc1\x06\x8a\x2a\x68\x51\x06\xeb\x0d\xc8\x2d\xd3\x17\x20\x5e\xa0\x53\xa8\x0d\x74\xc7\xee\xa2\xd8\x53\xf0\xad\x59\x67\xd8\x65\x51\x4f\x9b\x8d\x5e\x5a\xe2\x60\xeb\x56\x00\xa7\x01\x47\xc7\xa7\xb0\x9c\x9d\x65\xc6\x68\x63\x4b\xd9\xdc\x76\x3a\x76\x27\xb4\x65\xdf\xda\xc7\x6d\xa3\xe5\xd7\x75\xc7\x9e\xde\xcc\x6f\x7a\xd8\x5a\xaf\x09\xfd\xc7\xd4\x9d\x61\x18\xce\x0c\x81\x00\x40\x31\xdd\xf0\xad\xd6\xa1\x76\x0f\x6d\x21\x17\xeb\x95\x3d\x93\xf1\x2d\x3c\x07\x2b\xd7\x04\x0c\x24\xea\xf3\x43\xf3\x62\xce\x8f\x4d\x31\x5f\x74\x79\xed\xe5\xfd\x50\xbc\x5a\x3d\x29\x8c\xa5\x88\xae\x32\xb2\xa6\x1b\xfb\x1c\x72\x48\xab\xb7\x7a\x59\xf9\xc7\xb5\xed\x12\xff\x6c\xb8\x9c\x36\x2e\x5c\xd1\x05\x3b\x0e\x37\x14\x5b\x0f\x74\xfb\xaa\x5b\xbb\x4b\xf4\x85\xa8\x46\xd1\x12\x67\xba\x15\x3e\x47\x00\x73\xd6\xd4\x3a\x75\x02\x03\xbe\xfb\x48\x39\xd1\x03\x6b\x14\x35\x42\xec\x48\x2a\xa3\x01\x01\xc5\xbc\x68\xba\xc1\xd5\xdb\xf7\x4e\xbb\x04\x7d\x6f\x0f\x1a\x2a\xd7\x36\xf1\x8f\xd3\xff\x7e\x62\x58\xc0\x43\x56\x0b\x80\xc0\x41\x18\x1e\xc3\x65\xb1\xa8\xf8\xf4\xad\xf0\x19\x8b\x8a\x2f\xa7\xca\x7b\x9b\x75\x3e\x92\x1e\x35\x9a\x99\x94\x62\x71\xa6\x0a\x3d\x7d\x52\x98\xa2\x63\xe4\x92\x46\x05\x90\x26\x8e\x79\xbf\xf9\x96\x73\xe8\xd0\xc8\xb4\x13\xf1\x55\xe3\x4b\x97\x82\x5f\xe5\xce\x0c\xc3\x14\xa2\xf4\xf0\xbc\x31\xec\x55\x5d\xab\x11\xab\xd6\x7b\x5f\xaa\x25\xc8\x31\x53\xa1\xff\x89\x5f\x3f\x56\x53\x6f\x5f\x94\x4c\x2e\x0a\x6d\x9f\x11\xc8\x81\x77\xa3\xe5\xb3\x49\x9a\x0e\x0f\x3c\x07\x88\x0d\x0f\x48\xce\x99\xa1\xc3\x81\xe3\x9c\x40\x16\x3d\xd8\x7f\xc0\xf8\x6a\x05\x15\x21\x32\x25\x0a\x87\x0d\xbb\x79\x5a\x4d\xf2\x04\x63\x11\x27\xf4\x78\x51\x4c\xf8\x59\xa1\xf3\x64\x27\xa1\xcf\xf9\xb9\xc9\x13\x08\xf7\x6b\x93\x09\x7d\xb7\x70\x8f\xef\x16\x09\x7d\x23\x66\x17\xbe\x18\xd2\x09\x85\x20\xa0\x49\x08\x2b\x9c\xd0\x27\xbc\xcc\x93\x27\xc0\xe1\x4b\xe8\x7b\x21\xf3\xe4\xe5\x71\x42\x21\x5e\xa2\x77\xe1\x72\x04\x91\xdd\x1f\x2e\x16\x55\x2b\xeb\x78\xa2\x55\x59\xe6\x09\xfe\x3e\x57\x93\x4f\x09\x3d\x52\x5f\x5e\x69\x21\x81\x55\xf5\x1b\xbf\xce\x93\x77\x52\x4c\xb9\x34\xe0\xc8\x35\x59\xd3\x67\x86\xdd\xfc\x98\x27\x8f\x8a\xc9\x27\xa7\xed\x71\x3f\x4f\xde\x16\x67\x09\x1d\xee\xe7\xc9\xe3\x92\x17\x3a\xa1\xc3\x83\x3c\x81\xd8\xca\x09\x1d\xde\xcb\x93\xe3\x0b\x61\xfb\x36\xfc\x01\xbf\xaf\x55\x99\xd0\xe1\x8f\x79\xf2\xb0\xb4\xb9\xf7\xf3\xe4\x55\xb1\xac\x78\x42\xf7\x07\x79\xf2\xb8\x58\x54\x08\xc9\xfe\x0f\x35\xd2\x0e\xf6\x01\x5d\x07\x07\xb6\xee\x8c\x5b\xe4\x1c\xdc\xc5\x34\xa2\xe1\xe0\x7b\xfb\xc5\x69\x42\x0f\xee\xe5\xc9\x2f\x6a\x6e\xdf\xf9\xa1\x81\xd9\x83\x1f\x23\xcc\x1e\xdc\x6f\xa2\xf5\xee\xa0\x81\xd4\xbb\xdf\xe7\xc9\x33\x59\x71\x6d\x8b\xee\xd5\xf8\x1d\xda\x3e\x1e\x0e\x6d\xe2\x20\x4f\x0e\xf7\x6d\xe2\x6e\x9e\x1c\x1e\xd8\xc4\xf7\x79\x72\x78\xd7\x26\xee\xe5\xc9\xe1\xf7\x36\xf1\x43\x9e\x1c\xde\xb3\x89\x1f\xf3\xe4\xf0\x07\x9b\xb8\x9f\x27\x87\x3f\x5a\x54\x0d\xf2\xe4\xf0\xbe\x4d\x0c\x6d\x83\x03\x9b\x82\xa6\x6d\xdb\xfb\xb6\xed\xa1\x6d\xfc\xee\xdd\x3c\x79\xb1\x9c\x23\x3e\x86\x16\xaa\x78\xa8\xf6\xf7\xef\xe6\xc9\x11\x37\x45\xb2\xa6\xef\x0c\xbb\x79\x58\x9a\x3c\x29\x4a\x03\xd1\x55\x1d\xa2\xf3\x64\x62\x74\x09\x39\xb6\x66\x9e\xcc\xb9\x29\xe0\x11\x06\x25\x4f\x7c\xf4\xea\x58\x2d\xe4\x97\x68\xa9\x6c\x1c\xea\xc1\x35\xf5\x8c\x9b\x23\x35\xb5\xf3\x02\x15\x40\xc7\x9b\x59\x19\x27\x79\xaf\x97\x71\xf6\x0e\x7c\x91\xa4\x69\xaf\x07\x11\x50\xc2\x97\x0e\x6b\x1a\x7e\xe7\x17\x13\x38\x56\xbf\x37\xd6\xf5\x27\xbe\x11\xc3\x01\x63\x7b\x38\x10\xff\x36\x27\xf0\x7c\x6a\xaf\xdf\x9f\xf8\x35\x38\x74\x6a\x4c\x5b\x4b\x55\x04\xb6\x83\x23\x35\x13\x2f\x89\x72\x66\x84\xf6\x86\x0d\x6b\x37\xe3\x0c\xf6\x0a\x32\x76\x73\x38\x47\x25\x85\xfe\xb9\x56\xf3\xc7\x6e\x47\xb0\x3d\x4b\x9c\x4c\xab\x6e\x60\xb5\x4a\x40\xac\x15\x35\xf9\xcc\x01\x67\x5f\x3a\x05\x7f\x3a\x11\x5c\x79\x92\xac\x69\xa9\x26\x48\x50\xe1\xd1\x88\xc3\x85\x0f\x21\x72\x3a\x3c\xe1\xd0\x62\xda\x0d\x63\xee\x5c\xc1\x2c\x78\xe1\x4e\x67\xdb\x9a\x3f\x56\xdb\xc3\x91\x1f\x1a\xea\xb7\xb4\xae\xfd\xba\x03\x23\x80\x89\x7c\xb0\xa6\xae\x0b\x5b\x5e\xfb\x2a\x1a\x02\x0e\x6c\x5b\x57\x17\xa2\x11\x68\xe4\xeb\x00\xfc\xeb\x6f\xac\x09\xfd\x60\xd8\x80\xfe\x6c\xff\xfd\x06\x82\xd5\xd7\xf0\xff\x4e\x63\x6a\x55\xe0\x9a\xe1\x0f\x87\x6d\x78\xf8\xe0\xc6\xa1\x14\x5c\x9a\x3f\xe2\x07\x57\xb2\x28\x66\xfc\x8f\x3a\xf9\xe1\x3f\x1f\xb7\xae\xf1\x41\x47\x8e\x9e\x66\xb2\xe9\xca\x0f\x72\x7c\xba\x75\xd2\x49\x8d\x2a\x20\x26\xb2\x53\x36\x32\x62\x89\x98\x53\x63\xde\x37\xe1\x78\x6f\x54\x24\x6b\x3a\x57\x97\x90\xfc\xa3\xbd\xee\x92\x50\x82\xca\x41\xb5\x03\x71\x9f\xef\xa4\x42\x1f\xc2\x46\xf1\xc1\x1e\xb7\x0e\xcf\xf4\x37\x33\x46\xb9\xa1\xad\xdf\x18\x3a\x57\x63\xcf\xe4\x83\x3c\xfb\x0d\xe4\x29\x83\x08\x92\x0f\x5b\x21\xf9\xb0\x05\x92\x0f\x0e\x92\x9f\x03\x24\x3f\xd7\x90\x7c\xa0\xaf\xbf\x02\xc9\x07\x84\xe4\xb5\x87\x64\x4d\xe8\xaf\x86\xdd\xa9\xa7\x4e\x90\x34\xe2\xf0\x80\xc2\x2e\x26\x51\x55\xd5\xcd\x10\x3b\x9d\x97\x3a\x90\xd1\x72\x66\x17\x7f\x51\xbe\x6a\xe6\x8b\xd2\x4f\x35\x9b\x74\x53\xca\x5c\xd9\xcb\x0b\x36\x83\x1f\x7b\x1b\x08\x72\x7b\x21\x10\xf3\x42\x5f\x7b\x52\xe8\xcf\x06\x70\xd3\xc2\x14\xa0\xd6\x71\x1e\xc2\xbb\x50\x2e\xe3\x99\x8f\x0a\x01\x55\x4c\xde\xbf\x8d\xb3\x50\xcc\x3e\x6d\xe4\x6d\x9d\xc8\xb7\x4c\xfe\x8e\x39\xbe\x26\xd4\xc8\x98\xbc\x8b\x4d\xd9\xff\x0d\x39\x2a\x65\xa3\xcf\xbc\x34\xc5\x1f\x5d\xdb\x0a\x96\x78\x02\xd4\xd5\x4b\xae\x2e\x38\x2f\x9f\x44\x45\x7b\xbc\x1f\xe5\xd9\x8d\x0a\xaa\x7e\xd8\xda\xe4\x87\x46\x93\x1f\xe2\x26\x3f\x74\x34\xd9\xa8\xd0\x51\x1e\xbe\xf8\xa7\xa7\x75\x4b\x53\x40\x18\x12\xd7\x5f\x2d\xd9\xc9\x09\x8a\xf3\xa9\xfb\x19\x80\xab\x1f\xb8\x4e\x25\x34\x24\x30\x17\x1c\xd9\x52\xff\xeb\xf2\x54\x85\x0e\x81\xe0\x17\xf3\x6a\x4d\x0a\x5b\x12\x13\x88\xae\x7c\x71\x0d\x05\xf6\x07\x73\x96\xc6\x66\xd8\xff\xf0\xec\x15\x49\x12\x6a\x93\x8f\xa3\xef\x79\xcd\x12\x70\xbd\x52\x7b\xd7\x75\x85\xa8\x49\xe2\x1c\x02\x01\xf5\x16\xf2\x51\x1d\x08\x4b\x50\x47\xcc\x97\xa9\x05\x64\xdb\x1f\xc8\x41\x4d\x07\xea\x7f\x21\x0f\xdd\x03\x50\xff\xeb\xf2\x2e\x8b\x52\x4c\x21\xd7\xa5\x20\xdf\x9f\x2c\xd4\xa6\x90\xfc\xf3\xf9\x78\x16\x41\xc1\x2b\x4c\xfa\x92\xe5\x02\xb3\xdf\x79\x28\x82\xf6\x4d\x42\x31\x1d\xb5\xe4\xf4\x71\x7c\x49\x78\x07\xb4\x5a\x12\xea\x7f\x5d\x1e\x50\xc2\xfe\x17\xf3\xca\xc2\x0e\x00\xfe\x60\x4e\xac\xa7\x63\x8b\xf0\xf9\x71\x3c\xfc\x91\xf6\x4e\x5d\x23\x82\x2a\x68\xf4\xd4\xa5\x01\xb2\x5a\xbf\x29\xa1\xf0\xf0\xd8\x3d\x60\x29\x47\xa7\x53\xee\x17\xf2\x50\x0d\x0a\xfc\xf5\x60\x02\x73\x51\x25\x87\x86\x04\xe4\x46\x7a\x49\x09\xc5\xa7\x06\xe4\x5e\x57\xc9\x17\xd6\x33\xa3\x56\x5e\xf2\x65\xf1\xdc\x88\x15\xac\x12\xea\x1e\x1b\x90\xdb\xd9\xe4\x26\x55\x42\x87\xf5\x1c\x84\x9b\x8a\x9b\x85\x78\x6b\x09\x65\x9f\x85\x9f\x86\x4f\x21\x19\x4a\x50\x51\x06\x8b\x9e\x63\x3a\x94\x81\xda\x0b\x16\xbd\xbc\x0c\xed\xd5\xc7\x8d\x9b\x09\xe0\x11\x3a\x2a\x53\x30\x69\x21\xf9\x72\x69\x1a\x25\xd8\x20\x16\xd5\x2d\xba\x71\x73\x6d\xba\xa7\xa8\xd5\x48\xe7\x26\x14\xd7\x2d\xc7\x3a\x3a\x75\x71\xdd\x7a\x05\x77\x0d\x3b\x7a\x2e\x31\xc4\x31\x98\xcd\xc0\x43\x93\x4f\x0c\xc3\xc8\x38\x38\x20\x1d\x41\x01\x3b\x5c\x42\xfd\x2f\xe4\x81\x2e\x9f\xdd\x2f\xf0\x77\xff\x94\x9e\xfc\xc6\x69\xad\x0e\x08\x63\x6e\x73\x5f\xc7\xb9\xb5\x86\x29\x94\xdd\x89\xcb\xdc\x4c\xd8\x77\x1b\xa2\x5b\x34\x93\x42\xbe\x82\x54\x9c\xef\x74\x06\xeb\xe2\xb7\x3e\x03\x6a\x35\x55\x09\xed\x38\xba\x0c\x3f\x97\xa0\x96\xd3\x30\x4c\x68\x9d\xc2\x7c\xaf\x71\x68\x4b\xea\xb4\x2b\x9b\xba\xfc\x69\x9d\xa7\x35\xf8\x63\x73\xbf\x90\xb7\xa9\xfd\x44\x6d\xde\x2b\xbf\xcc\x5d\x1e\xd4\x05\x77\x56\xd4\xfd\x84\x1c\xd4\x6e\x74\xf9\x1c\x19\x30\x71\xa9\x57\x78\x0c\x35\x8e\x42\x46\xa8\xe5\x17\x9a\x4d\xc7\xd8\xed\xd0\xc1\xa2\x90\xd9\x09\x9f\x53\x9e\x74\x1b\x18\xa4\x30\xdf\x29\x53\x82\xc7\x35\x9f\xdc\xf7\x7b\x09\xbe\x11\x52\x98\x8f\xba\x95\xe8\x23\x0b\x53\x98\x8f\xba\x96\xb0\xcd\xb8\x14\xe4\xd7\xba\x97\x76\x52\x8a\xb9\x0f\x7c\x0d\xa5\xbf\x72\x1a\x29\x99\x86\xe9\x96\x78\xc5\x4c\x5a\xa7\xf6\x4f\x4f\xa9\x92\x10\x25\x1a\xfe\x57\x92\x0d\x46\x95\x7c\xa0\x83\xc4\xaf\x0a\xea\x35\x13\xc9\xb4\x3c\xa9\xe4\x29\x2d\x25\x9b\xc8\x93\xc1\x29\x5d\x42\x62\x78\x4a\x17\x90\xd8\x3f\xa5\xe7\x92\x25\x4a\x26\xbb\xd9\xd2\x56\x68\xba\xdc\xda\x5d\x4a\xe7\x6b\x69\x48\x08\x9d\x4a\x76\xb3\x45\xb0\x99\xdf\x38\xd1\x62\x7e\x2e\xa9\x17\x49\xe6\xe7\x72\x37\xf1\xf8\xb7\xd4\x44\x1d\x05\x25\x3f\x29\xe5\xa9\x63\xcb\x3a\xdd\xa3\x7c\x21\xd7\x23\x25\x4f\x96\xf2\x94\x4d\x25\x2d\xa4\xad\xc2\xa6\xa8\x29\x7e\x21\xd9\x4d\x1d\x53\x25\x57\xd2\x92\x72\x4f\x1b\xaf\x77\x5c\x42\x82\x97\x81\x8c\xb3\x42\xda\x4b\xff\xd8\x8b\x4d\xfc\x5b\xfb\x6b\xda\x08\x9a\x93\x6f\x7a\xc5\x42\x29\x12\xbc\xef\xa2\xc6\xc4\x32\xfc\x96\xaa\x63\x38\xa8\x73\x71\x0e\x8e\x2b\xfe\x30\x99\x6c\x2a\x26\xf8\x7a\xd3\xda\x5b\x3f\x1e\xe2\x39\x67\xbf\x9b\x58\xef\x10\x75\x25\x63\x15\x4a\xce\xde\x34\x6a\x20\x3d\x63\xbf\xb5\x0f\x52\x35\xbc\xa4\x6d\x7e\x2e\x10\x45\x4e\xb7\xd2\x53\x42\x91\xf2\x64\x04\x4e\x7d\x36\x44\xcf\xcb\xc5\x86\xaa\x65\xa7\x26\x66\x4c\xc1\xe5\x9c\xdd\x31\x6d\x25\xcf\x48\xbf\xd3\x2e\x8f\x7c\xab\xf6\x27\x1c\x77\x1b\xca\xa0\xe1\x39\xfa\x66\x4d\xa4\xf9\x67\x05\xe8\xfc\xb3\xf1\xf1\xf8\xa8\xcf\xeb\x9c\x1a\x88\xfa\xdc\x88\x9e\x5d\xbb\x9c\x71\x19\x35\xb6\xf3\x1b\x47\x4f\xcb\xaf\xdd\xef\x1d\x9e\x73\xf6\x24\xfe\xde\xce\xaf\x36\xcb\xc4\x6f\xf9\xc3\x2b\xe7\xec\x55\x03\x34\x3c\x8d\x72\xce\x64\xa3\x3a\x90\xb9\x0e\xad\x01\xe1\x48\xa1\xe5\x9c\x3d\x32\xff\xa9\x92\x6a\xac\x03\xdb\x40\x48\x4c\xa7\x35\x72\x22\xac\xc4\xba\xb3\xb7\xab\xd7\xe2\x9c\xfe\xd5\x83\x59\xc7\x71\xf8\xc7\xf3\xbd\x76\x9e\x9b\xcc\x5e\x84\x83\xf0\x12\x42\x61\x83\xb7\x36\x6a\xd6\x6b\x7a\x26\xd9\x05\xf8\x85\x6a\xac\x75\x3a\x97\x6c\x38\xa0\x47\xb2\x11\x49\x7d\xd6\x50\x5e\x6b\xe8\x56\x80\x06\x1e\x46\xef\xb8\xe1\x7d\x90\x3e\x19\xa5\x2b\x94\xad\x4a\xa7\xeb\xeb\x84\x29\xa0\x88\x76\xc0\x18\xd3\xa8\x1f\xc4\x74\xac\x75\xa4\xa4\x29\x84\xe4\xfa\x99\x3c\x57\xb5\xfa\xd6\x48\x07\xf5\x3f\x1d\xb4\xbc\x46\x9a\x1d\xf4\x5c\x33\xa8\x05\xb7\xb5\x25\x17\x4e\x0c\xd1\xf4\x7d\x0f\xf4\xeb\x50\x1b\x2a\x4d\xef\x39\x47\x0c\x9b\x60\x53\xc9\x2a\x9d\x69\xe2\xf4\x6b\x24\x69\xb8\xac\xa8\xab\xc7\x5a\x97\xa0\xd7\xe7\x4b\x4e\xe4\xa9\x0b\xea\xf8\xc5\x64\x6d\x3d\x5f\xd6\x54\xa4\x0d\xfa\x54\x82\x35\x6a\x42\x04\xc8\x0d\x15\xdb\x10\x00\x6d\x30\x9a\x3c\x58\x78\x08\x26\xfe\x60\x2a\xd9\xe2\x64\x72\x3a\x2a\xd3\x34\x2b\x59\xd9\x0c\x5b\x06\xfe\xd9\x04\x55\xb4\x00\xe5\x91\x8a\xbd\xcd\x2a\x5a\x12\xb2\x7e\x9a\x55\x2e\x5e\xd5\xa5\x04\xff\x1c\x41\x43\xd3\x19\x92\x3d\x94\x99\xa1\xbc\xa9\x81\xfc\x30\x04\xcc\x73\x1b\xf5\x99\x04\xd7\x0b\xb0\x40\x07\xce\x19\xfa\x95\x8c\x02\x1e\x1a\x3a\x8c\x95\xbf\x77\x86\xb9\x66\x5f\xb6\x54\x08\xf6\x83\xec\x65\xbb\xc6\x5a\x8e\x79\xbf\x98\x4e\xa1\x53\x5e\xb6\x99\x19\xaa\x69\x6f\x40\xf2\x6d\x45\x31\xe8\x57\x01\xf4\x25\x5f\xad\x26\x3c\x23\x2e\xdc\xcc\x4b\x49\x15\x5b\xf2\xd1\x92\x5b\x34\x18\x7d\x7d\x53\xf1\x4c\x53\x17\x9d\xd4\xc7\x45\xcc\x96\x9c\x29\xb2\x5a\x9d\xf3\x2c\x56\xf6\xf9\x12\x5a\x7d\xe9\x53\x91\xf2\x56\xd3\x19\xe4\x91\x6c\xa9\x52\x1c\x49\xa7\x3e\xa1\x1a\x73\x83\x71\xaa\x36\xe6\x00\x33\x54\xb5\x14\x57\x54\xb4\x2a\x99\xa6\x9c\x29\x0c\xe2\xc6\xd9\x4d\xc3\xec\x80\x6f\x9a\x1d\x98\x86\xcd\x81\xa4\x75\x43\xb9\xa6\x61\x42\xe7\x27\xa7\x6b\x40\x08\x68\xe8\xcd\x24\x95\x8c\xd3\x05\x27\x26\x93\x2e\x22\x17\x7a\x7f\xba\x59\x04\xd4\x95\xe8\x58\xdc\x95\x06\xec\x81\x1b\x71\x8a\xb8\x0b\x99\xcd\x15\xe1\xe3\x3d\x35\xfa\x88\x59\x51\x37\x5d\x4e\x7b\x35\x32\xbb\x7d\xb9\xf4\x83\xb9\x4c\xd3\x23\x19\x34\x3d\x22\x65\xb8\x38\x52\xeb\x25\xd8\x82\x45\xca\xd6\x69\xba\x37\x7c\x50\x99\x28\x60\x20\xe1\xac\x34\x2e\x6e\x27\xc6\xd2\x36\xc6\x37\x8b\x1d\xc7\x19\xf4\xd6\xb7\x3b\x72\xda\xb4\x7a\x0c\xa6\x1b\x92\xe4\xed\x26\xc7\x19\xb4\xa9\x37\x1b\x24\x1d\xb4\x52\x2b\xd2\x91\xa3\x5a\x3c\x39\x62\xd8\x02\x15\xb7\xbd\xa6\x8d\x77\x0e\x1a\x9d\xfe\x5e\xe0\x0d\x75\x75\x47\xdd\x88\xde\xf0\xe2\x6c\xa8\xab\x3a\xea\x36\x4e\x26\x17\xbe\xb6\xb6\xca\xf0\xac\x58\x01\xee\xe9\x32\x45\x17\x26\x13\x20\x37\xca\xec\xc2\xa9\xd1\x08\xc7\x91\x6f\xb3\xe3\x9c\xf5\x70\xc4\x8d\xd3\x22\x6a\xb5\xb8\xa5\xd5\xc8\x1b\xa8\x47\xf2\x6a\x95\xb9\xe1\xa0\x61\x45\x82\x12\x7c\x3c\x37\xc2\x18\xba\x31\xfd\x02\x92\x76\x85\x47\x42\x64\x2a\xa1\x48\xa4\xb6\xad\xd9\xb5\x05\x83\x10\x85\xaa\x20\x61\x4e\x08\x3c\xa7\x20\x74\xed\x41\x87\x7a\xf5\x30\x1c\x65\xc1\xf7\x14\xcb\x6c\x87\xe7\x7c\xae\xc4\x17\x3e\x05\x7e\x2a\xa9\x9d\xba\x66\xf6\x20\xac\x95\xe4\xd3\xb4\xa3\xb6\x77\x1d\xc3\x14\xc1\x03\x52\xf5\xa7\xfc\x02\x5c\x95\xf3\x69\x20\x9a\xf5\x08\x81\x5d\x7b\xbf\x6d\x35\x7c\xf1\x81\xea\xde\x23\x91\x9e\x3c\x1e\xbd\x5b\x4f\x5d\x74\xcd\x1b\x37\xae\x9d\xb3\x26\xe5\x6c\x0e\x5c\x5b\x61\x10\x14\x42\x1c\xa9\x4e\x86\x38\xee\x7f\xb6\x8d\x6b\x32\x8e\xf7\x2a\x4e\x84\xdc\xf1\x26\x98\x41\x60\xb9\x5a\x65\x99\xb9\xdd\x32\x93\x34\x1d\x94\x72\x9a\x38\xba\x22\x21\xd4\x74\xc6\xc8\x01\xb9\x26\xc5\xc0\x17\x2f\x24\x93\xfc\xaa\x33\x0e\xcd\x7b\x5e\x7c\x3a\x2a\x16\x63\xf7\x9b\x1f\x15\x8b\x48\x35\xe1\x79\x44\x46\xbd\x00\xda\x2b\x0a\xaa\xd1\x8e\x0f\xcf\xaf\x76\x8e\xb9\xa1\x2f\xc0\x67\x27\x9c\xc2\xf6\xfb\xb5\xb2\x64\xbc\x7f\xf5\xc0\x8c\x15\x02\x5d\xb4\x8d\xfc\x1d\x55\x0c\x07\x78\x60\xf0\xf4\x06\x0d\x23\xac\x4d\x23\x32\xac\xee\x58\xad\xbd\x01\xa1\x98\x81\xbc\x68\xfb\x2c\xed\x29\x9b\x61\x46\x78\xc2\xfa\x8d\xa6\x1b\x24\x30\x72\xa3\x73\x18\xd9\x34\xf5\x34\x45\x13\x16\xcf\xb4\x75\x0e\x8f\x91\x9f\x88\x0f\xc8\x87\xcc\x9b\xf4\xc1\xde\x90\x31\xf6\x27\x8f\xb6\xd5\x34\x75\x54\xcb\x1a\xc1\xe2\x8e\xb4\x39\x96\x91\x49\x74\xe0\x30\x61\xc8\xfc\xde\x80\x9e\x81\xeb\x99\x67\xf3\x62\xc6\x5f\x2e\x4d\xc5\xdb\x99\xc7\xf6\xb2\xde\xca\x7b\x0f\xc2\x20\xc8\xfb\x7c\x58\xf2\xcf\x51\xf2\x67\xad\x96\x0b\xf7\xfc\x52\x4f\xed\x31\x17\xb2\x26\xaa\x5c\xce\xeb\x2f\xe3\x63\x65\x93\xe7\xae\x91\x73\x6c\xe1\xca\xa7\x5f\x81\x8d\xe5\x25\xf7\xcf\xc7\x17\x5a\xc8\x4f\xfe\xe9\x05\x9f\x15\x71\x29\xc6\x1c\xec\x0d\xe8\x4c\x8b\xe9\x43\xcd\x0b\x9f\x7e\x83\x2d\xba\xe4\x53\x39\x8d\x9e\x8e\x17\x85\x8c\x1f\xc1\x9e\xdb\x3d\x3f\x06\x08\x9b\x4f\xd1\xdb\x98\x11\x37\xe0\x72\x7c\x1b\xe7\x4a\x9a\xf7\x28\x2d\xeb\x0d\x68\x29\x24\x7f\x5c\x16\xf3\x85\x7f\xf8\x25\x14\x39\xef\x38\x90\xf4\x9d\x50\x7a\x71\x51\x20\x7a\x4c\x71\x76\x2c\xbe\x40\x3f\xaf\xc4\x54\x5d\x41\xe6\x17\x70\x3d\x02\x29\xa5\xe6\xf0\x39\x51\x96\x2f\xeb\x96\xc0\x27\x53\xf4\x5c\x19\xb5\x68\x3c\x6a\xf5\x89\x3f\xf1\xbe\x7e\x9a\x59\xe8\xed\xa7\xce\x3b\x0a\x0e\x7d\xea\xbc\x8d\xb6\xfc\xb4\x58\xd3\x7f\x24\x0b\xa6\xfb\x34\x99\x57\x09\x05\x7b\x7d\x9a\xbc\x4c\xa2\xeb\xd5\xe3\x76\x70\x7c\xdc\xbb\xcd\x6a\x15\x7c\x7b\x37\xdc\x8b\x27\xce\x69\x45\x92\xcb\xd5\xca\xfb\x37\xec\xc5\x35\x06\x68\x40\x78\xbc\x61\xde\x6e\x97\xc7\xb1\x3c\xe1\xa7\xe3\x2c\x49\x76\x0d\xe9\x1b\x2d\xe6\x19\xc9\xcd\x6e\xb2\xf8\x9c\x44\x4a\xb8\x8e\xf0\x0f\xb6\x45\x10\x42\x12\x42\x36\x5e\x97\xb6\xa4\xcb\xa7\xa5\x0c\xbe\x2a\xd1\xc3\xb9\x5f\x93\xc9\xde\x5e\x62\xcf\xcf\xc7\x32\x93\xd4\x9c\xc8\x53\xaa\xc9\x28\x39\x2f\x55\x01\x0a\xd2\xce\xeb\xda\xa4\xaa\x0e\x21\x8b\x78\xd7\xd2\x75\xc3\x54\x91\x9c\x9f\xc8\x53\xa6\xd6\x6b\xe7\x3f\xf8\x13\xbf\xae\xb2\x63\xb9\xc5\xf5\xce\x3f\xb2\x23\x1f\x1c\x15\x9a\x5d\xd4\xf7\x7a\x68\xb2\x01\x69\xf1\xe4\x78\xbf\x5a\x9e\xa1\xfb\xfa\x6c\x48\xe8\xb1\x3c\x31\xa7\x0c\xd0\xb5\x26\xc1\x97\xcb\x7b\xc9\x54\x76\x33\xe7\x72\x29\x0c\x9f\xc3\x30\xdf\x14\x6e\x91\x9d\x15\x15\xee\x11\xda\x2d\x6c\xfb\xc3\xe7\x67\x1c\xd6\xca\x05\xe4\x8a\xf9\x0c\x7e\xe4\x62\x09\x93\xe8\x13\xbf\x9e\x71\xe9\xd6\x02\xac\xe9\x39\x37\xd0\xda\xa2\xd0\x05\x4c\x68\x0c\x64\x01\x2b\x40\x17\x13\xa8\x73\x05\x9f\x88\x15\xdf\x9e\xc8\xd8\xb5\x85\x38\xcf\xde\x5b\xc0\x03\xd9\x50\x7b\xd4\x43\x4a\xe9\x36\x9f\x81\x6d\x4b\xa1\x83\x1f\x08\xe5\x34\x49\x22\xe2\x67\xfb\xcb\xb1\x53\xc2\xe0\xc4\xaf\xd9\xe0\xbd\x01\x71\x11\xb8\x37\x43\x9a\x6d\x6d\x38\x4d\x93\x8f\x1f\xc1\x1f\x8b\x90\xdb\x6b\xb5\x61\xbf\x37\x74\xb6\x62\x0e\x22\x98\xbf\x69\xba\x19\xbc\xce\x15\xb5\x5f\xdf\x27\xb6\xdf\x11\x71\xf8\xa8\x46\xf3\x1e\xc6\x24\xab\xa7\x79\xe2\x29\xab\xcd\x38\x73\xa6\x2f\xaa\x36\x47\xb3\x90\x52\x39\xbf\x6c\x9f\xe7\xe1\x90\x8c\xdd\xd4\x05\x16\x25\xf8\x91\x9b\x6c\x3c\xef\x55\x7a\xb2\x91\xb7\xd4\x62\x23\xef\x5c\xe9\x79\x61\x36\xb2\x65\x31\x0f\x9c\x48\x51\x55\x42\xce\xf6\xc0\x67\x5c\x88\x25\x30\x6c\xbb\xfd\x1f\x44\xa8\x78\x25\x63\x8f\x26\x96\xba\x61\xf7\x1b\xa6\x4c\xab\xd5\x70\xd8\xb2\x6d\xca\x5b\x1e\x58\xc9\xc8\xb0\x8b\x13\x73\x3a\xea\x8e\x33\x0c\xc1\x84\x9f\xca\x0c\x62\x09\xf3\xc6\x8d\xfa\x8d\x6c\xa8\xf4\xfe\x11\x34\x46\x3a\x82\x32\x64\x1c\x3c\xbb\x76\x7a\xea\xf1\x94\xe2\xd8\x27\x9c\xdb\xcb\x96\xd1\x9b\xbd\xd1\x06\xe5\x93\x86\xdb\xd8\xd5\x8a\xf7\xcf\xd4\xf4\xda\x85\x02\x8f\x7c\xb9\x62\x76\x0d\xe3\xdf\xa8\x93\xac\x74\x36\x02\x5b\x9a\x86\x0b\x9b\xa6\x1f\x9a\xe0\x69\x24\xbc\xfc\x2c\xc6\x36\xd5\x0c\x1a\x1b\xf9\xb0\x60\x1a\x6d\xe3\x90\x36\x0f\x7e\x6a\xd0\xc9\x26\xdf\xd5\xb1\x53\x1a\x87\x5a\xca\x1f\x80\xe3\xc6\x9f\x82\xce\xdc\x8d\x7d\x2f\xd7\xd4\x1d\x7a\x66\x8f\xaf\x47\x9c\xc9\x35\xcf\x1d\x2b\x6e\xe4\xae\x06\x92\x7f\x36\xc7\x68\x38\x47\x6e\xec\x6d\x24\xca\xf0\x51\xf1\xd6\x36\xbf\x36\x64\x5b\x6b\x17\xf5\x7e\x0d\x90\xeb\x78\x49\xbd\x93\x59\x7d\xd2\x70\x86\xba\xc2\xd4\xb0\x3f\x64\x46\x46\x26\xb6\x01\xe1\x7d\xbb\xc6\x9f\x1d\xea\x62\xee\xb1\x3f\x22\x37\x76\x68\x5c\x50\xbe\x8e\x75\xe7\xe2\x12\xbd\x47\x0d\x64\xaf\x85\xd7\xbf\xd0\xfc\xdc\x8d\x98\x26\x37\xd2\x05\xc0\xed\x79\xa3\x77\xf8\x7a\xc6\x59\xeb\x7d\x12\x62\xd2\x85\x2b\x4c\xec\xe2\x27\xe6\x93\xda\x01\xf6\xb1\x0c\xe2\x74\xd3\xb7\x4f\xb8\xb6\xa4\x69\x56\x87\x3b\x80\x27\x08\x88\x1a\x2b\xc2\x55\xbc\xd0\x93\x8b\x46\x96\xe1\x65\xe3\x79\xa9\x9b\xcf\x8b\xa2\xaa\xae\x94\x9e\xd6\x99\xa4\x15\x13\xd8\xd2\x13\xe0\x67\x1e\x6a\xb4\x82\x38\xa1\x1a\xfc\xa1\x64\xc9\x9d\x84\xfe\x2e\x59\xf2\xdd\x9d\x84\x7e\xb0\x8f\xe3\x84\xfe\x6c\x7f\x7b\x09\xfd\xcd\x99\xc8\xbf\x96\xad\x28\x7c\x77\x64\xa7\xcf\x0a\x17\xc3\x38\x77\xf4\xfe\x22\x70\xbb\x5d\xe0\x62\x27\x21\xf0\x30\xfa\x9d\xa7\x67\xfa\x21\xa8\xd2\x7a\xd3\x1e\xec\x57\x19\x7b\x0e\x6b\x86\x3d\x5e\xad\x12\x74\x56\xec\x9f\xa4\xc2\x68\x0d\x21\x64\x72\xc7\xb4\x09\xa7\x65\xec\x41\xba\xa3\xf4\xdf\x9c\x60\xde\x21\xc2\xd7\x6a\x6c\xad\xd0\xc7\x23\x10\x03\x30\xca\xce\xab\x6a\xc5\xcd\x5b\x31\xe7\x6a\x69\xc6\x75\xd2\xbb\xf2\xe5\xba\xf3\x9d\x49\xc9\x0b\xed\xdf\x8a\x1f\xdc\x7b\xf5\x98\x1a\x1d\xb6\x30\x04\x95\x8f\x20\x68\x47\xbc\x23\x78\x41\x81\xdf\x86\x80\xf5\x11\x05\x8b\xc3\x25\xb6\xde\xdc\xe2\x24\x34\x6e\xdb\x5b\x68\x7e\x29\xd4\xb2\xf2\x9b\x4a\x6d\xdc\x39\x18\x71\xdc\x86\x7e\x6c\x9c\x2c\xb5\x33\xaf\x69\x61\x0a\xa0\x53\x18\x63\x87\x96\xd8\x61\x8c\xfd\xec\x7e\x3f\xe0\x7d\x19\xc8\xe3\xda\x41\x94\xd9\xdb\x43\x26\x85\xad\xf2\xbb\x4c\x53\xb3\xbb\xbb\xee\x80\xa2\x61\x23\x0c\x67\x95\x66\x47\x85\xb9\xe8\xeb\x42\x4e\xd5\x3c\x76\x74\x76\x70\xcf\x87\xd2\xd9\x27\x54\x69\x96\x7c\xfc\x08\xe1\x78\xc1\xa6\x43\x16\xa5\x37\xd5\xb9\x93\xec\x6a\x4d\x45\x5d\x01\x98\x9d\xbf\x14\x72\x5a\x72\x5d\x61\x69\x51\x97\x3e\xf6\x4c\x16\x7c\xb1\x1e\x96\x4a\xc7\x41\xdb\x94\x06\x79\x6a\xad\x0b\x1d\xf9\x8b\x88\xad\x8b\x47\x12\x51\x69\x98\x3c\x29\xf4\xe9\x6a\x25\xed\xab\xc1\x35\x73\xe0\x31\xd1\x30\x6f\x61\xde\x7b\x02\xd2\x52\xee\x3e\xe5\xec\xbb\xf1\x38\x82\x71\xf4\xde\x3f\xdc\x70\x49\x84\x2b\x9c\xa9\x23\x57\xad\xde\x46\x25\xb3\xaf\x92\xc6\xa1\xd1\x65\x94\x3d\xd1\x51\xd0\x1e\x7b\xb2\xdb\x76\x57\x2b\x6e\xbb\x40\x56\xab\x60\x09\x8d\x02\x1e\x97\x04\x2e\x9b\x4b\x87\x64\xf0\xa0\x10\x3c\xf8\x68\x47\x44\x7c\xcf\x5c\x15\x34\x68\xe7\xb1\x41\x7b\x1c\xb7\xbe\x49\x2d\x1e\x1c\xc4\x46\xb3\x4b\xdd\x08\xba\x25\x00\xc1\x7e\xea\x2c\x5c\xbc\x91\x73\x1f\x77\x44\xb7\x36\xcf\x0b\x8d\xf1\x41\xa7\xc1\x33\xc2\x54\x8f\x9c\x69\x1a\x95\xec\x5c\x53\x1d\x4c\x97\xa9\x62\x2e\x9e\x80\x90\x3b\x0b\x3d\x5e\x68\x17\xeb\x62\xd1\x38\xf8\xa9\x60\xca\xd3\x55\x75\x38\x51\x9d\xa6\xf6\xa2\xc0\x18\x53\x27\xfc\x14\x82\x8a\xc2\x77\x0a\xa6\xf7\xb8\xb3\x7b\x1e\x8e\xcc\x03\x56\xd8\x8a\x7a\xcf\x60\x55\xb1\x67\x4e\xc1\x04\x7a\x14\xc0\x63\xca\xcd\x79\x4e\x87\x0f\xcc\x78\xb8\x17\x48\x29\xe8\xf2\x99\x8e\x95\x41\xed\x32\xf5\x0a\x8f\xf3\xad\x25\x47\x9a\x9d\xdc\xa7\xc3\x03\xba\xff\x03\x3d\xd8\x3f\xa5\x33\xcd\xfe\x4c\xd3\xe4\x71\xed\x76\xaa\xe5\xcb\x8c\x5e\x3a\x44\xda\x6a\xfe\xac\x3e\x72\x26\x3f\xfe\x39\x4d\xb3\x4b\x5d\xb3\x08\xe3\x6a\xd8\xf7\x6b\xfc\xcc\x5b\xfe\xd9\xb4\xda\x4f\xd3\xde\xa5\xa6\x0f\xa1\x3c\xeb\xcd\xf4\x6a\x75\xa9\xd3\xf4\xc7\x07\xf6\xff\x70\xf8\x13\xbb\xd4\x84\x5e\x69\xd6\x65\x4a\x70\xb0\x4f\xe8\x17\xcd\x6e\xce\xf8\xb9\xd2\x1c\xfc\x60\xe5\x5f\xd7\xfa\x48\x94\x7c\x54\xbf\x90\xd4\x2a\x20\xcd\x82\x6d\xca\x20\x49\xd3\x61\x17\xaa\x33\x7a\x85\xc7\xe0\x8f\x2b\x68\x27\x9e\xae\x69\xf4\xc2\x53\x39\xfd\x36\x08\x1f\x37\xde\x69\x02\xd9\x2c\xdb\x02\x27\x70\x12\xdb\xce\xc5\xb6\xf8\x12\xab\x75\x2a\x22\x2f\x5c\x0d\xb8\x91\xf1\xf4\x6f\x21\x77\xba\x4f\x5b\x60\x87\xd2\x6f\x85\xfe\x56\x5f\x68\x5f\x87\x1f\x15\x98\xfe\x75\x07\xbc\xde\xd3\x96\x1e\x60\xf1\xb7\x76\xc1\x79\xb3\xfb\x57\x7d\x58\xd3\x8f\xba\x11\x23\xf8\xa5\xee\xa4\x00\x9d\x52\x0e\x6e\x1c\x7b\xc3\x1e\x63\x47\x3a\x5c\xa3\x8d\x37\xef\x20\x2d\x7d\x1e\xb7\xcf\xec\xef\xdf\x87\xa3\xc8\x9b\xf6\xb5\x94\x83\x3a\xd5\x6e\x90\xab\x1d\xa2\x31\x6d\x86\xb2\xab\x65\x3f\xd1\xa6\xbd\x41\xda\x81\xb1\x20\x9a\x26\x12\xbb\xbd\x44\xe6\x8e\xf5\xa6\x65\xf7\x8f\xcf\x80\x06\x10\x16\xe8\x86\x7a\xd5\x17\xfd\x6d\x4a\x51\xf6\xf8\x9e\x69\xc2\xf3\x36\xea\xda\x93\x0c\x85\x6f\x82\x7d\xd1\xfd\xf6\x02\x08\xf1\xc9\xdb\x2f\x82\x5a\x4e\xfb\x95\xa7\x72\xba\xf5\x05\xa7\x5d\xb7\xf1\x0e\xce\xa8\x70\xe3\x13\xfe\x8a\x07\xc4\xd4\x67\x3d\x86\xe1\x87\x28\x42\x1d\x5f\x6b\x59\xfb\xa4\xe9\xfe\xfe\x7d\x60\x1b\xba\x81\xed\x78\x0b\xba\x15\x0e\x1c\x31\xce\x1e\xea\x34\x4d\x3e\x29\x08\x04\xd3\x47\x93\xa8\x34\xcd\x3e\xeb\xd5\x4a\xf4\x58\xd7\xcb\x63\xc1\xda\xf9\x4f\xe5\x34\x4d\x3f\x6b\x90\x4d\xd9\x43\x97\xe4\xd9\xb9\xae\xcf\xd3\x6c\xa1\x99\x26\x5b\x8f\x54\x3b\xd2\x03\x42\xa8\x60\x67\x3a\xd2\xb5\x11\xc1\xe3\xc1\x58\xc0\xdc\x60\x2a\xf7\xe2\x3b\xc5\xde\xea\x0c\xc3\xad\xf8\x32\x42\x9f\x9b\x4c\x10\xaa\x98\x20\x39\x8a\xc8\x68\xc6\xd9\xb5\x1e\x37\x1d\xfa\x6e\x9f\x0c\x30\xa6\x0e\x31\x6f\xb5\x0f\x93\x18\xad\x0b\x2f\xbc\xdb\x87\xc5\x03\xa6\x59\x48\xfe\x64\x76\xcd\x0e\xe8\x95\x76\xaf\xd4\x87\x42\x1e\x1c\xdf\x18\x80\x93\x30\xc6\xae\x74\x9a\x7e\xd4\x8e\x70\x6a\x2d\x24\xa4\xd3\xd6\x28\xed\xde\xf0\x44\xfc\xd9\x13\x32\x6d\xb0\xf1\x0e\xd6\x9b\xe9\x34\x75\xfb\xc5\x38\xe3\x30\x14\x96\x2a\x3a\xd7\xcc\xd3\x4a\xb0\xaa\x28\x27\x79\x97\x7a\xa0\xd3\xdd\xea\x52\x07\xac\xd5\x06\x7b\x99\xe9\x3b\x23\x96\xd5\x0a\x08\x5c\x97\x72\x66\x2e\x10\x8e\xc9\x55\x48\x53\x5f\xc1\x45\x70\x9a\x5c\x14\xf6\x90\x7f\x80\x29\xaf\xbf\x11\xec\x24\x6d\x26\xba\x3a\x02\xe4\xfa\x82\x2e\x4a\xc0\x57\x59\x6f\x40\xbb\x65\x44\xa3\x79\x6e\xdc\x3c\xc7\x21\xc0\x81\xb9\x65\x1c\xc8\x38\xcb\x0c\x9b\xc7\x73\xf3\x8b\xee\x47\x24\x88\x97\x97\xe3\x4c\xe4\x76\x22\x1a\x42\x72\xa7\x5e\xe1\xa5\xc8\x63\x34\xc6\x01\xb9\x83\xca\x4f\x14\x35\xa7\xeb\x35\x7d\xae\xd9\x0d\xf0\x2b\xf3\xde\x80\xc2\x91\xe5\x7e\x8d\x98\x43\x3a\xf1\x0f\x7b\x00\x74\x82\xec\xf0\x42\x00\x5f\x7c\xae\x24\x4a\xcf\xf0\x7e\x8d\x1c\x6f\x64\x57\xd8\x34\x44\x2b\x00\xee\x37\xb0\x3d\x80\xfb\xcd\x4b\xfc\xf9\x0c\x9c\x73\xff\x95\xa5\x86\xec\x2b\xce\x3f\xe5\xbd\x41\x64\xe0\xfa\x54\xff\xa7\xfc\x98\x88\x15\x33\xee\xf5\x9e\xeb\x13\x64\x9e\x9c\xe6\x4d\xde\x09\x0a\x16\x2d\x16\x40\x65\xfc\x1b\x4f\x6c\xa7\x5e\xde\x38\xa6\x21\xef\xf6\xb3\xd9\x39\x44\x05\xef\xa8\xe8\xed\x14\xbd\xaa\x46\x47\xf4\x72\xb1\x83\x4c\x94\x5a\xad\xbd\x71\x3e\xd7\xa8\xf9\x47\x37\x65\x4e\x19\xb7\x24\x78\x3d\x49\x8e\x75\x1f\x1b\x70\x8a\x13\x04\x63\xaf\x27\x5e\x59\x5e\x41\xd4\x24\xf0\xe4\x43\xd1\x3d\xfa\x63\xb7\x4a\x3f\xb5\x6f\x32\xef\x61\x14\x9e\x36\x3c\xad\x3c\xf1\x17\xad\x97\x3c\x83\x4b\x57\x60\xb6\x46\xb7\xb1\x47\x3a\x6c\x1e\xfe\xbb\xb1\xa3\x2f\xc4\xfe\xab\x26\xc5\xf1\xc6\x5e\x9b\x1e\xdb\xdd\xfc\xb1\x86\xa3\x7a\x72\x01\x27\x6d\x96\x28\xe9\xed\xcf\x7c\x1f\xfe\xd0\xc4\x42\xeb\x00\x8f\xa0\xfb\xc3\x43\xe7\x4e\x01\xb8\x01\xc6\xd6\x6b\x69\xfa\x44\x67\x9f\x34\x21\x10\x0a\xeb\x1f\x9b\xa6\x9c\x82\xb7\x30\x42\x97\x9c\x3c\x0d\x5a\x41\xb5\x26\x59\xc1\xb3\xf7\xe8\x4f\xd4\xe9\x3c\x2d\x1b\x8a\x50\x81\x47\x1c\x06\xc6\xc9\xd3\xc1\xcd\x40\x66\xfb\x05\xa8\xa5\xd9\x63\xcd\x0c\xe9\x17\xe6\x6b\x7d\x23\x38\x71\xdc\xe9\x6a\x1b\x88\x98\xc9\xa1\x87\xed\xf9\xe2\x38\x62\xb5\xd1\x2d\x3e\x84\x73\xda\x63\x1f\x11\x10\x31\x71\xe3\xc1\x02\x0d\xe8\x56\xed\xd8\xd5\xd3\x2f\x51\xe5\x3a\xc6\xeb\x6a\xd5\x35\xcc\xf8\xaa\xbd\x6e\xbd\xd2\xec\xb3\xf4\x2f\xd8\xe3\xb3\xd7\x79\x85\x5b\xad\xee\x3f\xe8\xbe\xdb\xe1\xe5\xee\xb0\x49\x92\x1d\x6b\xfa\x51\x54\xb0\x17\x02\x36\x8f\x97\x8b\x85\xd2\x86\x4f\xf3\x57\xdf\x48\xac\x31\x33\x2e\x2d\x90\xce\xcb\x05\x5c\xb3\xeb\x9d\x46\x6d\xdb\x69\x6a\xec\xdb\xfe\x0a\x70\xc9\xef\x50\x21\xd2\x34\x01\xf9\x4f\x08\x69\x4d\xf0\x4a\xfe\x48\x87\x18\x8b\x4f\x75\xa6\x60\x02\xbe\xd2\xa4\x60\xbf\x60\xc1\x4d\xc1\x9e\x21\x9b\xa0\x62\x7f\x6b\x20\xc4\xb2\x18\x9c\x46\x50\x5d\x71\x7b\x50\x5d\xb5\x11\xdc\xd2\x81\x92\xa6\x59\xc1\xde\xa1\x2a\x54\x01\x0f\x05\x2a\xa8\xf8\x21\xfb\x47\x67\x05\xe0\x67\x54\xa5\x69\x95\x71\xaa\xa8\x21\x34\x9e\x8d\x19\x67\xaa\x19\x57\x8a\xd8\x3d\xb9\x8e\xb3\x99\xa6\x11\xdb\xd5\x07\x3a\x3e\xe6\x99\xa2\x3e\x9f\x2a\x17\x64\x6b\xbd\xa6\xbf\x6b\x76\x03\x34\x3f\xd8\x75\xe5\x37\x6d\xaf\x64\x76\x8b\x3d\x0a\xe5\x49\xfb\x8e\xdc\xb6\xca\x02\xad\xb6\xd3\x35\x85\x07\x30\xfa\xba\xa5\x49\x67\x14\xf6\x8d\x4d\x3a\x2d\xb6\x5b\xe0\x7c\x15\xd5\xd8\x68\xb6\xcb\xd2\xab\xd5\xf4\x2d\xf0\xbe\x8a\x6a\xfc\x9b\xa6\xd7\xf4\x43\x73\xcd\xfc\xfe\xb5\x95\x41\x15\x71\xca\x6f\x51\xf7\xdd\x1a\x8f\xdb\xb6\x59\xb4\x60\x35\xba\x5a\x75\x5c\x0e\x78\x09\xc5\xc0\xe9\xd9\xc1\x7e\xaa\xd0\xf7\x5d\xcb\x0e\x5e\x36\xac\xdb\x57\xab\x5e\x91\xa6\x3d\xd1\x10\xe2\x89\x73\xd0\x95\xc3\x75\x0a\xca\x99\x3a\x87\x9c\xa6\x4c\x72\xac\x42\xbc\x34\xc1\xaf\x56\x2b\xe5\x78\x92\x28\x03\xf2\xcb\xbc\x18\x67\x05\x33\x9e\x37\x9a\x19\x54\x2d\xdf\x00\x2a\x98\xdf\x93\x71\x05\xbb\x04\x1c\x36\x69\x9a\x19\xfb\x96\x60\xd7\x40\x70\x21\xdf\xd2\xd4\x7c\x4b\xe3\x94\xd4\x33\xe7\xd3\x98\xe4\x05\x9e\xaf\x45\xcc\xbc\xf6\xbd\xda\x40\x60\x13\xeb\x04\x77\x84\x3b\x86\x4e\xd8\xef\xba\x5f\xcf\x6b\x5a\x86\x67\x98\x70\x74\xe9\xc6\x22\x81\xed\x24\x1e\x87\x1e\x46\x4f\x89\x47\xaf\x87\x01\x33\x2b\xf6\xab\x6b\x38\x9e\x82\xd8\x74\x3c\xdf\x6d\xe3\xee\x19\x55\x09\xb8\x8b\xfd\x5b\x8c\x55\x5e\xea\xac\xb0\x17\x20\xa7\xfb\x82\x39\x86\xd0\x6c\xc2\xaa\x88\x2e\x99\xd0\xc2\xd1\xab\x40\x8f\x2c\x77\x13\x67\xa0\x39\xf1\x1e\xf6\x38\x9d\x34\x07\x81\x29\x9a\xc9\x46\x23\x65\x20\x7a\x7d\x23\xce\x36\x54\xfa\x46\x14\x6d\x8d\x24\xe3\x74\xc9\x0c\xcd\x34\x2b\x48\x9a\x2e\x89\x93\x89\x96\x6c\x49\x39\x1b\xd0\x82\x55\x4c\x8f\x8a\x51\xc1\x3e\x9a\xac\x20\x84\xef\xee\x02\xeb\xb4\x60\x03\x6a\x58\x39\x32\x23\xe7\x74\x92\x14\xae\x64\x34\x78\xc0\xf7\x8a\x11\xa9\x6c\x7e\x45\x28\xdf\xdb\xf3\xf9\xc5\x1e\x1f\x91\xd2\xe6\x97\x84\x16\x3e\xdf\x56\x80\x13\xb3\x62\x8c\x95\xab\x15\xfc\x44\x7a\xa0\xfe\xf2\xee\x1b\x74\x0d\xac\xab\x48\x0b\xb3\x72\xa4\x19\x40\x5e\xd1\x8a\x9d\x9c\x8e\x74\x9a\xea\x1e\x63\x65\x1d\xb7\x3e\xe3\x0d\x05\xd3\xd5\x8a\xdb\x72\x32\x22\xce\x3e\x42\x13\xaa\x6d\xe3\x1a\xc5\xcf\xda\xb6\xb2\x4c\xd3\xe5\x46\x2b\xcb\xce\x56\x34\xb6\xb2\x24\x74\x69\x5b\x59\x62\x2b\x4b\x36\x18\x2d\x1f\x04\x93\x8a\xe5\xee\x2e\xf9\x6c\xb2\xea\x64\x19\x3b\xd7\x9c\xf8\xba\xba\x76\xda\xb9\xb4\x78\xf9\x6c\x32\x0d\x55\x6b\xa7\x9d\xd2\xd3\xf2\x27\x13\x2a\x4f\xd7\x6b\x38\x15\x7f\xee\x96\x7f\x39\x9d\x22\x51\x8d\x43\xaa\x75\x81\xf5\xd4\xa9\x13\xce\x0e\x70\xea\x0f\xbf\xb3\x19\xc3\xef\x8c\xeb\x1e\x4f\x53\xbb\xaa\xcd\x9a\xfe\xa6\x7d\x9c\xf8\xda\xe3\x57\x53\x5d\xaa\xa6\x59\x5f\xd7\xd4\xd0\xcf\x98\xac\x03\x87\xdb\xb5\xbd\xa1\xab\xe2\x5c\xbb\x7a\xd1\xe6\x86\x2a\x4b\x28\x36\x4d\xd5\xd9\x10\xbb\x1e\x94\xa7\x20\x3c\x65\x9c\x61\x50\xbf\xc7\xa1\x16\xb4\x92\x1b\x97\x5c\x4b\x67\xc3\x78\x0f\x46\xba\x76\x83\xaa\x77\x77\x2d\x15\xd2\xfb\x4d\xbb\x50\xef\x54\x9e\x80\x20\xa6\x67\x3b\x73\x62\x1f\x4e\xa9\xc1\x5f\x52\xb7\x14\xf4\x49\x2c\x60\x77\x90\xdf\xbe\x9d\x5f\x3f\x1c\xfe\xd4\xcd\xaf\xa7\xbf\x6a\x76\x83\x54\xd4\xb7\xdd\xbe\x30\x1c\x6b\xf3\xf6\x85\x79\x5f\xe1\x8c\xd6\x71\x28\x7c\x68\x0c\xbc\x84\x35\xaf\x5f\x9b\xe1\x39\x6e\xbd\x90\xd1\x3f\xdd\xad\x89\x3b\xae\x8f\x71\xbf\x52\x35\xae\x35\x5a\x35\xc3\xa9\x86\x13\xcc\x8c\x6b\x7c\xe4\xf7\xc1\xf7\x72\x50\xb6\x31\xb9\x69\x1e\x6c\xc1\xdb\xb3\xf2\x33\xe4\x4f\xbd\x5a\xfd\x69\x97\xff\x1f\x32\x93\x4e\x55\x3c\xba\x13\x20\x4b\x5c\xc8\x4c\xb2\x3f\x35\x49\xd3\x5f\xb0\x16\xbb\xc1\x70\x3f\xb2\xdf\xac\x49\xb9\x9c\xc6\x99\x4f\xe5\x74\x9d\x83\xda\xed\xe4\x42\x69\xf0\x67\x9c\x49\x96\xc9\x26\x54\x69\xda\xca\x68\x1e\xbe\xde\xb9\xf2\x8c\xbb\x50\xba\xe0\x85\x90\xf4\xeb\x46\x29\x26\x5f\xa2\xda\x8a\xec\xc7\x8f\x14\x06\x09\x3e\x2d\xfb\x21\x8d\xb9\xe1\x85\xe8\x69\x4d\x8d\x4a\xd3\xd7\x3a\x33\x8a\x06\x84\xd8\x41\xa1\xed\x1b\xf2\xaf\xda\x75\x94\x72\xf0\x70\x1a\xae\xc8\x8e\xa6\x0f\xc6\x2a\xec\x4f\xed\x2f\xca\x04\x25\x61\x4a\x35\xa8\xa9\x5f\xbf\xf1\x9e\x41\x45\x8b\x76\x69\x8e\x7c\xad\xf7\x33\xd6\x79\x8b\xa4\x41\x6d\x3b\xc5\x7a\x82\x90\x1b\x9e\xdf\x08\xf6\x5c\x22\xc3\xf1\xa2\xef\xe7\x7f\x10\x12\x17\x6c\x30\x2a\x1e\x04\x51\x61\xe1\x16\xb8\x00\x25\x73\x75\x52\x9c\x12\x72\x23\xec\xf4\xac\x19\xbf\xbd\xc1\xda\x36\x0e\xde\xe0\xbb\x8c\x78\x45\xfb\x8e\xd4\x0a\x60\x62\x6f\x33\x82\x44\xaa\x28\x62\x43\x15\x25\x4d\xb3\x3f\x35\x13\x76\xa5\x18\xbf\x4c\xc8\xa6\x4d\xaf\x51\x8c\x2b\xe6\x96\xd5\x46\x5c\x13\x94\x09\xd8\xc5\x35\x68\x5a\x83\x46\x96\xb5\x1d\x86\xb9\xc1\xa2\x36\x2c\x20\x7b\x75\xd7\x2a\x83\x4b\x4e\xa4\xbc\x52\x2f\xf3\x5c\x9c\x67\x77\xbc\xe1\xe1\x76\xc3\x64\x6f\x89\x81\x4d\x35\x04\xde\xeb\xd1\x71\x5f\x48\xbb\x3d\xa3\x89\x66\xb9\x9c\x09\x09\xba\xdd\x59\xf2\x06\x1d\x89\x73\x1d\x15\xed\x1c\x8b\xf9\xa2\xe4\x71\xce\xd3\x40\x8d\xc5\xb9\xc8\x6c\x6a\xbc\x09\xc0\xc7\x39\x91\x68\x31\xca\x8e\x37\x2f\x42\xaf\xd8\x52\xd3\x2f\x6c\xa2\xe9\x47\x56\x6a\xda\x01\x6d\xf5\x08\xd8\x25\xd9\xcd\x06\x68\xf9\x85\xa4\x9d\xd0\xe5\x1f\x34\xdd\x00\x30\x3f\xd4\x74\x03\xc6\x5c\x29\xda\x0d\x66\xfe\x42\xaf\x09\x75\x26\x14\xe8\xa6\x53\xb1\x93\x53\x5a\x28\xb6\x17\x6d\xaa\x95\xca\x38\xb9\x19\xfc\x54\x28\x70\xa2\xe5\xfd\xde\x0b\x75\x52\xa8\x53\x8a\x3f\x8e\xe6\x56\x7b\x7b\x11\xfb\x62\xe2\x76\x63\xa1\x4e\x76\x77\x6d\xa5\xf0\x32\xad\x9b\x41\xf6\x54\xa9\xd8\xcd\x9a\x2e\x15\xbb\x71\xf9\x79\xa9\xec\x55\xad\x7e\xee\x0d\xd7\xf4\x5c\xb1\x52\x45\xb2\xff\xc6\x6e\x8f\xac\xc7\xbe\x9b\xa3\xb0\x65\x8c\x50\x55\xcd\xcd\x96\x52\x39\xf3\xc5\x58\x33\x41\x9c\x67\x96\xb2\xeb\xb7\x14\x4f\x8e\x9c\x99\xd0\x3b\x39\x2f\xaa\x4f\x1c\x23\xe6\x39\x6f\x91\xf1\xc5\x62\xeb\x8b\x47\x1b\xaf\x8d\xfc\xe6\xe4\x62\xc0\x2b\x17\x5d\x0d\x9c\x61\x9f\xa8\x10\x35\x4d\xa7\x69\x96\xf1\x18\x48\xf2\xaf\xa0\xb3\xc8\xfd\x66\xa0\x98\x20\x54\x44\x91\x5e\x54\xa4\x8b\xe1\x6f\x6c\xe8\xfa\xb3\x7e\x07\x50\x4b\xd2\x34\x38\x37\x88\x78\x91\x73\x68\xa0\x52\xd9\x42\x11\x5a\xa9\x6c\xa9\xa2\xf9\x70\x74\x5b\xe1\x4c\x45\x96\x3a\x4b\xe5\xe7\x87\x25\x86\x55\x5b\xd1\xfa\xde\x8f\x84\x8c\x26\xb6\x01\x6a\x08\x9d\xd8\x06\x1b\x3a\xaf\x97\xaa\x69\x99\xd6\x1a\x70\xee\x35\x74\xe2\x0e\xd1\x9a\xe0\xad\x49\x44\x90\x07\xc4\xf8\xaa\xf5\x72\x82\x35\xb2\x1d\x46\xcd\x36\x6a\x66\xc0\x74\xea\x65\x50\xce\x37\x74\xc5\x07\x3f\x12\x7a\x27\xb3\x04\x71\xf2\xce\x39\x7b\xa6\xa2\x19\x73\x5e\xd2\x9b\x75\xc3\xe5\xf7\xb5\x8a\xed\xcb\xeb\x2e\x79\x46\xaf\x25\xb9\xcd\xd6\xb1\xe7\x7a\xd6\x1c\xfb\xd5\xaa\x54\x76\x49\xd5\xc8\xa6\x2d\x9c\x2e\x42\x09\xd8\x09\xd6\x36\xcd\xb7\xe3\xb7\xb7\x11\x64\xe3\xde\x7d\x42\x46\x72\x9c\x19\xe6\x86\xe6\x5c\x11\xba\x7d\xed\x6c\x80\xca\x0c\x6d\x4c\x9b\x00\x28\xc9\x5d\x7e\x98\x04\x16\xa2\x2b\xc5\xa2\x08\x43\x7a\x29\xdf\x0b\x73\x11\x6c\xf7\xbf\x34\x4a\xdb\xb1\x89\xe8\xc7\x46\x31\x5a\x66\x85\xc2\x97\xcd\x77\x2f\xd4\xb2\x9c\x7e\x10\xbc\x9c\xd2\xb7\xcd\x6f\xf2\x7f\x96\xbc\x32\xaf\x0a\x21\x0d\xfd\xdc\x28\x92\xea\x8a\xbe\x68\xe4\xd8\x99\x83\x68\xf6\x30\x82\x89\x2f\x7d\xde\xa8\xf5\x6c\x3e\xe7\x53\x51\x18\x1e\x3a\xf2\xb4\x51\xfe\xae\xe2\xfa\x51\xa9\x26\x9f\x84\x9c\x85\x2a\xc7\x8d\x2a\xad\x58\x4b\xff\x34\x0a\x9f\xab\xab\x50\xf2\xb8\xf9\xe5\x69\x59\x7f\xf4\x13\xec\xd4\xef\x15\x0b\xcb\xff\xad\x1a\xbf\x55\xb1\xe7\xeb\x35\x7d\xe2\xc8\xf3\x47\xee\xf7\x15\x10\x02\x6f\x14\xfb\xac\x32\x42\xff\x50\x6c\xc8\xef\xfe\xf4\x46\x8d\x3f\xab\x0e\x8f\xd9\xb6\xce\xde\x1b\x15\x49\x61\xfe\x56\x59\x10\xea\xbe\x50\x99\xb7\x9e\x7f\xae\x3c\x5d\x70\xff\x3e\x9a\xca\x3f\xad\x73\x7e\xc4\x9c\xe3\x3a\xe7\x07\xcc\xf9\xa7\xce\xb9\x87\x39\x8f\xeb\x9c\xef\x83\x8c\xb0\xad\xb2\xb6\xdf\xb0\x7d\x7d\xa6\x36\x43\x05\xef\xdc\xbf\xef\xdb\x79\xae\xb0\xe5\xfb\x3f\xfa\x9c\xa7\x3e\xe7\x07\x9f\x73\xec\x73\xee\xf9\x9c\x7f\x7c\xce\xf7\x3e\xe7\xb1\xfa\x46\x78\xde\xa9\xd6\xfd\x1b\x00\xa4\x57\x98\x1d\x49\x14\x54\xcb\x86\xca\xd7\xfc\xa2\x36\x6c\xf1\x0f\xdb\x87\x01\x63\xec\x89\x1a\x67\x4f\x14\x3b\xe1\xa7\x76\x6c\xbf\xa8\xec\xb9\xa2\x1f\x14\x21\xf9\x13\xe5\xad\xb2\xe9\x27\x55\xb7\xf1\xbb\xca\x62\x3b\xde\x47\xca\x7b\xc7\x7f\xa4\x46\x7e\x72\x7c\xb4\xdf\x59\x7f\x50\xb1\xe0\xe5\x83\x7b\xaf\xf7\x4a\x05\xe5\xc9\x27\x8a\xdc\xbc\x52\x75\x30\x00\x94\x17\xe1\x76\xf8\x44\x8d\xde\xa9\xec\xfe\x7d\x1a\xc7\xfe\x45\x7e\x50\x6d\x24\xc1\xbd\xf7\x07\xc9\xcc\x09\x3f\x1d\x4d\xd5\x8d\x64\x32\xeb\x0d\x82\x03\x0b\xa7\xa5\x09\xd1\x70\xfd\x24\x76\xda\xef\x92\xdc\xe0\x10\x04\x68\xd2\xd4\xa2\xe2\x49\xd0\xe6\xdb\x1d\x12\xc0\xe3\x73\x45\x7f\x57\x84\xca\x20\xc1\x82\xd9\x1f\x0b\xaf\x7e\x56\x75\xe0\x61\x08\x16\xe2\x5d\xb7\xab\x45\x45\x1a\xb6\x64\x06\xbd\x9c\x1b\x42\x51\xa7\x26\xaa\x57\x5b\xc2\x9e\xc8\xd3\x34\xcd\xec\x0f\xe3\x27\x32\x8a\x96\x01\x9b\xe1\x6f\x11\x11\x05\xfd\xa1\xaf\x1d\xe2\xef\xb8\xdf\x5f\x55\x4b\x14\xf9\xa7\xc5\xfe\xaf\x8a\xdd\x51\xcc\xd5\xad\x61\xe7\xa2\x83\xe8\xfa\xe8\xa8\x2e\x7b\x28\xff\xa6\xa8\xec\x7f\x74\x5f\xc4\xf0\x1a\xed\x8c\x38\xde\xaf\x11\xf5\xa1\xf6\x5b\x38\x6f\x46\x95\x6d\x88\xd0\x56\xfb\xdb\x9b\x91\xa2\xb6\xc4\x8b\x55\x6a\x3d\x98\x8d\x08\x5e\x8e\x9e\x79\xfa\x79\x21\x90\xff\xf1\x56\xcc\xf9\x03\x43\x3a\xf3\x6b\xde\x35\x44\xa6\xe9\x7c\x13\xf8\xec\x9d\xef\x92\x10\xb0\xa9\x97\x7d\xb5\x19\xe2\xee\x41\x5b\xda\x5a\x47\x11\x8d\xea\x9e\x6b\xd7\xf3\xd7\x8a\x71\x8a\x83\x16\x74\x12\x3c\xf9\x16\x73\x6a\x48\x58\x50\xde\x92\x06\x71\x0b\x31\x25\x78\xe3\x93\x3f\x01\x13\xef\x69\x01\xd1\x25\x9a\xb5\xdb\xb2\x60\x25\xc2\x94\xfe\x55\x21\x8b\xaf\x37\xec\x01\x17\x70\x00\xfe\xa6\xc5\x79\xd6\x61\x21\x90\xa6\xc3\xc1\x0f\x07\x3f\xdc\x1d\xfe\xb8\x7f\x80\x6e\x66\xb2\x5f\x6d\x3f\x0c\xab\xf3\x09\x35\xec\xc6\x4d\x80\x9c\x53\x75\x56\x71\x7d\xc9\xa7\x8f\x84\x01\xaf\x1c\x36\x17\xe7\xb5\xdb\xa3\xee\xa8\x38\x50\xdc\xeb\x36\xf5\x78\x30\xb0\xd4\xe3\x1d\x7b\x3d\x7e\xad\x1a\x98\x61\x37\xcd\xee\xe7\x03\x1a\x77\x39\x37\x54\xfb\xfb\x24\xba\x80\x5d\x23\xbb\xf8\x8e\x45\x3a\xe8\xf6\xb3\xc0\x3b\xe2\xcd\xa9\x0a\x2b\x51\x88\x06\xb3\xaa\x10\xf5\xfe\x7a\x73\x56\x54\x1c\x3d\xc2\x72\xfc\xa8\x53\x6e\x84\xa1\x2c\x8b\xe6\x33\x42\xe5\x38\x73\xed\x8a\x5d\xf9\xf0\xc2\x53\x88\xfc\x57\x57\x8c\x9f\x1b\x2d\xb6\x2b\x76\xe4\x47\xf3\xaf\xda\xd2\x8d\x7e\x48\x37\x3a\xe4\xa6\x11\x3e\xc5\x3d\xc3\x40\xe2\x2e\xff\xff\xa9\x1e\x4e\x44\x7c\xb8\xb6\x27\x09\xa7\xe8\x67\xaf\xe2\x18\xa7\x24\x37\xd4\x14\xb3\x7c\x40\x17\xc5\x75\xa9\x8a\xa9\x8f\xf1\x81\x14\x24\x3e\x85\x49\x0b\xa9\xee\xaf\x96\xee\xab\x9e\x85\x1d\xa1\x67\xdc\x40\x62\xa3\x88\x99\x3c\x8b\x9f\xdd\xb4\xa4\xcd\x3a\xb1\xfa\x7d\x6b\x3f\xef\x0a\x75\x18\x11\xfa\xa8\xe3\xf8\x7a\xc9\x97\xdc\x49\xa1\x82\x07\x97\x34\xcd\x5a\x35\x98\x9d\xe2\x6d\x97\x1b\xce\xd1\xc5\x66\x5b\x8d\x67\xdf\xe8\x38\xa8\x56\x7d\x4b\xe3\xed\x66\x6c\x1d\xd9\x06\x20\x6f\x37\x54\x89\x4c\x11\xaf\xb8\xe5\xbc\x6f\xb4\x2b\x68\x12\x5c\xd5\xa8\xd5\x4a\x03\x44\xa5\xc8\x34\x35\xe1\x4d\x1d\xa1\x38\x88\x16\x54\x3c\x6c\x99\x7b\x83\x96\x22\xc3\xdb\x4b\xc8\x51\xdb\xc6\x67\xd1\x1a\x9f\x08\x2e\x0f\x50\x26\x99\x1f\xa8\xf1\x57\x51\x94\x9f\x0b\xd4\x78\xeb\x6f\x2e\xa5\xb1\xec\x77\x2c\x3c\x26\x3b\xaa\xda\x79\xd6\x95\xef\xe7\x5b\xf7\x3b\x71\x94\xe0\xad\xf3\xae\xc9\x7e\x90\x69\x0a\x31\x16\xe3\x7e\x81\xb8\x77\x63\x0c\x5b\xae\x3f\xa6\x22\x48\xd9\x05\x2d\x02\xb1\x8e\x5e\xcd\x6e\xbc\x67\x2d\x54\x63\xdb\x94\x75\x65\xb6\xdb\x6e\x05\x93\x31\x47\x99\x4d\x61\xdb\x22\x39\x6a\xfe\xee\x1c\xe4\xbc\x8e\xa6\xca\xf6\xee\x0e\xee\xff\x90\x46\x39\xab\x7b\x77\x47\xce\xc9\x57\xe4\xff\x46\x74\x09\xd6\x6e\xfd\x18\x59\xad\x02\xa9\x27\x1c\x81\x10\xb3\x09\x6c\x2d\xfc\xd0\x7e\x2e\x80\xc5\xec\x19\x49\x51\x80\x63\x11\x6b\x1c\xb8\x73\x28\xb8\x53\xcb\x0c\x73\xa3\x41\xa2\x4d\xdb\xc9\xd1\x2b\x36\xa0\x13\x66\x9a\xbb\x36\x13\x9e\xc6\x9a\x38\x1a\x6b\xc9\x26\x2d\xe2\x61\xb4\x7c\xa0\xc6\xbe\xdf\xa8\xff\x32\xa1\x82\x95\x84\x56\x0f\x96\xe0\x57\x6d\x69\x17\xc0\x7c\x92\x2d\xe9\xa4\xdf\xdc\x43\x09\x2d\x19\x8c\xdf\x80\x4e\x68\x89\x2a\xc2\xfe\x83\x7d\xbf\x95\x22\xc1\x12\xd0\xcd\x0e\xf6\xe9\xa4\x5f\xef\xa7\x0d\xcd\x4c\xd3\xaf\xcf\x83\xb1\xeb\x8c\xab\x16\x17\xb1\x49\x9e\xc5\xcf\x71\x73\x13\xda\xac\x49\x08\xa1\x13\x86\x5f\x5c\xa3\xb8\x15\x77\x7a\x8f\xac\xe6\xe4\x6f\x23\x6c\xb1\x89\xb0\x45\x84\x30\x8b\xa1\x25\x9b\xd0\x08\x7f\x16\x77\x16\x79\x0b\x40\xde\x02\x76\x8f\xff\x13\x58\x6a\x1e\x86\xe3\x56\x6f\x1a\x58\x6b\x65\x06\xec\x35\xf3\xbb\xb0\xd8\x7e\xb3\x81\xcd\xa8\xd3\x26\xde\x17\x65\x08\x69\x6d\x31\x34\x36\x5d\x7b\x0c\xaa\x5c\xb7\x7a\x5c\x37\x18\xa1\x17\xe6\xa2\xa9\x67\x3c\x13\xb4\x31\xcd\x59\x41\x3b\x47\x92\x2d\xe9\xd1\x04\x74\x11\x5a\x03\xc8\x2a\xda\xda\x6d\x59\x74\x71\x3a\x13\xfe\xea\x2d\xbd\x99\x60\x47\xe3\xb5\xff\xaa\xb8\xe7\x2d\x44\xb8\x4d\xb6\xeb\x7d\xda\x40\x58\x17\x86\xc8\x96\x5e\x6d\xc5\x26\xa1\x73\x91\x35\xd6\x0c\xb8\x61\xdb\xbe\x88\x60\x4a\xd5\xef\x34\x87\x3a\x7a\xf7\x5b\xa6\x54\xf3\xf2\x39\xff\xca\x2d\xcf\x4f\xfa\xc8\xfb\x18\x38\xdc\xf4\xf9\x48\xb0\xb8\x98\x65\xa0\x34\xd0\xc1\xf4\x6d\xbb\xe1\x18\xde\x1f\x12\xf0\x54\x87\xfb\xb2\x26\x6b\x6f\xca\x8b\x30\xa2\xdf\xa4\x23\xc1\x1e\xf7\xdf\x80\xf5\x29\xd2\xfd\x8f\xea\xd0\x75\x74\x26\x58\x26\xf9\xd5\x8e\xee\x83\xa1\x91\xe4\xd2\x90\xbe\xe6\xe7\x55\x7d\x1b\xb8\x14\xb5\x18\x33\x9c\xe7\xf6\x64\xb7\xf4\x01\xdb\xa0\xa2\xa2\x43\x41\x8e\x4d\x8e\x5c\x02\x8b\xdb\xf6\x0c\x94\xe1\x22\xd8\x22\x7b\x08\x2a\x8a\xb5\x27\x31\x86\x3e\x0f\x6b\xc2\x71\x54\xaf\x05\xbb\x11\xd5\x91\x5a\x42\x64\xb9\x4d\x4f\xc7\x10\xd6\x88\xf7\x9b\xfc\xdc\x43\x71\xc6\x35\x49\x53\x08\xd4\x6d\x3f\xb5\xa6\x5c\xfe\x63\xbf\x7d\xcc\x0d\xde\x12\x9a\x22\x5c\x34\x6a\xee\x68\xc4\x0d\xd9\xaf\x55\x66\x49\xbc\x23\x11\x8e\x8b\x51\xa6\xd8\x44\x64\x9a\xfd\x59\x81\xf3\x3a\x45\xa8\x22\xc4\x9f\xa5\xcc\xd0\xc0\xa5\x8c\x8c\x70\x2d\x85\x17\x4d\x09\x42\x81\x06\x56\x84\xca\x49\xc6\xa9\x26\x01\xcc\x37\x7c\x51\x16\x13\xfe\x7f\x14\x54\x53\xcc\xd8\x90\xaa\xff\x5d\x20\x1f\x2a\x3d\x71\x9e\xbd\x5b\xaa\x39\xb7\xc1\x2b\x11\x5e\xdd\x84\x57\x5b\x78\xa5\x85\x57\x52\xfb\x11\x54\x05\x2b\x66\x6c\xbf\x86\xd1\xd4\xd6\xfa\x30\x73\x02\x8c\xc6\xc1\xa8\x1d\x8c\xb2\xa1\x57\xff\x30\x22\x48\x90\x3c\xbb\x8d\x12\x6b\xc8\xc2\x90\xe9\x1e\xd6\x51\xb8\x11\x75\xe6\x67\x48\xfc\xe5\xbd\x48\xc1\x68\xb5\x8a\x9f\xfa\xa2\x7a\xb5\xd4\x1c\x57\xae\x7f\x79\xb5\xca\x7a\xaf\x35\xc8\x9a\x57\x2b\x9b\x52\x54\x34\x22\xd7\x8b\xa6\x00\xa4\x37\xa4\x8a\x95\x8a\x0a\xef\x08\x03\x85\x4a\xa3\x2d\x06\x72\x3b\x22\x60\x4d\x8c\x05\x53\x22\x13\x24\xcf\x14\x3b\x53\x99\x21\xe3\x73\x95\x47\x22\x19\x61\x17\x6e\xbd\x84\x1b\xed\x37\xa4\x70\x9a\x8c\x41\x20\xaa\x48\x5e\x2a\x42\xd1\x37\x9e\xc9\x24\x15\x1d\x9b\x82\x3f\x62\x00\xaf\x51\x23\x2e\x67\xec\x7e\x5d\x3c\x1c\xb7\x6d\x68\x76\x2d\x68\x34\x16\xcc\x50\xd3\x35\xa5\x18\xa7\xff\xad\x10\x53\xfd\x5b\x21\x66\x44\xf8\x7f\x89\x76\x52\xee\x7b\x44\x3b\xdd\x15\xa2\x81\x9b\x04\x9d\xd5\xb2\x7c\xc3\x27\x5c\x5c\x72\x60\xaf\xa6\xe9\x2d\x85\x30\x31\xb6\xb4\xf8\xee\xc5\xf1\xc3\xc3\xa7\x1f\x6f\x6d\xf8\x6b\x75\xb0\x7d\x07\x39\x32\xd3\xae\x45\xbf\x63\x53\xca\x8c\xaf\x45\x5b\xfc\xb8\x8f\xa2\xad\x7d\x1f\x0b\xe9\x14\x98\x69\x54\xe0\x11\x17\x72\xdb\x07\x0c\x55\x70\x3c\xb1\x99\x70\xe1\x3b\x9b\xf3\xfa\xf6\x19\xad\x7c\x5d\x3f\xb3\x45\xe7\xcc\xae\xab\xc1\xbc\x15\x24\x50\xaf\x99\xd8\x38\xaa\x32\xb8\xc2\x08\x2a\xa9\x02\x7b\xc1\x6e\xb0\x3b\x07\x25\xb3\xd0\xcf\xb8\x79\xc2\xb5\xb8\x74\x15\x0f\xb5\x9a\x23\x1b\x3d\x4d\x33\x77\xf4\x0a\x7b\x7c\xfe\x9b\x86\x77\xb6\x37\xbb\x5a\x75\xd5\x57\xa0\x9d\x25\x8b\x45\x75\xa1\x0c\xea\x64\x78\x76\x41\x17\x21\xa2\x3a\x27\x0a\x1c\xc2\x69\xda\xfd\xc2\x66\xcd\xd5\x2a\x33\x4c\xdd\xb2\x08\xba\x5e\x4a\xd3\xae\xdc\xac\x1b\x0b\xb7\x82\x79\x4b\x61\x46\xa8\xe9\x31\x0f\xdb\xd6\x29\xae\xfc\x98\xd0\x9a\xfc\xff\xaf\xe6\xc8\xb6\x5e\x04\x08\x9f\x88\xa9\x83\xbe\x79\x75\xba\x8b\xb4\xd0\x4b\xc1\x1e\x6a\x5d\x5c\xf7\x45\x05\xbf\xf5\xa9\xf6\x56\x44\x3a\x0c\x35\xff\x5d\xda\xb5\x44\xba\x87\xac\xd3\xc9\x9a\xf3\x48\xd5\xff\x08\xca\x69\xce\x2f\x48\xe3\x71\x08\xa6\xbc\xa6\x98\x6d\x30\xb7\xef\x13\xef\xa5\x5b\xd6\x0b\x7e\xdd\x29\x95\xbf\xfb\x03\xa1\xce\x93\x83\x62\x49\xb2\xdb\x66\xbd\x44\x67\xbb\xed\x41\xdc\x81\x78\x0d\x40\x11\xfc\xf4\x3f\xa2\x87\xa0\x37\xfc\x1c\xad\x21\x6d\x66\x9e\x65\xa6\x11\x6c\x18\x65\x3d\x1a\xe9\x5f\xc3\x18\x9b\x09\x60\xe8\x60\x0e\xbb\x59\x87\x2b\x1e\x1f\x4f\x21\xd4\xe8\x8e\x39\x51\xa7\xb9\xfd\xc7\xf8\x9a\xc4\x5f\x51\xd4\x80\xdf\x3a\xef\x9a\x28\xc6\x61\x2b\x06\xfa\x8f\x77\x9d\x37\xbd\x80\xc8\x56\x85\xfb\x03\x8b\x8e\x0e\x7f\x3b\x9f\x6b\xd9\x46\x6d\xd7\xd8\x0b\x9e\xa2\x5a\x23\x30\x24\x34\x39\xc1\x21\x75\x0a\xd3\xa7\x16\x5d\x1b\x6a\xce\xde\x09\x8e\x53\x07\x26\x63\x37\x0f\x76\xae\x84\xb9\xd8\xf9\xc4\xaf\xab\x9d\x9b\x64\xb7\xa9\x78\xdc\xff\x5b\x09\x99\x25\x74\x27\x21\xbb\xc9\x3a\xc9\x0d\x78\xdd\x0b\x80\xbe\x10\xad\x60\xce\x7e\x2e\x72\x4f\xa8\xc4\xf7\x34\x7f\x81\xd2\x63\xe7\xab\xcc\x5f\xb9\x9a\x8c\x0e\x49\xf2\xdb\xee\x7a\x54\x6e\x72\x13\x22\xb6\xd8\x8f\xeb\x38\x9c\xb4\xf7\xeb\xde\xe3\x0d\xed\xc7\xf8\x3a\xa7\x47\xe0\x2c\x1d\x94\xe7\x75\xbf\x72\x8e\x8d\x3a\x3d\xdc\xe8\xfa\x32\xc8\x81\xda\x39\x2a\x16\xbe\x19\x33\x22\x61\xee\x7e\xe2\xd7\xe8\x29\x13\x9d\x26\x50\x43\x72\xff\x08\xde\x14\xa8\xb1\xe4\x92\x69\x7f\x2c\x9a\x01\x6a\xc3\x0a\xf4\xd1\xc4\x31\xcc\xa0\x05\x36\xb0\x74\x11\xbe\xee\x14\x95\xeb\x97\x45\xe6\xce\xe1\x60\x03\x8d\xef\x68\x8a\xd6\xc9\x9e\xb0\xab\x8d\x00\xc6\xe0\xbb\x1a\x6a\x91\x07\x72\x9c\x99\x08\xa1\x33\x0b\x47\xae\xf3\x8e\x4c\x19\x09\x65\x62\xff\x7a\x81\xeb\x11\x7d\x03\x38\x0a\x71\x03\x0d\x12\x6a\x52\x13\x0f\x4d\xf9\xbf\x59\xad\x82\xd5\x0d\x98\x4c\xff\x31\xb1\x97\x83\xfe\x5c\x4d\x39\x5c\x0f\xb0\x3a\xb3\xb8\x81\x85\xaf\x32\x34\x8b\x8d\xf2\x23\x11\x47\xe7\x67\x70\xe7\x31\x7d\x8e\xf6\x40\xe0\xe9\x1e\x76\xbb\xeb\x05\x1f\x67\x99\xc6\x36\x91\x82\x81\x96\xcf\x59\xd8\x78\xa9\xae\xbf\xa4\x2d\x04\x9a\xbd\x9a\x64\xf8\x2e\x05\x9f\x09\xfe\x4d\x8a\xc3\x14\x43\xbe\xb5\x9d\x48\x5a\x72\x0b\x62\xee\x7a\xc4\xac\x56\x66\x9b\xc7\x6f\xf4\x01\x15\xe7\x34\x2b\x83\xfe\xa7\xed\x35\xdc\xc7\xa1\x76\x33\x0b\x90\xfe\xf7\xb7\x20\x3d\x72\xbe\x76\x72\xba\x6d\x04\x16\x35\x8f\xbc\xa3\x47\x3f\x34\x86\xfa\x4d\xfc\x55\x4b\xae\xfd\xbb\xc1\x3e\x8f\xce\xc6\x0e\x4f\x72\x9d\x0e\xe4\xdc\x2e\x81\xf3\x2c\x49\x76\x8d\xff\x7e\xf3\x2b\xb1\xf9\x47\x43\xb8\xec\xa7\x53\x1d\x17\xa0\x7f\xe7\x0e\x16\x3b\x11\xc0\x13\xef\xbd\x41\xda\x89\x62\x70\xa2\xb8\x6d\xa2\x63\xa2\xc8\x78\xa2\xe0\xe5\x88\x80\x0d\x94\x03\x45\x22\x27\xfe\x51\x1e\x00\xff\x7b\x92\x6d\x81\xda\x9e\x5b\x2f\x05\xe8\x00\xbe\xce\x82\x31\x0b\x22\xba\x7e\xc5\xf9\xdd\x8f\x7b\xeb\xce\xa3\x6e\xb7\x5f\xd3\x36\xdd\xef\x71\x30\x86\x5e\xa1\x53\x88\xce\x21\xe8\xf4\xe1\xd7\x08\xe5\x64\xa9\x35\xd4\xf5\xc7\x0d\x22\x49\x76\x41\xb3\xbb\x13\xfd\x11\xf7\x22\x12\xbe\x6c\x41\xff\x0e\xac\x4d\x20\x1a\x70\xb1\x32\xc6\x5e\x8d\xdd\xec\xc4\x71\x08\xf3\x19\x84\x18\x79\xbd\x77\x60\x97\x1a\x78\x8f\x9a\x5b\x36\xeb\x39\xa4\x4b\x40\x7a\x33\x2e\x56\xdd\xbb\x7a\x55\x00\xf2\x11\xe1\x72\x0b\xc2\x2f\x1a\xa2\x95\x2e\xc4\xea\x2e\xc4\x06\x7f\x65\x30\xd8\x18\x81\x08\xc0\x82\x59\x95\x24\xbb\xb6\xbd\x6e\xcc\xea\x80\xd9\x3a\xe0\x85\xde\x8a\xd9\xd0\xb6\x97\x52\xda\xe3\x50\xe6\xf0\xeb\x3f\xa7\x63\x9c\x1b\xca\xa9\x6e\xe3\x5c\x51\x7c\x21\x2f\xb1\xdc\x02\xd7\x44\xf9\x32\xee\xc7\x6d\xdf\xa2\x8a\xb8\x51\xd0\x30\x0a\x3a\x8c\xc2\xa2\x0b\x15\x9a\xaa\x7a\x18\x4c\x5b\xfb\xbf\x66\xaf\x67\x8a\x16\xb4\xa2\x93\xda\x47\x6a\x89\x47\xb1\x93\xcb\x2c\x58\x41\xcf\x58\xc1\x06\x74\x5e\xcb\xad\x7b\x8c\x2d\xd2\xf4\xac\x36\xa8\x3b\xdb\xdd\x25\x37\x0b\x3c\x7b\x7f\x3a\x1b\x67\x73\xb6\xa0\x0b\x64\x83\xe7\x73\xb6\x08\x34\x02\xb0\x7c\xd9\x34\x53\x74\x41\xab\x93\xb3\x53\x3a\x21\x91\xc0\xfc\x28\x88\xed\x17\x69\x9a\x2d\xd8\xdc\x47\x78\xe2\x69\xba\x08\xc7\xf1\x51\x7c\x1c\x43\xa0\x0e\x42\x0b\x26\xb2\x23\x5a\xd0\xb3\x48\xce\x51\xb2\xa3\x7c\x19\xc8\x8b\x23\xba\x64\x47\x74\xc1\xe6\x16\x89\x67\x8c\xb1\xaa\xe5\x63\x45\x62\x4b\x65\x04\xcf\xc2\xb1\xcc\x5b\x1d\xf5\xd4\xc7\x82\x9d\x67\xca\x77\x03\xed\xd6\x45\xb6\xd8\x80\x62\x11\x41\xb1\xa0\x4b\xb6\x08\x9a\x66\x25\x08\xc0\x16\x4c\xc3\xa7\xb7\x7d\x66\xce\x2e\xb2\x05\x55\xf4\x2c\xfe\x14\x0f\x93\x79\x1e\xa3\x63\xd1\x47\xd2\xdf\xf7\x60\x0e\x53\xe9\x2c\x87\x5f\x44\xd3\x7c\x03\xc0\x79\x04\xe0\x9c\x2e\x2d\xda\x6b\x1a\x68\xd1\xed\x02\xdd\x13\x65\x99\xb2\xc4\x3f\x21\x34\x16\x37\x58\xac\xd0\x09\x2d\xbd\x8c\xf3\x75\x86\xc3\xdc\x75\x93\x5b\xb6\xaf\x57\xdf\x3b\xf7\xdd\x08\x60\x36\x61\x4b\x24\xf5\x27\x64\x43\x1b\xfc\xfb\x21\x21\x41\x20\xbb\x60\x6e\xc6\x9e\xb1\x8a\xce\x59\xc5\x06\xf4\x08\x33\x66\x4e\x40\x96\x05\xaf\x91\x67\x69\xda\x9b\xf5\xa7\x4a\xf2\xd1\x7c\x77\x37\xaa\x40\x6e\xce\xdc\x24\x9e\x8f\xb3\x23\x76\x46\xcf\xdc\x24\x3e\x62\x67\x8d\x49\x7c\x09\x93\xf8\x8c\xce\xd0\x4d\x00\x2d\xe3\x79\x7c\x19\xe6\xf1\x59\x9a\x66\x67\xec\x28\x9a\xc7\x67\x61\x1e\x5f\xb6\xe7\xf1\x19\xa1\x15\x13\xd9\x25\xad\xe8\x3c\x0c\xd0\x62\xbc\x64\x97\x79\x58\x41\xec\x92\x2e\xd8\x25\x3d\x63\x47\x76\x1e\x63\x1f\xe2\x19\x7c\x46\xe8\x32\x82\xe4\xcc\xcd\xe0\x2d\xbd\xf5\x53\x6c\x06\x33\xb9\xee\x0b\x06\xf0\x12\xd9\x6c\x03\x94\x59\x04\xca\x8c\x2e\xd8\x2c\xcc\x95\x25\x4c\xe6\x33\x98\xcc\x67\xe4\xeb\x5f\xbc\xc8\xce\xa8\xa2\xf3\xd6\x57\xeb\x79\x3d\x8b\xd1\x73\xd6\x9a\xd7\x33\x98\xd7\xf3\x7c\x86\xf3\xfa\xdf\xc2\x0a\x2d\x7e\xdb\xbc\x5e\xfa\x7d\x33\x12\x0b\x68\x2a\xec\x86\x89\x9b\xe5\xad\x4c\xbd\x34\x15\xe1\x8c\x08\x03\x2f\x2c\xd0\x10\x44\x4d\x30\xd1\x3a\x31\x90\xaf\xb0\xbc\xbd\x55\x3b\xc0\x4b\xe2\x8d\xdf\x36\x8f\x30\x67\x3e\xbe\xc4\x2f\xd1\x92\x69\x3f\xf1\x4b\x34\xf2\x2e\xdd\x39\xbf\x84\xa7\x1f\xc0\xd6\xdb\xd2\xab\x35\xb0\x79\xd9\xba\x48\x60\x11\xb9\xb1\xfd\x2f\x3d\x5a\x09\x85\x7b\x45\x49\xeb\x17\xc7\xed\x1e\xe5\x62\xf3\xce\x51\x52\xd1\xb8\x2b\x70\xa6\x83\xb9\x1f\x7c\xc0\x2f\x18\x03\x0f\xb4\x64\xe1\x93\xeb\xe8\x53\xf6\x9e\xf2\x66\x92\xb5\xbf\xe8\x89\xc0\x09\x85\xfe\xc7\x54\x20\x67\x70\xbd\x99\x58\xaa\x15\x1b\xc2\x3a\x54\x74\x50\xad\x93\x18\x64\x4b\xba\x83\xed\x7f\x68\x69\x12\x8e\xd4\x2a\xe3\xe1\x58\x0f\xa6\xfb\x38\xca\xf5\xf5\x1c\x9d\x9b\x23\xde\x4b\x78\xba\xeb\x43\x1d\xa5\xe9\xd6\x58\x47\xc1\x58\x31\xe4\x34\x2b\x37\xaf\x39\x50\xbb\x99\x85\x23\xa6\x5b\x23\xa6\xa9\xd8\x7a\xd1\x69\x0f\x86\x8e\x07\xa3\xc9\x60\x58\x67\xda\x52\xea\xa2\x89\xb1\xba\x9d\x18\x41\xeb\x4e\x22\x4f\x74\x11\x79\xc1\xad\x86\x60\x49\xb2\x2b\x3c\xef\x52\xa7\xe9\xbd\x10\x1d\x2a\xdb\xd2\xad\xcd\xd1\xc6\x3e\xd8\x0a\x7f\xdc\x02\x2a\xa1\x30\x8a\x48\x61\x89\x40\x5b\x9d\x85\xe5\x6e\x8b\x5e\x47\x25\xf3\x46\xc9\x32\x4d\x81\xdc\x15\x84\x76\x85\x08\xb0\xab\xb7\x57\xfa\x25\xcb\x1b\xca\x54\x4e\xdb\x09\xcf\x36\xee\xd8\x63\xb4\x3e\xe4\xf6\x09\xe5\xfd\xa9\xa8\x16\x65\x01\xf6\x8e\xab\x15\xef\x4b\xf8\x4d\x82\xe4\x2d\xa9\xc9\x3b\x14\x6c\x02\xcb\xf5\xb9\x60\x2f\x44\xd6\x1b\x10\xfa\x14\x53\x43\x42\x8f\x05\xbb\x59\xd3\x7f\x44\xad\xdd\x7e\x2c\xd6\xf4\x71\xeb\xf9\x53\xf3\x39\x72\xb7\x25\x9c\x6b\x27\xbb\x02\x8f\x45\xfb\x44\xfe\xe1\x2e\x21\x1d\x8c\xa0\x27\x8e\x15\x38\x51\xd9\x27\xe1\x0c\xa5\x1e\x0b\xca\x21\xf1\x8f\xa0\xc7\x82\x8c\xbc\xf1\x79\xf0\xeb\xed\x2f\x3f\xde\x4c\x04\x11\x35\x1c\xe6\xe0\x0b\xa5\x36\x4c\x0f\x0e\x50\x0c\xa0\xa5\x5a\x14\x13\xfe\xee\xcd\xb3\xfc\x0f\x3c\x2d\x20\xb2\x48\x33\xac\x93\x61\x7f\xf0\xcc\xb0\x4c\xb2\x1f\x51\x11\x20\xf2\x0a\x9d\x1b\xd2\x68\xc6\x91\xd3\x12\xf9\xc6\xe0\xe5\x68\x5d\x59\xa0\x3d\xec\xf1\x65\xfd\x91\x70\xa6\x7a\xb6\xb8\xb2\x7d\x84\x9f\x4f\x22\xaa\xf3\x0a\xea\xbc\x17\xd9\x27\x11\xcc\xc4\x5c\xe8\xb1\xf7\x22\xfb\xa7\xce\xa4\x12\xc0\x74\xca\xfc\x64\x64\x9c\x44\xbb\x85\x3b\x19\x4b\x58\xdf\x40\xe3\x8f\x43\x23\xce\x1f\x52\x03\x22\x64\xc7\xff\x11\x8d\x70\xec\xd5\xee\x6f\xe1\x5d\xb0\x3b\x8b\xb9\x88\x35\x78\xe3\xa3\xcc\xa1\xfb\x98\xe0\x2f\xa0\x21\x28\x88\x95\x48\x22\x7f\x1d\x16\x81\x51\x90\xb8\xd5\x4a\xa2\x4f\x40\xc6\x3e\xc8\xe8\xe1\xe7\xfa\x72\x69\x42\xe0\xb8\xe1\x7d\x16\xbc\xd7\x44\x32\x57\xff\x59\x10\x1d\xf5\x35\xbf\xe4\x45\x09\x16\xcc\x00\x68\x76\xef\x6e\x1a\xf1\xea\x48\x8f\xb1\x23\xb3\xd9\xb6\x6c\x38\x1f\x27\x37\x2e\xe1\xf7\x06\x03\x2c\x4e\xc8\x1a\xd9\x6d\x58\xc8\x25\x88\x05\x00\xb3\x4e\xad\x30\xf0\x61\x01\x4a\x4f\x25\xc6\xda\xf4\xc6\x35\xb7\x5a\xf9\x54\xec\x83\x0c\xae\x55\x26\x54\x5a\x87\x36\x02\x10\x2e\x11\xb3\x5b\xbb\xaf\x73\xcf\x9a\x3a\xd7\x41\xf1\x3e\xe7\x14\xce\xb7\xdc\xa9\xdd\xbc\x6b\xab\xdd\x3c\x11\xd5\xa2\x30\x93\x0b\xae\xe9\x2f\x82\x0d\xe8\xa1\x40\xda\xf9\x77\xf7\xfb\xc1\xfd\xfe\xec\x7e\x7f\x73\xbf\xaf\xdd\xef\x1d\xfb\xd2\xaf\xee\xe1\x4f\xfb\xc0\x0b\xd6\x1b\x52\xe3\xf4\x21\x65\xc1\x22\x3f\xff\xba\xc8\xbc\x5d\x50\x10\x00\xec\x0f\xe3\x89\xac\x8a\x20\x3c\x90\x1b\xde\x46\x6a\x7f\xf3\x83\x91\x7c\x50\x87\xd5\x94\x0f\x78\x1c\x34\x57\x9c\x67\xce\x4b\x08\xb8\x08\xe9\xf4\x0f\x52\xb3\x9b\x8b\x58\xb5\x02\x3e\xfc\x8b\x60\xc2\x22\xc2\xf8\xde\xf7\x18\xe3\xe3\x96\x5c\x0c\x65\xfd\xef\xea\x15\xe7\xc0\xfd\x20\xc6\xb3\x22\xbf\x2c\xa8\x01\x5d\x24\x45\x28\x2f\xc8\xcd\x54\xdd\x20\x5e\x64\xb1\xcb\x86\x5f\x6f\xf7\xb5\x60\x3f\x0b\x8b\xd7\xdf\x04\xf3\x43\x11\x7d\x2b\x6a\xde\xd9\x62\xf1\x82\x8c\x62\x9c\xdb\xb9\x1a\xbd\x70\x54\xd0\x8c\xb3\x43\x41\x5a\x9a\x0d\x3f\x8b\x4d\xb5\xbc\x3b\x36\x2f\x56\x16\xfe\x15\x2a\xd5\x82\xbd\x3f\x05\x0d\x3a\x11\xbf\xd7\xe4\xe9\xef\x02\x88\x7d\x9c\x47\xaf\x01\xf4\x9f\x05\xfb\x00\x1d\x38\xdc\x3e\x5d\x36\x44\x72\x03\x12\x99\x64\xd5\xe6\x1f\x76\xea\x34\x7b\xf4\x2f\x3f\xb4\x31\x2f\x23\xfe\xbf\x6d\x1c\xcd\xe4\x6e\x3a\x46\xa3\x36\xd3\x80\x47\x10\xba\xd6\x25\xb1\x5d\x45\x6d\x5e\x33\x6a\xb2\x87\x7f\x13\xe3\x9f\x01\x52\x9e\xff\x66\x7f\x51\x27\x91\xd3\xdf\x22\x73\xf2\x49\xd1\xb0\xfe\x7b\x2d\xc8\x6b\xc1\xb2\xdf\x84\x4d\x21\x6a\xeb\x79\x93\xfd\x6e\x7b\x4c\xc6\x0e\xe9\xc8\xd4\xf3\xb6\x53\x61\x2a\x6e\x08\xdb\x06\x4e\xdc\xb9\xd1\x4f\xd7\x5e\x4b\xad\xa1\xee\xf8\xef\x22\xd2\x75\x46\x04\xfc\x2e\xfa\x90\x88\x91\xe0\xaa\x39\xe5\xca\x08\x1b\x6e\xdf\x08\x98\xb0\x68\xf0\x38\x80\x91\x43\x55\x56\x87\xb4\x18\x2b\x65\xd1\x08\xc1\xd2\x25\x53\x1d\x9b\x8c\x93\x3c\x9a\x2c\xcb\xa2\x96\x9c\x5a\xac\x52\xbb\x97\x02\xb0\x0d\x33\x8d\x36\x76\x86\xc4\xfb\x2a\x2a\x2a\xf3\x86\xdb\x0d\x94\x4f\xdf\xf0\xe9\x72\x02\x5a\x3a\x83\x07\xb2\xf0\x92\x41\x09\x94\x99\xdd\x39\xa3\x73\xcf\x14\xc1\x77\x63\xe1\xb8\x72\xb6\x34\x1c\x5d\x8a\xdc\x98\x22\xdc\x68\x49\xd0\x15\x69\x9e\xa3\x53\x75\x23\x18\xcf\x04\x55\x10\x11\x4a\x41\x94\x58\x34\x98\x6a\x1a\x5e\xaa\xb0\x4e\x7e\xd6\x99\xa0\xad\x76\xc8\x6a\xe5\x6d\xd1\x5a\x25\xa0\xb9\x5b\x0f\x13\x48\x8b\x6c\x8f\x41\xc8\x15\xe9\xf7\x12\xda\xc4\x84\x7f\xf9\x44\x50\x7d\xba\x76\x63\x75\xd2\x6a\xdc\x16\x69\xd7\xa0\x73\x19\x19\x7f\x0c\x7c\xee\xb1\xe8\x33\x9e\xc8\xaf\xc6\x59\x4d\xee\x3b\x09\xab\xd3\xa7\xd5\xac\x82\x47\x92\x07\xd5\x2e\x3d\xd6\xfd\xc8\x2a\x28\xb0\x77\xed\x07\x27\xcc\x99\xf4\x95\x4c\xd3\x25\xeb\x0d\x2d\x46\x91\x53\x54\x6e\xea\x90\xff\x22\xc6\xd9\x72\xb5\xca\x96\xac\x37\xa0\x13\x56\x81\xb7\x6c\xba\xf8\xe9\x8e\x48\xd3\xa3\x49\x76\x47\xa0\xea\xf8\x7c\x92\x2d\xec\xfd\xb7\xa5\x77\x2f\x6c\x93\xc5\x8c\x6b\x3f\x4b\xec\x8e\xee\xb2\x9c\x61\x57\x26\x68\xe9\x07\x92\xd0\x8a\x95\x70\xab\xdd\x1c\xcd\x32\x4d\xb1\x13\x23\x0b\x4e\x80\xe4\xbf\x1b\xda\x49\x43\x63\x5b\x75\x0f\xe8\xb6\x91\xac\xe7\xf8\x69\x24\x02\x2b\x36\x64\x7a\x9c\xdd\x98\x62\x96\x73\x8a\x51\x71\x73\x43\xa7\xbc\x32\x5a\x5d\xe7\x92\x4e\xf9\xa2\xca\x75\x87\xd9\xe1\xaf\x62\x9c\xfd\x2a\xd8\x4d\xcb\xf0\x6c\x4d\x62\x71\xb9\x53\xdd\xe6\xde\x66\x28\x33\xec\x57\x11\x55\x20\xe3\xc6\x63\x5d\x1f\x22\xcd\xc0\x96\x69\xfc\x2e\xe3\xca\x24\x6d\xbd\x42\x62\xe1\xf3\x79\xd1\x96\x07\xd9\xa3\x61\xf4\xa7\x58\x41\xcc\xf4\x26\xae\x17\x45\x14\x8a\x9c\x06\x05\x63\xe7\xc7\x3c\x96\x83\x4e\x37\x9a\xb5\xbb\xd2\xc8\x47\x2f\x8b\x5e\x72\x7b\x82\x0b\x90\x54\x6f\x2d\xbf\x0b\x7c\xb3\xb0\x5b\xe5\x06\xdd\x2d\x98\xdd\x56\x00\xe7\xd1\xa5\x59\x15\x99\xa6\xb6\x60\x51\x05\xe2\x1a\x1a\x5e\x14\xd9\x80\x4a\x2a\xec\x85\xf1\xd6\xae\x89\x86\x34\xf7\xe2\x1b\x76\xe2\x8c\x33\x9e\x11\x0a\x8e\xa9\x22\xdb\x72\x94\x71\x90\x35\xf1\xfe\xea\x4d\x4c\xd1\x87\xb7\xc2\xe9\xce\x1b\x2f\x37\x68\xac\x35\x71\xf1\x5f\x22\x61\x46\xd1\x08\xda\x37\x2f\xe2\x28\xc6\xd9\xfe\xf7\x3f\xc9\xa2\xcd\x43\x3e\x18\x0c\x83\xe6\x4f\xdb\xdc\x99\x31\x76\x28\x42\x38\x22\x9d\xa6\x1a\x72\xc0\x2d\xb3\x5d\x75\x94\x6f\x98\xbe\xfe\x22\xda\x66\x8d\xb0\x03\xe1\xb2\xcf\x25\x8d\xf7\x08\x2c\x8a\xb6\x88\x16\xe5\x10\xcc\x4b\xc0\xa0\xa3\xf0\xaa\x1a\xa4\x9e\x61\x76\x76\xe3\x01\x63\x08\x21\xa6\x40\xed\x0c\xea\xbd\x43\x63\x74\x1d\x19\x2e\x70\x30\xf1\x47\xc4\xf8\x94\x5f\x12\xeb\x10\x4d\x5c\xa1\x42\xb3\x68\x28\x34\x8b\x8d\x5e\x2a\xf6\x67\x95\x29\x0a\xdc\x8e\x56\x77\xc5\x7f\xd6\xd7\x70\x42\xc0\x71\x51\x9f\xcd\x15\x71\xd4\x81\xa8\x43\x9e\x4f\xdc\x31\x10\x4c\x83\x20\xd4\x01\xd4\x9a\x10\x5a\xb9\xfa\x70\x49\x83\xe6\x98\xa0\x5b\x34\xf6\xbd\xbc\x0d\x43\xda\xea\x56\x85\xda\xe2\x3b\xf3\x1a\x40\x2d\x5a\x80\x10\xef\x4a\xa1\x6c\x55\xc0\x8d\x73\xc9\x74\x56\x52\x3c\xfc\x45\xf3\x7c\xd0\x54\x44\xa7\x03\x5b\xda\xfd\x7d\x49\x4b\xbf\x3e\x9d\xf7\x84\x05\xb9\x59\x83\x1a\xb8\x72\x1c\x9d\xa3\x82\xdd\x68\x5e\x78\x15\xde\x5c\x09\xba\xac\x82\x13\x96\x5c\x17\xf0\xe8\x0a\xf1\xc9\x6d\xaa\xf8\xf0\x6c\xbe\x80\xd0\xd4\x97\x1c\xa3\x80\xb9\xec\xe7\xc5\xb5\x5a\x9a\x46\xcd\x23\x3e\x57\x2e\xe9\xc7\xd0\x3f\x9d\xbb\x14\x8e\x24\xa6\x9f\xf0\xb3\xe5\x0c\x6c\xb6\x43\x35\x7f\xf5\xd4\xc5\x9a\xce\x6e\x87\xbb\xd3\x1b\xa6\xdd\x71\x5b\xdb\xd1\x09\xaf\x27\xbf\x71\x31\x0a\x4e\x29\x5f\xc7\xbd\xc6\xa6\x5d\x5f\x3a\x1b\x3e\x2f\xb2\xef\x87\xf7\xe8\xf0\xfe\x3e\x78\xd6\x5b\x77\x22\xa6\x6d\xb7\xe0\xc9\x78\x56\xf3\x36\x6a\x8b\x83\x31\x68\xa7\x4c\x0a\x93\x9d\xf0\x53\xe2\x2c\xa7\x8b\xec\x2e\x3d\xb8\x47\x2f\x8a\xfe\x99\x90\x53\xe4\x45\xd9\xc5\x49\x25\x7e\xb2\x81\xf4\x6d\x80\x42\x13\x01\x4a\x18\x94\x66\x55\xbc\x07\xc3\xe9\x14\x1c\x1a\x6d\xe0\x88\xe2\xbe\x2a\x37\xd1\x19\xd0\xe7\x07\xb9\xdd\x6f\xdc\x1a\xbb\xda\xc7\x8e\x67\x86\xe4\x86\xea\x56\xcb\xb1\x2d\x8c\xfd\x3a\x38\x7d\x05\xc2\x1b\x4f\x7a\x44\x91\x27\x2b\x6a\x8b\xf2\xd6\x02\xcb\x39\xdd\x58\x55\xb9\x59\x93\x40\x90\xb0\x79\x8c\xdd\x43\x60\x8b\x9d\xb4\x80\xa1\xfc\x74\xed\x27\x6e\x87\xa8\x87\xd7\x7c\x30\xbe\xa6\x1d\x93\x0e\xf1\xd3\xb6\x66\xf1\xd7\x8a\x08\x33\x5d\x27\x21\x7a\x23\xe7\x19\xd9\x24\xd1\x62\x8a\x8c\x23\x8e\xcc\x7f\x82\xa3\xb2\xe8\x40\x12\xff\x1a\x92\xda\x44\x9e\x43\x52\xb4\x8e\xcf\x5a\xeb\xf8\x99\x58\xd3\xcb\x7f\xb3\x8e\x71\x6a\x02\x85\xd3\x31\x27\x83\xba\x6d\x93\x8a\x69\x6a\x96\xe8\xd8\x4e\x46\x59\x62\x44\x9f\x0c\x4f\xc9\x58\x9f\x0c\x4e\xf3\xb6\x8d\xba\x9f\xcf\xe4\x5f\xee\x07\xd3\xff\x2b\xfb\xc1\xf4\xbf\xdf\x0f\xa6\xdf\xbc\x1f\xfc\x1f\x44\xfa\xad\x5b\x09\x69\xec\x25\xcb\x62\x63\xdd\x85\xbe\x4c\x36\x16\xda\x96\x65\xe6\xc5\xcb\x45\x56\x16\xe4\x5b\xe6\xe8\xb5\x63\xed\x3c\x74\xbf\x57\x45\xc3\x7f\xc8\x97\x22\x46\xd4\xfb\x49\xf6\x3d\x0d\x97\x47\x3a\x20\x23\xd9\x10\x7c\x26\x4f\x9e\x3e\x7f\xfa\xf6\xe9\x13\xf0\xde\xdd\xce\x88\x4d\x7a\x62\x6d\xb6\x58\x91\xd7\xd3\xe1\x3c\x36\xa5\xce\xf8\x16\x6b\x69\x49\x79\x4b\x89\x98\x37\x94\x88\x9b\xa5\x91\xdd\x4a\xd1\x0c\xe1\x14\x09\x98\xbe\xcf\x63\x9f\x43\xad\xa1\xce\x0c\x1b\xf6\x62\xb7\xbe\xe8\x53\x3e\x8a\xdb\x10\x4a\x37\x63\x4c\xb8\x39\x05\x62\xfb\x06\x2e\x7a\x03\x27\x0e\xbd\x97\x6f\x7c\x2e\x71\xf1\x4e\xb8\x9c\x82\xc7\x35\xb0\xfa\x38\x68\xc0\xf0\xf5\x76\x87\x07\xf9\x2d\x51\xd6\x5e\x16\x4e\x46\x75\x55\xf8\x5d\xfa\x61\x81\x21\x4b\xbd\xc8\x02\x34\xda\x1d\xd2\xdc\xf5\xc0\x30\xa3\x33\xd9\x88\x35\x4b\x56\xab\x50\x29\x38\xa8\xa9\xc7\x36\x4a\xa7\xff\xbf\x4b\xb3\x9a\x19\x9c\x6b\x40\xa3\x64\xd7\x05\xe3\x64\xf4\xa5\xc8\xae\x0b\xbb\xc2\xed\xa3\x9d\x92\x46\x07\x03\x5f\x10\x38\xa0\x20\xe2\x9b\x9a\xb5\x4d\xc4\xc1\xe4\x0a\x2f\xa9\xa9\x1d\x1c\x05\xeb\xde\x34\xfd\xbe\x23\x24\x69\x1c\xa9\x14\x83\x82\xbb\xd7\xa0\xe9\x5a\x73\xdf\x23\x90\xf7\x18\xbb\x2e\x6a\xb6\xb9\x45\xd4\x95\x7f\x46\x00\x00\xb6\x01\x75\x3e\xc0\x8d\x9f\x66\xe2\x3c\x0b\x00\xac\x56\xc9\x05\x2f\x30\x2a\x7a\x9a\x26\x67\x6a\x7a\xed\xd2\xbd\x5f\x25\xea\x6c\xc6\x92\x1c\x42\xf0\xe2\xf2\xb0\x18\x99\x11\x71\xcb\x95\x1a\xc4\x5c\x3c\x3c\xf6\x23\x08\x03\x08\xa5\x70\xd2\x47\x4e\x23\x02\x73\x3a\xdb\xb4\x66\x19\xf3\x48\x1a\x85\x41\x13\x08\xb7\x9f\xc4\xe1\xc8\x03\x5e\xa3\x0f\xd2\x7f\x19\x1f\xf8\xf7\x38\x1e\xf0\x0d\xb7\x1d\x68\xc6\x32\x0e\x62\xf6\x3a\x46\x70\x8f\xb1\x43\x99\xa6\xf6\xf7\x67\xf7\xfb\x41\xae\x56\x3e\x66\x70\xf4\xf6\x9a\x47\xae\xf7\x39\xbb\x2e\xc6\xd0\x7e\xad\x1a\x10\x7f\x09\xf9\xc2\x6e\xdc\x1e\xda\xa9\x18\xcb\x3e\x5e\xd8\x7b\xf3\xc3\x82\x5d\xc7\x3b\x26\x4a\x90\x8b\x96\x9c\xe8\xe5\x95\xe4\x9a\x3e\x6d\x6e\xa9\xc7\x11\x5b\xc3\x09\xcb\x3c\x97\x97\x8f\x9f\x82\x22\x3f\xec\xb0\x54\x93\xfc\xb9\x80\x11\x87\x4a\x90\x53\x83\xf1\x4f\x11\xeb\x84\x4a\x30\x00\xb2\xbb\x7a\xe0\x8f\x6a\x7e\x1e\xdc\xbd\xda\x66\x14\xa1\x9a\x45\x82\x9b\xff\x3f\x77\xef\xc2\xdc\x36\x8e\xec\x8b\x7f\x15\x49\x35\xc5\x03\x1c\xc3\x1a\xc9\x4e\x32\x09\x15\x44\xd7\x49\x3c\x33\xd9\xcd\x6b\x93\xcc\x63\xd7\xeb\xeb\x4b\x53\xb0\xcd\x31\x0d\x6a\x00\x28\x8e\xc7\xd2\xfd\xec\xff\x42\xe3\x41\x00\xa4\x9c\x64\x76\xcf\x39\xb7\xfe\x55\xa9\x98\x02\x41\xbc\xd1\xe8\x6e\x74\xff\xba\x02\xd7\x5e\x8f\x5d\x7f\x58\x44\x3e\x00\x6b\x3a\x25\xb6\xa5\x70\x1f\xe3\xae\xfc\x72\xa4\xa2\x6b\x8e\x18\x61\x27\x28\x20\xa3\xbb\xf7\xa7\xdf\x75\x2e\x4a\x1e\x03\xf8\x4d\xe7\xfa\x64\x82\xc9\x0f\xa6\xb6\x26\xbc\xd8\x7a\xd6\xbd\x67\x72\x2d\x76\x9a\x1d\x1e\x52\xea\x3e\x9b\xb9\x62\xbd\x7e\x5e\xa2\xc2\x7b\xb3\x0f\x29\xe8\x7d\x5a\x94\xbb\x36\x86\x32\xb8\x67\x15\x82\x05\x59\x79\x94\x75\x8e\x10\x0b\x8d\xfd\x8d\xed\xa8\x61\x4e\x8c\xa5\x44\x65\xcd\x60\x60\xfc\x09\x0b\x6e\x46\xed\x54\x33\x18\x42\xf0\xc8\xbe\x4f\x8c\x2d\x38\x2d\xc8\xa5\xe9\x68\x61\x3b\xea\x0d\x14\x0a\x87\x8b\x4b\x9a\xc7\x15\xa0\x06\x15\xf1\xfe\x27\xc8\x33\x55\x70\x6b\x6c\x7b\x80\xe7\x3c\xff\x9b\xc0\xa8\x21\x02\xa2\xf9\x08\xf0\x96\x82\x46\xe1\xb9\x1d\xe9\x0a\xe7\xe9\x8c\x1b\xa7\x93\xc2\xfb\x2a\xdc\xd1\x8b\x76\x92\x2e\x93\x49\x8a\x4f\x31\x06\x10\xee\x09\xd5\xea\xb6\xca\x62\xc0\x4d\x75\x3f\xc3\x16\x3e\x0f\x16\x6c\x50\xe7\x2f\x45\x0c\xc2\xaf\x17\xbb\x5f\x1a\xad\x51\xb8\x9f\x5a\x66\xab\x03\x4b\xf1\xd8\x2f\x65\x4d\xa7\x7b\x0f\xc3\x78\x68\x45\x37\x72\xce\x69\x83\x78\xe2\x5a\xea\x43\x5f\xd2\x8b\x06\x29\x30\xd1\xb2\xbb\x8c\xff\xa9\x5d\xc6\xff\xe7\x76\xd9\xd3\x22\x31\x2f\x87\xee\xba\xbe\x0f\x27\xb3\x9b\x06\x29\x7b\xf6\x02\xac\x4f\x75\x86\x7c\x67\xfd\x4d\xbe\x77\xc2\x6e\x87\x1c\x05\x4a\x42\x1b\x53\xa1\x9b\x10\x0c\xc6\xb9\xc2\xe4\xda\xb9\x32\x91\x13\xfb\x64\x28\xd7\x70\x32\x0b\xad\x10\x42\x12\x10\x54\x4e\x64\x6a\xea\x30\x2b\xac\x1f\xb2\x9c\x19\x7d\x58\xe1\x5c\x82\x49\x6d\xfd\x64\xb6\x7b\x1c\xd7\x7e\x29\xd5\xf3\x9a\x36\x15\xaa\x71\x5e\x9b\x09\xaf\xfb\x16\x85\x33\x48\xe4\x5b\x9d\x76\xc9\xb2\x37\xea\xc9\xaa\xdf\x99\xb7\xd8\xe6\xcc\x3b\x5b\xf6\xbb\xf3\x16\x5f\xe0\x1b\xde\xff\xdd\xd6\x0f\xd6\x6b\x24\x87\xa0\xf7\x2b\x21\x6a\x4c\x96\xfd\xa1\x27\x46\x93\xaa\x1a\x13\x83\xf3\xa4\x7b\x7d\xd6\xb9\x93\xd3\x63\x6d\xdc\x63\xcf\x20\xc7\x82\xaa\x0e\xb4\xd8\x90\xd2\x85\xf1\xaa\x55\x64\x41\x04\x29\xf4\x6c\x97\x69\x51\x98\xd8\x26\xe8\x0d\x5c\xae\xd7\x2d\x68\xf4\x7a\x5d\x55\x73\xd4\x3b\xa4\xc6\xeb\x5a\x2f\xa1\x95\x5e\x4e\x3d\x85\x22\x49\xab\x6a\xbd\x3e\x30\xb9\x24\x11\xe4\x0c\x2c\xb1\xf1\x1c\x7d\xd5\xf8\xde\xe1\x2e\x5d\xf4\xbb\x4b\xf7\x4f\x76\x5f\xa1\x7d\xa9\x5b\x9c\xa4\xef\x6c\xdc\x1d\x2f\xd1\x16\x77\xe5\xa2\xd7\x5d\x59\xc5\xee\xca\x38\xff\x5c\x67\xb6\x7f\x4b\x92\xbd\x4a\x45\x47\xef\x53\x62\xe2\x36\xb0\x20\x6e\x39\x95\xc4\x6f\x62\x5a\x13\x41\xe5\xbf\xd4\x08\x41\x87\x53\x4b\xdd\x3e\x43\x4b\x7c\x53\x94\x33\xab\x8d\x3c\x08\xe7\x32\xff\xa1\x71\xfe\x5d\x52\xaf\xb8\x96\xd6\x74\x03\x58\x27\xd4\x07\x7f\x2d\xa9\x21\xa8\x97\x94\xa0\xbb\xa8\x0f\xfe\x4a\x32\x83\xff\x5f\xa2\x32\xdd\x1d\x4c\xce\x68\xbb\x24\x1c\x17\x94\x50\x19\xdc\xa1\x2e\x1d\x42\xe5\xa9\x8b\xae\xfa\xec\xcf\x51\x97\x9e\x42\xd1\x2a\xa5\x2e\x25\x39\xfb\x13\xd4\xc5\xc1\x73\x7d\xc1\x88\x3a\xa4\x87\x2f\xa1\x2f\xae\xd8\xde\x64\x24\xa0\xa9\x5f\x41\x66\xda\xe2\xb6\xbf\xb5\xa5\x7e\x09\xb5\x09\x30\xc9\xe2\xdd\xfa\x55\xeb\x37\xfd\x7e\xef\xfe\x83\x98\x60\xf5\x8e\xa4\xaf\xde\x44\x76\x4b\x78\xd7\x2c\x2b\xa3\x44\x98\xed\xf5\xfa\x8e\x86\x0e\x3f\xdf\xd0\x3f\x5f\x93\xee\xd2\x17\xd0\xd1\xb3\x3e\x3a\x7a\x96\xd0\xd1\xd5\xff\x1f\xc7\x06\xc8\xbb\xe3\xd6\xdf\xc6\x9c\x79\x60\x68\x9c\x08\x31\x56\xc0\x98\x19\x0e\xb3\xd7\x3c\xd6\x84\xa1\xc8\xb2\xa1\xd7\xf1\x34\x59\x76\x00\xfe\xc9\x64\x38\xf5\xac\x76\x85\x67\x22\x3a\x56\x5e\x16\x6d\x60\x1a\x7b\x95\x5b\xf4\xef\xee\x5e\x42\x0e\x57\xf1\xd6\xf0\xc1\xca\xfc\xc1\x75\x53\x2c\x5b\xb4\xac\x38\xc8\x1d\x46\x76\x8b\x95\x0a\x9a\x09\xaf\xbc\xe4\x61\x5e\x42\xa2\xd4\x72\x68\x6e\xa5\x13\x69\xf2\xa4\xf7\x56\x06\x33\x25\xe8\xf6\xc4\x97\x14\x98\x59\x17\xfd\x21\x45\x94\xd3\x6b\xda\xcb\x87\xf9\x79\x83\x26\x24\x4d\xed\x24\x18\xfb\x63\x1b\x2a\x25\xf7\x8f\x59\x66\x3f\x77\x27\xae\x9e\x02\x63\x4a\x1f\xbb\x84\x58\x8b\xee\x82\xfc\x56\x90\x17\x05\xf9\xa9\x20\x3f\x16\xf4\x36\xd1\x6f\x11\xc1\x94\xb8\x81\xfb\xfb\x69\x60\xef\xfd\x7d\x11\xdd\xf4\x91\x86\x3a\xb1\x9f\xaa\x48\x4b\x4b\x0a\xfa\xab\x37\xbb\x24\xd2\x0a\x4d\x48\xf4\xaf\x24\xbc\x5e\x23\x41\x27\xfa\xf4\xda\xcb\x0a\xdc\x5e\xb6\xb3\x56\x80\xed\x00\xcc\x88\x39\x92\x74\x38\x49\xa4\xc1\x07\xf7\xbd\xb5\x48\x8b\xc9\xd0\xd9\x26\x2d\xd8\xeb\xf8\xcc\x5e\x47\xad\xd7\x43\x93\xe0\x43\x72\x14\x3a\xd7\x87\x8b\x4a\x7e\xef\xb3\xa0\x62\x4d\xa7\x60\x4b\xff\x6b\x45\xa6\x59\xd1\x8a\xb6\x26\x1c\xa6\x0d\x8a\xd9\x96\x4a\x50\x05\x3e\xfd\x7a\x48\x1b\x32\x49\x1c\xcd\x15\xd8\x1a\xa0\xbd\xcc\x8c\xa2\xd1\x65\x06\xc8\x61\x51\xab\xe7\xce\xd8\x1c\xfe\xcf\xed\x2f\xe7\x9a\xd3\x9a\xde\xb3\x19\xf6\x0a\x8b\x0a\x5c\x7d\x63\xcc\x0d\xc4\x75\x8b\x24\x69\x3a\x7e\xef\x8a\x54\x2d\xc0\x46\x67\xb5\xff\x58\xf8\x4d\x52\x11\xee\x14\x34\x0d\x6d\x7d\x83\x3a\x9f\x58\x09\xd7\x7c\xd4\xaa\xf6\x20\x86\x4c\x6b\xa5\x94\x4e\xed\x2d\x84\xc6\x6d\x43\x22\x61\xd7\x28\x62\xc6\xb7\x8a\xc6\x97\x1b\x98\x90\xf8\x92\x60\xfb\x10\x83\xaf\xe2\xd7\x0c\x30\x86\x16\x9a\x47\x3d\x3d\x16\xf3\x81\x4a\x37\xde\x72\x86\xa5\xab\x8d\x13\x49\x65\x3a\xde\x8d\x6e\x61\xa3\xe9\x6d\x6a\x33\x12\xb4\x92\xfb\x91\x6f\x48\x7f\x68\x82\xc9\x5d\x33\xc2\x49\xe3\x6d\xfc\x63\x02\x17\x4c\x0f\xef\x92\xb0\x68\x86\xf8\xa6\x3a\x6b\x87\x9d\x7c\xfd\x6a\xf6\x6b\x91\x44\x3a\x10\xb7\x18\xf1\xff\xcb\xcb\x9d\xc7\x8a\x18\x57\xd1\xd7\x4c\x42\xb0\x2d\xee\x1c\x67\x33\x3f\xf1\xcc\x04\xe1\x5c\x7a\xf4\x6f\xc9\x16\x71\xfe\x23\x55\xea\x07\x40\x6f\x2b\xf9\xb4\x28\x2f\xaf\x0b\xb1\x90\x10\x4b\x41\x1f\x8f\x15\x3f\x6f\x0d\x02\x72\x41\x54\x51\xd5\x39\x87\x3f\x6d\xf7\xf2\x09\x24\xbc\x6a\x16\x2c\x6f\x36\x39\xaa\xc6\x41\x51\x30\x56\xbe\x30\xd3\x1b\x63\x10\x09\xb6\x49\xfa\x43\xca\xed\x43\x5b\x24\x9d\xd8\x24\x5d\x28\x0d\xb9\x8d\xbf\xc7\xe7\x48\x7a\x78\x34\x80\x53\xe5\x3d\x74\x20\xd8\xa4\x2e\x47\x9f\x21\x4e\x29\x1f\x2d\x6b\x7b\x74\x20\x11\x9c\x3a\x18\x63\x41\xa7\x99\x58\xef\xc5\x4a\xb6\x07\xf7\x22\x93\x77\xbb\x4a\x1f\xdc\x0b\x71\xc5\xed\xb1\xc4\x72\xb3\x42\x9d\x4f\x4f\xbb\xe4\xbc\x73\x93\xbd\x3c\xbd\x83\x9a\x75\x74\x93\xbc\x4f\x35\xc9\x1d\xab\x15\xda\x15\xda\x22\x0b\x2d\x55\xf4\x14\x92\x26\x52\x8e\x09\xaf\xfc\x86\x03\x38\xd0\xc4\x73\xc9\x51\xb2\x5b\x16\x7b\x2e\x31\xe2\xf7\x7d\xe4\xb9\x04\x32\xbe\x8f\xe7\x1c\xfa\x2e\xb1\x5e\xdf\x25\xe6\x7d\x97\x58\xeb\xbb\xd4\x16\x10\x04\x57\x61\xa9\xdf\x92\x6f\x76\xb0\x87\x37\x22\xa3\x53\xdd\x0e\x73\xe2\x8a\x0e\x05\xe9\xdb\x67\x46\x4f\x6a\x2f\xb7\x1b\x1f\xdc\x53\xc0\x4a\x1e\xc1\x94\x72\x37\xa5\x61\x7c\x85\x21\xa5\xdc\x23\x5a\x21\x41\x79\x80\x16\xe5\x59\x89\xdf\x2a\x24\xb0\x09\x5f\x80\xc1\xcf\xcf\x8d\x02\xf7\xae\x6b\x0d\x9e\xa3\xc6\x57\x10\x5e\x71\x01\x00\xa9\xff\x24\xa0\xf9\xf0\x92\xfc\x5c\x20\xcd\xb6\x01\xa9\xaa\xe2\x78\xa2\x6e\x23\xba\xe6\x1b\x12\xdc\x5b\x89\xeb\x4b\x33\x8b\x20\xf2\x04\x6d\xb6\xf6\xa7\xbd\x88\x6b\xac\xf7\xae\xce\xed\x9a\xd9\x84\x54\x92\x36\x7a\x77\x6e\x4c\x53\x27\x96\xa6\x26\xad\x55\xcd\x39\x53\x17\x4c\x8c\x72\xd7\xa3\xd6\x66\xc2\x70\x5e\x1d\x1f\xcb\x9e\x69\x6c\x49\x69\xc2\x4f\xff\x50\x24\x20\xdf\x46\xcc\x8d\xa2\xcc\x24\xe1\x78\x1c\x1c\x75\x6a\xc9\x5f\x9d\x41\xf8\x6c\x01\x56\xfb\xc2\xf3\xee\x49\xcc\x20\x9e\x86\xb8\x6f\xeb\xb5\x1f\x04\x3b\x2b\x45\x9d\xd8\x6f\x01\x2a\x42\xcf\x41\x33\x8d\x9a\x75\xf1\x93\x18\xb3\x30\x9d\x3b\x0d\x1c\x1c\xf6\xde\x7e\xc4\xdb\xb5\x06\xdb\x31\xd8\x3f\x70\x3b\xe6\xa7\xaf\x87\x51\xea\xd6\x82\x83\xa2\xa3\xf5\xb9\x75\x3e\xfe\x0a\xf2\x4d\x8c\xe2\xd8\xbe\xfd\x5b\xd7\xd8\xc4\x1c\x08\x76\x63\x5e\x54\x8b\x05\xe3\xa3\x1c\x8c\x01\x34\x8d\x6f\xfd\xf5\xc2\xd5\x1c\x62\xcd\x85\x00\x6b\x9c\x26\xc0\x72\xbc\x8d\xd2\x61\x8e\x25\x2d\x28\xc6\x3d\x89\xc3\xed\xd6\x75\xb1\x94\x6c\x31\xca\x79\xda\x02\xb1\x85\x36\xf0\xa8\x05\x62\x0b\x25\x10\xf3\x36\xf8\xb9\x29\x38\x6a\x92\x79\x8e\xda\x95\x8b\x78\xc0\xdb\x41\xfc\xa6\x08\x43\xe1\x45\x0e\xe1\xa7\x0d\xb2\x3e\xbf\x59\x76\xd5\x20\xec\x2d\x2b\xfc\x74\x38\xd9\xf8\xde\xe4\xd1\x83\x0c\xcc\x89\xd2\x88\x1a\x6a\xfd\xe0\x1e\x61\x21\xc8\xd3\x7e\x5e\x9d\xa1\xa7\x15\xc2\xe4\x55\x83\x30\xd1\xc7\x23\x8a\x0a\xc5\xf6\x88\x4c\x01\x20\xef\x07\x2e\xdd\x5b\xea\x99\x59\x4b\x23\x9b\x0d\xbc\x90\x49\x5b\xf5\x74\xdf\xbd\x91\x9a\xe8\x63\x02\xed\x4e\x6a\xff\xb2\x5e\x4c\x1f\x25\x45\xb5\xaf\xee\xb9\x37\xd0\xc9\xe0\x93\x89\x7b\xa1\xda\x76\xc5\xe6\x43\x83\x64\x72\xfe\x12\x79\x38\xdc\x02\x40\x49\xce\x88\x6c\x56\xa2\x64\xb9\x22\x52\x15\xe5\x65\xfe\x17\xa4\xf0\x66\xf3\x6b\x41\x63\x0b\xbc\x76\xb5\x27\x4c\x06\x37\xe4\xfb\x3e\xb5\x20\xa4\xeb\xf5\x03\xf7\x88\xd9\xb8\x58\xea\x5d\x0c\x46\x41\x28\x30\x2d\xc3\xfe\x8e\xf0\x9e\x03\x2f\x6d\x2f\x83\x1d\xe9\xe1\xf1\xd1\xcf\x61\xf1\x76\x8f\xfe\xe0\xe4\x8e\x0e\x7e\xde\x7b\xf0\x73\x7f\xf0\xf3\xf0\xe0\x77\x86\x46\xfe\xfd\x86\xa7\xe7\x3e\xf7\xec\x4a\x5b\xf4\x66\x43\x7e\x0b\x46\x0a\xdf\x6e\xc8\x8b\x78\xe4\x1c\x9e\x9e\x63\x9a\xe2\x3b\xcf\xea\x0c\x15\xad\x6f\x17\xc0\x0b\x85\x2a\x28\x87\x16\x90\xb8\xd0\x5b\x36\xdd\x62\x08\x8c\x2a\xbe\x5c\xa9\x51\x5e\xd0\x0f\x0c\xd5\xa4\xc0\x44\x98\x27\xa1\x73\x1e\x1d\x87\x54\xa4\x59\x82\xe6\x2a\x2f\xe8\xef\x3e\xef\xef\x5b\xf2\xda\x98\xec\x79\x61\xc2\x0e\x16\xc4\xae\x18\xeb\x9f\xa2\x3f\xb5\x31\x67\xd2\x17\x69\x49\x1e\x27\x35\x2f\xe8\xa5\xaf\xf7\xb2\x5b\xaf\x5b\xbf\xfd\x6a\xc7\x86\x3f\xab\xab\xf2\xb2\x1f\x7a\x56\xb4\xaf\x51\x3d\x6e\x78\xa9\x9f\xe9\x3b\x2d\xb0\x34\x02\xc9\x41\xc5\x07\xcf\x0d\xe6\x28\xb1\x5c\x49\x01\xae\xd4\x62\x7c\x51\xc8\x37\xd7\x5c\xcf\x07\x13\xea\x06\x49\xac\xb9\xd8\x9e\x44\xb3\x3c\x8b\x23\x79\x8c\x0d\xe8\xc7\x4d\x0d\x61\xd7\x4d\x94\xc6\x52\xd7\x50\x9b\xd7\x75\xfa\x79\x09\xaa\xa2\xf5\x1a\x71\x83\x68\x7b\x54\x1e\xd3\xd1\xc8\x6c\x82\xd1\xa2\xe0\xe7\x4c\x34\x2b\x59\xdf\xbc\x67\xea\x05\xe7\x4c\xfc\xf8\xe1\xd5\x4b\xdd\x75\x99\x65\x23\x27\x3e\xb8\xdf\x72\xb5\x5c\x0a\x26\xe5\xb3\x38\xd6\xfb\x2f\x85\xe0\x16\xf4\x36\xcc\xf5\x23\x28\xcb\xaa\x86\x27\xef\x8b\x95\x6a\xbe\x87\x38\xf2\x26\x01\x2d\xba\x5d\x9e\xb3\xf5\x1a\xe9\xd9\xc1\x60\x1f\x0b\x88\x2a\x26\xb0\xa7\xb4\x12\xea\xcc\x8f\xad\x70\xa8\x58\xe2\x48\x1e\xeb\x65\x5d\x5b\x71\xb9\x98\xeb\x21\xb1\x6b\x83\xf4\x8e\xf6\xca\xf8\x07\x5a\xd6\x63\xe5\x54\x69\x35\x4e\xc7\x59\x17\x6b\x28\x91\x19\x6d\x3c\xec\x19\xe9\xf5\x7a\x95\x65\xab\xbe\xf4\xbe\x19\xf0\x85\xad\x70\xcf\x37\x59\x56\x1f\x95\xc7\x43\x4a\x57\x47\xe5\x71\x77\x0a\x75\xaa\xbd\x90\xd4\x6f\xfc\x70\x69\xde\xc5\x0e\x13\xd6\xcb\x6d\x75\xf7\x44\x53\xf0\x0f\x5d\xd1\xd5\x7c\x35\x3e\x39\xb9\x50\x57\xb5\x1b\xae\x9a\xd6\xf3\x3a\x49\xb3\xa3\x64\xfc\x29\x57\xc6\x10\x3f\x9a\x9a\xd1\x68\x67\x85\x71\xde\x2e\x1c\x28\x1f\x60\xd1\xd6\xeb\x2e\x36\xf2\x2a\xcb\x1c\x56\xcd\x30\x34\x73\xe8\x2f\x37\xff\xf7\xac\xbf\xde\xe5\x86\x7c\xd7\xde\x72\x54\x11\x89\x09\x5b\xaf\x6d\xbb\xcd\xc0\xf6\x2c\xc4\x15\xc6\x1b\xde\x19\x05\xbb\x6a\xb4\xc8\x5d\x51\x46\x12\x2b\x9d\x0a\x67\xd9\x5f\x0b\x38\xe7\xc8\x4f\x5d\x72\x8d\x6f\xb9\xe1\xb5\x4d\x1e\x60\x54\xfe\x51\xf4\x9a\x83\xfc\xc2\x8a\xcb\xf7\x4c\xcd\xed\xdf\xfc\x3d\x53\xad\x12\x9a\xc9\xd8\xf6\xc9\x1c\xb4\xc4\x5e\x32\x94\x97\x41\xb0\x3c\xde\x42\x8b\x08\xfa\x17\xc4\x5b\xf8\x7b\x9e\x65\xdf\x58\x33\x36\xc3\x3f\x1a\x5c\xb1\x96\xb3\x9f\x52\x6f\x06\xfb\x0d\xf2\xa8\x2a\xe2\xe6\xb6\x6c\xb8\x6c\x6a\x36\x66\xc0\xf1\x28\x6c\xbd\xaf\x1a\x7c\x2b\x99\xd2\x2c\x74\xb3\x52\x28\x0c\x91\x6b\x58\xa4\x66\x13\x05\x13\x56\x32\xbc\x14\x10\xec\x2c\x14\x12\x70\x04\x7f\x17\x62\xb5\xea\x06\x38\xb7\x48\x1f\x33\xf7\xa5\x8d\xfd\x01\x3b\x26\xf1\x7b\x6c\x81\xa1\x65\xc4\x87\xab\x80\x89\x9c\x78\xb0\x1c\xf3\xf7\x7e\x2e\x24\xda\x23\x13\xa2\x42\xb1\x6e\x30\xd5\x3c\xe1\xde\xfd\x07\xa1\xfe\xbe\x8d\x73\xda\x5a\xb5\x26\x96\x6e\x1d\xe5\x95\x32\xce\x2b\x41\xd4\x8a\x2d\x17\x5f\x28\xc5\x27\x36\xa6\x05\x73\x1e\x98\x19\x70\x0c\x67\x5d\x1a\xc8\xa2\xaf\x38\xaa\x36\x41\x6f\xf6\x73\xcb\x86\x5a\xdb\x73\xcb\x15\x9a\x9e\x7e\x97\x27\xf2\x69\x12\x6a\x7d\x3f\x9a\x4b\x21\x7b\x20\xe9\x63\xb3\xc4\xf0\x42\x7e\xce\xc7\x89\xff\x32\xf6\x00\x01\xd4\xd8\x94\x83\x3b\xbf\x91\x4d\x91\x01\xfd\x62\xd8\x39\x01\x0b\xe7\xb4\x3b\xf3\x4f\x34\xf2\x26\x1e\x42\x80\xc5\x06\xe1\x4d\xf0\xbd\x32\x4a\x0b\x31\x36\xee\xd6\xa4\xfd\xb6\x41\xd8\xc0\x74\x05\xde\xe5\xc2\x46\x68\x6e\x11\x56\x7c\x17\xed\xfa\xe9\x5b\x9e\xcf\xca\x2c\x7b\x56\x22\x2d\x90\xdd\xb1\xba\xee\xf9\x55\x16\x01\xf8\xa7\x46\x0b\x3c\xb0\xc6\x0e\x7c\xb7\xdb\x28\x99\x30\x4e\x3f\x35\xe8\xd1\x77\x8f\xf9\xfc\xd1\x77\x39\x8f\xe2\x52\x1b\xbc\x0a\xe1\xbc\xf8\xc1\xda\xda\x0e\x5b\x08\xae\xc0\x3d\xf6\x02\xec\x6d\x8e\xdc\xb6\xaa\x60\x5b\x35\xa4\xc2\x1b\x6f\x4b\xed\x50\x53\x80\xb3\xd4\xdb\x39\xda\x1c\x4a\xea\x9e\xf7\x59\xa4\xf0\x78\xb5\xc7\x86\x01\xfc\xca\x98\xe5\xc4\x62\x01\xec\x73\x7b\x5f\x9d\xee\x28\xb5\x25\x9c\x88\xea\x2d\x19\xf5\x10\x8a\x0d\x60\x48\x87\x7b\xfb\xbe\x69\x7e\x98\x74\x2f\x2f\xdd\xa4\x07\x0b\xa1\x8a\xe8\x56\xab\xaa\xf4\xea\x3e\x6e\x30\xf1\x5a\x7d\x54\x6f\x60\x9c\x04\x2c\xc6\x26\x45\x2a\x1c\x9b\x96\xd8\x4b\xc6\x1e\x2e\x36\x29\x8d\x8b\x16\xeb\x38\xd2\x56\x04\x89\xdc\x7b\x2e\x55\xba\xfb\x01\x70\x8c\x0c\xbc\x89\xee\x53\xef\x9b\xb0\xdf\x3e\xde\x73\x8f\x01\x22\x0c\x7c\x65\xfd\x01\x5a\xda\x1e\xfa\x5a\x58\x60\xac\x42\x57\xd7\x3a\x98\x78\xd3\xfe\x00\xd7\x29\x21\x39\x13\x8c\x37\x8e\x76\x87\x61\x27\x08\xef\xb8\xef\x08\x3a\x9c\xce\xba\xa4\xee\x5e\xae\x68\x72\x17\x6c\xec\x4a\xef\xa6\x75\x53\x8c\x37\xd3\x07\x19\x0f\x89\x3e\xfa\x89\x21\x88\x8b\x10\x5e\x9b\x64\x74\x77\xfa\x1d\x9e\xb1\x5c\x59\x25\x25\x9b\xcd\x82\x30\x72\x5f\x20\x3a\x16\x12\xb9\x1f\xd8\x45\x68\x6b\xd1\x05\x5b\x19\xd2\xdc\xc3\x7d\x81\x1c\x39\xbb\xdf\x8a\xc1\x0f\xda\xc7\xe9\x43\xf7\x6c\x1b\x12\x74\xe2\x5c\x61\x27\x05\x0f\x42\xe7\x72\x2b\x22\x9b\x79\x37\x63\x1e\xe4\xdb\x2e\x53\x6f\x4c\x58\xf2\xb8\x06\xe3\xb0\xd0\xca\xa3\xae\x8f\x1b\xb7\x70\x1a\x33\x78\xe6\xf6\xe7\x3e\xc4\xb8\xf5\x3a\x00\x78\x04\x2f\x71\x2b\xde\x42\x38\x20\x5f\x58\xde\x84\x88\x8f\x5c\xaa\x82\x97\x06\xc1\x46\xb3\x15\x1e\xee\x44\xce\x24\xe5\xe4\xa1\x89\x97\xaa\x70\xeb\x4f\x55\x05\xf8\x76\xfa\x7b\x26\xec\x29\x8a\x4a\x22\x71\x5e\x75\xd3\x1c\xe3\x11\xbd\xd0\x4c\xba\xd1\x46\x88\x39\x38\xc0\xa0\x32\xaa\x06\x55\xb4\x0c\x6a\xc2\xe9\xd7\x25\xc4\x34\x2a\x71\xa4\xea\x90\x6d\x68\x9a\x92\x96\x36\x2e\xd6\xbb\xa6\x81\xf0\xe1\xb0\xaa\xc3\x68\x5d\xa5\xb7\x1e\xa8\x9c\xe4\xba\x5e\xa3\x2a\x94\x62\x71\xae\x92\x0a\x36\xa1\x06\xa5\x89\x34\x28\x8d\xd3\xa0\x34\xf1\x6c\x37\x00\xb5\xd3\xd5\xa0\x34\x5b\x60\xdf\x9a\xde\x6d\xd0\xf8\x6d\xd0\x74\x61\xdf\x66\x8d\x7f\xbf\x69\xd2\x95\xef\xde\x40\x33\xbc\x06\xa5\x45\x88\xf2\x67\xb7\x57\x6c\x12\x08\xa3\x66\xec\x32\x4c\x23\x86\x12\xdf\x4a\x5a\x39\x6a\x65\x6e\xbe\x66\x51\x03\x65\xaa\xdb\xd6\x34\xc9\xa9\x52\x04\x95\xa1\xe5\x68\x44\x93\x1a\x4f\x8f\x06\x2c\xa1\x48\x9a\xef\x88\x29\x52\xe3\x29\xd2\x80\x6d\x24\x75\x57\xeb\x1b\x49\x87\x80\x4f\x76\xdf\xc0\xcb\xba\xcd\x50\x99\x9a\x4c\x7b\xcd\xca\x86\xd8\xb9\x64\x45\x39\x59\xd2\x7a\x36\xd3\xab\xbe\x91\xa8\x24\x4b\xb2\xf2\xcb\x67\x69\xa6\x2b\xcb\xee\xc1\x0f\x5d\xc6\x32\x9e\xd4\x25\x59\xba\x5c\xfe\xbe\x70\x09\x68\xac\xdd\x09\x5d\xf6\x4e\xe8\xd2\x4f\xe8\xb2\x9d\xd0\xda\xdf\x85\x2d\x7d\x86\xcd\x32\x9d\x51\xf7\x06\xda\xe0\x66\xb4\x99\xa3\x92\x0a\xdd\xb9\x60\xa4\xf5\xce\x2a\xdb\x5d\x15\x6e\xa9\xb1\x60\x57\xcd\x47\x66\x16\x76\x8d\xf3\x32\x49\xc0\x60\x3f\xd5\xa6\x04\xc5\x06\xbb\xa0\x1d\xe3\x96\x5d\xab\xdc\x46\x10\x61\x5b\x7a\x26\xd2\xdd\x71\xb7\x17\xf4\x95\xfb\xb8\xdd\x29\xbe\x2e\x60\x32\x21\x42\x58\x5a\xcf\x97\x14\x03\x96\x21\xfd\x2a\xcb\xaa\x77\x7e\x2a\x3f\x3f\x55\x8f\xca\xf2\x9e\xa1\x8c\xee\x15\x36\x94\x00\x49\x30\x96\xae\xd2\x09\x73\xd9\xa0\x61\xdd\x2d\x58\x7f\xb9\xf0\x75\x2f\x14\xc2\xee\x91\x87\x1d\x21\x2c\xe2\xda\xbc\x0c\xec\x8f\x12\x3f\x4b\xc1\xe5\x7a\xcc\x3f\x36\x7d\x30\x82\xf0\x2a\x17\x33\x66\x85\x2c\xef\x46\x17\x3a\x2c\x00\x4a\x4a\x87\x6f\x73\x93\x65\x2f\xb5\x8e\x2a\x71\x4c\x05\xb1\xea\x53\xe3\x8f\x34\x12\xc5\xa2\x6a\x46\x06\x8f\xf7\x66\xe9\x3d\x94\x04\xa0\xa7\x66\xd9\x6b\x66\x54\x88\x4f\xb9\x89\xb8\xa9\xe8\x53\x0b\xc4\xdb\xd0\xc9\xac\x79\x5c\x39\xa4\xc6\x66\x87\xee\xf9\x53\xef\xa8\x39\x26\xa5\xfe\xb3\x33\x3d\x9e\x05\x0a\xad\xf9\x25\x47\x5c\x1f\x20\x77\xab\x86\x5e\x30\x9b\x2b\xd6\xe8\xfc\x64\x93\xaf\xf5\x5f\x49\x4a\xa2\x3c\xe3\xc5\x62\xcd\xf0\x4b\xd3\xea\x7e\x95\xec\xf3\xee\x4b\xa7\xf9\xd5\xfc\xdb\xc9\xb5\xd0\xe7\x8e\x41\x74\x19\x5f\x17\xf2\xd5\xaa\x56\xd5\xb2\xd6\xfc\xdc\xd6\x77\x74\x38\x14\xe3\x2b\x9f\x11\x86\x10\xc0\x32\x40\x79\x81\xe7\xcf\x74\x9d\x51\x1e\x46\x86\x53\x9c\xab\x21\x8d\x3e\xf5\x4a\x41\xe1\xbc\xfb\xc0\x41\xbe\xe7\xfb\x38\x03\x19\x4e\x70\xde\x97\xc9\x3d\xce\x8f\x8e\xf3\xd1\x48\xd7\x89\x37\x9b\x50\x3c\x7a\x90\x87\xf8\xa6\x2d\x9d\x49\x4f\x94\x3d\x8c\x67\x61\xac\x1e\x4d\xd8\xa0\xea\x8e\x5b\x53\xc4\xdf\x02\xc4\x6f\x20\x62\x59\x5b\x46\xb8\x17\xb6\xcf\x74\x38\x25\x57\x0a\xa5\xc6\x90\xf1\xe6\xda\x0b\x77\xd7\x14\x2e\xc1\xc0\x38\xcb\x35\x3c\xb6\x50\xd2\x7c\x76\x8e\x34\x0b\x4d\x5a\x83\x82\x77\x92\xfe\x0a\x22\xb5\x53\x34\x79\x2b\x12\x3e\x6b\xaf\x74\xac\xfb\x71\x68\x0f\x4a\xc4\xbc\x3f\xb0\xa2\x26\xb1\x37\x35\xc3\x63\xc9\x94\xd3\xeb\xcd\xab\xf0\x17\x1a\x59\xc4\xe7\x11\x19\xf1\x86\xb3\x11\x19\x55\x57\xcb\x46\xa8\x82\xab\x91\x66\xd9\xec\x6b\x6a\xde\xe6\x28\xae\xb8\x69\x31\x5a\x50\x93\x8a\x9b\xb6\xf2\x96\x09\xca\xb2\x26\x55\x32\xfa\xea\xf1\xbc\x71\x75\xe5\xd6\x48\x08\x3e\xf7\x0d\x78\xc6\x83\xb6\xea\xd1\x77\xb4\xff\x81\x1f\x14\xd6\x3b\xfd\x62\x3e\x1a\xe5\xe9\x35\x8f\x3b\x97\x5b\x4b\x9c\x56\x1f\x15\xcf\xd5\x36\x53\xd0\x10\x65\xf8\x16\x86\xc5\x1c\x34\x0e\x29\x3c\xb4\x8f\xa9\xe2\xeb\xb1\x3f\x61\x50\xe3\x2c\x6a\xf8\xbf\x6a\x51\xc3\xff\xbc\x45\xcd\x2a\x95\xf3\xa7\x8f\xf2\x6e\xda\x77\xe6\x14\xda\xb3\xa7\xd3\xde\xf4\xab\x14\x62\xab\x48\x49\x90\x9c\x20\x5e\xc9\x79\xdb\xd5\x01\xcc\x9c\xae\xa6\x3d\xcf\x9c\xf8\x05\x77\xfd\x21\xc2\x03\x67\xd7\x83\x7f\x14\x10\xe8\xbc\x13\x9b\x41\xb9\xb3\xef\x7d\x19\xe0\xa7\x80\x41\x3b\xd7\x8b\x17\x02\x42\x21\x3e\x2e\x16\x0b\xab\xae\xba\x60\x1c\x09\x22\x30\xe8\x75\xc0\x42\x7a\x29\xb7\xaa\xa6\x5f\x15\xcb\xb9\xfd\x9b\xbf\x2a\x96\xad\x6a\xfa\xcc\xb3\xda\x88\x43\x60\x67\x67\x72\xa8\x8a\x73\xba\x4f\xb8\x8f\x40\x7d\x6b\x15\x9b\x01\xa0\x99\x70\x4a\x68\x8f\xba\xd1\x06\x7a\x0e\x14\x5b\x2f\xe4\x7a\x8d\x5e\x80\xe5\xf3\x4f\x92\x0a\x4c\xac\x3a\x7c\x43\x02\x84\x8f\xc5\x9d\xed\xf0\x08\x76\x10\x23\x71\x9b\x89\xfd\x6c\x8b\x12\xda\xa3\x11\xba\xe6\xb6\xbd\xea\x02\xb7\xd8\xc6\x11\x81\x1c\x28\x59\x44\x7a\x12\x80\x91\xaa\xff\x0e\xb2\x8a\xdc\x2f\x9e\x15\xaa\xbc\xd0\xab\xa1\x77\x78\xfa\xae\x38\x45\x6b\x50\xfe\xa3\x9c\xff\x28\x61\xe9\xbc\x67\x0a\x1d\xa9\x8b\x4a\x1e\xe3\xfc\x47\x69\x56\xc2\x45\x25\xfd\x78\xb6\x18\xf3\xe6\x52\x41\xbf\xec\xb6\x03\xb9\x8b\x83\x5b\xff\xea\x3d\x5c\xf7\x3b\xea\x3f\xe7\xf9\x68\xb4\xc1\x1b\x4c\x38\x74\xff\x42\xd2\x57\x85\xba\x18\x97\xac\xaa\xc9\xa9\xdc\x0e\xac\x7d\x95\xbe\x33\x60\x0a\xaf\x24\x9d\x90\x73\x49\x1f\x92\x8f\x92\x4e\x1f\x90\x1b\x49\xf7\xf7\xc8\x81\x4e\xbd\x96\x74\x4a\xfe\x90\x74\x8f\x9c\x48\xba\x4f\xde\x48\x7a\x8f\x7c\x90\xf4\x3e\xf9\x24\xe9\x03\xf2\x5a\xd2\x57\x92\xbc\xb4\x8a\xaf\x43\xfb\xf7\xbd\xfe\xf0\x77\x49\x0f\x24\x79\x66\x93\x2e\x25\x9d\x4e\xbe\xdb\xff\xee\xde\xf4\xe1\xde\x3e\xf9\x25\xfa\xf5\xdc\xe6\x79\xaa\x3f\x7b\xab\x79\x61\x7d\xde\x4d\xc8\xaf\x92\xde\x9f\x4c\xc8\x6f\xf6\xf5\x0b\x78\xf3\x93\xfd\xf5\xa3\xfd\xfb\x3d\xa4\xfe\x6c\x7f\xfd\x5d\xd2\x47\x13\xf2\x83\xfd\xf5\x57\x5d\xca\xdf\xec\x8f\x6f\x64\x08\xff\xfd\x17\xe9\x97\x13\x7a\x2d\x33\xf4\x51\xae\x6f\xa4\x31\x3f\x91\x73\xdf\xb6\xe9\x2e\xd2\xc7\xee\xb7\xd3\xc9\x7a\x82\x73\x7d\x94\x7d\x23\xe7\xdf\xc8\xfc\x9b\xa0\xfd\x51\x9e\x76\xb3\xfc\x23\x54\xdf\x5b\xfb\x42\x60\x28\x8c\x89\xa1\x33\xfe\x6a\x87\xc1\xee\x9f\xdf\x1a\x04\xa6\x5d\xf0\xc9\xbd\xac\x85\x7d\x79\xf4\x08\xcc\x7f\xda\x0f\x72\xff\xb8\x07\x6e\x10\xaf\x65\xf6\x51\x9a\x1e\xb8\x6f\xde\xcb\x10\x0a\x1f\xb3\xb0\xd5\x7b\xf7\xff\x13\x4d\x77\x10\x0a\x92\xd8\x0e\x9a\xac\xf9\x58\x99\xeb\xa6\x57\x72\xbd\xbe\xcf\xf6\x75\xcf\xf0\xb7\x7b\xf7\xd7\x13\x77\xb0\x3a\xe1\xdc\x45\x45\x78\x94\x07\x05\xef\x87\x14\xff\xd1\xc3\x3c\xaa\x73\x3a\xe9\xa9\x73\x7a\xdf\x0e\x5e\x74\x58\x3c\xb2\x87\xc5\xa3\x07\xf9\xe7\x9b\x7d\x7f\xd2\x36\x31\x2c\xe3\x7e\xce\xe8\xde\x9d\x9a\xc8\xfd\xbd\x07\x38\x8a\x4b\x36\xa4\xf4\xa5\xcc\x32\x88\x2d\x21\xb3\x6c\x77\x97\x11\x06\x7b\x8c\x95\x44\x95\xe1\x12\xe2\xa5\xc7\x87\xbf\x3f\x79\xfc\x57\xa7\xc8\x88\x16\x9d\x3f\xcb\xc0\x84\x29\xba\x9a\x10\x36\x0e\xa9\xd3\xd7\xc2\xc4\xb7\xc3\x08\x88\x59\x7a\x4e\xcf\xed\x9c\x66\x59\xb8\x50\x29\x2c\x54\x59\x22\x86\x73\x54\xe9\x3f\x7a\x2f\x9a\x7c\x3f\x6b\x4e\x31\x37\x89\xe8\x5e\xf6\x5a\x9a\xdc\xeb\xf5\xa3\x87\xe6\x8e\xf2\xd1\x23\x03\xe3\xe0\xe8\xd7\x0f\x72\xfe\x83\x74\xe0\x9e\xe8\x08\x80\xb4\x8e\x71\x8e\x42\x94\xcf\x1f\x24\xa0\x7c\x32\x8c\xd7\x6b\xfe\x44\xe1\x2c\xfb\x41\x02\xd8\x27\x74\x22\xbc\xb7\xb2\xc3\xd2\xb1\x50\x56\x7d\x16\xca\x0a\xfb\xd3\xb9\x63\xa1\xcc\xb3\x8c\xf7\x15\x92\x26\xba\x42\x44\xcb\x9b\x58\x03\xdc\x96\xe1\x11\x59\xd6\x1a\x56\xc7\x21\xd5\x61\x4d\x27\x81\x6c\x4d\xe0\x66\xd1\xb6\xc9\x99\x86\x1f\x76\x9b\xd3\xfb\x86\xaa\xf0\x52\xb8\xd7\xf7\xc2\xf6\xe5\x8e\x8f\x41\xb2\x35\x3d\x32\xcd\x17\x46\xc4\x6f\xa8\x48\xd5\xbc\x1b\xe1\xb3\x26\xab\xb9\xc9\x32\xf4\x52\x2f\x0d\xfd\xf0\x0a\x2e\xd2\x7e\xd7\x3f\xdf\xc8\x2c\xfb\xb1\x44\x0d\x79\x2f\x31\x26\xdf\xeb\x27\x85\x31\x69\x82\xeb\xb9\x32\x64\xb8\xe0\x3a\x44\x37\x93\x2d\xc0\xca\xd5\xd6\x62\x50\x73\x55\xfe\x13\x4c\x3b\xb5\x37\x29\x6f\xcd\x4d\x09\xd8\x7e\xce\x91\xfb\xfc\x6d\xc5\xcf\xcd\xd7\xf8\x89\x47\x36\xfa\x2b\x6f\xae\xb9\xcd\xff\x92\x7d\x64\x35\x9e\xab\x9c\x85\x10\xea\xb0\x92\xdd\xcd\x65\xa7\x21\x98\xf9\x23\x3b\x19\xc5\xe0\x88\x69\xf3\xbc\x15\x55\x23\x2a\x75\x43\x1f\x3d\x0a\x52\x81\xf7\xfb\xbe\x41\x32\xe2\xec\x2c\xc1\xb3\x43\x00\xc3\x41\xf4\x4a\x0d\xbf\x9a\x79\x78\xa5\xc0\x2c\x20\x29\xd8\xdd\x5e\xf5\x37\x73\xd2\xdb\xba\x49\x50\xb7\x00\x4c\x5c\x5d\x53\x42\x1f\x04\x7d\xf4\x28\x9f\x9a\x90\xaf\x7b\x2e\xe5\x7e\x2e\xe8\xe4\x09\x45\x82\x02\xb9\x6d\xe9\xa4\xc2\xbb\x49\x8a\xc0\x78\xfe\xe8\x51\xbe\x77\x7f\xf2\x84\x8a\xf9\xa3\x87\xf9\x7d\xf7\xf8\x5d\xfe\xe8\x7e\x2b\x6c\x5a\xde\xac\xdb\x4e\x00\x29\xde\xd6\x31\x03\xde\xf7\x84\x0a\x6f\xb0\x37\xa4\xf4\xb2\xc9\xb2\x93\x06\x71\xbc\xd9\xfa\x9d\xea\x1b\x10\x41\x14\x4d\x7a\xdf\x33\x5f\xf9\x8f\x0d\x12\xa4\x88\x53\xc9\xad\x3d\xd1\xf2\xee\x80\xe8\xa3\x7b\x83\xd3\x95\xa0\x36\x01\x41\x2b\x5a\x3a\xaf\x79\x08\xe2\x23\xb8\xfc\x6c\x96\xbc\x9e\x1b\x4c\x0c\xb9\x0d\xc4\x0d\x58\x2e\xce\x16\xdc\xb0\x01\x2a\x59\x3b\xa4\xc3\x7a\xa4\xd0\xd0\x7b\xdf\x99\x63\xe3\x43\x89\x30\xd1\x23\xaa\xcf\x26\x0e\x67\xd3\x7a\xbd\x30\x17\xaf\x6e\x9a\x0e\xa5\x93\x4f\x5e\xcb\xd9\x6b\xb9\xa6\x1f\xe5\xac\xbd\xf9\x39\x2d\x11\x9e\xcd\x0c\x5a\xb0\x7e\x34\x54\xc3\x5c\xe2\x96\xf8\xf6\x42\x97\x55\x82\x03\xdd\x3f\x1a\x04\x87\x89\x20\xa7\xd2\x9b\x7d\x34\x86\x68\x5c\xbb\x16\x2a\xfa\x4c\x12\xd7\x80\x1f\xed\x5f\x33\x06\xe1\xfd\xd6\xa1\x74\x01\xa7\x1a\x20\x0d\xbc\x92\x17\x6c\xf1\x4b\x23\x2e\xf5\x50\x98\xb2\x03\x22\xdb\x66\x49\x96\x04\x27\xb5\xad\x43\xd0\xdf\x5b\x86\xd3\xb1\x20\x07\xd2\x30\x0b\xd7\x32\x3d\xde\xef\xe9\x73\x17\xde\xfd\x21\xc1\xd2\xc4\x4c\x06\x4c\xdd\x9e\x1b\x85\x3f\x60\xaa\x02\xc6\xe1\x04\xf2\xba\x6e\xe9\xf1\x46\xc2\x52\x9e\xf7\x00\x36\xbd\xb0\xb4\x07\xf6\x7a\x2f\x15\xa3\xd7\x25\x6a\x30\x26\xd1\x9a\xbd\x94\x59\x36\x9d\x3c\x46\x0d\x7d\x27\x77\x7e\x95\xb0\xfa\x0c\xf8\xdf\x5b\xd9\x7a\x65\xc5\xa4\xd2\x11\x98\x6a\xbd\xae\x9e\xe8\xb6\xa7\x19\x28\x77\x13\x61\xbb\xb3\x71\x46\x1e\x95\x59\x84\x38\xcb\xaa\xa1\x17\xef\x03\xf7\x04\x63\x90\xd1\x2d\x50\xb8\x58\x91\x8e\x15\x34\x00\xa4\xf4\x1f\x1c\xfd\x91\x6c\xad\x66\xeb\x18\xbe\xf9\xf7\x8d\xe1\x5b\xcd\xfc\x00\x1f\xd2\x74\x4f\x92\xf5\xba\xd1\xc3\xf2\x05\xe3\xe2\x86\xa5\xf1\xc3\xd2\xfc\xa9\x61\x89\xe8\xf0\x90\xd2\x5f\xe4\xbc\x43\x6b\x7f\x91\x86\xb6\xe4\xc9\xfc\xcf\x05\x9d\xe4\x5d\xd2\x7c\x29\xf1\xee\x7d\xb6\x4f\x26\x4f\x90\xd0\x0d\x84\x85\xb1\x0b\x3e\x41\x82\x4e\x30\x41\x3c\xfd\x82\xe3\xdd\x06\x3f\xd6\xb9\xa7\x7b\x93\x27\x62\x3e\xdd\x9b\xe4\xf7\x1e\xea\xa7\x7b\x0f\x27\xf9\x74\x02\x8f\xfa\x4f\x3e\x7d\x64\x32\x3c\xda\x9b\xe4\xfb\x6c\xff\x89\x98\xef\xb3\xfd\xfc\xde\x3e\xa4\xea\x3f\xf9\xf4\xd1\x83\xc9\x7f\x5e\x48\x24\xbe\xd5\x4f\x6d\xc5\x1c\xd6\xef\x63\xa1\xc7\xe2\xb3\x2b\x41\x6c\x5d\x09\x1f\x60\x25\x44\x43\xa6\x37\x82\x25\x5b\xcf\x25\xbe\xad\xe8\xa5\xb4\x4e\xfb\xcf\x41\x64\x31\xe7\xd7\x64\x2d\xc7\xa7\x2b\x79\xf3\xaa\xe2\xcf\x57\x86\x1a\xbc\x92\xd8\x0c\x61\xe3\xdf\x3e\x67\x75\x71\xf3\x4a\x12\xa1\x17\xbc\x1e\xb8\x5d\x94\x8c\x55\x85\x77\x91\xce\x9d\x08\x36\x18\x3f\xa6\xcd\x7c\x92\x37\x3b\x62\xb7\x72\x3d\x75\x0b\xf6\x6b\x7a\xdc\xed\xf2\x27\x99\xff\x18\xae\xbd\xad\xd2\xc7\x23\x0c\x34\xd7\x50\xce\xe4\x14\x6a\xef\x8d\x06\xc9\x89\xb6\xe9\x0f\xbd\x25\xef\x64\xd8\xe0\x00\x72\xec\x5a\xc4\x1b\x6d\x21\xba\xba\x7e\xd3\x33\xa7\x12\xfd\x73\xe7\x95\x0a\xcf\x2b\xd5\x39\xaf\x78\xcf\x79\x25\xc2\xf3\xea\x3c\x3d\xaf\x1a\x7b\x5e\x35\xd1\x79\xc5\xc3\xf3\x4a\x24\xe7\x15\xf7\xe7\x95\xb2\xe7\x95\xf2\x67\x76\x20\x97\x1d\xa6\x3d\xda\x7b\x30\xd5\x5c\xe0\xbf\x70\x74\x29\x73\x74\x39\xb6\xfb\x93\x9c\xdb\xea\x73\xe4\x8e\x31\x18\x64\xdb\x9c\x2d\x53\x5b\x96\x08\xdf\xc2\xf0\x4f\xd7\xa1\x08\x98\x65\xa1\x7d\x5a\xdb\x91\x1f\xa4\xb3\x56\xfb\x41\xce\x7e\xf0\xd6\x4a\x3d\x01\x67\x35\x6b\xf3\x33\x84\x32\x87\x16\x28\x08\x39\xab\x45\xc8\xcd\x06\x61\xa2\x27\x32\xd0\x6a\xd8\xae\x78\xeb\x37\x60\xf6\x9f\x42\xec\xa1\x50\xda\x39\x59\xb0\x33\x26\xe0\x29\x16\xd5\x9e\x68\x96\x10\xfd\xd8\xa0\x47\xdf\x45\x86\x75\x5e\x39\x79\xd2\xf0\x67\xcd\xd5\x12\xc2\x12\x99\x95\xa2\x9b\xf3\xbb\xa4\x9f\x64\xd0\x8c\x55\xd4\x0c\xbb\x7c\xa6\x60\x6c\xe7\x54\x84\x60\x78\x55\xf1\xa2\xae\x6f\xf4\xb8\x51\x8e\x03\xe9\x38\xe0\xee\x96\x65\x1a\x0f\xc5\x16\x77\x2f\x2c\xee\xa7\x06\x3d\x7a\x48\x58\x04\x9b\xcd\x41\xb1\x1b\xd6\xd1\x6c\xa9\xe3\xac\xdb\xdc\x8c\xee\xee\x11\x5d\xcd\xb9\xfc\x53\xcd\x5e\x78\x29\x3b\x5a\x99\xde\x9a\xad\x77\x29\x4e\xbc\xac\x1d\xd1\x36\xbd\xfe\x77\xa7\x5e\x74\x89\xe9\xde\xee\x94\x30\x11\xda\x38\x1f\x1a\x17\x0a\x4e\x0f\x65\x62\x85\xc6\x67\xde\xe2\xd4\x1b\x70\x44\x5e\x65\xce\xd4\x14\x34\xc4\x20\xf7\x3e\x6b\xa1\xba\x3c\xf4\x41\x13\x18\xdb\x34\xd6\xfd\x2c\xba\x97\xf3\x1e\x64\xb1\xad\xe1\xbb\x0a\x89\xc4\xd6\x50\xe7\x9c\xc5\x97\x6f\xee\x76\xc2\xf8\x6e\x45\x2f\x27\xb9\xd2\x45\x84\x36\x61\x2f\x25\x65\xe4\x50\x82\x93\xa3\x07\x1e\x01\xad\x37\x79\x2f\xa9\x4a\x94\x9c\xbf\x48\x7a\xf9\x19\xcd\x66\x10\xc2\xa6\x6c\x7d\xb5\x66\x33\x63\x9c\xe9\xa8\x59\x51\x20\xaf\x01\x38\x94\xde\xe1\xcf\x8f\xb8\x3b\x16\x7e\x97\xf4\x1a\xaa\x37\x8d\x9a\xb1\xdc\xed\x4c\x22\xda\xdc\xa4\xa1\x87\x92\x54\x06\x72\x5a\xd1\xf7\x92\x34\x11\x9e\xcf\xe4\xde\x43\xd2\x44\x16\x90\x4d\xc7\xf8\x31\xd0\xa5\xf7\x85\x85\xee\x57\xb0\xab\x0b\xc6\x9d\x33\x55\x45\xa4\xc1\x62\x99\x66\x81\x37\x3d\x29\x5b\x6b\xda\xda\x78\xa2\xc0\xb5\x5b\xd9\x46\xf7\x5c\xd1\x72\x6b\x74\xcf\x15\x76\x9e\x2b\x74\x15\x5c\xba\xb5\x92\xf3\x32\xf8\xd8\xdc\xee\xd5\xed\xb5\xe4\xd2\x43\x50\x64\x19\x1a\x9a\x94\xbb\x70\x5a\x86\x12\x03\x6f\x6d\x83\xca\x9f\xd1\xb2\xef\x16\x8a\x52\x7a\x66\x32\x2c\xdc\x95\xc0\x6c\x01\x37\x01\x05\x26\xd1\x17\x74\x61\x8c\x54\xce\xec\xdb\x59\xab\x29\x2e\xad\x9a\x58\xaf\x88\x32\xc6\x19\x08\x27\x4f\x53\x91\x47\x0f\xa7\x64\xea\x0c\xf8\x70\x68\xf9\xd5\x3a\x66\x37\x06\x1a\xf7\xbb\x76\x60\x2e\x68\x59\x05\x2c\x99\x59\xd3\xb3\x0b\xc8\xb7\x47\x56\x15\x6a\xc8\x05\xde\xa4\xd8\x22\x1d\x35\xef\x80\x6d\x5c\x84\x28\xd2\x58\xe0\xa5\x53\xca\xc7\xcb\x8a\x9f\x3f\x2b\xca\x8b\x70\x54\x4e\xe7\x28\x7a\x05\xa3\xb3\xd4\x0b\xd3\x0e\x13\x39\x05\x85\x62\x01\x10\x49\xad\xee\xb1\xa2\xa7\xa0\x7a\x2c\x20\x3a\x7b\x6f\x6e\x32\xac\xe0\x02\xae\xd1\x23\x06\xa3\xd9\x18\x95\xe0\x15\x3d\x0c\x39\x27\x0e\x58\x75\xb3\xc2\xdc\xcc\x5d\x91\x2b\xbc\x89\x46\xf7\xde\xe4\xd1\x03\x52\x76\xd4\x8b\xbe\xaf\x25\x75\xe1\xb7\xe3\x80\x69\x25\x9e\x55\xd4\x30\x0c\xe8\x1b\xd4\x18\xbf\x8e\xf5\x7a\x74\x30\x80\xbb\x96\x41\xd9\x06\x49\xde\x19\x0d\xa4\x13\x7f\x06\x50\xc8\xc0\x43\x60\x90\xc1\xe9\x4a\x0d\x78\x33\x70\xeb\x72\xf0\xd3\x8b\xc1\x75\x21\x07\x72\xc9\xca\xea\xac\x62\x8b\xf1\x3f\xf9\x3f\xf9\xc1\x62\x31\x28\x06\x8f\xdf\xdb\xb0\x47\x3e\x37\x1d\x8f\xc7\x4f\xda\xba\x06\x17\xd5\xf9\x05\x13\x83\x8a\x0f\xd4\x05\x1b\x28\xc1\xd8\x40\x35\x83\xa5\x68\x3e\x56\x0b\x36\x28\x06\x75\x53\x68\x51\x6b\x50\xf1\x45\x55\x16\xaa\x11\x83\x46\x0c\x96\x75\x51\xb2\x8b\xa6\x5e\x30\xa1\x73\xdb\x6b\xf5\xf1\x68\xe7\x2f\x7a\x74\x37\xbf\xcb\x21\xa5\x1f\x34\xdb\xf1\xbb\xa4\x7f\x48\x4c\x2a\xfa\x97\x02\x55\x06\x5f\x14\xb6\xb2\xa5\xfc\x65\x40\xf9\xf7\x73\xbd\xff\xbf\x64\xa4\xc9\xb2\x42\x25\x39\x93\xa8\x24\x05\x5c\x97\x45\x06\x7e\x53\x5d\x0e\xcc\xeb\x2b\x4d\x21\x6e\x96\x0c\xe2\xfa\x47\x66\x4a\xe8\xc1\xbd\x2c\xa8\x09\x8e\x4f\xcd\x73\xf4\x51\xa8\x57\x5b\xaf\x29\xbd\x8d\xe7\x79\x3f\x6d\x3b\xef\xbf\x3c\x74\xd7\x81\xeb\xf5\xf0\x47\x09\x2b\xf2\x1c\x6b\x01\xff\xcb\xbb\xbe\xe8\x74\x7d\x73\xc7\xaa\xdb\x1c\x4a\x7a\x50\xa2\x43\xe9\xcc\xf1\x3f\xe2\x5b\x45\x3f\xb6\xb6\x01\x56\x3e\x69\xc3\x93\x95\xde\x8b\xa1\x65\x96\x9d\x2a\x37\x60\x9f\x5f\x15\x1e\x83\x6a\xfe\xaa\xc8\x03\x60\xfe\x2b\xc7\x78\x3c\xd6\x32\xdc\xde\x63\x96\x65\xe8\x52\x52\x86\x03\xb3\x77\xf6\xf8\x17\xff\xee\x17\x7d\x82\x3e\x97\x34\xb4\x83\x7f\x05\x72\x0a\x7b\xf2\x54\xaf\xa3\xa7\x32\xc2\xbd\xd6\xcc\xfe\x6d\xa8\x8d\x3f\x94\x33\x7c\x28\xe9\x8d\xe9\xa6\xcf\xf7\xb1\x9b\x2f\xcb\x86\x6f\x34\x57\xd0\x97\xfd\x26\x14\x8d\xca\x10\x42\x99\x30\xf2\x5e\x06\xee\xe5\xb1\x41\x7f\x02\x6c\xe0\x6c\x76\xb2\x0c\x29\x3d\xf2\x9a\x6d\xbf\x92\x91\x73\x14\x09\x34\xd7\x90\xe3\xf6\x50\x52\xe6\x0e\x39\xa5\x8f\xe5\x24\xc6\x5b\x7b\x50\x23\x7d\x16\x67\x87\x32\x5d\xbf\x60\xfe\x6f\x6f\x8e\x89\xd0\x27\x78\x45\x91\x2e\x0a\x47\xcd\x9b\xf5\x58\x02\xee\x59\x8e\xe7\x41\x64\x84\x74\xdf\x85\x7c\x8f\x8d\x00\x9d\x03\x14\xbe\x93\xed\x22\x48\xc4\x86\x51\x31\x94\x9c\xb9\x12\xb1\x00\x88\x22\x05\x9e\x4b\x13\x2c\x4a\x89\x37\x88\xf7\xcc\x8e\xf3\x2c\xcf\xb2\x4f\x05\x52\xce\x09\x90\xfc\x56\x24\x56\x25\xc0\xf8\x29\x4c\x04\xed\x09\x68\xee\x40\x65\xe3\x88\xe0\xe6\x29\xec\xc2\x8b\x02\x71\x03\xc8\x07\x3e\xc7\x16\xd4\xdc\x61\xa8\x77\x70\xcd\xbd\x81\x51\xe5\x0c\xdf\x63\xa7\x6f\x5d\x1d\xb4\x1a\xdf\x4a\x77\x3c\x72\x6b\x12\xdf\x52\x2b\x13\xb5\xad\x32\x84\x6c\x45\xab\x84\x53\x71\xc1\xe7\x8f\x1a\x71\x4c\x2b\x62\x4c\x20\x57\xa4\x76\xe6\x82\x67\xa2\xb8\x62\xa3\xdc\xb8\x8a\x1b\x9e\xcc\xfc\x60\x57\xa7\x6c\x31\xca\x6f\x38\x1a\x69\x12\x3f\x8a\xbd\x72\x46\x9a\xfa\x37\x36\x6b\xb1\x5a\x54\xcd\xc8\x9b\x39\x2f\xe9\x64\xb6\x7c\xfc\x0f\x1f\xc2\x7a\xb9\xb3\x83\x6f\x38\xfa\x07\x3b\x5a\x1e\x27\xa5\x18\xff\x48\x53\x0b\x38\x2d\xa6\xd5\x54\x57\xe7\xb6\x92\xea\xaa\x38\x77\x0d\xad\x2b\x7e\x99\x7c\x44\xb6\x35\xf4\xac\x11\x57\x26\xaf\x60\x92\x29\x9f\x57\xae\x4e\xaf\x2a\x95\xe6\x5e\x30\x55\x54\xb5\x34\x1f\xa8\xe6\xfc\xdc\xb8\x94\x46\x4d\x32\x16\x96\x9f\x18\xe2\x64\x65\xca\xaa\xf8\xc7\xa2\xae\xa0\x6a\xf2\x96\x23\x41\x46\x0d\x7f\x76\x51\xf0\x73\x36\xea\xb5\xb2\x4c\xec\x28\xe9\x6d\x60\x48\x99\x0f\x87\x2b\x6f\xb4\xb8\xf9\xaa\xe2\x5b\x0b\xcf\x5f\xbe\xb0\x71\x91\xa7\x7c\xad\xbf\x58\x1a\xf2\xd3\xe3\x1b\x2d\x35\xe3\x54\xd2\xd5\x91\x3c\x26\x89\x5d\xaa\x73\x31\x6e\x8f\xb6\x72\xce\xc7\xba\x39\xd6\x65\xd8\x46\x37\x5c\xd2\xa3\xf6\x4b\x52\x1e\xe3\xdc\xf9\x21\x07\x5f\x6a\x81\x3f\xfe\x74\x34\xda\xe9\x7e\xad\x13\x8f\x71\xde\xe3\x55\xec\xb6\x66\x09\x5e\xc5\x82\xc8\xd6\x15\xa0\x8e\xad\x64\x4f\x18\xe2\x98\x1c\xc2\x60\x41\x50\x9e\xde\xc1\x34\xb9\x9e\x42\x84\xe3\x9e\xc9\x8c\x50\x16\xb6\x81\x1a\x04\xe8\xc4\x01\x6a\x01\x8f\x50\x0b\x04\x5d\x92\x2a\x62\xed\x45\x10\xfc\xd4\x78\x26\x03\xeb\xbd\xa2\x92\x70\x5a\x91\x5a\x9f\xf7\x14\x2c\x3a\x5a\x33\x7b\x91\x8b\x71\x73\xcd\x99\x78\xde\x94\xab\x2b\x2d\x69\x96\x94\xd2\xb7\x6c\x7c\xa1\xae\x6a\x98\xc1\x77\x0c\xad\x30\x0e\x93\xe7\x23\x59\x8a\x6a\x09\xe2\xd8\x6a\x8e\xd0\x8a\x2e\xad\x33\xe6\xa1\xb1\x05\x43\xa3\x45\xf5\x71\x84\xf1\xb8\x72\x76\xca\x74\xf4\xd8\x7c\xf3\xe4\xf1\x3f\xbf\xb5\x4f\x23\xb2\xa4\xab\xc8\x6e\x7f\x15\x46\x08\xc2\x79\x77\x9d\xf0\x71\x25\xe7\xcb\x4e\x75\x2b\x72\x5b\xc9\x5c\xbf\xdc\xe0\x1c\xf5\xbc\xc7\xc4\x8d\x3f\x35\x2e\xf1\x2b\xba\x24\xbc\x35\xf6\x6d\xb7\x10\x1d\x4e\x00\x63\xe7\x0f\xcd\x47\xac\xe0\x81\x9a\xdf\x18\xe3\xbc\x53\xf4\xeb\xf7\xa8\xd4\xfb\x40\x17\x88\x81\x68\xd6\x64\x05\x44\x93\x93\x5f\x0b\xc4\xe9\x8a\x00\x6c\xd4\x70\x8a\x89\x0a\x4d\xfe\x80\x73\x35\x12\xdd\x53\x8e\x24\xa9\xfc\xa2\x93\x7f\x86\xd6\x12\x41\xab\x2f\xa0\xb7\x82\x4e\x66\x22\xa0\xb5\xc2\xd3\x5a\x01\xb4\x36\x29\xa5\x97\xde\xa6\x55\xfd\x39\x9a\x9b\x96\xf2\x79\xba\x9b\x7e\xb1\x85\xf6\x76\x9a\x17\xd0\xdf\xca\x22\x9f\xc0\x53\x0f\xb1\x2b\xb7\x91\x4a\xb7\x5f\x01\x0b\x25\x85\x34\xfb\x42\x32\x5d\x05\x64\xda\x02\xa3\x54\x1d\x60\x94\xaf\x69\x54\x42\xbf\x2b\x0b\x99\xf2\x35\x9d\xf3\x70\x40\xb4\xda\x3c\xd7\xcb\x50\x60\xe2\x94\x15\x44\xd3\x8d\x25\xe5\x33\x23\xba\x0b\xd0\x93\xd7\x9a\xf8\x5f\x68\x89\xff\x22\xa5\xa4\xce\xf7\xfb\x94\x5e\x1c\xd5\xa1\x17\x43\x3d\xbf\xe4\x68\x49\x4e\xef\xf6\x62\xa8\xe7\xd6\x0b\xe0\x94\x9e\xce\x4f\x63\x48\x0b\x9c\x65\x2f\x98\x2d\x22\x3c\x4a\xea\x9e\xa3\xe4\x74\x8e\xda\x91\x19\x1a\x48\x0b\xfd\xf7\x14\x67\xd9\x4f\xae\x90\xce\x31\x72\x6a\x5f\x8e\x46\x3b\xa7\x5f\x04\x61\x51\x7f\x06\xc2\xa2\x4e\x21\x54\xea\x3e\x4c\x8b\x1a\xdb\x5e\x9f\xc2\xe1\x53\x92\xda\x61\xfe\x9e\x66\xd9\xb5\x6e\x50\x4d\x4e\xc9\x59\xeb\x30\x2b\xb7\x9e\x48\x95\xa6\x31\x5f\x75\x22\xb9\x45\x6d\x2a\xac\x8c\xf9\xa7\x3e\x4e\x25\x53\x07\x4a\x89\xea\x74\xa5\x18\x1a\x41\x32\x1c\xa0\x07\x0c\xd9\x5c\xb8\x77\x03\x08\xf0\x16\xad\x02\x2f\x0a\x3a\x1c\xf2\x8e\x9b\x47\x4d\x79\xe0\xe6\x21\x48\x94\xa7\x06\x37\x0f\xeb\xf7\x13\xb9\x6c\x64\x59\x37\x37\xef\x38\x75\x6c\xc5\x09\xea\x07\x02\x8a\x8f\xd4\x6f\x0c\x25\x76\xa7\xa7\x13\x2e\xb7\x71\xe4\x9b\x24\x8c\xcd\x5d\xee\x20\x0f\x62\x2b\x41\xe3\x45\xd2\x27\x15\xfc\x64\xa4\x02\x9e\xb8\x3a\x55\xed\x85\x58\x17\xa1\xa5\xf2\x4e\x01\x9f\x6b\x82\x4c\x04\x16\x92\x00\x47\x81\x00\x31\x8f\x65\x2d\x80\xc4\x4e\xa0\x30\xe0\xa8\xd3\x82\x95\xf7\x6b\x30\x8a\x5a\x18\x38\x9c\xeb\x02\x08\xaa\x28\xd2\xdc\x86\x6c\xb9\x0d\x99\xcb\x98\xdb\xc0\xf6\x38\xfd\xc0\x3e\x81\xa7\x1f\xaa\x30\xf6\x65\xb7\xc7\x65\x15\x23\x14\x4c\xbb\xce\x2d\x16\x16\xad\xea\x04\x96\xe8\x87\xe9\xbe\x4d\x01\x14\xdd\x45\xfb\x80\x6d\x84\x53\xef\x56\x04\x82\x55\x38\xd9\x70\x0e\x83\x93\xa3\xca\xe3\x61\xc8\x34\xa2\x28\x26\xc2\xcb\x92\x6d\x34\x32\xc8\x17\x7b\x63\x78\xbf\x25\xbd\x1d\x54\xa8\x07\xc7\x73\x14\xfd\xa6\xd2\xc6\xf6\xb6\x3f\x6b\x08\x29\x15\x66\x50\xa1\xe2\x3c\xc9\x6d\x04\x5d\x19\x46\xe6\xc4\x98\x88\x2c\x1b\x56\x59\x66\xb1\x66\x5b\x3c\xe9\xd6\x43\x01\x34\xd3\xc9\xac\xdf\xa9\xa7\xee\xaa\xd9\xe7\x70\xf5\x78\x60\xd5\x76\x27\x12\xe7\x08\x14\x79\x3a\x05\x1e\x4e\xe4\x7a\xad\x5f\xbd\x91\x06\xf6\xf6\x69\x7b\x3f\xff\x52\x7f\xf5\x63\x89\x5e\x4a\xf2\x5e\x82\xa1\xe0\x4b\x49\x9e\x4a\x8c\x31\x26\x48\xac\xd7\x55\x27\xf2\xd7\xbd\x68\x7b\x59\x3b\xde\x87\x79\x8f\x33\x94\xb9\xa1\xe9\xca\xf4\xe6\x2a\x26\x4e\x7b\xe4\x5d\x19\x63\x97\x92\xbb\x94\x16\xd3\x47\xc1\x7a\xb4\x23\x8a\x3a\xeb\x12\xb7\x16\x20\xb2\x1f\x4a\xde\x7f\x5b\xd3\x00\xb1\x18\x5b\x78\xf6\xbf\x15\xc8\x50\x7c\x47\x83\xec\xd8\xb6\x21\xf0\x0c\x14\x30\xef\x2c\xfd\x08\x35\x36\xc1\xe8\x6b\xd7\xe4\x6f\x15\xe2\x18\x1b\x6d\x57\x02\x3a\x4c\x5c\xdd\xde\x83\xbd\xa2\x75\x1a\xa8\x25\xc1\x53\x22\xdd\x78\x41\x5b\x97\xb0\x71\xb7\x4a\x5b\x58\xcd\x30\xa7\x02\x02\x3d\xe1\xf0\x32\xe2\x5c\x75\x57\x3c\x91\x5d\x6c\x0d\xd9\x7b\xbd\x64\xc6\x37\xd0\x8e\xe1\x39\x92\x5b\xf0\xb2\x65\x07\xa4\x98\xc8\x10\x1d\x44\xf6\xe1\x72\xc8\x3e\xc8\x10\xd9\x75\x3d\x95\x5d\xc8\x10\x9c\x6f\x69\x4a\xdd\x97\xda\x6d\x5e\x9d\x24\xf8\xd6\xd6\x0e\x16\x3d\x69\x70\x9d\x50\xf9\xb4\xed\x75\x42\x5a\xe3\x6e\x44\x4b\x80\x70\x5a\x47\x3d\xea\xeb\x20\x10\x55\xfd\x90\xdf\xc6\x2d\xcd\x53\x6b\x6b\x62\xe4\x42\x1b\xda\x9a\x8f\xc3\x9f\x44\xb8\x30\xc8\x5a\x04\x6c\x7f\x6c\x70\xe8\xc2\x3c\x73\x91\x0e\x5a\x0a\xb5\xde\x33\x78\x59\x66\x99\x85\xe0\x1c\xde\xed\xd9\x1d\xb9\x43\x89\x23\x40\xa4\xdf\x2a\xcd\xee\x1a\xfb\xca\x64\x73\x80\x3f\x93\xd9\x21\x13\xbf\xff\x0d\x78\x78\x96\x39\x8c\x58\x9f\x64\xe0\x63\x79\x80\xd4\x7c\xe7\x3e\x12\x9d\x7d\xe4\x3e\x4d\xf6\x50\x15\x22\x0d\x41\x31\xe9\xa1\xe0\xcc\x88\x80\x7e\xfc\xda\x20\xfc\x24\x05\x3d\xcf\xb2\xe9\x63\x91\xd2\xd9\xb8\x87\x20\xd5\xa6\x97\x0a\xbd\x6b\x56\xec\x4e\xf1\x2c\x42\x62\x9f\xa3\x16\x33\x36\x45\x7f\xd6\x6b\xbf\x1d\x14\xd3\x19\x3c\x6f\x41\x65\xeb\xdc\xe7\x74\xe8\xed\x75\x18\x88\xc1\x74\x05\xdf\x4e\xfc\x40\x87\xdd\x42\x1d\x78\x77\xdd\x7f\x70\xe8\xd0\xd2\x23\xbc\x8c\x50\xe2\x3d\x32\xbc\x6f\x01\x09\x07\x38\x1a\x7a\x12\x43\xdf\x92\x2a\x0c\x1f\x62\x16\x61\x45\xe5\x7c\x9a\x55\xeb\xbd\x7c\x9a\x55\x7a\x0d\xb6\xbc\x47\x70\x8e\x7c\xa9\xc7\xa2\x89\x1a\xa4\x8a\x73\xbc\xb1\x48\x69\xd5\x19\x12\xf4\x50\xc2\x0d\xed\x7b\xb9\x5e\x4f\x87\x94\xf6\x3a\x0c\x18\xf2\x5e\x69\xda\xe6\x32\x04\xb1\x20\x10\xa7\x29\x4d\xc1\x4f\x2a\x73\x1d\x8a\x09\x90\xcd\xbe\x32\x6d\x16\xcd\x76\x84\x11\x24\x7a\x57\x45\xb5\x09\xdd\x28\x1d\x5c\x6d\x10\xcd\xd9\x5c\x4e\xb0\x9e\xbb\x35\x77\x55\x14\x52\x7a\x30\x25\x09\x29\xff\x61\x74\x10\x04\xe6\x24\xc1\x84\xb5\xac\x18\x8b\x53\xb7\x05\x2b\x4f\x0b\x8d\x50\x9b\xa2\xa2\x31\x99\x3e\x0e\x2f\x56\xfa\xab\x9a\x6f\xaf\x28\x4f\xbb\x93\x56\x86\xf1\x26\x09\x01\x80\x14\xfd\xa6\x40\xfa\x0d\xee\x46\x12\xca\xe8\xde\xe4\xde\x77\x24\x1a\xe1\xbb\x22\xad\x1b\xcb\x9e\xc4\x6e\x23\xdc\x68\x70\x21\xe4\xb9\xda\x76\x06\x0f\x25\x65\xf1\xc5\xe1\x61\x7b\xdf\x15\x31\x86\x1f\x2c\x12\x4e\x7b\x81\x75\x1d\x59\x14\x26\x38\xe7\xae\x86\x27\x6d\x78\x8f\x64\xfd\xcd\x55\x78\x75\xf8\x47\x50\x18\x78\x3b\x05\xc6\x55\x8f\xc8\x49\xea\x54\x9b\xb6\xe5\xa4\xb5\xc3\x07\xf3\xc2\x2f\x33\x46\x6c\x2d\xd5\x5a\x33\x29\x80\x0f\xec\xb7\x91\x0a\xb1\x99\x52\x80\xf6\xaf\xb3\xb5\x02\x93\x67\x6f\x34\x94\x4a\x80\xdf\x7d\x07\x66\x85\xff\xba\x9b\x08\xd9\x66\x3b\x6d\x8c\xbd\x1a\x7a\x5d\x22\x8e\x5d\xf3\x63\xd7\x1c\xda\x10\xf1\xb8\xcf\x26\x7b\x6e\xf3\x46\x89\x7d\x19\xb7\xf9\xf0\xd0\x49\x0e\x25\x77\x4b\x69\x57\x79\x5c\x90\x3e\x94\xda\xd6\xb4\x56\xd7\x7e\xf3\x07\x86\xd8\x93\x20\x67\x60\xe1\xda\xd2\x89\x36\x4d\xe7\x75\x76\xa8\xe8\x50\xd2\x97\x81\x8b\xaa\x26\x09\x01\x4f\x3e\x77\xfc\x77\x48\x0f\x10\xdf\x42\x10\xc0\xc7\x2c\x22\x3e\x79\x43\x79\x9e\x24\x3a\x2a\xe7\x63\xae\x58\xe3\xc2\x1b\xd9\xb9\x36\xfe\x2b\xa7\x1f\xb9\xbd\xb4\xfc\x89\x1b\x77\x9f\x1f\x39\x92\x86\xb5\xb1\x8a\x9d\xaa\xe1\xef\x55\x21\xd4\xa8\xe2\x03\x89\xcd\xd5\xe3\xad\xd4\x29\xb9\x1c\xc7\x59\x08\xe3\x8b\x30\xf1\x90\x2f\x36\x3e\xb4\xbc\xb9\x7a\x44\xa5\xfe\x97\xaa\x01\xb2\xac\xf4\xaa\x9c\x8a\x5d\xaf\xd7\xd7\x15\x5f\x34\xd7\x06\x50\xd3\x95\xa6\x33\x85\xbf\x4d\x7b\x6b\x23\xc8\xd6\x63\x51\xf0\x73\xf6\xac\x59\x71\x85\x6f\x4b\x5a\x8f\x0b\x5e\x5e\x34\xc2\xdf\x7a\xae\x7c\xd2\x9b\xb3\x33\xc9\x14\x59\xd2\x7a\x7c\xd6\x94\x2b\x09\x59\x6a\xf7\xcb\xbc\x35\x00\xa9\x5e\x73\x41\x96\xfe\xd1\x5a\x3d\x3c\xd7\x95\xf0\x10\xd6\xcd\x68\xf3\x27\x64\x41\x77\xa7\xe4\x42\xff\x77\x4a\x27\xe4\x8a\x4e\xc8\x2b\x2a\x89\x05\xec\x57\x1e\x8e\xca\xdd\x7f\x7e\x9c\xbd\x32\x08\x5f\x13\x03\xd7\xbb\xaf\xe9\x8a\xaf\x6d\xbd\x46\x0b\x7a\xb6\xb3\xc2\x44\xe7\x5a\x9a\x5c\x75\x4f\xae\x0b\x7a\xb6\x53\x63\xb2\x4f\xc3\xf4\x2c\x43\x67\x3b\xf6\x37\x68\x69\xac\xe2\xbf\xe5\x1b\x3f\xd2\x57\xe1\xa5\xcb\x0c\x9f\xd3\x57\xe4\x15\xfd\x38\x0b\x50\xb3\x5e\x01\x64\x96\xe9\x26\xd8\xf3\x9d\x53\xb8\xa0\xdb\xd9\x39\xb5\xd7\x29\x0b\x7a\x86\x89\x4e\x5d\xea\xd4\x2b\x6a\xd4\x9d\x17\x3a\x35\xac\x28\x0c\xcd\x6f\xe5\xdf\x73\x8a\x5e\xd1\x73\x1c\x80\x3d\x6d\x5e\xd1\x8f\x9b\x92\xee\x6a\xee\x65\xb1\x5e\xc3\xdf\x0b\x2b\x26\x98\x55\xb7\x80\x65\x76\x61\x79\x57\x33\x0b\x9b\x52\x0f\xa1\xcd\x30\x81\x0c\x93\x28\xc3\xec\x6f\x9c\xde\xc2\x04\xb3\xc5\x61\xcd\xae\x72\x49\xfc\x32\x7d\xa7\x57\x4e\x5e\x6e\xc8\x47\x4e\x87\x53\xf2\x9b\xa4\xcd\x6c\xd1\x80\x75\xe4\x9b\xd2\xc3\x4e\x3e\x0f\xc1\x2c\x7e\xeb\x50\xfe\xfd\x09\xc6\xb3\x97\x25\xfa\x4d\x92\xe7\x58\x97\xf1\x5b\x28\x97\x6e\xe2\xd3\xf0\x37\x89\x67\x61\x35\x70\xb1\x4a\x19\x29\xdb\x38\x18\xbf\x49\x6b\xda\x7a\xa3\x4b\x6a\x63\x20\x54\x67\x68\xfa\x20\xbb\x01\x85\xf5\x6f\x21\x54\xd9\x68\x84\xc9\x74\xef\x61\x76\x63\x3e\x3b\xd0\x9f\x45\x56\x1f\xb6\xe0\x03\xf3\xfe\x9a\x1e\x00\x5a\xaf\x4d\xbd\xde\x62\xaf\x74\x3d\xbf\x36\x28\xbd\xf9\x75\x44\x3b\xf0\xc6\xe9\xa4\x6f\x32\x34\xdd\x5b\x9f\xab\xf5\x47\x85\xad\x01\xc8\xb9\xca\xa5\x44\xbf\x49\x3d\x0e\x21\xf7\xf1\x7f\xcf\x55\xac\x05\xdd\x96\x8b\xd4\xfa\x45\x60\x30\xa3\x07\x2c\xf8\xf2\xa3\xca\x93\x6f\x3e\xaa\x58\x99\xb3\xf7\xb0\x9b\xe3\x73\xa5\xde\xcb\x3f\x93\xe1\x61\x5e\x4a\x24\xc9\x8a\xfe\x26\x49\x89\x49\x25\xd1\x0a\x6f\xba\x53\xfd\x5f\xb3\x5e\xaa\x33\x74\x4d\xff\xc6\xc9\x01\x90\x6a\x72\x43\xaf\xc7\xc1\x7a\x26\x25\xbd\x1e\xc7\x2b\x9a\x1c\x0c\x29\xbd\xc9\xf4\x5a\xb9\x89\xe9\x6d\x0b\xd2\x3a\x60\x80\xa0\x6a\x6d\xc1\x87\x68\xa8\xd6\xeb\xa1\x09\xac\x6f\x2c\x63\x20\x65\x1f\xb4\x81\x8e\xaa\x80\xaa\xd0\x38\x07\xf3\x56\xb7\x0b\x05\x85\x38\x88\xf9\xc8\x02\x14\x49\x7d\x72\xa8\xb9\x07\x2c\x92\x88\xe3\x7c\x38\x34\x28\xaf\x85\x60\xae\x55\x6f\x1b\x59\x19\x3a\x3f\x1c\xea\x35\xbe\x35\x03\xa8\xa6\xf0\x06\x25\xbd\x1a\x2f\xec\x83\xbd\x9c\x25\x37\xd8\xcb\xd6\x65\x96\xfd\xc8\xd1\x8d\x6e\xfa\x81\x31\xdf\x13\x8a\xb4\xf6\x9e\xd7\xb4\x1c\x33\xbe\xd0\xaf\xaf\xe9\x81\xbf\x2e\x0e\x8f\xbe\x9b\x39\xba\x49\x8e\x3b\x7a\x40\x6e\xa2\xc3\xce\x20\x62\x5c\x55\x1c\x5d\x93\x1b\x73\xc9\xe1\x28\x2e\xce\xd1\x35\x45\x07\x34\x69\xf3\x7a\xbd\x68\xcf\xc0\x83\x2f\x39\x03\xd1\x35\xbd\x4e\x8e\x41\xb2\xa2\x37\xa1\x11\x84\xad\x93\xc8\xb6\x3d\xae\xcb\x2b\x4c\x4a\xea\xfb\x0d\x9d\x9e\xcb\x3c\xc8\xc6\xf8\x42\x67\x1a\x5e\x8f\xd9\x27\xc5\xf8\x22\xcb\xe4\x93\x12\x6e\xcc\x4b\x52\x52\x49\x24\x5d\xe9\xfa\x5e\x70\x74\x43\x24\x26\x4b\xf3\x54\x62\xb2\xca\xb2\x65\x96\x21\x2d\x6c\x5e\x07\x67\xf1\x7a\x7d\x1d\x9c\xc4\x60\x34\xad\x97\x4c\x9b\x6c\xce\x5b\x78\xd1\xc0\xa3\x7e\xe5\xcf\x65\x30\x90\x76\x1f\x04\xe7\x33\xa4\x9b\xfc\x7a\xd2\xd0\x01\x3d\xb0\x57\x09\xb0\xf4\x11\x06\x90\x29\x98\x25\x64\x6a\x24\xae\x7c\x4c\xae\xad\xd5\xc1\x41\x5d\x43\x6e\x89\x30\x91\x4f\xca\x39\xba\x1e\x17\x8b\x85\x29\xe0\x40\x67\x33\x43\x80\x4c\x0b\x88\xaf\x10\xe7\xe8\x40\x17\x7f\xd8\xf3\x8e\x44\x65\x80\xc6\xfa\x80\x1e\x1d\xc3\x79\x7a\x4d\x6f\x66\x7a\xf6\xda\x4d\x32\xc3\xfa\x78\xbb\x0e\x0e\xec\x03\x83\x4f\xef\x61\x75\xae\x49\xcd\xce\x54\x7e\x3d\x96\xa5\x68\xea\xfa\x25\x3b\x53\x44\x35\x4b\x9f\xf0\xa1\x59\x6e\x4c\x94\x82\x3e\xea\x7d\x63\xc6\x4c\x13\x00\x78\x00\xba\x31\x99\xdd\x3c\x3e\x70\x26\x00\x37\x3b\x3b\x58\xaf\xf9\xa3\x9b\x63\xec\x40\xca\x83\xba\xe8\xf5\x58\xd7\xaf\xc7\x22\x7a\xf7\xa1\x59\xd2\xeb\xb1\x6a\x96\x9b\xbf\x59\xa4\x64\x7d\x76\x0e\xff\xca\x35\x4f\xe9\x84\x0a\x77\x5c\x90\xf4\xa8\xbb\xa1\xa2\x73\xcc\xfd\xd1\x39\xe6\xf6\x1f\x64\x7f\x98\x77\x27\xf1\x59\x66\x0f\x9e\x6b\x7a\x43\x90\x3e\xe6\xf0\xe7\x20\xe0\xa7\x0f\xc8\xfe\x1e\x39\x48\xf0\x07\x75\xc9\x6f\xe8\x41\x6c\xcb\x7b\x2f\x3b\x08\xb4\x0d\x2d\x01\x3f\xc1\x6f\xba\x31\xe8\x51\xe0\x30\xff\x81\x1e\x24\x20\xef\x07\x06\xe4\xfd\x24\x81\x26\xfc\xa1\x41\xe6\x0d\x49\xde\xe0\xd9\x9b\x9e\xf0\xcc\xe8\x43\x90\xcf\x28\x5e\xdf\x7c\x09\x48\xbc\x89\x8e\xfb\x89\x1e\x44\x0e\x03\x76\xd4\x3f\x65\xd9\x69\x85\x26\xe4\x13\x79\x93\x58\x5c\xea\x8f\x5e\x27\x1f\xb5\xbc\xc3\x6b\x1b\x49\x33\xf4\xcf\x38\xb0\x46\x93\x76\x56\xec\xcf\x08\x37\x55\xba\x4c\x29\x84\x84\x9b\x8a\x9e\x0c\x1b\x68\xe0\x6b\x22\xa3\xbb\x3f\x03\x14\xf9\x32\x9a\x35\x37\x43\x59\x16\x4d\x1e\x90\xca\x97\xe4\x1b\xee\x86\xfb\x20\x19\xee\x2c\xbb\x76\xbb\x22\xb9\x9c\x8d\x20\xf4\xfb\xa0\xf4\x4c\x8d\x07\x69\x84\x44\xdd\xb6\x43\x7a\xd0\xcb\x76\x1d\x9a\xd7\xef\xe9\xe1\x56\xd7\x92\xf7\x26\xcb\xef\xf4\x7d\xe8\x58\x62\x5f\xfe\x9e\x65\x57\x0a\xfd\x9e\xc0\x11\x4e\x1f\xe5\xff\x02\xce\x99\xe6\x25\xf7\x1e\xba\x5d\xf6\x8c\xda\xdd\x14\x07\x71\x78\x66\xde\x5e\x46\x63\xee\x27\x3b\x85\xec\xfe\x85\x5e\x26\x77\xf0\xbf\xd0\xcb\x4d\x2f\xc8\xfe\xfc\x19\xfa\x05\xe7\xcf\x3c\x9d\xf8\x65\xf3\xdf\xc6\x4b\x39\x7c\xa7\x5f\xac\x1f\x67\x65\x44\x85\x80\x66\xe9\x01\xf8\x5e\x62\x0f\xf5\xc4\xc8\xdf\x25\x55\x2d\x70\x0b\x90\xb4\x80\x86\xa9\xb8\x4e\xf2\x5b\xf7\x56\xea\x37\x69\xdc\xa1\x80\xe3\xe8\x85\x2d\xc9\x32\x64\x31\xa6\x12\x27\x7e\x35\xd7\x04\xe5\x6f\x72\xfe\x57\xb9\xb3\x93\x23\x87\xf7\xc3\x70\x0e\x8f\x7d\xc3\xfb\x7b\x99\x65\xbf\x97\x61\x4c\x2d\x22\x9c\xfb\xe9\x0b\x37\x82\x06\xdf\x8a\xd1\x9f\xa4\x07\xb9\x72\x3a\xb6\x10\x07\xc8\x88\x5f\xe8\xe7\xc6\xba\x88\x05\x46\xee\x6f\x52\x9b\x78\x4f\xd0\x59\x4c\xd0\x21\xe0\x06\x33\x97\x90\x59\xc6\xbb\x8c\x36\x41\xf7\xa7\x7b\x19\x33\x1a\xde\xf5\xfa\x7b\xb9\x5e\xa3\xef\xe1\xb2\x61\xab\xef\x26\xe8\xe4\xb8\x71\xd8\xec\x9b\x77\xdf\x4a\x9d\x51\xaf\xa0\x47\x5a\x7c\xfe\xbb\xf7\x53\x7d\xf4\xdd\xe3\xbf\xcb\xf9\xa3\xef\xf2\xbf\x4b\xa7\x18\x34\x68\x5e\x3f\x35\x88\x91\x4f\x65\xe8\xfd\xf8\xa9\x44\xe1\x22\xfc\xd9\x01\x5e\x0d\xa7\x33\x53\xd8\xcf\xe0\x45\xee\x50\xc1\x3e\xab\x29\xdc\x9f\x62\x17\xe2\xee\xb5\x71\x42\xb6\x4a\x1a\x16\xf8\xfa\x06\x6a\x9d\x30\x66\x2b\x20\x6a\x18\x25\x23\xf8\x9f\xe8\x81\xeb\xde\xf4\x3a\x63\xee\xcf\x9e\x8e\x7b\x0f\xc9\x04\x4c\xe7\x24\x9a\x90\x07\xf7\x20\x4e\x82\xd9\x77\x22\x02\x70\xdc\xb6\xed\xf4\xca\xda\x70\xab\x97\xb3\xeb\x9f\x75\x96\x3f\xa3\x1e\x26\xe8\xb5\xa4\x0a\xfc\x7d\xc9\x70\xd2\x8e\xf0\xeb\xd2\xc1\x97\xad\x20\xda\x3b\x35\x20\x84\xf4\x2f\x60\x12\x13\xee\x88\xd6\x33\xd4\x81\x5a\x85\xef\xb2\xcc\x78\x35\xfb\x82\x5f\xb6\x5a\xdc\x16\x90\x09\x6a\x03\x20\x45\xbf\xa7\x9d\xde\xb6\xeb\x62\x6a\xbf\xb4\x43\xf9\xba\x44\xdc\x7c\xda\x82\x33\xb4\x6f\xad\x3b\x6a\xcc\x56\xf4\xed\x50\x7e\x37\x6c\xe1\x7a\xdd\x6f\xbd\xf4\x85\x5e\x40\x02\x63\x18\x48\x4e\x18\x5d\x48\xf8\xf3\x97\xc2\xb8\x5c\xf7\x0e\x24\xd7\x03\xc9\xbb\x03\xd9\x42\x7c\x04\x3e\xaa\xed\xd8\x1e\x96\x71\x00\x64\x16\xf8\xe1\xb5\xe6\xc8\x62\xbc\x60\xe0\x5f\xad\x30\x01\x60\x28\x96\x65\xef\x25\x5c\x00\x5b\x60\xa8\xf5\x1a\x1e\x4e\x00\xad\x24\x81\x2f\x01\x80\x85\x77\xf2\xf1\xaf\x72\x0e\x3e\xc8\xef\x25\xce\xdf\x6a\xca\x60\x10\xa0\x40\x5c\x9d\x0c\x2d\x51\x4d\xa0\x3a\xb2\x4c\x3d\x86\xd8\x5b\x5d\xa4\x8e\x3b\x40\x08\xb8\x55\x19\x6f\x51\xb3\xf7\x68\xe5\x2d\x69\x0d\x1d\xd7\xdf\x27\x8e\xeb\x31\xc7\xe2\xfc\xd6\xdb\x81\x99\x9a\x73\x61\x6a\xa4\xef\x7f\x48\x64\x70\x7e\x08\xb3\x98\x97\xe9\x9a\x57\xed\x52\x67\x65\x12\xa4\xaa\x85\xcc\xee\x06\x8a\xe5\x51\xa0\xa3\x26\x89\x59\x6d\xd4\xf6\x11\xa7\x34\xa4\xb4\x59\xaf\x97\x8d\xbf\x58\x38\x2c\xe8\x70\xe2\x0d\xd2\xc4\xe3\x36\x9a\x8e\x7e\x33\x8d\xa2\xe6\xec\xe7\xef\xc0\x89\xe6\x75\x91\x3a\x4f\x57\x67\xe8\x2d\xb8\xd1\xdc\xb3\x36\x48\x59\x66\x3d\xc2\x9b\xb1\xb9\x28\x0f\xae\xb0\xbe\xe4\x92\xd9\xd8\x6a\xcd\xb6\xfa\x17\xdd\x34\x9d\xc8\x30\xcf\x2b\xa4\x42\xcb\xec\x04\x54\x39\x31\x10\x62\x26\x77\x6c\x16\x65\x6c\x19\x67\xbd\x4c\x62\x37\x1a\x3c\x0e\x30\xcc\xc0\xce\x2e\x88\x0d\x9f\xdc\x64\x65\x99\x78\x42\xf9\xfc\x7b\x17\x25\x38\x47\x5d\x23\x86\xd0\x02\xc0\x87\x13\xc6\x73\x1f\x45\xd6\x44\x65\xea\xb1\x7e\xe8\xb1\x59\x12\xfd\xc3\xfa\x84\x72\xd2\x1f\x55\x1c\x26\xdf\x75\xc8\x47\x42\x9f\x25\x06\x03\xe1\x75\x61\xd3\x19\x8e\x2c\x43\x4d\x1a\x90\xbd\x69\xa3\xcb\x62\x7b\x67\x1e\xf6\x78\x28\xc2\x5b\x32\x77\xa6\xf8\xde\x6f\x60\x0d\x5a\xe5\x2f\x3c\xb7\x3e\x6a\xac\x1b\x04\x3f\x74\x5b\xb3\x83\x60\xe2\x71\x85\x57\xa4\x49\xec\x1e\xd5\x4d\x88\x62\xee\x63\xc2\xba\x91\xe0\x2f\x1a\xa4\xc8\xaa\xdd\x44\x44\x54\xa0\x7b\x23\x0d\xad\x0a\x07\xf0\x20\x08\x23\x8d\x4e\x8c\xad\x4d\x49\xd7\x03\xbe\x09\x81\xac\xfb\x4e\x0a\x37\xac\x0e\xda\x00\xfc\xb3\xbf\xf9\xc6\xbc\xb5\xb6\x2b\xe0\xa2\x6d\x5c\xff\x4f\x1b\x88\x9f\x6d\xae\x8c\x86\x93\x19\x6c\x16\x6b\xe2\xaa\xc7\xb0\x2f\xb2\x35\x84\x12\x91\x06\x96\xba\xc5\x4f\x30\x29\x2e\x92\x8b\x89\x62\x6b\xee\x98\x44\xdf\x61\x67\xa8\x4e\x5f\x0f\x64\x96\x7d\xd4\x63\x24\x88\x04\xdc\x27\x2b\x94\x0a\x7a\x53\x45\xde\x14\x0d\x69\xc6\xb1\x40\xfc\x7d\x75\xca\x04\x55\xe4\xc4\x7c\x0e\xe8\x3a\x8a\xbe\x0d\x86\x79\x38\x81\x00\x0d\x2e\xe2\x8b\x1e\x88\x09\x79\xef\x33\x98\x39\xf0\xd6\x41\xfe\x62\xdb\x39\x36\x42\x50\x94\x28\xaa\xdb\xbf\x7b\xc1\xb4\xf4\x1c\xe6\x6a\xd7\x84\xf1\x3b\xd1\xbd\x5e\x49\x7c\xeb\x1f\xed\xa5\xab\x3e\xfa\x4e\x4a\xd5\x88\x99\xa2\x0a\x41\x20\x39\xc1\xe4\xaa\x56\x54\x39\x54\xe8\x08\x55\x7a\x12\x16\x97\x19\x98\x58\x2b\xb1\x91\xb6\xec\x69\x58\x0e\xde\x60\x72\x67\x19\xed\x77\x7b\xc9\x77\x78\xb3\x41\x0d\x26\x53\x58\x1e\xae\x0f\x36\x9c\xa0\xcb\x38\xf3\xa8\x6d\x3e\x89\x98\xbd\x48\x21\xc8\x0b\xcc\x51\x32\x2a\x7d\xab\xc6\x93\xd8\xe7\xfa\x68\x9c\x4f\xf3\x49\x14\x28\x8d\x85\x91\xfe\x34\xf3\xac\xf9\x6d\xbf\x2d\x34\x13\xe5\x71\x72\xa7\x33\x0b\x73\xfe\x77\x9f\x74\xcf\x91\x9b\x3d\xe8\x10\xa3\x3f\x34\xa8\x01\x18\x1b\xcf\x61\x2b\xfa\x3c\x58\x46\x2c\x89\x4f\x36\xcd\x15\x7d\x7a\xd7\x7b\x9d\xe1\xf7\xbb\x32\xdc\xcb\x15\x7d\x16\x64\xd0\x2d\x30\x24\x8b\x61\x22\x3e\x0b\xff\x34\x79\x80\x49\x43\x46\x23\x8f\x40\x6b\x17\xb5\x0f\x17\xed\x29\x60\xca\x19\x90\xe7\x86\xc4\x0a\x92\x2c\x7d\x00\x09\x6e\xf2\x1f\x1a\x24\x48\x83\x75\x0b\x6c\x57\x3f\x5b\xe2\xd3\xaf\x2b\x11\xce\x55\xc3\x4e\x38\xeb\x4d\x91\xc4\xdb\xeb\xc4\xf1\xde\x33\xe8\x50\x3e\x56\x48\xcf\x19\x34\x6f\xc6\x21\x8a\x39\xb9\x30\x54\x43\x75\xfd\xb0\x35\x55\x40\x22\x2d\xc0\x7d\xad\x57\x4f\x83\x35\xa3\x43\x82\xd3\xb8\x45\xb2\x6a\x42\xb3\x7a\x17\xce\x01\xae\x24\x0a\xaa\x04\xda\xca\x86\x84\x37\xb4\xe4\xa6\xa0\x8a\x34\xf4\x5a\xb3\x60\x98\x34\x0e\x18\x07\xce\x12\xc0\x27\x34\xa7\x87\x35\x4c\x9d\xf1\x19\x0e\x24\x43\x1a\x86\xef\xfa\xbf\x70\x67\x17\x45\x19\x03\x6a\xf8\xde\x4d\x0a\xb7\x5c\x9b\xa7\x83\xc9\x92\xf1\x91\xcf\x0d\x1b\xe7\xc4\xc4\x2c\x7b\x53\x18\xef\xe8\x6d\xd3\x5e\x6d\x0f\xdc\x62\xac\x61\x5d\x14\x2a\xc1\x38\xf9\x0b\x87\x45\x30\x97\x36\x02\xbe\x47\x85\x81\x17\x5d\x53\xf0\xe9\x03\x4c\x7e\x31\x91\xcc\xb7\x73\x96\xf3\x2e\x33\xb0\x8d\xa7\x54\xce\x1a\xd7\x8e\x8b\x8c\x8e\x06\x4c\x94\xd3\x1a\x06\x4c\x49\x38\x0c\xbc\x27\x20\xbc\xe7\xe9\x92\x18\xee\x9f\x61\x47\x61\x48\xfb\xc0\x01\xd8\xdc\xcd\xf8\xcb\x68\x21\xe4\xe1\x5c\xba\xc3\xcc\xd1\x99\xcf\xee\xce\xdf\xbf\x6e\x77\x7e\xe7\x4a\xb4\x95\xa6\x4d\x4d\x5a\xd0\x5a\xe7\xdf\xf5\x59\xbb\x0e\x3a\x3d\x98\xe4\x2c\xbf\x0d\x58\xb6\xf1\x89\x45\x00\xe8\xf6\x44\x76\x5c\x58\x80\x95\xaf\x68\x63\xd9\x77\x77\x7a\x4b\x1f\x55\xce\xc6\x04\x70\xfa\xba\x8a\xfe\x20\x50\x49\x2a\x3c\x9f\xe4\x93\x75\x7f\x3c\x81\xf1\x49\x59\xd4\xe5\xaa\x2e\x14\x33\x8e\x76\x8b\xa7\x95\x92\xf3\x2d\xe9\x50\x5a\x1e\xca\xdb\x46\xb9\xee\x7b\x4c\x69\xb0\x0d\xb2\x6c\x18\x08\x60\xb7\x21\x7d\xf1\xa0\x1d\x5e\x91\xc1\x7d\x68\x39\xe5\x11\x0d\x90\x03\xf4\xa0\x0a\x3b\x01\xb4\xb4\xaa\xba\x9a\x96\x91\x79\x76\x20\x25\xd6\xf8\x56\xd2\xd2\x8e\xbb\x53\x92\xac\x68\x1d\xd9\x60\xbb\xf2\x56\x46\x55\xb2\xf2\x50\x0c\x20\xfc\x83\xa8\xb3\x1a\x37\xa7\x92\x89\x8f\xa6\xef\x59\x85\xf1\xed\xd4\x81\x2e\x65\x19\x42\xab\x4e\x74\x07\x80\x04\x2a\x09\x38\x1f\xa7\x90\xdc\x1c\xfa\x93\xda\xe3\xb7\xc2\xd0\x8a\x96\x81\x4d\x7f\x96\xad\xfa\x0a\x48\x13\xa1\x80\xca\x8f\x93\x5e\x70\xa9\x0d\x3d\x7c\x97\x26\x52\xaf\x22\x59\xd1\x95\x89\xaf\x6a\xa6\x42\xd2\xe9\xa4\xed\xa3\x41\x8f\x09\x82\xff\x6a\x6a\xe6\x46\xb6\x1d\x70\x89\x1d\x34\x07\x2d\x5b\xd5\x94\xa4\x65\x60\x9a\x6b\x2e\x61\x20\xf4\x88\x0c\x8c\x90\x42\x49\xab\xa4\x81\x5d\xe6\xad\x9f\x7b\x0f\xfb\xa1\x0b\x34\x1f\x05\xa1\xe9\x4a\x2a\x37\x1b\xbb\x0d\x9b\x78\xe7\x6d\x39\x02\x1e\xb9\xcd\xdb\x38\x2a\x22\x8c\xb7\x4b\xb8\xfd\x70\x5b\x94\x93\x79\x04\x15\x9a\xd1\xab\x50\x43\xaa\xd6\xb1\x28\x5c\x22\xb8\x23\x03\x6d\xa7\x65\x9e\x7e\x56\xc0\x8f\xb9\xa6\x24\xad\x20\xcf\x6c\xcf\x88\xc9\x66\x32\x55\x96\x69\xf2\x0a\x51\x53\xd2\xa5\x23\x46\x3d\x25\x85\x1f\x7c\xf7\x79\x32\xfa\x19\xea\xf9\x2f\x89\x0d\x4e\x84\x03\xe9\x6d\x8e\x18\x1d\x4e\x08\x48\x6e\x38\x87\x40\x51\x6e\xbc\xaf\x0d\x4b\xd3\x60\x27\x12\x81\x80\x93\x08\x44\xac\xed\x96\x9f\x57\x2f\xd6\xa7\x71\x5c\x03\xbb\x73\x10\x40\x7e\x37\x76\x56\xe4\x99\xb5\xb7\xf2\x6a\xb0\xcb\x00\xed\x10\x62\x8f\xe8\x16\x33\x02\x8f\x97\xec\x86\x72\xf3\xe8\x7d\x01\x20\x3c\x09\x9c\x65\xf0\xe8\x88\x16\xe4\xf1\x22\x9f\x29\x48\x8f\x26\x3c\x85\xc3\x6b\x7a\xa4\x53\x2b\xbe\x60\x9f\xb4\x90\x6f\xca\x39\x0b\x5e\x45\x61\x75\x95\x49\x8b\x1c\x54\x20\x25\x96\x78\x21\x29\x74\xc7\x88\xf2\x04\x4e\x3f\x26\x5d\x37\x53\x98\xe7\x96\xff\x7a\x65\xeb\x0a\xbd\x07\xf4\xef\xc8\x1b\x4a\x27\xa4\xda\xf3\x76\x58\x52\xac\x4f\xa8\xa0\xa3\xd7\xd0\xa9\xf1\xe2\x69\x15\x93\xbf\x04\x33\xe2\x98\x16\x76\x1d\x4e\x54\x9b\x17\x84\xa8\xd6\x3c\x08\xa4\xa5\xa5\x68\x54\x63\xf1\xc6\x86\x6c\x5c\x49\x13\xdd\xc5\xe9\xa5\x83\xaf\x9f\x26\x2a\xd0\xf6\x62\x34\x66\x96\xf8\x1c\x21\x4e\x75\xbb\xf4\xea\x20\x5a\x04\xbd\x64\x37\x84\x59\x48\xba\x68\x7e\x59\x2c\x75\x9b\x55\xc0\xac\xd2\x26\x58\x22\x2c\x0a\x2d\xdc\x8e\x05\x8b\x63\x31\xe3\x1c\xf1\x74\x39\xf0\x78\xc6\x78\x67\x36\x78\xd7\xc1\x8c\xa7\x96\xf3\x98\xf4\x07\x5a\xe8\x35\x5b\x27\x9d\x00\x13\xa9\xe9\xbb\x2b\xcd\x7d\x9f\xba\x08\x77\xa2\x6b\x27\xbe\xa9\x9d\x28\xdb\x91\xaf\x51\x1c\xdd\x0a\x82\x2a\x44\xee\x5b\xbc\xd7\x7d\x4b\xf5\xbb\x6f\xa5\xac\x75\xec\xbe\xa5\xb6\xba\x6f\xa9\xd0\x7d\x8b\x78\xa9\xa4\x8d\xf9\x45\xb8\xdd\xd3\xcc\xfc\x35\xa8\x49\x70\x63\x73\x16\x46\x8d\x7a\xeb\x57\xb2\x26\xf6\x2e\xcc\x22\x84\xac\x11\x94\xf5\x5e\x97\x32\x0c\x2b\x1d\x02\x63\x06\x6e\x95\x5d\x80\x01\x86\x25\xbd\xef\x8c\x9a\xe3\x70\x8a\x83\xb7\x8e\x6a\xbe\x2b\x5d\x94\x0d\x7d\xe8\x35\xa4\x22\xca\x52\xd6\x9f\x72\x49\x1f\x92\x66\x4d\xbf\x0b\x85\xfa\x77\x2e\x35\x0a\x77\xfd\xab\x2d\x0e\x31\xbd\x35\xa6\x7b\x84\x13\x45\x1e\xae\x9b\x64\x43\xfc\x4a\xcc\xea\x87\x87\x64\x15\x55\xc4\xe2\xd8\x7d\x1f\x97\xb5\x0f\x65\xe9\x92\xe0\xcb\xef\x49\xb4\xab\xcc\xef\x2d\x25\xfd\x1c\x97\xf4\xc8\x97\x14\x16\xf0\x73\x7f\x01\x4e\x27\xa1\x47\xb6\xa3\xd1\x0c\x35\x33\x6e\x60\x03\x85\x25\x54\xfe\x5b\xae\x99\xaa\x18\xa2\xef\x45\x2e\xe9\xa3\x38\xe9\x47\x9d\x2d\x09\xd5\xfb\x77\x9d\x76\x2f\x4e\xfb\x21\x87\xd8\x53\x22\xb6\xe4\x4e\x4e\xba\x7d\xef\xc8\xc7\xe6\x2c\x77\x8d\x0d\x54\x28\x48\xe9\x91\x90\xbd\x03\xc1\x9c\x0e\x4b\x74\x5d\xe5\xaa\x10\xb7\xed\x5d\x87\x28\x9b\x01\xfe\x8e\x30\x22\x88\xd2\xc5\xa6\xee\xa7\x81\x9f\xcb\xaf\xfe\x1a\x2e\xfc\xf6\x81\xbd\x3b\xfa\xec\xe7\xbf\xa5\x9f\x43\x8f\xee\x79\xe6\xc4\xaf\xe5\x79\xfb\x98\x1f\x1d\x5b\x32\xdd\x5b\x7a\xa8\xa0\xbd\x8d\xc4\xd8\x3c\x0d\xb0\xeb\xd0\xd9\x5c\xc1\xd0\xe4\xea\x6a\x69\x86\x11\x0a\xcd\xd9\x38\x4e\xd8\x84\x63\xf7\xc2\x37\xdf\x33\x18\xf6\x9c\x8d\x51\xf2\x4c\xe4\xb3\xa0\x6a\xc7\x87\xb4\x00\xa1\x21\x77\xe0\x1a\x14\x7c\xbd\xf5\x4a\x30\x7a\xdb\xfa\xea\x98\xf6\xa4\xe8\xc6\x51\x25\x56\x54\xf2\x8d\x73\x00\x75\x26\x97\x0b\xfa\x69\xb9\xa4\x38\x64\x88\xe7\x1c\x00\x0e\x3b\xec\x64\x8f\xd3\x4e\xcb\x77\x04\xae\x2a\x3e\x31\xb8\x19\xf5\xfc\x47\xd7\xc5\xc6\x67\x8f\x1d\x69\xda\x86\x6c\x4b\x0f\x3d\x80\x82\x2b\xff\x9f\xfa\xb0\xbd\xa3\x32\x3c\x48\x62\x9f\x2b\x10\xe0\x06\xf0\x2c\xe3\x4f\x0c\x04\x24\x0d\xd6\xc4\x8f\x9f\x2d\x9a\xf4\xc6\x86\x98\xf1\xc7\x6a\x9b\xc3\x90\xc2\x04\x89\x27\x6a\xbd\x9e\x80\xaf\x96\x77\xfe\xe9\xe4\x52\x5f\xec\x54\xa4\xbe\xdc\xa9\xa8\xed\xdb\xf7\xb6\x6f\xea\x49\xd7\x88\xa8\x6d\x7b\x38\xe6\x2a\xf4\x4a\xeb\x8c\xb1\x1d\x46\xa4\x9e\x50\xfe\xef\xf0\xc3\x52\x4f\xfa\x3e\xd8\x36\x5c\x3b\x53\x4c\x74\x4f\x7a\x4b\xbb\x23\x52\x87\x0a\x2f\xdb\x7f\x4e\xa6\x3b\x8d\x44\x00\x5a\x1c\xee\xe2\x88\xf5\x8c\x6f\xc8\xb6\xfe\xbd\x97\x7f\x50\x1e\xbc\x94\xc1\xfd\x2e\xbe\x55\xa0\x7f\xba\x51\x88\x53\xde\x77\x03\x85\x4d\xcc\x33\xd0\x3d\x82\xa8\x94\x7a\xe4\x4d\xac\x0d\x50\x49\xf9\x56\x1c\xdb\x32\x84\x9b\x75\x14\x62\xe6\xdc\x71\xac\xa6\xbd\x3a\x43\xa7\x0d\x32\x2a\x06\x2d\xef\x47\xdf\x24\xd6\xa2\xaf\x2c\x1b\xf8\x8a\x89\x73\xb6\x78\x16\x60\xa2\xbb\x52\xef\xc2\x7f\x9d\xa5\x7d\x98\x9a\x70\x12\x89\x05\x4c\x4d\xb9\x47\xc1\x3c\x6d\x00\x1d\x8a\xd3\x8f\x0d\xe2\xa4\x26\x65\xa0\xb3\xe2\xb4\x34\xca\x12\x4e\xeb\x26\x91\x0a\x94\xeb\xed\x5c\xb5\x94\x31\x57\x1d\x34\x4f\xa2\x68\x45\x50\x43\xcb\x0a\x44\x6a\xdc\x0d\x4e\xca\x36\xc1\x3d\xb9\xbf\x0e\xb5\xec\xab\x32\x97\xd0\x3e\x08\xa7\xc2\x64\x55\x21\x09\xc2\x79\x69\x40\xb1\x44\xbb\x36\x7e\xe8\x80\xf7\xfb\x75\x41\x2a\x63\xb0\x51\xd0\x57\xd5\x58\x5a\xa8\x64\x6f\x58\xe6\xbe\x6b\xe8\x3f\x24\xaa\x48\x43\x0a\x4c\x8a\x48\xd6\xfa\xab\x0b\x3a\x66\xc4\x2c\xa7\xec\xb3\x2a\xbc\xd0\x33\xd4\xb3\x47\x5d\x5b\x5b\x8f\xe9\xe5\xc0\x65\x53\xbb\xda\xb6\xbe\xbf\x05\xce\xb1\x77\x87\x3b\xd4\xdd\x8a\x22\x1e\xaa\xc7\x54\x95\x59\xb6\xbb\x6b\xcf\xd9\x93\x54\x99\x5e\xba\x13\xf8\x44\x34\x8d\x72\xe7\xec\x89\x1b\x64\x2b\x60\x9f\xf0\xf8\xb4\x3b\xb9\x28\xa4\x3f\x75\x4d\xca\xa2\x5a\xb8\xe8\x0c\x60\x5a\x62\x8a\xe9\x9e\xcc\x26\xfe\x03\x0d\x0d\xca\xbe\x29\x91\xe5\x08\x82\x7a\xc3\x2f\xa0\xe8\xab\x4a\xb5\x05\x43\x28\x08\x9d\x12\xff\x34\x6e\xc2\x10\x56\xb5\x2d\xfe\x2f\x89\xe9\x93\x96\xa1\x1d\x27\x62\x2f\x38\x00\x4a\x07\x36\x86\xbb\xed\x21\x8d\xe6\xac\xf6\x89\xb7\xa0\x26\x26\x88\xda\x77\x26\xa6\xda\x7c\x3f\x9f\x78\x27\x65\x11\x84\xc2\x6a\x02\x76\x4a\x10\x76\x54\x88\x63\x2a\xda\xf0\x00\x46\xcb\x1a\x38\xf6\xb4\x33\xfb\x52\x3f\xcf\x64\x5f\x74\x61\x8e\x6f\x0f\xb9\xb5\x65\xdb\x60\x4c\xca\x2f\xc8\xb4\x01\x50\x27\x16\x38\xfe\xe4\x2c\xf1\xe6\x0c\xb7\xcb\x3f\x62\xd6\xec\xa4\xb2\x44\xe8\x9d\x5e\x15\x7e\x04\xdb\xfc\xac\xb6\x47\xdb\x96\xdc\x7b\x24\x24\xd4\xaa\x8e\xb4\x13\xcc\xd0\x5a\x16\xf8\x53\x3c\x4a\x7e\x4f\xd3\x0c\xe8\x61\x94\xb0\x5e\x8f\x06\x40\x2d\x77\xaf\x9a\x15\x57\xbb\xcb\xa6\xe2\x6a\xd7\x69\x28\x07\x23\x9f\xf9\x67\x03\x84\xd6\xb6\x85\xd7\xed\xa1\xe1\xec\x28\xdc\xa9\xa0\xdb\xff\xcc\x31\x9e\xb3\x16\xc4\xb7\xa0\x55\xdc\xc9\x6d\xb6\x82\x8d\x3b\x84\x9a\x59\x13\x46\x09\x36\xa6\xa7\x7f\x2d\x51\x81\x67\x86\xed\x83\x78\x2e\x3f\x94\x48\x91\x82\x40\xb8\x1a\x77\xfd\xb8\xa5\x35\x34\x0e\xcb\x52\x9d\x21\xb5\x5e\x23\x45\x87\x68\x88\x14\x65\xf3\x74\xb6\x53\x2f\x2b\x87\x51\x00\xdb\xd6\x98\x1b\x99\x59\x50\xc1\x98\x0e\xd5\xf8\xa2\x90\x01\xaa\xdc\xa2\x50\xc5\x2e\x34\x46\x93\x87\x11\xc6\x98\x0c\x0d\x36\x11\x1c\xe0\x33\x77\x84\x43\xa9\x33\xcc\x22\x9c\x50\xee\x77\x08\x84\xce\xd6\xcb\x62\x42\xd4\xfc\xd6\xee\xb1\x7c\x38\xd9\x38\xe4\xc0\x0d\xd2\x84\x9a\x74\xc6\xb9\x57\x07\xd0\xb8\xcb\x9f\x3b\x06\xb9\x6c\x07\xf9\xac\x44\xa1\x4d\x72\x38\xe6\x6d\x7c\x57\xf8\x2a\x88\x54\x5a\x87\x6c\xca\xde\xe3\x42\x9c\xc3\x60\x4a\xeb\x8f\x13\xd8\xd1\xf8\x57\x47\x7b\xc7\xf3\xf0\x87\xb1\xa8\xd1\xc7\x84\xaa\x91\xea\xdc\x78\x4f\x34\x7d\xb6\xb5\xf7\x1b\x05\xee\x7f\x59\xb5\xfb\x61\xb5\xfb\xb6\x5a\x53\xf0\xad\x13\xcb\xf3\xa7\xe4\x92\x99\x10\xf9\x94\x0a\x73\x9e\x8e\x46\x3b\x82\x78\x29\x91\x91\x58\xf8\x53\xa9\x64\xc7\x37\x1b\xd3\x3c\x73\xbf\xbe\x61\xac\x63\xcb\xe8\xec\xb7\x62\xf4\xc3\xea\x0c\xbd\x64\xc8\xda\xf6\xf0\x31\x2f\xae\x18\x19\x89\x62\x51\x35\x23\xc3\x8b\xc0\xfe\x36\x84\xd8\x06\x3d\xe1\xd4\x44\xf9\x6e\xfd\xaf\x34\xe7\x16\xfc\x36\x99\xf8\xf8\xf7\x15\x13\x37\xc6\xc5\xae\x11\x07\x75\x8d\x4c\xa5\x47\xba\x12\x3a\xda\xf9\xcb\xfb\x37\xaf\xc7\x46\x35\x54\x9d\xdd\xa0\xd1\x68\x47\xe1\x9d\xff\x38\x3e\x02\x49\xdf\xb6\xe1\xf8\x3f\x74\xbb\x26\x33\xf5\x98\x3b\x67\x2b\xb5\xb3\xe3\x0f\x8b\x23\x75\x0c\xfa\x28\xa3\xfb\x17\x9a\xf0\x5e\x19\x40\x93\x46\x5c\x39\xd6\x62\x25\x90\x00\xf3\x85\x61\x93\x4c\xf3\x23\x3d\xcb\x6f\x18\x12\x98\xbc\x64\xc0\xf6\x44\x8e\x21\x01\xfc\xe3\x73\x86\x58\x0a\xa4\xed\x20\x4b\x0d\x22\xa3\xf2\x88\x8c\x00\xb2\xc8\x62\x90\x45\x45\x86\x53\xbc\xd9\x90\xbf\x95\xad\xe2\xd7\x9a\x96\xa5\xe6\x38\xc3\xe0\x24\x4e\x97\xe5\x7d\x60\x1b\x3a\x87\xfc\x70\x92\x1e\xe9\xcc\xda\x33\xb5\xdc\x43\xb2\x75\x1d\x67\x90\x28\x19\xcd\x01\xfc\x4d\x99\x32\x5c\x26\x08\x87\xb9\x12\x6f\x4f\x74\x7d\x48\xc5\x5d\x52\x17\x8c\xa7\x1d\xea\xb0\x20\x98\xa1\x28\x40\x6b\xc2\x5d\x38\x5f\x24\x03\xd6\x9f\xb2\x1e\x47\xc7\x98\x28\xe3\xdf\xc7\x3a\x23\x5a\x1a\xbe\xa3\x43\x76\xb6\x0e\x83\x8a\x63\x61\x25\xc3\xef\x71\x08\x53\x18\x90\xbd\xfb\x53\x63\x11\xd3\x99\x0b\x47\x95\xfa\x46\x17\x3e\xd0\x44\x5d\xb3\x40\xb7\x9d\x4f\xb3\x0c\xf5\x7f\x47\x55\x67\x9e\xec\x6d\x8c\x5e\x3f\x28\x9e\x7a\x8c\x83\x60\x6c\xc6\x12\x94\xaa\x59\x63\xab\x9d\x61\xa1\xf9\x20\xda\x18\xae\x31\x0c\xb4\xdc\xdb\x45\x61\xb9\x4b\x9b\x9f\x04\x0c\xa7\x22\xe1\xd0\x41\xe9\x9b\x76\xb6\x0d\x1f\x09\x86\x1f\x9f\x75\xe3\xd8\xbb\xbf\x8f\xf1\xec\xe7\x28\xb8\x1b\x38\x36\xa8\x80\xc1\x25\x29\xaf\xdb\xca\x22\x71\x3b\x70\x96\xa9\x64\x5c\x95\x1f\xaa\x60\x9c\xac\xd5\x62\x2f\x07\xed\x9a\x9f\x2c\xaf\x20\xc8\x19\x8d\xa3\xb7\x0d\xbb\x8b\xfc\xb6\x87\xf5\x9e\xcc\xc2\xf5\xd8\xae\xf8\xd0\xa0\xdc\xcd\x9e\x21\x7b\x2c\x24\x7b\x68\x42\xd8\x91\x3a\xc6\x48\x2f\xfc\x6f\xbe\x66\xdf\xe9\xcd\xfa\xef\xdc\x75\xdf\x74\x87\x25\xd9\x78\xe9\xa0\xe8\x16\xdc\x76\x44\x86\x7f\x71\x40\x9c\xa6\xc2\x9e\x03\x2d\x3f\xd2\xe2\xba\xf2\x54\x5f\xf0\x68\x0a\xd6\x36\x5c\x0f\xe2\x86\xb0\xba\x4b\x90\xff\x71\x27\x91\x6e\x39\x8f\x2e\x7b\xdd\xa1\x9f\x77\x0b\xcc\xc2\xd8\x94\x2a\x4c\x40\x20\xde\x42\x60\xa3\x26\xae\x38\xb0\xd4\x71\x1b\x5d\x62\x57\x6e\xe9\x69\x22\xdf\xd2\x44\xd6\x36\xd1\xda\x55\xe8\xa3\x8c\x9b\x26\x32\x68\xa2\xbd\xe7\xb6\x57\x75\x41\x2b\x79\xd2\x4a\xe3\x45\x6e\x36\x64\x87\x18\xeb\xea\xff\x56\x1a\x41\x10\x08\x70\x4a\xdc\xb6\x8d\x6c\x42\xa9\x3d\xe1\x0a\x5f\xc0\xcd\x64\xbb\x9f\xcd\x82\xb7\x0c\x89\xfe\x1d\xba\xd3\x74\x63\x1c\x1a\x7c\x4c\x41\x2d\xd9\x9b\xb9\xa2\x44\x10\x13\x1e\x71\x9b\xc8\x3c\x7f\xca\x36\xa4\x60\x74\x55\x12\xc9\xe8\xb2\x24\x25\xa3\x65\x49\x6a\xd6\xbb\x68\x2c\x90\xd0\xde\xd7\x44\x0f\x34\x88\x50\x35\xbd\x35\xe3\xfa\xb6\x11\xaa\xa8\x73\x51\x93\xb3\x8a\x2f\x9e\xbf\x79\xa5\xb9\xae\x3c\xd9\xfd\xf6\xb2\x05\xb3\x76\x1c\x06\xd5\x19\x8a\x25\xb7\x16\x22\xac\x47\xf1\xd6\x5a\xfc\x1a\x2b\x99\x6d\xa6\xc2\x76\x8b\xa4\xfb\xec\xe1\x43\x9c\xea\xb9\xf6\x1e\x3c\xc4\xe4\x0d\x5c\x59\x8d\x2f\xd9\x8d\x44\x5a\xf6\x63\xee\x22\x14\x31\x7a\xad\x34\x2f\x6e\x57\x5f\xa0\x6e\x69\xc7\xd9\x89\x27\x29\x77\xfb\x45\x9c\x3c\xaf\x3d\x4a\x19\x19\x4e\x34\x9f\x4c\x4c\xdb\xff\x0d\xc5\x4d\xa1\x38\x6f\x85\x63\xca\x7d\xbf\x3a\x55\x82\xb1\x17\x5c\x35\x5e\x56\x4c\xea\x22\xc2\xd7\xc6\xfb\x6b\x6b\x27\x73\xbd\x6e\xb7\x68\xaf\xaa\x34\x31\x53\x7e\x18\xb5\xd5\x54\x37\x9c\x12\x01\x0d\x05\x92\xe1\xed\x0d\x0e\x54\xdf\x22\x1a\x82\x6e\x20\x29\xf6\x5e\x3b\x04\xc3\x21\xeb\x13\x87\xb3\x0c\x25\x72\x9d\x1b\x2a\x3b\x5e\xc3\x69\xe4\x89\xda\x5b\x88\xb1\xb7\xc0\xa0\x53\x19\x4e\xc2\xb1\x8d\x76\x41\xd7\xa1\x55\xd4\xe3\x62\xb9\xac\x6f\xec\xe2\x25\x5e\xfe\x0a\xcb\x38\xd5\xc4\x82\x59\x78\x00\x99\xaf\xca\xf6\x15\x90\x9d\xa2\x54\xd5\x47\xe6\x5e\x77\xa7\xcc\xd6\x55\x96\x08\x93\x20\x14\x69\x50\xc3\xa2\x92\xa5\x60\xca\x97\xb1\x0c\xaa\x38\xab\x57\xf2\xe2\x79\x92\xa1\x2c\x09\xa4\xbf\xbf\xe1\x65\xde\x51\x28\x7c\x8e\x89\x9a\x3e\x6c\x51\xf3\xfa\x02\xab\x1a\xb0\xbe\x28\x12\x6a\x10\x05\x15\xc2\xf0\x1a\x62\x93\x8e\xb3\x9e\x94\x6e\x73\x7a\x57\xc6\xde\xa3\x47\x98\x8c\x7a\xbe\x1f\x45\xca\x06\xab\x9e\xea\xd4\xa4\x3b\xfe\xef\xaf\x0d\x54\x1b\xd3\xb8\x3e\x18\x67\xbd\xd2\x44\x53\xd7\x6c\x91\x77\x0f\xce\x68\x08\xed\xd8\xc5\x34\x5a\xc5\x34\x9a\x9c\x9c\xbc\x3f\x7c\xf6\xee\xf0\xc3\xc9\x8b\xd7\x1f\x0e\xdf\xbd\x3e\x78\xf9\xfe\xe4\xf9\x9b\x93\xd7\x6f\x3e\x9c\xfc\xf4\xfe\xf0\xe4\xcd\xbb\x93\xbf\xbf\xf9\xe9\xe4\x97\x17\x2f\x5f\x9e\x3c\x3d\x3c\xf9\xfe\xc5\xbb\xc3\xe7\xf9\xed\xe1\x47\xbd\x2e\xf3\xa3\x52\x90\x5a\x90\x95\x20\xef\xc7\x15\xd7\xe4\x11\x5e\xbc\xad\x57\xe7\x15\x97\x4f\x6f\x5e\x6b\xa9\xfc\x8c\xbc\x54\x91\x43\xcb\x27\xc4\xc8\x6b\xdd\xad\x86\x91\x8a\x91\x37\x9c\x1c\x92\x0f\x25\xb9\xb5\xfa\xcc\x7c\x38\xdd\x1c\x6f\x36\xb3\x61\xb7\x73\xe0\x7a\xb9\x00\x92\xf1\xf4\xe6\xc7\x46\xaa\x17\x7a\x60\x78\xc9\x66\x28\xf5\x0d\x59\xf1\x05\x3b\xab\x38\x5b\x04\x14\xff\xe4\xe4\xdd\xe1\xc1\xb3\x0f\x27\xcf\x0f\x7f\xfe\xf0\xe6\xcd\xcb\xf7\x27\x3f\xbc\x7c\xf3\xf4\xe0\xe5\xc9\x8f\x6f\xde\xfc\xf5\xe4\x24\x76\xe9\x56\xf4\xee\xdc\x20\x13\x8d\x2b\xf9\xbc\x92\x7a\x66\x16\xa0\xe6\x92\xab\xe5\xb2\x11\x4a\x1a\xa2\x66\xcb\x9b\xcc\x5a\x8f\x6d\x65\x87\x09\x31\x3c\xfb\xbd\x8c\xf8\x1e\x9d\x49\x8d\x1d\x6b\x02\x25\xe8\x35\x01\xba\x57\x4b\x10\x1e\xdc\xd3\xa7\x0d\x78\xe3\x39\x1f\xf1\xd6\x2b\x0f\xb7\x5e\xdb\x9b\x0d\x79\xf6\xd9\xc2\x7f\x32\x84\x54\x97\x1f\x7d\x1a\x3e\x63\x04\xa1\x4a\x18\xb9\x6d\x3e\x32\x21\xaa\x05\xfb\xb1\x69\x2e\xdf\x7b\xcf\x2e\xe2\x92\x43\xf3\x7d\xa6\x5c\xa0\x48\x73\xe7\x2d\x6c\xba\x26\x5b\xab\xda\x52\x0d\x93\x66\x7b\xf1\xbc\x92\x4b\x20\x6b\xe2\x1d\x3b\xcb\x9f\x8d\x8d\x45\x59\xfa\x0e\x98\x86\x70\xd2\x9f\xde\x40\x47\xa2\x4d\x10\xdf\x21\x99\x93\x99\xf5\x9d\xcc\x64\xcb\x4a\xea\x2b\x4d\xcd\x75\x21\xd0\xe4\x4d\xa7\x15\xf2\xfb\x46\x37\x5b\x30\x79\x11\x77\xb4\x3f\x51\x93\x09\x37\x4e\x36\x47\x34\x4c\xe7\xcc\xf5\xdc\x74\xce\x1d\x26\xe8\x76\x5b\x83\xa5\x20\xa7\x2b\x5d\x82\x66\x8c\xf2\x09\xf9\xc8\x84\xac\x1a\x9e\x8f\xa6\x0f\xc6\xd3\xc9\x78\x6f\x64\x79\x05\x26\xde\x16\xe5\x65\x71\xce\xf4\xae\xcc\x47\x46\xcf\xbd\x68\xae\x46\x1b\x43\x7e\xab\x9a\xde\xba\xfb\xa3\xa6\xde\x90\xa2\xa6\x55\x9d\x65\x4d\xbd\x5e\x57\xf5\x0c\x2c\x7a\xf4\xda\xa6\x45\xed\x7c\xc5\xd6\xeb\x42\x0f\x48\xc2\x82\x8c\x56\x92\x0d\xa4\x12\x55\xa9\x46\xc1\x67\x1c\x4d\x27\xf7\xf0\x67\xb2\x83\xf4\x0f\x26\x53\x05\x01\x61\xca\x32\x5d\x66\x2f\xfb\xd0\x29\x8a\x8c\x4e\x4e\x98\x7c\xd5\xe8\x21\x1d\xb9\x40\x3a\xc3\xc9\x06\xe8\x6a\x77\xe3\x1b\x30\xad\xd0\xa7\xbe\x95\xb3\x5e\x31\x29\x8b\x73\xb0\xcd\xe7\xac\x76\x4a\x60\x98\x8b\xda\x06\x38\xa3\x01\x60\x5a\x08\x95\x5f\xe2\x70\x67\x7b\x22\xcd\x9b\x6b\x84\x67\x25\x02\x4e\x8d\x38\x88\x42\xb7\xab\xcc\x59\x20\x99\xfa\x60\x0c\x43\x10\x23\x13\x2d\x2e\x6d\xc8\x92\x3e\x2f\x94\xe6\x71\xf5\xe7\x71\x79\xb4\xcb\x2d\xb4\x79\x77\x97\x1b\x12\x6b\xe3\x5c\xfb\xe6\x41\x35\x82\x4c\x08\xc3\x39\x2a\x29\x23\x41\xf2\x8a\x4c\xb0\x26\xc5\x09\xcf\x5f\xd3\xa8\x85\x9a\x5a\x57\x61\x23\xca\x9a\x15\xc2\xbd\xaf\xf1\x86\x14\xdd\x26\x0e\xa7\x1b\xf0\xbd\x68\x4f\xaf\x46\x94\xec\x7b\x51\x5c\xb1\x77\x45\xac\x89\xb0\x68\xeb\x06\x45\xd3\xcc\xd6\x78\xc9\xc4\x59\x23\xae\xf4\x1a\x27\x0b\x97\xa8\x7b\x4d\x2e\xdc\xaf\xb6\x8d\xe4\xd4\xa5\x85\x2d\x23\x57\x2e\x55\xb0\xdf\x57\x4c\xaa\x03\x5e\x5d\x81\xdc\x04\xad\x20\xaf\xfc\x47\xba\x96\x3a\x7e\x3b\x8b\x8f\x91\x76\xc5\x94\x0d\x97\x4d\xcd\x22\xcc\xc4\xf6\xed\x55\x96\xd9\x0c\x63\x88\x7e\x85\x46\x1f\x2e\x2a\x39\x38\x15\xcd\xb5\x64\x62\xb0\x68\x98\xe4\xff\xa1\x06\xf6\xa8\x18\xf4\x36\x6c\x3c\x78\x55\x5c\xb2\x81\x5c\x09\x36\x50\x17\x85\x1a\xdc\x34\x2b\x88\x9e\x3b\x28\x06\xcb\xa6\xbe\x39\xab\x6a\x08\xc6\x64\xa2\xe6\xda\xa2\xe5\x78\x70\xa1\xd4\x52\xe6\xdf\x7e\x7b\x76\x3a\xbe\x62\xdf\x9a\x1d\xee\xf2\xcb\x11\x26\xbd\xeb\xff\xeb\xda\xdb\x37\x52\xff\x45\xcd\xc5\x3d\x8e\xcf\x67\xfd\xee\xce\x67\x7a\x27\xe0\xcf\xee\x99\x33\xb3\x61\x36\xad\x3a\xe9\x9c\x2e\xbe\x74\xc3\xd9\x8c\xbb\xe7\x1b\x00\xd7\xfa\x48\x87\x53\x72\x63\x28\xc4\x01\xdd\x9d\x92\x6b\x7a\x9f\xfc\x41\x27\xb3\x9e\x9d\x30\x48\xa9\xc3\x13\xfa\x87\xde\x1b\xe1\x0e\x20\x5f\xb0\x51\x18\xbe\x9d\x3c\x61\xeb\xf5\x74\xef\xfe\x63\x36\x4f\xa6\x2d\xfe\x68\xa0\x8a\x4b\x26\x61\x02\x64\xa5\x45\x82\x41\xc5\xd5\xe0\x94\xa9\x6b\xc6\xf8\x60\x32\x28\xf8\x62\x30\xdd\xbb\x4f\x06\xfa\xb3\x8a\x9f\x0f\x20\xe2\x9c\x16\x51\xa5\x8b\xe3\xac\x2e\x0a\xae\xf3\x0c\xce\x96\x72\x50\xc9\x01\x6f\xd4\x60\xc5\xed\x42\x60\x8b\x11\xce\xaf\xe9\xe4\x31\x9b\x03\x80\xe0\x59\xdd\x68\x66\x9e\xed\x7f\xcb\x70\xbe\xbf\x3f\xde\xdf\x37\xd2\xff\x09\xa8\x4d\x62\x22\x4b\xde\xd0\x93\xb1\x2e\x64\x6f\x66\xfe\x4e\xc7\x0d\xbf\x32\x59\x12\x55\x9c\xa5\x64\x37\x5e\x21\x9e\x92\xd9\x3f\x28\xdb\xb9\x06\x0e\xeb\x46\x13\x5c\x86\xe7\x6f\xc6\xcb\x46\x2a\x5b\xa3\x85\x2f\x45\xc1\x6c\x39\x6e\x87\x3b\x5a\xdc\xf3\x01\xe1\xd6\x8b\xe7\x23\x28\x53\x63\xea\x7a\x43\x19\xf9\xb8\x5e\xeb\x32\x27\xa4\xe7\xe3\x94\x9c\x72\x7c\x7b\x40\x2f\x22\xb1\x92\xa1\xb4\x23\x78\x83\x41\x10\x8f\xa8\xec\x29\x3a\xc0\xb0\xb8\x42\x34\xa3\xc4\xd4\xc9\x28\x15\x99\xd1\x71\x2a\x3c\x63\x1e\x64\xd8\xa8\xd2\x83\xd9\x41\x7c\x77\x8a\xbf\xdd\xc3\xa4\xa1\xec\x48\x80\xe6\x71\xd8\xfa\x46\x37\x59\x36\x79\xfc\x12\x35\x5a\xbe\xc2\xce\x50\x56\xe7\xa3\x8a\xb0\x23\x7e\x4c\x1b\xc2\xa9\x08\x41\x91\x02\x16\xa9\x45\xd3\x64\x94\x1d\x4d\x8e\x1d\xc7\x15\x00\xfc\x04\x6c\xfc\xd1\xe4\x38\x72\xcb\x0e\xfa\xb3\x6c\x96\x06\xda\x99\x9b\x74\x9d\x97\x72\xdb\x2b\xd3\xa3\x89\x6e\xbf\x8f\x62\xf8\xb8\x99\xb9\x0b\xf7\xbd\xff\x44\x62\x67\x8a\x77\xa7\xa4\xa0\xec\xa8\x3a\x26\x92\x56\x3b\x53\x52\x52\x76\x24\xe3\x0a\x8b\x2c\x9b\x3c\x79\x89\x0a\xc2\x31\xf6\x89\xa5\x49\x2c\x49\x81\xe7\x08\x3a\x5e\x12\xfd\x25\xe5\x44\x50\x89\x73\x93\x56\x10\x5d\x34\xa4\x05\x71\xb9\x82\x71\xf4\xc5\xf0\x74\x1c\xc3\xe2\x36\x1b\xef\x4c\xb5\x09\x01\x2d\x5a\xdc\xa2\x04\x3f\xa6\x11\xea\x05\x5f\xb0\x4f\xbb\xaa\x7d\x9e\x05\x78\x22\x7c\x0e\x76\xb2\x8b\x5d\x35\xae\x16\x1b\x03\x46\x77\x74\x4c\xde\xeb\xff\x7e\xa7\x53\xf2\xcc\x90\xaa\x4b\xba\x4f\x7e\xd1\x9b\xe1\xb9\xfe\xef\x29\x1d\x4e\x5b\x67\x9d\xb7\x88\xb5\xd0\xd4\x8a\x7e\x42\xef\xbd\xb3\xa0\x9a\x85\x60\x50\xca\xdb\x4b\xe1\xd7\x3a\x53\x3b\x0a\xca\x40\x8d\x82\xbb\x1c\xf5\x81\x8e\x74\x26\x12\xb4\xbb\x83\x4c\x43\x3e\xa0\x43\xcd\x64\x98\x4a\x83\x35\xf6\xce\xca\x73\xba\xa1\x44\xb7\x8f\x0c\x9f\x07\xe1\x58\x3e\xa1\x43\x8c\x9f\xeb\x7d\x28\xd0\xaf\xd1\x2d\x41\xd4\xf8\x2c\x6b\xd0\x3b\x12\xb4\x6d\x97\x85\x95\xfc\x6a\x36\xa9\x19\x91\x2c\x33\x95\x55\x08\x63\x3d\x52\x46\xd3\x2f\xe8\xe5\xcc\x01\x58\xbe\x45\x1c\x93\x67\x50\xb7\xab\xe1\x59\x96\xa1\x21\x7a\x96\xf4\xea\x09\xc7\xeb\x35\xcb\xb2\x61\x81\x30\x9e\x39\x23\x8e\x67\x7e\xf0\x22\xc7\xbf\xdb\x36\xdd\xcd\xd4\xb3\xf1\xd2\x9a\xf0\x82\xcd\xa3\x35\x16\x94\x9d\x7a\x1e\x53\x8e\x67\x5d\x16\xb4\xd7\xcc\xa1\x9c\x07\xf5\x94\xf9\x33\x6a\x06\x31\xcb\x5e\xa3\x43\x4c\x74\xd7\x0c\xe1\xd3\x3f\x67\xa6\x93\x9b\x10\x0e\xd0\x98\xf7\x39\x00\x20\xe3\x0f\x1a\x8e\xf5\xca\x8c\xf5\x2a\x18\x6b\x8e\x49\xad\xc9\xa8\x5d\xac\xb5\xd7\x46\xf8\x25\x29\x60\x49\x06\x33\xf2\x9b\x9e\xf6\xc4\xbf\xc2\xf9\x2c\xef\x4e\x6d\x8c\x14\x67\xe5\xb6\x77\x7f\x92\xb8\xa4\xb7\x7e\xb5\x89\x8b\xf5\x94\xdd\x9b\x25\x36\x72\xf7\xd9\xbe\x39\xd0\x5f\x50\x19\x32\x01\x2f\xae\xae\xd8\xa2\x2a\x14\xf3\x66\xd4\xd3\xf0\x88\xfe\x49\x32\xf1\xb4\x6e\xca\x4b\xf0\x1c\xb2\x39\xf6\xc2\x1c\xaf\x35\xf3\x5a\xfb\x77\xfb\xe1\xbb\x17\x8b\xba\x2d\xf7\x7e\xf8\xe6\x65\x73\xed\x5f\xdc\x0b\x5f\x88\x15\xff\xa5\x52\x17\xfe\x65\xcc\xaf\x77\xc6\xaa\x0c\x62\xb1\xef\x47\x98\x96\xf7\x13\x70\x48\x46\xf7\x37\x86\xca\x5c\xce\x2e\x29\x0b\x75\x6f\x0a\xb5\xaa\xa3\x4b\xca\x37\x11\x93\x02\x77\x09\xe1\xb9\x68\xdb\x70\xb9\xa5\x0d\x66\x5f\xee\xa7\x00\x15\xf4\x32\xa8\x5d\xc5\xb7\x0b\x77\xd4\xee\x04\xea\x67\x6e\x2d\x87\x07\x2e\x29\x5a\xb3\xdd\x84\x5f\xe8\x75\x3e\x29\xbc\xf3\x49\xe1\x04\xc0\x62\xbc\x60\x75\x71\x33\x2b\x69\x6f\xdc\xe9\xc9\xe3\x72\x2e\x77\xca\x5c\x92\xa2\x27\x43\xe1\xac\xfe\xe7\xfe\x29\xff\x0d\xa0\xba\xf4\xd6\x2a\xa8\x7e\x26\x25\x95\xad\x7d\xfb\x6d\xb5\xc8\x7f\xdf\xd9\x21\x6e\x6b\xe6\x9c\x44\x7b\x3f\x67\xc4\x6f\xa8\xbc\x24\x89\xcf\x55\x41\xcb\x9d\x82\x78\xf2\x9a\xef\x4e\x37\xa4\x7c\x22\xe7\x28\x38\x37\x68\x49\x3e\xa0\xf7\x84\x79\xa8\x06\xb3\xed\x19\x3c\xbd\xc7\x9a\xec\xcd\x2b\x84\xf3\xa7\x9a\x9a\xea\x2d\x5c\xee\x4a\x8c\xf5\xa9\x17\x94\x51\x00\xa1\x66\x98\x3c\x5f\xaf\x7f\x59\xaf\x91\x27\xbd\x18\x13\x16\xcd\x8f\x91\x13\x7a\x66\x07\xdf\xb2\x98\xd0\x45\x9f\x5d\x8b\x62\xd9\xfb\x91\x59\x3d\x97\x1d\xdb\x26\x77\x42\x76\x57\x8f\x55\xa6\xab\x8b\x4a\x86\xaa\xf4\x68\x45\x45\x75\xb7\xaa\x97\xb7\xe1\xd0\xf7\xb0\xf3\x97\xf1\x52\xbc\x68\x56\xf5\xe2\xef\x15\xab\x17\x3d\x16\x1c\xe9\x02\xd4\x87\x98\x55\x77\xc3\x09\xe2\x0e\x7f\x73\x8a\xb4\xe7\x49\x7b\x71\xe7\x9e\xfc\xb0\x41\x9c\xd6\xe0\x98\xd5\xbf\x93\x13\x21\x3d\x22\xd6\xeb\x02\xe1\xa8\xd5\x56\xf0\x7c\x5b\x54\x5c\xd1\x17\xd1\xd4\x35\x5c\x55\x7c\xc5\x0e\x3f\xb1\x72\xa5\x0b\x08\x7b\xd5\x99\xf8\xa8\xd0\x65\xb1\x92\xfd\xdf\xa5\x23\xfd\x3d\x98\x0d\x86\x0e\x2d\xdd\x61\x86\xc3\x27\xfc\xee\xad\x68\xce\x2a\x1f\x5e\xeb\x8b\x55\x4f\x91\xa2\xe1\x0b\x14\x50\xa0\xab\xfa\x0e\xb7\x8c\x51\xa3\xbf\xf4\xbf\x2a\xfd\xab\x1a\x43\xac\x6a\x1b\xf5\xd7\xb8\x0f\x35\xa4\xb7\xce\x40\x7b\x64\x8d\xc0\x49\xa5\x29\x54\x75\x86\x8a\x21\xa5\xc2\xd1\x2a\x2d\x28\x99\x1b\x82\x91\x1e\x18\x2d\x94\xbd\x15\xcd\xf2\xc3\xcd\x92\xc9\x01\x84\x73\x2e\x54\x23\xe4\x60\x51\x09\x56\xaa\xfa\xc6\xc9\x64\x5e\x22\x1b\x9c\xde\x0c\xd4\x05\x1b\xfc\x9f\xa5\x68\x96\xbb\x9a\x16\xc9\xff\x33\x58\x1a\xa5\xdf\x78\xf0\x93\x64\x6d\x79\xe3\xf2\x82\x95\x97\xfe\x27\xc2\x03\xd5\x0c\xf4\xfa\xd2\x05\x5c\x8d\x07\xef\x58\xb1\x18\x5c\x35\x82\x0d\x0a\x05\x72\xba\x17\xd3\x57\x92\xed\xc2\xc7\xbb\x6d\x2d\x23\x77\x61\x2a\xc7\xc6\x46\xee\x05\xff\x58\x88\xaa\xe0\x6a\xf0\x73\xd5\xd4\xb0\x0a\x47\x44\x06\x07\xbc\x6a\x67\x99\x6d\x8c\x17\xf1\xef\xab\x4a\xb0\x85\xb5\x00\xe3\xf4\xb6\x10\xa2\xb8\xc9\x19\x39\x6d\x1a\x4d\xfe\xf4\xa7\x39\x23\x86\xd6\xe6\x8c\x18\x22\x0e\x74\x51\x54\xfc\x5c\x3f\xdc\x5c\x9d\x42\xd6\x82\xeb\xef\xe0\xfb\x37\x67\xb9\x22\xde\x11\x80\x04\xce\x79\x39\x23\x95\x55\xa1\x42\x26\xde\x2c\x98\x2f\x16\x52\x1a\xce\xda\xbf\xf0\x89\x22\xf2\xa2\x80\xbf\xec\x53\x51\xaa\x5c\x91\x78\x18\xf3\x8a\x74\x56\x45\xde\x6c\xfc\x1e\x1f\xfb\x9c\x94\x6b\x11\xf3\x4b\x17\xf0\xc8\xde\xd0\xd8\x7b\x99\xb7\x07\xef\xdf\x9f\x7c\xf8\xf1\xc5\xfb\xde\xdb\x99\xd1\x67\x8a\x55\xe3\x56\x77\xda\xb2\xb7\x1c\x4d\xb4\x5c\x88\x0a\x24\x30\x29\x10\x47\x53\x4d\xd3\x2b\xaa\x1f\x1f\x4c\x30\x9e\x41\xda\xe4\x11\x0e\xb6\x45\x11\x08\x80\x2c\xcb\x58\x50\xf0\x9c\xe5\x5e\x99\x1c\x7a\x1d\xc8\xf6\x6a\x0c\xb1\x81\x9b\x80\xe6\x6c\xe0\x6f\xac\xf5\x2e\xd0\x43\xe4\x77\x02\xd7\x6b\x1c\x96\x66\x31\x28\xeb\x42\xca\x41\x21\x07\x85\x3f\x01\x46\x81\x81\x6d\x0b\xf5\x3a\x64\x41\x71\xef\xd8\x19\x13\x8c\x97\xae\x4c\x7d\x24\x0c\x2e\x0a\xd0\x6b\x9d\x32\xc6\x07\x15\xaf\x54\x55\xd4\x95\x64\x8b\xc1\xae\xde\x4f\x4c\x20\x1c\xe5\xd0\xf5\xb3\x85\xbf\xa0\x1b\xaa\xf5\xda\xb1\x11\xad\x2a\x4d\x85\xca\xa9\x20\x79\xce\xf2\xc0\x37\xad\xf6\x8d\xec\xcd\xec\xe9\xbd\xea\x1f\x90\xf7\xba\x75\x03\xf6\x09\xa2\x8f\xeb\xf2\xae\x56\x52\x0d\x58\xa5\x2e\x98\x18\x9c\x32\x90\x22\x07\x8d\x08\x46\x88\x00\x95\x18\xed\xb8\x1a\xf0\x2c\xf0\xe2\xa7\x56\xc3\x6e\x6e\x21\x91\xca\x32\xd5\xbe\x24\xb7\x65\xc3\xa5\x12\xab\x52\x35\x22\xb7\x6a\x76\x46\x18\x5f\x5d\x31\xa1\x29\x72\x3e\x9c\x92\x6b\x61\x02\xa4\xe7\xc3\x09\x29\x1b\x7e\x56\x9d\xaf\xec\xbb\xc9\x66\x83\x89\xca\x32\xa7\xc5\x97\x4c\xbd\x75\x45\xbf\x39\x9b\xf7\xa6\xc2\xe0\xe4\x7a\x29\x41\x2b\x4e\x4e\xa8\x32\x60\xf6\x2b\x1a\x70\xf5\x1e\xae\xae\xcf\x54\x85\x14\x64\x49\x47\x27\xf6\x62\xd5\x18\x9a\xef\x5a\x17\xa2\xdd\xd1\x0e\x9a\x90\xca\x7d\x8e\x11\xde\x19\x9d\x9c\x8c\xc8\x59\xc4\x6c\xb4\x66\xfd\xf6\x1c\x57\x44\xcc\xa4\x61\x25\x78\x6b\xa7\xd8\xd0\xd4\x94\x9a\x54\xf4\x40\x93\x1d\xd4\x60\x52\xd0\xc9\xac\x78\xdc\xcc\x8a\x9d\x1d\x5c\x1d\x15\xc7\x81\x71\x75\x71\xec\x41\x05\xa9\xa0\xc6\xa4\xc8\x46\x5b\xb3\x5c\x0b\x23\x47\x3a\xf1\x78\x5c\x36\xbc\x2c\x14\xaa\xf4\x6e\x14\x63\x76\x55\x29\x95\x98\xde\x1a\xce\xe8\xc8\x15\x79\xdb\xf0\xe8\x0e\xab\xb5\x7e\x23\xcd\xd9\x59\xfc\x0a\xa2\x4f\xd7\x8a\x89\x18\x1e\xd0\xb5\x6d\x48\x29\xdb\xe8\x13\xfe\x9c\xa9\x1e\x7b\x05\xb6\x21\x32\x7c\x01\xf6\x05\xc6\xfb\xb7\xeb\x48\x12\x14\x6b\x20\xa3\x31\xde\x6c\x36\x48\xe8\xc5\xe6\x71\x54\x49\x89\x04\x51\xde\x3c\xa9\x86\xcb\x49\xc2\x03\x03\x2d\xcd\xa3\x05\x3e\x6b\x1d\x7e\x6b\xe6\x3d\xa0\x6f\x37\xf8\x68\x79\x6c\x11\x32\xcc\xb0\x69\x16\x95\xc7\x56\xb7\xc6\x88\xe4\x97\xaa\xae\xdf\xb1\x92\x55\x1f\xcd\x4d\x66\xaf\x45\x62\xd0\x50\xb0\x45\x32\x4d\x0e\x4d\xea\x82\x1c\xe0\x5e\x6a\x9e\x1a\x6b\x9f\x36\x43\x10\x3c\x93\x52\x8a\x0a\x2a\xf0\x7c\x32\xa4\xb4\x5a\xaf\xa7\xdf\x56\x94\xd2\xe9\xb7\x45\x5e\x19\x64\xb3\x02\xc4\x90\x79\x43\x27\x39\x6a\x68\x9f\x0c\xaf\xe6\x0a\x06\x3b\x5f\x81\x0f\x2c\x6a\xd6\x74\x82\xb3\x2c\xec\xaa\xde\x55\xc8\xb7\x00\x9b\x2d\x54\x91\x22\x1e\x80\xd4\x46\xb0\x9d\xa3\xb6\x3b\xce\xee\x74\x43\xb8\x9e\xae\x16\xe8\x63\x76\x66\xde\xd9\xa9\x30\xc7\x1a\x42\xdc\x8d\x7c\xe3\x36\xd9\xd8\x10\xca\xe0\x90\xd7\x9b\x48\x37\x28\xe0\x97\x55\xcf\xae\x63\xff\x55\xbb\x8e\xb5\xbb\x4e\x85\xbb\x4e\xf5\xef\x3a\xb8\x35\xa6\x96\xfc\x01\x8c\x29\xf8\xff\x68\x86\x5a\x8c\x1b\x6e\x6e\xb4\x13\x4a\x04\x13\x83\x26\x6b\x11\x41\x5f\xe1\xcc\x98\x4f\x9a\xf0\x34\x8a\xa1\xbe\x42\xf1\x06\xf6\x01\x8b\xf6\x81\xc2\x7f\x62\xe9\x3a\xab\x89\xb0\x09\xc6\x0c\x3f\x4c\x09\x4c\x3c\x5b\xc3\xf1\xf9\x2a\x57\x5b\x76\x8b\x0b\x80\x12\xae\x9b\xd0\x81\xfd\x68\x79\x6c\x17\x63\x9b\x30\xd6\x53\x0c\x15\xdb\xe1\xc2\xa1\x01\xad\x59\x69\x5f\xda\x4a\xe6\x5b\xc9\xe6\xab\xfc\xae\x3d\xfd\x53\x6a\x5f\xfa\x25\x0d\x3d\x3b\x4b\x5a\xba\x49\x29\x10\x4c\xd4\xb6\x5d\xd3\x16\x35\x4f\x8b\x3e\x67\x0a\xe1\xb4\xc1\xdb\xf6\x20\x8a\xc6\xc6\xc3\x89\xc0\x42\x1f\x57\xd2\x2c\x78\x86\xe7\xec\x68\x72\x9c\x33\x8c\x5a\x8c\x24\x07\x4a\x0d\x03\xdc\xdd\xb6\xfe\x3a\xab\x8c\x37\x6e\xb1\x6d\xe3\x92\x02\x93\xdb\xb7\xa2\xf9\x58\x81\xc5\x21\x79\xd6\x70\xa9\x19\x80\x7c\xb1\xd9\x04\x12\x8f\x3f\x93\xbf\x54\xc4\x9a\x4e\x70\xc0\xe3\x8a\xcf\x7c\xd6\x7a\x51\x05\x5c\x67\xdf\xa1\xb4\x31\x44\x22\x14\xfa\x66\xcd\x58\x5d\x14\xea\x1d\x64\x91\x54\x90\xe8\xf7\xf7\x45\x2d\x19\x15\x68\x38\xc5\xf1\x8b\x0f\x62\x05\xe9\x93\x24\xfd\xb5\x5e\x7d\xc2\xde\x14\xc5\x5f\x5c\x54\x72\xcb\xc2\xd8\xc4\x39\x0f\x2c\x59\xa2\x3d\xf6\x26\x2c\x1c\xd6\xa6\x3b\x2e\x66\x04\xc3\x0f\x3b\x03\xac\x08\x77\x9c\x5d\xcb\xcd\x09\xca\xc7\x17\x85\x7c\x73\xcd\x9d\x25\x05\xe9\x3f\x60\xde\x83\x24\x35\x37\x7f\xf2\xdb\x0d\x60\x25\x56\x8a\x09\x2d\x80\xae\xd7\xa3\xff\xf5\xbf\xdc\x8f\x11\x29\x68\x33\x2e\xe4\x0d\x2f\x5f\x84\xef\xa3\x94\x11\x60\x7a\xaa\xe6\x3d\x48\x6a\x1f\x8a\x73\xc8\x12\xfc\x0e\x66\xb7\xeb\x60\x1d\x71\xa4\xa1\xc8\x70\x3a\x57\xf9\x29\xa9\x12\x0e\xb6\x09\x10\xaa\x48\x01\x42\xf5\x27\x24\xd6\xeb\xa3\x63\xbf\xf4\xc1\x1d\xf0\x63\x73\xd9\xf5\x35\x33\x23\xbb\xea\x68\x99\x00\x08\x00\x00\x84\x28\x3d\x0b\xf8\x72\xcb\x93\xff\xc0\xb8\xe9\xa9\x16\xc9\x8b\x5a\xb0\x62\x71\x33\x10\x2b\xae\x85\xc0\x11\x9e\xd9\x0f\x17\x86\xe9\x87\xaf\x47\x80\x16\x6b\x0a\xaa\x5c\x75\x2f\x11\xde\x80\xc9\xf7\xf8\x8a\xa9\x8b\x66\x41\x1b\xc2\xc7\x85\x38\xa7\x95\xbb\xce\x2b\xa8\x89\x19\x70\x6e\x63\x07\x79\x3d\xe7\x09\xdc\x65\xe9\x24\xe9\x01\x02\x2f\xb0\xd3\xe4\xb8\x0a\x24\x44\xfd\x19\x71\xf6\x49\x19\x2f\x39\x53\x0f\xe6\x63\x09\x38\x29\xe3\x13\xfb\xb7\x10\xe7\x2d\x0a\x92\x6f\xb0\xcf\xef\x86\x62\x65\x7b\x20\xe8\xc2\xb4\x74\xc6\xc7\x0b\x6b\xb0\x75\xf8\xa9\x64\x4b\xc3\x17\xea\x37\x46\xf7\x39\x32\x0d\x09\x0b\xcb\x32\x3e\x2e\x4e\xc5\x6a\xa9\x90\x7b\x6b\xca\xc2\x33\x41\xcf\xec\x9d\x47\xed\xe0\x2e\xa1\xf9\xa0\x58\x1f\x19\x70\x45\x30\x06\x87\xe6\xf0\xf1\xa2\xe1\x6c\xbe\xc8\x97\xa4\x84\x51\xeb\x19\x01\x7b\xdc\xc2\x7b\xa2\xb3\xe7\xe6\xab\xcd\xa6\xed\x65\x69\x7d\x07\x91\xe9\x95\x9d\x0a\xfb\xde\x4e\x48\x69\xba\x04\xce\x8b\x5c\xd3\xc7\x2a\x91\xef\xc0\xe7\xd9\x2b\x23\x6f\x75\x89\xb9\x6b\x38\x29\xc4\x79\x6e\xb8\x7d\xc0\xe7\x0b\x4c\xee\xa2\xec\xb6\x46\x9d\x5b\x6c\x36\x1b\x36\xbe\x16\xc5\x92\x96\x36\xa0\xed\x48\x3a\x20\x0d\x13\xa5\x50\xcb\x3c\x3e\x09\x94\x91\x5a\xaa\x19\x31\xa3\x8c\xe3\xe7\x23\xb2\xa0\xa3\xd2\x7a\xf4\x2c\x46\xe4\x82\xde\x6e\xda\x6d\x77\x1a\x69\xb8\xae\xa2\x5f\xaf\xf4\x2f\x63\x2c\x71\xbb\x99\x9d\x1f\x55\xc7\xdb\x48\xdc\xcc\x18\x46\xd8\x0d\x79\x1e\x09\x76\xe4\x86\x7e\xcc\xb2\x8f\xe8\x23\x7a\x8d\x8e\x8e\x31\xc6\xb3\x9b\x2c\xbb\x31\x1a\x4e\x61\x06\xe3\xc6\x00\xfa\x9e\xd3\x1b\x73\x78\x1d\xd0\x57\x81\xa0\x7a\xba\x55\x68\x3d\x0f\x74\x12\xd7\x9a\x1c\x1e\x99\x25\x4e\xdc\x10\xba\x85\x75\xdc\x2f\x98\xb0\x23\x75\xdc\x47\x87\x9d\x37\x87\x26\x15\x10\x3c\x65\xb3\x09\x7d\xbe\xff\xf0\x2c\xd6\x2c\xcc\x49\x03\x81\xa8\x09\xb8\xda\x0a\x45\x80\x7b\x6f\x45\x73\x55\x49\x16\xb6\x44\x13\x99\x61\xa0\x22\xf3\x9a\x42\xb3\xc7\x6b\xc4\x8e\xf8\x31\xf8\x18\xcf\xda\x7d\x39\xa4\x54\xda\x6d\xe0\xc0\x6b\xf5\xe2\x5e\xd1\xd2\x82\xd8\xda\x3a\x57\x59\xd6\xbd\xf8\x58\xf9\xb1\x5f\x91\xd1\xc9\x49\x71\x5d\x54\x6a\x84\xe7\xb6\x6d\x63\xc1\x64\x53\x7f\x64\x68\x35\xb6\xef\x70\x0a\x26\xaf\xa5\x48\x4b\x50\x08\x83\xc6\x46\x38\xf1\xe6\xb5\x9d\x05\xf7\x1e\xe7\x9d\xf2\xfb\xca\xb5\xed\xa7\x8c\x54\xa8\xec\x14\xeb\x85\xc9\x4e\xe9\x9b\x02\x49\xb3\x3d\x61\x00\xf5\xa8\x06\x2e\xd9\x8a\xaa\xb9\x85\xc4\xaf\x48\x85\xf3\x0a\x85\x37\xc1\x27\xe6\x26\xd8\x45\xb3\x71\xa7\xdc\x91\x23\x03\xc7\x8e\x96\x1b\x05\x4e\x4b\x8c\xcd\x4d\xe6\x16\x52\xd9\x16\x64\x61\x55\xc0\x19\xc7\x11\x96\x88\xe8\x51\x45\x4c\x1b\xfa\xca\x72\x28\x20\x17\xb3\x2d\x64\x29\x51\x15\x7d\xb8\x60\x03\x57\x33\x18\x72\x81\x22\x68\x69\x38\xb9\x41\x31\xf8\x0f\xf8\xf8\x3f\x06\xa6\xac\x16\x14\xfe\xc2\xb2\x50\xb5\x96\x42\x7c\xdb\x1d\x55\x8e\xcf\x30\xb3\xf4\xbc\x82\xb3\xb7\x59\x0d\xac\xc8\x74\xb0\x2e\x8c\xd5\xa9\x79\xeb\x8f\xe6\x79\x65\xc8\x38\xe2\x47\xb0\x3e\x56\xb5\x7a\x5d\x5c\xb1\x63\x5a\x59\x61\xd6\xe0\x31\x5a\xfc\xa1\x97\x4d\xe9\x37\xf7\x30\x3c\x53\x82\xf1\x35\x8b\xd3\x8e\x2e\xee\x36\x03\xe7\x55\x8e\xbe\x6c\x40\xfd\x60\x9a\x86\x39\x05\x7c\xc1\x07\x76\x67\xf5\x15\x1f\x84\x4b\x6b\x65\x32\x7d\x38\xbc\x6c\xca\x5c\x73\xef\x9b\xd9\x74\x50\x81\x06\x15\x69\x69\x54\x95\x17\x2f\x9b\x92\xb2\xa3\xe9\x31\x26\x7b\xed\x1b\x7b\x71\x65\xde\xed\x1d\x13\x35\x2e\xce\x14\x13\xe6\xf7\xfe\x31\xb6\x70\x63\xe2\xe6\x90\x2b\x51\x31\xe9\x2c\x82\x22\xd3\xa1\x56\x26\xb4\x47\x41\xd5\xf0\xf5\xfa\x76\x33\xb3\x40\x75\xfe\x8c\x32\x91\x89\x06\x0a\xa6\x2e\xcc\x1d\xc2\x6c\x81\x05\x50\x52\x2d\x3d\x72\x7d\x1b\x01\xba\xc3\xe6\x98\x30\x4f\x76\xdf\x10\xeb\x3d\x67\xdc\x80\x25\x53\x9a\xbb\x4e\x8c\x84\xf4\x8e\x69\x3d\x24\x2b\xd8\x73\xbc\x5d\x62\x16\x82\x61\x1b\x58\x86\x59\x18\x2e\x3b\x70\x49\xc3\x4a\xbe\x2e\x5e\xa3\x36\x1c\xaf\x65\x2d\xc1\x50\x28\xd2\x3a\x80\xe9\xd4\xce\x4e\xd3\x7a\x6b\x62\xbd\xe1\x6d\x9d\xa4\xc1\x6d\x33\x2c\x71\x3a\x6a\x8e\x89\xe1\x21\xe8\x70\x4a\xf8\x2c\x79\xaf\xfc\xcb\x09\xe1\xfe\x22\xa0\x30\x6b\xb8\x70\x36\x40\xb7\xfa\x67\xfe\x72\x13\x5a\xff\x78\x66\xc0\xb0\x2c\xca\xb0\x2b\xc3\x89\xb7\x1b\xba\x0a\xce\xc3\x83\x71\xa0\xa8\xa5\xaf\xc8\xab\xe8\xf7\x15\x79\x75\x24\x8f\xe9\x15\xf0\x66\x75\x01\x6e\x19\xb4\x65\x5a\xbf\x77\x83\xa8\x37\xbb\xec\x24\xf7\x68\x14\x7a\xc7\x3d\xcb\x58\x58\xab\xf7\xb4\x52\x36\x9e\xf4\xd5\x7a\xdd\x53\x27\x84\xbd\x0a\x1b\xb6\x5e\x2b\xb8\x44\xc2\x58\x4b\x41\x57\x85\xb8\xec\x3b\x9a\xbf\x4e\xa3\xfc\x0a\xae\xb1\x5b\x95\xf2\x2b\x22\x61\x5f\xad\xd7\x08\x2c\xb2\x7a\xda\x85\x31\xd9\xae\x25\x3f\x80\xdb\x6e\x36\x2e\x80\x23\xeb\x36\xef\xd6\x1e\x97\x39\xdb\x6c\xc8\x35\xfa\x23\x14\x49\x82\x1f\x47\xc5\x56\x4e\x8a\xb0\xf1\x41\x28\x42\xd1\x3f\x74\x75\x3a\x25\x50\x99\x25\x70\x33\xec\x7a\xf0\x07\x2a\x7d\xb2\x17\x77\x7a\x67\x15\x71\x3c\xaf\xf2\x0a\x16\x22\xea\x3b\x7e\xfd\xc7\x40\x8e\xad\x52\xc1\x7f\x00\x6a\xe1\x6b\x30\x4f\x8c\x07\x70\x44\x0e\xee\x60\x10\xc9\x81\x17\x03\xbb\x59\x46\x47\x86\x8a\x0e\x7c\x61\xc7\xa3\x8d\x41\x99\xec\x53\x6b\xd9\xb8\xca\x40\x27\x60\x36\xb1\x55\x75\xb7\x08\x31\x6a\x2c\xd8\x47\x26\x24\x43\x98\x74\xf7\xb9\xf2\x7b\xdc\xc7\x4b\xf3\xd6\x87\xc2\x94\x98\xec\x66\x11\x6e\x75\x6f\xb6\x17\x6c\x70\xdd\x5c\xc8\x2a\xe9\x6b\xf2\x29\x58\x3f\xd1\x45\xca\x27\x73\x4b\x98\x3a\x2d\x5a\x75\x0f\xfb\xe8\x10\x25\x81\x48\xd8\x67\x10\xcc\x0c\x9b\x69\x1e\x2d\x6c\xb5\x6d\x8d\xc5\xb0\x0e\x4f\x1e\x0b\x50\x1d\x1e\x82\x06\x18\x5a\x78\x80\xcc\xe0\xb0\x70\x14\xfa\x03\x26\xc3\xd6\x75\x1d\x06\x16\x48\xf6\xc8\x4a\x8c\xe5\x45\x21\x0e\x14\x9a\x60\xcf\x39\x5a\xfd\x6c\x96\x59\x32\xbb\xc3\xc7\xb2\xae\x4a\x86\xa6\x18\xc2\x73\x5c\x54\xf2\x88\x1f\x53\x85\x37\x44\xaa\x66\x99\xa7\xca\x38\x3b\x7a\xa1\x3e\xb0\x6d\xd7\xd1\xe4\x38\x38\x7b\x62\xde\xc3\x00\xdf\x5a\x11\x94\x85\x5c\x84\x39\x5e\x3e\x16\xf5\x86\x74\xc4\xd1\xde\x51\xd7\x6d\x70\x05\xcd\x5a\x8d\x7e\x68\x01\x00\x3b\xcd\xc9\xd1\xf6\xb0\xb4\xbc\x82\x19\x53\xcf\x9a\x08\xd2\xdc\xc5\x80\x0c\x87\xcd\xc6\x8d\x6f\x95\xf6\xd7\x2e\xc9\xdd\xe9\xac\x7a\x42\x27\xb3\xdd\x5d\x8f\x15\x95\x0e\x0c\x98\xb7\x16\xe9\xe0\xc0\x91\x4b\x29\x2d\xc6\xe6\x10\x76\x2b\xb8\x41\x23\xc6\x17\x46\x17\xe1\xde\x3d\xa6\x7e\xc5\x39\xd9\xc1\x4e\x69\x41\x46\x8e\x0f\x19\x61\x52\x07\xc9\x2d\x13\x62\xca\x2a\xb3\xac\x8e\x17\xef\xe3\xc2\xf3\x30\x6d\xe5\x6d\x1a\x19\x4e\x5a\x00\x12\x9b\xbf\x2d\x34\xfc\x22\x48\xdd\x38\x5d\x44\xf9\xd5\x75\x79\x04\xac\x61\xdd\xd5\xdb\x28\x71\x33\x00\x95\xe9\x15\xe3\x6a\x70\x5d\xa9\x8b\x66\xa5\x06\xf0\xf9\xa0\x11\x03\xdb\x82\xd1\x9f\x68\xf0\x66\xb3\x21\x46\xab\x91\x38\x85\xb6\xa1\x46\xb7\xce\x3c\x37\x33\xcf\xbd\x06\x2c\x99\x79\x0e\x1c\x51\xd3\x9d\x45\xbf\x25\x9b\x78\xa2\xac\x92\x1b\x1a\xdf\x84\xcd\xb4\x27\x47\xe3\x82\x7c\x56\x59\x86\x46\xf0\x3c\x32\x7a\xf6\x91\xd3\x9f\xc0\x6f\x9c\x65\x55\x5b\x6b\x96\xa9\xc7\xb4\x0a\x8a\xcb\x32\x64\x62\xfb\x18\xe9\xbd\xa0\x9a\x99\x6f\xd7\x67\x7e\x1b\xf0\x3f\x06\xb7\x9d\x14\x96\x1a\x55\x73\xb4\x8d\x5c\xc1\x96\x0a\xab\xd1\x1c\xbb\xd5\xac\x1b\x65\x06\x2a\xf0\x86\xb8\x1f\x5d\x1f\xdc\x2f\x20\x18\x41\x9f\x21\x4b\xda\x71\x13\xb3\xa3\x6d\x0e\x7c\x9b\x07\xca\x2c\x9b\x03\x79\xc2\x43\x3d\xa9\x85\xbc\x31\x31\x76\x12\x5f\x5b\xa0\xd9\x9c\x79\xa0\xda\x62\x56\x0b\xa5\x2c\x09\x35\xf9\x14\x26\x17\xe0\x82\x58\xc9\x8b\x88\x90\xb5\x56\xdb\x5b\x97\x95\x32\xcb\x2a\x46\x01\x09\x96\x95\x81\x22\xe1\xa1\x9c\xa1\xe7\x3c\xbe\xdb\xb0\x23\xce\x83\x79\xd5\x94\xcd\x0a\x22\x98\x7c\x40\x5c\x37\x71\x43\x60\x13\xfd\x57\x35\xd1\xac\x41\xea\xc3\x98\x0a\xca\xb7\x9e\x12\x22\x50\x8e\x34\x54\xc0\xac\xeb\x56\xba\xe3\xbb\xd9\x6c\x3a\x74\xa1\xaa\xf5\x41\x5a\x5b\x4a\x50\x28\xc5\xae\x96\x6a\x84\x37\xc4\x9d\xb0\xa0\x5f\xcb\x23\x93\x53\x11\xab\x8d\xfc\x59\x7c\xeb\x84\xc6\x5c\x0b\x37\xa4\x15\x69\x73\x4e\xac\x08\x9b\x8b\x0d\xf1\x4a\xd9\x60\xa5\xb8\xa9\xb7\x07\x87\x1e\x56\xb6\x41\xfe\x6a\x00\x5b\x73\xc7\x73\xc7\x2e\xbd\x5b\x71\x55\x5d\x31\x2a\xac\x42\xb1\xc1\xb7\x9e\xdd\x1b\x09\x50\x83\xa5\x79\x07\x74\x20\x46\x18\x09\xdc\x63\x8c\x84\x52\x9e\x4b\xd0\x5e\x7f\x38\xcd\xf9\xaf\xd7\xbd\xaf\x24\xab\xcf\xb2\x4c\xff\xbf\x5e\x1b\x57\x3b\xd2\x50\xd7\xa6\xe0\x12\x0c\xae\x5f\x67\x81\xaa\x2c\x84\x81\x5c\xb4\x00\xa2\x35\x2b\xc4\xf7\x5a\x04\x55\x81\xef\x5f\x0f\xb3\xa9\xe7\xb2\xb2\xb0\xae\x28\xf0\x12\x14\x81\x25\x28\x09\x3d\x05\xc1\xce\x50\x32\x03\x4b\xa1\xf7\xef\xe7\xcb\x74\x59\x7b\x0a\x75\xaf\xa0\xd4\xb0\x1a\x6a\x7f\x76\xab\x61\xf8\xd6\x48\x50\x75\x23\xe1\x66\xb9\x8a\x70\x72\x04\x3b\xa3\x55\x74\x6b\x78\x16\x5b\x57\x86\x2f\xa1\x8c\xce\xa5\xa7\x1b\x3d\xd3\x01\x1b\x9c\xe4\xa4\x5a\x40\x23\x19\x17\x4d\x5d\x27\x77\xd8\x91\x93\x27\xd3\x79\x6b\x66\x7f\xbe\x58\x40\x94\xc9\x20\x85\x2a\x63\xaa\xd9\x29\xe9\x6b\xcb\xd9\x9d\xea\x82\x4e\xa0\xcf\x07\x80\x66\x41\xd5\xd8\xc0\x5a\x7c\x45\xa9\x6d\x5c\xcc\x20\x1d\x08\x8c\x89\x55\x19\xe5\x0e\x9d\x5d\x13\x7c\x0f\x63\x3e\xdb\xac\x14\xd8\xb7\xf9\x5f\x5a\x02\x02\x20\x0a\xc2\xd1\x74\xba\x8f\xed\xea\x71\x3e\x03\xfd\x1b\xa5\xdd\x0d\x51\xe6\x2d\x7b\x07\x96\x43\x9c\x4f\x4f\x99\x3d\xcc\xc3\x17\x6e\x91\x7d\x79\xf5\x71\xf6\xbb\x1a\x90\xe6\x0c\x9a\x10\xbf\xda\xe0\x50\x1c\x40\xd3\xfb\xb8\xc7\xd9\x1b\xc5\x0b\x6c\x18\x52\xd0\xe4\x16\x13\x8c\xf8\xa2\x6e\x5a\x22\x44\x1a\x3a\x25\x15\xbd\xdd\x10\x08\x37\x2d\x69\x8b\x4a\x4a\xca\xfe\xbb\x87\x2c\xeb\x4d\x46\x0c\xcf\x4a\x5a\x66\x59\x19\x50\x93\x79\x99\x33\xe2\x45\xd1\xa5\x68\x4a\x26\xe5\xb1\xa6\xcc\xb7\x1b\x2f\xbc\x5a\x85\xd0\xd8\xbe\xc6\xf3\xf8\x3a\x56\xc1\x69\xfd\xa1\x2a\x2f\xa3\xe5\xb4\x42\x0c\x04\xe7\x50\x04\x02\xf5\x70\xe0\x42\x98\x65\x43\x88\x76\xd0\x08\xf5\xbe\x14\xd5\x52\x49\x27\xef\x6a\x01\x93\xb2\xd6\x53\xb2\x15\xef\x7b\x9d\x27\x15\x78\x2e\x46\x65\xa3\xd1\x88\x8c\xfe\x73\xa4\x77\x5c\xfb\x09\x27\x6a\xb3\x41\x78\x9e\x58\x52\x29\x3a\x0a\xc7\xfe\x9b\xd1\x0e\x38\x12\x8a\x82\x2f\x9a\x2b\x84\x77\x46\xdf\x8c\x48\xa0\x1a\xe2\xf8\x96\x8f\x65\xb3\x12\x25\x33\xe1\x0f\xbb\xb1\x53\xf8\x78\x51\xa8\x22\xcb\x0c\x24\xb2\x7e\x36\x71\x5c\xde\x9c\x21\x85\xb3\x6c\xa5\x05\x47\x48\x35\xd2\xa3\xf2\xda\xba\xcd\x8c\x8d\x8b\xc5\x02\xa0\x45\x5e\x56\x52\xe9\x23\x6c\xde\x4d\x42\x23\xdb\xa5\x11\xa0\x05\xe1\x9c\x8d\x0b\xa5\x8a\xf2\x02\x72\xa1\x91\xef\xf2\xc8\xc4\x20\x0b\xdb\x1e\x0f\x93\xda\xe1\x30\x4e\x7a\x5c\x72\x36\x8e\x9d\x57\xd3\x81\x62\x3d\x0e\xae\x33\xb6\xdd\xad\x95\xc1\x3a\x80\x9e\xe2\xc8\xb3\x54\x99\x66\x08\xb5\x17\x37\xc6\x34\x43\x66\xd9\xa8\xe1\x70\xb3\x0c\x12\x4b\x09\xb1\x04\x47\x95\x16\x46\x8d\x56\xca\x42\xf2\xa2\x91\x84\x75\x33\xea\x4c\x29\xa3\x32\xc5\xef\x9d\xc5\xf5\x1b\xae\x6b\x6b\x81\x33\x3e\xee\x36\x81\x46\x0b\x1c\x14\xec\x3d\x99\x0c\x7e\x52\x02\xe4\x6b\x91\xb2\x41\x93\xb6\x5c\x32\xbe\x70\x2f\xa0\xc7\xf1\x96\x8a\x21\x0b\x08\xd3\x2c\x7f\x4c\x72\x23\x7b\x88\x1e\xcb\x5a\x08\x41\x00\x93\xd5\x32\x45\xa3\x1d\x16\xe0\x4e\x2a\x78\x6b\x2c\x6b\x52\x1b\xb3\xdd\xa9\x6e\xee\x64\xc6\x1f\x7b\xb5\x11\xdf\xd9\xc1\xea\x88\x87\x26\x66\x7c\x67\x7a\x6c\x85\x9f\x5b\xef\xca\xc3\x34\x7f\x20\x73\xe5\xc5\x9f\xea\xa8\x39\xa6\x05\x11\xa8\xc1\xa4\xd9\xd9\xd1\x3d\x49\xe8\x77\x1d\x5d\x27\xe3\x5b\xab\x8d\xaf\x8e\xd8\x71\xfb\x66\x65\x35\x18\x05\xee\x0c\x4e\xe8\x09\xa9\x3f\x02\x01\x16\xdf\x42\xe4\x7e\xcd\x34\xf6\x62\xeb\xb8\x06\x83\xed\xa2\x6e\xb2\x43\x9a\x17\x6e\x2b\xfa\x28\xc7\x28\x0d\x6b\x8c\xc4\xd1\xe4\x38\x4a\xdc\xb3\x89\x44\x1c\x4d\xe3\x37\xfb\xe1\x1b\x22\x8e\xf6\x8e\x3b\x51\x8b\xad\x3d\x1e\x20\x53\x6d\x42\x90\x39\x3d\x1a\xc4\x84\x78\xdf\x6c\x36\xfd\x30\x3f\xfa\x84\x9b\xf7\xbe\x31\x32\x5c\xce\x72\x9d\x05\x77\x4f\x2c\xc2\xd1\x83\x69\xdf\xb9\x75\x97\x01\x3d\x69\x8d\x91\xad\xa1\xe7\x30\x51\x31\x25\xb6\xf1\xed\xdd\x84\xbd\x0b\xda\xb4\x8e\xa0\x89\xea\x8d\xe1\x16\x03\xa5\xe5\xef\x62\x1b\x1e\x77\x39\xc1\xb1\xe3\xd2\x7b\x41\x53\xc2\x33\x30\xf8\xfa\x39\x33\xbb\xbb\x11\xf3\xcf\xbc\x87\x2a\x40\x88\xd7\x59\xd6\x6b\xb0\x62\x9c\x6f\x03\x68\x01\xfb\x54\xd8\x1d\xec\x88\x1f\x6f\xda\x31\x62\x1b\xe3\x5c\x60\xed\xc0\xa4\xfe\xa5\x99\x05\xd2\xd8\xe7\x87\xe0\x77\xa0\x9f\x27\x58\xcf\xb5\x7e\x7a\xb0\x87\xf1\x8c\xa3\x07\xfb\xc1\x4d\xbf\xfc\x7a\xef\x83\xb2\xb5\xae\xf3\x9c\x42\x21\x65\x75\xce\xd7\xeb\x7e\x51\x75\x3a\x53\x1d\xbc\xec\x10\xc1\xb3\xdd\xfa\xaa\x55\x47\x83\xf2\x98\xe3\x2f\x9a\x37\x3d\x4e\x9a\x30\x1d\x89\x63\xca\x8f\xc4\x71\x80\xcd\x88\xb7\x78\xb0\x19\x17\xdc\x98\x93\x6a\xc7\x01\xec\xa5\xe4\xb2\xae\x14\x1a\x0d\x46\xf8\x2e\x53\x6c\x34\x21\xa2\xb5\x84\x77\x10\xff\x01\xde\xcd\xbf\x56\x76\xd3\x53\xf6\xb2\xab\xc8\x27\x3c\xb4\xed\x0b\x06\x9f\xf0\xae\xa5\xaf\x08\x48\x34\xd7\x6b\x66\x32\x6b\x1e\xf3\x59\xb3\xb3\x83\x05\x50\x55\x3f\x1f\x8d\xb3\xf6\x45\x8e\xb6\x6d\x31\xad\x17\x18\x1b\xb6\x16\x8f\x1b\x7e\xc8\x63\xf3\xfa\xd6\x1a\x00\x36\xc6\xb3\xba\x90\x52\x0b\xef\x12\xf1\xf9\x48\x1f\x5a\x85\x18\xe5\x23\xa6\xbf\x1a\xe1\x71\xe9\x5e\xcf\x94\x3b\xea\x74\x0a\x93\x88\x91\x11\xfb\x54\xa9\x11\x26\x35\x98\xbf\x13\xe5\x8c\x5e\x4d\x95\xd6\xc8\xad\x4d\x80\xaa\xb5\x20\x64\x7f\x47\x37\x26\x5f\xd9\x2c\x23\x3c\x3d\x8b\x1a\x77\x56\x37\xd7\x07\x7c\x71\xb0\x58\x40\x7a\x6f\xa3\x2a\x7e\xde\x69\x57\xc5\xcf\xd3\xa6\xb1\xc5\x17\xb5\xcc\xb5\x0b\x83\xb6\xdd\xbf\x80\x08\xa9\x49\x4e\xd7\xf0\x38\x63\x45\xf9\x5c\xec\x8c\x06\xa3\x9d\x26\x6f\x7a\x46\xb8\xa7\xeb\x30\xda\x55\xa7\x63\x6c\xd1\xe9\x17\x5b\x84\xdd\xfa\x54\x75\x41\x69\x79\x4f\x3b\x61\x4a\xef\x9e\x76\xd7\x6b\xd2\xb7\x24\x82\x56\xf2\xa8\x95\x9f\x2a\x15\x35\xf1\x53\xa5\xc0\x85\xc3\xb5\x2e\x5e\x0e\x9f\x6b\xe0\x97\x2d\x80\x4e\x0b\xd2\xf9\x37\x49\x51\x3b\xa2\xb9\xff\x5c\x33\xa2\xe9\xfc\xcc\x16\xe9\x34\x26\x99\x33\x48\xb1\x4d\x89\x6a\xeb\x6d\x8f\x35\xa2\xf6\x99\x88\xa0\x3d\x02\x0a\x69\xa8\x98\x23\x91\x65\x7c\xce\x77\x46\xbb\xa3\x7c\x34\xc2\x3b\x2c\xe7\x9a\x81\xb2\x17\xbb\xbe\x88\xbc\x21\xc9\xa8\xe6\x62\xde\xec\x8c\x76\x4d\xea\x48\x7f\xb5\x33\x32\xfa\x8b\xd1\x31\x89\xba\x6e\x73\xea\x34\x9b\xef\xb9\x7e\x3c\xde\x6c\x88\xda\x70\xca\x08\x52\x54\xe0\xad\xb7\xcf\x3c\xbc\x4e\x56\x91\xed\x7b\x7b\xe7\xaf\x88\x0a\x2e\xbc\xf9\xcc\xa9\x3f\x7d\x6e\xc7\x8c\x36\xf1\x34\x6c\x07\x8c\x8e\xe7\x14\x42\xfc\xf3\x76\x48\x49\x43\x79\xba\xce\xf4\x8e\x4d\x26\x5d\x68\x41\x0f\x68\x4d\x63\x9e\x1a\x4c\x2a\xf3\x54\xe1\x0d\x69\xba\x0b\x33\x69\x10\x84\x67\x03\xcd\x48\x29\x9a\xba\xfe\xd0\x2c\x89\x71\xa8\xb3\x5f\xa7\xc6\xf4\x46\xf0\x29\xd1\xed\x86\xb4\xe6\xf4\xad\x11\xbc\xe1\xab\x59\xb8\x34\xbc\x73\x58\x22\x06\x15\x2e\x9d\x94\x0e\x14\xd1\x90\x8e\xdc\xba\x0b\xc0\x0f\xe2\xe9\x49\x94\xcc\x16\xa4\x25\xa0\xd1\x9b\x8a\x9f\x13\xb3\x9e\x7d\xf2\xa7\x4a\x11\xbf\xdd\xc2\xd4\x36\x6f\x50\x3c\xfc\x82\xc3\x55\x6c\x50\xdb\xf8\xc0\xe2\x7f\xe9\x12\x8d\x87\x48\xbb\x88\x65\x3e\x1a\x6d\xc8\x12\x06\xc5\xb8\x01\xdc\x1a\x1b\xce\x33\xba\x0c\x7d\xec\xfe\x25\x2b\xff\x07\xf8\x0e\x8e\x39\x9e\x5c\x3b\x0f\x5a\xa2\x9f\x07\xcf\x5a\xd4\x47\x0a\xe7\x5d\x9e\x62\xbd\xee\x0b\xd2\xda\xce\xe6\x3c\x78\xa6\xc1\x33\x9c\x22\x2a\x07\xfd\x52\x10\x98\x06\xde\x8f\x08\x0a\x72\x1a\x1d\x98\xfd\x31\x3e\x2d\x24\xfb\xb9\xa8\xd7\x6b\x4d\x19\xa0\x0c\x6c\x23\x60\x37\x54\x00\xf7\xfa\x1d\x0e\x9d\x1a\xb6\x8c\x96\xee\x69\xc7\x51\xfc\x4b\xb9\xd9\x3f\x2d\x9d\xf4\x73\x75\xc1\x90\x83\xad\x4e\x38\xee\x36\x78\x8b\xde\xed\xf9\xee\x74\x48\xa9\x66\xfb\x76\x50\xef\x88\x04\x89\x30\x34\xd8\x6b\x77\x60\x9c\x20\xe9\xcf\xb8\x8b\x84\x7e\x1f\x51\xbb\x05\x5b\xd6\x45\xc9\x90\xf1\xf0\x3d\x3f\xfc\xb4\x44\x23\xf4\xbf\xd7\xff\xfc\xa7\xc4\x50\x1f\x9a\xe7\xff\xfc\xa7\x5c\x7f\x83\x47\x64\x74\x3e\xc2\x64\xf4\xcd\x74\x84\xfd\x57\xdf\xfe\x53\xee\x7c\x7b\x4e\xa0\xa1\x3e\xed\x7f\xff\x53\xfe\xe7\xfa\x9f\xf2\x3f\xbf\xd1\x6f\x46\x78\xd3\x37\x4b\x77\xad\x53\x43\x49\xf5\x68\x7d\xf9\xaa\x14\xe1\x70\x1a\xdf\xd7\xde\x45\x29\xbe\x68\x55\x02\x21\xfc\x57\xe5\xd7\x22\x92\xd0\x0a\x2b\x89\x35\x94\xa3\xfd\x89\xf7\x09\xbf\xf7\xe7\x3c\xc1\x8d\x29\xf3\x9d\x42\x40\xf1\x3f\x2b\x04\x5c\x00\x1c\x6b\x22\x08\xb4\x2d\x62\xdd\xf6\xf0\xa0\x3d\x4c\x9f\x8b\x93\x99\x78\xcc\x66\x62\x67\x07\x73\x80\x0c\xf3\xed\x11\xad\xe3\xaf\xad\xe7\x65\x75\xc6\xca\x9b\xb2\x66\x68\x64\x0f\x84\x11\x99\x58\x46\x34\x68\x49\x62\x30\xf5\xdf\xd6\x18\x70\x1c\xe8\x69\x0f\x5b\xfc\x8f\x34\x87\x2d\x3a\xad\xf9\x14\x87\xef\xf8\x6f\x69\x8a\x66\x53\xc9\xb4\xd3\x8e\xff\x89\x49\x32\xd5\xf6\xb5\xe6\x7f\x60\x8a\xa0\x56\xdf\x16\xc7\xca\x16\xff\x05\xac\xac\xa4\x45\x97\x95\x95\x69\xa3\x7a\xfd\xbb\x2a\x52\xf4\x7a\x56\x4a\x2a\x5a\xe6\xc9\x26\x8e\x55\x63\xd5\xc1\xf8\x48\x1d\xcf\xec\x37\x47\xec\x18\x6c\x5d\x1c\x37\x79\xc4\x8e\x2d\x59\xa9\x40\x6e\xf1\x85\x43\xc6\xe8\x27\x02\x1e\x26\x08\x7f\x61\x1c\x37\x35\xf7\x26\xb7\x72\xaf\x6d\x09\x10\x76\xc4\xb7\x98\x43\x28\xfc\x0e\x76\x6f\x10\x44\xc3\x4a\x2d\x86\x45\x01\xb3\x50\x0a\xde\x7c\x71\x2c\x0b\x50\x5c\x99\x69\xaf\x3c\xae\xa2\x9e\x7d\x5a\x1d\x89\x63\xa2\xfc\x49\xce\xf1\x13\x3a\x59\xaf\x51\xe3\xf4\x7a\x9e\x91\x6e\x36\x9a\xa4\x8e\x5c\xd3\x46\x64\x54\xf1\xd1\x31\x26\xc5\x5d\x83\xaa\x30\x91\xb4\x38\x9a\x1c\x93\x92\x16\x47\xd3\xe3\x84\x2b\x6f\x3c\x4f\x9d\x26\x68\x3e\x38\x4d\x63\x8b\x28\x49\xf3\xd0\xc9\xef\xf4\x2b\x58\xad\xad\x06\x2c\x61\xf7\x3d\x27\x4d\x1a\xc2\xe7\x41\xae\xba\xe1\x3e\x93\x24\xb7\x97\xec\x26\x1f\x41\x1c\x97\x11\x89\x04\x82\x80\x5a\x76\x78\xff\x98\xb2\xa7\x32\x43\x44\x67\x37\x38\xdf\x52\x79\x69\x2b\x97\xac\x6c\xf8\xa2\xbf\x76\x2b\x4a\xf4\x55\xde\xca\x13\x3d\x75\xb7\x42\x45\xb1\x41\xa2\x4f\xa8\x90\x5d\xa9\xa1\x04\x04\x3d\xc7\x4c\x94\x7f\x82\xd9\xeb\xb2\x26\x0e\xf0\xe1\x55\xb1\x5c\x6a\xfa\xda\x10\x35\xbe\x62\xe2\x9c\x85\xa9\x92\x56\x26\xeb\x0b\x03\xe4\x12\x7d\xd1\xcb\xf6\x36\x28\xd8\x47\x51\xb8\xd3\x40\x35\x1a\x8e\x36\x46\x1c\x04\x3e\x2b\x7b\x05\xe1\x28\x38\x26\x15\xcf\x87\x13\x62\x34\x3d\x79\x81\xb8\xd7\xfa\x10\x86\x09\x28\x79\x4c\xaa\xd1\xf7\x40\xa2\x96\xf7\x4c\x1a\x1c\x26\x0c\x6f\x8c\x82\x14\xba\xf1\x9a\x7d\x52\x5b\xfb\xe0\xe8\x98\xa4\x61\x27\x30\x29\x69\x85\x14\x69\x65\xdb\x70\x8f\x97\x7d\xba\x5a\x6f\x39\x5e\x6a\x3e\xa9\x3a\x43\xd0\xe9\x4a\xfe\x5c\xd4\xd5\xc2\x77\xbb\xc2\x2e\xa6\x73\x03\xc6\xc0\x64\x65\x1e\x24\xf9\xff\xd8\xfb\x13\xae\xc4\x95\x75\x71\x1c\xfe\x2a\xb5\xfb\x5d\x6b\x5f\xbd\x6d\xd2\x55\x49\x98\xf6\x39\x9e\xbd\x98\xda\x09\x70\x00\x85\x7d\xfb\xd7\xaf\xab\x48\x22\x46\x20\xc1\x90\xa8\x70\xaa\xbf\xfb\x7f\x3d\x95\x99\x49\xb0\x45\xb1\x9b\x15\x25\x45\x52\x95\x84\x54\x3d\xf3\x34\xd8\x77\xbe\x59\xdf\xf7\x6e\xf6\x67\x8e\x1b\xec\xfe\xf9\xe7\x1f\x03\x1f\xc9\x1a\xe6\xbf\xfe\x70\x19\xeb\xfd\xf9\xe7\x1f\x37\x7f\xbb\x8c\xfd\xd1\x63\xec\xe6\x6f\xf7\xcf\x3f\x7b\x7f\xfe\x39\x77\xf4\x0e\x3c\xd7\xfe\x8c\x99\x30\x62\x33\x61\xc6\x66\xc2\xe0\x33\x11\xdd\x33\x78\xcb\x46\xf4\x96\xc3\xd9\x30\x62\xb3\xf1\x63\x77\xf7\xaf\x05\xf7\x82\xd9\x25\x3f\x16\x76\x59\xf0\x38\x7f\xe0\xe5\x1f\xe3\x07\xaf\xc3\xfb\x23\x96\x92\x29\xee\x81\x1c\x53\xc8\x4c\x50\x51\xee\x73\x19\xb1\xdf\x76\x84\x6a\xfb\x74\xb0\xa3\xcf\x8c\x9c\xd3\x7f\xec\xce\x5a\x14\xfa\xee\x7f\xcd\x6f\xdc\xe7\x7e\x76\x48\xe4\x9c\xf9\xd2\x77\xbd\x1a\x09\xfa\x0f\xcf\xc7\x61\xcf\xfc\x31\xe9\xcd\x15\x73\xc0\x37\x23\xa7\x2a\xbe\xa6\xfe\x76\xbe\x99\xdf\xff\xe2\x86\x22\x7d\x5f\x67\xec\xbf\x3f\xf6\x9c\x7d\x87\xc7\x25\x05\x2e\x1f\x33\x7e\xf1\x9e\x11\x8f\x01\xa0\x9e\xbd\x8c\x7a\x17\x34\xc2\xda\xa6\x3b\xd6\x37\xfa\x7d\xdf\xe0\x9d\x77\xff\x32\xbc\x10\x01\xba\xeb\x73\x11\xff\xfd\x11\x5e\x40\xe5\x23\x39\xf9\xb4\xbe\xa9\xdf\x77\x23\xa2\x08\x5f\xe3\x74\x31\x80\x87\x6f\xea\x77\x60\x89\x86\xdf\xfc\xd6\xf7\x7d\x73\xa7\xb7\xfb\x63\xf8\x4d\x85\x96\xea\x05\x73\xcf\xa0\xab\xc3\x6f\x86\xdf\x1b\xf6\xbb\x51\x74\x76\x5c\x9e\xf2\x00\x3d\x78\x4d\x5e\x41\xe9\x6f\xce\xf7\xbf\xe1\xe3\x2f\xdd\x67\x28\x9c\xef\x33\x84\xbd\x87\xa0\x88\x42\xcc\x10\x49\xf7\x86\xf3\xb2\x8b\xfd\x1d\xa1\xe9\xe1\x8e\xb9\x23\xa5\x77\x77\xff\xda\xb1\xf6\xbf\xf1\xe6\xf7\xbd\x28\xb3\xb3\x31\x2b\xee\x67\xc7\xde\x1f\xee\xfe\x6d\x87\x09\x54\xac\xdd\xbf\xec\x5d\xc6\x22\x2f\xc5\x7d\x63\x77\xf7\xc7\x0e\x4e\xae\xc1\x99\xf9\x0a\xfe\xfb\x63\xcf\x86\x0f\x9f\x47\xf9\xef\x8f\x7f\xcd\xf4\x23\xd1\x45\xbf\xc2\x05\x63\x4f\x3b\x9f\xaa\x16\xf7\xdd\x6e\x18\x7d\x7d\x6c\x99\x3a\xcf\xa7\x6f\xd8\xfa\x10\x79\x27\xc4\xbb\xa1\x88\xea\xba\x1e\xe6\x9a\xef\xf3\xc3\x77\xdc\x97\xf5\x8b\xe3\x8f\xfa\xa2\x59\xea\xf0\xcb\xff\x8f\xe7\xb6\x33\x9c\x2f\x7e\x86\xfa\x2f\x9f\x02\x47\xe6\xf0\x96\x81\xf1\x4b\xfc\x04\xac\xcb\x67\x9f\x77\xf9\xcc\x99\x97\xa4\xc5\x3e\x80\xb2\xff\xe4\xd2\x7f\xeb\x42\x36\xf3\x97\xfe\x9f\xb4\xf2\xb7\x2e\x48\xb9\xbf\x74\x41\xc9\x4e\x58\xf1\x3d\x63\xa3\xe7\xe0\x13\xbb\x85\xbd\x6f\xc2\x1d\xac\x7d\xf3\x1b\xf9\xce\xc5\x7b\x63\x9f\xec\xd1\x7d\xbc\x37\xdc\x27\x7c\xe1\x2a\x29\xee\x2b\xac\xde\x52\xbb\x68\x69\xba\x1f\x99\xb1\xe3\xec\x93\xbd\xe1\xbe\x40\x76\xff\xe5\xfc\xdb\x8e\x9b\x2d\xe9\x7e\x1a\xff\x2f\xfd\xdc\xdb\xb1\xe3\x63\x1c\xdf\x09\xc2\xab\x54\x68\xc5\x07\x18\x5f\xf6\xd3\x78\x8f\x7e\xde\xef\xed\x58\x13\x43\xfe\x37\x4c\x5c\x40\xff\x37\xb6\x76\x07\x49\x0b\xea\x54\xed\x43\x1e\x6d\xed\xee\xf0\x82\x90\xd1\xa8\x9b\x78\x02\x2f\x3b\x00\xec\x19\x1e\x17\xb6\xc7\x7b\x02\xc6\x08\x19\xc6\x58\xc9\x71\x2d\xee\xd1\xe0\xbf\x4a\xf6\x69\x77\xcf\xdc\x77\xbe\x49\xdf\x63\xc6\xcb\x3d\x7b\xdf\xf9\x26\x87\x47\x3e\xed\xee\x59\xfb\xce\x37\x25\xde\x25\xb8\xfc\x60\xc7\xdc\xdd\x1b\xec\xd8\xf0\x61\xed\xee\xcd\x73\xe8\xe7\x8f\xca\x9f\x91\xa7\x4b\xf7\xfc\xa5\x2c\xd7\xd4\x76\x76\xf4\x6f\xa6\x00\x33\x88\x77\x3f\xa7\x75\xe5\x7f\x3d\xd6\x59\xff\xe6\x08\xe4\xfb\x3e\xf9\x82\x7f\xec\x58\x7b\xa1\x93\xc5\xde\x7f\x4d\xda\xd7\xff\x72\x60\xe6\x69\xbb\x6d\x0f\xff\xba\xd9\x71\xbe\x91\xe4\xb3\xef\xee\x59\x37\x37\x43\xdd\x81\x93\xbc\xc8\xb5\x6b\x3a\x46\x6f\xf8\x97\xb5\x37\xb0\x06\xae\x97\x71\xf1\x2f\xcc\x9c\x6f\xa9\xef\x31\xfb\xf7\xad\xef\x66\x1a\xc4\x11\x39\x3b\xda\x4e\xa2\x8c\x79\x3b\xfe\xf6\x1c\x0b\xa0\xca\x73\x78\xdb\xe1\x6f\x50\xec\x73\xbf\xe2\x2f\xff\x6f\xe7\x1b\x15\xc6\xe8\xfb\xe7\xff\xb7\xfb\xc5\xd8\xfd\xd7\xa7\x83\x6a\x83\x07\xf2\x99\x3c\x5d\xe9\x37\xfc\xfd\x6f\x68\x7e\xc3\xdf\x83\x01\xdf\xf2\xc2\xff\x7d\xff\xd2\xd9\xdd\xfd\xdb\x14\xef\x2c\xc3\x84\xf7\xed\x57\xe9\xfe\x6b\x27\x76\x61\xde\xef\xbf\xf2\x5e\xea\x87\xd7\xf9\x1b\xfe\x1e\x14\xf3\xe6\x55\x66\xfd\xb6\x1f\xc8\xe4\xec\x7f\xf6\x3d\x83\xe1\x3d\xed\x9b\x5e\xdb\x7b\x31\xfb\x3c\x53\x4f\x80\x16\x4e\xf9\xb1\x9d\xdd\x78\x8a\x83\x20\x74\x15\xce\x07\x1e\xc6\xde\xd8\xba\x6a\xd9\x7a\x10\x78\x05\x97\xf6\x0f\xc4\x53\x22\x24\xe7\x7e\xcf\xfe\x97\xbd\x0f\x33\xbb\xb3\xe3\x88\xd4\x11\x74\x91\x3a\xbb\x5f\x88\xa4\x2b\x0c\xef\xfe\x6b\x77\xc7\x13\xb1\xdb\x5c\x57\x59\x02\x02\x06\x1d\x3e\xdb\xbb\xbb\xbb\xc1\xe3\x02\x14\x7b\xcd\xbf\xf5\x7d\xf3\x2f\x67\x3f\x0c\x25\x8d\xe5\xd0\xef\x4c\xa8\x40\x63\x8f\xcb\x6b\xae\xc7\xbe\xff\x9d\x38\x2b\x24\xce\xfd\xa5\x47\xbf\x8a\x8f\x0b\xbf\xfd\x1d\x3b\x23\xc4\x8e\xff\xa5\xf3\xd7\x24\x46\x8b\x8b\x8f\x9b\x38\xf6\xf7\xd4\x11\x61\x6a\xdc\x5f\x7e\x1f\x58\xe3\x62\xcf\x52\x69\x4f\x07\xa1\x82\xda\xf0\x4e\xc2\x33\xb1\x89\x7a\x48\x20\x06\x8e\x15\x06\xdc\xcd\x6c\x06\x6a\xd8\x07\xac\xb0\x07\x44\x95\x4b\xae\x9c\x91\x80\xc6\x37\xfd\xfb\xfe\x1f\xb1\xe9\x1b\xc5\xf4\x8e\x7b\xf6\x1e\x0d\xcb\x09\xec\x01\x47\xb0\xa7\x06\xe8\xc7\xc3\x5e\x94\xa3\x2d\x8e\x8e\x80\x45\xb0\xf7\x8d\x6f\x80\xbc\xfc\x37\xca\xef\xb2\x6b\x4f\x38\x77\xec\x98\xb0\x60\x79\xe0\xdb\x1f\xd8\x47\xae\x9c\x6b\xde\x1d\x4e\xf6\x74\x76\xff\xfc\x53\xf5\xd8\x12\x0b\x70\x62\x30\xef\x6a\xf4\xbc\xf9\x1d\x2f\x9b\x88\xa7\x0e\x38\x32\x9d\x1e\x2f\x84\x03\xab\xfb\xab\x65\xf7\xa9\xb3\xb3\x1b\xe4\x52\xd0\x4e\x79\x94\xdb\x70\x67\x97\x67\x9e\xfe\x3f\xcb\xe4\x21\xd0\x5c\x29\xeb\xfd\xc6\xff\xc8\x01\x88\x5b\xdf\x1e\x77\xf4\x5d\xdf\x39\x2c\x60\xf0\xfe\x35\x83\xa8\xde\x00\x16\x43\x9f\x3e\xeb\x9f\x3f\xa1\x1b\xdb\xea\xf3\x2c\xb3\xf0\x18\x88\x0e\x8c\x3d\xd4\x76\x1d\xa4\x19\x1a\x8f\x85\xbf\xa5\x0f\x7e\x11\x18\x8d\x3a\x94\x57\x81\xd1\x35\xf1\x53\x98\xe4\xc4\xf5\x73\x89\xc0\x7b\x37\x92\x55\x83\xbc\x94\x6f\x7c\x4a\xf6\x43\x48\xd9\x05\x30\xfe\xea\xf6\x7a\xff\xe8\xd4\xde\xd9\x15\x24\xa0\x86\x49\x58\xb2\xf7\xf0\x1e\xe1\x4e\x43\x20\xc7\x78\x64\x83\xfc\xcb\xfc\xb7\x92\xe5\xab\x62\xc7\x99\x1e\x60\xc2\x80\x00\xf6\xfe\xd8\xdf\xb7\xfc\x26\x77\x11\xac\xf2\x1a\x18\x7b\x46\x90\x38\x31\x68\xcd\x02\xe1\xb4\xae\xec\xee\x72\xe5\xb8\x13\x23\x58\x0a\xbf\xf1\xec\x61\xf6\x67\xd3\x7b\xde\x79\xd7\x85\x0e\x69\xde\x21\xf4\x17\xfc\xb1\xc3\x35\x25\xc1\x22\x55\xf7\x47\x3b\x74\x77\xaf\x17\x2c\x53\x8f\xc5\x54\x13\x2c\xaa\x5f\x3a\x56\x7f\x44\xfd\x9d\xeb\x1d\x15\xf8\xcc\xbd\x21\xbc\x23\xfc\x2f\xe3\xdf\xc3\x7f\x19\x9f\x3f\xef\x9a\xe2\x10\x60\xdb\xc3\x8d\x79\x67\x87\x7e\x33\xbe\xef\xfe\xab\x17\x04\xd1\x86\xd9\xe7\x78\xfe\xef\x9d\xce\xee\x5e\x2f\x58\x41\xf8\xef\x1e\x20\xf7\x10\x5c\x7d\x1c\x1d\x2d\xd8\xc7\x88\x05\xda\xd1\xb9\xb5\x4c\x74\xac\x8a\xf5\xa8\xdb\x45\x3a\xd4\x77\xe2\x66\x98\x2f\x5f\x3a\x7b\x9f\xae\x3f\xcd\xcc\xab\xe2\xad\x11\xfe\x1b\x67\xf0\x81\x7c\xb2\xbe\xe9\xdf\x83\x4a\xfb\x7a\x92\xd1\x79\xdc\xb1\x81\x67\xe5\xa0\x1a\x31\x02\xbb\xdf\xf0\xf7\xdd\x3d\x13\x64\x02\x38\xb3\xc7\xa5\x03\x7b\xef\x61\x87\xee\x19\x49\x06\x61\x37\x99\x16\xc4\xd9\xfd\xaf\xbe\xff\x18\x24\xef\x86\xa5\x1b\xf3\x0b\xe0\xd2\x47\x98\x98\xea\xf6\x6f\x3a\xc3\x00\x44\xff\xde\xf1\xd2\x51\x81\xf8\xb1\x07\x83\xf7\xe9\x1e\xdd\xfd\xcb\xf6\xb4\x84\x7f\xec\xef\x5f\x73\xad\xe2\xf5\x0e\x1c\xd9\xbb\xde\xdd\xfd\x7b\x67\xc7\xbb\x8b\x37\x6c\xd7\x23\xd9\xc6\xee\x1e\xf5\xd2\x2c\x5b\xd0\x8f\xfa\x85\xe9\xc2\x87\x3d\x8d\x23\xb7\x97\xbe\x3e\x63\xff\x71\x67\xc7\x9c\xfd\xf2\xe0\xd5\x9a\x3c\x3b\x85\xfd\xcd\x80\x1f\x61\xf1\x82\x28\x9e\x47\x27\x97\xb5\xf8\x4b\x85\x2e\x33\x73\x4f\x7c\x6a\x79\x01\x6e\xd7\x37\x8c\x7d\x7a\x0a\xda\x41\xbe\x80\x9d\x3f\x74\xf1\x9a\x06\x15\x63\x79\xa6\xcd\x6b\x67\xdc\x67\x2c\x9e\xc9\xe2\xc9\x13\x22\x16\x15\xe7\x9a\x59\xfc\x22\x5e\x31\x69\xb2\xee\x95\x9e\xc8\x43\x11\x8a\xda\x5e\xc2\xbd\x48\x33\xcd\xbd\xd3\xfd\x78\xd8\x40\x31\xbe\x87\xf7\x04\x02\x1c\x65\x2c\xd9\xe4\x94\xff\x30\xf0\xf1\xd7\xc0\x44\x1a\xfb\xba\xe8\x3a\x6a\xe0\xe3\xea\xe9\x90\x42\x45\xaa\x17\x00\x30\xf4\x50\x30\x27\x0e\x8d\x1d\x83\x47\x5e\x52\x4d\xdb\xb1\xc4\x01\xb5\x87\x3a\x2c\x82\x4f\x7d\xc3\x74\x1d\x7d\xf8\x09\x10\x89\x33\xe6\x57\xfe\xb1\x33\xfc\xb7\xc4\x98\xb4\xbf\xbf\x3f\xfc\xf3\x4f\xf5\xdf\xe9\xdd\x3f\xff\x5c\x4a\x48\x42\xff\xd9\x47\x92\x98\x16\xb1\x88\xfe\xb1\x5c\x44\x6d\x1d\xb9\x43\xc3\xec\xc4\x7a\x7c\xfa\x1c\x8a\x41\x9f\x3f\x79\x42\x55\x5c\x98\xfa\xb4\xbb\x77\x1b\x0f\x78\xbf\x9e\x8c\x70\xf7\xa2\x18\x3d\x43\xbc\xc9\x6d\x9d\x01\x7b\x35\xdc\xf7\xd8\x8e\xa1\x77\xc8\x63\x65\xe1\x25\xf1\x46\x9c\x33\x1b\x86\x5c\x92\x7f\x38\x62\x2c\xf6\xe3\x5c\xc6\x8f\xbd\x6b\xae\xb3\x9e\x2e\x90\xba\x67\x02\xd3\x68\xef\xc7\xee\x14\x23\xf5\x09\x59\xc9\xb8\xd9\x31\xff\x6d\x03\x49\x0e\x68\xe3\x8f\x3d\xfe\xf6\x67\x5d\x75\x8f\x4b\xdc\x70\x6d\xdf\xba\x10\x3c\xe6\x30\x7e\xab\x3d\x75\x3f\x16\xee\x08\xf7\xf5\x8c\x97\x2a\x37\x5e\x02\x1d\xde\xa7\x3c\xa3\x08\xec\x3e\x93\xef\xb0\xa4\xbe\x59\x7f\x5b\x02\xf9\xcb\xfa\xbe\xe7\xfc\xdb\xfc\xf3\xcf\x9a\xd8\xb7\x1e\xf4\x7c\xbf\x6d\x74\x5c\xcb\x1d\x7e\xb5\xec\x47\x6a\x6b\x7f\x3b\xc0\x34\xfe\xc7\x0e\xce\x1f\x99\x3c\x61\xbc\x7f\x96\x4b\x84\xb0\x3e\xfe\x3d\xfc\x66\x7d\x17\x80\x51\x0d\x09\x3e\x8d\x8c\xa4\x88\x7e\x53\xbf\xff\xe0\x42\xc7\xcc\x32\x98\xe1\x7c\x7d\x0b\xf2\x5d\x69\x3a\x40\xe2\xf7\x1f\xbe\x34\x32\x6b\xd4\xd3\xce\x27\x4e\x27\xbc\x1e\xe8\x96\x0e\xbd\x8c\xda\x9a\x3e\xb0\x75\x95\x3a\xba\x06\x7c\xd1\x0d\x7d\xb0\x6c\x64\xdd\x20\xde\xd7\x75\x54\x8f\x2a\x7d\xda\x4d\xcc\xfe\xf4\x7d\xc3\x9e\x73\x1f\x78\xde\xd0\x1f\x7b\xfd\x38\x54\xc7\x29\xe1\xfe\xd4\xb2\x8d\x31\xcf\x9f\x3d\xc1\x8e\xb6\xbd\xcc\xb4\x62\xf2\x81\x39\x57\xb0\x2b\x04\x3f\xd7\x7f\x7c\xde\x07\xde\x9c\x77\x3a\xa2\x7e\xdf\xfe\xff\x9e\x60\xb4\xf7\xe9\xd3\x2e\x47\x75\xd0\xc9\x97\xcf\x42\xe6\xfb\xf3\xe7\x1f\x7b\xb5\x00\xf4\xf6\x3f\x61\x31\x25\x4a\x99\x4f\x7b\x35\x1e\x43\x72\x15\x1c\x86\x03\xd7\x70\xa3\xe1\xbe\x09\xcd\x9e\x61\x76\x87\xfb\x36\x34\x4d\xee\x17\x67\xed\xd5\x00\x85\xec\x8f\xf7\x6a\x22\x9c\xdc\x3f\x85\x86\x45\x93\x1e\x7c\x63\x9f\x0d\x1f\xee\xee\x9d\xee\xe8\xbc\xe3\x70\x77\xe2\x5e\x21\x1e\x80\xe7\xe2\xe2\xd3\xb5\xdf\x28\x3f\x19\xc3\x98\xb7\x04\x2f\x10\x1f\xcb\x24\x62\x68\xf5\x5b\xeb\x91\x07\xd9\x72\x15\x51\xfc\xc0\xfe\x1f\x78\xef\x69\xe7\x93\x87\x52\x44\x67\x1c\xbb\xde\xce\xff\x70\x87\x8e\xff\xd9\x7d\x76\xf5\xfc\x91\x1c\x1e\x0e\xfc\xb4\xbb\xbb\xf7\xc7\x1f\xd7\x3b\xce\x2e\x3c\x72\xc7\xd5\x87\x33\x1d\x6f\x1c\x40\xbe\x8c\xed\x38\xfb\xf9\x9d\xdd\xdd\x3d\x07\x3a\x9b\x49\xa7\xc2\x90\x4d\x0d\x98\x2f\x9d\x57\x36\xdc\xb5\x26\xd9\x7a\x9d\x4b\xac\xdf\xf4\xef\x8c\x99\xdf\x80\xa2\x7f\xdf\xfd\xf3\x4f\xcb\xa3\xf5\x01\xb7\xaf\x7f\x8f\xa5\x2a\xe1\x5c\x16\x7f\x3e\x60\xda\xf7\x6f\xf7\x6a\xa2\x6b\x0e\xa8\xda\xdd\xd7\xc2\x66\x81\x0e\xf5\x34\xde\x77\xe1\xb9\x74\x5d\x1b\x7a\x8b\x6e\xbf\xb1\x37\x0b\xea\xe1\x8d\xce\xc6\x16\xfb\x7e\x91\xe3\xca\x5e\x79\x5f\x17\x6f\x62\xbe\x17\xf5\x85\xc9\x55\x3d\x18\x1a\xff\xed\xef\xbd\x25\xcd\xed\x97\x61\x3e\x43\xf8\x12\xd3\x38\xdc\x2f\x73\xbd\x20\x3a\x68\xb6\xbb\xfb\x0f\x5d\x74\xc6\xfb\xb5\x3d\x3d\xb0\x21\xf1\xd7\xe3\x0f\x71\x79\x8a\x5e\xff\x35\x44\x5e\xe8\x31\x35\xe8\x7e\x62\x5c\x54\x05\x8e\x97\x31\xbb\x1e\xff\xf9\xe7\x8e\x05\x24\x16\x08\xed\x1f\x8e\x78\x6d\x0c\x2f\x1b\x45\x9e\x6f\xeb\x5a\xf3\xe8\x34\x34\xe9\xae\x78\xad\xed\x39\xfc\xeb\x6e\x82\x10\x3b\x71\x42\xbc\xbb\x07\x97\xdc\xb7\xbc\x3d\x4f\x1d\xc5\x6f\x12\xc3\x0f\xce\xee\x5e\x88\x3f\xec\xdd\x7f\x93\xf4\x9f\x7f\xee\xd8\x5f\xf6\xd3\x78\x77\x2f\x2a\x87\x17\xf5\x0f\x4c\x34\x70\x95\x7f\xc5\x8e\xef\x08\xb6\xe7\x22\x7b\x3d\xde\x37\xbc\xf4\x18\x9e\x60\x0d\xc2\xcd\xee\x8f\xbd\x32\xbc\xb3\xe4\xfb\xf0\x42\x80\x8c\x9b\x90\x17\x8c\x15\x1d\x98\x4e\x8d\x01\xbc\x02\x47\xc6\x08\x00\xc0\x2b\x32\xd0\xd6\x11\x45\xde\xe0\x3d\xd4\xf1\x6a\x0a\x7c\xfe\x84\xbe\x45\xa5\x05\x3e\x7f\xfa\x1e\xa9\xcd\x82\xd9\x05\xb0\xdb\x0b\x96\x4e\x72\xca\x82\xe4\x31\x7f\xcd\x60\x52\x00\xd6\x4d\xcb\x13\x23\x6f\x2c\xdb\xbb\x59\xa4\xcc\x7d\x4e\x97\x0b\xe3\x04\x40\x6f\x86\xd9\xf9\x22\xfa\x84\xe4\x47\x90\xc8\xe3\x7a\xbc\x9b\x7c\x4a\x0e\xe7\xf0\xde\xe0\x1a\xdc\x31\xab\xbe\x13\x7d\xd9\xf5\x4f\xe4\xdb\x6d\x3b\x3c\x01\x5f\xe0\x84\xeb\xa8\xfb\xf7\x3b\x7c\x0f\x5f\xb9\x52\x83\x1f\xe0\x2d\xbf\x87\xbf\x44\x77\x2a\xfb\xb1\xaf\x7b\xd3\x20\x31\xc9\x37\xfe\x07\x07\x59\x00\x7c\x38\xd9\xdd\xab\xcc\x01\x94\xdd\x3d\x80\x14\x71\xa8\x3b\xa5\x49\x8f\xbf\x28\x2c\x23\xc9\x1f\xe6\x66\xf3\x87\xd1\x25\x76\x76\xe7\x32\x8b\xb9\xe5\x99\x45\x1e\x72\x1a\x87\x5e\xe7\x6f\x58\x14\x5e\xc5\x6b\xdd\x33\xf2\x14\xf7\x75\xd1\x9b\x50\x1f\x85\x1a\x7a\x50\x1f\x2b\x8c\xc6\xe5\xbc\x38\x8f\xc5\x9d\x8a\xad\x49\x46\xe6\x16\x77\xff\xde\x29\x7a\x58\xf6\xd3\xf5\xf8\xd3\xee\x5e\xf8\x85\x7e\xda\xdd\xfd\x0b\x00\xbc\x18\xbd\x50\xaf\xc8\x41\x9c\x1e\x44\xd6\x8b\xe3\xfa\x69\xcd\x07\xf5\xff\xf9\xef\x27\xff\x27\x7d\xfa\xeb\x93\x84\x49\x4e\xfd\xb4\xc7\x79\x9b\xe1\xa7\xbf\xbe\x7d\xca\xdf\xd8\x86\x4a\xbf\xe4\xdb\x86\x76\x47\x4d\x56\xa9\x36\xd0\x41\xb5\xc1\x3a\x62\x16\x61\x86\x09\x13\xa4\x9e\xd6\x3a\x14\xcf\x99\x92\xd5\x53\x9f\xf6\xc2\xfe\xaa\x6a\xd3\xa0\x37\xfa\x8c\xb1\x84\x99\x78\x8e\x30\x12\xba\x0c\x13\x69\xa5\x8d\x09\x52\xba\xd0\x6e\x89\x59\x94\x76\xc6\xb0\xab\x9a\x65\x44\x0a\xf9\xee\xbc\x46\x11\xcf\x3d\xb5\x59\x7d\x98\x42\xe2\x2f\xad\x46\x0d\xdb\x6a\x1b\xfc\xb5\x95\xf3\xf0\xda\x24\x19\xc3\xa7\x92\x62\x82\x64\x8b\x1d\x24\xc8\x18\x09\x92\x8b\x04\xe9\x18\x5e\xa3\x4c\x98\x40\xbe\xca\x45\x38\x25\x97\xc6\xb0\xb3\xba\x55\x17\x55\xbf\xb6\x8e\x99\x92\x49\x4c\x48\xaf\x63\xe8\xf6\x90\x9d\x55\x1b\xa8\x59\x86\xff\x7a\x03\x15\xcb\xf0\x5f\x6f\x30\x21\x27\xf6\x60\x72\x88\xff\x2f\xe1\xa9\x59\x92\x15\x59\x91\x89\x0c\x6d\x68\x48\x44\x66\x82\x64\xaa\x16\x8c\x54\x6b\x6d\xd8\x1d\xe6\x31\x22\x39\xf8\x30\xaa\x18\x11\xa2\x62\x44\x2c\x0b\xa3\xa6\x85\x11\xb1\x55\x8c\xce\xe1\x70\xb9\x8a\xd1\x65\x15\xa3\x52\x1e\xa3\xa3\xbe\x85\x91\xad\x61\x54\xd2\x31\xca\xb5\xc6\x18\x91\x9b\x36\x46\x84\x0e\x30\x22\xe9\x13\x8c\xa4\x91\x85\x51\xbf\x3c\xc0\xe8\xf6\xb1\x82\xd1\xdd\x13\x5c\x9d\xe4\x31\xd2\x4a\x1a\x46\x24\x03\x9d\x49\x01\x23\xa2\xd6\x30\x92\x4a\x23\xbf\x45\x6e\xf8\xb1\x0a\x66\x52\x3a\xfe\x16\x2a\xb4\x63\x0d\xf9\xfb\x6d\xe6\x1b\x4c\xd0\xc4\x3c\xfc\x5e\x6f\x1d\x4b\x23\xac\x89\x79\x46\x32\x7a\x3a\x1a\x50\x30\x86\x43\xea\xf2\x11\x02\x26\x7c\xe9\x13\x49\xec\x22\x82\xf9\xf2\x97\xbc\xf5\x8f\x91\xf4\x64\x59\x98\xc9\x39\x5d\x89\xc6\x56\xe9\xc0\x75\x2c\x3e\xb6\x08\x77\x93\xa8\xd8\xf5\x5f\x2d\x13\xa4\x83\x63\x9d\x8a\xdd\x89\xe7\x2b\xc2\x0a\x60\xe5\x72\x03\x95\xf9\xb4\x48\x18\xa6\x9c\x61\xf2\xae\x1b\x13\x48\xfb\xe8\x14\xa3\x07\x78\xdb\x06\x4c\x0d\x81\x99\x32\xe0\x45\x9b\xd0\x92\xe0\xd8\x00\x5a\xb8\x16\xb4\xd2\x70\xec\x6e\x8c\xd1\x50\xd6\x30\xba\x82\x43\x16\x9c\x24\x70\x11\xeb\x34\xd1\xd7\x6b\xb5\x17\xb6\xe6\xf5\x23\xb0\x0e\xac\x4a\xd0\x9a\x75\x6c\x56\xeb\x2d\xfa\x35\x2b\xde\xe2\x26\x17\x63\x8c\x1e\x07\x2f\xba\xda\x7d\x05\xa3\xd6\xcb\x1e\xce\x1c\x05\x33\x65\x91\x45\xad\xfb\xda\x72\xfd\x9e\x1f\x01\x3f\x98\x9f\xbc\x80\x07\x83\x5f\x7c\x6a\x62\x44\xc6\x1a\x46\x15\xe8\x53\xae\x61\xf4\xb5\x8d\x91\x4a\x30\xca\x9a\x18\x65\x6b\x1a\x46\x9d\x0a\x46\x3a\xc1\xa8\x6f\x62\x46\x52\x71\xe0\x2b\xd2\x21\x6d\xf7\xa8\xa9\x7a\x94\xe4\x33\x06\x64\x48\x98\x2b\x76\x3d\x5c\xb5\x32\x25\x59\x71\x63\x82\xd4\xa9\x9a\x8e\x58\x46\x44\xc6\x15\xd8\xdb\x6d\x8c\x00\xf1\x68\x57\x6d\x8c\xda\xb0\xc4\x1b\x2d\x8c\xca\x56\x01\xa3\x4a\x05\xa3\x8e\xa9\x61\x64\x8f\x31\x52\x60\xcd\xe7\xe1\x6d\xc0\x2f\x6c\xb5\x30\x22\xc5\x01\x46\xb0\x88\x35\x40\x66\x4a\xdf\xc4\xa8\x3e\xaa\xc5\x3a\x3d\xc2\x9b\xfa\x5a\xc0\xa8\xd4\x8e\xbf\xb2\xda\x0d\x46\x8f\x55\x8c\x54\x0b\xa3\x0e\xe0\x51\x0b\x63\x34\xc4\x18\x69\x79\x8c\x1e\x54\x1f\x1b\xe6\x31\x46\x3a\xc6\x68\x84\xfd\x03\x6e\xd5\x3b\x50\x0a\x7a\x0c\xfd\x1e\x47\x55\x8c\x9a\x55\x8c\x00\xf1\x76\xaa\x18\x55\xf2\xde\xf7\xbb\xbc\x77\x5e\xca\xfa\x23\xa5\x34\x9e\x75\x04\xc6\xac\x7e\xea\x27\xae\xf3\x7c\x67\x26\x4b\x09\x1c\xaa\xbb\x0e\x65\xd3\x34\x6e\x92\xbc\xcd\xd8\x24\xf9\x8d\x36\x26\x48\xa9\x93\x00\x88\x34\x8e\x23\xb2\x03\x8c\xe4\x43\x58\x29\x19\xf8\x7a\x03\x93\x4f\x01\xba\x0c\x98\x75\x0a\x13\x3b\xca\x58\xab\xae\xb3\x2b\x4e\x07\xab\xcb\x7d\xdc\xe4\x57\xe8\x3c\x31\xcc\x0a\x56\xde\xcc\xd6\xbd\xbf\xea\x92\x8d\x55\xfb\xbf\x78\xe0\xfc\xfe\xaf\xfd\x88\x6f\x77\xa7\x45\x03\x59\x36\xa5\xcb\x11\x44\x94\x7b\xd7\x79\x6a\xb8\x66\xc8\xc6\x04\x98\xf4\x5c\xac\x72\x4e\x26\x40\xa6\xaf\xbe\xd0\x99\x40\xec\xd2\x38\x23\xaa\x88\x1c\x5c\xe5\x61\x9f\xae\xcc\x5b\xb0\x44\x2d\x14\xb6\xf8\xf0\x35\xf0\xa1\x84\xe3\x6c\xe8\xb1\xc5\xb3\xf7\x0c\xdb\xae\xdd\x61\xf5\x7c\xbd\x81\xc2\x0f\x26\x10\x90\x25\x02\x26\xd3\x17\xb6\x0e\x8e\x35\x17\x91\xfc\x1d\x7c\xaa\x95\x80\xa3\x06\x66\x3a\xab\xc4\x11\xed\xb1\xdb\xa6\x01\x77\x8b\x8a\x70\xcd\x32\x67\x73\xd3\xe2\x30\xb8\x68\xec\xc2\x8b\x36\x58\x27\xa3\x26\x1f\x48\xc6\x27\x98\xef\x61\xa1\x78\x2c\x26\x67\xf2\xef\x42\x76\x9f\x33\xa0\x19\xce\x80\x02\x7a\xcc\xc0\x1a\xba\x05\x34\x07\x1c\x05\xb9\x85\x7e\x39\xe8\xd7\x81\x7e\xb9\x71\xe2\x2a\x13\x63\xa3\x11\x59\xb8\x5b\xa7\x36\x6f\x6c\xe2\x6e\xa3\x03\x0d\x47\x6f\xe1\xe4\x96\xda\x8e\xe5\xf6\x67\xbd\x09\x2a\x66\x57\x7d\x13\xc4\x7b\x15\x30\x12\x5e\x05\xdf\x6f\xf6\xab\x40\x87\x77\x15\xcc\x52\x09\x49\xb6\x6a\x99\xb6\xf5\x60\x50\x56\xad\x36\x50\xd5\xd7\x19\x1c\x8a\x59\x74\x24\xba\xa1\xe0\x24\x57\xc6\x1d\xf1\x1c\x49\xd9\x03\x4c\xc4\x3e\x23\x49\x59\x58\xbb\xa3\x7d\xdd\xa4\x81\xb0\x86\x9a\xde\x7a\xc5\xa2\x9a\x10\x51\x41\x00\xd3\xf9\x51\xe9\x58\x56\x61\xdf\x04\x3e\x52\x8e\x5f\xab\x4e\xad\xeb\x86\xd5\xd7\x43\x7d\x04\x08\x7f\x79\xf1\x38\xc6\x45\xf2\xcb\x60\x8c\x14\x23\x0d\x82\xe4\x3d\x8e\xcd\x70\xc3\x36\x06\x56\xcf\x13\xcb\x03\x6e\x02\x95\xcb\x0d\x26\x9c\x8b\x47\xc1\xc3\x24\x64\x66\x79\xc6\xbc\x4a\xf0\xc7\x04\x89\x1c\xab\x30\x8c\xdc\x9a\x05\xd8\x3f\x3c\xc1\x4d\xcf\x30\x7a\x82\x86\x5e\xc3\xa8\xd0\xc6\x28\x03\xb3\x73\x89\x4d\x8c\xf2\xf0\xaa\xb5\x76\x00\x85\xbc\xa5\x69\x41\x0b\xfa\x93\x36\x6f\x11\x1c\x40\x2b\x99\xee\x17\x8d\xbd\x27\x18\xdd\xe4\x61\xb2\xf5\x81\x7f\x2c\x7f\x72\x8f\x51\x23\x20\x1d\xc9\x69\x68\xb8\xa6\xe1\x29\x0d\x92\xba\x82\x79\x5a\x82\x99\xda\x1b\x5f\x4b\x40\xb2\x03\xca\xf7\xf7\xbe\xf4\x2f\x37\xd4\x40\x7c\x1f\xeb\x1e\xda\x85\xe5\x05\x3c\x0d\x51\x42\xc4\x73\x93\x03\xfe\xc7\x06\x91\xf2\x18\xd6\x63\xab\xe0\x13\x3f\x3b\xef\x2b\x19\xcc\x47\x0b\xa3\x13\x2b\xc1\x94\xf0\x93\xb8\x8a\xd1\x18\x50\xbf\x27\x2f\xd2\xda\x5c\xda\x09\x38\x33\xf6\xb3\x9b\x86\xa9\xdd\x5a\x7a\x97\x7d\xc6\x44\xc6\x11\xc2\xe4\x00\xce\x55\x07\x11\xe2\xf4\xf6\xfe\x3a\xe2\x5a\x92\x55\xb6\x59\xf8\xb6\x0e\x42\x5f\xee\x08\x7e\x50\xfa\x0c\x04\xb9\x56\xf0\x9a\xe0\x44\xb3\xe6\x37\xbc\x43\xd1\xc9\xc5\xad\x9f\x1c\xba\xd6\x9b\x01\x07\xcf\x29\x56\x5f\xf7\x94\x55\x1a\xed\xb2\x5a\xbd\x81\x6a\xcd\x06\xaa\x9d\x35\x50\xa1\xde\x40\x85\x52\x03\xe5\x0f\xeb\x0d\xc4\xff\x4b\x0d\xd6\xc6\x88\xf2\xbf\xb0\x41\x31\xca\xf1\x79\xc0\x8b\xdf\x7a\x2a\x9d\x79\xc3\x8d\x09\x24\x53\x6f\x61\x94\x7d\x6c\x62\x64\x14\x30\x3a\xef\xb5\x31\x4a\x49\xa7\x78\x82\xbe\x06\x0b\x7e\x3c\x7d\x0c\x5a\x43\x00\xec\xab\x31\x46\x15\x78\x77\x85\x56\xa2\x3f\x17\x15\xe6\x8d\x9c\xdf\x4a\x8e\x55\xfb\x00\x2a\xf7\x8b\x46\x29\x80\x35\xe0\xf9\xbd\xd6\xdc\x59\x9d\xe8\xf7\x33\x23\xd6\x71\xb7\x0b\xc0\x31\xe3\x36\x46\xa7\x83\xc9\xc6\x82\x53\x0b\x1a\x2b\x8d\xda\xd4\x5b\x30\x59\x4a\xc7\xc1\xd0\x54\x6f\x2d\x9b\x76\x74\x06\xa8\x2f\xdf\x6c\xa0\xfc\x99\x0f\x83\xf9\xc3\x52\x03\xfd\x03\x8d\x13\xfe\x51\x6a\x30\x0e\x7c\xf0\x17\x36\x72\x18\x65\x37\x13\x1c\x1b\x18\xc0\xb1\x85\x91\x91\xdf\x82\xe3\x16\x1c\x37\xf4\x16\x4c\xc6\x09\xb2\x78\x66\xd9\xce\xb5\x75\x73\x5d\x1f\x50\xc3\x13\xe6\x81\x27\x56\xd2\xa2\x82\x14\xdf\xaa\xd0\xad\x3d\x5c\x88\x97\x4c\x91\x3d\xf9\x3f\x00\x64\x9b\x76\x5c\x6a\xf8\xdc\xb4\x80\x65\x24\x60\x89\xc9\xaa\x58\x45\x32\x46\x4b\xb1\x71\x33\x19\xbb\x4e\xef\xb1\x22\xaa\xe8\x50\x3b\x81\x1d\x51\xd5\x80\x11\x6d\xb7\x30\x2a\x83\xcc\x5e\x07\x26\xe6\x21\x8f\x51\x15\x58\x4e\x10\xf0\xab\x15\xbf\x31\x6e\x61\x74\x0f\xbd\x9f\xda\x18\x49\xc0\x8d\x72\x5b\x42\x91\x78\xa7\x78\xa3\x12\x34\x60\xf8\xa1\x44\x7c\xcd\xb2\x53\xc0\xe8\x08\xae\xf3\x55\xc3\xe8\x6b\x2b\xd0\x2c\x43\xe3\xb0\xe0\x29\x0a\xb4\x6a\xcd\xd7\x18\xc0\x63\x78\xfa\xe8\x1a\x06\xe1\xc0\x1b\x1e\x5e\x87\xeb\xac\xc3\x23\xd0\x99\xeb\xac\xe1\x3a\x70\x41\x73\x44\xf8\x75\x18\x51\x92\x2c\x8a\xdd\xd1\x4d\xc7\x30\xe9\x97\x82\xab\x9b\xd6\xf0\x3a\x6f\xd8\xfa\x90\x15\xf9\xfb\x55\xc2\x77\xac\x74\xc4\x2a\x52\xf0\xea\xaf\x79\x86\xc6\x10\x5f\x1e\x1e\x8a\x2a\x1a\x9c\x98\xb0\xe3\x2f\x14\x44\xb2\x46\x7b\xf2\x65\x4d\x37\x78\xe7\x25\xfa\xc0\x4b\x93\xee\xc6\x5e\x43\xe9\xb5\x30\x72\x09\x46\xa9\x0a\xdc\x62\x00\x6f\x04\xa6\x08\x0e\xb9\xf0\xd6\x1e\x60\x82\xa7\x1a\x9e\x88\x38\x0f\x75\xd2\xa1\xe9\xa9\x74\xc6\xd0\xb7\x30\xf6\x5f\x7e\xa3\xe5\x1b\x0c\x42\xcb\x41\xd8\x80\x53\x79\xc0\x1e\x6e\x60\x5d\x68\x56\xf0\xcc\x99\x28\x52\x87\xf6\xa9\xad\xd2\x57\x9f\x06\x02\x9f\xe4\xb7\x9b\x86\x7b\x8c\x2e\x68\x6c\x1a\xec\x5e\x01\xa3\x4c\x01\xa3\x2c\xa0\x29\x77\xde\x34\x58\xb6\x66\xb5\xd7\x34\x09\xbf\x1f\x2c\x4c\x4e\xc2\x72\xb0\x70\xec\xde\xb9\xa3\x57\x9e\x02\x90\x6f\x7f\x9b\x09\x18\xeb\x7e\xa3\xa7\x61\xd4\x3c\x99\x31\x01\x33\xdf\x7b\x85\x5e\x5f\x18\xd6\xdd\x1a\x56\xbf\xf4\xbb\xe1\xa0\x73\x13\xa3\x7b\xe0\xca\xd3\xe6\x04\x39\x58\x0e\x0f\x55\x75\x53\xb3\xc6\xaf\x3d\x13\xbc\xf9\xfb\x4c\x84\x2b\xc5\x2e\xd3\x08\x27\xa1\x89\x91\x6d\x10\x8f\x55\xcd\x40\xc7\x79\x93\x70\x61\x58\xd7\x07\xb4\xd7\xd3\x3b\xd6\x9a\xb8\xa3\xdf\x65\x26\xe6\x73\x47\xcb\x81\x43\x9d\xf6\x9c\xb5\x11\xe5\xdf\x6b\x02\xe6\x91\xe4\x39\xef\xdd\xbc\x3e\x76\xa9\xb9\xa5\x08\x6b\xa5\x08\x1a\x46\x7d\x82\x51\xb6\xb7\x10\x04\xcc\xeb\x8a\x6b\xbc\x36\x22\x0a\x9a\xc4\xf3\x19\xfa\x95\xa7\x82\x5b\xec\xef\x7d\x9a\x90\xaf\x61\xf4\x00\x7d\xc2\x17\x9f\xad\x60\xc4\xcd\x93\x3e\x6b\xca\x1b\x33\xa7\xa2\xe1\xaa\x6e\x7f\x1d\x40\x11\xc0\xc4\xef\x03\x15\x0b\x64\x35\xa5\x86\x51\xb6\xd0\x5a\x42\x5e\xb8\x1c\xde\xba\xd4\x78\x7d\xfa\xf0\xdb\xe1\xa8\x39\x24\xba\x0b\x33\x31\x98\x49\xa2\x8b\xae\x4d\x55\x6a\xf9\xba\x39\x45\xc6\x9e\x5a\x6f\x2c\x56\x90\xe2\x7a\x9a\x3d\x78\x7b\xdd\xab\x8c\x25\x6a\x48\xca\x9e\x54\xea\xa2\xc6\x48\x2a\xa9\x8f\x1a\xba\xa6\x6a\x58\x26\xcb\x47\x13\xc8\xe4\x53\xb1\xec\x4d\xde\xba\x5d\x25\x9f\xdf\x98\x40\x9e\x52\xd9\x9c\xd8\x45\xa4\x74\x52\x85\xbd\x5c\xac\x60\x24\x73\x3f\x6e\x5c\xf1\xe7\x87\x60\x73\xba\xc5\xdf\x7d\x64\xcc\xe6\xad\xe8\xd8\xac\xd6\x0b\xfb\x01\xc8\x10\xc5\x4c\x1c\xbb\xd1\x7c\x4c\xc6\xbd\xf4\x28\x1f\x0a\x88\x90\xfb\xc1\x0e\x30\x6a\xb5\x03\x87\x58\xfe\x23\xec\x60\x2d\x84\xba\xc5\xc5\xee\xb5\xf7\xc1\xe2\x9a\x65\x2e\x35\x06\xb1\x6b\x24\x1b\x4e\xfc\x3e\x61\x83\xe4\x5a\x09\xe3\xc3\x84\x19\x22\xe6\xf8\x31\xa3\xc5\xc7\xde\x14\xa6\x5b\xab\x8f\xf8\x99\xb1\x6b\xb8\x1b\x93\xfc\xe0\x94\x00\x58\x1c\xa3\x6b\x75\x81\xfa\xd4\x1b\xa8\x58\x6a\xa0\x62\xb3\x81\x8a\x67\x0d\x54\xae\x37\x58\x1a\xa3\x54\xf4\xc7\x1d\x45\x25\x59\x61\x82\x94\x6a\x9c\xc3\xe5\x80\xf5\x30\xdb\x18\xc9\x77\x3a\x46\xd9\x27\x19\x23\xe3\x91\xdf\x41\x8a\xdd\xa1\x40\x6f\x0d\x7a\x5d\xa0\xa6\xa6\xdb\xd4\x8b\x38\xa8\xc2\xbd\xea\x0d\x74\x56\x6f\xa0\x6a\x89\xdf\x97\x65\x08\xca\x60\x94\xc6\x28\xcb\x3f\x53\x71\x17\x12\x65\xc1\x96\x92\x5e\xb6\x31\x81\x5c\x9e\x7f\xc5\x48\xd3\x2b\x40\xb1\x55\x78\x47\xaa\xef\x28\xc1\xd7\xbc\xe5\xb4\x30\xea\xf4\x6b\x18\x9d\x49\xb0\x62\xe4\x2b\x6d\x55\x33\xd0\x4d\xb0\xf0\xf9\xb4\xac\x64\x37\x5a\xc6\x82\xd4\xdc\x04\x7b\xd5\x1b\xdf\x6d\xd1\x58\x96\x55\x12\xb6\x1e\xbe\xf2\x12\x76\x1e\x69\x24\x2a\x3f\x61\xe7\x89\x36\x6e\xf1\x79\x1a\x88\x97\xe8\x50\xab\xc0\x6e\xa3\x2c\x3e\xfc\x48\x25\xb8\x20\xef\x7c\x18\xb8\x8f\x42\x23\x0c\x45\x48\xc6\x24\xfc\x9c\x79\xa8\x97\xf2\x4e\x31\x29\x93\xc0\x30\x05\x6a\xb7\xa9\xe6\xc7\x1a\x15\x3c\x4b\x1d\xca\x97\x1a\x4c\x6e\x8a\x0e\xe2\x1f\x21\x5d\x8e\xd4\xda\xe4\x1c\x1f\x11\xf1\x01\xdd\x0d\x01\x1e\x4f\x4b\x45\xf8\xc2\x7f\xc9\x2c\xc4\x06\x22\x0f\x91\xdb\x1c\xf7\xc4\x59\x81\x82\xde\xd3\xfb\x49\x4b\x9f\x26\x5e\x2e\xb5\x02\x3c\x9b\xde\x89\xa8\xa0\x43\xed\x04\x76\xef\x37\xc3\xa1\x47\x56\xf4\xab\x8c\xb1\xe7\xc2\x07\x58\x54\xc0\x29\x19\x73\x1c\x9a\x3a\x17\xab\x1c\x79\xba\x71\xfc\xb9\xca\x26\x73\xb7\x4b\xa9\x5b\x70\x33\xa2\x8a\x6e\xce\xb8\xa3\xf2\xa9\xe9\x22\x32\x56\x5d\x74\xd1\x76\x11\x79\xb4\x26\x1b\x70\x2a\xec\xf3\x5c\xe7\x97\x8d\x9a\xdd\xf9\x35\x1e\xec\x06\x57\x5d\x74\x6f\x62\xd4\x7b\x2a\x78\x91\x37\xa9\x4c\x12\x8b\xf4\xa8\xa9\x0a\x75\xda\xee\x01\x4b\xe9\xad\xdd\xc0\x03\x84\x79\xe2\x80\xec\xaf\x5f\x2c\xc9\x98\x53\xc7\xba\x4f\x1d\x2f\x0f\x80\xcf\x7d\x4a\x61\x64\xb8\xdc\x9f\x30\x41\x18\x2d\x7a\x7d\x65\x0c\x9d\x00\x45\x79\x8c\xaa\x22\xad\xc0\xa8\xf2\x45\xfa\x70\x25\x76\x61\x91\xc2\xee\x1d\xd1\xd0\xb0\x3f\x88\xe1\x08\xa9\x82\x59\x5a\x9a\xf8\xbd\x1d\xcb\xa1\xac\xc0\x7f\x6c\x0a\x7e\x30\x53\x2e\xc5\x0e\x30\x17\x4a\xe8\x7a\xaa\xb7\x33\xb2\x78\x84\xe4\xec\xc8\x82\xbd\xa4\x9b\x98\xe5\x26\x96\xbf\x65\x0c\x75\x06\xbc\xc3\x59\xc9\xe3\x25\xaa\xcd\x06\xaa\x9e\x71\x5e\x82\x65\x31\xf0\x11\x1e\x2b\xc1\xff\x98\x1f\xcf\xa2\xbc\x90\x51\x58\xd7\xc6\x04\x29\x4d\xee\xa7\xe8\x5a\x16\x5e\xf5\x31\xc8\x03\xd9\x27\x09\x23\xe3\x09\xa3\xf3\xc7\x95\x1d\x67\x66\x9c\xe5\xd2\xc5\x89\xb9\x46\x27\x9d\x67\x46\xfc\x22\x2c\xc8\xd6\x41\x67\xa6\x83\x8e\x44\x12\x94\xb7\x48\xfb\x6d\xdb\xd0\x3a\xfa\x75\x81\x8e\x98\x80\xf1\x04\xa0\x96\x7c\xce\xdf\x97\x3a\xbc\xa8\xb4\x10\x6a\x53\xb1\x86\x47\xc9\x40\x08\x48\x2d\xb7\xa5\x33\xd9\xf4\x92\x5d\x97\xd8\x3c\x3f\x75\x8c\x2e\x4e\x73\x31\x90\xac\x14\x2b\x7e\xb8\xd7\xb8\xb3\xd0\x5b\xee\x03\x01\x47\xde\x6f\x49\x27\x18\x35\xcf\xb7\xf0\xf1\xba\xf0\x41\x52\x09\x62\x58\xa4\xfd\x81\x75\x7d\x60\x83\x58\x9c\xa0\xff\x72\x51\x1c\xbe\x81\xa2\xca\x63\x6f\x7b\xe2\x23\x08\x30\xb0\xdb\x0a\x30\xde\x33\xc3\x75\x8e\x06\x18\xf1\xf8\xd3\x44\x1f\xfe\x18\x61\x24\x77\xd8\x19\x1a\xd3\xcf\x13\xde\x22\xec\xb3\xa0\x73\xb2\xe1\x3f\x0f\xcb\x64\x26\x30\xaa\xa9\xfa\x81\x8b\x80\x35\x79\xe4\x8d\xaf\x3b\x49\x55\x44\xc5\xc7\x96\x4a\x88\x30\x61\x5b\xa4\x38\xf1\x36\x4f\x0f\x72\x80\x91\x74\x2f\x59\x18\x8d\x2a\x73\x34\x15\xf0\xf4\x4f\x85\xf7\xd1\x73\xac\x30\xa2\xa4\x61\x96\x96\x27\xde\x9b\x4d\x55\x1a\x1a\xba\x64\xec\x71\x9e\x36\xb0\xd9\x81\x4e\x39\xd0\x2a\x3f\x8a\x5d\x24\x65\x4f\xaa\x3c\xaf\xc5\xd1\xe3\xa9\x8b\xba\xf7\x16\x66\x52\x2e\xc1\x80\x16\xe9\x48\x37\xcd\x09\xb0\x75\xc4\x6e\x04\xb6\x4c\x90\xfa\xf6\xa3\x2b\x96\x91\xd4\x69\x5a\xae\x58\x66\xa9\x6c\x42\xa8\x38\xa3\x26\xed\x7b\x26\x06\x20\x7d\xa9\x3b\x31\xef\xcd\x1b\x13\x24\x57\x73\xcb\xa2\x05\x08\x23\x71\xd3\x5b\x43\xa5\x1d\x8b\xc5\x28\x66\xa0\xab\x9b\xa5\xa7\x7b\x76\x93\x62\x6d\x59\x79\xe7\xb4\x1a\x3f\x93\x90\x43\x4a\x93\xe1\xf4\xda\x08\xac\x0d\x91\x2e\x59\xad\x2d\xa5\x85\x7e\xbd\xb4\x10\x73\x6f\xc6\x9f\xf2\x70\x1c\xac\xdb\x15\x86\x5e\x14\x22\x3d\xeb\x2b\x3d\xcc\xdc\xd6\x0b\xa5\x81\xf5\xc9\x0f\x1b\x13\x8c\xb0\xf9\xac\xdc\x56\xce\x59\x1b\x1f\x97\x93\x26\xd1\xf2\xad\x4b\x6f\x5d\x9a\x30\x6c\x14\x3d\xf1\x86\x65\x14\xb1\xeb\x4b\x35\x29\x5f\x17\xc1\xd9\x2f\x20\xce\xcf\xd3\xe6\xd5\xb6\x67\x0d\x1a\xd2\xf8\xbc\x36\x63\x0d\xdc\xbf\xa3\x05\x63\x23\x16\xfa\x46\x59\x30\x26\xa4\x68\x6b\xe8\xd0\xeb\x0b\x43\xa5\xac\x7e\x5c\x0d\xd7\x16\x4b\xe5\x45\x6d\xc2\x4a\x06\x2c\x3d\x69\x69\x69\x53\xac\x20\xa9\xe7\x62\xd8\x73\x7e\xf9\x64\xe0\x31\xce\x03\x20\x1e\x24\x05\x87\xba\x03\x8c\xfa\x15\xcc\xc8\xc4\x5a\xb6\xf5\xa1\x63\x99\xac\xea\x99\xe6\x58\xc6\x0f\x5a\x03\x22\x9b\x2b\x5d\x60\xa4\xc8\x05\xcc\x52\x72\x52\x90\x71\x0d\xda\x4e\xaa\x30\xe5\xa3\x38\x2f\xb4\x56\x01\xe6\x46\x2c\x83\x00\x03\xbb\xad\x00\xa3\x00\x85\x7a\x7f\xb9\x25\x95\x0c\x0f\x2a\x51\xb3\x4f\xed\xee\xf0\x96\x3e\x98\x71\x53\x8c\x97\x41\x4e\x17\xcb\x9e\x39\x06\x2d\x99\x1d\x43\xa2\xa9\xe6\x31\xb0\xe9\xe3\xd4\x0d\xec\x49\xee\x12\xaf\x33\xa5\xcf\x4f\x8c\x2d\x15\x31\xcb\x26\xde\xc4\xe3\xd0\x32\xaf\x8b\xb6\xae\x77\x43\xfd\xf5\x59\xb3\x81\xce\xce\x38\xe9\x88\x74\xd7\xfc\xcf\x37\x28\xbc\x80\x2b\xf6\x4c\xf4\xa7\x49\x23\x04\xc1\xc8\x18\x61\x24\xd7\x0a\xaf\xcf\x2b\xbe\x0a\x97\xfc\x06\xac\x62\xd5\x43\x7a\xf2\xd4\xa4\xb0\x7f\xea\x0d\xf4\x4f\xa9\x81\xfe\x69\x36\xd0\x3f\x67\xd0\x2e\x79\xfe\x09\x67\xa5\x06\xe3\xd1\xbb\xfe\x5f\xc6\xff\x0c\xcc\x0a\x58\xc1\xa9\xf4\x3b\x6c\x7c\x8a\x6b\xfe\x14\x7b\xef\x54\xbe\xc2\xa8\xae\xdb\x30\xd9\x18\x23\x63\x1c\x57\x53\xde\xd9\x79\x8c\x6e\x6a\xda\x96\xc1\xdd\x32\xb8\xcf\x28\x2a\x93\xf4\xbd\xa4\x9b\x0f\xba\xcd\x79\x82\x6a\x29\xd4\xe0\xb3\x29\x03\x1b\x79\x31\xb6\x7a\x0b\x0d\x81\x3d\x67\x1d\x04\xd9\x39\xfa\x26\x46\xa7\xb6\x96\xd0\xf0\x6f\x05\xd4\x2d\xfc\x7e\x40\xf8\x0d\xd2\xe8\x86\xf0\xeb\xd8\x96\xe1\x24\xf5\xc6\xcd\x06\x2a\x9f\x71\xfd\x31\x4b\x3d\x8a\xed\x48\x77\xac\x04\xb6\xf8\x0d\x32\x97\x33\x41\x2a\x76\x0c\x5b\xac\xa1\x81\x7e\x0f\x3b\x92\x4a\x73\xf3\xb8\x82\x91\xf1\x80\x51\xfa\x46\xf3\x19\x8a\xe3\xa7\x16\x41\xf5\x6a\x2b\xb6\xd8\x69\x93\x4c\x82\xdd\xab\x73\x16\x5b\xb8\xdb\x74\xa0\x78\x93\x0c\x15\x49\xb7\xb7\xb2\xd6\xb7\x4c\x90\xa6\x03\xbd\x50\x82\x7a\x3e\x89\xe7\x13\x3e\x2a\x09\x31\x47\x59\xa3\xe5\x6f\x45\x21\x7b\xa4\x29\xf7\x62\x16\x0d\x6f\x35\xd8\x79\xdc\x66\x46\xc3\xe8\x76\x8c\x91\xa4\x15\x12\x30\x30\x47\x82\x38\x3a\xa8\xc5\x08\x6b\x24\x80\xb4\xce\x07\xeb\x02\xb5\x2d\x98\x6e\xc1\x74\x0e\x7b\x9b\x74\x26\x2b\x1b\xb6\x6b\xea\x83\xc0\x98\xe7\xbb\xa5\x95\xc4\x61\xcc\x2d\x6d\x09\x45\xd4\x43\xd7\xb3\xa4\x77\xdf\xd7\x92\xae\x9d\xf9\xba\xa5\x51\x43\xc3\x48\x4b\xb5\x30\x93\x49\x42\xdc\x2d\xf7\xae\xeb\xb4\xf7\x40\x35\xcb\x0e\x59\x02\xae\x51\xbc\xf4\x5d\x47\xa3\xec\xa7\xa4\x65\x1c\xc8\xa2\x8a\xa4\xaf\x0f\x2a\xec\xe3\x51\x17\x61\x6e\x44\xff\xb2\x0d\xe3\xce\xa5\x66\xa4\x04\x9f\xd0\x6e\xb0\x4c\x55\x54\x42\xd1\x39\x54\x6f\x70\x4d\xb8\x92\x7a\xfd\x64\xbb\x3f\xb1\x71\x35\x7a\x19\x23\xe5\xac\x85\x51\xb6\x5f\xf5\x75\xe9\xf5\x00\x3d\x0c\x0e\x0b\x18\x65\x65\x1b\xa3\xf1\x11\x46\xa9\x53\xe2\x27\xb5\x57\x4f\x4f\xf1\xcc\x7c\xc5\xcb\xe4\x41\x0e\x5b\x85\xcb\xc1\x16\xd5\xbd\xae\x4e\x1d\x5d\x92\xcd\x44\x45\x6f\x22\x0c\x24\xb1\xdd\x57\xcb\x76\xae\x6b\x7a\x6f\x68\x99\x6b\x55\x40\xae\x65\xdb\x6a\x35\xdf\xdd\xdc\xfe\x9b\xe1\x95\x57\x64\xa1\x98\x9c\x4b\xa8\xd5\x38\x24\x36\xe9\xc8\xd4\x67\x45\xde\x71\xc9\x3c\xe9\xd5\xe3\x31\x23\x7c\x9b\x09\x93\x0a\x56\x52\xaf\xb0\xcd\xf1\xa7\x39\x3f\x22\x9e\xf5\xea\x0d\x3d\x50\x52\x8d\xa0\x75\xcf\x83\x96\x27\xd6\xd8\x3d\x4f\xd1\xbd\xe5\x74\xe7\x35\x26\x16\x1b\xed\xe9\xe3\xc9\x60\xb8\x15\x43\xe1\xbc\xa0\xb7\x7b\xe0\x73\xef\x37\xcb\xdc\x6a\x0e\xe3\xb1\x27\x29\x10\x4d\xfb\x35\xce\x09\x33\x59\x49\x50\xc0\x83\x1e\x55\x3d\x9f\xf4\x4a\x14\x8a\x16\x86\xf3\xc8\xad\x30\xc4\x5f\x0e\xed\xd7\x9b\x24\x8d\x1f\x0d\x8f\xb0\xa8\xa2\xe2\xe3\x29\xec\xa6\x63\x8c\x90\x71\x1f\xc0\xd0\x71\x87\x6c\x49\xc3\x47\x20\x0d\xbf\x10\xce\x61\x24\x97\x90\x36\x0f\x2c\xcd\xb9\xa5\xed\x64\x04\xe6\xfd\x92\x11\x98\x6b\x04\x23\x9a\xba\x7c\x12\x15\x24\x8d\x53\x1a\xec\x37\xd8\x87\x60\x5b\x52\x68\xf3\x4a\x0a\x91\xcc\xc4\x22\xb7\x86\x1e\x49\xe1\x79\xfa\x4b\x0d\x14\xee\xfd\x9c\xfd\x21\x99\x29\x95\x1a\x4c\x76\xc5\x73\x24\xc1\x87\xec\x22\x29\xf8\x8b\xe5\x95\x49\xd6\xde\x5a\x41\x3d\xb2\x52\xee\xef\xec\x9b\xe4\x17\x97\x52\x8d\xba\x13\xe8\x8d\x4b\x2d\xa0\xfd\x87\xbc\x7e\xe9\x32\xb9\x3c\xa6\xfb\x64\x2e\x0f\x5d\x64\x38\xee\xbc\xf3\xd3\x17\xe3\x8d\x9e\xb6\x56\xa9\xef\x65\x14\xb3\x4e\x30\xea\x60\xf7\x57\x93\xfc\x4c\x32\x9d\xa3\xa2\xf8\x0b\x93\x77\xb5\xb5\x21\xb4\xf7\x2d\xc8\x7b\x26\x9d\x10\x62\x79\xf8\xda\x75\xc3\xb5\xbb\xec\xa4\x1a\x85\x24\xe5\xeb\x0d\x96\xca\x88\x34\xb4\x29\xbf\x26\xa1\x97\x57\x20\xf3\x3d\xe2\x9e\x8b\xa7\x48\x3a\x3c\x2c\xc0\x7e\xcb\xc6\xae\x9f\x8d\x4d\x1d\x7d\xc0\x65\x2d\x67\x92\xcb\xda\xa5\x8e\xde\xa7\x3d\x9a\xb0\x90\xa4\xa5\x20\xc8\x2e\xe1\x73\x2d\x29\x27\xb7\x57\xe2\x25\x92\xf4\x9b\x16\xec\xf3\x26\x46\x7d\x47\xc3\xa8\x36\xc6\xc8\xe0\x6e\xf3\x99\x36\x46\xe3\x92\xaf\xa0\x0c\x0b\x72\x45\x37\x1b\xd1\x7b\xd7\xe8\xb1\xf3\x98\x05\x2a\xa5\x27\xd2\x22\x90\xd1\x55\xfd\x04\x49\xee\x51\xe5\x04\xd9\xe3\xa9\x14\x2b\x07\xee\x88\x46\x15\x0d\x94\x94\xcf\x6b\x2b\x4c\x3e\x17\xcb\x48\x3e\x06\xd6\xc2\x77\xeb\x60\x82\xa4\x3d\x5c\x66\xc4\x2e\x92\xec\x74\xe5\x5c\xec\xa2\xc2\x53\xfb\x86\x65\x93\xe5\x15\x0e\x69\xcf\xb8\xa1\x4f\x33\x65\x64\x45\x17\xad\x29\x19\x79\xb5\x6d\x63\x24\xea\xe5\x37\x2e\x7b\x1f\x1e\x8b\x79\xf4\x34\x1e\xc3\x8e\x27\x4c\x93\x8f\x64\x5f\x1d\xcd\xeb\x95\x72\x2d\x45\x99\xf8\x6a\x8f\x51\x0d\xa3\x33\x80\xc0\x82\x16\x68\x44\x34\x8c\x2e\x00\xb7\x3c\x12\x3f\x5b\xda\x63\xa0\xf6\x48\x1e\x09\x54\x23\xc7\x63\xff\x82\xa7\xc1\x05\x2f\xcd\x44\xb2\x35\x58\xc1\xa4\x15\x1f\xc6\x55\x22\x81\x22\xe5\x6b\xe2\xd2\xe1\xb0\x42\xd0\x07\xd6\x69\xe2\xd4\xc5\x4d\x4c\x97\xb0\x2c\xb7\x24\x73\x3b\xfe\xeb\xf5\x4b\x1b\xcf\x6b\x2e\xb6\x8a\xf3\xdf\x8a\xac\xfc\x1a\xec\x53\x50\x14\x3f\xc4\xb2\x0f\x80\xb6\x0f\xe3\x66\x78\x87\x07\x02\xbf\x32\xcf\xb4\x06\x6c\x48\xaa\xba\xeb\x8a\x16\xca\x48\x63\xd8\x01\xc2\x1b\x82\x98\xc5\xeb\x29\xd6\x34\x3f\xd4\xa5\xe6\x1f\x49\x97\x07\xb1\x53\xd0\x38\x2e\x05\x48\x31\x1f\x44\xa6\x78\x6e\x7c\xad\xb8\x04\xc7\x2b\xc5\x2f\x06\x61\x9e\xa3\xb2\x17\xd6\x49\xec\xd6\xe2\x41\x4e\xf3\xc1\xf0\x26\xb4\x17\xce\x5a\xc8\x4b\x20\xbe\xd8\x7d\xcd\x15\xc0\xc6\xab\x63\x6d\x86\xcf\x92\x0f\x2a\x5a\x2f\xd1\x9a\xa5\x19\xe2\x21\x7e\x4b\x38\x1c\x28\x16\x3c\x81\x9a\x68\xc1\xd9\xb4\x81\x31\xba\x80\x6f\x8f\x16\x46\x97\xd0\xd5\xc9\x4f\x1e\x09\x1b\x63\xd5\x6f\xc0\x7d\x4e\x2d\xff\xc8\x74\x83\x0f\x9f\x7d\xea\x27\x3b\xbf\xe1\x2d\x98\x94\xf4\x71\x39\xd4\xed\xbe\x35\x34\x7a\x3d\x6b\x56\x12\x4b\x96\x31\x43\x9f\xbe\x6c\xc2\xa7\x4f\x5e\x36\x40\x73\xa5\x8c\x93\x2c\x9d\x0c\xb3\x3a\x32\x35\x83\x9a\xf4\xcb\x89\x69\x3d\x2d\x9b\xcc\xf3\x79\xeb\xfe\x0b\x12\x03\x28\x3f\x6b\xe7\x9f\x63\x82\xac\x77\x6a\x31\xd3\xe3\x5a\x0c\xfe\xb3\x08\xf4\xac\x7e\x0b\x59\x09\xb9\x68\x62\x94\x9d\x8b\xb9\x7e\xed\x48\x81\x71\x36\x28\x44\xbe\x65\x01\x9e\x31\xca\x06\x00\x5b\xa5\xb6\x6e\xc6\x12\x7b\x2c\xe9\x06\x30\x03\x74\x63\x66\x7c\xb2\x3e\x57\x80\x24\x1c\x6a\xa3\x00\x48\x22\x37\xfc\x9f\xf6\x9e\xb9\xb3\xc7\x2f\x82\x94\xbc\x57\xb4\xde\x83\x14\x3d\x3d\xd8\x72\xa3\xab\x2d\xc5\x33\xdd\xd1\x6d\xaf\x3a\xfe\xcf\xaf\xc6\x05\xe4\x03\x48\xc4\xfa\x97\xa6\x79\x17\xe6\x7f\x79\x99\xd7\xd7\x92\x28\x55\xfe\xda\x7e\x2d\x09\x74\x49\x84\x9f\x53\xa7\xb1\xac\xf5\x51\xd6\xdd\xfb\x2c\xed\x86\xde\xeb\x5d\x17\x0d\x67\xf4\x2a\x2b\x1b\xd6\x35\x47\xb3\x6f\xc1\xea\xac\x77\x1d\x67\x1f\xcd\x19\x67\x4f\xf0\xb4\xab\xd5\x96\xaa\xaf\xb0\xde\xae\xf4\x07\xfa\x92\xb5\xf6\x2a\x4e\x7c\x4b\xa3\xc8\xee\x59\x01\xa3\xbc\xb7\x02\x9e\x47\x53\x3d\x73\xeb\x71\xb7\xea\x32\x30\x4c\x55\x37\x4d\x7d\xf8\x4a\x04\x35\x64\xf3\xde\x84\x82\x46\x88\xa4\x83\x07\x33\x90\x4b\xe5\x25\x78\x29\x5c\x54\x0b\x7d\xa4\x55\x5e\x5e\x64\xa6\xcb\xe7\x96\xee\xad\xb0\x00\x9b\x86\x49\xfb\x54\x7d\xc5\xe5\x97\x58\x84\x6f\x80\xa3\xde\x21\xcd\xdd\xcf\x88\x29\x93\x6b\x94\x7e\xa4\x05\xf4\xd6\x6b\xd4\x7d\x30\xba\x3c\x39\xb4\x17\x8c\x52\x0a\x23\x65\x59\x50\x07\x26\x13\xaa\xd2\x64\xe5\x1d\x36\x26\x7c\x35\xf3\x18\x39\xcd\x4b\x5f\xe1\xfa\x78\xa6\x63\x24\x0d\x16\xca\xa7\x5b\x63\xcf\xa6\x2f\xc2\x37\x31\xf6\x24\x13\x3e\x1f\xdd\xd3\x9e\x6b\x38\x7c\xb5\x87\xf9\x17\x38\x12\x2e\xf9\x89\x7c\x7d\x13\x50\x90\x87\x21\x85\x3d\xb3\x7d\xe4\x73\x20\x2b\x72\x6a\xb9\x2d\x9d\x59\xb6\xe7\x12\x1b\x13\x48\xfa\x04\x63\x94\x81\xc9\x36\x1e\x7e\xcd\xe4\xe7\x91\x8b\x5a\x7e\x0b\x08\xaf\x0b\x08\xe9\xa4\x77\xcd\x31\xed\x53\x43\xa5\x71\x8f\xb1\x98\xb7\xd8\x1c\xb3\x67\xcc\x99\xcb\xad\x12\xee\xcc\xb5\x4e\xbd\x38\xcb\x25\x8d\x2b\xc7\xae\xa9\x53\xd7\x0b\x99\xf4\xc3\x25\xcf\x4a\x7e\xc2\xb0\x7a\x03\xe5\x4f\xf8\x47\x29\x19\x40\x99\xc5\x28\xc7\xff\x78\x12\x45\x09\xcb\x33\x37\xc5\xdb\xa7\xde\xc0\x1d\x37\xee\x98\x4b\x32\x0d\x29\x16\x3f\x79\x65\xcd\x73\xb9\x58\x9b\x6d\x22\x32\x66\xce\x41\x1a\x5c\xc9\x85\xef\x37\x1c\x71\x6c\x29\xe8\xfa\x28\xa8\x9c\xf0\xb3\x3f\xd1\x4d\xc7\x55\xbb\xa3\x2f\x15\xcb\x35\x86\x0f\x46\xaf\xf7\x82\xd8\xc9\xc5\xa2\x4d\x42\x3a\x79\x0d\x1b\xca\x1a\xa4\x23\xf9\xab\x86\x51\xad\x8d\x51\xe5\x2c\x30\xb8\x24\x83\x32\xcd\x16\x41\x3a\x6e\xa1\xdc\x83\xf6\x73\x51\xcf\x2b\x6b\xb3\x9f\xc6\x18\x75\x86\xd6\x4f\xaa\xbf\x13\x56\x9c\x0d\xb7\x77\x6e\xf1\xc9\xc7\xb9\xc5\x2c\x54\x52\xb5\x4c\xc7\x50\xf5\x5e\xef\x35\xec\xaf\x2b\x6f\xeb\x47\x16\x49\x55\x4a\xbd\x39\xf8\x49\xd8\xfc\x48\xbe\x08\xeb\x84\xcd\xad\x90\xb0\x36\xd8\xac\xd0\xeb\x33\x3a\xe6\xa5\x51\x0a\xbc\xba\xa5\xc2\x94\x47\x31\x8f\x64\xf8\x08\x4a\x80\x93\x27\x39\x63\x8b\x96\x57\xf4\x93\x24\xcb\xb3\x54\x8c\x3e\x4d\xa4\x73\x4a\x65\xe7\x3a\x55\x32\x41\x72\x46\x07\x67\x70\xa5\x76\x69\x0c\x7b\x1e\x8d\x4e\x67\xac\xbf\x33\xdb\x0f\x63\x27\xa7\x7e\xd0\x7a\xfa\x60\xe0\x35\x72\x59\xaf\xc1\x08\xd1\xd3\xf1\x27\xb1\x86\xd7\x79\xb3\xa3\xf7\xf4\xe1\x64\xba\x15\x96\xcc\x84\xb4\x59\x99\x56\x96\xdf\xe6\x14\x31\xf4\xd1\x8e\x2f\x5c\xa4\x9a\x03\x82\xc8\x15\x6d\x21\x59\xcb\xaf\x18\xce\xf9\x13\xb9\x94\x26\x02\x39\x97\x08\xb3\x8d\xb9\x5a\xbe\xa1\x35\xff\x37\x41\x99\x5b\x76\xe6\x95\xc5\x23\x92\x4a\x20\x9b\x2a\x55\x75\xc3\x4a\x66\xf8\xe8\x8b\xe7\x2b\x87\xda\x7b\x59\x3e\x0a\x62\x16\x1d\x6a\x15\xd8\x6d\x54\xa6\x0f\xad\xea\x17\x56\xc8\x9e\x93\x79\x29\x3f\x72\xc9\x02\x60\x55\x6a\xd2\x8e\x4b\x59\x35\x96\x01\x97\xfb\xda\x1f\x8b\x6a\xa2\xc6\x24\xaf\x7e\x2c\x85\x55\x90\xc9\xbd\x6b\xe8\x62\x15\x91\x51\xbe\x0a\x7b\xa5\x6f\x62\x94\xbb\x1c\x60\x54\x82\x1f\x74\x42\xbc\xc6\x50\xfe\x0a\xdf\x0e\x31\x2a\x15\x30\xca\x1d\x99\x18\x75\x81\x1e\x78\x65\xf8\x2d\x19\x56\xf2\x08\x33\x29\x59\x6b\x03\x1e\xca\x1d\x26\x2b\xff\x62\x51\x59\xb2\x6c\x86\x97\x73\xb0\xc5\xcb\x8f\x9f\xb4\xde\xb7\xfc\x78\x90\x73\x70\x92\x0c\x57\xa9\xed\x18\xa6\x71\xef\xea\xec\xeb\xd7\x58\xd9\x6f\x45\x49\x54\x07\x61\x82\xd4\x3f\x6b\x34\xc4\x32\x92\x2a\x67\x6d\xd8\xc3\x8b\x9b\x0c\x95\xa8\x52\x87\xf6\x2d\xdb\xaf\x22\x1e\x86\xe4\x95\xa7\x02\xf2\x5e\x3d\xce\xc1\x2b\x8e\xf7\xf5\x2e\x50\x10\x1b\xe9\x95\x51\xdf\xba\x8a\xe8\xfc\xce\x89\xed\x94\xd4\xc4\xfa\x18\x53\xa7\x47\xcd\xd9\x9e\xf9\x29\xb1\xbc\xd0\x33\xff\x8d\x0b\x31\xad\xe4\xe7\xff\xb6\x4b\x6a\x93\xc8\xfe\x1b\xdf\x6d\xd1\x58\xa6\x24\xed\x01\x55\xdd\xb4\xfa\x86\xa9\xcf\x54\x40\x2e\x8a\xb4\xf8\x69\x8f\xc1\x57\x62\xd9\x97\x77\xba\x88\xea\x20\xa4\x15\x82\x51\xee\xb8\xed\xb3\xcc\x5b\xee\x76\xcb\xdd\xae\x11\xc1\x67\x93\xe6\xf3\xaa\x6e\x1b\x1a\x4d\x54\x31\xe0\x3c\x5c\x53\x1c\x4e\xf3\x70\xaf\xbd\x25\x6b\xe4\x4a\xb7\x63\x8c\x1e\x5d\x79\x8b\xb3\xdf\xfd\x6e\x0b\x71\xf6\x44\x8a\xea\xaa\xee\xf4\x68\x17\xb8\x84\x29\x3b\xee\x6c\xfb\xed\x73\x96\xdb\xd0\x82\xcb\x35\xb0\xcb\x7a\xee\x6e\x82\xe9\xf5\x79\xcc\x7b\x0b\xbc\xe5\x02\xc0\x75\xab\x18\xdd\x15\x3e\x0c\x32\x21\xca\x04\x32\x79\x32\x54\xcb\x0b\x07\x98\x2c\xdb\x59\x6c\x36\x58\x3a\x2f\xe6\xa3\xb2\x9d\xa9\x64\xd9\xce\x75\xe6\x1d\x5f\xc4\x35\x76\xca\xa6\x97\x1b\x4b\x7e\xd2\x30\x02\x32\x9c\x1e\x17\x30\xaa\x57\x30\xd2\x53\x9a\x9f\x66\x84\x9c\xdd\xdc\x6c\xf1\xd2\xbb\xdf\x6d\x21\x5e\x92\x70\x52\x6f\x03\x22\x72\xcf\x2f\x14\x92\xaf\xc7\x12\x25\x1e\x89\xe5\x78\x5e\xb8\x37\x4b\x80\x2f\xf5\x4f\xba\x37\x62\x17\x49\x95\x46\x1e\xf6\x9d\x73\xf2\x4b\x4c\xcb\x96\xd3\x9a\x89\x1c\xd3\x24\x89\x1c\x2d\x53\x75\x2c\x93\x01\x8b\x35\x99\xfb\xc7\x4b\xe8\xf5\x4c\xe6\x9f\x0f\x98\xdd\x27\xd0\xf6\x48\x47\xc3\x43\x8c\x8a\x8f\x35\x3f\x49\xc3\x38\x6f\x4d\xe4\xad\x58\xaa\x71\x12\x24\xe3\x01\x04\x5d\x83\x35\xe8\x12\xaf\x9e\x6b\x5d\x7a\x41\x7e\x9d\x57\x4c\x5f\xff\x32\x43\xc6\x2b\x09\x6c\x0b\xef\x26\x17\x07\xeb\xba\xc7\x9b\x08\x94\x26\xd9\x18\x34\xa7\xb7\x3e\x1a\x0e\x7a\x13\x34\xa7\x24\xbc\xc9\xaa\x96\xe9\xe8\xb6\xad\x8f\x92\x1a\xe5\xaf\x62\xe7\xb7\xd6\x29\x6f\x12\xbd\xde\x24\xa6\x4d\x99\x10\x26\x61\xf5\x3c\x18\x9a\xee\xe7\x82\x89\xcc\x38\xf0\x2f\x63\x60\xe0\xbc\x4f\x24\x60\x22\x63\x60\xe6\xce\x10\xff\xf0\x09\xa8\x97\xf8\x17\x48\x83\xef\xda\x3f\x6b\x4b\xc9\x29\x39\x2d\xa7\xfd\xcf\x8c\xb7\x5b\x76\x63\x82\xe4\x5c\x5c\xde\x88\x39\x34\xbc\x52\x31\xca\xde\xa9\xd0\xe6\x79\xeb\x88\xa6\xba\x80\xf4\xdc\x58\xcb\xb0\xa1\x45\xc6\x2e\x22\x16\x5e\xd4\xba\xaf\xba\xa8\x59\x89\x37\x6e\xf2\xc1\xd5\xc2\x5e\xb5\xbc\x8b\xe4\xbb\x96\x8b\xc6\x2d\x17\x95\xee\xe1\x70\xae\xe5\xa2\x81\xea\xa2\xbb\x31\x46\x6a\x9f\xf8\x16\xb2\xb4\x03\xaf\xfd\xa6\xed\x22\x19\x06\xdf\xb5\x30\x52\x1e\x0a\x9e\x2f\x21\xa7\x09\xfd\xbe\xeb\xa1\xf0\xa3\xaa\xcb\xb3\x4a\x29\x2a\xc1\xc8\xad\xc4\x09\x6e\xbd\xe6\x1d\xe9\x0f\x30\x92\xb2\x15\x8c\x8c\xb3\x02\x46\x6e\x70\xea\x89\xd3\xe2\xa9\x22\xeb\x61\xe5\xf2\xc7\x81\x77\x64\xc8\xed\x76\x1c\xa2\x8c\x41\x40\x37\xa3\x1c\x4f\xcb\xe6\x82\x5a\x62\x04\x4f\x04\x99\x4c\xe2\xd8\xb0\x6c\xcb\x74\x2c\x16\x64\x51\xf5\x83\x44\x58\xb2\x30\xe7\x2a\xdb\x87\xf4\x28\x09\x95\xd4\xa9\xc6\x45\x90\x2a\x8b\x34\x5d\x44\x4c\x58\x7b\x37\x25\x8c\x9a\xc7\x30\x65\xb6\xe7\x04\x1b\xa5\x0f\x4b\xcc\x66\x98\x43\x7a\xba\xb1\x12\x23\xf5\x13\x9c\xd7\x9c\x8b\x28\xdd\x6a\xac\x76\x69\xac\x97\x87\x83\x66\x5c\xe3\x1e\x86\x92\x52\x02\x4d\xfd\x9a\x3c\xe0\x9b\xdc\x6d\x6b\x5e\xd8\x74\x56\xed\x4d\xb8\xc1\x54\x02\xf9\xd6\xe8\x70\x48\x5d\x4e\xcb\xc3\x98\xa4\x9c\xe8\x6e\x74\x2a\x46\x26\x48\xdd\x9a\x7b\x2a\xba\x48\x4a\xb7\x34\xd8\x6f\x81\x72\x0b\x94\x1f\x19\x28\xa5\xa4\x95\xbd\xa6\x3f\x5e\xff\x63\xd9\xdd\x57\x64\x89\x3e\xaa\x9f\x6d\xc8\x15\xa5\x89\x33\x67\x5d\x71\x36\x61\x51\x19\xe6\x37\x2b\x79\xf8\x6a\x43\xbd\xb8\xa6\x69\x56\xe9\xad\xf2\x40\x6c\x1c\x9a\xdc\x3a\x19\x6f\x51\xf2\x1b\xa3\xe4\x64\x44\x43\xcd\x18\x18\x1d\xdf\x38\xb0\x08\x23\x6f\x00\x92\x4d\x88\x90\x17\x66\x1b\x23\xf9\x4e\x8f\xe3\x93\xdc\x68\xcb\xce\x6c\x61\x67\x8d\xb0\x43\x92\xd5\x72\x6a\x56\x5f\xf7\x4a\x84\xf9\x65\xc1\x0a\xf5\x06\x2a\x4c\xa5\x10\x68\x63\x44\xf9\x9f\xd7\x48\xa6\x10\x58\x98\xad\xe6\xed\x73\x08\xd4\x5b\x18\x65\x1f\x9b\x18\x19\x05\x8c\xce\x61\xa1\xa4\xa4\x85\x19\x41\xde\x85\x80\xa9\xbd\x6d\x22\x81\x8d\x85\x92\x37\x49\x24\x90\x9d\x00\x44\xdb\x32\x6f\x83\x18\x41\xae\xa1\x67\x52\x4e\x2c\x73\x75\xfc\xaa\xe5\x70\x4f\xc5\x2e\x3a\xd4\x4e\x60\xb7\x51\x81\x32\xc9\x92\xb8\x52\x05\x23\x69\xe0\x07\x6a\xc8\x78\xf2\x75\x38\xb7\xd7\x25\xda\xb5\x1c\xfa\xa5\xa0\xbb\x3d\x7a\xcb\xfc\x34\x5c\xa8\xda\x6c\xa0\xea\x59\x64\x1f\xf3\x9c\xa2\xc2\xbf\xa5\xf3\xc8\xbf\x78\xfb\x99\x70\x68\x7b\x0a\x3e\x7c\x27\x67\x09\x23\xe3\x09\xa3\xf3\xc7\x2d\x03\xfe\xc1\x70\xd7\x54\xb6\xc7\x5f\x1d\x77\xcd\x83\xd3\xa2\x6e\x3a\xba\xfd\x36\x70\xba\xee\x1c\x27\x5b\x38\x7d\x1e\x72\xac\x8f\x05\xa7\x9b\x05\x44\xef\x08\xa7\x35\xfd\xf1\xba\x4e\x7b\x7a\xff\x3d\x49\xea\x16\x54\x7f\x5d\x92\xba\x08\x31\x6c\x41\xf5\x19\x50\x3d\xbd\x33\x4c\xda\xa1\x53\x41\x00\xd5\x52\x83\xa5\xaf\xc2\xa8\xd1\x54\x3c\x6a\x94\x07\x01\xbc\x75\xc8\xa8\x34\x3e\xaf\xcd\x98\xfc\xfb\xf7\x70\x11\xfb\x9d\xc3\x8e\xa5\x64\x4a\xba\x33\x6a\x76\x4c\xc3\x76\x5c\xb3\xc3\x13\xbb\x72\x7f\x69\xcf\x57\x9a\x17\x7b\xe7\xce\xd3\x5c\x4f\x5a\x9f\x48\xf0\x2a\xfb\x7e\xfd\x7e\x8e\xd7\x54\x3c\xcd\x2b\x51\x48\x6a\xe1\x16\xea\x60\xb2\xb9\x57\xd4\xe8\x30\x81\xb4\x8c\x2a\x46\x67\xe6\x41\xcc\x49\xf9\x63\x24\x7b\xf5\x6a\xdc\x2d\x8b\x5b\xb7\xc9\x5e\xd7\x06\x20\x13\x91\x56\x67\xd4\xa6\x7d\x6a\x1b\x6d\xcf\x4f\xf2\xcc\xff\x0f\x7c\x24\x65\x26\x97\xc5\x32\x92\xcb\xe2\x39\x7c\xe4\x91\xec\xfa\x71\x05\x32\xf0\x1b\x66\xe9\xf2\x4e\xec\xa2\xe6\xbd\x85\x45\x15\xdd\x53\xb3\x25\x1e\x21\x32\xba\x6a\xd5\x44\x6b\xd2\x58\x7c\x76\x6b\xe9\xa6\xf1\x14\x67\xb3\x42\xd6\xca\xe7\xa8\xb0\x14\xd8\x50\xe7\xb0\x31\x4a\xbe\x47\x50\x1e\x7e\x8a\xd6\xc6\xa8\xde\xbc\x6f\xf1\x35\xcb\x94\x64\xee\x8e\x33\xcb\x76\x04\xea\x0a\x67\xb6\x61\xaa\x3a\x3b\x3b\x8b\x79\x8d\x28\xb5\xb5\xfa\x8c\x30\x41\xca\x5e\x1c\xb6\x91\xf4\xd5\xac\xb6\xfd\x14\x23\xcb\xb2\x41\x9c\x5a\xcc\xcd\x98\x34\xab\x40\xa4\x62\xad\x38\xc2\x48\x9b\x53\x6f\x56\x53\xe4\xe7\xd7\x8f\x6c\xd4\x3e\xf0\xa2\x97\x92\x25\xbd\x2f\x0c\xeb\xba\x60\x53\x53\xb5\x12\x69\xc8\x94\x07\x51\x5d\x72\x71\x78\xf9\x5d\x86\x62\x15\x1d\x6a\x15\xd8\xbd\xa3\x6a\xb1\x56\xd0\x30\xd2\x52\x2d\xcc\x64\x92\x84\x38\xcb\x76\xac\xeb\x2b\xbd\x77\x6b\x25\xf3\xd8\xdc\xf0\x44\x6d\xcf\xe7\xb1\xf1\x7e\xe5\x91\x68\xa1\x43\xed\x04\x76\xef\xf7\x2b\x99\x9c\x49\xfe\x36\x57\x87\x1f\x77\x61\xa8\x16\x8b\x11\x75\xa6\xc4\x42\x9f\x30\x13\x48\xa6\x77\x89\x51\xa6\xd5\xe0\xb4\x12\x50\x52\x02\x4f\xb8\xa6\x43\xaf\xf3\xb6\x6e\xd2\x21\xab\x47\x2b\xc1\x7b\x4b\x07\xe2\x09\x0a\xe2\xa9\x98\x87\x9e\x92\xef\x67\xcd\x81\x7e\x4c\x90\xee\xa5\xbb\x5b\x51\x47\x37\xc7\x79\xd8\xa5\xba\x26\x3c\x13\xb9\x1a\xc3\xb7\xbb\x8b\x3c\xff\x36\x68\xc3\x37\x42\x00\x30\x2c\x78\x63\x73\x5b\x83\xb6\xdf\x32\x0f\x5b\x18\x59\x03\x8c\xda\xbd\x31\x46\x5d\x0b\xa3\x73\xdd\xf2\x79\xd1\xd0\x4b\x37\x72\xb0\x9e\xe1\xb9\x11\x79\x50\x2f\xe9\xcc\x91\xe8\xf6\x72\x0f\xdf\x59\x25\x69\xe6\xf5\xe7\x5c\x35\x47\xc0\x2f\x73\x26\xe6\xe1\xba\xd1\x5b\xe0\xad\x89\xd2\xc4\xb3\x9f\x6d\xd5\xd7\x31\x79\x27\x2b\x70\xbd\xf7\xee\x04\x38\xfa\x00\x0e\x95\x2b\x93\x88\xf0\xd1\xf4\x1a\x0a\xa0\xf5\xfc\x20\x2e\x39\x5d\x50\xc3\x1c\x5d\x5f\x18\x0f\xba\x3d\x99\x03\x25\x9e\xff\x64\xa3\x9c\x01\xce\x67\x38\x03\x04\xf9\x4e\xb6\xce\x00\x5b\xfd\xe0\x5a\x79\x84\xac\x22\x25\xc0\xc7\xec\x1a\xe6\xf5\x91\xd9\xd3\xbd\x92\x20\x1e\x0c\x95\x3c\x40\x2a\xd7\x41\x4a\x4c\x07\x92\xe1\xaa\x99\x4d\x94\xd7\xcc\x7c\xf2\x50\x52\x31\xea\xea\xee\x07\x10\x02\xb7\x6b\x7d\x33\x6e\xc1\xa4\xa4\xe3\xcb\x85\xae\x1a\x37\x7a\x32\x33\xe5\x1d\x08\x7b\x2b\x65\xa6\xf4\xcc\xed\x65\xce\x2d\x56\xca\xef\xca\x2d\xae\x68\x6e\x9f\x90\x0e\xf4\x8e\x61\x46\x2a\xc7\x09\x93\x00\x4b\x37\xc3\xdc\x23\xe9\x48\x7c\x9d\xfd\x4a\x16\x46\xda\xa7\x98\x20\xe5\x4b\x29\x22\x5a\xc8\x3d\xd4\x61\xc7\x89\xdf\x50\xaa\xac\xe6\x3c\x9b\x4e\x27\xe1\x37\xe2\x1c\xd4\x4a\xa2\x15\x42\x77\x55\x8e\x59\x04\x3c\xc6\x83\x77\x98\xc5\xf2\xad\x23\xc8\x1d\x5a\x5e\x7d\xf8\xe0\xb9\x18\x49\xa6\x93\xbc\xd0\x87\x56\xcf\x75\xf4\xb5\xa2\xde\x9f\x44\xc3\x4c\xa8\x9b\x79\x8c\x0e\x9a\xf5\x2d\xea\xdd\xa2\xde\xa5\x51\xaf\x94\x8b\xad\xf3\x3a\x35\x1d\x6a\xeb\xfd\x84\x7c\x2e\x17\xc5\xea\x72\x79\x66\x39\xca\x7d\xec\x89\x2a\xa0\x5c\xd8\xbd\xb3\x1a\x82\x49\x49\x0d\x04\xfc\x3c\x83\x76\xac\x95\x85\x6b\x79\xfd\xe2\xf5\x46\x09\xe2\xb9\xc2\x18\xa3\x3b\x38\x6c\xd5\xb6\x12\xf9\x2f\x24\x91\x23\x52\x6b\x4f\x36\xc6\xed\x67\xad\x7a\xb3\x42\x87\x56\x1e\xe1\x95\xfe\x7d\xcd\xa1\x2c\x9d\x54\xb4\x03\x7c\x5b\xd7\x25\xab\x6f\x98\x00\xe4\xa5\x48\xcf\x0e\x90\x2e\x73\x7b\x1b\x53\xca\x3e\xa4\x2b\x6e\xa0\x5a\x8d\x88\xa8\x42\x14\x26\x10\xc7\xb9\xeb\x22\xd2\x3b\xae\x76\x39\x96\x49\x03\xaf\x56\x69\xbb\x88\x14\x2d\x17\x8d\x2a\x2e\x22\x17\x79\x17\x3d\x42\xe3\xbc\xea\xa2\xa7\x31\x34\xb0\x8b\x9e\x5a\x2e\x22\x67\x79\x17\x11\xf9\xae\x80\x91\x8e\x31\x93\x72\x13\x4f\x68\x5d\x9f\x51\xb7\x97\xcc\xbb\x2e\xa7\xc5\xe1\xca\x79\xd7\x57\xdf\x3c\xf4\x7c\x21\x3e\xa2\x43\xed\x04\x76\x2f\x40\xcf\x83\x86\x86\xd1\x59\x6b\x0d\x1c\x31\x3f\x52\x09\x2e\xc8\x3b\xc3\xa9\x52\xdb\x6f\x24\x83\xf6\xa7\xb3\x33\x3c\xd6\xbc\x94\x49\xfc\x5e\xe1\x4d\x43\x16\x3b\x99\xc1\x01\x2e\xf8\x35\x7c\x66\xb8\xce\xd1\x00\x23\x40\x7f\xc9\x3e\xfc\x31\x1e\x83\x94\x01\x61\x67\x68\x4c\x3f\x4f\x78\x8b\xb0\xcf\x82\xce\xc9\x86\xff\x3c\x93\xb9\xde\xea\xaa\x65\xeb\xc3\xf6\x68\xe8\x9a\x5a\xdc\xfd\x18\x7d\xc6\x98\x11\x5b\x3c\xf7\x5c\x90\x91\xbf\x8c\xdf\x9c\x16\x31\x41\xa2\xa9\xe6\xa3\x98\x45\xd2\x38\xa5\xc3\xde\xab\x89\xa1\x9e\x84\x08\x78\x61\x01\x8d\xc5\x35\x36\x5e\x7b\xec\xcd\x8a\x25\x40\x96\x28\x3c\x32\xbb\xff\x8b\x07\xae\x5c\xa5\xe4\x03\xdc\x69\xd1\x40\xa6\xa4\xe2\x82\x7f\xdd\x70\xba\xd3\xd9\x56\xe7\x57\xcc\x5c\xa2\x5c\xa6\xbf\x29\xa9\xf4\x1b\x6e\x1f\x22\x67\xeb\xb6\x5c\xe6\x06\xcb\x65\x6f\x21\xfa\xe5\x92\x61\x1d\x75\xe7\xfa\xd8\xba\x35\x87\x5e\xc8\x59\xa9\x81\xc2\xbd\x1f\x7e\x56\x2b\x95\x1a\x4c\x76\x81\xe8\xc0\x87\x9f\x91\x8a\xff\xf1\xa4\x54\x4b\x6c\x13\xe4\x43\x49\xad\x85\x2a\xa5\xdf\x86\xf2\x65\x2d\xc3\x01\x8a\xa7\x00\xa8\x98\x85\x20\xf9\x50\xa7\xef\x17\x7c\x39\x9e\xd6\x74\xc5\x44\x8e\x25\x5a\x3f\x3d\x76\xd6\x59\x7c\x8a\x91\x7e\xd2\x82\x07\xe7\xdf\x8d\xfb\xb9\x12\xca\xec\x34\x48\x61\x23\x73\x79\xe8\x22\xc3\x71\xe7\x9d\x9f\xbe\x58\x24\x19\xae\x2f\xbf\xc0\x66\x44\xd9\xaf\xf1\x6e\x4b\xeb\xed\x4c\x92\x40\x8e\x4d\x9c\xf0\x64\xfb\xf5\x90\xb7\xda\xda\x10\xcc\xfa\x26\x7e\x73\x13\x9a\xad\x47\xe3\xc6\xb9\x2e\xba\xb6\xad\x9b\xce\x5c\x5b\x41\xa6\x2d\x76\x67\xd9\x0a\x66\xd8\x05\x3c\x6b\x80\x52\x15\xcb\xc8\x3d\xd4\x60\xc7\xb1\xdb\xe5\xc1\x20\xae\xab\xe7\x10\x37\x4b\x39\x91\x6c\x19\xc3\x60\x55\x4e\x66\x6d\x4d\xe8\x3a\x06\xd5\x01\x0f\x82\x8e\x7b\xcc\x36\xf4\x8e\xab\x1a\x1d\xda\x1b\xd0\x44\xe2\xcd\x54\x55\x3c\x9f\x48\xbc\xc9\x04\xd2\x3c\x38\x68\x83\x30\x52\x6e\xa8\xb0\x4f\x60\xa0\x03\x78\xd1\xf9\xca\x54\x9e\xff\xc6\xad\xdb\xd3\xc3\x64\xda\xbc\xe2\xd4\x58\xcc\x2e\x59\x58\xeb\x15\x44\x72\x9a\x6a\x58\x40\x4e\x49\xad\x00\xfb\x99\x58\xff\xa3\x81\xe2\xc6\xc0\xc9\xdb\xa4\x06\x4b\x27\x97\x93\xa9\xe9\xf6\x75\x81\x8e\x58\x50\x79\xc4\xcf\x7a\x11\x2b\x0f\x1c\x4b\x7e\x21\xad\xa7\xaa\xd4\x4b\x82\x0a\xa4\xfb\x54\x1d\x60\x99\xd6\x62\x79\x2f\x5a\xb5\xc2\x02\x92\xf7\xd1\xd3\x30\x7f\x44\x42\xb7\x31\x4b\xff\x1d\x08\xdd\x15\x35\x55\xcb\x7d\xd0\xed\xe7\x0a\xe4\x6e\x80\x13\xd9\x4f\x39\x9f\x9d\xe2\x04\xc5\xf5\x15\x09\xef\x90\x02\x7e\xe5\x9b\xfd\x9e\xdc\xf6\x16\x09\xfd\xc2\x48\x68\xc2\x61\xbf\x79\x6b\x38\xfa\xad\x65\x0f\x75\xf6\x4f\xbd\x81\xfe\x29\x35\xd0\x3f\xcd\x06\xfa\xe7\x0c\xda\x25\xaf\x90\xe4\x59\xa9\xc1\xb8\x72\xd2\xff\xcb\xf8\x9f\x61\xb4\xae\x82\xdf\x54\x27\x19\xe9\x26\xa5\x54\xa3\x16\x28\x2b\x38\x0c\xcb\x57\x18\xd5\x75\x1b\xd0\x0c\xc6\xc8\x18\xc7\x83\xb8\xe4\x5a\x1e\xa3\x07\x5b\xdb\xc2\xc8\x16\x46\x9e\x85\x91\xb8\xe0\xd6\x34\x4c\xd3\x18\xe8\x9d\x67\xbd\xbd\x3f\x26\xad\x06\xc1\xed\xc8\xf0\xc8\x9e\x5c\x2b\xf9\xf0\x74\x4c\xfd\xcc\xf0\xb4\x98\xa8\x8e\xe9\x14\x12\x4e\x02\x73\x09\x29\x87\x33\x0c\xb0\x62\x2d\xec\xf7\x42\xb2\x9d\x94\xbb\xd3\x86\x5f\x11\x9b\x37\x5e\x60\x54\x7b\xe1\x88\x58\xd5\xfc\xb5\x8d\xfd\x89\x98\xb4\x97\x8e\x78\xed\xbb\x6d\x51\xcd\x7c\x89\x3b\x9d\x90\x09\xfe\xa1\x5d\xd7\xa1\x8e\x47\x8b\x43\x3a\x1c\x37\x1a\xc6\x09\xf1\x6a\x65\x1a\xdf\x68\xe3\x16\x43\x12\xa3\xc0\x1b\x69\x31\x34\xb7\x16\xc3\x8d\x05\x8a\x37\x81\xbb\x44\x4c\xca\x3f\x7a\xaf\x67\x3d\x76\x4d\xe3\xc6\xf3\x8b\xe6\x1a\x67\x5f\xdb\x5c\x2d\xf9\x59\x31\x70\xa4\x6f\x0e\xb3\x62\x3c\x9f\xb0\x60\x3d\x1b\x13\xc8\x40\xcb\x63\x74\x6b\x3c\xc5\x94\xd8\x1f\x23\x61\xc1\x16\x06\x36\xe3\x16\x8c\xe4\x3c\x36\xd7\x74\xa8\xad\x3a\x00\x07\x45\x3a\xd4\x47\x1c\x02\x3e\xe3\x2c\xfa\x4c\x08\xc3\x48\xc8\x62\x24\xb4\xe3\xb6\x09\xe9\x1e\x28\x7b\xe9\xae\x8e\x51\x23\x87\x91\x82\xcf\x30\x3a\xa9\xf8\x31\xaf\x72\x9f\x60\x46\x70\xf2\xba\x25\xfa\x60\x0c\xfd\xeb\x66\xd0\x67\x9c\x82\xeb\x66\x30\x12\x82\x30\x49\x7e\xdd\x87\x91\x85\x91\xd1\x72\x30\xa2\xbd\x3b\xb8\x43\xe6\x01\xa3\xab\x02\x46\x72\xd3\xc4\xe8\xa4\x86\x59\x66\xf2\xba\x6e\xdf\x32\x9d\xd2\xa5\xfd\x60\xf4\x7a\x1e\xe8\x7e\x26\x18\x2e\x4e\xbd\x0b\x33\xe1\x12\x5b\x18\xa9\x37\xf7\x18\xb5\xbf\xf6\x31\xcb\x4e\x5c\xa1\x4a\xd5\x7b\x97\xda\x86\xce\xf2\xbc\xea\xa3\xe7\x60\x89\xf9\x6f\x17\x28\xff\xe5\x28\xf8\xfd\x3c\x89\xc2\x1a\x36\x99\x09\x52\xae\x9c\xf5\xcd\xda\x4a\x1d\x20\x8f\x8e\x46\x18\x55\x1e\x86\x01\x17\x08\xcc\xd4\x05\x30\x59\x8f\x56\xac\x71\x89\xfd\x46\x05\xd8\xac\x22\x0e\xd2\x04\xaa\xb3\x1a\x7c\xd4\xec\x53\x0b\x1a\x33\xfc\xa1\xe6\xf4\x86\xe7\xe0\x7d\x9c\x7c\xac\xc1\x1f\x31\xd1\xf0\xae\x38\xc1\x03\x2f\x6e\xcd\xe2\x9a\xe7\xb6\x22\xe6\xd3\xb0\x56\xbd\x07\xff\xa0\xe1\xd8\x39\x4c\x39\x23\x93\x8b\xe8\x71\x68\x99\xfe\xfa\x4e\x07\xeb\x3b\x1d\xac\x6f\x89\x09\xc5\xb2\x85\x91\x74\x33\xea\x62\x96\x86\x15\x78\x46\x55\xe3\xc6\x50\xbf\xe4\x5d\xb5\xdb\xa3\xa6\xc6\x6a\xff\x57\x6d\xa0\xda\xff\xd5\xc3\x8f\x52\x83\x09\x6d\x17\x09\x2a\xfc\x63\x24\x68\x81\x33\xff\xec\x6d\xfd\x6e\x22\x0b\x37\x26\x90\x83\xe2\x95\xeb\x79\x89\xfa\x22\xe2\xa2\x6a\x6a\x8a\xe9\x82\xd0\x90\x68\xf5\xda\xd0\x25\xef\x02\xce\x5e\xae\x75\x5f\x71\x51\xb3\xea\x37\xfc\x93\xa4\xed\xa2\xa3\xaa\x0f\x0d\x2f\x5b\xf2\xaf\x31\xea\x7e\x86\xe8\x36\xd1\xe2\x69\xae\xf8\x32\x9b\xdb\x5a\x7d\xec\xcf\xdc\x8d\xb7\xd6\x07\x97\xaf\x33\x76\x25\x98\x5e\xeb\x93\x32\xe2\xe7\xbc\x88\x10\xc1\x19\xed\xf5\x75\x9b\x23\x02\xcf\x21\x5e\xe1\x4e\xf1\x41\xaa\xab\x09\xa7\x78\xf9\x95\xec\xee\x2a\xb5\x30\x32\x4b\x18\x91\x07\xcd\xab\x8a\xce\x1b\x24\x33\x5e\x20\x68\xd1\xa1\xe9\x79\xa4\xdf\x71\x8f\x06\x65\x51\x74\xc9\x36\x1a\xe5\xd9\x68\x14\xa6\x4c\x30\x16\x17\x96\x73\xab\xdb\x34\x58\x0b\xcc\xf7\xc1\x60\x9d\x53\x0b\x33\x22\x4f\xf4\xae\x8f\xac\x47\xea\x13\x10\xe8\x2b\x78\x9d\x85\x87\x21\xc6\x4c\x9a\xe8\xdc\xb0\xad\x5e\xcf\xef\x0c\xff\xb0\xc0\x30\x12\x5e\x29\xe4\x82\x91\x81\x6b\x61\x74\xab\x7d\x40\x07\xed\x4d\x71\x05\x9f\x98\xb0\x2b\x6b\xe8\x58\xdd\x80\x3f\xf0\x78\x03\x3e\xbd\xce\x5d\x1e\x33\x09\x90\x48\xd9\xb5\xad\x81\xfe\xe5\x74\xd8\xb3\x58\xb1\xdc\x40\xc5\x72\xbd\xc1\x04\x12\x4c\xeb\x06\x6d\x4c\x90\xe8\x63\x15\xa3\xf3\x3e\x46\xcd\xb4\x85\x51\x6a\x70\xe3\xbf\x8f\x79\xda\xcc\xc7\x63\xf5\xe5\x7a\xd2\xe0\x6d\x8f\x07\x6a\x80\x81\xd7\x17\x57\xb1\x8d\xc9\xf8\x68\x77\x5a\x08\x88\x69\xc9\xd3\xae\x0e\x0d\xfa\xe5\xc2\x18\x51\xed\x96\x7b\xc7\x01\x8e\x15\xe4\xb4\x78\x1e\xe2\xd9\xc6\x43\x29\x2d\x9e\xb3\x94\x5f\x97\x16\xfa\xe7\x7b\x7d\xea\x8c\xfc\xfe\x29\x9f\xb1\xcf\x30\x21\x95\x11\xab\xc0\xd8\x7b\x0c\x7e\xc6\x53\x03\xcd\xd8\x16\x85\xd9\x32\x81\x9c\xa9\xfc\x42\xfa\xa5\x05\x3b\x49\xe6\xaa\x1b\x5e\xa0\x98\x93\xd6\x89\x96\xc6\xad\x96\xa7\x3f\xb7\xa6\x79\x5a\x06\xe0\x8d\xed\xd6\x7b\xae\x68\x46\x52\xb1\xb7\xdc\xef\x53\xd3\x2b\x3e\x59\x86\x7f\xc0\x7a\x92\x29\x1e\x01\xde\xf3\x67\x67\xbd\x6e\x8b\xf3\x98\x2a\x32\x6a\xf2\xe7\x20\x87\x46\x15\xf6\x27\x15\x3f\x84\x98\x90\x76\xa2\x35\x80\xa9\xd1\x38\x83\x35\x08\xcf\x06\xad\x9b\x53\x12\x4c\xa1\xbe\x50\x0b\xce\xaf\x82\x93\x25\x94\x6f\x81\x07\x49\x85\x1c\xca\xac\x8c\x87\x9c\x7f\xf1\x46\x3c\xcf\xe9\xd7\x2d\x8c\x46\x9c\x83\x55\x79\x1d\x6c\xb8\x88\x15\xb6\x92\x53\x1f\xcd\x58\x74\xcd\x59\x67\x57\x5c\x09\x4a\xbb\x85\x51\x69\x8a\xb5\x58\x06\x5d\xcc\xb9\xd3\x3a\x30\xcd\x2b\xdd\x8a\x49\xf1\x85\x6e\x52\x6d\x64\x7b\xe8\x84\x48\xe8\x33\x91\xd1\x67\xa2\x78\x7a\xa6\x76\x4d\xbc\x0c\xa4\x7c\x24\xe8\xa1\xbe\x4d\x9e\x5e\x98\x8b\xd2\x9e\xc4\x7b\x71\x0c\xc3\xaf\xab\x5f\x9a\xb0\x8b\x61\x18\xe9\x9e\xfc\xb2\xc8\x65\x55\x72\x29\xf1\xe4\x35\x80\x94\x7c\x9b\x3f\x9f\xab\x7b\xc7\xaf\x88\xfb\x19\x2b\x01\xf6\x67\x82\xdc\x13\x15\x24\x28\x38\xc0\xfe\xb3\x31\xbf\x7f\x6c\xd6\xbc\xf0\x49\xe1\x57\xd1\x2f\x4d\xd8\x49\x0a\x8f\x3f\x1e\xb4\xde\x6f\x3e\x6a\x6b\x9b\x0f\xc0\xf3\x4a\xec\x95\x5a\x6d\x7d\xc6\x3b\xad\x8a\xe5\xa5\xdf\xe9\x7c\x5a\xca\x2f\xa3\x5f\x9a\xb0\xf3\x56\xba\x5c\xfa\x85\x29\xa8\x94\x89\xbd\xd9\xe1\x6d\x87\xb6\xa9\x33\xe3\xdd\x5e\x88\x8f\xcf\xbf\x5b\x39\x5c\x98\xd0\x5d\xbf\x34\x61\xf7\xa6\xfc\x08\x53\x48\xec\xe7\x38\x23\x3b\x04\x3e\x39\xc6\x7a\x29\x4c\x90\x6d\x60\x0c\x64\x1c\xb1\x5f\xca\x9c\x1f\xa5\x4c\x7d\x0f\x36\xef\xa7\xc2\x85\xf4\x4b\x0b\x76\x92\x72\xd6\x7c\x67\x18\x5c\x6e\xb9\x04\xa8\x6a\xc9\x95\x12\xbc\xd0\x02\xed\xdc\x6a\x54\x63\x85\xf0\x8d\x2a\x4c\x90\xae\xc4\xbc\xf7\x26\x5f\x9c\xaf\x99\x09\x52\xba\xa0\xc3\x75\xa4\x7c\xd1\x84\xbd\xc7\xfb\x70\x2e\x88\xf3\x43\xfc\x1d\x46\x0b\x87\x9f\x58\x5d\xa2\xd2\xf4\x80\x45\x89\x3e\xf8\xd9\xb9\xad\xf7\xe9\xc7\xd2\xe9\x88\xda\x9f\x53\x87\xda\x31\x88\x04\x79\xe3\x5e\xcc\x7a\xd0\x28\xfb\x46\x01\x89\x1c\xdf\xc0\x41\x29\x53\x68\xdd\x8b\x59\x96\x4b\x47\x60\x50\xa0\xdd\x38\x10\x70\xa8\x66\x82\x7c\x27\x5a\xc1\xb4\x05\xc6\x85\x55\x65\x8f\x59\xd8\x13\x2e\x4b\xee\x2e\x2d\xd8\x37\xdf\x0a\xf2\xf9\xd7\xdc\xb1\x1e\xae\xd9\xf1\x07\x94\x9a\x01\x15\xa7\xa2\x49\x33\x3b\x5d\xab\xeb\x83\x5a\x86\x09\xe9\x03\xe0\x18\x32\x9e\x8c\x29\x91\x6c\xfd\x40\x54\x80\x2c\xa6\xa3\x11\xb6\x49\xdd\x9e\x3f\xd3\x69\xdf\x3c\x9a\x65\x42\x6a\x1c\xc8\x97\x48\xc8\x2e\x31\xcf\xcf\x03\x2c\x3c\x40\x3d\x35\x46\x83\xa2\x39\xde\x38\x79\x73\x90\xc3\xa8\x52\xde\x18\xae\x30\x39\x30\x7b\x38\xc6\x48\xb6\xb5\x08\xa5\xea\x86\xed\x3a\x2c\x26\xb1\x06\x50\xbd\x41\x1b\xcc\x37\xe5\x79\xef\x41\x96\x54\x42\x39\x34\x17\x86\x77\x1b\x41\xde\xc6\xde\xf9\x60\x5a\xae\x9d\x90\x70\x93\xc7\xee\xd3\x35\x8c\xca\xe6\x9c\x01\x0b\x87\x46\xc2\xb1\x96\x8f\x62\x2e\x6b\x8b\x5a\x0f\x05\xdf\xac\xd1\x87\xa1\xf2\x78\x4e\xb7\x3b\xb8\x99\x64\x06\xfe\x2d\x73\xbd\x5a\x66\x45\xa4\x4f\xb4\x12\x99\x9a\x96\xc8\xf6\x34\xbb\xff\x8b\x07\xae\x9c\x4c\xea\x03\xdc\x69\xd1\x40\x26\x49\x31\x2c\x6a\x0c\x6f\xbb\x7a\x77\x5a\xf3\xa6\x34\x81\xfa\x2d\xa3\x79\x5b\x84\x05\xc9\x99\xca\x2f\xa4\x5f\x9a\xb0\x7b\x1b\x4c\xa8\x03\x52\x71\x5a\x09\x8b\xd3\xe2\x96\xa7\xed\x39\x73\x5f\x75\x4a\x58\x36\x26\x38\x14\x6c\xd7\xd4\x0d\xff\x35\x67\x64\xec\x11\x9e\x4c\x09\x04\xb2\x8c\x1b\x90\x1d\x26\x90\x93\xa3\x06\x1c\xec\x94\xd4\x9c\x58\x66\x4a\x4c\xa7\x7a\x62\xf5\xba\xd4\xa1\xac\x5a\x6d\xa0\xa3\x3a\x27\x61\x32\x66\x42\xaa\x27\x52\x24\xa4\x5c\x24\xa4\x5d\x16\x78\xf7\x48\xe3\x53\x07\x8e\x13\x5b\xaa\x9c\xc1\xde\x35\x31\x3a\x2c\x60\x94\x19\xb7\x70\x82\x28\x16\x6f\x0d\x87\xfa\xcf\x95\x45\x9f\x71\x8e\x3b\xf5\x08\x99\x27\xf1\xdc\xf3\x46\xca\x05\x0e\x3e\x3f\xc7\xfc\x78\x34\xf1\x9c\x5f\x77\x90\x37\x61\xb7\x69\x74\x71\x9d\x52\xe4\xab\x10\x45\x9d\x27\xf9\x55\xa2\xa9\xb3\x8c\x36\xed\x0d\x7d\x9d\xae\xcf\xce\xc0\xfc\xc1\x3c\x32\x21\x53\x0c\x58\x1a\xc4\xbd\xab\x72\x7e\xc5\x9b\xe5\x37\x5f\x88\x93\xf2\x67\x87\x45\x24\x5d\x76\xad\x22\x52\x4f\x00\xe7\x6b\x34\x9c\x9f\x25\x5d\x82\x5f\x27\x2e\xef\x79\x92\x92\xbe\x2d\x05\xec\xed\xca\xcf\xc2\xd5\x18\xb7\xe4\x06\x8e\x1d\x73\x8c\xe0\xb5\x98\x9c\x8d\xf4\x55\xf5\x5b\x6a\x76\x6e\xa9\x11\x04\xa8\x30\x1f\x4a\x16\x31\x24\x4c\x20\xaa\xf4\x88\xd1\x05\x3c\x16\xcf\x9d\xf9\x58\xc1\x08\x28\x72\x96\xe7\x8e\x3b\x20\x18\x35\x42\xeb\xfb\x5d\x28\x1d\x87\xc4\x9c\xc2\x73\x3a\x97\xb2\x9f\x2c\x6e\xc5\x78\x4d\x26\xc9\x31\x80\xb7\x7a\x56\xbf\x6d\x71\x34\xf2\x19\xa7\xe4\xc0\x8d\xca\x43\x26\x77\xe2\xa3\x8f\x4c\x70\x80\x50\x64\x22\x07\x28\x05\xce\x12\xfb\x6b\xbb\x06\xfb\xf1\xd8\x45\x99\xfc\xc0\x45\x92\xcc\x25\x50\x32\x76\x91\x29\xab\x6e\x82\xbe\x94\x6e\x69\x97\xb2\xc3\xaa\x8f\xae\x12\x77\xcc\x30\x21\x75\x21\x76\xe1\x3e\xd1\x3d\x33\x41\x6a\x09\x99\x09\x24\x5b\xf9\x0a\x1d\x88\x6b\x9a\x62\x97\xe3\xaf\x7e\xda\xc4\x48\xea\x3e\xb5\x5d\x44\x0c\xcc\xd3\x3e\x84\xbf\xac\x44\xfb\x74\xa8\xba\xc3\x49\x0b\xc7\x40\x54\xdf\xd9\xc2\xb1\x94\x80\x4f\x8e\x75\x78\xd2\x43\xfe\xb9\x0c\xc1\x7a\xba\xe0\x1e\x1a\xad\x80\xe1\xe3\x01\x40\x5c\xd8\x8b\x98\x40\x1c\x71\x72\xad\xe7\x99\xc5\x65\x99\xca\x67\xfb\xd5\xa0\x91\xf7\x1b\x6d\x35\x7c\xe4\x4e\xd0\x92\xb9\x1d\xe5\xa9\x85\xd1\x15\x34\x0a\x63\x8c\xea\x70\xee\x81\xe7\x1a\x0a\xb5\x1a\x11\x90\x7a\x14\x01\x3e\x3a\xb0\xaa\x29\xe7\x3c\x07\xc1\xb1\x1b\x6d\x0e\xf9\xd0\x92\x5a\x12\x95\x73\xe6\x33\xb4\x4f\x73\x89\xd0\x12\xfd\x72\xa1\xb7\x4c\xc4\x17\x80\x1c\xd0\x1c\xac\xc0\xf7\x6d\x0e\xef\xb8\xee\x3b\x31\x29\xa6\xbb\x29\x19\x3d\x23\xce\x7d\x30\x21\xdb\x07\x94\x10\xe2\x54\x4f\x98\xee\xe9\xfc\x30\xd1\xcc\x16\xdf\x9b\x40\xa5\x5b\x3d\x2d\xca\xb8\xce\x2f\xe6\xb6\x69\x70\x35\x85\x09\xf2\x57\x00\x7c\x25\x50\x08\x1c\xdf\x7c\x15\x55\x26\xe7\x62\x37\x77\x87\xb7\xd4\x0c\x35\xe5\x71\xee\x77\x0c\x43\x97\xe0\x7e\x3d\x16\x17\x7a\xeb\x97\x26\xec\xde\x86\xa9\xb9\x2d\x60\x96\x89\x69\xb0\xbe\xd2\x3e\xed\xb8\x43\x9f\x93\x0b\x70\x9f\xa7\x0b\x93\x6e\xc4\x6a\x80\xff\xd6\x87\x03\x97\xf7\xaf\x63\x02\xb9\x52\xf9\x43\x49\x54\x56\x6f\x78\xd5\x31\x4e\xc1\x06\x18\xb5\xc6\x81\xd0\x1c\x39\x86\x45\x20\x3c\x91\x9c\x6c\x7d\x1c\xc6\x5a\xb8\x13\x4b\xfe\x08\x3a\x36\xbf\x95\xba\xc4\x48\x3a\x19\x7e\x78\xaf\x94\x00\x40\x0e\xe8\x98\x86\x3a\x24\x2e\x3e\x1d\x95\x42\x5d\x12\x5a\x56\xa7\xf4\x8c\x90\xb3\x26\xd5\x12\x51\xa5\x7b\x8c\x52\x9c\xf3\xc3\x36\xd0\xda\x27\x68\xc1\x9a\x1a\xc0\x1a\x4d\x73\xa6\xb1\x10\xb6\x9e\x30\x1a\x14\x34\x8c\xae\xc6\x49\x5a\x7d\x9a\x18\xe5\xb5\xda\x0b\x5b\xf3\xfa\x85\x89\xe0\xb5\x26\x46\xb7\x37\x41\xba\xe5\x1b\x3f\x5f\x72\xbb\xa5\x61\xd4\x01\xb9\xe5\x1c\x7b\xc2\x17\x79\xac\x06\x4c\x69\x98\xa5\x99\x07\x1e\xe2\x20\x9b\x40\x32\x47\xfc\x44\xb2\x3f\xc5\x4c\xb4\xcc\x50\xf7\x04\x2d\x8e\x33\xb8\x95\x1d\x0e\x55\x09\x46\x45\xbc\xc8\x33\x83\xaf\x8f\x65\x75\x53\x31\xef\x8f\xf0\x2a\x59\xf8\xda\x1e\x07\x94\x9f\xf3\x34\x69\xb8\xbf\x51\x49\x3e\x35\xf7\x12\xc9\x13\x54\x3f\x69\x21\xf2\xa4\x11\x54\x85\x06\xb0\x45\x71\x87\xe7\xf0\x0e\x9c\x5c\x4a\x30\x92\xe7\xc7\x96\xa4\x05\x84\x96\xff\x10\x2b\x68\xd9\x2a\x46\x4d\x6b\xb2\x31\xd9\x6b\x56\x6b\xe5\x01\x3f\x31\xd4\x56\x31\x23\xd9\x88\xfc\x1e\xea\x6d\xdb\x32\x3f\x26\x54\x6e\xe1\xf2\xa3\xc1\x25\xaf\x47\xd4\xaf\xc5\xbd\xb7\x1a\xf0\x72\x02\xb8\x6c\x17\xfc\x48\x65\xf5\x77\x86\x4f\x29\xe6\x46\x72\x68\x5d\x17\x6f\x8d\xeb\xaa\x61\x7a\x9e\x9c\x67\x09\x2d\x13\xd7\x30\xa5\xb9\xfe\x32\x2d\xba\x91\xa6\x29\xd0\x32\xf9\x16\x4f\x69\x54\xe4\xbd\xda\x27\x18\x8b\x14\x91\xdb\x4c\x1b\xba\xa7\x7a\xf0\x0a\xb3\x16\x46\xf2\xe9\x3d\x46\xdd\x54\x1b\x23\xda\xc4\x18\x15\xf2\x55\x9e\x62\x38\xc2\x12\x96\xd9\xb9\x3e\xb1\xcc\x0e\x7f\x86\xc3\x13\xf8\xaf\xc3\x47\xb3\x81\x8e\x41\xbe\xcf\xe4\xc5\x83\x48\x55\x99\x75\xa3\x47\x78\x0d\xa9\xbc\xf8\xf5\x10\x23\xe2\xd0\x53\x8c\x0e\x55\x8c\x9e\x2e\x5d\x94\x73\x0a\xae\x0f\x05\x4e\xc9\x8d\x02\x04\x3d\xa6\x43\x7d\x9e\xf7\x99\xc8\xdd\x00\xeb\x8a\x17\xbb\x77\xc6\x7e\x23\x08\x78\xe0\x8d\xe4\xa9\xe9\x46\xa2\xf3\x82\x51\x24\xb3\x30\x1b\xcf\x4f\xf0\xc6\x61\x0a\x81\x99\x0a\xb9\x1b\xdf\xc7\x92\x65\xe4\xf8\xac\x3e\x68\xd3\x86\xd8\x74\x5a\xcc\x2f\x63\x8a\x5d\x6c\x64\x97\xf2\x67\x07\x70\x21\xe9\xb2\x6b\xc1\xde\x57\x59\xb6\x7f\x45\x95\x65\xb7\xcc\x05\xa3\x84\xb6\x32\x4b\x22\x6d\xe5\x91\xdd\x75\x9d\x61\x97\x1d\x4d\x82\x6e\xfa\x4a\x4c\x4d\x01\xed\xcf\x28\xf8\xb9\x7e\x7f\x7c\x00\x97\x1d\xdc\xb5\x60\xb7\xd5\xef\xaf\xa2\xdf\x67\x69\xcc\x51\xaf\x1f\x9c\x72\x34\x74\xa8\xd9\x76\x7b\x7c\xe6\xe2\x02\xbd\xa7\xdb\x20\x97\xe2\x65\x5c\xa8\x7f\x89\x6f\x91\xac\xfc\x74\x50\x9c\xcc\x04\xc9\xea\xd4\xe0\x61\xb4\xf1\x18\x76\x9c\xa7\xc9\x3a\x85\x05\xb6\x70\x19\x90\xd4\x65\xc2\x9e\x3d\xae\xd7\x30\x82\xd5\xc2\x55\x95\x1c\x95\x74\x6a\x18\x65\x47\xd0\x6b\x34\xf0\x8b\xc9\x74\x67\xa8\x43\x23\x75\x40\xa4\x18\x0d\xcf\xde\x6b\x05\x8c\xe4\x6c\xc5\xb7\x57\x37\xc6\x18\xf5\xd2\xa7\xfe\xdb\x0f\xa9\x75\xa3\xe0\xdb\x0b\x23\x54\x49\x42\xbb\x3d\x20\xcd\x71\x0e\x58\x03\x1d\x23\x60\xb2\x24\x9e\xb9\x34\x1b\xe2\xf1\x59\x0e\xdd\x8b\x17\xdf\xe2\x2e\xb3\x82\xa4\xdf\x6e\xcd\x9e\x2e\x35\xb0\x05\xbf\xf9\xde\x9a\x7d\x23\x09\x3e\xcc\x7c\x70\x2c\x0c\x47\x4f\x3d\x72\xc7\xdf\x50\x5d\x7f\x4c\xbb\xd4\x76\x68\xe0\xc0\x23\xe1\xd0\x32\x9a\xe3\x68\xaa\x79\x54\x60\x42\x26\x23\xaa\x48\xc8\x74\x3d\x2b\x69\xce\x47\x57\x81\x42\x4e\x91\x52\x4c\x20\xe7\xb8\xd1\x45\x3d\xb7\x8a\x51\xff\x6c\x7c\x8a\xb2\x0f\x4d\x17\xa5\xbb\x03\x17\x29\x67\x2d\x17\x3d\xdd\xaa\x2e\x93\x49\xfc\xbe\x23\x3a\x70\xed\xc0\xe8\x09\x37\xcb\xc9\x18\x35\x8f\x1a\x4c\xc8\xf5\xc5\xaa\x77\x9b\x5c\xc4\x47\x30\x81\xb8\x2e\x3f\x33\xac\x56\x61\x57\x51\x4c\x97\x49\x31\xf5\xdb\xb1\x6e\xbb\x43\xda\xd3\xfb\xec\xb8\x1a\xca\x31\xe8\xa8\xc4\x85\x99\x2e\xf0\x48\xd2\x6c\x28\x5d\xc6\x97\xe8\x0d\x36\xcf\xbd\x10\x1e\xb4\x3e\xaa\xc2\x6e\x25\xa1\x46\xae\x14\x30\x2a\xf7\x31\xb2\xa0\x3f\xe7\xa1\x35\xde\xc1\xf4\xeb\x06\x90\x3b\x0a\x0b\xa1\x18\x80\x4c\xb4\xce\xf9\x0a\xa9\x51\x8c\xf2\xd0\xb7\x7a\x86\x51\x1e\x48\xd9\xc9\x00\xa3\x4a\xd1\x67\x4e\x9b\x3d\x8c\xca\xe7\xb5\x0d\x92\x65\xbc\x60\x11\x6e\x46\xd0\xe1\x25\x70\xeb\x9c\xce\x85\x11\x38\x66\xde\x04\x17\xe6\x68\x30\xd7\x0c\x02\x52\x38\xc2\xe2\x23\x3a\x95\x40\x5e\xe1\x0c\x85\x37\x96\x1b\x37\xee\xe1\x03\xee\x91\xd3\x12\x46\x0b\x7e\x65\x7e\xdf\xb9\x67\xbb\x49\x33\x47\xf4\x54\xbc\x64\x1f\x9e\xd7\xb2\xc7\x18\x35\xc9\x64\xe3\xf5\xfa\xbf\xf6\x9d\x16\x0d\x04\xde\x27\x72\x98\xa0\x40\x3f\x3d\x7f\x4e\x45\xc6\x8c\xfb\x71\x2a\x2e\x37\x07\x10\x7c\x3e\xc4\x4c\x89\x59\x22\x4e\x68\x5f\xbd\xa5\x4e\xd7\xc7\x0b\x84\x04\xa1\x23\x4c\xa0\x23\x60\x4b\xdb\x38\x96\x1c\xe2\x27\x78\x25\xee\xe6\x51\xaf\x9c\xc0\x45\x8d\x87\x16\xec\xb6\x9c\xd2\x32\x41\x23\xd9\xf8\xd4\xda\x54\xbd\x0d\x6c\x3d\xbe\x49\xd9\x33\x2f\xa3\xb3\x93\x06\x3a\x3b\x01\xc9\x50\x19\x72\x2b\x8e\xeb\x5b\x98\x13\xbe\xf9\x44\x0e\x53\xa8\x49\x4f\xd6\x10\x7a\x92\xfb\xd3\x93\xa6\xa8\x72\x1f\x19\xa4\xbb\x80\x83\xee\xab\x2e\x22\x37\xa3\x40\x33\xa1\x9d\x90\x40\x6b\xc3\x15\x0b\x77\x2d\xcc\x24\x25\x22\x2d\x97\xb6\xdb\xbf\x0f\x9e\x2a\xcd\x84\xd4\x29\x37\x6f\x7b\x16\x28\x72\xd0\x71\x4e\xc5\x2e\x93\xa5\xf8\xa2\x73\x6e\xfb\xd4\xd4\xdc\xc4\x2f\x49\x29\x29\x26\xa4\xbe\x8a\x1d\xef\xe1\x53\xc7\xa1\x0b\xf3\x2d\x1c\x94\xca\x07\xd5\xb6\xd8\x61\x24\x7e\xa1\x5b\x6a\x6a\xa3\xce\x94\x27\x8f\x17\xf3\x94\x93\x44\x2d\xee\xcd\x13\xc5\x3c\xad\xb4\x88\x27\xfd\x43\x3c\x97\x1e\x7e\xf1\x41\x7e\x00\xbb\xdf\x60\x21\xdf\x9f\x60\x34\xaa\xbd\x8a\x55\x26\x73\x85\x51\x66\x5c\xe2\xde\xec\x52\x38\x93\x36\x1d\x9a\xd6\x88\xda\xc3\xee\x0c\x01\xb9\x2d\xde\xaf\xe6\xab\xbc\x8c\xd4\x76\x68\xc0\x65\x07\x76\x1e\x76\xbf\xc1\x14\xbe\xa6\xd4\x46\x62\xaa\xaa\x13\x97\xf6\xe8\x75\xc5\xed\x0f\x5c\x9b\xd7\x0a\xf6\xe6\x6d\x8a\xb5\x65\x42\xba\x21\x0e\xbc\x39\x4c\xb2\xb6\xbe\x83\x56\x8a\x09\x52\xa1\xc3\x3b\x91\x0c\x35\x61\xdf\x4b\xb5\xca\xc0\x23\x9c\xa2\xec\xd7\x91\x8b\xc8\xd0\x22\x2e\xcb\x90\xf8\xcd\xd5\x5b\xc3\xd7\x92\x85\x2e\x86\xf0\x2f\x05\xee\x60\x3d\xb1\x1b\x38\x1b\x22\x21\xdb\x9d\x2d\xf5\x2b\xbe\x13\x22\x74\xee\x94\xda\x67\x62\x17\xa5\x47\xa6\x8b\xf2\x66\x19\x91\x53\xdc\xf5\x1a\xb5\xfc\xdc\xc6\x54\x9f\x41\xbe\x8b\xb2\x5f\xc7\x9c\xf9\x0f\x11\x78\x95\xaa\x7e\xe0\x51\xb1\xde\x08\x91\x15\x77\xa7\xca\x8c\x44\x9a\x44\x56\xd1\x73\xbe\x46\xb1\x8a\xe2\xd7\xc3\x11\x77\x89\xbc\x3f\x81\xfd\x19\x67\x9d\x80\xa7\x4a\x05\xae\x33\xca\x39\x77\xe5\xae\x06\x8a\xd1\x2e\x30\xad\x2e\x4e\x6a\xf8\xd4\x79\x0b\x12\x3a\x2b\x78\xea\x6c\x32\x37\x57\x94\x59\xcc\x76\x5f\x5b\xc3\x77\x12\x02\x68\xd8\x7a\x23\x0d\x5f\x2a\x13\x9f\xe1\x0e\xd5\x02\xd7\x44\x8f\x10\x01\x47\xc5\x04\x2a\x03\x55\xf6\xd3\xbd\x09\xea\xeb\xb8\x96\x92\x33\x95\x5f\x57\xbf\xb4\xe4\x37\xf3\xc2\xf8\x55\x90\x18\x92\x8b\xf7\x98\xe5\x52\x91\xda\xb0\x4a\xbb\x74\x38\xf4\xa3\xaa\xaa\x31\x96\xa2\x79\xd4\xc8\x33\x21\xc3\x23\xda\xbc\xcf\x50\xf1\xee\x23\x2f\xce\xa7\xdc\xc1\xa9\x87\x1b\x15\xa3\xfe\xa8\x02\xed\x6c\xb5\x92\xcc\x45\x50\xa5\xa6\xd1\xa3\x61\x35\x0e\xae\xc9\x0f\x2e\x95\x8b\x25\x00\x64\x02\xe9\x1e\x1f\xf1\x0a\x4c\x48\x05\xf6\x2b\x9d\x6a\x61\xd4\x6f\x15\x30\x7a\x68\x61\x74\x75\xe2\xeb\x97\x12\x7c\x58\xcd\x50\xad\xa1\x41\x27\x1d\x01\x35\x71\xb8\x31\x8e\x80\x9e\x17\x0c\x3c\x91\x44\x65\x15\xf6\x5b\x2f\x98\x8d\xf3\x82\xf9\x68\x77\x5a\x98\x9f\x45\x8e\xc5\x12\xd4\xac\x07\xab\xeb\x8e\x4d\xdd\x99\xc5\x65\xa6\xaa\x62\xf5\xf5\xb8\x4c\x1f\x3d\x3b\x55\x9e\x81\xa5\x52\xfd\xcd\x32\xb0\xbc\x58\xde\x4d\xa5\x92\xf3\x35\x34\xda\xc6\x4c\xa1\x20\xf5\x20\x96\x97\x9f\xae\xe5\xf0\x13\x97\xec\x4c\xb8\xf0\x20\xff\xf5\x21\x0c\xf4\x7f\x9f\x29\xeb\xf7\x30\x3a\x1d\x6e\xf4\xac\xcd\x20\xaa\x8a\x5e\x4b\x92\xbc\xd3\xfe\x70\x56\xa0\xd5\x85\xe8\xfe\x6c\x8a\xa3\x29\x91\x4e\x52\x86\x70\xd9\x41\xb5\x02\xbb\x2d\xb8\xad\x26\xd2\xc5\xf4\x2a\xa7\x36\xed\xcd\xc9\x8f\x30\x08\xc2\xc3\x17\xe5\x47\x50\x16\x6e\x5e\x40\xf8\x80\x07\xc8\x59\x03\x2f\x40\xee\xe4\x15\xd2\x69\x44\x21\xdf\x13\x96\x24\xae\x27\x2f\xbf\xc3\xdc\x24\xb2\x68\x9c\x59\xa6\x63\x50\x93\x7a\xd0\x70\x16\x13\x58\x03\xcb\x4f\x23\xef\x9b\x7f\x6e\xb9\xcc\x7a\x2b\x4e\x18\x80\x26\x8c\x40\x69\x26\x48\x2e\xe5\xdd\x5a\x65\x8c\x51\xdf\x35\x2b\x62\x17\x65\x2f\xe8\xa4\x25\x08\x35\xef\x4d\x97\x49\x31\x49\xf4\x6c\x64\x99\x9d\x11\xf5\x25\xe7\x93\x3a\xe7\x45\x11\xd7\x1f\x66\xcd\xc0\x9f\x24\x94\x41\x79\xfe\x68\xb7\x9f\x35\x51\x2e\xd3\xba\x40\xa4\xd7\x18\xbb\x48\x3a\x35\x55\x8c\xd2\x05\xf8\x99\x31\xf7\xf2\x73\x6b\xe8\x50\x93\x8e\xa6\x93\x85\x28\x3a\x70\xa2\x3f\x91\x88\xc5\x73\x3b\x87\xab\xe8\x97\x16\xec\x7e\xe9\x3c\x2c\xe1\x0b\x1d\x8d\x47\x3d\xcb\xd6\xe8\x8c\x37\xda\x13\xcf\x97\x49\xbf\x32\x1f\x67\xc2\x0b\x85\x8b\xe8\x97\x56\x2f\x0c\x4e\x5c\xcb\x0b\x95\xa9\xf5\x4e\x50\x88\xc6\xe7\x3d\xee\x87\x13\x25\xea\xa3\x66\xc7\xb2\x4c\x76\x11\x8b\xd0\xca\x31\x21\x6d\x89\x15\x4f\x6b\xee\x07\x61\x70\xa9\xce\x80\xa3\xf5\xbe\x59\x17\x2b\x28\x73\x97\x73\x99\x12\xf3\xe6\xac\xd3\xee\x2d\xed\x19\x66\x64\x56\x0d\x4d\x28\x98\x09\x39\x37\x30\xac\x06\x66\x94\xf9\x31\xa5\xca\x0a\xf8\x53\xca\x1f\x5c\xc1\xa5\x49\xc1\xaa\xf2\xfd\xfd\x57\xba\xc1\xa4\xce\x43\xcc\x9b\x40\xe5\x78\x8e\x05\x96\x8a\xd9\x54\xea\xb4\x4f\xed\x2e\x35\xb5\x19\xd0\x65\x8b\x17\xcb\x40\x97\x07\x45\xd0\x99\xe7\xfb\xb9\x58\x27\x14\x85\x5f\x99\x1c\xb3\xc4\xd7\x75\xcb\xcf\xf0\x11\xc3\xe4\xe8\xa4\xc4\xff\x99\x90\xb5\x79\x58\x73\x88\xd3\x7d\xfd\xa2\x9b\x08\x8c\x4d\x14\xff\xe0\x47\x3c\x9c\x0f\x63\x73\x99\xd6\x95\x78\x8e\x48\x9f\x8c\x5d\x94\x2e\x56\x31\xfa\x0a\x02\x72\xb7\x16\xd8\x8d\xbd\x56\xdc\xd0\x9c\x06\x49\x5e\x3a\xc2\x2e\x3a\x85\xc3\x5f\x7d\x03\x36\x8f\xd8\x0c\xcb\xe4\xcf\x6e\x48\x3c\xc2\x4d\xfa\xca\xfd\x0d\x93\xe4\x34\xe6\x48\x51\xb7\x75\xcd\xd4\xbb\x56\x6f\x14\x32\x98\x09\x7d\x9b\x0e\xbf\xf9\x15\xf5\x6d\xbe\xba\x4d\xf7\x90\xa5\xbe\x8d\xe4\x5e\x95\xc1\x94\x53\x91\xb9\xa7\x41\x8d\x81\xee\x05\x13\x1f\x27\x03\x8a\x23\x3d\xd8\x32\x1b\x13\x88\xf1\x98\xc5\xe8\x8e\xab\xad\x47\xd6\x33\x01\xc5\xf3\x5b\xdc\x94\x5e\x08\xc3\x30\x3d\x5f\xf3\x64\x6b\xa5\xb0\xc9\x42\xc1\xf7\xde\x2a\x68\x5e\xc3\xbd\x27\x53\xbd\x72\x99\x82\x57\x64\x3d\xa3\x44\x14\xa5\x41\x87\xb7\xdd\xa0\x2e\x7d\x52\x66\x2a\x88\xed\x15\xc2\xf3\xa0\xb7\x7e\x69\xc2\xee\xcd\x56\x6a\x58\xfb\x93\xff\x92\xb6\xd1\x33\x86\x06\x6b\x14\x26\x93\x4c\x49\x2d\xf8\x25\xcb\x24\x99\x22\x33\x01\xd4\x57\xae\xf0\xcb\x90\xbb\x4b\x13\xf6\x6f\x98\x54\x8a\x1b\x18\xa6\xb5\x7c\x12\x5f\x2b\xa1\x22\x50\xae\x85\x3e\x75\x2f\x0e\x21\xcd\x9b\x9e\x0e\x80\x7b\x02\xc4\xcc\x5e\x0d\xfd\xd6\xf6\xad\x0c\x0d\xef\xe5\x72\x1e\x26\x20\x5e\xdc\xef\x43\x1e\xf0\x54\x76\xde\xa7\x1b\x11\x32\x25\xc0\xfb\x52\x6a\xad\x1b\x13\xa4\xb6\x53\x82\xdb\x13\x4d\x56\x31\x22\xb7\x6e\xa5\x21\x1e\xa1\x46\xcb\xf5\xc0\x6a\x58\xc3\xe8\x21\xef\x06\xa1\xce\xf0\xc3\x75\x13\xa3\x41\xad\x80\xd1\x65\xf8\x7a\xa3\xbc\xb7\xcb\xb4\x96\x1d\xb1\x6a\xbf\xb4\xb2\xfe\x7b\xbc\x75\xbf\x35\x5d\x99\x91\x98\x4d\xa2\x71\x6b\xf4\x07\xb7\x49\x47\x8f\x34\x13\x52\x4d\x31\x1f\x64\x3f\xf0\xdc\x3c\xea\x2e\x3f\x46\x0a\x07\xd5\xa1\x98\x67\x99\x5c\x64\x96\x69\x58\xdd\x91\xc5\x80\x4e\x1c\x03\x9d\xc8\x45\xb5\x97\x7c\x5b\xc9\xf9\xf1\xb1\x6f\x57\x8c\x2a\x92\x4c\x56\x50\x61\x72\x36\xf6\x54\x56\x7f\xa6\x4a\xb1\x24\x9e\xfd\x8c\x06\x78\x9e\x4a\xb1\x76\x0b\x17\x1e\x3c\x8d\x61\xf7\x2b\x72\x0d\x3c\xc7\x73\x7b\x69\x26\x7f\x65\xa6\xfd\x7c\x90\x74\x39\xb8\xec\x51\x6a\xb6\x69\x2c\x03\x62\x3c\x3c\x27\x23\x3e\x2e\xe3\xe3\xbf\x98\xd7\x93\xf2\x67\x87\x70\x21\xe9\xb2\x6b\xc1\xfe\x77\x0b\xa7\x88\xab\x03\x2f\x87\x8e\x50\xd3\xed\x49\x37\x2b\xc9\xe7\xb6\x41\xd0\x7d\x14\xeb\x91\x51\x54\xf5\xb9\x6e\x3a\x37\xf5\x4e\x6a\xe9\x64\x3c\x29\xcf\xdb\x0a\xae\x3f\xc8\x0f\x60\x17\x00\x50\xee\x17\x02\xa0\x35\x99\xfe\x22\x57\xab\x18\xef\x7d\xd5\xa3\x9a\xf1\xe0\xd5\x0b\x89\xb4\x16\xbe\xcf\x5c\xb6\x22\x3e\xfc\xa4\xbf\xdc\xb4\xd8\x54\x3f\x3e\x82\xcb\x1a\x4e\x0b\x76\xbf\x22\x02\x5c\x7f\x80\x0c\x9f\x3a\x5e\xbb\x37\xa4\x5c\xb1\xc4\x65\xd9\xa2\xd8\x7c\xd5\xc4\x65\x9e\x29\x8c\x5f\x76\x90\xb7\x60\xb7\x9d\xb6\x95\xa6\x4d\x8a\xe9\x98\xfe\xd1\xbb\xd4\xd1\x6d\xc3\x6c\xbb\x76\x27\xa6\xfd\x8f\xeb\x9a\x24\xf1\x09\x09\xf2\xb1\x98\x9a\xd2\x38\xcd\x42\x8b\xcb\xe7\x33\x63\x82\x44\x3b\xfc\xea\x99\xfe\xf9\xad\x38\x44\xf7\x85\x87\xe3\x6d\x98\xda\xca\xd6\xb1\x98\x84\xfe\x8f\x6e\xeb\x0f\x61\xfa\xb9\xb8\x58\xdb\x5c\x5e\xa8\x7d\x0e\x12\x3d\x01\xb7\xc9\xc5\xdb\xe6\x1b\x67\x4c\x5e\xfc\xa1\x5c\xb4\x36\x65\x6a\xc8\xbd\x57\x56\x81\x4f\x8d\xd3\xa3\xa6\x63\xa8\x5f\xf2\x63\xcb\xd6\x87\x3c\xfb\x9a\x80\x25\x24\x60\xc2\x8b\x98\x35\xcb\x0d\x46\xea\xc0\xd1\x61\x44\x30\xc2\x68\x45\x6f\x28\x79\xe2\x7f\xd9\x51\x0b\x37\x65\x55\xc6\x74\xf9\x8d\x09\x52\x4f\x6b\x62\x44\xcf\x5a\x5e\x96\xb1\x0a\x4c\xdb\x83\x8a\x51\x03\x84\x24\xb7\x8a\x51\xbd\x1a\x3f\x02\x8d\xf0\x48\x3a\x0d\x2f\x1b\xf8\x7a\xb9\x8c\x83\x7c\x03\xb3\x4a\x24\x86\x99\x0c\xe4\x23\x3c\x55\xc5\x45\xfe\x1a\x7e\x8d\x02\xfc\xa2\xdc\x07\xd1\xba\x9a\x38\x0b\xf3\x5b\x52\x83\x62\xae\xbc\x07\x0f\x38\x54\x30\x46\x9d\x8a\x87\x52\x86\xc4\x73\x2a\xd5\x5a\x9e\xec\x37\xd0\xbc\x3d\x9c\x07\xc1\x6f\xd6\xf7\x58\x20\x96\xc7\xe8\xce\x59\xe2\x72\xd1\x7a\x79\x35\xb1\x9f\x00\xc1\x25\xfa\xdd\x1f\xf5\xe6\x8d\x98\x60\xf1\x67\x5d\x20\xea\xb2\xbe\xc7\xad\x7c\x34\x04\xff\x9b\x7b\xc8\x05\xc9\x2f\x02\xfc\x59\xd0\xed\xbe\xeb\x5b\x9b\xf3\xf5\x06\xca\x97\x1a\x4c\xb9\x13\x0d\xa4\xf8\x05\x26\xdf\xc3\x71\x34\xbe\x31\x81\x14\xcc\x8b\xb2\x78\x80\x48\xa5\xd1\xe6\xfb\xb9\x52\xf6\xb2\x65\xe8\x7f\x66\xec\xb6\x84\xfd\xaf\x5c\xc2\x3e\xed\x3b\x88\x07\xe0\x51\xa4\x26\xb5\x3d\xef\x16\x60\x2d\x9a\xe5\x06\x6a\x96\xeb\x0d\x46\x88\x98\xf7\x18\x0b\x81\xbc\x48\xe7\xf4\x3a\x44\x9f\x5c\x3a\xb4\x29\x5a\xa8\x75\x96\x87\x1d\xe9\xe5\x4f\xc2\x6c\xf5\x1b\x41\xc0\xb6\x14\x61\x13\xee\xb4\x90\x22\xa4\x94\x24\x45\x28\xd2\x81\x7e\x7d\xa5\xdb\x9a\xee\x2f\x7b\xce\x55\x33\x32\x12\x15\x8f\x9b\x8e\x32\x96\x6a\x3c\xec\xbb\x6c\x79\x39\xd7\x11\xd1\xee\x6e\x30\x4b\xe1\xe4\xf5\xbe\x52\xdb\xf2\x2e\x15\x42\x8f\x2d\x2a\x11\xe4\xbc\x03\x45\x91\xdc\xba\xf9\x28\x5e\x22\xa9\xd9\xb1\x60\xbf\x85\x93\x4d\x5e\xbd\x1b\x02\x27\x4a\x2e\x49\x1a\xaa\x54\xd3\x0d\x9b\xb2\xaf\x3e\x6d\xf0\x6a\x67\xc7\x69\x44\x26\x46\x23\x5e\xb2\xde\x5f\x24\x84\xfa\x21\xdf\xef\xb1\x71\x94\xd0\xda\x0a\xa1\x5b\x21\xf4\x8d\x85\xd0\x2d\x2a\xdd\xb8\x3b\x2d\x16\x42\x33\x49\x16\xe1\x42\x1f\x75\xef\xe8\x83\xd1\x0d\x19\x6d\x40\xa6\x07\xd5\x06\x23\xc3\x17\xa9\xef\xe6\x6c\xdc\xc9\xb1\xd9\x7f\x44\xfd\x1b\xfa\x18\x79\x6b\x91\x4a\x01\xa3\xa2\xe9\x37\xe4\x9b\x16\x46\x45\x82\xd1\xa1\xa7\xc7\x3e\xc5\x08\x0e\x93\x72\x05\xa3\x0a\xfc\x82\x22\xf6\x9d\x0d\xa2\x00\xe7\xa9\x46\xc2\x21\x21\x56\x4b\x79\xa2\x15\xbd\x96\x89\x63\x73\x47\xcc\xbd\xca\x4a\x23\x5e\xe3\x6e\x8c\x48\xc9\x59\xac\x5b\xae\x73\x7b\x7d\xa0\x5b\x76\xc7\xa0\x4c\xc0\x12\x93\x30\xc3\x8c\xc9\x38\xd1\xcb\xa1\x66\x4f\x1f\xf1\xdc\x01\x02\x56\x90\x80\x65\xe0\x31\x99\x7c\x26\x5a\x9e\xd2\x01\x49\x53\xb3\x2d\xaf\xa0\x84\x8d\x36\x26\x48\xdd\xe3\xc7\x2c\x50\x61\xa9\x9d\xe7\xfb\x28\xd8\x74\x22\x9f\xda\x4d\x61\x76\x8b\x2f\x8b\xa2\x1a\x64\x56\xba\xaf\xc4\x62\xd1\xa5\x7e\x6d\x61\x61\x2a\xde\x48\x44\xaf\x3f\xd7\x39\x31\x6a\xe9\xce\xf7\xb5\x97\xe4\xd4\x4c\x84\xde\xcf\x3c\xc5\x24\xe2\x19\x92\xdd\xa1\x63\xd3\x9e\x41\xbf\xd4\x47\x9a\xa9\x8f\x58\xbe\x5c\x6f\xa0\x7c\xb9\xd4\x60\x91\xe1\x78\x93\x36\x26\x48\x39\xb9\xd7\x42\x4f\x6a\x0b\x11\x7c\xa7\x61\x34\x9a\xe1\x5c\xc1\xe7\x38\x03\x53\x9b\x04\xeb\x49\x67\x22\xaf\x31\x0d\xd6\xcb\x34\x22\x90\x59\xd0\x89\x67\x4b\x08\x91\x26\x30\x20\x61\x23\xcc\xa8\xf0\xb2\x27\x5b\x09\xdf\x47\xc7\x57\x40\xf8\xd1\xc9\xe8\x50\x8c\xe5\xd9\x08\x06\xe6\x7d\x87\x2d\x1a\xcb\x14\xdf\xcf\x29\x84\xb0\xbc\xa6\xf7\xa8\xa1\xe9\x2c\x5f\x04\x18\xe3\xbe\xd2\x39\x17\x09\xd4\xdd\x48\x18\x73\x36\x00\xc6\x96\x19\xb5\x0c\x88\x4d\xc3\x5a\xb8\xa4\xc3\x5b\x84\x7d\xde\x8e\xa5\xda\x42\xd8\x4f\x41\x58\xe0\x48\x1d\x42\x58\xc1\x36\x86\x6d\x6a\xea\xcb\x50\xb1\x97\x10\x92\x43\x32\x0f\x5d\x33\x69\x12\xda\x0b\xb6\xd5\xd5\xcd\xeb\x43\xa3\xd7\xdb\x02\xfc\x2f\x49\x54\xb7\x10\xff\xf6\x10\xef\x57\x32\x0c\xa1\xac\xe8\xda\xb6\xb1\x14\xbc\xbf\x3b\x80\x95\xb3\x01\x0c\xbd\x2f\x84\x4d\x2f\xca\x39\xbd\x1f\xad\xe5\x68\xaa\x77\xc5\x48\x9d\xb7\x44\x2b\x9a\xe4\x25\x46\x44\xf0\x14\x29\x0a\x97\xbd\x07\xff\x88\x54\x8b\xef\xbd\x80\x37\x6b\xd8\x42\x50\xcb\x28\xe9\x04\xa4\x95\xa8\xfd\x68\x98\x8b\x48\xd9\xd2\x54\x24\x54\x2f\x84\x17\x2f\xbb\x6a\x8f\xb2\xcf\x38\xab\xa4\xd0\x67\x9c\x53\x52\x4c\xc8\x1e\x23\x21\x77\x3c\x0b\x8e\xf9\x7d\xba\x47\xf3\xef\xd3\xa9\x0f\xbc\x25\xdc\x4b\xf9\x94\xc0\x38\xce\x63\x74\x80\x31\x1a\x5f\x06\xe9\x96\xa7\x91\x36\x93\xd3\xd9\xc4\x53\x1d\x5a\x6d\x6a\x3b\x1b\x8f\x5c\x5e\x80\x64\xae\x6e\x42\x17\x41\xf8\xf5\xd3\x9a\xae\x30\xcb\xdf\x16\x11\x6d\x11\xd1\xfb\x22\x22\x89\x4c\x20\x8b\x8a\x65\x6b\xd7\x87\xd6\xa3\x4f\xf6\x3f\x13\x2c\xf3\xa0\x07\xd9\x0f\x7d\x00\x20\xa5\x2e\x12\xda\x6e\x10\xf8\x10\xe8\x88\xdf\x6a\x63\x36\x2d\xf2\x10\x7a\xd7\x8b\x95\x0f\x93\xb6\xcf\x6e\xf0\x40\xca\xfb\xaa\x8b\x9a\x15\x17\x56\x72\xac\xc1\x4f\x41\xe3\xd4\x74\x01\x22\x66\x35\x2e\xda\x73\x4f\xf1\xaa\xc6\xc4\xc2\x8b\x5a\xe1\x8d\x49\x9e\x57\x90\xf7\x0f\x2d\x31\x20\xd9\x2d\x3a\xa4\xc0\xed\xd5\x2a\x0f\x08\x7d\xb6\x75\x93\x5f\xae\xdf\x2b\x8e\xbd\x19\xbf\xe5\xdd\x16\x8d\x65\xb2\x92\x49\xae\x6d\xc3\xd4\xf4\x3e\x35\x97\x25\x3a\xaf\x2b\xc5\x4e\xa3\x73\x46\x70\xe2\xf9\xaa\x7a\xaf\x6d\xb9\xf6\x72\x22\xf6\xbb\x53\xc3\xcd\x50\x14\xaf\xae\xc4\x8a\x78\x93\x67\xb4\x58\x0b\xee\xf1\x32\x2d\xd6\x56\x51\xfc\xf6\x04\x2e\xa8\xe9\x1c\x02\xd9\x99\x6e\x3b\xb7\x2c\xdf\x04\x00\x6b\x2e\x2e\xd1\xcf\x57\xf9\xdd\x82\x55\xfe\x52\x5e\xd8\xaf\x74\x59\x2c\x37\x58\xb1\xdc\x40\x45\x9e\x82\x96\xf0\xaa\x96\x9b\x03\xe8\x4c\x90\xe8\x57\x1d\xfb\x95\x23\x8d\xd3\xa9\x75\x7a\x6e\xab\x18\xa5\x8d\x60\x65\xce\x9a\x81\x34\x7c\x74\xaa\xd5\x39\x2c\xdb\x04\x83\xb8\xc1\x8b\xf9\xbd\x4d\xff\x1b\xe2\x9d\xb0\x19\x7e\x10\x9f\xf6\x3e\x9d\x51\xd5\xb8\x31\xd4\x2f\x65\x3a\x74\x74\x9b\x95\xb9\x51\x3c\x83\x04\x9c\x46\x02\x4e\xb1\xcc\xad\x38\x44\x19\x8c\xd2\x18\xa5\x9e\x71\x81\x78\x53\xd7\x63\x26\x10\xb7\xde\x39\x10\x1f\x11\x19\x2a\x47\xb0\x4f\xd6\x1d\xe2\x76\xf5\xa8\xee\x10\x6f\xdd\xd7\x7c\x1b\x7a\x4f\x0b\x12\x49\x85\x87\xee\x6b\xd3\xfd\x67\x8c\x9c\xd3\x5f\x1a\xe4\x97\x1e\x14\x79\x2b\xcd\xeb\x1f\x91\xfc\xc5\x4f\x35\xe7\x56\xb1\xe2\x6d\x24\xcc\x4e\xc4\xe3\x0a\xf8\x85\x17\x3c\xdb\xaa\x6f\x62\xf2\x4e\xbc\x5b\xe4\xc2\x60\xb6\x30\x3a\x20\xbe\xe3\x4a\xd2\x2d\x3e\xf0\x13\x50\xd2\x26\x46\x79\x38\x55\x6b\x4f\x36\xc6\xbc\xd8\xee\x9c\x4c\x35\x33\x5b\x0b\x73\xdb\xcc\x1d\xf1\x7c\x5a\x9c\x55\x87\x32\x19\x73\xb7\x85\x62\xbd\x91\x2e\x96\x1a\x3c\xef\x54\xb1\xd4\x40\xc5\x66\x03\x15\xcf\x1a\x8c\x03\x93\xf7\xe7\x51\x29\x49\x7e\x77\x22\x35\x45\xb2\xd2\x64\x38\xf5\xcb\xeb\xbc\x5e\xe0\x93\x8c\x91\xf1\x88\xd1\xf9\xe3\x6b\x64\xa1\x08\xab\x1e\x70\x1f\xa7\x42\x0b\x6f\xe3\x69\xb6\xf1\x34\xaf\x76\x8b\x4f\x7b\x9f\xca\xe5\x06\x8b\xd5\x27\x58\xae\xdc\xf9\x3a\x61\xeb\xb6\x54\xd8\xb2\x71\x5b\x36\xee\x55\xd9\x38\xbf\xa0\x6d\xc9\x6d\xf7\x0c\x93\x95\xfc\x02\x99\x07\xd5\x06\x2a\x78\x45\xff\xd9\x40\xec\x21\x61\x24\x96\xfc\x68\x80\xa9\xa8\xb1\xc5\x49\x60\x3f\xea\x06\xb2\xd7\x53\x0e\x7e\x36\xd7\x3d\xdc\x8c\xa1\x49\x14\xbe\x8e\xe1\x40\x87\xc3\x99\x15\x38\xdb\xf3\x56\x54\x5c\x88\x1f\xcb\xe5\x03\x75\xb8\x11\x68\xf8\x23\x9f\x55\xde\x9a\xa8\xb1\x1f\x01\x30\xf7\x59\x9d\x7b\x76\x56\x7d\xfe\x08\x26\x57\x1a\x11\x9d\x0d\xc2\x08\x3a\xe9\xf0\x19\x1f\x93\xa3\xa2\xf5\x33\x31\x7e\x96\xa9\x61\xee\x03\x44\x3f\x6d\xd9\xc7\xa3\x73\x94\x47\x09\x8d\xcc\x9c\x86\x93\xf7\x74\x00\x39\x6c\xcd\xd2\x34\x4d\x37\x16\x5c\x67\x96\x45\x66\xbc\x14\x14\x2f\x03\xed\xcf\x2a\x9f\x96\x6e\x4d\xf8\x67\x6f\xf1\xec\xbb\xbf\x8c\x20\x4b\x19\x30\x12\xf0\x0f\xec\x3b\xf3\xbe\xa7\xca\x25\x7e\x0c\x95\x4b\x0d\x54\x6e\x36\x50\xf9\x0c\xce\x23\xc5\xff\xdb\x64\x3e\xdf\x99\xc7\xe7\x2b\x18\x19\x0f\x5b\x3e\x7f\xcb\xe7\x6f\xfe\x2d\x00\x0a\x1d\xf5\xcb\x41\xb5\x21\x60\x76\x50\x6d\xb0\x00\x34\xfd\x83\x84\x7d\xf6\x2a\x12\x7b\x87\x03\xad\xd7\x99\x65\x3b\xd7\x55\xcb\xd6\x87\xed\x11\xe3\xa9\xcd\x28\x8f\x18\xf1\x93\x54\x84\xa3\x09\xe3\x36\xdb\xf6\xc4\xf0\x06\xb5\xe9\x23\x65\x3c\x03\xb8\xea\x0d\xf4\x62\x34\xc3\x81\x32\xe3\xc5\x8d\xb5\xc9\xc7\x51\xd8\x67\xa2\x30\x41\x9f\x38\x2e\xb1\xcf\x18\x78\x96\x89\xc3\x32\xfb\x8c\x65\xc6\xe5\x96\xf8\x61\x85\xf1\x22\x29\xca\xc4\xe1\x14\xe3\xe9\xa1\x52\x13\x87\xd3\x8c\xa7\xfe\x4a\xfb\x87\x8f\x4c\xcd\xa0\xe6\x97\xe2\xad\x6d\x0c\x9d\x3e\x1d\x32\x9e\xf4\x39\xe3\xfd\x0a\x2f\xec\x22\x18\x99\x65\x3c\x5f\x69\x76\xf2\xe5\xd1\x1e\x75\x19\x4f\x82\x99\x0b\x86\xc5\x7e\xfc\x67\xc2\x78\xd8\x76\xf2\x31\xf8\x4b\x26\x98\xd1\xc9\xc3\x30\x3b\x84\xb5\x27\x0f\x4b\x4c\x20\x12\x53\x27\x0e\xcb\x4c\xc0\x32\x9b\x78\x1f\x9f\x15\x26\x60\x85\x4d\xbc\x8e\xcf\x29\x26\xe0\x14\x9b\x78\x1b\x9f\xd3\x4c\xc0\x69\x96\x9e\x38\x9a\x61\x02\xce\xb0\xcc\xc4\xd1\x2c\x13\x70\x96\x65\x27\x8e\xe6\x98\x80\x73\x2c\x17\x3b\x7a\xd9\x28\x32\xf8\x0f\x0e\x79\x3c\x79\xbe\x3f\x74\x74\x5b\xa3\x7d\x96\xaf\x36\x50\x8d\x57\xe2\x24\xbc\x5e\x28\x96\x30\x37\x59\xa0\x62\xb9\xc1\x84\x3b\xf1\x11\x09\xc4\xfb\xec\x22\xa1\xeb\x55\xd1\x23\xab\xc9\xaa\x1e\x33\xff\x8e\x21\xb8\xfe\xc6\x6d\x1e\x2a\xfc\x18\x2f\xe1\xb9\x71\x16\xd0\xd1\xc8\xb1\x64\xb1\x53\x8a\x1a\x70\xdc\x3c\xcf\xfa\x99\x9a\xe8\x51\x50\x31\xaa\xc2\x39\x47\xc5\xe8\xd2\x8a\x33\x74\x2e\x30\xe9\xd0\x18\x62\x8c\xae\xa0\xf3\xd0\xc2\xe8\x0a\xc6\x0f\xab\x18\x5d\x56\xe3\x4e\x44\x2e\xf0\x9e\x30\xdc\xce\x4f\x8d\x0a\x3b\x63\x8c\x6e\xae\x30\x2a\x14\x5b\xf0\x73\xa2\x1b\x05\x63\x87\x7d\x8c\xd2\x98\x74\xb7\xd6\x9b\x2d\x3b\xfa\xb6\xec\xa8\x57\x59\x3f\xc0\x33\xa6\x66\xd9\x36\x65\x4d\x6e\x08\xf5\x8d\xa1\xbe\xb0\x3f\x1d\xd0\xb8\xd6\x8d\x09\x97\x05\x78\xc8\xa7\xa3\xb9\x51\xd9\xdb\x25\xfa\x5b\x2c\x51\x3f\xb1\x7a\xb0\x44\x87\x8e\x4d\xbb\xb7\xb3\x92\x59\xca\xaa\xa8\x3e\x97\xce\x72\xb5\xd0\x5b\x72\xa6\xda\x2a\xaf\x56\x5c\x55\xd7\x51\xad\x78\x56\xfd\x37\x2f\x89\xc2\xc7\x5b\xa5\x51\xb1\x22\x3f\xef\x79\x30\x61\xce\xad\x6e\x0e\x39\xe3\x12\xa8\xd0\x63\x1c\x0b\x19\x89\xe7\x41\xad\xdf\x18\xb7\x22\x79\x59\x64\xdf\x10\xdf\xcc\xc3\x42\x12\x4d\x93\x27\xf1\x1c\x15\x6b\x6d\xd8\xf5\x4d\x8c\xba\x97\x04\xa3\x5c\x1b\x23\xb9\x3c\xc4\xa8\x45\x61\x42\x82\xe9\xef\xca\x2d\x8c\x6a\x63\x8c\xea\xc5\x41\x90\x1c\x24\x5c\x10\x9e\x0e\xcb\x0a\x14\x87\x9e\xd4\x79\x00\x67\x3b\x30\x1c\x64\xb4\x36\x17\x6a\xcf\xb7\xd4\x7b\xb3\x11\xd6\x86\xa0\x46\x39\x15\x87\xb4\x8a\x65\x6a\x96\xc9\x02\x8d\x7d\xa1\x34\x41\xbc\x57\xdd\x22\x30\xf0\xbe\xbd\xbb\xaa\x69\xb5\x8d\xeb\xed\xa9\xcf\xa5\xf3\xc5\xfb\x1b\xe8\xec\xa5\x8b\xb1\x9f\x03\x68\xda\x6b\x32\xa6\xc4\xaf\x62\xf4\x35\x8f\xd1\x53\x21\x71\x25\xf8\x69\xed\xb6\xe7\x21\x0a\xa7\xa2\x51\x5b\x85\xff\x56\xe1\xff\xd1\x30\xe7\x86\xe0\x68\x82\x79\x15\x1f\x1f\x47\x17\xf4\x5e\xc7\xa6\x9a\xbe\x31\xbe\xa6\x4c\x20\xb9\x8b\x22\x46\xf2\xd1\x19\x9e\xa9\x7d\xb0\x55\x8c\xce\x61\x59\x3d\xf4\xad\x2d\x0b\xb2\x39\x8b\x6e\x53\x96\xb7\x14\x67\x41\x0a\xba\xdd\x33\xcc\x70\x71\xa3\x62\xb9\x1a\xae\xf0\x19\x4e\x33\xef\xce\x59\xbc\x82\x5f\x75\xb7\x82\x51\x4d\xc5\xa8\x4f\xfc\x3e\x9c\xc1\x57\x07\x5e\x8a\xbd\x3b\x20\xc7\xda\x1c\xea\xa6\xdf\xe6\xb7\x0a\xbb\x8f\x02\x05\x1b\x02\x6f\x0a\x89\xc3\xdb\x99\x4d\x3b\x6e\x44\x4c\x78\xba\xb9\x00\xdc\x66\x90\x14\xe9\xdd\x00\xed\x95\x80\xcd\xfb\xf0\xde\x0d\xc0\xdc\x00\xa3\xa7\x3c\xe6\x52\xf9\x14\x13\xa9\x06\xb0\xd8\xae\xa9\xd3\x4c\xea\x16\xe0\x36\x1d\x0c\x36\x04\xe0\xfc\x62\x2d\x01\x81\xb3\xdd\xe1\x50\xef\x0d\x13\x2a\x72\x2f\x55\x6e\x28\x6a\x27\x92\xe4\x62\x79\xf9\xed\xbd\xb5\x5d\xbe\xc6\x4b\xbf\x55\x31\x92\x79\x32\x6c\xa2\xce\x86\xd4\xfe\x08\xa3\x23\xd5\x7f\x6b\x5c\x4c\x2c\x07\xb6\x2e\x17\xfa\x60\x2b\x2e\x3c\x7b\x00\x39\xcb\x6c\x35\x57\x9e\xa5\xf2\xb3\xb2\x70\x74\x95\x59\xd1\xe6\x2f\x4a\x9c\x3b\xc2\x18\xa5\x9a\xe6\x14\xfe\xe1\xc6\x37\x23\x6c\x15\xb1\x6f\x31\xd4\x75\x6b\x6b\x8f\xdb\x62\x9b\x57\xc4\x36\x52\x82\xbc\x17\x5c\xf5\x96\xda\xfa\xd0\x61\x85\x98\xfa\x9c\x09\xe4\x48\xb4\x62\x2c\xf5\x7b\xe3\x8c\x00\x73\x90\xa7\xfc\x00\x9e\x4c\xc2\x15\xd8\x5d\xe4\x5f\x6d\x81\xe7\x9f\x54\x3f\x2a\xcb\x83\x29\x5e\x1c\xe2\x79\x43\xcb\xcf\xc3\xd4\xc9\xf3\x9d\x67\x04\x5b\x7b\xee\x56\xe5\x2d\x4c\x6d\x04\x4c\x91\x5c\x12\xa6\x34\x3a\x00\x90\xda\x14\x0d\xcc\x4b\xd9\x66\x1e\x34\xc7\xc3\xe7\x2c\x68\x39\x6d\x8c\xce\xa5\x3e\x46\x72\x4d\x9f\xcd\x40\x5b\xc7\x81\x6e\x1b\xcb\x8b\x80\x23\x46\x6c\x83\xaf\xd9\x43\x8a\xbd\x0c\x1f\x8f\x35\xbf\x51\x28\x60\x54\x19\x03\x35\x94\x3c\x87\xcc\x7a\xad\xb5\xad\xdb\xf2\x51\x00\x66\x53\x40\x33\x13\x07\xcd\xff\x73\x6d\x43\xbd\xdd\x18\xc0\x64\x02\xc9\x55\x66\xe4\x4a\x7c\x3a\x78\x7e\x8d\x6f\x97\xf7\x76\x79\xf3\x0a\xfe\x4a\xb4\xbc\x8b\xb7\xc6\xd0\x30\xa9\xcb\x8a\xd5\x06\x2a\xcc\xf2\x87\x40\xd5\xfa\x09\xaa\xd6\x4b\x4c\x20\x0d\x94\xe0\xf2\x02\xb9\x32\xf0\x6f\x99\x59\xae\x8b\xfb\x4d\xa6\x33\xd3\xdb\xfa\x8b\x78\x49\xe9\x3b\xad\x81\x1e\x0f\xaa\x54\xcc\xbf\x3e\xff\x27\x65\xf2\x18\x49\xba\x89\x91\x9c\xeb\x4c\x12\xb7\xab\x1c\x50\xbf\xcc\x78\x9d\xe5\x66\x3b\x15\x8c\x9a\x13\xc3\x4f\xa6\x99\xbf\xb9\x35\xf0\x3d\x86\xb0\xb4\x05\xcb\x8d\x00\xcb\x74\x26\x01\x96\xd6\x40\x37\x6f\x69\x47\x37\x37\x86\xf2\x4c\x33\x80\xe3\x22\x46\x8d\x31\x46\x57\xee\x29\x46\x69\x7c\x3f\x5f\x45\x5a\x87\x9f\x7a\x98\xf7\x8c\x12\x5c\x55\xc1\xdd\x01\xe0\x5b\xde\xc2\x88\xdc\xa6\xf2\x5b\xad\xc4\x47\x59\xc6\x1b\x02\x30\x49\x23\xdf\x81\xd1\xb6\x69\xcf\xa1\x76\xc2\xd5\x68\x86\xc3\xf0\x7a\x7d\x8f\x96\x2e\x28\xff\x5a\xdb\xd6\xa1\x68\xc3\x1d\x8a\xf0\xf1\x78\x8b\xc6\x36\x11\xb9\x6c\x08\x1a\x93\x71\xdc\x93\xfc\x50\xef\x0d\x0d\xb3\x6b\xf0\xba\xfb\x31\xdd\x6a\x49\xac\xbd\xb3\x6e\x95\x09\xa4\xe9\xd6\xe0\x39\x4e\x2f\x2b\xb0\x23\x9a\x27\x77\xde\xcf\x58\x6b\xb5\xed\x42\xdf\x9c\xe5\xb7\x21\x0b\x3d\x49\xaf\x4f\x68\xcf\x30\x0d\xb3\x63\x53\x2d\xf2\x14\x08\x65\x4f\x5f\xe4\x44\x3c\x3c\x34\xa0\xdb\x81\xd0\x19\x04\x53\x4c\x7b\xee\xc8\xd2\x54\xc4\xde\x2a\x12\x63\x5a\x7a\x05\x6f\x00\x39\x87\x11\x48\x86\x04\x24\x43\x22\x01\x24\x0c\xda\xed\x75\xc8\x81\xb5\x5f\x10\x46\xb2\x87\x63\xcc\x14\x25\x2e\x0a\x9d\x18\xfa\x03\x3b\xf1\xd1\x21\x2c\x8c\x98\x62\xa2\x14\x64\x3f\x92\x44\x65\x5a\x2b\x11\x2e\x12\x1e\xb7\x21\xa5\xa6\xb7\x34\x59\xe7\xc6\x63\x75\xf8\xa3\xe9\x97\x16\xec\x6c\x73\x8c\x91\x74\x18\xd7\x16\x68\x14\x23\xf2\xa0\xf4\xd7\xa9\x28\x28\xb5\x31\x92\x25\x09\x3f\xab\x1f\x38\xdf\xe4\xa5\xf1\x9b\xa3\x4f\x59\x49\xa0\x4f\xc3\xb6\x1e\x66\x44\x9b\x19\x62\xf5\x15\xa3\xcd\x00\xb0\xe0\xa1\xee\x0f\x73\x78\x1b\x68\xf6\x3c\xde\x4a\x68\x56\x2b\xc6\xb0\x6d\x99\x89\xfa\xec\xa8\x59\xae\xc6\x64\xd2\xbc\x78\x8c\x66\xc9\xa5\x2b\x4c\xd1\xcb\x2a\x59\x3f\xd7\xc3\xa7\x9d\xeb\x61\x23\xa5\x9e\x8e\xb7\xa5\xac\x7f\xb1\x52\xd6\x83\x87\xd1\xc2\x61\xdb\x7a\xd6\x1f\x8b\x14\x6d\x08\xd1\x93\x12\xa6\xd8\x8a\xfb\xa4\xf7\xdb\x96\x6b\x77\x38\x56\x8d\x79\x3a\x86\xe8\xd5\xfb\xc6\x04\x4b\xcc\x87\x88\x75\xb6\x0f\xe4\x2a\x5a\xb6\x54\x3a\x95\x4e\xad\x01\x19\xae\x88\x38\x4b\x07\x18\x7e\x97\x93\xee\xc3\xae\x11\xd8\x70\x2e\x07\xf0\xb6\x24\xff\xbd\xd9\x4d\x8c\x8a\xfc\x9d\x9e\x61\x74\x91\xc3\x88\x94\x4f\x31\xba\x04\xc6\xcf\x85\x3e\xb8\x1f\xb8\x69\x18\xdc\x41\x19\xa4\x9d\x5c\x33\xb0\x09\x79\x34\x3d\x3a\xab\x25\xb2\x51\xf1\x63\x51\x2b\x73\xf3\x76\x5e\x90\x0f\x79\x8c\xd2\xb8\x32\x25\x77\x45\x0a\xc3\xad\x17\xe4\x16\x17\xad\x13\x17\xa5\x12\x52\x69\x95\x6a\xb6\xa1\xb1\x39\x9c\xdd\x32\xd6\x06\xe9\x1d\xac\x05\xcf\x58\x12\x52\x0d\x80\xf7\x5c\x21\xa0\xc4\xc0\xd2\xb7\x79\x4c\x69\x76\x80\x91\x7c\xd8\x9a\x81\x12\x22\x96\x2b\x40\x18\xc6\x91\x89\xd1\xa1\xe6\x5f\x84\xeb\x3e\x24\x8c\x91\x34\x94\xfc\xf4\xf4\x29\x5a\xc1\xa8\xca\x53\x11\x8c\x83\x2b\x46\xe8\x66\x46\x2b\x7d\x1b\xa4\x8a\x6b\x1d\xb6\x12\xa9\xf1\x68\x98\x9a\x7d\x32\x71\x5e\x71\x0b\xf4\x5b\xa0\xff\x69\xa0\x4f\x27\x94\x96\x55\xda\x73\xe8\x86\x1a\xe4\x97\x35\xda\xdb\x81\x8b\x64\x24\xb9\x2b\x00\x30\x96\x89\x51\x13\x60\x92\xe7\xfd\xcf\x04\xe0\x5b\x95\x0b\x18\xa5\xaa\x52\x82\xf0\x26\x4c\x6c\x24\xcd\x95\x57\x7a\x60\xfa\xe2\xba\x2c\x68\x71\xdf\x14\x78\xb1\x07\x8d\xa6\xef\x28\x5d\x8c\x97\x7a\xe2\x8d\x72\x75\xf2\x48\x68\xd2\x0b\xcb\x41\xa9\x21\xff\xd0\xcb\x63\xd4\xe2\x21\x1e\xf7\x78\xa9\x0a\x12\x51\xcb\x80\x9f\x9b\x0b\xcb\x45\x6c\x81\x7f\x83\x41\x72\x43\x80\x5f\x91\x12\x14\xdf\x30\x87\x5d\x56\x5d\xa4\x88\xf6\xed\x15\xa7\xf3\x54\xd1\x71\x75\xb4\x3c\x43\x1f\xbd\xac\x62\x39\xc3\x35\xcb\xe4\x14\xe9\x97\xe6\x29\xba\xaf\xb5\x30\x92\x3b\xe7\x93\xbc\x71\xbe\x87\x11\x71\x86\xe6\x9a\x54\xcb\xbe\x16\x65\x95\x4c\x68\x1b\xb8\xc6\x27\x1c\xf1\xab\x96\x49\x55\x8b\x9d\xcd\x57\xda\x09\x39\xb1\xf7\xb3\x5a\x3b\x6f\x4b\xba\x48\xbe\xd7\xc6\x04\xc9\x54\x2d\xf8\x51\x6a\xad\x0d\xbb\xc3\x7c\xe8\x17\xc2\x5f\x20\xcc\xb2\x65\x05\xf9\x24\x55\x8c\xce\xab\x0b\x42\xeb\xc2\x14\x94\xab\x45\xd6\xe1\x37\x8f\xac\xbb\xc1\x48\xba\xb8\x0a\xa8\x03\x4f\x43\x3c\x9e\x8e\x51\xb8\xa1\x30\xfc\x3e\x10\x2f\xf5\xae\x19\xf0\xc6\x9c\xc1\xdc\xca\x97\x5b\x6a\xf3\x6a\x06\x9e\x6c\xdc\x11\xa4\x6a\x0d\x55\xeb\x91\x93\x1b\xfe\x5f\x6f\xa0\x6a\xa9\xee\x91\x1a\xa0\x3d\x9f\x71\x2a\x61\x2e\x67\x82\xe4\x8a\xb7\x48\x90\x1e\xc4\x3b\x24\xc8\xfc\x53\xf1\x3e\x7d\xd2\x93\x8a\x99\xd0\x3d\x5f\x6d\xe2\xe1\x9e\xb4\x92\xca\xcc\xc4\x0d\xd9\xd9\x87\xa7\xb7\x1c\xcf\x8b\xdb\xe1\x4f\x20\x0d\x46\x4d\xb1\x89\x48\x1b\x7e\x17\x69\x61\x74\x00\x14\xe2\xb0\x8d\x91\xca\x9f\xc7\xe8\x62\x24\x97\xf2\x18\x69\x00\x77\xa9\x3c\x46\x2a\xc1\x48\xba\x27\x18\x19\x55\xb2\x06\x33\xd3\x02\x88\xa9\x79\x3a\x7b\xbb\xf5\x71\x81\x86\x1b\x9e\x48\x3a\x9e\xce\xe7\x8c\xda\xc6\x30\x49\xc2\x42\x4e\xa5\xc9\x73\x9f\xbc\x1e\x09\x03\x46\x26\x25\xa5\xde\x55\x73\xe1\x51\xb0\xac\x47\xc1\xb2\xbf\x15\x05\x3b\xea\x82\x70\x26\x4f\x92\xad\xab\x27\x8c\x6e\x0b\x5b\xca\xb5\xa5\x5c\x6f\x42\xb9\x08\x89\xa3\x9f\x0b\xa3\x43\xd9\x45\xb5\x81\x2a\xf5\x85\x3e\x3b\x24\x2f\x8e\x90\x20\x79\x9f\xf3\x3c\x77\x78\x71\x11\x8f\xc8\xc8\xe9\x89\x2d\x23\xad\x77\xe3\x0a\xd1\x31\x3c\x9f\xf7\x53\x01\x99\x74\x2d\x8c\x3a\xcd\x3e\x46\xa3\x52\x0b\xce\x48\x6d\x90\xbd\x6e\xca\x53\x8c\x23\x7c\x70\x4d\xc8\xb0\x32\xda\x58\xe7\xaf\xe8\x52\xf3\x56\x82\x6c\x59\x5b\xf0\x59\xb7\x8e\x31\x61\x58\xb8\xb0\xfa\x9b\x93\x88\xef\xfd\x54\x8c\xd5\x64\x86\x93\x75\xab\x18\x67\x9f\x7a\x6e\x54\x78\x24\x22\xa9\x5b\xa2\xb9\xe9\xb0\xb8\x21\x50\x2f\x27\xf4\x4e\x75\xda\xa7\x36\x9d\xe1\xd0\xd7\x15\xbb\xcb\x38\xf4\x2d\xe3\xde\x4c\xa4\x37\xf5\xe7\x93\x46\x24\x00\xd5\x0f\xb3\x42\xa5\xe1\xc0\xd7\x0a\x4a\xc9\xd9\xb1\xa9\x33\xd3\xdf\x52\x11\x8d\xc5\xd3\xb3\x9a\x3c\xb5\x8e\x09\x8a\x4d\xcb\x0c\x3c\xf2\x91\x1d\x2e\x51\x2a\x4b\x62\x45\x42\xeb\x46\xff\x46\xb7\xad\x81\xd5\x63\xf5\x85\x5a\x7a\x4f\x5d\xd2\x99\xaf\xa5\x57\x16\x6a\xe9\x3d\x25\xfc\xb2\x1a\xfb\x8c\x57\xb2\x41\xea\x20\xfd\xd2\xea\x20\xbb\x6c\x62\x24\xdd\x0f\x27\x89\x9d\x7c\xc5\x25\xd1\xb5\xa9\x3e\xce\x31\x46\x8a\x5e\xc1\x33\xdd\xbf\xb5\x96\x5f\xfd\x7c\x22\x42\xdc\x92\x03\xd5\xe8\x46\xcc\xf9\xfc\xfe\xc0\x6c\x98\x4d\xcc\x64\x39\xce\x4a\xd5\xad\x1b\x83\xf2\x1a\xc9\xb1\x08\x93\xa0\x58\x72\x22\xff\xab\xb4\x62\x52\xbc\x57\xdc\x98\x40\xd2\xd9\x69\xbf\xa6\x88\x35\xef\x9f\x1c\x06\x73\xcf\x2b\x3a\xd0\x41\xd8\x92\xa0\x35\x0a\x32\xd3\xbd\x3a\x9b\xb1\x64\x32\x81\x6d\x9e\xa9\x0d\x66\x33\x26\x08\x99\x63\xa9\xdd\x5b\xab\xd7\xdf\x18\x09\x23\xcc\x23\x50\x00\x8e\xa1\xa4\x6f\xf9\xe8\x8f\xb2\xec\x36\x65\x81\x27\xca\x8d\x34\x68\xaf\x67\x98\x26\x6b\x54\x13\x48\x3f\x8a\x28\x0c\xe2\x69\xd1\x54\x58\x61\x14\x2d\x46\xb0\xec\xc5\x3e\x4c\x59\x3a\x26\x55\x50\xaf\xbb\x31\x41\x4a\x5b\xb5\x12\x72\xf4\x92\xff\x03\x1b\x14\x23\xc5\x6e\xf5\xd0\x49\xbd\x52\x42\xd2\xd7\x16\x46\xd2\xf1\x54\xb2\x19\x92\x3d\xc6\x88\x0c\x1b\xad\x8d\x55\x34\xcd\x5c\x25\x24\x3e\xeb\x29\xae\x93\xdf\x02\xc8\xeb\x03\x88\x42\xe2\x3c\x51\xc3\xb0\xa9\xa9\x27\xfc\xe7\x99\x40\xee\x40\xca\x7c\x87\x82\x7a\xf3\x37\x60\xd0\x7b\x05\x78\x2e\xa2\x0c\x54\xd8\xa7\x2a\x45\xef\x97\x7a\x09\x2e\x8a\xc0\x9d\x60\x13\xfb\x99\x06\x39\x0b\xc8\x83\x69\x78\xeb\xbe\xe6\x73\xb4\xf7\x03\x8c\x5a\xed\xc9\x86\xd7\xa9\x57\x88\x77\x8f\xb9\x89\xa5\xcd\x57\x36\x34\x6e\x69\xcc\xa6\xdf\x69\x31\x08\x25\x1c\xc1\x2e\x7b\x23\x6a\x5a\x0f\xc3\xee\xa4\x3e\x00\xf1\x22\xc7\xb2\x26\xe6\xe3\x3a\x81\x00\xa8\x66\xa8\x6d\x56\xa8\x25\xf7\xb6\xaa\x1b\xf8\xfa\x2b\x58\xc6\xfd\xda\x7f\x89\x6c\xe9\x97\xe3\xdb\x8e\x65\x5b\xb1\xb4\x03\x11\x6f\x10\xe6\xdb\x98\xe0\x0b\x92\x85\x42\x66\xe8\xd6\xf0\x9a\x7d\xb4\x88\x7a\x5f\x99\x9d\x78\xa0\xdf\xc3\x88\xf0\xba\x7e\xb6\xdc\x5c\xa7\xf6\x80\xd4\x6e\x60\x65\x3c\x2e\x14\x05\xb7\x11\xe4\x9b\x8b\xc5\x48\x82\x11\xb8\x32\x74\xd3\xdc\x6c\x67\xf6\x67\xb3\x71\xc8\x27\x55\x3f\x7a\xb6\x92\xff\xff\xd8\xfb\x17\xee\xb6\x71\x64\x0f\x10\xff\x2a\x8a\xfe\xf7\xef\x96\xd6\xb2\x9a\xd4\x5b\x76\xab\xb3\x8e\xed\x3c\xed\xd8\x1d\xdb\x49\x77\xa7\xb3\x5e\x88\x04\x25\xc4\x14\x20\x83\xa4\x6d\x25\xf2\x77\xdf\x83\xc2\x9b\x94\x93\xcc\xdc\xb9\x73\x67\xcf\xf6\xe9\x99\x58\xf8\xa1\xf0\x2e\x14\x0a\x85\x02\x18\x7c\xe7\x5d\x8e\x5e\x10\xd4\x3a\xd0\x35\xc8\xf7\x29\xb7\xee\x16\xb3\x97\xc8\xdc\x26\xf9\xd6\x3d\xdc\xbf\xb7\x9f\xff\x01\xac\xfe\x9f\x32\xa9\x46\xee\xda\xf2\x9e\xa4\x94\x14\xd9\xfa\xc3\xc9\x45\xed\x8d\x52\xb1\x3d\x3b\xb4\xb3\x05\x65\xb5\x9d\xf0\x8b\x73\x4d\xd5\x58\xa2\x9d\x67\x4b\x3a\x3d\x30\x33\xf7\x06\xa5\xff\x86\xdd\xf2\x7f\xfd\x4e\xbf\x82\xfd\x73\xff\xad\x77\x3a\xe3\x6e\xcc\x6a\x83\x57\xc7\x27\x6d\x56\x0b\x4f\x99\xa8\xe5\x97\x2f\x41\xed\x24\x89\x83\x5a\x67\xfc\x21\xa8\x75\x49\xc5\x80\x7d\xfc\x3e\xa8\x85\xf9\xec\x7f\xc4\x80\xfd\x3f\xb2\x07\x7d\x56\x19\xfa\x11\x61\x7f\xcf\x8d\x7f\xe1\xdc\xf0\x6f\x4c\xbe\x67\xe9\x8c\xc1\x7b\x4f\x95\x63\xb4\xce\xfb\xf6\xd1\xbf\xf8\x18\x2d\x7c\x75\x23\x32\x5d\x66\xc7\xe2\xcf\xdf\x47\x69\xdf\x53\x94\xc7\xaf\x2b\x1f\xc9\xfe\x80\x78\x86\xee\x40\x96\x55\x5e\xe8\x52\xf2\xcb\x33\xa1\x69\xcb\x41\xb7\xd7\xfd\x5f\x37\x1f\x7c\xd3\xb0\x10\xe5\x31\xab\x85\xc7\xbf\xb3\xc7\x35\x0b\xf0\x55\x81\x5f\x83\x2f\xab\xa0\xf6\xf2\xc3\x59\x50\xeb\xbf\x3a\xa9\xa8\x17\xe0\xc4\xbc\x38\xd6\xcf\x7d\xf5\x8d\xd3\x25\xdd\xd7\x39\x6d\x70\x0a\x25\x87\xbf\x2b\x9f\x12\xcb\x19\xf6\xb6\x9b\x81\xbc\xc7\x2d\xfd\x1f\xda\x29\xa5\xc8\xfe\xbd\xd7\xdc\x1f\xbb\xed\xf3\xb7\x42\xf3\xff\xa2\x92\xbe\xad\xd0\xf8\x5f\x3f\x40\x4b\xc6\xd9\x97\xf9\x0a\xaf\xb7\x83\x4e\x27\xf8\xe6\x23\x6c\xd7\xff\xcc\x13\x6c\x3f\x7c\xe9\xed\xbf\xf3\x06\xdb\x75\x0d\x5f\xb2\xeb\x1a\x17\xc2\xbe\xf3\xce\xf5\xd6\x1c\x2d\x82\x5a\x78\x3b\x46\xff\xae\x2b\x07\x6f\x82\xef\x1e\xa7\xfe\xbd\x87\xfe\xcf\x9d\x1d\x43\xf9\x4a\xfb\xcb\xf3\x8b\xb5\xf8\x3f\x0a\xd6\xc1\xba\xde\xaa\xbf\xa2\x31\x41\xf4\xe7\x83\x39\x9a\xb1\x4c\xe9\x37\xfd\xda\x76\x30\x58\xef\xf4\xde\x0a\xdd\xa6\x1f\xd4\x76\x06\x30\x0f\xd6\x3b\x9d\x7b\x96\x09\xb0\xbb\xff\xe2\xf8\x6d\xfb\x68\xdd\x0d\x70\xc7\xc9\x83\x45\x2c\x5b\x6f\x07\x83\x6e\xb0\xde\x19\x14\xeb\x60\xbd\xee\x8f\x07\x36\xfe\x0d\xe6\xb3\x02\xa7\x98\xae\x77\x82\x00\xd4\x27\xad\x32\xad\x77\x4e\x5e\xc0\xb7\x01\x03\x4b\x7d\x82\xe6\x58\xd5\xa7\xb7\xde\xe9\x3e\x6f\x9f\x28\xef\x96\xf5\x4e\x67\x75\x2a\xc2\xeb\xe1\x18\xee\x1d\x99\x04\x69\x4c\x6e\x71\x06\x37\x8f\x40\x39\xeb\x9d\x9b\xfc\x59\x3a\x3b\x5f\x77\xfb\xd0\x05\x86\xbe\xe0\x24\x17\x7b\x1e\x55\x8a\x72\x8c\x3a\x75\x75\x39\xb9\xec\xde\x33\x7e\x5a\xeb\xf6\x0a\x7a\x5a\x0b\x7b\x82\xd3\x3b\xd7\x3c\x00\xb3\xfb\x3a\xf4\xf2\x7c\x87\x0b\x4a\xd4\xd3\x69\xba\xde\xbf\xd9\x7a\x2f\x0e\x0f\x9f\xb7\x7f\x5b\x8f\xa4\x76\x79\x86\x22\x92\x90\xe8\xe7\x37\x77\xe8\x33\x4a\x31\xa1\xeb\xed\x30\xac\x6d\x87\xa2\x6f\xc6\xb5\x9d\xb0\x53\xdb\x16\x9d\x3e\x0d\x6a\x3b\x28\xa8\xed\x8c\x83\x5a\x14\xd4\x76\x22\xa8\x57\xd0\xed\xad\x77\xc2\xeb\x94\x06\x35\x74\xbd\x0c\x6a\x03\x78\x4a\xa7\xc3\x57\x41\xed\x03\xa2\xc1\x3a\xec\x41\xd7\x9c\x1c\x5d\xac\x4f\x84\xa8\xfb\x8f\xb4\x93\xfc\x2b\xbe\x60\x0a\x9e\xb6\xb3\x93\x93\xbf\x2f\x86\xfc\x2d\x2d\xff\x75\x9d\x21\xa6\xce\xf9\xc5\x5a\xfc\x7f\xa8\x04\xe5\xc9\xf9\xc5\xf0\xe4\x10\xb0\xda\xc9\xe1\x45\xed\xe4\xc3\x45\xed\xe4\x4c\xc4\xd7\x06\xea\x7f\xfa\xd6\xc7\xff\xfa\xc4\xaa\x4c\xb3\x41\xc8\x8d\x7f\x93\xf6\x74\x3a\x9f\xbd\x0d\x6a\xa3\xfb\x4e\x50\x23\xf7\x41\xed\xb7\xbb\x1f\xf4\x94\xb2\xaf\xd5\x6c\x88\xcd\xc2\xa0\x16\xbe\xff\x22\xbf\x60\x16\x3e\xdb\xf4\xba\xcd\x23\x29\xbf\x53\xd6\x8f\xa6\xed\x09\x31\x98\x4e\xf5\x2f\xbf\xc5\xce\xaf\x12\xdd\x7f\x27\xc5\xff\x44\x69\xef\x84\x40\xfc\x32\x0d\x6a\xa7\xcb\xf2\x8f\x6f\x44\x7d\xe3\xc7\x3f\x94\xea\x3f\xb5\x08\x67\xcd\x3c\x98\xa3\x7c\x8e\x16\xeb\xed\xb0\x13\xf6\xc5\x3a\xd9\x13\xff\x76\x7b\xfd\xf5\x4e\x94\xd4\x76\xa2\xd7\xb5\x9d\xf8\xf5\xff\xbe\x43\xc0\x7a\xe7\xc3\xcd\x7e\x52\x0b\x51\x8c\x13\x38\x96\x84\xed\xef\xbb\xca\xf7\x1f\x7e\xe4\xc7\xbf\x22\x15\x88\x3b\x78\xb3\x53\xde\x46\xd9\xf0\xab\xf4\x1d\x8b\x4d\xbf\xfe\xf1\xb4\xff\x9d\xd2\x08\x0b\x2a\x5f\xb4\xf8\xf6\xaf\xd2\xa2\xff\xef\x48\x4b\xd8\xbf\xb3\xb4\x6f\xa5\x5d\x0f\x02\x77\xa2\xec\x2f\x89\xbc\x9c\xb1\x13\x86\x62\x7b\x1b\x86\xb0\xbd\xdd\x0e\x7b\x62\xbe\xac\xa7\x37\xed\xcb\xda\xb4\xa8\x4d\x83\x9a\xd0\x31\x71\x50\xdb\x89\xb5\x11\xf3\x9f\x7e\x94\xe3\xf0\xe4\xbe\xdd\xab\x85\xab\x0f\x41\xb7\xdd\xab\x75\xf8\xbb\x69\x51\x0b\x93\x44\xd5\xf4\xe0\x55\x50\xdb\xff\xed\xff\xf3\xc3\xd4\x1d\x82\x86\xae\xc7\xe9\x19\x2b\x66\x88\xd0\x5b\x92\xa6\x78\xad\xf7\x00\xdb\x61\xb8\xd6\xba\xff\xce\x14\xf4\x8b\xce\x7a\x27\x1c\x7c\x58\x05\xb5\xe1\xc1\xdb\xa0\xd6\x39\xf9\x6d\x09\x27\x39\x3d\x4f\x36\x16\xc5\xb5\xce\x43\xa7\x5f\x6b\x55\x00\xdf\xad\x82\x1a\x82\xcf\xc7\xbc\xff\x5d\xfc\x8a\x83\x75\x6f\xec\xd5\xe5\x28\x41\xb9\xda\x7b\xc1\x86\x44\x6c\x42\xe2\xf6\xac\x06\x5b\x91\xe8\x31\x3f\xab\xf5\x4e\x27\x1d\x53\x41\xd7\x39\xff\x12\x89\xbf\x72\x49\x66\x62\x71\x0e\x8c\x93\x35\x1c\x52\x26\xcf\xfe\x01\x05\xc0\x38\x68\xc3\xcd\xbc\xb7\x71\x50\xdb\xa7\xc1\x7a\x30\xf0\xeb\x4c\x63\xcc\xa7\x05\x5f\xad\xc5\xc6\x69\x07\xea\xdd\x5d\x47\x81\xe0\x6c\xc5\xd2\x6b\xfa\x2a\x0a\x6a\xcf\x86\xbf\x07\xeb\xd0\x49\xf9\x1c\x5d\x23\x96\xb0\xb5\x4e\x63\x12\xac\xc3\x17\x09\x0d\xd6\xbd\x91\x5b\xce\x73\xf2\x99\xa8\xae\xe9\x00\xf9\xce\xf4\xa2\xfd\x4a\x74\x8b\x2e\xe6\xbf\x6b\xe3\x9d\x5e\x7e\x11\x39\x76\x17\xa3\xb7\xe2\xaf\xb9\x08\x28\x96\x0f\xfa\x3a\x52\xe6\x57\x16\x38\xdf\xff\x81\x2f\x91\x99\x4f\x92\xfd\x16\x04\xb5\x7b\xd1\x55\xe7\x6f\x83\x5a\x21\xd8\xef\xfc\x44\xfd\x78\xbf\x1f\xd4\xb2\x60\xd3\x8f\x4e\xc0\x82\xda\x32\x52\x3f\xaa\xc8\x37\x7e\x7c\x23\x9f\xef\xa4\xfa\xa7\x8a\x58\x8f\x7c\x76\x7f\x81\x52\xb4\x34\xd6\x8b\x9d\xa0\x5f\xdb\x09\x06\xeb\xfe\x87\x36\xab\xf5\x95\x56\x0e\x2b\x71\xb8\x7a\x7f\x1e\xb6\xf7\x6b\x9d\xf8\xe2\x8b\xf8\x3b\x13\x9c\xc4\xbf\x04\xeb\x4e\xdf\xe3\xa4\x17\x68\x31\x25\x98\xab\xdc\xc6\xeb\xd1\xef\xed\x93\xda\x58\xed\xe0\x3f\xb3\x24\x68\x47\xeb\xb0\xd3\x77\x53\x14\x28\x46\x69\x84\x28\x4a\xf5\xac\x59\xef\xa0\xc3\xf6\x89\x9a\xb4\x90\x6e\x75\xd8\x3e\xd1\x8e\x0c\x4e\xc2\xc5\xfa\x05\xbc\xbe\x35\xae\xbd\x38\xbc\xa8\x1d\xcc\xc5\x3e\xdd\xce\x78\xb1\xf3\x87\x59\x5f\xfa\xaf\xbb\xde\x09\x47\x9f\xdf\x04\xb5\xc1\xf2\x59\x50\xdb\x9f\x3f\x0b\x6a\xdd\xdf\x8e\x83\xda\xac\xb3\x0c\x6a\xdd\xe5\x38\xac\x7d\x38\xfd\x5d\xfa\x40\x7d\x89\xf5\xa7\x86\x97\xf2\x47\xff\x3e\x96\xee\x51\xfd\xec\x6d\x50\xfb\x32\x0d\x85\x52\xf2\x3b\x5c\x41\xbd\x3c\x9e\x82\x19\xd5\xad\xe3\x4b\x46\x59\x5a\xa4\xc5\xfa\xe5\xf9\x45\xed\xe5\xe1\x45\xed\xe5\x87\x8b\xda\xcb\xb3\x8b\x1a\x58\x91\x8a\xda\x58\xff\x4f\xd5\xb4\x1b\xf4\xd6\x3b\x61\x3e\x3f\x2e\x6a\xa3\xfb\xa0\x96\xe2\x24\xa8\x8d\xee\x3e\x14\x35\xb2\x5f\xd4\x7a\x83\x25\x48\x3e\xcf\xfc\x41\x38\xc9\xc9\x02\xe5\x64\xbd\x13\x06\xbd\x40\xaf\x4f\x6b\x74\xa4\xd6\x24\x35\x79\xd1\x91\x98\xbc\xd7\xeb\x7e\x08\x56\x27\x93\x9e\x65\x1c\x61\x69\x3b\x01\x99\x19\x58\xbb\xc9\x58\xd9\x4e\x22\x59\xb7\x10\x6e\xad\x74\xf0\xdd\x17\x21\xf8\x0e\x82\xda\xcb\x67\x2b\x65\x40\x11\x72\xb0\xf6\xe1\xf4\x4d\x50\x0b\xa7\xf1\x17\x10\x2f\x6e\x21\x27\xe8\x73\xc1\xd9\x8f\x16\xf2\x48\x19\x83\x77\x42\xec\x75\x8a\x45\xb0\xee\x8c\x3c\x9e\x3b\x41\xfc\xa6\xc0\x19\xd2\x3c\x3c\xee\x06\xeb\x31\xa9\x8d\x0b\xcd\x3d\xf8\xc5\x7a\xe4\xd7\xe8\x0c\xcd\xd8\x95\xf8\x07\x92\x9c\x9f\x5f\xac\xa7\x8b\xf6\x49\x4d\x33\x1c\x3d\x3c\x79\xd6\x8e\x44\x5f\xbb\x89\xde\xa2\x82\x17\x9a\x47\xbb\x7a\x91\x11\xed\x18\xb6\x8f\x6a\x3b\xd3\x42\xb6\x46\xc9\x78\xc1\x65\xbf\xc7\x54\x44\xfd\x76\x40\x9f\xb5\x8f\x6a\xc3\xc5\x4d\x51\x0b\x53\x3a\x2d\xd6\x61\xe0\xb5\xe0\x2d\x29\xb0\x10\xa1\x60\x3e\x57\x9a\xc6\x7a\x7a\x2d\x75\x0b\x69\x3d\x7c\x93\x9c\x1c\xd5\xc2\xe1\x2a\x40\xeb\xb0\xe3\x57\x8b\xf1\x84\xa5\x62\xcd\x0a\x41\xaa\x42\xd5\xc2\x0e\xfc\xab\x17\xa0\x48\x56\x2f\x2a\xbc\x65\xe8\x47\xdf\x59\x79\x33\x9b\x46\xb5\x0f\x41\xf8\x42\x1d\x42\x89\x7f\xc7\xaf\xa3\xe2\xdf\x63\xdb\xf9\xd7\x9a\x93\x84\xc0\xea\x79\xbd\x57\x2c\x30\x2a\xad\xd7\x7d\x29\x7d\xbc\xf5\x5a\xae\xd0\x22\xa6\x73\x74\x73\x22\xfe\xde\x0b\x09\x71\xf6\x2c\xa8\xad\x68\x50\x7b\x89\xcf\x60\x05\x59\x8f\x7d\xe6\x3c\x23\x79\x84\x08\xa7\xeb\x9d\x60\x24\x06\x36\x18\xad\x47\x45\x6d\x24\x97\xc8\xd1\xfb\xeb\x62\xdd\x1f\xb8\xe4\x6c\x4e\x97\x98\xb8\x73\xc5\x9d\x27\x6a\x8e\x7c\x63\x1a\xae\xbb\x3d\xaf\xfc\x77\x88\xb3\x9c\xd1\x19\x12\xf2\x01\x2a\x30\xee\xca\x17\xd1\x91\x15\x3c\x8f\x6f\xc1\xd2\xd5\x87\xa2\xf6\xea\x18\xb6\x41\x45\xed\x94\x16\xa5\x1f\xa0\x9d\x6e\x8e\xfa\xc6\x8f\x6f\xa7\x5a\x87\x5d\xaf\x09\x17\x68\x4e\x72\xa2\xf4\xf0\x60\x3d\xfe\xd0\x9e\xc9\x6a\xcb\xc9\x1d\xb6\x5f\x95\x95\xb8\x0b\xd1\xe0\x1c\x2d\x0b\xb1\xc5\xed\x88\x89\xd0\x05\xa1\xb8\x13\x5d\x0b\x45\x43\x8b\x45\x33\xb2\x21\x7a\x16\x5c\xd7\x3a\xb4\x1f\x5f\xcb\xb7\xa9\x40\x31\x00\x35\xe0\xb7\x50\xfe\xf8\xf2\xe1\xad\x5c\x40\x87\x6a\xc1\x3b\xbf\x18\x9d\x1d\x5e\xac\xcf\xce\x2f\x6a\x67\x87\x17\xb5\xb3\x0f\x17\xb5\xb3\xb3\x8b\xf5\x28\xa8\x0d\xd5\xff\xfe\x93\x2d\x5a\x37\x8f\x59\xb4\xc2\xa0\x46\x56\x7f\x5b\xb4\xfe\xb6\x68\xfd\xe7\x17\x51\x6f\xd5\x3f\x1c\x5d\x98\xb7\xd8\xd7\xfa\x43\x0f\xff\x7b\x33\x6b\x7e\xf8\xec\xef\xa3\x94\xbf\x8f\x52\xfe\x85\x47\x29\x9f\x5a\xf5\x94\xd0\xeb\xac\xbe\xfb\xb1\xbe\x9f\x70\x12\xa1\x9f\xf7\xa7\x24\xfe\x8c\xe8\x5a\x05\x9f\xa1\x05\xba\x66\xf5\xd6\xa3\xd1\xf4\x73\x91\x3e\x1a\x7d\xc0\x28\xba\xe6\xab\x47\xe3\x0f\xd1\x35\xe2\x8f\xc6\x3e\xe7\x18\xe7\xec\x8e\x3e\x4a\x70\xcc\x16\xf8\xd1\xc8\xb7\xac\x40\xd7\xd1\x9c\xe5\xf9\xa3\x24\xa7\x05\x9a\xa1\x98\x15\x33\x56\x3c\x4a\x73\x41\x16\xd3\xe2\x3a\xdf\x44\x90\xa7\x88\xe6\x24\xfa\xf9\x3c\xbf\x7a\x89\x53\x4c\x91\xa5\x39\x40\x84\xb3\xf5\xd1\x6c\xb5\x74\x4a\x7f\xcd\xe6\x88\x52\x9c\x4d\x0b\x3e\xd3\xd9\x9f\xa0\x0c\xf3\xe2\x3b\x34\x53\x34\x45\xd4\x69\xe9\x31\x6c\xa9\xed\x10\xcc\x0a\xf2\x58\x24\x47\x5f\xbe\x20\xb0\x5c\x3d\x42\x71\xc8\x0a\x94\xa2\x47\x22\xdf\x10\x9a\xcd\x51\xf6\x58\xf4\x31\x99\x72\xfc\xad\xcc\x8f\x0b\x44\xe3\xc7\x52\x9f\xa0\x14\x4d\xd9\x23\x91\x6f\x09\x5a\xe0\xd5\x23\x91\x67\x8c\xe7\x6c\xe7\x2d\xbb\x75\x52\x9f\xa0\x65\x91\x33\xd3\x6e\x31\x34\x2b\x8e\x1f\x8d\x2f\x3e\x17\x8b\x69\xc1\xd1\x63\x04\x2f\xd0\x94\x71\x46\x1f\xcd\xe0\x25\xe2\xe8\xf1\xec\xdf\x90\x19\x4a\xc9\x63\xb1\xc7\xc5\xb4\x58\x4c\x51\x36\xff\x06\x45\x86\xae\x9d\xba\xbd\x15\xec\x34\x25\x3a\x7a\x3f\x8e\x49\x76\xb5\x2f\xd8\xe2\x71\x9a\x6c\x81\xf8\x37\xa3\xf1\x37\xa2\x0f\x11\xbf\xc2\xd9\xd5\x39\x4a\x11\x5a\x3c\x4e\xf5\x99\x4c\x59\x91\x93\x47\x09\xde\xa0\xc5\xd2\xe3\xae\x52\xfc\x09\x9b\xa1\x98\x64\xf3\xa2\x4a\xa1\xbc\x36\xf6\x69\x8e\x28\xa2\x88\x13\x77\xb0\x4b\x44\x07\x6c\xc1\xf8\xe3\xd1\x27\x68\xc5\xf2\xdc\x19\xac\x0b\x4e\x96\x2c\x25\xeb\x63\x32\x5d\x41\xe5\x16\x58\xf5\x2b\xba\x5e\x9b\x40\x7e\x5d\x89\xbb\x3c\xff\x79\x3f\xc5\x45\x4e\x10\x75\xa3\x68\x34\x67\x1c\xcd\xb0\x8c\x47\x99\x9f\x90\xcf\x30\xcd\x09\x15\x4c\x87\x29\xcb\xae\xf6\x09\xc7\x99\x29\xc6\x05\x37\xa6\x3a\x40\x39\x5a\x20\x1e\xa1\xf5\x86\x38\xb6\x60\xf1\x3b\x72\x8b\x62\x74\x4b\x36\x17\x5a\x4d\x6e\x90\xcd\xf4\x8c\xc7\x6c\xea\x50\xcb\xf0\x0f\xd1\xbe\x63\x19\xe2\x84\x6d\xa4\x7d\x5d\x7c\x2e\x56\x86\x12\x42\x1b\xe9\x4e\x30\x8d\xd9\x17\x9b\xa7\x0a\xbb\xb4\x39\xb9\x66\xd7\x42\x00\xdb\x2a\xa2\xf4\xea\x25\xe2\x53\x56\x70\x87\xf0\x60\x4e\x22\x34\x63\x62\x54\x0e\x30\xcd\x39\x4a\xdd\xc8\x82\xa3\x08\x31\xa7\x53\x0b\xaf\x95\xe5\xf8\x37\x1c\xa5\x98\xc6\xe4\xf3\xf5\x37\x88\x8e\xd9\x1d\xe6\x57\x67\x9c\xd0\xc8\x1b\xcd\x43\x4c\x6f\x31\x37\x64\xe7\x73\xb2\xe4\x2c\xba\xae\x52\xbc\x45\xb7\xe8\x33\xab\xe2\x97\xe7\x3f\x9f\xb0\x82\xe6\x88\x50\x2f\x32\xe7\x8c\xe4\x10\x4b\xa2\x39\x99\x79\x6c\x79\x14\x2f\x18\xcd\x19\x5d\x1f\x20\x8a\x62\xb4\x29\x83\xe7\x8c\xe7\x57\x1f\xd0\x8a\x62\x53\x37\x39\x67\xcc\x5f\x31\x4f\xb2\x1f\x4a\xf1\x0d\xca\xcb\xf3\x9f\x8f\x50\x96\xef\x28\x4a\x87\xe8\x25\x4a\x49\x82\xee\x75\x15\xf5\x92\xea\x51\xdc\x22\x8a\xd6\x07\xfe\xe8\xe8\x5a\xbe\xa1\xec\xde\x0e\x11\x65\xf7\x57\xaf\xde\x3e\x46\x76\x79\xae\xc3\x3b\xe7\x39\xe2\xd7\xd8\x21\x7c\x8d\x16\x88\x44\x68\xad\xfe\x3a\x31\x6f\x30\xcd\x8b\xe8\x7a\xf5\xf3\x31\x2b\x48\x26\xcf\x80\xec\x70\x6b\xc8\x49\x70\x2c\x66\x33\x9d\xe1\x14\x67\xa2\x48\x65\x34\xf8\x2e\xc1\xce\x5b\x7c\xe7\x10\x9d\x20\x8a\x8a\x6c\x2d\xd6\x6f\x92\xfe\xfc\x01\x67\xb9\x17\xf9\x05\x89\x9e\x5a\x9f\xe0\x7b\x12\xb1\x9f\x9f\xa1\xcf\xe8\xdc\x63\x7d\x19\x71\x75\x40\xf2\x95\x26\x7a\x81\x29\xf6\xa7\xc0\x5b\x7c\x77\xf5\x07\xe3\xd7\x7a\x7c\x30\x77\x79\xe3\xad\x58\xff\xe6\x48\x57\xe1\x10\x2b\xc0\x21\x39\x43\x14\x2d\x5c\xc1\xb2\x5a\x78\x1c\x78\x36\x67\x98\x12\xe8\xf9\x7d\x4e\xbe\x30\x6f\xe8\xc5\x22\x7e\xc5\x92\xab\xf3\x25\x22\x76\x2e\xef\x0b\x65\x26\x4d\x7f\x84\x30\x27\xb3\xe2\xfb\x74\x87\x6c\x41\xa8\x3f\xa4\x9b\x09\x5f\x70\x2c\x78\xf0\xfb\x74\x05\x8a\x71\xca\x8a\x25\xfe\x2e\xe9\x09\xe2\x64\xc6\xf2\xef\xd3\x31\x9a\x67\x98\x73\xf4\x7d\xd2\xf3\xfc\xea\x19\xe2\xf9\x1c\xa7\x78\xb1\xfa\x11\xea\x37\x24\xcf\xb3\x1f\x21\x3c\x2e\x22\xf2\xfd\xd6\x9f\xe7\x57\x17\x73\xb6\x40\x3f\x94\xe5\x7b\x21\x07\xe9\xf7\x1b\x75\x21\xf4\xb9\x1f\x18\xf3\xf7\x84\xcf\x3c\xf9\xf5\x0e\xcf\x88\x10\x0e\x52\x7a\x9c\x8b\x95\x37\x8f\xe6\xf8\xce\xe3\xc2\x77\x84\x5d\x3d\xe3\x88\x46\x56\x4e\x83\x02\x79\xb5\x1f\x71\xbc\x99\x4e\xf1\x7c\x89\xe0\x5c\xc8\x26\xb1\xa0\x1c\xcc\x49\x8a\xc5\xe6\x26\x27\x14\xd3\xdc\x9b\x54\xe7\x88\x5d\x9d\xa1\x22\x35\x99\x88\x99\xe5\xc6\xe7\x57\xaf\xd9\x9c\x66\xba\xd2\x6f\xf1\x5d\xc2\x0a\x1a\xa7\x88\xc6\x0e\xd9\x05\xf9\x5c\x08\xb9\x67\x84\x39\xcd\xca\xec\x59\x26\x11\xd5\x43\x57\xaf\x32\x34\xc5\xe9\x06\x32\x47\x56\xbc\x65\x3c\x77\x1b\x76\x21\x66\x76\xce\x3c\x7e\xe4\xd8\x6b\x96\x26\x51\xb5\xae\x8a\x8b\xf7\xa2\xe3\x0a\xb1\x56\x29\x92\xaa\xe0\xfb\x30\x27\x39\x9e\x33\x9e\x61\x4d\xf3\x47\x71\xcd\xdc\x4c\x3e\x10\x4a\xc9\x12\xcf\x74\xbc\xb3\x6c\x67\x44\x28\xad\xf3\x19\x9a\xa2\x7c\xad\x43\xd7\x73\x34\x45\xb1\x8e\x16\x3b\xa1\x6b\x76\x2d\x63\xcf\xe6\x94\x2d\xae\xce\x30\x9d\x6f\x8c\x7e\x4f\x84\xbe\xa1\x76\x55\x02\x38\x9c\xa3\x6b\x24\xe3\x0e\x51\x24\xe5\x05\x04\x8a\x29\x22\x12\x3f\x29\xb2\x48\x4e\x51\x11\x7a\xc9\xae\x0e\xe6\xe4\xea\x84\xd0\xb9\x8c\x3e\x47\x64\x26\x5b\x23\xa3\xe9\xec\xea\x0d\xa3\xb3\xb5\xf8\x75\xcd\xe8\x4c\xc7\xbc\xc6\xbc\xc8\x50\x8a\x17\x32\xd9\x05\x4e\xaf\xf6\x6f\xc9\x6d\x35\xfa\x55\xc6\x11\x36\x8d\x7f\x83\xf2\xf9\x02\xd1\xb8\x58\xeb\x20\x84\x4c\x34\x4b\xaf\x51\xae\x5a\x70\x80\xd2\xa8\xc8\x73\xd3\x88\x37\x62\x8f\x77\x75\x5c\x2c\x96\x05\x57\x95\x25\x74\x86\x96\x8c\xe3\x8d\x24\x95\xd8\x13\x14\x21\x55\xb0\xf8\xc9\x2c\x7e\x8d\xb2\x0c\xa9\x4c\x2f\x3f\x17\x74\x76\x75\x26\xf6\x7c\xb6\xb9\x6f\x49\xc4\x32\x82\xd6\xea\xee\x87\x0a\xea\xd8\xdf\x50\xae\x53\x3f\x43\x73\xae\xd4\x13\x11\x7c\x87\xe8\x8c\x31\x2a\xe3\xfe\x10\x01\x1b\x45\x56\x28\x56\xbd\xbe\x1f\xe3\x8d\xf8\x9b\xe2\x0e\x11\x33\x58\xe7\x98\x15\xe9\xfa\xdd\xe9\x1b\x03\xcc\x11\x9d\xcd\xf5\xc8\x1e\xcc\x19\x9d\xdd\x10\x5b\xe9\x72\x74\x41\x67\xd7\x8f\x46\x0b\xcd\xd3\xd6\xdb\xc4\x9d\xbd\x3b\xd0\xd8\x05\x22\x4b\x4c\xd6\xef\x4e\x2d\x82\xe7\x1c\xd1\xf5\x2b\x8e\x4c\xc2\x8b\x39\x59\x2c\xe7\xaa\x97\x45\x60\x6a\x06\xf7\x82\x5d\xaf\xd8\xfa\x35\x5a\x5a\xea\xcb\x14\x21\x3a\x45\xb6\xfb\x2e\x53\x44\xaf\x9e\xa1\x9c\x71\x43\xc2\x8b\xc5\x0d\xd1\xec\x22\xe6\x0e\x44\x69\xb3\xc5\x73\xc4\x19\x5e\x3b\x41\xcc\x19\x76\x09\xde\xe1\xd5\xf5\x67\x74\x4b\xae\xd7\xaf\x22\xac\xe5\x93\x31\x7a\xb0\x22\x9f\x5f\xbd\xc0\x8c\xcf\xc4\xe0\xe6\xd1\xcf\x2f\x4e\x2e\xb6\x3b\x82\xa4\xc8\xc4\xa4\x95\x63\x93\x22\x12\xe3\xb5\x85\x20\x99\x47\xf4\x8c\x93\x6c\x8a\xa8\x4b\xf4\x5b\x81\x31\xcd\x74\x89\x0e\x25\xbb\xc6\xf4\xea\x25\x49\x53\x87\xf8\x0f\x21\x78\xee\x08\x95\xca\x85\x81\x0f\x11\xbf\x13\x4b\x87\x01\x84\xd0\xf3\x4b\x7e\xc9\xa6\x88\xe7\x0e\xc9\x05\xca\x16\x88\x12\x3f\xa3\x63\xc6\xe3\xab\x97\xec\xce\xad\xe0\xf1\xcb\x57\x1e\xcd\x09\x4e\xc5\xde\xc3\x6b\xc4\x7b\x12\xe5\x8c\x97\x32\x3b\xc3\x3c\x9f\x3b\x44\x5a\xb1\xb3\xfd\xb3\x8a\x29\x5e\x39\x14\xfb\x07\x17\xdf\x26\x38\x40\x74\x2a\x74\x87\x6f\x53\xbd\x3d\xff\x50\x6f\xd5\xd5\x30\xed\x04\x7a\xc0\x36\x61\xdb\xc1\x26\x74\x03\xc8\x31\xa6\x77\x24\x9a\x7b\x31\xe5\x4c\xab\x19\xc2\xbf\x65\xa4\x04\x94\xb2\xbe\xbc\x38\x80\x22\x2f\x0f\x2e\xca\x08\x25\xb7\x98\x67\xb0\x46\xb8\xf8\x9f\x45\x5a\x38\x90\x9f\xf0\xf2\xe2\xc0\x0d\x6d\xc8\x42\x27\x97\x32\xeb\x19\x4e\x67\x1c\xc5\x58\xcb\xb0\xe3\xcf\xc5\x34\xfd\x2c\x77\x32\x8f\x90\x9c\xb1\x78\xc6\xb8\xd4\x3b\x1f\x21\x39\x47\x1c\x7d\xc6\x60\xd6\x78\x8c\xe2\x9a\x2d\x3f\xe3\xc7\xe3\xff\x44\x33\x8e\xa7\x36\xfe\x60\x4e\x32\x42\x51\xb1\x76\x9e\xe5\xca\x96\x2c\xb5\x14\x87\xc5\x34\x25\x74\x7d\x44\xb8\x93\xed\x4b\x9c\x66\x84\x5e\x93\xb5\xf9\x20\x25\x27\x78\x8e\x16\xd4\x92\xbc\xca\x72\x44\xa7\x45\x2a\x85\x89\x0e\x6d\x88\xbf\x28\xf8\x35\xd8\xed\x74\x57\x91\x6c\xca\xe8\x5a\x28\x5c\xc5\x0c\x39\x29\x8e\x19\x8d\x19\x5d\xdb\x96\x25\x52\x4f\xda\x18\xfd\xa2\xc0\x9c\x66\x5e\xbe\x5e\xfc\xab\x2c\xc5\x42\x5d\x3c\x41\xf4\x31\x92\xd7\x98\x6f\xca\xe0\xc5\xb3\x0d\xd0\x8e\xdf\x3f\xea\xab\x49\x1f\x76\xce\x2f\x2d\x78\x9a\xa5\x6c\xbd\xcf\x23\x21\x0b\x8f\x19\x9d\xad\x30\xe2\xd3\x15\xa6\x65\x0a\x2d\x2f\x5f\x23\x7a\x75\x82\x3c\x82\x33\x8e\x66\x85\x19\xcc\x67\x1c\xe5\x24\x4b\xd1\x2d\x2a\x3d\xdb\x6f\xd8\x45\x64\xc0\x09\x65\x9b\xe3\xdf\xa3\x9c\x44\x6e\xfb\xd5\x4d\xeb\x33\xa6\x04\xa9\x66\x9a\x82\x93\x68\x6e\x4a\x2d\x32\x42\x67\x6e\xad\xfc\xf8\xf7\x28\x2e\xbe\xb8\x77\xd1\x38\xc9\xf2\x05\xca\xb4\x58\xd8\x19\xba\x0e\xad\x45\x74\x2d\x0a\x5b\xef\xd3\x1c\x41\xd7\xa0\x9f\x4f\xa2\x93\x82\xc7\xec\x3b\x54\x72\x35\x39\x63\xb0\x93\xae\x10\xbe\xfd\x73\x83\x7b\xf9\xdb\x3f\x77\x0e\x5e\xee\x5f\x54\x9c\x2b\xcd\x29\x3d\x2f\xae\x1f\x8d\xfc\x03\x2d\x5d\x07\x45\xd0\x66\x95\x5a\x2f\x03\xaf\xf4\xf2\xe3\xf9\x83\xe9\xc0\x39\x22\x72\x29\xae\x78\x62\x69\x00\x74\xfc\x9c\x6d\xa4\xb9\x3c\xff\xf9\x25\xba\x43\x84\x6c\xbc\x68\x66\x7e\x6d\x74\x28\x32\x5e\x49\x24\xbe\x43\xab\x6f\x92\x9c\xa3\x05\x43\x1b\x29\x2e\xcf\x37\x44\xa6\x42\x6e\xa8\x41\x1d\x6f\xf0\x19\xb1\x61\x8a\x96\xd8\x23\xe0\xf9\xd5\x09\xe3\x38\x9b\xae\x4c\x0e\x61\xe0\xb9\x58\x70\x74\x87\x6c\x5c\xa7\x1a\x67\x7c\x38\x0b\x8a\x12\x69\x52\x7e\x84\xe2\x03\xba\xc6\xdf\x8a\x4d\x53\x92\xd5\x3f\x3d\xfc\xd4\x7c\x68\x25\x05\x8d\x72\xc2\x68\x03\xb7\xf2\x16\x6d\x7e\xad\x17\x19\xae\x65\x39\x27\x51\x5e\xdf\x3b\x9d\x7e\xc6\x51\xde\x8e\x71\x42\x28\x3e\x13\xcc\xce\xf3\x55\x23\x6f\xd5\xaf\xae\x70\x76\xc2\xe2\x42\xf0\xe2\xd7\x5b\x94\x16\x78\xf7\x49\xf0\xd0\xdc\xbb\x45\xbc\xc6\x27\x75\x9d\x69\x7d\x32\x99\xe4\xab\x25\x66\x49\xed\x7c\xb5\x98\xb2\x74\x6b\x4b\xfe\x6d\x27\x8c\xb7\xd8\x84\x3f\xb5\xc1\x46\x9d\x63\x14\xe5\x6d\xb1\x6b\x17\x1b\xe2\xe6\xee\x20\x08\x83\x6e\x8b\x6c\xa4\x5a\x32\x2e\xf6\x94\x92\x68\xd0\x42\x1b\x89\x12\x8e\x66\x4e\x5e\xc3\x56\xb6\x91\x4c\xb6\xf6\x6a\xc1\x62\xac\x28\x47\xad\x68\x73\xa9\x9c\x25\x24\xc5\x5c\x92\x85\xbd\x56\xfa\x18\xd9\x2d\x89\x35\x59\x30\x6e\x15\x1b\xc9\x22\x46\x73\x7c\xaf\x6a\x17\x06\xad\xe5\x46\x2a\x94\xad\x68\xe4\x54\x2e\x0c\x5b\xc9\x63\xd9\x45\x05\xe7\x98\xe6\x3e\x75\xbc\xb9\x6f\x18\xbf\x43\x3c\xbe\xe2\x38\x51\x94\x9d\xd6\x7c\x73\xf7\x14\xd9\x12\xd3\x4c\x67\xd8\x6d\x4d\xbf\x49\x76\x95\x92\x4c\xb5\xa9\x13\xb4\x16\x1b\x69\x17\x78\xc1\x54\x76\xfd\xd6\xc9\x46\x92\x14\x7d\x59\x29\x92\x41\x6b\xb6\xb9\x09\x05\x8d\xd1\x42\x1a\x17\x24\xe5\xb0\x75\xbb\x91\x92\xe3\x6c\xc9\xa8\x19\x91\x70\xd4\x5a\x6d\x6e\x43\xc4\x96\xba\x9d\xe3\x3d\xcd\xc5\xb5\xfd\x06\x6e\x7e\x25\x49\xa3\xce\x60\x3e\x38\x5c\x8d\xb7\xb6\x68\x91\xa6\x4f\x26\x13\xdc\xfc\x2a\x98\x3f\x9f\xe0\xf6\x7f\xfd\x97\x8c\xdd\xcb\xee\x48\x1e\xcd\x1b\x79\xf3\x6b\x84\x32\x5c\x63\xbb\x0a\xc0\x13\xdc\x16\x24\x0a\x5f\xee\xc2\x9f\x44\xfe\x41\xf2\x4f\x24\xff\x64\xf2\xcf\x7c\x97\xe3\xbc\xe0\xb4\x86\xf7\x62\x9c\xa0\x22\xcd\x9d\xbc\xb6\xb6\x6c\x99\x2a\xcb\x42\x26\x8b\xe5\x9f\xb4\x9a\x5a\x01\xf9\xc3\x03\x50\x9c\x48\xc2\x85\xfc\x43\x9c\xe8\x07\xd3\x0b\x77\xa2\x17\x54\x84\xe8\x91\xc9\x64\x92\x3c\xe4\xd0\x90\xd3\x64\xb2\xdf\xca\xdb\xfb\x82\x55\x4f\x58\x8c\x27\xcb\x56\xde\x3e\x30\xfc\x08\x50\x22\x21\xc1\xf1\x07\x8c\x66\xc5\x02\xf3\x49\x61\xb1\x33\x35\x67\x26\x69\x2b\x6f\x1f\x49\x19\x30\x61\xad\xbc\xfd\x5c\x32\xea\x3b\x9c\x4c\x62\x11\x54\x73\x7a\x82\x5a\x79\xfb\x18\x7d\x59\x4d\x4e\x5a\x79\xfb\x04\x2f\xd8\x64\xd1\xca\xdb\x67\x20\x17\x26\x44\xfc\x54\x93\x75\x12\xb5\xf2\xf6\x39\xcc\x71\xa8\x48\x26\x82\x8a\x59\x27\xf3\x56\xde\x26\xd9\x7b\x94\x92\x58\x15\x7a\xb1\x5a\xe2\x89\x95\x8a\xba\xc9\x75\x21\x25\xe8\xcc\x1d\xfb\xf5\x7a\x93\xa0\xc3\xeb\x35\x9e\x4c\x26\x48\xfe\x49\xe4\x9f\x48\xfe\xc9\xe4\x9f\xb9\xfc\x33\x5d\xaf\xbf\xc9\x51\x5b\x5b\x0d\x3b\xb0\x93\xc9\xe4\x64\xbd\xf6\xc2\x8b\x52\x38\x2d\x85\x8b\x52\x38\x2e\x85\x67\xa5\xf0\x6d\x29\xbc\x6a\x3e\x40\xef\xd8\x61\xad\x76\x0b\x70\xc5\x7a\xad\xf8\x61\x29\x13\x94\x46\xfe\x4e\x83\xde\xd8\x6f\xc8\x4b\xe5\x52\x3c\xb8\x09\x0c\x63\x3c\x9e\x20\x95\x09\x34\xd7\x6c\x18\xbc\x6f\x77\xb3\xd7\x6a\x26\x33\x73\xd8\xee\xf1\x82\x63\x45\xab\x79\xf2\x71\x4a\x24\x29\x81\x61\x1f\xa7\x3a\x91\x54\xc0\xcd\x8f\x53\x2d\x24\x95\x62\xf5\xc7\xe9\x88\xa2\xd3\xf3\xe0\x71\xca\x48\x52\x3a\x93\xe4\x71\xda\x4c\xd1\xea\x19\xf4\x38\xe5\xfc\xa1\xaa\x5e\x48\x05\x81\x36\xc2\x4e\xbf\xb9\x87\xdb\xf8\x5e\x2c\xe4\x99\x97\x09\x49\x1a\xf8\xd7\x49\xbf\xdf\x19\x0f\xb6\xb6\xf0\x2f\x93\xfe\xb0\xdb\xeb\xae\xd7\xf8\xd7\x30\x0c\x7b\x61\x18\x36\xd5\x98\xfe\x55\x24\x49\x12\xd7\xf7\x70\x8d\xd0\x1a\x17\x93\x65\xc2\x3f\xe2\x4f\x52\x09\xc9\x27\xf5\xfa\x1e\xfe\x75\xd0\xef\x77\xfb\x22\x6a\x67\x22\x7e\x0e\x5a\xf9\xf6\xe4\x1c\x26\x72\x3b\xe1\x6c\x71\x30\x47\xfc\x80\xc5\xb8\x81\x7f\xfd\xf5\xd7\x30\xd8\x0a\x83\x4e\x77\x0d\x25\x37\x5b\x78\xd2\x1f\x74\x3b\xc1\x5a\x60\x5b\xb8\xb9\xa7\x45\xe2\x23\x19\x34\xbd\xc6\x36\xbf\xda\xb6\xbd\x3e\x3f\x7d\xdb\x5e\x22\x9e\xe1\xc6\x4f\x5f\xeb\x41\x7d\x57\xd4\xa4\xdb\xaa\x87\x9d\x51\x7d\x77\xd4\x1d\xf4\x5a\xf5\xb0\x1b\xd4\x77\x47\x9d\x70\x24\x7e\x86\xf5\xdd\x5e\xd0\x11\xbf\x3a\x02\xec\xc0\xcf\xae\xf8\xd9\x0d\xc4\xcf\x1e\xa0\x90\xaa\x0f\x3f\xfb\xe2\xe7\xa0\xbe\x3b\x0c\x21\x7e\x28\xc0\x1e\xfc\x1c\xd5\x77\xbb\x7d\x48\x3f\x06\x70\xdc\xaa\x87\xbd\xa0\xbe\xdb\xed\x8a\x92\x7a\x9d\xfa\x6e\x77\x14\x8a\x5f\x90\x51\x38\x10\x3f\x07\xf0\x73\x28\x7e\x42\x4e\x1d\x91\x53\x6f\x04\x3f\x81\x16\xb2\xea\x08\xda\xbe\xac\xb5\x40\xfb\x21\xfc\x14\x65\xf5\x3b\xf5\xdd\x61\x17\x7e\x89\x5a\xf7\x46\xf0\xb3\x27\xaa\x22\x5a\xdd\x87\xb2\xfa\x22\xd7\xfe\x40\x54\x45\x54\xaa\x2f\x6a\x2a\x09\xc7\xf5\xdd\xee\x70\x50\xd2\x4d\x1f\xef\xcf\x7d\x14\x15\x39\xae\xef\xd6\xff\xba\x8f\xc2\x7a\xab\x8e\x6c\x18\x8b\xf0\xfe\x94\xe3\x5b\x08\x17\x41\x18\x08\xad\x1a\x79\x48\x57\x20\x11\x84\x3a\x9d\x2e\x86\x50\xac\x83\x09\x04\x8f\x4c\xec\x5f\x45\xd0\xed\x8a\x14\xfb\x11\xe1\x91\x2c\x14\xb2\x34\x41\x2c\x83\xba\x0a\xd3\x1e\x10\xaf\x64\x69\x3d\xd0\xf8\x91\x09\xc2\x7b\x21\xfb\x47\x29\x99\xc9\xac\x06\x22\x16\xeb\x20\x7c\xda\x11\x25\xb2\xf0\x60\x10\x4a\xdf\x0c\x08\xc6\xa3\x6e\xff\xaf\x22\x8e\x83\x1e\x90\xf8\x60\x08\x06\xca\x19\x47\xb7\xaa\x5b\xa0\x50\x1b\xc6\x10\x4e\x71\x92\xad\x16\x32\x73\xc1\x48\x00\x2d\xe7\x2e\xb0\x9f\x2e\xe7\x48\x56\xb5\x3b\x86\xbe\x75\x80\x29\xd4\x67\x81\x22\xae\x7b\x12\xb2\x75\x81\x50\x02\xe9\x4c\x66\x8a\x64\x77\x2e\x96\xf5\xdd\xfa\x96\x48\x7c\x72\xa6\x7e\x81\x31\x5c\x75\x3a\xea\x43\xd1\x36\xd8\x95\x04\x6a\x0c\x3a\x43\x19\x34\xd1\x91\x0c\x67\xa9\xd0\xdc\x14\x36\x92\xd8\xad\x0e\x23\x08\xcf\x74\x16\x81\x0c\x2a\xf2\x31\xea\xc9\x70\x8a\x4b\x04\x8b\x2c\x46\x48\x13\x8d\x2c\x36\xd5\xd8\xd8\x62\x91\xc6\x90\xc5\x62\x8d\x4d\x2d\x66\x0a\x8d\x2c\x96\x68\x2c\xb6\xd8\x4c\x63\xd8\x62\x73\x8d\x25\x06\xd3\x35\x0e\x25\xc2\x73\x05\x84\x89\x06\x6e\x55\x6d\x3b\x53\x6c\x21\x5d\xb3\xb1\x2a\x31\xd3\x03\xdf\xe9\x74\x14\x92\x4b\xde\xe9\xcb\xe0\x17\xc4\xe5\xb0\x76\xba\x43\x38\xae\x62\x33\x46\xf5\x38\x43\xff\xb9\x00\x8c\x20\x5b\x26\x1e\x5b\x76\xa1\x07\xcb\x68\x1f\xca\x5b\x8a\x09\xa4\x46\x6b\x00\x55\x5f\xaa\xfa\xf4\x20\xd5\x52\x4d\x41\x34\x84\xa1\xd1\x23\xdd\xe9\x41\x6f\x2f\x89\xee\x87\x1e\xf4\xf4\x92\x65\x22\xfc\x93\xa8\xc5\x72\x99\xae\x9e\x6b\x25\xcd\x99\x49\x68\xb9\xe4\xec\xde\x2f\x44\x20\xf8\xc6\xcd\x7a\x1f\x54\x3e\xdb\x11\x26\x08\x2f\x75\xed\x67\x91\x37\xf3\xa2\x31\x0c\x6a\x19\x9d\x0e\x80\x36\x23\x33\x55\x83\x4e\x1f\x7a\x0c\xba\xf8\xff\x80\x5f\xab\x85\xdf\x5e\x01\xd8\x9a\xc8\x33\x05\x92\xc6\x6a\x3e\xc3\x8c\xb0\x61\xb8\x0c\xb1\x5f\x2c\x52\x19\x0b\x79\xeb\x10\xdc\xc9\x40\x77\x11\xa3\x84\x6a\xde\x00\x01\x86\xee\x0c\x80\x42\xd1\x21\x53\x14\x5d\x47\xcc\x4c\x92\x5e\xa4\x30\xbc\xcc\x48\xaa\x87\xb6\x9b\x0c\x14\xbc\xe4\x64\xa1\x46\x21\x00\x61\x21\xc0\x8c\x2c\x74\x19\xb1\x85\x4c\x43\x22\x01\x3e\x13\x60\x8a\x32\xcd\x70\xe1\x00\x40\xae\x27\x2b\x1e\x42\x4a\x7e\x8b\xf5\x20\x4f\x65\x5e\xfc\x0e\xab\x61\xee\x02\x83\x3d\xf3\x90\x81\xa1\xd1\xf3\x5a\x52\x4d\xa7\xfc\x5a\x85\xa7\x3a\x9c\x3b\x18\xa4\x2b\xb7\xfb\x99\x15\xd8\xd0\x35\x56\x60\x43\x30\xbe\x29\x98\x6a\x3a\xc8\xda\x29\x8e\x50\x91\xe9\x96\xf7\x0d\x82\x5d\xe8\x59\x15\x9a\xe2\xc5\x32\x5f\xa9\x86\x8f\xc1\x9b\x7e\x2a\xba\xdb\xeb\x6b\xcc\x29\x2b\x94\x54\xee\x40\xe5\x00\x01\x0b\x8e\x87\xe6\x46\x54\x77\x20\x9d\x09\x4f\x55\xd8\xc8\x76\x99\x6f\x7e\x87\xb1\x66\xc8\x01\x64\x51\x5e\x5c\xa0\x8e\xe5\xc5\x45\xcc\xce\x29\x99\x45\x66\x86\xc2\x02\x28\x10\xb5\x04\x16\x9d\x3e\xd6\x44\x85\x21\xea\x4a\x84\xc5\x4c\x73\x1d\xac\x17\x02\x5a\xa6\xba\xf3\x10\x2c\x19\x02\xcb\xc9\x02\x1b\x50\x15\x90\xdd\x98\xfc\x90\x1c\x6f\x32\xcb\x72\xa4\xe4\xc6\x40\x56\x97\xcc\x72\x4e\x40\x98\xc7\xec\x4e\x35\xaf\x2f\x39\xc8\x46\xe9\x6c\xfa\x53\x55\xad\xc2\xad\x43\x4f\x62\x96\x01\x23\x55\x2b\x87\xb9\x3a\xb0\xa8\x4e\xaf\x11\x67\x77\x6a\xfc\x02\x28\x24\x45\xd1\x75\xca\xbe\x60\xbb\xbc\xc0\xe1\x03\xe0\xd9\x4d\x81\xb8\x82\xfb\xb0\x50\x00\xac\x6b\xa5\xeb\xd4\x2b\x47\xb8\x2d\xc1\xe5\xc8\x14\x27\xaa\x47\xfb\x72\x24\xdc\x48\x4e\x66\x73\x1d\x3b\x1d\xc9\x58\xaa\x78\xbf\xd7\x81\xc6\xa7\xd7\x61\x47\x51\x48\xc6\x49\xaf\xc3\x9e\x06\x42\x09\x74\x0d\x20\x93\xb0\x48\xe5\xd1\x1f\x41\xa6\x54\xd4\x7d\x22\xe6\x03\xc8\xc5\x29\xc5\x37\x05\xb9\xd5\xbc\x15\xda\x88\xb7\x66\xf4\x31\xf4\x16\xd5\xe1\x2e\x68\x46\xcf\x2a\x6b\x86\x58\x61\xa7\x95\x35\x03\x6a\xa1\x93\x76\x50\x5f\x06\x73\xb6\xf0\x91\xbb\x9c\x98\xe1\x82\x7a\xb2\xfb\xa9\x96\xf9\xe3\x48\x66\x7d\x1f\xa7\xaa\x29\x50\x03\x01\x1c\x2b\xa0\x2f\x73\xb9\x3f\xd4\x14\x70\x4d\x50\x00\x86\x62\xa8\x92\x28\x1e\xec\x07\x91\x02\xde\x69\x8a\x8e\x4a\xa2\x29\x54\xdd\xef\x0f\x0d\x45\x4f\x02\x73\x9d\x85\xaa\xc6\x4b\x1d\xaf\xc2\x73\x25\xea\xfa\x1d\x55\xc6\x4b\x0d\x0c\x74\x0e\x87\x1a\x50\x15\x7f\x69\x00\x55\xf1\xb9\x12\x24\xfd\xae\x4a\xf2\x52\x03\x03\xd5\x92\xf9\xa5\x06\x54\x87\xbd\x34\x80\xea\xaf\x05\xa1\x46\xd6\x8d\x13\x89\xd9\xd9\xd3\x19\x63\x09\x39\x13\xb8\x83\x54\x13\x0a\xd3\xd5\x2a\xf3\xc2\x74\xe4\x54\x02\x97\xa6\xab\x55\x23\x2f\x0d\x45\xac\x92\xe8\x8e\x0c\x55\x13\x0a\xd3\x91\x2a\xd3\x4b\xd3\xd5\xaa\xc6\x97\x86\x02\x49\xe0\x56\x77\xb5\x1a\x9c\xf7\x3a\x3e\x54\xf1\x7a\x2c\xba\xaa\x16\xb7\x7a\x30\x06\x2a\x87\xf7\x9a\x62\xa0\x2a\xfe\xde\x50\xe8\x24\xba\x25\x1d\x55\xcf\x5b\xdd\x92\x81\x2a\xe5\xbd\xa6\x18\xe8\x6a\x18\x0a\xc5\x23\xb7\xa6\xad\x3a\x53\xd3\x12\xd5\xcb\xef\x4d\x5b\xd5\x48\xbc\xd7\x14\x03\xe8\xf3\xea\x2a\x6d\xb7\x3e\x9d\x58\x74\xd8\xb3\x32\x30\xe5\xb7\x53\x29\x53\xef\x11\xb0\x4d\x45\x9d\x11\xac\xf2\x4c\xa3\x6a\xf9\x99\x66\x78\x41\x54\x41\x3d\xa8\x4b\x59\x17\xc8\x4c\x4d\xa4\x1e\x30\xcd\x58\xaa\x15\x69\x50\xae\x04\x20\xc2\x7f\xfd\xf5\x97\x0a\xcd\xb3\x42\x51\x0c\xe5\xfc\x2d\x52\xd5\x67\x01\xa8\xa9\x22\x8c\x73\x1f\xb1\x8a\x14\x56\x61\xad\x3a\x22\x0d\x18\xe5\x51\xd4\xf3\x59\xe1\x6a\x5a\x86\xe4\xc6\xa5\x39\x30\xfb\x39\xa1\xdc\x8a\x4e\x89\x3c\x64\x08\xc8\xd2\x6e\x61\x7a\x3d\x89\x4c\xb9\x5d\xb1\x7a\x63\x89\x99\x85\x13\x81\xb2\x6a\xd7\xd1\xce\x18\x8a\xd2\xc1\xb8\xa3\xe8\x6d\x0e\xaa\x1c\xbb\x84\xf6\x02\x99\x84\xe4\x28\x3d\x24\x49\x82\x39\x38\x6c\xa5\x6a\xde\x8b\x6d\x3d\xa4\xc8\x4c\x11\x7f\x15\x09\x06\x09\x13\x21\x6e\xba\xae\x17\x4a\x40\x6b\x79\x9d\x68\x08\xf9\xae\x52\xbc\x32\x4a\x86\x18\xb3\xc8\xe6\x85\x40\x2b\x3d\x70\x52\x85\x20\xfc\x22\x0f\x91\x34\x38\x26\x4a\x37\x85\x16\xd8\x30\xe8\x7a\x07\x46\x71\x08\xc2\x60\x04\x04\x0e\x00\x9d\xe2\xab\xaf\x50\xfd\xa8\xb0\x35\x89\x34\x90\x29\x96\x43\x20\x34\x0f\x74\x47\x05\x61\x20\xe6\x6d\xe4\x84\xa1\xeb\x4d\x3d\x60\x69\x3c\x10\xc1\x14\x59\x20\xf2\xd5\x33\x18\x0f\x2c\xab\x71\x8f\x74\x08\x73\x95\xeb\x3d\xcc\x8b\x03\x80\x0e\x5d\x28\x2a\x69\x50\xb0\xbb\x3c\x48\xb8\xdb\xb1\x07\x2f\x8d\x8a\x09\x1b\xdc\x68\x6e\xc2\x72\xd4\xe7\x58\x2f\xb9\xc3\xb0\xab\x81\x05\xe2\x1e\x78\x30\xd7\xaa\x23\x92\x89\x74\x50\xf6\xbb\xe9\xd5\x0e\x18\x1a\x44\xd8\xf0\x79\x5f\x53\xa4\x18\x71\xce\xee\xac\x56\x11\x82\x4f\xb9\x13\xe5\xe8\x14\xe1\x74\x6a\xe2\x62\xb9\x9f\x81\x35\xc0\x41\xad\x56\xd8\x19\xdb\x8c\xe2\xd8\x6e\x00\x60\x0f\x7a\x00\xf0\xa1\x59\xd3\xc7\x63\x4b\xfb\x4e\xf6\x38\xb6\xc8\xb9\xd2\x60\x40\x2a\xc8\xa4\x27\xee\xb2\x34\x30\xf0\x99\xb3\x32\xf5\x0d\x7a\xe1\x2c\x4e\x63\xd5\x72\x25\x37\x23\x55\xf7\x23\x2d\x9a\xba\x32\x8c\x4b\x1d\x95\x50\x67\xff\x14\x48\x6c\xa1\xf7\xa1\x08\x14\xe0\x88\xf0\xcc\x64\x3c\x06\xe5\xec\x40\xa8\x4e\x77\x24\xc3\x07\x8c\xe6\xac\xe0\xaf\x68\x8e\x67\x1c\xa5\x9a\xb5\x15\x4d\x86\x0f\x0a\x9e\xae\x0e\x59\x31\x4d\xf1\x6f\x05\xcb\xb5\x0c\x0f\x63\x8f\xc0\x8b\x82\x1e\x4b\x8b\xa9\x6a\xd8\x00\x56\x11\x00\x0a\x92\x7b\x18\x93\xfb\xb9\x5d\x91\x17\xd3\x7b\xbb\x4e\xa7\x3b\xd4\x80\x36\xa4\x0c\x7b\x9a\xdc\x34\xdf\x22\x37\x3e\xb4\x58\x20\xc8\x51\xfd\x16\x25\xfe\x9f\x32\xa0\x25\x1a\x28\xf7\x22\x9c\xe8\x12\x41\x0f\x10\x88\x3a\xf2\x2d\xd1\xa5\xf8\x5e\x0f\x93\xb4\xdc\xb9\xfb\xb4\xbe\x0a\x5b\x69\x38\x80\xce\x61\x74\xc6\x0b\x9b\xd9\x40\x66\xe6\xc8\x8f\x0e\x96\x64\x0e\x92\x48\x64\xc3\x88\x00\x71\x54\x51\x40\x7b\x90\x40\xa1\xa6\x72\x4b\xce\xb4\x21\x02\x58\xe2\x00\x90\x22\xca\x5d\x30\x62\xcb\x95\x64\x68\x10\x6d\xa7\x67\x7f\xd8\x90\x88\xcb\xb4\x60\x08\xe5\x70\x14\x42\xa0\x7c\x8f\x6f\x60\x58\xb9\xb1\xd1\x84\xb0\xd5\x8d\x38\xcb\x32\x2d\x1f\x20\x33\x0b\x20\xd9\xe6\x8a\x01\x03\x9a\x5b\x59\xf1\x61\x98\xcc\x62\x8c\xa2\x44\x85\x35\x9f\xc4\xa1\x04\xf4\x4a\x15\x07\x2a\x6c\x08\xa0\x83\x72\x33\x56\x1d\x39\x41\x8a\x18\x71\xae\x1a\x31\x06\xfb\x90\x84\xf4\x9c\x01\x95\x25\x2a\xf0\x92\xeb\x45\x11\x4b\x20\xd3\x32\x25\x96\xf9\xa4\x4e\xd3\x07\x06\x59\xea\x6c\x60\xed\x2a\xc4\x72\x6c\x17\x5f\x59\x9a\xbb\x1c\x83\xd4\x28\x96\x76\x09\xee\xa9\x74\x9a\x17\x90\x24\xd0\x45\x77\x55\x0e\x76\x81\x46\x12\xb1\xcd\x1c\xa9\x1c\x98\x36\x6e\x49\xb6\x2d\xec\x8a\x8c\xec\x8a\x5c\xb8\x03\x38\x34\xc8\x42\xb7\x22\x92\x50\xba\xc2\x37\x4b\x8e\x23\xbf\x4b\x00\xce\x8a\xa8\xd4\x31\x3c\x5d\x39\xfb\x58\x43\xea\xed\x64\x15\x25\x97\xd6\x80\x7b\x30\x87\x46\x05\xbf\xad\xae\x04\x03\x2f\xc6\x5b\x08\x64\x7d\x2b\x65\x19\x0b\x8d\x2a\xa6\x64\x89\x02\xb6\xb8\x73\x00\x60\xa4\x55\x1a\xe5\x72\xf9\xeb\x74\x61\x79\x8c\xd1\x6c\x86\x55\xd7\x04\xb0\x7e\x1e\x7a\x48\x08\x34\xa9\x63\xe2\x18\x01\x62\xba\x13\xf6\xad\x87\x36\x8c\x20\xc5\xbe\x09\xc3\x58\xda\x35\x29\x08\x65\x19\xd9\xdc\x58\xa5\x7a\x8a\x40\xef\x6a\x11\xa4\xf0\x0d\x00\x09\x40\x29\xd2\xcb\x6c\x2c\xea\x7e\xe8\x29\x44\xa2\x57\x62\x0f\x49\x80\xc6\xd8\x9b\xa0\x1c\x6b\x6f\x82\x60\x5c\x6d\xac\xd3\x36\x70\x9f\x3c\xf4\x54\x3e\x6d\x1d\x0f\x81\xa7\x0f\x0f\x59\xce\x91\xde\x3f\x8e\x43\x99\x01\xcb\x33\x2d\xc2\xd1\x50\x8c\x5e\x8c\xa5\x69\x13\xec\x50\x87\x58\xcb\x16\xd0\x6e\x0f\x71\x6a\xcd\x4b\x50\x27\x07\x98\x4a\xc0\x53\x96\xa0\x8c\x84\x64\x9a\x41\xc6\x43\x68\x67\xd9\xc2\x04\xe5\x96\xf5\x23\x48\xfb\x52\xdb\x75\xc6\xb0\x9b\x8d\xe7\x48\x0b\x8a\x10\x96\x64\x01\x98\x1e\x10\x6c\x74\x48\x50\xc4\x49\x4e\x22\x94\xee\xfb\xc7\x2f\x4e\x8c\x56\x30\x82\x4e\x3c\x2e\xc7\x88\xb5\x76\xdf\xaa\xf5\x6a\xf4\x2c\xc5\x0b\x75\x80\xf2\x7f\xfb\xf0\x85\xb6\xc3\x8a\x24\x62\x8a\xc6\x04\xe9\x9d\x0f\xd8\x62\x45\x98\x99\xf3\x8b\x48\xd5\xa8\x0c\x29\x2a\x77\xad\x1e\x28\x38\xf3\x01\xd9\x32\x38\x8f\xd8\xa8\xf3\x4b\xaa\x19\x92\x0b\xb2\x18\x20\x68\x49\x4c\x32\xa2\xd7\xdd\xa4\x03\x00\x8c\xd6\x7d\x32\x94\x01\xa2\xcc\xc9\x4e\x98\x51\x77\x1b\x1f\xa9\x08\x46\xef\x5d\xe4\xf0\xb5\x61\x57\x58\x07\xe3\xcf\x26\x0c\xd6\x8f\x38\x8d\x18\x57\x25\x77\xc1\x5e\x1a\xa7\x11\x67\x4a\x68\x76\x61\x8f\x10\xb3\x34\x85\x01\xff\x2f\x91\x61\xc5\x0a\x34\x05\x92\xf2\x22\xdc\x07\xda\xdc\x76\x47\x5c\x1a\x5d\x96\x1b\x85\x32\x90\x43\xc3\x72\xab\xb6\x04\x1a\xb0\xe2\x1a\x0c\x00\x87\x2c\x3f\xba\x29\xcc\xda\xaa\xe9\x5c\xbb\x47\x57\x95\xe6\xd8\x3d\xe4\xc4\x65\xb9\x6b\xe3\xeb\x48\x31\x03\x9c\x55\xb6\x4d\xc3\xc4\x84\x98\x47\x14\x8f\xc4\x10\x78\x6d\xd4\xd0\x1d\xdd\xe7\x46\xf4\x48\xf9\x25\xa3\x8e\x71\x92\x7b\x51\x81\x17\xf5\x4e\x08\x6d\x2f\xbe\xe7\xc5\x5f\x68\x09\x2e\x45\x9e\x8a\x60\x74\x56\xca\x77\x98\x8c\x2a\xd1\xe5\xbc\x87\x09\xf2\x68\xaa\xf1\x63\x13\x5f\xad\x57\xc7\x8f\x33\x15\xeb\x38\xfd\x70\xb9\xf4\x92\x84\x4e\x44\xa5\x8b\xfa\x26\xf2\x3d\xe6\x30\x75\x9f\x69\x19\xd3\xe9\xc8\x48\x95\xc2\xe0\x63\xd8\x56\xc5\xec\x8e\x22\x27\x27\xb9\x98\x94\xb2\x37\x20\xaa\x0e\x8b\xa2\xf4\x2b\x9b\xe8\x22\x1d\x0b\x4c\x57\xca\x66\x76\x47\x4d\x99\x99\x2b\xe5\x05\x3a\x47\x7c\xc9\x18\x75\x96\xe5\xa8\xeb\x47\xb9\xeb\xb2\x14\x8d\xec\x8e\x9a\xf1\x79\x8f\xa3\x5c\xab\x23\xe3\x7e\xe0\x44\x5f\x60\xec\x47\x62\x27\x52\xc6\xd8\x9e\xe9\x0f\x2a\x91\x5a\x15\x88\x55\x8c\x1e\x36\x3f\xd3\xc4\x8d\xad\xe4\x3a\xac\xc6\xea\x96\x84\x2a\xea\x02\x63\xb7\x1f\xd1\xd0\xe2\x9a\x41\x60\x2e\x72\x6f\x71\x86\x15\x3d\xe6\xae\x28\x4a\x24\xe2\x88\x22\x21\x23\x0e\x2b\x3a\x31\xd0\x55\x74\x62\x60\xdd\x73\x2b\xfa\xfa\x92\xca\x88\x3e\x19\x66\x5a\xbb\x85\xc3\x9c\xc3\x2c\xe7\xec\x5a\xad\xfc\xb2\x46\x1e\x02\xa3\xef\x68\xc9\x89\x04\xb8\xb2\xac\xf5\xa7\x89\x0a\x27\x1a\x00\x71\x5a\xd8\xa5\x10\xb8\x2a\x2e\xe6\x76\xf5\x84\x24\x77\xce\x01\xc3\x18\xcc\x7a\x87\x7f\xda\xaa\x03\xc9\x17\x5b\x75\x19\x26\x33\xab\x8f\x0e\x13\x81\x1d\x39\xae\x16\xa2\xf9\xd8\x71\xb5\x90\xe1\x2c\xc7\xe6\x18\x17\x2e\x07\xb8\xaa\x4e\x28\x58\x18\x7b\x08\xdc\xcb\xb0\xae\x14\x92\xc0\xb8\x52\xe8\xa0\x96\xc4\x03\x08\x3b\x3b\x56\xe8\xe4\x23\x6b\x3a\x89\x81\xc0\x58\x4e\x20\x78\x68\xd6\x00\xa9\xe6\x1c\x59\x2b\x10\x1c\x3d\x62\x27\x3c\x84\x04\xfe\x72\xa0\xb9\x2a\x04\x43\x0c\x4e\x9c\x68\x31\xb7\x8e\xca\x2a\xcd\x08\xa8\x4a\x2a\x8d\xa0\xc4\xda\x0d\x02\xec\x20\x47\x8e\x7f\x06\x24\x71\xfc\x33\x64\x58\xef\xd4\xc0\x9a\x81\x67\x99\xdd\xe8\x8e\x81\x20\xd5\x21\xd1\xf5\x47\xfe\x0e\x5a\x12\x10\xb1\x75\x54\xd9\x74\xc1\xd6\x86\xb5\x01\x35\x04\xc9\x86\x53\x53\x48\x5f\x06\x9d\x42\xa0\xb3\x1c\x77\x0e\xf0\x48\xc7\x2e\x00\x59\x08\xb5\x4f\x17\xdb\xd7\x40\x86\x73\x17\x3b\x12\xd8\xf9\x02\xa5\xe9\xb9\x7b\x04\x96\x4c\x35\xfd\x6d\x85\xfa\x3d\xe6\x1b\x52\x20\x99\x22\x5b\x86\x5d\xb5\xae\xc3\x69\x1d\x20\x3d\x8d\xf4\x15\xa2\xc3\xa2\x9a\x47\x6f\x5f\xa8\x5a\xc3\x26\x0d\x2b\x3b\x42\x10\x82\x11\x16\x53\x4b\x0d\x83\xea\x38\x33\x80\x8d\x02\xbb\x00\xf4\x77\x45\x47\x89\x80\xac\xac\xa3\xc0\xd8\x2d\xcd\x3a\x03\x8b\x90\x08\x67\x5a\x2e\xc0\xe1\x3d\x76\x8e\x1f\x87\xc0\x74\xf6\x14\x18\xb6\xf2\x47\xde\x21\xbc\x1c\x2c\x0f\x9a\x6a\xe8\x56\x01\x20\x08\xf0\x8d\x63\x7e\x93\x75\xb9\xa9\xcc\x1f\x7c\x63\x4d\xf5\xbd\x8e\x04\x52\x44\xf3\x59\xce\x3d\x0e\x94\x68\x8a\x33\x8f\x67\x1c\x55\x09\x0d\x65\x76\x05\x02\xb6\x9a\xe8\x58\xab\x21\x9b\x02\x0a\x6c\x8c\x85\x20\x6d\x8e\x6e\x0a\x92\x92\x29\x27\x85\xf6\x48\x8a\x22\x49\xe8\x1c\x23\x6a\x40\xef\x75\xd0\x10\x86\xe6\xe6\xd6\xeb\x4f\xa8\x83\x95\x5c\x63\xd9\x9f\xdc\x99\xb6\xd0\xe3\xce\xf9\x05\x54\xc0\x86\xc1\xbe\x8c\x33\x47\x2b\x84\x7b\x77\xa6\x93\xd0\x50\x66\xe0\x77\xda\x91\xdd\x1f\xc1\x44\xb3\xbb\x23\x98\x47\x17\x70\x3e\x74\x0f\xca\x98\xda\xa6\xde\x27\x90\xaf\xf1\xdb\x00\x46\x34\x7e\x1b\x32\xc4\xb5\x9f\x01\xb8\x0b\xe1\xfb\x48\xc4\x3e\x81\x9f\xc4\xf4\xa0\x64\x70\x01\x64\x2e\x82\xef\x97\x38\xca\x91\x75\x7c\x51\x2d\xbb\x5f\x32\x2a\xb7\x0c\x9e\x64\x3b\xb2\xf8\x91\x8b\x27\x28\x4d\x09\x98\xd9\x32\xab\x3b\x8b\x16\x3f\xb7\x72\x57\xcc\xc1\xc4\xca\x5d\x08\xe2\x85\x29\x60\x00\xe7\x14\x49\x42\x94\x67\x5b\x91\x4c\xa1\x86\x49\xe2\x00\x92\x24\x75\x10\x91\xcd\xf3\xb2\x78\x1d\x03\x59\x49\xbc\x42\x66\x6e\xee\x62\xcc\x9f\x93\x34\xc5\xf1\x06\xa9\x13\x99\xc8\x47\x84\x8c\x90\x10\xc9\x67\x99\x5d\xf2\x59\x04\x52\x64\x76\x65\x31\x84\x9d\xb2\x3a\x00\xe4\x34\xd3\x6b\xb2\x28\x3c\xa1\x2c\x51\xf2\x02\x4e\xd5\x9f\x57\xe4\x05\xe4\x53\x91\x17\xd0\xe3\x8c\xa3\xd4\x6c\xbf\x03\x48\xcd\xf7\x7d\x24\x61\xda\xf4\xdf\x01\x05\x5e\x84\xb5\xad\x02\x36\x3f\xcf\x59\xc1\x09\xe6\x39\xd7\x36\x4a\x30\xad\x24\x4b\xc4\x73\x6b\xb8\x86\xbd\x57\xc2\x51\x24\x5d\x00\xee\xa7\x26\xac\xc4\x6b\x08\x93\x05\x90\x9e\xa4\x88\x74\xb8\xaf\x29\xfa\x1a\x19\x68\x64\xac\x91\x91\x46\xa6\x0a\xe9\x98\x7c\x7b\x1a\x31\xf9\x0c\x14\xd2\x55\x25\x61\x1d\x36\x14\x43\x8d\x98\x7c\x75\x6d\x7a\x86\x66\xa4\x90\xbe\xa9\x0d\xd2\x88\x49\xa5\x5b\x39\x34\x88\x2a\x4b\x4b\x91\x40\xb2\x30\x37\x7e\x17\x5d\x58\xc1\x93\x8a\x12\x28\xda\xf5\xdc\x11\x1d\xa2\x8f\x67\xee\xd9\x20\x88\xe1\x17\xce\x5e\x1c\xf6\x09\xee\xe6\x1c\x5c\x50\x80\x22\x56\x08\x6c\x55\x67\x1e\x12\x03\xa2\xed\x8c\x23\xd1\x55\x2f\x5c\x2f\x56\xd8\x56\xcf\x3c\x44\x48\xb5\x17\xe6\x88\xab\x08\x42\x68\xc2\x0b\xe7\x6c\x0d\x4e\x95\x67\x2e\x10\x03\x85\xb1\x45\x41\x55\xad\x2d\x0a\x2a\x6a\xb5\x25\xb0\xc3\xcd\x9c\x30\x34\x5e\x0b\x7a\xb0\xda\xcc\xb4\xe7\x2c\xb8\x17\xcc\x8e\xf4\x42\x31\x82\x92\x8d\x89\x29\x9e\x42\xf0\xc6\x4b\x8a\x6f\x6e\xbc\xc4\x6a\xfd\xd1\x32\x18\x1a\x8c\x33\x6d\xef\x44\x60\x3f\x9f\x19\x9f\x21\x1d\x6f\xf5\x99\x51\x60\x10\xa6\xa1\x8e\x85\x4c\xd5\x7a\x12\xb3\x75\x33\x06\x5a\x81\x9a\x02\xc0\x0a\xf6\xa2\x2c\x9d\x04\xaf\xcd\xca\xd2\x09\x72\xd4\xe7\x16\xe0\x30\xf0\x42\x87\x60\xaa\xce\x66\x7e\x90\x2c\x74\xcf\x84\x70\x24\xf3\xc2\x31\xb0\xc0\x90\x38\x06\x16\x08\xa7\x48\x77\x02\xf4\x9c\xae\x3a\xa8\xbb\x33\x2d\xcd\x11\xc8\xa1\x59\xfa\x59\xd3\x42\xb5\xa8\x65\x2a\xa4\xc2\xd6\x2f\x52\x63\xda\x22\x00\xce\x3e\x33\x6a\x06\x75\x2c\x63\x6f\xfc\x68\x67\xe0\x24\x81\x5d\x29\x41\x07\x7d\x51\x11\x85\x30\x56\x15\x51\x08\xb9\x39\x36\xb7\x17\x1c\xa3\x1c\x73\xd7\x36\x03\x9c\xe2\xe2\xc7\x46\x3b\x91\x4c\xa5\xe2\x9e\x17\x69\xea\xa5\x1b\xda\x38\xf5\x47\xf7\x4a\xc7\xc6\x38\x99\x0d\x9d\x04\xe7\x82\x0d\x3d\xb5\x07\xdb\x48\x57\xd7\x01\x3d\xe1\x45\x59\x66\x40\x09\x33\x2b\x33\x24\xcf\xd8\x3e\x82\x54\x33\xeb\x2d\x81\x46\x58\x01\x46\xe1\x07\x66\xcc\x2d\xeb\x0f\x65\xd8\x78\xd0\x0e\x21\x4b\xc1\xf8\xbf\x8a\x1a\x5c\xe8\x1f\xb9\xcb\x83\x33\x67\x9f\x19\xcb\x1c\xd2\x33\xb3\x6d\x04\xdd\x6e\x96\x3b\x8a\x1a\x02\xbf\xdf\x59\xce\x7d\x0e\x19\x28\xd0\xea\x5b\x23\x89\x54\x72\xe7\xf8\x26\x2d\x0d\x0f\x80\x0e\xaa\x04\x43\xce\xd3\x52\xd7\xcf\x72\x5e\xee\xa1\x5b\xcc\x73\x8f\xd7\xec\x3c\xbd\x75\x58\xd4\xa0\x2f\x51\x84\xd5\x46\x5b\xda\x2d\xe7\x88\x70\xab\xf6\x23\x40\xd2\xc4\xae\x83\x73\xb4\x20\xa9\xb6\xa3\x80\xc3\xc0\xcb\xfd\x77\xd6\x52\xdf\x91\x29\xb8\x35\xd6\xf7\x14\xc2\xed\xa1\x2f\x9c\x32\x39\x96\x6a\x90\x1a\x73\xe7\xdc\xa1\xa7\xe2\x8d\x35\x23\x86\xaa\x8a\x62\xff\x2f\x11\x35\x45\x86\x4f\x84\x40\x7f\xe9\x48\x6b\x90\x2b\x73\x17\x10\x63\x36\xc7\x88\xe7\xc6\x62\x6c\x11\xc7\xae\x2c\xc1\x34\x25\xba\xf1\x9d\x01\x20\x3c\x32\x1b\x03\xb0\x6e\xcc\xcb\x82\x4c\x24\x7c\x69\x1c\x17\xc0\x5a\xf2\x92\xa4\x53\xcc\xf3\xf3\x25\x8a\xb0\xdb\x55\xf3\xeb\x0c\x3b\xd6\x17\x59\xb5\xeb\xec\xce\xc5\xa0\x54\xe6\xd8\x2e\x12\x00\x16\xf9\xdc\x1c\x07\x41\x56\x8c\x5d\xa7\x38\xc9\x5d\xc3\x1a\x48\x7b\x11\x01\xb6\x2e\x2f\x06\x06\xa1\x22\x4c\x04\xfd\x4b\xe7\xc0\x16\x06\x98\x71\xd3\xbd\x41\x08\x8d\x63\xf0\x02\x5b\x8e\xd2\x63\xa2\xa5\x9e\x74\xc8\x9b\x57\x96\x7e\x18\x28\x67\x1a\x43\x55\x1d\xc7\x66\x35\x60\xae\x7d\x47\xb6\xd8\x43\x04\x23\xbe\x2c\x16\x60\xad\x7c\x59\x72\x5e\x12\x61\x57\x6a\x81\x2f\xd2\x7c\xe5\x78\x41\xf5\xba\x80\x2c\xe7\xda\x91\x57\x1e\x5c\xbd\x72\xec\x34\xa2\x9a\xc4\xb1\xd3\x40\x58\x49\x8e\x00\xdc\x01\x5e\x59\xfb\x0b\x86\x48\x63\x7f\xc1\x10\x6b\xd4\x81\x11\xc4\x1a\x75\x40\x04\x5f\xd9\xe5\x5f\x7e\xfb\xd6\x1a\x63\xa0\x43\x89\xb5\xc6\x74\x65\x58\x6e\x61\xfe\xba\x07\xd3\x38\x49\x12\x77\x22\x90\x32\xc3\xc1\xc7\x77\x0d\xc3\x81\x79\xec\x95\x63\x37\x11\x0c\x48\x1c\xbb\x09\x84\x95\xad\x2c\x84\xa9\x47\x08\x71\xb4\x5d\x19\xef\x9c\xfb\x43\x67\x10\x9a\xe8\x83\x91\x71\x2c\x49\x98\xda\xbd\x75\x42\x70\xca\x7a\xf5\x5a\xab\xfb\x41\x08\x47\x96\xe4\xb3\x03\x40\x1f\x3a\x66\x11\x10\x0c\xc4\x05\xa6\x12\xd0\xba\x91\x6a\xc8\x02\xcd\x08\x45\x7c\xf5\xca\xab\xf0\x02\xcd\x52\xc3\x7b\xd2\x46\x28\x30\xa1\xb7\xbb\xa9\xc9\x02\xa9\xc3\xce\x40\x6a\x9d\xaf\x16\x7e\xb4\xda\x7e\x74\x3a\xb0\xff\x24\x8b\xa5\x3a\x88\x0d\xa4\x6f\xc0\xab\xc5\x32\x25\xc6\xb9\x02\x6c\xed\x84\x46\x66\x0f\x24\xaf\x70\x98\xf3\x22\xb0\x27\x39\xfd\xd4\x01\x7d\x13\x00\xe3\x62\x3b\x06\x25\x95\x50\xe6\xb0\x04\x54\x85\xe6\x91\x61\x61\xf0\x25\x72\x06\x60\x0a\xaf\x66\x98\x60\x24\x63\xf1\xcc\x98\xad\xa4\x94\x2b\x9f\x8d\x4c\x15\x1d\x2f\xe5\xfc\x0a\x0c\x5e\xd8\xb9\xec\x21\xbd\xd3\x09\xcd\x53\xc4\xe7\x6a\xc7\x84\xc0\xce\x47\x68\x6e\xfd\x35\x10\x98\x6f\x5e\xd1\x5b\x92\x11\x38\x92\xd1\xfa\xb9\x9e\x23\x3a\xc6\xf1\x1c\x0a\xc0\x6f\xf3\xd5\xa9\x55\xce\xa0\xb9\xcc\x2a\x67\x30\x2e\x8e\xe5\x08\x9c\x49\x88\x0b\x24\x40\x51\x12\x56\xb0\x5b\x26\x15\x11\x06\x0d\x64\xd6\xcc\x30\x06\x2a\x6b\x67\x80\x70\xb9\x49\xc4\xac\xe0\xf7\x60\x3c\x26\x15\x39\x06\x93\xdc\xca\x31\xc9\x71\x59\x69\xe8\x33\x42\x1d\xab\x74\x5f\x41\x7a\x95\x85\x63\x1c\x01\xe8\x35\x3b\xe9\x69\x40\x5b\x6f\x92\xae\x42\x6e\xbd\x7c\x73\xaf\x2b\x73\x7b\x94\x1a\x76\x64\xbc\x8b\xc0\x54\x2c\xae\x6d\x7f\x0b\xf1\x40\x1c\x00\xb6\x90\xaf\x8c\x41\x05\xda\x6b\x0c\x2a\x22\xf4\xda\x59\x2d\xe1\x68\xfd\xb3\x0b\xf4\x81\xc2\xc8\xaf\x31\xc4\x1b\xf1\x25\x82\xaf\xcb\xfa\xbe\x60\xf9\xcf\x65\xa9\x25\xb8\xeb\xb3\x9d\x9f\xd2\xaf\xea\x75\x65\x94\x05\x77\x7c\xae\x8c\xb2\x60\xed\xd7\x15\x9d\x51\x54\xed\x73\x65\xe8\xa0\x49\x19\xe6\xb6\x47\x46\x40\xe7\x20\xa0\x45\xbf\x76\x3b\x0d\x9a\xed\x76\x9a\x00\xde\xa0\xe5\xd2\x30\x96\x60\xb4\x6b\x07\x98\x1a\xc0\x18\x17\x05\x93\xbc\x71\x37\x97\x70\xa7\xe4\xda\x43\x86\x40\x63\xba\x13\x32\xb1\xdd\x29\x82\x6f\xca\xdd\x29\x78\xf1\xba\xdc\x9d\xa2\x05\xd7\x33\xae\x2f\xab\x04\xd2\xb9\xe3\x8d\xe3\x31\x29\x7a\xe7\xda\xf1\x98\x14\xe1\x37\xce\xa6\x49\x4c\x84\x6b\x67\xd3\x24\xc2\x6f\x2a\xe3\x21\x58\xf0\xba\x32\x1e\x40\x5b\x19\x0f\x68\x6d\x19\x85\x2b\x21\xe9\xbe\x55\x68\xe0\x25\xca\x63\xd7\x1c\x00\x5c\x94\x7a\x08\x02\xc4\xf7\x9e\xe8\x01\x36\xe3\x48\x5b\xee\xc0\xf6\x7e\x8c\x16\xd3\xd8\x8c\xd2\x14\x68\x1c\x64\x2a\x11\xed\x21\x37\x84\x63\x84\x63\x27\x8c\x54\xbc\xb9\xfc\x17\x2a\x40\xdb\xe9\x64\x92\xd4\x6e\x09\xfb\x90\xc3\x32\x45\x11\xb6\x86\x24\xa8\x4b\x8a\xd4\x1d\xa8\x7b\x24\x8b\xe5\x5c\x79\x87\xc9\x2f\xc4\x01\x90\x28\x79\x30\x06\x63\x84\xe3\xa3\x05\x3b\x98\x63\x27\x8c\xa1\xe7\x6c\xc7\x05\x8a\xde\xe6\x10\x2b\x44\x0b\x71\xa9\x02\x0a\x24\x5d\x6a\x44\xd7\x64\x69\x5c\xca\x34\x8d\xd9\x3c\x8c\x61\xf3\x20\xa0\x5c\xef\xb1\x91\x6c\x4f\x8e\x88\x4e\x06\x53\x3f\xdd\x77\x11\x99\xb5\xd6\x24\x54\x49\xda\xf7\x12\xa1\x58\x85\x33\x03\x98\x7d\x47\x3a\xb5\x7b\x23\xe0\xc4\xf4\x99\x03\x40\xc3\xed\x1d\xb5\xe1\x10\x2a\x33\xe5\x52\x9d\xfe\xaa\x03\x22\xfa\xa3\x0c\x5c\xeb\xf5\x76\x34\x55\x40\x96\xea\x11\x1d\x25\x06\x2a\x34\x24\xaa\x76\xec\x1e\xba\x81\xe5\x31\xf5\x10\x0c\x34\xee\xe4\x85\xbc\x3d\x24\x92\x88\xee\x92\x2e\xc8\x9a\x34\x02\xa7\xc0\xaf\x90\xde\x4c\x75\x99\xd8\x4c\x75\x08\xc6\x91\xbe\x49\x0b\xa2\x22\x75\xef\xd0\x45\x1a\x30\xca\x38\x74\x4b\xcc\x63\xe7\x1c\x73\x28\xa1\x22\xb3\x58\x4f\xe6\x6c\x34\x6e\x70\xd1\x36\xb7\x78\xe1\x5a\x4c\x6a\x76\x82\xa2\x54\xf0\x61\x10\xfc\xfe\x4c\xf4\xa9\x3e\xa3\x52\x33\x45\xfb\x37\x98\xd3\x68\xc5\xc9\xa5\xad\x87\xe4\xdd\x92\x93\x85\x01\x51\xd9\xf3\xc2\x50\x56\x1c\x1c\xc0\x09\xdb\xe4\x6e\x99\x4d\x32\xa4\x48\x77\x80\x49\x4a\xf4\xfc\x95\x1d\x2e\x60\xe9\xc4\x50\x6a\xc2\xc0\x44\xc2\x49\xb8\x77\xe6\x0e\x47\x27\x3a\xb2\x72\xe4\x3e\xae\x44\xea\x0a\x76\x55\xcc\xf3\x94\x69\xb0\x0b\x1b\x65\x51\x6b\xe5\x6c\x60\xef\xa6\xc9\x83\x7f\x27\x4a\xfb\x45\x86\x60\x34\x16\x11\xa6\xb5\xc6\xab\x61\xa8\x62\x2a\xfb\x38\xd8\x29\x6f\x74\x58\x31\x31\x95\x34\x71\xaf\x92\x5b\x56\xee\x6c\x88\x52\x15\x34\x91\x53\x37\x32\xbb\x29\xc8\xcc\xdb\x52\xc6\x6e\x55\xbc\x9e\x85\x7d\x9a\xf2\x9d\xf0\x9c\x12\x7a\x16\x57\x0c\x88\xba\x16\xf2\x3d\x22\x74\x8f\xe6\x73\x8e\xb1\xe7\x70\x35\xd5\x49\xd4\x75\x3e\x3b\x6a\xa0\xdc\xb8\x51\x2a\xc9\xb4\x53\xc2\xdd\x0d\xe4\x54\xd7\x4a\x7a\xc7\xf8\xb5\x08\x4d\x5c\x85\x7d\x02\x13\x55\x61\x9e\x51\x29\x4a\x8f\xb8\xae\x5e\x25\x41\xc7\x8b\xf0\x18\xe4\x48\x1f\x90\x4b\xc9\x86\x8d\x55\x54\x76\xd0\x8d\x37\xaf\x1d\xcb\x8f\x1c\x5a\xdf\x3c\x2c\x59\xd1\x31\x0f\x8f\x24\x50\x8a\xb7\xe6\x61\xf0\x4f\x4c\x7d\xf3\x70\x68\x21\x6d\x5a\x83\x6f\xe9\xa6\x38\xb3\x75\xb3\x82\x1e\x67\xd6\xfe\x3c\x56\x74\x99\x6f\x2d\xeb\x2b\xd4\x31\x8e\x0d\x14\x84\x6f\xcc\x81\xab\x6e\xb1\x00\x2d\x2a\xbb\xe5\x18\x67\x19\x8c\xa9\x67\xb7\x94\x29\x44\x5c\xc5\xd4\x39\x50\x11\x3e\xfd\x50\x17\x6b\x0b\x1d\x6a\x4a\x6b\xf7\x44\x48\x75\x41\xe6\x58\xdf\x3a\x8a\xac\x6a\x07\x8d\x55\x8c\x67\x04\x05\x99\xec\x79\x82\xc2\x60\x27\x65\x99\x72\x5c\x56\x06\x61\x40\xca\xca\x20\xac\xcc\x33\xaf\x11\x33\x63\xe0\x86\xca\x3a\x8e\xa3\x50\xf4\x1c\xf1\xd8\x13\x50\x73\xc4\x0b\x8f\xef\x04\xa0\x17\x7a\xb8\xe0\x97\xce\xa7\xa9\xb9\xe0\x0a\x73\xc6\x51\x26\xa1\x06\x8e\x32\x09\x61\x47\xb7\x91\x22\xcd\x74\x3f\x34\xcd\x1c\x26\x00\x17\x82\x3f\xa4\x1e\x09\xe9\x11\x79\x5c\x5e\x65\x24\x07\x38\x95\x1f\x83\xd1\x36\x4d\xad\x33\x10\x38\xd7\x1d\x2f\x88\xb3\xdf\x86\x2e\x73\x11\xd8\x4a\xa6\x0b\x56\x64\x39\x8a\xe6\xda\xf9\x70\x6a\x51\x0f\x71\x0e\x03\xc6\x2a\xec\x32\xaf\xc4\x8c\x59\x1a\xda\x69\x2d\xad\x23\x19\x7b\xe3\x47\x3b\xd3\x54\x12\x38\x87\x01\x30\x7a\xcc\x51\x50\x23\x09\x58\x83\x20\x8c\x17\xb3\xda\x91\x4a\x22\xe4\x9a\xd7\x5d\x43\xd8\x92\x6e\xf4\x52\xd4\x11\x95\x14\x23\x27\xab\xf2\x4a\x32\x04\x1f\xd8\xc7\xdd\x1a\x87\x4e\xa6\xd5\xb4\x48\xe5\xbc\x40\xcb\x4c\x0b\x93\x61\x12\x29\xb4\x4a\x3f\x50\xb9\x55\xcb\xd1\x31\xd5\x34\x30\x16\x8c\x2d\xcb\x2e\xfa\x52\x33\xd5\x11\xae\x27\x20\x92\x15\x30\xbe\x28\x63\xa9\xdd\x57\xb6\x41\x5d\x49\x56\xda\x06\xc9\x91\x70\xdc\x54\x3a\x12\x71\xef\xe9\xc3\x8e\x3a\x65\x77\xf6\x22\x18\x18\x5a\x52\x76\x27\xcd\xac\x57\x50\xde\x1d\xe6\x15\xed\x69\xac\x63\xaa\x8b\xbd\x1c\xa6\x2f\x8a\xe7\x23\xd9\xb7\xce\xf5\x7a\x03\xe9\x47\x54\xc0\x73\x22\x95\xcd\x6c\xa8\x9f\xda\x8c\x3f\x96\x62\xd9\xb9\x67\x21\xf5\x02\xee\xcf\x48\x98\x46\xdc\xe8\x99\x4a\x3f\xe0\xee\x64\x84\xd6\xeb\xab\x19\x81\x54\xe3\xb9\x99\x9b\x1d\x58\xff\xd2\x0c\x59\x25\x57\x6e\x45\x2a\x5b\x46\x58\x75\x1d\xeb\x0b\x88\x2c\xab\xd0\xc2\xca\xeb\x07\xd3\x92\x28\x4e\xdd\xa3\xa2\x58\x01\x66\x25\x95\xf5\xb8\x99\xea\xfd\x43\xe6\xa8\xdd\x23\x0d\x18\xb5\x1b\x24\x8a\x6b\x9f\x06\x23\x45\xea\x21\x50\xa6\x73\xf8\x34\x90\x61\x7b\xf8\x04\x0d\x15\x1d\xfe\x8b\xc8\xed\x42\xff\xc8\x5d\x89\x98\xe6\xe5\x15\x10\x94\x1f\x57\xef\x49\x3d\x4d\x48\x66\x9a\x3a\xc7\x4c\x32\x95\x77\x40\x25\x93\x19\x01\x09\xfa\xab\x08\x63\x57\xff\x49\x1d\xf7\xc9\x48\x36\x86\x3b\xe7\x5e\x90\x6d\xc1\x63\x77\x9b\x81\x24\xe6\x7a\x55\x02\x59\xf9\x08\x6a\x64\x75\x01\xe7\x08\xca\xa2\xda\x26\x7c\x0f\x0f\xf8\xb8\xfe\x31\x1d\x19\xd6\xda\x7c\x27\x50\x61\xac\x1f\x0c\x91\xd0\x89\x16\xd0\x63\xb0\xcf\x2e\x90\xd9\xfa\x0e\x64\xd0\xc8\x1b\x17\x71\x54\x74\x38\x2a\x94\xa8\x2b\x34\x7a\x06\x35\x3a\x3b\x92\x05\xf0\x6b\x3d\x2d\xfa\x70\x01\x73\x11\x59\xd3\x28\x82\xd5\xf8\xc4\xee\xfb\x22\x20\x30\xfb\x3e\x08\xba\x97\x6a\xa0\x18\xeb\x8f\xd9\x01\xdb\xc7\x02\xa3\xac\xe0\x38\xf6\x1e\x60\x12\x6c\x77\x82\x63\x52\x2c\x9c\x93\xa5\x00\x5c\xc5\x4e\x70\x9a\x12\xea\xf8\xb5\x88\x51\x3e\x29\xbf\x52\x02\x1d\x58\x56\x1e\xa0\xb8\xb9\xee\x21\xb0\xd3\x2d\x48\x24\x7d\xac\xee\xc1\x2c\xbe\x20\xb1\x7d\x96\x67\x41\x62\xcb\xd6\x60\xf2\x32\x17\x3c\x3b\xe0\x72\xb4\x20\xb1\x77\xf9\x17\xae\x08\xe8\xe7\x96\xc0\x6d\xd8\xbd\x34\x00\x73\x1b\x00\xf3\xbc\xd8\xc8\x20\x85\xee\x52\x51\x47\xb8\xcb\xea\xdc\x5c\x05\x47\x8c\x45\x1a\x99\xeb\x75\x53\x08\xc7\xe6\x4a\x10\x8c\x35\x5d\x96\x53\xb0\xd8\x38\x78\x76\x60\xe4\x4f\x2a\xd2\x1e\x86\xa4\x22\xed\x61\xa4\x97\x5e\x5e\x15\xc9\x25\x5a\x73\xe2\xb8\xbe\x48\xaa\x5c\xbd\xbd\xa4\xdf\x52\x3b\x91\x0d\x0b\xba\xf0\x34\xd2\x42\x87\xa6\x32\x24\xe6\xb8\xb9\x6d\x07\xb7\x0c\x17\x45\x09\xa0\x68\xaa\xdd\x1b\xe4\x55\xa4\xb7\xae\xf5\x0c\x56\x2b\xea\x21\x3d\x40\x9c\xc7\xbe\xe0\xf6\x47\x07\x50\x73\xbc\x36\x96\x41\xfb\xaa\x14\x3c\xec\x26\xcb\x73\x5f\x93\x72\x61\xd5\xb0\x20\xd4\xa9\xdd\x07\xa4\x24\x94\x17\xe6\x90\x62\x00\xfe\xcf\x0a\xd2\x1b\x4d\x38\x13\x03\xcc\x23\x9a\xca\x63\xe8\x7b\x78\x27\x83\x7a\x6f\x18\xd8\x0a\xf8\x2f\x17\x58\xdc\xb9\xc0\x28\x3a\xe3\xad\x6b\xd8\x01\x07\x3e\xea\x21\x23\xa0\x71\x0c\x3b\x60\x2d\xa5\x1e\x32\x00\xc4\xb9\x6b\x3b\xd4\x80\x7b\xd9\xd6\xa9\x82\xbd\x01\xd9\x81\xec\x8d\x44\x88\x21\xda\x48\x04\x08\xba\x12\x01\x86\x0f\xdb\xa3\x99\x31\x1c\xf7\x08\xc4\x98\x06\xa1\x6c\xec\xd8\x06\x87\x9a\xc2\x2a\x09\x12\xd2\x02\x17\x7a\x11\xbb\xfe\x9b\xa6\xaa\x6f\xf1\x0c\xe5\xe4\x16\x57\x65\x0b\x9c\xdf\xea\xe8\x8b\x39\x89\xae\xbf\x15\x4b\x1f\x8d\x7c\x8f\xf9\x6a\x23\x81\xff\x26\x0e\xf0\x23\xce\xb0\x59\x51\xc0\xcc\x4d\x3d\xaf\x52\xa7\xd6\x59\x8e\xe3\x4d\xfe\x2a\xd2\x95\x43\xc6\xfb\x5b\x37\xb9\xce\xbe\xc5\x77\xfa\x24\xfb\x2f\x0a\x05\xb8\x7e\xa3\x3d\x83\x64\x2e\xf4\xb6\x2c\x4c\x85\x34\xa6\x65\x61\x0a\x6d\x72\x1c\xbc\x2c\x3b\x18\x1f\x30\x70\xbd\xa5\xd6\xb1\xcb\x84\x6f\x36\xa6\x2a\x39\x78\xb9\x51\xd9\x06\xd4\x71\xa2\x72\x48\x1d\xed\x08\x18\xdb\x71\x7a\xb1\x82\x60\x66\xc0\x44\x06\xb9\x17\x7e\x91\xdf\x3a\x89\x74\xd6\x8e\x1b\x07\x2c\x85\xd4\xf1\xe3\x88\x24\x60\x94\x6b\x04\x37\xec\xa8\x56\x07\x25\x03\x10\x73\x3c\x16\xc9\xa0\x96\x33\xb0\x63\xa0\x86\x39\x24\x3f\x39\x5b\x4e\x88\x76\xb6\x9c\x10\x76\xcd\xe9\x12\x70\xaa\x03\x13\xcd\x59\x20\xa0\x2b\x1c\x5b\xa8\x6d\x95\x59\x73\xe1\x65\x3d\x5a\xb1\x76\x42\xd6\x65\xcb\xa6\xca\x7f\x93\x0d\x4e\x76\xcd\x46\xf3\x9c\xec\x24\x6b\xc8\xd1\x25\x3a\x96\x1c\xb7\x5e\x25\x83\x8e\x1b\x95\x6d\x46\x0d\xeb\xcb\x3a\xd8\x5d\xb7\x43\xe5\xf0\x07\xb0\xbf\xa3\x97\x5a\xfe\x48\x73\x2f\x27\xab\x53\x76\x30\xd2\x80\xee\x37\xd8\xb5\xd2\x63\xcb\x32\xc8\x96\xe6\xe8\x0b\x30\xb1\xd8\x33\x8e\x91\x12\x75\x01\xc8\xa9\xb7\x8c\x02\x46\xe8\xcc\x48\x0c\xb5\x0e\x54\x56\xe5\x04\xe8\x8d\x0f\x0b\x2c\x26\xce\x83\x5a\x50\x0f\x7d\x55\x30\x92\x71\x95\xd7\x10\x3a\x0a\x77\xaf\xb9\xc3\x66\xe6\x2d\xcb\x1f\xbd\x1c\x37\x90\xf1\xa5\x3b\x26\x63\x85\xba\xc6\xa6\xc0\xc1\x7c\xb7\x7f\x2b\xcc\x58\x7e\x54\x15\x39\x2c\x2f\xc9\xb5\xc4\x43\xdd\x42\x40\x8a\xd8\xa8\xaa\x6f\x9f\x5b\xd4\x23\x42\x73\x03\x89\xeb\xed\x37\xf6\x62\x36\x38\xfc\x6d\x48\xef\x19\xbd\xd4\xd0\x6c\xf4\xec\x71\xd3\x56\x5d\x7c\x2c\xf3\xb0\xdc\x1e\xc2\x8f\x35\xe0\x9e\xc2\xfb\xa4\xf6\x30\xde\xc7\x6f\x51\x25\x13\xf3\x24\x28\x18\x32\x24\xa4\x6f\x89\x24\x6a\xb0\x1f\x33\x3b\xbb\xb5\xdf\x60\x7f\x86\xf9\x51\x8a\x72\x1b\x88\x23\x1d\xef\xcf\x56\x05\x79\xe3\x1c\x58\xbc\x64\xbc\x1c\xd9\x18\x6f\xc5\xf3\x2b\xb7\xd1\x44\x59\x26\xf1\x86\x4d\xb1\xe2\xe3\xeb\x2d\x42\x1e\x23\x6f\x5a\x78\x11\x0a\xdd\x01\xb0\x6b\x40\xa4\x01\x3b\x22\x16\x32\x23\x82\x0d\x64\x46\x44\x4d\xcf\x33\x8e\x23\x1c\x9b\x2d\xf1\x28\xf0\x61\xb7\x99\xc8\x1b\x26\x4d\x51\xee\x8d\x0e\x56\x59\xbc\xc3\xb7\x98\x67\xb8\x34\xbf\xd5\x48\xc9\x5b\x9c\x15\x4e\x88\x03\xb7\x08\x8f\x48\xe7\x3e\xdd\x10\xe7\x15\xaf\x1a\x26\x2f\x5f\x9c\x17\x53\x7b\x6b\x6c\xe4\x35\xc0\x25\xf0\x32\xe8\xf8\xf1\x4b\xd1\x0a\xf3\x82\x50\xb0\x29\x0b\x49\xe2\x65\xd2\x55\x14\x5e\xf9\x1d\xb3\x18\x98\x28\x37\xd1\x48\x67\x5b\x44\x11\xc6\xb1\x19\x93\xd0\x87\xdd\x31\x99\xfa\xf5\x51\x14\xd5\x31\x29\x65\xe1\xf1\xa7\xdf\x2b\x7e\x7b\x47\x5d\xbf\xca\xd5\x96\x8e\x94\x58\xf3\x04\x73\xe8\x60\x9e\x24\xea\x39\x11\x65\x19\x0b\x1b\x02\x1d\xe9\x65\xa7\x8a\xd8\xb0\x88\xc0\x6a\xbb\x44\x1c\xa5\xa9\x71\xfc\x87\x95\x85\x2e\xfd\x95\x86\x3a\xd7\xb9\x50\x12\x9b\xc7\x23\xa9\xf5\x81\xeb\x04\x76\x1a\xd2\x25\x4b\x9d\xa7\x98\x64\x31\xdc\x9d\x24\x74\xc9\xa3\x02\xbb\x3c\x4f\x9d\xf7\x53\x46\x06\x30\xb6\x6b\x67\xfa\x88\x88\x0d\x28\x47\x5c\xdf\xab\x1b\x77\xbb\x3e\xae\x35\x27\xd0\xf9\xb8\xa3\x94\x25\x9a\xc2\x28\x57\x8e\xfa\x52\x3d\x00\x85\xf4\xef\x2a\x4a\x94\xcc\xc5\xd1\x48\xa6\x1a\xc0\xee\xbc\xa2\xe6\x89\x1c\x60\x4a\x9a\x45\x4e\x1f\x28\x04\x6f\x60\xcd\x8a\xab\xcb\x58\xd2\x96\x76\xff\xb0\x71\xcb\xe6\x8c\xe7\x25\x1d\x47\x82\x1b\xc7\xd9\xd9\xdb\x84\x2a\x8c\x5d\x6e\xa3\xee\x5b\xc1\x0a\xa9\xe4\x5e\x66\x96\xec\xc6\xbe\x43\x24\x05\x02\x40\x66\xab\x8c\x65\x4d\xf5\xdb\x45\x9d\x51\x4f\x85\xf5\xde\x3f\x72\xd6\x51\x27\xab\x91\x06\x36\x0a\x05\x15\x61\x6a\xeb\x52\x1b\x7d\xb6\x94\x75\x54\x1a\x10\x31\xc1\x6f\xaa\x23\x40\xcd\x33\x4a\x1d\xb0\xd0\x8b\xb0\xa9\xeb\xc0\x23\xc3\xee\xc4\x16\xc0\x46\x69\xa0\x22\x6c\x5d\xc7\x2e\x78\xb3\x21\xeb\xdc\x5e\x21\x81\xf9\x6c\x9f\x9a\x86\x17\x16\xa8\x0d\x27\x32\x6c\x4f\xe4\x64\xfa\xca\xd3\xb4\x4a\x6f\x76\x23\x4c\x7d\xa4\xe2\xba\xe1\xc5\x5a\xc5\xda\x5e\x8c\x4d\x05\x8b\x87\xb1\x2e\x01\xcb\x1b\xeb\x92\x0c\x09\x6e\xfb\xff\xc9\x5f\x58\x5f\xa4\x94\x77\xbe\x69\xe1\x5c\x0f\x06\x1d\xe8\xd6\x79\xf4\xc9\xf6\xdc\xad\xf3\x4c\x1d\xa8\xd4\xf4\xf6\xd0\x41\xa0\x98\xf7\x2e\x0d\xac\xde\xef\x5d\x1a\x98\xae\xb7\xce\xb5\x28\x27\x77\x79\x45\xc3\x01\x5e\x3a\x9e\x41\xc0\xa7\xb7\x9e\x73\x32\xe4\x7e\x6b\xf7\x79\xe3\x40\x26\x73\x5c\x5e\x9c\xcc\xa4\x0d\xde\x03\x5c\x53\xb8\x13\xc1\x9d\x1c\xbb\x12\x71\x49\xdd\x2a\x3b\xaf\x7a\x46\x16\xbe\x73\x2d\x38\x5d\x85\x18\x41\x08\x3d\x7e\xe7\x58\x70\x06\x9a\xc2\x0a\x3b\x09\x51\xc7\x1e\x22\x86\xe5\xd4\x3a\xae\xc3\x53\x1a\xcc\x86\x13\x19\xf6\xdf\x1c\x3c\x35\xbe\xeb\xe0\x0a\xc2\x4c\x30\xd1\x41\x4d\x8d\x80\xda\xd8\xa9\x30\x44\x1b\x3b\x15\x04\xcb\x4f\x14\x9e\x3a\x4f\x3b\x85\x70\x27\x98\x79\x48\x08\x88\xde\xc5\x23\x98\x4a\xf6\xb9\x6b\xf9\xa2\x21\x8b\x33\x66\xbc\xb5\xc0\x08\x7a\x7a\x64\x5d\xc9\xc1\x39\x82\x61\x07\x80\x46\x26\xf6\x3e\x09\x9c\x2b\x9d\x96\xed\x33\x90\xac\x6c\x9f\x11\x99\x5b\x57\x63\x79\xdf\xe6\xd4\x3a\xcb\xc3\xc0\x31\x1b\x4e\x64\x58\x1f\x94\xc1\xc1\x14\xb3\xd7\x4f\xc6\x60\x1e\x67\xf3\x85\x9a\x62\xb0\x2c\xb0\xd2\xa3\x7a\xcc\x7d\x86\x0d\x01\xe0\x54\x5d\x52\x38\x8f\xd2\x8d\xc1\x63\x91\x59\x77\xf7\x40\x76\xbc\x39\xad\x03\x87\xca\x53\xc7\x93\x1e\x5e\xfa\x64\x2e\x00\x03\xb3\xc0\x33\xe4\xd5\xcb\x01\xe0\xe4\xe8\x14\xcc\xfc\xe6\xfa\x7c\x02\x34\x2e\x34\x55\x90\x19\x9a\x81\x0c\x97\xde\x94\x3c\xad\xd8\xcf\x81\xae\x8c\xc2\x36\xd8\x39\x69\x85\xc3\x81\xd3\x25\xa6\x8f\xbd\xea\x18\xb9\xf1\x5e\x0c\x30\xd1\x12\x9b\xa7\xec\xc0\xcb\x9b\x2d\x4b\xaf\x5a\x32\xf7\xe5\x38\x18\x68\xbd\x5f\x01\xef\x5e\x66\x96\x4c\xc8\x8e\x9b\x6f\x67\xc4\x32\x88\x8d\x11\xbf\xa7\x01\x96\x94\x20\x79\x31\x0a\x6e\xd7\x30\x1e\x03\x1b\xdc\xcb\x31\xe6\x64\x66\x2f\x1b\x40\x7f\x70\xe3\x2e\xd3\x97\x61\xef\xe3\x1c\x43\x80\xcc\xb7\x39\x80\x07\xbc\x07\x3d\x4f\x2b\x3a\x08\x94\xe3\x9c\x35\xf4\x80\x4a\xdf\xb5\xb9\x07\xb7\x0a\x66\xc3\x89\x0c\xeb\x3b\x9d\x1d\x38\x44\x3e\x75\x56\x31\xe8\x33\x67\x15\x53\xe1\x05\xce\x90\x39\xcc\x1e\xc8\x34\xce\xf1\xf6\xd0\x50\xe9\x7c\x61\x5c\xb5\x87\x39\x88\x35\xa6\x43\xb0\x8f\x66\xb7\x66\x02\x75\xc1\xf8\x7d\x7a\x8b\xad\x33\x94\x64\x77\x80\xb8\x31\x16\x77\x63\x17\x34\x0e\x7e\xf2\x91\x35\x01\x9f\x21\x8e\x69\x3e\xc7\x99\x36\x27\xca\xfb\xc2\x42\xe3\x92\x83\x32\x50\x21\x57\xff\xea\x4b\xac\x14\xb4\x4f\x1a\x80\x34\xf5\xf5\x6e\x09\x58\x85\x1b\x3e\x27\xc9\x9d\x97\xc6\x14\x66\x85\xa8\x98\x43\x4b\x2b\x44\x21\x88\x79\x04\x32\xe2\xff\x2f\x03\x04\x6e\x27\xb4\x65\x60\xa1\x3d\x1e\x03\xb8\x3b\x64\xb9\x5c\xbe\xdf\xbe\xc4\x3c\xc7\xfa\xb1\xfa\x00\xee\x92\x9c\x95\x25\x1f\x54\xbb\x2c\xf9\xe0\x8b\xa4\xf6\x29\x5c\xe8\x0f\xfb\x14\xae\x0a\x6a\x57\x76\xe0\x85\xe5\x5c\xbd\x58\x6a\x4e\xb2\x96\x73\xf3\xe6\xe9\x00\x4e\xf7\xcf\x4c\x7e\x50\x57\x93\x9d\x0c\xe5\xd1\xbc\x7c\x23\x7f\x69\x8b\x80\x22\x53\x44\xf5\x13\xbe\xf2\x6a\x98\x44\xcc\x6d\x31\xac\x20\x7d\x8d\x5f\x13\x15\x99\xf3\x6d\x14\x58\x5c\x05\x66\x4e\x19\xb1\x02\x1c\x9a\x8e\x82\xea\xbb\xf5\x6d\xf5\x33\x56\xea\x8f\x7c\xa6\x0c\x10\x73\xe2\xd8\x57\x88\x79\xf4\x15\x86\x35\x2d\x32\xf3\xa4\xee\x3d\x3c\x69\x20\x68\x16\xd4\x0f\x5b\x0e\xea\x0c\x14\x94\xdf\x69\xff\x39\x58\xc2\x97\x0b\x9b\xe2\x8c\xc9\x3b\x46\xa2\x99\xe6\xa2\x11\x30\xaf\x58\x49\x9c\x4d\x1c\x54\xa9\x22\x55\x65\x16\xd6\xfe\x39\x06\xaa\x42\xbe\xa3\x77\x0f\xfe\x95\x4b\x6e\x4e\xc3\x40\xe8\x9e\xe9\x4e\x01\xa9\x68\xb6\x85\x70\x41\xd6\xdd\x15\x82\x4f\x9a\xd8\x03\x7a\x1e\x4f\x90\x85\xb3\x55\x54\xc9\x70\xa4\x9e\xdb\x74\x13\x97\xac\x33\x40\xba\xd9\x34\xe3\x44\x54\x76\xff\x5e\x56\xde\xd6\x1f\xab\xa2\x9d\x4d\xaa\x42\x7c\x2f\x2d\x58\x20\x00\xb6\xba\x3d\xac\xdd\x80\x39\xde\x57\x23\x89\xf9\xb9\xe9\x8d\xc6\xb4\xab\x52\x38\xe6\x72\x59\x03\xe7\x3d\x79\xe0\x13\x17\xe8\x6a\x8a\xcc\x1b\x22\x6e\xfd\xca\x54\xed\xe8\x91\x5f\xb3\x6a\xbd\xcc\x43\xba\x81\xec\x2f\xf7\x19\x5d\x39\x31\x38\x4b\x50\x6a\xa4\x6b\x07\x2b\xcc\x6a\x13\x5d\xd0\x8b\x04\x96\x15\xda\x5b\xa0\x2b\x25\x86\x79\xf2\xab\x03\x27\x94\x67\x9c\x2d\x19\xcf\x09\xa3\x66\x20\x4a\xb8\x42\xbb\x43\x95\x3a\x67\x2e\xdd\x92\x57\xba\xa9\xe0\x46\xf8\x82\xd7\xce\x59\x65\x4d\x03\x86\xac\xec\xab\xfb\x40\x6b\x64\x0d\x74\x86\x09\xc2\xea\xb8\x2c\x68\x64\x37\x2f\x02\xf9\xad\x2c\x15\xc5\x1c\xbf\x29\x4b\x45\x51\xaf\x9b\xd2\x65\xc8\x9b\xca\x1c\x13\x5d\xf6\x9b\x33\xc7\x04\x1b\xdf\xb8\xa3\x0e\xcb\xf7\x6f\x95\xd6\x40\x6e\x95\xd6\x08\x99\x70\x53\xa0\x1c\x73\x4a\xac\xbb\x35\xdc\x9a\x12\xb0\x33\xe3\x25\xa5\xf4\xe5\x79\xaa\x7f\xdb\xf7\x66\x12\x80\xa4\x2e\xfd\x57\x5d\xd4\xe0\xf2\xf4\xc2\x04\xb8\x7b\xe7\x46\xf4\xab\x5d\x4e\x3b\x5d\x69\x63\x11\xb2\xe3\x9d\xeb\x27\x00\x8a\x11\xf7\x90\x3e\x20\xb1\xbe\x1d\xdb\x81\xc6\xf3\xd2\xd5\x9c\x2e\x60\xd6\x67\x71\x0c\x19\xdb\xf0\x54\xc5\x9b\x4b\x36\x1d\x05\x98\xd7\xd7\xfa\x0a\xb0\xb7\x6e\xc6\x80\xe8\x0b\x35\x53\x99\x05\x37\xa2\x6c\x3c\xec\x2b\xc4\x5c\xb1\x31\x80\xb9\x20\x03\xfe\x41\xbe\x59\x4a\x01\x2a\x0d\x54\xe4\x9d\x73\x86\x09\x09\x9c\x5d\x59\x47\xd1\xdb\x3b\x37\x58\x21\xf6\xce\x0d\x52\x88\xbd\x73\x13\x29\xc4\xdc\xb9\xe9\xe9\xba\x39\x77\x6e\x7a\xaa\xe8\xdc\xdc\xa7\x19\x28\x22\x7b\x0b\x47\x57\xd7\x1a\xc7\x00\x70\x2f\xe1\x40\xe9\xde\xb5\x1c\x59\x7a\x4e\xf4\x74\xec\x0e\x34\x40\x1d\xaf\x0b\x48\xe7\x5e\xc3\x81\xac\xdd\x6b\x38\x82\xbf\xde\x39\x00\xf8\x0f\x71\xf7\x5e\x0e\x54\x4f\xdf\xcb\x79\xd0\x01\x11\xfd\x49\x06\xec\xbd\x9c\x48\x01\xce\xbd\x1c\x6c\x20\x7d\x2f\x07\x6e\x8c\xbc\x73\x5d\x33\xc0\x97\x9e\x7b\x08\x30\x97\xeb\x9a\x01\xfa\x34\xf7\x90\xa1\x44\xec\xbd\x1c\xe0\x26\x79\x2f\xe7\x01\xd2\x9b\x7b\x72\xd0\x28\x7b\x4d\x0e\x82\xce\xbd\x1c\xc8\x29\x4e\xdd\x4b\x37\x90\x97\x7b\x55\x27\xd6\x00\xf7\x11\xeb\xa3\x08\x1d\x85\x91\x79\x67\x2e\x52\x61\xe7\x52\xf3\x54\x41\xee\xa5\x66\x4d\x66\x06\x4d\xe4\xfb\x0e\xfb\xd1\x7a\x09\xe8\x83\xe9\x85\xab\x07\x8b\xc1\xea\xf2\xee\xe8\x85\x13\xd8\x78\xa0\x31\x75\x62\xaa\xef\x8d\x39\xb1\x97\xcb\x4a\xbc\x7c\x47\x91\x7b\x7e\xec\x50\x07\xcf\x8f\x1d\x1a\x56\x16\xbc\xc0\x5b\xf6\x12\x3b\xb4\xc4\x71\x52\x07\x39\xe4\x38\xa9\xc3\xce\x9b\x3b\x4e\xea\xa0\x62\x72\xcf\x49\x5d\xe4\xf1\x4e\x39\xb2\x05\x5d\x24\x53\xe8\xa0\xca\x80\x99\xcb\x9a\x20\xfb\xc0\xb1\x76\xc3\xd5\xa7\xb1\x89\x2c\xdd\x7d\x82\x69\x5c\x31\x4a\x77\x3c\xf2\x0a\x8a\xca\x0f\xb8\x5a\xda\xb2\xd3\x2f\xbc\x7a\x6c\x0b\x70\xef\x3f\x75\x75\xc2\xd2\x05\x28\x53\xd7\x8d\x37\xa0\x86\x36\xb6\x7a\x05\x0a\xb6\xba\x26\xb6\x72\x2b\xa5\x5f\x8d\xd5\xd5\x34\xad\x78\x5e\x19\x69\xe7\x2a\x91\xe3\x63\x29\xfb\xdf\x89\x33\x3e\x95\x72\x24\x45\x4c\xf5\x22\x54\xcf\x8d\x2a\xdf\x4f\x8a\x74\xe4\x86\x8b\x4d\x63\x1d\x57\xb9\xb7\x34\x36\x6d\x2e\xdf\x4e\x1a\x38\x11\x6a\x76\xa0\x8e\x83\xf9\x5d\x67\xda\x5a\xbd\xa0\x14\x99\x44\x1b\x0e\x08\xcb\x71\x5a\x1f\xea\x96\x23\xbc\x3b\x4a\x66\x28\x36\x5c\x52\x82\x17\x30\x54\x64\xa5\x9a\x91\x8d\xab\x8c\x6f\xaf\x1c\xa7\xa5\x15\xd6\x11\x95\x24\x5d\x3f\xc6\x1f\x42\xfd\x7c\xa4\xbc\x77\xc3\x49\x56\x79\x21\x0f\xc4\xa0\x7b\x2d\x04\x06\x38\x75\x9c\xca\x61\x50\x53\xe3\x42\x0e\xf2\xa5\x72\x53\x23\x34\xa8\x87\x50\xe7\x53\x23\xb0\xb6\xb8\xd7\x28\x62\x09\xd8\x6b\x14\x92\xc2\xb9\x46\x01\x92\xde\xbd\x0a\x30\x90\x40\x49\x19\x84\x2e\x70\x94\x41\x99\xb1\x7b\x09\x40\xe6\xec\x59\x49\x60\xfc\xc4\xae\xcc\x7b\x62\x62\x0c\xa7\xf9\x5c\x16\xd9\x54\x3f\x8d\xb5\x11\xae\xf4\xf1\xa5\x7f\x92\x07\xfa\x88\xeb\xaa\x0f\xd3\xbf\x7a\xe9\x0f\xd8\xd3\x73\xb5\x87\x31\xa9\x28\xa3\x20\x1f\x1c\x57\x7b\x99\xce\xac\x5b\x20\x25\xfd\x20\x97\x8e\xf3\x9f\xe4\x4f\xbb\x08\x8e\x35\xc0\x3d\xc4\x73\x61\x87\xd1\xf5\xe6\x0a\xd4\xca\x79\xcb\x77\xac\xc2\xd8\xe5\x7c\xee\x3e\xee\x3b\x52\x80\xf5\x3f\x1a\x83\x0f\xd5\xbb\x22\xc5\x87\x38\x45\x2b\xfd\x71\x85\x31\xd8\xb7\x79\x91\xba\x2e\xea\x90\xfa\x5e\xb7\x56\xa4\x3b\xf7\xd4\x5d\x51\x9f\xcc\x43\x44\x8f\x64\x53\xa7\xa1\x40\x62\x1d\x4c\xa1\x42\xe7\xae\x86\x02\x96\xce\xcc\x43\x42\xa0\xd1\x29\x22\x88\x57\x2d\x04\x07\x7d\xf7\x20\x12\x96\x50\xf7\x1c\x12\x82\x66\x73\xd8\x83\xac\x5c\x65\x07\x4b\x7a\x07\x49\x80\xc6\xbe\xe2\xd0\x97\x25\x3a\x80\x2c\xc3\xd9\x83\xca\x56\xd9\x3d\xe8\x40\x86\x9d\x3d\xe8\x18\x10\x9f\x1d\xbb\x80\x39\x1b\x3d\x59\xb2\x51\xae\x42\x88\x37\xca\x15\x04\x63\x96\x6b\x43\x0d\xd2\x80\x66\x87\xbe\x0a\xeb\xc6\xc3\x95\x82\xcc\xf3\x85\xed\x2b\xc4\xa8\xf0\x23\x00\x1c\x9d\x7d\xa4\x29\xfc\x0b\x33\x99\xd2\x94\xee\xc1\xeb\x5b\x7d\x9a\x6d\x0f\x7e\x66\x77\xf6\x88\x05\x9a\x89\xbd\x97\xed\xc3\x81\xc2\xa8\x0f\xdc\xeb\x65\x16\x34\xec\xf3\xf2\x8e\x13\x88\x4a\x20\x18\xf5\xb2\xca\x23\x8a\x99\x58\xdc\x24\x30\x00\xa5\xea\xfc\xa5\xfb\xf5\x2b\xa8\xd3\xdc\xfd\xfe\xd5\x18\x68\x2c\xc5\x48\x52\x98\x78\x60\xca\x39\xe3\xf9\xc6\x27\xd9\x21\x66\xe3\x75\xed\xf2\xe9\x75\x57\x63\x9b\x8c\xa7\x90\xcd\x66\xc5\x07\xa2\xfc\xb7\xdd\xe1\x26\x62\x36\x57\xdf\xf9\x11\x0c\x78\x4e\x66\xe6\xc5\x47\xd0\x6f\x32\x07\x88\x0c\x90\x68\xa4\xa3\x91\x5b\x1f\xb1\xa7\x6f\x32\xe8\x38\x64\x23\x89\x98\x23\xf5\xae\x0a\xdf\x94\x00\xf3\x0c\x35\x56\x61\xf3\x81\xbc\x40\x02\xe6\x9d\xb9\x58\x85\xcd\x05\xcb\x44\x02\xc6\xd5\x1a\x8e\x3f\x32\xb2\x70\x97\x84\x9e\x84\xdc\x17\xe1\xa0\xea\xe5\xe7\x1f\xe0\xdd\x55\xf9\x39\x2e\xcd\x6a\x30\xb2\x02\xde\xc8\x94\x0b\x94\xcd\xf5\x1c\x86\xcd\x6d\xb6\xf0\x5f\x52\x86\x92\xcb\x03\xba\x20\x3a\xff\xae\x02\xcc\x23\x0e\x48\x06\x8d\x09\x2c\x52\x61\xe3\xc8\x15\x99\x9b\x3b\xe7\xa7\xcf\x2f\x2c\x07\x02\x21\x4b\x72\xcb\x83\x12\x49\x1d\x6b\x7f\xa2\x10\x2d\xb7\x7b\x32\x5c\xdf\xad\xff\x2c\xf2\xab\x1c\x24\x41\x65\x2a\x2b\x30\xa4\x5a\x22\x63\x57\x1c\x48\x81\x0b\x88\xf3\xa2\x9b\x02\x3d\xfb\x7e\x76\x63\x3f\x2d\x08\x33\x01\x00\x73\x74\xd1\x35\x6d\x73\x3e\xab\xdb\x81\x85\x18\x00\x43\xd8\xb3\x9d\x70\x63\x3f\x2f\x0e\xd5\xbd\x71\xdc\x2a\x12\x0d\xe8\xd1\x94\x73\xe0\xc6\xf7\xa0\x48\x1c\xcc\x30\xa6\xa1\x34\xb5\x08\x34\x60\x32\xeb\x68\xc4\x75\xf0\x72\x30\x9b\x99\xa4\x74\x9f\xf3\x85\x15\xe9\x11\x64\xc3\x8b\x51\x52\x6c\x6c\xf2\x49\x2b\xe1\xae\xda\x3a\x0e\x9d\xc8\x92\x1f\x5a\x25\xc6\x4b\xd8\x31\xd1\x97\xd4\xa9\x44\x4f\x37\x43\x6b\x03\x92\x5d\x6f\x0a\xb7\x0d\xd9\x4d\xe1\x47\x97\xed\x3d\xe7\x15\x43\x1d\x4c\xfa\x8a\x6e\x04\x33\xaf\x2a\xf6\xab\xb3\x27\xcb\x4d\x8d\xe4\x57\x04\xcf\xcd\x07\x98\x65\xd8\xfd\x20\xb3\x0e\x27\x1a\x00\xbe\xcc\x39\x02\x4f\x0e\xff\xbb\xe2\x6e\x94\x3d\xad\x89\x15\x2c\xb7\x42\xf2\xde\x9c\xc3\x74\xd0\x44\x13\x84\x1d\x47\x56\x4c\xad\x4c\x04\x47\x10\xcf\xd7\x47\x86\x8d\xe3\xcc\x40\x85\x6d\x12\x29\x8b\x8b\xe9\xa2\x48\x0d\x14\x4a\xc8\x68\x0c\x60\x2b\x10\x80\xc9\x07\x49\xc0\x91\x83\x53\x55\x55\x57\x0e\x8e\x25\xe4\x7a\x14\xc9\x06\x58\x44\xb7\xc1\x73\xd8\x19\x38\xd8\x8d\xdb\x94\x0d\x8e\x89\x96\xd6\x7e\xa1\x4f\x57\x4f\x82\x37\xa5\x56\xd8\x33\x1c\x50\x91\x05\x62\xbe\xf4\x16\xf7\x35\x62\xee\x9e\xc9\xfe\x89\x4a\x27\x25\x23\x85\x6a\xe5\x68\xaa\xc2\xa5\x93\x12\x58\x0a\x7d\x9f\x49\x20\xdd\xec\x30\xe9\x44\x54\x4f\x4a\xdc\xac\x7c\x27\x49\x55\xb4\xe3\x5c\xa5\x90\xd2\x49\x09\xd2\xb0\x73\x52\x32\xd0\x58\x59\x1b\x2c\xa2\x8a\xee\x57\x44\xf3\x8b\x39\xf2\xcc\x4b\x99\xb6\x17\x75\xe0\xd2\xcc\xb9\x1f\xcc\x0a\xbd\x49\x1b\xc8\xd5\xba\x58\x86\xc0\xd7\x53\x59\xc4\x52\xbd\xc2\xdd\x91\xa1\xae\x0c\xc9\x0e\x37\x3e\x61\x20\x9d\xec\x47\xe8\x64\xbe\xce\x37\x61\x61\x4b\x2b\x10\x67\x14\xe5\xe8\x38\x6e\x64\x32\x6c\xd8\x77\xa8\xc2\xce\x34\xe8\xc9\x62\x7c\x0f\x53\x07\xf3\x98\x4e\xa5\x9f\x9b\x23\xf7\x61\x34\xd6\x90\xad\x85\xa2\x72\x2f\xf1\xca\x3e\x5b\xba\x93\x4d\x35\xde\x4e\xb6\x48\x01\xa6\xb6\x2a\x91\x33\xd9\x22\x39\xc2\xcb\x6a\x5d\x9d\x99\x15\x1a\x1a\x3b\x31\x86\x0e\x76\x53\xea\x1d\x7f\x0a\x4d\x5d\xf0\xa6\x54\x37\x67\x0a\xa9\xae\x76\x9a\xdd\xd3\x88\x99\x42\x50\x80\xe7\x33\xa5\x11\x23\xbc\xa1\xfb\x5c\x9f\xa9\xb1\xa6\xf0\x6f\xcd\x67\x77\xd4\x51\xe8\x81\xa9\xbe\x28\xff\xa1\x7b\xf8\x04\xe0\x05\x82\x8a\xfc\x95\xd7\x5b\xf5\x1c\xf1\x99\x71\x28\x00\x09\x7f\x81\xb4\xcf\x1c\xdc\x01\xce\x4d\x10\xc6\x3f\x37\x26\x03\xe9\x7e\x70\xe1\x6d\xf4\x80\xc2\x43\xfa\x40\xe3\xec\xce\xe0\x38\x29\xf7\x90\x2e\xd0\x18\x55\x4a\x12\x18\x3d\x0a\x82\xb1\xfd\x68\x97\xe8\xf5\x1c\xa7\xe6\x08\xb6\x0b\x47\xc3\x17\xe5\xed\x87\x18\xc6\xbc\xbc\xfd\x10\xe3\x9d\xcf\x31\xc7\xea\xc3\x20\x1d\x70\x1b\x01\x24\x61\xe6\x13\x5d\x00\x5e\x3c\x02\xda\xc7\x16\x47\x32\xa9\x7d\x6d\xd1\x00\xd9\x4a\xfb\x44\xc5\xa1\xc6\x6e\x7d\x84\x44\xd7\xfe\x6d\xd1\x91\x86\x4b\x0a\x7d\xe5\xde\x61\x3f\x31\x8f\x13\x57\x2e\x15\x8e\x65\x26\xce\xa7\x4b\x24\x72\x6d\x5d\x19\x65\x39\x95\x52\x5e\x9e\xbe\x7b\x2b\x39\x04\x03\x81\xfa\x26\xd2\x3d\x18\x8a\xf2\xf2\xf7\xec\x5c\xe1\xda\x35\x80\xe7\x0e\xde\xd5\x68\xc5\x51\xbc\xaf\x63\x3c\x2f\x71\xa8\x17\x59\xe0\xcc\x28\xcc\x48\x0e\x17\x60\x8a\x0a\xb6\x23\xc6\x82\x72\x0f\xe2\x03\x82\xe6\x81\x4b\x49\xe0\x3f\xe7\x9a\x33\xac\x0f\x34\x60\xa7\x98\xb3\xe5\x54\xf3\x53\x17\x36\xaf\x39\x5b\x3a\xd7\xba\x43\x89\xe8\x32\x61\xe0\x2b\xca\xf9\x54\x12\x95\x94\xf3\xbe\x42\x8d\xe3\x07\x02\x6b\x60\xce\x32\x53\x03\x18\x11\xef\xd0\x1c\x78\x90\x23\xdd\x17\xf2\x55\xfe\x8b\x77\xfb\x87\x47\x2e\x90\x7b\x26\xd3\x3e\x98\x86\x34\x66\x4d\xcd\xf2\x7b\x50\x55\x6f\x5b\xf9\xf2\xc1\x46\x67\xdb\x69\xcf\x89\x31\xc6\xca\xc8\x01\x1d\x07\x5c\x69\xa3\xda\xec\x7f\xab\xab\x64\x26\x6b\x1f\xab\x5c\x70\x29\x57\x67\x27\x87\xc0\x34\x77\xc1\xc9\xd2\xf9\xd6\xb3\x9a\xe5\x02\xb4\x74\xaa\xe0\xcc\xec\x9f\x62\x09\xe4\xf6\xb1\x8b\xae\x4c\xb6\xc4\x5f\xcc\x29\x4d\x17\x1c\xc0\x2f\x2a\x4a\x2f\x74\x53\x45\xe9\x15\x65\x5c\x38\x16\x9c\x81\xa4\x32\xc2\x08\x04\xa4\x63\x79\x80\x15\x3e\x77\x4c\x0f\x60\x30\xbb\x70\x5f\xc7\x18\xc8\x3c\x5c\x04\xd8\xf6\x8e\xdc\x9b\x2b\x78\xd0\x2d\x77\x6c\x8e\x51\x5c\xb9\x6d\x89\x6d\x5c\xf5\x66\xa5\x60\xf7\x4b\xc7\x23\x56\xf4\x65\xe1\x78\xc4\xca\xb0\x5d\x43\x42\xa0\xb7\x61\xd1\x0b\x85\xb3\xa4\xe8\x78\xe6\xbc\x57\x2e\xfa\xe4\x72\xea\xbc\x28\x2a\x6a\x54\x38\x00\x98\xe0\x2e\xdd\x2f\x4d\x40\x83\x0a\x0f\x11\x83\x75\x69\x7d\x71\x45\x37\x15\xd6\x17\x77\x0a\xb1\xa6\xdb\xbb\x10\x6b\x7a\x1d\x82\xee\xe7\x4d\x05\xa3\x5d\xba\x9e\xb6\x60\x4a\x2e\x3c\x24\x04\xc4\x31\x7e\x42\xb5\xbd\xd3\x3a\xa8\x77\x79\xe1\x18\x01\x59\x69\xe1\x10\x3c\x74\xe9\x78\xca\x8a\x3e\x29\x1c\x4f\x59\x08\x3b\x27\x78\x50\x63\xe7\xfb\xa4\x30\x2b\x0b\xe7\xba\x30\xa8\x64\x85\xfb\xa8\x14\xb4\xc0\xfb\x2e\x66\x64\x10\xfb\x0e\x8d\xc2\x9c\x0f\xd4\x41\xce\xee\x1b\x50\xa2\x01\x97\x8e\x43\x2c\xe8\x95\x85\x0b\x40\xe7\x2b\xa7\x44\xf0\x27\xb9\xa4\xb1\x76\x42\xbc\x32\x41\xd7\x01\x31\x71\x51\xc7\x03\xb1\xaf\xf1\x0d\x2e\x88\x30\xe2\xce\xfe\x15\x24\x10\x00\xce\x3b\x16\x70\x0c\x7e\xe9\xbc\x7f\x0c\x96\xa1\xc2\x05\x20\x59\x45\xfe\x42\x47\x54\xe4\xaf\x98\x6b\xca\xee\xe6\x7c\xb1\x11\xb2\x5c\xa2\xb2\x35\x6e\x83\x81\xee\xd2\xa3\x8a\x1d\xaa\xb2\x25\x11\x78\x50\x28\xd9\xa5\x0f\x41\x42\x8f\x54\xbe\x34\xa9\xe0\x32\x75\x2c\xe1\x0d\x47\xcb\xc0\x1e\xcb\xea\x87\x1d\x25\x23\x2d\x37\x7c\xd6\x51\x72\xd4\xb2\xdc\xb5\xcb\xe5\x86\xc7\x95\x06\x3a\xa6\x6a\xbe\x1c\x42\x2e\xd6\xbf\x48\xd6\xd0\x84\xe3\x8e\x8a\x9f\xbb\xc0\xa5\xb7\x71\x47\x7d\x45\x63\x21\x95\x4d\xf9\xd0\xd1\xa0\x7a\xad\x95\x29\xd5\x58\x99\xf3\x4c\x98\x92\xde\x77\x1a\x63\x83\xd8\xa9\xa1\x30\x67\x6a\x40\x07\xd8\x93\xb9\x50\xf6\xaa\x0b\x40\x6f\x3a\x27\x30\x30\x91\x2f\x2b\xaf\x2a\xc3\xdc\xac\x2c\x16\x30\xaf\xdc\x4f\x33\x82\x34\x76\xdf\xa7\x86\x03\x97\xc2\x43\x40\x52\x38\x47\x3e\x7d\x15\x36\x27\x3c\x62\x35\x2e\x1c\x99\x0d\xad\xbf\x34\x1e\xc5\xc0\xf7\xc6\xa3\x18\x42\xfe\x97\x1c\xc5\x00\xde\x22\x3a\xe3\xe6\x24\x2d\x02\x84\x6f\xb0\xae\xdc\x22\xee\xbe\xea\x0c\x0d\xb8\x45\x9c\x32\xa1\x44\xea\x0b\x3c\x81\xa2\x2c\x99\x60\x04\x62\x80\x81\x02\x2a\x7e\x70\xb7\xce\x62\x03\xa9\x9c\xc5\x46\xe5\x62\xdd\x14\x40\xf3\xba\x45\xdc\x33\x84\x77\x14\x56\x31\x60\x18\x23\xa4\x1b\x6b\x2d\x19\x7e\x74\x79\xeb\xb6\x31\xd6\xee\xe1\xdc\x68\x57\xc7\x8f\x55\x0d\x37\x5c\x67\x9a\x76\xfc\x28\xf7\xd6\x12\x6c\xd8\x6f\x8d\x44\x42\xe0\xd1\xf8\xde\x6a\xba\xe0\x22\x26\xe2\xcd\xb7\xc5\x05\x9b\xbc\xb7\x7e\xd4\x90\xb7\xf5\xa3\x86\xa0\x7b\xc9\x08\x00\xf7\x8e\x11\x14\xe0\x52\x40\x86\x2e\xc5\x54\x53\x68\xe3\x0a\xbc\xa4\x77\x8b\xb1\xa9\x56\x07\xdc\xce\xec\xf7\xdb\x41\x79\x7e\x6f\xcf\x33\x43\x19\x6b\x75\x46\x04\x80\xfd\x8a\x48\x07\x0e\xa2\x6f\xb1\xfa\xa6\xc6\x1a\x92\xbb\x1f\xd8\x90\x25\x02\xa7\xaa\xc8\xdc\x8d\xda\x70\x65\xb4\xeb\xc0\xea\x19\x93\xb5\x03\x9d\xe3\x25\xe2\xc8\x9c\xcd\x0f\xfb\x23\x27\xd2\xdb\x6f\x04\x32\xa2\xfa\x30\x8b\x68\xc4\xfb\xb2\x52\x20\x7a\xef\xb6\xac\x14\xc0\xa0\x3a\x0f\x41\x48\x0e\x70\x2f\x16\xda\xdb\x81\xb7\xee\x1d\x3e\x7b\x11\xef\x7d\x65\x5d\x83\x49\x53\x59\xd7\x60\x52\x97\x7d\x54\x6f\xdd\xd7\xe5\xa0\x63\x2a\x82\x0b\x86\xa8\x22\xb8\x60\x58\x7d\xeb\xa5\x65\x78\xdf\x88\xe9\xe2\xae\x01\xc6\xc7\x71\x75\x5e\xbd\xf7\xf8\x13\x38\xe3\x0b\x99\x7d\x41\x33\x2d\x95\x04\xf4\xc1\x39\x94\x05\x8f\xc0\x3b\x17\x10\xf2\xe1\x0e\xc7\x76\x9a\xc0\xc9\xae\xf3\xc9\xec\x0e\xb8\x93\x7f\x70\x00\xb0\xfa\x00\x85\x61\xca\x31\x20\xc4\xdc\x24\x90\x5f\xef\xfc\x50\x1e\x61\x51\x9d\xbb\xf2\x08\x8b\x2a\x7d\xa8\x0c\x91\x60\xea\xbb\xca\x10\x89\x5c\xef\xbc\x32\xee\xb8\xcb\x6c\x77\x1c\xeb\xf7\xff\x15\xf2\xa1\x32\x5c\x82\x25\xee\x2a\xc3\x25\xe4\xf7\xbd\x3d\xb9\x01\x89\x78\x6f\xbf\xe2\xd9\x87\xef\x18\xdc\xdb\x13\x1b\x50\xb4\xee\xdd\x6f\x04\x0b\x6e\xf9\xbd\xdc\x62\xc1\x05\xf7\xe5\x16\x8b\x3e\xbf\x9f\x3b\x1f\xf9\x1d\x02\xb0\x6f\x01\xd1\x51\xbf\x6b\xc1\x0f\xbb\x93\x7b\xf3\x5d\x52\x08\xa5\x4e\x6a\xc8\x2e\x75\x52\x8b\x7e\xb9\x37\xef\x79\xc9\x27\x30\xef\x9d\x67\x70\xa0\x52\xf6\x8a\x1c\x02\x5e\xfa\xbd\x32\x04\xd0\xe2\xca\x10\x8c\x25\x6a\xf7\x8c\xf0\xf9\x8d\x7b\xe6\xec\x10\xe1\x82\xca\xbd\xfb\x15\xe3\x01\x00\x4e\x15\x45\x2e\xbf\x57\x86\x06\xfa\xb4\x32\x34\x31\xa0\xf6\xb4\x0c\xc1\x01\xc7\x7d\xe1\xd6\xa1\x07\x88\x33\x1a\x90\xd5\xad\x2f\x47\xef\xef\xca\x5c\xfc\x87\xb3\xad\x13\xc5\xac\x9c\x6d\x9d\x08\xff\xb1\x6f\xf7\x4b\x89\x8c\x37\x1b\x26\x11\xfe\xc3\x9d\x4a\xa2\x56\x2b\x17\x18\x02\x85\xc9\x60\x0a\xf1\x26\x3d\x04\xe5\xc7\x15\xee\x41\x27\xfb\xa3\xcc\x3c\x62\xdc\x56\x65\xe6\x11\xa5\xfc\x61\xbf\x0e\x04\xd7\x68\x57\xf6\xf3\x40\xe0\x97\xfa\x47\xe5\x0d\x1b\xd1\xd8\x55\x65\x2c\x05\x9b\xfd\x51\x19\x05\xd1\x97\xab\xca\x28\x08\xb6\xfb\xc3\xd9\x3e\x8a\xf0\xca\xd9\x3f\xca\xb0\xd6\x99\xa0\x73\x54\x48\x74\x85\x60\xc9\x3f\x5d\xa7\x17\x38\x94\xf9\xe2\x21\xa2\x36\x7f\xba\x86\x4d\x38\x6b\xf8\xe2\x21\x18\x68\xcc\x92\x3d\x04\x02\xb3\x64\x8b\xe0\x9f\xf6\x15\x5e\x30\x73\x7f\x71\xc2\xa2\x43\xbf\x60\xe7\x9b\x0a\xb0\xda\xfe\x89\x39\xfb\x40\xe2\x7c\x5e\x79\x3b\xec\x4f\xc7\x12\x39\x80\xb4\xd6\x10\x09\xe1\xf2\xe0\x40\x05\x8c\xcf\xa9\xcc\xdd\x1a\x32\x60\xbd\xfd\x62\xed\x18\x30\x96\xde\xf7\xbe\x43\xe0\xc2\x2f\x95\x81\x82\xca\x58\x8f\x30\x38\xec\xff\xb3\x32\x70\x82\x89\xbe\x54\x06\x4e\x0c\xc5\x97\xbb\xcf\xba\x5d\x50\xc0\x1d\x35\xe1\xa8\xfe\xf0\x53\xf3\xa1\x95\x14\x14\x0e\x63\x1b\xb8\xf9\x15\xb7\xf1\xfd\x92\xf1\x3c\x9b\xbc\x3e\x3f\x7d\xdb\x5e\x22\x9e\xe1\xc6\x4f\x5f\xeb\xfb\xce\xf7\xad\xc4\x7c\x42\xce\xf7\xad\x44\x78\xdf\x7e\xd1\x4a\x48\x00\x64\xbf\x68\x25\x83\x9a\x18\x38\x6c\x5f\x5f\xc0\xbd\x07\xc3\x3f\xd2\xd7\x6f\xef\x41\x45\xda\x77\x3e\x37\x25\x78\x17\x39\x9f\x9b\x82\x30\x3c\xec\xb3\x25\x28\x4f\xce\xf4\x2f\xbd\xe9\xb8\x87\x9d\x10\x32\x41\xf0\xa9\xdd\xb7\xf7\x0e\x41\x76\x23\x1b\x86\xb7\x0a\xf6\xcd\xf7\x6b\x44\xed\x90\xf9\x7e\x8d\x08\x4d\xb9\xbe\x50\x78\x0f\x3e\x9c\x07\xc6\xb4\x7e\x0f\x67\x77\x91\x0d\x83\x8f\x9f\x0d\x82\xbd\x3a\x52\xce\xd0\xf7\xa0\x42\x46\x6c\xa9\x1c\x54\xc4\x14\x38\x38\x3d\xfb\xc3\x86\xa2\x82\x73\x2d\x12\xe0\x63\xfa\xca\xd5\x1a\x36\x47\x31\xb9\x25\xfa\xe6\xe4\xf0\x07\x3e\x0b\xff\xed\x0f\xbc\x7f\xef\x43\xe8\xff\xdc\xa7\x93\x37\x7e\xd4\xb6\xf4\x09\x5b\xf7\x43\xb3\xd5\xaf\x25\x7e\xef\x23\x6a\xdf\xfe\x6c\x5a\xe9\x43\x67\xdf\xfd\x6a\x59\xe9\x33\x4d\xdf\xfa\x88\x51\xf9\xd3\x2b\x95\xa7\x76\x4b\xcf\xcc\x56\x5e\x38\xf5\xde\x2c\x2d\x3d\x3e\xe9\xbd\x1f\xf6\x9d\x77\x1f\xbe\x77\x3b\xff\xdb\xb7\xf1\xbf\x7b\x17\xfd\x1b\x77\x8e\xbf\x77\xf7\xf7\x7b\x77\x7d\xbf\x75\x67\xb7\x74\x91\xb6\x7c\xe9\xd1\xbf\x6f\xf8\x8d\x3b\x49\xa5\xfb\x3c\x8f\xde\x55\x28\xf9\xea\xb9\x4e\x63\xff\xc0\xf9\x70\xe9\xd0\xef\x3b\x27\x3c\xde\x99\xca\xf7\x4c\xca\xdf\x31\xe4\x7e\xcf\x50\xea\x99\x1e\xbf\x61\xd9\xf8\x9e\x0a\xe4\xa9\x28\xee\x02\xff\xc3\xcb\x86\x95\xd5\xfa\x31\xd7\x9f\xdc\x99\x6f\x26\x92\x33\xa8\xa5\xbc\x5b\x79\x8b\x36\xbf\xd6\x8b\x0c\xd7\xb2\x9c\x93\x28\xaf\xef\xdd\x22\x5e\xe3\x2d\x36\xa9\xb3\xe9\x67\x31\x92\x93\xc9\x24\x5f\x2d\x31\x4b\x6a\xef\x70\x92\xe2\x28\x7f\xaa\xfe\xee\xd2\x22\x4d\x5b\x64\xc2\xb6\xb6\xea\x3a\x47\x87\x9a\xb5\xd1\x72\x99\xae\x9e\xaa\xbf\xbb\xe5\x42\x39\xce\x0b\x4e\x6b\xcf\x15\xdc\x5e\x72\x96\x33\x91\x56\xd2\xb7\x23\x94\xa6\x8a\xf6\x61\x8f\x3f\x5e\x0a\xbb\xa3\x6f\xf0\x2a\x7b\x6a\x7e\xed\x9e\x42\xc5\xdb\x33\x9c\x9f\xde\xd1\x33\xce\x96\x98\xe7\xab\xf3\xd5\x62\xca\xd2\xec\xa9\xdb\xaf\xaa\x0a\x1b\xe9\xdf\xa2\x05\xce\x1a\xb8\xd9\x8e\x18\x8d\x50\xde\xf8\x56\xa6\x0d\xdc\x6c\x3e\xec\xfe\xa3\x39\x3f\x40\x57\xa3\xc9\xdb\x62\x31\xc5\xbc\x4d\xb2\xb7\xe8\xed\x7a\xbd\x21\x17\xfc\x64\x32\xc1\x0f\x7b\x3a\xa6\x96\x35\x9a\x5f\xb3\x36\xa1\x24\x97\x9d\x94\xcf\x49\xd6\x7c\xb0\x4c\x92\xb5\xb2\xf6\xd1\x2d\xa6\xf9\xd1\x82\xe4\x39\xe6\x00\xd8\xee\xbd\xc2\x22\x2e\x9b\xdc\x32\x12\xd7\x82\x4d\x51\x07\xac\xa0\xf9\xa4\x14\xb5\x40\xf7\xc7\x24\xcb\x31\xc5\x5c\xa7\x85\x06\x44\x93\x30\xb0\x75\x4b\x9d\x7a\x4b\xa2\xc9\x64\x52\x4a\xfd\x34\x6b\xc7\x38\x41\x45\x9a\x9f\x38\xe8\x6e\x89\xea\xc1\xe4\x59\x48\x36\x68\xf1\xe6\x57\x51\x20\x6b\x91\x16\x6a\x65\x7b\x24\x69\x58\x8e\x78\x62\x38\x82\x36\xf3\x39\x67\x77\x35\x8a\xef\x6a\x17\xab\x25\x3e\xe2\x9c\xf1\xc6\x4f\x17\x73\x5c\xab\xa7\x2a\xf3\x7a\x0d\xf1\x59\xb1\xc0\x34\xaf\x2d\x8a\x2c\xaf\x4d\x71\x8d\x25\x35\x91\x81\xe5\xc7\xda\x3b\x1c\x61\x72\x8b\x63\x89\xff\xb4\x6d\xf2\x17\x25\x9b\xb6\x35\xc8\xc4\xf4\x5b\xf3\xa9\x1b\x9a\xa8\xd1\x8f\xe0\xbd\xbd\x86\x98\x2d\xcd\x56\xb9\x8f\x9b\xbb\x2a\xab\x27\x93\x09\x69\x53\x7c\xa7\xdb\xbf\xb5\xd5\xc0\x6d\xbc\x20\x79\xa3\xee\xa0\x75\xd1\x11\x6d\xdd\x8c\xa7\xf6\xe7\x2e\x6d\xb6\xdc\x9a\xb4\xd0\x84\x7c\xcc\x3f\x35\x5b\xa6\xa2\xa8\x29\xa1\x09\x6d\x6d\x6f\xfb\xd5\xd8\xc3\x69\x86\x6b\x5e\x7f\xda\x19\x86\x9e\xaa\x74\xfc\xe9\x47\xda\x42\x9f\x76\x3f\xa2\x16\xfd\xb4\xcb\x9f\xa2\x76\x41\xb3\x39\x49\xf2\x06\x6d\xee\xa2\xf6\xb2\xc8\xe6\x0d\xda\x6c\x35\xd8\x44\x30\x41\xf3\xd7\x60\x6b\x0b\xb5\x53\x4c\x67\xf9\xfc\x57\xb6\xb5\xf5\x04\xb5\xef\x10\xa7\x38\x6e\x7e\xd5\xbf\x26\x4f\x34\x0b\x89\xc1\x92\x03\x55\x3f\x63\x19\x7c\x98\xb2\xe6\xb2\x70\x6d\x81\x17\x8c\xaf\x6a\x29\x46\xd7\xb5\x18\xe7\x38\xca\x71\xdc\xae\xd5\xb7\x75\x09\xdb\xf5\x5a\x7d\xfb\x3c\x17\x9a\x69\x23\x6f\x6e\xd7\x6b\xba\x63\xb2\x1a\x8a\x63\x41\x7b\x99\xe1\x1a\x96\xb9\xb5\x33\xec\xb1\x5e\xa3\x59\xcb\x59\x8d\x50\x31\x52\x19\xae\xa5\x64\x41\xf2\x7a\x73\x2f\x6a\x53\xb4\xc0\x93\xba\x4b\x7a\x74\x1f\x61\x1c\xe3\xf8\x03\xe2\x54\x68\xc1\xad\xa8\xad\x32\x9d\xe0\x56\xd4\x16\x7d\x36\xc9\x5b\x51\x3b\x82\xe1\xd5\xb5\x6b\x65\x93\xa8\x15\x31\x9a\xb1\x14\x6f\x6d\xa9\x1f\xd0\x09\x7e\xa8\x91\x35\x1f\xf4\xa4\xb7\xfc\xbf\x6c\x34\xbf\x26\x8c\x37\x44\x57\xe1\xc9\xc7\x4f\xad\x7c\x12\xec\xe5\xbf\x68\x16\xce\x54\x21\x7b\xf9\xf6\x76\x13\xcb\x71\x30\x71\x82\x07\xf6\x84\x80\x68\x27\x84\xe3\x78\xbd\x06\x69\xd1\x96\x8e\x33\x6d\x8e\x17\xec\x16\xeb\xc6\xa9\xa8\xd5\x12\xb7\xe0\xd7\x1d\x47\xcb\xe7\xb4\xd9\xb2\xc9\x27\x4f\x82\x16\x91\x64\xba\x7f\x5b\x4e\x7e\x2d\x21\x07\x4d\xb5\x13\x2d\xe9\x61\x45\x99\x7c\x85\x1c\x76\x9f\x84\x2d\x99\xef\xae\x92\x3f\x32\xe9\x2e\x6e\x89\x82\x77\xf3\x96\xe5\xe8\x87\x16\x9b\x2c\xdb\x53\x42\xe3\x06\x6f\xee\xa9\x7e\x61\xa6\xe4\x09\x6d\x71\x55\xc7\x09\x6b\x31\x5b\x70\xec\x17\x6c\x78\xdd\x9b\xb7\xbc\x29\x33\xfc\xf8\x09\x58\x90\x4d\xf8\xc7\xfc\xd3\x5e\x59\x72\xb1\xa7\x1f\x3f\xed\x6e\x5c\x77\x9e\xd2\xa7\x1f\x6d\x5d\xd6\x6b\xf6\x69\xf7\x23\xfb\xb4\x4b\xbd\x05\x46\x8f\x5a\x0e\x0c\xbe\xcf\x39\x5a\x35\xb0\x1a\xae\x66\x8b\x4e\x82\x3d\xfa\x4b\xae\x87\x6f\x7b\x9b\x36\xf3\x8f\xf4\xd3\x04\x7f\xa4\x9f\x9c\x9c\x45\x50\x57\x2c\x7f\x68\xb0\xe6\xee\xb4\xc1\x5a\x4c\x67\x63\xdb\x3d\x17\x45\xca\xe2\x60\x50\x2a\xcd\x16\x42\x52\x52\xd0\x49\xfe\x11\x7f\xda\x7b\x64\xca\x53\xd5\x37\xb5\xd0\x4b\x6b\x60\xaa\xca\xd6\xbc\x1a\xd8\x3a\x4c\x45\xdf\xdb\x86\x53\xa7\xe1\x79\xb3\xc5\x27\xc1\x1e\xff\x25\xdf\xdb\xde\xe6\x4d\xfa\x91\x8b\xa6\x72\xd3\x36\xfa\xa0\x04\x66\x8c\x13\x42\xb1\x5e\x2e\x1b\x99\xd8\xad\x55\x96\x8b\x7a\xeb\x2b\x86\x77\xd0\xd0\x34\xc5\xbb\x4f\x82\x96\x60\x22\xd3\xf7\x66\x0d\x8a\x1e\x5a\x99\x1b\x81\x9b\x5f\x45\xa3\x29\xac\xb9\xce\xaa\x81\xd7\x6b\xfc\x4b\xb0\x5e\x23\x21\xba\xec\x02\xf2\x0e\xd1\x99\xbb\x82\xdc\xa2\xb4\x80\xb5\x62\x63\x95\x6a\x24\xab\xb1\x22\x17\xf1\x70\x41\xbe\x5d\x7b\x65\x17\x18\x54\xa3\x8c\xee\x50\xf5\xaa\x7a\x4d\xd6\xc0\x59\x65\x7e\xda\xc6\xdb\xf5\xb6\x10\x3b\x13\xfc\xf0\xd0\x6c\xc9\x15\x7e\xe2\x34\xc9\x0e\xa2\x33\xba\x5b\x5b\x6e\xe8\xc9\x64\x62\x75\x8e\x33\xbd\x78\x9f\x26\x52\x47\xd0\x54\x5a\x0a\x7c\x6b\xa1\x72\x09\xf4\x5a\xa5\x40\x4f\x13\xa8\x42\xeb\xb5\xac\xe8\x83\xa7\x3f\x94\x44\xee\xe4\x5f\x3f\x22\xf4\x5f\xd4\xff\x7a\xaa\x55\xdb\x2a\xe5\xa2\xdf\xae\xd9\x63\xed\x32\x2c\xa8\x15\x34\x2f\x99\x58\x34\x26\x9b\x45\xc5\xc7\x4f\x2d\x3a\x09\xf7\x68\x55\xc0\xd3\xed\xed\x66\x5e\x16\xf0\xf4\x53\x53\xea\xec\x93\x3a\x16\xdd\x22\xe6\x31\x6e\xb1\xc7\x45\x00\x6b\xf2\x09\xdf\xda\xb2\x32\xae\x0d\xe9\x8c\x12\xf0\x44\x8b\xc6\x27\x30\xfd\x95\xd6\x85\xc4\x6f\x2d\xab\xc4\xda\xde\x40\x93\xfc\x63\xf0\xa9\xd9\x42\x35\x42\xb3\x1c\xd1\x48\x8c\x1a\x8c\x8c\x1a\x2e\x04\xf5\xca\xdc\xc5\xfd\x92\xce\x11\x8d\x53\x1c\xd7\xa0\xcc\x76\x7d\xbb\x81\x9e\xd6\x6b\x0d\xb1\x90\x2f\x70\x96\xa1\x19\xde\xae\x37\xeb\xbb\xf5\x7a\x53\x2c\x5b\x22\x97\x4c\x68\xe0\x39\xbe\xcf\x27\xa8\x95\x3d\x48\x75\x81\x29\xe1\x65\xda\x10\x79\x55\xde\x24\xd3\xa2\x26\x69\x44\x30\x7e\xad\xbc\x09\x6d\x85\x66\xa5\x93\x48\xaf\xd1\xc5\x64\xda\x88\x5a\x69\x73\x4f\x0c\x85\x94\xcd\x29\x08\x65\xd2\x28\x3e\xd2\x4f\x3a\xad\x12\x7a\x4f\x4a\xfc\x8d\xe2\x58\x33\xc1\xc4\xdd\xea\x18\x36\x28\x80\x0d\x5a\x62\x69\x7a\x12\x96\xb8\x81\xd1\xc9\x23\x79\x79\x64\x4b\x8e\x97\x98\xfe\x03\xe5\x04\x95\x72\x22\x5c\x4a\xf5\x88\x16\x9d\xff\x0f\x6b\xd1\xb9\x3f\xcf\xa0\x36\x89\xa9\x79\xb3\xb9\x61\xa6\xa9\xd6\x9f\xd2\x08\x3f\xd2\x03\xff\x19\x6d\x29\x8d\xd2\xf7\x1b\xe6\x6b\x61\xa5\x36\xc1\x2a\xda\xe2\x2d\xd8\xf5\x3c\xb6\xe7\xf9\x37\xb4\xd0\xdb\xf3\x70\x4f\xba\x34\x9b\x4e\xf3\x7d\x42\x3a\xe1\x1f\xf1\xa7\x0a\x01\x15\xf3\x72\xbd\xb6\xdb\x17\x11\x6e\x8a\x14\x3b\x3b\x95\x85\xe7\xe9\xf7\xd6\xaa\xdd\x46\x8c\x53\x9c\xe3\x9a\x28\xab\xc5\x4b\xfd\xa9\x16\x48\xb9\x95\xf2\xa3\xea\x2d\xec\xec\xa6\xd6\xeb\xbc\xd9\xdc\xb0\x15\x72\xb7\x96\x20\xa6\xd9\x64\x27\x6c\x91\x89\xd6\x82\x76\xc2\x3d\xf2\xeb\x24\xd8\x23\x3b\x3b\x4d\xd1\xb6\x8f\xe4\x93\x6a\xde\x47\xf2\xc9\x6f\xe1\x57\x34\xf1\xc0\x16\x9b\x90\xbd\x29\xc7\xe8\xfa\x81\x24\x0d\xf6\x4b\xe0\x75\x94\x54\x40\x69\x5b\x6e\xb2\x9a\xbb\x3e\x63\x88\x9a\xec\xe5\xdb\xe1\x2f\xd8\xd3\xff\xc5\x4e\x0d\x7f\xcc\xb7\xc3\x4f\x7b\xb8\xbd\x64\xcb\x46\xf3\xa1\x41\x5b\xac\xd9\x0a\x27\x13\x53\xe5\xad\xad\x86\xe8\xab\x09\x05\x01\x6e\x56\x86\x7f\xb0\xeb\x90\xe8\xb1\x07\xa7\xc6\x25\x61\x93\x24\x93\xc7\xd9\x7c\xc3\x0c\xd8\x4f\xd3\xcd\xfa\x01\xac\x8b\x2d\xda\xe2\x65\xe6\xfa\x31\x2e\xa4\xa5\xa2\x35\x21\xec\x8a\x4b\x6b\xec\xd3\x7f\x4e\x33\xda\xb5\x4a\xf2\x47\xfc\x69\x6b\xab\xf1\x4f\xf3\xb2\x62\x65\x91\x8d\x2c\x4a\x34\x65\x53\x4d\x8d\x31\x44\x67\x73\x8d\x57\x59\x83\xca\xe5\x4b\x2a\xda\xc4\x6e\x2d\x78\xb3\x3c\x80\x4f\x26\x93\x06\x9b\x90\x8f\xfc\x53\x53\x8d\x73\x75\x14\x1a\xcc\x17\x6d\x1b\x28\xca\xd9\xfa\xfd\xf3\xa3\x1d\x28\xa5\xe2\xe6\xa5\xbb\x91\x43\xa7\x0a\x25\xd0\x54\xc1\x11\xae\xb9\x9d\xb3\xce\x2e\x47\x76\x42\x6e\xa7\x28\x17\x53\x94\xef\xec\x3c\x96\x8b\xe8\x87\xbd\x47\x79\x39\xdd\xc8\x97\x8a\x3c\xd6\xe2\xbd\xb2\xde\x72\x74\xb7\x99\xa3\x2b\x29\xa5\x46\xa0\x8b\x91\xbd\xb2\x69\x79\xdf\xa4\xda\x60\x3f\xdd\xd3\x52\xb8\x91\x37\x77\xe7\xc6\x9c\xda\xdc\xdc\x30\x59\xe2\xdc\xd7\x51\xc5\x08\x81\xb5\x72\x83\x56\x5b\x19\xc4\x5f\x83\xa7\xdc\x9b\x3c\xcd\xdd\x8f\x9f\x1e\xaa\xc6\x66\xa9\xab\xd2\xc6\x60\xd4\x6c\xb1\x89\xb5\x5a\xfa\x9c\xc2\x9b\x2d\x32\xf9\x9a\xa3\x99\x28\x7f\xb7\x4e\xd1\x02\xd7\x1f\xf6\x5c\x4e\x27\xcd\x76\xc2\xf8\x11\x8a\xe6\x8d\x46\x45\x58\x4c\x88\xd0\x10\x37\xef\x27\x59\x0b\xb7\xbe\x6e\xde\x2d\x8a\xea\x7f\xcc\x3f\xad\xd7\x82\x51\xab\x3b\x47\x9f\x6a\x82\x5b\x62\xa3\xf6\xd0\xdc\x60\x51\x37\x8d\x1c\x8a\x46\xd2\xc6\x60\xdc\xb4\x36\x52\x22\x07\x14\xfa\x4a\xec\xf1\xe4\xb0\x98\x68\xe4\xa9\x73\x4c\xec\x30\xd4\xbb\x4f\xd9\xb3\xd5\x85\xec\x91\x86\x56\xef\x1c\xa3\xf0\x0f\xa7\x6a\x85\xcd\x8f\xc1\x27\x9b\x34\x2a\x99\xe4\x21\xf1\x05\xbe\xcf\x1b\xdf\xc8\x86\xb6\xc2\x66\xb3\x9d\x73\xb2\x68\x38\xb5\x48\xb5\xa9\xb6\xc5\x64\x27\x90\x49\xd4\x90\xc1\x3d\xb2\xb5\xd5\x80\xe5\x89\x34\x1f\x68\xa3\x17\x36\x1b\xa4\x25\x86\xd9\xe1\x38\xd8\xf1\x72\xd8\x36\x14\x1b\xe6\x4b\x9d\x67\x19\x6c\x6f\xd6\xeb\x7a\x82\x71\xac\x7f\xf3\x38\xd9\x7d\x77\xf8\x1c\x82\x0f\x7b\xc4\x53\x78\x31\x8d\xbd\x3d\x34\xe2\x35\xa8\xe2\xe4\xeb\x43\x8b\x4d\xb2\x46\x21\xc5\x51\xcc\x16\xcd\x3d\xb6\xb5\xd5\x30\x19\x33\xb0\xfe\x3d\x6d\xe4\x13\xd6\x8e\xe6\x24\x8d\x39\xa6\x2d\x2a\x2d\x7c\x75\x94\xb3\x45\xbd\x95\x36\x68\xab\x4e\xe0\x2c\x35\xae\xb7\xf2\xa6\x04\x72\x92\xa7\xf2\x54\x0a\xfe\xe6\xcd\x56\x03\x4f\xb2\x46\x3d\x25\xf4\x5a\x04\x9b\xa2\x1f\x26\xb8\x8d\xf2\x9c\x93\x69\xa6\x83\x73\x8e\x13\xf1\x5b\x28\x24\xf4\x7a\x82\x55\x6e\x31\xce\x22\x4e\x96\x30\xe5\xe1\xe6\xaa\x97\x6d\xd4\xa8\x17\xcb\x18\xe5\x38\xd6\x39\xd3\xb6\x02\x60\xdb\x75\x28\xe6\x12\x6e\xaa\xbc\x50\x91\xcf\x19\xaf\xb7\xea\x78\x81\x48\x5a\x97\x2c\xd4\xa2\x6d\x92\xe3\x45\x36\x41\x8d\x3a\xa6\x39\x5f\x89\x9c\xda\x0b\xb4\xdc\x30\xad\xa0\xdb\xf6\xcc\xbe\xd6\x6d\xbd\x68\x82\xee\xa6\xcd\x1d\x81\x9b\xad\x46\x6e\x3b\x02\x43\x75\xf3\x49\xee\x76\x84\x08\x96\x3a\x22\x87\x64\x51\xa3\x9e\x15\x8b\x05\x12\xd5\xc3\xcd\xf5\x3a\x6a\xd4\x61\x5b\x48\x73\x9d\x13\x6d\x3b\x5d\x65\x53\x99\xee\xd1\x54\xcb\x62\x2a\x7a\xc5\x76\x8f\x50\xca\xe9\x43\xb3\xd9\xdc\x95\xd5\x8b\xe6\x88\x52\x9c\xd6\x5b\x76\xdc\x9b\x15\x0e\x90\xdc\xd1\xce\x8a\x69\x96\xf3\x46\xd0\xea\x42\x3f\xc6\x93\x7a\xfd\x31\x26\x00\x58\x36\xdd\xb0\xc2\xa6\x21\xf6\x42\x66\x94\x53\x94\xe5\xcf\x0a\x92\xc6\xa2\xca\xff\xd0\x58\x2f\x10\x45\x33\x42\x67\x47\x31\xc9\x19\xdf\x30\xe8\xe2\x87\xdf\xd8\x7f\x68\xf0\x67\xc5\x0f\x0f\x7f\xb5\x0b\x36\x73\xb9\x17\xc2\x7a\x24\xd5\xc0\xfd\xc8\x48\x36\xcd\xa4\x06\x23\xb1\x73\x8a\x25\xcd\x0f\x07\x28\x4d\xa7\x28\xba\xb6\xe7\x67\x2d\xf6\x54\xc8\xfc\x5d\x65\xa7\x88\x58\x91\xc6\xf4\xa7\xbc\x96\x10\x1a\xd7\x38\x63\x60\x54\x02\xd1\x20\xc4\xbd\x5d\xb5\xc8\xe3\xb2\xbf\xab\x64\x7f\xd8\xed\x8a\xc5\x8c\xb7\x49\x76\x81\x66\x7b\x36\xad\x58\x84\x5e\x51\x8a\xf9\xcb\x8b\x93\xe3\xdd\x8d\x9b\x79\xdb\xa9\x4f\xed\xcf\xea\xf8\x68\xc1\x2d\x57\x92\x66\xb3\xfd\x99\x11\xda\xa8\xd7\x9b\xbb\xf5\xfa\x43\x6b\x86\xf3\xd3\x22\x57\xc5\xb0\x96\x12\xee\xa6\xc0\x9a\xe8\x38\xb1\x77\x06\x33\x6d\x9b\x64\xda\x5c\x6b\x14\x6a\x28\x10\xdb\x5c\x85\x4a\x4a\x2c\x41\x7d\x0a\x46\xa7\x5c\x0a\xcc\xfa\x5f\xb4\xbe\x8b\x1b\xb9\x65\x07\x69\x39\x82\x69\x23\xf6\x18\x07\x87\xfb\x17\xfb\x3a\xef\x6f\x11\x8a\x5a\xda\x3a\xc4\x28\x47\x8a\xfb\xea\xf5\x87\x6f\x28\x16\x61\xb7\xa7\x3b\xbe\x2f\x3a\x5e\xfc\x18\x37\xf7\x48\x1b\xcb\x85\x0c\x34\x9a\xf6\xd5\x15\x70\xc5\xd5\xd5\x44\x1e\x63\x2b\x29\x54\xe4\x78\x53\xbc\x3a\xaa\xfd\x6a\x50\x79\xf8\x9d\xe5\x2b\x69\x7c\x96\xfc\x2a\x7e\xdd\x2f\x96\xe2\x0f\x49\xb8\x50\x5c\x9e\x04\x2d\xca\xf0\x62\x8a\x63\xf9\x13\xd0\x4c\xfc\x5e\xa6\x88\x80\x59\x4b\x46\x98\x0c\x1e\x94\xd1\xac\x5c\x14\xe2\x18\x09\xd2\x29\xca\xb0\xfe\x9b\x30\x0a\xc9\xa7\x5c\xfc\x1b\xb1\x54\xfe\x59\x2c\x10\x85\xf2\x4c\xc1\xa6\x32\x73\xa0\x24\x8b\x19\xfc\xa1\xcb\x02\xd2\x93\x8c\xd0\x18\xdf\x8b\x9f\xd7\x78\x35\xc3\x54\xfc\x12\x13\x54\xfc\x5d\xe0\x1c\x0a\x5e\x22\x8e\x16\xd0\x56\x56\xf0\x08\x72\xcb\x39\x8a\x80\xe6\x0e\x6a\xf0\xd0\x8a\x1c\x7d\xce\xe7\x67\x9f\xb7\x84\x04\x17\xfc\x8c\x31\x27\x6c\xbd\x6e\xe0\x89\xdc\xee\x88\x5d\xf3\xd7\x87\x3d\x7b\x7a\x50\xaf\xb7\xd8\x24\xd8\x63\x76\x93\xcb\xb6\xb7\xb5\x66\x81\x3f\xb2\x4f\x7b\x75\x31\x39\x05\xfb\x11\x60\x9c\xa7\x74\x7b\x12\x35\x88\x95\xd7\x79\x73\x57\xcd\xbc\x06\x69\x8a\xd8\xa2\x41\x04\x48\x2c\x9f\x1d\x12\x8e\xa3\x9c\xdc\x42\xe2\x65\x83\x78\x91\x07\x6c\x21\x98\x46\x44\xcd\xcb\x51\x82\x91\x45\x44\x2c\x22\xe8\xf6\x24\x81\xac\x1f\xcc\x79\x46\x2b\x9d\x7c\xac\x2f\x08\x7c\x91\x18\x3e\x68\x0c\x5f\x14\x16\xff\x88\x81\xaf\xb7\xea\x88\x52\x96\xc3\xe3\xae\x3b\xf7\x8b\xb4\xde\xaa\x27\x8c\x63\x32\xa3\x52\x71\x55\x92\xd0\x88\xd0\x4f\x7b\xfe\x91\x78\xf3\xab\xa6\x97\xd3\xef\x7e\x91\x9e\xb0\x18\xc3\xc9\x31\x9c\x5c\xfa\x2c\xff\x51\xa2\x9f\x44\xd7\x8b\x1f\x2d\xdc\x5e\xc2\xbd\xb7\xad\xad\xb4\x0d\x0c\x70\x9a\x34\x34\x06\x14\xcd\x5f\x27\x01\x2c\xca\x4a\x91\x46\x59\x46\x66\xb4\xf1\xf5\xa1\x95\xb7\xbe\xaa\xd2\x76\x9f\x84\x42\xe2\xb6\x9e\x38\xe5\x7f\xac\x67\xb7\x33\x58\x7a\xf2\x79\xfd\x93\x93\xf7\x0f\x67\x6a\x1a\xf6\xd0\x94\xd6\x6d\x3a\xa9\xff\x52\xdf\x56\x15\xdf\x60\xf7\xc3\xc6\x52\x36\xa9\xd7\x0d\x03\xa1\x1a\xa1\x35\xdc\xa4\x13\xfc\x11\x7d\x6a\xf1\xad\xad\x06\xdf\x9e\xd4\x6b\xf5\x66\xeb\xb1\x9e\x43\x93\xb2\x24\xf8\x88\x3e\xad\xd7\xa8\xd9\xe2\xdb\x13\xd4\x82\x1d\xac\xd8\xe5\x6f\x6d\xd5\xc5\x0e\x9a\xae\xd7\x26\x75\x53\x66\xff\xd3\xa4\xfe\xd3\x76\x43\xec\x3a\x22\x16\xe3\x23\x9a\x93\x9c\xe0\xec\x29\x6b\x63\x2a\x80\xdf\x4f\x8e\x1b\xb4\xb9\x4b\xdb\xf0\x6a\x7c\x84\x1b\x3f\xff\x55\xff\x79\xd6\xaa\x6f\xdd\x14\x2c\xdf\xab\x37\x9b\xdb\x3f\xd5\x7f\x32\x3b\x51\xfe\xf0\xd0\x30\x9a\x62\xcb\x1a\x1a\x45\x53\x28\x34\x65\x9b\xbb\x7d\x2f\xa7\x95\x64\xfd\xad\x2d\xb1\x15\x76\x96\x0d\x6d\xe1\x10\x09\x7f\xad\xb7\x5c\xca\x06\x4c\x1b\xec\x4e\x9b\x66\xcb\x70\xcc\xd6\x96\x5b\x02\xa4\xff\xe5\x67\x3d\x1a\xdb\xf5\x5f\xeb\x4d\x60\xff\xfa\xcf\xbf\xd6\x5b\xd4\x3d\xb7\xb6\x9a\x3b\x0c\x9e\x10\xe1\x82\xbc\x74\x46\xac\x8f\x24\x25\xc1\x7a\x5d\xaf\xab\x66\x3e\x29\xf7\xa2\x68\x9e\xe6\x59\x8f\x53\xc5\x38\x23\x51\xb5\x89\xdf\xcf\x4d\xb7\x3e\xb1\x5b\x9f\x27\x1f\x61\xfa\x7e\x14\xf5\xd2\xad\xfe\x18\x7c\x52\x75\xfc\xf4\xc9\xad\xe5\xdc\x49\xf8\xd7\x7d\x37\x7a\xb2\xb3\x63\x9b\xb3\xb3\xf3\xd7\x7d\x17\xd7\x37\x2c\x48\x9e\x5b\xd5\xe6\xbd\x68\xde\xaa\x5f\x5d\xe1\xec\x84\xc5\x85\xd0\x91\xbe\xc2\x69\x96\x10\xa5\xcd\x56\x2e\xa5\xd6\xa6\x6d\x50\x8e\x66\xb0\xd7\x01\x51\xb4\x5e\xd7\xe5\xe2\xe1\x43\x62\x65\xb2\xc8\x43\x2b\x87\xe5\x74\x52\x97\x92\x27\xb7\x42\x6f\x52\x8f\xf5\x4f\x81\x2b\x79\x37\xa9\x47\xf2\x87\xc0\xce\x21\xff\x89\x2e\x47\x20\x22\xfb\x89\x2a\x45\xe4\x8d\x66\x13\xa8\x96\xc8\x41\xf4\xeb\xa4\x1e\x89\xee\x81\x92\x58\x24\x37\x4d\xb1\xfc\x51\xff\x17\xf7\xd4\x9e\x5e\xf8\x87\x81\x5c\xf7\x87\xdd\xe6\x9e\xe6\x9c\x8d\x46\x94\xc6\x93\x7c\xbd\xce\x7f\x99\x04\x4f\xb9\x22\xfb\xfd\xe4\x78\x57\xff\x16\x6a\x52\xb3\x81\x9b\xa2\xcf\x24\x72\x0e\x35\xfb\x27\xb3\x92\x89\x75\x86\x92\x39\xbf\x93\x95\xc3\xc3\xbb\xfa\xb7\xa9\xd5\x9e\x5c\xfc\x74\x33\x0d\xa5\x90\xf6\xfa\xb7\x29\x48\xa4\x32\x11\x22\x20\x62\xb2\x08\x2d\x61\x71\x80\x1f\x1e\x6d\xaf\x42\x6c\x02\x7d\x2f\x4a\x29\x44\xd0\xe9\xa6\xb3\x45\x2d\x90\xfd\x6d\xfa\x0f\x6a\x81\x9c\x80\x17\xa3\x7a\x17\x55\x20\x8f\xaa\xf7\x78\x06\xfd\xc7\xa3\x7a\x3f\x96\x79\xff\xfb\x64\xbf\x57\x2a\xfa\xfb\xc9\xf1\xdf\xde\xfd\x7f\x7b\xf7\xff\xed\xdd\xff\xb7\x77\xff\xdf\xde\xfd\x7f\x7b\xf7\xff\x93\xde\xfd\x8f\x79\xe0\xc3\xd9\xa6\x76\xee\xba\x22\x0b\xb1\xb0\x1c\x4a\x9f\xb3\xcd\x4e\xe2\x42\x23\xb6\x1a\xd2\x53\xbc\xfb\x55\xb9\xa8\xed\xe2\x87\x87\x7f\x4e\xa9\x62\x13\xde\xa0\x8d\xb0\x3b\x6a\xca\x35\x1e\xb2\x2b\x7b\x6e\xe1\x5f\x27\xfd\x7e\x67\x3c\xd8\xda\xc2\xbf\x4c\xfa\xc3\x6e\xaf\xbb\x5e\xe3\x5f\xc3\x30\xec\x85\x61\xa8\x2d\x44\x7f\x15\x49\x92\xc4\xf5\x3d\x50\xd4\x99\xce\x0a\x2c\xdf\x26\xf4\x11\x2b\x4f\xa6\x7c\x62\x76\x00\x35\xfc\xeb\xa0\xdf\xef\xf6\x05\xe5\xce\x44\xfc\x1c\xb4\xf2\xed\x89\x74\xf4\x6d\x27\x9c\x2d\x0e\xe6\x88\x1f\xb0\x18\x37\xf0\xaf\xbf\xfe\x1a\x06\x5b\x61\xd0\xe9\xae\xa1\x42\xcd\x16\x9e\xf4\x07\xdd\x4e\xb0\x16\xd8\x16\x6e\x3e\x9a\xb2\xf9\xf0\x63\x0b\x79\x50\xdf\x15\x55\xe8\xb6\xea\x61\x67\x54\xdf\x1d\x75\x07\xbd\x56\x3d\xec\x06\xf5\xdd\x51\x27\x1c\x89\x9f\x61\x7d\xb7\x17\x74\xc4\xaf\x8e\x00\x3b\xf0\xb3\x2b\x7e\x76\x03\xf1\xb3\x07\x28\xa4\xea\xc3\xcf\xbe\xf8\x39\xa8\xef\x0e\x43\x88\x1f\x0a\xb0\x07\x3f\x47\xf5\xdd\x6e\x1f\xd2\x8f\x01\x1c\xb7\xea\x61\x2f\xa8\xef\x76\xbb\xa2\xa4\x5e\xa7\xbe\xdb\x1d\x85\xe2\x17\x64\x14\x0e\xc4\xcf\x01\xfc\x1c\x8a\x9f\x90\x53\x47\xe4\xd4\x1b\xc1\x4f\xa0\x85\xac\x3a\x82\xb6\x2f\x6b\x2d\xd0\x7e\x08\x3f\x45\x59\xfd\x4e\x7d\x77\xd8\x85\x5f\xa2\xd6\xbd\x11\xfc\xec\x89\xaa\x88\x56\xf7\xa1\xac\xbe\xc8\xb5\x3f\x10\x55\x11\x95\xea\x8b\x9a\x4a\xc2\x71\x7d\xb7\x3b\x1c\xfc\xf0\xfd\x15\xd7\x3a\x51\xdf\xfd\x5a\x47\x69\x3e\x4b\x57\x4b\x21\x19\x51\x9a\xbf\x80\x9f\x2d\x83\xc6\x38\x71\x22\x0e\x61\x71\xd1\x71\x60\xc3\xb6\x91\xaf\xc0\xa4\x5d\x47\x94\x2c\x50\x8e\x23\x96\xc2\x93\x0a\x2a\x78\x00\x41\x13\xbb\x60\xea\xa9\x5c\x15\x3e\x61\xca\x0a\xad\xc2\x39\x47\x34\x4b\x18\x5f\x58\x92\x0b\x03\xb5\xea\x51\x4a\x96\x4b\x79\x35\x5e\xfc\x3c\x13\x3f\x5b\xf5\x04\x4f\x53\x0c\x92\x37\xc1\xcf\xe0\x97\xc0\xa0\x22\x0b\x94\x73\x72\x0f\x31\x50\x93\x13\x19\x96\xf1\x8b\x25\xa3\x98\xe6\xb2\x4c\x78\x1c\x46\x50\x29\xf4\x42\xa3\x86\x36\x23\x20\x72\x14\x0d\x84\x64\x1c\xbd\x65\xe9\x2d\xf6\x8a\x92\x90\x53\x5a\x4c\x92\xa4\xc8\x84\xfe\x38\xcf\xa5\xca\x97\xe0\x43\x89\x1d\x6b\x4c\xd2\x65\x60\xa9\x10\x43\x25\xef\xbe\x0b\x3a\x8b\x9d\xa0\xa5\xa6\xcb\x11\xcd\x53\xf5\x72\x08\x10\x09\x00\x32\x93\x14\x9c\x2d\xb3\x39\x8a\xe1\x09\x9d\x04\x1f\x72\xb6\x3c\x97\x41\x11\x9b\xa4\x8c\xc9\x1e\x7b\x0e\xbf\x00\x2b\x28\x7c\xce\x27\xc1\xcf\x0b\x1a\xed\x1b\x6c\x6a\xb0\x67\x06\x9b\x19\xec\x85\xc1\xb8\xc1\xde\x01\x36\x43\x45\x96\x11\x44\xa7\x69\x21\xa3\x5e\x28\xe0\x99\x00\x04\x05\x59\xa0\x99\xec\xd3\x57\xf0\x4b\x60\x0b\xcc\x15\x76\x02\xbf\x0c\x46\x59\xec\xe0\x6f\x59\xac\xe2\x18\x5f\xce\x59\xca\x66\x2b\x19\x69\x83\x22\x96\x25\x89\x7c\xc4\x33\xc1\xa7\xf2\xa7\x40\xe1\x8b\x81\xb6\xef\xce\x44\xd0\xf6\x5c\xb6\xc4\x51\x91\x22\xee\x0d\xd6\xb9\x02\xbd\xd1\xca\x96\xcc\xc9\xe6\x7c\xc9\x9c\x5c\x72\xf9\xf8\x71\x82\x2f\x48\x2a\x6b\x9a\x17\x7c\x5a\xa4\x98\x46\x0a\xb7\x41\x63\x21\x53\xd7\xc0\x76\x2b\xb6\x49\x98\x78\x1c\x26\x25\xfc\x7c\x27\xd5\x3d\x42\x31\xe2\x33\x8e\x62\x22\xd5\x77\x09\xbc\xd0\x80\xfc\x22\x19\x4a\x1d\x0a\x09\x38\x14\x39\xbe\xcf\xd5\x9c\x12\x3f\x61\x4e\x3d\x88\xad\x87\x6b\x97\x13\x02\x03\x96\x33\x22\xe6\x6b\x01\x8f\x95\xd9\xf0\xe5\xbb\xe3\xba\x93\x02\xfc\x07\x76\xfd\x1c\xdc\x78\xb0\x4b\x38\xf1\x17\x22\xdc\xaa\x83\x91\x9d\xe3\x9b\x02\x53\xb8\x5b\x2e\xc2\xcf\x4d\x58\xc6\x2f\x39\x4b\x64\xbf\x8a\xd0\x99\x0a\xb5\xea\x11\x4a\xa3\x85\xe4\x0f\xf1\xf3\x44\x32\x87\x16\x17\x05\x25\x79\xe6\xc8\x8c\x4b\x08\x8b\xcd\x0a\x4c\xc0\x88\x81\x4b\xad\xe8\x1d\x85\x1c\x68\xa4\x55\xc7\xf1\x0c\xab\x9c\xc5\x4f\x95\x73\x42\xd2\x1c\x73\x9d\xaf\x0c\xe9\x5c\x37\x0f\x95\x1e\x02\x57\xc2\x69\xcc\x15\x71\x1a\xd3\x79\xeb\xb0\xce\xfd\x1a\x73\x8a\x53\x23\x6c\x64\xd0\x08\x1a\x19\x14\x69\xa5\xfd\xd1\x50\x88\xe4\xc7\x12\x12\x54\x2b\x98\x01\x19\x44\xaf\xce\xe4\x6f\xc0\xb3\xa5\x60\x21\x15\x71\xae\x02\x10\xa3\x35\xc3\x6b\xbc\xba\x80\x9f\xad\xba\x2c\x03\xc5\x9f\xe5\x07\x66\xfe\x1f\xee\xde\x84\xbd\x6d\x1b\x5b\x00\xfd\x2b\x12\x27\xc3\x12\x11\x24\x8b\x4e\x9a\xa6\xa2\x61\x5d\xc7\x49\xdb\xcc\x64\x9b\xd8\x69\xda\xa1\xd9\x3c\x9a\x82\x6c\xd6\x32\xa9\x90\x90\x97\x58\xfc\xef\xef\xc3\xc1\xca\x45\xb6\xd3\x76\xe6\xde\xf7\xbe\x2f\xb1\x48\x10\xfb\x72\x70\xf6\x23\x5e\xf7\xc4\x2b\xdf\x9c\xe7\x29\x3f\x29\x49\x9e\x51\xe5\x76\x4a\xa5\xed\xe7\x19\x85\x78\x52\x40\x92\x14\x67\xb4\x38\xa5\xf2\x1c\x89\xd7\x9f\xa8\x3c\x48\xe2\x55\xcd\x86\x78\x53\x73\x21\xde\x2e\xd3\x19\x0c\x54\xbc\x81\x0b\x04\xf8\x56\x9e\x49\xa1\xb5\x29\x5c\x9e\xed\x8b\x24\x53\x43\x79\x66\x7f\x56\xe9\xd9\xea\x3c\x4f\x58\x7c\x01\x23\xce\x56\xe7\x6f\xe5\x0b\x27\x01\xd8\xa9\x9e\x5b\xfe\xa2\x67\x75\x19\x33\x46\x8b\xac\xd1\xa8\x4c\x6d\xb4\x2b\x53\xed\xcd\x20\x93\xec\xbd\x20\x93\x1a\x55\xe9\x3a\x60\xd9\x62\xc6\xb7\x81\x78\xde\x63\xbf\x58\xe9\xd7\x56\xfa\xaf\x56\xfa\x17\x2b\xfd\xdf\x22\x50\x67\x49\x8b\x0b\x1a\x2f\x96\xa7\x1c\xfc\xab\xf7\x3d\x78\xb7\xbe\x73\xb8\xc8\x54\xbc\x3c\x9d\x0b\x52\xdf\x43\xaa\x88\xdf\x99\xb2\xf4\x82\xea\x3e\xab\x04\xd5\xeb\x82\xce\x79\x87\x0b\x3a\xff\x45\xbc\x5d\x8b\xb7\x5f\xe1\x6d\x49\x63\x06\xd6\x5c\x90\xc8\xdf\x40\xdd\x49\x7f\x9b\xc1\x4d\x22\x9e\x9f\xc3\x25\xc2\x01\x44\x5a\xd0\x19\xbd\x62\x34\x2b\x65\x9c\x48\x95\xf8\xc2\x24\x9a\x9c\x73\x1a\xb3\x55\x41\xed\x7c\x3f\xa8\x24\xec\x28\xe0\x6f\x01\x05\x95\x64\x41\x05\x95\xc4\x51\xad\x8c\xd6\x72\xbd\x50\x49\x3c\x57\x41\xe3\xd9\x39\x65\xa7\x70\xd7\x8a\xd7\xd7\xe2\x55\xf8\xb6\x67\xfa\x7e\x82\x37\x7d\x45\x95\x6c\x36\xa3\x17\x69\x2c\xb1\xa5\x92\xcd\x9e\xeb\x57\xfe\x35\x65\xc9\x29\xbf\x60\x4a\xf8\xc8\xdf\x0e\xe1\x8d\xd3\x7e\xc5\x3c\x4e\x68\x99\xc4\x70\xe0\xe4\xeb\x01\xbc\x62\xa7\xbc\x2e\x19\x3d\x5f\xc4\xd9\xc9\x4a\xdc\xbc\x22\xe1\x95\x4a\xc0\x0e\x8b\x8f\x17\x14\x48\x13\x5e\x37\xbc\xfd\x2c\xde\x94\x07\xe8\x2b\x48\xe7\x4f\xbf\xe8\xb4\x6b\x9d\xf6\xab\xbc\x52\xf4\x19\xe1\x2f\xfa\x8c\x5c\xa4\xf4\xf2\x18\x3c\x19\xf3\xa7\x67\xf9\x95\x4c\xd3\xbe\xa5\xf9\xcb\xa1\x78\xc1\xce\x95\xd4\x0e\x29\xe9\x42\x45\xd1\xba\xda\x17\x49\x07\x2a\x09\x3b\xd7\xed\x5c\xd7\xed\x5c\x5f\xf2\xfc\x3c\xce\x66\xcb\x98\xcf\x27\x7f\xd9\xcb\x66\xef\xe2\xcc\xa9\x5a\x24\xa2\x36\xda\x1a\x9d\x50\xb6\x2f\xa5\x15\x5d\x0a\x85\x46\x96\x51\xe1\x42\x64\x17\xbe\x2d\xbb\x33\x0b\x09\x4a\x15\x40\xc6\x83\xf4\x78\x91\x66\x27\x1d\xaa\xb7\xa4\xf0\xa8\x51\x8e\x9c\x66\x1e\x43\x93\x90\x46\x15\x86\x72\x7b\xea\xd2\x84\x45\xe9\x36\x4a\xd0\x32\x2c\x4e\xa5\xca\xc7\x90\x41\x0d\xa7\x71\x29\x6a\xe8\x2c\xd9\xef\x5b\x45\x4f\xe3\xd2\xb2\xa3\x96\x2a\x8d\x96\x74\x4c\x76\x88\x5f\xee\xdd\xe3\xe5\x68\x40\xd5\x9c\x5a\x65\x06\x29\xf5\xdc\x5a\xf4\xed\x68\x59\xd0\x0b\x10\xaa\xf2\x87\x51\x46\xaf\x18\xa1\xf0\x83\xb0\xf8\x15\x12\x57\x7a\xc5\x20\x07\x11\x19\x91\x96\xaf\xaa\x59\xd4\x12\x2b\xb5\x46\x01\x1b\xf1\xcb\x2d\xa1\x1e\x1b\x2d\xe2\x92\xbd\x54\x82\x52\x84\x7d\x4e\x93\x32\x25\x24\x6c\x77\xcd\xde\x13\x56\xa3\x01\xc8\xf2\x44\x1f\x99\x92\x8c\x30\xbb\xcf\x01\x48\x41\x45\x19\xa6\xc8\x7c\x26\x7b\xa6\xbb\x18\xa4\x73\x4f\x6b\xf0\x19\xd5\xa0\x20\x0d\xd3\x46\x4f\x23\xc2\xa0\xa7\xf1\x72\x49\xb3\x19\xec\xcd\xb6\x74\xd6\xd4\x8f\xfd\xba\x4c\x12\x8c\x99\x18\x32\x22\x40\x2d\x8b\x6b\x09\x2e\x87\xdb\x51\xa0\x86\x86\xe5\xa8\x33\x2c\x07\x07\x0a\x9b\xa6\x1f\x9d\x33\xa5\x06\x87\x0b\x35\x17\xd0\x35\x28\x5f\xa8\x1a\xa9\x5c\x53\xd1\x86\xe8\x35\x98\x9e\xa7\x73\x3d\x6d\x4a\xdb\x24\x27\x99\x99\x9a\x5c\xad\x65\x5e\x9b\xa1\x02\xe1\x31\xdf\x9a\x15\x28\x29\x67\xae\x9b\xb5\x06\x5f\x89\xb6\xef\xec\x37\x58\x4e\x68\x3d\x17\xd3\x72\xa1\x5a\x2e\x9a\xbb\x08\x5a\xee\xdc\xc0\x0c\xd9\xc3\xab\xed\x21\x35\xa5\xa0\x20\x00\xe3\xbd\x45\xd9\xe6\xd1\x77\x48\xea\x35\x69\x69\x69\x6e\xcc\xf5\x95\x1c\x3e\xc5\x31\x09\x23\x5c\x92\x31\x4e\xb4\x52\x76\x50\xee\x24\xae\xdb\xf7\xa8\xc7\xc2\x32\x42\xae\xeb\x49\x23\x72\x78\xc5\xc3\x61\xb1\x43\xc6\xa0\xea\x95\x12\x9e\x64\x84\xd3\x7d\x2f\x73\xdd\xd4\x75\x53\xdb\x1c\x2d\x25\xbc\xe1\x14\x1a\xc6\x31\x89\x95\xe3\x86\x14\x61\xaf\x18\x12\x95\x17\x41\xa5\x28\x28\x07\x03\x0d\xd2\x62\xcb\x79\xc2\x8d\xc0\x9c\x1b\xee\x2a\xf8\x60\x9a\xea\x51\xeb\xb5\xc7\x08\xd8\x57\x2b\xe3\x45\xa3\x92\x5d\xb8\x6e\x5a\xfe\xc0\x69\x11\xea\x15\x3c\x67\x41\xfc\xad\xb1\x31\x62\x16\x9a\xb8\xfc\x2c\xf0\xaa\x2b\x3c\x4f\xb3\xd9\x24\x87\x9f\xb7\x19\x85\x53\xd4\x61\xee\x21\xb6\xc3\x18\x1b\xc5\xf6\x20\xdb\x29\xc0\x2c\x90\x03\x2a\x8f\x85\x99\x65\x6b\x63\x99\x0d\x0b\x75\x66\x59\x7b\x4d\xf1\xcb\xda\xca\xab\xc5\x42\x2b\x4e\xa4\x64\x8c\x63\x6d\x2e\x12\xa4\x3b\xb1\xeb\xf6\xf3\x20\x1d\x0c\x50\x01\x16\x2e\xa0\xac\x29\x9e\xa6\x39\x18\xb5\x4c\xc0\xb2\xa5\x71\x66\x61\x65\x72\x02\x0d\xd9\x9f\xf9\x0a\xa8\xb9\xa8\x30\xbd\x4a\x4b\x56\x76\x75\x4d\xf5\x27\x27\x63\xcb\xe2\x26\xc8\x77\x52\x50\x04\xe2\x67\xd2\xcb\xc2\x5c\x77\x27\x8f\xd0\x7a\xcd\x7f\xba\x3a\x22\x7a\x91\xd7\x7a\xa1\x8c\xf9\x94\xc6\x81\x2f\xa6\x69\x6f\xb1\x98\x74\x1d\xc5\x30\xc2\x1c\x5a\x96\x70\xdc\x84\xa9\x45\xa0\x2c\xb1\x03\x03\x2f\xa5\xc5\x4e\x50\x78\x29\xec\x5f\x4b\xd3\x22\xed\xea\x59\xae\x5c\x29\x08\xdf\x27\x5e\x8e\x53\x4b\x9b\x92\x42\x2d\x12\x5c\xa4\xc8\x52\x30\xba\xfd\x60\x42\x57\x85\x12\x81\x52\x3e\x64\x23\x46\x4b\xd6\x7d\x9d\xe8\x1d\x26\x94\x66\xe0\xea\xab\xdf\xb8\x5e\x86\x84\x91\x1d\x8b\x4f\x3e\x01\x49\x4d\x08\xc9\x20\xa9\x9f\xc3\x89\xe8\xd3\x91\xfa\xe6\x49\x1d\x22\x6d\x99\x59\x69\xd3\x2a\x9e\x05\x28\x6e\x53\x5c\x94\xe3\x89\x52\x03\x70\x53\x39\x4e\xcb\xc4\x69\x56\x9a\xb2\xb5\x96\xd5\x67\x4f\x28\x0c\x76\xd4\xd2\xd7\x0a\xc7\xbc\x50\x98\x45\x9e\x4e\xb0\x8e\x8f\x2c\x10\x68\x63\x4f\x29\x76\xbf\x51\xc3\xeb\x30\x0c\xe8\xb4\xcd\x30\xfe\x00\x2c\xed\x7c\x8f\x21\xd8\x8e\x62\x86\xaa\x89\xf3\x10\x54\x35\xa6\xf9\x64\x63\x6e\x91\x17\x34\xdc\x2b\xac\xe6\xea\xcf\x74\x42\x4f\x74\xd5\xd5\xa8\x56\xc3\x54\xcd\xa9\x89\xfd\x13\x4d\xf6\xcd\xb8\x61\x6d\xba\x1a\xee\xab\xd1\xf2\x1c\xa2\x79\xcb\xf3\x4d\x7c\x97\x29\x0c\x33\xcd\x1a\x7b\x86\xcc\x60\x90\xcc\xd3\x2f\x21\x8d\xec\x1e\x74\x66\xb7\x33\xf3\x46\xaa\x4d\xf6\x16\x1d\xd5\x50\x2f\x43\xeb\x35\xf3\x32\x54\x55\xcc\xb6\xa3\x20\xed\xab\x45\x80\x38\xdb\xba\x85\x36\xb5\xb0\x0d\x36\x60\xf9\xa9\x60\xfc\xa8\xa6\xd3\x34\x64\x11\x38\x61\x01\xa0\x59\x19\xd8\x2a\xcc\xbb\xa5\xde\x57\x18\x4d\xa4\x27\x0f\x7e\xc1\x79\xf9\xa8\xa0\xb3\x55\x42\xbd\x12\xc9\x6e\x48\xf4\x59\xf6\xf3\xd9\xf5\xcb\x19\xd9\xe0\xb4\x69\xe3\x55\xa8\x7c\x85\xc0\x45\xe3\xc5\x9e\x30\x0d\x40\xfa\xb2\x6b\xb4\x61\x6c\x4a\x3a\x26\xc5\x36\x34\x92\x7d\x4e\x0d\x74\xa1\xdd\xbd\x16\x35\x1e\xf2\xbd\xfb\x15\x35\x02\xdc\x31\x35\x6e\xa2\x10\x44\x74\xb2\xb2\xdb\x6e\x5f\x58\xbd\x10\xad\xa8\x3a\x1c\xe6\xbb\x43\x3f\x10\x39\x18\xc9\x40\x5d\x15\xf3\x3f\x42\xe3\xb8\x20\xfd\x71\x90\x05\x92\xc6\x50\x3a\x92\x19\xda\x1d\xfa\xe8\xa6\x20\x7d\x1f\x53\x8d\x51\x62\x1f\x49\x33\xd1\x8c\x64\x8a\x6a\x03\x17\x41\xbc\x3a\x66\x39\x8d\x91\xca\x92\x3e\x2e\xc8\x36\xce\xc9\x63\x9c\x92\xa7\x38\x26\xfe\x13\x5c\x12\x36\x4a\xf2\x73\x5e\xf8\x79\x9e\x80\x29\xe1\xbb\xbc\x04\x66\x69\x07\xd6\x59\xe2\x04\x2f\xf0\x0a\x2f\xf1\x1c\xcf\xf8\xb5\x77\x4a\x42\x30\xb9\xa7\x60\xc8\xaa\xf6\x17\xdc\x80\x25\xa1\x41\x19\xa0\x99\xf6\x07\x54\x22\x5c\x92\x52\x61\xad\x22\x0b\xe3\x59\x4e\x6f\xc9\x32\x27\xe3\x60\x16\xce\xf9\x39\x3b\x0d\xe7\x51\x80\xe6\x83\x81\xbd\x8f\xe7\xd3\x6c\xe2\x2d\x88\x97\x90\x59\x38\x1f\xfa\x91\x65\x93\xb1\xe2\x49\x11\x5e\x42\x41\x6c\x94\x59\x57\x68\xd7\xbc\x2c\xd1\x34\xe1\x7d\x9f\xe6\xeb\x78\x92\x4f\x12\x00\xb8\xc5\x3a\x9d\x14\x88\x13\xc0\xab\x2c\xfd\xbc\xa2\x07\x79\xc1\x3a\x4d\x4f\x53\xb3\xb0\xbc\xb3\x94\x50\x8d\x04\x0c\x87\x29\x2c\x34\x23\x34\x4c\x23\xec\x71\x84\x5d\x35\xca\x10\x5f\x4f\xd7\xcd\x76\x52\x4e\xf9\xca\xf5\x4c\xf9\x7a\x6a\xa2\xb4\xcc\x0b\x66\xab\xf3\x1b\x6c\x43\xc0\x18\x8d\xc4\xb9\xc5\x74\xe8\x4f\x32\x37\x9f\xfa\x93\x71\x85\x10\x6e\xd2\xb2\xfc\x84\x1a\x4c\x36\x37\x8a\x71\x8f\x51\x0d\x3d\x47\x37\x85\x65\xf9\x90\xd1\xcb\x9e\x70\xea\x83\x30\xb5\x6c\xb9\x52\x9e\x11\xce\x4a\x99\xe4\x4b\x4a\xa8\xb4\xda\xca\x39\x82\x9d\xd7\xac\x77\xe3\x59\x7c\xbc\xa0\xca\x9d\x53\x4c\x32\xef\xf1\x18\x8d\x5e\xfc\xfc\xe2\xcd\xe1\x41\xcd\x68\x2f\xde\x60\xb4\xa7\x6c\x5c\x39\x50\xb6\xec\xb7\x42\x27\xcf\x9c\x01\x8d\x6c\x0b\x2e\xd3\x23\x61\x98\x4c\x51\xa5\x0d\x40\xfd\x7b\xd5\xc1\x3a\x2a\xe1\x84\x92\xf0\x0a\x91\xce\xbd\xed\xbe\xac\x46\x58\xd5\x4b\x9b\x90\xcb\x22\xcf\x4e\xa4\xdf\x90\x5e\x3e\xd7\xe6\xf4\x65\xdf\x41\xc1\xed\x0d\xf2\x85\xe9\x68\x92\x03\xeb\x0a\xec\x07\xef\xa3\x10\x90\x79\xfe\xe3\xa7\x68\xf4\x6c\x35\x9f\x83\xe5\x38\xc7\xe9\x5e\x64\x49\x3e\x4b\xb3\x93\xba\x4a\x40\x79\x99\x32\x3e\xc3\x94\x38\xce\x80\xf2\x2b\x77\xc4\xf2\x57\xf9\x25\x2d\xf6\xe3\x92\x7a\x08\xdd\x24\x71\x49\x9d\x53\x7a\xe5\x4c\xe0\x69\xc5\xe6\x4f\xcd\xe3\x50\x3d\xc7\x65\x92\xa6\xf2\xf9\x38\xcd\xe2\xe2\x5a\xbd\xc4\x25\x7d\xf2\x58\x95\x48\xca\x6d\xf3\x38\xdc\x36\x15\xf9\x4f\x16\xd4\xaa\xd6\x7a\x2d\xe2\x4b\x67\xa2\x71\x6f\xa5\xa8\xa0\x51\xaf\x2a\xa8\xef\x42\x38\x85\x81\x1c\x96\xb0\x49\x97\x03\xef\x60\x56\x35\xf6\x55\x9f\x2a\x25\x04\x18\xa5\x26\x71\x58\x10\x20\x59\x23\x95\x13\xd2\x9e\x86\x5a\xc9\x3f\x32\x5a\x53\x01\xbc\x8b\x3a\x16\x31\x4b\x33\xbf\x31\xb1\x32\xa7\xfc\x16\xb4\xe7\xd9\x5e\x0d\x58\x3a\x05\x41\xf4\xfc\xa5\x1c\xe0\x88\xd4\x80\x12\x0f\x16\xbf\xbe\xf2\x98\x91\xfe\xb8\xaa\x3c\x0a\xb6\x36\x4e\x09\xda\x10\xb6\x23\x09\x60\x0e\x99\x7d\xc5\xf1\x87\xf5\xba\xcf\x61\x86\xed\x84\x47\x7b\x73\x39\xcb\xf2\xcb\xac\xa7\x16\x63\xd2\xe3\x2d\x6a\xe4\x64\xbd\xa6\x15\xdc\xaa\xf6\x82\x99\xa9\x16\x13\x24\xdc\x87\xd1\x2b\x46\x12\x95\x71\x46\x16\x98\x91\xc7\xe2\xc6\x0b\xac\x95\x51\x17\xf7\xe2\x55\x5c\x32\x52\x36\x33\xa9\xd9\x32\x55\xae\x4c\x95\x4b\xcc\xc8\x23\x99\xbb\xbe\xdf\x7a\xd2\xd9\x59\xca\x28\x99\x83\x33\x04\x4f\x97\x9a\xa1\x4a\x78\x3b\x8b\x4b\xf6\x86\xd2\x99\xb4\x54\x87\xf7\xc3\x9c\xc5\x0b\x3b\x61\xff\x34\x2e\x48\x31\x8a\x17\x8b\x3c\xf9\x90\x95\xf1\x9c\x7a\x0d\xbb\x5e\x83\x1c\xee\x10\x7f\xfb\xbb\xe9\x78\x42\x77\x77\xbf\x25\x84\x3c\x99\x6e\xf3\xc7\xc7\x84\x10\xff\xf1\xf4\x11\x7f\x7e\x44\x08\x79\x34\x9e\x3e\xe6\xcf\x4f\x08\x21\xdb\x1c\xf8\x0f\xb7\x6b\x18\x68\xcd\xdd\x97\xee\xd3\xb0\xd6\x65\x9c\xb5\xb0\x38\x0e\x29\xb7\x9f\xf6\x09\xf1\xfc\xef\xb7\x5d\xf0\xe2\xa3\xed\xb1\xec\xa1\x6a\xb5\x1d\x40\x51\xd4\x87\x5d\x9f\xe3\xe7\x92\x78\xf5\xdb\xb5\xf9\x9d\xb5\xf9\x9b\x6a\xdb\xb6\x6a\xdb\x76\xdd\x5a\x55\xdb\x9d\x55\x6d\xeb\xaa\xaa\x4a\x1a\xd0\xa3\xba\xe7\x36\x8e\x6a\x4e\xb3\x49\x6d\x1e\x76\xf4\x0d\x3e\xf5\xe8\x28\xc9\x97\xd7\x5e\x6d\xe5\x30\xc3\xd6\x5a\xf2\x12\xa8\xbe\xb4\x23\x96\x2b\x07\x83\xf6\x86\xc6\xcd\x2d\x81\xd0\x64\x73\x03\xc6\xfb\x9b\xd9\x68\xaa\xbd\xa1\xee\xa1\xed\x46\x2f\xd1\x5c\x54\xed\x3a\x6e\xc8\xd0\xdf\xb7\x09\x21\x63\xc3\x21\xd4\x7d\xd3\x27\x0b\x0b\xa7\x2d\x35\x86\xa1\x50\x78\xda\xe3\x54\x90\x72\x8c\x00\x99\x0a\xad\xc3\x55\xec\x90\x6f\x9f\x3c\xf2\xbf\xb7\x9d\x69\xd8\x33\xdf\xd8\xfd\x8f\xeb\x53\x14\x8e\x23\x42\x43\x6a\x18\xb6\x8d\xcf\x7e\xed\xb3\x1f\xe1\x4c\x62\x51\x63\x3c\xf4\x2d\xbe\x46\x67\xe3\x7e\xb3\xf1\xed\x5b\x1b\xf7\x23\xdc\x3d\x2d\xd8\x64\xa9\x5b\xae\x6b\x3e\x3d\xbf\x30\xe5\x56\x31\xb0\xc1\xa3\x68\xe2\xc0\xe6\xad\x6f\x12\xc5\x86\xbf\xe5\x08\x6a\x88\x38\xd8\xb0\xa1\x4c\xef\xc6\x1c\x27\xd0\xce\xfe\x9a\xf6\x5e\xa2\xa9\xda\x3e\x78\x64\xe3\xc8\xd9\xd4\x1e\xb2\x84\x87\x98\xa1\x49\xbd\xcf\xe4\xd1\x30\x6b\x4e\xe6\x23\xe1\x20\x66\x7a\xfb\x94\x4e\xbc\x3f\xb5\xde\x08\x77\xf6\xcf\xac\x48\x66\xef\xfc\xe5\x3d\x97\xa4\x6b\xb7\x4c\x37\xcf\xb5\x6a\x76\x8c\x1f\xd5\x97\x09\x4d\x58\xcd\x32\xc9\x12\x1c\x75\x1f\x7d\xd4\x69\x5b\xd4\xbb\xad\xb3\x15\x1b\x89\x9a\x9e\x83\x0d\x41\x41\xd2\x9a\x03\x04\x79\x0b\xb5\x31\x63\x0d\x19\x94\x05\x6c\x20\x29\x93\x8e\x0d\x59\x73\x92\x23\x2f\x07\x75\x6b\xc2\x45\xae\xeb\xb0\xb6\x2d\x5c\x15\x8d\xbb\x4e\xca\x2c\xc8\x58\x93\x20\x3b\x66\x60\x6a\x86\xf9\x45\xeb\x51\x9c\xa1\x49\xf3\x75\xbd\x76\x9c\xaa\x36\xbc\xba\x84\xe3\xcf\x2c\xae\xba\x01\x26\xac\xde\x02\x5c\xfb\x5d\xb4\x54\x37\x9f\xd4\x72\x10\xc3\xc1\xe0\x4e\x66\x28\x5b\xc1\x93\x89\x3d\xe1\x19\x26\x9d\x7b\xf9\x2e\xd1\xfe\x99\x72\x60\x6c\x5b\x77\x52\x3e\xf4\x11\xce\x79\xb6\xe1\xb0\xd8\xc9\xd6\xeb\x21\x07\xd0\xb9\xa9\x8e\xc3\x6f\x5d\x1d\xba\xbd\xaa\xed\x3f\x55\x15\xe4\x9e\xe6\x64\x3c\xa9\x55\xfa\x88\x57\xaa\xea\xa8\x8c\x47\xb2\x00\x78\xa2\xb5\x1d\xd4\xde\xf6\x02\x01\xe3\xb9\x1b\x60\x23\x0b\x94\x93\x55\x39\x91\x5e\xd6\x38\x54\x86\xd0\xed\xb8\x12\xc7\x9c\x96\xec\x68\x07\xf8\x3a\xf6\xba\x6a\xac\xaf\x71\x36\x36\x5c\xf1\xe8\xb6\x46\x6f\xc5\x96\xfe\x22\x1c\x20\xf8\x23\x2d\x1b\xe4\x60\x03\x5e\x70\x0b\xbf\xff\x31\xdf\x34\xa4\x90\xe4\x61\xcb\xd9\x4c\x83\xb9\xaf\xfd\xcc\x36\xdc\xce\xd8\x5e\x60\x14\x85\x9a\x83\xb6\xb4\xeb\xe6\x02\xb3\xd5\x0f\x02\xc5\x6d\xbc\x1e\x2c\xf2\xcb\xa9\xe1\x41\x14\x13\x2f\xf5\x0a\x0c\xd2\x46\xd1\x33\x12\x23\x1c\x9b\x85\x6d\xb8\xfd\xb1\xd8\x0a\x08\xa7\x5e\x8e\x21\x37\x6f\xbf\x0b\x89\x6d\xcb\xdd\x68\xa7\x23\x3c\x67\xaf\xe6\xf9\x2e\xcb\x95\x43\x50\x51\xbc\x21\x96\xcb\x50\x85\x63\x31\xa6\xdb\x1a\xed\x7f\x5d\xa3\xf5\x06\xc5\xaa\xe5\x5e\x07\xe2\xca\xa6\x8a\x2c\xb3\x1c\xf2\x4e\x0b\x38\x01\xc0\x49\x98\xa8\x67\xfd\x34\x46\xb8\xd0\x7d\x16\xeb\x70\x0f\xff\xaa\x5f\xdf\x6b\x33\x4d\xa8\xd1\x1c\x5f\xf6\xff\x64\x93\xc5\x88\xb7\x20\x76\x50\x53\x5f\xbf\x83\x61\xc2\x46\xc7\xd7\x8c\x0a\x15\x9f\x8e\x0b\x87\xe3\x7a\x38\x03\xf7\xa5\xb8\x20\x9c\x62\x51\xed\x3c\x7a\xe8\x65\x83\x02\x6d\x3d\x1e\x16\x15\x66\x23\x96\x3f\xbb\x66\x14\xb8\xdc\xdd\x0e\xe9\x44\x55\x31\xe1\x98\x10\x2e\x09\xc7\x78\xb0\xf0\x66\x9e\x7a\x1b\x78\xe7\x8f\x1e\x7a\x6c\x90\xf1\x26\xb2\xca\x1b\xe3\x18\x97\x08\xe1\x15\x19\xe3\x25\x29\x77\xc7\xd3\x78\xf8\x78\x12\x5b\x2e\x48\x97\x41\x36\x20\x8f\x11\x23\x39\x68\x44\x18\x0c\x1e\x45\x3b\x3b\xfe\xd3\x75\x33\x79\xe0\xc3\x87\xed\xf6\x87\x6d\xfe\xe1\x49\x3b\xfd\x11\x8a\x70\x12\xae\x06\x83\x88\xb0\xdd\x5d\xff\x89\xbb\xfd\xed\xb7\x56\xc2\x53\xfb\x7d\xfb\xdb\x6f\x5d\x16\xf0\x1b\xa6\x04\x1b\xfe\xae\x4e\x75\x34\xed\xa3\x68\x77\xf7\x71\xad\x12\x14\xf8\xb7\xd6\xe2\x8f\x37\x0c\xed\x71\xe7\xc8\x76\x77\xb7\x6f\xed\xb3\xde\x49\x09\x5f\x57\x0e\x50\xba\x57\xd6\x62\xe7\x6b\xa8\x8b\x73\x92\xfd\xfd\x11\x4e\x49\x18\xe1\x98\x8c\x71\x49\xb2\x61\x1e\xc4\x3b\x65\x10\x0f\x88\xff\xe4\xd1\xd3\x47\x28\x15\xc2\x59\x8e\xa6\xc7\x38\x1e\x40\xe2\x6e\x39\x2d\x27\xf2\x19\x89\xe1\xe6\x53\x8f\x71\xb0\xcb\x89\x13\x59\xa4\x08\xd9\xee\xee\x76\x34\x28\x42\xb6\xb3\xf3\xd8\x7d\xf2\x28\x1a\x38\x84\x38\x08\x4d\xe0\x1e\x87\xf9\xf1\x78\x91\xed\x68\x67\xe7\x29\x1a\x74\x94\xf6\xc7\x50\x7c\x77\x57\x14\x87\x9a\xb6\x65\x4d\x8e\x11\x06\xa5\xda\x7f\x8b\xf1\xb0\x51\x08\x89\x76\x18\xe1\x94\x38\xab\x4c\x98\x07\xcd\xac\x23\xfb\x21\xcd\xd8\x53\x98\xa6\xa9\x79\x9c\xc0\x5f\x1c\x13\x67\xef\xd9\xfe\xf3\x17\x3f\xfc\xf8\xd3\xcb\x7f\xfc\xf3\xd5\xeb\x37\x6f\xdf\xfd\xeb\xfd\xc1\xe1\x87\x9f\x3f\xfe\xf2\xeb\xbf\xe3\xe3\x64\x46\xe7\x27\xa7\xe9\xef\x67\x8b\xf3\x2c\x5f\x7e\x2e\x4a\xb6\xba\xb8\xbc\xba\xfe\x32\xf6\xb7\x1f\x3d\xfe\xf6\xc9\x77\x4f\xbf\x1f\x6c\x39\x52\x27\x24\xb6\x74\x42\x82\xc1\xa0\x44\x45\x58\x46\x24\x0e\xcb\x08\xe7\x61\x6c\xaf\x76\x89\x22\x52\x06\x9d\x64\x9b\xd6\x56\x98\x7b\xec\xef\x8f\x77\xc7\x6d\x86\xd5\xcb\xec\x22\x5e\xa4\xb3\x9e\x00\xb0\xa3\x9e\x80\x10\x16\xdc\x39\x5f\x2d\x58\xba\x5c\x80\x6b\xd4\xc7\x8e\x72\x3d\x61\xf8\xf9\x7c\x42\xe5\x7c\x0e\x81\x5e\x72\x5d\x0f\x9c\x4d\x85\x19\x06\xa7\xa6\xd3\xf1\xe4\xf1\x30\xfb\xfb\xe3\xa8\x15\xbe\xc2\x52\x66\xc0\x5a\x1f\x86\x05\xe5\x4e\x16\x94\x03\xf2\x08\xe5\x7c\x99\x4b\xbe\xf3\x9f\xb8\xfe\x93\xef\x7c\xff\xc9\xd3\x31\x1a\xf0\xb4\x81\xcf\x97\xde\x7d\xf2\xed\x36\xa4\xf0\xfd\xcc\x53\xb7\x23\xb8\x49\xc5\x36\xf0\x52\x92\xa3\xdd\x5d\xff\xa9\xdc\x02\xe9\xee\xae\xbf\x6d\x9e\x9f\xc8\xc7\x27\x8f\xdc\xd4\xf8\x39\x8c\xcd\x8e\xc8\x43\x67\xe8\xd8\xf3\x3c\x46\x11\x79\xb2\x8d\xf3\xd0\xf9\xd4\x4e\x7f\xd4\x25\x21\x8b\x9b\xe2\x42\xcb\x0b\x1c\x07\x73\xe4\xe9\xc3\x7c\x58\x0c\x7d\x9c\x10\xcf\xdf\xd9\x29\xd1\xd0\xc7\x0b\x92\xec\xee\xfa\x78\x45\x86\xdf\xe1\x25\xc9\xa6\xf9\xd0\x9f\x8c\xf1\x9c\x64\xd3\xa1\x3f\xf1\xf1\x0c\x5c\x99\x2e\x23\xd8\xaf\xcb\x01\x99\xe3\x94\xcc\x5c\x5e\x7a\xb8\xe2\xc5\x67\xbb\xbb\x64\xb8\xc2\xab\x01\x29\x83\xd5\xee\x38\x48\xc9\xf6\xb7\x4f\x1e\xa6\x03\x51\x0a\x43\x89\xd5\x90\x3c\x15\x9a\x1a\x31\x49\xad\xb2\xa9\x2e\x5b\x40\xd9\x18\xca\xc6\x1d\x65\x25\x09\x96\xa2\x94\xf8\xc3\x85\x96\x12\xa4\x96\xdf\xe9\x5e\x3c\x7d\x13\xbf\x99\xf8\x5b\xe3\x87\xde\x0c\xfa\x8e\x38\x70\x78\x1d\xb3\xd3\xd1\x32\xbf\xf4\xb6\xc1\xd3\xdd\x90\x2c\x24\x6d\xaf\x32\x3d\x8c\x1f\x5a\x79\xd2\xa1\x10\x67\x36\xa9\x40\x35\x99\x38\x95\xbe\xb8\x31\x88\xe7\xc8\xd3\x87\xe9\x30\x1f\xf2\xe9\xe3\xc3\x5a\xf0\x51\x2d\xc9\x8a\x4f\xe8\x9c\x6c\x3f\x02\x78\x63\xd5\x3e\xdc\x7e\x8c\x86\xf6\xfb\x77\xdf\xa1\xc9\x18\xcf\x48\x31\x1d\x4f\xd2\xa1\x8f\x4f\x49\x31\xf5\x27\x43\x1f\x1f\x13\xb6\x33\x5e\xaf\xf9\xa0\x99\xeb\xfa\x5b\x6c\x67\x3c\xf5\x27\x42\xd8\xc7\xc4\xa0\xe2\xe3\xd2\x63\x08\x43\xd0\x1a\x10\x00\x33\x42\x88\xbf\x35\x9e\x7a\x25\x51\x89\xbc\x0c\x8e\xc9\x0a\x4d\xbc\x58\x94\x9a\x2f\xf2\xbc\xf0\xe0\x71\x91\x9f\x78\x0c\x6d\xc1\xf3\xab\x37\xdb\x08\xb3\x87\x5e\x62\x4f\xd8\x30\x46\x68\xc7\x77\x5d\x2f\x1e\x0e\x71\xf2\x90\x6c\x23\xec\xb1\x01\x89\x07\xcb\x5d\xe2\x4f\xe7\x5b\xc9\x64\x6e\xcf\x9d\x3f\x5c\x22\xf4\x30\xd9\x25\xdb\xbc\xc8\x60\x80\x93\x2d\x5e\x04\xb2\xaf\x78\xaf\x64\x57\x64\x79\xaf\x24\x1e\x7b\x98\x0c\x7d\x64\x57\x92\xf3\x02\x64\x89\x26\x5e\x49\x98\xfd\x61\xd9\x91\x91\x8c\x11\x0a\xf2\x5d\xf2\x34\xa0\x61\x36\x98\x89\x8b\xa6\xc4\xb3\x01\x39\xc5\xe5\x16\xdf\x4d\x38\xb7\xf6\x5e\xbc\xb3\x93\xaf\x4b\xbc\x18\x90\x3c\x58\xec\x8e\xed\x42\xb1\x28\x14\x8b\x42\x0b\x28\x04\x9f\x87\xa7\xd1\x9a\xf8\xdb\x4f\x1f\x1e\xb7\x64\xd2\x02\x32\xdd\x54\x9a\x22\xb1\x1c\x8b\xd5\xc4\xf3\x5d\xd6\xa2\x4e\x28\xac\x7a\x84\x20\x3f\x72\x08\xc9\xa4\x36\x6d\x17\x6a\xa5\x21\x59\xa1\x25\x82\x9f\x92\xe3\x92\xd0\xf5\xfa\xa6\xb2\x54\xe7\x0a\x49\x33\x6f\x94\xfe\xe5\xb7\x4b\xff\xf2\x90\x46\x88\x12\x21\x3e\xb3\xdd\xb6\x85\x1d\x12\x40\xde\x03\x70\xb5\x6b\xbf\x79\x0d\x59\xe0\xfd\x6a\x64\xb7\x56\xd9\x14\x0c\xe6\xf7\x17\x0c\x3a\x28\xb8\xbb\x71\x2d\x1b\xdc\xd0\xbc\x11\x12\x7e\xd5\xba\x48\xc9\x87\xf0\xc2\x1b\x46\xff\x5b\xcb\x24\x3a\x20\x6e\x29\xed\xd2\xf8\x3f\xb1\x78\xf5\x86\x30\xbb\xbd\xa9\xff\xda\xa2\x36\xbb\x85\xb3\x3b\x3a\xa6\x96\xbb\xe6\xb6\x30\xcf\x0a\x5a\x52\xb6\x61\x76\x21\x24\x90\xaa\x44\xe5\xb5\xea\x55\x49\x1e\xaa\x6a\xb5\x16\x14\x2c\x3c\x3a\x8f\xd6\xad\xd5\x04\x26\x1a\xd1\x18\x4b\x06\xa3\x1c\xa8\x44\xc1\xe8\x0e\x0b\xa8\x50\xd0\x34\xc3\xb3\xf2\x85\x34\x0a\xc7\x51\x54\x63\x9e\xeb\x2f\xaa\x12\x8b\x21\xbd\xa1\xbc\x27\xb0\xe4\x3b\x32\x35\x92\xfc\x48\xb2\x2a\xef\x9d\x1f\x37\x52\xb6\x23\xd4\x54\xbd\xb4\x15\x2f\xac\xf9\x34\x13\xc5\x4f\xe4\xe6\xb0\x4d\x92\x8d\x63\x87\x6d\xd2\x93\x9c\xf7\xd2\xac\x57\x20\x09\xa1\x39\x4e\xa5\x14\x7f\x8a\x30\x8f\xda\xba\x3f\xf2\x28\x9b\x75\xae\x2b\x71\xb6\xe1\x48\x87\x92\x99\xbf\x35\xc6\x05\xd1\xd7\x84\x88\x73\x17\x39\x38\x27\x5b\xe1\xd1\xd1\x6f\x0f\x46\x0f\x07\x53\x0f\x85\x47\xd1\x4d\xb5\x8e\xb6\x4e\x70\x4a\xde\xd3\x93\x17\x57\x4b\x2f\x1f\x09\xf7\x80\xfc\x7e\x34\x11\x04\x8d\x74\x99\xff\x1b\x89\x1e\x12\x15\xab\xc6\x75\x19\x2e\xdb\xb9\x4b\xba\x98\xbb\xae\xf9\xdb\x2e\xc6\x53\x39\xf1\xb0\x5e\x97\xeb\xb5\x0a\x62\xe0\x39\x16\xcb\xd8\x41\x1e\xc2\x8b\xf6\x94\xa8\x4b\x13\xaf\x48\x32\x12\xa3\xe3\xa8\xd3\x74\x65\xf2\xa8\xf8\x54\x73\xb2\x9c\x2e\x75\x01\x99\x1a\xd4\x19\xff\x96\x2c\xdd\x62\x76\x68\xf9\x7c\x3a\xef\xf0\xd6\xe9\x94\xd0\xac\x63\x07\xbc\x69\xe7\xea\xf7\xa9\xeb\xb6\xa6\x06\xe4\xea\xae\xbb\x50\x97\x36\x21\x05\x4f\x51\x2d\xce\xa7\x73\xf5\x65\xa2\x24\x05\x84\x0e\x34\x37\xdd\x19\x3b\x12\xb3\xa3\x84\x0c\xb3\xa9\x33\x1c\x3b\x13\x56\x75\xf9\x6e\x54\xba\x17\x12\x6d\xa5\xa0\xbb\x06\x62\x05\x8a\xa6\x8e\x33\x99\x79\xe0\x8a\x36\x05\xbd\x62\x8f\xa2\x29\xd5\x8e\xed\x72\xec\x1c\x1d\x3d\x70\x1d\x34\xa1\x55\x85\x6c\x85\x23\xcf\xff\xb6\xeb\x3e\xb3\x39\x26\x9a\xb3\xb9\x3d\x1e\xe3\x9c\x38\x9f\x3e\x2d\xf2\x59\x5c\x9e\x7e\x3a\xe5\x7f\x34\xa5\xfa\xe9\x93\x83\x53\xf2\xfd\x78\xfc\x9d\xff\xfd\xf7\xdb\xdf\x3e\xfe\xee\xf1\xf8\xfb\xef\x7d\xbe\xf7\x0c\x86\x23\x8f\x54\xc4\x69\x4d\x9d\xfc\x2c\xcf\x17\x34\xce\x22\x07\x27\x26\xf1\x79\xcc\x68\xe4\xe0\x85\x49\x51\x9b\x2a\x72\xf0\xca\xa4\xfe\x48\x33\x5a\xc4\x2c\x2f\xac\xcf\x4b\xf3\xf9\x75\xbc\x8c\x1c\x3c\x37\x09\x22\xc2\x63\xe4\xe0\x99\x49\x13\x5b\x32\x72\xf0\xa9\x49\x13\x67\x28\x72\xf0\xb1\x75\xf4\x28\xcf\x74\x6e\x25\xc0\x3e\x8b\x1c\xfc\xba\xe3\x7c\x9e\x90\x3a\x6a\x27\x38\x66\x91\x83\x2f\x6a\xa3\x8c\x7f\x4e\xe9\x65\xe4\xe0\x6b\x6b\xa4\x8b\x3c\x66\x8f\xb6\x25\x42\x88\xf7\x1a\x5f\x9e\x3c\x56\x5f\x2e\xcd\x97\x97\x8a\x21\x10\x39\xf8\x4b\x2d\xd9\x7f\xa2\xd2\x3f\xd5\xd2\x4d\x03\x6f\x4d\xba\x61\x2c\x44\x0e\x3e\x6c\xa4\xef\x2f\xe2\xf3\x25\x9d\xa9\xcf\x57\xf5\xcf\xa6\x9d\x37\xf5\x0f\xa6\xa1\x57\x64\xeb\xe8\xf2\xe1\x83\x2d\xfc\x82\x6c\xfd\x76\xa4\xf2\x8c\x06\x53\xb0\x9d\x2c\x56\x09\xcb\x8b\xa3\xe8\xc1\x16\x3e\x20\x5b\xbf\x79\xd3\xc9\x78\x1d\xfa\xc3\xef\xa3\xa3\xd9\x43\xf4\x60\x0b\x7f\x26\x37\x55\xf0\x39\x8c\x23\xf2\x39\x6c\x62\xcd\x3c\xed\x84\xff\xb9\xe0\x7f\x4a\xfe\x27\xe1\x7f\xae\xf9\x9f\x3d\xfe\xe7\x92\xff\xf9\xc2\xff\x7c\xe2\x7f\x96\xfc\xcf\x9c\xff\x99\xf1\x3f\xa7\xfc\xcf\x31\xff\x73\xce\xff\xbc\xe6\x7f\xde\xf2\x3f\x87\xfc\xcf\x15\xff\xf3\x26\x22\xfd\x31\xb6\x9a\x06\xec\x44\x34\xbd\xa8\xf5\xe9\x23\x8d\xcf\x60\xe3\x45\xa4\xef\xc3\x91\xdf\x6f\x83\x54\xea\xba\x20\x6c\x6b\x41\x52\x8a\xcf\xfe\x30\x00\xfe\x48\xf6\xd7\xeb\xb3\xdb\x00\xf0\x73\x0e\x6c\xfa\x6c\x94\xe5\x33\xb0\xac\xe7\x00\xff\x19\x79\xde\x01\xd8\x32\xd7\xcd\x5c\xb7\x9f\x59\x59\x33\xfc\x8e\x3c\x73\xdd\x67\x1a\x38\x11\xf2\xdc\x80\xdf\xf7\x0d\x33\x43\x8e\x9f\x00\x5f\x17\xf4\x50\xb0\x15\x45\xf1\x97\xa6\x41\xe2\x8c\xc3\x2e\x3b\xc7\xef\x4d\x85\x6c\x08\xf3\x42\xa7\x8a\xb1\x24\x29\xe0\x02\x6c\x8f\xbc\x8c\xd0\x70\x30\xc8\x23\x14\x0c\x06\xf9\x4e\x1a\xa0\x8c\x30\x2f\x03\x05\x5f\x9c\x5b\x1a\x29\x96\x03\xca\x97\x86\x59\x25\x02\x55\x09\x6f\xa2\xd4\x0e\x6d\xdb\x37\x51\x1d\xd4\x9d\x83\x58\x71\x7d\xc3\x48\xbf\xef\x71\x18\x8e\xaa\x24\x66\xc9\xa9\x97\xa1\x9b\x0e\x45\x81\x0f\xa6\x89\xa1\x8f\x33\xa2\x62\x0e\x96\xe9\x17\x6a\x89\xe2\x3a\xf0\x7b\x3e\xec\x2c\x1c\x0c\x58\x44\xc2\x02\xd3\xa8\xaa\x3b\xcf\xfc\xe9\x6e\x7d\x77\xe6\x65\x08\x59\x2a\xf2\x3f\xfc\xe1\xbe\xe8\x9e\x50\xd1\x0b\x5e\xc9\xcf\x92\xac\xd5\x17\x34\xfe\x95\xb4\x83\x07\xe3\x1f\x5b\x97\x3d\xfe\x27\xf9\x18\x3a\x9f\x3e\x25\x79\x41\x87\xbf\x97\x9f\xca\xd3\xb8\x80\x9b\x23\xc2\xff\x6a\x85\x06\x20\x5b\xe1\x6f\xa3\x68\xf0\x60\x6b\x44\xaf\x68\xe2\xfd\xd3\x75\xff\x09\x44\x91\xfa\x1d\xbd\x7c\xf1\xe9\xdd\xfb\xb7\x87\x6f\xd7\x6b\xc7\x88\x27\xe8\xd4\x11\x20\xd8\x2b\x8b\x04\x7d\xf2\x47\xce\x80\x4e\x1c\xa7\xf2\x10\x7e\x40\x7e\x35\xd8\xc6\x3f\xc8\x8f\x0d\x6c\x0c\xff\x9b\xfc\x68\xbe\x53\xaa\xf0\x28\xe7\x37\x67\xf0\x40\xdc\x99\xff\x40\xc6\x57\x6c\x27\xf2\x25\xaf\x59\x93\xab\xde\xc4\x5a\x4f\x2c\x1a\x3d\x9c\x7a\x53\x72\x74\x74\xe4\xa1\x75\x6f\x9e\x17\x1c\x0c\x8a\x84\x08\xf1\x8a\x1e\xf8\xa3\x87\x53\x07\x0d\x9c\x07\x0e\xc2\x8c\x92\x77\xd3\x8f\x52\x6c\xa7\xb0\xa1\x8c\x92\x8f\x0a\x61\x2a\xf8\xb3\x01\xde\x38\xa7\xe4\x27\xaf\x33\xfc\x20\x16\xa9\x08\xa7\x0d\x81\x1f\x8e\x29\xf9\x91\x2f\x15\xf4\xf4\x65\xf9\x42\x87\x74\xc4\x25\x25\x3f\x4b\x85\x69\x9c\x50\x72\x5b\xfc\x65\xbc\xa0\x84\xd1\x29\xa3\xa3\xb4\xac\x77\x77\x65\x75\x89\x2f\x9f\xee\xc8\x92\x92\xe7\xd4\xfb\x88\x1d\x75\x1b\x3a\x08\xcf\x55\xda\xeb\x78\xe9\x20\x3c\x53\xaf\xef\x8a\xfc\x3c\x2d\xa9\x83\xf0\xa9\x4a\x3a\xa0\xcc\x41\xf8\x58\xbd\x4a\xe0\xeb\x20\x7c\x0e\x49\xa2\x15\xec\x88\x41\x3a\x08\xbf\xa6\xe4\x77\xea\x2d\x29\xc2\x27\xf0\x34\xa7\x08\x5f\xc0\xd3\x8c\x22\x7c\x0d\x4f\xa7\x14\xe1\x3d\x78\x3a\xa6\x08\x5f\x52\x92\xd1\x69\x46\xdb\x08\xe9\x17\x4a\x2e\xe9\xf4\x92\x8e\xc0\x24\xfe\xed\xbc\x85\x92\x7e\xa2\x8d\x83\xd7\x02\x61\x40\xcf\x24\x0b\x1a\x17\x1e\x07\x5f\x6c\x27\x0b\x74\xb4\x54\x4e\x7a\x08\x5d\x65\xca\x3c\x90\x6b\x15\x1c\x94\x5a\xe7\xfa\xed\x7f\xb8\xfe\xc3\xff\x70\xfd\x57\xd4\xf0\x4b\x3e\xcd\x62\x16\x7f\xfa\x04\x22\x3b\x18\x97\xc9\xf6\x86\xda\x9c\xb6\x0f\x14\xbc\x96\xb7\x31\xf4\xde\xbd\x92\x6e\xc5\xe3\x7f\x82\x86\xe1\xf1\x1f\x2a\x50\x8f\xc3\x7f\x29\x75\x38\xb1\xd7\x8f\x69\x2b\x79\xbd\xfe\xb7\xc1\xfe\x63\x28\x3d\xdd\x64\x31\x3a\xf4\x71\xa1\xa0\x2f\x9f\xaf\x6c\x87\x06\xa8\x08\xb3\x88\xdf\x58\x96\xaf\x69\xad\x58\x86\xe5\xc5\x33\x09\x23\x5c\x68\xb3\x4b\x9c\x93\x7e\xbf\x30\x36\xa2\x42\x95\xa0\xcf\xef\x76\xdd\xed\x14\xad\xd7\x10\x46\x45\x3a\x5b\x20\x24\x5d\xaf\xdf\x53\x08\xf5\x82\xd6\x6b\x6d\xc4\xd8\x71\x3b\xbe\xa2\x8d\xb8\xbd\x7c\x25\xff\x61\x02\x17\xb9\xee\x4b\xea\x15\x38\xe3\x33\x62\xd4\x3c\xd7\x6b\x26\xfa\xb1\x5e\x8b\xe8\x32\x99\xb5\x84\x2f\x68\x73\x2a\xb4\x90\x28\x1b\x0e\x03\x94\xce\xbd\x97\xd4\xa3\x61\x16\x01\xca\xa0\x09\xa8\x4c\xcb\x78\x4c\x5d\x07\xd4\x66\xc4\xe3\x17\xa2\x9b\x07\xa0\x37\xe4\xba\xde\x01\x49\xa7\x85\x47\xe5\xb7\x49\x01\x91\x38\x74\x37\x0f\x54\xcd\x90\xbf\xff\x2b\xb5\xa8\x35\x2a\xb1\x35\xd8\x61\xfc\xf3\x3e\x10\x94\x07\x5d\x9a\x52\x6a\x25\xc0\x52\xde\xe0\xaf\x1e\x43\x01\x73\xdd\x36\x0d\x1a\x8e\x23\x7b\x4f\x81\x18\xcb\x11\xd1\x33\xe0\x59\x89\xb6\x30\x7f\x5f\xae\x18\xbc\x2f\x57\x96\xd1\x09\x68\x70\xf7\xb5\xc5\x4f\x17\x13\x1a\xb6\x97\x89\x42\x07\xc6\x60\x62\xb7\x15\x48\xda\xc8\xf2\x3d\x57\x04\x46\xed\xc4\x8a\x67\x4c\xf1\x01\xaa\x74\x3c\xce\x33\xf2\x0e\x2c\xb1\x3e\x92\x33\x42\x16\xeb\xf5\x19\x21\x2b\x3e\x27\x3f\xd8\x33\x56\xef\x84\xa5\xf5\xde\x33\x56\x39\x17\x3a\xfa\x70\x7d\xa6\xb4\x8e\x4d\x43\x2f\x29\xe3\x78\x86\xa7\x14\xa2\xce\x08\x99\x41\xe3\xf1\x7a\xfd\xd1\x75\xfb\x29\x34\xf3\xd2\xea\x43\x3a\xa5\x93\x9b\x2a\x68\x2d\x54\xd3\x36\xd1\xc2\xe7\xac\x6e\xac\xd7\xbf\xf0\x01\x4d\x6f\xaa\x89\xc7\x48\x0e\x43\xfe\x95\x7a\x0c\x4d\x53\xfe\x77\x72\x23\x3d\x30\xb2\xca\xfb\xc8\x33\xdd\xb2\x06\x32\xf1\x8c\x6f\xcf\x67\xc2\x8a\x8d\x43\x03\xdc\x99\x8b\xba\xee\x19\xf5\x18\xfe\x91\x02\xee\x8b\x2a\xef\x00\x82\x76\x2b\x5e\x68\xff\x73\x78\x16\x35\x86\x78\xb0\xd1\x60\xb1\x36\x24\x6d\x9e\x21\x34\xfc\x7b\x27\x4a\xbd\x7e\x1f\xf6\x35\xa4\x95\x60\xbd\xd0\x4b\xd4\x27\xbe\x3c\xb9\x37\x50\x9f\x2f\x26\xb7\xec\x32\x36\xe5\x15\x8d\x8e\xe1\x7e\x47\x13\xf5\x14\x58\x55\xd5\x57\x3a\xc3\x14\xd4\x40\x84\x07\x1b\xf9\xf2\x4a\x06\xcd\x06\x7c\x57\xb4\x7a\x2d\x3a\xb5\x27\x7e\x2e\xc5\xcf\x17\xf1\xf3\x49\xfc\xbc\x15\x3f\x87\xe2\xe7\x4a\xfc\xbc\xf9\xcf\xf6\x76\xd1\xee\xe9\xb2\xab\x45\x4b\xb5\xe4\x77\x8f\x4d\x33\xef\x03\x9c\xd8\x31\x9a\xc0\xc3\x7b\xdc\x6a\x4b\xd4\x89\x33\x59\xeb\x5c\x0c\xe7\xbc\xbe\x28\x6a\x4d\x4e\xdb\x6d\x2a\x68\xd4\x75\xb8\x04\xf7\x0f\xbf\x12\xe8\x33\x35\xda\x07\x96\x87\x13\x42\xcd\x33\x66\x95\x6e\xea\xf8\x5e\xc3\xfb\x41\x0d\x0f\x1e\x7e\xb9\x73\x78\xaf\x55\xad\x29\xa1\xf8\x0b\x9d\x0a\xdc\xcc\xfb\x22\xaf\xd4\x14\xf1\xd3\x06\x14\x46\xca\x0b\x9e\xe1\x03\x30\x06\xab\x5e\xac\xd7\xde\x0b\x18\xe3\x15\x15\x87\xf1\x39\x79\xc1\xf1\x4f\x09\xa5\x9f\xab\x63\xf2\x9c\xbf\xbd\x00\x74\x83\xc3\x32\xdc\xdf\x47\x3c\xf7\x33\x52\x8f\x05\xbf\x61\x6c\x52\x0f\xd5\xd2\x04\x83\x7b\x60\x5a\x6c\xf4\xff\x00\xe0\x96\x99\x3b\x99\x5a\x01\xe4\x39\x90\xa5\x61\x3e\xe0\x57\xbb\x05\x66\x69\xc5\x2f\x4e\xbe\x1c\x7c\x88\x3f\x72\x40\x01\x18\xc3\xe4\x47\x6a\x35\x7c\x6b\x83\x35\x1c\x0c\x5a\x72\x5d\xb0\xe9\x65\x70\x7f\xe2\x8c\x93\xbc\x28\xa8\xbc\x67\xeb\x35\xc5\x86\x96\x03\xa1\xf5\x33\xe1\x05\x22\x4c\x49\x1e\x21\xfc\x8a\x7a\x07\x38\xc5\x07\xd4\xcb\xe5\x85\x9a\x62\x8a\x5f\x20\xc4\x89\xbd\x03\x73\xe3\x7e\xa6\x16\xfe\x24\x2f\x4d\xb8\x5c\x28\xfe\x97\xeb\xfe\x8b\x5f\xfb\x22\x0e\xd6\xcf\xe2\xcb\x4b\xe0\x3f\xd2\xc9\x0b\x24\xb8\x91\xbf\xc3\x9d\x21\xe1\xa8\xae\x75\x9f\xde\xbe\x83\x2d\x28\x61\x9f\xd6\x82\x43\x4c\x58\x64\xf9\xc6\xef\x77\xab\xda\x33\x6a\xa0\x63\x06\x91\x28\x38\x0c\x37\xfe\x2b\x80\x97\x60\xc5\xfa\x07\x96\x81\x90\xe6\x13\x16\xe6\xa0\x3d\x36\x2d\xbc\x2c\x8c\x23\x0c\xd1\x4a\x62\x98\x52\x85\xdc\xbf\xa2\x5e\x86\x63\xac\xf5\xba\xcb\x29\xcf\x34\x29\x2d\xa3\x09\xdd\x95\x8f\xb4\xee\x3d\x46\x21\xb9\xed\x75\xd6\xf6\x43\xf2\x8a\x52\xfc\x61\x83\x47\xac\xd7\x46\xc9\x92\xbf\x18\xa6\xf5\x7a\xed\x1c\x0b\x26\xaa\x03\x4a\x8b\x3a\x5e\x91\xd3\x27\x84\x4e\x04\x9f\x98\xd0\x8a\x5f\x6a\x59\xd8\x42\x4d\x8c\x9a\xe3\xc4\x39\x8d\xcb\x53\x27\x9a\x40\x60\x2b\x33\x8c\xe7\x74\x93\xfe\xb6\x31\xd5\x87\x46\xe8\x54\x4c\xcb\x84\xe3\x7f\x55\xcd\x66\xf6\x33\xf5\x32\x34\xcd\xe4\x2c\x56\x9f\x2c\x72\x4a\xd0\x0f\x6d\xe1\x97\xa2\x08\xce\xe9\xf4\x5c\x05\x65\xbd\xa9\x2a\x5c\x2b\x2b\xa2\xb4\x76\x39\x99\x82\x4a\x4e\xe3\x12\xb0\x79\x19\xcc\xb5\x56\x31\x38\xce\xaa\x55\x76\x42\x3b\x6c\x8e\x49\xad\x10\x07\x31\xe7\x54\x5f\x2e\x21\x35\xae\x5d\x40\xcd\x43\x4e\x80\xb6\x9c\x91\x28\x1f\xc3\x14\x4d\x79\x6e\x35\x01\xf5\x86\x4f\xe3\x2e\x67\x5f\xf5\x86\x65\x85\xe7\x6a\x92\xf9\x89\xe7\x15\x5a\x2d\x34\x6a\xad\x09\x2a\xed\xd5\x6a\x4e\x03\x39\xa7\x56\x18\x7a\x36\xcd\x27\x4c\x46\xc7\x7e\xfb\x15\xeb\x14\x46\x8d\xfc\x1d\x6b\xd3\x31\x30\x9c\x91\x17\x14\xba\xaf\x7c\x7c\x78\xd9\xce\x18\x50\x63\x62\x99\x05\x4c\x99\x08\xa2\x3c\x29\xa9\x1a\x70\x86\x7d\x24\x42\xbd\xbe\xfd\xca\x55\x6c\xb5\xd9\xcb\x76\xc6\x6a\xed\x38\xbc\x0e\xfd\xe6\x60\x9a\x4b\x24\xcb\xf1\x6a\x6a\x35\x53\xb4\x3b\xf4\x1b\x65\xdb\x0b\x61\x49\x5b\x75\xc9\x82\xf7\x29\xb3\xfa\x54\xec\x8c\xa7\x99\x2d\x48\x9f\x64\x61\xc1\xbb\x46\xd4\xf2\x1c\x7e\xc5\xf2\xdc\xf0\xc3\x3d\xe1\x30\xf3\x13\xc5\xe7\xf1\x92\x3f\x7a\x73\xba\x5e\xbf\xa5\x08\x0b\x08\x20\xbf\x56\x8d\x8a\x37\x9f\xb1\x8f\x54\x99\xfd\xc9\x4c\xa0\x90\x7c\x78\xdb\x6a\xb4\x4b\x8a\x9b\xbc\x51\x6c\xc3\x74\x5b\xc5\xc4\xd1\x6e\x14\xdb\xb8\xe5\xad\x82\x02\x3f\x60\x2a\x00\xfc\xd5\x57\xcc\xa1\x60\x4e\x34\xca\xdc\x01\x82\x54\x61\x7b\x86\xae\xee\x31\x43\xf5\xc2\x6a\x92\xae\xee\x31\x49\xf5\x92\x6a\x9e\xae\xbe\x7a\x47\x02\x63\xbc\x97\x82\x63\xcb\x84\x5f\x15\x6f\xa9\x71\xb7\x66\x67\xea\xf3\x6d\xa4\xdc\x9b\xec\x14\x43\x5f\xdb\xc1\xb4\xd4\x40\x82\x46\x1b\x30\xa5\x87\xd4\xcb\xcd\xfd\xd9\x58\x20\x40\x1b\x9e\x51\x92\xd0\xe9\x4f\x5e\x42\x15\xe3\xb0\x1d\x34\x98\xc3\x9f\x77\x9d\xeb\xa0\x19\x34\x96\x39\xfb\x7b\x5a\xf7\x6e\xe8\x31\x29\x51\x65\xd3\x74\xc2\x38\xf8\xb1\xee\x5b\x2d\x17\x3e\x50\xe2\x55\xe4\xba\x14\x1c\x4a\xd0\xbf\xfb\x84\x8c\x5d\x97\xee\x58\x38\xc8\x2f\xb4\x61\x54\x65\x93\x67\x0a\x15\x24\x84\xd4\xa2\x6c\x5b\xb2\x79\xb3\x52\xeb\xf5\x8f\x16\x1b\x05\x10\xa9\x1b\x23\xaf\x40\x37\xac\xb8\x56\xa3\x7c\xa0\x47\x29\xe4\x12\x0c\xdd\x54\xd6\x67\x3a\x70\x1c\xeb\x4b\xa5\x6c\xcf\x2c\xa9\x08\xad\x93\xa8\x22\x78\x3e\xe5\x58\x84\xeb\x32\x7e\xdf\x54\xde\x92\xba\xee\x3b\x0a\xa8\xd7\x52\xfc\x58\xe2\x4d\xcf\x47\x08\xf5\xc9\xc5\x7a\x3d\x37\xd9\xe6\x14\xf5\xc9\x72\xbd\x9e\x51\xd7\xd5\x42\x32\xc9\xc9\x8d\x9c\x3e\x79\x47\xbd\x19\xa8\xc0\xe4\x8b\x0b\xea\x21\xb4\x5e\x9f\x9a\xc2\xa7\xbc\xf0\xf1\x7a\x7d\x6c\x17\xd6\x12\x36\x28\xcc\xb3\x1d\x8b\x48\xa4\xef\xba\x2e\x1b\xbd\xf8\x38\x23\x8c\x90\xd9\xb4\xb6\x1a\x8a\x97\x5b\x90\x6c\xfa\x3b\xc7\x51\x14\x9e\x97\xce\xbd\x42\xb9\x25\x28\x24\x25\xfd\x9a\x2a\x12\xe6\x42\x90\x34\x27\x3a\x61\x29\x09\x67\x95\xd0\x1e\xa9\xa4\x71\x75\x89\x63\x91\xb0\xd7\x2a\xa1\x87\x67\xa4\x4a\x02\x77\xfe\x40\xeb\x0a\x85\x66\x33\xff\x64\x21\xe8\x3d\x2d\xcb\xea\xe0\x86\xb4\xb6\x74\x7b\x1b\x93\xd4\xb0\x1f\x91\xeb\xf6\x01\xa7\x07\xb2\xec\x07\x4a\x16\xb6\x6e\x84\x3e\x3c\xbe\x75\xae\x7e\xb6\xb6\x3e\x10\x0a\xd3\x7f\xdb\x2a\x10\x6a\x48\xc0\x53\x62\x84\xac\xcc\xf6\xfb\x95\x6e\xc4\x83\x81\x69\xeb\x59\x5c\xdb\xf5\xba\x76\x72\xac\x23\xf2\xa3\x3d\x15\x30\x2f\xd3\x37\x60\xc2\xd8\x50\xa0\xeb\xff\x62\x33\xb2\x56\x40\x7e\x89\xb6\x43\xa3\xf1\x03\x46\x5a\x92\x4e\xa5\x08\x69\xfe\x5d\x86\x5c\xd7\xb1\x76\x91\xd3\x27\x19\x1c\x5b\x0e\xed\x0c\x23\x17\x48\xea\x2a\xeb\xd4\xe6\x50\x6c\x48\x7e\xe6\xfa\x63\x40\x63\xda\xba\x19\x38\xf3\x1e\x7d\x8f\x80\x5c\xfc\xeb\x94\x34\x9e\x8e\xc7\xca\x11\x51\x4b\x5f\x23\xe9\xd6\xd7\xb0\x14\x31\xf6\xca\xeb\x2c\xe9\xd6\xc6\xe8\x56\xc2\xe8\xd2\xd1\xa8\xa9\x64\x2c\x16\x77\x2b\x64\xbc\x2b\xf2\xab\xeb\xba\x3e\xc6\x07\x35\x2a\xd0\xca\xb8\x5d\xa3\xe0\x75\x97\x46\xc1\x09\xb9\xa9\x82\x93\x70\x83\xe2\x45\x44\x9a\x9f\xb4\xe6\x45\xed\x93\xa5\x7a\xd1\x4c\xd7\x3a\x11\xcd\x0f\xdd\x8d\xd8\xda\x17\xed\x0f\x75\xf5\x8b\xd6\xf7\xee\xb6\x6a\x0a\x18\xa0\xc1\x70\x12\x26\xb5\x1c\x5d\xa5\x6a\x0a\x2b\xb5\x2f\x5a\x59\xa7\x96\x6a\xf4\x58\x9a\xc9\xb4\x91\xa4\x95\x26\x4e\xc2\x55\xed\x83\x54\x98\xb0\x52\x94\xaa\x0e\x4f\x9c\xd5\xbe\x28\xe5\x9c\x5a\x22\x68\xe7\xd4\x53\xa4\x7a\x4e\x2d\xb1\xad\x9c\x71\xf1\x55\xca\x19\xd7\x7f\x58\x39\x63\x8f\x5f\x8b\xd7\xb7\x29\x67\x5c\x76\x28\x67\x7c\x21\x97\xf7\x55\xce\xf8\x44\xbe\xb8\xee\x17\x4b\x39\xe3\x12\xbf\x25\x9f\x5c\xf7\x82\x23\x13\x09\x2d\x4b\x7c\x58\x43\x6c\x8b\x6b\x29\x68\x87\x62\xd2\xdb\xb9\xf5\xe8\x39\x2b\x96\x2e\x1c\x04\xfe\x07\x4b\x8d\xb5\xac\xd7\x6f\x5d\xf7\xed\xe8\x38\xcd\x66\x69\x76\x62\x3d\xaa\xfc\x36\x8e\xe1\x21\x7c\x45\x0e\x5d\xf7\x70\x94\x96\xbc\x9f\xb3\xc6\xbd\xf5\x46\x01\x33\x79\xd1\x2a\x01\x97\xbc\x6f\xc7\x13\x23\x1a\x00\xc0\x28\x39\x89\x7e\x33\x1d\x67\xe1\x38\x92\x1f\xb7\x3b\x3f\xe2\x2c\xf4\x55\x8e\x47\x9b\x73\xe0\x0c\x74\x4a\x8d\x6e\x0a\x78\x01\x05\x5d\x60\x3e\x59\xaf\xf0\x0b\x7c\xd0\x52\x7f\xf8\xdc\xa5\xfe\xb0\xdf\x56\x7f\x38\x23\x7b\x1b\xd4\x1f\x3e\x92\xcf\x46\xf7\xe0\x39\xd9\x6f\xea\x26\x3c\xbb\x4b\x3d\xe2\xcc\x75\xcf\xa4\x7a\xc4\xd9\x1f\x53\x8f\x78\x47\xf6\x4d\x17\xde\x93\x8f\x62\x6a\x94\x94\xfe\x17\x5b\x1d\x42\x7e\x7b\xfe\xbf\xa4\x0e\xf1\x3b\xf9\x34\xdd\x6b\x68\x43\xbc\x24\x7b\x4a\x19\xe2\x03\xd9\xb3\x75\x21\x7e\x22\xbf\x4f\x7f\xb7\x2d\x64\x55\x91\x1f\x88\xf7\x8a\x74\x2b\x49\xbc\x90\xe9\xb8\xe3\xc2\x7e\xe5\xbd\x80\xfb\x18\xe1\x9f\x1b\x1a\x14\xbf\x92\xfd\x6e\x05\x8a\x1f\xc9\x81\xd2\x9f\xf8\x27\x79\x39\x7d\xa9\xe7\xf9\x30\x56\x6a\xac\x75\x05\x18\x73\x36\xf7\x8c\x0a\x43\x3d\x62\x98\xb5\xa6\xde\x4d\x85\x1d\x07\xdf\x54\x08\xd3\xc6\xe1\x7b\x00\x83\x6f\xea\x62\xfc\x43\x58\xf7\x9c\xc7\x57\xf8\xdf\x84\x43\xe9\x51\x96\x5f\x62\x0a\xad\xed\x29\xa5\x0b\x56\x6b\x5c\xeb\x4f\x64\xb4\xa6\x55\xad\x0e\x32\xf5\x8c\x12\x94\xad\xc4\xcc\x11\xad\x7d\x6a\x22\xd4\x0b\x41\xdd\xcf\x0a\xed\xfa\x99\x1f\x69\x8b\x2e\x25\xcc\x16\x17\x1a\xc1\xa0\xc9\xa0\xb4\x5f\xf8\xf0\x0c\x1c\x29\x9a\x8a\x0a\x8a\x1f\x09\xae\x17\x8c\xb7\xc0\x3f\xa7\xae\x90\xff\x57\x5a\x49\xff\x2b\xad\xc4\x74\x03\x6b\x0c\xa6\x1e\x46\x2a\x6b\x48\xbf\x50\xc2\xe0\xc7\xf2\x78\x55\xe3\x08\x03\x7e\x8d\x0b\xd2\xcf\x5c\x17\x54\x3a\x70\x0e\xcf\xfd\xc2\x75\x5f\xc0\x7b\xaa\xdf\xfb\xb9\xeb\x7e\xa4\xc2\x56\x3b\x5b\xaf\x8b\xf5\x3a\x5f\xaf\x53\x5c\x92\xf8\x3f\xa3\x34\x91\x90\xd2\x9e\x34\x5e\xe3\xc2\x52\x97\x78\xae\x30\xfa\x05\x5a\xaf\xe3\x9a\xba\xc4\x42\xea\x4f\xc8\x28\x1c\x90\xe0\x08\x37\x99\xfc\x05\xad\xd7\x29\xff\x2c\xc4\x89\xf2\xb3\x11\x59\x58\x09\x6f\x75\x05\x68\xbd\xbe\xa4\xde\x02\x27\x9c\xca\x95\xb6\x28\x0b\x3d\x82\xd2\x72\x35\xa5\x35\x30\x8c\x03\x99\x6c\xbd\x3e\xa4\xa0\x59\x81\x33\xb4\x51\xf5\x62\xa9\x4a\x5a\x0e\x95\xba\xd4\x39\x9e\xdb\xea\x1c\x87\xb7\xab\x73\x74\xd4\xb9\xba\x5b\x9f\xe3\xf0\xbe\xfa\x1c\xba\xfa\x1b\x4b\x74\x01\x6a\xf1\xff\x9a\xfe\x0b\x3e\xdd\x24\x79\x36\x4f\x4f\x56\x00\x4e\x27\xfd\x31\xa6\x1a\xb8\xf2\x37\x11\x2c\x31\xc3\x97\x45\xca\x64\x5a\x85\x26\x42\x07\xa5\x2a\xbe\x82\xbd\x07\xaa\x6b\x5a\xd2\x80\xcd\xfe\x1f\x57\xb8\xb8\x3f\x67\xfb\x0e\xa1\x43\xcd\x93\x0e\xaf\x7e\x48\x18\x58\x68\xb2\x46\x2b\xf7\x14\x47\xb0\xaf\x10\x47\x3c\xdf\x24\x8e\x28\xfe\xa0\x38\x82\x35\xc5\x11\xcf\x6d\x71\x44\xf1\xf5\x3c\xc7\xe6\xe4\x0c\xec\x39\x9d\x8e\x27\x3e\xce\x42\x1a\x11\xb6\x49\x62\x91\x7f\x95\xc4\xa2\xbe\xc6\xf9\x1f\x92\x5e\xac\xbe\x46\x7a\xf1\x63\x4d\x78\x31\x1c\xea\xf6\x85\x20\x23\xff\x7a\x41\xc6\xea\x6e\x41\x46\x7e\x0f\xa6\xf1\x6a\x83\x20\x23\xff\x23\x82\x8c\x55\x5b\x90\xe1\x0d\x06\x66\xac\x35\xa9\x46\x5b\xac\x91\xde\xbd\x86\x62\xc9\xf0\x26\x11\x47\x61\x44\x1c\x94\xae\xd7\x79\x5d\xc4\x51\xd0\xaa\xd1\xc8\xc6\xc5\xbe\xee\x90\x70\xdc\x76\x80\xd3\x7b\x70\xf6\xaf\xdb\xb2\x8f\xf4\x1e\x2b\x74\xdd\x96\x7d\xa4\xf7\x59\x1c\x53\x0e\x54\x08\x79\x87\x83\x6e\x5e\xbb\x3c\x70\x22\x0f\x01\x73\x74\x5f\x2e\x49\xfc\x95\x52\x92\x9c\xd6\x8f\x56\xfc\x87\x8e\x16\xbb\x65\xd2\x25\x52\x82\xb3\x46\xe5\x5f\x25\x4e\x89\xff\xb0\x38\x25\xfe\xf3\xe2\x94\x7c\x93\x38\x85\xde\x5b\x9c\x22\x66\x62\x30\x10\x4b\xb6\x59\xc2\x92\xde\x22\x61\x11\x75\x58\x35\x08\x91\xcb\x9c\xe2\x59\xd3\xf7\x81\xb9\xf0\x0b\x8e\x96\x29\x4f\xf9\x02\xc5\xcb\x04\x56\xa7\xe2\xbb\x04\x31\x47\x04\x84\x0f\x73\x92\x86\x73\x3a\x8d\x27\x83\x41\x01\xbe\xcb\xfb\x3e\x87\xda\x5e\x1e\x96\x11\x2e\x71\x8e\x90\xf0\xa9\xae\x95\x64\x0c\x66\x7f\xda\xe4\x6c\x1b\x2d\x03\xf0\x1b\x7e\x3c\x99\x4f\xfe\xe9\xba\xff\xac\x31\x6a\xa7\xed\x9d\xa5\xf1\x9d\x7f\x22\x9c\x11\x1a\xfe\x33\x0a\x38\x95\xc5\x1f\x24\x4d\x21\x5d\x41\xf5\xc7\x92\x86\x4a\xd1\x4d\x25\x56\xe7\x9d\x62\x60\x43\xc8\x26\x36\x85\x42\xd9\x44\x5e\xef\xfc\xcd\x8a\xa1\xd2\x64\x35\xcb\x0f\xba\x8e\xaa\xa6\xda\x7c\x6c\x0f\xef\x8c\x02\xda\x00\x43\x26\x24\x31\xb9\xce\xeb\xfa\x37\xfb\x9b\x34\xa0\xfb\xfd\x67\xae\xfb\x0c\xd0\xb6\x4a\xc8\xa8\xbc\x03\xe0\x80\xff\x32\x39\x97\xaa\x38\x0d\x2e\x78\x97\x1c\xe9\xe3\x1f\x94\x23\x01\x59\xac\xfb\xfc\x5a\x89\xaa\x44\x77\xdb\x2a\x93\x6a\x65\x84\x37\x7b\xd5\x91\x0d\x9c\xf7\x6e\xd6\xba\x64\xd8\x7f\xa1\x42\xba\x63\x31\xee\x0b\x81\xbb\x7a\x0d\x26\x7d\xb1\x5e\x73\xb4\x5f\x6f\x86\x02\x99\x78\x2e\x45\x97\x2a\xf4\x09\xb5\x3d\xa8\xd0\x3e\xa0\xa5\x33\x7e\xe3\x9a\x99\x4c\x71\x2c\xc2\x9f\xac\xd7\x5e\x0e\xa7\x2d\xa6\x08\xef\x53\x2f\x45\xa8\xdf\xd4\xd8\x04\xb5\xe4\x58\x1d\x8b\x4f\x14\x98\xf7\x38\xe1\x4f\xfc\x7c\xe1\x05\x89\x01\x38\x25\xa0\xda\xb6\x50\xd3\x06\x5b\x14\xa8\x82\x0c\x2f\xc4\xb8\x57\x24\x9d\xa6\x5e\x89\x13\x9c\x0d\x1c\x07\xf3\xfa\x63\x25\xbd\xc2\x4b\xa2\xcf\x08\x68\xed\x2e\x45\x8b\x73\x4e\xab\x25\x08\x9f\x92\xfe\x1c\x68\xb3\x04\xe1\x63\x78\xee\x9f\x02\x5d\x96\xa0\x60\x45\x12\x3c\x5f\xaf\x4f\xd7\xeb\xe3\xe9\x1b\xea\x95\x68\xba\x22\xe5\xe4\x8c\x7a\xe7\xa4\x44\xae\xfb\x8a\x7a\xe7\x3c\xe9\xaf\xd7\x3f\x2e\xd1\xe4\x74\xea\x2d\x49\xdf\xc7\xcd\xea\x6f\xd3\x2c\xd6\x54\x5f\x41\x7e\x9a\xfe\xe4\x65\x68\xd2\xa1\xd3\xd9\x54\x32\x2e\x10\x2e\x2a\x2f\xe1\x48\x17\x9a\x1c\x6f\x68\x55\x29\x90\xde\x4f\xe1\x72\x83\xba\xda\x07\x5b\x5b\xed\x83\x54\x56\xfb\x8b\x14\x52\x65\xff\x57\x24\x8c\x5a\xe2\xad\x33\x01\x24\x00\x98\xf4\xc9\x4c\x47\xd3\x91\x67\xe6\x07\xa9\x3c\x29\xb5\xc3\x98\x89\xbf\x24\x46\xad\xd1\xf8\xda\x09\x82\x80\x30\x6d\x59\x76\x87\x14\x3b\x73\xdd\xda\x5d\x97\xb9\xae\x84\x2b\x19\x22\xe4\x7d\xe5\x25\x68\xbd\xbe\xe2\x1b\x6e\xea\xad\x48\x89\xaf\xe4\x4e\xbb\x53\x51\xd3\x28\x3d\xf7\xb3\xc0\xe8\xf7\x81\xda\x28\xdf\x80\xb1\xd1\xed\x93\x1b\x2e\xdd\x89\xf5\x3d\xc4\xc2\x34\xc2\x89\x54\xf0\x2b\x23\x4c\xc5\x0d\x64\x2b\xf8\xe9\x83\x93\xb8\xae\x97\x10\x0a\x31\xd0\xf2\xe9\x92\xa3\xb4\x25\x4e\xd0\x64\xa1\x9e\x8c\xc6\x9f\x47\xf1\x73\x2a\xb4\x3a\x4b\x34\xd9\xe7\x63\x71\xdd\xfe\x01\xff\x5d\xaf\xbd\xae\x51\xdd\xad\x97\xfe\x45\xe9\xa5\x67\x14\x54\x6d\xf9\x7a\x23\x84\x26\x7c\xab\xc2\xc5\x74\x1e\x2c\x21\x54\x1b\xdf\x5c\x09\x5e\x21\x9c\x7b\x2b\x9c\x80\x12\x27\x38\x6b\x94\xa8\x53\x82\x50\x20\x21\xc7\x0a\xb4\x4e\x19\x68\x34\x9e\x50\x80\x69\x81\x56\xf8\x17\x6a\x8f\x00\x91\x62\xc4\xeb\x50\x50\x25\x6f\x4f\x4d\xe9\xba\x5e\x49\x52\x84\xa1\xe2\x18\x97\xa8\xaa\x10\x7e\x6e\xdf\x6c\x17\x75\x65\x82\xb7\x74\x93\x1b\x3e\x46\xfe\xe1\x59\x94\x9c\x71\x52\x3c\x61\x78\x8c\xb0\xcd\x6d\xd4\xb8\x87\x76\xcf\x80\xa5\x3e\xe7\x3f\xbc\x42\xbb\x62\xe6\xa5\x62\x09\x77\x52\x6d\x14\x1a\x0b\x3f\x0d\x6c\x90\x47\x01\x2f\xa4\xaf\x0a\xe9\xa5\xc7\x63\x03\x5f\x64\x66\x01\x2a\x95\x53\x07\xcd\x9b\x01\x66\x82\x17\x23\x0c\x22\x0b\x8e\x4e\xf3\x31\xc3\x50\xde\x53\x84\x85\x3d\xa8\x1e\xfc\xf5\xff\x3f\x14\x3f\xf7\xfe\x02\xc5\xcf\xf3\xba\xe2\xa7\xae\xfb\xb2\x56\x77\x4b\xde\x6f\xa9\xe3\x94\x4d\x75\x9c\xcc\xcc\x02\xc8\xdd\x5f\xdf\x4f\x29\xe7\xcb\x5f\xa8\x94\xb3\x6f\x2d\xf6\x27\x6a\x1c\xc3\x37\xf0\x8d\xba\xa2\x82\xe5\x7f\x33\x64\x11\x72\xdd\xda\x8a\x99\x0b\x8e\xcf\x21\xef\xe6\xdb\x2e\x12\x69\x8c\x2d\x37\xd0\x0d\xa9\x50\x41\xfe\xed\x21\x9c\x93\x78\xe8\x15\xc3\x4c\xc0\x77\x52\xe0\x7c\x77\x0c\xbd\x1b\x0c\xd8\x2e\x49\xb5\xa3\x34\xed\xe2\x64\x1c\x09\xff\xd2\xcc\x54\xac\x24\x5f\x12\x9d\xd0\x79\xf9\x9e\xff\xd7\xb4\x73\x27\xfc\xcb\xa3\xd8\x51\x92\x0d\xe7\x76\x9e\x9d\x2f\x79\x76\x5e\x46\x18\x6e\xe9\x93\xf4\xb2\x0a\xd5\x99\x79\xe2\x52\xaa\x26\xef\xa9\xc5\xf4\x3f\xbc\x5b\x5d\x89\x17\xbb\xa2\xe4\xd8\x02\x3e\x3a\xbf\x1e\x53\xe5\x21\x34\x3d\xee\x0a\xe1\xa6\x30\xf2\xe7\x1d\xb6\x80\xfd\x5f\x5b\x89\x15\x7e\xb3\x51\x43\xe7\x55\xa7\x86\xce\x67\x5a\x53\xb5\x39\xd0\xaa\x36\x2f\x28\x79\x70\x97\xa6\xcd\x41\x27\x86\xad\x6f\xf8\xd3\x1a\xd5\x4c\xc8\x0a\xf4\x6d\x96\xf0\x57\xe8\xde\x9c\x76\x6b\xf8\xdf\x4b\x49\xa8\xec\xd6\xe3\x6f\x9c\x63\x33\xd2\xfb\x29\xef\x9c\x75\xce\x52\x87\xb5\x26\x6f\xed\x23\x25\x57\xb7\x1a\x76\xd4\x42\xec\xf1\x9d\x7b\xd5\x49\x9a\xc9\x45\x6e\xac\x45\xff\x24\x84\x19\x8c\xac\x19\x7f\x6e\x77\x0f\x56\x74\x5a\x0a\xfd\x1d\x34\x79\xad\xd7\xee\x19\xc5\xef\x28\xf1\x9e\x75\x05\x3e\x33\xf4\x04\xaa\xf0\x05\xed\x8e\x36\xd5\xb4\x2b\x29\x76\xfd\x29\x0b\x8b\xa1\xaf\xd8\xb5\x38\x25\xc5\xee\xf6\x94\x85\xdb\x91\xb6\x39\xce\x0b\x2f\x27\xcf\xd4\x08\x76\x1f\xd9\xae\x0c\xf4\xc4\xe5\x53\xaf\x18\x0e\xcd\x8d\x8e\x53\x5b\x4b\x4c\x7b\x56\xe6\x1b\x2a\x6b\x6c\xa8\x42\x83\x42\x03\xa3\xcd\x4e\x29\xa6\xaf\x78\x11\xd7\xbd\x04\x3a\x46\xcd\xe3\xc4\x5c\x3a\x85\xeb\x82\x40\x21\x13\xf2\x86\x2c\x64\x11\x98\xbd\x69\x1f\x11\x18\x22\x74\xe6\xa4\xd8\x79\xa4\x6e\x93\x1c\x17\xc4\x47\x98\x1a\x36\x83\xa2\x1f\xb4\xbd\x46\x16\x05\xb1\xeb\x3e\x13\x68\x48\x86\x73\xcb\x0b\x13\x42\xa8\xae\xee\x69\xb6\x83\xa5\x93\xf5\x8e\xde\x5f\xed\x4a\x2d\x50\xdb\x05\x4c\x71\x8b\x67\xa3\xbc\x01\x13\xba\xbd\xfb\xb4\xee\x7d\xad\x73\x0a\x41\x7f\xba\xb4\xf9\x6e\x35\x65\x2e\x8c\x51\x72\xb6\xc1\x67\x61\x4b\xe3\x4a\x2c\x34\x27\x51\xbb\x34\x1a\xe2\xb6\x46\x43\x49\x52\x33\xce\x84\xc4\x4d\xbd\x85\x05\x29\xeb\x7a\x04\x2b\x12\x9b\x02\x4b\xe2\x15\x1b\x24\xf0\xf9\x2d\x12\xf8\xc2\xcb\x85\x04\x7e\xc3\x4c\x82\x42\xf2\xd7\x4c\xd6\x7a\xbd\x52\x93\xd5\xe7\xc8\x45\xfb\xd2\xfd\x8b\x9d\x84\x74\x40\xeb\xe5\xad\xf4\x58\x41\x92\x3f\x49\x8f\x15\xae\x5b\xd8\xf4\x58\xe1\xba\x72\x69\x0a\x44\xc8\xe2\x2e\x3f\xde\x17\x2a\xf0\xd9\x13\x9f\x23\x18\xfc\x61\x1b\xe1\x94\x6c\xfd\x76\x34\x1b\x3c\xd8\x0a\x20\x84\x75\xd9\xa5\x7c\xed\x31\x22\xc2\xed\x31\xcf\xc1\x4e\x33\x98\xa6\x9e\xe1\x9b\xca\xa0\x1e\xac\x48\xcf\x3d\x24\x0b\x6d\x1d\x95\x83\xad\x4e\x3f\x88\x12\x58\x81\x6c\x54\x47\xc9\x19\xad\x8a\x05\xa1\x81\x32\x8b\x2d\x57\xc7\xe2\x44\x79\x63\x3b\xda\x0c\x8e\x1b\x01\x6a\x4a\x02\xfd\x7f\x99\x31\x2f\xc7\xfe\x18\xe1\x44\x24\x80\xe2\x9f\x97\x8b\x20\x5d\x97\x0e\x21\x24\xd6\x3e\xb6\x72\x84\xd8\xe8\x32\x9d\xb1\x53\x52\x6a\x7f\x89\xce\x69\x47\xa6\x53\x9a\x9e\x9c\x32\x99\x0b\x7c\x94\x5d\x71\x64\x30\x5e\xaf\x0b\x4e\x9e\x6d\xf6\x8e\x5c\x24\x25\x65\xbd\x19\x2d\x93\x22\x5d\xb2\xbc\x80\xb8\x5e\x03\x67\xe4\xa0\x80\x8d\x66\x34\x2b\x53\x76\x4d\x12\xf0\x52\xc8\x38\xbc\x13\x21\x0c\x91\x8a\xa9\xd9\x98\x2c\x39\x47\xff\x38\x78\xfb\x66\x24\x66\x25\x9d\x5f\xc3\xa6\x27\x8d\x34\x06\xbe\xad\x21\x80\xa9\x30\xda\xc3\xcc\x7c\xed\xa2\xd1\x73\x8f\xb6\x57\x56\x84\x13\x5e\x15\x8b\x8e\x80\x65\xef\x5f\xf5\xd2\xb2\x27\x55\xcd\x66\x23\x47\x2b\xdf\x42\x01\x63\x2f\x29\x26\x58\xeb\xd6\xca\xf7\x81\x73\xe9\x20\x4c\xe5\xc4\x5a\x5f\x45\xc2\xc0\x39\x85\xcf\x72\x86\xac\xef\x32\x65\xe0\x5c\x39\x08\x33\xe9\x75\xb9\xe7\x20\x98\x3c\xf1\x86\xf9\xeb\x1d\xc7\xc1\x00\x1e\xa1\xa6\x38\x02\x4f\xbb\x9d\x4e\x29\x00\x1f\xbd\xab\xbe\x9a\xe3\x3f\xf0\x69\x92\x66\x9c\x3e\xb3\xce\xb1\x3a\xc8\x07\xd4\xbe\x64\xe4\xb1\xb0\x6e\x07\xa5\x1f\xd6\xf7\x6d\x8e\xd2\x01\x65\x5e\xd8\x1f\x47\x5d\x07\x89\xa1\x1b\x4a\xf8\xf6\xc1\xfd\xb1\xa0\x17\xd1\xf4\x16\x0f\x74\x24\x8c\x9a\x35\xd3\x0d\x7e\x4a\xd5\xb4\x23\xb1\x41\x27\xb7\xd5\x2a\xeb\xb2\xbc\x11\xb5\xf6\xb0\x06\xe5\x4c\x8b\xd8\x3d\x06\xee\xa3\x84\x21\x72\x85\xd0\xa6\x36\xb4\x37\x79\x12\x46\x58\xf8\xf3\x37\x0a\x0b\x83\x01\x02\x1f\xe2\x4c\x7b\x17\xa7\x61\x16\x21\xb3\x6d\xf8\x9b\x61\x54\xde\xcb\x85\x5e\x23\x0a\xc2\xa7\x4f\xb4\x7c\x9d\xcf\x56\x10\x9b\x13\xf3\xb3\x0b\x81\xef\xea\xa2\x87\x99\x97\x79\x8f\xbf\x45\x1c\xc0\xf2\xc7\xef\xbe\x43\x1c\xc4\x42\x2a\x7f\x8c\xe1\xf1\xdb\x31\x42\xb8\x14\x8f\x3e\xe2\x80\x8a\x3f\xfa\x4f\xb7\x11\xc2\x0b\x91\xf9\x7b\x88\x63\xc0\x1f\x9f\x3e\x42\x08\x2f\x45\x66\xfe\x38\x17\xa9\x8f\x6d\xcc\xa8\x15\x30\xc9\xf4\x75\x4a\x27\x37\x2a\x44\x1f\xb5\x94\x87\x4e\x6b\x0e\x35\x9b\x7e\x34\xb1\x58\x4c\xa5\xb1\xa3\xa6\x1b\xe6\x19\xf8\xbe\x86\xf2\x34\xfc\x5f\x31\xff\xa2\x02\xd7\x6d\x84\x35\x0e\xc7\x22\xae\x3c\x04\x8a\x40\x60\x68\x9e\xab\x29\xe4\x98\xfd\xe9\x68\xb9\x58\x9d\xa4\x4d\x16\x85\xee\xaf\x3a\x15\x19\x61\x9b\xe8\x5a\x23\x11\x5d\xe6\x25\x4b\xca\xf2\x9d\xa8\x11\x64\xd5\x22\xe5\x67\x5a\x94\x69\x9e\x11\xaf\xd6\x3e\x1a\x5d\x88\x74\xe9\x1d\x4b\xb3\x12\x24\x62\x53\x57\xdb\xf3\x32\xec\xc8\xea\x1c\x7c\x73\x42\x59\xdb\x8c\xa9\x57\xac\xd7\x1e\xbf\x6b\x11\xc2\x45\x55\x21\x9c\x29\x05\xde\x3a\x3d\x61\xc2\x28\x9f\x7a\x61\xe6\x15\x28\x42\x2a\xa3\x88\xa2\x8a\xb3\x0a\x9f\x5a\x60\x3b\x55\x5d\xc6\xa7\xf2\xb6\x5e\x58\x29\x17\x34\x9b\xe5\x1c\xcf\x30\x49\x8b\xb4\x64\x64\x65\x25\x24\xf9\x79\x23\x5c\xbd\x21\xd6\xe8\x65\x2f\xd6\x6b\x42\x11\x6f\x3a\x66\xef\xf9\x86\xdf\x90\xbb\x6c\xe4\x9e\xd1\x64\xb1\x29\x6f\xd1\xc8\x5b\xdc\x52\xef\xb2\x99\x37\xcf\x37\xf6\x78\x6e\xe7\x85\x53\x78\x4c\x4e\x03\x73\x3c\x8f\xb1\x01\x27\x3a\xb5\xc2\xf8\x8e\x30\xb1\x06\x66\x15\x1c\x08\xde\xe3\xf0\xe7\x24\xe6\x27\xfe\x7b\x38\xf1\xfc\xf1\xf1\x53\xfb\x8c\xc6\xf7\x3e\xa3\x82\xa3\x69\x33\x4d\x55\x1d\x5a\xcb\x4a\xc8\x7c\xf5\xb6\x90\x82\xfa\xf3\x78\xf9\x76\xc9\x4a\x02\x2c\x40\xe3\xb7\x1a\x66\x4f\xe8\x65\x8c\x72\xf8\x5e\x49\x0e\x9a\xb9\x85\x8c\x67\x89\xb4\x7c\x1d\x2f\x49\x6b\x4b\x77\x06\xb4\xd0\x55\xf2\x06\xa7\xfd\x7e\xed\x5d\xf8\x05\x5e\x16\xf4\x22\xcd\x57\xa5\x87\x14\x59\x3b\xe6\x98\x88\x4a\x6e\x2b\x45\x83\xfc\xdb\x16\xdb\xab\xac\xaf\xe3\x65\xb9\x5e\x7b\xad\x34\xad\x02\xc4\xc7\x39\xba\x8c\x17\x67\xf5\x8b\x31\x9d\x7b\x4c\xba\xd2\xe0\xd7\x81\x78\x12\x9e\x79\x78\x37\x0d\x58\x69\x7e\x09\xe0\x46\xa1\xb5\xc6\xac\xd8\xe2\x7c\x0d\x6b\x9f\xa4\x78\x93\xa3\x72\x52\x2a\x6f\x7f\xe6\xa3\x4e\xcb\x97\xd9\x22\xad\xeb\xdf\x72\x54\x72\xe3\xdc\xca\x15\x1d\xa5\x50\xac\x16\x47\xb2\xfe\x29\x30\x93\xa7\xbf\xc4\x59\x96\xb3\x98\x37\xa3\x3c\xce\x5a\x0d\x91\x1a\x79\x0a\x48\x03\x78\xc7\xea\x5e\xb4\xf5\xba\x99\x5e\xe6\xe7\xb4\xeb\x62\xef\x51\xd9\x23\x3e\x0b\x62\xcc\x07\x30\xaf\xe5\x7e\x9e\xb1\x1a\xe4\xb9\x7b\x6b\xa9\x91\x94\xb5\x1a\xa6\xb7\x7c\x9b\xfc\x15\x03\xb8\x4c\xd9\xa9\xac\xcf\x03\x8c\x04\x33\xa1\x2f\xb3\xa7\x67\xb4\xb1\x82\xc2\x79\x47\xf7\xe4\x6b\x79\x38\x55\xee\xbd\x61\xa3\x66\xf9\x8c\x96\x26\x62\x1e\xdb\x25\xe3\x80\x0d\x87\xc8\x91\x10\x9a\xaf\x90\x47\x9b\x05\x42\x16\x09\x6b\x0e\xd7\x15\x91\x0c\x19\xbd\x32\x38\x8f\xf3\xb7\x9e\x98\x8e\xd7\xf1\x72\x99\x66\x27\x1f\xde\xbf\x22\x40\x60\xea\x4a\x44\xec\xfd\xfd\xd3\x74\x31\xe3\xb7\x2e\xa7\x09\x28\xdb\xbc\x40\x66\x57\x61\xa0\xef\x36\x9e\x33\x41\xc7\x65\xca\x61\xb5\x0e\x93\x5a\x3b\x53\xf3\x22\x3f\x97\x2e\xbe\xfa\x10\x6f\xef\x86\xff\x55\x91\xce\x39\xad\x57\xd0\x45\xcc\xd2\x0b\xea\x15\x28\x00\x6a\xc4\x74\x4f\x2d\x48\x8e\x1b\xb5\x26\x65\xa9\x9c\xfa\x4b\xd4\xe0\x5d\x41\x2f\x00\x32\x74\x8e\xc4\xda\x04\x98\xd5\xf9\x3a\x0a\xd5\x11\x51\xe9\xd9\x94\x4e\x68\x28\x4c\x12\x46\x29\x13\x16\x70\x91\x87\x02\xa5\xa4\x0d\x9a\x9b\x62\xe0\xbb\x26\x5a\x9e\x08\x8b\x5c\x10\x1a\x66\x83\x41\xa4\xbd\x41\x41\x28\xfb\x8c\x5e\x31\x0f\xa1\xd1\x2c\xcf\xa8\xce\x98\x09\xe7\x83\x95\xe0\x87\x15\xb8\x94\x8b\xae\xe6\x22\xe6\x78\x34\x45\xc0\x9c\xe1\x73\xbf\x5e\x6b\x34\x60\x34\x4b\x8b\x2c\x3e\x37\x79\x16\xea\x46\x12\xea\x39\xb7\x1c\x22\x6f\x41\x6a\x48\xd0\xe8\x40\xed\x9c\xfd\x3c\x2b\x57\xe7\xb4\xf0\x62\xd8\x5d\x40\x92\xda\x45\x5d\xd7\x5b\x34\x92\x48\x33\xa1\x41\x49\xd6\x18\xc2\x1c\x32\x4c\x16\x24\x06\xae\x07\x34\x84\xf4\xfd\x25\x16\x50\x77\xc5\x5b\xe0\x12\xd7\x67\x23\x41\x9c\xb4\xe3\x70\xa5\xfb\x34\x2a\x56\x11\x94\x52\x00\xd7\x43\xeb\xf5\x3d\xc0\xac\x39\xb4\xd3\x0d\xe9\x7f\x09\x7c\x31\xd5\x29\x20\xc9\xf2\x67\x10\x48\xb5\x0b\xc9\x29\xa6\x05\x9c\x1c\x0f\xe2\x8f\x37\x02\xaf\xa2\xc9\x65\x9a\xcd\xf2\xcb\xd1\x31\xcb\x63\x6f\x95\xd1\x32\x89\x97\xd4\x83\x58\x8a\xf4\xc3\xfb\x97\xfb\xf9\xf9\x32\xcf\xf8\xb9\xa1\xb2\xa9\x78\x36\xeb\x9e\x38\x38\x21\x81\x3c\x23\x66\xe2\xa6\xce\x2c\x66\xf1\x84\xaf\x4b\x9a\x40\xa1\xad\xdf\xcb\x3c\x0b\x44\x07\xb0\x23\x03\x97\xca\x01\x78\x7a\x21\x75\x57\x91\xcd\x42\xfe\xa3\xd3\x2e\x30\x8b\x15\x5b\xae\xd8\x0f\xe9\x82\x7a\x68\xe0\xf0\x6c\xca\x1f\xbb\x73\x94\x39\xc1\x50\x03\xe1\xa4\x34\x17\xb5\x73\x54\x1c\x65\x8e\xa0\x3d\xe4\x33\x56\x99\x06\x84\x0d\x9c\xad\x87\x5d\x50\x73\x40\x07\x4e\xef\xe1\x96\xc3\xa7\xcc\xb4\xdb\xde\x68\x16\x0e\xc4\xf2\x69\x7d\xab\xda\x9f\x64\x98\x04\x78\xe3\xab\xb9\x31\x2b\xff\x88\x26\x0e\xcb\x79\x07\xa1\xf9\x13\x61\x7d\x4b\x3b\xf1\x32\xd1\xbe\xca\xa2\xa6\x1c\xcb\x45\xac\x43\x76\x4f\x5d\x05\x2d\x98\xef\x35\x10\x16\x0b\x5b\x93\x45\x6a\x80\xd5\x34\x60\xb6\x92\xae\xbc\xb6\xc1\x4c\x4e\xbd\x9f\x42\x35\xfb\xd1\x44\x3f\xea\xf3\x1f\xf1\x01\xab\x59\xe9\x8e\xdd\xab\x17\x76\xc7\x41\xb5\xb0\x00\x5b\xbf\x1d\x5d\x0e\x26\x47\x5b\x47\x5b\x5b\x5a\x9a\xac\xbf\x5b\xca\xa9\x6a\xb1\xda\x50\xb4\xbe\x60\xce\xc8\x69\x89\xf2\xef\xd8\xbf\xb0\xcb\xda\xf5\x9a\x14\xe5\x23\x81\xe1\x4d\xd8\x02\x42\x98\x12\xbb\x80\xda\x21\x98\x22\xec\x1c\x1d\xf1\x4e\x98\xcf\x25\x5d\x5a\x51\x02\xb6\x8e\x8e\xb6\x4e\xb0\xb3\x05\x61\x02\xb0\xc2\x68\xdf\xc5\x8d\xc0\x8d\x5d\x68\xa4\xd9\x93\x76\xca\xa4\xbe\x4b\x69\xfb\x3e\x47\xf6\x0e\x15\xdb\x6f\x03\x4e\xaf\xd6\x9a\x38\x8e\x1e\xfc\xa6\x2b\x48\x1b\x9c\x7b\x37\xfc\x5e\x6b\x1f\x7f\xe5\xd2\x11\xe2\x46\xfa\x38\x25\x7e\x50\xa7\x89\x3c\x8d\xaa\xd4\xfc\xa7\xc5\xb8\x84\xad\x44\xc5\xf1\xcf\x71\xec\xba\x0e\xcd\xe0\x46\x28\x85\x2a\x8e\xa4\x14\xd4\xd3\x08\xe2\xba\x4c\x05\x36\x12\xcf\x66\x12\x48\x78\x37\xe2\xf3\x84\x5a\xb3\xec\xc5\x08\xab\xb9\x98\x4d\x6e\xf8\x86\x9f\x14\x38\xc9\x17\xab\xf3\x6c\x92\x82\x2a\x7e\x91\x9e\xa4\x59\xbc\x90\x1f\xeb\x8d\x8c\x78\x9a\xca\xde\xf8\x24\x52\x87\x7e\x55\xa1\xc9\xc6\xbe\x38\x3b\x59\x2e\x61\xd9\xae\xd3\x6c\xcb\x57\x35\x8f\xab\xdb\x3b\x59\x21\x84\x3d\x46\xf2\xd1\x39\x88\x3d\xb6\x8e\xb2\xad\x13\x84\xa6\x5e\x31\x30\x12\xcd\x8c\xe4\xc6\xef\x20\x40\x59\x0e\x57\x53\x92\x9b\xe0\xe3\x93\x74\xa0\x5f\x61\x9a\x61\x20\x30\xd1\x62\x5f\x70\x7c\x46\x18\x63\xad\xd7\x37\x45\x7c\x59\x4e\x6e\xaa\x2a\xf0\x9c\x19\x4d\x16\xc0\x5b\x1f\x09\x45\x8d\xb8\x4f\x48\x02\xad\xad\xd7\xc9\x88\x67\x1c\x95\xf4\x3c\x4d\xf2\x45\x0e\x06\x4f\x1d\x6b\x46\xb3\xd9\x5f\xb2\x62\xdb\x9b\x57\x8c\x66\xb3\xee\xf5\xe2\x1f\xfe\xbb\xab\xa5\x90\x5f\x95\xaf\x41\x9c\x18\x2b\xc3\x2e\xb8\xcc\xb1\x2c\x84\xba\x2e\x13\xf8\x22\x09\xcb\x46\xf0\xf0\xdb\x8f\x19\x43\x37\x74\x20\xd8\xd1\xe0\xa0\x8d\x56\x1e\xb2\x38\x32\x65\x27\x47\xa6\xce\x91\x7d\xbc\x8d\xa4\x79\xf0\x26\xf9\xed\x9f\x8e\x96\xa9\x24\x5a\x20\x88\x11\x08\x53\xeb\xc2\xd9\x01\x2d\xa3\x9d\xac\x11\x09\x3b\x0b\x69\x14\x74\x86\xdf\x7d\x2d\xa3\x5f\x1e\x53\x76\x49\x69\xd6\x1b\xf7\xe2\x6c\xd6\x7b\xf2\x08\xa4\x3e\xb0\x48\x33\xda\x6a\x49\xd6\xfa\xe4\x5b\xd9\x1c\xf9\x7e\x3c\xa5\xc3\x27\xdf\x4e\xbe\xff\x4e\xa5\xf8\xdb\xdb\x53\x3a\xfc\xfe\xbb\xc1\xf6\x93\xc9\xe3\xa7\x2a\xf5\xdb\xef\xa6\x74\xf8\xf8\xe9\xe0\xdb\xed\xc9\xe3\x47\x84\xd0\xe9\x93\xed\xc9\xe3\xef\xe0\xe1\xd1\x84\xef\x8d\x8d\x11\xae\x1f\x3d\xb5\x58\x53\xb9\x36\xff\x88\x21\x86\xab\x0e\x81\x55\xe6\x05\xa3\x33\xe0\x78\xc1\x3b\x3f\x83\xe4\x46\x6f\xc7\x57\x7c\x33\x0e\x7d\xb3\x3f\xf7\xd5\x96\xad\xac\xd8\xd3\xa3\x55\x26\xea\xf9\x41\xc8\x17\x1a\x1c\x5e\xab\x61\x2d\x81\x10\xbc\x4f\xbb\x8e\x78\x56\x0f\x76\xdf\xef\xda\x13\x74\x54\xeb\x1a\xce\x09\x6b\xa4\xa4\x76\x1e\xd1\x5b\xd0\x36\x6d\xa4\x69\x53\x80\xdd\x6c\xbd\xce\x21\x32\x69\xbc\x4b\xd2\xf5\xba\x18\x25\xf9\x39\x87\x59\xcf\xae\x7f\x54\x45\xde\xe5\x65\xca\x7b\x52\xbe\xcc\xe6\x0b\x9e\x00\x5d\xda\x21\x32\x2e\xbc\x98\x35\x4c\xd1\xd4\xab\x4f\xaa\x8f\xed\xa1\x4b\x29\x0b\x9a\x58\x85\x14\x5f\xaf\x91\xa5\x3e\x33\x2c\x6f\x04\xde\x6d\x18\xbd\x88\xe6\x14\xe3\x4c\x56\x05\x32\xc6\x7b\x0d\x06\x35\xb7\x02\xb2\xfb\xc4\x37\xb4\x04\x6b\xaf\xd2\x92\x91\xfc\xd6\x1d\x27\xa4\xce\xdf\xf9\xc2\xd2\xe4\xe9\x36\x1a\x41\xd7\x0f\x28\xc3\x31\x4f\xf0\x11\x2e\x21\xc7\x36\x1a\x7d\x5e\xa5\xc9\xd9\x41\x5e\x30\xb3\x4d\x93\xda\x5a\x6f\x44\xcd\x28\x18\xee\x15\x82\x3f\xae\x31\x8a\x97\x1c\x63\x01\xd5\x6d\xa1\x02\x90\x8d\x4a\x0a\xd5\x96\x53\xe0\x38\x7b\x19\x66\x42\xed\x7c\x01\x8f\x96\xed\x6d\xbd\xd9\xaf\x6e\x50\x32\x37\x8a\xd1\x09\x65\x7b\xc5\x89\x97\x61\x47\x8a\x1b\x1c\x88\x76\x6d\xa5\x4b\x1a\xda\xe1\xf3\x60\xa7\x73\x24\xb2\x74\x70\x18\x21\x9c\x74\x14\x78\x9f\xe7\xcc\x81\x71\x21\xbc\xe8\xaa\x50\x62\xf9\x2a\xcf\xaa\x96\xe7\x5c\xac\x1f\x6f\x75\x59\xfb\xc0\x31\x2f\x59\x84\xa3\xd7\x79\x5f\x1a\x25\xc9\xde\x77\x48\x84\xb3\x72\xb5\x5c\xc2\x46\xe9\xc9\x4c\x1c\xee\xe5\x28\x10\x7a\xd8\xc5\x28\xcb\x8b\xf3\x78\x91\x7e\x01\x32\x1e\xc7\x24\x06\x3e\x81\x54\xba\x80\x67\x2b\x4f\x87\xa2\x81\xdc\xd9\x89\xeb\x16\x9c\xf8\x38\x2e\xf3\xc5\x0a\xf4\xa3\x1b\x09\x14\x4d\x0b\x8b\x65\x80\x29\x47\x88\x15\x57\xf6\x13\x4c\x27\x49\x01\x7f\x15\x7c\x9f\xd2\xee\x07\x36\x9b\x5c\xce\x5f\x2d\x6f\x6c\x7d\x8f\x65\x83\x92\x9a\x22\xb5\x52\xea\x68\x7a\x9b\x07\x22\x8e\xa0\xae\xe0\xc3\xfb\x57\xbc\xb3\x7c\xfb\xa9\xce\x9a\x15\x26\x89\x9d\x62\x38\x2f\xb2\x2b\x6a\x19\xc9\xaa\xd6\xf7\xd7\xf1\x92\xd3\xb3\x92\xde\xe0\x4b\x4a\x96\x76\x38\x65\x09\x80\x6b\x60\x52\x19\x65\x36\xa0\xa2\x4a\x16\x15\x83\x6e\xaf\x14\x2a\x48\xd4\x05\xca\xb6\x93\x65\x69\xf3\x81\xcf\x3f\xbc\x5a\x06\xe4\xff\xc5\x43\x26\xcf\xbd\xf3\xa7\x77\x75\x7d\x8f\x80\x8d\x5e\x6d\x87\x41\x4a\x20\xc4\x39\x02\x73\x1b\x5a\x68\x9d\x2a\x2e\xbb\x23\xcf\x42\x53\xfb\x62\x83\xf2\xc5\x81\xe8\x12\x38\x5a\x59\x15\x8b\xde\x3c\xa5\x8b\x59\x2f\xcd\x7a\xaa\xba\x5e\x96\xb3\x5e\x7a\xbe\x5c\xd0\x73\x9a\x31\xa3\x9e\x91\x99\xb9\xa0\x58\x39\x46\xe0\x90\xd9\x9e\x22\xde\x57\x40\xe7\xed\x44\xd1\x71\x39\x6b\x3b\x25\x20\xbf\x70\x3b\x12\xf1\xec\xba\xe9\x4e\x29\x31\xdf\x8e\x0e\x53\x89\x6b\x40\x8b\xa5\x0e\x13\x9e\x17\x33\x5a\xd0\x19\xa0\x49\x59\x9e\x0d\xf3\x0b\x5a\x2c\xc4\x56\x1e\x19\x07\x29\x25\xc9\xb0\xc1\x3b\x84\x15\xcd\xa4\x81\x88\xe4\x83\x36\x26\x92\x0e\xfc\x0a\x2b\x36\x23\x40\xf7\xc4\xb3\xc7\x7f\x2e\xfc\xa4\x08\x0c\x3a\x81\x43\xae\xf7\x56\xb7\xb2\xfc\xa2\x9e\x49\xa2\x2a\x89\x75\x21\xab\x9d\x44\x1e\xd5\x93\x3f\xe9\xce\xbd\x56\x47\x15\x8e\x44\xb7\x90\xd9\x2a\x8a\x9d\x76\xd1\x3b\x94\xb3\xc7\xb8\x5b\x2e\x2d\xad\x4a\x5b\xd5\x49\xf6\xe5\x27\x38\x5d\x2a\xd1\xab\x03\x96\x26\x3c\x52\x30\xb0\x5d\x5b\x55\xa1\xc6\xd0\x15\x28\xf8\xfa\x91\x37\x4b\xfe\xb9\x81\x37\x6b\xfb\x53\xe3\x6e\x56\xd6\x1a\x76\x72\x1a\x17\x2f\x4b\xf9\xf9\x80\x2e\x63\x60\x69\x74\x5a\xa8\x51\x08\x0b\xbf\xc7\x3c\x6d\x75\xe1\x04\x8e\xf0\x18\xe2\x60\x78\x68\x6c\xb2\x5a\x8f\x5b\x28\x75\x0b\x5a\x1c\x27\x8b\xb8\x2c\xa9\x3c\x77\x1a\x2e\xf4\xea\xf5\x38\xb0\x95\x7f\x7c\xf1\xe6\xc5\xfb\xbd\xc3\x17\xcf\x3f\xbd\x7d\xff\xfc\xc5\x7b\xe2\xe3\x64\xf4\xf6\xfd\xcb\x1f\x5f\xbe\xd9\x7b\x25\x93\xb6\x79\xb6\xf7\x2f\xf6\x0e\x5f\x1c\x1c\x7e\x7a\xf5\xf6\xe3\x8b\xf7\x9f\x9e\xbd\xfd\xf0\xe6\x39\xe4\x7d\xf5\x62\xef\xe0\xf0\xd3\x87\x77\xef\x74\xea\x76\xad\xef\x34\x4e\x4e\x65\x8b\x2d\xdb\xe4\x0b\x11\xd2\x9f\xb0\xf5\x9a\x6f\x11\x15\x07\x23\xe3\x94\x7f\xa3\x5f\xd2\xc1\x58\x2b\x7d\x92\x4b\x88\xde\xda\x97\x81\x90\xb8\xc8\x62\xf5\x21\xe9\x52\xcd\x55\x95\x85\x94\x7c\xbe\xe3\x7a\x38\xcb\xf2\xcb\x4c\x00\xb2\x5e\x3e\xef\x09\x49\x51\x9a\x67\x23\x07\x49\x99\x4e\x63\x07\x05\xf9\x26\x15\x4a\x65\xef\x23\x33\x4f\xf9\xfb\xa4\x8e\x54\xc4\x4c\xb3\xe1\xd4\x56\x51\x0c\x05\x46\x3a\xf0\x89\x18\xb3\x0e\x84\xc0\xe2\x7a\x00\xf0\x6c\x92\x4e\x4d\x40\xda\x26\x9b\xec\x4b\x7f\x42\x6b\x38\x00\xae\xdf\xfc\xd6\x57\x59\x96\x5f\x8f\xda\xb6\x09\xd0\x01\x7b\xa4\x70\x79\x8a\x71\xf2\x47\xb0\x4b\xe3\x5f\x90\x45\x1f\xa6\x0d\xa0\x1b\x2f\x16\x6d\x1a\xe6\x87\xda\x61\x53\x73\x6c\xc3\x7f\x79\xd1\x65\x44\x4d\xa1\xfd\x51\x24\xf1\xcb\xd1\x1e\x2a\x6b\x8e\xce\x2e\x22\xef\x48\x3c\x46\xe0\x24\x4b\x49\x2a\xe5\xd6\x9a\xa7\xd9\x4c\x2c\x0c\xb0\xcd\x8c\xb8\x54\x8b\x34\x77\xc6\x92\xc5\x10\x46\xd2\x1c\x32\x8c\x70\x6c\x15\x57\x3c\xa4\x0c\x77\xef\x56\xec\xd8\x9d\x75\xcc\xeb\xbe\xec\x99\x45\xf4\xbd\x95\x9f\xf4\x7c\xe1\xbc\x7d\x76\xe1\xba\x8f\x77\xc9\x58\x9b\x5f\x76\xb6\x1b\xc6\x60\x02\x6e\xac\xfa\x15\x22\xa0\x84\xdf\x09\xa9\xe3\x89\x41\xe9\xba\x0d\xcc\x91\x90\x24\x40\xa9\x20\x73\x25\xa3\x4b\x4d\x6d\x89\x9d\xda\xfe\x54\x94\x4c\xd2\x58\x02\x3b\x9f\x1a\xb1\xa4\x8b\xe2\x92\x35\x17\xac\xc4\x0e\x4f\xfe\xb1\xb3\x44\x85\xf0\xc6\xc1\x0e\x06\x71\x24\xd4\x85\xb5\x43\x2a\xd2\xc4\x77\x3b\x07\xc8\xec\x34\x89\x17\x93\xc5\xff\x87\x46\xad\x14\xe0\x53\x4e\xf9\xb7\x24\xc6\x24\xc1\x0b\xcb\xd1\x5b\xcd\xb7\x9e\x7d\xaf\x23\x3b\x9b\x16\x03\xd7\x4b\xb7\x8e\x4b\xfb\x28\x63\x4e\x2a\x68\xa5\xfe\x06\x90\x95\xf4\x42\x5d\xc2\x66\x3e\xe3\x0c\x35\x88\x3c\x50\x48\xcd\xea\xac\x50\xfd\xcd\xa8\xfd\x08\xc7\x6d\x10\x7d\xbc\x93\x06\x34\x51\x49\x98\x89\xd8\xde\xc8\x13\xb2\x88\x10\xa3\xce\x63\x1c\x6a\xe1\xc5\xad\x38\xe8\x85\x1d\x93\x5c\x4e\xeb\xc2\x9e\x56\x70\x43\xd2\x26\x6f\xa9\x02\xaa\x9a\x22\x05\x1a\x36\xe6\xb9\xbb\x48\x5c\xda\x41\xc3\xf2\x12\x41\x66\xd3\xa3\x3a\x97\x98\xcf\x26\x61\x4a\xcd\x0d\xdc\x10\x36\x66\x5d\xd5\x67\x35\x14\x2b\x13\xa4\x2a\xec\x82\x05\xc5\x59\x8b\x9c\xcd\xda\xc4\x77\x57\xb5\x5f\x43\x79\xdb\x3d\x50\x44\x78\x60\xe0\x17\x35\x28\xa1\x55\xbf\x74\x64\x80\x97\xe0\x00\xa6\x8d\xe2\x87\x11\x9e\xc3\xa7\x16\x0a\x1c\x46\x78\x46\xc6\xf8\x94\x24\x6a\xcb\xcc\x76\x4e\x83\x99\x0a\x60\x7f\x4c\x92\x70\x16\xe1\x73\xa0\x22\x57\xc1\x79\x83\x44\x3f\x6e\x5c\xd8\xe7\x2d\x6a\xfd\xb8\x75\x65\x1f\x6b\x41\x89\x77\xae\x6e\xa6\x58\x6f\xed\x63\x7d\x1b\x9d\xd7\xc1\xd6\x71\xfd\x72\x3f\x6f\x02\xb0\xe3\xe6\xf5\x7e\x0c\xf7\x36\xb4\x02\xa4\x7e\x6e\xb5\x01\x37\x3a\xc2\x73\x01\xf0\xce\x11\xc2\x4b\xf5\xa8\x60\x4b\xe9\x75\xcd\xd7\xad\x37\x17\xc2\x59\x55\x07\x1e\x86\x08\xeb\xa6\x32\x16\x36\x95\xa1\xf8\x6e\x9b\xd4\x79\xbb\x0f\xba\x5c\x7a\x8e\x9e\x2c\xee\x8b\x9a\x6b\xdf\x28\xe0\x44\x24\xc1\x0b\xbc\x24\x3e\x9e\x93\xb1\xdc\x0b\x63\x7c\x4c\xc6\xf8\x9c\x8c\xf1\x6b\xe3\x15\xe3\x84\x8c\xf1\x05\xb9\xa9\xf0\x35\xff\xb3\xc7\x77\xce\x25\x09\xa3\xe0\x64\xe7\x35\xb8\xe9\x13\xa4\x82\x26\x21\x4e\x10\x5a\x0e\x06\xf8\x64\x30\xe0\x15\x1b\xb3\x16\xdc\xcc\x75\x32\x18\x08\x73\x16\xde\x2b\x4f\x78\xec\x5c\xa1\xc6\x46\x5b\xe2\x84\x9c\x04\xc9\xce\x6b\xd7\x15\xba\x2f\x1b\xc8\x1a\x8f\xe2\x04\x05\xc9\x60\x00\x18\x43\x4a\x2e\x42\x30\xde\x81\x39\x3a\xc1\x09\x8a\xd0\x89\x91\x07\x9a\x66\x53\x31\x90\x24\x40\xb1\x14\x8d\x78\x14\x9f\xe0\x6b\x84\x17\xe4\x5a\x28\x46\xe1\x13\x72\x3d\x2a\x68\xc9\x70\xaa\xfd\x2d\xa6\x73\x6f\x1b\x04\xe1\x52\x30\xd3\x42\xcb\x7f\xc8\x57\xd9\xac\x17\x4b\xf9\x1a\xee\x1d\xaf\x58\x2f\xcb\x7b\xfc\x82\x05\x5e\x83\xcd\xcd\x78\xf4\x15\x35\x41\x61\x90\xfb\xa9\x2a\x75\x4d\x17\x61\x1e\x91\xb4\xca\x5a\x27\x71\x3e\x48\xc3\xb1\x80\x03\xcd\x23\xa9\x9a\xdd\xf5\x21\x8e\xa4\x3c\x94\xc7\x83\x34\xf4\x23\x7c\x3c\x20\xf0\x9b\xd5\xcf\xe3\x6c\x90\x86\xdb\x1c\x78\xd4\xd3\x1b\xd9\x06\xc4\xb7\x52\x64\x4f\x4e\x07\x69\xf8\x28\xc2\xa7\xa4\xf9\xc5\x74\xe4\x31\x74\x04\xce\xed\xf9\x20\x0d\x1f\x47\xf8\x9c\x77\xe3\x71\x84\x10\xbe\x54\x3a\xae\xd8\x98\x8d\x6a\x6f\x21\xb5\xd6\x5d\x77\x4f\xeb\xc3\x96\xde\x25\xbe\x55\xd6\xf0\x9c\xd6\x65\x0d\x1d\x60\xf4\x12\x97\xde\xde\x1d\x20\x60\x03\x59\x4e\xf6\xaa\x36\x5e\xd1\x4d\x7f\x4a\xc7\x1b\xc0\x77\x0b\xb3\x68\x87\x8c\x51\xa7\x94\x8f\x8f\x50\x73\xb0\x4e\xe0\x1e\x2e\x7a\xec\x34\xe6\x54\x60\x8f\x7e\x5e\xc5\x8b\x1e\xcb\x7b\x3e\xee\x9d\xe4\xac\xe7\x0c\x84\xf1\x09\x54\x5a\x44\x3b\x1b\xea\x14\xeb\x70\x77\xad\x63\x53\x6b\x61\x39\xad\x1a\x95\x34\x2e\x84\xe8\x0c\xc6\x50\x35\x50\x2c\xb8\xeb\x44\x1b\x07\xcb\x38\xab\xeb\x97\x6b\x3b\x90\x71\x40\x77\x36\x10\xcf\x06\xaf\x69\xb8\x7a\x6b\xe5\x0c\x29\xd0\x02\x74\xe0\xdf\x51\x57\xdd\xc5\x5a\x47\x3d\x03\x1f\x6a\x6a\x48\xf1\x08\xb1\x0f\x12\x4f\x41\x37\x22\x22\x62\x03\xa7\x6d\x9f\xb7\xa1\x1f\x24\x79\xc6\xd2\x6c\x45\xab\xaa\xbb\x8c\xbf\x35\xae\xea\x93\x97\x37\xb6\x5a\x37\x59\xd9\xe0\x46\x76\x50\x99\x4d\x9a\xba\x83\x70\x44\x15\xce\x3a\xa8\x3d\x45\xc1\xb7\xa6\xa8\x45\x20\xb4\x09\x81\x7b\x9d\x3c\x6c\xf7\xe5\x38\x8d\x4b\x67\x03\x83\x07\x09\x0b\x57\x4d\x0f\x6e\xe4\xb5\x84\x19\x2c\x5d\xde\x5a\x3a\xd6\x5c\x3a\x41\xe7\xea\x0e\xe4\x9a\xf0\x96\xa2\x27\x81\xdd\x93\xd4\x75\xbd\x94\xb4\x78\x21\xa9\x60\x53\xb7\x90\xb9\x26\xba\x9f\x76\x31\x41\x04\x4b\x3c\xae\x35\xce\x21\x9f\x6a\xba\xe6\xc5\x80\xc4\xae\xeb\x29\x5a\x5c\xf3\x28\x62\x84\xb0\x62\x1e\xa4\xb8\x4e\xbf\xe5\x4d\x6a\xbc\x9b\x7c\xcb\xdb\x54\xba\xc8\x08\x6c\x92\xb8\x52\xfe\xd9\x54\x33\xc0\x3b\x85\x96\xe0\x49\x56\x07\xcf\x9a\xb1\xd2\xd8\xc2\xa7\xb1\x42\xbe\xcb\xb7\xf3\xbd\xc5\x42\xa1\xcc\x9b\xf4\x66\x5b\x0a\xbf\x1d\xa9\xea\xc2\x68\xac\x49\x99\x7e\xa1\x1e\x52\xc8\x42\xa3\xc8\x46\xa5\x58\xe9\x83\x46\xe8\xc3\xda\x3d\x2f\x6d\xe5\xef\x1f\x5a\xdc\xd3\x74\xee\x75\x35\x84\xac\x6a\x03\x1b\xc8\x34\x59\x30\xd4\xec\xe7\x9a\x7e\x4b\xad\x36\xbe\x97\x15\x63\xf2\x56\x82\x33\xbd\x8d\xe0\x4c\xb5\xec\xb9\x5d\x30\x27\xc5\x68\x55\x2c\xde\x71\xcc\xb1\x59\x10\x21\xe5\x2a\x21\x35\x8a\x7e\xbf\x81\x5a\x1c\xe8\x3a\x62\x47\x60\x31\x42\x5e\x4b\x48\x3e\x2a\x93\x53\xca\xf1\xef\x36\x79\x1b\xa3\xdb\x86\xd9\x4d\xf2\xc6\x08\x4e\xb2\xd7\xcf\x47\xcb\x98\x9d\xae\xd7\xce\x16\xb4\xc2\x5f\x50\x57\x23\xce\x96\x33\x48\xff\x40\x43\xa2\x5c\x54\xd9\x9e\xe2\x60\x01\x9b\x28\xd9\x37\xce\x37\x83\x74\xf0\x8d\xd3\x4b\xa5\x98\x8b\xb7\x42\x7b\x9a\x6a\x1e\x7d\xd3\xd8\x44\x27\x4d\xc0\x77\x37\x67\x50\x31\xff\x60\xe8\x6c\xc3\xee\x61\x08\x69\x8e\xdd\x4d\xf7\x89\xb4\x38\x30\x70\x2e\xe5\x6e\xd4\x2c\xdb\x3a\x73\xb1\xe3\xd6\xb8\x9b\xdb\x88\x2a\x9c\xff\xd7\x58\x84\x5f\x77\x51\xe4\xfa\xa2\x48\x37\x71\x95\x72\xd8\x5d\xa9\x42\x7d\x89\x36\x1a\xa9\xcd\xab\x6e\x36\xbd\x27\x4f\x2c\xfd\x2a\x9e\x58\x7a\x2b\x4f\xac\xfa\xaa\x15\xae\x30\x1b\x3d\x8b\xcb\x34\x69\xb3\xc7\x16\x9c\xd8\xbd\x0f\x7b\x6c\xd9\x60\x8f\x49\xdf\x10\x24\xa9\x7d\xb9\x93\xc8\x5d\xde\x8b\xc8\x35\xe8\x5f\x18\x61\x9b\xb3\xa5\x64\xc9\xda\x1b\xe4\x60\x60\x9c\x7b\x82\x45\x70\x3d\x5f\xc8\x22\xcd\xcc\x53\x47\xde\xb6\xd0\xa6\x82\x24\xb8\xbb\x90\x6d\xac\x4d\x39\x7d\xbd\xfc\x5f\x44\xc7\x34\x6a\xad\xe5\x28\xb2\xe7\xb8\xd3\xf3\x4f\x43\x92\x32\xb4\xf0\x1d\x21\xb7\xae\x7f\xd7\x38\xc6\x7a\xdd\x92\xb1\xdc\x56\x56\xe4\xa8\xc0\xd8\xb4\x31\xa1\xc6\x22\x3b\x9d\xa6\x66\x6e\x3b\xe6\x4d\x32\x9c\x1b\x5d\x1a\x7a\xe9\xed\x7d\x1e\xfa\xfa\xbc\xb5\x7a\x74\x67\xe1\x36\x0a\x38\xbd\xa5\x84\x42\xdb\x27\x63\x84\x39\xb8\x99\xd0\x11\xff\xa9\xd0\xe4\x2b\xb1\xa1\xe5\x1f\xc1\x86\x7a\x8d\x73\x40\x2f\x68\x71\xbd\xc1\xa8\x47\xcf\xf3\x86\xda\xa5\x25\xe1\xf2\xfe\xb8\xcd\x6d\x47\xcd\x3e\x56\x2a\xec\x79\x73\x17\x34\x8f\x95\x69\x48\xf8\xbb\x12\xf1\x11\x15\x3f\xf4\x7e\xd7\x2e\xbd\xeb\xda\x5d\x7e\xcd\xb5\x6b\x5c\x3a\xdc\x0e\x74\x6a\x74\xa2\x05\x38\xf8\x08\xc0\xea\x27\x33\x63\x6d\x5d\xd2\x5d\xb7\x3a\x32\x5e\xbb\x75\xc1\xae\xde\x4a\xfc\x30\xaf\xdd\x45\x39\xa8\xbb\x0c\xbc\xec\xde\xa7\x24\x97\xd2\xb0\x3b\xcb\x10\x8e\x58\xf1\xda\xa7\xb7\x64\xb4\xce\x44\x75\xfb\xdd\xd4\xd8\xf7\x77\x28\x0d\x6c\x60\xbd\x68\x6d\xe0\x2e\x16\x76\x70\xdf\x4d\x6a\x82\xb7\xb7\xf6\x29\x98\x0d\x98\xf5\x6b\x13\xb9\x31\x19\x07\xf1\x8e\x71\x4a\xae\x76\x44\x42\xd2\x30\x8e\xf0\xa2\x56\xdc\xa2\x0d\x13\x2d\x27\x5f\x74\x91\x88\x79\xf3\x80\x00\x9a\xbe\xe8\x94\x96\x37\xe8\xce\xd9\xcc\x03\x5d\xcb\x6e\x44\x56\x7b\x77\x86\x63\x94\x28\x6e\xf8\xaa\xd6\x4f\x4d\x41\x8a\xef\x35\xdd\x44\x68\x60\x85\xf0\xaa\x46\x6d\xaa\xea\x57\x92\x6e\x5d\x6a\x2c\x72\xd1\x90\xe6\x27\xf5\x5d\x35\xb0\xc9\xf0\x4d\x5b\xb5\x79\x1d\x26\xcd\x0d\x77\x67\x2d\x84\x90\x46\xc3\xd3\x5b\x4a\xd8\x90\xbd\x86\x03\x27\xb7\xea\x12\x24\x9d\xba\x04\x2b\xa5\x4d\xd7\xc1\x6b\x02\x9c\x63\xd9\xc5\xb2\x5c\x36\x58\x96\x1b\xb6\xb9\xaa\xa1\x52\x9a\x41\x1d\x5b\xf4\x9e\xfc\x4d\x5d\xc3\xd7\x49\x37\x38\x4a\x09\xc0\x8c\xce\xda\x48\xe5\xb2\x69\x20\xc1\x36\xa9\xe6\xb0\x4e\xd5\x1c\x26\xf1\x1b\x1b\x1e\x48\x67\xe9\xca\x35\x57\xdd\xfc\x61\xe8\x4b\xdd\x04\xcb\x2f\x85\x76\x8b\x8e\xb5\x71\x0f\x04\x28\x9b\x2f\xf2\xbc\xf0\xc0\x95\xe9\xd6\x36\x1a\x64\x78\x41\x62\x2f\xc7\x69\x98\x44\x70\x05\xc9\xfb\x86\xb7\xb2\x98\x26\x93\xc5\xee\x78\x5a\x0c\x93\x5d\x7f\x4a\xbd\xc4\xaa\x72\x52\x72\xac\xa1\xd5\xfb\x69\xa1\xa1\xc2\xb4\x98\x0c\xfd\x49\x32\x49\x86\x19\x94\xce\x70\x72\x67\xe9\x64\x92\xed\x8c\xa7\x43\x7f\x92\x55\xde\xd0\xd7\x2e\x0f\xb1\x1c\xff\x7a\xdd\x3d\x93\x42\xc0\xa1\x09\x3f\xe9\x87\x38\x48\x87\xfe\x2e\x19\x0b\xbb\xfc\xc2\xcb\xc2\x34\xc2\x59\x98\x0e\x7d\x31\x50\x34\x1c\xa6\x1a\x2d\x6b\x39\xf3\xb3\xdc\xdc\xb4\xe3\x3c\x41\x14\x24\xca\x01\x25\xff\x43\x0a\xa3\x35\x5b\x40\xee\x1c\xa7\xc2\x79\xfd\x4e\xaa\x38\x05\xf9\xd0\x0f\x78\x55\x1c\xe6\xe0\x25\x49\x31\x2c\x46\x91\xaf\xb2\x99\xb7\x1a\x88\x97\x38\x9b\xe5\xe7\x1e\x7a\xe8\x2d\x87\x2b\xc4\xf1\x48\x64\xf9\x53\xa6\xc2\xc9\x76\x1e\x24\x3b\x29\x08\x75\x98\x47\xf9\x9a\x95\x68\x87\x8f\x91\xd7\x1d\x0f\x88\x8f\x13\x14\x88\x67\x78\x14\x9a\x10\xf1\xc0\x0f\x54\xcf\x16\x1c\xb4\x88\x97\xc5\xc0\xc7\xa9\xd0\x88\x5a\xe1\x65\xc5\x8c\x8a\x7f\x53\xd3\x12\xb2\xd7\x9c\xbd\xdd\x62\xc9\xf2\x74\x8c\x3a\xec\x06\xc1\xd4\xe0\xd1\x53\xf0\x6f\xe7\x1d\x15\xd3\xa3\x0c\x6d\xe1\x98\x38\x0f\x1e\x3c\x50\x56\xb1\x6f\xf2\x19\x7d\xf0\xe0\x81\x63\x0c\x0c\x4a\x3b\x50\x80\xb0\x9a\x3a\x4d\x17\xb3\x82\x66\x26\xcc\x90\x8d\x49\x95\x44\xb9\x58\x59\x28\xcd\x67\x42\xa4\x2a\x93\x34\xdd\x48\x8c\xee\x33\x21\x4c\x6a\x39\xb5\xd4\xa8\x09\xc9\xc4\xa7\xac\xa1\x20\x4d\x48\x2e\x3e\xe4\xf0\x21\x8c\x21\x00\xac\xe0\x22\x15\xc6\xde\xd6\x2b\x50\x25\x0c\x36\x85\x0a\xfb\xc7\x94\x9d\x76\xeb\x10\x58\x33\x47\x2f\x7b\xfc\x6a\x55\x9e\xfd\x52\x84\x13\x32\xc6\x8b\x0e\x2c\x98\x7a\x68\xe0\x81\x0d\xbd\xe3\x58\x66\x43\xd4\xe4\x48\x76\x62\x75\x0e\xe3\x30\x19\x0c\x74\x50\xaa\x0a\xaf\x88\x8f\x97\x64\x8c\xe7\xe2\x36\xd4\x7e\x66\x2c\x2d\xc0\x96\xd2\xb3\x64\xb8\xce\x05\x7f\xcf\x5b\xed\x34\x88\x2a\xa4\xa8\x3c\x2f\x23\x71\x98\x44\xd0\x31\xe9\x28\x10\xbc\x04\x36\x6f\x99\xa5\x86\x34\x3c\x3b\xc9\x54\xde\xae\x9c\x78\xd9\x61\x24\x34\xf3\xe6\x98\x21\xcc\x47\xe5\xcd\x09\x45\x15\x4f\x58\x78\x08\xe1\xd5\x60\xc0\xc7\x57\x01\x0c\x68\xf5\x34\x40\x85\xc0\x16\x64\x56\x08\xe4\xb0\xd3\xaa\x5f\x61\xb8\x6a\x30\x81\x28\x95\xdd\x32\x26\x84\xf0\x1d\x63\xe9\x1c\x49\x35\x27\x54\xe9\xd3\x61\xb3\x6c\xae\xeb\xcd\x5d\x57\x0f\x4a\x34\x1f\xcb\x90\x97\x5e\xa2\x1c\xeb\x39\xe0\xda\x46\xd3\xf6\x9d\x1e\xe3\x24\xb7\xa7\x83\xe8\x50\xbc\xfc\xd4\x75\xe5\x12\x67\xae\xeb\x51\x92\x8b\xda\x33\x4c\xa1\xe9\x96\xcb\x0f\x8a\x53\x04\x16\x11\x45\xcd\xe5\x99\xe4\xff\x2a\x3d\xc2\xf5\xda\xd2\x3e\x53\x2c\x24\x18\x07\xb3\x5c\xe4\xa7\x24\x9b\x9a\xf6\x54\x3e\x6d\x13\xaa\x26\x9e\x1f\x0e\xaf\xa1\xd5\xd8\x52\x63\x4c\x31\xc3\x52\x47\x91\x63\xe2\xb8\xbc\xc5\x60\x2d\x9d\x7b\x4d\x57\x23\x88\x6e\x70\xb9\xa7\x4e\x35\x45\x6a\xa5\xb4\xd7\xc9\x3e\x0d\xe3\x08\x6c\x69\xc1\x3e\xc2\x72\x47\xde\x2d\x55\x7c\x71\xb5\xa4\x09\xa3\xb3\x5e\xdc\x33\x50\x0f\xf7\x44\x71\xdc\xcb\x8b\x5e\x9c\xf5\xc0\x94\xab\x97\xcf\xad\x2c\x25\xc8\xb9\x45\xb6\x72\xd4\xfb\x51\x48\x1c\x51\xa0\xb0\x24\x05\x18\xb5\x77\x40\x8b\x60\xae\x4f\xc4\xb2\xa0\x4b\x9a\xdd\x3d\x19\x86\x16\xa4\x1d\x5e\x71\xa0\x51\x59\x15\x04\x50\xfc\xbf\x33\x25\xf5\xf9\x58\x65\xe5\x69\x3a\x67\xb7\x4e\xc9\x65\xbc\x38\xeb\xa6\x83\x71\x46\xc6\x58\x92\xf2\xba\x4a\x45\x45\xed\x14\x40\x49\x29\x6e\xb4\xfa\x1e\x66\x11\x0a\xe3\x68\x2a\x7d\xf2\x40\x8c\x7e\x11\xe4\x86\x7a\x4c\xcb\xa6\xac\x2b\x47\x70\x4b\xf4\xbd\xa5\x59\x39\xe6\xbe\x12\x48\xb5\xbe\x8a\x2a\x54\xef\x3f\x3f\x3d\x5d\xda\x78\x9b\x7a\x9e\xce\xbd\x62\x77\x2c\x86\x69\x79\x6f\x2c\x38\x92\xc2\x51\x0b\x8b\x2d\x68\x0f\x0a\x6b\xdf\x93\xc1\xe6\x2c\xb5\x5b\x9a\x6d\x9e\x73\x29\x39\x79\x0f\x5e\x5c\xbb\xf8\x76\xf5\xba\xbb\xc6\x31\xf4\x8d\xd7\x4c\x3e\xe1\x59\xad\x52\xa8\xab\xc3\xd3\x89\xf4\x69\x72\x57\xcd\x44\xd7\x26\x2a\xea\x38\x65\x8e\x53\xcb\x82\x70\x7b\x94\x4d\xd0\xd9\x45\xe3\xd7\x51\x98\x30\x1f\xb1\xfc\x80\x32\xe9\x39\x84\xa2\x88\xb0\xf6\x6e\x3d\xa8\xa3\x3d\x1b\x78\x38\x38\xeb\x5e\x7f\xb6\x93\x01\x1b\xa7\x31\x11\x11\x9c\xdb\x66\x62\x47\x7b\x2a\x4c\x94\xf6\x34\x7d\x46\xaf\x4b\xaf\x63\x30\x5a\x39\x13\x67\xa4\x68\xb6\x4e\xbd\x5c\xa0\x48\x7a\xb0\x45\x68\x62\xb0\xd5\x27\x85\x7f\x89\x1a\xbb\x5e\x39\xb4\x69\xbb\xb7\x68\x18\xc7\xb7\x5d\xd0\x29\x6b\x78\xda\x5d\xe3\x26\x74\x4d\xf3\xb2\x93\x7c\x46\x27\x8e\x83\x5b\x9e\x01\x84\xce\x56\x21\xe3\xf5\xfa\x38\x15\x86\x35\xb1\xf8\x91\x66\x36\x49\x1d\xf3\xea\xe8\x22\xc5\xe0\xe4\x90\x37\x33\x20\x54\xe2\x97\xa4\xd0\xea\x82\x3a\x41\xd8\x79\xe9\x57\xd1\x91\xa9\x97\x12\x3b\x77\x4c\x4c\xd6\x92\x98\x7c\xae\x9b\xc0\x1b\x07\x29\xeb\x75\xd6\xe5\x12\x41\x55\xd2\xf4\x86\x50\xd4\x20\x95\xaa\xb0\xed\x19\xa1\xee\x42\x83\xe9\x7c\x00\xcf\x0a\x09\xcc\x40\x61\x40\xb6\x13\xcb\x9e\x82\xc1\xad\x04\x7e\x89\xec\x23\x9f\xd2\x31\x9a\xe4\xa0\x10\x65\x77\xf6\x9e\xad\x42\x4b\xb0\x02\x7c\x6d\x0c\x75\xb5\x20\x63\xbc\x32\x31\xb6\x16\x3b\xab\x60\x31\x18\x20\x7f\xac\xd5\xf3\xf6\xf3\x19\xdd\x63\xde\x02\x4d\x3d\x51\xf7\x60\x80\x55\xb5\x1c\x47\x1f\xf8\x84\x90\x15\x9f\x77\x53\x3d\xef\xe7\xff\xde\x9c\x22\xfd\x61\x30\xd0\xb6\xab\x1d\x27\xb9\x21\x32\xc9\xba\x90\x3d\x61\xfd\x2a\x36\xbd\xd8\x94\x22\x10\x68\x65\x74\xce\xf9\x7d\x4c\xca\x3f\xec\xb2\xb7\x81\x8b\x14\x21\x8d\x24\x31\x1f\xf0\x67\x9e\xb9\xd3\x59\x58\x92\x67\x65\xbe\xa0\xae\x2b\x1f\x46\x97\x71\x91\xd5\xdf\xb4\x17\xd2\x82\xdc\x54\x41\xa7\xeb\xd1\xbf\xc0\xcf\x30\xce\x09\xf8\x97\xf5\xbf\x7b\x82\xc0\xf6\xd9\x72\x26\x5a\x18\x67\xa2\x85\x15\xf8\x22\xed\x14\x2a\x74\xc9\x11\x40\x80\x34\x32\x56\x75\xc4\x7e\x59\xaf\xfb\x3e\x30\xab\x8c\x0d\x1e\x4c\x17\x68\x6a\x3a\x69\xd6\x2b\x5c\xd7\x2b\x46\x2a\xf4\x0b\x38\x0c\xe8\x16\x4e\x52\x5c\x70\x40\x8e\x0b\x54\x49\x33\xa9\xbb\x5d\x9e\x4a\xe7\xb8\x79\xa1\x5d\x9e\xd2\xb2\x8c\x4f\x68\xdd\x09\x68\xdd\xd9\xa9\xf6\xf6\xa5\x02\xcf\x8b\x82\xb1\x8a\xaf\x57\x69\xec\x05\xa8\xe1\x96\x4b\xd4\xb8\x13\xf2\xdb\xd0\x34\x29\xcb\x0a\xc7\xb0\xfc\x4d\xd4\x42\x07\xc5\x02\xcf\x50\x37\x15\x20\x35\xe0\x96\x58\x9a\x1e\x2e\xe2\x92\x09\x3f\xc5\xf2\x2a\x34\x09\x75\x37\xc6\xe0\x28\x5b\xfa\x48\xbe\x35\x23\xb2\xe2\xef\x1b\x17\xcb\x76\x3c\xa7\xda\xcc\x69\x95\xce\x4c\x8d\xa1\x2e\x1c\x68\xb8\x8b\x52\xa5\x36\xbb\xf6\x76\x64\x1d\x42\xdb\x98\xcf\xa4\x70\x4f\x43\x28\xf6\x32\x12\xde\x9c\xd1\xeb\x89\x93\x28\x8f\x04\xb7\x28\x5c\xf3\x69\xad\x22\xe4\xba\xa9\x67\x07\xac\xc8\x10\x2e\x20\x0d\x17\xa8\xe9\x5a\x26\xee\x76\xf6\xfb\x57\x78\xf6\xde\xb8\x39\x01\x84\x74\x2d\x34\x1f\x03\x08\xfa\xf5\x8c\xc8\x34\x7a\x05\xae\x3d\xc0\xa3\xa7\xeb\x8a\xdf\x9a\xe7\xcc\x8c\xc8\xc4\xa5\x64\x01\x3f\xbb\xe6\x44\xac\xc5\x6a\x12\x30\xb9\xc6\x62\x52\x80\xb9\x16\x3f\x93\x01\xd2\x15\x16\x11\x61\x61\xa1\xad\x77\xe8\x1d\x68\x8d\xbd\x0a\xbc\x1f\x53\xfd\x34\xa2\x40\x44\xe9\x71\xe0\x1b\xb1\x25\xa5\xb3\x5f\x78\xc6\x20\xa8\x10\x29\xf0\x88\x2f\xf3\x62\x26\xde\xf9\x53\x85\xd4\x36\xb2\x4b\x4d\xad\xe7\x81\x33\xe9\x29\xc7\x82\xf4\x8a\x4d\xf4\x53\xcb\x97\x50\xf1\x9f\x5b\xf0\x85\x71\xe5\xce\x1f\xfd\xef\x9e\x82\xb0\x7d\xa1\x1c\xb8\xc7\xe2\xd1\x07\x5f\xee\x0b\xe9\x93\x1d\x27\x22\xf5\x91\xed\xfa\x79\xf1\x55\xae\x9f\x57\x9b\xb6\x9a\x84\x81\xe0\x7b\x4d\xc1\x3f\x00\x77\x35\x57\xdc\x72\x53\xac\x8a\x82\xe3\xff\x3a\x93\x44\x73\x97\x71\x42\x8d\x07\x36\xed\x46\x4b\x7b\xa3\x11\xca\x28\x87\xf9\x19\xcd\xd2\x2f\xc6\x33\x27\xb8\x7c\x95\x0c\xcb\x1b\xe8\xc0\x84\x62\xf0\xe7\xd5\x74\x57\xe5\x57\xd5\x6d\xde\xa5\x1b\xf5\xb7\x02\x50\x33\xfd\xc5\x1b\x63\xe3\xa0\xdd\x33\x23\x07\x61\x48\x23\x52\x89\xa5\xc3\x12\xf4\xeb\xf5\x8c\x68\x36\x7b\x3b\x17\x4e\xe3\x02\x24\xcd\x89\x95\x5f\x5d\x93\x2b\xa3\x57\x0c\x7a\xe5\x21\x14\x8e\x23\x61\x5b\xec\xc0\x74\x39\x13\x6b\xea\x06\x84\x86\x7e\x64\x19\x12\x3b\x81\xfc\x3e\x2f\x28\x3d\x50\xf3\xc9\x29\x16\x2b\x4f\x25\xf3\x00\xf3\xa2\xf6\x45\x39\xfb\x55\xd4\x37\xbc\x35\xf2\xc4\x6c\xc8\x8f\x8d\xcc\x13\xb3\x62\xb5\xa0\x8d\x2c\x37\xaa\x81\xf3\x25\xbb\x7e\x5f\xfb\x6e\x0c\x97\xf9\x8d\xc8\x4e\x29\xa7\x16\x2a\xd5\x1d\xe9\x4d\x0f\xb0\xcb\xb6\x63\x78\x13\xd6\x41\x7b\x1c\x0c\xe4\x4a\xa4\xcc\x63\x98\x86\xdb\x11\xa6\xe1\xa3\xc8\x30\x05\x79\xa5\xd2\xd9\x05\x0d\x1f\x47\x6a\x5b\xd0\xf0\xdb\x48\xe9\xbe\xf1\x19\x94\x86\x21\xdb\x78\xb8\x8d\xa4\xef\xc6\xf2\xe1\x03\xe9\xb7\x31\x43\x88\x09\x28\xc9\x37\xaa\xf0\xf8\xb6\xa0\x73\xc6\xef\x72\xf1\x56\x00\x19\xef\x38\x86\xaf\x57\x80\xd7\x73\xf0\x57\xf7\x9b\x77\x54\x3e\x44\x5e\xf8\x5b\xf4\x30\xfc\xed\xa8\x8c\x10\xbc\x3f\xd8\xe2\x70\x03\x6a\x2d\x78\xb7\xed\x7a\x8b\xd0\x8f\xea\x55\x17\xe1\xa3\x08\xf0\x4d\x3d\xa3\x1b\x26\x26\xb9\xc7\xc4\xd0\x05\x05\xed\x2d\x33\x1a\xe9\x1e\x4c\x1f\x44\x7d\x5c\xc1\xdd\x28\x5f\xa4\x0d\x34\x76\xdf\xc7\xd2\x93\x4a\xc1\x9f\x73\xf1\x2c\xcd\x84\xc3\x08\x97\x84\x06\x65\x20\xf8\xa2\xa4\x0c\xc7\x11\x8e\xc5\x05\x5f\x22\xec\x78\xca\xa3\x40\x08\x0f\x48\x44\x3b\x2e\x91\xb2\xab\x91\x19\xa6\x0e\x72\x26\x4e\xe4\x20\x6d\x3a\x34\xb6\x0d\x64\x6e\xb4\xc5\x91\x70\xfa\x5c\xd4\x02\x1c\xc3\x70\x66\x34\x59\x78\xb1\xdc\x81\x15\xcf\x7f\xe3\xd8\x21\x7e\x4c\x4e\xd8\xcb\xb1\xd0\x5f\xad\x64\x9d\x8d\xa3\x79\x1c\x27\x67\x5e\x3c\x5a\xe6\x4b\x8f\x13\x16\xa4\x3f\x96\xf5\x3a\x13\x28\xc0\xf1\x4d\x8e\x66\x8a\x00\x88\x19\xef\x6a\x98\x1a\xc6\x8a\xeb\x7a\xa9\x28\x8c\xed\x61\x80\xd2\x2d\xa8\xf7\xa1\xa0\xbc\x05\x1a\x54\xca\x86\xb3\x13\xa2\xc0\x65\xcf\x51\xdc\xb4\xe9\x2f\x75\x95\x25\x8b\xbc\xa4\xb3\x67\x45\x9c\x9c\x51\xe6\xe5\x08\x33\xd7\x2d\xc4\x5a\x06\x16\xdb\x5d\x02\x19\x42\x88\x57\x92\x38\x8c\x4d\xcf\x39\x1c\x5a\xaf\x6d\x7f\xe0\x25\x0a\xd0\x6d\xb3\x13\xd8\xb3\x2f\x03\x42\x8a\xce\x80\x8f\x82\x8f\x79\x31\xe3\x1f\xf8\x2e\x6c\xee\x68\x2a\xaa\x08\xee\xde\xd9\xe3\x48\x6c\xee\x71\x24\xf7\x77\x6d\x47\x5b\xb0\x72\x2f\x9b\xed\x8b\xbe\x97\x3f\x14\xf9\xf9\x0b\x00\x7e\xf2\x3e\x89\x2f\x3d\x86\x1d\x75\x32\x1c\xac\x3e\xd4\x0e\x42\x2b\x9c\x84\xe9\x5c\xd1\xd5\x39\x89\xf9\xe2\xbc\x1e\x19\x0a\x08\x6f\xb1\x63\xf3\x70\x1c\x69\x6d\x76\x73\xf9\x8d\x31\x55\xfb\x2b\x0f\x1f\x47\xd3\x0e\x60\x96\x5b\xc0\x2c\xe7\xc0\x6c\xd2\x99\x69\xdb\xca\xf4\x28\xaa\x02\x07\x20\x77\x9f\x10\x98\xaf\x71\x14\x20\x11\x53\x40\x2d\x7f\x6b\x79\xa8\x35\xa3\xf3\xbc\xa0\x03\x42\x47\x82\xa3\x8c\x42\x39\x14\x56\xf3\x0c\xaa\x81\xad\x58\x17\x0d\x6f\x61\x79\x44\xa8\x85\x7c\x09\xa0\x52\xd1\x7a\x4a\x44\xa3\xba\xc4\xcf\x1e\x1c\xa5\x74\xbd\x36\xbb\x31\xad\x6f\xbd\x54\xba\x2b\x17\xf5\xd5\x7b\x55\x89\x5e\x35\x20\x9b\xdd\xa0\x6e\x02\xbc\xa0\xcb\x92\xe2\xa2\xad\x97\x1b\x90\x4c\xdf\xaf\x95\x98\x3c\x7e\xc6\x61\xd9\xb6\x8e\x2e\xd5\x05\x11\xfa\x11\xea\x98\x3c\xc9\x35\x6e\x57\x58\x39\x10\x50\x57\x74\x1e\x2a\x73\x1e\xd6\x12\xd6\x6b\xaf\x31\xed\xfa\x93\x9a\x42\xf1\x23\x2f\x2e\x1f\xb5\x1b\xda\xbc\xf5\x0f\xf8\x42\xe9\xcd\xbf\x2c\x68\x72\x4a\x93\xb3\xd7\x69\x59\xd2\x59\x0d\x67\x50\x80\x3e\xb6\x85\x20\xf1\xee\x38\x88\x87\x43\x31\x8b\xfd\xf4\x9c\x63\xbb\xb1\x0c\x10\xc0\x6f\xd3\x38\xe2\x8b\x30\x62\xf9\xab\xfc\x92\x16\xfb\x71\x49\x3d\xc4\xe7\x55\xe7\x54\x1e\xf6\x25\x9c\x13\x2c\xea\x1f\xc0\xa5\x38\x8e\x51\xe0\xf4\xac\x4a\xfb\x00\x87\xac\xa1\x98\xa3\x3b\x28\x45\xb4\x26\x18\xb5\xa9\xbc\xb4\xe1\x7c\xad\x77\x59\x47\xb7\x6c\x7b\x6a\x31\x95\x63\x84\x17\xfc\x22\x5c\x91\x38\x58\xed\x8e\x83\x15\x1f\xaa\xd0\x6f\x4a\xc2\x95\xda\xa1\xa0\x21\xa2\xc2\xca\x69\x8b\x81\xbe\x83\x5c\x57\xee\xd9\x3e\x21\x4b\xb9\x49\x17\x24\x11\xe7\x39\xf4\xa3\xc1\xa2\xba\xa5\xac\x57\x9f\x26\xdc\x1a\xdd\x02\x53\x92\xc0\x2d\x60\x9a\x11\xdb\x51\x9f\x0e\x99\x22\xda\xae\x6c\xf8\x26\x98\x22\x1c\xb8\x09\xdf\xe4\xc2\x9e\xd5\x74\x61\xa2\x83\x33\x6c\xd8\x10\xe0\xb0\x9d\xb5\x80\xb5\x91\xb7\xd4\x62\xf6\x04\x82\x1b\x67\x23\x58\x3e\xc2\x8e\xa3\xb9\xae\xfa\xc8\xf0\x97\xd9\x9e\xc0\x24\x0b\x0d\x7c\x01\x8a\x16\x16\xf2\x12\x18\xad\x3d\x60\x2e\xf7\x7d\x0c\x4a\x7f\xb7\xe2\xd8\x06\x3f\xb8\x07\x9a\x5d\x74\xa1\x8d\x36\x18\x03\x18\xd6\x04\xd7\x4d\xc4\x82\x42\x5d\x69\xfd\x4b\x65\x7d\x99\x7b\xa5\xbe\xa0\x95\x1c\xaa\x0c\x33\x52\x5a\xb7\x04\xd3\x3b\x89\x93\xf1\x00\xab\x79\xa6\xe1\x30\x83\x6f\x5e\x47\x57\x99\x75\x29\x30\x7e\x29\x18\xc4\x5a\x23\xe0\x15\x34\x2e\x05\x59\x78\xf3\xc4\xa1\x9b\xdc\xf4\xbf\x2a\xbe\xe6\x56\x2d\x11\x56\x03\x99\x7a\xb2\x64\x3c\x67\xb4\x78\xc3\x77\xc3\x5d\x60\xa9\xb4\xee\xe4\x02\x3b\xcb\xb8\x88\xcf\x4b\x07\x97\x08\xe7\x20\x9d\x2f\x43\x6b\x96\x70\xe7\x82\x35\xf0\xfc\x1a\xad\x59\x1f\x09\x2e\x9a\xd7\x04\x42\x93\x76\x9f\x1d\x07\x83\xab\xbf\xf8\x9c\x13\xab\x08\xa7\x30\xff\x10\x01\x45\x73\xfa\x14\xaa\x50\xc0\x29\x69\x8a\x98\xed\x2c\xa2\xa0\x3a\x69\x76\x9a\x41\xc3\x6a\xdf\xea\x3e\xa6\x49\x7d\xff\xa1\x8d\xb4\xb3\x5d\x1a\xc6\x42\x3a\xaa\x85\x0f\xa0\xb0\x32\xb0\xa6\xa9\x93\x3c\x57\xe5\x84\x93\xec\x69\xbd\xb2\xfb\x9e\x9b\x1a\x27\xa0\x5e\xa3\x94\x32\xae\x32\x2a\x45\xe2\xfb\x1c\x65\x95\x60\x47\x12\x87\x2d\x0a\xbd\x5e\x45\x13\xdb\x5d\xe4\xc9\x99\x57\xc7\xe5\xfe\x23\xb3\xff\x67\xe6\x9a\x8f\xae\x46\xad\x37\xe5\x01\x2d\x7a\xbf\x63\x3c\x35\x1b\xe8\xda\x97\x70\xe3\x40\x15\x94\xe1\x60\x17\x80\x8c\x8c\xe4\xd3\x97\xdd\xcd\x2f\x33\xdd\x27\x73\xd3\xda\xa9\x64\xf3\x96\x91\x51\x51\xb2\x94\xb5\x14\xbe\xea\xeb\x26\x21\x11\xd5\xfc\x1c\x9b\x8f\xc3\xb4\xfa\x78\x85\x05\x9f\xc7\x70\x5e\x2a\x4c\x6d\x14\xe9\x96\xbe\x60\xfb\x6e\xa4\x72\x94\x2d\xac\xdb\x17\x94\x48\x7c\xd9\xea\xb0\x66\x61\x2a\x15\x4e\xad\x82\x8a\x13\x5e\xfd\x82\x5f\xd5\x2b\xb2\xf5\x9b\x17\x8e\xd6\x7f\x8b\xd0\xd4\x0b\x8f\x2e\x23\x34\xd8\x4a\xf1\x92\x8c\x83\xe5\x4e\x19\x2c\x07\xc4\x47\x76\x37\x3c\x21\x32\x09\x97\x11\x92\x84\x15\x2c\x83\xee\xe0\xd4\xc6\x76\x73\x1b\x13\xce\x5d\x77\xc9\x89\xaf\xa1\x3f\x5d\x90\xbe\x3f\x49\x06\xc0\x30\x98\x78\x31\xaf\x8e\x03\xc5\x94\x3f\x0c\xfc\x08\x1b\x1c\x21\x16\x38\x82\x7e\x4f\xe1\x7d\x25\xf0\xd7\x58\xe0\xaf\xf2\x2d\xe5\x6f\x53\x55\xeb\x02\x64\x85\xe9\xdc\xeb\x2f\xc4\x1e\x9b\x83\x6a\xc0\x6c\x95\xb4\x42\x8d\x2b\x96\xe2\x80\x71\x14\x17\x81\x21\xa8\x58\xa2\x90\x45\xe4\x46\xc4\xe7\x4f\x70\x11\x5f\x4e\xe6\x55\x05\x6a\xa4\x09\x84\x85\xd8\x70\x91\x6c\xd4\x49\xb1\x90\xf9\x3a\xc5\xca\xea\x94\x56\x9b\x62\x65\x28\x40\x1c\xe5\xd7\xd8\x98\xf6\xad\x9d\x6d\xec\x09\x5c\x4b\x7f\xac\x2f\xe3\x4d\x5d\x68\x90\x51\xed\x3e\xdc\x3a\x05\xf5\x46\x4d\x9b\xcd\xc1\x73\x8c\xc1\x1a\x2b\x33\x01\x47\x75\xf0\x5d\xde\xce\x46\x3b\x1f\x7e\xed\x11\x16\x14\x26\xb0\x69\x31\x18\x40\xe7\xc3\x22\xb2\xfa\x4d\x95\x62\x1e\x33\x4a\xb2\x0c\x24\x38\x20\x85\x6d\x40\x34\x6b\xf6\x70\x81\x73\x32\xc6\x29\x19\x07\xa9\x69\x24\x1d\x0c\x04\xd6\xe6\x49\x9a\x02\xe6\x32\x15\x07\xc5\x75\xbd\x9c\x9f\x25\xec\x20\xc5\x6e\xc9\x87\xfc\x7d\x2c\x8e\x86\xe4\xc2\x48\x56\x10\x54\xa3\xc8\xb6\x42\x9c\x81\x65\x91\x9f\xa4\x32\xc1\x8f\x90\x72\xc0\x60\xb4\xa1\x05\xd7\x22\x5f\x1d\x2f\xe8\x3e\x20\xbe\x0c\x55\x85\x56\xe6\xe9\xfb\x7c\x58\x0d\x7e\x4a\xe3\xae\x2f\xf2\xcb\x9e\x01\x54\x52\x48\xe1\x7c\x90\x65\x7a\xc7\xa2\x90\x63\xa1\xb6\xa2\x4e\x4d\x3a\xde\xb3\x3e\xe1\xea\x11\xc6\xd7\xe2\x84\x88\x1a\x6b\x57\xe9\x3d\x6b\x55\x65\x7a\x55\xbb\x87\xd6\xbd\xba\x21\x9c\x59\x03\x21\x00\x68\x1e\xdc\x3d\x25\xbc\x46\x87\x6f\x1f\xa1\xda\x28\xdd\xf5\x01\xdb\xc5\xac\xc4\xbd\x06\xf0\x1c\xf2\xf7\x60\xe3\xb5\x07\x60\x91\x1a\x9d\x6e\x4a\xdb\xf5\xed\xb1\x21\xcf\xdd\xbb\x4c\xd9\x69\xbe\x62\x3d\xe1\x91\x81\x01\xd3\x56\xd5\xbb\x81\x86\xb6\xa7\x08\x0e\xc3\xad\x79\xea\x8e\x4c\x34\x11\xae\xe3\xf9\xd9\xee\x9a\x0a\x32\xc6\x39\x61\x43\x3f\xc8\x41\xcb\xdf\x86\x3c\x9c\x08\xcf\xe1\xb4\xac\xd7\xdb\xfc\xaa\x29\xf8\x81\x41\x41\x3e\x1c\xa2\x8d\x2b\x21\x7a\xd5\xd3\xf7\xa1\x83\x33\x3e\xc2\x0c\x46\xd8\x92\x73\xad\xfe\x52\x39\xd7\x5d\x42\x6a\xc9\x47\x3b\xc4\x57\xf8\x0d\x7e\x85\x5f\xe0\x03\xfc\x19\xef\xe3\x33\xfc\x11\x3f\xc7\xcf\xf0\x3b\xfc\x9e\x40\x00\x1d\x41\xcf\xbe\x9d\x7b\x08\xff\x42\xd8\x28\x3d\xc9\xf2\x42\xa8\x59\x96\xf8\x77\xf2\x5e\xdd\xd9\x2f\xc9\xd0\xc7\x1f\x88\x8f\x7f\x22\x63\xfc\x03\x47\xe0\x7f\x06\xd3\x31\x25\xdb\xfa\xd5\xd3\xbb\x81\xb6\x36\xaa\x33\x60\xf8\x03\xfe\x69\xf8\x52\x29\x54\xde\x1c\xc7\xc9\xd9\xc4\x5e\xc4\x9f\xb5\x16\x2a\xd6\x04\xe6\xa4\x81\xd3\xfd\xdc\x08\xe1\xf1\xb3\xe4\x77\x82\x82\xf9\x4f\xbb\xe4\x77\xad\x53\xde\xef\x83\x8c\x4e\x0c\x46\x75\x43\x39\xa2\xf5\xbc\x8c\xbc\xb7\x75\x74\x7e\x42\x88\xe3\x06\xeb\x75\x46\x08\x59\x88\x9f\xa5\xeb\xd6\xf3\x0c\x7c\x04\x61\x6f\x5c\xd7\x7b\x49\x7e\xc2\x1f\x00\x9e\x66\xd2\x81\x6d\x39\x11\x0e\x69\xc5\xcf\x4a\xfc\x2c\xc5\xcf\x62\x72\x48\x7e\x0a\x66\xf9\xcd\xe1\x80\xf8\xb8\xd9\xf6\xa1\x68\x1b\x6a\x3d\x14\xb5\x56\x97\xa7\x9c\x9a\xe4\xbd\x48\x44\x67\x64\xd7\x56\xb2\x6b\xb2\xa3\x28\x78\x47\x42\xb9\x85\xf1\x7b\xc9\x2c\xf8\x09\x1f\xa2\x08\xff\x44\x0e\x87\xbe\xed\x2a\x77\x2e\xfa\x32\x13\x3f\xe7\xe2\xe7\xb5\xf8\xb9\x16\x3f\x27\xe2\xe7\x78\xc2\xa7\xf0\x47\x22\x24\xca\xa0\x6d\xb7\x2f\xbb\xeb\x65\xd0\xe4\x8f\xf8\x47\xb1\x9a\xb6\x0c\xad\x77\x3a\x49\xe7\xde\x73\xf2\x83\x22\x62\x7f\xd0\x77\xe8\xc4\x71\xf0\x33\xd2\x9a\x4d\xec\xac\x8a\x05\x3f\x7b\xcf\x5d\xf7\x59\x9f\x90\x42\xfc\xe4\xe2\x27\x11\x3f\xa5\xf8\x59\x89\x9f\x85\xf8\x59\xa2\x1b\x39\xa5\xe9\xdc\x3b\xe3\xb4\x1b\x44\x79\xf5\x0e\xc9\x7b\xc3\x97\x41\x0e\x3e\x1c\xf8\x08\xc1\xce\xf9\x65\xbd\x66\xa2\x90\xa0\xcd\x7f\xf5\x1c\x75\x9f\x20\xe0\x7c\x7e\x24\x87\x41\xad\x87\x1f\x87\x3e\x5f\x98\x34\x40\x1f\x87\xc4\xc7\x67\xa4\x7f\x26\xd7\xe5\x4c\xcc\xbb\x2c\x5f\xd6\xa6\x9e\x0f\x0b\xa6\x06\x7f\xc0\x87\xc3\x97\xb0\x10\x82\x87\xdf\xec\x1b\xcc\xc0\x0b\xd2\x28\x0b\xe3\x38\x5c\xaf\x3f\x09\xac\xf2\x05\x9a\xf2\xa6\x3c\x07\xf3\xff\x62\xce\x27\x5e\xbd\xf5\x17\xad\x06\x6d\xa9\x62\xaf\x10\xab\x9a\x4f\xae\x08\xdf\x34\xc5\xd4\xf9\xc6\x99\x7c\xe3\x7c\x83\xef\x9c\xc1\xab\xae\xf9\x1b\xf8\x66\x06\xa5\x9a\xec\x1f\x99\xc0\xd6\xc0\xdf\x90\x17\x2a\x96\x0f\x44\xa1\xf2\x5e\x91\x37\xc6\x74\x68\x77\x3c\xf5\x3e\x93\x0f\x83\x57\x78\x9f\x1c\x0e\xdf\x84\xaf\x22\x05\x09\x26\x3c\x1d\xef\x93\x97\x08\xc3\x61\x10\x5d\xea\x5e\x92\xcf\xf8\x70\xb8\x1f\xe1\x97\x64\x1f\x7f\x20\x9f\xf9\x4c\xd9\x13\xb5\x37\xb9\x34\xd1\xb0\xf8\x40\xf1\xa5\x58\x84\xf7\x08\x1f\x12\x0e\x5a\xad\xef\xd3\xf7\xba\x73\x76\xb1\xe1\x36\xf4\x42\x09\x7b\xef\xda\x19\x76\xf3\xe9\x84\xcf\xe2\x21\xf9\x09\x1f\x90\xfe\xb8\x3e\x95\xbc\xb0\x98\x4a\x00\x21\x07\xa4\x7f\x00\x1e\x6c\x48\x2b\x17\x3e\x70\xdd\x4c\xb8\x39\xca\xc4\x21\xca\xc4\x21\xca\xc4\x21\xe2\x3f\x4b\xf1\xb3\x70\x5d\x0f\xaa\x7b\x2b\x87\xa9\x9c\x0a\x1e\x22\x24\x79\xbc\x41\xeb\x13\xdf\x10\xa2\x17\x9d\x3d\x4c\x64\x9d\xa8\xe2\xd3\xf0\x35\x73\xa0\x24\xdc\x7c\x8f\xc6\x1d\xa0\x97\x10\x72\x31\x05\x06\x72\xfd\x94\x3f\xdc\xe2\x47\x69\x1b\x0d\x7c\x0e\x98\xf9\x36\x9d\x1e\xea\x4b\x6b\xf2\xab\xa7\x89\x08\xd4\x71\xda\xfe\xa2\x4d\xa7\x9a\xd0\x47\xb1\xbd\xd1\xd0\xc4\xfb\xd2\xd8\x5d\x5f\x1a\xbb\xeb\x4b\xf7\xee\xfa\xd2\xda\x5d\x77\x4f\xeb\x0f\xe2\x2e\x7d\x87\xa0\x69\xa5\x30\xf4\xd3\x60\x80\xdf\x71\xac\x44\xf1\x2b\x3b\x74\xb6\x78\x47\x7e\xd6\x44\x12\xbf\x52\x2b\xac\xf4\x97\x3a\xb2\xff\x54\x55\x4a\x51\xd2\xf9\xc6\xb1\xd7\x6c\x8c\x70\x4e\xbe\x71\xbe\x69\xa4\xa5\xc4\x39\x3a\x6a\x66\x8c\x89\xb3\xd5\x4c\x2b\x21\x1c\x68\x23\x31\x21\x4e\xaf\x99\xb6\x20\xce\xd1\xbc\x99\xb8\x22\xce\x11\x6b\x26\x2e\x89\x73\x54\x34\x13\xe7\xc4\x09\x9b\x69\x33\xe2\x44\xcd\xb4\x53\xe2\x78\xcd\xb4\x63\xe2\xa0\x66\xda\x39\x71\x6e\x9a\x69\xaf\x89\x53\x35\xd3\x4e\x88\x13\x34\xd3\x2e\x88\xf3\xb0\x99\x76\x4d\x9c\x49\x33\x6d\x8f\x38\xff\xd3\x4c\xbb\x24\x5b\x61\xef\x28\x3b\x62\x47\xc5\xd1\xfc\xa6\xf2\xd0\x37\xce\xd1\x51\xb0\x15\x1e\x45\x7f\x8b\xb6\x4e\xf0\x17\xfb\x33\xc7\xab\x27\xc1\xff\xf4\x79\x96\xa3\x28\xfc\x5b\xb4\x3e\xda\xf2\xa6\xe4\xe8\x21\xda\x3a\xc1\x9f\xc8\xd6\x28\x3c\x3a\xda\xf2\x9c\x6f\x8e\xb2\x68\x0b\xbf\x25\x5b\x61\x3c\x9c\x8f\x87\xdf\x47\x5b\xe9\x7f\x4c\x17\x56\xc7\xda\xc7\x32\x02\xff\xb7\x3a\x02\xbf\xff\x74\xfc\xc7\x42\xf0\xd7\x4d\x42\xff\x2f\x6b\xcd\xb6\x6c\x36\xef\xa7\x9c\x68\x8c\xe6\x9c\x1c\xda\xa9\x87\xda\xe9\x1b\xbd\xc0\xb6\x43\xd4\x77\x79\xc9\xf6\x0f\x0e\x7a\x05\x4d\x68\x7a\x01\x28\x3a\x1d\x38\xbd\x34\x2b\x19\x8d\x67\xbd\x7c\xde\xe3\x5f\xd5\x0d\x6f\xe2\x7e\x52\x2b\x26\x30\x76\x8e\x56\x73\x3a\x9f\x3b\xc4\x84\xec\x05\xfa\x89\xa7\xcf\xe7\xb4\x91\x2e\x79\xdf\xa7\x71\xf9\xec\xed\x6b\x1d\x8f\x8e\x57\xaa\x1e\x8c\x5c\x76\x52\xcb\xea\x63\x11\xa7\xd4\x75\xdb\xf1\x61\x65\x04\x53\xa1\x79\x08\xfe\xa6\x99\x15\xf5\x14\x12\x8a\x76\xe4\x56\x51\xc8\xd6\xb2\xd5\xca\x51\x9e\xea\x0d\x66\xc2\xaf\x9c\x08\xa0\x2d\x18\xb0\x10\xee\x34\x68\xba\x1d\xf1\x10\x34\x24\x45\x6a\xfc\xd1\x75\x73\xc5\x2c\x15\x7d\x92\x85\xdf\xcb\x0e\xe4\x48\x4a\x99\xf8\xd7\xf5\xda\x4b\xf8\x45\x2c\xe8\xcb\x19\x71\x76\x80\xc8\xec\x25\x65\xd9\x73\x06\xc9\xc0\xd9\x75\x4c\x70\x6d\x55\xed\x79\xbc\xb4\xaa\x16\x51\x5c\x15\x83\x28\xc6\x8b\x2e\xcd\xbd\x85\xa0\xcb\x5a\xfe\x52\xa5\x2e\x41\xa0\xb7\x18\x6c\x64\x4d\x43\x4a\x77\x89\xc2\xf2\xc0\xe3\x27\x5c\x56\xe8\xa5\x24\x9e\x36\x35\x94\x63\xc1\x8c\x88\x95\x21\x46\xac\xad\x34\xa0\xbb\xb8\x90\xea\xa1\x22\x4e\x5b\x4d\xb7\x19\x1b\x35\x6f\x13\xe9\xca\x14\x40\x52\x6b\xb2\xc9\xe4\xc6\xb6\x75\x1c\xa8\x71\x5b\xcb\xe0\xa5\x2a\xce\xad\x99\x2b\x08\xb2\x9e\x56\x78\x21\xc7\xb4\xc9\x1d\xe1\x79\xbc\x44\x8a\x7d\x65\x3b\x20\xe4\x53\x6f\x85\x3d\x2f\x2c\x47\xbc\x6d\xbf\x4c\xc6\xe8\xa2\x12\x84\x6a\x51\x77\x8d\x26\xab\xce\x89\x15\x24\xd7\xda\x28\x3a\x37\xbe\xd5\xde\x23\xd5\x1e\xd7\x2c\x5b\xdd\xa2\x11\x62\xa4\x97\xba\xae\x97\x2b\x91\x41\x8a\x70\xce\xe7\xc0\x34\xd6\x11\xcf\xb2\x23\x1c\xf3\x94\xf7\xa2\x75\xa0\xda\xf3\x62\xf9\x63\x59\xaf\x9d\x91\x83\x69\x4b\x81\x9c\xef\xda\x5b\xb5\xc7\xc5\xe9\x90\xe7\x42\xe8\x91\x97\x4d\x3d\xf2\x18\xd2\x70\xdc\xd2\x23\x5f\xfc\x01\x76\x8b\x61\xce\x83\x31\xd5\x3d\xae\xae\x9c\x94\xfc\xbe\xfa\x1e\xee\xab\x52\xdd\x62\x31\x3c\xfa\x4f\x7d\xfb\xea\x2a\xbf\x4a\x85\x38\xb9\xed\x42\x80\x29\x59\xe4\xb1\x1d\xa5\xdb\x68\x00\x80\x7a\xb9\x54\x13\x89\x0b\xf6\x31\x65\xd2\xec\xd2\x84\xa8\xc6\x22\x22\xbc\x0e\x28\x06\xc1\xfe\xa7\xf0\x17\x02\x88\x4b\xdb\x7f\x65\x0d\xca\x9b\x7a\x1d\x2f\x25\xe0\x04\x10\xa0\x00\x91\xd0\xc6\x44\xb7\x2a\x0c\x2b\x37\x27\x9b\x8c\x04\xe4\xf7\xfd\x38\x39\xa5\x2a\xca\x65\x2d\x71\x53\x8c\x69\xe5\x40\xc5\x74\x45\xd9\x2d\xd5\x8a\x57\x98\x8d\x2e\x53\x76\xda\xb2\xa8\x34\x2e\x53\xeb\x8d\xea\xed\x6b\xdc\xa7\xde\xfe\xdd\x68\x26\x08\x31\x81\x9c\xf6\xce\xf8\x63\x92\x39\xa5\xdd\x02\xa8\xc2\x9c\xc8\x01\x29\x43\x7d\x61\x3b\x78\x9d\x54\x87\x75\xde\x3a\x7a\x78\x54\x76\x05\xbf\xf7\x46\x0f\xd1\x51\xf9\xf0\xe8\xe1\xd1\xd6\x16\x0a\xb4\xfb\x57\xb3\x03\x08\x03\xcd\x1e\x50\xa8\xb1\x82\xda\x8a\x10\xef\x9d\x71\x3a\xc4\x96\x89\x97\xcb\x45\x9a\x40\x15\x5b\xbf\x97\x7c\x27\x05\x5a\xdc\xaa\x77\x1b\x3f\x99\x8a\x4b\x27\xea\xfd\xf0\xfe\xe5\x7e\x7e\xbe\xcc\x33\xd0\x8d\x56\x83\xd7\x5e\x69\xa4\x02\x71\xb3\x85\x23\x68\x22\xe0\xb8\x6e\x49\x19\x59\xb1\xf9\x70\xfa\x34\x38\x8e\x4b\xfa\xe4\x31\xd6\x20\x69\xbd\xde\x58\xb2\x99\x55\x7b\x34\x25\xba\x0f\xef\xe9\xc9\x8b\xab\x25\x90\x59\xaf\xf9\xac\xaa\x2e\xe1\x62\x5a\xc0\x76\xf7\x18\x76\x44\x3d\x0e\xb2\xd0\x9f\xc9\x65\x9a\xcd\xf2\xcb\x51\xcc\xf2\x63\xa5\xb7\x98\x9b\xa5\xd9\xd0\x21\x2f\xfc\x0d\x47\x03\x84\xb7\x40\x86\x75\x6b\xa0\x42\xe9\xac\xfe\x3c\x5e\xf6\x20\xb4\x71\x9a\x9d\x40\xcc\x42\xb5\x45\xda\xb1\x45\x80\xeb\x0d\xe2\x32\x7d\xb9\x80\x47\x38\x90\xe8\xb4\xe3\xdf\x9b\xe0\x25\xe0\x7a\x56\x56\x55\xcb\xa1\x4c\x59\x94\x93\x5d\xd7\xd5\x9a\x4a\x23\x7a\x95\x96\xac\x3c\xb8\xce\x92\xee\x54\x2b\x10\x4b\x6c\xdd\x18\x31\xe8\x24\x88\x0c\xd8\xe1\x4b\xfa\xb4\x36\xaf\x72\x4f\x76\xcd\x0d\xc7\xab\x7b\x2c\xef\xf1\xd1\xf7\x38\x98\x4a\xf3\x55\x69\xcd\xd3\xa4\xe7\x0c\x32\xab\x2a\xa1\xf9\x0b\x58\x6d\x9c\x25\x7c\x44\xb7\xc0\x10\xa4\xdd\xb0\x6f\x0e\x65\xdf\x08\x1c\xc8\xec\x7e\x07\xf7\x68\x4b\x57\xa4\xa7\xbe\x59\xc1\xa9\x0e\xe8\xcd\xf4\xec\xfd\xe3\xe0\xed\x1b\x3b\x5c\x77\xe7\xdc\x98\x7d\xd3\x31\x31\xbd\x79\x5e\x9c\xc7\x0c\x2c\x72\x5a\xf3\x63\x2e\x8d\x9a\xbf\x5f\x1b\x1e\x34\x81\x87\xe9\xab\x95\x66\xfb\x30\x34\xc9\x81\xb9\xf1\xbc\x82\x68\x34\x5b\xb8\xef\x30\xaf\xb3\xb4\xc8\xe2\x73\xca\x6f\xb1\x02\x59\x16\x2b\xa4\x9d\xa5\x40\xb8\xef\xf5\xbb\x76\xdc\x7a\xdd\x99\xec\x15\x08\xd9\x5b\xb4\xb6\x07\x8b\x5b\xf6\xa0\x50\xc7\x28\x9b\x16\xdd\xd2\x46\xae\x8b\xe8\xea\x38\x66\x10\x3b\x5e\x46\x2a\xec\xfa\xaa\x23\xd2\xa0\x96\xc4\x28\xf9\xda\x28\xeb\x7f\x09\x2d\x7e\xb3\x2c\xe8\x3c\xbd\x9a\xdc\x72\xef\xfc\xe6\x0d\x8f\x2e\x07\x43\xb4\x65\xec\x11\xa7\x2c\x1c\x47\x13\xc7\xa9\xf0\x2a\x13\x15\xd0\xd9\xa4\xd3\xcb\xa6\x71\x80\x0d\x95\x80\xf3\xeb\xaa\xfa\x93\x06\x61\xca\x95\x94\xff\xf4\xb1\x8c\x51\xfd\xf4\x5b\x64\x5b\xce\x1a\xeb\x53\x96\x27\xf9\xc2\x0a\x65\x5b\x2e\xe2\xf2\x94\x96\x56\x4a\xbc\x62\xa7\xd6\xeb\x69\x5e\x32\xeb\x95\x77\xac\xf1\x55\x3b\x7b\xc2\x8a\x70\xb5\xcb\x4b\xdf\x6c\x26\xe1\xf3\x8a\x16\xd7\x76\x8d\x31\x3b\x6d\x54\xc1\x93\xec\x1a\x0b\x2a\x9c\x2f\x55\xca\x70\xea\x02\x6b\xf4\xbb\x3b\xca\xe9\x85\x47\x71\xdf\xc7\xfd\x31\x32\x68\xba\xd0\xd6\x11\x6f\x82\x37\xd1\x5d\x96\x4e\xdb\xa5\x45\x7e\x8f\xa1\x09\x20\x29\x02\xa2\xd4\xce\x45\x3e\x4a\x4b\xed\x83\x02\xf4\x0e\x2f\x20\xae\xaf\xaa\xd4\x06\x8e\xe9\x94\xca\x2a\x3c\x34\x49\x2d\x5b\x46\x91\x28\xb6\xb8\xd0\x62\xfb\x50\x2c\x48\x2a\x49\xd1\xad\xdf\xbc\x30\x1e\x7e\x19\x0f\xbf\x1f\x0d\x86\xd1\x60\x82\xb6\x52\x5c\x92\xad\x49\x38\x1e\x7e\x1f\x3d\x7c\xb0\x85\x13\x9e\x85\x13\x2c\x53\x6f\xda\x3f\xda\x42\xe1\x6f\x47\xd3\xa3\x32\x7a\x88\xbc\xa3\x29\x58\x12\x3d\x44\xd3\x07\x5b\x78\x41\x42\xe7\xc6\xc1\x4e\xe5\x60\x67\xed\x60\xe7\xe8\xc8\xc1\xce\x6f\x0e\x76\xfe\x1f\x07\x7c\xae\x26\x31\xf3\x42\x67\xc7\xc1\xce\xae\x83\xbf\x71\xbe\xe1\x1f\xb0\xd3\xe3\x39\x0b\xfe\x27\xe3\x7f\x98\x13\x21\xbc\x22\xa1\xf3\x8d\x29\xb4\x40\x78\x49\x42\xe7\xef\x0e\x76\xb6\x1c\xec\x4c\x1d\xec\x04\x0e\x76\xfe\x66\x72\xac\x10\x9e\x93\x50\x7f\xfd\x9b\x13\xe1\x19\xd9\xfa\x2d\x1c\x88\x71\xed\x0d\xff\xfd\x69\x18\xdd\x8c\xf1\x93\x47\xd5\x83\x2d\x7c\x0a\x43\xee\xf8\x86\x38\x86\xf7\x60\x0b\x1f\x93\x9b\xdf\xe3\x8b\xb8\x4c\x8a\x74\xc9\x26\xfd\x31\x76\xac\x57\x67\xd2\x1f\x57\xf8\xfc\xee\x2c\xaf\xc9\xcd\x29\x63\x4b\xfe\x91\xff\x96\xfc\x61\x2e\xde\x4f\xf2\xe5\x29\x2d\x20\x21\x15\xe1\x59\x1d\xc8\xea\xe8\xc7\x52\x3e\xcf\x75\xaa\x2c\x23\x93\x79\x31\xd1\xcc\x09\x1c\xcc\x27\xd6\xc1\xbc\x50\xa7\x39\x9d\x7b\xd4\x75\xf9\x16\x92\x1b\x8d\x6f\xa1\xfa\x96\x51\xd7\x13\x0d\x8c\xfb\x33\xed\x90\x4f\x86\x95\x96\xd5\xe1\xa2\xb2\x37\x55\xc3\xd6\xd0\x34\xd9\xaf\xed\xd9\x6e\x67\x43\xef\xe2\x22\x3e\xa7\x8c\x16\xbd\x6f\x56\xc5\xe2\x1b\x1d\xde\x25\xd6\xfe\x86\x32\xf0\x23\xa4\x5d\x16\x49\xd7\x8a\x96\x92\xf8\x14\xc2\xc1\x83\x02\x79\xea\xba\xe9\x8e\xf5\xe9\x6f\x0e\x9a\x3a\x53\x67\xe2\xfc\xcd\x01\xb6\x8d\x10\x48\x94\x28\x58\x84\xe3\x88\xf0\x3f\x06\x60\x1e\x1d\x6d\x9d\xf0\x7d\x25\x5a\xb8\x20\x94\x2c\xc4\x3d\x5a\xc2\x85\x7c\x41\x2e\xe4\xc5\x85\xfb\x99\xeb\x0a\x2b\x15\x29\xe0\xf8\x9b\x83\x6a\x11\x5b\xae\x49\x32\xa2\x57\x34\xf1\x2e\xa0\xe8\x75\xed\xea\x07\xe0\x73\x61\x41\x9e\x8b\x06\x9c\xba\x0e\xfd\x08\x5f\x87\xdb\x8a\xa9\x27\x21\xdc\x35\xe8\x77\x18\x08\xc7\xa6\x27\x72\x55\xac\x5c\x0a\xef\xd6\x6c\xbe\x8e\x64\xa3\x69\x08\xf5\x2a\x65\x5a\x51\xab\x32\xcc\x06\x92\x73\x8f\xc4\xf6\x38\xf6\xc4\xe8\x2e\x89\xb7\x47\xf6\xc2\x71\x84\xea\xb6\x0b\x41\xfd\x0e\xb8\xc4\x7c\xca\x64\xc3\x7b\x6a\x7e\x38\x52\x94\xad\xd7\x7b\xeb\xf5\x85\xbe\xef\x38\x44\x09\x7f\xfb\x9f\xa3\xad\x68\xf0\x3f\xf2\x77\x4b\x6a\x1b\x7c\x21\xce\xd6\x16\xbf\xd1\x2f\x0c\x49\xb7\x8d\x82\xfe\x97\xf5\x7a\xcf\x75\xcf\xc3\xbd\x68\xbd\xf6\xac\x76\xb6\x51\xfd\xda\xe9\x8f\xa1\xc5\x3e\xcf\xe9\xba\x9e\x28\xd6\x7f\x1d\xee\x45\x96\xa9\xc5\x27\xfc\x16\x1f\x92\xa1\x8f\xaf\xc8\x38\xb8\xda\x99\x2b\xee\xf5\xd5\x60\x80\x6e\x60\x5f\x79\x6f\xc8\x85\xde\x55\xf3\xf0\x2a\xe2\x38\x8f\xa7\x04\xca\x6f\x76\x0e\xf9\xeb\x21\x79\x83\x2a\x91\xfd\x2d\x11\xdf\xa6\x17\x46\xc2\xc4\xf7\xe3\xff\x38\x68\xd2\x4a\xc2\x87\x50\xdb\x27\x3e\x0a\x61\xf0\x81\xdf\x22\x31\x79\xf0\xfa\x76\xe0\x23\xeb\xea\xec\x20\xf9\x3e\x21\x04\x03\x00\x73\x04\x31\x88\x65\x6d\x10\x7c\x94\x6f\x82\xf6\x50\x96\xb7\x0f\x85\xa7\xc1\xdb\x85\xa6\xdb\xcc\x9d\x6d\x7a\x7b\x68\xf7\xf6\x50\x19\xf1\xf0\xad\xf9\x53\x5e\x32\x0f\x35\xae\xf2\xda\x1b\x38\xf3\xe3\xdd\x7b\x45\x84\xd5\x65\xed\xab\xd0\x8f\x8b\xda\xe9\xb5\x37\x4b\x7b\x98\xaf\xf5\x2b\xed\x2a\xed\x45\xbd\x94\x3c\xae\x5b\x47\xa3\x2d\x84\x0f\x08\x9f\x29\xfc\x42\x8d\x2c\xb8\xda\x39\x30\x93\xf5\x99\xbc\x08\xaf\xa0\xba\xcf\xae\xdb\xff\x2c\xb7\xea\xcc\xda\x34\xfb\xfc\xe0\x9c\x91\x31\xfe\x48\x3e\xab\xb9\x3e\xdb\xf9\x18\x9c\x0d\x06\xe8\xb3\x2d\x40\x3a\x43\xbb\xfe\xf6\x77\xd3\xfd\x01\x71\xae\x9c\xc9\xfe\x80\x7c\x0e\xcf\x44\x47\xf7\xad\x6a\x79\x95\xcf\xc9\x0b\x3d\xa7\x57\x08\x3f\xd3\xaf\x57\x7c\x07\xbc\x23\xaa\x1b\xa7\x28\x78\xe7\xba\xde\x73\x29\x89\x0c\xfd\x08\xe1\x67\xda\xb1\xda\xbb\x70\x3b\x42\x3c\x41\xeb\x80\x5e\x10\x67\xcb\x19\x3c\x93\x2e\x0a\x47\x0e\x1a\x5c\x34\xd7\xe4\xb9\xf9\xa8\x2c\x2c\xaa\xae\x39\xde\xdd\xfe\xf6\xdb\x69\xbd\xa8\x23\x4d\xab\xbb\xd7\xb7\x0e\x22\xfe\x5f\xf6\xfe\x85\xbf\x6d\xdc\x78\x14\x86\xbf\x8a\x84\x76\x15\x22\x82\x64\xc9\xb9\xed\x52\x86\x75\xdc\x24\xdb\xe4\x6d\x1c\xe7\x4d\x9c\xb6\xfb\x28\xfa\xe7\x50\x22\x64\x71\x43\x91\x2a\x09\xd9\x56\x2c\x7d\xf7\xe7\x87\xc1\x85\xe0\x45\x37\x27\xbb\xdd\xe7\x9c\x6d\xf7\x17\x8b\xb8\x0c\x06\xc0\x60\x30\x18\x0c\x66\xc8\x1b\xad\x81\x32\xa5\x93\x36\x8f\xcf\x3e\x3c\x7f\xfd\x3a\x9f\xae\xee\x0f\xde\x53\x23\x15\x0a\x36\xde\x34\x5f\x2e\x42\xe4\xdf\x15\xa4\x94\xd1\xe7\xbf\x9b\xef\x33\x26\xdb\xcc\x8a\x92\x37\x9a\x01\x6e\xc0\x58\xf3\x4a\x52\x49\x64\xc7\x58\x6c\x12\x75\x4a\xaf\xe5\x53\x49\x39\xb8\xd7\xf2\xb8\x57\x1f\x0d\x6e\x86\x58\xad\x42\xf2\x81\x2e\xcc\x2a\xb4\x89\xeb\x57\xba\x50\xc4\x05\x2b\x32\x5b\x8e\xda\xc6\xea\x35\x05\x9d\x44\x7e\x91\xff\x8a\x7b\xaf\x29\xa5\xbf\x82\x35\x13\x4b\xc7\xde\x9c\x89\x0a\x72\xe9\x01\x61\xff\xaa\xbc\x50\xbe\x56\x57\x5f\x1f\x2d\xd0\x62\x8f\x92\x0c\xe0\xa3\xe9\xbe\x10\xa4\x0d\xe7\xfc\x68\x2f\xe2\x0e\xf9\xa8\x26\xe0\x95\x0d\xa3\x2f\xc3\xbd\x00\x98\x57\xf9\xdd\xc9\xc0\x79\x85\xed\xed\x24\x4b\x06\x26\xa6\x9b\x96\x99\xb9\xfd\x0b\x92\x70\x1e\x89\x57\x7b\x6d\x57\xd7\xba\x84\xd9\x41\xaf\x31\x39\x1f\xdc\x68\xdf\x69\x7a\x06\x75\xc8\x25\x5d\xac\x54\x4d\x6c\xfe\xf9\xbd\x58\xe9\xc7\x65\xd3\xf8\x4e\x53\xa3\xc9\x55\xbc\xeb\x67\x6a\x15\xcb\xc8\x10\x76\xfa\xf7\xcd\x9f\x6d\xa7\x7b\x72\xcb\x97\x0a\x78\x25\xa1\x2b\x37\x75\x65\x39\x7d\x83\x3d\xab\xd8\x05\xa0\x11\x06\xc7\x00\x87\x55\x51\x0b\xc3\x38\x13\x6d\x7e\x78\x74\x76\x14\x10\xe4\x22\x4c\x58\x93\x8a\x5d\xa8\x67\xd9\x75\xea\x1d\x5b\xc0\xd4\x1e\xea\xec\x2e\x6a\x3d\xb5\xa0\x17\xf8\x86\x77\x6e\x1e\xb5\x57\x5b\x3f\xa0\xac\x69\xbe\xdc\xc2\xb8\x3b\x22\x57\xee\x31\xf9\x35\x65\x3f\xf4\xcb\xb3\x15\x17\x0d\x50\x33\x97\xd2\x44\x43\x33\x3d\x71\x02\xd1\xa4\x9a\x34\xc7\x13\xb0\x4d\x7a\x39\x71\xd7\xa2\xb0\x46\xa3\xe4\x23\x4f\x66\x64\xfc\xd2\xa3\x57\xb6\x46\xc8\xa2\xce\xdc\x2b\x51\x35\xdb\x5e\xa3\x81\xfa\xa8\xe9\x49\xb7\xb4\x6a\xa6\xc1\xec\x1b\x5e\x34\x2a\xfa\x6f\x81\x0d\x0d\x07\x8c\xf3\x32\xca\x6a\xe5\xd4\xf9\x6a\x75\x3e\xe0\x43\xdc\x68\x80\x61\x6d\xd0\x77\x02\x10\x7c\x9a\x4e\x00\xaf\x73\x48\xd4\x68\x48\xae\x13\x69\x73\xa1\x0e\x86\x00\xce\x82\xf9\x44\x18\xbb\xc1\x6a\x25\xea\x20\xf0\xfd\x83\xfe\x82\xa4\xfb\x39\xab\x68\x42\xd1\x5f\x50\x33\xc1\x24\x05\x7c\xeb\x94\xa6\xb9\xfc\x94\x8a\x5e\xa4\x98\xf0\x66\xd0\x74\x22\xcb\xdd\xe2\xd1\xa0\x0f\x76\x0e\x95\x61\x3d\xaa\x28\x6f\x8d\x31\x6e\x3a\x29\x4d\x0d\x08\x21\x7f\xa3\x1f\x8e\x1f\x21\x8c\x9b\x49\x9e\xd4\xcb\xc7\xec\xfc\xfd\x45\xfe\x80\x9c\x9d\x9c\xb1\x59\x3f\x95\xf0\x4a\x07\x70\xe9\x01\x3c\x77\x20\xb1\xdd\x77\xf4\xb8\x39\xe2\x48\xf8\x84\x51\xbe\xce\xcc\x1a\xa0\x10\x29\x3b\x58\xc4\x2a\xf8\x42\x52\x0a\xbe\x90\xd2\x64\xe0\x0d\x7b\xd1\x20\x1d\x02\xc1\x0c\x52\x88\xdc\x15\x49\xbe\x0b\x41\x56\xa6\xf2\xed\x29\x03\xa6\x60\x42\x8b\x28\x7d\x44\xc6\x1f\x22\x88\x16\xa9\xe9\x05\x8c\x0f\xf4\x9a\xb5\xdf\x0b\xdb\xa8\x31\x4c\x42\xda\xe9\x85\x27\x26\x76\x72\xa8\xf1\x5a\xd0\xf1\x20\x1c\xf6\x90\x06\x81\xa4\xf5\x9a\x13\x0d\x16\x43\xca\x06\x8b\xa1\x31\x6a\x3a\x1f\x44\xa6\xa1\x61\xa3\x11\xd9\x9c\x34\xb2\xd9\x68\xa4\x34\x2a\x05\x56\x5a\xd1\x93\x35\xf4\x44\x03\x6d\x34\xb2\xdf\x40\xdb\x59\xb7\xc4\x66\x7a\x3e\xc8\xb2\x87\x59\x4f\xe7\xc5\x9e\x4e\x68\xa7\x37\xc9\x24\xde\x89\xee\xa9\x4f\xe7\x83\x89\x98\x01\x5f\x74\xcc\x37\xde\x9d\x36\xe0\x95\x35\x4f\xb3\x76\x09\x83\x5e\xaf\x56\xb3\x1c\x32\x56\x57\x99\xf9\x99\x05\xed\x15\xad\x4f\xa9\xc3\x72\x7c\x14\xeb\xe3\xa2\x38\x63\x4e\x0d\xbb\xa9\x3b\xb2\x09\x3a\x35\xef\xfe\x7b\xb8\xa7\x9b\xd5\x99\x62\x65\x33\x4b\xd4\x71\x98\x2d\x81\x61\x02\x2e\x6d\xa7\x20\x92\x4c\x8d\x28\x28\x32\x74\x43\x27\xc7\xc5\x1c\xab\x0f\x53\x25\xfe\x1d\x21\x79\x40\xd3\x9b\x2d\x53\x3f\x48\xa4\xf6\x5b\x26\xff\x12\x49\x0b\x54\x63\x29\x36\x0e\x79\x3a\x61\xf0\x87\x64\xb4\x42\x6d\xac\xe5\x6f\xd1\x72\x9c\xc8\x97\x40\x09\xb7\xf0\x58\xad\x22\xb3\xd7\x5e\x43\x88\xef\x28\xbf\x13\x5d\xd1\xc8\xde\x65\x15\xdd\x8d\x9a\x57\xd9\xd4\x1a\x85\x63\xc6\x5f\xcd\xd2\xa9\xa4\x48\x79\xda\xb7\xe9\x19\xe2\xf7\x59\x29\x19\x9f\x24\x4b\xd3\x65\x56\xaa\xc0\xaa\x2a\x9c\xd1\xe5\x6a\x75\x2d\x3a\x26\xaa\x01\xc1\xab\x42\xe4\x86\x9e\x91\xaf\xb9\x86\xad\x26\x33\x52\x59\xad\x06\x43\xf2\x99\x3a\x53\x6a\x37\xc9\x36\x16\x8d\xac\xe5\x55\xcf\x2d\x61\x10\xde\x3e\xc3\x7a\xb5\x68\x47\xcf\x86\x8c\x08\xa5\xd0\x74\x80\x31\x7d\x1d\x74\x86\x7d\xf1\x0f\x95\xe9\xee\x57\x43\x40\x32\x01\x63\x4d\x09\x08\x11\x7b\x5d\xdb\xe4\x09\x80\x99\xd5\x08\xcb\x35\x22\x88\xb6\x2f\xfe\x51\x43\xeb\x66\x54\xca\x74\x23\x2c\x53\x13\x8b\x21\x3d\xb3\xeb\x0a\x4a\x50\xb8\x62\x4c\x96\xb8\x44\x9a\x92\xc3\x0a\x21\x45\x35\x10\x69\x2a\xac\xa4\x51\xab\x82\x48\xe8\x67\x3f\xdd\xac\x06\xd9\xbd\x44\xbe\xd2\xa9\xf1\x0f\x64\xee\x3d\xbf\xae\x56\xce\x57\x3a\x18\x62\xf2\x55\xf9\xdc\xf9\x4a\xbf\x6a\xe5\xe5\x14\xef\x06\x6b\x40\x82\x72\xed\xed\x22\x0c\x2f\x92\x8f\xda\x13\xa7\xa3\x6b\x49\xc3\xf2\xcf\xd8\xea\xa2\x1a\x96\xaf\x9a\xc9\x10\xe7\x0d\xad\xd7\x1d\x3d\xe1\xf2\x6f\x26\x90\xfd\x2f\x84\x4f\x85\x5c\xa0\xd2\x15\x8d\xfd\x2f\x04\xda\x02\xb5\xd6\xdf\x18\x58\x0a\xb8\xd5\xdc\x9b\x8c\x99\x65\x4b\x73\xc7\x88\xe9\x1e\x39\xd9\x3a\xc0\x52\x8c\x53\xa9\xaa\x73\xab\x95\xde\x71\xac\x92\xfd\xec\xa7\x8b\x10\x6e\x9a\xe2\x7d\xfd\x43\x24\x6f\xdc\x94\xea\x5f\x0b\xef\x5f\xa2\xc2\xc5\x81\x05\x0e\x9a\x06\xc1\x4b\x43\x8e\xac\x2b\x85\xaa\xfd\x5b\xef\x09\x17\x62\xfc\xe1\x70\xd3\xea\xe2\x41\x67\x48\x2e\xa9\x9a\x01\xcd\x1b\x57\xab\xaf\x26\xe2\xb9\x18\x6a\xd4\x16\xe4\x78\xb1\x5a\xa1\xb6\xfc\x85\x15\x85\x5e\x10\x71\xc4\x7c\x4b\x75\xf1\xde\xdb\x53\xda\xe9\xbd\x6d\xb5\xb0\xac\xe2\x5c\xd0\xaf\x83\xb7\x43\xdc\xff\xaa\xdf\x42\xbe\x25\x5d\xec\x6a\x30\x7d\x27\x97\x4e\xc4\xe1\xd4\xbd\x6d\x34\x8a\xc9\xad\x96\xb4\xac\x3a\x6b\x34\xea\x37\x70\xb2\xed\xdd\xb6\x5a\xbd\x5b\x9c\xb1\x02\x01\x12\xf7\xea\x67\xd6\x42\x5c\xad\xbe\x4a\xd5\xcd\x91\x4e\xc9\x58\xa2\xe8\xa1\xbd\x0d\x5d\x6a\xd1\xf6\x6b\xb6\x09\xe5\xa4\xe6\xaf\xda\xbb\xb7\x14\xbf\xdf\x90\x97\x74\xaf\x86\x7a\x05\x56\xa7\x88\xf4\x65\x1f\x21\x57\x8f\x5a\xdf\xac\x07\x17\xa1\xdf\x6d\x49\x18\x23\xbf\x33\x7a\x96\x6d\x0d\x86\x02\x1b\x8d\xfa\x4b\xf1\x69\x8f\x92\x41\xd8\xa2\x4b\x6b\xc0\x5c\xa7\x4c\xaf\x86\x24\xf1\xef\xb5\xb2\x2c\x09\x00\xfc\x57\x4b\x49\xe0\xe0\x1d\x99\x94\x6e\x17\x5e\x89\xa1\xac\x3e\x0d\x03\x2b\xe7\x34\x95\x8a\x6a\x26\xcd\x71\xe4\xe1\xcb\xe1\xe0\xa6\x04\x9b\x83\xbe\xd8\x81\xb8\xa5\x0b\x27\x8c\x32\x3b\x82\x88\x7e\x29\x6c\x0c\x67\x08\x2b\xe9\x8a\x58\x55\xac\x9d\x82\xa7\x70\xb0\x56\xe9\xd5\x4d\x62\x80\xef\xb8\xf6\x63\x7a\xb9\x9c\x33\x02\x1b\xb8\xfe\x52\xb7\x6f\xd9\x95\xb7\xba\xeb\x48\x1a\x8d\xa4\xe7\xb5\xaf\xc2\x78\xe4\xa9\xf0\xda\x5e\x5b\xda\xc5\xe8\xaf\x94\x85\x13\x79\x26\x25\x63\x7a\xdc\x7d\xfc\xec\xf1\x8f\x8f\x9e\x3e\x7e\x46\x42\xfa\xe8\xa9\x0a\x2c\x73\xfc\x94\x4c\xe8\xa3\x1f\x89\x4f\x9f\x75\x3a\x64\x4a\x9f\x1d\x93\x11\xed\x1e\xff\x48\x66\x14\xb5\x10\x39\xa7\x47\xff\x73\x1b\xb5\x5a\x47\xe4\x8a\x1e\x0d\xfe\xe7\xd3\xed\x71\xa7\xf5\xe9\xf6\xd9\xcb\xe1\x11\xb9\xa6\x47\x83\x4f\xb7\xc7\x2f\x3f\x2d\x1e\x75\x3a\xc7\x9f\x16\x3f\xff\xdc\x79\x29\xfe\x7d\xda\x15\xa7\xc1\x25\xbd\x8b\xaf\x59\x32\x09\xe3\x1b\x17\x5d\xe8\x5f\x35\x69\x5d\x1b\x31\xe6\xa7\xb5\x9b\xc0\x67\x49\x2d\x88\x38\xbb\x62\x49\x5a\xe3\x71\x4d\xb9\x27\x46\x04\x45\x31\x6f\x8d\xbc\x34\x18\x23\x17\xbd\x0e\x43\x76\xe5\x85\xaa\xee\x29\xad\x75\x6e\x7f\xec\xd4\x9c\x28\xe6\x35\xaf\x06\x85\x6a\xe2\x94\x59\x9b\xc7\x41\xc4\x31\x22\x28\x88\xae\xbd\x30\xf0\x5b\x50\x41\x00\x90\xdf\x12\x00\x5a\x93\x33\x1a\xb6\x16\xe4\xc6\x8a\xb0\x45\xbe\x56\xbd\xb9\xcb\x6e\xca\x3e\x67\xef\x77\xc5\x49\xef\xbd\x17\x5d\xa9\x1b\xaa\xe5\x80\x0d\x71\x66\xef\x7e\x51\xb4\x77\xd7\x54\x43\x12\x3a\x18\xf6\xa2\x56\xab\x87\x93\x41\x34\xa4\xdc\x61\x76\x94\x56\x2b\x28\xd5\x65\x3e\x1a\x6a\xc6\x47\x48\x62\x79\xca\x8f\xcc\x36\x00\x87\xf7\x68\xd0\x19\x36\xd1\xff\x42\x84\x81\xd7\x28\x4c\x92\xe6\x85\xe3\x08\xfa\xd5\x67\xec\x6b\x82\xda\x08\x9b\x43\x46\x1b\x61\xc2\x71\xa6\xd6\xcd\xda\xbf\x2d\xbd\x79\xa7\x83\xa1\x7a\xf6\x6e\x9e\xbc\xc7\x27\x41\x0f\x3b\x3c\xef\x6f\x3d\x6e\x36\x31\x3e\xa5\x4f\x9e\x1c\xff\xf4\xb4\xd1\xe0\x27\xf4\xc9\xd3\x47\xdd\x9f\x1a\x8d\xf8\x24\xe8\x3f\x79\xfa\xe8\xb8\x43\xa9\xf3\xf4\xf1\x93\xee\x71\x03\xdc\x98\x15\x6b\xe2\x7e\x22\x59\xb9\xe3\x74\x3b\xc7\x8f\x1a\x1c\x9f\x9c\x74\x3b\xb8\x29\xbf\x22\xdc\x7c\xfa\xe4\xc9\xa3\xa7\xe0\xee\x46\x46\xb3\xc0\x24\x6e\xb5\xb0\x6b\x3e\x2b\x06\xf3\xad\xa5\x2f\x10\x73\x53\x8a\xb4\xc3\xad\x31\x65\xa7\xa2\x85\x27\x52\x11\xf3\xd5\x71\x58\x8b\xca\x26\x4f\x4f\x4f\xbb\x9d\x86\x40\x63\x05\x9d\x13\x9c\x01\x3a\xb4\x02\xd4\x18\x26\x50\x01\x54\x1b\x26\xd2\x4f\x86\xc4\x9b\x82\xbb\x89\xe3\xe3\xe6\xb3\x27\x0f\x1d\x76\x72\xfc\x14\xb7\x1c\xa7\x53\xa7\xa2\xab\x4f\xac\x1a\x2f\xf3\xb1\xa6\x3a\x20\x21\x30\x1a\xf5\x6f\x1c\x76\xe4\x63\x97\x9d\x9e\x76\x09\x6b\x52\xf1\xc9\x71\x8f\x9d\x9e\x3d\x9c\x9f\x9e\x76\x7b\x49\x93\x86\x98\x41\xf2\x99\x19\x8e\x1b\x27\x69\x3a\x67\xcd\x2e\x7e\xc8\x8e\x1c\xd6\x9c\x60\xab\xa1\x0f\x39\x77\x58\xda\x5d\x08\x99\x10\x9f\x9c\x93\x2b\x72\x2d\xa6\x7e\x99\x11\xf1\x19\xed\x90\xaf\x74\x44\x2e\xe8\x14\x50\x82\x79\xb4\xef\xab\x66\x18\x9f\x74\x40\xf3\xd4\x11\xf4\xda\xe9\x25\x27\x51\xaf\xd9\x4c\x70\x6e\xba\x13\x7c\x2a\x78\x4c\xa3\xf1\xd9\xb1\x56\x3a\x26\xd7\xea\x21\x72\xbe\xac\x74\xa3\x15\xd3\xe8\xb4\xd3\x8f\x9a\x5d\xb7\xd3\x8b\x4f\x96\x3d\x49\xa3\x01\x3d\x23\x1e\xed\x92\x94\x86\xbd\xf8\x94\x2e\x01\x64\x7e\xfd\x63\xe2\x38\x13\xea\x5c\x55\x50\x5c\xeb\xf1\x8f\x27\xdd\x4e\xff\xaa\x75\x7c\xec\x5e\xb5\x9e\x3e\x39\x39\x7e\xda\x17\x7f\xdd\xab\xd6\x4f\xcf\xe4\xc7\x4f\xcf\xdc\x10\x9f\xd2\x70\xb5\x9a\x9c\xde\x38\xce\xb8\x75\x86\x8f\x3c\xb1\xa5\x7f\x76\x90\x66\x70\x08\x93\xb3\x26\x9d\x3c\xf4\x48\xdd\x99\x9c\x38\x3e\x4d\x4f\xe8\x45\x7f\xe1\xa6\xa7\xf4\xa2\x39\xef\xcf\xdd\xb4\x75\x81\x71\x2f\x15\x93\xe3\x9d\xde\x38\xe3\x23\xe7\x9c\x86\x2d\xbf\x0c\xc6\x7b\x48\xcf\x7b\x17\xf4\xa5\x73\xd6\x0a\x08\x37\xf7\x6a\xcd\x2e\xe9\x50\x1a\x60\x72\xe3\x9c\x1d\x71\x7c\x3a\x6e\x7d\x2d\xd6\xfc\x2a\x88\x41\x64\x92\xb3\x1f\x28\x27\xd7\x5a\x4c\x3b\x6b\x36\x49\x87\x7c\x35\x4a\x9b\xb7\xce\xb5\x35\xfd\xff\xd9\x31\xfd\x64\x49\xce\xe0\xf6\x53\x47\x2a\xa5\x0e\xa3\xb7\xa0\x3d\x56\x14\xc1\xe9\x08\x82\xee\x04\x74\xaa\x54\x5d\xd7\xbd\x66\xd3\xc3\x62\xbc\x07\xde\x10\x9f\xc0\x3c\x5f\xca\x89\xfd\xea\x5c\xa9\xd9\x4c\x68\x4c\x2f\x35\x8c\xd8\x14\x98\xe1\x5e\x72\x72\xad\xe6\x36\xa5\xe3\x4a\x90\xa7\x94\x37\x1a\x57\x27\x29\x68\x25\xaf\x24\xbc\xb4\xc5\xe5\xf4\x44\xf8\xc8\x59\xd2\xa4\xd9\x2d\x0f\x6e\xd4\xa4\xa2\x1c\x7e\xb8\x14\x02\x41\x0e\x74\x30\x71\x0c\xc2\xbc\xd1\x68\x36\xa3\xd3\x71\xb1\xfa\x95\xf1\x68\x30\xa1\x11\xf1\x69\xd8\x83\xd9\x3e\xa7\xfe\x09\x0d\xfa\x0b\xd7\x3f\xa5\x01\xcc\xb6\xdf\x0a\x30\xee\xf9\x62\xb6\x2f\xe8\xa4\x75\x0e\xfb\xcd\x39\x31\x63\xf0\xc6\x39\x6f\x5e\xfc\x70\x46\x3a\x18\x63\x32\xa1\x37\xce\x85\x58\xac\x56\xf6\x44\x66\x05\xf4\xa5\x13\x91\x25\x49\x28\x8d\x31\x0c\x72\xb3\x99\xac\x9b\xcd\x88\x34\x9b\x26\x52\xcf\x65\xc6\x6f\x52\x7a\xa7\x02\x9a\xbb\xa8\xdb\x7e\xdc\xee\x22\xb2\x18\xa7\xc7\xee\x9d\xbc\x12\x76\x6f\x89\x54\xc7\xba\x6f\xd7\x44\x25\x7d\xd0\x49\xff\x21\xea\x9a\xad\xca\x6c\xec\xb2\xc8\x38\x55\xfa\x95\x79\x97\x80\x84\x8c\x80\x9a\x82\x9c\x5c\xe5\xae\x3e\xfe\x18\x05\x00\xfa\x00\x80\xe7\x06\xe0\x07\x47\xbb\x37\x7c\x5c\x30\x23\x50\x0d\xac\x89\x79\x32\xe3\xc4\x15\xc6\xed\xe9\x5a\x59\xea\x91\x88\x70\xc2\x30\x06\x9d\x98\xb6\x6c\x8b\xf1\xda\xc1\x05\x63\xbe\x47\x3f\x61\x87\x61\x12\x39\xdd\x27\xa2\x03\x5b\x2d\xde\x32\x48\x77\x5a\x63\x5c\xd1\xcf\x0a\x8b\xc3\x35\xd1\x97\x0e\x55\xe5\xab\xac\x1a\x55\xb0\x18\xa8\x29\xa4\xf1\xaa\xf1\xd4\xaf\xd1\x74\x19\xeb\xcc\xbf\xb9\x38\x5b\x57\x48\xaa\x05\x9b\x45\x49\x26\x54\xdb\xbd\x45\x4e\xf7\xc7\x67\x18\x9c\x9b\xa9\x74\x73\x0f\x02\x79\x3f\xee\x1a\x37\xc3\x78\x92\xdc\x96\xa8\x14\xb6\xb9\x08\xe3\x17\x37\x91\x7e\xb4\xa7\x0c\xd2\x08\xc7\xeb\x6c\xe0\x0b\x2f\xa9\x84\x0c\x4d\xf9\x6a\x85\x1a\x88\x44\xe0\xa4\x99\x22\x25\x39\xdf\xad\x7b\x96\x0d\xb6\x15\xdf\x6c\xb5\xea\x58\xce\x64\x8d\xbd\xb4\xba\xc5\x39\xfa\xd4\x3c\xba\xea\x31\x23\x82\x29\x33\xf3\x31\xed\xb2\x47\xbd\xa0\xd1\x28\xc7\xc3\x0d\xda\x33\xef\xf6\x1f\x6c\x29\x38\xd3\x98\x9a\x2f\x1d\xd7\xd3\x08\x4f\xe3\xd3\x4e\xa3\x11\x0a\x0e\xe3\x84\x74\x9c\x79\x89\x5c\xd0\x4e\x6f\x71\x12\xf6\x9a\xcd\x85\xf2\xe0\x09\x9c\x78\x4a\x46\xa0\x78\x37\xa2\x5c\x4a\xd0\x0f\xc7\x1d\x84\xc9\x8c\x8e\xcc\xf9\x33\xc2\xbd\xd9\x29\xed\xf4\x9d\x39\x1d\x65\x87\x96\x99\xe0\x30\xe6\x7b\x26\xd8\xa2\x2b\x4a\x90\x09\xa8\x85\xfd\x2a\x73\x91\x39\x26\x95\x66\x24\x13\x4c\x12\xc7\x23\x3e\xee\xc7\x8e\x37\xf0\x87\xb8\x2f\xfe\x95\x6c\x6b\x8a\x5d\xf1\x41\x07\xe2\x5f\x32\x1d\xca\xaf\xa9\xe6\x52\xde\x5a\x99\xe8\xe7\xc2\xd6\xad\x56\x15\x6b\x60\x20\x17\x41\x0d\x4a\x80\x69\x47\x89\x3a\xb4\xad\xb0\x31\x54\xdc\xcb\x3e\xd5\x6e\x4b\x79\x23\x31\x56\x63\xca\x5d\xbd\xa4\x10\xd7\x98\xba\x41\xea\x28\x8e\x43\xe6\x45\x59\x72\x1f\xf1\x64\xc1\x90\x8b\x26\x5e\x98\x32\x24\x4b\x29\x62\xd0\x85\x82\xf4\xe7\x20\x0a\x38\x93\x8f\xb6\x10\x32\x8f\xec\x55\x2f\xd1\xda\x0e\x6e\x53\xa0\xe5\x34\xbb\xe2\x2a\x92\xb4\x79\x78\x2a\x4d\x3c\x81\x05\x62\x52\xc1\x38\xfa\x81\xe3\x09\x76\x96\xb1\x59\x4f\xdf\x3b\x55\x5c\xca\x25\x8e\x87\x71\xe6\x5b\x2c\x76\x60\x2b\xec\x07\xf0\xb7\x92\x55\xa7\xcd\x4a\x30\x0c\x67\x32\x30\xc7\xee\xa6\x52\x02\x7a\xbe\x60\xbf\xb2\x60\x2a\xb0\xda\xd8\x92\x8b\xd0\x6f\x4b\x57\xa5\xe8\x3f\x70\x3d\x95\xbd\x4d\x94\xf6\xe5\x82\x33\x64\x07\xbe\xc1\x50\xc9\xbd\x79\x1f\x64\xea\x8c\xe2\xb0\x41\x32\x24\x89\xa5\xf6\x54\xb1\x7b\xac\x3b\xab\x3c\xfa\xf2\x90\x62\x47\x8a\xaf\x05\x51\x8d\xe1\x3d\x79\x66\x84\x1b\x0d\xae\x63\xd4\x64\xfe\xd4\xf6\xb5\xe8\x7e\xaa\x0c\xba\x9f\x41\x2c\x2e\xe7\xf8\x31\x26\x1e\x8d\xda\x91\x13\x60\x92\x8a\x84\xa7\x98\x8c\x21\x21\xc5\x96\x46\xc3\x3a\xc1\x22\xdf\xe3\x8c\x07\x33\x36\x0f\xc6\x5f\x58\x82\xe0\x14\xab\x55\xda\x91\x00\x8f\xda\xe6\x3b\x11\xcd\xdc\xbd\x38\xbb\x3c\xfb\x7c\x79\xf1\xf7\xbf\xbf\x79\xe9\x3e\x18\xf8\x1e\xf7\x5a\x3c\xbe\xba\x0a\x19\x45\x0f\x4c\x49\xf2\x00\x0d\x1f\xe0\x35\xf1\xe8\xdd\xeb\xb7\xef\x3e\x5e\xba\x16\x54\x82\xb4\xec\xbf\x26\x29\xbd\x7b\xfe\xea\xec\xed\xdf\x5f\xba\x68\x3c\x15\xe7\x76\x53\x2c\xc6\xe4\x6f\x6f\x3e\xbe\x77\xd1\x28\x5c\x24\x76\xea\x3f\x5e\xfe\xf2\xf1\x9d\x8b\xbe\xb0\xe5\x62\x5e\x48\x7f\x71\xf1\xaf\xb7\x90\xe3\xc7\x37\x91\x9d\xf7\xf3\xc5\xf3\x8f\x1f\x5c\x34\x89\xc7\x8b\xd4\x4e\x7f\xfe\xe6\xf5\xf3\x7f\x7c\x86\x1e\x9d\xbd\x7b\xed\xa2\x71\x18\x8c\xbf\x58\x05\xf4\x2f\xd4\x86\x7e\x7a\xf3\x00\x61\xf2\xf1\xdd\x8b\xb3\xcb\x97\x2e\x5a\xcc\xc5\xe0\xd9\xe0\x5e\xbe\x7f\x7f\xf1\xde\x45\xf0\x98\xd8\x4e\x7f\xf5\xfa\xc5\x4b\x17\x4d\x03\x3f\x57\xfa\xc3\xab\x8b\x7f\xb9\x28\x9d\xc6\x37\x56\xea\x9a\x8c\xe9\xe0\xee\xf9\x9b\xb3\x0f\x1f\x3e\xbf\x3d\x3b\x7f\xe9\x22\xdf\x5b\xa6\x88\xbc\x3d\xfb\xe7\xe7\x9f\x3f\xbe\x7d\x7e\xf9\xfa\xe2\xad\x8b\xce\x65\xc2\x87\xcb\x97\xef\xdc\xee\x9a\xe4\xca\xcf\xe2\x88\x4f\x4b\x35\x96\x5b\x6a\x2c\x99\x97\x6c\xaf\xd0\x29\xd4\xf0\xd9\xd8\xf3\xd9\x8e\x3a\x9d\xf5\x90\x84\xf4\x6e\x31\x77\x1f\xfd\x48\x1e\xfd\x28\x06\x0c\x11\x31\x33\xee\xe3\x0e\x79\xdc\x71\x11\xcc\x12\x09\xd9\x84\xbb\x8f\x9e\x91\x47\xcf\x5c\x24\x7e\x23\x02\x41\x2a\xdc\x47\x3f\x91\x47\x3f\xb9\x08\x3e\x10\xe1\xde\xc8\xfd\x89\xfc\xe4\x22\xee\x8d\x10\x91\x16\x54\xee\xf1\x33\x72\xfc\xcc\x45\xf2\x0b\x11\x16\x71\x96\xb8\xdd\x47\xa4\xfb\xc8\x45\xf0\x81\xc8\xdc\xbb\x62\x1f\xe7\xee\xa3\x47\xe4\xd1\x23\x17\xc9\x2f\x99\xfa\x42\x60\xf2\xe8\x31\x79\xf4\x58\xa6\xbf\x00\x6c\x40\x69\xeb\x76\x9f\x92\xee\x53\x31\x37\x81\xc0\x67\x1c\x47\x3c\x89\x43\xb7\xfb\x8c\x74\x9f\xc9\xe8\x4e\x49\x1c\x22\x02\x0e\xa6\xdc\x47\xc7\xe4\xd1\xb1\xab\xbd\x4d\x71\xf7\xc7\xc7\xe4\xc7\xc7\x2e\xe2\x88\xf8\x2c\x64\x9c\xb9\x8f\x9f\x92\xc7\x4f\xc5\x98\x89\x2f\xb4\x06\xbb\x78\xb1\xe4\x52\x44\xd4\xe4\x9a\x39\xd3\x53\x61\x06\x78\x48\xe6\xf4\x6e\x4d\x26\xe2\x1f\x9f\xde\x89\x6a\xff\x4f\x1c\x41\xb8\x44\xf5\x70\xa9\xde\x25\xbe\xb7\xfc\x67\xc0\x6e\x5e\x31\xcf\x67\xc9\xcf\x32\x19\x9d\x9f\x9f\x9f\xd7\x7e\xf9\xe5\x97\x5f\x10\x61\xb7\x3c\xf1\x64\x7a\x2a\xca\xa7\x9c\xc1\xbb\x1a\xb7\x4b\x66\x41\xf4\xc2\xe3\x4c\xa4\xce\xbc\x5b\xfd\x73\x91\xb2\xe7\xd2\xef\x9e\x5b\xef\x90\x71\x1c\x86\xde\x3c\x05\x03\xf7\x30\x1e\x7b\x21\x44\xcd\x83\x1f\x0e\x26\x6a\xeb\xd4\x55\xfd\x20\xf5\x46\x21\xf3\xc5\x37\x34\xc6\xa2\xfc\x77\x30\x8e\xa3\xd4\x85\x9e\x88\x3d\xba\x36\xf1\x5a\xe3\x30\x1e\x7f\x69\xc5\x88\x88\xf5\x64\x12\xbd\x90\x45\xbe\x97\x20\xb2\x98\xeb\x34\x2f\x49\xe2\x9b\x96\x21\xa3\x5c\xaa\x24\x26\xfd\xc2\xcb\x40\x99\xb2\xeb\x24\x8e\x5a\x92\xb0\x22\x76\xcb\x8b\x39\x9a\xbe\x62\xdf\x5b\x16\xdb\x6e\x81\x87\x3d\x81\xd9\x38\x64\x5e\xa2\xb3\xd5\x4c\x12\x70\x9e\xa6\x13\xe5\x8c\x8a\xa3\x55\x1c\xf2\x60\x2e\xba\x28\x41\xfe\x3d\xae\x71\xf1\x9f\xef\x2d\x0d\x9c\xe7\xe2\x4f\x4d\x06\x88\x08\xe2\xc8\x80\x02\xbf\x8a\x35\x3e\x65\x35\xcd\x8f\x65\x99\x73\x41\x1f\x2e\xfa\x00\x1f\x35\xf8\x92\x7d\x55\x19\xef\xf4\xc3\x36\x95\x25\x3a\xaa\xb2\xde\xb2\x5b\x53\x43\x02\xfb\x05\x50\x50\xb0\xc4\x87\x04\x25\x93\x0d\x24\x99\x21\x00\xc9\x0c\x80\x23\x13\x25\x98\x17\x40\xa2\x06\x90\xfc\x94\xa0\x74\x96\x01\xa6\x33\x05\x38\x9d\x09\x00\xed\x5a\xcf\x59\xc4\x17\xc9\xd2\xaa\xa6\x52\x64\x3d\x93\x0d\x15\x4d\x96\x18\xa8\x57\xf1\x42\xa0\x1e\x8c\xbf\xd4\xc4\x4f\x44\x82\x68\x9c\xb0\x19\x8b\xb8\xcc\x79\xad\x3f\x55\xb6\xcf\x72\xd9\x2f\x58\x3e\x5b\x80\x3c\x0f\xa2\x85\x20\x46\x00\x2a\x3f\x2c\xb0\x3a\x37\x03\xac\x8b\x18\xd0\xba\x48\x06\x5c\x17\x11\xe0\x3f\xb0\x71\x1c\xf9\x0a\xbc\xfc\xb0\xc0\xeb\xdc\x0c\xbc\x2e\x62\xc0\xeb\x22\x19\x78\x5d\x44\x6e\xc6\xef\x58\x12\xc4\xbe\x8b\x2e\xe1\xab\x26\x3f\xf5\xd4\x5d\xc2\xe2\x53\x13\x27\x3e\xcc\x9c\xc2\x02\xd4\x33\xea\x49\x76\x95\xb2\x0f\x20\x78\x00\xeb\x08\x7c\xf6\xb7\xe5\x87\xc0\x67\x8a\xf1\xa4\x17\x93\x7f\x31\xf6\xe5\x85\x5a\xf6\x22\x55\xaf\x1e\x91\x0e\x4b\xfe\x3a\x60\x37\xe7\x10\xe4\x55\xb2\x3b\xb1\x44\x46\x5e\xf2\x4e\x1c\x97\x04\xea\x82\x37\x02\x13\x41\x64\xb4\xe0\x1c\xf8\x83\xd8\x16\x2f\x61\x01\x89\x56\xa7\xf1\x0d\x2c\x99\xec\x43\x2c\x97\x7a\x77\x4d\x6e\x02\xff\x8a\x71\xed\x5d\x42\x30\xb5\xbb\x69\x9c\x04\x5f\xe3\x88\x7b\xa1\x8b\xbc\x05\x8f\x11\xb9\x66\x09\x0f\xc6\xe6\xdb\xd4\x02\x27\xdf\xae\x0c\x32\x04\x0e\x11\xdf\x33\xcf\x8f\xa3\x10\x1a\xfd\xc2\xd8\xfc\x62\xce\x22\xf1\x1b\x04\x87\x8b\xe8\xc3\x34\xbe\x11\x5c\x50\xbe\x09\xd5\x85\xd4\x05\x86\xfc\x5c\xfe\x2d\x88\xfc\xd4\x15\xbb\x9e\xa5\xf6\x30\x9e\x33\x64\xc3\x79\x0f\x17\xea\x2e\xec\xb3\xe0\x7e\xd2\x4d\x0c\x7c\x5f\x31\x7e\x1e\x43\xc0\xac\x7c\x68\x43\x09\xa2\x3d\x09\x22\x5f\xca\x25\x5a\x76\xc3\xed\x20\x75\x90\x7b\x1d\xa4\xc1\x28\x64\xda\x26\x53\x14\x70\x58\x7b\x1c\xc6\x11\x73\xe0\x6e\x96\x27\xde\x98\x3b\xcf\x08\xf2\x91\x7e\x68\x52\x28\x04\x61\xe5\xe5\xbb\x75\xb9\x53\x38\x98\xa0\x19\xc2\x98\xd4\x3b\x6b\xc9\x7b\x77\x76\x4e\x22\x2b\x26\xcb\xc1\xe4\xbf\xd1\x53\xd1\x89\x6d\x9d\x34\x23\xb1\xb9\xa7\x7a\xab\xaf\x2d\xe6\xe8\x0f\x3e\x9d\x5d\x82\x96\xdb\xa6\xb3\x4b\xd0\xb4\xd4\x2d\xd8\x33\xff\x98\x1d\x53\x38\x6f\xec\x93\xdd\x71\xd3\x31\x10\x25\xff\xdb\xdd\x51\x86\xeb\x5b\xf0\xf5\x35\xbe\x52\xd0\xfd\x63\x22\xac\x26\xc0\xe0\xaa\x04\xe9\x3f\x26\xb2\xf6\xe8\x9e\xdb\x18\xbf\xd8\x8b\x57\xfd\x37\x07\xd8\xa0\x2b\x4f\x2f\x15\x0e\x58\xac\xc6\x8c\x41\x43\xe0\x0b\xd9\xbb\xde\xc1\x6b\x7d\x16\x3a\xbc\xa2\x61\x03\x2a\x10\xe4\x7e\x10\xf2\xbd\xb6\x54\x07\x1b\x7a\x6d\x97\x7f\xd0\x1e\xf1\x48\xaa\x0c\x3c\x68\x8a\x22\x5b\x5a\x41\xc3\x07\xb8\x0d\x47\x70\x8d\x62\x85\xff\xa3\x4a\xa4\x60\x68\x8b\x93\xa5\x60\xa8\x53\xd8\x7e\x80\x40\x3e\x57\xad\x8b\xaa\xa3\xc5\x95\xd8\xd7\xbd\x30\x8c\x6f\x5e\x47\xf3\x05\x97\xf2\x94\x7d\xd2\x11\xf2\xd3\x6b\x31\x77\xd7\x5e\x98\xda\x19\x42\x98\xb4\x8f\x40\xe6\x5b\xc8\x43\xfa\xbc\x04\x90\xcf\x17\x21\x0f\x7c\x7d\x0e\xd3\x1f\x1f\xd8\xdc\x03\x97\x18\x2e\x22\x68\xbd\x76\xbc\xb6\x47\xc6\x6d\xaf\xa0\xc5\x97\x2e\x4c\xb2\x78\xde\x99\x96\xf1\xd7\xff\x3f\xbc\x7b\x28\x79\xc4\xb8\x64\xb3\xb9\x90\xc9\xe3\x59\x10\x2d\xd2\xda\xdf\xe2\x98\xa7\x3c\xf1\xe6\x8f\x1f\xa4\xb5\x84\xfd\x67\x11\x24\x2c\x55\x95\xdb\xea\xaf\x79\xd9\x1b\x44\xe3\x70\xe1\x33\xbf\x26\xa3\x64\xd4\xb6\xc1\xfa\xff\x79\xd7\xde\x07\x78\x4a\xdd\x96\x4f\x8f\xca\x8a\x33\xd5\xca\x24\x6a\xff\x0a\x56\x84\xda\xfe\xa1\x86\xf0\xa0\x33\xb4\xac\x21\xc0\xab\xc6\xa0\x33\x3c\x39\x6e\x34\xf8\xa0\x3b\x3c\xf9\x69\xb5\xea\xaa\x48\x46\x8d\xc6\x4f\xf0\xab\x3b\x14\x79\xc7\xc3\x93\xee\x6a\x25\xd2\x4f\xe9\xe3\x7b\x76\xde\xe3\xb5\x90\x79\x29\xd7\xbd\xbf\x7e\xd4\xee\xb4\x3b\xb5\xd1\x42\xa4\xa7\x69\x8d\x4f\xbd\xa8\x76\xfd\x58\x24\x22\xbc\x16\x22\x43\xd5\xf8\xcf\x80\x0e\xef\x89\x82\xac\xdc\xfe\x35\x6d\xd7\xce\xf5\xcf\xef\x30\x0b\x52\xeb\xa7\x80\xab\xfb\xc8\xc2\x30\x47\x62\x98\xe9\x71\xa3\x11\x89\x71\xee\x3e\x5b\xad\x22\x18\xcc\x47\xdf\x3a\x98\xa6\x4b\xb5\xeb\xe3\x76\xf7\x59\x79\x40\x1f\xc9\x01\xb5\x34\x95\xda\x58\xac\xca\x05\xcf\x87\xe5\x6c\x14\x87\x8d\x06\x4a\xe1\x47\x29\xa7\x1d\x70\xe9\x51\xa6\x5f\xf5\x3a\x45\xdf\xf8\x55\x3a\xe2\x68\x34\xb6\x35\xc8\xc0\xd9\x15\x4f\x16\x10\xf6\x94\x52\x93\x5e\xd7\xbf\x33\xbd\x6f\x5f\x63\xe7\x66\x77\x8c\x7c\x9b\xff\xb2\x3f\xa6\x2f\x4e\x35\x30\x06\x6f\xe5\x1d\x51\x6b\xc9\x1b\x0d\x56\x11\xc4\x9c\xc9\x20\xe6\x7c\xbd\x76\x2c\xb7\x06\x96\x43\x26\x27\xe7\xc4\x80\x6f\x70\x32\xf0\x1c\x3c\xe6\xd4\xc6\x5e\x18\xd6\xbc\xda\x38\xf4\xd2\xb4\xe6\xa5\x35\xcf\x60\x83\xa4\x8b\xb5\x9c\xfb\x46\x6d\xc7\x57\x56\x70\x07\x54\xee\xd5\x76\x9a\xb7\x55\xab\x5d\x28\x3d\x7c\x00\x6a\x6b\xa9\xd6\x8e\x9b\x5a\x99\xbd\x26\xe3\x92\x2e\xbb\x19\xd8\x3a\xec\x66\x90\xd7\x5d\xcb\xef\xbc\xce\xba\x19\xe4\x75\xd5\xcd\x60\x83\x8e\xba\x19\x34\x2d\xa5\x74\x51\x27\xdd\x0c\xf2\xba\xe8\x66\x60\xeb\xa0\x9b\x81\xad\x7b\x6e\x06\x6b\x12\xfe\x9f\xa4\x73\x5e\xfc\xa9\x73\x2e\xe9\x9c\xe7\x07\xe9\x9c\xb5\xba\x79\x4d\xa6\x7f\x1c\x9d\x73\xf2\xa7\xce\xf9\x4f\x9d\xf3\x9f\x3a\xe7\x3f\x75\xce\x7f\xea\x9c\xff\xd4\x39\xff\xa9\x73\xfe\x03\x4c\xe7\x9f\x3a\xe7\x3f\x75\xce\x7f\xea\x9c\xff\xd4\x39\xff\xa9\x73\xfe\x3f\x54\xe7\xdc\x2b\xea\x7d\x2c\x7d\xd5\x48\xea\x71\x22\x69\xa0\x3f\x52\x6e\x71\x3e\xc7\x73\x91\xab\xbc\xec\x7c\xbe\x62\xfc\x42\x26\x38\x5c\x97\x60\x21\x08\x60\x94\x11\x8b\xf2\x4d\xdc\x73\xf9\x29\x0f\x8e\x9c\xf9\x59\xba\xee\x80\xe5\xfa\x75\x11\xa5\x8c\x67\xf1\x52\xb4\xf9\xa9\x09\x59\x2e\x87\xd9\x7c\x2e\x52\x76\xfc\x18\x06\xc4\x76\x68\x3b\xe6\x0b\x2f\x94\xed\xe5\x9c\xcc\x26\x29\x53\xc7\x57\x2b\x59\x45\x23\xfd\xa7\x12\x2e\xad\x9c\xf3\x20\xd2\xa9\x6f\xc1\xd8\x98\x2a\xb4\x3e\x07\x82\x2e\xb4\x06\x6d\x64\x99\x84\x8a\x9c\xe2\xbb\x58\xe5\xd5\x49\x0f\x12\x68\x78\x1c\xc4\xbd\xe4\x8a\x71\x6d\x35\xd9\xcb\x17\x11\x2b\x40\xe5\xc8\x5d\x4d\x06\x03\xc9\x15\x52\x41\x0b\xea\x2a\x48\x4e\x56\x0a\x45\xcc\x4b\x58\x2a\x8d\x93\xfb\x79\xc0\x72\xb9\x29\xd0\x2e\x73\x8c\x8b\xa6\xca\x29\x1b\x74\xa4\xa7\x1c\x7b\x35\x14\xa7\xae\x98\xaf\xf9\x12\x78\x35\xe6\x2c\xf2\x1d\x3d\x99\x9a\x8e\xb2\x16\xbc\xcb\x58\x93\x92\xc6\x23\xd6\xa4\x65\xd7\xc0\x66\xd8\x03\xae\xc8\x48\x8a\x58\xd9\x10\x98\xee\x2b\x76\x21\xe3\xa0\x58\xe3\xd8\x68\xe4\xcb\xb5\xaf\xbd\xd0\xb8\xbe\xd6\x6f\xb9\x65\x33\x29\xe3\xff\xf4\xc2\x85\xe2\x04\x9f\x81\x6e\x60\xd1\xbe\x30\xec\xa1\x0c\x02\x93\x8e\x92\x30\x34\xd6\x6d\x4b\xa5\xd1\x68\x54\xa2\x9a\xc5\x39\xca\x80\x7a\x9c\x27\x0e\x82\x77\x07\xd3\x38\xf4\x05\x47\x54\x7d\x2a\x22\x56\xd1\x0e\xe9\x14\x16\xad\xf2\x75\xae\x20\x48\x31\x7a\x4d\x72\x24\x2b\xf5\x8b\xa5\xb0\xf9\x79\x86\xf6\x79\x12\x84\x21\xf4\x5f\x37\x20\x12\x04\xcf\x82\x80\x0a\x39\x80\x1a\xcd\x62\xd4\xd6\x2c\xa8\x0c\xac\xf2\xbe\x58\x69\xae\x4d\x6e\x7c\x28\x5f\xdc\x8a\xdd\x35\xef\x9e\xdd\x74\x27\xcf\xe7\x1a\x8d\xae\x1e\x51\x09\x42\x4f\xa4\x93\x50\x27\xa9\x5c\x77\xa0\x4b\xc5\x4d\x44\x50\xe6\x8f\xcd\x3c\x76\x2f\xb1\x0f\x28\x48\x90\x55\x16\x91\x42\xc2\x11\xf9\x94\x3e\xfc\x2b\xf8\xf5\xb6\xd7\x4e\x16\xf0\xba\x8b\x2b\xd9\xa0\x5d\x00\xbb\x4e\x05\xf7\xdb\xc9\x46\x37\x2c\x80\x22\x89\x26\x26\x56\x8a\x48\xe1\x49\x70\x75\xc5\x12\xb3\x30\x0a\x3c\xdc\x1e\x26\xa2\x6b\x7e\x8e\x62\x1e\x4c\x96\x2f\xaf\xc5\x12\xbf\x13\xb3\xec\x8e\xda\xf0\xd5\x96\xea\x71\xa2\x77\x9d\x38\x04\x15\x9d\x1b\xad\x15\x72\xb2\xbe\xa4\x31\xe9\xf5\x9f\xd1\x4c\x78\x51\xea\xbf\xfc\x1c\xcb\x44\xdd\xf4\xd4\x4b\x2f\x95\xba\xd2\xc1\x8d\x06\x6b\xf3\xaf\x85\xf2\x5a\x9b\x89\x49\x46\x0d\x3a\x4f\x9f\xc7\x44\xc5\x19\x28\x4e\x52\x07\x5e\xa1\x27\xf1\x22\xf2\x9d\x2c\x11\x1f\x55\x57\xc4\x0f\x37\xa4\xb7\x53\x50\x94\xa4\x8e\x59\x72\x41\xfa\x4f\x71\x80\x07\x4f\x66\x3a\x62\x80\xa1\xec\xfc\xde\x68\x66\x11\x72\x34\xf9\xa1\x5f\x7e\xf9\xe5\x97\xd6\xf9\x79\xeb\xc5\x0b\x54\x62\xb4\x66\xd0\xc8\xf6\x15\x51\x5e\x0d\xa7\xdd\xec\x0e\x2a\xa6\x9d\x5e\x7c\x52\x2e\xd3\x8b\x9b\x4d\x9c\x34\x29\x52\xee\xfb\x14\xde\xf1\x70\xcb\xd2\xc8\xe3\x51\x96\x37\x7a\x09\x4d\xaa\x96\x89\x8c\x11\x9b\xd0\xfc\x00\x6d\x6e\xa8\xf7\x3b\x51\xb9\x5a\x7d\x4a\xb4\x30\x34\x7b\xd0\x12\x28\xf4\x49\x4f\x99\xb5\x2c\x64\xef\xf3\x63\x67\xa9\x7f\xfa\x87\xb4\xc6\x6c\xc0\xee\x5e\xc3\x84\x50\xd3\xe2\x35\x7d\xed\x2c\x76\x8f\x69\xc0\x7b\x0d\xf0\x66\xc4\xe1\xf6\xaa\x02\xef\xc2\xee\x21\xef\xd9\xb2\xbd\x23\xf3\xcc\xe0\xf0\xb6\x94\x9a\x70\x6e\xe7\x25\x09\x8d\xfa\x95\x5b\x75\x84\x41\x29\x97\x3b\x6d\x65\x9b\xa8\x98\xf6\x76\xca\xe3\xf9\xeb\xd9\x8c\xf9\x81\xc7\xe1\x9e\xd4\xbb\x92\x01\xa6\x30\xa9\x77\x0b\x98\x65\x92\x6f\x0e\x3b\x2b\xc8\x4e\x26\xf1\xdc\xad\xc9\x94\xf0\x62\xdf\x2c\x5e\x56\xf1\x82\xd6\xcc\x5f\xd2\xe6\x5f\x8b\x12\x43\x89\xdb\x99\x87\xaa\x9b\xb2\xc1\x03\x5d\x75\x66\x01\xad\x20\x7d\x29\x8f\x16\x45\xf7\x8c\x95\x4f\x38\x59\xc6\x56\x2a\x2f\x77\x0d\xb4\x1a\xbb\x9d\xb3\x31\x4f\x6b\x5e\x2d\x0d\xa2\xab\x90\xd5\xc6\x53\x4f\x1c\xaf\x59\xa2\x9c\xc9\xd7\xe6\xda\xdb\x3c\xc2\x3a\x60\xb9\x7e\x1b\xb8\xd4\x4f\xfb\x5a\x86\xab\xdb\xe4\x98\xb9\x01\xfa\x05\x61\xf9\x22\xf0\x7c\xdf\x1a\xe7\xba\x86\xbf\xa3\x46\xee\x1d\x74\x56\xdf\xd7\xf5\xa7\x08\x02\x4e\xa3\x57\xf7\x83\x33\xd5\x70\x66\xfb\x62\x3e\xd3\x35\xd2\x7d\x6b\xa4\xba\x86\xa7\x70\x3d\xbb\x1f\xae\x1e\xc2\x85\x27\x95\xf5\xee\xba\x9a\xbc\x37\x45\x3e\xcb\xe8\x0c\xba\xae\xd4\x22\x76\xea\xac\x32\x35\x45\x15\xeb\xe8\x45\x41\x66\xdd\xd4\xd0\xb2\x12\xe4\x79\x65\xaa\x5f\x6a\x28\x77\x48\xd9\xeb\x60\x87\x49\x44\xef\xd6\x59\x38\x38\xc1\xef\x54\xfd\x46\x23\xf7\x69\x1b\x4a\x48\x73\x8d\x86\x74\xd3\x92\x71\x91\x88\xe4\x6a\x80\xe3\x3d\xe6\x8d\xa7\x79\x01\xa8\xec\x63\x25\x91\x16\x0e\xa8\x69\x79\x3e\x6c\xf3\xf8\xe3\x7c\xae\x27\xb6\xc9\x4c\xfc\x51\x6b\x7b\x1d\x24\xc3\x7e\x34\x60\x43\xf8\xe5\x4a\x8d\x47\x4d\x24\xac\x31\xf8\x81\xca\x8d\x8d\xc5\xe9\x73\x7c\x83\xb5\x45\x3e\xa5\x34\xbf\x63\x09\x09\x4c\x4a\x28\xf2\x6f\x3b\x48\x3f\x40\x0c\xa4\xb6\xda\x0b\xf0\x6a\x55\xd7\x45\xea\x26\x55\x4f\x93\x1e\x64\xbd\xef\xb0\xe2\x54\x09\x41\xe9\x63\xe1\x28\xc3\xf0\x1d\x5a\x22\xf3\x7a\x17\xe4\x2b\xb4\x7b\xa7\x92\x96\x17\x44\xee\x44\x2e\xcb\x14\x2d\x79\x91\x4c\xef\xee\xa5\x2d\x4c\x1c\xb3\x40\x97\x60\x23\x92\x3f\x54\x19\x3f\x56\x45\xf5\x03\x08\xa7\x33\xef\xd6\xa9\x56\x41\x10\x99\x1f\x44\xce\xa3\x4a\xf5\x45\x93\x99\x7d\x7a\x93\x5e\xb1\x76\x5a\xf3\x83\x6b\x84\x95\x12\xaf\x3d\x09\x42\x2e\x36\x72\xab\x48\x0b\x35\xc3\x41\x15\xf8\x61\x3b\x33\xdf\xc0\xea\x38\x59\xec\x7d\x90\xbe\x8e\x5e\xd8\xd7\xf7\x15\xae\x84\xeb\xe6\xd0\x9b\x9d\x62\xed\x2a\x83\x6a\x99\x78\x58\xd1\xd4\xcb\xe8\xd0\x96\x6c\x53\x82\x03\x1a\x7a\x61\xeb\xe3\x0e\xeb\x13\x54\xb1\x9a\x7a\xb5\xb5\x2b\x07\x34\x60\xab\x04\x77\xc1\x87\xc3\x09\xb5\xed\xbd\x94\x1e\xbb\xad\x0f\x2e\x38\x1f\x49\x6f\xf3\xf4\x34\x1a\x08\xac\x22\x23\x7d\xdc\x28\xcd\x79\x16\xd0\xad\x0a\x98\x3d\x03\x16\xac\x7a\x06\xcc\x9e\xd5\xed\xb0\x94\xe9\x89\x60\xae\x41\xfa\x37\x30\x9e\xac\x2e\x91\x45\x69\xac\x04\x23\xcd\x56\x24\x98\xb3\x09\xd7\x61\x36\x8b\x05\xb6\x43\x29\xdf\x64\x5b\xdd\x6b\x95\x8f\xa7\xe5\xf2\x66\xc7\x15\x9c\x7f\xe9\xe0\x7d\xe6\x04\xa6\xbf\xd1\x10\xbb\xaa\x68\x69\xb5\x42\x33\xfd\x23\x85\x1f\xb8\x6a\x9e\xa0\xd6\x5e\xf3\xb4\x0f\xfc\xf2\xdc\xed\x01\xbf\x52\xf7\xbd\xb5\x21\xbd\xbf\x49\x68\x55\xbb\x61\x35\x50\x6b\x8f\x94\x87\x73\x20\x16\x7e\xc3\x98\xd4\x76\x0f\x3a\x52\xcb\x32\xe8\x0e\x4d\x24\xc2\x84\xd6\x3b\xe2\x14\x80\x31\x49\x4c\x27\xd6\x7a\x2d\x16\xd6\x57\xfe\xe8\x51\xe5\x3d\x3d\xaf\xec\x33\xe8\xe6\x2b\xf6\x93\x76\x90\x2a\x5d\x2a\x03\x17\x3a\x45\x0d\x2b\xc3\xd8\x65\x5b\x61\x38\x0c\x93\xa2\x88\xaf\x8c\x11\x2b\xc2\xab\x4a\xe7\x94\xd4\x84\xc0\x55\x3f\x62\xfd\x23\xd0\x3f\x3c\x3a\x18\x92\x94\xde\xad\xc9\x98\xb2\xf6\xcd\x34\x18\x4b\x97\x64\xe0\x1e\x61\x32\x18\x0f\x29\x9a\x23\x32\xc1\x93\x82\x63\x04\x47\x90\x07\x9a\x8b\xf9\x9b\x0c\xa2\x61\xa3\xe1\x78\xda\x3d\x02\x51\x88\x73\x27\x22\xdd\x0e\xae\x53\x3a\x6e\x34\x9c\x74\x10\x0d\x69\xbd\xa3\x1c\x57\x01\xf8\xe2\x71\x59\x9a\x47\xe0\x12\x41\xe9\x9c\x4a\x14\xaa\x62\x7e\x56\xd6\x96\x58\xc6\x34\xb2\x6c\xd7\xb5\x8e\x98\x52\xea\x19\x57\xe1\x0b\xd1\x6b\x4a\xe3\x41\x9c\x85\xbc\xd1\x6e\xd2\xea\x62\x30\x4d\xfa\x71\x2f\x39\xa5\x9d\x5e\xd2\x6a\x61\x30\x93\x5d\x0c\xe2\x41\x32\x1c\x06\x51\x2d\xc5\xf8\x2e\x10\xf4\x2c\xc3\xbc\x04\x13\x47\x7a\xd6\xd9\x84\x99\x0e\x07\x03\x0e\x2c\x8d\x3b\x25\x88\x40\x07\xa7\xd9\xfc\x21\x96\x41\x80\x63\x16\xf1\x17\x2a\xf4\x78\x69\xbb\x06\xc3\xd5\x1c\x5d\x4c\x06\x6a\x7a\x87\x14\x25\x88\xf8\xe6\xb3\xd1\x70\xb2\x0f\x5a\xef\x92\xfb\xb5\x08\x1c\xee\xef\xc1\x35\x8b\x0a\x9b\xb6\x39\xea\xdf\xad\x55\x8c\x0b\xe3\x28\x50\x2d\xf4\xdc\x32\x96\x77\xad\x49\xa5\x86\x1e\xf7\x58\xb6\xad\x81\x33\xfd\x0d\x1b\x3d\x44\xa4\xc2\x98\xd4\xeb\xb6\x13\xfb\x28\x8b\x3e\x51\x14\x7b\x33\xec\x0b\xfb\xb4\x85\xfd\x56\xb4\x23\x90\xac\x44\xc3\x07\xb6\x6b\x5f\x7e\x6c\x70\xbe\x6a\x08\x46\xf6\x75\xb5\x42\x6f\x6a\x6f\x2e\x11\x91\xf4\xd4\x2b\x9d\xf6\x2c\x77\x95\x47\xce\xa7\xc1\xe0\x7f\x3e\x0d\x86\x0f\x87\x78\xe5\x7c\xfa\x84\xfb\xce\x9b\xcb\x0f\xab\x37\x97\xab\x37\x6f\xfa\xe2\xff\xab\xf0\xae\x4b\x1e\xaf\xf1\x86\xc8\x13\x3c\xbb\x34\x52\x1a\xdc\x17\x70\x1e\x6a\x87\x71\x74\x25\xe6\x45\xb6\x08\x5c\x8d\xad\x31\xae\xb8\x94\x2b\x6c\x3e\x96\xb9\x69\x7f\x73\x96\x3a\xc7\x60\x57\xeb\xc9\x6d\x90\x66\x37\x65\xe0\x25\x71\x73\x7e\x59\xdd\x55\x5d\x5e\x3a\x95\x29\x15\x2e\xdd\x46\x1e\x72\xae\x3e\xe9\xaa\x96\x72\xe5\xb3\x38\x78\x83\xf6\xc3\xfe\xf0\xe8\x0a\x6e\x1d\x6c\xdd\xc1\x49\x97\x54\x1d\x77\xf5\xc9\xa2\x7c\x7d\x79\x8c\xcb\x15\xce\xb7\x55\xe8\x56\x54\xf0\xb7\x55\xd0\xba\xf0\x43\x4f\x35\x55\x95\x6c\xad\xac\x3e\x05\x16\x6e\xc0\x34\xc1\x91\x4e\x91\xc7\x5c\x31\xfe\xc6\x4b\xf9\x3b\x71\x9c\xf1\xb7\xea\x0a\x94\xe2\x73\xaa\xee\xb6\xf3\xb5\xc0\xcb\xa6\x53\x12\xa6\xab\xcb\x6d\x6f\xc2\xec\x10\x79\x58\x66\x63\xaf\xd8\x9a\x55\xa0\x5a\xa3\x60\x34\x12\x04\x5b\xad\xb4\x5b\xaa\x7e\xe2\xe8\x7b\xc7\xdc\x4d\x49\x3f\x69\xf3\xaf\x0e\x2b\x2f\x09\x52\x75\xd9\x52\x48\x34\xb6\x9a\x64\xc3\x4d\x8b\x9b\x7c\x33\xe8\x0d\xf7\x3b\x7c\xdb\xfd\x0e\xcf\x8f\x9d\x7a\xcd\xb1\x61\xd8\xe5\xf9\x57\x45\x31\x82\xa3\xae\x8a\xc0\x58\x71\x09\x9a\x37\xdb\x2c\xaa\x41\xc5\x90\x7b\xc9\xd5\x42\x4c\x53\x5a\x70\x5e\x97\x47\x35\x0f\x07\xbc\xe0\x69\x6f\x66\x96\x0e\x75\x83\xde\x34\x57\xb7\xe6\x60\x4b\x7f\xaa\x80\xe4\xf4\xa5\xdb\x5a\xa6\x05\xf9\x2f\xae\xd0\x5b\xef\xe8\x58\x41\x9b\x9d\x6b\x4d\xba\xa0\xcf\x07\x00\x97\xdb\xd8\x86\x07\x3f\xfa\x5a\x1f\xcb\xf1\x52\x9f\x59\x77\x6a\xe9\x34\x5e\x84\x3e\x04\x1a\x8d\x6a\xca\xb9\x1a\xee\x6d\xb1\x21\xd0\xef\xde\x60\x5f\xdb\xa5\x15\x83\xeb\x67\xad\xe5\x8a\x06\x6c\xd8\x68\x88\x7f\x1d\x8e\xd7\x45\xe9\xa4\xa0\x40\x52\xef\x9a\xc0\x2d\x5c\x87\xec\x24\x84\xd2\xc5\x76\xf5\x2d\x5d\xdf\xe6\x0b\xd2\x23\xdb\x8e\xbb\x34\xbc\xe1\x66\x09\x5e\xf7\x29\x87\x95\x8d\x46\x85\xbe\xbe\xd1\xa8\xe7\x8e\x14\x10\xdf\xc6\x9e\x37\x50\xbd\x55\xcf\x9a\xbc\xff\xb2\x66\x49\x3f\x56\x8c\x23\x56\x8b\x27\xb5\x01\x9c\x1d\x4c\x60\x58\xf9\x18\xb0\x16\x27\x00\x73\x68\x48\xd4\x30\x6d\xc3\xb3\xac\x01\x2a\x1f\x5d\x8a\xb7\x26\x15\xb1\x97\x0f\x5a\x93\xb2\xfe\x06\x8f\x94\xe2\xb0\x59\xb1\x42\x57\x2b\x88\xfb\xb5\x69\x60\xb4\x6f\x7c\xfb\x86\x43\x5e\x68\xc4\x89\x5e\xab\x2e\x38\x2b\xb4\x06\x0f\x35\x59\x71\xd1\xaa\xae\xb1\xb2\xdd\x92\x39\xb0\x17\x4c\x5e\x0a\x0c\xb0\x74\x99\x74\xe8\xe0\x68\x08\x1b\x86\xa7\xba\xfb\x11\xbb\x91\xec\xba\xdc\xff\xcd\x0c\xca\xe0\xca\x8a\x0b\xae\xf4\xea\xe8\xfe\xdd\xa9\x00\x76\x50\xcf\x2a\xea\x1f\xd6\xcb\xaa\xde\x14\x3a\x6c\x0b\xaf\xf7\xef\xa9\x0d\x05\xb8\x71\x57\xb2\x80\xc2\xea\x06\xe7\x8b\x1b\xa8\xd8\x06\x61\xf7\x32\xaa\x79\xa2\x96\xa0\xe5\x02\x0d\x97\xba\x9b\xeb\x4b\x85\x44\xb0\x1f\x19\xfb\xd5\xda\xe2\xdd\x7b\xd4\x16\x15\x65\xdf\xec\x1d\xc5\xcd\x2b\x5f\xae\x64\xb4\x65\x67\xc2\xc0\xf2\x3d\x5a\xab\xb0\x1a\xa8\x77\x2a\x36\xc9\x6d\xd3\x91\x03\x58\x35\x1f\x5b\xa8\x2e\x87\x8b\x1e\xf2\xdc\x29\x3b\x33\xd6\xac\x52\xc2\x96\xf1\x2f\xd0\x6c\xa5\x92\xfd\xd0\x09\xb2\xa1\x6c\x99\x1f\xbb\x58\x71\x7a\xec\xbc\x6d\xb3\xb3\xbd\x73\x87\x4f\x8e\x0d\xef\xb0\xb9\xc9\x61\xb2\xe7\xd4\xec\xa0\xad\x12\x03\x2d\xe8\x90\xbf\x89\x7f\x16\xf5\xd1\xca\x4c\xad\x83\x73\xd2\x6c\xce\x63\xf6\x26\x63\xbd\x0a\xcc\x36\x4f\xc5\xde\x6c\xab\x0c\x75\xd7\x84\xec\xa1\xa6\x07\x45\x88\xbf\x18\x33\xa7\x20\x36\xca\x8e\x39\x9c\x1a\x55\x25\x27\xdd\x0e\xc6\xa7\x4f\x57\x2b\x7e\xd2\x59\xad\x82\xf4\xad\xf7\xd6\xe1\xb8\xcf\x5c\x19\x51\x35\x8b\xa2\xca\xc1\x5e\x4d\x87\xce\x60\x78\x8d\xc9\x60\x88\xdb\x69\x9c\xf0\x92\x19\x57\xf6\x56\xd6\xe8\xd2\x2b\xac\x83\x4c\x24\x6d\x4e\x3b\x3d\x5e\x65\xc7\xc5\x9b\xcd\xbc\xc7\x01\xa3\x98\x97\xca\xb0\xbc\x18\x09\x0f\x33\x7a\x15\xe6\x6a\xd6\xbb\x0d\xf2\xa8\x0b\xaa\x77\x98\x0c\x74\x99\x04\xcc\xaf\x3d\xea\xd6\xe0\xa1\x6a\x8d\xc7\xb5\x49\x10\xf9\x35\xaf\x26\x23\xbe\xc0\xb5\x73\x2f\x6a\x36\xd7\x5b\x0e\xec\x7c\x28\x84\xbc\x6d\x34\xad\x2e\x5b\xee\x4f\xc8\x0a\x40\xbf\x32\x55\x0b\xcf\x6e\x65\xee\x16\x3a\x87\xe9\xdd\xda\x60\x35\x81\x57\xf8\xa5\x17\x82\x67\x14\xdf\x20\x25\xb8\x4b\xd9\x19\xbe\xaa\x94\xfe\x18\xe7\x22\x04\x97\xa5\xe6\x5e\xf1\x26\xaf\x72\xe9\x28\x24\x1d\x5c\x7b\x0e\xc7\xad\x28\xe6\x35\x00\x05\xf3\x96\xad\x19\x57\x0a\xab\xf7\xbf\x6b\xdb\xd9\x7e\xbe\xbd\x5a\x90\x6a\xbf\x27\xf6\xf9\x50\x43\x13\xe8\xf0\x2d\x86\x69\xbd\xea\xa9\xe0\xbd\x82\xe7\x8d\xf2\x6a\x89\x9a\x4d\x7c\x9f\x75\x98\x33\xb3\x1c\x44\x43\x73\x67\xc8\x76\x19\x6b\x67\xd7\x88\x0a\x6b\x63\x4d\x60\xae\x1d\x8d\x7e\xcd\xb2\xb2\xdf\xf0\xdc\xb0\x64\x96\xaa\x5e\x1d\x6e\x5d\x5b\x72\x50\xbf\x61\x6d\x49\x00\xc5\xb5\x25\x53\x37\xad\x2d\x99\x7b\xcf\xb5\xa5\x30\xfe\x63\xaf\x2d\x89\xe4\xfd\xd7\xd6\x9e\x17\xd0\x3b\x9b\x2f\x2f\x2d\x4f\x40\x2b\xac\x2c\xe5\xa5\xe1\xc0\x95\xa5\x26\xe2\xf7\x5d\x59\x8a\xd1\xec\x5e\x5a\xe6\x9e\xbf\xbc\xb4\x34\xb3\xda\xba\xb6\xcc\x7b\xe5\xfb\x2c\x2b\xeb\x15\xc6\x37\xc8\x5f\x19\x90\xfe\xc6\x9c\x0d\x4b\xcc\x2a\xb1\xed\x05\x85\x8d\x27\x44\xd6\xde\xb0\x82\x18\x85\x35\x24\xb5\xcd\x7a\x0d\x81\xf6\xa6\xb8\x7e\xdc\x42\x02\xfb\x3e\x0b\xca\x42\xf4\x80\x45\x55\x14\x77\xf6\x02\xae\x80\xa5\x29\xf3\xc5\x7a\x51\xe1\xac\x6a\xde\x78\x1c\x27\xbe\x38\xf0\xf3\xb8\x66\xde\xa2\xd5\x52\xc6\x17\x73\x29\xef\xc0\xa5\x67\x5a\x3e\x8f\x59\x63\xcc\xc9\xe6\xe7\x3a\x9a\xa0\xf3\x8f\x75\x56\xab\x4a\x4b\x6e\x88\xb1\x99\x25\xe4\x5f\x1f\x1d\xf4\x44\x28\x4f\xb8\x52\x4d\x7f\x7f\x9a\x95\xf5\x61\xec\x13\xfb\xe6\x6f\x13\xa7\xd2\x2e\x5f\x6a\xf2\x87\x98\xb9\x26\x12\xc3\x2e\x26\x37\x8c\x3d\x9f\xf9\xb5\x49\x12\xcf\xb4\x3e\x51\x16\x4b\xeb\xa5\x51\x56\x88\xb3\xde\x5e\x42\x71\x41\xbe\xdd\xf6\xf2\xa4\xc8\x3e\x76\xbf\x52\xd9\x47\x75\x67\x5b\xe5\x15\xde\xd1\x5a\xf7\x12\x85\xc9\xd1\x0c\xe8\xfe\xd3\xa3\x21\xf4\x58\x76\x84\x61\xe2\x08\x43\x1c\x79\x74\x81\x0b\xd9\x13\x08\x6e\xcb\xb2\x1b\xbf\x62\xf5\xa2\x16\x2b\xe3\xe6\x15\x17\x57\x03\x70\x40\xa4\x1d\x12\x49\xff\x44\x88\xa0\x29\xb8\x45\x41\xf2\xc9\x0d\x1a\xf6\x0e\xea\x47\xd6\xe0\xa6\x6b\x95\x4a\xfd\x77\x35\x0d\x66\xc0\x2a\xaf\x59\xe2\x4a\x03\x75\x4b\x91\x98\x63\x95\x70\xea\xcb\x4c\xae\x59\x21\x7c\xd6\x41\x18\x14\x9b\xad\xc5\x13\xd8\xa2\x65\xcc\x31\x52\x43\xa5\x3d\xd9\x9a\x88\xc2\x14\x69\x87\x4b\xf7\xa7\x1d\x0d\xe1\xb0\x8b\x2c\x5d\x6b\xe7\x0d\x56\x49\x06\x32\x18\x67\xa2\x60\xbd\xd3\xdb\x50\x86\xdd\x6b\x41\x81\xdf\xa8\x7b\xdd\x83\x95\xf4\x54\x00\xea\xe0\xab\x30\xa8\x65\x0d\x4d\x36\xd5\x3c\x56\xf7\x5f\x17\xa5\xfb\xaf\x8a\x86\x09\xbf\x1f\x47\xd1\x8e\xa5\xbe\xcf\x18\x68\x68\x07\x0f\x83\xae\xf8\x6d\x23\xa1\xa1\xdc\x77\x30\xcc\x6d\xf4\xfd\xd7\x88\x01\x71\xd8\x22\x31\xd5\x0e\xbc\xe7\xcd\x30\x2e\xac\xf6\xcc\xa5\xd2\x37\xec\x15\x06\xc6\x61\x9d\xc9\xea\x1d\xd8\x1b\x0b\xe9\xfb\x2d\x67\xed\x13\xea\xfe\x7d\xd6\x10\x0e\xba\x27\xd2\x95\x76\x5d\x0e\x05\x13\xa9\x13\x1c\xb5\xb5\x55\x8b\x6d\x92\xb4\x13\xf6\xc6\x9b\x57\x07\x35\x6d\x90\xd9\xee\xd0\x44\xb8\x26\xfd\x82\x16\x87\xda\x8c\x14\xdb\x61\xa2\x53\x8d\x6b\xab\xbb\xc1\x29\x82\x16\x18\xf4\xa3\x87\xe2\xb9\x28\xe7\xc6\xeb\x1b\xb6\x22\x1b\xcc\x81\xfb\x91\x5d\x75\x1b\xbf\x31\x04\x5b\x3d\x82\xf9\x9e\xb0\xad\xa7\x41\xe5\x80\xec\xfb\x30\x59\x05\xec\x60\x1e\xab\xea\xed\xc9\x62\xa5\x3d\x75\x15\x97\x55\x70\x04\x93\xad\x18\xf5\xca\xb2\x6d\xe3\x78\x6d\x2b\x6a\x59\xb1\xdd\xa2\xc2\x41\x4d\x83\x9b\xb7\xdd\x4d\x4b\x07\x8a\xdf\xbb\xe9\x38\xdd\x40\x89\xa5\x62\xfb\x30\xcb\x03\x39\xa2\xf6\x37\x77\xff\xa5\xa6\x21\x1c\xb6\xca\x74\xad\x03\x77\x00\x83\x2e\x2b\x5a\x7d\x18\x57\x79\xdf\x62\xfa\x61\x80\x1c\xd6\x19\xab\xe2\x81\xfd\xb1\xf1\x2e\x74\x49\x9e\xee\xbf\xc1\xb8\x0c\xea\x1f\x68\x54\x06\x75\x0e\xb5\x25\x93\x88\x16\x8f\x13\x62\xad\x94\xdc\x84\xe4\xad\x7b\x4a\xb4\x28\xcd\xd6\xbf\x85\x16\x25\x84\x12\xd5\x28\xc0\x45\x63\x12\x36\x5a\x94\xce\xca\xfb\x8f\x16\x54\x3f\x70\xb0\x64\x93\x05\x3c\x8a\x8e\x9e\xee\x3f\x00\x45\x48\x87\x4d\x7f\xb1\xf6\x81\x7d\x2b\x75\x83\x95\x79\x8d\xd2\xdb\x7e\x1b\xbb\x51\x40\x0e\xe7\x38\xaa\xe2\x3d\x98\x8e\xc6\xbb\x64\x8e\xa4\x1f\x41\x42\xbf\xbf\xe5\x2a\x3d\x07\xe8\x40\x33\xa4\x5c\xdd\x43\x4d\x90\xf2\x3d\x28\x74\x70\xcb\x43\xa5\x83\xfa\x97\x87\x03\xdd\x33\x0f\x6c\x76\x76\xb0\xa0\x12\xc6\xb6\xfd\x67\x6a\x79\x81\xef\x6d\x6b\xb3\x34\x75\x55\x0f\xbf\xbe\xdd\x9c\x28\x07\x6e\x0f\xb3\xa2\x5c\xf9\x4d\xe6\x45\xb9\x42\xfb\x98\x19\xe5\x3b\xf5\x1d\xcd\x8d\x72\x80\xef\x67\x76\x94\xc7\x8d\x6f\xbf\x26\xa9\x7e\x45\x7b\xdf\xc9\x01\x30\x7b\x4c\x0a\x94\xdb\x34\x19\x90\xb9\xcf\x24\x48\xa4\xbf\xe3\xe0\xcb\x37\x92\x07\x9b\xaf\xe4\xd0\xd1\xda\xe6\xdc\xb3\xa4\x8d\xe6\x5e\x85\x2e\xdc\xd3\xfc\x64\xeb\xb5\x9f\x31\x3f\x49\xb6\x9b\x9f\x44\x43\xf0\xb9\x5a\x36\x3f\x89\x86\x96\xaf\x59\x72\xfc\x98\x52\x9a\xe4\xcc\x4f\x8e\x1f\x6f\x35\x3f\x49\xb6\x9b\x9f\x44\x43\x12\x6d\x37\x3f\x61\x95\x0f\xb1\xef\x69\xee\xb6\x8b\x44\xed\x62\x1b\xcc\xdd\x76\x12\x68\xf5\xe4\x7e\xb3\xb9\xdb\xfd\xc8\x33\x87\xcc\x9e\xd4\xb9\x61\x85\xfd\x49\x9e\x55\xe4\x69\xae\xae\x0f\xde\xbc\x8b\xae\x2b\xaa\x2e\x8a\x0d\xf4\xc2\x23\xab\xb2\x1b\xdb\xcc\xd9\xa3\x24\xb0\xef\xfc\xfc\x40\x23\xb2\xf5\x09\xc2\xae\xc7\x07\x79\x47\x95\x55\xcf\x0d\x4c\xb1\x8f\x95\x83\x9d\x7f\xb9\x71\xff\xb3\x45\x1e\xce\x7d\x04\xf1\x0c\x89\x82\xe0\x53\x7e\x2e\xf2\x0d\xc6\x3d\x65\x37\x6e\xf7\x75\x04\x55\x06\x75\xa0\x47\xa8\x5d\x98\x89\x71\xe0\xce\x88\xc0\x33\x94\xc1\xdd\x17\xb6\x74\xd1\xdb\xb3\xf3\x97\x88\x5c\xb1\x0a\x97\xbf\xb5\x78\xbd\x26\xb2\x14\x84\xde\xf9\xc7\xcb\x5f\x36\x94\x2c\xc6\x07\x32\xf5\x5e\xfe\xf3\xe5\xdb\xcb\x2d\x15\x6b\x41\xbe\x89\xb3\x77\xaf\xb7\x35\x93\x45\xfb\xc9\xaa\x79\x9c\xc1\xbb\xc2\x04\x34\xb0\x9b\xda\x09\x4d\x05\xa3\xac\xdd\x54\x74\x9e\x61\x7f\xcd\x22\xbe\xa9\xd8\xd8\x14\x93\x71\x1b\xe2\x64\x53\x49\x2f\x43\x56\xc7\x5b\xa8\x2e\x38\x5d\x93\xd4\xce\x60\xf8\x6e\x4a\x99\xa9\xfd\x3c\xf4\xd2\xf4\xad\x37\x63\x9b\xea\xa7\xeb\xf5\x10\x93\xd1\xda\xc1\x6b\x47\x86\x6d\x23\x2a\x00\x9b\x15\x4f\x8c\xeb\xb0\x50\xbc\x3d\x89\x06\x49\x5b\x10\xc0\x90\x04\x74\x80\x78\x3c\x47\x04\x8d\x62\xce\xe3\x19\x22\x32\x66\xc3\x90\x78\x74\xa0\xe2\x03\xe9\x98\x40\x3a\x27\xa5\x83\x2c\x82\x44\xbe\xf6\x90\x8c\x4b\xd7\xdc\x11\x65\x39\x5f\xbe\x08\x1b\xa7\x09\xfa\xc9\x66\xb4\x5a\x81\x47\x27\xe9\xd3\x75\x9a\xb0\x09\xc2\xab\x15\x42\x24\xa2\x47\xff\xf3\x97\x81\xd7\xfa\x3a\x3c\x0a\xda\x9c\xa5\xdc\x89\x70\x3f\x02\x6f\x75\x18\x5e\x99\x39\x31\x15\x69\xc6\x33\x6d\xec\x3a\xb1\x6c\x2d\x69\x6b\xe2\xc5\xab\x15\xb7\xa4\x8a\x58\x3b\xa0\x92\x96\x5c\x58\x7d\x62\x12\xe3\x35\x09\x33\xf4\x63\xcb\xe3\xf3\x38\xe7\xf1\x79\x2c\xed\x76\x92\xf2\xfb\xb7\xba\xcd\xd4\xde\xb3\x09\x4b\x58\x34\x36\x57\x79\xd3\x20\xad\x4d\xbd\x34\x7a\x20\x38\x33\x8b\x6a\x41\x14\xf0\xc0\x0b\x83\x94\xf9\xb5\x56\x2d\x5d\xcc\x59\xe2\xe0\x5c\x89\xb1\x17\x86\xcc\x47\xda\x11\x7a\x9d\xaf\x56\x48\xbd\xfa\xb3\x54\xac\xb6\xcf\x06\x2b\xb9\xcf\x5c\xbe\x96\x18\xc7\x99\x07\x04\x22\x70\x35\x9e\xd5\x13\x69\x7f\xe1\x60\x92\x94\x22\x9d\x99\x08\x8b\x55\xc0\x33\xb7\x7a\xd5\x4c\xed\x83\xe8\x8d\xe0\x63\x09\x4b\x53\x31\x84\xb0\x21\xb1\x80\x4f\x59\x22\xf6\x25\x51\x5b\xec\x42\x59\x2c\x33\x02\x86\x2d\xa8\xa9\x5b\xc0\x3d\x96\xf1\x6e\xaa\x5e\xff\x8f\x13\x06\xae\x0b\x1a\x0d\x3b\xe8\xda\x9d\x15\x95\xce\xbd\x83\x5b\x09\x97\x91\x2c\x32\x9c\x5b\xef\x12\x1d\xf6\x4d\x86\x58\xca\x42\xc4\xb9\xf5\xce\x7a\x8d\x09\x6f\x34\x1c\xd5\x46\xca\xf8\x3b\x0d\xfa\x62\xd2\xaf\x4c\x85\xc1\x71\x59\xfb\xf3\x67\xc0\xe2\xf3\x67\xca\xf1\xda\x19\x93\x18\x93\x71\xd1\x1b\x01\x2d\xb8\x54\x01\x6e\xad\xfd\x74\x4d\xbd\x14\xd6\xb7\x72\x10\xd9\xba\x4a\xe2\xc5\x1c\xe1\xbc\xb7\x82\xbc\x5b\x6a\x4b\x73\x21\x15\xe5\x08\xf7\xe0\xb5\x73\xce\x3d\x73\xe6\x13\xbc\x02\xc6\xae\x30\x6f\x4a\xbe\xce\x60\x08\x6e\x34\x2e\x3c\xed\xce\x58\xf0\x25\x9b\xcd\xc3\xc2\xe3\x71\x85\xbf\x83\x4e\xf8\x94\x79\xfe\x29\xc2\x6d\x6f\x3e\x87\x4b\x13\x91\x96\x14\x13\xa6\x90\xe0\xfb\x6a\x34\xe6\x09\xbb\x16\x09\xc0\x11\x2c\x17\xf6\x88\x20\x1d\x74\x2a\x0f\x20\x9d\x7b\x51\x0e\x44\x85\x2d\x40\x5b\x57\xc5\x78\x7b\xe3\xd2\xbb\x97\xf4\xb4\xb8\x09\x0b\x28\xf3\x21\x5f\x64\x1c\x87\x02\x0f\x44\xb6\xdc\x88\xf5\xd1\x53\xe4\xa2\x27\x68\x3b\x0a\x11\xbb\xe5\x1b\x5a\xd6\x59\x07\xf6\x5d\x54\xc3\x18\x63\x12\xc9\x59\x19\xc5\xfe\x72\xe7\xac\xc8\x79\x3b\xa0\x6f\x3f\x22\x17\x3d\x43\xd8\x70\x98\x81\x00\xe3\x07\xd7\xf9\xde\x59\x2e\xd4\x20\x46\x51\xbe\x51\xb1\x2c\xf3\xe5\x21\xa9\x06\xff\xb6\xd2\x59\x56\x9c\xe5\x2b\xaa\x2e\x61\xc1\xdb\xb7\xb7\xaa\x22\xc0\xed\xd5\x6e\x6b\x1c\x47\x3e\x8b\x52\xc1\x88\x4d\xc3\x5a\xa4\x37\x29\x91\x49\xd9\xdd\xba\x0c\x3b\xf7\x5f\x6a\x5c\xc7\xba\xfb\x6d\x9a\x1f\x96\xf9\xc4\x65\x30\xd3\xa2\x9a\x17\x44\x3b\x78\x85\xa0\x40\x4d\xa1\xf0\x3b\xc9\x7e\xf7\xb6\x78\xc9\x04\xbf\x3e\x65\xca\xcd\x12\x3c\x43\xc9\x77\x42\xc0\x70\xd1\x5f\x20\xca\x21\x9c\xb8\x5d\xd4\xea\x22\xc2\x03\x1e\x32\xb7\xda\x70\xa6\x9d\x0b\x71\xb6\xb6\xc7\x69\xc4\xa3\x0d\x0b\x35\x57\xe7\x3e\xec\x6a\x31\x97\x0b\x76\x6b\xc7\x4a\x90\x50\xc6\xca\x5b\x60\x4a\xa8\xfb\x2d\xd1\x13\xb9\x2d\xc3\xd9\x91\x0b\xe6\x86\xe9\x8e\xee\xeb\xb0\x6f\xeb\xea\x9e\xa6\xd3\xf8\x46\x75\x12\x63\x92\xfc\x96\x13\x91\x0b\x26\xb7\xe7\x44\xe4\xea\xdc\x67\x22\xfc\xf8\x26\xc2\xd8\xb8\x8c\x2c\xf8\x62\x35\xb6\xf2\x7b\x91\xa4\xc1\x37\xd5\xe7\x33\xb4\x61\x8e\xab\x4a\xb6\xa7\x7c\x16\x3a\xc8\x45\x1b\xc6\xb9\x12\x3a\x26\xbf\xcf\xda\x90\x21\xf7\x0e\x5d\x1d\xb2\xd6\x7f\x67\x7d\x28\x1b\xdb\x1d\x2b\x44\x39\xbf\xdf\x63\x8d\x64\x23\xb0\x61\x95\x98\xce\xfe\x6e\xeb\xe4\xa0\x49\x29\xd4\xfa\xce\x6b\x25\xad\x5e\x2b\xb3\xff\x1b\xd7\x8a\x8c\x1f\x79\xe8\x5a\x91\xb5\xfe\x3b\x6b\x45\x06\x72\xd8\xb5\x56\x54\xb8\x87\x3d\xd6\x4a\x36\x02\x1b\xd6\x8a\xe9\xec\xef\xb6\x56\x0e\x9a\x94\x42\xad\xef\xb0\x56\x32\xc7\x68\xab\xd5\x37\xae\x87\x2c\x41\x9e\x11\xf3\xd5\x47\x3c\xaa\x8d\x78\xd4\x9a\x27\xc1\xcc\x4b\x96\x85\x39\x55\x3d\x74\xf3\xd1\xc2\x0e\x19\x50\xbb\xe2\x7a\xd3\xf4\x6d\x58\x7e\x95\xf2\xab\x45\x86\x26\xfe\xd9\x3d\xc5\xd7\x01\x23\x11\x49\x86\x18\x6f\x93\x54\xb7\x4b\xa9\xdb\xd0\x9b\x96\x45\x8c\x7d\xb0\xd3\x42\xef\x36\xd0\xb3\x2a\x9e\xbc\x1f\xf0\x64\x27\xf0\xb4\x8a\x88\xf7\x03\x1e\xd3\xcc\x2f\x5c\xb5\xb0\xef\xe0\xe1\x76\xe1\x3d\x96\xcf\xff\xd9\x26\x01\x2b\x36\xae\x50\xab\x37\x15\x95\x9f\x60\x12\x57\x4c\xab\x0c\x80\x5b\x9e\xcb\xc1\xb0\x7c\x2b\x57\xb2\xb8\xcc\x7c\x13\xdc\x8f\xf3\x94\xd6\x14\x3c\xf2\xd9\xb1\x7c\x7c\x6f\xb9\x3e\x9c\x9d\x40\x3d\x60\x27\x85\xcb\xbf\xcc\x7e\x5c\xbf\xba\x52\xa1\x01\x1c\x6c\x25\xa8\x30\x55\x4a\x6b\x5b\xf0\x74\xdb\x53\x41\xd4\x4b\x8e\x79\xb5\xc1\x74\xdf\x89\x8a\x61\x34\x74\x7f\xb2\x68\xc7\x24\xa1\x95\x7c\xd0\xe3\x0c\xbb\xbb\x00\x08\xfc\x36\x00\x10\xb8\x81\x4f\xd5\xef\x39\x51\xc0\xc3\x54\x60\x70\x39\x5f\xd1\x8e\x49\x49\xc4\xe0\xaf\x2b\x2f\x8c\x4a\xe6\xb4\xdf\x99\xae\xc0\xec\x70\x07\x5d\x41\x99\x7b\xd0\x15\xd4\xb3\x44\xba\x8d\xe6\xbc\xdf\xbd\x4f\x71\xca\x76\xf6\x29\x4e\xd9\xbd\xfa\x14\xa7\x0c\xfa\x94\xd3\x9d\x22\xe4\x1e\xba\xa1\xec\xa5\x4d\x13\x4d\x55\x70\xa6\xc3\xb6\x99\x51\x1c\xf3\x94\x27\xde\xbc\x95\xd7\xd8\xb6\xa4\xed\x73\xcd\x4f\xe2\xb9\x10\x29\x5a\x33\x16\x2d\xd0\xc6\x2d\x25\x17\x3b\x55\x23\xac\x19\x78\x59\xab\xeb\xec\xb3\x7f\x54\x40\x2a\xef\xa6\x70\xcb\x02\x90\x16\x61\x1e\x50\x18\xa4\xbc\xb5\x88\x52\xbe\x84\xfb\x0e\x12\x40\xa9\x30\xd8\xa6\x97\x6d\x6e\x78\x15\xd7\x47\xfa\x45\x72\x1c\x29\x15\x37\x72\x91\xad\x6f\x35\x18\xca\x8d\xc1\xc1\x05\xd5\x52\xde\xc0\x57\x10\x75\xc2\x66\xf1\x35\xd3\xe3\x57\x18\xe6\x82\xec\x26\xca\x67\x38\x2f\x52\xc6\x6f\x58\xc4\x97\x13\x50\xc5\x6c\xd8\xbf\xea\x5b\x61\xdc\x04\x10\xdf\xb0\xf8\xe4\xf4\x00\xa6\xde\x77\xd8\x86\x6d\x7f\x94\x22\x2c\x6f\xf1\x4a\x9c\xbd\x18\x38\x1e\x90\x92\x43\x18\x14\x8e\x49\x25\xca\x48\xe2\x1b\x64\xe9\x07\xb3\x8c\x71\x1c\xb6\x66\x7e\xeb\xa9\x35\x1f\x49\x75\x36\x36\xd7\x8a\xe5\x00\x4d\x25\xcc\xcc\x8d\xe4\xce\xb2\xab\x55\xae\x17\xd8\x75\xf6\xed\x7d\x6c\xd5\x2b\x0d\x78\x6c\x0f\x47\x81\x70\xab\xe9\xb4\x3c\x49\xe6\x49\x28\xd0\xeb\xc1\xf5\x1b\x8d\x9d\x7b\x34\x12\x27\xb4\x69\x6e\x6e\xc4\x38\xeb\xc1\xbb\xef\x20\xe8\xf6\xbf\x69\x10\xe4\x48\xde\x7f\x10\xf4\x4c\xec\x1e\x04\x18\x01\x09\x5d\x51\xa0\x45\x6c\x07\x8e\x81\x21\xa6\xb8\xc4\xe0\xc1\x31\x75\xd5\x7d\xb8\x8a\xed\xe3\xe9\xbf\x6d\xb9\x18\xa5\xe5\x10\x49\x68\x94\x35\x2e\x39\xfb\xbb\x38\x0d\xc4\x77\x10\x5d\xb5\xaf\x59\xc2\x83\xb1\x17\x92\x78\x7b\xb9\x69\x9c\x04\x5f\xe3\x88\x7b\xa1\x1d\x9b\xc0\x89\xb2\x5b\xbd\x46\xc3\xfa\xd0\x1b\xa0\x95\xe4\x46\xe6\xda\x10\xb7\xe7\x0a\xb4\x83\x49\x7a\x7f\x28\xf1\x64\x92\x32\xae\xfc\xb1\x96\xb0\xf7\x12\x51\x28\xa8\xe8\x17\xe4\x64\xec\x44\x85\x13\xef\x41\x8c\x40\x09\xaa\x22\x26\xb0\x84\xa4\x33\xc0\xbb\x4b\x56\xb7\x3d\xf7\xe4\xab\x72\x00\x72\x97\xc7\x47\x32\x7e\x6c\x45\xa4\x70\xf2\xb0\x0a\x88\xe0\x9e\x9d\x4d\xac\x92\xe3\x69\x10\xfa\x09\x8b\x20\x80\x50\x92\x72\x07\x17\x11\x59\x07\x13\x47\x9a\x56\x50\x4a\x93\x46\xc3\x49\xa8\xa0\xb9\x79\xb3\xdb\x7e\xf2\x50\x97\x6a\x4f\x59\x70\x35\xe5\x0e\x3e\xa5\xdc\xb9\x09\x22\x3f\xbe\xc1\x26\xad\x99\x25\xa5\xe3\x24\x0e\xc3\xcb\x78\x2e\x16\x42\xa9\x72\xd3\x42\x2c\x5e\x70\x96\xbc\x52\x19\x27\xd0\x62\x1f\x18\xa1\xab\x17\x02\x26\x06\xad\x18\xe2\x3c\x04\x02\x1e\x9f\x42\xf1\x90\x4d\x78\xd3\x34\x00\xc0\xfe\x25\x33\x8f\x8e\x1b\x8d\x6d\xf9\xa7\x19\xb6\x0a\x5c\x5f\x59\x98\xb8\xd2\xe0\x24\xdb\x8e\x92\xbe\x81\x60\x6d\x5e\xf1\x1c\xc2\xca\x5a\x1b\xb2\x46\xd8\xad\x28\xae\xf3\xf2\x35\x00\x88\xb6\x6c\x11\x1d\xac\x6a\x69\x12\xc6\x1e\x6f\xc9\x32\x16\xec\x1c\xa0\x5c\x19\x82\x12\x16\x7a\x3c\xb8\x66\x62\x1b\x0a\xda\x63\x10\x5a\xd4\xc2\x01\x25\x67\x40\x03\x45\x78\x69\x16\x52\xca\x29\x5b\x3c\x19\x38\x82\x1b\x29\x3b\x95\x02\xb4\x35\x36\x24\x25\x65\xd8\x40\x1b\xac\x65\x06\x19\xd6\x3b\x89\x6c\xcf\xb7\x5d\xb4\x98\xe7\x04\xc0\xab\xfc\xda\x4d\xc0\xa7\x41\x54\xf3\x6a\x1a\x81\x9a\x6e\x90\xf9\xb5\xb1\xe0\x26\x41\x04\x36\x67\x66\x34\x04\x56\x77\x3c\x9e\xbb\xd9\xa4\x49\xb2\x71\x3d\xa0\xe2\x4d\x24\xd7\x44\xf3\x5b\x44\xe4\xec\x58\x75\x83\x7c\xa9\x96\x13\x50\x6a\x2d\xad\x7e\x47\x82\x95\xd5\x5d\xd9\x12\x11\x64\xa3\x88\x07\xe6\xb2\xaa\x92\xc8\xcd\xd7\x82\x49\xb3\xab\x29\xbc\x83\x1c\xb9\xb6\x8a\x1d\xd0\xe9\xdb\x1b\x59\x17\x37\x03\x08\x0c\x6d\x3f\xd2\xab\xbc\xf6\xac\xb4\x3e\x6d\xa7\xdc\x4b\xf8\xc5\xc4\x41\x62\xdf\x36\x1f\x3e\x92\x91\x5f\x2a\xe2\x5d\xe5\x2e\xe5\x2d\xb1\xad\xca\xd2\x60\x2c\x80\x72\x76\xcb\x1d\xf4\x17\x84\xc5\xcc\x16\x7c\xd6\x95\xd0\x61\x91\xaf\x90\xc1\x3d\xbc\x15\xb6\x1f\x1b\xe0\x26\x78\x34\xf2\x7d\xa4\x34\xd1\xc6\x77\xa2\xfd\x82\xb3\x6c\xe5\x02\x36\x02\x35\x30\x23\xb1\x0f\x54\x15\x03\x7c\x0e\xd7\xfa\xf6\x18\x6b\x23\x66\x46\x07\xc3\x3d\x06\x78\x59\x1c\xe0\x48\xc7\xdf\xcb\xd7\x24\xa2\xa4\xe8\xbc\x39\xed\x9a\x43\x67\x95\x32\x1b\xd4\x17\x80\x5c\x6e\x78\x66\x2a\xa5\x30\x40\xe7\xe7\xe7\xf9\x11\x3a\xdf\x39\x42\xd2\x9e\xa1\xc6\xc5\x00\xb1\xd9\x9c\x2f\x9d\xcd\x03\x25\x8d\xa5\xcb\x43\x65\x59\x1c\xed\x68\x07\x68\x95\xa9\x6c\xd1\x03\x92\x64\x9f\xe2\x24\x8c\xb0\xfa\x02\x8b\x11\x38\xf4\x4d\x83\xb4\x17\xb5\xd9\x7f\x9c\x4e\x3e\x4f\x0d\x18\x9c\xf1\x8b\xb6\x25\xd9\x75\x41\xc2\xae\x7f\x61\x5e\x22\xc6\x84\xfd\xc7\xe9\xee\x57\x4b\x0e\xbb\x55\xef\xf8\x1e\x4d\x47\xec\x56\x81\x60\x66\x3c\x94\x11\x7e\x71\x53\xc9\xd2\x49\x95\xb9\x7c\x99\xea\xb4\x8f\xc2\x2e\x90\x13\x91\x41\x38\xf5\x20\x59\xab\x28\x83\xab\xbb\x0f\x14\x53\x00\xbb\x64\x70\x94\xdd\xaf\x6d\x45\x59\x85\x66\x8f\x37\x34\x9b\xe4\x3b\x2a\x08\xfb\x9a\x99\x6e\x96\xc2\x7c\x38\x78\xcb\xaa\x31\x87\xdd\x28\x65\xbc\xd1\x48\x44\xbb\x9b\xe1\x00\xc1\x81\xa9\x89\xc1\xcb\xb4\x9e\xc8\x70\x06\xb9\x28\x3b\x71\xd6\xf3\xb8\xa2\xdb\x12\x1c\xc3\x44\x85\x36\x55\x5b\x6b\x55\xa7\xd7\x55\x0a\x9b\x0f\x82\x37\xbc\x8c\xfc\x5f\x72\x6f\x7c\xad\xb8\xfd\xec\xa8\xdb\x21\x89\xf4\x12\x31\x09\xe3\x38\x71\xf8\x11\xc3\x0f\x99\x36\x87\x4a\x48\xd2\xfc\xe9\x61\x44\x72\x05\x22\xfc\x30\x2a\x1a\xce\xc8\x55\x2a\xda\x39\x78\x91\x2a\xf3\x22\xc2\xf3\x6b\x54\x73\xbf\x42\x37\x9c\x6e\x87\x6c\xa0\xa4\x64\x13\xbf\x84\x02\xd1\xa0\x33\xd4\x4b\x7b\x73\x99\xee\x10\x93\x80\x22\x04\x5b\x15\xff\x16\x06\xf0\x02\x0c\x97\x30\xe1\x07\xb3\x80\x5c\xcd\xfb\x32\x01\x0d\xe4\x70\x36\x60\x2c\xf3\x8d\x5b\xd8\xaa\x64\xe3\xce\x32\x51\xcb\x84\x6f\x63\x04\xdc\x66\x04\x89\x9a\xb1\x26\x6a\xa1\x66\x5c\x60\x04\xa6\x19\xe3\x38\xb3\x2a\x39\xdb\xf4\x63\xbb\xf9\x4d\x0c\x21\x68\xd2\x07\xb0\xe5\xd5\xac\x9d\x8e\xa2\x8c\xe3\xa2\xda\x58\x54\xa2\xe0\xe1\xac\x16\x87\xfe\x83\xa6\x93\x67\x4c\xb2\x9b\xa0\x91\xa8\x65\x90\x9b\x0f\xd0\xe9\x83\xa6\xe9\x51\xab\x8b\x9b\xe8\xe4\x48\x6e\xae\x3d\x78\x23\x23\x07\x29\x56\x3b\xf0\x61\x88\x00\xe4\x1c\x6b\xaa\xe0\x39\x65\x2e\x05\x1a\x45\x60\x3a\x2e\x42\xf8\x90\x8e\x64\x33\xa3\x3b\x41\x12\x8b\xf7\xf6\x7e\xe3\x71\xac\x68\xde\xb0\x04\x5f\x1b\x48\x04\xd5\x02\x82\xa4\xf7\x83\x99\x8f\x31\x2f\xdc\x9f\xfd\xfc\x0e\xfc\xa7\xde\x25\x9e\xf8\x27\xd5\x9a\x90\xf1\x77\x61\x49\xcf\x59\xc4\x17\xc9\xf2\x1b\x39\x8b\x81\x72\x08\x6b\x81\xb7\x4a\x7a\x7e\x75\xdc\xaf\x7b\x71\x9a\x3f\x38\xab\xc9\x58\x41\xe7\xa4\xd3\x1f\x37\xa9\x92\xb5\x1b\xd1\x28\x9d\xf7\x34\x5d\xbb\xe3\x6d\x2b\x49\xd2\xb2\x59\x4b\x92\x46\xc5\x6a\x42\xb2\xb4\x2c\x05\x15\x2c\xe6\xd3\x7c\x5a\x66\x47\x9d\x1d\xfc\x28\x35\x73\xd2\xec\x76\x49\x40\xbf\x6d\x07\xa8\x2c\x25\xc1\x9f\xd0\x94\x78\x45\xf0\xbb\xc6\x7d\x2b\x78\x55\x2a\x03\x7f\xf8\x90\x1a\xe6\x54\x2d\x12\xaa\xe6\x4d\xd3\x55\xa5\x4c\xf3\xfb\x30\xdd\xd5\x2a\x58\xad\xbc\x0a\xde\xb7\xd7\xb4\x6e\x66\xce\x1d\x39\x9b\xbf\x25\x4d\xed\xc5\x9a\xc7\x95\x5a\x84\xea\x0b\xc3\x9d\x27\xe8\xaa\x53\xdb\x60\x58\x19\xc1\x56\xfd\xd0\xdc\x32\xb3\x92\x30\x6a\x76\x79\xb2\xfe\xa6\x03\x1d\x9c\x40\xef\x73\xa2\xb3\x2b\xde\x97\xe7\x2a\x18\x87\x70\xdc\x6d\x67\x2f\xdb\x35\xb8\xe5\x61\xa4\x14\xe4\x68\xdf\xe3\x99\x7d\x34\x3c\x47\xfa\xb8\xb2\xf5\x68\x78\xc8\xb1\xaf\x00\x72\x13\xeb\xdd\xb8\xb7\x1a\x15\xc9\x39\xda\xa2\x9d\x22\x29\xed\xf4\xd2\x93\xc7\xc7\xbd\xb4\xd9\x34\xef\x6b\xe3\xf6\x0d\x63\x5f\x20\x68\x37\x28\x44\x33\xfd\xd7\x56\x1d\x56\xa0\xf5\x19\x0f\x4e\xb8\xaf\x17\xdd\xf8\x46\x2c\x25\x09\x51\x2e\x25\x30\x3a\x20\x89\xd4\xcb\x04\x18\x13\x8f\x22\x44\xe2\x4d\x3a\x2d\xa2\x02\x7b\x7a\x4d\x8a\x60\xed\x62\x28\x6b\xfb\x95\xaf\x2c\x1a\xb1\x9b\x12\xc2\xf9\xc7\xc7\x72\x5d\x8e\xd5\x08\xc2\xe3\x70\xe5\xe5\xd8\x0a\x5e\x1e\x57\x06\xdb\xc5\x3d\x08\x81\x3e\x6e\x34\xe2\xbc\xb0\x9a\x87\x32\x18\xcb\xb8\x24\x85\x03\xb5\x44\x50\x1f\x92\xd7\x70\x45\x12\xef\x21\xf4\xee\x82\xd4\xcb\x13\x58\x0c\x35\x56\x2b\x59\xc8\x26\x9a\x5c\x5b\xd6\x33\x78\xd5\x84\xac\x20\xcd\xa0\x30\xe9\xd4\x05\x45\x28\x6a\x78\x9a\x7d\x68\xc0\x62\x66\x59\x04\x47\x8e\x1c\x01\x54\x31\x64\x6f\xa9\x58\xaf\xef\x2d\x05\xd3\xcd\x46\xf7\x8d\xdc\x14\x34\xab\xf6\x96\x0f\x9a\x9e\x64\xc3\xf0\x1a\x94\xd9\xb4\x13\x5b\x7a\xc9\x75\x51\xab\x55\xd0\xad\x25\x79\x5f\xf7\x52\xa7\xe6\xe4\x13\xe1\x08\x5f\x48\x53\xb2\xb5\x83\x8b\xcf\xea\x04\x7f\x2f\xb8\xd3\xd8\xc2\xe0\x8b\x66\x87\xf2\x85\xd4\x5e\x9a\x64\x3f\x63\xff\xd9\xfb\x1a\x90\x87\xf3\x15\x05\x5c\x07\x9f\x76\xbb\x55\x36\x0a\x91\xcc\xee\x1e\x6f\xd1\x93\x5a\x71\x70\x6d\xf3\xd6\xca\x66\x4e\xba\xc7\x06\xa8\xf8\xd8\x50\xec\xb4\xdb\xc5\x3d\xac\xcb\xfd\xf0\x98\x52\xda\x81\x0b\x2a\xeb\xd5\x90\x64\x00\x31\x86\xf9\xdc\x4e\x37\x02\x23\x43\x1b\x02\x66\xe9\x88\x15\x81\x0b\x8b\xea\x23\x56\x94\xe3\xfd\x59\x17\xfb\xe8\xd5\x2b\xe4\xa2\xe9\x14\x59\xb4\x15\x59\x1e\x31\x7a\xac\x4c\x4d\x55\x2a\x6d\x69\xf4\x59\xad\xd3\xde\x4e\x13\xca\x5e\xf4\x00\xaa\xb0\x84\x82\x6e\xe9\x52\x41\xbb\x38\xef\x3f\x71\xab\x33\x88\xc5\xcc\xcb\xa1\x25\x80\x3a\x22\xe5\x2b\x24\x6a\x4b\xe4\x1c\xfc\x83\xf3\xf8\x61\x8c\xd5\x14\x06\xe5\x29\x14\x3c\x7c\xe7\xd2\x97\x83\x64\x26\x51\xc2\xae\x9a\xc6\xd9\xce\x69\x44\xb3\x59\x79\xc6\x62\xa8\xb9\xe7\x8c\x29\x73\xf0\xfb\xcc\x98\x32\xc2\x3d\x60\xc6\x66\x55\xeb\x78\xe3\xd8\xcf\xe4\xd8\xcb\x66\x1c\xfc\xc3\x71\xe7\x1b\xd7\x8e\xec\xab\x19\x78\x09\xb8\x6a\xe0\xd3\xdd\x03\x9f\xa6\xe5\x81\x7f\x02\x35\xf7\x1c\xf8\xcb\x60\x56\x21\x18\x2b\x59\x56\x87\x85\xd6\x63\xba\x69\x0e\x6a\x42\x90\x1c\x54\xbc\x6d\x30\xbe\x52\xf2\x56\xfa\x3b\xa0\x0d\xec\x41\xb3\xcd\xe2\x87\xa0\x21\xd9\x7c\x0e\x2a\x07\x5b\xa9\x2a\x35\x95\x9e\x87\x4e\x69\xf7\xb8\xdf\xea\x1e\xbb\xdd\x63\xe9\x6d\x87\xd9\x52\x6a\x55\x45\x3d\xe8\x67\xa8\x2c\x92\x4a\x6e\x57\x34\x7a\x33\xf3\xe6\xb2\x4a\x69\x51\x4c\x99\xba\xd0\x46\x55\xe3\x47\x01\xd7\x21\xc2\x7b\xa2\xb6\x99\x9f\xee\x6c\x49\x31\xbe\xfd\xdb\x82\x45\xbf\x13\xac\x5a\x9d\x07\x80\x15\x24\xad\x87\xd7\x6c\xed\x8e\x9d\xa2\xd8\x7b\x2e\x4d\x31\x10\xa7\x48\xe3\x7e\x7c\x26\xe9\xc8\xba\x78\x88\x8c\x5b\x8f\x4d\xc8\xc0\xe1\xcd\x61\xda\x91\xf5\x25\x38\xe1\xc0\x60\x27\x63\x9d\x7a\x74\x18\x81\x6e\x4f\x5a\x57\x3a\x11\x8d\x56\xab\x8a\x7a\xd2\x95\x87\xba\xda\xc4\xf8\x6e\xec\xa5\x4c\x3e\x49\x77\x05\x22\x01\x4d\xda\x05\xdf\x2c\xf2\x71\x40\xc1\x8f\xf6\xb0\xfd\xf6\xec\x9f\x9f\x7f\xfe\xf8\xf6\xf9\xe5\xeb\x8b\xb7\x45\x8e\x25\x88\xfe\x10\x38\x1f\x2e\x5f\xbe\x23\x81\x3d\x86\x4a\xaa\xcd\xe0\x2a\xaf\x45\x01\xee\x8d\x12\xe6\x7d\xe9\x01\xde\xc6\x95\x00\xe0\xee\x7d\x17\xdc\xcd\xd1\xed\xe0\x0e\x78\xfb\x74\xc0\xcb\x77\xc0\xf6\x42\xa0\xb6\x65\xe3\x61\xbc\x9b\x2b\x6a\x5f\x42\x43\x77\x53\x2a\xa6\x97\xab\x79\x05\x7b\xe8\x94\x57\x5f\xe0\xca\x03\x8b\x63\x95\x2f\x6d\x32\xf2\x66\x2d\xc5\xd5\x5e\xd3\x95\x2c\x51\xf2\x8a\xde\x57\x8b\xc8\x78\xf8\x8a\xf3\xfa\xdb\x6a\xc5\xb0\x6a\xac\x12\x03\xbc\xf1\x56\xf2\x35\xf4\xa1\xa4\xac\xd4\xc1\x84\x20\x55\xba\x8d\xc6\xae\x53\x18\xca\x56\xb7\x3c\x37\x15\x93\x03\x37\xf5\xa5\x31\x07\x3d\xbe\x2b\x8f\x83\x59\x78\x4c\x6b\xec\x81\x9b\x60\xd2\xed\xe0\xd5\xaa\x53\x1c\x58\xe8\xf3\xf8\x77\x19\xd7\xff\xe6\xc8\x89\x03\x70\xd5\xe0\x29\x35\x1b\x0c\x5f\x58\x3d\x7c\x92\x25\x19\x7d\x1b\xda\x3a\x92\xe1\xff\xbd\x23\xe9\x2d\xe5\x30\x2e\x36\x48\x95\x3d\x7b\x50\x61\x7f\x00\x8d\x48\xa3\xb1\x28\xe9\xa3\x4a\x25\x41\x21\x22\x4a\x5a\x26\x2b\xa2\xad\x39\x5d\xc8\x13\xf6\x0e\xc2\xc7\x64\x42\x8b\x21\x6c\xf2\x0a\x95\x3e\x28\x45\x9c\xc9\x76\x8d\xca\xbc\x5a\xa3\x82\xfb\x85\x59\x04\x5f\x68\x13\xed\x47\xd2\x24\xcf\x77\x4c\x5c\xb3\x7b\x70\x95\x92\x99\x74\xf1\xb2\x46\xbb\x76\x2f\xa6\xe7\x88\x62\xc3\xa0\xe4\x48\xc6\x9e\xf2\x82\xef\x09\x98\x77\x9f\xc6\x45\x45\xe0\xb4\xa4\xd7\xf1\x89\x7c\x91\x57\xe8\xa5\xbf\xab\x97\x95\x8d\xeb\x57\xe4\xd0\xfc\xb4\xd0\xfc\x86\x43\x24\x1c\x52\xf2\x38\x4d\x89\x7c\x05\x58\xc0\x69\x7a\x2f\x9c\xf4\x6b\x5d\xc0\x69\x54\x1e\x92\xb4\xd4\xfc\x88\xc8\x47\x1a\x85\xe6\x47\x87\x34\x5f\x70\x41\x01\x8d\xcf\xac\xc6\xed\x05\x56\x9e\x94\x59\xf5\xa4\xcc\xee\x85\x41\x6e\x52\xce\xab\x70\xd8\x7f\x66\xce\xab\x67\xe6\xfc\x5e\x88\xe5\x66\xe6\x6a\xc3\xe0\x94\xa7\xe7\xaa\x7a\x7a\xae\x0e\xc1\x21\xf7\xd2\xb9\xb8\xc2\xf3\x24\x12\x6f\x3c\x74\x1d\xde\x9e\x7c\x3a\x05\xfd\xbd\xb6\xa5\x31\xb2\xa4\xd7\x99\x44\xe6\x21\x4c\xce\xec\x84\x45\x88\x30\xb9\xa1\x67\xfa\xbc\x29\x5f\x74\x90\xaf\x59\x8a\x7e\x1e\xe1\x46\x31\x77\x20\x1f\x23\x4c\x3e\xd3\x6b\xe0\xd6\x52\xa8\xeb\x5f\xbb\xd7\x79\x33\xbd\x0b\xeb\xbe\xe7\xa6\xd1\xb8\xd1\x06\xc5\x77\xc1\xc4\x71\x2e\xe8\x8d\xda\x69\xcd\x03\x0d\x8c\x1b\x8d\x8b\x36\x4f\xbc\xc8\x3c\x3b\xc8\xc2\x91\xdd\x64\x0f\xb2\x9c\xec\xb7\x83\x04\xaf\x12\xc8\x5a\x49\x12\x7f\xec\x3a\x37\xf9\x33\xa7\xee\x97\xfd\x56\x5c\x16\x25\x9f\xd5\x1b\xf3\x2d\x8f\x61\x83\x19\x6b\xa2\x1a\x6a\x56\x65\x82\x86\x9e\x7c\xce\xdc\xaf\x6d\x2c\xd4\x5f\x1e\x62\x68\x04\xef\x58\x0f\xa9\x21\xb6\x04\xbc\xb6\xf7\xea\x69\x7c\xa3\xe9\x62\xbb\x6a\xe1\xb4\xe6\x07\xd7\x72\x82\x4b\xcf\xe3\x31\xc2\xb9\x10\x28\x1b\x81\x94\xab\x22\xac\x02\xa6\xf4\x0a\x58\x29\xce\x75\x0f\x78\x07\x63\xa2\x1f\xd1\x57\x23\x62\x18\xd8\xef\x81\x4a\xf6\xe8\xbe\x1a\x19\xc3\xb4\x7e\x0f\x64\xb2\x47\xfa\x15\xc8\x64\xca\x6c\x60\x28\x97\xbb\xce\x1a\x15\xda\xac\x3c\x6f\xeb\x1e\xd7\x29\xbd\x6c\x34\x9c\xcb\x26\xed\x1e\x63\xb7\x7b\x4c\xd5\x37\xed\x18\xb1\xa6\x82\x4b\x4a\x18\x97\xfb\x0a\xc1\xd6\x5b\x48\x0f\x19\xe9\x28\xef\x01\xe0\x30\x99\x49\x09\x7b\x5a\x5f\xe2\x30\x62\x2f\x2b\x25\xc1\x95\x65\xa6\x9c\x2e\x79\xf3\x26\xa0\x28\x62\xb7\x44\xfb\x9d\xba\x9f\xfe\xae\xdd\x57\x1a\xdd\xcd\xdd\x57\x34\xf8\xdb\x76\xff\x37\xed\xa8\x7c\x2a\xaf\x5c\x5c\x86\x70\x60\xcb\x67\xc7\xa9\x9e\xff\x72\x65\x79\x71\x09\x2b\xec\xb6\x14\x22\xbd\x20\x99\xdc\xaa\xeb\xaf\xc2\x58\xde\xee\x1a\x9a\xb5\x56\xc6\xe5\x15\x80\xd3\x5c\xd0\x42\xad\xdf\xae\x77\xab\xe2\x5f\xe5\xd9\x49\xb6\x63\x17\x4d\xa6\xb5\xdd\x72\xce\x19\xae\xb5\xc3\x6b\xcf\xb3\xd1\x6a\x55\x8f\xf2\x5b\x3d\x68\xbf\xeb\x1d\x52\xef\xe2\x35\xc6\x84\xad\x56\xb2\x69\xeb\x65\x60\xfe\xdb\x72\x76\x0a\x5e\x75\x4a\xf9\xf6\x96\x5e\x30\x32\xd7\x2f\xd9\x14\xc7\x34\x4f\xc8\xe2\xc9\xc4\x41\x09\x4b\x83\xaf\x66\xa7\x85\xa7\x4c\x86\xc0\xf4\x0b\x34\x51\x6e\x1c\x06\xe3\x2f\x88\x20\x5b\x29\x3f\x44\x15\x05\x67\xf1\x22\x65\x7e\x7c\x13\x21\xd1\xbb\x5c\xbe\x14\x50\xf2\x5c\x3b\x73\xc4\x1f\xc5\x3c\x98\x2c\xc1\x81\xb4\x73\x27\x26\xcd\x4d\xda\xf0\xd5\x7e\xf5\xfa\xc5\x4b\x22\x24\x0a\x77\xc3\xe4\x67\x3a\xff\x35\x26\x95\x91\xad\xb3\xdf\xed\x51\xb8\x48\x72\xda\x41\xcb\x77\xfb\x16\xc8\x45\x93\xf6\x74\x5a\xf5\x22\xc9\x5c\x94\xdc\x2d\x99\x97\xe4\xfc\x52\x9b\x18\x7c\x52\xd9\xd6\xc1\xf2\x70\xdf\xd5\x4c\xbf\x93\xf1\x87\x4e\xc6\x29\x3b\x78\x4d\xa0\x42\x35\xac\x7d\x41\xf8\xde\xb2\x1a\xc0\xae\x8a\x22\xbf\xba\xe6\x26\x64\xe1\xf7\xae\x2a\xeb\xb5\x10\x94\x2b\xa6\x2a\xf3\xf3\x2b\x67\x6b\x9e\xc4\x73\xfb\xaa\x64\xb5\x2a\xf8\x67\x09\xae\xa2\x38\x61\xef\x99\xe7\xc7\x51\xb8\xcc\xcd\xb4\xac\x9b\xa8\x2c\xc3\x21\xd5\xe3\x51\x89\x55\xaf\x02\x07\x19\xf7\xbc\xd1\xa8\x4a\x55\xd1\xd0\x73\xfe\x82\x8b\x41\x16\x0a\x11\x00\x36\x80\xc0\xa4\xa3\xd8\xac\xb2\x19\xc9\xf7\xcb\x8e\x47\xa1\xaf\xca\x72\x16\x21\xa5\x38\xd1\x5b\xeb\x47\x83\x4d\xd9\x43\x87\x95\x25\x12\x46\x3a\x58\x19\xc0\xfc\xa1\x51\xb4\xf9\x77\xb6\x86\x33\xa7\x19\xb6\xd6\x4f\x48\x7d\xf6\xf5\x51\xce\xe2\x64\xbb\x75\xc8\x9e\x02\xa7\x25\xf1\xee\x55\x3c\x93\x49\xed\xe2\x59\x50\x15\x9e\xd7\x62\xe6\x98\x77\x94\xf1\xee\x3b\x09\x0e\x88\x69\x6d\x73\xf2\x02\x7b\x8e\x36\xb1\x71\x02\x6b\xe5\x76\xe9\xe4\x85\x02\xa8\x5d\xdc\x0c\xa2\x6a\x16\xff\x9b\xec\x5c\x7a\x3f\xca\x61\x20\xc5\xf7\x2d\x6c\xde\x10\x90\x15\x28\x51\x9b\xe0\xc8\x65\x28\x0e\xf2\x2e\xe4\x1a\x7c\x64\x06\xa4\x99\x81\xdf\xbc\x23\x7d\x78\x75\xf1\xaf\xe2\x33\x55\x9f\xa5\x3c\x89\x97\xa5\xf0\x85\xb9\xa9\xd5\xcf\x61\xe5\x56\xf8\xa2\xe0\x6d\x7f\x73\x21\x78\x87\x8c\x8a\x2d\x4a\xae\xb8\xb5\xc5\xfb\xcf\x4b\xa5\x59\xe3\xae\xcd\xb5\xc0\xae\x49\xbd\x53\xc0\x59\x46\xee\x29\xa1\x7c\x7f\x34\x37\x99\x9c\x1e\x8c\x69\xb7\x80\x69\xd1\x77\xc5\xfd\x03\x9e\x14\x21\x1d\x14\xa8\xaf\x58\x79\xdf\x78\xd0\xbb\xa3\x40\x57\x40\xde\x16\x0d\x7a\xbf\x18\xd0\xa5\x51\xdb\x3f\xe8\xb6\x3d\xf8\x25\x9f\x1c\x07\x8d\xfe\xc6\x40\x58\x25\xb0\x32\xf6\xee\x40\x06\x86\x50\x81\x8a\x87\x62\x52\xee\xd6\x6d\x1e\x7f\x80\xe1\x95\x01\x20\x36\x8d\x62\x09\x64\x3e\x98\x95\x82\x7c\xed\x25\x81\x34\x4c\x92\x41\x90\x33\x0f\x23\x32\x4e\x44\x99\x1a\xec\x22\x7b\x37\x9c\xd5\x31\x2d\x9a\x99\xd4\xd4\x52\x46\x81\xda\x1f\x6d\x1e\xbf\x89\x6f\x58\xf2\xdc\x4b\xc5\x14\x01\x2d\x79\x19\x2d\xd9\x68\x1d\x3e\x20\x16\x7e\xc5\x38\xd1\x19\xa1\x79\x79\x42\x2b\x91\xd8\x36\x7f\x2d\xb9\xae\xac\xa1\x9f\xda\xe9\xcb\xc6\x81\x36\x05\xf6\xee\x8e\xae\xb1\x7b\x90\x75\x49\x9a\xfd\xac\x1a\xe0\xc0\x1a\x60\x83\xce\xe1\xc3\x6b\xf0\xda\x3c\xb8\xc1\xc1\x83\x5b\xd1\x85\x52\xe8\xb0\x8a\xa5\x0b\x9e\x3a\xee\xcf\x33\x6d\x28\x36\xbf\xa4\x76\xe0\x2f\x21\x74\x82\x68\xa8\x02\xaa\xb0\x46\xa3\x3a\x40\x58\x3e\x20\xd8\xa6\x60\xe6\x76\x9b\x55\x6c\x16\x62\xae\xc8\x28\x41\x7a\x5d\x6f\x8e\x25\x95\x1b\x86\x43\x98\xe0\x67\xd9\xc2\x2b\x2f\xf2\x43\x76\x39\x0d\x2c\x6b\xc8\x88\xc4\x24\x90\x47\x4d\x0f\x82\xf7\x94\xe2\xf5\xc0\x50\xa9\x30\x37\x94\x52\x07\x2d\x22\x9f\x4d\x82\x88\xf9\xd6\xc8\xc5\x7d\x2b\xd9\x65\x4e\xac\xde\xb1\x19\xa6\x99\xb4\x55\xd8\x25\x12\x63\xe2\xad\x56\x8e\x47\xc5\x50\x8d\x1d\xd1\xa6\x48\xab\x6a\x9b\x78\xb8\x4a\xe4\x8f\x61\xe2\xe5\x6e\x2c\x66\x7f\x10\x0f\x4b\x5e\x56\x1e\xbc\x8d\x6b\x33\xc6\xa7\xb1\x5f\x8b\xbc\x19\xf3\x6b\xe8\x41\x33\x6e\x3e\x40\x0f\x8c\x73\x39\x53\x3f\xe8\x0b\x08\x0e\x76\xe1\x4f\x20\xad\xc0\xd5\x90\x41\x80\xd0\x49\xde\x71\x14\xe1\xe6\xfc\x69\xcc\x72\xd5\xd9\xad\x62\xa8\x61\x62\x06\x9d\x21\x44\xfa\x91\x87\xb3\x92\xd2\x67\x53\x35\xa8\x23\x5f\xbe\xaf\x9d\x04\xf7\xb8\xe3\xc7\xe3\x85\xf2\xdd\x14\x39\x5a\x74\x7c\xfe\xe6\xf5\xf3\x7f\x7c\xd6\xa1\xbb\x48\xd2\xd6\xb1\xb0\xe4\x40\x5e\x5e\xfc\xfd\xef\x6f\x5e\x92\xa2\x96\x89\x51\x31\xf8\x52\x1e\xef\x09\xa9\x46\x7b\x5d\x6c\x34\xc2\x52\xf7\xd5\x86\x45\xd4\x55\x99\xf4\x77\x63\xa3\xf0\xea\xec\xed\xdf\x5f\x12\xd4\x46\xcd\xa4\x6d\x42\x64\xb5\x5f\xbf\x7d\xf7\xf1\x92\x38\x65\xa7\x5b\x85\xa6\xa3\x9d\x4d\x47\x04\x7d\x1e\x4f\xbd\xe8\x8a\x21\xc2\x8a\xad\xff\xed\xcd\xc7\xf7\xf7\x69\x1b\x9c\x76\x95\xe8\x3d\x8f\x90\x13\x5b\x4f\x88\xd8\x68\x71\xb5\x5a\xc9\x03\x93\xfe\xda\x82\x31\x5c\xae\x11\x86\x8b\xf8\xfe\xe3\xe5\x2f\x2f\x2e\xfe\xf5\xf6\x37\x1e\xae\x2f\x6c\x29\x4f\x54\xa5\xf1\xfa\xc7\xcb\x5f\x3e\xbe\xfb\xed\x5b\x5f\xcc\x2b\xda\xfe\xf9\xe2\xf9\xc7\x0f\xbf\xd5\x64\xc5\x05\xcb\x0c\x2b\x0a\xf8\x56\x6c\xe1\x1e\x53\xe2\x4a\xec\x88\x6c\xb4\x5c\x27\x97\xdf\x7e\x9e\x85\xba\xa2\x61\x3e\x2b\x8a\x9f\xc7\xd1\x24\x0c\xc6\xb9\x90\x53\x46\x9e\xb4\x1a\x89\x49\xb9\x99\xb5\x0e\x1e\x87\xd7\x62\x37\xb4\xb9\x0f\x89\xf0\xdd\x9a\x88\xff\xe5\x79\x52\xbd\x38\x7a\x9c\xde\xa9\xfb\x4d\xf7\x4e\xf4\xd0\xad\x77\xc9\x38\x95\x67\x1f\x17\x4d\xc2\x98\x5f\x06\x73\x44\xc6\x71\xc4\x59\xc4\x5d\xf4\x43\x5a\x5b\xd5\xfe\xed\xd6\x7e\xb8\xad\xad\x6a\xbf\xb8\xb5\x1f\x96\x88\xc0\x2b\x54\x69\xd8\x03\x81\xde\xc8\xb2\x98\x00\xaa\x44\x31\x89\xa9\xfc\xf6\xbd\xa5\xf5\x95\x4e\x83\x09\x4f\xdd\xbb\x5b\xb7\xdb\x21\x4b\xf7\xb8\xb3\x26\xca\xbd\xe1\xe5\x94\xcd\x20\xfe\x57\x1a\x79\x73\xf1\x37\x0c\x22\x96\x02\x8e\x61\x30\xfe\x72\x19\xcc\xe1\x23\x8e\x5e\xc5\xd7\xcc\x56\x18\x8a\xbe\xae\xc9\x5f\xc5\x79\xcd\xe3\x6e\xbd\xbb\x5e\xf7\xb8\xbe\xc8\xbd\x98\xf3\x94\x9a\xaf\x9e\xa4\x21\x7b\x5c\x80\x01\xf3\x60\xae\xc5\x11\x7a\x77\xeb\x0a\xc4\x3a\x4a\xae\x87\xf8\x6b\x0c\xaf\x7b\x91\x25\x7f\xe4\xe3\x86\x19\xef\x22\x5c\xfa\x07\x64\xed\x79\x18\xf3\xf6\x3c\x5c\x5c\x05\x91\x09\xda\xaa\x75\x8e\x22\xef\x9d\xcc\xa2\x83\x21\x49\x4c\xb8\xd7\x98\x76\x7a\xf1\x49\xd2\x8b\x9b\x4d\x5c\x2c\xa9\xfc\x6f\xe7\x00\x0f\xe2\x61\x5b\x6c\x65\xb8\x67\x02\xe1\x05\xd9\x3a\xb9\x13\x18\xdf\x0a\x5c\xbc\x2b\xf6\x6f\x12\xb5\x97\xea\xf7\x2f\x04\xa2\xa5\x5d\xca\x11\xd1\xdd\x76\x22\xbc\x36\x60\x3c\x27\x91\x52\x40\xd4\x86\xa1\x9f\x81\xff\x68\xe6\xf0\xb6\x10\x37\xc4\xb1\x6b\x1a\x87\x3e\x03\x5b\xcf\x11\x68\x9c\x04\x5e\x53\x31\x2d\x88\xa4\x62\xc5\x08\x46\xa7\x5a\x70\x30\xb1\xc0\xd0\x7a\x17\xbb\x4e\xaa\x1a\x20\x91\x80\xf8\x22\x9e\xbd\x0c\xd5\xf1\x50\xea\x4d\xae\x83\x34\x80\x93\x8c\x90\xbf\x2a\x9b\x5d\x44\x55\x0d\xe7\x1a\xea\x60\xab\x4b\xba\x45\x25\xd8\xe4\x97\x0f\x49\xcc\x3a\x04\xc7\x2f\xe9\x7f\x12\xee\x38\x51\x8b\xe1\x87\xf0\x6f\xd3\x49\x5a\x1c\x3f\x84\x7f\x31\x68\x95\x03\xcc\x95\x0b\x72\xd9\xc7\x80\x44\x16\xc5\x49\xbb\x9c\xc8\x9b\xf7\x03\x37\xb6\xdd\x20\x0a\x6c\x4d\x3e\x4b\x02\x96\xb6\x81\xc8\x01\x56\xa3\x01\xae\xc2\x4a\x80\xa0\x84\x44\x3c\xa5\x79\x18\x57\x49\xe0\xb7\x41\x55\x76\x06\x4a\xad\xf7\x9e\x1f\x2c\x52\x32\xa6\x77\x7e\x20\x45\x51\x37\x6d\x76\xd7\x24\xa4\x71\x8f\x49\x31\x03\x06\xf3\x85\x0c\xb1\x68\xb1\x57\x31\x04\x9a\x10\x03\xda\x21\x29\x6d\x75\xc9\x82\x76\x7b\x8b\x93\x44\x3a\xc1\x54\x64\xbc\x68\x36\xb1\x4c\x19\x2c\x5a\xdd\xe1\xa0\x33\x3c\xa1\x71\xfb\xb6\xd1\xd0\x89\x22\xe9\x54\x26\x39\x01\x5d\xb4\xba\x24\xa5\x0b\xa5\x33\xa8\x53\xaa\x7a\x32\x17\xeb\x4c\x55\x09\x44\x15\xb2\xb4\x3e\xbb\xc3\x35\x99\x58\x25\xd2\x7c\x89\x54\x96\xf0\x4b\xd3\x28\xa6\x98\xa4\x32\xd6\x63\xba\x5a\x39\x69\x65\x09\x79\x4a\xcb\xc4\xd3\x4c\x8e\x8f\xd4\x41\xe1\xee\xd6\x8d\xc8\xd2\xe5\x30\xd7\x95\x25\x93\xac\x24\x13\x88\xad\x81\xb5\x78\x30\x6e\x47\x8e\x13\xb4\x12\x7c\xe4\xc4\xad\xc8\xf8\x2e\xbe\xbb\x75\x3d\xea\xc4\x0f\x1d\xf6\x30\x6d\xf1\x66\x82\x9b\x91\xf8\xdd\x4a\x9b\xbc\x15\x60\x7c\xe4\xa4\x0f\xa1\x7c\x33\x69\x05\x98\x2c\xdd\xf4\xa1\xd7\x4a\x1f\xb2\x26\x5f\xaf\x73\xb8\xe3\xf6\xed\xa9\xf4\x5f\x34\x0b\x40\x5a\xc7\x8d\x46\xda\xbe\x3d\x51\x69\xde\xad\x49\x5b\x5a\xe5\x12\x12\xc8\x34\xab\x9c\x48\xd3\xcf\x60\x93\x56\x20\x88\xa4\x15\x91\x05\x8d\x1e\x06\xad\xe4\x61\xdc\xb3\x57\x84\x37\x4a\x9d\xf1\x43\xd6\x0c\x1f\xf2\xe6\x02\x1f\x65\xab\x64\xfc\x70\xdc\x0c\x1f\x86\x78\x2d\x27\xd5\x33\x0b\x8a\x4c\xd4\x87\x40\x5a\xc3\x9a\x9f\x4e\xfa\x13\x77\xbe\x76\x92\xf6\xad\x77\x2b\x58\xdc\xf1\xd8\x89\xdb\xb7\xe0\x46\xc2\x4a\x58\x8a\x84\xac\xc4\xbc\x58\x62\x5e\x2c\x31\x29\x96\x98\x88\x12\xf5\x2e\xd0\x9d\x7f\x32\x6e\xeb\xf5\x20\x3b\x3c\xa5\x9e\x00\x4a\xe6\xed\x25\x89\xdb\xb7\x44\xb4\x78\xe2\x39\xea\x27\x99\xb4\x6f\x89\x00\xd0\x0f\xdc\x94\x8c\xa8\x23\xc9\x6e\x1e\x07\xe2\x44\x29\xff\x04\x5f\x19\x19\xc4\x12\x44\x53\xb4\xd6\x12\x38\x3d\x74\x04\x8c\x96\xc0\xf7\x48\xe0\x04\xbf\xf0\x10\xf7\xec\x15\xe9\x93\x80\xb3\x99\x7b\x67\x60\xba\x23\x22\x7e\xc3\xf5\xb2\x3b\x25\x92\x31\xb8\x89\xfa\x21\x93\xd9\x7a\x5d\xcd\x62\x1a\x0d\x27\xa4\x77\xc0\xe4\x5d\x7b\x44\x46\xe0\x7e\x05\x18\xbe\x6b\x0f\xcc\x68\xd0\x1d\xe2\x35\x5e\xab\x8b\x97\x3c\xa7\x16\xe2\x4e\x36\x56\x27\x69\xb3\xdb\xcf\xf3\xb9\x71\x5b\xe0\x4e\x42\xec\x16\x6b\x56\x82\xe3\xed\x69\x1c\x7f\x49\x61\x93\x00\x69\x4f\x6d\x64\x19\xe3\xe1\x82\xf1\x14\x79\x23\x05\x26\xa5\x3e\x1c\xf0\xfd\x2b\xc3\x53\x67\x47\xbe\x3c\x1f\x54\xe3\xd2\x68\x38\x95\xe9\x42\x08\x90\x97\xa9\x95\xd9\xa4\x32\xb5\xba\xac\x00\x45\x7c\x16\x32\xce\xaa\x71\x10\x05\x04\xe5\x81\x18\x5a\x91\xaf\x58\x7d\x35\xfb\xd9\x58\x41\x6c\xc5\xf9\xc9\xdf\xd8\x95\x02\x8d\x28\xb1\xa8\xef\x44\xed\x1b\x31\xea\x14\x81\x5b\x57\x44\xa2\xf6\x54\x7e\x4b\xf7\xb3\x08\xbb\x59\x91\x20\x8a\x94\x27\x4d\xab\x1c\x24\xbe\x52\x85\x7b\xa5\x9d\xbb\xb7\xbf\x7c\x50\x42\xd2\x08\x78\x8d\xc6\x2e\x28\xea\x76\xc9\x2b\x4a\x15\x84\x39\x89\x2e\x07\x3b\xe2\x2c\xbe\x66\x88\x88\xd3\x3b\xc8\xf0\x92\x10\xd3\xe9\x82\x8b\x33\x50\x99\x0c\x23\x7c\x77\x88\xa4\xb1\xbb\x6c\x86\xa8\xbe\x40\xc8\x04\x22\xe6\x44\x59\xe1\x3c\xb6\x80\x6c\x59\x3e\x2b\x49\x9b\x09\x2d\xcd\x00\x89\x69\x92\x73\x82\xda\x2c\x73\x0c\x90\xbe\xdb\xb7\x24\xd0\x45\x5f\x65\xce\x87\xab\xcb\x2e\x7b\xbc\x7d\xdb\x62\x05\x1f\xc6\x6f\xd8\x84\x3b\xf8\xd4\x24\x0f\x14\xed\x0c\x1d\xdc\x8a\x1b\x0d\x47\xd4\xa1\x31\xe1\xed\xdb\x6c\xc3\xe1\xed\x5b\x02\x96\x47\xed\x65\x09\x1e\xf8\x44\xce\x81\x9b\x6a\x70\x01\x80\x5b\xb6\x68\x80\x49\x90\xbe\xf5\xde\x0a\x40\xb8\x1f\xd9\x52\x7b\xfb\x96\x16\xbe\xdf\x25\xec\x5a\x50\x74\xbe\x90\x40\xa1\xa2\xa0\x48\xcf\x80\x2f\x8b\xc0\x97\x05\xe0\xcb\x2a\xe0\x4b\xca\xdb\x4b\x52\x51\x50\xa4\xe3\x35\xc9\x31\x52\x5b\x2e\x49\x48\x2c\xa7\x34\xa8\x98\x52\x8f\x46\x6d\xa9\xef\x92\x47\x2c\xa7\xbc\x76\xe4\x69\x8d\x30\xdc\x43\x82\x97\x78\x42\xee\x92\xfe\x69\xbc\x6a\x5a\x72\x84\x78\x93\x1f\x04\xb2\x2c\xa4\x2c\xd7\x98\x48\x0f\xc9\x77\xe0\xbe\xb7\x50\x7e\x0b\x65\xf1\x78\x5e\x84\xb5\x99\xb6\xd6\xda\x54\x92\x64\x61\xac\x6d\x26\x5f\xa8\xa6\xce\x7e\x8d\xc6\xa6\x1c\x87\x09\xa1\x66\x9d\x3f\x81\xd8\xc7\xed\xf2\x81\x43\xaa\x48\x55\x30\x3a\x04\x75\x73\xcb\x75\x7b\x6d\x6d\x6f\x04\xdb\x73\x76\x40\xcc\x15\x2b\x9a\xf0\x70\xca\x4c\x4c\x86\x5c\x64\x8b\x7c\x9f\xd4\x55\x62\x71\xba\xd5\x79\xbd\xd1\x80\x00\xeb\x00\xab\xad\xac\xa8\x37\x14\x35\xf1\xd7\x1b\x0d\xc7\x31\x8d\xd7\x8e\xca\xfe\xff\x37\x03\x90\x0f\xbb\x2f\x63\x07\xa9\xf7\x87\x6a\xd8\x80\x42\xb4\x13\x6a\x17\x79\xa3\x34\x0e\x17\x9c\xa1\xb5\x52\x3a\x17\x20\xda\x47\xfd\x46\x43\xb9\xa7\x1e\x79\xe3\x2f\x57\x49\xbc\x88\x7c\x17\xfd\x65\x32\x99\x20\x82\xbe\xb6\xe0\xb2\x02\xb9\xa8\xdb\x79\xdc\x41\x64\xee\xf9\x7e\x10\x5d\xb9\xa8\xd3\x7e\xcc\x66\xb5\x4e\xfb\x29\x9b\x41\x5c\xfb\xc4\x67\x49\x2b\x81\x63\x0f\x12\xb9\x4f\x20\x7d\x12\x47\xbc\x05\x86\x0b\x22\xed\x47\x91\x26\x8b\xba\xa8\x3b\xbf\xad\xa5\x71\x18\xf8\xb5\xbf\x74\xbb\x5d\x44\xfc\x20\x9d\x87\xde\xd2\x45\x51\x1c\x31\x44\xd0\xcd\x34\xe0\xac\x95\xce\xbd\xb1\xa8\x1c\xc5\x37\x89\x37\x47\xc0\x95\xf3\x33\x6c\x2f\xca\x2a\x57\xa3\xea\x30\x22\x4e\x04\x47\x3f\xa4\x47\x64\x4c\x8f\x7e\x18\x1f\x91\x90\x1e\xfd\x10\xde\x1e\x91\x85\xf8\xbb\x3c\x22\x73\x7a\xf4\xc3\xed\xa7\xf6\x5d\x87\x74\xd7\xce\x27\xff\xae\x43\xd6\xf8\x88\x4c\xe8\xd1\x0f\xcb\x62\xea\xc6\xb3\x08\xd7\x67\x49\x3e\x4d\x58\x2a\x76\x23\x08\xf6\x94\x09\xad\xe2\xf0\x94\xe4\x12\xba\xe0\x91\xc0\x4a\x38\x1e\x62\x77\x3b\xf0\xf1\x22\xb9\x66\xfe\x1b\x71\x18\xdd\x03\xfc\x2e\x68\x70\xa8\x15\x14\x90\x3f\x06\x73\x36\x57\xd0\x55\x7a\x49\xf0\x1e\x1c\x3f\x94\x2d\x81\x5c\x2c\x1b\xde\xaf\x6c\x13\x3a\x8d\x90\x8c\x64\x65\x57\x1a\xd8\x10\x75\x6f\x36\xe6\xab\xb1\xdb\x98\x7f\x3c\x94\x97\x45\x82\x8f\x99\xee\x79\x23\x16\x5a\xdd\x8d\x93\xe0\x2a\x88\x3e\xc0\x07\x6c\x6f\x76\x39\x5a\x59\x4c\xe6\x55\x33\x4a\x79\x4f\xc5\x0a\x70\xe0\xcc\xc8\x71\xa5\xfc\xcc\x1a\x8d\xba\x8e\xa0\x80\x90\x20\xad\x58\xc2\x68\x27\x4c\x5a\xc4\xa0\x1f\xc6\x1c\x91\x58\x54\xdf\x3a\x93\x73\x96\x8c\x59\xc4\xfb\x01\x2d\x26\xed\x20\x01\x55\x2a\x95\x8e\x45\x8a\xa9\xb9\x31\xc5\x04\x45\xf0\xdc\xd3\xea\x41\x90\x19\x84\x79\xfe\xaf\x8b\x94\xff\xd3\x0b\xdf\x25\x6c\x1c\xa4\x62\x21\x1e\xfd\x30\x2f\xad\x2a\xd8\x1b\x88\x69\x69\xea\xa5\x17\x37\xd1\xbb\x24\x9e\xb3\x84\x2f\x1d\x34\x0f\x40\xe1\xb4\x1d\x69\x98\xee\x8e\x20\x82\x46\xc3\xf1\x68\x45\x7a\x15\xae\x5e\x69\x6c\x23\x04\x77\x59\x8c\xee\x58\x26\x62\x1e\xfb\x59\xc5\x94\xe4\xb3\xb0\x6b\xe7\x21\xb4\x1b\xe2\x38\x0e\xe3\xc4\x82\x38\x26\xf9\x2c\x1b\xe2\x58\x41\x94\x57\x89\x5e\x7a\x76\x1b\xa4\x6f\x44\xb3\x0e\x82\x83\x26\x22\x1c\x5b\xa0\xc2\x0c\x94\x3c\x87\x1a\xd5\xbb\xae\x67\x03\x0f\x37\x03\x5f\x56\x00\x5f\x64\xc0\x97\xbb\x81\x2f\x00\xb8\x54\xe0\xc2\xbb\x4e\x30\x6e\xcb\xb0\xd6\x66\x3a\xe9\xbf\x33\xed\xb5\xc3\x71\x61\x9a\xd4\xdb\x51\x08\x58\xc3\xbd\xd9\xfc\x32\x06\x63\xcb\xa8\x72\x6b\xb3\x14\xe3\x1b\xc6\xc1\x44\x68\xb3\x51\x5a\x96\x50\xfa\x65\x1b\x4a\x93\x6a\x94\x92\x4a\x94\x96\x55\x28\x2d\x8b\x28\x95\xc9\x35\xda\xba\xb4\xe6\x84\x91\xa8\xb2\x5e\xb2\xb5\xde\x84\x30\x92\xec\x64\x27\x72\xc4\x78\x30\xfe\xa2\x34\x85\x7e\xcf\x37\x34\xf2\x3e\xe6\x1e\x67\xfe\xbf\x05\xad\x5c\x8a\x22\x0e\xc7\x7d\x94\xc8\x54\x48\x40\x2e\x82\xba\xa8\x27\xf5\x3c\x36\xff\xd7\x6d\xc0\x57\x4f\x6b\x3b\x47\xb5\x20\x2a\x34\x3f\xf0\x87\xd2\x46\xb8\x98\x5a\xe4\x19\x53\xe3\x93\xad\x92\xca\xb0\xb2\xcb\x4d\x9f\x7b\x9c\x5d\xc5\x02\x54\xa1\x44\xbf\xd4\xc4\x60\x3a\x94\x4b\xdb\xad\xcc\xba\xc6\x94\xd2\xa8\x4c\xa7\x1b\xc1\x98\x42\x47\x9f\xfe\x7a\x74\x45\xd0\x5f\xff\xfa\xd7\xbf\x22\x8c\xf1\x7a\xbd\x53\x9c\x58\x5a\x53\xa1\x47\x6b\x96\x1b\x2d\xbb\x44\x6e\xc0\xac\x8c\xe2\x98\xcd\x36\x0f\xcb\xb2\x3c\x2c\x16\xa0\xc1\xac\x34\x32\x85\x5c\x18\x9c\xa4\xbc\x62\xb6\x01\xdb\x38\x3e\x6a\x6f\xdc\x93\x58\xf5\x53\xf7\x62\xeb\xe8\x87\x5b\x54\x64\x07\xb9\xf2\x82\x9b\xe4\xb2\x71\x19\x23\x19\x6d\x6d\xcf\xb9\xda\x8c\xc9\x12\x55\x0d\x45\x86\x49\x52\xc8\xde\x84\x09\xcb\x4b\xc2\x19\xe9\x57\xda\x44\x6c\xc5\x7b\xc0\x86\x86\x91\xcf\x62\x9f\xa9\xf0\x60\xc8\x92\x9d\x8a\x45\x8a\x8d\x5b\x1c\x9c\x96\x5f\x04\x54\xb7\xbe\x9d\x7d\x37\x1a\xca\xd6\x67\x47\xb9\x22\x26\xbf\x7c\x1f\x4c\x96\x7b\x62\xb2\xdc\x8c\x49\x7e\x61\x7d\x97\x69\x19\x1b\x90\xfb\x4f\x4e\x61\x97\xa2\xb6\xba\x8d\x24\xda\x35\x92\xba\xd5\xf4\x3d\xce\xfe\xce\x22\x06\xa1\xa6\x41\x2f\xdc\x33\x8f\x3a\xa0\x80\xf4\x1c\x01\xdb\x5d\x4c\xaa\xf7\xe0\xec\xea\xb9\xfa\xf4\xa9\x6e\xa2\x71\x1e\xcd\xf2\x5e\x45\x8b\xd7\xeb\xa0\x71\xd3\xf8\xe8\x39\x69\xcf\x3c\x3e\x9e\x3a\x4c\x08\x8d\x62\x10\xdf\xb3\xab\x97\xb7\xf3\xf6\x5f\xbb\x10\x25\xcc\x7c\x91\x08\xee\xf4\x7e\x0e\x6e\x99\x74\x49\x49\xb9\x59\x58\x72\x27\x2d\xcc\x9f\x2d\x0c\xd1\xbc\x8a\x52\x62\x00\x17\x69\xac\x1d\x44\x67\x49\xe2\x2d\x1d\x64\x44\xa0\x54\x3d\xb2\xb2\x6e\x8e\x37\x49\xb4\x91\x9e\x41\x3e\x2c\x8b\x52\x8d\xc6\xd6\x6c\xa5\x4e\x38\xed\x94\xf0\x2e\x6d\xd0\x39\xbd\x65\x35\xf6\x82\x09\xbd\x8f\x79\x9c\xec\x8f\x7c\x81\xa1\xda\x02\xc0\xba\x57\xb8\x7e\x07\x4d\xef\x5d\x10\x05\x3c\xf7\x60\x28\x62\x37\xb5\x08\xa2\xef\xa8\xee\xb9\x9c\x44\xde\x8c\xb9\x48\x11\x0d\x22\xd7\x2c\x49\x41\xab\xd1\x69\xff\xd8\x7e\x82\xd6\x38\x33\xc1\x20\x25\x03\x0c\xb4\x48\x19\x18\xf1\x8d\x39\xea\x49\x23\xdf\xb6\x44\xdc\xec\x7c\x9c\xa0\xcf\x9f\x61\x49\x2e\x42\x86\xc8\x1d\x58\x37\xbb\xf5\xce\x5a\x1c\x4a\x9e\xc7\xf3\xe5\x65\xfc\x3c\x0c\xe6\xa3\xd8\x4b\x7c\xfd\xd4\x5f\xaa\x7a\x15\x3c\x2f\x4d\x83\xab\x68\xb5\xb2\xfb\xa1\x37\x66\x4e\xbb\x3d\x7e\x52\x34\x7c\xec\xf1\x66\x53\x5b\x04\x98\xbc\x01\x1f\x1a\xe9\x27\x11\xfb\x79\x84\x55\x03\xb9\xb9\xb4\x36\x6d\x6d\x17\x93\x80\x38\x3a\x48\x86\x34\x1a\x24\x43\x13\x4a\x99\xad\x49\x9c\xf3\xa7\xa8\x6f\xdd\x99\xe4\x38\xba\xb1\x88\x76\x7a\xd1\x89\x8e\x42\xd8\x8b\x34\x6e\x09\xe5\x83\x68\xd8\x4b\xda\x2c\x5a\xcc\x58\x02\xd6\xfb\xf6\xc7\x6a\x55\xef\x92\xa4\x3d\x8e\xa3\x49\x70\xb5\x90\xf9\xf5\x0e\x41\xd2\x3c\x3c\x88\x40\xf0\x4c\xda\x37\x49\xc0\x55\x1e\x26\xd5\x53\xc0\x48\xd2\xfe\xc2\x96\x24\xc1\x6b\x8d\x7c\x91\x29\xe9\x45\x2e\xaf\x22\xcc\x88\x90\x08\x93\x04\xd2\x88\x58\xc3\xeb\xb5\x83\x49\x40\x53\x27\x72\x3a\xe0\xc6\x58\xfc\xea\xfe\xf4\x13\xb6\xac\x31\x52\xfb\x61\x5a\xa3\xc1\xda\xd9\xec\xf7\x99\x7b\xa7\x74\x61\x2e\x5b\x67\x66\x0a\x63\x39\x60\xc1\xc4\xa9\xdb\xb6\xfa\xef\xd9\x84\x25\x2c\x1a\x1b\xb3\xfa\x69\x90\xd6\xa6\x5e\x1a\x3d\xe0\xb5\x11\x63\x51\x4d\x90\x77\xe0\x85\x41\xca\xfc\x5a\xab\x96\x2e\xe6\x2c\x71\x70\xae\x84\x98\x41\xe6\x67\x2f\x46\xf9\x6a\xa5\x8d\x38\xad\x75\xd5\x68\x64\xea\x05\x2b\xb9\xcf\x5c\xbe\x76\xca\x44\x9a\x23\x44\xdd\x07\xae\xed\x09\xc5\x78\xf6\xea\xf9\xcd\x47\xf4\x6c\x3f\x4b\xd9\xe7\x5e\x14\xc5\x1c\xf0\xae\x79\xd2\x83\x65\xcd\x4b\x6b\x9e\x99\x30\x84\xd7\xd2\x28\x92\xe3\x5e\x66\x43\x53\x5c\x01\x24\xa5\x92\xcf\xc4\x98\x84\xb4\xd3\x0b\x4f\xe2\x5e\xd8\x6c\xe2\x74\x10\x0e\xad\x25\x11\x9a\x08\xf8\x11\x4d\xe8\x58\x02\x16\x87\x99\xf6\xe7\xcf\x40\x03\x9f\x3f\xaf\x56\x8a\xa6\xae\x18\x7f\xa7\xc9\xe2\x62\xe2\x70\x8c\x61\x7d\xb4\xbd\xf9\x3c\x14\x24\x06\x6f\xcc\x86\x82\x5c\xc7\x1e\x77\xe0\x8c\x95\xb4\xe3\xe8\x79\x18\x8c\xbf\x94\xe2\x8d\x72\x9a\xc0\x3b\x91\x94\x44\x94\xc3\x03\x6d\xd0\x2e\xc5\x91\x18\x6b\x92\xd2\x2c\x46\x25\x19\x8b\x74\xc9\xac\x48\x48\x03\xad\x4c\x6d\x3f\x57\x05\xda\x71\x14\x2e\x9d\x14\x93\x05\x75\x3a\xc4\xd3\xf9\xd8\x89\xc8\x18\xf7\xe2\x46\x23\x76\x22\xb2\xc0\x24\x6c\x34\x42\xd9\xa6\x3d\xdd\xd9\x31\x4e\x65\x6a\x94\x4d\x69\x9d\x20\x63\x96\x39\x09\x89\x70\x69\x11\xe9\x49\xae\x24\xa3\x4c\x9c\xa9\x9e\xf2\x0f\x82\x6e\x6b\xec\x76\x9e\xb0\x54\x70\x5e\x69\xf2\xce\x02\x3e\x65\x49\x6d\xc4\x60\xe3\x95\x16\xd2\x1a\x3a\xa9\x09\x1a\x41\x4d\xdd\x02\x16\xdc\x5f\xcf\x8d\x66\x9b\xe3\x84\xc1\x1b\xc9\x46\xc3\x5e\xcf\x77\xe3\xcc\x54\xcf\x55\xbc\x98\x91\x8c\xe9\xb8\xf5\x2e\xd1\x1c\xc5\xad\x77\x88\xcd\x7d\x04\xd3\x16\x5c\xbb\xd1\x70\x54\x1b\x69\x8e\x26\xfa\x95\xa9\x30\x38\x2e\xcb\x28\x8a\x72\x41\xc2\x84\x61\x12\x3b\x9c\x0c\xee\xbe\xb0\xa5\x8b\x12\x16\xf9\x2c\x41\x44\x62\x54\xed\x67\x5a\x12\x0c\xa7\x8e\x74\x24\x4a\x98\xa6\x17\x66\x08\x84\x19\xba\xc1\x24\xaa\x8c\x85\x75\xb7\xce\xef\x02\x0c\x73\xf3\x44\x20\xc1\xa7\xb4\x63\x08\x7e\xfb\xb6\xc0\xe4\xb6\x20\x76\x04\x2a\xf6\x06\x23\xb7\x45\x6b\xb1\x18\x90\xc0\x10\x11\x24\x31\x14\x3f\x24\x86\x88\x20\x8d\x21\x82\x40\x31\x9b\x08\x9a\x1b\x80\x59\x09\x78\x30\xad\x6f\x61\x62\x92\x38\x77\x6b\x12\x91\x3b\x45\xa0\xd2\xaa\x5a\x7d\xac\xc5\x59\x77\x28\x58\xb6\x93\xd5\x7f\xb7\x48\xd8\x73\xfd\xbe\x0b\x63\x9d\x2e\x3a\x96\xd2\x3b\x89\xaa\xab\x1e\x5a\x6b\xf9\x40\x7e\xae\xcb\xb6\x97\xb9\xad\x5f\xdd\xcd\x3a\xc7\x9d\x8e\xe8\x14\x12\x90\x6a\x3c\xae\x8d\x35\xd3\x74\x6b\x7f\x11\x13\xbd\x26\xb5\x97\x11\x67\x09\xea\xb1\x36\xbb\x9d\xc7\x09\x4f\x2b\xaf\x11\xe0\x0a\x81\x8c\x49\x48\x16\xe0\x4b\x60\xb5\x72\x38\xbd\x5b\x83\xf3\x61\x6d\x71\x2c\xd2\x93\xa5\x58\x76\x1e\x4d\x20\x02\xb0\x36\x0b\x57\xb4\xff\xde\x8b\xae\x98\x83\xc9\x38\xcb\xb8\x62\xfc\x83\x76\xc9\xe7\x60\xe2\x84\xc5\x3a\x7a\x74\x95\xf7\x21\xe9\x3c\xe2\xb9\xbc\x6c\xa4\x8c\x84\x6d\x88\x06\xdf\xf6\xc2\x90\x22\x78\xba\x8b\x4c\x9a\xbe\x0f\xa2\x68\x22\x84\xde\x2c\x83\xc7\x73\xda\x31\x5f\x62\x48\x28\x4a\xd8\x98\x3b\x1d\x52\x53\xff\xe1\xac\x34\x5c\xc5\x7c\x98\x7b\x63\x46\xd1\x3c\x61\x56\x06\x1b\x7d\x09\xf8\xc7\x94\x25\xb2\x0b\x54\xd1\x98\xce\x3f\x8f\xbf\x6e\xce\x9c\xa5\x9b\xf3\x16\x15\x39\x9e\x2f\x4d\x57\xde\x04\x29\x17\xc7\x13\x07\x8d\x81\x8e\x33\xe3\x81\x08\xdf\x45\xed\x94\xc7\x73\x41\x3e\xde\x95\xa7\x86\x54\x9f\x58\xa4\x55\x4a\xc2\x04\x10\xf5\xe6\x41\xdb\x44\x4a\x8a\x78\xe1\x71\x4f\x7a\xba\x50\x76\x79\xc5\xbc\x54\x59\xec\x69\x88\xca\x82\x9c\x98\x19\x1b\xc5\xfe\x52\x5d\xd1\xc1\xda\x71\x42\x4c\xb4\x0b\xa3\xb7\xb1\xcf\xd4\xb4\xa5\x22\x7d\x2c\x7a\x24\x09\x22\xc5\xa4\x6e\x60\xb0\x5b\x36\x7e\x1e\xcf\x66\x5e\xe4\xab\x2e\xe2\x72\xa8\x5a\x91\x5e\x1b\xcb\x52\xb5\x1b\x2f\xad\x2d\xa2\x74\x31\x1e\xb3\x34\x9d\x2c\x42\x84\x7b\x0b\x5a\xef\xac\xc7\x70\x2c\x9a\xe3\xbb\xa8\xd1\x10\x4c\x36\x0e\x59\x9b\xc9\xfa\x0b\x78\x9a\x09\xeb\x41\x40\x5a\xa4\x41\x74\x55\xb3\x5a\x76\x6b\x88\xcc\x31\xb1\x2a\xde\x78\x49\xe4\x20\x9e\x2c\x45\xc9\xd7\x2f\x6b\xe9\x9c\x8d\x83\x49\x30\xae\xa5\x7c\x31\x99\x20\x0c\x94\xaf\x0c\xf0\xb7\x8f\xda\x6a\xa5\xe6\x94\x89\x1d\xf2\x1e\x78\xe6\xc0\x97\x31\x55\x55\x27\x5e\x18\x8a\xd2\x23\x6f\xfc\x45\x00\x98\x27\xf1\x6c\xce\x91\x90\x16\xcb\x7b\xbf\x73\x34\xf3\xc6\xb5\x38\xad\xdd\x1e\x05\x6d\xce\x52\xee\x44\xde\x75\x70\x25\x8e\xc0\x40\x8c\x67\x57\x82\x3f\xf5\xd1\xa7\xc5\xf1\xa3\xee\x8f\xc8\x45\xcf\x79\x12\x22\xdc\x44\xcd\xe7\x28\x3b\x1e\x1b\x35\xcd\x5f\xee\x3e\xa5\x0f\xbf\xb0\xe5\xa7\xf4\xe1\xfa\xe8\x8a\x88\xed\x05\xcd\x58\x9a\x7a\x57\x20\x26\xf3\x3e\x6f\xab\x4f\x37\xc6\x44\x8d\x9a\x44\xd0\x09\x08\xc3\xeb\xf5\x24\x88\xbc\x30\x5c\xde\x8d\x1b\x0d\xc7\x96\x0d\xd4\x06\x3b\x56\x17\xde\x40\x3f\xfd\xdc\x97\x93\x62\x57\x27\x9c\x85\x21\xa4\xa5\x0e\x06\x71\x23\x4f\xa8\xea\x39\xad\x26\x54\xcf\x31\x62\xc4\xa2\xc0\x5d\xf1\x5d\x05\x73\xd4\x3b\xe1\x06\x56\xd6\x03\xe1\xb9\x9d\x88\xf6\x9f\xc7\x8b\x48\x7b\x61\xa8\x59\x00\xb2\x9d\x8f\x67\x60\xe4\xbb\xf0\x97\x3a\x48\x38\x18\x67\xd3\x4e\x2f\x39\xb1\x81\xf5\x92\x66\x13\x47\xda\x1c\xfb\x8a\x71\xe8\xe7\x19\x77\x12\x8c\xb5\x6f\x66\xde\xe6\xde\x15\xbc\x62\xe0\xf1\xc7\xf9\x5c\x3f\xc3\x53\xce\x98\xe1\x65\x03\x72\xe1\xf7\xe5\xcb\x7f\x5f\x9e\xbd\x7f\x79\x86\x5c\xed\x33\x44\xf9\xb2\xd1\x67\x03\x4e\x85\xcc\xb3\xb6\x66\xba\x30\xbc\xc4\xea\x15\x7a\xee\x25\x0c\xde\x64\xb1\xb6\x98\x2f\x71\xe4\x28\x57\xb0\x7b\xb3\x5a\x81\x7f\xf7\x97\xf9\xf7\x47\x30\xec\x86\x49\x70\x69\x93\x24\x84\x27\xf5\x74\x7d\xbd\xae\x38\xff\x3a\x25\x73\xf8\x5e\x94\xbf\x8a\x32\x87\x09\xee\xca\xb7\x4c\x15\xfb\x1e\xc8\x8e\xac\xfd\xfc\xc3\x07\x81\xfc\xf3\x0f\x1f\xda\x2c\x1d\x7b\x73\x13\xeb\xdd\x4e\xeb\xc9\xf9\x2b\x3f\xff\x2b\xbd\xfe\xab\x14\x36\xff\x77\x06\xe9\x7f\xd7\x12\xf6\x9f\x45\x90\x30\x78\x4e\xab\xab\xb7\x51\x76\xae\x10\xf4\x20\x5f\xea\x3a\x0c\x93\xc4\xbc\x30\x21\x31\x6d\x75\x21\x80\x26\x58\xea\x8c\xa7\x5e\xf2\x3c\xf6\x05\x3d\x74\x70\xaf\xd9\x8c\x4f\x92\x1e\xee\xd4\xa9\xc3\xf3\x99\x31\xc6\xfd\xa0\x49\xf9\x29\xed\x36\x1a\xfc\x84\x3e\xea\xae\x56\xdd\xe3\x67\x94\xf2\xd5\xaa\x03\xf1\xdc\xf9\x29\x7d\xfc\x23\xe4\x3d\x79\xb6\x5a\x75\x4b\x69\x8d\xc6\xe3\x27\x94\x7a\x7d\xf4\xe9\x13\x6a\x72\xf3\x8e\xd8\xe9\x3e\xc5\x4d\x54\x43\xae\x84\xd2\x05\x75\xb8\x28\xc9\x57\xab\xba\x23\xda\x3b\xfe\x71\xb5\x52\x09\x3f\xc9\x3f\xf9\xa6\xf8\x29\x7d\xfa\x04\xbe\x7e\xea\xc0\xd7\x4f\xcf\xe0\xab\x7b\x7c\x8c\x65\x6b\xb2\x27\xd0\x0b\xd7\xfe\x1d\x34\x29\xfa\xb4\x98\x4c\x26\xbe\x61\x4d\xc1\xba\x67\x4f\xdc\x6a\x25\xe7\x16\xe4\x17\x7b\x2a\x29\x17\xe2\x59\x84\xd7\xf2\x24\x25\x4f\x5f\x91\xd3\x7d\x82\x2b\x9e\xba\xe4\xc4\x2d\x6e\x1d\xaa\x69\xbd\x63\xc4\x2f\x10\xbe\x1c\xcf\x49\x04\x7f\x89\x9c\xae\x38\x84\x05\x54\xfc\x7c\xda\xc1\xb8\x27\x7e\x3c\x79\x6c\x1f\xd6\xbd\xc3\x0f\xeb\xe9\x6f\x71\xa4\xfd\xff\x84\x2a\xc0\x20\x19\xfe\x79\xe0\x3b\xf4\xc0\x27\x5d\x3c\x77\x3b\xcf\x1e\x3d\x7b\xdc\xfd\xf1\xf8\x51\x8f\xeb\xd3\x47\xa5\xfc\xef\x91\x39\x45\x9f\x3f\xcb\x2e\xb5\x12\xe6\x8d\x79\x0b\x4c\xfe\x6e\x79\x0b\x35\x9d\x0e\x09\xb2\x73\x3e\x6e\xa2\xcf\x9f\x11\x99\x54\xeb\x65\x8c\xf9\x19\x49\x7a\xea\x39\x69\xb4\x55\x73\x12\x64\x9a\x13\x8f\x76\x7a\xde\x49\xdc\xf3\x9a\x4d\x1c\x0c\x3c\x5b\x73\xe2\x19\xcd\x09\xcf\x34\x27\x6c\x9b\x46\x24\x90\x1a\x11\x36\x0b\x38\x67\x49\x85\x54\x34\xd0\x20\xef\xe2\x28\xa7\xb4\xe5\x6a\xe3\xc5\x6b\x12\x4f\x26\xf9\x2c\xca\x75\x78\x08\xa7\xac\x73\xae\xf1\x3a\xa5\x0c\x5e\xce\x5e\x31\xee\x96\xdf\xdf\xb1\x35\x49\xed\x0c\x50\x05\x32\x1a\x49\x29\xbe\xbc\x41\x6a\xb0\x70\xfa\x85\x23\xe6\xda\x51\x8a\x9c\x36\x90\x16\x06\x0d\x09\x37\xa2\x4d\xe8\x44\x42\xf0\x2c\x18\x09\x82\x10\xf4\x5c\x4e\x67\x49\xc2\x51\x83\xe0\x30\xc1\x2f\x07\xf3\xa1\x3c\xfb\xab\x61\x2b\xde\xc2\x19\x6f\x25\xff\x0a\xc2\xf0\x3d\x1b\xb3\xe0\x9a\xc9\xe3\x6c\x61\x83\xcc\x14\x08\x12\x51\x50\xc6\x4b\x94\xad\x67\x6c\x76\x09\x78\xd2\x26\x7f\xe9\x68\x84\x3d\xc7\x09\x68\x84\x29\xa5\xe2\xc8\x89\xfb\x9d\x3a\xa5\xc1\x6a\xd5\x3d\x0a\x28\xa5\xdd\x23\xcf\x0d\x44\x42\xa3\xe1\xd5\x29\xf5\x70\x3f\xa6\x1d\xd7\x89\x69\x95\xb2\x89\xf7\x39\x0c\xb6\xbb\x80\x60\x63\x4e\xbc\xa2\x1d\x6d\x0b\xa1\xba\x2a\x56\x95\x63\x30\xc0\x72\x09\x05\xc4\xcb\x0f\x80\xd4\x9b\x54\x3d\xad\xcc\xba\xa3\x15\x0e\x6b\x12\x89\xe9\xca\x34\x00\xbd\x89\xcc\x53\x53\x21\x58\x54\x4a\x1d\x27\xd2\x23\x1f\x1b\xcd\x81\x64\x94\xed\x20\x7d\x2f\x45\x06\x5f\x2c\x22\xe9\xbe\xdb\xa6\x8f\xd2\xaa\x63\xbf\xd5\xaa\x63\xd9\xaa\xe3\xf6\xaa\xe3\xd5\xab\x2e\xe5\x1e\x67\x54\xb1\xbf\x44\xd0\xa0\x74\x75\x85\xd7\xa0\xa4\x94\x5e\xea\x0b\x9c\x08\x26\xc6\xe9\xac\x92\x76\x3c\x4a\x59\x72\xcd\xfc\xbf\x05\x3c\xc5\x0d\x8e\x1b\x0d\x98\x9d\x0f\x02\xa8\x53\x05\x54\x69\x0a\x59\x6e\x1d\x70\x7c\x0f\xd2\x55\x96\xb3\x39\x14\xa4\x3f\x04\x3b\x85\x9a\x57\xfc\x42\xb8\x55\x56\x78\xfd\x85\xcb\x37\xac\x96\x17\x81\x7f\x2e\x24\xe1\x0a\x6f\x41\x40\x09\x83\xf9\xd0\xb8\x03\xd2\x09\x6d\x31\xc5\x52\xc3\x24\x87\x4b\x12\x80\xad\x9b\xdb\x1b\x4b\x66\xb0\x64\xfd\x85\xbb\x6d\x4d\x7f\x8c\x66\x87\x23\x3a\x99\x14\x30\x2d\x99\x29\xc3\x44\x6d\x5a\x35\x19\xa8\x7e\x11\xf4\x15\xe3\x0e\x2e\x22\xbc\x69\x0d\x3a\xb9\xb1\x31\x0a\x6d\x20\xf4\x76\x90\x4a\x82\x67\xb8\xcf\x06\x9d\xa1\xcb\x94\x7d\x08\x50\xaa\xe2\x4c\x72\x80\xcb\xcb\x56\x21\xeb\x6b\xcc\xf4\xc2\xf5\x36\x2d\x5c\xe2\x61\x72\xf7\x2e\x89\xaf\x03\x9f\x25\xee\x84\x3c\x8f\xa3\x54\x08\x00\xae\xbf\x5e\x5b\x27\x12\xb3\x27\x57\x9c\x74\x76\x5d\xfe\x69\x11\xf4\x11\xbc\x50\x77\x9e\x08\xc1\x33\x72\xba\x3f\x82\x31\xbf\x10\x4c\x53\x1a\xb5\x23\xc7\xc3\x64\x2c\xd2\x31\x09\xe1\x7b\x8c\xc9\x82\x46\xce\x63\x4c\xe6\xf0\xbd\xc0\x64\x42\x23\xe7\x18\x13\x5f\xfc\x79\x86\xc9\x94\xde\xe9\xa1\x73\xc3\xb6\xd7\x8e\x62\x9f\x91\xb1\x7e\x32\x0f\x49\xd2\x2a\x99\x80\x8f\xd4\xe7\x1b\x73\xce\x92\xc0\x83\x8b\xdc\x5c\x4e\xaa\xc4\x5d\x48\x54\xa3\x05\x26\x81\x76\xa9\x89\xe7\xcb\x02\xa3\x38\x0e\x49\x90\x5e\xcc\x15\x32\xf0\x2d\x9d\x41\xc0\xb7\x18\x22\xc2\xbd\x2b\x77\xd2\xfe\x95\x64\x8e\x49\x25\xac\xa9\x37\x67\x8e\xdf\xf6\x80\x20\x60\xce\x30\x81\xe7\x45\xef\xd9\x44\x36\x1f\xb1\x8b\x89\xc8\x70\x06\x16\x36\x16\x1e\xba\x89\x21\x5e\x93\x11\xbd\x93\x78\x22\xa5\x8b\x42\x1a\xb1\x7a\x07\x50\x40\x7e\x70\x8d\x8a\x5d\x47\xcf\xc1\x91\xac\xec\x91\x28\x98\xe1\x28\x85\x39\x27\x68\x7b\xd8\xb9\x5b\x13\x81\xa8\xad\x20\x26\x77\x0b\xb9\x16\x2f\xa2\x97\xb7\x01\x87\x1b\xdc\x75\x76\x92\x98\xd9\xdc\xca\x4c\x0f\x04\xf7\xcd\xcf\x0b\xf1\x74\x92\xc1\x8a\x8c\x45\x92\x9e\x09\x12\x8a\x93\xbc\x77\x45\x16\x22\x55\x74\x91\x4c\x29\x6b\xcb\xce\x91\x91\xc8\x84\x01\x27\x33\x9a\xa9\xfb\xc9\xb9\x48\x37\x9d\x21\x57\x94\xb5\x45\x1f\xc9\x35\x5c\xba\xcb\x41\x26\x4b\x25\x2b\x3b\xb1\xe8\x24\x23\x03\x64\x30\x45\x04\xe5\xf1\xd4\x09\x06\x4b\x91\x90\x9a\x7b\x6c\xc4\xbd\x2b\x91\x22\xf0\x43\x04\x49\xec\x90\xf1\x0c\x62\xa9\xf9\x09\xca\xf0\x42\x04\x09\xac\x44\x05\x85\x13\x1a\x62\x72\xa6\xd1\x9a\xb4\xaf\xb0\x33\x77\xb0\xc3\x09\xf2\x42\x96\x70\xa4\xfe\xb6\x50\x73\x41\xee\xd4\x6f\x3f\x48\x67\x41\x2a\xdf\x8a\xbb\xa3\x35\x26\x63\x4c\x6e\x4a\x20\x94\xcb\x60\x12\x41\xfe\x57\xba\x6b\x7a\xcf\xc9\xdd\xc8\x53\xfd\x77\xaf\xfa\xe7\xed\xec\x0b\x21\xc2\x83\x19\x8b\x17\x1c\x32\xf4\xef\xce\xda\xb0\xa2\xb4\xed\x15\x14\xe8\x7e\xdb\x53\xb7\xd1\x4e\xa2\x9a\x5c\x92\xaf\xe4\x4e\x50\x66\x68\xad\xdf\x33\x12\x44\xee\x94\x24\x71\xc8\x5c\xdd\x67\xb3\x28\xae\xd7\x98\x8c\xfa\x65\xe0\x68\xb4\xe0\x5c\x8c\xa6\x74\x1e\x68\x3e\x33\xb0\x37\x04\x79\x49\xe0\xb5\xc0\xda\x0d\xb9\x1e\xd1\x97\x24\xa3\x35\xa9\x80\x07\xda\x7e\x31\xc0\xa2\xce\x34\xf0\x7d\x16\x21\x17\xf1\x64\xc1\xd0\x9a\xa0\x4f\xb7\xfe\x33\x84\xb1\x72\xf4\x80\xd7\xb3\x6c\x05\xd3\x29\x99\xe5\xef\x51\x46\x84\xb7\x3d\x3a\xdb\xf3\xc2\x24\xcf\x2e\x3b\xf2\xe9\x53\xe4\x04\xc0\x2f\x05\x9b\x1c\xc3\x77\x0a\xfc\x52\xb0\xc9\x05\x7c\x87\xc0\x2f\x05\x9b\x9c\x50\x18\xd2\x79\xfb\x57\x92\x06\x5f\x99\x3b\xb6\xb9\x9e\x1e\x8d\x71\x15\xc3\x1b\x1b\x16\x93\x7f\x54\xbe\x71\x19\x9b\x05\x1a\xa8\x05\x9a\x52\xd6\x86\x37\xc1\xe3\xed\xeb\xaa\xb4\x6a\xe0\x91\xca\x50\xf4\x49\xd5\x9b\x0b\xaa\x5d\x48\xc2\x07\x2f\x82\xad\xab\x24\x5e\xcc\x11\x49\xfb\xf6\x77\x0b\x35\xa5\x43\x0d\x2c\xc4\x49\x45\x7b\x5e\x69\x3a\x83\x22\xe5\x8d\xc9\x9d\xb5\x63\x88\x83\x4b\xcf\xb7\xe6\x70\x42\xfc\xc2\x5d\x98\xe1\x9f\x6b\x98\x4d\xff\xf7\x9b\xcd\xc8\xf9\xa9\x23\x36\x3f\x33\xab\x9e\xef\xc7\x91\xc0\x53\x4e\x98\xd8\x22\x9c\x01\x9a\x27\x6c\xce\x22\x5f\xf0\x07\xb8\x00\x41\x43\x6c\x4b\xe7\x66\xc7\x1c\x97\x77\xcc\x9d\xc4\x30\xbd\x37\x31\x18\x5c\x25\x47\xd7\xbc\x39\x3c\x90\x3c\x0c\x98\xc2\x6d\xa9\xbf\x83\x5c\x04\x79\x58\x94\x51\x76\x99\x35\xee\xef\x41\x2c\xa1\x4d\x2c\xfe\x1a\x93\x72\x9d\x49\xdb\x23\x99\x54\x32\x5e\x63\xec\x1e\x0c\x98\xe4\xea\xaf\x7b\x53\x8b\x20\x7d\x32\xdd\x4e\x90\xd3\x7b\x11\xe4\x33\x29\x8c\x75\x8f\x25\x3d\x76\x0a\xf4\xd8\x2d\xd0\xe3\x63\xa0\xc7\x76\xe4\xcc\x95\x34\x96\x17\xc6\x16\x9a\xb4\x80\x07\x2f\x32\xaa\x02\x3e\x64\x7d\x8f\xd2\x0f\x85\x94\x6b\x2f\x0c\x7c\x48\x90\x02\x55\x54\x48\x10\xbd\xf5\xdb\xbf\x66\x1b\xc1\x22\x2f\x1d\x2d\x32\xe9\x68\xa1\xa5\xae\x0c\xfc\x10\x93\x79\xe8\x05\x20\x1a\x67\x30\x81\xa8\xb2\xcf\x6c\x26\x16\x55\xeb\x61\x61\xad\x87\xd1\x26\x8b\x1f\xa3\xf3\x57\xf2\x3e\x2c\x0c\xa3\xc9\xe5\xca\x2d\x36\x86\x0b\x13\x36\x91\xef\x5c\xdf\xb3\x89\x7c\xaf\x6d\xef\xc7\x91\x8c\xf3\x19\x8f\x17\x42\x4a\x86\xbf\x1b\x0a\xad\x55\x8a\x27\x52\xe0\xf9\xab\xd2\x5e\x64\xe7\x11\x63\x88\xa0\xdb\x2d\x39\xfe\x91\x07\x12\x3d\xb8\xea\x00\x95\x4f\x74\xb4\x8b\xe3\x84\x4d\x28\x9c\x77\x24\x76\xc5\x73\x58\x62\xea\x27\x6c\x62\xae\x4a\x48\x54\x71\x28\xaa\xb0\xe4\xd8\xc1\x55\x04\x23\x11\xd2\xa2\x24\x20\xe0\x30\x40\x28\x20\x21\x2a\xa2\x01\x29\x51\xf0\x9f\xb9\xe6\x3f\x20\x2d\x1a\x02\x00\x81\xd1\x08\x80\xb3\xfd\x39\x91\x64\x3f\xb2\x69\x04\x56\x77\x81\x0f\x72\x9b\xfe\x65\xf1\x2a\x44\x90\x69\xb0\x20\xdb\x9d\xd3\x01\x4a\x3c\x3f\x88\x81\x97\xb1\xf1\x97\x51\x7c\x8b\x86\xc6\xe4\x24\xc0\xa7\xad\x2e\xb9\xa2\x52\xc9\x7d\xf5\xf2\x76\xee\xa0\x4f\x9f\x5e\x20\x82\xae\x10\x26\xd7\x74\xb1\x5a\xe9\x28\x82\x82\x8f\x05\xea\x3a\xd7\x4b\x98\x07\xdf\xfd\xc0\x95\x1c\x10\x61\xb2\xa4\x68\x12\x27\x33\x50\x94\x26\x71\x88\x7a\xd3\xbe\xb3\x6c\x52\xd4\xb2\x70\x03\x88\xba\x86\x8b\x26\x41\xc8\x24\x1c\x28\x08\x9f\xee\x79\xa3\xe1\x2c\xe9\xbc\x2f\x36\x5a\x57\x81\x14\x98\xb7\x74\x43\x33\xd8\xf5\x1b\x8d\x2b\x79\x79\x2b\x3f\xb1\xd1\x12\x3b\x7e\x3b\xc4\xce\x83\x77\x21\xf3\x52\x56\x5b\x80\xa7\x73\x56\x13\x73\x5e\xd3\xe3\x09\xf7\x06\xcc\xf3\x6b\x60\x0d\xce\x6a\x52\x22\x00\x9f\x9a\x71\xcc\x53\x9e\x78\xf3\x4f\x0f\xd2\x1a\x34\x58\x4b\x83\xaf\x41\x74\xd5\x7e\x20\xb8\x97\x6c\x4b\xfb\xa2\x50\x2d\xc3\x1a\x30\x42\xb4\x2f\x36\x87\x09\x6c\x0e\x61\xa3\x81\x82\xb4\x65\xe6\x2c\x95\xdf\xea\xab\x5e\xf7\x1a\x8d\xdc\x90\xb5\x50\xd3\x23\x4b\x6b\x0b\x71\xd4\x50\x51\x4a\xaf\x57\xab\x45\xb5\xe5\xd8\x42\x74\x7d\x06\xe4\x4a\x03\x31\x3a\x9a\x45\x36\x1a\xf5\x69\xa3\xa1\xa7\x4f\xea\x06\xcb\x9b\xd2\x75\xae\xc8\x75\x71\x18\xc1\x79\x5b\xed\x26\xe0\xd3\x9a\x57\x13\x55\xc4\x98\xa1\x07\xcd\xa0\xf9\x00\xd5\xc6\xf2\x6e\x65\xea\x5d\xb3\x9a\x6e\xb5\x5d\xb3\x46\x5e\x59\x8b\x1e\x21\xb5\x9d\x80\xe2\xc3\x0c\xbf\x18\x53\x33\x94\x99\xe5\xd4\xb8\xb4\x97\x5d\x17\xf7\xb2\x19\xb9\x4b\xd8\xc4\x1d\xd9\x92\x3c\x28\x9a\xf9\xda\x11\xd5\x2d\x6d\xc5\x28\x27\x2d\x8f\x8a\x1b\x1b\x08\xf0\x40\x9c\x72\x6b\x1b\xfd\xf7\xb6\x36\x79\x17\x9e\xed\x11\xb9\x23\x84\xbd\xa1\x85\xf1\xf8\x8b\xb5\x95\xc0\x31\xdc\xca\xd7\xbe\xaf\xb3\x22\xf1\x82\x87\x41\xc4\xbe\xe3\x0e\xa7\xcf\x33\x26\xb7\xb8\xeb\x96\xf7\xe9\xbd\xb7\x3c\xa9\x34\x30\xc8\x7e\x87\x1d\x50\xdb\x81\x46\xfa\xd7\xf7\xd8\xde\xaa\x8c\x4b\xad\xad\x4c\xcf\x42\x9f\x95\xec\x90\x5c\x5b\x67\xa9\xed\x3d\xcb\x69\x0e\x3b\x64\x2b\x93\xd4\x23\xf6\xb1\x81\x4d\x38\x43\xd8\xcb\x80\x64\x94\xea\x43\xef\x78\xa9\x56\x84\xc0\x7e\x96\xed\x7d\x99\xde\x43\xec\x69\x8a\x74\x60\x57\x03\xde\x37\x52\x1b\xde\xcc\xde\xd8\xce\x4b\x1b\x9b\x72\xf8\x9f\x23\x62\x82\x00\x0f\x50\x6d\x14\xd4\x1c\x85\xed\x4f\xeb\x35\x54\xeb\xfa\xcc\xa6\x77\x3d\x6b\x87\xeb\xa5\xb9\xe7\x0a\x19\x5f\x3b\xb7\xf8\xa0\x93\x7d\xd0\x32\x77\xa9\x3e\x7e\xd7\x3b\xd9\xd1\xbb\x27\xa3\x2f\x82\xa7\xfa\xa6\x33\xef\xa3\x96\x46\xcc\x45\x08\x37\x11\xe8\x47\xae\x4b\x3b\x80\x90\xd2\x81\x94\xd3\x35\x49\x57\x2b\xa8\x2e\x7e\x5c\x91\x3a\x70\xe6\x11\x8f\x5a\xa8\x39\x25\xf5\x7a\xa0\xbe\xd4\xf8\x68\x56\xc0\xb3\xb5\x5c\x41\x59\x6b\x4c\x42\xdc\x3b\x6f\x4f\x41\x0a\xd2\x5a\x08\x4a\xe9\xa8\xd1\x70\x46\x14\x79\x2a\xde\xec\x92\xa6\x7d\xa5\x78\x83\xd3\xab\x26\xe1\xf2\x48\x8c\xf2\x7c\x36\xa7\xdd\x90\x70\xcf\x35\x71\xf6\x75\xba\x36\xd1\x24\xe7\xf6\xf9\xe2\x9a\x08\xfe\x3c\x23\x55\xc6\xa1\x79\xc6\x16\xad\x56\xcb\x7b\xb1\x6e\xad\x7e\x84\x58\x1b\x5e\xb2\x44\x52\xed\xa8\xd0\xfa\xaf\x73\xf3\x32\x03\x94\x01\xba\xbe\x23\x13\xfe\x03\x1e\x22\xd2\xc5\x68\x16\x70\xaa\x7f\xfc\xe1\x8e\x11\x0a\xbf\xed\xe7\x08\x59\xe8\xbb\x1d\x24\xe4\xbc\x03\xf7\xd5\x9a\x0a\xc3\x38\xf7\xd7\x4d\x48\x28\x55\x2c\x90\x2c\x2a\x64\x4f\xc9\x53\x40\xba\x54\x35\x6d\xa5\x55\x79\xe9\x97\xd4\xa5\xa1\x14\xb1\x52\x9b\xca\xf4\x3a\x4d\x0f\x10\xb0\xc4\x9a\x14\x68\x7c\xd3\x8a\xfc\x36\xcd\x64\x8e\xdf\xdc\x47\x43\x29\xf5\xc3\xe3\x82\x8e\xc1\xfa\xd6\x0e\xf4\x21\x4d\x0a\x2d\x87\xeb\x34\x53\x73\xca\x54\xd0\x40\x8d\x25\x48\x66\x7f\x2a\x51\xdb\xa4\x86\xa0\xc8\x65\x28\x86\xa3\xac\xbc\xca\xf6\x1d\xad\xbf\x0a\x48\xda\xb7\x12\x0c\x18\x37\x4b\x44\xdb\x95\x9f\xe3\xad\x6a\xa7\xc9\x21\xca\x4f\xa5\x95\x97\xad\xfe\xee\x9a\xd0\xbb\xfd\xa9\xa3\x48\x0d\xd2\xed\x11\xf3\x0d\x35\xa8\x94\x90\xa5\x69\x96\x26\x0a\xcf\xed\x42\xbe\x97\x7c\xc9\xbe\xc0\xed\x5d\xf6\x99\xb0\x74\x1e\x47\xa9\x90\x0a\xc6\xf9\x6d\xc2\x14\x19\xdb\x7b\x83\xa6\xfd\xac\xde\xa5\x4a\x31\xdb\x4d\x05\x1c\xd8\x63\xec\xee\x9a\x4e\x0e\xf1\x37\x91\xb4\x1e\x12\x20\xe9\x6c\x34\x40\xf4\x54\x03\x41\x26\x94\xb5\xc5\x18\x10\x1f\xa2\x7d\x5c\x33\x79\xf3\x96\xf5\x20\x27\x7b\xe6\x3a\x06\xf7\x6f\x86\xa9\x5e\x1d\xba\x5c\x34\x76\xe6\x67\x08\x17\x9a\x48\x61\x86\x08\x12\x78\x21\x82\x94\x2f\x42\x94\x35\x6e\x18\x72\x0e\x9f\x02\x83\xbe\xae\xd2\x1c\x83\xcd\x1b\x52\x8b\x10\x3e\x60\x01\xd6\xeb\xa9\xf9\xce\xf0\xaa\xd7\xc7\x85\x54\x89\x62\xbd\x1e\x9a\x74\x83\x6d\xbd\x3e\x31\x89\x12\xf1\x7a\xdd\x37\x29\xb2\x0f\x62\x15\x93\x25\x2d\x2f\xe0\x51\x71\x01\x5f\xc9\x8d\xe0\xdc\x62\x97\xd7\x6b\x0c\x26\xdf\x53\x49\x05\x67\xb9\xee\x81\x43\xe5\x69\x5f\xb5\x66\x8d\x94\x5b\x4a\x02\xe9\x77\x1b\x37\x99\xd9\xcc\xe3\x6c\x4d\x96\xc6\xa4\x65\xb9\x17\x1b\x51\x63\x9c\x5f\x04\xff\x9d\x9b\x15\xb3\x1b\x45\xf1\xdf\x17\x9c\xb3\xc4\x62\x05\xfb\xb3\x1a\xb1\x93\x7e\xd3\x26\x63\x5a\x87\x65\x29\x16\x93\x58\x91\x02\xec\x01\xbb\x8c\x01\x62\xa8\x1f\x76\xf8\x0d\xdb\x4c\xd0\x47\x51\xdc\xba\x52\x35\xe4\x35\xe6\xb8\x2f\x65\x93\x24\xbe\x41\x2e\x4a\x20\xa6\xf9\x36\x42\x48\xbf\xdf\xb6\xf2\x2d\x33\xff\xf8\x51\x61\xea\xef\x75\x36\xa8\x90\xf3\xa5\x5b\x9f\xbc\x78\x3f\xaa\x2a\x08\xf4\x52\x59\x43\xfe\x04\x2b\x8f\x3b\xa3\x8d\xd9\xbb\xf6\x10\x13\xe9\xac\x6f\x4a\xe2\xc9\x24\x65\xdc\x9d\xae\xf1\x10\x93\x99\x1c\x39\x71\x4e\xb9\x4d\xdd\x11\x49\x67\xee\x88\xcc\x7c\x77\x44\xc2\x2b\x77\x44\x6e\xc3\x9c\x12\x6e\x97\x66\x07\xdc\xe0\xa6\x90\xe2\x25\x89\xb7\x5c\x93\x73\x7b\xc3\x57\xd9\x03\x74\x0b\xdc\x77\x86\x08\x9a\x09\xee\x1b\x0a\x12\xbb\x0d\xd1\x70\x4d\xae\x4a\x6e\x22\x74\x74\x7d\x4a\x69\xb4\x5a\x21\x71\x50\x8d\xfa\xac\x8f\xc6\xb1\x90\x5b\xc6\xa0\x56\xe5\x2e\xf2\x16\x3c\xb6\xf3\x5a\x90\x60\x0a\x34\x91\x4a\x50\xb9\xa8\x19\xd9\x79\xa8\x19\xad\xc9\xf5\xc1\xab\x4d\x76\xc8\x2c\xb5\xfd\x57\x98\xac\x98\x89\x6f\x0b\x3a\x18\xf6\x82\x2a\xb3\x58\xcb\xa7\xc7\x80\x0f\xc1\xf5\xb6\x54\xa9\x86\x03\x3e\x24\xb1\x1a\x11\xe3\xed\xb4\x9e\x88\x22\x9e\x83\x9d\x58\x39\x22\x4f\xc9\x98\x06\x7d\xd4\x42\x2e\xd2\x9d\x25\x73\x7a\xe5\x04\x84\x93\x58\x69\xb8\x17\xd2\x06\xb8\x78\xcc\x70\x9c\x34\xb3\xf9\x12\x25\x75\x6b\x6a\xe3\x1f\x20\xa0\x29\xd4\x1c\x37\xe3\x36\xfc\x14\x05\xe1\x07\xbc\xb9\xd0\x1f\x50\x12\xa8\x4e\x15\x85\xdf\x50\x16\x7e\x99\xc2\xf0\x45\x52\x71\x86\x54\x61\x4c\x95\x6b\x71\x85\xae\xc1\x74\x8a\xd7\xe0\x83\x78\xa1\x2c\x3c\x57\x2b\x95\x01\x64\x21\xcf\x9b\xf3\x8a\x63\xd3\x62\xfb\x29\x69\x3b\x1b\x9a\x03\x1b\xba\xb6\xd8\xd0\x8c\x5c\xe7\xd9\xd0\x39\x30\x9f\xeb\xdf\x75\xdb\x19\x59\x3b\xcd\x3c\x08\x43\xeb\x33\x77\x6e\xd9\x29\x53\x66\x11\xd8\xec\x7d\xea\xd7\x45\xca\x83\x49\x60\x4b\xb2\x93\x20\xcc\x8e\x42\x24\xf2\xae\x47\x9e\x25\xca\x8e\xbd\xc4\x2a\xab\xb7\xc5\xdf\xd8\x5c\x64\x24\x57\x21\xf4\xff\xff\xe5\xee\xeb\x7b\xdb\x36\x92\x87\xff\x7f\x3e\x45\xc4\x03\x04\x2e\xbc\xd2\x49\x6d\x7a\xd7\xca\xc7\x33\xf2\xd6\x36\x48\x9d\x18\x89\x7b\x6d\x61\x18\x06\x25\x2e\x25\xc6\x14\xa9\x23\x29\xdb\x8a\xcd\xef\xfe\x60\x67\xdf\x66\xc9\xa5\x4c\x3b\xf9\xa5\xc5\x01\x45\x63\x2d\xb9\xcb\x9d\xdd\xd9\xd9\x79\x1f\xb8\xf2\xb4\x90\x65\xd7\x96\x03\x2e\x54\x83\x04\xac\x28\x87\x06\x38\x51\x01\x08\x70\xa1\x1c\x06\x60\x43\x2b\x60\x3e\xfb\x3b\x18\xcc\xf9\xa1\x86\x59\xd8\x62\x9a\x99\x81\x47\x3d\xfd\x7d\x7e\xb3\x26\x29\x6f\x12\xdf\xe6\xc3\x85\x45\x64\xe8\xc2\xd2\x71\xdf\xae\x8e\xe4\xdb\xa3\x2c\xbc\xf2\x66\xfc\x87\x62\x14\xc5\xc0\xbb\x91\xcc\x5f\x3c\xf2\x0e\x52\xda\xce\x9a\x04\x89\xd4\xd9\x70\x28\x58\x39\x7e\xa8\x6f\x20\x01\x11\x3b\xf2\xe2\x94\xdd\x8c\x16\x79\xba\x5d\x67\xde\x4c\xfc\xf2\x0e\xd8\x81\xa7\xda\x48\xed\x2f\x08\xbd\xe5\xdf\x1c\x01\xb0\xb3\x44\x4c\x79\xb4\x62\x61\xc4\x0a\xd9\x38\x1f\x0e\x13\x80\x69\x24\x96\x62\x56\xda\x6f\xc9\xd6\xf9\x70\x58\x8a\xd7\xcc\x8a\xcc\x62\xd1\x02\xeb\x02\x0e\x12\xfb\x19\xc8\xc6\x81\xb5\xb4\x94\xcb\xbe\x7c\xc3\x36\xf5\xcc\x59\x19\x4c\xff\x3c\xe6\x51\x2a\x86\x1f\xce\x39\x3e\xe6\xd4\x48\x93\x82\x61\x14\xfb\xa2\xb9\x56\xfe\x4b\x2c\x75\x3a\x5a\xf1\x4d\x4c\x2a\xb6\x56\x22\x90\x2e\x11\xfc\x20\x3e\xf0\x71\xbe\x55\x69\xf2\x59\x6c\xe0\x17\x51\x10\x7f\xb6\xfa\xb7\x6d\xe7\x6b\x5a\x10\xfb\x33\x66\x2d\x7b\xde\xaa\x90\x33\x0a\xb3\xdd\xff\xa0\x05\xce\xf7\xfe\xe6\xa9\xb2\x81\xe2\x6d\x61\x45\x69\xbf\x4a\x7b\x1b\xeb\xbe\x94\xbe\x58\x1e\xbb\xcf\xd4\x17\x5b\x67\xf0\x7e\x7d\x31\x1c\xc7\x34\xc9\x2e\x3d\x7a\xab\x11\x2b\xd5\x6b\xa8\x50\x2b\xa9\x1f\xab\x46\x76\x5a\x82\x1c\xba\xe5\x87\x99\xef\xf9\x61\x0e\x1f\xa7\x5a\xe6\xa7\xd7\x45\x90\xbf\xfd\xa6\x5f\x90\xc0\xd3\xa7\xae\xd3\x2c\xd6\xe9\x34\x9c\x83\x4b\x7d\x98\xed\x3a\x82\x05\x1c\x8e\xff\x5f\xe0\x98\xc9\x40\x23\x33\x89\x4c\x62\xa9\x6e\xa9\x69\xa6\x54\x28\x18\x93\x20\x21\x8e\x28\x53\xc5\x8a\xe4\x8a\x45\x10\x5d\xf4\x63\x91\xaf\x9b\x41\x41\xa8\xf0\x66\x65\x86\x85\x80\x36\xfd\xeb\x08\xcd\x00\x35\xd7\x20\xfb\xd7\xb4\xda\x1b\xbd\xf2\xa0\xf3\x92\xcb\x43\x92\x18\x94\x5e\x11\x14\x6e\xa7\x52\x92\x5d\xb2\x5d\xe9\xaf\x08\xdf\x61\x8c\xfb\xe0\xa9\x5e\x85\x73\xc5\x10\x79\x10\x26\xb5\xe7\xfe\x89\xc7\xe1\x58\x45\xb2\xa8\x64\x72\x06\xd8\xd7\xd2\x4e\x2b\xa2\x68\x0c\xdc\xb5\xc3\x89\x33\x6f\x9e\x94\x04\xdf\x64\x65\x4d\xe4\x79\x48\xf0\x69\x90\x5d\xca\xf1\x26\x4f\x77\x9c\x03\x22\xfe\x9c\x08\xe4\xa7\x3d\x4e\x0a\xa8\x3f\xee\x39\x25\xd9\x38\x02\xff\x7f\xcf\xaa\x55\x2a\x17\x64\x55\x4b\x63\xf8\xe7\xf3\x35\x4f\x9f\xa2\x58\x9b\x5b\x15\xb4\xd2\x5f\x13\x56\xc1\x72\x2f\xe4\x0d\x65\x22\x41\x56\x0f\x90\x09\x5e\x47\x8f\x60\x6e\xa0\x1f\xe6\x6d\xda\x0c\xf4\x13\x1c\x0d\xb1\x55\x38\xb6\x09\x33\xe6\xd1\x4a\x5b\xf7\x93\x00\xc2\x63\x69\x46\xea\x6e\x84\xdb\x00\x39\x14\xf1\x52\x90\xe1\xbe\x5d\x9f\xb3\xc2\x47\xef\x75\xf4\x68\xe6\x49\x64\x9d\xe0\xff\xf5\x75\x06\xee\x43\x70\x01\x47\xbe\x15\x38\xf2\x9d\xe0\x9b\xfe\x29\x31\x44\x11\xda\xef\x05\x86\x4c\x1a\x18\x32\x6d\xb0\x4d\x4f\x39\xa1\xe5\xbf\x23\x42\xe7\x7c\xd0\x29\xa1\x6b\x81\x41\x5a\x02\x5b\x48\xc8\xe6\xe3\x53\x1d\xf5\x62\x80\xa1\xb7\x32\x46\x29\xd6\x1c\x92\xb2\xd2\xc7\x36\xf3\x15\x2b\x0d\xd5\xbb\x18\xce\x7c\x96\x47\x8c\x50\xf5\x97\xb4\xaf\xac\x2d\x84\x55\x0f\x95\xbc\x6b\xbe\xa1\xd1\x37\x36\xe8\xab\xb9\x3e\xc7\x87\x81\x01\x8b\x51\xfc\x17\xb6\xc2\x20\x99\xcf\x09\xac\x1d\x34\xa5\x62\xb2\xa6\x34\xdc\x6c\x58\x58\xf0\xbf\x58\x56\xb1\x62\x36\x98\x50\x26\x02\xa9\x50\xb8\x96\x8a\xad\x59\x8f\xd9\xf8\x45\x9e\xa6\xe1\xa6\xe4\x18\x7a\x15\xf8\x7e\x01\x9a\x9e\xf5\x38\x1a\xbf\x7a\x7b\xfa\xea\xfd\xeb\xb7\x3f\x9d\x07\xde\x42\xbc\x93\x64\x4b\x8f\x16\xe6\xe1\xab\x97\xe6\x19\x7b\x22\xea\xba\xca\xc7\xbf\xbf\x3e\xed\xec\xfa\xfb\xeb\x53\xab\xa7\x47\x0b\x94\x2c\x62\x87\x93\x45\xc8\x0a\x46\xa2\x90\x52\x2d\x8c\x10\x5f\xe6\xee\x14\x95\xb9\xe4\x4d\x75\xe6\xe5\x19\x64\x0c\x83\x69\xaa\x1f\x20\x97\xe7\x10\x87\xa6\xff\xd0\x2f\xdc\x24\x15\x8b\xbc\x73\x87\xaa\x8e\x91\xdb\xec\x8c\x9d\x07\xfc\x7f\x16\xfb\x1b\x4a\xf6\xb7\xc6\x1c\x70\xd9\x8f\x03\x56\xb3\x6b\xdc\xd0\xe2\x1a\xd2\x41\xc2\x12\x28\xbe\x84\x75\x83\xa3\x55\x03\x40\x3f\xce\xc1\x6a\x20\x7b\x0d\x09\xeb\xe4\x1a\x92\x45\x78\xc4\x9b\xa4\x6a\xb3\xe9\xfd\xe6\x77\x23\x6a\xc1\xea\x71\x6c\x60\xc9\x2d\x93\x6a\x41\x81\x0b\x87\xee\x91\x27\xae\x61\x45\x66\x19\x33\x32\x8b\x7a\xcc\xd1\x09\x30\x74\xee\xe1\xaf\x47\x2b\xcc\xd8\x40\xf2\xc9\x70\x09\x95\x4f\x64\x7c\x61\x18\x54\x96\x8b\x5e\xa5\x94\x4e\x69\x50\xa1\xfb\x6b\x83\x53\x54\xc6\x81\x5f\x19\x09\x01\x8b\x54\x15\x3d\x53\xec\xbf\x0a\x10\xc4\xb7\x9a\xd1\x29\x61\xd7\x3b\x13\x38\x88\x64\x06\x4e\x81\x11\x6b\x23\xd6\xc2\x90\xdd\xf5\x38\x21\x7e\x4c\xd7\xe3\x05\x22\x4f\x6b\xce\x8a\x89\x46\x85\xb1\xdb\xb6\xb9\x11\xd1\x2e\x8a\xaf\x60\xa1\xab\x49\xb2\x59\x41\x0d\x92\x2a\xe9\x41\xfd\xa6\x1a\xd9\xac\x27\x2c\xa2\x62\x53\x74\xeb\x4d\x52\x51\xbd\xe9\xb8\x55\x0e\x02\x1b\x88\xdb\xc1\xbd\xae\x95\x5f\xa9\x70\x5d\xf6\x57\x67\xec\xfc\xee\xce\x50\xad\xda\xaf\x88\x61\x48\xd7\x9c\x07\x58\x81\x37\x60\x01\x1e\xe0\x52\x37\xa7\x5f\x27\x34\x85\x8b\x4e\x44\xa4\x47\xc2\xef\x5d\x61\x5b\x54\x77\x2f\x5d\x6b\xbd\x96\xf4\x16\x52\xea\xcd\x1a\xf7\xc3\x52\x64\xda\xa3\x31\x76\x19\x4b\xc0\x43\x8f\x35\x3c\xa6\x6a\x42\x37\x44\x89\x62\x29\x66\x3d\x9f\x21\x9e\xe0\x98\x3e\xb3\x79\x82\x25\xf0\xa0\xcf\xbe\xa6\x77\x06\x78\xff\x21\x26\x71\x63\xe9\x9c\xab\x1e\xce\x0e\xca\xdb\xb8\xed\xf7\x70\x4e\x3e\x2f\x84\xed\xe1\xaa\x36\xe1\x70\x6b\x89\xfa\x0b\xa9\xae\xd6\x01\xc9\x71\x6f\x16\x55\x87\x05\xab\x03\x2c\x54\xce\x86\x69\x75\x86\xb2\xcd\xc3\x68\x09\xde\x10\xfc\x5f\xe9\x8b\xb0\x18\x0e\xe5\x6f\x18\x00\x0b\x47\xb1\x72\x3c\x05\xf7\xd9\x20\x08\x52\x28\x8b\xea\x85\x9e\x2b\x66\x2d\x6d\xf2\x9e\xb1\x1d\x8e\x06\x4a\x82\x1e\xea\xbb\xb6\xd7\x27\x6c\xfc\x60\x2a\xb8\x18\x98\xcb\x9f\xe0\x2b\xd4\xc2\x96\x22\xbf\x46\x5a\xda\x15\x5b\x20\xd7\x1e\xe9\x08\x6a\x1c\x7f\x94\xbe\xe5\xeb\x1a\x45\x8a\xfc\x1a\x30\x4e\xeb\x78\x44\xd4\x24\x5b\x5c\xca\x08\x27\x70\x5b\x8c\x25\xf6\x45\xbd\xb1\xaf\xe0\xec\x9e\xa7\x46\x55\x81\x47\x4d\x17\xc6\x73\xce\xcd\x77\xf9\xa4\xc1\x10\xca\x47\x40\x74\x97\xa1\x40\x32\x30\x77\xe0\x0f\x16\x77\x77\x83\x94\xe8\x10\x1a\x19\x22\x24\xbe\x20\x1f\x43\x2e\x7b\x3d\x11\x1c\x9b\x19\x27\x2c\x8d\x4a\x91\xb8\x2f\x1e\x0e\xfd\x48\xaf\x42\x50\x3a\x43\x2e\x9b\xe8\x1b\x61\xf4\x5d\xfd\x55\x63\x7a\x9f\x7e\xeb\x52\x3d\x3b\x68\xa1\xf4\x07\x58\xd8\xfe\x07\x8e\x17\x91\x63\x18\xee\x83\xdc\x0e\x56\x9d\x8e\x04\xed\x53\x22\x9c\xed\x3b\x0f\x4a\xd3\xb1\x2e\xb6\x49\xbe\xd2\xb9\xf5\x57\x1a\x74\xba\x30\x48\xcf\x83\x45\xdb\x31\x41\x86\x2e\xfc\xcf\xb9\x26\x88\xa5\x07\x02\x20\xbd\x14\x8c\xb7\xa9\x22\x03\x1b\xe5\xc2\xb7\x12\x3e\x42\x74\xde\x9b\x08\xc8\x30\x8a\x86\x27\x83\xa1\x05\xd2\xf3\x2e\xce\x0b\x0f\x90\xe3\xec\xfc\xb0\x7c\x90\x7b\xc3\xdc\xe5\xde\x40\x43\xe9\xe0\x10\x37\x1c\x1c\x42\xdb\xc1\xe1\x30\x09\x96\x7e\x68\x1c\x1c\xe8\xba\xed\xe0\xb0\x45\x0e\x0e\xc9\x57\x77\x70\x00\xb5\x10\xd4\xf7\xd6\x53\xd5\xb3\x14\xf5\x95\x81\x44\x1c\x07\xcd\x29\x2b\x12\x5a\x16\xa3\x3c\x4b\x77\xca\xf2\x8b\x88\xa4\xc4\xe8\xc1\x60\x33\x1c\x02\x1e\xc1\x33\x68\x1d\x79\x07\x1b\xba\xa6\x83\xc1\x5a\x57\x2f\x6d\xbc\xf1\x30\xf7\xdf\x55\xb5\x4e\x7f\xcc\x8b\xd9\xaa\xa6\x73\x4c\x30\x8f\xff\x8a\x9e\x12\x29\x70\xdc\x1d\xee\xb8\xf1\x16\xb3\x97\x90\x62\xdb\x72\x08\xaf\x92\xc5\xe5\xce\xa2\x3f\x4d\x06\xb5\xe9\x43\xfe\xe0\x3b\x9e\xb2\x9b\x4d\x98\x45\xbd\x7c\x35\x9c\xfc\x00\x50\x01\x31\x88\x60\x3a\xed\x58\x30\x4d\x1e\x38\x21\x80\xc5\x00\x52\x00\x2e\xb9\x31\xf8\x41\xdc\x48\x8f\x08\x01\x2d\x50\x05\xc1\xb8\x1a\xc7\xdc\x26\x7d\x10\x9f\x6b\x86\x7c\x21\x42\x01\x1f\x32\x1e\xb6\x32\x79\xb9\x27\x3e\x81\x78\x59\xc9\x33\x1c\xb7\x78\x86\xc4\x08\xb2\x0f\x72\x65\x90\x72\x98\x9c\xe0\xcc\xfe\x3d\xf2\x0e\x18\xa9\xfd\x8c\x50\xdf\xaf\x82\x5b\xf5\x50\x4c\x76\xb6\x50\x9f\x14\xee\xb5\xb3\xb4\x26\x67\xde\x7c\x39\xf2\x0e\x56\xe7\xc1\x8a\x56\x67\x02\x8c\x91\x77\x10\x9f\x07\x31\xff\x2d\xc0\x19\x79\x07\xd1\x79\x10\x41\x7d\xd0\x72\xcf\x29\x6a\xf9\xe0\xae\xdb\x87\xa7\x07\xb7\x01\x8e\x1f\x12\x69\xfe\x4c\xa7\x85\x4a\xa5\x0f\x79\x70\xdc\x45\x8b\x63\x78\x94\x6c\xa5\x14\x25\x0f\xd7\xf5\xe3\x2c\x4a\xfb\x5d\x19\x38\x32\x88\xe4\x4b\xc5\xe7\xba\x30\xd0\xe4\xee\xae\xdd\x4d\x45\x29\x9a\x57\xf1\x44\x1a\x53\x18\x25\x8b\x3c\xf3\xf8\x15\xd2\x13\x55\x54\x0a\x23\x2b\xe4\xef\xcf\xc3\x98\x38\xdd\x26\xd1\x57\xf2\x72\x81\x6f\x3d\x02\x37\xa0\xdf\x7e\xc4\x48\x38\xc3\x96\x55\x61\x92\xb1\x62\x24\xde\x9f\x99\x96\xaf\xe3\xea\xf2\x68\x91\x63\x02\x1b\x39\xce\x44\x52\x4c\xd8\x31\x2b\x89\xde\x3f\xa5\xb3\xcb\x37\xc2\x3c\x3e\x6d\x98\xc7\xbf\x13\x02\xc7\xf4\x7b\xb0\xda\xf8\xdf\x4e\xc0\x68\x33\xce\xfc\x95\xb0\xda\xfc\xf0\x1d\x27\xe6\xbc\x61\x4d\xe8\x92\x63\xc0\x0f\x84\x5e\x41\xc3\x92\xd0\x1d\xef\x3a\x21\xf4\x19\x34\xec\x08\xbd\xe6\x63\x7c\x4b\xe8\x27\x68\xb8\x26\xf4\x82\xbf\x31\x25\xf4\x1d\x34\x5c\x10\x7a\xca\x3f\xfa\x3d\xa1\x37\x7c\xf0\x7f\x10\xfa\x16\x1e\xdc\x10\x9f\xf8\xb7\x25\xc4\x10\x8a\x1c\xce\x6f\xf3\x88\xa9\x32\x23\x85\xa3\xb1\x26\xf4\x97\xc0\xcf\x8d\xee\xcb\x71\xad\x3c\xe9\xc8\xa2\x58\x13\xfa\xaa\x99\xfb\xd5\x59\x3b\x1a\xd7\x10\x6b\x65\x23\xcd\x20\x1f\x87\x18\xba\xfa\xf7\xf4\xa8\x1a\x4d\x67\x13\x42\x8b\x60\x7a\x58\xfc\x4b\x66\xc3\x3f\x2b\x46\x53\x9c\x9b\xb4\x30\xb9\x49\x65\x2e\x52\x09\x62\x46\xea\x9a\x7e\x08\x5c\xf5\xe2\x69\x95\x6f\x66\x13\x9a\xb2\xb8\x9a\x4d\x68\xbe\x09\x17\x49\xb5\x9b\x4d\x28\x14\xf2\x66\x05\x54\xe0\x28\x65\x91\xf6\x9a\xfe\x37\xb8\xad\xe9\x8b\xee\xf2\x53\x38\x6d\x7b\x0b\xa4\x02\x81\x94\x71\xfc\x9a\x1c\xe6\xff\xca\x0e\xf3\x83\x03\x52\x9c\xe5\x18\x90\x1c\xa5\x36\xde\x9b\xd1\xb8\x20\xd2\x74\x43\xdf\xf9\xc4\x7f\xc6\x0f\x1c\xe1\x7c\x43\xc8\x21\xbb\x8d\xc2\x2a\x54\xbb\x0c\x85\x1a\xf8\xe8\x66\x87\x71\x97\x4d\xbe\xd9\xb0\xe2\xb5\x4c\x25\xee\x51\xf1\x92\xeb\x1d\x8e\x25\x1e\x15\x19\xc0\xf0\xd3\xb0\x28\xf2\xeb\xae\x87\x25\xab\x4e\x50\x6f\xcb\x1e\x04\xf5\xf8\xcd\xd8\x92\x57\x79\x25\x6a\xa0\x21\xb5\xac\xf0\xce\x30\x2f\x06\x8c\x56\xe3\x2d\x64\x17\x3d\xb1\x66\xef\x0b\x2b\x52\xe3\xfb\xcf\xcc\xfc\x7c\x3b\xb5\xb3\x9e\x39\x24\x6a\xb6\xfa\x89\xe1\xc1\xf8\x71\x9c\x47\x49\x9c\xb0\xc2\xa3\xb7\x2c\x13\xaa\xaa\xc1\x44\x8a\xf9\x3f\x4c\x26\x34\xb6\x33\x46\x0b\x83\x15\x64\xc1\x11\xeb\xae\x77\x14\x99\x53\x60\x83\x18\xda\x9b\xac\x26\x94\xd5\x8d\xbd\x59\xb2\xea\x9d\x2a\x5d\xd4\xf6\x47\xb8\x35\xbd\xd5\x8a\xe9\x16\x0a\x6e\x5c\xe5\x2b\x39\x5f\xf5\xdc\x6a\xa5\xea\x50\x40\x9d\x48\x33\x06\x6e\xa5\x6b\x09\x7c\x39\xbb\xf2\x81\x0e\xab\xd7\xf4\x03\x7a\x0b\xcb\xd8\xf9\x5c\xa6\x44\xc7\x4d\x62\xe1\xd1\x72\x0e\xd0\x5e\x50\x96\x2a\xa0\x74\x5b\x4d\x28\x1c\x83\x0f\xa0\xe0\x37\xfd\xa6\x35\x75\x6c\xd4\x4c\x61\x87\xd5\x5a\x83\xdc\xd8\x5c\x5f\x81\x40\x30\xae\xd3\xe7\x03\xe3\x1d\x54\xd3\x07\x0b\x10\xdf\xbe\x23\x00\x58\x13\x16\xfc\x48\x4a\xb2\xa5\xec\xab\x97\x94\xaf\x0e\x7a\x0b\xec\x12\x25\x99\x7d\xe8\x9c\xd7\x89\xda\xcf\x8e\xb9\xa1\xd9\xa8\x1f\xed\xe3\xde\x1a\x1b\x0e\xc4\x3e\x90\xf5\xba\x37\x20\xb6\x66\x1f\xea\x51\xca\xd9\x7f\x1d\x5f\x79\xb7\xad\xde\xc5\xcf\xf3\x6d\x16\x85\x45\xc2\xca\x0f\x82\x34\xf5\x05\x03\x3e\xb1\x4a\xd0\xbd\x64\x7f\x20\x62\x65\x55\xe4\xbb\x93\x06\xf5\xc2\xc3\xab\xad\x53\x4f\x87\x43\xbf\xd9\x34\x96\xc3\xf8\x86\xc0\xa8\x47\x60\x92\x6a\x91\x13\x17\xd5\x69\x7e\xd5\x39\x35\x5f\x65\x6c\x16\x23\x21\xac\xa2\xd2\xba\xbd\x81\xf0\x7b\x59\x69\x41\x1c\x81\xc3\x6c\x38\x74\x4d\x1b\xae\x93\xd3\x71\xe8\x67\x94\x09\xbf\x35\x49\x26\x7c\xe2\xa0\x80\x8b\x15\xe3\x4c\x9b\x48\xc7\x7c\xdf\x12\xb5\x56\xc8\xee\xee\x8b\xd2\x2c\xf5\x27\xff\x7e\xf3\x3c\xce\x78\xed\x4c\xf2\x8d\xac\xc8\x1a\x6b\xc1\x95\x4e\xff\x12\x57\x5c\xc7\xea\xc0\xab\xcd\x46\xab\x87\x45\xca\xc4\xc8\xb8\x45\x64\x98\x76\x5f\x24\x38\xe5\x88\x45\x35\x61\x18\xab\x45\x39\xc4\xb6\x90\xad\x63\x84\x23\xc7\xeb\x63\x41\xd2\xac\xb2\x5f\xa5\x9e\x45\x03\x67\x85\xae\xbe\xf9\x2e\xa0\x30\x5a\x46\x64\xb0\xd6\xcd\x72\xaa\xad\x3d\xa5\xd9\xbd\x99\xbf\x5f\xf9\x8e\x14\x13\xf2\xc2\x87\x27\x1d\x68\xef\x76\x0a\x90\x48\xf2\x8b\xef\x48\xd2\x4d\x7c\x70\x9a\x55\x0e\x08\x86\x7d\xa0\xc2\xbe\x0b\x0f\x6c\xd2\xed\x13\x74\x95\xda\xcf\x35\x09\xf5\x09\xcd\x6d\x92\xa4\xdf\x74\x91\x2a\x9f\x50\x7b\x99\x66\x8e\xa5\xa3\x40\x04\x41\xe0\x98\x59\x93\xd6\x3c\x47\x63\xce\x86\xf4\xfa\xfc\x3a\x02\x43\x73\x6e\xf9\x38\xfa\xc4\x7f\x41\x3d\x2c\xca\x78\x14\xdd\xf4\xde\x3c\xaf\xaa\x7c\xed\x35\x2e\xf8\x01\xe2\xe6\xe5\x49\xd0\xfc\x9f\x75\xcb\x0f\xa6\x35\x39\x3c\x1d\x87\x06\x27\x4a\xe3\x64\x74\x89\xa5\xc6\xe6\x78\x34\x0b\x8e\x7d\x21\x14\x36\x1f\x79\xa6\x02\x63\xde\x90\xe3\xde\xde\xe7\xbf\x57\xe0\x4f\xf1\x15\xeb\x1a\xe9\x05\x85\x0b\xb7\x03\x4c\x8e\xf0\x47\xd5\xac\xa8\xa9\x70\x25\x02\xaf\xa8\xdf\x02\xa8\xb9\x43\x5f\x82\x30\xf4\x1b\x39\x44\x4b\x0d\x94\xeb\xb9\x90\xbd\x4f\x44\xba\x73\x68\x7a\x8f\x2c\x35\x1b\xa9\x77\xc1\xd9\x5d\xc5\x61\x34\x99\xce\x37\xc8\x08\xaf\x77\xc9\xd5\x78\x52\xb0\x38\xb9\xc1\x8f\x00\x79\x9c\x23\xf1\x8b\x0f\x50\x05\x1a\xb5\x51\xf4\xf9\xf8\xa3\xca\x33\xae\xda\xad\xc4\xb3\x5a\x27\xb0\x41\xb1\x0d\xc2\x0c\xb5\xb1\xd5\xa6\x78\x82\xda\x98\x75\x4e\x68\x1c\xa6\xe9\x3c\x5c\x5c\x9e\x58\xa0\x74\x77\x04\x73\x11\xef\x97\x26\x1b\x33\x57\x2d\xe4\xcf\x9e\x8f\x2f\x69\x15\x16\x4b\x56\xf1\x3f\xf1\x64\x0d\x63\x89\x26\x3b\xd7\x67\x50\xed\x6e\xf7\xe7\x9f\x8f\x43\x99\x8a\x2d\x2f\x59\x04\x2f\x0a\xd7\xc1\x30\x62\x68\xd9\x4c\x8e\xf5\x8d\x36\xd5\x9d\x58\x79\xe0\x6b\xfa\x7b\x70\xdb\xfe\xb2\x27\x9c\xec\x4e\xc2\x02\xf8\x2f\x74\x04\xc1\x1e\x85\xf6\x68\x30\xa5\xc6\xd3\x50\xae\xf7\xc4\xb1\x94\x1e\x5f\x25\x4f\xac\x95\xa8\xf6\x23\x57\xc9\x9b\xe7\xd1\xce\x43\x4b\x72\x5b\x1b\xc0\x10\xd5\xac\xf7\xa4\x8e\x8f\xa4\x9e\xe4\xa4\x91\x5b\x9c\xd4\xf4\xe3\xe7\x3a\x07\xae\xc2\x2c\x4a\x99\x06\xe4\xc5\x2a\xcc\x96\x2c\xc8\xdc\xed\x96\x73\xdf\x02\x25\x47\x62\xd5\x29\x60\x02\x08\x5c\x8d\xdf\x5d\x9d\x96\x8d\x4e\xcb\x9e\x9d\x3a\xb3\x35\xa1\xd7\xd4\x0a\x07\xe6\xcf\xce\xb9\x0b\xef\x48\xb9\xcb\xca\x5f\xad\x36\xfe\x8a\xe9\xa3\xc3\x08\x54\x72\xfd\xe1\x70\xa0\xc6\x3d\x52\x1f\x52\xcf\x64\xe8\xc0\x63\x99\x2d\xc9\x69\x5d\x48\xc1\x4a\x32\x01\xea\xa7\xb8\x77\xf9\x7a\x96\xdd\x4f\xce\x26\xe7\x7b\x1f\x8a\xec\xb3\x3d\x5e\x11\x0c\x81\x8d\x0b\x2d\xb7\xc3\xca\x3c\x83\xbc\x55\x4b\xf7\xeb\x76\xe5\x10\xd3\x49\x76\x79\xa1\xce\x57\x47\x2f\xb9\x75\xcf\xc7\x31\xb1\xd8\x10\xd5\x8d\xd4\xb4\x3b\xff\x96\x82\x51\x4c\xd0\x7d\x40\x1c\x9a\x33\x17\x53\x66\xb3\xbc\x8a\x45\xd3\xaa\x02\x43\x78\xd0\x5b\xa0\x2d\xc0\x38\xdc\xdc\x6c\x13\x9e\xc5\x1f\xab\x40\x2e\x33\xaa\x26\x58\x35\xe2\xd0\x54\x15\xe4\xfb\x03\x52\xb4\x0e\x39\xc3\x26\x86\xdc\x94\x8a\x08\x41\xb7\x9c\x6c\xe8\x02\x4a\x46\xc3\xde\x50\xe5\xac\x4a\xc0\xb4\xd6\x22\x90\x90\x7c\xb1\x71\x5f\x8a\xd4\xc2\xd6\x45\x09\x96\x37\x4d\x7d\xc1\xfa\xd6\xb8\x94\x51\x6c\xb2\xcf\xcc\x86\x52\x66\x54\x10\x04\xaa\x54\xb4\xa8\x3e\xbd\xe2\x3d\xd4\xb2\x51\x51\xc7\x82\xd0\x9d\x5d\xe0\x02\xd5\x8c\x50\x6a\xf2\x0e\x1f\x52\xe5\x78\x2a\x28\xbf\x27\xd6\xc1\xa3\xca\x1c\x4e\xbd\xd6\x22\x88\x74\xc6\x78\x09\x3c\xa9\x62\xc3\xd5\x31\x34\xf8\x9e\xd2\xce\xe1\xa7\xaa\x3c\x86\x52\xb5\x53\x4f\xc3\x0d\x49\x7e\x1a\x40\x8b\x52\xd9\x00\xb1\xa9\x91\x81\xea\x66\x9c\xa3\x12\x17\xcf\xc7\x4b\xe2\x97\x3e\xf1\xc5\x9c\xa0\x22\x6d\x45\xe8\x27\xa7\xb8\x71\x77\xf7\x0c\xa9\xa4\x2e\x82\x4f\xe3\x72\x93\x26\x95\xef\x8d\x3c\x72\x36\x39\xa7\xef\x5a\xa3\xce\xe9\xf6\x68\x0b\x6e\x1d\x17\xb3\x0b\xcb\xcf\x58\xaf\x30\xa1\xa7\x81\x75\xe7\xc9\x1b\x57\xfd\xbb\xa8\xc5\x0d\xab\xb5\x44\x21\x9d\xb3\x55\x78\x95\xe4\xc5\x2c\xad\xa9\x8c\x70\x7c\x77\xc5\x8a\x38\xcd\xaf\x67\x8e\x9b\x7f\xa9\xb4\x4a\x33\x87\xc2\xef\x3b\x50\xf8\xc1\xc4\x9c\xa7\xbe\xae\xe9\x31\xa1\x37\xc1\x3d\xd7\x32\xdd\xe1\x92\x1f\x57\x47\x3b\x77\xc9\x0f\xfe\xc0\x51\xf2\x23\x69\xd9\x4b\x4e\xda\x25\x3f\x6e\xe8\x33\x70\x21\xce\x5b\x2e\xbe\x12\xbb\x21\x8a\xa3\x26\xb4\x3d\xda\x25\x6d\xf3\xd9\x0d\x22\x8b\xb8\x95\x53\xc4\x1c\x7d\xaa\xdd\x21\x3a\x05\x8b\xa1\xa8\x9b\xf0\xc5\xcd\xf1\x41\x07\x5a\x61\x04\xa9\x6e\x18\x45\x94\x86\x90\xb3\xa4\x5c\x55\x20\xeb\xd8\x3b\xea\xdd\x8c\xf4\xa8\xde\x2c\xaf\x69\x46\x07\xab\xe1\xd0\x31\x92\x34\x27\xf2\xa1\x42\x98\x1b\xae\x5e\x22\x86\x96\xfa\x39\x11\x14\xb4\x5f\x8c\x55\xb4\xd5\x5c\x52\x7e\xc7\xe5\x22\xd6\x8f\x28\x72\x0c\xc7\x45\x5e\xfa\xca\x41\xd0\x0e\xcc\xd5\x87\xf8\x48\x26\x68\xc4\x74\xda\x27\xb3\xb9\x86\xed\x24\x2f\xaa\x30\xf5\xf7\x2f\x9b\x14\x43\xdf\xb3\xb8\xa6\xce\x01\xe5\xcc\x9a\xd7\xa7\x2f\x2b\xb0\xc8\xa0\x3c\x2b\x48\xf5\x23\x32\xc3\xbd\xa7\x1f\x6d\x33\xdc\xef\xc0\xb4\xbc\x0e\x3e\xd2\x5f\x83\xdb\x4d\x5b\xaa\xf0\x9f\x8f\xe7\xa4\x43\x44\xb0\xc5\x88\x86\xe0\x63\xfc\x46\x75\x8b\x43\x6a\x7a\xb8\x40\xb1\x70\xc9\x63\xa0\xef\x70\x4a\x6a\xdd\x32\xdc\x1e\x41\xd1\x29\xa8\xc9\x4a\x56\x5a\x8e\xe1\x52\x06\x28\x40\x35\x30\x7b\x44\xc9\x88\xa5\xe1\xce\x09\x9b\xf4\x4d\x5c\xc9\x55\x91\x6e\x8b\x7a\x60\xf1\xbb\x26\xb6\x18\xe8\x14\xce\x1e\x26\x49\x6a\xdf\x73\xc7\xfb\x00\x5f\xa3\xa3\x0a\xf1\xa2\x55\x91\x2c\x97\xac\xc0\xd0\xd9\x22\x9d\x25\x6b\xd6\xf4\xe7\x40\x40\x37\x11\x40\x4d\x6a\xfa\x63\x80\x22\xbf\x2c\x31\x4d\xaf\xe9\x60\x2a\x97\xec\x67\xb5\xee\x96\x98\xa5\xe6\xe0\x2d\xd2\x64\x71\xa9\x2b\x76\xa1\x40\xcb\xff\xd8\xb1\xc0\xc3\xa1\xcf\x44\x05\xc0\x4a\x1d\xd9\x12\x82\xe2\x39\xf6\xff\xf1\xb9\xf2\xd7\x85\x38\x1f\xa0\x92\xa6\xd9\x38\x8c\x22\x41\x69\x84\x8d\x32\x68\xb5\x74\x89\x31\xe2\xc2\x7a\x29\xcb\x8f\xab\x9c\x04\x8e\xd6\xae\x01\x44\x6d\xef\xc6\xc7\xdb\x8d\x5d\xdd\xc5\x52\x07\xea\x8f\x4e\x69\x6b\x95\x5f\xff\x96\x54\xab\x97\x7c\x87\x82\xc6\xef\x4e\xd8\x92\x88\xe1\x4e\xd6\xef\x6e\x11\xf0\x38\xdf\x96\x8c\x33\x03\xa7\x79\x9e\x56\xc9\xe6\x85\x08\x85\x0e\xf6\x3c\xbb\x67\xb0\x5f\x58\x78\xc5\xba\x46\x73\x3c\xdc\xb7\x0a\x12\xf8\x7d\x30\x4b\x50\xbb\x27\xf5\xaa\x5c\xbc\x61\xbb\x97\xf9\x75\x16\xd8\x3f\xff\x02\xe2\xf3\xf8\x22\x29\xa1\x18\x26\x8b\x82\xc1\xd4\x21\x4e\xf7\x15\x79\xdd\x15\x35\xf1\xe8\x13\x8a\xb4\xfd\x02\x59\xfb\x29\xbe\x5b\x23\x4d\xd5\xcd\xd9\x44\x7b\x25\x65\x2d\x52\x16\x16\x1f\x56\xf9\xf5\xa9\xe0\xdc\xac\xf6\x9f\x93\x88\xe9\xf6\xfa\xff\x52\x5d\xb0\x17\xbf\xdd\xf2\xa2\xa4\x7b\xba\x42\x8a\x4c\xf9\x49\xfe\x3d\x9a\xf2\x0f\x9a\x17\x15\x21\x55\x66\x8e\x8b\x95\x01\x4b\x15\x05\x6d\x41\xdb\x66\x7a\xec\x41\x55\x9b\xe0\x34\x81\x44\xf8\x84\xd4\xfb\x8f\x56\x47\xfa\x93\xc7\x43\x52\x9a\x8d\xc3\x90\xd8\xfb\xc9\xc6\x1b\x56\x94\x49\xa9\xa1\xc2\x0b\x10\x70\x56\x50\xbe\x2a\x04\x05\x7d\x40\x81\xb0\x33\xc3\x64\x01\x75\xf2\x41\x9c\xf3\x88\x82\x15\x9d\x58\x0c\x9d\xf7\x0a\x2a\xd7\x83\x03\xe7\xf8\x92\xed\xe4\xec\x78\x5f\x19\x7c\xe9\x50\x56\x08\xfe\xdb\x61\xba\x39\xe4\x77\x56\x57\x79\x64\x46\x66\xaa\x3e\x7b\x80\x6b\xab\xfb\xd5\x78\xb1\x2d\x0a\xd0\x7b\x28\x56\xf1\x62\x93\x6f\xf8\xda\x6a\x55\x8d\xa0\xc0\x7b\x27\x01\x77\xaf\x8a\x46\x69\x7f\xe8\x28\x29\xdf\x86\x6f\xfd\xea\x8c\x9d\x93\xa3\x9f\xcf\xd8\xf9\xac\x82\xff\xd5\x8a\x2c\x76\xa5\x43\x07\x04\xba\xbb\xf3\xf7\x1e\x43\x89\x59\x32\x65\x8d\x7d\xd9\xb4\xf5\x3c\xfd\x11\x1b\x63\x4e\x0b\x05\x0c\x19\xef\x40\x01\x88\x13\x17\x53\x02\xb2\xbe\x17\x44\x85\xac\x5d\x53\xb1\x41\xb4\xaf\xc6\x36\x88\xbd\x30\xfe\xcb\x61\x39\x10\xdd\xc6\x07\x30\x3d\x82\x67\xd6\xc8\x78\x86\xae\xc5\x56\x45\x18\xb2\xd6\x82\xdc\x33\x2e\x02\xc7\x05\xa1\x19\xd7\xc5\x39\xed\xc5\x70\x45\x7f\xa4\xc2\xe3\x89\x47\x0e\x2b\x43\x8c\x52\xb6\x0c\x17\x3b\x49\x8d\x7c\x07\x06\xff\xc7\x28\xcd\xc4\xb4\x94\xe0\x78\xf4\x60\x7a\x6b\xe3\xcd\xa0\x35\xb2\x3c\xbe\xe4\x48\x6f\xa2\xc6\x15\x4e\x07\x1c\x93\xd3\x08\x8d\x5f\x24\x33\x04\x9f\x60\x9b\x05\x78\x5d\xa0\x3c\xe2\xea\xc0\xd3\xd8\x37\xdd\xd6\xdc\x6a\x07\xd7\x8c\x30\xc3\xae\x51\x2f\xb7\xae\xad\xfa\x74\x6d\xea\x68\x0a\xe4\x58\x43\xbe\x0e\xb3\x6d\x98\x7a\x1c\x3a\x9f\xb9\x16\xe4\xee\x8e\x39\xf1\x80\x0c\x87\x91\x44\x2f\x3e\x55\xcb\xba\xaf\xfa\x53\xa4\x76\xb2\x70\x91\x0e\x26\xc4\x5a\x5d\x2e\x8f\xb8\xef\x3e\x1f\xbf\xe6\xf8\xd2\x9a\x5f\xb4\x22\xd1\x77\x7b\x2d\x5b\xdf\xe9\x1c\x60\x5b\xa9\xd9\xe2\x1d\xe2\xfd\xf9\xe5\xa9\x67\x06\x36\x81\x9e\x33\x83\x77\x93\x0c\xcd\xab\xcf\x74\xa0\x97\x3d\x1d\x31\x8b\x7b\xfa\x5d\xb2\x5d\x94\x5f\xab\xaf\xe1\x4b\x19\xba\x93\xba\x76\xcb\x43\x2d\xce\x51\x6f\x88\xf5\x41\xd1\xf3\xf3\xd6\x7e\xcf\x18\xdd\xcb\xdf\x63\x88\xfd\xa0\xf7\x18\xa0\xcf\x4e\x75\x77\x74\x6d\x96\x3e\x1a\xce\x6e\x3d\x4e\x07\xdf\x2d\xcc\xfb\xb7\x4d\x1c\xfb\x35\x76\x87\x4c\xb9\xd4\x34\x36\xb4\x5b\x0c\x50\x52\x3b\x13\x3f\x1b\xf4\x47\x72\xb6\x52\x24\xee\x32\x15\xd9\xb9\xfc\xee\xee\x06\x0d\x69\xe4\x88\xb9\xb2\xf6\x61\xa2\xad\x59\x81\xbd\xe6\xa2\x7b\x0c\x43\x0d\x62\x39\x68\x31\xf2\x44\x49\x65\xdb\x34\x3d\x74\x08\x5a\x87\x0f\xce\x6b\x66\xab\xdc\x64\x3e\x40\xb8\x45\x4a\x63\x65\x5a\x58\x96\xa0\xd4\x69\xd1\xb1\x8c\x4a\x60\x4e\x6a\x9a\x98\xe2\xb6\x89\x29\x72\x18\x95\x44\xc0\x97\xb2\x25\xcd\x03\x64\x4d\x02\x83\x93\x0c\x5f\x3c\x56\xd5\xcf\x97\xca\x04\x76\x65\x70\xab\x3b\x3d\xdb\xaf\x84\x98\x12\xe9\x60\x0f\x89\x68\x86\xca\x93\x43\x53\x8e\x62\x26\xda\x8a\xde\xd7\x38\x44\xa2\x52\x4a\xd5\x50\x69\x4e\x4b\xa4\x0b\x5b\x38\x34\xa3\x48\xc1\x38\xdb\xb6\x95\x8d\x4d\x55\x67\xdc\xd2\x70\xee\x90\xc6\x76\x85\x74\x88\x73\xa5\x3a\x5c\x23\xcd\x67\x66\x3c\x1c\x6c\xab\x04\xe8\xda\x8e\x85\x96\x6f\x59\x3b\x8c\x13\x42\x9f\xdd\x30\x76\x5c\xb5\x14\xdc\x56\x9d\x73\x51\x4c\xa5\x12\xa2\xa3\xaa\xcb\xa6\x8a\x9d\x95\x14\xc9\xc9\x6a\x36\x1d\x82\x33\xc5\xa2\xa8\xf5\xae\x43\x38\xa5\x79\x26\x09\xe7\xac\x45\x4a\x51\x8a\x3b\x4b\x9b\xfe\x07\xd2\xa6\xff\x4a\xff\xb0\xb5\xe9\x3f\xc2\x39\xfa\x29\xf8\x83\xbe\x71\xb0\x9f\x60\x96\x33\x30\x0a\x89\x82\x66\x56\xfb\x08\xce\x95\x47\x9b\x07\x6c\x0f\x5a\xfd\xd4\x5c\x6b\x46\x6f\x9b\x5b\x5f\x35\x55\xe4\x19\x44\xe8\xbc\xb1\x80\x79\xd3\x88\xd0\x41\x2e\x35\x55\xbe\xf1\x90\x76\x76\xd2\x42\x3f\x6f\x5e\x8e\x34\x68\xb6\x7a\xf6\x09\xb0\x37\x4f\x04\x2b\x51\x1f\x56\xe3\x30\x78\x53\x9f\x9f\x93\xc3\xff\xf7\xf7\xbf\xff\xed\x49\x99\x6f\x8b\x05\x3b\x0e\x37\x9b\x24\x5b\xfe\xfa\xfe\x97\xe0\x9b\xf1\x0f\xdf\xfc\x63\x11\x46\xd3\xef\xc7\x8b\xd5\x36\xbb\x1c\x7f\x2c\xc7\xeb\x70\xf3\xff\x03\x00\x00\xff\xff\x77\x3f\x1f\xbb\x72\x79\x0f\x00") -func pkgUiStaticReactStaticJs242f57af3ChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJs2926cad18ChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJs242f57af3ChunkJs, - "pkg/ui/static/react/static/js/2.42f57af3.chunk.js", + _pkgUiStaticReactStaticJs2926cad18ChunkJs, + "pkg/ui/static/react/static/js/2.926cad18.chunk.js", ) } -func pkgUiStaticReactStaticJs242f57af3ChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJs242f57af3ChunkJsBytes() +func pkgUiStaticReactStaticJs2926cad18ChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJs2926cad18ChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.42f57af3.chunk.js", size: 1014130, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.926cad18.chunk.js", size: 1014130, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJsMainA7db5187ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x0b\x77\xe3\xb6\xd1\xe8\x5f\x91\xf8\x35\x0a\xb0\x82\x68\x52\xb6\xf7\x41\x19\xd6\x49\x37\x9b\x64\xdb\x6c\x36\x8d\x37\x4d\x53\x55\x27\x07\x26\x21\x89\x31\x45\xb2\x24\x64\x4b\xb1\xf8\xdf\xef\xc1\x00\x20\x41\x8a\xde\x4d\x1f\xf7\x9e\x7b\xbe\xa6\x6b\x81\xc0\x60\x30\x78\x0d\x06\x83\xc1\x00\x89\x4d\x5c\xba\x0f\xfc\x36\x67\xe1\xdd\x9f\xca\x2c\xcd\xd7\x05\xcb\x37\xb4\x3f\xfa\x78\x5c\x2c\xb1\x9b\xef\xca\x0d\x5a\x2c\xbc\x25\x79\xf4\x3d\x2f\x58\xed\xd2\x50\xc4\x59\x8a\x38\x11\x84\xe1\x47\xee\xf2\x7d\x9e\x15\xa2\xa4\x0c\x4d\xbd\xe7\xb8\x22\xbe\xff\xf2\x04\xaa\x22\xfe\xc5\x8b\x56\x2c\xc4\x3d\xbf\xec\x89\x7b\xde\x13\xd7\x93\xf7\xe5\xf4\x34\xee\xd5\x79\x27\x6e\xd8\x7c\x4a\x52\xc3\x2c\xc9\x0a\xfa\x58\x11\x1d\x74\xb7\xec\x8e\xd3\x1a\x46\x10\x46\x52\x52\xe0\xc7\x7b\x56\x0c\x32\xfa\x58\xcd\x0a\x2e\x76\x45\x3a\xc8\xdc\x82\x8a\xe3\xd1\x23\x99\xbb\xa6\x4c\x05\x6e\x69\xaa\x02\x8c\xa6\xbb\x24\x19\xd2\x62\x5e\x04\xbe\xfc\x8e\x22\xda\xa6\x62\x95\x15\x48\xa2\x64\xd4\x9b\xb1\x2b\xee\x26\x3c\x5d\x8b\xcd\x6c\x3c\x66\x38\x5b\x70\x37\xdc\xb0\xe2\x0b\x81\x18\x5e\x8e\xa9\x68\x8a\x4c\xb3\x62\xcb\x92\xf8\x37\x8e\x70\x45\x32\xb7\x0c\x59\xc2\xff\x5d\xc4\xcf\x3e\x82\x58\x64\x37\xa2\x88\xd3\x75\x83\x1b\x3f\xd6\xb0\xec\x9a\xfa\x73\xa7\x58\xdf\x22\x67\xbc\xc8\xdc\x42\xb6\x80\xac\xfc\xd2\xfd\x35\x8b\x53\xe4\x10\x07\x8f\x1d\xec\x04\x12\x84\x75\x60\x64\x5b\x74\xe0\x64\x79\x75\xf1\x76\x81\x26\x38\xe0\x66\xc8\x68\x12\xc4\x15\x9f\xf3\x40\x5c\xb3\x39\x0b\x44\x65\xf5\x07\x47\x1e\xc9\x59\x51\xf2\xb7\xa9\x40\x99\x5b\x60\x32\xbd\xbc\xc4\xd0\x43\x9d\xa4\x75\x9d\x74\xdb\x4d\xba\xad\x93\x18\x24\x65\x2e\x23\x3e\x26\x99\xa4\x33\x4c\xb2\x94\xf7\x34\x8a\x3d\x76\x90\xaa\xee\xad\xae\x32\xc3\xad\x0a\xca\xf6\x35\xd0\x7c\x2f\x0a\x16\x8a\xd6\x60\x53\x03\x2d\x9d\x45\xd9\x63\xbc\x42\x8e\x33\xa4\x28\xa5\xc2\x0d\xcb\x12\x31\xec\x8a\xec\xdb\xec\x81\x17\xaf\x59\xc9\x11\xc6\xa3\x91\x23\x0a\x96\x96\x39\x2b\x78\x2a\x9c\x21\x4d\xf1\x6d\xc1\xd9\xdd\x4c\x50\xe1\xaa\x48\x84\xab\x87\x4d\x9c\x70\x24\xf4\x40\x18\x8d\x86\xdc\x4d\xb3\x88\x7f\xc7\xb6\x32\x76\xcd\x05\xf2\x30\x71\x6e\xb3\xe8\xe0\x60\xac\x47\x84\xea\x3a\x8f\x0c\xf4\xff\xb1\x43\x69\x3a\x1a\xa1\x94\xb6\x4a\xc4\x75\x55\xa0\xfd\x50\x6a\x55\x0e\x62\x9a\xaa\x99\x8a\x91\x82\xda\x8d\x35\x8b\x57\x28\xa5\x67\xc5\xfa\xf6\x1f\xe8\x1f\xe5\x33\xb4\xf0\x26\xaf\x96\x8f\x3e\x39\xaf\xf0\x3f\xca\x67\xe4\x77\x45\xfd\x03\x9f\xb9\x7c\xcf\x43\xc4\x30\xd6\xfd\x51\xa0\xba\x43\xd3\x85\xbf\x24\xbe\x87\x89\x15\x33\x3d\x89\x39\x87\x18\xdc\x90\xc3\xfe\x7d\x7a\x9a\xa8\x31\x9a\x07\xff\x70\x55\x10\xcf\xff\xbb\xb4\xaa\x98\xaf\x92\x8c\xc9\xb8\x8b\xa5\x4d\xbc\x45\x7b\x97\x84\xcf\x3e\x4a\xe0\xa7\x53\x7b\x2b\x30\x75\x2f\x2f\x9f\xb5\xe8\xf1\x97\x98\x9c\xc6\x4e\x7b\x63\xcf\x97\x4f\x35\xfc\x7f\x9b\xf8\x7f\xb9\x67\xfe\xe3\x8a\x3d\xd9\x4b\xff\x83\x16\x6c\xb2\xfa\x62\xf2\x15\x0c\x9d\x69\x85\x3f\xf5\xfd\xe9\x71\xf3\xfc\x64\xdc\x3c\x3f\x19\x37\xcf\xfb\x09\xc0\x4f\x7f\x7c\xaa\xdc\x71\x7f\xe1\xe3\x7e\x0a\xc6\x0d\x19\x6a\x41\xe5\xae\x28\xe2\xed\x09\x6f\x33\x7c\xc8\xe6\x36\x94\x66\xf3\x02\x4d\x2f\x2f\x89\xf9\xe7\xe1\xa0\x40\x92\x3f\x2e\xb2\xe5\xf1\xb8\xf0\x88\x47\xbc\x25\x96\x72\x09\x10\x05\xfd\x52\x41\x41\x82\x3e\xb2\x7f\xee\x58\xb0\xf0\x4c\xe6\x25\x61\xbf\xed\x0a\x1e\x2c\xa6\x17\x56\xdc\x2d\x8f\xd7\x10\x77\x49\xe0\xdf\xd4\x5b\x92\xdb\x84\x85\x77\x81\xc6\x4e\x6e\x93\x1d\x57\x1f\x2a\x43\x91\x3d\xa4\xc1\xc2\x7f\x7e\x49\x2e\xa6\xe4\x62\xba\x24\xe1\x81\xa5\xad\x72\x22\x56\xdc\x35\xb9\xfc\xf3\x57\x2a\xca\xc0\xf9\xe7\xaf\x9a\xc8\x75\xc1\x0f\x12\xdb\x2b\xa2\xff\xd5\xd1\x5c\x01\x7b\x40\x84\x8c\xbb\xdb\xb0\xbb\x38\x58\xf8\x2f\x5f\x11\xff\xe5\x39\xf1\xbd\x17\x2a\x7e\xcb\xd6\x3c\x15\x2c\x58\x48\xc4\x56\x79\x59\x12\xdf\x73\x8d\xe8\xe5\xa5\x84\x27\x17\x3a\x4b\x56\xb0\x14\xaa\x7d\x79\x49\xfc\x8b\xba\x84\xac\x08\x37\x71\x14\x2c\xfc\xcb\x73\x72\xe9\x91\xa9\x77\xa1\xe2\x0b\x1e\x19\xec\x1a\xb2\x64\xc9\x36\x4b\x83\xc5\xf4\xfc\x9c\xf8\x97\x1e\xf1\xa7\x53\x95\x70\x1f\x67\x09\x17\xc1\xc2\xbf\x78\x29\x5b\xcc\xf7\x97\x64\xb5\x0b\x37\x65\xcc\x54\x69\xba\x15\xd7\x59\x12\xa9\x88\xa9\x7f\x29\x91\x36\x15\x9e\xbe\x94\xdf\x71\x1a\xc5\xeb\x2c\x58\xbc\xb8\x84\x2a\x79\x4b\xa2\xab\x0f\xbd\x77\xee\x49\xb2\x97\x24\x89\xd7\x1b\xa1\x9a\xda\x7f\x71\x4e\xa6\xfe\x73\x99\xa6\xe3\x55\x7b\x4f\xa7\x17\x4d\xcf\x40\xbc\x2e\xca\xbf\xb8\x20\xd3\xf3\x97\xc4\xbf\xb8\x68\x12\x0e\xc1\x62\xea\xfb\x44\xff\xd3\xf1\x79\x9c\xde\xe9\xb6\x7a\x39\x95\x02\xa6\x8e\x3f\xf0\x24\xc9\x1e\x74\x35\xe4\xbf\x29\x60\xda\x72\x33\x1a\xbc\x25\xa9\x3b\xc7\xaa\xfc\x96\x15\x99\x6c\x3c\xa8\xaa\x04\x4a\xd9\xfd\x41\x0f\x96\xe9\xcb\x25\x81\x8e\x53\xc9\xba\x35\x5a\xfd\xf5\x1c\x10\x5b\x44\xbd\x9a\x92\xa9\x77\xbe\x24\xf9\xae\xc8\x13\x6e\xf0\x02\xaa\xba\x3b\x9a\x28\xe8\x4c\x45\x8d\xb7\x24\x65\x9c\xdc\xf3\x22\x58\x48\x24\xfa\xdf\x92\x3c\x6c\x62\xc1\xad\x7a\x49\xa2\xbb\x95\xf5\x96\x55\x85\x1e\xe2\x34\xca\x1e\xdc\x5f\xff\xb2\xe3\xc5\x01\x13\x5b\xd0\x56\x93\xf0\xfd\xed\xaf\x3c\x14\x6e\x5e\x64\x22\x13\x87\x9c\xbb\x1b\x56\xbe\x7f\x48\xbf\x2f\xb2\x9c\x17\xe2\x30\xab\x45\x3e\x66\xc9\x42\x94\xb9\xe1\x26\x4e\xa2\x82\xa7\xc8\x71\x9d\xb1\x90\x33\x1c\xb8\xd8\x2e\x49\x94\x5c\x82\x52\x1a\x65\xe1\x6e\xcb\x53\xe1\x86\x05\x67\x82\xbf\x49\xb8\xfc\x42\x4e\xc8\xd2\x7b\x56\x3a\x18\xbb\x61\xc2\xca\x52\x8a\x3d\x54\x10\x29\xab\x80\x50\xf5\x18\xc5\x05\x87\x32\x03\x27\x11\x85\x43\xf2\xac\x8c\xd5\x27\xbb\x2d\xb3\x64\x27\xb8\x43\x12\xbe\x12\x81\x47\x44\x96\x07\x5e\x85\x5d\x96\xe7\x3c\x8d\x3e\x64\x88\x61\x32\x4c\xa5\x08\xf5\x3a\x4b\x05\xdf\x0b\x8c\xa5\xd0\x36\xd4\xcd\xf0\xf5\x2f\xf7\xdb\xe4\x35\x14\xff\x8e\xa5\x6c\xcd\x0b\x2c\x36\x45\xf6\x30\x48\xf9\xc3\xe0\x4d\x51\x64\x05\x72\x54\xf2\x20\x2e\x07\x69\x26\x06\xec\x9e\xc5\x09\xbb\x4d\xb8\x3b\x78\xbb\x1a\x1c\xb2\xdd\xe7\x05\x1f\xec\xca\x38\x5d\x0f\xde\xbe\x19\x3c\xc4\x62\x33\x60\x83\x15\x4b\x92\xc9\x2d\x0b\xef\x06\xe5\x2e\xdc\x0c\x58\x39\x78\xb3\x57\x95\x24\x03\xb1\xe1\xa9\xfc\x53\xf0\xcf\xcb\x01\x8f\x65\x68\xc0\x06\xdb\xb8\x14\xec\x8e\x0f\xe2\x54\xe2\x2c\x06\x61\x96\x46\x50\x47\x96\x0c\xe2\x34\x4c\x76\x11\x27\x83\xac\x90\x19\x07\x39\x5b\xf3\xc1\x86\x49\x7a\x06\x5f\xbe\x7f\xfd\xe1\xe7\xef\xdf\x0c\x58\x1a\x49\x0a\x0b\x9e\x46\x5c\xee\x0a\x24\xa2\xbf\xec\xe2\xe2\xae\x1c\xbc\xcb\x22\xee\x3a\x78\x96\xd2\x27\x2b\xed\xc6\x69\x2c\x4c\x77\xa4\xb8\x82\x8d\x25\x57\xdf\x34\x05\xee\x5c\xa8\xdd\x66\xa8\x5a\x91\xda\x4d\x8a\x9c\x69\xe4\x60\x92\x19\xfc\x11\xbf\x8f\x43\xfe\x7d\xbc\xe7\xc9\x0f\x4c\xc4\xd9\xf1\xe8\x93\x98\x16\x72\xa7\x7a\x17\x8b\x3f\xb2\xf0\x2e\x4e\xd7\x37\x22\x2b\x5a\x30\x85\xbb\xcd\x7e\xfb\x48\x62\xf9\x74\x5a\xf6\x74\xd2\xed\x13\x29\xfe\x0c\xaa\x93\xd7\x51\x34\x3b\x8b\x09\xc4\x15\xbc\x94\x9b\x00\xe6\x3e\xc4\x91\xd8\x20\x4c\x98\xbb\xe1\x92\x79\x20\x8c\x15\x84\xac\xb4\xac\x3b\x8b\x53\x5e\xc0\x36\xb2\x89\x97\xdb\x54\xf8\xf8\x05\xa0\x58\xb8\xe1\xed\xa8\x9b\xf8\x37\xae\xa2\x75\x73\xad\x92\x4c\x7c\xf8\x5d\x09\xc7\xe3\x63\x55\xd5\xf3\x4f\xee\x45\x52\x52\x90\x4c\xcd\xc1\x98\x2e\x96\x24\xa1\x8f\x20\xb8\x97\xc1\xc2\xf9\x1f\x1e\x85\xd3\x0b\xcf\x21\xce\xff\xb0\x55\xf4\x72\xf5\x52\x86\xc2\xdb\x8b\xdb\x8b\x5b\x19\xba\x88\xd8\x8b\x8b\x48\x86\x5e\x5d\x5c\x78\x3c\x72\x96\x24\xe1\x6b\x9e\x46\xc1\x63\xb9\xc9\x1e\x82\xa1\x47\xd2\xec\x75\x96\xec\xb6\x69\x19\xf8\x24\x61\xb7\x3c\xf9\x4a\x6e\x91\x84\xe0\x45\x00\x95\x86\xb8\x3f\x66\xfb\x3f\x66\x45\xc4\x8b\xd7\xb2\xe0\xc0\xf9\x9f\x30\x0c\x1d\x12\x9a\xe6\x51\x90\xcd\x8c\x4d\xb9\x23\xb9\xe9\x3a\x4e\x83\x4b\x22\x7b\x67\x5d\x64\xbb\x34\x52\x99\x01\xb6\x89\x7c\x9f\xb3\x30\x16\x87\xc0\x7d\x79\x49\xca\xac\x10\x3c\x02\x88\x8a\xec\xd9\x3e\x2e\x35\x9d\x1d\xfc\xb7\x99\x10\xd9\xd6\x21\xdb\x2c\xe2\x2a\x6d\x95\xa5\x42\x85\xc2\xa6\x10\x11\x87\x77\x56\x99\x20\xc3\xac\xb2\x62\xab\x3e\xe3\xf4\x9e\x17\x25\xff\xd0\x8e\xdd\xc6\xa9\x0e\xb0\xbd\x0a\xb0\x9d\xc8\x60\x83\xff\x4e\xd5\xa8\x46\x5d\x36\xc1\xbe\x36\xfb\x49\x8e\x2c\xeb\xfb\x1b\x18\x5f\x2a\xa2\xe0\x25\x2f\xee\xf9\x4d\xce\x42\xde\x60\xf9\x16\x76\x86\xba\xd4\x24\x5e\xa7\x1f\x64\x29\x3f\xc5\x62\xf3\x85\x6c\x8a\x1a\xee\x4b\x1e\xc6\x5b\x96\x58\x31\x72\xf4\xd4\xf4\x7f\xb0\x23\x2a\x72\x50\xed\xd8\xad\x86\xeb\x4d\xad\x16\x95\x9c\xd5\x81\x36\xe7\x65\xb0\x58\xca\x4c\x2a\x50\xf2\x22\xe6\x65\xf0\x98\x67\x71\x2a\x4c\x77\x0c\x7d\x52\xb0\x28\xde\x95\xc1\x39\x49\xe2\x94\xab\xaa\x4e\xc9\x2a\x4e\x12\x39\xa6\xe4\xaf\x19\x29\x2b\xf8\x9f\x43\xca\xc3\xf6\x36\x4b\x02\x27\x8c\x8b\x30\xe1\x4e\x05\x19\xcb\xe0\xf1\x34\xbf\x6f\xe5\x87\x3a\x95\x82\xe7\x65\x30\xf4\x2b\x72\xcb\x0a\x8b\x06\x3b\xeb\x2d\x2b\x54\xd0\xef\xa1\xa2\x69\x51\x5d\x53\xb2\xc9\x8a\xf8\x37\x39\x7c\xa1\xbc\xdf\x78\x91\x05\x43\xaf\x22\xe5\x86\x45\xd9\x03\x34\xde\x39\xd9\xc4\xeb\x0d\x08\x14\x0d\x92\x8a\xac\x8b\xd8\x9a\x3c\xec\x36\xbb\xe7\x5f\x32\xc1\x24\x96\x50\xd7\xf8\xf2\x42\xfe\xe7\x3c\x31\xf0\xad\x69\xd4\x37\x48\xf5\xb4\xf1\xd4\x98\x79\x67\x26\x11\xbf\xe7\xa9\xb8\x51\x0b\xa4\x1e\x48\x1e\x91\x1d\xab\x21\x5e\x6a\xc4\xa6\x39\xb6\x71\xaa\x26\xac\x3d\x68\xb7\xac\x90\x7c\xb2\x6c\x7f\xd5\x1d\x75\x21\xff\x73\xea\xf8\x6f\xad\xd6\x0d\x93\x38\xbc\x93\x0b\xa2\xac\xe7\x26\xbb\xe7\x85\xf9\x90\xc3\xea\x1b\xd3\x50\xb2\x49\xb6\xd9\xae\xe4\x5f\x84\x22\xbe\xe7\x3f\xa8\x31\xe2\x7b\x15\x89\x53\xc1\x0b\xa6\xd6\xf7\xc7\x82\x47\x05\x7b\x78\x7f\xcf\x8b\x84\x1d\xde\xca\x94\x7b\x96\x04\x3e\x3f\x3f\x7b\xee\x55\x64\x93\x65\x77\x65\xf0\x58\x55\xa4\x54\x6c\x37\x54\x3f\x3b\xf5\xb3\x55\x3f\xb9\xfa\xd9\x48\x86\x18\xc9\x3f\x2b\xfa\xa8\xc5\x83\x42\x37\x0f\x88\x09\x44\xf1\x8a\xc0\xab\xc8\x9a\x7a\xe4\x9e\x7a\xe4\x96\x3e\xe6\x45\x16\xf2\xb2\x7c\x9f\x4b\x82\x60\x9c\xeb\x98\x1f\xd8\x03\x74\x67\x13\x23\x3f\xf5\xe0\x6f\x22\xdf\xaf\x56\xa5\x94\xdf\xac\x7c\x20\x08\x2e\x89\xac\xd9\x1f\xeb\x8e\x37\x31\x37\x6a\x16\xe9\x2f\xf9\x7b\x1b\xa7\xd1\x1b\xd9\xa9\x75\xac\x6e\x0f\x98\x74\x9b\x9d\x88\x60\x3f\xb3\xac\xc8\x01\x16\xe5\x46\x24\xdb\x2b\xfd\xa2\xa0\x8b\xc3\x52\x2e\xd5\x21\x13\x48\xe0\xd9\x47\xf4\x8d\x7c\xc1\x96\x52\x58\x4a\x0e\xa0\x64\x26\x02\x37\x0b\xcc\x1b\x24\xf0\x63\x6c\xa9\xbe\x6c\xcd\xe5\x62\x49\x52\xea\xcd\xd2\x2b\xd1\xa0\x4b\xd5\x4a\x54\x50\xee\xf2\xbd\xe0\x69\x84\x86\x1e\x79\xac\x48\xe2\x2a\x56\x81\x67\x4a\xe5\x2a\x16\xe9\xd2\x8d\x98\x60\x73\x54\xc0\x6f\x13\x43\x22\x9e\x70\xc1\x07\x4d\x84\x8d\xab\x20\x32\x1e\x93\x3a\x95\xaa\xfc\x38\xb0\xf0\x10\xa6\x94\xdf\x05\x36\x7a\x47\x56\x21\x61\x89\xba\x5a\xd2\x25\x8c\xc6\x9a\x76\x92\xd2\x89\x0f\xcd\x24\xa8\x37\x13\x57\x71\x53\x27\x61\xea\x14\x2f\xc4\x52\x69\xc5\x74\x2d\x8a\xd1\x08\xb1\xc9\x84\x38\xe9\x6e\x7b\xcb\x0b\x87\x52\x29\x2e\x67\xab\x41\x31\x1a\x15\xd7\x4a\x15\x57\x60\x5c\xb1\x2b\x90\x7f\x19\x4d\xc7\xbe\xde\x52\x93\x52\xb6\x5f\x48\x13\x85\xb0\x24\x3b\x1a\x1a\x52\xb6\xd4\xb3\x28\x61\x33\x31\x1e\xe3\x8c\xb6\x95\x78\xe1\x42\x7c\xb6\x5b\x1e\x8f\xce\xff\x3c\x7f\xfe\xdc\xc1\x44\x7c\xb6\xa3\xd4\x1b\x8d\xc4\x68\x84\xb6\x74\x7b\x4d\xbd\xf9\xf6\xca\xbd\x9c\x4f\xb6\x13\x77\x1a\x78\xc1\x64\x8b\x49\xb9\x10\x4b\xaa\xf5\xd1\xc8\x29\xd6\xb7\x0e\xf1\xc7\x5b\x45\x50\x4e\x56\xad\x52\xdb\xf5\xaf\xc5\x78\x94\x43\x2b\x60\x45\xcb\x1c\xe5\x5a\x33\x5f\x2e\x56\xcb\x5a\x1f\x8d\x30\x19\x8f\x57\x38\x38\x69\x16\x0d\x3d\x1a\x59\xf9\x74\xc8\xce\x8d\x89\x2a\x2c\x77\x61\x15\x70\x25\x3f\x55\x7d\xb0\x26\xf7\x74\xa8\xc8\x04\xf9\x36\xc7\xf1\x0a\xe5\x8b\xf5\x72\x34\x92\x7f\x0d\x24\x1d\xfa\x33\xd0\xb1\x56\xf7\x50\x56\x83\x86\x0e\x3d\x5c\xb5\xb1\x4b\xf6\x6e\x41\xc9\x4f\x3a\x1c\x9a\x4f\xb9\x4c\x60\x92\xbb\x20\x6f\xd0\x1b\xb4\x21\x77\x28\x27\xce\xde\xc1\x32\xf6\xa0\x63\x23\x15\x7b\x70\x30\xae\x2a\xd4\x37\xd0\x94\x9c\x46\x12\x52\x92\x90\xec\xc8\x96\xe4\x64\x43\x22\xfa\x1d\xb4\x90\xfb\xfd\xfb\x9b\xb7\x1f\xde\xfe\xf5\xcd\x2f\x6f\xbf\xfb\xea\xed\x77\x6f\x3f\xfc\x4c\x56\x26\xe9\xbb\x37\x5f\x7f\xd1\x4e\x5a\x9b\xa4\x77\x5f\xfc\xed\x97\xbf\x7e\xf1\xed\x8f\x6f\x9a\xe9\x7f\x6f\x94\xf0\xe2\x8a\xc3\x7c\xd8\xc6\xe9\x68\x24\x86\x74\xb2\x1e\x8d\x50\x1d\x45\x05\x26\xec\x5a\x7f\xb2\xfd\x68\xc4\x86\xd4\x02\x60\x7b\xca\x70\x25\x5b\x99\xbb\x9c\x85\x1b\xf4\x80\x30\x41\xed\x13\x0c\x51\xe3\x8a\x88\xa8\xb3\xad\x88\x70\x77\x25\x8f\xe8\xd0\xaf\xa4\xac\x7c\x3a\x96\x50\xa6\x47\x50\x54\xb3\x4e\xfa\x58\xb3\xd0\x8a\xec\xd1\xad\xdb\x66\xb7\x64\x91\x91\x4c\x71\x82\xcc\xca\xb5\xc4\x1f\x1b\xae\xaa\x14\x92\x53\x9d\x73\x88\x36\xd4\xce\xed\xae\x40\x28\x53\x7b\x41\x24\x17\x0a\x7d\x60\xf6\xb8\x07\xb9\x17\x5a\x58\x86\x0a\xfe\xcf\x5d\x2c\xb7\xdf\x43\xaf\xc2\x64\xa3\x81\x0e\x1f\x03\xca\xdc\x52\xb0\xf0\xee\x78\xcc\x5c\x29\x92\xc0\xc0\x93\x1f\xcd\x30\x1c\x8d\x32\x7b\x7c\xc1\x20\x39\xd0\xe1\x10\x59\x39\x24\x0c\x7c\xc8\x11\xf9\x54\x76\x99\x86\x67\x9f\xa4\xca\x27\x11\x5f\xb1\x5d\x22\xfe\xca\x92\x1d\x97\xc2\x81\x91\xf7\x82\x03\x10\x0c\x05\x35\x62\xcf\x68\x84\x34\x17\xde\x2c\x36\xba\x69\x27\xfe\xd2\x3d\x90\xf6\xf7\x1e\xe6\x53\x4f\xbb\xd2\x4d\x55\xf3\x8c\x56\xb2\xfa\x89\x7f\xe3\xf8\xb1\x3f\x9e\x1a\xfc\xa4\x7c\x22\x27\x49\xfa\x12\x80\x8b\xbd\xa1\xfd\xcd\x04\x32\x22\x0c\x97\x4c\xcd\x64\x35\x48\x33\x35\x81\xf5\x88\xf5\x08\xa3\x29\xac\x8f\xb9\xb5\x3e\x92\x74\x4c\x4b\xd5\x43\x77\x54\x33\xc1\x2d\xcd\x17\x6c\x09\x3a\xda\xe1\x1d\x96\x68\x0b\xea\xcd\x8a\xab\x72\x36\x1e\x17\x38\xa4\xdb\x45\xb1\x24\x68\x47\x37\x8b\x62\x89\x47\x23\xb4\x73\x55\xa7\x8c\x46\x6a\xdd\x08\x47\x23\x14\xd2\x71\x48\xe2\xf2\x3b\xf6\x1d\x0a\xf1\x5c\x49\x31\x41\x48\xa9\x7f\xe6\xcd\x43\xba\x96\xc1\x89\x7f\xe6\x01\xe4\x64\x5d\xf3\xc4\x10\xd0\x99\x9e\x1d\x8d\xd0\x9d\xec\x02\xa2\xf0\xee\x5c\xbb\x9b\x21\x6b\x3b\x0a\x63\x4c\x92\x45\x3a\x2e\x96\x34\x94\xd4\x9f\x12\xaf\x10\xa1\x90\x2a\x30\x3c\x1a\x0d\xfd\x21\xa5\xa6\x32\x6e\x3d\x70\x80\x8e\xfd\x68\x74\x6f\x9a\x94\x84\x24\xc4\x64\xe7\x1e\x54\xdc\xa1\x8e\xab\x8b\x94\xb8\x65\xa9\x6f\x46\xa3\xf4\x5a\xd6\x6c\x78\x77\x3c\xaa\x02\x93\x45\x3a\x29\x97\x58\x89\x17\x36\x3d\x32\x6b\x29\x33\x2b\x1c\x33\xf9\xe3\x2f\x15\xfc\xd8\x5f\x1e\x8f\x1e\xb9\x1b\x8d\x50\xb2\x48\x97\x74\xbb\xf0\x96\x18\xfa\xab\xaa\xaa\xea\xd3\xcc\xa1\x77\x1c\x3d\x3d\xec\x9c\x94\xaf\x99\x94\x5c\x27\x3f\x3b\x54\x0e\xeb\x7a\xcb\x08\xad\xa8\x44\xab\xc4\x94\xc5\xe4\xb0\x31\x95\x63\x4b\xe8\x8c\x64\xc1\xc6\xfe\x92\xa8\x1f\x3a\x09\xf1\xcc\xe2\x76\x8d\x28\xd9\x30\x3c\xc3\xe9\x9e\xac\xcc\xbf\x57\x93\x5e\x56\x08\x13\xe8\x3d\x8d\xc8\x0d\x8d\xc8\x07\xba\x22\xbf\xd2\xd5\xec\xa9\x8a\xe9\xc9\xad\xea\xd6\x33\x03\x64\x15\x5b\x73\x00\x46\xd1\xce\x1e\x3e\x21\x2c\x39\xa1\x5e\x9a\x60\x2c\xa1\xf0\xea\xfd\x68\x84\xde\xd3\x10\x93\xf0\xfa\xc3\x68\x84\x3e\x50\x39\x7e\x60\x50\xa1\xf0\xea\x66\x34\x42\x37\x2a\xf1\xd7\xd1\x08\xfd\x2a\x13\x61\x16\x5a\x6c\x53\x4d\xd5\xd7\xb3\xf2\x21\x16\xe1\xc6\xa4\xc0\xf6\x0e\x3f\x86\xac\xe4\x6a\x8f\x17\xbc\xa6\x9e\x92\x11\x66\x10\x09\xdb\x02\x19\x3b\xd1\x39\xcc\x96\x51\x03\xe9\x59\xd4\x03\x70\x36\xad\x4e\xf8\xe7\x1c\xdd\x8c\xe9\x6b\xf2\xeb\x98\xbe\x1e\x77\xc0\x71\x80\xde\xcb\xb4\x0f\x7d\x69\x55\x33\x9b\xde\x93\x0f\x98\x34\x13\xe9\x86\xfc\x8a\xab\xdf\xb3\x1a\x53\xc9\x14\x9a\x4f\xd9\x4b\xd8\x5a\xa0\xe9\xaa\x49\x66\x7b\x95\x5c\x61\x5c\x21\x4b\xea\xbf\x53\x38\x95\x94\xcf\x17\x62\xec\x48\x12\x9c\xa5\x39\xee\xc9\x40\x3f\xdc\x88\x75\x0c\x64\x5b\xe6\xa6\xb8\x96\x84\x87\xed\x34\x1f\x13\xd6\xe0\x7f\xb0\x8f\xe4\xd7\x05\xcf\xd1\xc6\x6c\x55\xa2\x56\xcd\x1a\x30\x49\x62\x9d\xff\x7d\xad\xaa\x96\x72\x15\x7d\xac\x2c\x41\x60\xd3\x92\x35\x18\xdd\x48\x59\x43\x0a\xe2\x0b\x67\xef\x8c\x99\x9b\x2e\x29\x73\xc3\x69\x8e\xe4\x1e\x68\x25\xb0\x2d\x44\x44\x9d\xbc\x51\x93\xf7\xd0\xc9\x2b\xb2\xbc\x3e\x86\x1f\xdc\x67\x71\x34\xf0\x86\x94\xa6\xee\xde\x97\xf0\xee\x1e\x82\x98\x58\x29\x07\x95\x72\x80\x20\x26\x69\x53\x9d\x1b\xd4\x32\x9b\x58\xb0\x89\xe4\x6b\x48\x05\xe8\x63\x1a\x30\xd2\xa8\xbf\x05\xa5\x9b\xb9\xb3\x77\x02\xe7\xe0\x90\x4c\xef\x50\x3b\x9b\x2d\x80\x49\xd4\x38\x0a\x12\x35\x80\x70\x25\xf7\x4c\x12\x63\x53\xf0\x07\x84\x1f\xbf\x19\x8d\xc2\x84\xb3\xe2\x43\xbc\xe5\xd9\x4e\xa0\x6f\xe4\x6c\xdb\xa5\x72\x03\x8a\x1c\xd8\xad\x6f\xb3\x7b\xee\x90\x7f\x9e\xc4\x27\x9c\xc9\x84\x3f\xda\x09\xa0\x09\x70\xc8\x8f\x18\xc4\x38\xb3\x51\x25\x8b\xdd\xd2\xea\xbe\x5f\x65\xf7\x99\x6d\xa4\xa0\xdc\xd5\xd5\x20\x8c\x72\x17\x54\x67\xc7\x23\xec\x2d\x85\xdb\xa8\xca\x24\xa3\x2f\x4c\x8c\xd2\x71\x80\x11\x0f\x4d\x8f\x47\xe4\xec\x1d\x4a\xb9\x5b\xb7\xd2\xfc\x1d\x13\x1b\x77\x95\x64\x59\x81\x4a\xa5\xc4\x3d\x43\x4c\xf7\xee\xf1\xe8\x63\x1c\xa8\x79\x11\xdb\xb9\xc6\xce\x17\xfb\xb8\x1c\x38\x63\x3b\x8e\xbb\x3a\xde\x21\x09\x75\x56\x49\x26\x26\x6d\x00\x67\x22\x9b\x77\xd0\x93\x02\x59\x55\xaa\x33\x8e\x49\x48\x85\xbb\xca\x52\x71\x3c\x2a\x34\xb2\xa6\x13\xa8\xce\x00\xd4\x7b\x32\xe4\x90\x1d\xf5\x66\xbb\x2b\xd6\x8c\xc4\x9d\x1a\xea\x5b\xca\x16\x3b\x38\x4f\xd9\xaa\x36\x50\xd1\x39\x2d\xdd\x35\x07\x1d\xf1\xdb\x74\x95\xa1\x84\xe8\x64\x12\x82\x4c\x40\x32\x3c\x4b\x29\x34\xc7\x96\xed\x51\x4a\x72\xd5\x1c\x63\x1f\x93\xa2\x89\x2f\x48\xae\x35\xdc\xb8\xaa\xb8\xd5\xec\x9d\x3e\x48\x09\xb7\x7b\xa0\xdb\x1f\x45\xd3\xc9\xaf\x51\xcd\x41\x6c\x14\x4d\xaf\xaa\x3c\xd0\xa7\xba\xff\x5d\xa3\x70\x24\x19\x85\x1e\xa5\xa2\x69\x4d\x12\x5b\x80\x8d\x3a\x14\x76\xd0\xeb\x22\x8e\xdc\x46\xdd\x45\x76\x26\xce\xd2\x92\x91\xad\x89\x3c\x55\x96\x91\x5c\x0a\x7f\x6b\xf9\x47\x6e\x2f\xc9\xad\xdc\x3f\x6a\x5e\x9b\xcd\x37\x41\xd4\xe2\xb6\x0c\x3f\x02\x53\xd3\x62\x3d\x73\x6d\x75\x2d\x06\x76\x47\xa9\x98\xdf\xd2\xa1\x17\xb0\x93\xba\x51\x0a\x5a\x83\xdb\xf9\x9a\x0e\xfd\x20\xa7\x43\x1f\x93\xdb\xe3\x11\xc9\x3d\x2b\x96\x9c\x98\xac\x41\x54\xf0\x8c\xc0\x17\x8f\x46\x28\xa6\xf7\x73\x67\xb5\x4b\x12\x27\xb8\xc4\x5a\x68\x1c\xc7\xf8\x78\x44\xbb\x31\x1d\xc7\x98\x64\x73\x94\x8e\xe9\x4e\xca\x3e\x5b\x62\x14\xe0\x94\x16\x73\xb4\x72\xd5\xd7\x98\xa6\xe3\x90\x08\xf7\x36\xdb\xd3\x47\x91\xe5\x41\xa9\x3b\x7c\x62\x20\xc8\x46\xab\xa0\x2b\x1c\x20\x0b\x70\x25\x99\xdd\x38\x6c\x92\x89\x8a\x91\x08\x31\x0e\x10\x93\x05\xab\x45\x15\x4a\xd4\x59\x41\xdd\xb6\x02\x26\x3b\x0e\x09\x0c\xba\x80\xc9\xbc\x10\x43\xd9\x38\xc4\x01\x5a\xb9\xb0\xee\xc2\x27\xb1\x33\xea\x59\x3b\xd1\x00\x75\x7e\xb9\xa7\x6c\xda\xb2\x20\xc2\x1a\x0b\x34\x56\x28\xdc\x9c\x45\x51\x9c\xae\xe9\x4e\x7f\xdb\x3d\xfe\xbd\x4e\xdb\x12\xe1\xc6\x69\xca\x8b\x6d\x56\x0a\x9a\x37\x03\xf7\x7b\xbd\x67\x87\x1d\x3b\x95\x4b\x6d\x66\x46\x8e\xec\xf0\x5a\x93\x16\x0e\xe2\x74\xb0\x52\xb0\xf5\x80\x53\xfa\xd9\xe3\xd1\x9b\xad\x16\xe1\x92\x9e\x28\x40\x76\xf3\x5d\xb0\x5b\x84\x52\x6c\xad\x5a\x88\x2c\x39\x50\x69\x0f\xc9\x62\xb5\xc4\x64\x85\x4f\x16\x5b\x5d\x92\xa5\xd0\x9d\xcb\xb2\xc6\x34\x9b\x9f\x26\x2d\xc2\x65\xe0\x05\x4f\xa7\x07\xde\xcc\x6c\xf1\x8b\xae\x48\x61\x26\xaf\x1e\xc1\x33\xa1\x14\x28\x6a\x54\xaa\xd1\x3f\x57\x9b\xfd\x40\x7d\x11\xd1\x9a\x0a\x35\xa4\x1d\x39\x57\x58\x82\x76\x6c\xcf\x19\xb4\xbd\x2a\x8c\xb5\xac\x29\xdc\x6d\x9c\xce\xe1\x6f\x50\xab\x32\x30\x49\x6d\x00\xb6\x9f\xc3\xdf\xa0\x56\x65\x48\x46\x97\x4e\x98\x64\x9d\x1e\xa5\xb5\x8d\x28\xf0\x3e\x76\x5b\xca\xc8\x74\xee\x07\xee\xf4\xf2\x59\xaa\xd4\x93\x54\x95\x04\xca\x3d\x9a\x99\xcd\x15\xa0\x55\x3b\x38\x0d\x70\x3c\xca\x59\x97\xe1\x8a\x27\x25\xd7\x27\x70\xc2\xed\x1c\xa5\x68\x55\xa1\x9c\xc6\x27\xb8\x8b\x67\x31\xbe\xf2\xcc\xae\xd0\x52\xd8\xd4\xc1\x6b\xea\x01\x47\xa9\xd9\x81\xa6\x42\x16\x2c\x73\x5f\x77\x73\xcb\xc4\x3a\x78\x05\xb9\x53\xea\x61\x29\x3b\x4a\x71\x90\x11\xee\x82\xdc\x57\x21\x01\xdc\xa6\xa5\x6e\x49\xd7\x9c\x2c\x96\x98\x64\x78\x34\xb2\x54\x58\x72\x5d\x06\x31\xad\xe8\x17\xce\x34\x27\xe4\xad\x3e\xad\xb4\xf1\x90\x90\xcc\x54\x8e\x75\xa5\x2b\x9e\x82\x96\x09\x46\x1c\xeb\xb2\xd5\x77\x88\x61\xf2\xa5\xfc\x23\xe8\x77\x88\x11\xa6\xa4\x01\x7c\x3c\x0a\xf2\x2b\x62\x40\xaf\x18\x8d\xda\x04\xeb\x95\xf2\xda\xc3\xb3\x74\x3c\xc6\xbd\xf5\xb1\x68\x60\xb5\xf6\x62\x26\x1b\x77\x36\x99\xa4\xf8\x35\x62\x8b\x74\x89\x67\xc3\x1e\xfd\xb0\x99\xd8\xed\x13\x93\xc6\xae\x81\x99\xbd\x5f\x9f\xae\x8b\x35\x2b\x2c\x23\xd3\x67\x08\x14\xc8\x7a\xd3\xa5\x8e\xc8\xc6\x76\x54\x7d\x62\x75\x36\xd5\x8d\x97\x6a\x76\xc8\xf4\xb1\x05\x83\x63\x0b\x66\x8e\x2d\x58\x35\xfb\xd8\x96\xc0\xee\x8e\xd1\x48\xb1\xca\xb2\x0e\xd4\xa6\xa6\xe8\x64\xb1\x9d\xa3\x14\xd8\xb4\x25\x38\xc0\x37\xb1\x97\xf2\xb3\x29\x26\xa9\x62\xcf\x36\x9c\xe2\xd7\x1d\x40\x1c\xa0\x54\x2f\x33\x36\xac\x5e\x78\x5a\x12\x81\x42\x2b\xb2\xdc\x06\x14\x59\x7e\x02\xa5\x56\xcb\x95\x45\x68\xc8\xe3\x04\x75\x49\x5e\x69\x39\x9f\xac\x6c\x5a\xbb\xa0\x8a\x6a\x0d\x02\xc0\x35\x05\x5d\x50\x49\xcb\x4a\x6d\x00\xc8\xaa\x55\xa9\x2e\xa4\xae\x9e\x01\x82\x5d\x16\xe9\x1d\xfc\x5d\x83\xf7\x13\x81\x16\x71\x58\xc9\xa0\xae\xaa\x46\x13\xde\x6a\x62\xa2\x00\x60\x9d\xa4\xcd\xea\x09\x90\x66\x95\xb5\x73\xe0\x40\xa3\x94\xf5\x84\xea\x4c\x78\xbb\x81\x35\x46\xb5\xec\xd3\x13\x71\x61\xa2\xa4\x80\x56\x26\xac\xb9\x4a\x85\xf0\x6c\xfd\x04\x15\xe4\xfe\x29\x5c\xe4\xa9\x95\xa8\xd5\x34\xf5\x42\x2d\x5a\xfb\xc3\x66\xc9\xe6\x8d\x98\x68\xf4\x33\x92\x81\x64\x56\x42\xf7\x70\x7f\x76\xda\xde\x92\xe7\x29\xc3\xfd\xf5\x59\xbd\x54\x14\x08\xb8\x27\x9e\x40\x20\x4e\xb1\x5c\x7c\x54\x87\xc7\x69\x9d\x4a\xea\x54\x29\x1d\xd1\x89\x85\xeb\xfe\x63\xb8\x1a\x64\x52\x22\x3f\x45\x46\xb8\x9b\x4f\x43\x5a\x48\xe9\xf2\x94\x0d\x23\x3e\x49\xf1\x33\x56\x05\x3d\x49\x05\xe2\x58\xa5\x12\x2e\x37\xb0\x34\xeb\x41\x30\xc8\x50\x3a\xe6\x67\x0c\xf7\xa1\x18\x40\x52\x65\x56\x8d\x4c\x2e\x32\x4f\x31\x9e\xba\x2b\x48\x46\x62\x92\x50\x10\xc2\x60\xfb\x73\xba\xd5\xb2\xe3\x44\xb3\xd5\xda\xd5\x5b\x2d\xf1\xe4\x56\xeb\x24\xab\xd9\x6a\x85\x64\x6b\xed\x15\x3e\xb9\xe5\x92\xbc\xbc\x74\x0b\xd8\xe7\xca\x7d\x14\xda\x49\x19\x53\xe9\x8f\x3d\xb9\xec\xdb\xdc\x12\x1b\xa9\x2d\xa7\xde\x2c\xbf\x6a\x27\xce\xc6\xe3\x1c\x0f\x11\x33\x79\x16\xf9\x12\xab\xe9\x21\xb7\x09\xf7\x57\x5a\x68\x60\xee\xfd\x35\x2c\xe3\x66\xe7\xda\xe2\xbc\x19\x75\x42\x9e\x0a\x5e\x38\x24\xd5\x53\x7d\x2c\x64\xc7\x23\xe6\xde\x63\x4b\xb8\x6f\xe4\xe0\x79\x41\x13\x98\x8c\x89\x11\x7d\xc7\x49\x9f\xd0\x1b\xa0\x06\x50\xcf\xc0\x3a\x07\x89\xa9\x41\x2d\x87\x6d\x4c\x9d\x6d\x1c\x45\x09\x77\x48\xa1\xd8\x43\x8b\x08\x2d\xed\x5b\x24\xa0\x94\x26\x8a\xd8\x44\x4f\xfb\x06\x75\x46\xb5\x7a\x0d\x07\x16\x94\x4e\xc5\xa4\x74\x59\x14\xa9\x96\x87\x51\xc3\xf4\x0e\x76\xab\x76\xb0\x6a\x1b\x4b\x62\xcd\xef\x9b\x25\x5a\x2b\x20\x5d\x65\xb3\xe4\xd6\xf6\x46\x73\x8e\x4e\x23\xb1\xbb\x11\xdb\x04\x39\x0e\x0e\x84\xbb\x02\x65\x85\x86\x71\xb0\xee\x7c\xa4\x14\xfa\x75\x5e\xd0\x26\xaa\xe1\xdf\x9c\x9f\x03\x8b\x59\x2c\x49\x26\xff\x94\x74\xe8\xc3\x0e\x54\xe7\x68\x5b\x48\xe9\xbd\x7c\x6c\xef\xe5\x11\xa3\xf1\x62\x67\x86\x05\x08\x67\xe1\x5c\xb6\xaa\xaa\x32\xc3\x81\x0e\xe2\xd1\x28\xd3\xa7\x3a\xf0\x1d\xa4\xda\x82\x84\xa9\xf3\xd2\x0a\x88\x6d\x68\x05\xdb\x28\x1c\xaf\x10\x77\xe3\xf2\x2b\xd3\x48\xdd\x74\x9c\x41\xe8\x24\x7e\x26\x25\xd8\x41\xbc\x42\x4e\xc1\x81\x35\x3a\x94\x76\x61\x32\x57\xa7\x21\x05\xae\xd5\x12\x4e\xc4\xcb\x90\xa7\xb2\x2b\x9d\x61\x37\xd3\x4c\x97\xd7\xe1\x10\xb5\xe0\x08\x55\xa3\x46\x25\x30\xf7\x02\x1d\x75\xa5\x63\x86\x74\x3b\xf7\x83\x89\x0f\xea\xbf\xac\x40\xaa\x45\xb3\x13\xed\x48\x4e\xb3\xc5\x6e\x39\xdb\x7d\x56\x97\x5f\x1b\xae\xc1\xa9\x38\x2a\x47\xa3\x42\x35\xa7\x73\x75\x26\x8a\x6b\x07\x93\xfa\x5b\x7d\x96\x70\x8e\xa2\x23\x3f\xbf\x12\xd1\x00\x2c\x51\xa9\xa3\x10\x82\x1d\xcc\x1f\xb3\xbd\x73\x7d\x15\xc5\xf7\x83\x52\x1c\x12\x2e\x67\x8c\x94\x09\x03\x3f\xdf\x0f\xca\x2c\x89\xa3\xc1\xe7\xe3\xf6\x60\x68\x9b\xc6\x8d\x3f\x9f\xe9\x51\x2f\xb3\xb4\x51\xa9\x1d\xee\x45\xbe\x9f\xe9\x8d\xb6\x37\xd3\xd8\x2f\x2d\xec\xfa\xb4\x7c\xfc\xf9\x2c\xbb\xe7\xc5\x2a\xc9\x1e\x82\x4d\x1c\x45\x3c\x75\xae\xaf\xce\xa2\xf8\xbe\xfe\x2b\xa2\xeb\x93\x3a\x28\x7e\x77\x2d\xb1\x00\x71\x63\x07\xe0\x1c\x5c\x9d\x36\x8f\xd9\x2e\x19\xbe\xa7\xe7\x81\x6c\xec\x0d\xfd\xfc\x4a\xb0\xdb\x84\x1b\xd2\x25\x8b\x9d\x94\xf1\x6f\x3c\x28\xb7\x2c\x49\x78\x31\x53\x43\x55\x36\x06\x48\xcf\x9a\x66\x59\x74\xa1\xaf\x95\x39\x18\x4a\x97\x68\xae\x9d\x59\x73\x9c\x70\x3a\x71\x3f\x32\x9b\x37\xd6\x48\x8c\xa8\xe3\x90\x75\x83\xa0\x56\x26\xdd\x37\x71\xdb\x66\x47\x46\xe9\xfd\xc2\x5b\x8e\x46\xe8\x9e\x2e\xee\xc9\xfd\x12\x13\x27\x75\x28\x5d\x9b\xab\x77\x1e\x9e\x47\x63\xea\x48\x71\xdb\x19\xa3\xfb\x85\xbf\x1c\x2b\xa1\x6f\xec\xe4\xfb\x99\x13\x38\x65\x1b\x7a\x34\x42\x12\x5e\x0b\xe6\x4d\x16\x2d\xfa\xa9\x5c\x98\x38\xdc\xce\xe6\xab\x42\x94\x6c\x0f\x79\x3c\x99\x47\x09\xa1\xa6\xa0\x87\x76\x0e\x5d\x10\x6c\x0b\x9a\x2c\x20\xe3\xea\x42\xa0\x93\x6e\x29\x47\x9f\xc3\xf8\x6a\x0d\x01\xd9\x05\x1b\xb7\xe0\x79\xc2\x42\x8e\x3e\xd7\x1d\xf8\x39\x31\xa1\xda\xe6\xcf\x98\x55\xcf\x3e\x1f\x47\x63\x67\xa6\xba\x4b\x0e\x2d\xc7\xb2\xac\x16\x6a\x98\x58\xdd\x76\x62\xb9\x69\xce\xb6\x7b\x20\x5e\xd7\x96\x34\x94\x1e\x46\x23\x84\x0e\x14\x1d\xcc\x86\xab\x03\x86\x47\x23\xa7\x04\xf3\x90\x46\x13\x72\x98\xb7\x4d\x62\x0e\x38\xe8\xdc\xd9\x43\xb7\xc4\x69\x10\x4d\x20\xcd\xc1\xd8\x65\xd4\x27\x07\x7a\xb0\x4d\x4e\xa0\xd1\xf6\xf4\xb6\x31\x62\xc7\x33\xd3\x82\x4f\xb6\x8d\x9a\xb3\x9f\x8f\xf7\xc6\x50\x18\x7a\x40\xcf\x5f\x67\xbc\xaf\xad\x86\x55\xcf\xc8\x96\xec\x92\x13\x38\xe3\xc3\xf8\xf3\x99\x73\x3d\x50\xcd\xfb\x39\x76\xf3\x82\xeb\xf6\xbd\x55\xd6\xef\x4e\xa6\xda\xd2\x21\x1f\x69\xe7\xaa\x6a\x9d\xe1\xbc\x43\x8d\x24\x66\x29\x71\xd8\xa9\x4e\x2a\x35\xfb\x42\x1d\xb8\xf6\xe6\x3a\x14\xb8\xe7\xcf\x40\x20\x2d\xff\x59\x88\x53\x51\x45\xcb\xf7\xb5\x26\x11\x6b\x2b\x71\x04\xc2\xcd\x04\xa4\x1d\x7c\xc6\x48\x46\x27\x96\x3e\x1e\x82\x49\xb6\x46\x05\x56\xc2\xf0\xb7\xdf\xf9\x1e\x26\x31\x55\x85\x1a\xeb\xd5\x46\x6d\x92\x5d\xc7\xa3\x11\xca\x68\xac\xf0\x27\x24\x54\x52\x72\x9e\x3d\x20\xdf\x23\x93\x0c\x93\x1d\x2d\xce\xe0\x3c\x7b\x77\xe5\xbb\x97\xf3\x84\xfa\xc1\xee\xea\x7c\x8e\x12\x3a\x25\xbb\xeb\xa9\x3b\xbd\xac\xb5\x2f\xf1\xf1\x98\x8d\xfd\x2b\x1a\xcb\x89\x94\xd0\xa9\x7b\x49\xc6\xe3\x0c\xe3\x20\xa1\xbb\xab\x17\xee\xe5\xfc\x32\xf0\x3d\x92\x3c\xa3\xa1\x56\xfb\xa4\xae\x65\x34\x3b\x1a\x25\x57\x9d\x08\x94\xb4\x41\xe0\xb0\x8d\x27\x82\xd5\xda\x49\x53\xa5\x46\xb8\xf7\x34\xee\x78\x1e\x07\x19\xd6\x60\x32\xb3\x6e\x04\x19\x3c\x1e\x13\x0d\xd5\x69\x99\xd1\xc8\x3a\x55\xb2\x13\x8e\x47\x24\xd4\x3e\x23\xaa\x8b\x6c\x53\x30\xce\x30\x71\x44\xbc\x95\x4c\x28\x75\xb7\x59\xc4\x47\xa3\xa1\x02\xf9\x9a\xa7\xbc\x60\x22\xeb\xb9\xfd\xf0\x21\xde\xf2\x81\x04\x1e\x68\xb3\x83\x12\xee\x20\x48\x89\xda\x95\xc8\x06\x79\xb2\x5b\xc7\xa9\xab\x16\x8d\x0e\x3a\x20\xaa\x15\x43\x4f\x94\x7d\xc4\x92\xaa\x60\xb3\xb4\x8d\x53\x82\x52\x7d\x1a\x04\x8d\xfa\xcc\x1a\x41\xec\x4c\x6e\xbc\x62\xea\x91\xa4\x36\x92\x62\xdf\xcd\xa2\xec\x51\xd0\x84\x24\x34\x1b\xc7\xcf\x9a\xac\x66\x49\x4f\x30\x19\x8f\x63\x7d\xcf\x36\xb9\xe2\x4a\x8f\x96\x0c\xa9\xa8\xcf\xf1\x8a\x4a\x77\x45\x2d\xc2\xd1\x7e\x95\xa8\xdd\xa6\x73\x7b\x30\xb6\x93\x70\xe0\x93\x94\x3a\xce\x18\x40\x60\xb6\x22\xfe\x8c\xe1\x33\xd6\x2c\x78\x9d\x1c\xda\xd2\x30\x75\xe3\x34\xe2\xfb\xf7\x2b\xe4\xb8\x70\xaf\x62\xe2\x53\x5a\xcc\xbd\x20\x35\xea\xab\x62\xe2\xc3\xc1\xf7\x55\x07\x81\xde\xf1\x65\xf3\x34\x48\xc7\x32\xf3\x18\x39\xce\x98\x61\xb7\xdc\xdd\x96\xa2\x40\x7e\x87\xc6\x49\x56\xdb\x48\xa6\x95\xdc\x62\x5a\xd2\x63\xda\x6e\x0c\x0c\x27\xc7\x1f\x6b\x1f\x7d\x3e\xec\x8c\x3b\x39\x21\xb5\xc2\xf5\x8c\x3a\x35\x5f\x37\x87\x5c\xa7\x5c\x66\x13\x44\x78\xd1\x97\x65\xe2\xab\xe3\xb0\xd1\x68\x0b\x5a\xe8\xd1\x68\x2b\x3b\x53\xcb\x83\x9d\x41\xa7\x97\xaa\xbc\xd6\x16\xd6\x0c\x21\xd5\xea\x58\x60\x57\xcd\x66\x1e\x3e\x49\xbe\xf0\x96\xb5\xe9\x4d\xaa\x86\x4c\x8d\xc3\x57\xb9\xd8\xbe\x99\xd8\xf0\x49\xf2\x45\xde\xd8\x48\x61\x6c\x26\xf8\x27\x66\x00\x5d\x2c\x2d\x73\x8b\x6d\x77\x67\xc9\xb0\xa0\x48\xc7\x2e\xd8\xd2\xbd\x9f\x6c\x15\x83\x45\x5b\x60\xb7\xea\x8b\x08\x35\x7d\xc6\xe2\x99\x52\x20\x4c\x94\xf6\x80\xa4\x6a\x16\x34\x83\x3d\xad\xc8\x50\x68\x1e\x60\xea\x77\x3a\x14\x57\x36\xd3\xf2\x7b\xf9\xb8\x66\x77\x36\x37\xc7\x64\xdd\xd7\x01\x6b\xab\xe5\xce\xfe\xe1\xba\xcf\xbc\x3f\x9c\xb9\x82\x97\x02\xa1\xf5\xc2\x5f\x4e\xd6\xb2\xb5\x5d\x91\x7d\x15\xef\x79\x84\x56\x18\xd7\xcc\xa3\xe6\x67\x2b\x0c\xa6\x3d\x66\x95\xfb\x12\xd9\xfa\x86\xce\x09\x61\x09\x9b\x34\xa5\xf7\x85\x0a\x16\xc7\x63\xbf\xa5\xae\x37\xcf\x7a\xe8\x0d\x0a\x58\x77\x5a\x53\xa2\xc0\x73\x95\x64\x3a\x15\xcc\x78\x55\x97\x65\x76\x67\xe9\xe3\x00\x75\xc1\x83\x66\x0b\xb6\x9c\x9d\x1e\xe5\xc8\x5d\xf3\x38\x59\x78\x4b\x92\xd8\x83\x2a\xa6\xc9\x42\x0e\x9c\x40\xa6\xb6\x8e\x01\x3b\xd3\x0f\xa5\x44\x60\x73\x20\x98\xe2\xe3\xd1\xe8\x23\xd4\xc6\xf1\x3e\x48\xd5\x45\x81\x20\xae\xb0\xd5\x6a\xdf\xd9\xdc\x6c\xe8\xcf\xea\xed\x98\x69\xbd\xce\x11\xc6\x68\x24\x4e\xe7\x4d\x03\xad\xe6\x0f\x6f\xcf\x1f\xc5\xc4\xc5\xc2\x5b\xba\xf7\x98\xb0\xda\x48\xad\x95\x51\x4e\x27\x61\xd7\x9c\xb7\xa7\x13\x7c\x12\xb1\x10\x96\xc9\xa1\xc1\xd6\xb2\x28\xf9\x05\xe1\xc7\xd2\x05\x43\x06\xa4\xce\x34\xda\x96\xf6\x64\xb1\x5d\x2a\xf1\x81\x6b\x01\x73\xc6\xb5\x8a\x87\x77\x45\xcd\xd1\x08\x6d\xdd\x92\xdd\x73\x84\xc9\x56\xe9\x10\x13\x26\x38\x5a\x19\x7d\xb2\xdc\x05\x90\x2d\x58\x6e\xde\x80\x64\xf8\x77\xd4\x2f\xb4\x92\x7b\xe2\x11\xe5\xa4\x61\x7a\x79\x49\x06\xcd\x1f\x0f\x3b\x06\xc5\x0f\x3c\x14\xc8\x23\x1e\x59\x93\x7b\x19\x57\xf0\x52\x64\x05\x47\xa0\xef\x53\x24\x0e\xb9\x5b\x5f\x25\x19\x8d\xbe\x42\x8d\x39\x7f\xcf\x99\x83\xa9\xbc\xba\x54\x40\x16\x5b\x12\x2f\xc4\x72\x89\xc9\x0f\x70\xfc\xa0\x4c\xce\x24\x00\xb4\x09\x69\x9a\xa1\x5d\x04\x29\x5d\x75\x93\x10\x61\xf2\xb3\x2d\x58\xfe\xd6\x71\x60\x62\x14\x7d\x70\x54\x9a\x50\x6f\x96\xd8\xf4\x24\x38\x5e\x21\x50\x7a\x24\x4b\xdc\x70\x75\x4a\x85\xec\xed\x45\x46\xc5\x98\xb9\xa9\x31\x30\x3a\x1e\xfd\x21\x65\x6e\x7a\x3c\x22\x99\xa2\x62\x31\xe1\x8b\x6c\x89\xf1\x63\x4a\x65\xc0\x5d\x15\xd9\x96\x14\x2a\x2c\x32\x6d\xe7\x1d\xaf\x24\xb6\xe5\xf1\x88\x98\xb2\x1d\x10\xf3\xcd\xc2\x5b\x06\x11\x5c\x33\x57\x46\x4c\xbe\xb3\x84\x7c\x62\xec\x4c\x9d\x65\xbd\x1a\x99\x03\xb4\x62\x34\x4a\xaf\xf5\xf1\x60\x49\xd3\x59\x4a\x0b\x52\xd0\x52\xaf\x8e\x8f\xb2\xd8\x20\x25\x22\x0b\x0a\xb8\x5a\x13\x30\x6b\x46\x7d\xd5\x36\xf4\x9e\x7d\x7a\x00\xe9\x8b\xf5\xcd\xb9\x31\xdc\xaa\x81\x25\x1d\x2b\xc3\x6b\x8b\xeb\x64\x72\xe9\x45\x8c\x1e\xdc\x35\x17\x5f\xec\x79\x89\x30\x76\xf7\x70\x9e\xa7\xcd\x59\xe5\x64\x63\xee\x1e\x2c\xb7\x4d\x14\xdb\x13\xe6\x1e\x14\xd4\xc1\x82\x3a\x28\xa8\x43\x0d\x95\xd1\x0c\xb1\xda\x5a\x3b\x3b\xb9\xf9\x10\xd3\x6c\x21\x96\xa4\xa4\xbf\xa1\x18\x4c\xdf\x49\xa8\x82\x07\x25\xf2\xa9\x79\x5d\x42\xcf\x8c\x46\x48\x05\x68\xe9\x9a\x32\xcd\xcc\x2f\x5d\x91\x41\xba\xc8\xea\x54\xb6\xaf\x2d\x5b\x4d\x7e\x15\xa0\xe1\x49\xfe\x50\xe5\x97\x3f\x75\xaa\xcc\x3f\x04\x94\x57\x4d\x81\xc7\xa3\xa2\xe1\xba\x29\xe5\x78\x94\xd9\xae\x42\x0b\x46\x95\x73\x6d\x61\x92\x4c\x04\xca\xae\x39\x90\xfa\x26\x76\x5d\x80\xfc\x9a\xcf\xc9\x2f\x62\x57\x26\xec\x60\x50\xdf\xc4\xae\x4d\xd8\xc2\x20\xbf\x88\x45\xc4\x4c\x59\x14\x68\x4a\x54\xab\x91\x5c\x37\x0f\x55\xad\x00\x8a\xca\xdd\xf1\x38\x84\x0b\x10\x36\xd1\xc6\xe8\x09\xd0\xe5\xd3\x50\x27\x62\x9b\xee\x1e\x18\x91\xe1\x36\xe9\x0a\x26\x6c\x60\x42\x83\x27\xec\xe0\x69\xc1\x00\x9e\xdd\xf1\x98\xab\x91\xb3\xa1\x71\x73\xaa\x79\x3c\x76\x46\x7b\x7d\x87\x8c\x44\x74\xf3\xd9\x74\xee\x5e\x06\xde\x6c\xeb\xde\xf2\x75\x9c\x7e\xcf\xe0\xe2\xed\xd6\x2d\x45\x91\xdd\x71\xc5\x68\x63\xb5\xbd\x3f\x41\xa4\xb8\xed\xb6\x29\x8a\x6e\xc8\x6e\x2e\x05\xa3\xec\x9e\x7f\xc8\xa0\x7e\xe3\x48\xd7\x0f\x6b\x40\x3b\x5e\x92\x1d\xd8\xf0\xba\xcf\x64\x72\x07\xde\xc4\x36\xb4\x21\x65\x00\x30\xb0\x97\x84\x4f\x51\x5a\x73\x7e\xab\x28\xe8\xa1\x49\x1d\x21\x7f\x26\x40\x5a\x55\x31\xe0\xae\x29\x3d\xb5\xe0\xa8\x97\x82\x5b\xea\xcd\x6e\x6d\xc3\xb1\x5b\xd5\x05\x7b\xf2\x86\xdc\x91\xf7\xe4\x86\xb2\xc5\xed\x92\x7c\xa0\x37\x70\x1c\xf3\x2b\xbd\xb1\x4c\x67\xe4\x78\xba\x69\xce\x3c\x6e\xda\x67\x1e\xc0\xec\xed\xd6\xf5\x09\xf0\xd8\x1b\xfb\xdc\x62\x4f\x3d\xf2\x86\x2a\x2b\x25\x4a\x7f\x9d\x3b\x22\xcb\x01\xa6\x3e\x22\xf0\x82\xfb\xe0\x03\x9c\x34\xaa\x03\x05\x74\x0a\xf2\xc1\x35\xca\x4f\xd9\x1f\x6f\xa8\x47\xf6\x36\x4a\x7d\xec\xd0\xc2\xb9\x0e\x3e\x98\xf3\x45\x38\x58\x40\x3d\x50\x1f\xb4\xa6\x42\x4a\x0d\x37\x8d\xd9\xcf\xf1\x88\xda\xe3\xeb\xa6\x16\x4d\x42\xdd\x4f\xf6\x58\xbc\xa3\xef\xa9\x77\x5a\xf3\x3b\xba\x1e\xfb\xc1\x7b\x7a\x3f\xf6\x89\x4f\xa9\xd5\x4e\xe6\x68\xdd\x86\x7e\x63\x4f\x9d\x37\x78\xec\x5e\x06\x7b\x3b\x6a\x2f\xa3\xe4\xd8\xd2\x43\x71\x4f\xde\x58\x03\x70\x3f\xbe\x23\x6f\xc6\xef\xed\xb1\xd7\x9d\x23\x37\x2d\x19\xf8\x75\x4f\x3d\x14\x9b\xbf\xe9\x6e\x30\x34\xb3\x7f\x6d\x7a\x7f\x21\x96\xee\xfd\x4c\x55\x5a\x49\x98\xaf\xf1\xf1\xf8\xfa\xea\x46\x71\xcf\xd7\xd7\x37\x8a\xaf\xd6\xfd\x23\xab\xdb\x15\x71\xe5\xea\xba\x68\x7a\x62\x79\xed\x1d\x8f\xe9\x35\xa8\x4b\x5f\xcb\x86\x51\xa8\x20\xc4\xf6\xd8\x1c\x88\x75\x06\xd6\x0d\x30\x97\xd7\x98\xbc\xb7\x06\xc3\xe4\x3e\xf8\x95\x9c\x8c\x20\xb0\x1e\x9f\xbc\x57\xa3\xa7\xce\x77\x67\xe7\x5b\xcb\x7c\x27\x63\x04\x6e\x52\x4c\xee\x30\xfe\x1d\x7d\x78\xda\x61\xc1\x69\xb7\x7e\xb2\x0f\x71\x65\x31\x90\x4a\x12\x50\xb4\xe7\xb7\xea\xbb\xd3\x26\x3d\x1e\x4f\xe2\x8a\x79\xdd\xf4\x43\xbb\xed\x51\xaa\x6c\xf8\x52\x6d\x3f\x92\x1a\xcb\x91\x54\x79\xcb\x90\x5b\xfe\xd3\x8c\x05\xd0\x02\x19\x0b\x9d\xb1\x30\x19\x0b\x95\xb1\xa8\xb4\x95\x06\xec\x08\xda\x23\xb0\x80\xc3\x7c\x9b\x5f\xa4\x3a\xa6\xcd\xd9\x75\xeb\x78\x13\x6d\xa9\x21\x03\x22\xcb\xcf\xa6\x56\x63\xad\xdb\xb1\xcd\xa0\xd7\x26\x1b\xbd\xc5\x2b\x3b\x83\x36\x01\x26\xae\x97\x84\xf5\x58\x03\x9c\x4d\x4d\x79\x36\x0d\x56\xea\x7d\x97\x0a\xd5\x2c\xbd\x64\x68\xf3\x8f\x36\x1d\x75\xe4\xc7\x09\x21\xf7\x63\x03\xdb\x6a\x0f\xef\x24\xc1\x26\x46\x36\x63\x2f\x29\xd0\xbe\x6d\x42\x74\xd4\x47\xbb\x44\x56\xb8\x2e\xce\xa6\xa2\x49\xf7\x5a\x34\xc0\x22\x6a\x95\xd2\xe1\x4d\x3d\xc3\xdb\x00\xc0\x62\x38\x49\xcf\xa6\x04\xfe\xac\xc7\xa9\x2c\x1a\xe3\xd6\x96\xa8\x11\xb8\x7f\x50\x6e\x21\xed\xbb\x5e\xe8\x29\x2b\x11\xd2\xf1\x0e\xc9\xcd\xfd\x98\xb8\x0e\xaa\x5b\x65\xca\x9d\x80\xba\xa6\xd4\x6a\x99\xc6\xe8\x93\xc6\xb3\xb0\x91\x90\xc3\x31\x8d\x8d\x05\x68\xb6\x08\x27\x31\x5c\x38\x94\x81\xb1\xbf\x24\x1b\x19\x5c\x92\x48\xfe\x8c\xfd\x65\xa3\xf3\xdb\x99\x2d\xc7\x06\x6e\x23\xe5\x57\x34\x1a\x8d\xf2\xab\x02\xa4\x43\x19\x13\xe9\x70\x98\xa5\x22\x4e\x77\x7c\xb6\xa3\x08\x62\x26\x39\x3e\x43\xd1\x24\xc7\xcf\xd0\x66\xb2\xc3\xe3\x1d\xc9\x29\x24\x54\xe6\x00\x37\xba\xa2\xf9\x68\x14\x59\xc8\xf2\x2e\xb2\xcd\x93\xc8\x22\x8d\x4c\xe6\xba\x06\xa2\xae\x0b\x60\xcc\x40\x94\x0e\x77\x88\x62\xfb\x27\x88\x62\xfb\x86\xa8\x6b\x20\xca\x42\x96\x77\x91\x6d\x9e\x44\x16\x69\x64\xa0\xde\xa7\x9b\xd1\x68\xa7\x54\xf0\x80\x67\xa3\xc3\x35\x9e\x9c\x22\x88\x99\xec\xf0\x19\x60\x78\x06\xd8\xc6\x39\xd9\x29\x55\x5f\x4d\xd4\xe6\x4a\x76\xc4\xc6\x42\xb6\xeb\x22\x8b\x9e\x44\xb6\xd1\xc8\x64\xae\x6b\x20\xea\x3a\xad\x2b\xb7\xd1\xe1\x0e\x51\x6c\xff\x04\x51\x56\x4b\x6d\xae\x81\x28\x0b\xd9\xae\x8b\x2c\x7a\x12\xd9\x46\x23\xdb\x51\x9a\x8c\x46\x39\xa5\xe5\xf1\x58\xcf\xe9\x14\x16\xc3\x1d\x1e\x0b\x52\x40\x30\xc7\x63\x26\x77\xec\x1b\x52\xd2\xa8\x99\xdb\x0a\x6e\xd3\xc0\x45\x12\xae\xb2\x17\xab\xdf\xa5\x1e\x91\xe8\xfe\x94\xc5\x29\x75\x40\x21\xe2\xcc\xf4\x75\x22\x3d\x67\x6b\x26\x21\x77\xe7\x6e\xe3\x59\x43\xce\x12\x06\x56\xad\xd7\x1e\x7e\xfc\x18\x33\x31\xde\x2f\xe1\x3f\xd7\xc7\x8e\x3e\x7e\x82\x85\xf8\xfb\xb7\x67\xfe\xcb\x99\xd0\x17\x9a\xf5\x7c\x57\x67\x59\x71\x8a\x0a\xfc\x0c\xb1\xb3\xe9\x38\x95\x2c\x54\x99\xee\x65\x65\x3b\x96\xeb\x6b\x58\x5c\x5f\x9f\x69\x73\xcf\xb3\x29\xf9\x34\xee\x8b\x5e\xdc\x17\xa7\xb8\x2b\x1b\x37\xeb\x54\x53\x1f\x69\x6a\x7d\xc1\x17\x48\x37\xa0\xf1\xe0\x49\x3c\x72\x8f\x67\x19\xf0\xfc\x66\xfb\x91\x91\xae\x1f\x5f\xc3\xc1\xd2\x86\xfd\x15\x2d\xf6\x67\xed\x48\x2d\x95\x2f\x53\x3b\x56\xa6\xf6\xb6\xea\xcc\x65\xe8\x93\x92\xfa\x24\xa4\x1e\x58\xb8\x0c\x51\x21\xfb\x2b\xbe\x36\x67\x13\xe3\x02\xcf\x8c\x1a\x3e\x5d\xa0\x78\x4c\x0b\x3c\x29\x24\x3f\x4c\x17\xf1\xa4\x18\x97\x92\x27\xa6\x8b\x78\x49\x56\xf2\x67\x5c\x02\x6b\x4c\x60\xb4\x17\x8d\x41\x73\x6e\xf4\xd2\x11\x7e\xdc\xd1\x98\x14\x74\x52\x90\x92\x4e\x67\x66\x26\xc8\xc9\x57\x5c\xc9\xa2\x29\x0d\xc7\x85\x1c\x2d\xb2\x05\x40\x0d\xa5\x69\x8c\x69\x48\x77\x63\x24\xb3\xe2\x26\x5f\x55\x73\xe2\xdc\x14\x16\xb5\x38\xb1\xb0\x38\xb1\x38\x61\x9e\xa2\xc3\x3c\x57\x93\x0d\x1e\x6f\x48\xae\x2c\xbb\x4f\x38\xb1\xb0\x38\x71\x07\xd9\xea\x49\x64\x91\x46\x66\x71\x62\x61\x71\x62\x71\xc2\x3c\x45\x87\x79\xda\x44\xf5\x70\x62\x61\x71\xe2\x0e\xb2\xd5\x93\xc8\x22\x8d\x4c\xf6\x16\xec\x9d\x7a\x85\x07\xa1\xb9\x0b\x61\x10\xc8\x30\xf4\x87\x87\xc9\xe6\x9a\x32\xa5\xf3\x5d\xe9\x10\xae\xb9\x4e\x27\x93\x4a\xb5\x24\x0e\xa1\x59\x51\x3b\x7d\x66\xf1\x72\xa6\xf4\xd0\x2b\x1d\xfa\x18\x6a\x30\xdc\xfc\x08\x6a\x99\xde\x18\x96\xac\x69\x4e\xee\x69\x34\xdb\x5c\xd1\x95\x5c\x2f\x4c\x41\xd7\xaa\xa0\x39\xca\xa9\xca\x34\xd9\xe0\x33\x68\x2a\x8b\x21\x2b\x6c\xc1\x0a\x16\xae\x95\xc9\xbb\xb9\x36\xe4\xa2\xe8\xc9\xcc\x2b\x9d\x59\xb6\x9b\x2c\xf8\xda\x34\xde\x95\x6a\x3c\x53\x30\xdb\x3f\x51\x30\xdb\xe3\x60\x05\x8b\xd3\xca\xe4\xdd\x5c\x99\x2e\xd0\x05\xf7\x65\x5e\xe9\xcc\x24\x87\x1b\xba\x9d\x86\x5a\x9b\x86\xda\x9c\x36\x62\xfe\x91\xb4\xba\x81\x57\x18\x93\x68\x48\xef\x81\x65\x3d\x0d\xd2\x49\xbb\xb7\xd2\xe0\x0c\xa8\xcd\x7e\xbb\x2c\x15\xcf\x60\x11\xe9\x30\x69\xb9\x54\x74\x21\x67\xb6\x7c\x89\x38\x58\xd9\x2a\x73\x7c\x73\xab\xc1\xf2\xe1\xd0\x12\x31\x6b\x1d\x3c\x9c\x00\x29\x5b\x45\xf5\x53\xd0\x56\xb1\x60\x2b\x18\x53\x6f\x16\x5f\x15\x0d\xc7\x9d\x4c\x67\xf1\x78\x8c\xb5\x95\x9f\xd7\x08\x99\x4a\x89\x5e\xd4\xb7\x02\x94\xac\x99\x8c\x69\x61\x7b\x4f\x50\x6a\x6a\x13\xb5\x48\x96\x24\xb4\xbe\xa4\xbc\x99\xd2\x84\x52\xda\xc1\x33\xb1\x90\xcc\xc1\xe7\x80\x95\xc9\x4a\x5b\x1a\xe3\x83\xd2\xb0\x48\x1a\x1a\x86\x4c\x59\x1d\x52\x27\xa7\x50\x83\x12\xae\x66\xc9\x50\x68\x42\xc6\xad\x10\x91\x4c\x80\xd1\xb2\x52\xa2\xb2\x29\x66\x66\x02\x54\x34\xad\xae\xee\x45\x9c\xca\x09\x67\x53\xf2\x56\x76\x4f\x9d\x67\x27\x7b\x4b\x76\x97\xe5\x31\xe3\xe4\x60\xd5\x5c\x03\xff\xdd\x22\x8b\x5a\x84\x35\xd2\x46\x48\xe9\x5d\x93\x4d\xd9\xa7\x97\xcb\x45\xef\xe5\x72\x41\x27\xfc\xa3\x97\xcb\x4f\x01\xce\xa6\x95\x91\x9b\x20\x5e\x2e\x70\xf3\xb6\x27\x72\x7d\x7a\x27\x25\x03\x09\x52\x0b\x06\x32\xb1\x82\x7b\xae\x33\xd4\x75\x94\x0f\xf6\xb4\x8f\xcd\x80\x13\x8d\xcb\x00\x61\xc9\x04\x21\xf5\x66\x61\x73\xf3\x3f\xb4\x5d\x1a\x84\xcb\xd1\xe8\x5b\x24\x7f\x49\x02\xfb\x1b\xf8\x99\x2e\x9b\x02\xc8\xd6\x34\x50\x73\x31\x9e\x74\x5b\x16\x57\xb8\x3d\x47\x05\x11\xe3\x4e\x23\x10\xd6\x27\x8e\x7d\x64\xd6\x8e\x46\x72\xa8\x34\xbb\xc5\xb7\x4f\x6d\x09\x95\x85\x7a\xd3\x12\x65\x23\x1d\x85\x2d\xe9\x48\x19\x9e\xd6\x93\x71\x37\xa6\x61\x7d\x01\x77\xb1\x93\xb2\x4d\xb9\xd8\xc1\xa4\x53\xbe\x85\x8e\xc7\xfc\x2a\x53\xda\xad\xfc\x3a\x53\x8a\xb2\xcd\x55\xac\x62\x36\xd7\xb1\x36\xff\x6e\x2f\xa1\x39\xcd\x0c\x1b\xdd\xd0\xd8\xc8\xe1\x29\x31\x5e\xf1\x28\x4d\xe6\x5b\x97\x15\x21\xca\xc9\x86\x08\xe2\x91\x62\xae\xa5\xdd\x60\xfa\x4c\x87\xc8\xd0\xc7\x41\x82\x94\x83\x21\x41\x0a\xd9\x54\x61\x92\x95\x5c\x17\xc2\x3a\xa2\x22\x23\x46\x6c\x6a\xed\xe4\xab\xdf\x21\xe5\xd7\x22\x7d\xf7\xfe\x52\x47\xa6\xb7\x24\x4d\x3d\xbd\x49\xb3\x0b\x77\x95\xeb\x3f\x6d\x6f\xaa\xdd\x05\xf0\xc9\x05\x26\xcd\x36\x40\x9f\xa5\x9f\x4d\x67\xf6\x24\x8d\x3f\xb5\x21\xe8\xca\xe8\x85\xb2\x25\x8f\xc7\xf1\xd9\x94\x0c\x4f\x96\x02\x92\x75\x75\xa9\x6d\x8c\xd3\xa7\x31\x3e\x85\xef\xf7\x48\xf6\xa7\x38\xe5\x54\xae\xd7\x35\x80\xc1\xc4\x23\x43\xbf\x9f\xe0\x1e\xed\xc8\xb7\xdd\x11\xae\xbc\x4e\x69\x23\x1b\xe5\x7a\x8a\xac\xc8\x9a\xdc\x93\x5b\x72\x98\x85\x73\x74\x4b\xd7\x14\xee\x3e\xaf\xa4\xe8\x1c\x51\x31\x4e\xc9\x86\x8a\x71\x41\x50\x4e\x39\xbe\x42\x5b\xca\xf0\x68\x84\x0e\x34\x27\x39\xdd\x92\x2d\x3d\x48\x50\xb8\x35\xed\x63\x1c\xa0\x95\x41\x70\x2b\x11\x6c\x29\x1f\xa7\x24\xa7\x5c\x22\x88\xa8\xc0\x57\x68\x63\x10\x44\x24\xa2\x1b\xb2\xa1\x07\x09\x0a\x37\xae\x7d\x8c\x49\x6e\x26\xc7\xd6\x4c\x8e\xe8\x2a\x31\xd3\x25\x31\xd3\x45\x01\x81\x8b\x33\x08\x01\xb9\x98\xe4\x2a\xcf\x68\x84\x72\x0a\x21\x45\x16\xd9\x28\x14\xa3\x11\xda\x50\x08\x01\x75\x98\x44\x0a\x23\x48\x41\x10\x52\x54\x90\xad\x9e\x75\x5b\x39\x01\x13\x3d\x01\x49\xae\x63\x73\x4c\x22\x1d\x1b\xc1\x15\x18\x54\xda\x5b\x2e\xb4\x21\x11\x26\x65\x73\xb4\xb3\x25\x11\xc9\x27\x5b\xb2\x99\x44\x18\x93\x1d\x28\xe6\x56\xc7\xe3\xfa\x78\xbc\x3f\x1e\x6f\x31\xe4\xb7\xa7\x7f\x69\x24\xe8\x2d\xd9\x60\xb2\x9a\x97\x46\x02\xda\x92\x08\x07\x56\x6a\x84\xc9\x7d\x93\x9a\xb7\x52\xe5\x17\x59\xdb\xa9\x9b\x56\xea\x06\x93\x5b\x1b\xf3\xa6\x85\x79\x23\xa9\x68\xb4\x79\xcd\x88\xfa\xa2\xfb\xc4\x8a\x80\x7a\xc2\x39\x64\x66\x7c\xce\x1b\xff\x3e\x2a\x4d\xd9\xed\xea\xa4\xbf\xdb\x91\xea\x96\x87\x62\x1f\x71\xc7\xaf\x1d\xab\x0d\x94\x62\xb7\xc7\x58\x35\x9b\x67\x81\x7b\x41\x62\xfb\xa9\x0e\x12\x5b\x86\xbc\xd5\xc1\x2d\xb9\xf8\x92\x09\x46\xdf\x10\x08\xef\xf2\xaf\x8b\x38\xa2\xdf\x93\x03\x98\x3d\xd0\x5f\x08\x1c\xa3\x7f\x9f\xb0\x90\x6f\xb2\x24\xb2\xad\xd8\x1a\x2f\x1c\x95\x82\x52\x3e\x92\x7b\x00\x6a\xe7\xc8\x95\x41\x97\x09\x75\x73\xbb\x07\x78\x25\x81\xd4\xd5\xbc\xd3\xc4\xb5\x4c\xd4\xb7\xec\x4e\x53\xef\x65\x6a\x76\x82\x58\x99\xb2\xec\x74\x4a\xed\x89\x7f\xc0\xf5\xf5\x7a\xcd\xa7\xb9\xba\xa9\xaf\xaf\xd7\x69\x52\xa1\x71\x4e\x4b\x8a\x75\xf2\x17\x7b\x5e\x76\x8b\x12\xd6\x93\x3a\xfa\xe2\xd7\x13\x2e\x5b\x8c\x7b\x04\xb1\x60\xd6\xfd\x2c\xa4\xec\x3a\xe6\xcc\x4d\x03\x30\xfd\x57\xf6\x1e\x54\xdf\xe9\xd5\x25\xff\xad\x5b\xb4\x2e\x71\xa3\xd3\x7f\x7e\x22\x3d\x92\xe9\xe1\x34\xa7\xef\xc9\x01\xae\xc8\x3d\x65\x61\xfa\xb4\xa7\x18\x65\xa5\xa2\x9d\xc5\x30\x6d\x4f\x88\x52\xaa\x9d\xc6\x18\xd3\xa5\x45\xba\x1c\x8d\x7c\x2a\xeb\x62\x92\x8d\x1d\x89\x4c\xc3\xf8\x51\xe9\xda\xa9\xda\xab\x40\x9c\xb6\x50\x79\xc2\xcd\x8c\x2a\x38\x3a\x2d\xf8\xf0\xf1\x82\x0f\xa7\x05\x8b\x2c\xef\x29\xb7\xb1\x6d\x85\x36\xd4\x4e\x4d\x7b\x5a\x31\x81\x71\x68\x9c\xb5\xd2\xbf\x90\x83\xbb\x4b\x9b\xef\x3f\x90\x83\x2b\x8a\x78\xbd\xe6\xc5\x0f\xb6\x87\x56\xfa\xb3\x6c\x74\xb9\x5a\x75\x87\x7f\x7d\x79\x50\xdd\x61\xae\x5f\x98\xd8\x2c\xee\x10\x07\x3b\x92\x89\xbf\x04\x7a\xc7\xdc\xdd\x63\x7d\x8b\x01\x5e\x4d\x11\x59\xde\xc0\x47\x0a\xfe\xd0\x82\x3f\x60\x75\x1f\x43\x82\x57\x92\x72\xe3\x6c\x86\x7e\x90\x13\x9d\x4b\x26\x76\xb0\x6b\xf9\x01\x61\x70\x50\xb0\xd5\x56\x4e\xc8\xc9\x93\x4c\x38\xd8\xe5\xdb\x5c\x1c\x24\x17\x51\xde\xb3\xad\x43\x80\xdf\xe9\x5b\xf6\x56\x45\xfc\x24\xc3\x07\xaa\xdd\x2a\x6b\x1f\xe2\xa7\x73\x56\x34\x4e\xc5\xa9\xa8\x2f\x08\xcc\x6a\xa7\xe3\x72\x06\x91\xd0\xfe\x82\x7e\xc9\xb2\xbb\x92\xde\xda\xd7\xdf\x9a\xfd\xe7\xa3\xe2\x52\x01\xab\xb4\x43\xd6\xac\xc7\x21\x6b\xb6\x48\x97\x33\xe5\xe6\x1d\x1d\x88\x90\x1b\x29\x7d\x50\x0c\x77\x39\x6b\xff\x41\x49\x93\xd0\xf1\x65\xa9\xdf\x0c\x6b\x00\x19\x48\x93\xfa\x42\x5a\x39\x1a\x21\xe3\xcc\x94\x9a\x38\xe3\x4f\x41\x3b\x23\xaa\xdd\x7f\xb6\xbe\x3b\x2b\x80\x7d\x67\x08\x1b\x67\xa5\xcc\x21\xee\x74\x8a\x5b\x37\x36\x0c\xea\x43\x07\xf5\xe1\xbf\x87\x5a\x51\x59\x1f\xa4\x5b\x94\xd7\x71\xe6\x50\xab\x8e\x38\x1e\x5b\xb5\xeb\xd2\xd9\x46\x76\xf8\x1d\xc8\x0e\x7d\xc8\xba\x07\x69\x80\xad\x1b\x49\x5b\x15\x6e\xe7\x6d\xd3\xd1\x8e\xfa\x77\x9b\x4d\xbf\x1d\x05\xe6\x80\xea\x35\xac\xe6\x6e\x18\x5c\xb1\x8b\xe7\xe3\xb8\xbe\x7d\xe4\xe4\x7b\x87\x38\x0e\x0e\xfc\x73\x12\xd2\x47\xb8\x65\x13\xb4\xb2\xc9\x18\x99\x2f\xfe\x8d\x07\x96\x0d\xbd\xfb\xf2\x59\x89\xc9\x3d\x2b\x62\x96\x8a\x56\x0e\x1d\xe7\x60\xf2\xa0\xec\x48\xec\x44\x15\xe5\x60\xb2\x62\xdb\x38\x39\xb4\xd2\x54\x94\x83\xd5\x02\x91\xa9\xae\xe7\x65\xe3\x32\xca\xcc\x2c\x98\x52\x70\x52\x0f\x00\x92\xd1\x8e\x46\xc3\xa2\xd5\x9c\xd6\x17\x2d\x8c\x00\xdf\xe3\x12\x59\x09\xf3\x05\x26\x0d\x32\x5a\x90\x02\xae\x2c\x03\x1a\x19\x68\xb2\x3d\x56\x24\xd4\xa9\x58\xff\x1a\x2b\x23\x64\x7f\x5a\x65\xaa\x58\x29\xec\x19\x17\x4d\xe8\x24\x8e\x5a\x2d\xeb\xbb\xfe\xe5\x33\x0d\x01\x6a\x26\xed\x1f\x2d\x53\xc3\xf7\xe3\x0d\x72\xf8\x8f\x1b\xe4\xd0\x34\xc8\xe1\xff\xdf\x06\x31\xd3\x3b\xcd\x3e\xe8\x8b\x53\x27\xdc\xa2\xec\x70\x8a\x92\x76\x32\x49\x2c\x87\x7e\x2c\x87\x0e\x96\x43\x0b\xcb\xa1\x8b\x65\x3f\x95\x31\xa6\x3c\x5e\x2e\xfc\xe5\x53\x23\xcd\x00\x37\x03\x4e\xae\xa7\xc6\x99\x12\xd8\xd2\x90\xba\x2e\x53\x63\xaf\xd8\x42\xed\x36\x3e\x05\xbb\x90\xb0\x9f\xb2\x21\x8d\x7b\x41\xa8\x6b\x43\xe5\xe1\x49\x2a\x0f\x9a\xca\x43\x4d\xe5\xe1\x94\x4a\xa5\x4b\xab\x4b\x3f\xb4\xe9\x3c\x3c\x4d\xe7\xa1\x4d\xe7\xa1\x97\xce\x86\xd1\xf1\xe8\x8b\x82\xb3\xb2\xe1\x8e\xc6\x84\x8f\xf6\x40\xf5\x66\xed\x70\xd7\x96\x09\x60\x1f\x12\xb5\x61\x9a\x25\x4a\xf3\xd9\x59\x95\xb5\xff\x74\x7d\xf8\xa7\x61\x24\xb0\x52\x14\x3c\x01\xad\xb5\x08\x06\x4a\xc2\xdf\xb2\xe2\x29\x68\x50\x1f\x2a\x08\xe3\xa7\x3d\xb1\xd4\x38\x50\x15\x0d\xda\xc4\xb6\x40\x9a\x6c\xed\xe7\x11\xec\xac\xed\x94\x13\x50\x6c\x39\x0b\x6a\x73\x61\xe0\x34\x37\x68\x43\xd2\xb1\x8f\x8d\x8c\x62\x31\xe2\x56\xc6\xc3\x69\xc6\xa8\x9b\xf1\x60\x67\x04\xd5\xf4\x20\x4e\x07\xb7\x38\x51\xe2\xd6\x62\xb7\x1c\x8d\x9a\x70\xe3\x2f\xe7\x76\xb1\x5b\x52\xf9\xc7\x6c\x81\x1a\x20\xdc\x72\xe9\xaa\x85\x6d\xb2\x48\x96\xb8\x42\x45\xcb\x7b\x41\xed\x85\x40\x79\xa6\xe0\xdb\x7c\x22\x77\x94\x96\x37\x02\xe2\x94\x82\x89\x38\x84\x0b\x51\xb0\x54\x99\x59\xe0\xe0\xd1\xa8\x1b\x45\x9c\x82\x27\xe0\x9e\xd6\xc1\xb3\x92\xa6\xfc\x61\xc0\x90\x72\x7b\x71\xcb\x4a\xee\x48\x91\x2f\x6c\x45\x67\x4a\x80\x87\x94\x2d\xad\x1f\xf6\x01\x5b\x63\x13\xde\x51\x8e\x42\xb3\xd5\xc5\xc6\xcf\xa3\x71\x4e\xa4\xfc\x88\x1a\x49\x7a\x06\x5b\x93\x5a\x10\x47\x52\x8c\xd5\x57\x32\xf0\xac\x05\x4a\x0e\xe0\x0a\xe7\x0d\x4a\x31\xf9\x1e\x61\xf2\x4b\xdb\x65\xba\x9e\x1b\xf5\x4b\x12\xe0\x1e\xb6\xf6\x45\x89\xc0\x15\x65\x9f\x23\xca\x66\x16\x9a\x07\x29\x46\xa3\x9d\xfa\x40\x3f\xaa\x8e\x69\x1e\x56\x50\x4e\x29\x75\x55\x40\x76\xff\x46\x59\xfe\xd4\x3a\x8f\x7f\xca\x1d\xcc\x29\x2d\x7f\x55\x95\x80\x18\x87\xf0\x5e\x97\x58\xde\x90\xf2\x26\x4f\xcb\x79\xe9\x1f\xff\x55\xac\x06\xe9\xd0\x6f\xe1\xf9\x51\xe2\x39\xb8\x71\x79\xc3\x13\xb9\xcb\x4e\xd7\xc7\xa3\x46\xa2\xbd\x70\x7e\x84\xb4\xba\x81\x5a\x28\xff\x2a\xb7\x1b\xa4\xde\x31\x34\xda\x05\x92\xc9\x8d\x25\x5b\xf3\xbf\x4d\x0a\xdb\xd8\x96\x94\x3a\xfe\xe7\x49\xd1\x18\xf6\x92\x90\xbe\x47\x6a\xcf\x97\xc1\x4e\xae\xac\xf0\x2c\x54\xf9\x0d\x1e\xa2\xbe\x7f\x36\xf9\xe5\x50\x11\x45\xf2\x67\x7e\x90\x7b\x07\x15\x22\xa1\xbb\xe5\x82\xa9\x38\x1d\x9a\xa9\x6b\x82\x5d\xeb\x86\x46\xf0\xac\xd9\xf3\xc9\x4b\x23\x24\xa4\xe5\xb3\x72\xec\xeb\xed\x9c\xe6\x16\x71\x8f\x3f\xb0\x78\x85\x18\x8a\xd5\xb6\x5a\x95\x27\x3f\x48\x4e\xb7\x7a\x21\xdd\xd0\xad\x5e\xac\x22\xba\xed\x71\xbc\xbc\xa2\xb9\xf2\x13\x8b\xc9\x9a\x6e\x20\x28\x30\xb9\xa7\xe5\x59\xae\xc4\x67\x72\x4b\xcb\xb3\x8d\x0a\xc3\x9d\x8f\x3e\x34\xf1\x6f\x9c\xe4\x4f\xfa\x2c\x02\xd7\x05\xdd\x87\x00\x30\xd9\x7c\x2c\xc3\x6d\x4f\x86\xad\x65\x44\x77\x3c\x6e\xed\x63\x14\xcb\xaf\x73\xad\xb3\x28\xc6\x34\x33\x77\xfa\xa3\x45\xb1\x24\x7b\xf9\xd3\x32\x6f\x3b\x8c\x46\x43\x74\x98\xac\xae\xef\x8f\xc7\xc3\x64\x75\x35\xb9\x3f\x1e\xf7\x93\xf5\xf5\x2d\xfc\x5c\x4d\x6e\x75\xb3\xbe\x69\x7c\xf0\xe5\xb0\xad\x3f\xe0\x09\xc7\xe4\xae\x89\xde\x40\xf4\x1e\x4f\x04\x26\x0f\xf4\xcd\xb3\x37\xe3\xbb\x67\x77\xb3\x87\x2b\xe5\x3f\xfd\x81\xec\xe8\x22\x25\xc5\x59\xb6\xc4\x60\xd3\xb1\xb5\x8f\x02\x87\x5a\xdd\xfd\x9e\xdc\x34\x87\x80\x4f\x1c\xd7\xbd\xef\x3d\xae\x7b\x4f\x27\xdb\x8f\x1e\xd7\x9d\x02\x9c\x4d\x41\xcf\x73\x43\xdf\x8f\x3b\x29\xa4\xb7\x1d\xbb\x6d\x28\x09\xfe\x00\x1f\xd3\xe5\xac\x6e\x4d\x04\x83\xf1\xc4\xc7\xf4\xea\xaa\xb9\x65\xf2\x81\x1c\x30\xd8\x24\xd4\x46\x3c\x2a\x66\x7d\x4d\xf7\xe3\xf7\xa3\xd1\xfa\x8a\xee\xc7\x37\xc1\xea\x9a\x1e\xe4\xe7\xea\x8a\x1e\xc6\x37\x90\x6c\x65\xd8\x63\x00\xb4\x90\xee\x31\xb8\xaf\xaf\x9b\x19\x57\x95\x51\x28\xed\xe6\x28\xa5\xbb\x85\xb7\x24\x05\xdd\x2d\xfc\x25\xc9\x60\x96\xf4\x0f\xe3\xc7\x3a\x36\xe8\x07\x72\xcb\x24\x0e\x39\x2a\x9e\x65\x04\x15\x63\x1f\x3f\xcb\x30\x91\x40\x6f\xd3\x88\xef\x83\xc2\x3c\x34\x05\xf3\x50\x85\x55\x4a\x5a\x29\x57\xbe\x15\xca\x48\x49\x52\xac\x6f\x04\xa3\xad\x66\x37\xb5\x12\x69\x6b\xc4\x8f\x7d\x7d\x5b\xc5\x9a\x72\x0b\x6f\x89\xc7\x8a\xb5\xd9\x6a\xa8\xad\x66\x52\xa7\x58\x0e\xbd\x58\x7c\xc0\x22\xb2\xbc\xd1\x4d\x49\x29\x56\xf9\xa7\xb5\x9f\x42\x6a\xb4\x37\xca\x8f\xd4\x4f\xb6\x07\x29\x7d\x73\xe6\xa7\x45\xbe\x9c\x6d\x20\xdf\x90\xf2\xe3\x71\x3b\x1a\x6d\x74\xf1\x94\x1a\x42\x64\x9c\xa9\x01\xa5\xed\x1a\x35\x69\x7e\x27\xcd\x5f\x1e\x8f\x7f\x40\x06\x1b\xd1\x60\xb8\xda\x8e\x46\x7f\xa9\xeb\x48\xac\x1c\x84\xe3\x4a\x18\xf5\x1f\xe2\x64\x11\x92\xad\xed\xd2\xf9\xe7\x5a\xbd\x95\xb8\xd6\x63\x4e\x6e\xef\x5b\x4e\xb3\x89\x3f\xa4\x7c\xfe\xcd\xf1\x88\xbe\xa1\x25\x17\xc6\xf5\xf4\xd7\x84\x63\x1c\x7c\x6d\x1f\x64\x7d\x6d\xf0\x12\x01\xfc\xfa\x1b\xad\x82\x33\x47\x93\xb5\x80\x41\xf2\x27\xcf\xf5\x39\xf5\x66\xdc\x6e\x61\x8e\x91\xa0\x3f\x2d\xf8\x12\xdb\x82\xaf\x72\x68\xfa\x27\x24\x4c\xf5\xf5\x41\x38\x0e\xfe\x7c\x1a\x37\xcb\x9b\x63\xb7\xfa\xba\xa9\xae\x26\x59\xe4\x76\xd3\xfc\xc5\xac\x51\xf1\x0a\x9d\x1c\x67\x48\xd1\x86\xd3\x58\xd2\x72\xfa\x88\x90\x30\x2f\x6b\xf2\xde\x49\x35\x13\x7d\x09\x7a\x22\xa5\xcf\x04\x49\x9f\x21\x31\xf6\x31\xae\xd4\x72\xfe\x37\xb8\xb8\x39\x53\x9e\x04\xd0\x4f\xfa\x8e\xb0\x9e\x58\x9c\xa8\xd9\x29\xe0\x65\x90\x80\x55\x70\xeb\x13\x07\xec\x78\x44\x3f\x2d\x8a\x25\x0c\x43\x3a\xf4\xad\x8a\xfd\x41\x5d\x04\xad\xef\xff\xd5\xf7\xc8\x85\x39\xf4\x01\xa9\x0a\x9c\x55\xfc\xac\x7c\x6b\xfd\x5b\xf5\x67\xff\x4e\xfd\xd9\x33\x41\x98\x5d\xff\xb4\xa9\x3f\xdc\xf9\x44\x3f\xb9\x65\xae\x9a\x8a\xf8\xaa\xb2\x4d\xd5\xfe\xd6\xf7\x48\xff\x4f\x27\xd7\xbb\x53\xfa\xd3\x82\xa9\x85\xaf\x9e\x98\xb2\x15\xac\x19\xa9\xe6\x61\x6a\xcd\x43\xe0\x12\xf5\xab\x54\x2a\x30\xf1\x9b\xb2\xff\xdc\x7a\x53\x55\xf1\x57\xa6\xf8\xab\xd0\xe2\x47\x4c\x85\xd9\x2b\xd3\xc6\x2b\x4e\xdd\x6c\x9d\x0d\xd5\xbc\x1b\x11\xb4\xb5\x7b\xa2\x47\xb1\x77\x69\xeb\xf5\xe0\x90\x0f\xa5\xc6\x9e\x21\x35\xf6\x0c\x85\x39\xb2\x2d\xd4\xf1\x2b\x36\x46\x49\xa2\xe3\xe3\x54\xf4\x38\x38\x9d\xe5\xd6\xc9\x78\x29\x67\xb4\x7d\x4f\x60\xa6\x8c\xed\x7d\xf7\xf2\x59\x39\x4b\xb5\x59\x44\x8a\x49\xa1\x8f\x62\x0b\x39\xe1\xed\xb3\xd3\xc6\x44\x42\xb4\xed\x0a\xe6\x39\x18\x4c\x48\xe1\x30\x24\x1e\x69\x9b\x49\x74\x60\x51\x4e\x14\x1c\x9c\x29\xb7\xac\x26\x72\xeb\xaa\x4e\xdd\x55\x7f\x42\xb6\xf0\xf9\xff\xa2\x2b\x48\x46\x0b\x23\xcd\x88\xa7\xa4\x99\xb4\x57\x9a\x49\xe9\x44\x7c\x54\x9a\x39\x05\x38\x9b\x56\x76\x2f\x89\xae\x51\x54\xbb\xd3\x0a\xf2\x2d\x82\xf1\x0a\xa3\x95\x2d\xa6\xf0\x38\x4b\x4a\xd2\x71\x07\x6d\xcf\xde\x66\x90\x55\x98\x98\xe1\x6d\x06\x77\x4e\xc4\x89\xf9\x50\x97\x06\x6b\xd2\xfe\xbd\x39\xa2\x96\xac\xa6\xeb\x2d\xaa\xe6\x4a\xa2\xde\xee\x4b\xa9\x5b\xbd\x43\xfc\x6d\x9c\x72\x56\x7c\x2d\xc7\x2b\x4f\x05\x92\x64\x7b\x84\x19\x83\x67\xdd\x2d\xb5\x3a\x21\xbe\x4a\x66\xe3\x71\xdc\x0c\x77\x95\xbc\x88\x81\x17\x98\x92\xeb\x27\x30\xb4\x2b\x8d\xb0\xa3\x55\x2f\x8c\xb2\xa4\x74\x6f\xa1\x8f\x52\x5e\x96\x20\xd8\x86\xad\x27\xda\xec\x64\x6c\x0e\xfd\x4a\x57\xfb\x84\x82\xfb\xd0\xec\x59\x13\x81\x49\x09\x57\x84\xeb\x03\xf1\xcc\x65\x91\xf2\x47\x70\x23\xb2\x1c\xc5\x67\x28\x99\xf8\x98\x94\xb5\xdf\x97\xac\xaa\xb8\xbb\x4a\xdd\x88\x0b\x16\x6e\x8e\x47\x64\x7d\xf5\x1d\x8d\xc3\xcb\xc0\x2c\xdc\x20\xbb\x1f\xd5\x5b\xba\xf0\x04\xfc\x77\xe0\x53\xa4\x13\xa1\xb5\x1a\xaf\x37\x71\x12\xc1\x3b\x83\xe0\x27\x16\x8c\x3a\xeb\x67\xa6\xbb\x47\x66\x66\x7d\xe1\x57\xd4\x3b\x1e\xc5\x15\xf5\x4e\x9d\x13\xbd\x4d\xef\x59\x12\x47\x83\x28\xde\xf2\xb4\x94\x1b\x9f\xc1\x2a\x2b\x06\x72\x1b\x4c\x06\x70\xd2\x36\xa0\x03\x67\xcc\xc7\x0e\x19\xa8\xc3\x36\xf8\x16\xc6\x78\xc9\x7e\xe7\x98\xa4\xad\x17\x8e\x89\x7e\xf0\xb8\x79\x21\x58\xbd\x18\x0c\x58\x87\x92\xd3\x9b\x17\x82\x29\x7f\x56\x10\xe6\xc2\x79\x85\x89\x19\xc3\xf1\x46\x93\x81\x72\xfd\x74\xb0\xa2\x62\x08\x1e\x10\xcc\xbb\xc2\x54\x58\x08\x4c\x94\x85\xc1\x44\xc1\xbd\xb7\x5a\xf0\x48\x8d\x18\x94\xea\x01\x53\x90\x02\x57\xad\x26\x05\xf1\x88\x76\xfb\x49\x57\x50\xa5\xd6\x0e\x28\x1a\x5a\xed\x42\x3b\x08\x95\x53\x88\x9e\x63\xcd\xf6\x83\xc7\x8d\xc3\xcc\x41\x9c\x0e\x38\x06\xab\x90\x90\x25\x09\x9c\x68\x9a\xe5\x0d\x32\xe9\xe7\x2b\xbe\x65\x07\x5e\x20\x06\xe7\x02\x72\x55\xad\x27\xa9\x44\x90\xba\x9b\x38\x92\x35\x2d\x2c\x4c\x05\xc9\xb0\xb1\x0d\x2b\x16\x59\x93\x25\x91\x59\x62\x0b\x32\x26\x09\xb6\x8c\xfc\x48\x08\xfe\x28\x6a\xa5\x72\x09\xe6\x7d\x25\x0d\xc1\x87\xe4\x78\x8c\x4b\x97\x81\xe2\x60\x6e\x9c\x60\xf0\xe8\x78\x44\xa9\x76\x7c\x87\xea\x01\xd3\x78\xc9\x80\xf7\xc3\x70\x80\x42\x23\x55\xec\x26\x13\x29\x57\x34\xe9\xa3\x51\x9d\x4d\xcf\x2d\x84\xf1\xcc\xa3\xf5\xb3\x8f\xa3\x91\x7e\x72\x4d\xd2\x56\x55\x29\x08\xa4\x72\xbd\x69\xb5\xbf\xdd\x5a\xad\x77\x39\xad\xe1\x2c\x7b\x61\x21\x96\x33\xcb\x2c\x47\x59\xd6\x69\xf9\xec\xe4\x01\xeb\xd1\x08\xf5\xbc\x6a\xcd\x91\x63\x39\x10\xfc\x5c\xeb\x29\xf7\x62\xd0\xd6\x58\x7e\x7e\x5d\x3b\x06\x84\xa7\xda\xfb\x9e\x66\x57\x8f\xad\xea\x17\x58\xcd\x9b\xab\xf5\x53\xac\xd6\x21\x61\xe0\x68\x17\x92\x4e\xf7\xc1\xdc\x0a\xbb\x71\x5a\xf2\x42\x7c\xb1\x12\xbc\x40\xf6\xbc\x05\xe3\x62\xbb\xe6\x86\xf4\x86\x32\xc9\x02\x65\x35\x90\xf8\x77\xa9\xb4\x5f\x94\x3f\x6d\x2c\x70\x47\xd3\xd7\x51\x6f\xd3\x55\x46\x4f\xcd\x6f\xf5\xb8\x55\x96\x79\x70\xe7\x89\x3a\xce\x98\x91\x98\x36\x77\x7b\xeb\x7b\xbc\xf3\x54\x71\x86\xb1\x33\x70\xc6\xa9\xab\x0f\x39\xf5\x97\x3a\xd5\xd4\x1f\xb2\x0d\x25\xdb\x38\x93\x1f\xcd\x89\x96\x8c\x82\x74\x7d\xf2\x69\xcc\x4a\x50\xd2\x9d\xb7\xfa\xc5\xa3\xbe\x78\xfa\x58\x99\xc3\x14\x54\xd2\x64\x11\x03\xa4\x0a\xd9\x69\x21\x2d\x17\xcc\xa8\xce\x76\xa7\x5d\x01\x9e\x3b\xd9\x47\xba\xc1\xd9\xb2\xfd\x04\xf8\x90\xa3\x15\x88\x93\x57\xaf\x5e\xbd\x3a\xe9\x80\x16\xe3\x10\x18\xcf\xfa\x9a\x6e\xa7\xca\x81\x17\xc0\x63\xf3\xfc\xb7\x71\xa1\x1b\x9c\x8a\x6c\xe9\x68\xb4\x6b\x46\x4b\x8a\x89\xaa\x0e\x7d\xd4\x63\x2d\xd8\xd5\xef\x62\xc3\x7b\x95\x5a\x21\xd9\xf3\xb8\xbb\x64\x62\xdb\x39\x0a\x35\xfb\xdf\x6a\xd6\x1a\x1a\x66\xbe\x35\x0c\x36\xa8\x61\x76\x6e\xb6\x13\xda\xb1\x03\x1a\x7a\xb8\x01\xd6\x29\xaa\x3b\x21\xa9\xbf\x44\xfa\xa8\x3c\x1d\x68\x8c\xe6\xd1\x16\x83\xa7\xc2\x64\x57\x73\x1f\xb3\xfe\x87\xed\x81\xab\x9d\x31\x77\x74\xac\xb6\x2d\xa9\x91\x67\xec\x5e\x80\xd7\x87\x78\x6d\x5b\x0e\xcf\xd9\xd6\x0d\x35\x33\x2e\xad\x29\x4d\xe6\x62\x42\x35\x75\x67\xd3\x40\x4b\xa7\x70\x61\x11\x35\x29\x98\x18\xf7\xd3\x94\x96\x73\x26\xe3\x37\xda\x2d\x7d\xd0\x78\xc0\x2e\xd5\x2b\x1a\x61\xed\x7f\xd2\x70\xf8\x2d\xc9\xa9\x37\xdb\xd2\xdd\x22\x5f\xce\xf2\xf1\x18\x83\x72\x70\x0f\x5e\x87\xb6\xee\x81\x52\x86\xad\xa7\xbb\xd0\x56\xb3\x7b\xc9\xc2\x67\x5b\xfa\xa8\xbe\xd4\x0b\x9a\x8a\x79\x07\x43\x9f\xd4\x03\x40\xf3\xeb\x79\x7d\x2e\x22\x77\x0a\x29\x47\x38\xa8\x63\xc8\x3e\x10\xe4\x10\xb0\x8a\xec\xd4\x3e\x1b\x6e\x4f\xd7\xe0\x72\x44\xca\x71\x6d\x1d\x34\x33\xac\x18\x8f\x15\x25\x30\x71\x64\xff\x4e\x40\xc4\x77\x82\xa4\x3a\x59\x8b\x8d\xcf\x72\xbb\xb3\x2c\x03\xff\x7a\x6f\xae\xcd\x36\x4f\xa7\x35\xb7\xf4\xb6\x49\xed\xdc\xbc\x94\x0b\x68\x62\x2d\xa0\xb2\xd3\x4d\xaf\x27\x8b\xb2\x73\x62\x16\x5a\x90\x21\xd9\xe1\x1a\xcf\x16\x96\x54\x6b\x9d\x95\xdd\xb2\xa1\x5b\xd3\x2d\x9b\xba\xe1\xfd\xaa\x79\x44\x45\xf9\x34\xd9\xf6\x0d\x2f\x55\xaf\x8f\x21\xdc\xc3\x4a\xb7\x91\x9d\x0c\x76\xbf\x4d\x09\x72\x25\xe5\xae\x14\x0c\xdb\xfc\xb8\x68\x7c\xdc\xf3\x87\x41\x8a\xb8\x6c\x78\x46\x0a\x0d\xec\x2a\xef\x96\x25\x36\xb9\xdd\x7b\x5e\x94\x70\x14\xed\xb9\x2f\xdd\x73\xa7\x03\x47\x17\x4b\x02\x02\xf4\x49\x49\x9f\x90\xa0\x15\x1a\xfd\x06\x37\x01\xcb\xc8\xaa\x42\x0f\x71\x1a\x65\x0f\xee\xaf\x7f\xd9\xf1\xe2\x80\x2b\xe2\xbf\xba\x08\xda\x02\x72\x0b\xa2\x45\x8a\x56\xf1\xc4\x69\x2c\x5a\x2e\xfd\xb9\x3a\xae\x3c\x7d\x78\x52\x65\x40\xdd\xd3\x15\xcb\x59\x25\x3c\x6c\xab\x5f\x73\xd4\x5f\x46\x98\x6b\x53\xd5\xe8\x4e\xf4\xc5\x28\xfb\xa1\xf0\xd1\x88\xab\x27\xc0\xe1\x64\x16\x9e\xf2\x06\x54\x94\x72\x53\x02\x52\x2f\x79\xd7\x86\xad\xac\x42\x82\x70\x63\xbe\x8a\xd4\xb3\x8f\x69\x53\x4e\xcb\xd0\x9d\x48\x06\xc0\x5a\x0f\x5e\x9a\x2f\x12\xd1\xb4\x5f\x47\xbd\xea\x4b\x20\x6b\xd0\x61\x51\x61\x9d\x92\x90\x5b\x7a\xba\x31\x3d\xd0\xfc\x7a\x0a\x0f\x7b\x31\xfd\x9e\xe6\x62\xba\x74\xf7\x81\xfd\x75\xc0\x64\x4f\xef\xc1\xe5\x5d\xf3\x2a\x2d\x79\x43\x6f\xe7\x7e\xe0\x91\x3b\x7a\x3b\xf7\x02\x9f\x3c\x50\x8f\xbc\x87\x7b\xb5\x0f\xd7\xf5\x63\xb8\xa3\xd1\xfb\x6b\x30\xea\x05\x87\x3c\x33\x75\x33\x9c\x1a\x87\x8a\xe4\xe1\xaa\x01\x54\x33\x7e\xb3\x78\x58\x6a\xc7\x3d\x92\x15\x5e\xe5\xb3\xf1\x78\x8b\xd7\xaa\x87\x37\x8b\x87\xf1\x76\x89\x67\x0f\x63\x9a\xd7\x57\x43\xad\xd2\x9e\xcc\xb8\x5a\xbc\x87\x8c\x72\xdb\xb9\x5e\xec\xc6\xd3\x25\x95\x51\x77\x4b\x4c\xde\x8f\x69\x54\xe3\xb2\x89\xfd\x97\x88\x78\x7f\xb5\xea\x54\x64\xb5\x78\xbf\xc4\x12\xb9\xba\x91\x19\xaf\x50\x21\x2b\x37\x7e\xb3\x24\x19\x04\xee\x96\x24\x01\x2a\xde\x2c\x49\xa9\xc9\x81\xcb\xc9\x05\xa5\xc9\x27\x4b\x97\xb5\xb8\x5b\x8e\x29\x1c\x0f\x12\x49\x4b\xbb\x26\xc5\xb5\xba\x98\xec\x51\xfa\xf0\xc9\x66\x09\x69\x59\x41\x4b\xd6\x97\x98\x37\x8b\x87\x49\xae\x3b\x22\xa6\xd9\x18\x41\xc4\xf8\x6e\x39\xc9\xf0\x33\x94\x4c\x0a\x7c\xa6\xa3\xde\x2c\x27\x05\x26\xeb\xda\x59\xad\x0e\xc5\xe3\x12\x93\x2d\x9d\x3e\x45\xbf\x2c\xb2\x26\xf8\x53\x95\x7d\xdf\x10\xb6\x5a\xbc\x9f\x44\xea\x55\xda\x72\x8c\xe0\x4b\x52\x55\xe2\x67\xa8\x98\x24\xf8\x4c\x47\xbd\x59\x4e\x12\x8c\x89\x69\xa5\x10\x5a\xa8\xda\x0d\xeb\xa1\x37\x1a\x59\x63\x21\xc4\xb2\xfa\xfb\xd1\xa8\x05\xb0\x6b\x4a\x5d\x83\x4d\x85\xfc\x0b\xe1\x49\xae\xbe\xc6\xbe\xf9\x1e\xfb\x7d\xa3\x76\xb1\x1b\xe7\xe3\xed\x52\x82\x8c\xb7\xcb\x99\xca\x51\x67\xa8\x2a\x33\xb9\xe9\xba\xaa\x24\xdb\xac\x1f\xc6\x34\xea\xed\x47\xe0\x2a\xea\xa4\xa8\x22\x29\xdb\x72\x29\xfa\xb1\xf0\xce\x21\x9a\x9b\x07\x8e\xef\x4e\x9d\x0a\x38\xec\x65\xf0\x3b\xdf\x9f\xb1\xde\x32\x10\xb6\x87\x62\x7e\x26\x2c\xc5\x14\x33\x12\x94\x52\x4c\x99\x78\x4b\x0b\xee\x96\xa2\x58\x89\x78\xcb\x71\xf3\xa4\x96\x8e\x41\xc6\xad\x36\xc9\x7a\x9d\xed\x0e\x84\xdc\x38\x98\x9d\xdd\xdc\xf1\x9c\x40\x80\x0f\x23\xc4\x65\x02\xc7\x46\x5a\x11\x63\x1e\xf0\xca\x58\x39\xc3\xfd\x78\x60\xa7\xdf\x64\xbb\xa2\x44\x20\xe7\x5e\xf9\xd3\x59\xb3\x59\x64\x74\xe1\xfc\x89\xa5\x0e\x71\xbe\xe2\xb7\x0e\x71\xde\xb1\xc2\x21\xce\x17\x79\x01\xe1\x83\x43\x9c\x3f\xed\x52\xf8\x9b\xc8\xf8\xdd\xda\x21\xce\x0d\xcf\x1d\xe2\xbc\x0f\x85\x43\x9c\xef\xb2\x7b\x87\x38\x5f\xf2\xd0\xf8\x5a\x54\x2b\x72\x4a\x17\xce\x0d\x64\x7c\x07\x56\x2b\x1f\x76\x52\xe4\xff\x89\x47\x32\xbc\xd9\xc9\xe2\x8a\x58\xa2\x62\x42\x66\x2c\x68\x79\xed\x4f\xe7\xe5\xc4\x9f\x06\x9e\x14\x06\xfd\x69\x50\x36\xe2\x07\x5c\xcb\x13\x3d\xaf\x65\x0a\xe3\x31\x7f\x87\xb5\x77\x01\x73\x08\xac\x75\xa5\xcc\x09\xb6\xb2\x85\xd2\x85\x5e\x55\x0e\x08\x2f\x6d\xbd\xe9\xad\x06\x60\x0a\xe0\x5d\x96\x8a\x4d\x07\x24\x92\x20\x19\x32\xcb\x12\xd8\xec\x38\xd8\x86\xe0\x3d\x10\x83\x36\xc8\xc6\x09\xe0\xf7\x1b\x05\x5a\xb6\x12\xdf\xaa\xc8\xa2\x15\x99\xe8\xc8\x13\x54\x5b\xab\x34\x4d\xef\xd8\xef\x92\xf4\xce\x06\x8a\xd3\x9d\x00\x77\x92\x36\xc4\x3f\x75\xcd\x91\x3d\xa4\x2d\x9c\x67\xe7\x78\xec\xb7\x72\xdc\x58\x38\x6f\x78\x98\xa5\x51\x17\xe7\xc1\x82\xf8\x6a\x97\x24\x3f\xc3\xb1\xdd\x67\xbe\xe7\xb5\xc0\x7e\xd6\x45\x77\xe0\x6c\x90\x5c\x82\x84\x73\x87\x6d\x9d\xc0\xc9\xb7\x8e\x9d\xf6\xbd\x4e\xfb\xe2\x9d\x13\x38\xdf\xbf\x6b\xa5\x3d\xd8\xa8\xa1\xbb\xab\xb8\x16\xce\xe5\x8c\x00\x16\xea\x7c\xe6\x50\xba\x9d\x27\x74\xe8\x05\x75\x72\x55\x5f\x49\x32\x8f\x57\x34\xb3\xfb\x09\x77\x43\xf8\x11\xf6\xcc\xa7\xea\x53\x26\xa5\x1d\x75\x2f\x9a\x11\x56\xac\x77\x72\x4b\x50\xe2\x4a\xdf\xf3\x7d\x8c\x98\x90\x13\x75\x66\x9c\xbc\x37\xac\x60\x34\x12\x88\x11\xc7\x7c\x3a\x84\x5b\x1f\x98\x40\xe2\x5a\x1d\xa7\x42\x9a\x09\xeb\xa4\xd2\x4a\x32\xe1\x66\xcb\x24\xa7\xa5\x1c\xa0\x72\xca\xc2\xe4\x36\x8d\xef\x10\x07\x58\x84\x9c\xb0\x71\x92\xc4\xa5\xea\x5e\xf8\x84\xc1\xa3\x66\xb2\xd8\xc0\xf4\x57\x69\x4b\x6d\xed\x90\x36\xd6\x0e\x63\x6c\xe8\x93\x53\xae\x58\x6a\x02\x7f\xfc\xf0\x5a\x7d\x37\x44\x36\xe9\xa5\x9d\xde\x08\x82\x75\x63\x17\x2d\xaf\xe3\xb7\x45\xf6\x50\xaa\xf3\x43\x70\x4b\xff\x5b\x96\xf2\xb9\x14\xe9\x61\xde\x71\x78\xd4\xd4\xc4\xab\x47\xf0\x54\x98\xa4\xc8\x82\xd2\xc7\x85\x19\x7d\x54\x15\x0d\x7c\x7e\x4e\xb6\x50\xd3\xe0\x39\xbf\x20\x9b\x6c\x57\x04\xe7\xcf\xf9\x25\x89\xd8\x21\x78\xf9\xfc\x82\x5f\x92\xad\xac\x7e\x30\xbd\x7c\x35\xe5\xcf\xc9\x3f\x77\xac\x10\xbc\x08\x5e\xbc\x78\xf1\x9c\x3f\x27\x07\xce\x8a\xe0\x72\x7a\xf9\xea\xe2\x95\x3b\x7d\xf6\xdc\x7b\xe6\xf3\x73\xe0\xc2\x0b\x5f\x56\x50\x16\xe1\x2c\xc9\x62\x6a\x7f\x5c\xda\x1f\xbe\x67\x7f\x9d\xb7\xbe\x7c\xb9\x4d\x96\xa4\x69\x14\xcd\xc7\xa5\xfd\x21\x51\x34\x5f\xe7\xad\x2f\x9f\x38\xb2\x4a\x1a\x81\x09\x5e\x34\xc1\x97\x4d\xd0\xb7\x20\x7c\xe2\x44\xec\xa0\xb3\xe9\xd0\x79\x1d\x72\xa7\x92\x00\x18\x15\xf2\xcb\xfe\xf0\xad\xf0\xb4\x0e\xcb\x35\x29\x36\xe6\x94\x0b\x89\xa9\x06\x7a\xde\xce\x2c\x1b\xd4\x59\x2e\xe1\x36\x41\x93\xc1\x27\x8e\x6e\x78\x8d\xd7\xfa\xb2\x32\xcd\xf8\xa7\x37\x48\x29\x7e\x4c\xdb\x1b\xa4\xf7\xe6\x0d\xdf\xf6\xee\x28\x85\xfb\x30\x72\x1b\x97\x36\x7e\x79\x5b\x77\xe1\xd2\xfa\xea\x72\xfd\x00\x87\x79\x7e\x21\xd6\xae\xd7\xb5\x93\xfd\xa7\x7d\xc3\x33\x0a\x6f\x61\xeb\x67\xe0\x48\x8c\xb5\xe3\x9d\xb8\x7e\xe1\x60\x34\xaa\x6b\x4b\xa9\x15\x0f\x66\x1e\x71\xfb\xb5\x8a\x36\xa4\x95\xb4\xf0\x97\xf3\x32\x48\xcc\xb3\x1b\x9d\x37\x2e\xc2\xd3\x9b\x98\x4d\x39\xf3\x26\x18\xb4\x71\x7a\xcb\x67\xd9\xa2\x5b\xcc\xd2\xd2\xd3\x80\x90\xb7\xab\x4d\xf0\x46\xa3\x21\xe2\xca\x9d\xfc\x15\xda\x2d\xb6\x4b\x85\x01\x42\xfe\x72\x39\xde\x2d\xb6\x63\xbf\x89\x94\x61\x89\xef\x6c\x3a\x1a\x9d\x42\x5f\xd3\x10\x83\xf8\x38\x53\x76\x36\x1a\x82\x6c\xa8\x86\x80\xc3\x3a\x18\x19\x54\x7b\x62\xeb\xad\xbc\x01\xe9\xd6\x03\xe7\xb6\xcf\xc7\x6e\xc5\x5b\x2f\x13\xd9\x4f\x44\xf4\xb9\xd0\xd7\x75\x3e\xcb\x5c\x59\x56\xdb\x93\xfe\x8a\xb6\x53\xcf\xa2\x59\x4e\x57\xf0\xce\x89\x1f\xac\xae\xce\xe7\xd3\x60\xd5\x3c\x5c\x92\x3f\xa3\x51\x95\x5f\xf9\x70\x15\xda\xc7\x55\xf3\x0e\x86\x35\x30\x8e\xc7\x45\x4e\x36\xca\xda\x6c\x6d\xbd\xb2\xb1\xf0\x96\xb3\x8d\xfd\xad\x2d\xd2\xee\xe9\xfa\x59\xb6\xd8\x2c\x67\x86\xf5\x50\xba\x99\xa7\x6e\xd9\xac\xf5\x42\x4d\x81\x7a\xe9\x27\x6b\x8c\x03\xc3\x65\x6a\x68\x23\x6d\x68\xe8\x5a\xf8\x50\xd0\xc0\x59\x6a\x58\x25\x96\x6a\x48\x23\xa3\x2a\xac\xc0\x0c\x1a\xa4\x20\x93\x18\x94\x4a\x40\x51\x80\xcd\x50\x6f\x81\x9e\x3f\x6b\x03\x9f\x9d\x2b\x70\x33\x12\x46\x23\x00\xae\x85\x0f\x0d\xdd\x08\x23\x12\x9c\xe8\x0a\x35\x0b\x22\xf2\x30\xb9\xbf\xa6\x60\x24\xb1\x13\x5c\x63\xb9\xe9\x24\xca\x4a\xea\x24\x53\x7d\x93\x14\xb1\x83\x4e\x51\xd5\x55\xf1\x17\xcf\xec\x14\x58\xa4\x7c\x48\x98\x3e\xcb\x5c\x68\x0a\x83\xae\xaf\x1d\xce\x71\x0d\xab\x5b\xe3\x63\xd0\xcf\xb1\x26\x45\x36\x45\x0b\xd0\xd3\x8f\x4a\x91\x03\xb8\xe4\x6d\xbf\xba\x12\xaf\xd0\x2d\xdd\x93\x3d\x05\x64\x52\xae\x40\x70\xae\x2b\xb9\xe5\x1e\x93\xa6\xc3\x8e\x47\xbb\x4f\x70\xbc\x42\xeb\x2b\x5f\x72\xdb\xa6\x66\x33\x65\x18\x6a\x61\x9a\x59\x64\xd8\xd4\x8e\x51\xab\x83\xcf\x03\x5f\x5f\x40\xbb\x3b\xcd\x0d\xe1\xfd\xf8\xf0\x4c\x75\xc0\x18\xdd\x4d\xde\xe0\x67\x6b\x4c\x0e\xb4\x35\xbe\x5a\xad\xaf\x54\x00\x4f\x95\xbe\x7e\xd6\x57\x3e\x48\x90\x66\x20\xcd\xdb\xe3\xa8\x33\x8a\xc6\x6b\x1c\xd8\xc4\xdd\x63\xfd\x36\xcd\xde\xbc\x4d\xb3\x1f\xd2\x5b\x4b\xec\x21\xe9\x27\xdf\xa6\x81\x65\x82\xd4\xaf\x60\xe0\x99\xc5\xd3\xe4\xba\xa3\x54\x51\xb5\xf5\x11\x4a\x89\x1d\x4f\x62\x35\xa0\xbe\x63\x5b\x5e\x92\x58\x0e\x3b\x08\xea\x77\x97\x3a\xaf\x6b\x9c\xac\x27\xa7\xc9\xb0\x00\x09\xfb\x9d\x88\xde\x85\xa8\x17\x62\xe1\x2f\x89\x79\xbe\xa8\x59\x4b\x84\x8d\x7b\x09\x6f\x8a\xd6\x4f\x4d\xa9\x35\xf1\x81\x27\xf7\x5c\x76\xe1\xeb\x24\x0b\xef\xe6\xce\xe0\xb3\xdc\x09\x1c\x07\x5c\x3b\x9c\x24\x7e\xf6\xd6\x09\x9c\xcf\xbe\x71\x66\x56\x8b\x94\x57\x66\x0a\xcf\xb7\x63\x27\xf8\xec\x5d\xf0\xd9\x8d\x33\xde\x05\x32\x3e\x62\x87\x79\x78\x35\x55\x53\x52\x27\xcb\x34\xe7\xb3\xdb\xc1\x67\xd1\xc0\x19\x37\x51\x80\x46\xb6\xe6\x5c\x25\x3a\x41\x32\x1a\xc9\x48\x5d\xef\xe3\x71\xa8\x23\xe4\x70\x99\x87\x26\xe0\x7c\x76\xeb\x28\x7c\x3f\xd7\x59\x3a\x10\x7f\xf9\xec\x9f\x4e\x20\xff\x02\x8c\xf3\xd9\xcf\xce\x93\x3d\x57\x29\x2b\x0b\x5b\x23\x02\x36\x36\xc1\xa3\x91\x7e\x41\x27\x42\x9a\x41\xa0\xbf\xdb\x2d\x15\x0c\x7d\xd2\x14\xd0\x56\xa3\xa8\xad\x88\xa5\x45\xf1\x1c\x78\x47\x08\xe4\x2c\x85\x53\xce\x6d\xca\xfa\x74\xd9\xcf\xff\x63\x5d\xb6\xbe\x01\xbd\x0f\x26\x3e\x39\xc8\x3f\x92\x5e\x38\xb0\xa9\x66\x96\x06\x06\x3f\x0a\x57\xa5\x1c\x8f\x13\x7f\x48\x85\xbb\x07\xcf\x55\x7b\x3a\xf1\x09\xef\xbd\xd8\xde\xb2\x08\x84\xdb\xcf\xf1\x0a\x0d\x0d\x1a\xf5\xd4\x26\xac\x79\x89\x72\x72\x30\x1a\xb5\xbf\x11\xc6\x0a\x7f\x23\x09\xa4\x94\x37\x1e\x1b\x64\xa2\xe5\x69\xb1\xb6\xc3\x36\x37\x2d\x52\xe3\xc2\x41\xdf\x17\x87\x77\x84\x0e\x1f\xc9\xf2\xb3\xf2\x5c\x4c\x78\x7d\xab\x1c\xdc\x63\xf5\xd7\xad\xaa\xb8\x64\x3e\xaf\x8b\xac\x2c\x37\x2c\xb6\xb8\x89\xaa\x28\x6b\x8c\x4f\xc1\x2b\xde\xd3\xf4\xfe\x0b\x74\x9e\xd2\xa7\x98\xac\x69\xa7\xa7\x68\x25\xda\x90\xa5\xa1\xb6\x4d\x3c\xe1\xd0\x2b\xfd\x95\x61\xb2\x63\x6c\x68\x78\x60\x5e\x77\x23\x1d\x7a\x12\xfb\x2e\x7d\x22\x7f\x33\x6e\xe8\xd0\x97\x90\x6a\x63\xd0\x5c\x23\xea\x39\x32\x91\xdb\x82\xc6\xd3\x02\xc2\x6e\x68\xf0\x1a\x99\x5f\xa8\xdb\x29\xd9\x4e\x28\x5a\x9a\xbb\x4d\xa9\x7a\xe5\xd6\x94\x63\x35\xc3\x69\x41\x56\x17\xf5\x17\xa7\x2c\x53\x65\x99\xe6\x4a\x0f\x6f\xbb\x2a\x51\xb6\x9d\xcc\x98\x11\x31\xcb\x86\x5a\xfb\x8c\x2e\x94\x0d\xb5\x9e\x32\x8d\x07\xe5\x27\xea\x57\xdb\xe5\x99\xd7\x1c\x14\x7a\xcb\x4a\x50\x9f\xbd\x13\xd6\x76\x46\x5d\xdb\x14\xb2\x13\xc7\xb1\x84\xb5\x2c\x3d\xc1\x7e\x17\x2a\xd5\xbc\x91\xb6\x77\x6a\x43\x20\x4b\xbc\x96\x04\x8f\xb3\x19\x33\xee\x6d\x62\xe2\x61\x8d\x1f\xbe\xac\x71\x58\xc5\x2b\xd4\x87\xf8\x60\x10\x27\x6d\xc4\x87\x16\x62\x8f\x24\x16\xe2\x7a\x22\x90\x04\x57\xac\xb1\x1b\x65\x96\xa7\x26\xbb\x8f\xcd\x7d\xb9\xde\x91\x24\xcc\x95\x3b\xc7\x8c\x18\x87\xc0\x90\x69\x45\x4b\x3a\x1c\x92\x76\x38\x7d\xdd\x2d\xc1\xa3\xac\x95\xe2\xec\xda\xaa\x06\x1c\x5b\xf9\x2f\x3c\x32\xd0\xff\x77\x5f\x7a\xd8\x21\x75\x3f\x04\x7e\xcd\xe0\x6b\x34\x27\x5c\x5e\x72\xf0\x97\x41\xf7\xb4\xb0\x22\x53\x6f\xda\x1b\xfb\xfc\x24\xd6\xd9\x95\x7c\x50\x8a\x22\x0e\x85\x33\x63\x6e\x61\xb4\xdd\x29\x65\x68\x7a\x81\x49\x41\x99\x2b\x37\xda\xb3\xd6\xc2\x40\x0b\x97\x11\x1d\xb3\xcd\xb6\x3c\x15\x12\xfc\xb9\x79\x53\x87\x21\x78\x4f\x52\xe6\xcc\x30\x49\x28\x43\xe7\x1e\x86\xab\x6a\x29\x4a\xe4\xf6\x99\xa1\xe7\x98\xec\x64\x9e\x4b\x4c\xb6\xf2\xd7\x7b\x81\x49\x0e\x81\x97\x98\x6c\x20\xf0\x0a\x93\x48\x06\x7c\x4f\xee\xc1\x64\xc0\xc7\x64\x0d\x81\x29\x26\xf7\xf4\xf1\x9f\x92\x94\x60\xf1\xa8\x5a\xe9\xeb\x82\xe5\x1b\x87\xec\x8a\x38\x70\xce\x52\xfe\x70\xb6\x86\x88\x6a\x59\x91\xdb\x53\x7f\x34\x92\xab\x32\xb1\xf9\xbe\xe0\xab\x78\x4f\x98\xdc\x73\x6d\x58\x9a\x95\xaf\xb3\x6d\x9e\xa5\xca\x14\xf1\x3d\x18\xb3\xa0\xcc\xdd\x95\xfc\x46\x30\xc1\x31\x1a\xfa\xb2\x49\x74\x42\xe8\x32\x8c\x52\x32\x95\x55\x2c\xe4\xc6\xb6\xa4\x85\xdc\xb1\x35\xee\x93\xb4\x71\xeb\x1b\x65\x76\x80\xb6\x2e\x23\x8f\x60\xcc\xf5\x1d\x90\xbc\xbd\x9d\x9c\x3b\x24\x62\xc5\x5d\x30\xf4\xcc\xc0\x90\x9f\x0e\xe1\xfb\x9c\xa5\x51\xe0\x6c\x23\x87\xac\xe2\x3d\x8f\x02\xb8\x1d\x5e\x91\x53\xac\xb9\xc4\x9a\xa5\xaf\x93\x38\xbc\x0b\x7a\xfc\x24\xa1\x61\x22\xc7\x7b\x4f\xce\x5d\x87\x9e\x94\xdd\xdf\xb2\x62\x72\x5b\x30\x39\xeb\x45\x16\x38\x8e\x51\xf0\x08\x62\x37\x2a\xae\x88\xf3\x01\xda\x6b\x30\x19\x38\x84\x2d\xbc\xa5\x2b\xb2\x1f\xf3\x9c\x17\xaf\x59\xa9\x38\x59\xfd\xdc\xa1\x79\x11\x05\xf7\x91\xb0\x91\x24\xc4\xe5\xfb\x9c\xa7\x41\x42\x14\x01\xb2\x31\x94\x2f\x8a\xc7\x5f\x77\xa5\x88\x57\x87\xd7\x59\x2a\x78\x2a\x02\xa7\xcc\x59\xc8\x27\xb7\x5c\x3c\x70\x9e\x3a\x55\x5f\x73\x44\xdd\x46\x4e\x26\x9e\xd3\x60\xae\xc8\xfd\x82\x2d\xdd\x2d\xcb\x51\xdf\xe5\xcc\x53\x7c\x2b\x89\xef\x8e\x1f\x02\xee\xee\x8a\xb8\xaf\xc4\xb5\x84\x10\x6c\x1d\xc8\xf6\x6c\xb7\x1a\x36\x21\xc8\x0c\xeb\xa8\x1c\xad\x6a\x8d\xe9\x2f\x4b\xf9\xb3\xeb\x2f\x64\x53\xf0\x55\xe0\x6c\x84\xc8\xcb\xe0\xec\x4c\x8d\x58\x37\xce\xce\xd6\x5c\x88\x38\x5d\x4f\x4a\x21\x45\xdb\xc8\xdd\x46\x67\x4e\x45\x9c\x6f\x78\x92\x3b\xff\x41\x41\xad\xde\xd7\x3d\x6f\xa2\xf4\xec\x4f\xb2\x90\xc1\x45\xa3\x92\xb3\x22\xdc\xc8\x81\x01\x86\x5b\x71\x38\xf8\xf1\xad\x83\xe5\xff\x2a\x72\x90\x93\x76\xfa\x12\x93\x3d\x45\x0c\xf9\xfe\x4b\x4c\x18\xba\xbc\xc4\x98\xbc\x01\x9e\xb0\xc7\xe4\x8e\x32\xe4\x9f\x63\xf2\x40\x19\x7a\xf9\x02\x37\x92\xe3\x7b\xfb\xa9\x3c\x35\xf1\xdc\x3b\x7e\x28\x11\x87\xa5\x53\xc7\xc8\xd5\xf0\x21\xfd\xbe\xc8\x72\x5e\x88\xc3\x0d\x5c\x26\x28\xcd\xea\xfc\x31\x18\x89\x46\xc0\xa1\x58\xea\xae\xe2\x44\xf0\xc2\x1a\x16\xcd\x19\x5f\x2f\x8a\x2f\x79\x19\x16\x71\x2e\x32\xa5\x06\x77\x79\xba\xdb\xd6\xf7\x8d\xcd\x06\xbc\x3e\x69\x48\xeb\x43\x0c\x4b\x81\x7e\xd3\xf6\x63\xeb\xcf\xc4\x55\x7d\x22\x61\x54\xf7\x62\x3c\x36\xf5\x57\x5b\xc9\x1a\x62\x21\x96\x73\xfb\x23\x78\xac\x66\xe2\xb3\xe9\xfc\x3d\x62\x64\xe8\x61\x29\xfc\xbf\x69\x1b\xb9\x08\xfc\xa8\x99\xd7\x9d\x64\x5e\xb0\x08\x2c\xc4\x52\x0e\xc7\xe0\x13\x75\x2c\xe7\x1a\x20\xe2\xab\x38\xe5\x1a\x20\xe6\x25\xe2\xe4\x53\x59\x11\x93\xf8\x11\xfb\x28\x49\x6d\xc4\x07\x20\xee\x53\xed\xce\x88\x50\xdb\x2b\x73\x6c\x5b\xa9\x0b\x9c\x7d\xaf\xc6\xf6\xb0\xf3\xc7\x52\x30\xb1\x2b\xe1\x28\xba\x10\x83\x15\x17\xe1\x26\x4e\xd7\x72\xff\x94\xb6\xb8\x3c\x93\x5c\xbe\xa0\xa9\xe4\xf2\x31\x4d\xe5\xde\x38\xe9\x43\x28\x57\x39\x3b\x5f\x22\xf3\xed\x68\x29\xf3\x6d\x69\x29\xf3\xe5\xbd\xeb\x8a\x27\x57\x3d\x3b\x67\x2e\x73\x46\x74\x23\x73\xae\xe8\xc6\x5a\x57\xec\xec\x6f\x56\x2b\x1e\x0a\xdc\x32\x63\x42\x1d\xd3\xf0\xba\xe6\x0f\x12\xef\x1b\x97\x81\x23\x8c\x26\x0b\x6c\xce\xf4\x15\x1a\x53\x86\x84\x7a\x28\x5a\x3c\x52\xbb\xb0\x9f\xcd\xb0\x3e\xc7\x65\x6e\x5e\xf0\x7b\x39\x81\xf9\x5e\xa8\x33\xdd\x81\x17\x18\x87\x7b\x50\x25\x0d\x22\xd7\x00\x09\x44\x2f\x08\x34\x31\xe2\xe4\x06\x3d\x86\x2c\xdc\xc8\x45\x27\x9b\x80\x50\xe6\x90\xb0\xe0\x11\x4f\x45\xcc\x12\xd9\x23\x6c\xcb\x27\x59\x11\xaf\xe3\xd4\xa9\x64\x2f\xc3\x19\xe2\xe0\x22\x88\x57\x08\xa5\x94\xb9\x25\xf8\x43\xc8\xee\xf0\xa3\x46\xfe\x42\xfb\x5b\xeb\xde\x50\x48\x5d\xd5\xcb\x1f\x24\x99\x0a\xcb\x0b\x43\xa6\xce\xfa\x8a\xa4\xee\xaf\xa5\x6c\x31\x95\xfe\x2a\x28\x74\x09\x24\x06\xaf\x11\xb0\xf0\x6b\x60\xff\x85\x75\xa8\x39\xf0\x2f\x02\x53\xcb\x0b\x29\xbf\x7b\x94\xb9\x21\x93\x95\xf4\x31\xd9\x22\x19\xa3\x91\xfa\x2f\xd4\x31\x33\x4f\x23\xa7\x29\xbf\x14\x59\x0e\xf2\x28\xd1\x1c\x79\xb1\xf0\x89\x7f\xb1\x84\x39\x59\x2b\x9f\x7a\x4e\x31\x8d\x6b\xe7\x4d\x5c\xb6\x4e\x31\x31\xc2\x08\x57\x98\x2c\x38\x11\x4b\x4c\x1e\x0b\x5e\xe6\x59\x5a\xf2\xa0\x20\x5c\xb6\x47\xb0\x23\x71\xf9\x6d\xc6\xa2\x38\x5d\x07\x51\x55\x91\x5f\xa5\x7c\x76\x81\xc9\x6b\x10\xad\xce\x31\xf9\x5e\xf2\xe2\x0b\x4c\xde\x51\x86\x5e\x61\xf2\x65\x8f\x43\xb9\x41\x8f\xe1\xbb\x0b\xe8\xe1\xb1\xf3\xba\x00\x78\x12\x36\xdc\x95\x22\xdb\x42\x67\xbc\x2b\xd7\x70\x8d\x2e\x34\x62\xd6\x87\x58\x24\xbc\x99\x4b\xbf\xca\x21\x2a\xc8\xc2\x01\x5c\x0e\x71\x6a\x4c\x0e\x71\xda\x78\x64\x44\x0b\x8b\x63\x1d\x51\xce\x4f\xd7\xb5\xd7\x20\x17\x18\x19\x2b\x5d\xf3\xc2\xa9\x48\x71\x3c\x9e\x42\xca\x98\xaf\x0a\xb6\x56\x37\x52\xfa\x57\x49\x47\xee\x2a\x24\x55\x90\xee\x00\x51\x81\x83\x89\xa3\x06\x5d\xcd\x4a\x06\x0e\xc9\x8e\x47\xee\x46\x71\x99\x27\x4a\x29\x44\x9c\x40\xca\x4c\xee\x96\x97\x25\x5b\x73\x8c\x83\xb4\x87\xdc\xef\x25\xb9\xe0\x77\xcb\x39\xdf\x3b\x24\x0e\xb3\x34\x78\xe7\x26\xa4\xcc\xe3\x14\xa4\xc5\x46\xc2\x31\xc6\x98\x93\xc6\x82\x5b\x8b\x4f\xc2\xb8\x1e\x08\x9c\x66\x63\x39\xb9\xf4\x3e\x23\x03\xf9\x17\x2b\x8b\x7b\xe7\xd2\xfb\xcc\x51\xc6\xaf\x10\xac\x2a\x1c\x9c\x12\xc4\xe5\x6e\xaa\x22\xdf\xc1\x5a\x7e\x89\xc9\x2f\x10\xf0\x30\xf9\x4d\x0e\x97\x57\x98\x7c\x05\x52\x3b\x26\x3f\xc0\x9a\xfe\x15\x26\x6f\x65\xc2\x73\x4c\xbe\x95\xbf\x2f\x30\xf9\x02\x72\x60\xf2\x13\x0c\x34\x4c\xbe\x91\xbf\xe7\x98\xfc\x13\xe2\x7d\x4c\xfe\x08\x81\x29\x26\x3f\x42\xe0\x1c\x93\xbf\x42\xe0\x02\x93\x9f\x21\xcf\x0b\x4c\xbe\x86\xc0\x05\x26\x7f\x81\xc0\x25\x26\x7f\x90\xc3\xd4\xc3\xe4\x6f\x10\xf1\x1c\x93\x3f\xcb\x88\x97\x98\xfc\x49\xca\x12\x2f\x31\xf9\x3b\x10\xf4\x27\x4c\x38\x97\x31\xaf\x30\x11\x1c\xa2\x38\xc7\x84\x71\xfa\x94\x71\x91\x1e\xd9\x1d\xbe\xfb\x16\x86\x28\xd8\x88\x62\x82\x6a\xe6\xfa\x45\x1d\xad\x23\x7e\x82\x08\xac\x8c\x72\x21\x81\x63\x8c\x5d\xbe\xcf\x8b\xb7\x69\xbe\x13\x3f\xf0\x15\x6d\x5a\xf9\x07\xbe\x52\x52\x33\x17\xdf\x9c\x78\x22\x55\x17\x7c\x58\x2b\xaf\x1b\xee\x8a\x42\x0e\x50\x51\xab\xb4\x54\x46\x70\xfd\x1c\x26\x31\x4f\x4d\x04\x28\x6b\xc2\x22\x4b\x12\x1d\x91\x51\x31\x49\x67\x50\x18\xac\x3f\xe8\x51\x5b\xa9\x17\xe3\x4c\x99\x38\x6f\x58\x1a\x25\x1c\xca\xb2\x09\x81\x2c\x7f\x65\xc9\x8e\xa3\x7e\x6a\xdc\x7b\x99\x08\x28\x0c\x64\xab\x79\xe1\x41\x93\xbc\xc8\xf2\xd2\xcd\xd2\x37\xfb\xbc\xe0\xa5\xdc\xcf\xbe\xde\xc8\x09\x89\x11\xd7\x4d\xd0\xa6\xca\x61\x3b\x91\x39\x95\xdd\x3a\x16\x91\x7f\xe6\x87\xef\x25\x9a\x9e\x3d\x9e\x29\x8a\xef\x79\xb8\x13\x1c\xb6\xae\x33\xe7\x0d\x18\xc2\x0f\x29\xe5\x52\x90\x94\x93\xb3\xdc\xc4\x2b\xf1\x67\x19\x46\x02\x81\xea\xb4\xe0\xf7\x3c\x15\x5f\xaa\x8b\x99\x08\x43\x71\xa0\x5a\x94\x42\xee\x3b\xc9\xde\x6d\x3f\xa8\xb6\x35\xd8\xdf\x5d\x66\x04\x49\x5e\x3b\xda\x3b\x1b\x9c\xad\x89\xe3\x60\x22\xc8\x63\x5e\xf0\xc0\xb9\x52\xec\xe3\xda\x21\x79\x56\x8a\xc0\xb9\x3a\x33\x11\xaa\xfd\xd5\xa0\xf8\x62\x27\x32\xc9\xe3\x12\x2e\xf8\x8d\x7e\xb7\xb7\x6f\x27\x1b\xcb\x5e\x80\xc6\x26\x29\x55\x66\x2b\x14\x6c\xd1\x9c\x40\xf5\x3e\x5c\xa4\x7d\xc7\xd3\x1d\xb8\xfd\xae\x6f\xc0\xf2\x08\x7c\x38\xc8\x1d\xba\x6e\x29\x76\x5a\x62\x49\x4a\x38\xee\x36\xa6\x24\x46\x0c\xe4\xa9\x28\xa4\xf4\x97\x60\xb7\xe0\xd1\x2e\xe4\xb6\x4c\x47\x6a\x7b\x77\x5b\xa6\x29\x94\x34\x94\x28\x69\x28\x51\xd2\xd0\x69\xc3\xa2\x94\x6c\x6b\x56\x6e\x1e\x72\x9f\x2f\x6a\x67\x4f\x1a\xe5\x6f\x6a\x82\x91\x45\x0f\x77\xde\x25\x4e\x6b\x13\x08\xef\x69\xef\xd6\x6b\x5e\x8a\x49\x54\x64\x79\x94\x3d\xa4\x93\x24\x2e\x85\x43\xe4\xd6\x6e\xd7\xb7\xad\x73\x92\xf8\x77\x20\xd9\x70\x16\xc1\x52\xb2\x83\x3b\xca\x70\xf5\xcc\x23\xbe\xe7\xe1\xce\x1e\xd3\x5a\x28\x95\x58\xc3\x12\x58\x2b\xd5\x05\x18\xa2\x55\x83\x6f\x05\xdf\x4a\x39\xb7\x44\xb0\xe7\x64\x04\x34\x61\x41\x49\x62\xc1\xb7\x01\x33\x8c\xbd\xf3\xce\x75\x90\x51\x4a\xcb\xf1\x78\xee\x40\xbf\xae\x0b\x76\x70\x02\xe7\x61\x13\x0b\x2e\xb9\xf9\xd3\x1a\x09\xa8\xa3\xee\x50\xb9\x6b\x5b\xa7\xaa\xdc\x5d\x45\x0a\xf2\xa8\x96\xc9\x6c\x57\x26\x87\x1b\x2e\xde\xa6\x29\x2f\xbe\xf9\xf0\xee\xdb\xe0\xf1\x97\x5f\x36\x62\x9b\x04\x82\x23\x8c\x52\xf2\xc8\x92\x24\x7b\xe0\xd1\x07\xb6\x2e\x83\x85\x59\x19\x97\x15\x68\xd9\xa4\x14\xb3\xc4\x81\x90\x12\xc9\x12\x07\x8b\x5a\x8c\xad\x6f\x71\xf4\x50\x15\xc5\xf7\x27\x64\x55\xca\xf8\x5c\x8e\x62\xd5\x40\xf8\x93\x9d\x23\xe5\xf8\x1d\x0e\x90\xe5\xe2\xa2\x50\x96\x90\x8a\x43\x49\x2e\x43\x4f\xb8\x4c\xd5\xe6\xf7\xdf\x28\x91\x84\x63\xc3\xd8\xbf\xd5\x32\x0a\x34\x54\x23\x83\x7c\x19\x47\xef\xb2\x5d\x2a\x1c\x02\x3c\x30\xe8\x5e\xf9\xac\x79\x17\xdc\x28\x3c\xcd\xfc\x63\x1e\x81\xf5\x57\x27\x77\x3d\xcd\xd5\x4d\x58\x98\xa5\x00\x32\x13\xc0\xc2\x20\xac\x2f\xfb\xd6\xcc\x59\x34\x45\xa8\x0b\x34\x3d\x44\x35\xb7\x46\x89\x8d\x1c\x9c\xe2\xda\x0c\x13\x06\x29\xe4\x36\xd7\x71\xa1\xdd\xb4\xea\xf6\xe9\xa1\xf5\x67\xa5\x96\x52\xa7\x31\x41\x8b\xbe\x8a\xf4\xed\xb1\x9f\x1a\x07\x4f\x48\x60\x5f\x77\xf4\x3c\xbc\x5e\x4d\x26\xc0\x0f\x7b\x75\x65\x7f\x91\x99\x58\x14\x65\xe9\x87\x43\x2e\x45\xa7\x82\xe7\x52\x1e\xef\x83\xfd\x83\xd1\x91\x70\xdd\xec\x89\x92\x44\x9f\x12\xd6\xba\x22\x5a\xaf\x14\x65\x43\xde\x81\x9a\xe0\x14\xe6\x6f\x2e\xeb\x0e\xfe\x2c\x85\x95\x36\xe0\xf6\xca\x6c\x98\x81\x59\xbc\x2b\x70\x1d\xf2\x55\x16\xee\x4a\x29\x21\x0a\xa8\xa1\xe0\x7b\xc1\x0a\xce\x1c\x52\x64\x0f\x65\xe0\xf8\x0e\xc9\x52\xb3\x66\xd6\xf8\x4c\x04\xc9\x1b\xa7\xec\x81\xd3\x2c\xd0\x03\x04\xa1\xc1\x8d\x5c\x29\xc7\xb0\x82\xc2\x2d\xef\x94\x3f\x28\x3f\x88\x0e\x81\x47\x7d\x7f\xe0\xab\x80\xb7\x24\x83\x8a\xc0\xf6\x1d\x3e\x35\x63\x83\xf2\xbf\xcc\x1e\xd2\xc0\xde\x5c\xd6\xbb\xca\x3b\x7e\xd0\x16\xc2\xdf\x64\x5b\xae\x6d\x73\xdf\xc8\x4d\x13\x73\x53\xf0\xaf\x07\x07\x3f\xf5\x22\x9d\x3d\xa4\xb0\x80\xeb\xd5\x9a\x0e\x5b\xce\x17\xbe\x28\x8a\xec\xe1\xc7\x5c\xa3\x81\x2f\x99\xc3\x09\xe4\x2e\xe5\x7d\xce\xd3\xe3\x11\xfd\x5e\xbc\x2d\x2b\x58\x25\x46\x04\xa2\x59\x5c\xdb\x56\xb2\x6f\xca\x90\xe5\xdc\x2e\x87\xf7\x8b\x4c\xb7\xc9\xae\x90\x3c\xa1\xc2\xe4\x51\xcd\xd2\xb4\x5f\x3b\xd8\x1d\xbc\xea\x32\x66\xef\xd8\xfd\xf9\x64\x72\xc0\x84\x9e\xdc\x8a\xb4\xbe\xd7\x9b\x17\xf1\x96\x15\x07\x39\x1e\x94\xee\x98\x55\xc4\x79\xa3\x00\x1d\x75\x88\xa8\x28\x1f\x8d\xf8\xd3\x02\x09\xd2\x0a\x98\x6a\x89\x89\xa8\x50\xe6\xd6\x1a\x74\x4c\x52\x0e\x22\xf9\x4b\x4c\x0a\x15\x7a\x85\x49\xc6\x41\x07\x28\x05\x76\xf9\xe3\xab\x9f\xa9\xfc\x39\x7f\x8e\xf1\x2c\xe3\x6e\xe8\xb2\x28\x42\xef\xdc\x35\x79\xe7\x6e\xc8\x3b\x37\x24\xef\xdc\x5b\xf2\xce\x65\xe4\x9d\xbb\x95\x18\x5c\xe6\x3e\xc0\x16\x5b\xbf\x60\xf0\xa4\x08\x6f\x7c\x17\xb1\x59\x8f\xf0\x6e\x59\xde\x76\x75\x6e\xa4\x00\x3f\x8d\x5f\x14\x05\x3b\xa0\x14\x93\x8c\x7a\xb3\xec\x2a\x9d\x65\xe3\x31\x2e\x16\xd9\xd2\x52\xc1\x65\x66\x41\xeb\xdb\x0a\x20\x4e\xdb\xbb\x01\xb5\x1d\xd0\x5b\x77\x4e\x16\x12\xaa\x96\x6b\x0a\x2c\x37\x08\x22\xde\xf2\x8f\x6c\x10\xfe\x20\xd3\xd5\x95\x2e\x90\x9c\xfe\xc8\x4a\x2e\x17\xb7\x3e\x43\x67\xcd\xb7\x64\x8e\xe3\xf1\x07\x84\x11\x56\x8c\xfc\xfd\x0a\x29\x29\x93\x25\x21\xcc\xe8\x1f\xe4\x42\xdf\x83\xc1\xe7\xe7\xcf\x0c\x96\x42\xc2\x9c\x4d\x65\xbe\x38\x95\x34\x9d\x96\x6b\xf6\x29\x16\x59\x08\x8f\xbb\xe5\x20\x3c\x6b\xf6\x00\x4a\xf2\x07\x48\xb5\x6d\x88\xf8\xbf\x80\x7b\xf2\xaf\xe1\x86\x23\xec\x2e\xe2\x5e\xf8\x5a\x46\x30\x56\x1a\x1f\x69\xde\x5d\xc9\xbf\xcd\x42\x96\xc8\x8c\xf3\x1f\x5c\xe6\x8a\xdf\xdc\xf5\x8e\x97\x25\xc2\x81\xf3\xe3\x87\xd7\xff\x77\x64\x8a\x66\xf9\x56\x3e\x31\xd4\xb8\x28\x10\xd6\x77\xe3\xad\x51\x64\x38\x8d\xbe\xb2\x0c\x90\xae\x14\x36\x64\x20\x8f\xc3\x3b\x5e\x20\x58\x93\xca\xe0\x51\x64\x11\x3b\x04\xce\x8a\x95\x83\x15\x9b\x84\x2c\xe1\x69\xc4\x8a\x49\xb8\xe1\xe1\x9d\x53\x91\xdb\x9d\x10\xea\x5a\xcf\x26\x7b\x78\x2d\x19\x1f\x1c\xd6\x6c\xb2\x87\x0f\x90\x71\xe8\x55\xa4\x8c\x23\xfe\xc7\xc3\x4d\x1c\x41\x9a\x36\x6a\x71\x7e\xfe\xf9\xe7\x9f\x27\xef\xde\x4d\xbe\xfc\x72\xf0\xcd\x37\xc1\x76\x1b\x94\xa5\x43\x12\xd9\x6e\x92\x3d\xa5\x0e\x58\xc0\xfc\x3d\x4b\x79\x50\xd3\xff\x1b\xdc\xe9\x25\xda\x3d\xce\x97\x4c\xe8\xb4\x66\x54\x57\xad\x2a\x65\x29\x72\x42\xe8\xc3\x4e\xed\x9c\xb6\xbc\x01\x9e\x50\xb9\xe4\x6a\x3d\x3d\xaf\x12\x9b\x79\xa2\x98\x5b\x57\x5e\xfb\x29\x4e\x92\x1f\xd3\xed\xc7\xe4\xbd\xde\x66\x76\xf4\xbb\x08\xce\x7f\x2a\x03\x82\x98\x26\x11\x83\x78\x66\x0f\xc1\x19\x87\xf8\x21\xdc\x21\xfa\x18\x25\x50\x12\x9b\x4b\xbe\xc0\x94\x0f\x3f\xb9\xf5\xb5\x51\x0d\xe1\xc2\xd0\x47\x70\xe8\x93\x6e\x87\x3c\xfe\xae\xde\x03\xb3\xa5\x7f\x49\x34\x7d\x5a\xbc\xec\x8a\x7f\xb2\x48\x2d\xf8\x29\x77\xf5\x4e\xb9\xfd\x8f\x45\x40\x58\x46\x45\x2c\xe4\x18\xfd\x52\x33\xa6\x81\xb2\xb7\x32\x8b\x26\xd4\xd7\x66\x5a\x7d\x78\x6c\xa9\x6f\xad\xce\x73\xd5\x21\xbf\x94\x12\x9f\x94\x01\x1f\x6d\x61\xcc\x1a\xf9\x56\x74\x23\x75\x9d\xcc\x7a\x92\xa5\x4a\x14\x3c\xe5\x5c\xfc\x89\xee\x94\xf3\xd8\xc1\x15\xc9\xd2\x3f\x26\xbb\xe2\x5f\xc8\xb8\x89\x23\xae\x32\x9e\x48\x76\xb5\x7c\xbf\x30\x12\x11\xd1\xa2\xd3\x52\xae\x23\xc9\x2e\xe2\x25\x82\x23\x3d\x2c\x67\xe4\x47\xf1\x9b\xe9\xde\x30\x80\xd1\xe8\xbf\x2a\x26\xc1\x02\x31\x81\xa1\x04\x92\x92\xee\xfa\xd7\x32\xba\xaf\xdf\xeb\x05\xe5\x53\x9d\xbe\xfd\x5d\x9d\xfe\xaf\x52\xae\xc9\x7b\x9b\x3e\x3d\x32\xed\xa5\xfa\x53\x44\x6e\x4e\x89\xec\x97\xeb\x92\xff\x55\x02\x17\x08\x36\xfd\xc2\x56\xc1\x41\xa1\x1e\x67\xe9\x13\xe9\x32\xeb\x8d\xe0\x79\x49\x17\x3e\xf1\x3d\xf2\xdc\x23\xe7\x9e\x47\x5e\x79\x1e\xf1\x5f\x7a\x1e\x39\x7f\xee\x79\xe4\xc5\xd4\xf3\xc8\xd4\x97\xc1\x8b\x73\x19\x7e\xf9\xfc\x42\x02\xbc\x98\x4a\x90\xe7\xde\x85\xfc\xf1\xa7\xde\x2b\x09\x31\xbd\xf0\x5f\x49\x98\x8b\x97\xe7\x2f\x25\xd4\xb9\x7f\x79\xfe\x9c\x9f\x93\xe7\xe7\xde\x8b\x29\x3f\x5f\x12\x56\xaf\x57\x20\xf1\x74\x74\xb4\xf5\x52\xf1\x9b\x14\x7a\xf4\x65\x52\x2a\xe6\xcc\x0d\x3b\x79\x50\x4b\xb0\xc3\x41\x57\x0e\x52\xf2\x94\xd2\xb4\x76\xf3\xb6\xca\x63\x75\x0b\xb6\xb5\xc0\xf4\x2b\x23\x77\x99\x41\x78\x22\x66\x2a\x46\x2f\xf7\xaa\x74\xe8\xd7\xba\xcb\x99\x28\x0e\xb6\x5b\x01\x6a\x37\xf4\x42\x1d\xdc\xbb\xb1\x50\xd7\x75\x96\x08\xcf\x86\x88\x53\x54\xd0\x0c\xce\xe7\x10\xc6\x6e\x94\xa5\x1c\xcf\xc0\x9d\x88\x71\x4f\xa5\x95\x26\x60\x0e\x67\xd5\xfb\x2a\xae\x8d\xb1\x4f\x5b\x28\xc6\xca\x79\x66\x7f\xd3\xc4\xb8\xaa\xd4\x49\x5f\x82\x1f\xe5\xf6\x90\xa4\x34\xa9\x56\x71\xca\x92\xe4\xf0\x28\xeb\xc0\x8f\x47\xd5\x01\x99\xab\x0a\x39\x1e\x4d\x08\xe1\x1a\x32\x5e\x21\x61\xdc\xaa\x55\x95\x2d\x03\xff\x37\xda\x4b\xab\x24\xb1\x2b\x77\xb5\x45\xc9\x11\xfe\x2f\xb7\xe0\xf5\xff\x87\x2d\xf8\xef\x8b\xdb\x4f\x4b\x60\x5c\x55\x77\x48\x6d\x4d\x1c\x44\x69\x11\xe9\xa4\xf2\x5d\x38\x29\x5e\x35\x1c\xa5\x83\xa8\x8e\x37\xae\xc0\x5a\xbc\xa7\x33\xb3\xf4\x7b\xc0\xbd\xf9\xe7\xbd\xb1\x96\x3f\xc2\xc0\x71\xfe\x4b\x32\x58\xca\x61\xf5\x48\x93\x38\xe5\x9d\x33\x49\xb0\x16\x9a\x84\x59\x2a\x8a\x2c\x29\xe5\xa2\x74\xb3\xbb\xdd\x76\x4c\xc7\x6b\xa9\xa2\x7b\xde\xd2\x6b\xd8\xd5\x95\xf8\xa0\x4d\xff\xdf\x88\x7c\x50\xd4\x13\x32\x1f\x74\xf8\xa7\x96\xd6\xf8\xf7\x0b\x7d\x5a\x60\x06\x45\x69\xf0\x15\xef\x19\x45\x6d\x99\xcf\x30\xdf\x8f\x49\x6d\xa7\x2b\x06\xe2\x4f\x70\xed\x27\x4c\x05\xff\x53\xd1\xa4\xaf\x05\x5b\xcb\xc2\xa7\x5a\xf0\xd7\x1e\xe1\xa4\x27\x4b\xcc\xd5\x5e\xc4\x96\x97\x79\x1a\x49\xf1\x87\xd8\x5b\x1b\x3b\xdd\x8e\x27\x40\x68\xd0\x6d\xf4\x8e\x5e\x34\x8d\x1a\x59\xab\xde\x3a\xda\x99\x4c\xfc\x1b\x55\x74\x6f\x93\x9e\x88\xf8\xce\x0f\xbc\x74\x07\xa8\xc4\x8e\x3d\x93\x9a\x39\x6c\xc6\x7a\x6b\x84\xfc\xa7\xac\xa0\x3b\x9a\x6c\xae\xd3\x33\xa4\x94\x70\x51\xbb\x63\xe7\x1f\x63\x53\x70\xd9\xb7\xcd\xf6\x6b\x60\x24\x14\x67\xc7\x15\xb9\x2d\x6f\xea\xc9\xdb\xd7\x4e\x05\xef\x4c\x7c\xf0\x1b\xc2\xa3\xdf\x35\xf5\xed\xc1\x78\xb3\xc9\x1e\x06\xbb\x54\x67\x1f\x48\xae\x35\x50\x56\x8d\xe4\x69\xf3\xd9\x6e\x15\x6e\x64\x6e\xd9\x78\x43\x5f\xca\x36\xda\x51\x99\xd5\xd0\x1a\xfd\xa7\xc6\x33\x3f\x19\xcf\xbf\x87\x7a\x43\xfb\x7f\x40\xb6\xd7\x90\xfd\xaf\x53\x1d\xfd\xde\x2d\x42\xc9\x29\x43\xaf\x5e\x60\x12\xf2\xde\x23\xeb\x84\xdd\xf2\xa4\x04\xc3\x6b\xa5\x21\x6a\xfb\xca\xa4\xa2\xe7\x94\xe5\xd4\x2e\xc7\x29\x43\x96\xb0\xc2\xc1\x01\x9b\x9f\xac\x5d\x8b\x25\x61\x74\xe8\x35\xbb\x8e\x41\x9c\x0e\x04\x76\x7e\xf9\x25\x65\x5b\xfe\xcb\x2f\x8e\x52\x6f\x20\xae\xfd\xfc\xf4\xd8\xf8\xe4\x2c\x75\xd4\x42\x99\x56\x64\xc8\x46\x23\x87\x0c\x9c\x5e\x6b\x20\x05\x69\x0d\xd2\x84\xaf\x79\x1a\x4d\xa0\x9e\x13\x59\xa0\x53\x91\x14\x13\x87\xfe\x3b\xf9\x61\x3a\x39\x15\xf9\xdc\xf9\x9c\x88\x45\xba\x94\x01\x30\x31\x05\x2f\x31\x43\x1f\x7f\xec\x88\xf7\x63\x87\x68\x4f\x17\xbc\xe5\xa2\x88\x43\x43\xb9\x70\x4d\xab\x1d\x8f\x8e\xd3\x37\x54\x3f\x55\x85\xdb\x82\x85\x12\x93\xf3\xe8\x60\xc2\xff\x13\x04\x95\x83\x71\x85\xfa\x0e\xd7\x4e\x07\xc8\x77\x1c\xce\x27\xc8\xee\x7f\xd5\x8e\x55\x1f\x5c\x97\x70\xb4\xaa\x8d\x38\x38\x38\xc3\xac\xad\x62\x6e\xc0\xed\x92\x3a\x7c\xfd\x3d\xf6\x7b\x60\x51\x09\xe7\xba\x1d\xac\xa4\xa0\xda\x47\xa1\x30\xcf\x02\x1d\x8f\xc2\xbc\x06\x64\xee\x23\x19\xf9\x3e\xdc\xb0\x02\xfc\xc3\xcd\x0a\x9a\x36\xfa\x1d\x8e\xe7\x1f\x35\xaf\x86\xa3\xec\x0a\xe3\xc0\xa3\xb4\x31\x34\xc9\xfa\x0c\x4b\xc0\xb3\x8b\xe1\x15\x94\x52\x3e\x17\xc1\xd3\xa6\x21\xe9\x12\xd7\x86\x07\x7d\x30\x29\x26\x0b\xbe\xd4\x97\xe0\x7c\xab\xf0\xd1\xa8\x45\xfe\x68\x84\x0a\xba\x58\xe2\x96\xd1\x54\xb7\xfd\x0b\xe3\x4d\x1b\xf8\xae\xea\x81\x0f\xd9\x7a\x0d\x7e\xa1\x39\xfe\xbf\xb5\x31\xb1\xb9\xf8\x26\xdb\x25\xd1\x0f\xbc\xe4\x02\xee\xdc\x35\x9f\x6d\x11\xa1\x05\x67\x8e\xe6\x9f\xa8\xd5\x62\xf9\xaf\xa9\x6c\x4f\xad\x09\xea\x41\x01\xba\xea\x2c\xfd\x16\xa6\xf5\xbb\x6c\x57\xf2\xf7\x3b\x70\xf2\xed\x66\xe9\x37\xd9\x3d\x97\x7b\x57\xcb\xc2\xa0\x3b\x12\x13\x6a\xae\x92\x5c\xfb\xa3\x91\x1c\x2a\xf5\x33\xbb\x9f\xe0\x7e\x8f\x27\x3b\x13\xc5\x5a\xe4\x0a\x6a\xe8\x08\x92\x79\x1a\xa8\x0d\xb5\x9c\x46\xbd\xc6\x3b\x60\xdb\x0a\x26\x53\xb5\xd3\x79\xb8\x02\xad\x56\xb3\x4f\x52\xa1\xcf\xeb\xb5\x9f\xf8\xc0\xae\x81\xdc\xd7\xd6\xe3\x2d\xc5\x73\x3f\x70\x2f\xab\xe6\x64\xb6\xae\xf7\x9c\xf7\x4c\x70\x94\x62\x4d\x79\x5d\x9f\x7b\x5e\x04\xc9\xbc\xb0\x52\x60\x15\x23\xa7\xdc\x35\x16\xbc\x5f\x74\x7a\x9a\x21\x97\x70\xfa\xea\x3c\x65\x8c\x54\xf6\x6f\x21\x42\x4e\x1e\x55\x43\x05\xa1\x39\x16\x02\x11\xa2\x82\xcb\x12\x4d\xcf\xfe\x9e\x5e\xcc\x93\x89\x3f\xd8\x8a\x89\x3f\x00\x07\xad\xdb\x9d\xe0\x51\x4d\xd0\x2a\x4b\xc1\x27\x6f\xe0\x9f\x57\x70\x21\x45\xb6\xe1\x40\x0d\xa7\x81\x7e\x48\x66\x00\x77\x82\xe2\x35\x13\x59\xe1\xe6\x09\x13\x92\xa2\xa6\x0b\x9c\x77\x2c\x74\xf0\xdc\x79\xfd\xee\x4b\x27\x70\x5e\x7f\xf8\xe1\x5b\x87\x38\x83\xf1\x20\x54\xb8\x04\x4c\xeb\xc1\x76\x97\x88\x38\x4f\xb8\x46\xea\xd8\xc2\xd0\xf7\xbb\x82\x37\x02\x51\x73\xa1\x65\xcb\xff\x37\xde\x68\x01\x0f\x2f\xed\x45\xb6\xf6\x7d\x4b\x8d\x57\x3d\x47\x7e\x3b\x33\x25\x03\xd6\x6f\x8c\xa9\x6a\x8b\x6b\xea\xf3\xe9\x85\x86\x44\xfc\x0c\xbe\x5c\x91\x7d\x25\x05\x4e\x34\xc5\x63\xe7\x67\xa7\x01\xf4\x5b\x80\x7e\x1b\xf0\xef\x0d\xa0\xff\xd2\x06\xf4\x5f\xb6\x01\xdf\x58\x80\x97\x2d\xc0\xcb\x36\xe0\xf7\x16\xe0\xb4\x05\x38\x6d\x03\x7e\x68\x00\x5f\xd9\x70\xaf\xda\x60\x5f\x37\x60\xcf\x6d\xb0\xe7\x6d\xb0\x77\x0d\xd8\xb9\x0d\x76\xde\x06\xbb\xab\xc1\x1a\xf7\x85\x4d\xfa\x4c\x39\xcf\x6c\x5e\x05\xea\x26\x8a\x2b\x9f\x4f\xa6\xad\x02\x26\xdd\xb6\x3f\x38\x0d\xa4\xd7\x86\xec\x34\xfe\x6f\x0d\xa4\xff\xa2\x05\xd9\x6d\x7d\x66\x41\x5e\xb4\x21\x3b\xcd\xbf\xb2\x20\xfd\x36\x64\xa7\xfd\xf3\x06\xb2\xd5\xf3\x93\x4e\x07\xa4\x0d\x5c\xab\xe3\x27\x9d\x1e\xf8\xc7\xfe\xf6\x52\x83\xba\x9e\x55\xb4\xeb\x79\x9d\x7a\x6f\x35\xd8\x13\x9d\xa0\xd4\x93\xfa\xcd\x8c\x50\x2e\xbf\xe9\xe7\x62\xa0\xd8\xe0\x80\x0d\x94\x81\x1d\x38\x26\x1e\xc4\xe5\x80\x0d\x6e\x77\x6b\x07\x57\xe4\xff\x70\xf7\xae\xcd\x6d\xdb\xd8\xe3\xf0\xfb\xe7\x53\xd0\xe8\xae\x4c\xd4\x90\x2c\xd9\x49\xdb\xd0\x61\xf4\x24\x71\xd2\xa6\xeb\x5c\xd6\x4e\x9a\x6d\x55\xfd\x34\x90\x08\x49\x4c\x28\x52\x25\xa1\xd8\xae\xcc\xef\xfe\x1f\x5c\x09\x92\xa0\x24\x27\x4e\xb7\xb3\xed\x4c\x2c\x92\xb8\xe3\xe0\xe0\xdc\xcf\x9c\xd8\x53\x2d\xfa\x69\x07\x97\x92\x99\x10\x46\x82\xc6\x9d\x14\x85\x7e\xdc\x99\xa1\xc8\x8f\x3b\x63\x9e\x37\x48\x45\xda\x16\x1e\xc7\xda\xa5\x2f\x41\x8c\x97\xd1\xee\x7c\x61\xf9\x31\x2a\x3f\x52\x04\x20\x10\xc6\x36\x99\x7f\x74\xff\xfe\xb7\x6e\xaf\x4d\x15\xcf\xc1\x1a\x2e\xda\x35\xc2\x67\x67\x07\xf4\xdb\x04\x22\x80\x8a\x86\x2a\x5f\xc3\x8d\x5f\x23\xc8\xbb\xcd\x51\x50\x4d\x49\x52\x25\x62\x4d\xa2\xb0\x44\xe7\xdf\xb5\x67\xdd\x82\xfc\x2d\x5d\xeb\xd8\xb0\xfe\x02\xdf\x3a\x77\x9d\x23\xed\x44\x33\x27\xae\x84\x40\x14\x33\xf2\xbd\xdf\x39\xf6\x7a\x88\x42\x4e\x2d\x4e\xed\x3b\xb6\x9e\xa5\x61\xe0\xad\x75\xd6\x55\x21\x34\x96\x99\x50\xd9\x43\x29\x47\x1f\x7b\x51\x4b\x22\xea\xf5\xba\xdd\x1c\x09\x42\x44\x98\xa1\x78\x7b\xbd\x1c\xc9\xa0\x2a\xdc\xcd\x5e\x46\x44\xe1\x56\x29\xe1\xe4\x63\xa6\x4c\x54\x5e\x86\x71\x92\xea\x37\xac\xd0\x13\x9c\x11\x0f\x2c\x4a\x51\x15\x75\x5c\x16\xda\xd7\x11\x0d\x35\x5d\x78\xad\x62\xb7\x18\x61\x80\xbc\x25\xc9\x51\xd5\xd5\x1f\x5c\x5d\x17\x09\x34\xc6\xe3\x31\xe3\xa1\x93\x84\x51\x0b\x6a\xd0\x5d\x34\xc9\x32\xee\x2b\xab\x68\x52\x59\x80\xd5\x13\xee\xce\xd5\x98\xf2\x8a\xdb\x4a\x55\x36\xbc\x90\xd1\x8f\x42\x92\x12\xf9\x89\xdc\x8d\xcc\x17\x26\x1d\x8a\x1c\xa5\x37\x37\x6e\xe6\x67\x9d\x15\x9d\xb8\x10\xa2\xfd\xdf\x63\xc7\xf8\xcf\x48\x30\x22\x4c\x42\x1e\xed\xab\xe3\x98\x49\xd1\x8c\x6b\x33\xde\x71\x7e\x03\x10\xed\x8b\x9c\x12\xf5\x16\x2b\xaf\x1c\xe7\x21\x23\x26\x75\x3f\x84\xe2\x30\x52\x64\xa4\xc3\xa9\x36\x1f\x14\x64\x64\x5b\x2c\x9c\xb3\x6f\xe0\xa3\x7d\xe0\x1c\xda\x5b\x7d\x54\x14\x0b\x4d\x31\x85\x10\x9a\x20\xe0\x39\xda\xdb\x42\x17\x8c\xd9\xd0\xe5\xdb\x87\x87\xbc\x95\xad\x93\x30\x57\x4a\x2c\x3a\x27\x40\x41\x6d\x54\xc5\x78\x4c\xea\x2e\xac\x3a\x04\x68\x66\xbc\x24\x91\x22\xfd\x7d\xb3\xa3\xc5\x98\xf5\xa0\x26\xa0\xb7\x86\xa0\xc2\x65\xc4\x33\x10\xf5\x29\x71\x65\x2e\x3f\x95\xed\xc3\x03\x20\x87\x50\x87\x4d\x45\xa0\x32\xa9\xda\x06\x0a\x84\xcb\x25\xcc\x6f\xe7\x64\x41\xbc\xbd\x1e\x8f\x4a\x91\x09\xe3\xae\x52\x38\x67\x22\xbf\xac\x8b\xb0\x15\xa4\xdf\xf3\x8e\x10\x0f\xac\xce\x6a\x4e\xc3\x28\xf2\x48\x8e\x8a\x0c\xe5\x5e\x37\xcf\x73\x34\xb3\x8b\x05\x79\x48\x87\x37\x38\xc5\x0b\x21\x1b\x0c\x04\xd7\x58\x2f\x3a\x00\xdf\x90\x60\x72\x74\xaf\x0b\x10\xf8\x06\x4f\x83\x1f\xa6\x3f\xb0\x5f\x93\xf1\xbd\xf1\xbd\x31\xfb\x75\x2f\xc0\xdf\xdf\x0b\xd8\xaf\x07\xf7\xee\x75\x49\x00\x86\x9c\x17\x95\xc2\x9b\xd8\xef\x9e\xe8\x5b\x3a\x25\xd9\x2a\xa2\xd5\xdd\x41\x49\x91\x1b\xed\x9f\xd8\xf7\xfd\x6e\xab\x95\x08\xba\xfa\x91\xdf\xed\xc7\x0f\x3b\xf7\xfb\xed\xb8\xdd\x39\xf2\xba\x5e\x3b\x86\xa8\x7a\x21\xd3\x41\xf2\x4f\x3c\xbc\xb9\x01\xdf\x7c\xf7\xdd\x77\x00\x96\x32\x8a\xf5\x0e\x44\xa8\x10\x17\xb3\x5b\x9b\xf2\x73\xcc\x5d\x90\xb9\x0a\x82\x1d\x65\xa5\xb3\xc8\xb8\xe6\x53\x49\xcd\xb5\x7f\x63\xd3\x98\x4b\x71\xff\xa5\x15\x5b\xc6\x7d\x4b\x84\x3c\x0f\x25\xfe\x60\xa8\xe2\x57\x9e\xac\x1e\xfa\xd1\xc9\xea\xc0\xcf\x54\xcc\x66\x3c\x98\x0c\x4f\x34\x2b\x36\x69\xb5\x16\x83\xee\xf0\xe1\xea\x20\x3b\xec\x75\xbb\x7d\x37\x11\x92\xd2\x41\x8f\x1c\x7f\xcb\xbe\xa0\x4f\xc4\x5d\x0c\x7a\x43\x38\x84\x68\x72\x70\x00\x3d\xb3\xc0\x8a\x4b\xe0\x86\xea\xfa\x50\xac\x9f\xd4\x57\xa4\xfd\xd4\x5b\xe7\x2a\x1d\xcc\x80\x0e\xcd\x1c\x7b\x6c\xd7\xbd\x44\xba\xbe\x50\x11\x50\xfc\x93\x0d\x60\xf8\x4a\x3f\x8f\x12\x76\x22\x0a\x11\x68\xf6\x0a\xbf\x72\x29\xec\xb3\xae\x3c\x9a\x9f\x60\xb7\xf7\xe0\x58\xd8\x19\xdf\x13\x7f\xee\x8b\x3f\xdf\x89\x3f\xdf\xcb\xd8\x7a\x04\x5d\xdf\xbd\x98\x30\x29\x8b\x09\x23\xbf\x7b\x12\x3d\x8c\x4f\xa2\x83\x03\x98\x0c\x22\x53\x4c\x18\xdd\x9d\x98\x30\xe1\x62\x42\x2e\x77\x69\xb0\x22\xe6\xdf\xa4\xfd\x00\x37\x64\x99\xbe\x38\xf5\xbb\xdc\xc5\x4e\x08\x5d\x2e\x8a\x1c\xbf\x84\xa7\xd4\xd0\xfe\x32\x5a\x9c\xe3\xcd\x88\x32\x05\x10\x79\x51\x4a\xf9\x36\xb4\xc9\x6e\x65\x45\x1e\x75\x5b\x2d\x15\x5a\xd9\x98\x7d\xd7\x24\xb8\xba\x43\x4f\x89\x23\x0b\x89\x22\xd6\x13\x52\x6a\x26\x9e\xbf\x4d\x5a\x54\xbe\x89\x12\x6a\x4e\x8d\x1d\x47\x9e\xce\x23\x65\x97\x61\xad\x2a\x44\x04\x4d\xf5\xf0\x95\xfa\x03\xd9\x6c\x7a\x21\x94\x86\xc9\xba\x1f\x73\x92\x2f\x59\x23\xa2\x4f\xd8\x6a\xa9\x9f\xaa\xb4\x0b\xb7\x8a\x64\x51\x4d\x02\x6b\x4e\x99\x4f\xa1\xe7\xfb\x7e\xc3\xce\x68\x71\x65\xd3\xf7\xc2\xc6\x0e\xf6\x63\x8e\x2f\x02\xe2\x52\x54\x99\x38\x84\x9e\x4d\x5a\x60\xa4\x4c\x21\x45\x4b\x3c\x33\x0a\x6c\x84\x15\x52\x9d\x32\x17\xed\x6d\x14\x42\x0b\x23\xa2\xe9\x8b\xd3\x56\x6b\x82\xe3\x09\x89\x1e\xc7\xe1\x82\xc7\x15\x79\x9e\x62\x46\xdc\x8a\xaf\x50\x43\x6a\x4a\xfe\x58\x91\x8c\x56\x8a\xb9\x65\xb3\xee\x28\xa1\x17\x84\x3e\x8e\x83\xd3\x14\x5f\xba\xb5\xd5\x55\x8b\x41\xea\x8b\x21\x8d\x7e\xd5\x34\xca\x02\x4b\x73\xf7\xb7\x8d\xb6\x32\x06\x03\x1a\xce\x2b\xa9\x16\xeb\x90\xc4\xb7\x5e\x03\x54\x91\x77\xe5\x2b\x89\x91\x0b\x0b\x63\x95\xcb\x4d\x48\x70\x19\x5c\xf2\x6b\x38\x15\x00\xca\xcf\x49\xe2\xe3\xaa\xd1\x31\x2b\xb3\xe7\xfb\x71\xdf\x95\x02\xe5\x06\x3c\x52\x11\x37\x97\xb0\x49\xd1\x2d\xcc\xa5\xa9\x67\x94\x50\x08\x3d\xa2\x7a\x66\x57\x47\x4d\x64\xdd\xdc\x86\x09\x11\x5c\x06\xb2\xf1\x14\xf5\xa9\x58\x74\x9e\x97\x96\xa7\x02\xaa\xc1\x4c\xed\x8c\x10\x33\xad\xd0\xb6\x33\x28\x4e\x8e\x88\x3d\x56\x31\xb4\x4e\x54\xc2\x4e\x3e\x00\xab\x75\xf8\x46\xf7\xc2\xa6\x7a\x3b\x58\xaa\x97\x30\xa8\x6e\xa1\x0c\xba\x8d\x22\xff\xcf\x44\xef\x86\x98\xbf\x40\x77\x2f\xe5\xee\xe9\x43\x60\x3e\xca\x18\xb5\xd8\x55\x69\x3c\x15\xa6\xe5\x07\xeb\x56\x2a\x8a\x5a\xc7\xb7\x55\x1f\x58\xe5\xe5\x19\xb7\x53\x10\xa7\x5b\x29\xc8\x51\x12\x8b\x83\x2e\x26\x6c\x1e\x7d\x94\x7d\x0c\x97\xaf\x63\xbe\xa9\x5c\x0e\x6e\x13\xc1\x37\x68\x2f\xf8\xc8\x01\x4a\x95\xd5\x86\xba\xdd\xec\x51\xbe\x08\x5a\x1b\x0a\x1f\xae\x76\x68\x3e\xa2\x8a\x6e\x29\xce\x14\x41\x52\x3b\x63\xce\xc1\xc0\xec\xa8\xaa\xd1\x31\xcb\x55\x74\x3d\x65\xb5\x58\xbd\x41\x71\x3b\xe6\xcd\x72\x74\x74\x65\x67\x1c\x38\x86\xc2\xbe\xc6\x13\x3c\x0a\x42\xd9\xb0\x87\x5b\x1d\x64\xf4\xdf\x05\x8b\xa1\xf6\x9d\xc1\x1d\xec\x0b\xfc\x20\x09\xeb\x46\xdf\x64\x33\x8c\x88\x90\x19\xe0\xf4\x1a\xe4\x08\x3c\x5b\x2c\xe9\xb5\xc3\x19\x18\x47\x34\xc2\x98\xaf\x05\xa6\x69\x78\x05\xf6\x8a\xa6\xdf\x5e\x2f\xc9\xae\xe1\x49\xc0\xbf\x8d\xe6\x9c\x30\x73\x92\xa9\x73\xc9\x98\x3e\x87\x5e\x2f\x89\xb3\x0f\x90\xd9\x2a\x02\xfb\xc8\x11\x3b\xed\x8c\x89\xb3\x2f\xfa\xde\x77\x5c\x6e\xc2\xe4\x7c\x22\x13\x9a\xa4\xb0\x03\x6c\xaa\xf3\x6b\x82\xd6\x9c\xec\xa6\x48\xae\xa0\x87\xcb\x06\x53\x31\x32\x98\x33\x2f\xb5\x7a\xb7\x9a\x93\xe0\x22\x1c\x36\x87\x57\x89\xc3\x5a\xe6\x4b\x13\x92\xc0\xb9\x26\x94\xf1\x98\xcf\x88\x8d\x24\x20\x5a\x0f\x44\xee\xf5\x49\xe1\x4f\x4f\xee\x41\xc6\x46\x7e\x6c\xde\xfd\x93\x42\xdf\xa0\x25\xdd\x5f\x32\x42\xb3\x3d\xb9\xc8\x37\x37\x16\x18\xd9\xad\xaf\xad\xa0\x72\x62\xa4\x1a\xd8\xeb\x71\xa5\x68\xa9\x9b\x87\x7e\x8f\x1c\x17\x99\xc7\x8b\x5d\x97\xbe\xb2\x62\x77\x81\x17\xfb\x2e\xf6\x9f\x11\x5d\xa4\x26\x75\x40\x1b\x3d\xae\x69\x2a\x0d\x5e\xa8\x55\x25\x48\x83\x46\x53\x12\x43\xbd\xa7\xb9\x4d\xa9\xe5\x4b\xed\xd6\x4d\x45\x6b\x92\x53\x65\xac\x24\xbf\x21\xe5\x9c\xf7\x6a\x8b\x5d\xca\xb5\x23\x8e\xd6\x6e\x33\x2e\x73\xc4\x8d\xe1\xff\xd8\x10\x0e\x80\xf3\xff\x83\x03\x32\xe8\x0e\x0b\xc1\xc9\xef\x31\xd8\x64\x62\xc3\x57\x4d\x2a\x1f\x79\xd4\x85\x8b\x25\x9e\x08\x43\x53\x90\xa3\xbf\x7c\x39\xf1\x2d\x56\x51\x5a\x50\x79\xb8\xd1\x0a\x4a\x83\x04\xe8\xda\xf5\xc4\xba\x5f\x6d\x8e\xb5\xb1\x94\x1a\x0c\xdf\xed\x92\xcb\xb4\xcc\x05\x7b\x47\x63\x11\x8d\x7d\xc6\x58\x54\x3e\xfe\x9d\x0e\x76\x81\xab\xdf\xc5\xd9\x6a\xb9\x4c\x52\x4a\x02\x85\xb1\x39\xb4\x71\x5c\x0d\x8c\x14\x46\xdb\xcd\x96\x62\x9b\x12\xdc\xda\xeb\xd6\xc8\x54\xef\x71\x1a\x87\xf1\x4c\xc4\xa6\x7a\x4e\xe8\x64\x4e\x02\xa7\xb8\x37\xd4\x75\x0f\x1c\x01\x63\x19\x72\x92\x38\xba\x76\x64\xbc\xaa\x30\x9e\x39\xd3\x30\xcd\x28\x8f\x58\xa5\xca\x76\x00\x44\x7b\xe9\xb6\x31\x9a\x28\x6f\xeb\x30\x5f\x25\x34\x64\x27\x86\x8d\xf2\x62\x9e\x5c\xb2\x8e\x17\x49\x4a\x1c\x3a\xc7\xb1\x03\x50\x8f\x1c\x23\xa0\x75\xf7\x6c\x21\x59\x89\x64\x3a\x75\xf8\x21\x91\x8a\x34\xca\xc7\x9b\xa4\xce\x92\xa4\xfc\x4d\x3c\x21\x4e\x4a\x70\x96\xc4\x59\xc7\x0a\x0a\x23\x4e\xb3\x71\xea\x66\xaf\x5b\x98\x92\x9a\x76\x12\xec\x6a\x68\x53\x3c\x8e\x48\x03\xc8\x8d\x93\xe0\xba\x38\x79\x30\x47\x97\xd2\xc7\xfd\x07\x88\xac\xb6\x8f\x09\x16\xc2\x3d\x86\x90\x0a\xe1\x1e\x27\x59\xc4\xae\x08\x62\xe8\x36\x64\x29\xbf\x4c\xda\x8c\xae\xcd\x76\x35\xe6\x98\x46\x09\xa6\xed\x54\x5d\x82\x67\x09\x16\x56\xcd\x1e\x03\x0f\x04\x16\x99\xf3\xfb\xea\xa8\xdb\x3d\x72\x0a\xab\x5d\x1e\xb8\x0c\x01\xf3\x0b\x03\x73\x29\x14\x76\x00\xe2\xd1\xb3\x8d\xe0\x9d\xff\x93\xb6\x0e\x7b\x65\xb7\x10\x1e\x78\xd8\x97\x8c\x01\x22\x9d\xb7\xac\x0d\x1f\x48\x88\x71\xc7\xe4\xe6\xc6\x1d\x13\x7f\x9d\xcb\xf4\x18\x17\xc4\x5f\xf3\xd8\x1c\x63\x59\x16\x91\xab\x65\xea\x01\x20\x6d\xcf\xb9\xcf\x98\x94\xff\x8a\x90\xd1\x05\x8c\x88\x67\x45\xa1\xed\xf5\x72\xf4\xf6\x2f\x8e\x5f\x86\xc7\x49\x4a\x5f\xc4\xcf\x39\xf1\xc4\xf1\x89\x0a\x46\x60\x06\x8d\xb1\x79\xee\x0b\xa6\x4b\x87\xc0\x10\xf1\xaa\xa8\x7f\xca\xde\xc6\xc9\xa5\x0a\x85\x5e\x44\x07\x2b\x9a\x13\x81\xc1\xe4\x17\x99\xaa\x82\x35\xb4\xe7\xfb\x44\x88\xbe\x74\x30\xf4\x35\x5f\x4c\x92\x43\x04\xb8\x3a\x05\xae\xb1\x65\xcc\x5c\x72\x58\x7f\xcd\x05\x88\x0d\x33\x54\x71\xb1\xb9\x38\x97\x15\x79\x2a\x9c\x5b\x22\x92\x9e\x58\x2b\xd5\x8d\xb2\x63\x51\xcc\x55\xf1\xd1\xa4\xf8\x42\xc6\x95\xe1\x4c\xe0\x49\xe1\xc3\x35\x23\x54\xba\x0f\x98\x71\x1b\x0e\x19\x26\x0c\xfd\xa4\x5d\x5d\x0f\xe1\xa7\x50\x84\xf2\xd2\xef\x35\xf0\xdc\xdc\xe8\x94\x00\x46\x2c\x75\x6b\x3b\x87\x47\xf7\xbb\x10\xf5\x20\xca\xf8\x7c\xdf\x9d\x9f\x89\x08\x5d\x82\xfa\x77\x65\xe8\x6d\x82\x02\x12\xac\x96\x9e\x21\x35\x3d\x65\x2f\xa2\x50\x06\x05\x36\x64\xfa\x4b\x9c\xd2\x10\x47\x23\x1d\x8e\x72\x87\x4a\x39\x3c\x31\x62\x8d\x9a\x83\xa4\x05\xe1\x2b\xce\x9d\x97\xfa\xe0\x10\x2f\xc3\xc3\x4f\xbd\x43\x3e\xb8\x91\xf4\x38\xc9\x64\xce\x7a\x57\xc4\x78\x05\x28\x34\x3a\x80\xc6\x67\x61\x0e\xd8\xf0\x31\xa3\x64\x09\x50\x64\x7e\x35\x09\x17\x71\xd6\x6b\x63\x30\x7b\x97\xfe\x22\x96\x16\x14\xb9\x51\x8d\x5b\xba\xff\x22\xfe\x84\xa3\x30\x70\x96\x38\x26\x91\xe0\xf8\xc0\xfe\x81\x6d\x29\x0e\xf6\xc1\x3e\xcc\x45\x6c\xd5\x22\x6a\xb3\x2a\x59\x04\x3a\xd7\x7a\xc2\x14\x81\x7e\xa1\x35\xcc\x20\xba\x45\x34\x56\x94\x85\xb3\x18\x47\x5e\xdc\x11\x3f\x72\xd8\xa1\x73\x12\xdb\xe9\x69\x19\x56\x95\x51\xd2\xf5\x42\xe1\xd4\x05\xd9\x6a\x32\x21\x59\x26\xe2\xf1\x89\x40\xad\xb0\xba\x12\x44\x84\x16\xbd\xb9\x01\xa1\x5c\x12\x05\x45\xce\xcf\x17\xaf\x5f\x01\x75\x34\x79\xb6\x03\xc1\x0d\x16\xf9\x16\xb8\x64\x20\xf3\x53\x93\x51\x9e\xe8\xc7\x13\x45\xb3\xfa\xbe\x9f\xf5\x63\xbf\xe7\x4d\x5a\xad\x89\x21\xcb\x72\x63\x5f\x3d\xf2\x64\x02\xfa\xd4\x8a\x60\xaa\x1c\xf7\x71\xc6\x59\xf6\x54\x11\x31\x70\x4d\xa9\xd0\xeb\x79\xa1\xc6\xea\x89\x89\xd2\xa3\x1c\xf1\x7b\xdb\x5b\x2b\xc2\xc0\x2b\x70\x62\x9b\x96\x8a\x22\x93\x3e\xf0\xe2\x1c\x69\xdc\xd1\xcb\x37\xe0\xae\x9c\xab\x8b\x68\xc9\x36\x84\xc0\x35\xe0\x78\x8c\xaf\xb1\x58\xff\x18\x2f\x14\x3e\x2d\xcd\x52\xc4\x37\x75\x04\x86\x67\x34\x96\x38\xff\x0e\x38\x20\x2a\x8c\x69\x69\x24\x65\xf1\x79\x35\xce\x63\xc5\x7b\xd8\xe8\xac\x74\x37\x30\x24\x5e\x34\x62\x38\xb0\xd5\xeb\x6b\xe4\x2f\x6e\x50\x59\xb1\x40\xa0\x36\x5c\x2c\x58\xfb\xda\xad\x22\x2a\xf0\xa8\x18\x86\x4f\x74\xf9\x6b\x75\x54\xb5\x5e\x6a\xe3\x52\x1b\x6f\x9b\x92\xde\xde\x4d\xf3\x2a\x60\xc0\xd2\x04\x83\xe9\xc6\x45\xe5\xc0\x29\x80\x00\x95\x1b\xe5\x44\x88\xa5\x39\xe5\x2b\xb4\x61\x3c\x8a\x02\x91\xb5\xa5\x66\x50\x77\x55\x3b\x05\xe2\xa5\x86\x10\x64\x1c\x1e\x01\xfb\x42\x0c\x50\xd9\xff\xd2\x5d\xff\x55\xd5\x1e\xba\xab\x92\xee\x43\xbf\x8c\x7d\xac\x35\xf2\xa9\x72\xaf\x16\x8e\xd6\x05\xf9\x1e\xfa\x98\x23\xe3\x13\xaa\xca\xfa\x22\x7e\x8a\x28\xee\x0b\xcd\x85\x51\xc3\x17\x52\x7f\x5e\xc9\xf7\xfd\xf0\xe6\x86\x77\x6d\xd2\x51\x9f\xa3\x09\x68\xa8\x5f\x6c\x5f\xf3\x32\x7c\x55\xdb\xb9\xd7\x7f\x4f\xdb\xb9\xd7\x7f\x9d\xed\x9c\x05\xb2\xd6\x39\x62\x3c\x8c\xe9\x39\x2a\x77\x49\x9c\xc5\xe0\x8b\x63\x39\x2e\xe5\x51\x64\x8c\x73\xec\x53\x29\x4b\x12\x89\xca\xd2\x22\xf5\xdb\x6d\x98\x4d\x4e\x90\x58\xd9\xcc\x3f\x9a\xf3\x4a\x3c\x69\xfe\x84\x89\x8a\x7c\x67\x68\x67\x2a\x8c\x42\x3d\x5c\xb0\xa9\x3d\xa8\x7e\x43\xe6\x21\xf0\x6a\xc7\x42\xa3\x22\xa3\x3f\xf9\x0a\xd9\x42\xe0\x7a\x6b\x29\x89\xff\x29\x64\xd4\xd1\x35\xf0\x30\x02\x2f\xf9\x42\x3a\x7c\x25\x81\x17\xe7\x0d\x4e\xdd\xbb\x2c\x89\x39\x6d\x86\x19\x77\x16\xff\x54\x2b\x7e\xfe\x10\x1a\x12\xa9\x50\x3c\x16\x86\x5f\xb7\xcf\x21\x62\x06\x67\xe2\xf4\x31\xc3\x80\x1c\xd9\xf5\x81\x70\x40\xe5\x79\x01\x37\xf9\xb0\x56\x2f\x39\x57\xb1\xcc\xec\x4c\x00\xfe\xeb\xf3\xf2\x9b\xd4\x14\x7a\x77\x33\x36\x2e\x0a\xe0\x63\x13\xd9\x88\x20\x44\x7b\x75\x10\x6b\xb5\xf6\xea\x1b\x6e\xfa\x3d\xb1\x1b\xd1\x06\x02\x97\x04\x55\x8b\x59\x67\xff\x8e\x3b\xeb\xf3\x69\xbc\xc5\x63\x4f\x4c\xcc\xb6\x85\xbf\xc8\x2d\x7e\x11\xa8\x3d\xca\x51\x75\xb3\x6c\x03\xd9\x29\x42\x7e\x0d\x6d\xf0\x86\x8b\x98\x10\xb6\x01\x69\xf7\xfd\xf4\x73\xbc\xf6\x53\xab\xb3\x3e\xc3\x2c\x58\xc8\x44\x1a\x7c\xf6\x2d\xb4\x9c\x5d\xc4\xfe\x51\x6b\xc9\x8a\x6d\x60\xcf\x0d\x47\xdf\x5c\x5e\xa5\x37\x2e\xe0\xad\x7e\x1b\x7c\xd1\x7a\x47\x04\xad\xcb\xcb\xa0\x88\xce\xdb\xae\x65\x41\x6b\xa6\x26\x7d\xa3\x68\xbe\xb4\xb0\x02\x31\xc3\x4a\xd4\x97\xf2\x5c\x50\x49\xe5\x50\x08\x8d\x2b\x8e\xea\x41\x02\x2c\x4d\x16\xc3\xa9\x7a\xb6\xd7\x0b\xab\x2f\x56\xad\xf8\x55\xc3\x56\x5a\xa6\xb9\xd3\xaa\x55\x29\x5e\xf3\xd8\x97\x3f\x71\xa7\xf9\x3b\xc4\xd3\xd5\x20\x66\xa6\x5c\x17\x69\x55\x67\xfc\xb1\x12\x7d\x43\x85\x85\x58\x24\x9f\xc8\x1b\x76\xa1\x9b\x81\x14\xc0\x39\x7f\xef\xf0\x0f\xa0\xc9\xcb\xbf\x10\xf4\x7e\xf8\x9f\x14\xf4\xb2\x71\x3d\xb5\x30\x8f\x60\x54\x71\x77\xc1\x71\x90\x2c\x5c\x58\x08\x77\x8e\xbf\x83\x2a\x01\xda\x11\x7a\x00\x61\x8e\xde\x6c\x56\x77\x77\x73\xf4\xd2\x5a\x42\xda\xcb\x12\xc3\xaa\x86\xe4\xe8\xd4\xa6\x07\x5f\x83\x16\xf0\x40\x0b\x2f\x96\x27\x00\x81\x87\xec\x77\x44\xd9\xcf\x47\xec\xe7\x8c\xfd\xdc\x07\xfb\x1e\x68\xfd\xb1\x4a\xf8\xfb\x7d\xf6\xfe\x9b\xe3\x07\xec\xf7\x21\xff\x7d\x75\xf4\xfc\x04\xe4\x8a\x16\x94\x93\x21\xb0\x48\x64\x30\x68\x3d\x7c\x04\xf6\x0f\x87\x87\x33\x64\x93\xf7\xd0\x01\x19\x72\x73\xdd\x57\x5b\x7d\x01\xa5\xdc\x45\x7a\x03\xba\xa4\x1c\x61\xe0\x00\xac\x01\xc2\xfe\x60\x58\x0e\xdf\x40\x6a\xe1\x1b\xa4\xae\x30\x3e\xd8\xf7\xc1\xfe\x01\x19\xc4\x43\x2e\x0c\xd3\xce\x0f\x07\x3e\x96\x3a\x5c\xe4\xb0\x66\x73\x90\xa3\x11\xf1\xd7\xd7\x9e\x8a\xac\x76\xe9\xc9\x10\x6c\x81\x27\x02\xb3\xcd\x85\x08\x7e\xe1\x7d\xd7\x45\x99\x67\xa6\xb1\xe5\x41\xd5\xe4\x6a\xc7\xe4\xd2\x39\x27\xb3\x67\x57\x4b\x17\xfc\x9f\x3b\xe8\xb6\x1f\x0c\x0f\xa0\x3b\xb8\xbe\x0c\xe6\x8b\x6c\x78\x00\xff\x01\x20\x57\xf0\x2c\xb8\xdc\x85\x42\xe1\x8c\x75\x73\x73\xbc\xe7\x6b\x3f\x66\x68\x6c\xb2\x94\x61\xe9\xd0\x2a\x78\xd0\x1b\xf2\xfc\x8b\x83\x23\x1d\x33\x3f\xfe\x76\x44\x06\xe9\xb0\xc8\x1f\xc6\x43\xac\x19\xac\x5a\x17\x95\x4f\xdf\x88\x9d\x9b\x87\xb8\xc6\xb4\xc5\x3e\xe3\xaf\xb8\xb8\xec\x9f\x23\xb6\x68\xbe\xef\x77\xb5\xdf\xda\x21\x7f\x75\x10\x6b\xee\xe5\x00\x64\xa0\xe8\xf4\x9c\x18\x3b\x7e\xde\xc1\xdc\xb3\x84\x98\xb1\x85\x59\x17\x2f\xac\xa6\x1a\x0f\xbb\x7d\xd0\xe6\xb4\x15\xe6\x0f\xed\xde\xb7\xc4\x23\x28\xf6\x59\x3b\xc1\x2a\xc5\xd2\x9f\x0b\x2c\x32\xc0\x66\x6f\x08\xaa\xe3\x8e\xe9\xa8\xe3\x42\x88\x92\xf2\x67\xe3\x4b\x58\xad\x28\x13\xdd\x43\x14\x95\xbf\xcc\x45\xe2\x71\x88\xb2\xf2\x7b\x9c\x9d\xe2\x6b\xf6\x41\x2d\x3d\x3b\x78\x59\xdf\x96\xda\x2f\x43\x20\x28\xbb\xce\xcd\xcb\x8e\x75\x0b\xe3\x31\x41\x20\x03\xd0\x63\xad\x45\xd6\xd6\x76\xae\x1e\x5a\xab\x37\x97\x4f\xac\xe5\x13\xae\xcd\x35\xc4\xc2\xac\x38\x7e\xd4\xb5\x16\xc6\xda\xa1\xf1\x18\x8a\x1d\xf2\x40\x97\x11\x72\x67\x55\x77\x2f\x71\x0f\x70\x40\xd1\x3e\x0b\x6c\xeb\x5f\x91\x4f\x24\x05\xde\x0b\xe2\xd2\x36\x86\x39\x7a\x4c\xfc\xc3\xff\x9b\xfd\x1e\x1c\xfc\xde\xe9\x1c\xf8\x9d\x83\x7f\x1c\xa2\xf7\x35\xcc\x01\x80\x81\x37\x06\xc3\x13\x25\xb2\x11\x08\x96\x61\xa8\x1e\xec\x64\xcb\x28\xa4\x2e\x68\x15\x76\x1a\xb4\x1e\x3e\x82\x88\xf0\x11\x4a\x34\xac\x4d\xf4\xc1\x0c\x18\x4b\xd0\x01\x2a\x2b\x2f\xc5\x29\xcd\xde\x87\xd4\x94\xaa\x27\x88\xa7\x1a\xf0\xd9\xad\x28\x43\xe3\x55\xc2\x10\xd8\x43\x4d\x10\x88\x06\xeb\x30\xf0\x9e\x12\x17\x72\x93\x90\xa2\xc9\x14\xea\x9c\xb1\x54\x9a\x3c\xc5\x96\xac\x2a\xa6\xe9\x0e\x35\x07\x97\xc0\x56\xeb\x31\xe9\x50\x92\xb1\xdd\xea\x7f\x55\x29\xce\x87\xbf\xa7\x14\xe7\xc3\x5f\x27\xc5\x21\x68\x9d\xa3\x9f\x88\x4b\x0d\x00\x0c\x21\x84\x5c\xe9\x78\x41\x60\x3e\x34\x2a\xf0\xe0\x23\xac\xb8\xd5\x6e\x4d\x02\xad\xcf\xaf\x0a\x33\x53\x0e\x45\x47\x10\x31\x24\xdd\x1d\xf2\x2b\xa0\x37\x44\x89\x1f\x90\x49\x12\x90\x77\xe7\x2f\x34\x05\xe6\xa6\xc5\xcd\xfc\xfb\xc1\xe1\x0c\x01\x07\x40\xad\x34\x8b\xa5\x86\x8c\x81\xab\xca\x38\x27\xd4\xa3\x49\xae\xf5\x56\xfa\x83\x48\x17\xd1\x65\x67\x2d\xe9\x2b\x5e\x56\xeb\xa8\x73\x65\xa1\xc3\x49\x62\x5d\x49\x11\xcb\xa0\xc7\xeb\xc9\x52\x9c\xfd\x18\x89\xf0\x5c\x9e\x38\x22\x7f\x12\x37\x81\x86\xbd\x65\x08\xfb\x92\x5b\x09\x73\x06\x5a\x2a\x33\x9e\xaa\x25\x2c\xbc\x78\x6a\x61\xf5\x4a\x4d\x40\xf2\x11\xe7\xac\x45\x3d\x2c\xb2\x34\xfb\x8b\x8a\x6b\xb4\xe8\x35\x7a\xd4\xed\xaf\x4b\x7a\x17\x6f\x9d\x2b\xef\xa4\x3c\x47\x7f\xd8\xf7\xe8\x23\xb9\xe6\xf7\x78\x21\x0b\xde\x18\x4e\xa7\x30\x07\x37\x90\x0a\x29\x61\x59\x8a\xd8\x8e\xeb\x6f\x71\x6d\x57\x31\x23\xb7\x5d\x2a\xb2\x2f\xb3\x0d\xe3\xa2\x66\xb6\x41\x5c\xc8\xac\xf8\x92\x48\x4b\xa2\x33\x43\x3e\x3d\x29\x4b\xa5\x57\xfe\xde\xde\x4b\xe2\x66\xb0\xd5\xb2\x8c\xdb\xb8\xbd\x37\xf8\x7a\x02\x98\xbb\x99\x5a\xc7\x41\xec\x0a\x88\x42\x29\x44\xb1\xcb\x61\x08\x25\xbe\xef\x2b\x98\xe9\x77\xbd\x1e\xff\xa2\x80\x05\x85\xfd\x9e\xd7\xe5\xaf\x4c\xc8\x40\xcf\x89\x1b\x41\x88\x56\xc6\x5d\x13\xbb\x06\x10\xa0\x15\x44\x0c\xa1\x1b\x1f\x4b\x10\x81\x56\x90\x47\xb0\x7b\x49\xdc\x09\xec\xc7\xae\x09\x06\x68\xc2\x3e\x0d\x15\xb3\xf0\x86\x28\x4b\xbe\x16\x80\x39\x7a\x62\x23\xb5\x41\xa7\x23\x92\xdc\xf6\x67\xdd\x8e\x40\xf1\x1b\xf6\x88\xb0\xb1\xcd\xba\x1d\x8a\xc7\x7e\x8f\xfd\x90\xb3\xf5\xbb\xec\xc1\x98\xa7\xdf\xe3\xf9\x92\xdf\x35\xf8\xb0\x57\xb2\x69\x11\x61\xbd\x48\x61\x8e\x7e\x29\x71\x1e\x0a\x91\xd7\x2d\xee\x11\x35\x5c\xcc\x08\xc3\x24\xdd\x13\xfc\x90\x9c\xe0\x83\x03\x48\x07\xd8\x74\x31\xc3\x43\x4b\x42\xc9\x0d\x2d\xe3\x72\xcb\xb1\xdf\x3d\x89\x1f\x92\x93\xf8\xe0\x00\x62\x46\x34\x16\x2d\xc7\xc3\x13\xaa\x16\xfb\x49\x92\x44\x04\xc7\x36\x74\x6c\x72\x3e\x82\xe3\x92\x66\x53\x42\x63\xf8\x2b\xf1\xd7\xd3\x30\xe5\xf6\x6a\x52\xc6\x89\x96\x24\xe6\xa2\x5a\x70\x29\x2c\xd9\x00\x0a\x63\x19\xbf\x4e\x2b\x8f\x73\xf4\xa3\xfd\xf0\xe2\x38\x4e\x28\xde\x22\xe0\x4e\xb6\xcb\xb2\x68\xda\x1c\x42\x8d\x06\x80\x0b\x66\x2f\x96\x38\xf6\xee\x59\x8d\xaf\xe6\xf7\x2b\xa6\x57\x49\x4c\xdb\x97\x3c\x6d\x4f\x7b\x9c\x44\x01\xe3\xb8\x1f\x17\x43\x05\x76\xf1\xc0\xad\x46\x51\x81\xab\x4d\x56\xb1\xe6\xc5\x43\x6a\x17\xcf\x56\xc5\x40\xb3\x79\x6b\xc9\xc4\x2f\x6e\x76\x70\x10\x46\x4e\xc2\x68\x95\x31\x8f\xff\xb6\x6f\x66\xba\x8a\x84\xcd\x5c\x36\x4f\x2e\x8d\xe5\xfa\x1a\xa9\xda\x77\x91\xb8\x71\x89\xfc\x14\x07\xdc\x45\x7a\x5b\x02\x76\x29\x89\xf9\x95\x0c\xa4\x53\xd1\x50\x45\x2b\x9a\xac\xd2\x8c\xe7\xe3\x49\x42\x1e\x17\xdf\x1a\xfc\xb6\x08\xc2\x18\xf5\x5f\x76\xa6\xb6\x68\xed\x5b\x77\x80\x8a\xdc\xe3\x08\x38\x2e\x40\x06\x7d\xdf\xc1\x11\x49\x8b\x43\x0f\x1c\x29\x01\x17\xe1\x37\xb6\x26\x6d\x2f\x27\xb4\x3f\xb2\x9b\x1f\x2e\x53\x52\x98\x48\x17\x9e\xfe\x1e\xf8\x66\x7a\x9f\xfd\x0f\xd0\x12\x07\xfc\x9c\xf7\xee\x5b\x17\x00\x30\x0c\xdc\x0c\xfe\x05\x1c\x01\x36\x49\xcf\x1a\xa6\x91\xe7\xbb\xa7\x89\xf7\x84\xb8\xfb\x8f\xcf\x9e\x9d\xbf\xbd\x58\xf3\xa9\xb3\x1a\x3e\xd8\x2f\x16\x84\xbd\x40\xfb\x20\xdf\x67\xd0\x28\x97\x6d\x0b\xf8\xf2\x3b\x71\x6b\xb7\x54\x78\xb8\xf3\x56\xc5\xaf\x2d\xcd\x6e\xee\x53\x1a\x88\xdb\x8d\x9c\x6b\xf2\xf7\x45\xd4\xbe\xcf\x30\x4d\xc6\x98\xb0\x90\x5e\x73\x43\x4f\x19\x3f\xa2\xa3\x5e\x7e\xd9\x80\x0c\x7c\x7b\xeb\x51\xad\x16\x0b\x9c\xca\x41\x19\xed\x74\xe4\x07\x28\x52\x52\x95\x60\xf5\x51\xd7\x26\x2d\xe7\x36\xbd\xe3\x24\x0d\x48\x4a\x82\x92\x59\xaf\xdd\x7e\x77\x4e\x70\xb3\x1d\xfe\x66\xa4\x3b\x57\x13\x3f\xe3\xab\xd8\x60\x6d\xae\x4b\x71\xd4\xb4\xad\x90\x88\x76\xe2\x5c\x84\xf1\x64\x6b\x59\xae\x1b\x6d\xbc\x2e\x0c\xc3\x64\xbd\x70\xb7\xf1\x06\x31\x2e\xc6\x4d\x3e\x21\xdb\x6e\x25\x79\xea\x3f\x31\x8e\x6e\x82\xa3\xc7\x51\x38\x8b\x3d\xb0\x08\x83\x20\x22\x0c\xdb\x55\x49\x20\x09\x92\x5f\xe1\xc6\x7a\xc5\x20\x83\xcf\xa4\x96\x04\xcd\x84\xc8\xb4\xdd\x03\x39\x8a\x79\xb0\xd6\x14\x36\x28\x77\x36\x39\x6f\xd4\x2e\xfc\x45\xdb\xee\xaf\xf0\xaa\x50\xea\xfe\x4a\x06\x44\xde\x0c\x07\x40\x44\xb5\x5b\x2d\x97\x24\xe5\x0c\x4e\x29\xdd\xf3\x55\xfb\x18\xe4\x48\x16\xde\x36\x38\xd2\x11\xd8\xfc\x31\xdd\xc9\x05\x47\x04\x95\xad\x17\xfc\x91\xa0\xb5\x79\xb8\x4b\xa4\x55\xae\xae\x6e\x98\xa3\x7f\xf0\x4c\x6f\x47\xdf\x41\xf4\x1f\xf1\xeb\x7b\x88\xfe\x45\x8a\x0b\x7a\x41\x16\x09\x2c\x53\x84\xea\x7e\x9f\xcc\xc3\x28\x48\x49\xcc\xef\xf8\xcb\x14\xb3\xd9\x5f\x30\xd8\xc9\xb8\x69\x7c\x18\x14\xf7\xf9\x07\xb1\xf3\x03\xa0\xea\x00\x04\x4a\x35\x00\x02\x61\x60\x64\x04\xaf\xcf\xe8\x1f\xd5\xb0\xd2\x22\xbd\xb8\xd2\x4f\x3a\xea\x71\x4e\x26\x1f\xc7\xc9\x95\x0a\x2e\x88\x6d\xdb\x68\xc9\xd8\xc8\x13\xa8\x86\x81\x17\xcb\x3c\x8c\x45\x3b\x8d\x5d\xaa\xbc\x95\xf6\xd8\xf0\x7c\xb8\xf2\x28\xad\x32\x92\xca\xc4\x9a\x20\x4e\x62\x02\xf2\x0d\xad\xf2\xd3\x04\xd0\x34\x49\xbd\x38\x97\x12\x8d\x42\xa4\xfd\xf3\xff\xa4\xe6\x46\x4f\xef\x37\xf2\x55\xa4\x60\x3f\xff\x3d\xa5\x60\x3f\xff\x35\x52\x30\xce\x2d\x52\x7f\x30\x00\x8a\x15\x03\x48\xf3\x62\x43\x34\x00\x92\x67\x63\x87\x52\x32\x6d\xec\xad\xe0\xec\x00\x52\xac\xdd\x70\x88\xa8\x2d\x75\x0d\xe9\x30\xe2\x90\x9b\x2f\x19\xc9\xac\x07\x43\x4f\xe4\x36\xe7\x76\x0f\x4f\x93\x55\x4c\x0b\x7c\x60\x12\xfe\x8a\x83\xdc\xeb\x6a\xde\x71\xaf\x5b\x30\x8d\x9c\x54\xb6\xe4\xa5\xce\x44\x5e\xea\x95\xc8\x4b\xbd\x68\x62\x29\x96\xa5\x9a\x0b\x56\x73\xee\x2f\x59\xcd\xc0\x5f\x7e\x31\x4b\x51\x27\x8f\x82\xf6\x34\x22\x57\x32\xe0\x68\x9a\xb5\x25\x96\x63\x17\x40\x2d\xfc\x8f\x5c\x40\x64\xb9\x20\x53\x71\x41\x26\x5b\x2e\xc8\x7f\x11\x71\x3f\xa6\xa8\x84\x4d\xbd\xf5\x02\xa7\xb3\x30\x3e\xe7\x61\xd9\x7a\x5d\x1d\x21\xea\x29\xc3\x6a\x82\xc8\x0a\x03\x53\xa2\x8d\x40\x5b\x0e\x19\x40\xcd\x1b\xb9\xd4\x4f\x91\xc1\x20\xad\xdc\xdf\x08\xc3\x94\xda\xe7\x84\x9f\x98\x75\x8e\x28\xda\x63\xa7\x8d\xc7\x4a\xd8\x72\x6d\x26\x26\xe6\xe3\xb7\xe6\x04\x2f\x43\x8a\xa3\xf0\x4f\x86\x16\x53\xc1\xed\xc4\x83\x74\xc8\xb9\x19\x68\xc7\xae\x6c\xde\xd6\x19\x9f\x91\x69\x91\x1a\x9a\x4d\x91\xf1\x9e\x6d\xe3\xee\xd3\xd3\xdc\xc0\x01\x06\xee\xde\xdc\x9e\xd3\x44\xb9\x65\x55\x03\xd7\x82\x6e\xe7\x41\x4a\x16\x80\xc7\xd7\x12\x69\xa3\xbd\x5e\xe7\x41\x9e\x23\x91\x07\x00\x57\x84\x05\xd5\x78\xc5\x26\x5d\x27\x18\xe7\xac\x93\x25\xa5\x10\x29\x85\x28\x26\xd3\x84\x47\x0e\xa1\xc5\x35\x7d\x27\x32\x10\x53\xb4\xe6\xfd\x78\xb2\x3f\x46\xa1\x4c\xc3\x88\x20\xe0\x3c\x72\x00\x22\x92\xf9\x54\xa3\x69\x1e\x6f\x31\x1c\x6b\x76\x37\x09\xa1\xa2\xbd\x03\x8a\x2a\xc2\x00\x6f\x8e\x58\x07\xdc\x32\x19\x42\x28\x2d\x9f\x79\xd4\x14\x3b\xae\xe1\xc3\xe1\x24\x87\xa6\x3f\x62\xdf\xaa\x3b\x2a\x86\x28\xc0\x96\xd4\xc0\x56\x8c\x1b\x15\x3c\xfe\x41\x85\x61\x61\xf0\x87\x14\x82\x2a\xf0\x53\x77\x63\x8e\x76\x4b\x10\x88\x64\xb5\x6c\x87\xf1\x34\x71\x04\x9b\xe3\x70\x66\x9a\x04\xed\x6c\xa1\x83\x20\x97\x20\xa7\x97\xe7\x08\xef\x84\x6f\xc6\x38\x98\x11\x13\xcd\xbc\x24\x6e\xdc\x51\xd8\x13\xda\xb6\xe4\x95\xe9\xf4\xa9\x25\x72\xc5\xdd\x00\x51\xdc\x91\x33\xb5\x33\x6c\x66\x03\xea\xc2\xc8\x91\xba\x45\xf8\xf9\x55\x0d\x08\x91\x04\x23\x25\xd2\x9d\x9a\x2b\xdc\x73\x45\x0d\xd1\x98\xf8\x2d\x10\x02\xcc\x4f\x28\xed\x48\x7f\xd7\x57\x5c\x12\xf0\x98\x6f\x99\x30\x4d\x88\xa9\x7f\xea\x52\x0a\x51\x6a\x07\x9f\xc2\xb9\x06\x61\xff\xad\xa1\x27\x34\xae\x2e\x00\x3c\x8a\xb4\x6b\x10\x07\xb8\x3e\x37\xfa\xe6\xb0\x01\x20\xe7\x5f\x3a\xca\xa7\x45\x48\xfd\xd3\x34\x11\x62\xff\x30\x3b\x93\x96\xa9\x91\xbf\xd6\xb7\x98\x01\x3b\x48\x81\x93\xb6\xdb\x88\xb9\x25\x53\xab\x25\xfe\xca\xdb\xb4\xf2\xb8\x45\x38\x2b\x0e\xe9\xa6\x32\x51\xc1\xae\x1c\xe4\x4d\x78\x35\xa6\x55\xba\xb8\xb8\xbd\xbd\x28\x47\x62\x48\x48\xba\x99\xa4\x48\x4f\xd6\x4b\xb8\x19\x49\x42\x7d\xec\x3e\x38\x86\x28\xa4\x3e\xee\xc4\x6e\x42\x21\x8a\xa8\xef\x62\xf7\xa8\x7b\x64\xf7\xae\xbd\xc6\x8b\x68\xc3\x61\x12\x82\x28\x93\x5a\x4e\xe2\x69\x38\x6b\xb3\x6a\x20\xe7\xf1\x4b\x4f\xa2\x0a\x3c\x3c\xe5\x45\x04\x3c\x64\x0c\x1e\x22\x0a\xd1\xc4\x0e\x0f\x62\xe3\x8c\xd8\x85\x9f\x29\x9a\x44\x2b\x1f\xb7\x5a\x78\xcb\x74\x76\xa2\x29\xe6\x47\x4a\x5c\x20\x26\x22\xad\x2c\x7e\xbf\xc2\x5d\x9b\xb8\x2a\xa4\x5c\x5e\x45\xae\xa8\xb7\x62\x97\x5a\xb2\xbc\xf6\xca\x58\x30\x73\x79\x86\x17\xee\xd5\x94\xac\xa8\x9b\xa1\xde\xfd\x6e\xd7\x7e\xc3\xfd\x5a\x0b\xb8\x81\x82\x30\x63\x34\x7c\xe0\xed\xad\x72\x14\xf5\xc1\xd3\x64\x19\x92\x00\x78\xec\xc7\xb5\x43\x13\x67\x12\x85\xcb\x71\x82\xd3\xa0\x41\xb2\x91\x51\x05\x31\xd4\x80\x98\xbd\x15\x62\x8b\xe5\xad\x38\xe4\x58\x93\x22\x6e\x38\xae\xc6\x01\x15\x5e\x68\x87\x02\x30\x9a\x4f\x67\xf3\xae\x4c\x68\x01\xd1\xc2\x27\x46\x5a\x89\xe6\x68\x61\x1f\x96\x0c\x5f\x63\xe0\x8c\x75\xee\xd1\x3b\xdc\xf7\xc5\x02\xc7\x41\xfb\x2c\x8c\x89\xf3\x3c\xc2\x33\xbb\xa4\xaa\x59\x70\x86\x32\x9a\x86\x4b\xfe\x72\xab\x0f\xbc\xc9\x43\xe2\xc6\xa0\xa7\x1b\x83\x8f\x58\x8d\x95\x0b\xb1\x17\xd9\x12\xfe\x62\x40\x86\x85\x32\x61\xc9\x0e\xec\x82\xc2\x93\x45\xe5\x54\x8b\x75\xe0\x87\x7a\x7e\x57\xb8\x5d\x82\xce\x54\x2c\xf1\x6e\x78\xbd\x79\x97\x97\x54\xda\xa8\x4a\x34\x69\xc5\x92\x39\x0a\x18\x92\x3c\xfa\x0e\xa2\xa9\x35\xd5\xcb\x67\x42\x4f\x49\x75\x40\x3a\x3c\x0b\x15\x02\x76\xa9\xee\xaa\x22\x4a\x59\x44\xed\x7b\x00\x09\x91\xb7\xf0\xe4\x80\x8c\x1c\xe4\x3f\x6c\x7d\x8d\xa5\x08\x91\xed\xd7\x8c\xed\x97\x55\x3e\xa4\x17\x12\x97\xa6\x29\xad\x1d\x94\x3f\x70\xf2\x51\x99\x0a\x68\x62\x44\x5a\x17\xa4\xda\x0a\x42\x91\x05\xe2\xc3\x2a\xfe\x18\x27\x97\xb1\xfe\xa8\x49\x90\x5c\xa4\xbd\x29\xfc\x49\x19\x61\x68\xdc\xa1\x77\x76\x3e\xcf\xd9\x6d\xcb\xe9\x9a\xdb\x88\x67\x6b\xc7\x75\x83\x8c\xf6\x0b\x64\xdc\xa6\x62\xf1\xd8\xda\x3a\x06\x68\x3d\x4f\xc9\xd4\x03\xdf\x80\x03\x41\x98\xdb\xd5\xa0\x47\x80\xcb\xc4\x54\x11\xc9\x13\x7c\x86\x78\x55\xad\xdc\x19\x71\x85\x7d\x75\x61\xe5\xaf\x88\xf2\x80\x76\xe2\xe4\x12\xba\x10\x22\xe0\xe0\x59\x62\x77\x14\xd9\xad\x9b\x17\xc4\xed\x91\xe3\x6f\xcd\x70\xb3\x1d\xa2\x7b\x94\x41\x42\x77\x90\xc2\x37\xe1\xbc\xcd\xaa\xe1\x4d\xa3\xe6\xa0\xb3\x25\xc8\xcd\x46\xb5\x83\x2e\x24\xdc\x80\xb7\x14\x3a\xc3\x19\x75\x8a\xb5\xde\xda\x66\xe1\x7b\xc1\x16\x09\xc0\x5d\xf8\xbf\x4d\x17\x03\x65\x40\x23\x38\x2a\x0b\xa3\x5a\x52\x37\x54\xb3\xd2\x80\x6f\x9e\xdf\x67\xff\x97\x65\xa5\x6c\x30\xa3\x09\x89\xec\xee\x6c\x53\xaa\xd3\xef\x09\x52\x5d\x84\xea\x90\xf0\x6b\x75\x3c\x2a\x6a\x08\x23\x19\x59\x81\x2b\xfb\x36\xc4\xf8\xdb\x09\x0b\x1b\xfa\xbe\x5d\x75\x26\x0a\x7b\xd6\x04\x42\xd8\xa7\x8c\xd8\x8c\x7d\xba\x8b\x8e\xbf\x86\xdb\xd9\x66\x60\xc6\x53\x02\x11\xf6\xa5\x49\x49\x72\x8b\xc9\x55\x74\x87\xb5\x19\x1a\xdf\xff\xab\xd3\xb4\x05\xbe\xdb\x11\xf2\xb6\xc0\x58\x4a\x26\x49\x1a\x7c\x31\x90\xdd\x16\xcf\x19\xfc\x32\x76\x49\x67\x4e\x70\x44\xe7\xfc\xc2\x16\x3f\x3b\x34\x79\xb7\x5c\x92\xf4\x29\xce\x88\xbb\x5d\xdf\xc4\xd1\x31\x43\x26\xbb\x46\x39\x34\xaa\x08\x79\xcd\xe6\x1e\x6e\x85\xf3\x37\xb6\xb4\x1b\x5a\xcf\xd5\x3f\xb9\x61\xad\xcf\x56\xf9\xd3\xe7\xb3\x18\xa9\xb8\xf0\xbf\x94\x40\x9c\x51\xb4\xd6\x01\x55\xe2\x26\xfa\x70\x6c\x1f\x67\x49\xdd\xc6\xf3\x2f\x0b\xf1\xfa\x3c\xb9\x7c\x99\xa4\x64\xc3\x61\x99\x1f\x2b\xad\x72\x13\xc3\x27\x18\x87\xab\xac\x90\x8a\x62\x25\x97\x52\x76\x1e\xa0\xdb\x39\x26\x0b\x47\xfd\x7b\x74\x5f\x3d\x00\x64\x8a\x41\x8f\xbf\xbf\xcf\x5e\x99\xd2\xd8\x1e\x7b\x51\xd1\x26\x8f\x71\x46\xa2\x50\x68\xc2\xca\x9a\xdd\x1c\x71\x99\x2d\x3b\xbe\x7d\x10\x31\x72\xd0\x03\x8b\x24\x65\x97\x51\x8e\xae\xad\x14\xb3\xdd\x26\xef\xee\xd1\x8d\xc4\x2e\x9b\x25\x58\x1b\x34\xd4\x46\xa8\x17\xb4\xef\x83\x7d\x33\xbd\x05\x4f\x10\xca\x39\xe1\x2b\xfb\xf6\x8b\x8c\x43\x58\x46\xfd\xf8\x6f\xd9\x50\x6d\xbc\x20\xc6\x8c\x8f\xfe\x54\xca\x84\x02\xd7\xd2\x9c\x4a\x81\xa9\x17\xed\x18\xee\x8c\xe2\x74\x46\x68\x9b\x13\xc2\x39\x0f\xd4\x86\x22\x0b\x86\x1a\x15\xe0\xcb\xf8\x5e\x93\xbc\x2e\xc2\xc4\x6d\x61\x86\xef\xc2\xa0\xe4\x34\xcc\x26\xac\x3f\x12\x38\xbb\xd9\x96\xbc\xe5\xf3\xd3\x85\x77\x31\x09\xa9\xd2\x60\x78\x27\x1a\xcc\x0a\xb1\x05\x52\xbd\xa6\x2e\x1d\xe0\x21\xe3\xb5\xe5\x04\xc4\x90\x20\x44\xfc\x7d\x98\x9d\xa6\xc9\x72\x49\x82\x6d\x04\x1c\xc3\x02\xef\x85\x00\x1b\x08\x4a\x38\x47\x40\xd6\xb5\xc6\xb0\xad\x8f\x41\x12\x45\x12\x87\x7b\x32\xe1\xf4\x33\xfb\x81\x50\x0e\xd3\x6c\x19\x65\xf6\x11\xd1\x99\x7a\x15\x5b\x9d\x5c\xd6\x39\x8a\xfd\xbd\x2e\x4a\xfd\xbd\x1e\x4a\xa4\x08\xe7\x84\xa6\xd7\x5a\xeb\x1c\xa2\xc8\x27\x03\xa1\x0f\xef\x84\x94\xa4\x98\x26\xe9\xd0\x85\x27\x7b\x6e\xec\xbb\xa1\x1f\x75\x62\x72\x45\x5d\x08\x3b\x41\x12\x13\x78\xc2\x9a\x13\xad\x67\x7e\x28\xce\x69\x27\x9b\xa4\x78\x49\xde\x24\x49\x74\x82\x07\xd9\xf0\xe6\xc6\x65\x7f\xfc\x35\x4d\x28\x8e\xbc\xae\xca\xe8\xdc\xcd\x21\x62\x1f\x3a\xfc\xfd\xc1\x81\x78\x10\x1f\x0f\x0e\xf2\x5c\x04\x01\x9a\xc2\x75\xca\x86\x9c\xf8\xd3\x7c\x1a\xc6\x38\x8a\xae\xd7\x6c\xc0\xb1\xc8\xc9\xed\xfb\x51\x47\xc0\xc1\xcd\x8d\xfa\xe5\x42\x5d\x32\x9c\xba\xa9\x0c\xd1\x94\xe4\x5c\x17\x3c\x61\x8d\xad\xd8\xfc\x17\xb6\xf9\x2f\xd1\xdc\xa7\xf6\xf9\x4f\x7c\x77\xe9\xcf\x2b\xf3\x9f\xe8\xf9\x07\xfe\x52\xce\xbf\x0a\x4d\x9d\x0f\xc9\xf8\x04\x0f\x02\xb1\x12\x41\xd3\x4a\x04\x7a\x25\x8c\xb9\xaf\xd8\x70\x17\x95\xb9\x4f\xd4\xdc\xe7\x7a\xee\x73\xeb\xdc\x57\x72\xee\x8b\xbc\x30\x37\xe0\x66\xff\x28\xfd\xef\xc1\x07\x9a\xf8\x59\x19\x46\x26\x62\x65\x26\x43\x7f\x30\x64\x2b\x31\x19\x0a\x47\xc9\x75\x75\x25\xbd\xac\xb6\xb8\x28\x52\x5f\x64\x72\x29\x7d\x66\x45\x74\x27\xb9\x94\x9f\x34\x18\x7d\xba\x13\x30\x92\xfb\xb2\xd7\x43\x4b\xdb\x32\xcd\x51\xd0\x04\x46\x2b\xdf\x9d\xfb\x41\x65\x99\x56\x7a\x99\xa6\xfe\x5c\x2e\xd3\xcc\x9f\x36\x81\xd2\x4c\x2c\xd8\x4c\x2d\xd8\xac\x71\xc1\xea\x4d\x98\x0b\xd4\x55\xab\xb7\xce\x4b\x4b\xb5\x60\xb3\x5b\x56\x96\x6a\xa5\x96\x2a\xd0\x4b\x15\x58\x97\x6a\x21\x97\x6a\x59\x85\xba\x3b\x93\x41\x5d\x90\xf4\x53\x38\x21\x8e\xba\x78\xae\xed\x17\xce\x2a\x92\x15\xde\x11\x37\x46\x77\x49\x13\x45\xe1\xc6\x0b\xa6\x24\x64\x12\x3c\x99\x50\xe6\x89\x03\x8f\x80\x73\xc8\x68\x3c\x71\xde\xb5\x11\xb3\x23\xae\xfd\x4c\xaa\xfe\xad\x53\x9a\x2b\xe9\x23\x9b\x53\x7a\x97\x73\xba\xa2\x2a\xb0\x4d\x8c\xb8\x59\x32\x96\x1c\xa5\xe0\x27\x4e\x9e\x55\x44\xd2\x72\x0f\xf4\x16\x3c\x15\x89\xe0\x84\x90\xfa\x23\xf5\x4f\xdd\x67\x14\xa2\xcb\xcf\xe7\x3b\xe4\x6a\x7c\x39\xe7\xf1\xb1\xa6\xd8\xdb\xa8\xcc\x43\x3a\x7a\xd5\x5b\xc1\xb7\xd6\xa0\xcd\x09\x63\xe1\x81\x14\x26\x31\xe0\x74\xeb\x6b\xea\x1b\xc1\xf3\x14\xc3\x7b\xc1\xde\xc8\x48\x1e\xc2\xd0\x2d\xfc\x93\xfc\x52\x8b\x67\xa5\x58\x35\x72\xe9\x9c\x62\x4a\x18\x0d\x4f\x93\x77\x6f\x9f\xea\xd0\x92\x39\x7a\xfa\xfe\x54\xb7\xfa\x3e\x49\x3f\x86\xf1\xcc\x09\xc2\x94\xc7\x51\x67\x6c\x43\x4a\xa2\x04\x07\x42\x65\x76\x21\x24\xc9\xba\x7c\x49\x91\xe6\x88\x92\xbb\x8c\x87\xf4\x81\x6c\x6a\xba\x8a\x80\xc7\x63\x46\xeb\xc7\x3c\xe7\x51\x24\x44\xdb\xa5\x49\x73\xb1\x5b\x51\xd2\x99\xd8\xba\xcf\xd1\x64\xbe\x8a\x3f\x0a\xdd\xaa\xaa\xf9\x13\xc1\x81\xc3\xdf\x67\x20\xe7\xb9\x0d\x45\xec\x40\x4b\x29\xf6\x51\x25\x32\x66\x5c\x54\x9a\xae\xb8\xcb\x5b\xb9\xe8\xfb\xc7\x67\x4e\xf1\x8d\x95\x9c\x25\x69\xb2\xa2\x61\x4c\xca\x05\x7f\x54\xaf\x59\x99\x8c\x26\x29\x9e\x91\x73\xc2\xc0\x39\x4c\x62\x63\x3b\xf9\x07\x27\x55\x5f\x18\x6d\x2e\x0c\x56\x23\x92\xd2\x05\x8e\xf1\x8c\xa4\x99\xb7\x16\x6b\x7b\x2e\x33\x27\x36\x2d\xf4\xd7\x36\x67\xd6\xd4\xf6\xb3\x38\xe0\xfe\x1a\x42\xa4\xd9\xc0\x1e\x92\xce\x2a\x8d\xa4\x13\xd5\xbb\xf3\x33\x97\x8a\x53\x27\xe2\x68\xf2\x33\xc7\xce\x2c\x43\x0c\xdb\x62\xcb\x7f\x56\x08\xf9\x02\x65\xd2\x1c\xc5\x50\x79\xd8\xe4\x39\x92\x84\x6d\x65\x89\xb3\x8f\xe1\x92\xf1\x34\x39\xba\xd8\xa8\xa5\x94\xca\xa0\xbb\xba\x79\x70\xa3\x2a\xd2\xe0\xde\xe6\x6d\x6e\x83\x85\xec\x9c\xd9\xed\xb5\x93\xcd\x7e\x51\xbb\xe1\x7c\xc6\x16\x33\x16\xe3\xe6\x66\x9d\xa3\xc4\x4f\xa5\x7e\x2c\x2a\x54\xb8\x49\x1f\x7b\x09\x0f\x3c\x5a\x86\x56\xb4\x2a\xca\x64\x7d\x1b\x8e\xc8\xbd\x0c\x2d\x74\xbd\xf3\xe4\x52\xad\x74\xda\x61\x5b\x24\xf2\xda\x2d\xfa\x2b\x37\x46\xd8\xce\x07\x6d\x61\xd5\xe6\x15\x0b\x08\x6d\x30\xd7\xe6\xb3\xd0\x26\x44\x97\xdc\xb7\x08\x1c\xdf\xff\x27\xc7\x4d\x8d\xc2\xb4\x75\xd5\x04\x8f\x07\xb6\x05\x39\x62\x43\x8c\x60\xa1\x8b\x7d\xcb\xae\xb0\x0b\x0a\x4f\x2e\xaa\x17\x1f\xd7\x9b\x8a\x7b\xee\xc3\x0e\xd7\xdb\x76\x55\xec\xa6\x7c\x0d\x75\xf8\x1c\xac\x79\xf0\x5c\x11\xcf\xdc\x33\x2f\x4f\x8c\x80\xd2\xea\xa6\xab\x98\xe1\x48\x76\x51\xb1\x63\x2f\x31\xd8\xb9\x78\xeb\xbc\x30\xef\x2f\xb4\x4b\x7b\xe3\x55\x18\x05\x95\xd6\x9e\xb0\x77\xb7\x69\x0b\x9b\x67\xd8\x68\xa8\x74\xb6\x41\x3e\x6c\xc6\x51\x46\xeb\xc5\xe1\x96\x36\x70\x9a\x3c\xa0\x86\x1d\x52\xe2\xd3\x6d\x16\x10\x6f\x2b\x9a\x6b\x31\x28\x6c\x90\x04\xa9\x94\x56\xd6\x48\x03\x45\x1c\xa1\xa7\xd4\xc7\xee\xfd\xef\x21\x7a\x23\x6c\x7f\x9e\x9a\x01\x87\x5e\xd2\xff\x69\xb3\xf5\x53\xfa\x55\xcc\xd6\x5f\xd2\xbf\xa5\xd9\x3a\x1b\xd6\x5f\x64\xb6\xfe\xca\x8e\x5c\xc4\x16\x0b\xe7\x52\x42\x9f\x8b\x27\x76\x04\xb2\x79\x72\xf9\x13\xd7\x82\x5c\xa3\xd4\x5f\xe3\x28\xf2\x64\x64\x3d\x2f\x36\x25\xb2\x38\x8a\x1c\x7d\x2e\xdf\xd0\x0e\xee\x8c\x69\x0c\x6b\x5e\x46\xcd\x36\xc2\xd8\x3d\xa5\xc2\xf4\x79\x6d\xf4\xc9\xad\xd5\xd9\x8d\xbd\x8a\xe7\xf2\x8d\xea\x7e\xaf\xd4\xbf\xfe\xfe\x75\x46\xd1\xe3\xa3\xc8\x9b\x0f\x7c\x4a\x36\x07\x28\x4b\x3b\x98\xfb\xb6\x45\x91\x95\xad\x14\x45\xf4\x24\x10\x78\xa7\x7e\x72\x31\xfd\x88\x5b\xb8\xfc\x00\xd1\x9f\x02\x15\x8c\x28\x44\xcf\x2d\x3b\x29\x54\x19\x92\x34\xe3\xda\x8c\x59\x94\x8c\x71\xf4\x2e\x8d\xb8\x28\x81\x6a\x52\x0c\x43\xc9\x99\x2f\x37\x10\x8c\x9f\x97\x71\xe5\x99\x08\x99\x0d\x11\x70\x00\x5a\xaa\xf8\xd8\x22\x28\x52\xea\x53\x4e\x2d\xcc\x93\x8c\xa2\xc8\x4f\x35\x01\xc8\x09\x85\x65\x9a\xd0\x64\x92\x44\x68\xc5\x53\x7c\x17\x01\xf7\xd1\xc2\xe7\x4e\xf8\x9d\x69\x9a\x2c\xdc\x95\xa6\x5e\xe0\x97\xb2\xff\x9a\x42\x8c\x4d\x6d\x42\x86\xc0\xe1\xa1\x11\x44\xa8\x08\x4e\x04\x21\x5a\x68\xdf\x4b\x9b\x00\x57\x5b\xf2\x88\x88\xce\x8b\xbb\xd6\x9c\xec\xa2\x19\x29\x8e\x00\x86\x4a\x83\xbb\x4d\x55\x22\xae\x9c\x73\x0e\x67\x47\x0f\x20\x7a\x21\x8d\x4c\x79\xde\xe0\x07\xf7\x20\x44\x67\x02\xf4\x5e\x50\x88\x1e\x37\x90\xc7\x55\xa9\x10\xf6\x95\x5e\x5e\x3a\xb0\x5d\xf1\x2c\x74\x85\x9c\xae\xf0\x43\xa9\x6a\x5d\xb2\xd2\x0a\x45\x6c\x85\x56\x7e\xc6\x56\x68\xe1\x67\x8c\xfe\x5c\xfa\x40\xf0\x6a\xc2\xbf\x2b\x6b\x97\x7c\x2f\x8c\xa0\x19\x5f\x0a\x22\x42\x55\x15\x06\xde\xd2\x5c\xe7\x72\xdf\x93\x24\xa6\x38\x8c\xf9\xf9\xf8\x6c\xf3\xbf\xdb\x6d\x2d\x11\x5b\x4b\xcc\xad\x25\xe5\xad\xc5\x03\x32\x2c\x76\xd7\x32\xb7\x73\x6a\x38\xb2\xaf\x90\x10\x8e\x78\x4f\x2f\x2e\x3a\x24\x9b\xe0\x25\x71\x97\x10\x09\xf7\x0e\x0b\xaa\x5c\xb8\x7b\x2b\x98\x2b\x52\x79\x81\xaf\x84\x27\xbe\xf0\xc7\x43\x8c\x0c\x96\xaa\xc9\x88\x4c\xa9\x5d\xf5\x0f\xc6\x0a\x67\x3c\x21\xd3\x24\x65\x5c\x30\x5f\x50\x99\xaf\xa9\x59\x33\x29\x09\x9d\xca\xe2\x6a\xb2\xc4\x14\xfd\x94\x56\x84\x0c\xa8\x58\x11\x9e\x7c\xfc\x96\xb9\xe1\x76\x63\x9f\x35\x02\xd8\x49\x2b\x77\xc6\xee\xa8\xe2\xdc\xe4\x88\x28\x7d\x7b\x41\xea\xbd\x2f\x91\x7a\x3f\x5f\xbc\x7e\x25\x33\xac\x47\xc9\x04\x47\x52\x80\xc0\xe8\x80\x17\x94\x2c\x5c\x02\x6f\x6e\x78\x19\x11\x99\x29\x9c\x5e\xbb\x94\x4b\xbb\x2c\x07\x0d\x5b\xb5\x9b\xa1\xd0\x6e\x46\x25\xed\xa6\x59\xfb\xd9\x74\x4a\x26\x14\x96\xd2\x0d\x0b\x1c\x50\xe9\x38\x84\x27\xa5\x31\x66\x6a\x8c\xdc\xcc\x1c\x0d\x08\x0a\x87\x10\x0d\x42\x14\x0d\xf9\xed\xf0\x13\xf5\x07\x85\x64\x41\xd9\x6d\x69\xe7\x72\x69\x7e\x75\xc1\xd1\x07\xfb\xcc\x7f\x38\xa7\x52\x0e\x04\x94\x0d\xd7\x10\xfd\x61\x47\x50\x06\xe2\xe1\x84\x3e\x87\xf7\x1f\xd3\x64\xb5\x44\xb1\xff\x9e\x31\x73\x42\x3c\xd8\x36\x45\x87\x6d\x72\xb5\xc4\x71\x40\x02\x00\xd1\x5a\xfd\x16\x5e\x74\x96\xc5\x4b\xf8\xe2\x75\x54\x39\xb9\x8a\x3c\x40\xd1\x6a\xc9\x05\x44\x0f\xb1\xec\x58\x67\xdd\x55\x77\x2b\x3b\x3b\xe9\x02\x47\x00\xad\x7c\xb0\x4c\x92\xc8\x18\x07\x44\x0b\x5f\x8b\x7f\xd5\xdb\x15\x44\x61\xe0\xad\x36\x90\x25\x35\xbb\x9e\x3f\x19\xc0\x69\x74\x65\x83\x60\xab\xd2\x59\xf9\x3c\xb8\xc6\x0a\x70\xdb\x0a\xad\x86\x4e\x9a\x84\xd6\x15\x31\x69\x79\x28\x83\x6c\x98\xa3\x05\x44\x25\x61\xad\xe3\x02\x23\xe4\x9e\x5c\x36\x04\x0e\xcd\xb7\xe5\x25\x44\xc0\x59\x2d\x61\x83\xd2\xd7\x8c\xd6\x61\x1d\x65\x45\xd6\xc2\x97\x88\xc7\x6a\x6e\x90\xb6\xdc\xa1\x1e\x5c\xc4\xb5\x67\xe5\xf8\xdd\xf1\x93\xc5\xa5\x71\x83\x64\x6c\x5e\x98\x8b\x13\x81\x36\xb6\x49\x7f\x8a\x85\xdb\x90\x23\xb2\x76\x8f\xc7\xc5\x3d\x5e\xb9\xbf\x13\xfd\xf8\x2e\x65\xb7\xb9\x41\x70\xa2\xcc\x37\x0c\x9b\xd0\x44\x3e\x89\x43\x8b\x56\xa5\x47\x75\x84\xd1\xc2\x57\x46\x57\x68\x69\x35\x72\xee\xd0\xe4\x2c\xb9\xd4\xb6\x58\xc2\xe4\x79\xb5\x6c\x30\x79\x0e\x4c\xb3\x66\x65\xf3\x5c\x4e\x6f\x68\x58\x3b\xbb\x8b\xad\x39\x2e\xd9\x6a\xdb\x21\xbd\x22\x07\xe2\x40\xa4\x28\x71\x5b\x85\xe7\xec\x98\xc9\xef\x5e\x82\xf4\xb2\x79\xd1\x06\x03\xb6\x6a\x07\xdc\xff\x68\x8b\x01\xcd\x32\x47\x8b\x5d\x2d\xd8\xaa\xed\x8b\x4d\xb7\x75\xf0\x98\xa2\xba\x62\x10\x2b\xd5\x5f\x8c\x0a\x18\xf1\x52\x14\x06\x57\x1e\xdd\x7d\x5a\x03\xc0\x20\xa3\x2d\x9a\x00\xc3\x1c\x9d\x11\x77\x52\x37\x71\xdb\xbd\x39\xd1\x52\x5b\x85\x57\x65\x4d\x4a\xd3\xb7\xd5\xee\x6b\xc1\xc5\x35\x59\x8e\x6c\x86\xb7\xe5\xe5\xce\xa4\xa5\x45\x11\x14\xe2\xc9\x56\xae\xbb\x6c\x7c\x21\x74\x53\x36\x07\x4c\x71\x46\xa9\x3a\x24\x9c\x45\x2f\x8e\x63\xea\xb3\xb3\xc0\xd3\xfa\x94\xce\x49\xbf\xe7\x75\x15\x68\x93\x41\x3c\xbc\xb9\x71\x79\xd0\xdb\xb5\x44\xae\x5e\x57\x12\x7f\x99\x37\x18\xe6\x10\xb1\x8f\x1a\x53\x70\x2d\x30\x95\x2f\x65\x85\x03\x3f\x45\x24\x87\x68\xcd\x6f\xc1\xb2\x98\x20\x91\xcf\x9a\x85\xbd\x0d\x01\x6e\x12\x78\x8d\x31\x40\xa5\xcc\x87\x11\x73\x51\x71\xb1\x8a\x69\x97\xee\x05\x1d\xfa\xb0\xd5\x4a\x6f\x6e\xf6\xa2\x56\x2b\xe9\x37\x47\x27\xad\x8f\xef\x0f\x45\xea\x99\xf0\x4c\x91\x41\x38\x78\x38\x87\x43\x11\xfa\x72\x30\x64\x64\xdb\x93\xaa\x64\x57\x57\x2c\x29\x33\xdf\x51\xff\xd4\x7d\x42\x21\xfa\x65\x07\x69\xaf\x86\x94\x78\x8b\x5e\xb3\x2f\x12\x11\x29\xbf\x53\xb6\x37\x71\x21\xc5\x4c\xfc\x58\x2a\x39\x23\x3f\x36\xe4\x99\x8c\xf5\x16\x22\x59\x34\xf1\xcd\x84\x64\x59\xab\x25\xb2\xc6\x39\x5c\x46\xca\xb0\x24\x7b\xdb\xbc\x9f\xef\x2c\x5a\xd1\x54\x6a\x45\xc5\x14\x3c\xe5\xc5\x33\xe9\x17\xf9\xcd\x32\xe8\x25\x86\x68\x34\xaa\x69\x4b\xe5\xb9\xa8\xeb\x48\x7f\xdd\x61\xf5\x4c\xc2\x6e\x89\x67\xa4\x2d\x46\x02\xaa\x82\x26\x54\x02\x5a\x41\xe1\xc5\x25\x0a\x0f\x8b\x48\x02\xb1\x88\x24\xa0\x66\x94\x22\x2d\x32\xf3\xe2\x41\x6f\x98\xa3\xc8\xf8\x56\x0c\xc5\xa3\x1b\x08\xb5\x5b\x1a\x2b\xbc\x55\x7a\x6c\x1b\xee\xa7\x28\xb1\x66\x63\xa0\x28\x2a\x31\x16\x3f\xfe\x6f\xcb\x90\xff\xfd\x75\x64\xc8\x3f\xfe\x3d\x65\xc8\x3f\xfe\x75\x32\xe4\x7f\xd8\x0e\x1d\xe8\x17\x62\x08\x4e\x5c\xfe\x61\x86\x1c\x85\x27\x97\x61\x1c\x24\x97\x9d\xb9\x48\x20\xc4\xb7\x4f\x26\x68\xcb\x11\x00\x8c\x21\x44\xff\xb1\x1f\x66\x95\x98\xd9\x1e\x0d\xa5\x9c\xba\x43\xbc\x28\xe5\xd3\xe4\x54\xe9\x2a\x23\x6f\x44\x02\xce\x73\x85\x0d\xb3\x32\x9e\x60\x04\x29\xf7\x1f\x90\x29\x8e\x9e\xc5\xdc\x47\xb7\x08\x84\xa2\x43\x2e\xc9\xf1\x00\x04\xcc\xbe\xc5\x63\xa9\x67\xf1\xaa\xd2\x2f\x40\xa0\xe8\x15\x20\x60\xe9\x13\x0c\x8d\x30\x2b\x26\xbf\xbe\xe8\xf0\xcc\x53\x19\x44\xf3\x12\x5e\x5a\x32\xbc\x14\xf8\x73\x86\x97\xa6\xfe\x9c\x31\x9c\x33\x8e\xf6\xe4\x6a\x03\x76\x37\xa1\x4f\xa5\x3a\x33\x56\x67\xec\x7f\x62\x75\xae\xfd\x4f\x8c\xd5\xdf\xc6\xe3\xef\x05\xf2\xd4\xb4\x5a\xcf\x5c\x88\xe4\x8e\x26\xf1\x32\x59\x8a\x7b\xa7\x96\x91\xeb\x3d\x71\x65\xa9\x28\x91\xd9\x4d\x85\x58\x17\x9e\x10\x23\x84\xdd\xd4\x25\x30\x17\x37\x28\xbf\x1c\xaf\xaa\x11\xd0\xf7\xdc\x76\x8f\xa7\x0d\x08\xe3\x80\x5c\xbd\x66\xe5\x61\xab\xa5\x9a\x50\xa0\x32\xae\x93\x0b\x46\x38\x62\x07\xfb\xbe\x4f\xfa\xd4\xb3\x13\x00\x14\xa2\x01\x1e\x0a\xb1\xc4\x10\x9e\x5c\xbb\x2a\x12\x79\x17\xdd\xef\x72\x15\xc4\x33\x73\x7e\xbf\x10\x77\x8a\xfe\x41\xa1\x6b\x6f\x2d\x68\x0e\x76\xae\x16\xb1\x88\x79\x7e\x41\x72\x4e\x3a\xdc\xe2\x72\x08\x9a\xd5\x99\x61\xc0\xb9\xb2\xad\x69\xcd\xde\x12\xb4\x2e\x67\x19\xf6\xae\x84\x07\xa5\x1e\x58\x82\xaa\xd9\xd8\x6c\x36\x3d\x7a\x29\xaa\x83\x2a\x96\x5e\xd0\x66\x61\xd0\xff\x37\xd7\xae\x60\xb4\x56\x5d\x90\x1c\x7a\x58\x08\x9f\x8d\x54\x2c\x16\xd1\x83\xd1\x8b\x2d\xac\x7d\xb1\xcb\x9d\x30\xd8\x13\x18\xa2\x89\xce\xd3\x83\x28\x6f\x8c\x06\xa7\x32\x45\x57\x4e\x7f\x13\xa3\xea\x29\xf7\x52\x54\x3f\xe5\x5e\x84\x8c\x3c\x73\x1e\x46\x46\x16\x3a\x6f\xd5\x1f\x7b\x83\xa1\x49\x19\x64\x79\x43\xfc\x88\x6a\x6e\x9b\xc5\xb8\x7d\x0c\x1a\xf5\x59\xcf\x72\x04\x1e\x07\x81\xce\x5a\x93\xa3\x7f\xed\x40\x1f\x55\x2d\x08\xac\xa2\xc2\xee\x4e\x11\x1b\x18\xce\x59\x65\xa4\xcd\xa5\x7e\x6d\x61\xa4\xb6\xd7\x83\x05\x12\xe5\x55\x57\xac\xea\xd2\x5f\xb0\xaa\x73\x7f\xc1\xaa\x06\xbc\x2a\xe1\xf8\xaf\x2d\x72\xb9\x6b\xdc\xc5\x1a\x98\x96\x1a\x08\x58\x03\x33\x7f\xca\x1a\xf8\xe4\x4f\x59\x03\x63\xdd\x77\x50\x46\xc1\x7b\x5d\x88\xae\x4b\xb5\xc7\xac\xf6\x95\x7f\xcd\x6a\x3f\xf3\xaf\x59\xed\x8f\xba\xb6\x4c\xd3\xdc\x4e\x35\xba\x66\xdd\x5f\x96\x1a\xf8\xc8\x1a\x78\xed\x5f\xb2\x06\x2e\xfc\x4b\xd6\xc0\x07\xbf\x66\x97\x20\x08\x73\xce\x10\x1f\xaa\x9c\x2d\x87\xdc\x18\x92\x9b\x29\xbc\xf1\x3f\x14\x94\xf9\x4b\xff\x83\xa4\xcc\x4f\x7d\x57\xd9\xec\x41\x76\x2f\x8b\xf4\xd7\x3c\xe9\xf5\xab\xa6\x3e\xf8\x7a\xf5\xf9\xbf\x3e\xe5\xe5\x59\x07\x23\xff\x55\xd1\xc1\x9f\xfe\xab\xb2\xc9\xc2\x36\x5c\x1f\x4e\xdd\x91\xe1\xf8\x4d\x7c\xf1\x24\xb3\x06\x0f\xba\xc3\x93\x4c\xe4\xfe\xc1\xe3\xcc\x3d\x6d\x13\x28\x10\xb8\x28\x35\xb4\x81\xf2\x2e\x14\xee\xe6\x30\x54\xc7\x48\x72\x56\x1e\x08\xe3\x28\x8c\x49\x7b\x1c\x25\x93\x8f\x32\x30\x55\x09\x6a\x8c\xb0\x85\x3a\x5d\xa2\xed\x20\x08\xbe\x40\x2d\xca\x27\x97\x76\x26\x22\xa2\x17\xac\x85\xf8\x9a\xe5\x08\x88\x0b\x5a\x64\xff\x75\x14\x80\xde\x3e\x9e\xd6\x51\x77\xe3\x4c\xca\x27\xe8\xf3\xa6\x32\xdf\x34\x95\x65\x8e\xc0\xbb\x8c\x38\xbc\x13\x61\x4b\xfa\x55\x26\x51\x3a\x8a\x9f\x37\x8f\x67\x9b\xe6\x71\x25\xe7\x51\xa6\xba\xbe\xca\x54\xaa\x78\xe1\xf3\x66\x73\xb1\x69\x36\xaf\xe5\x6c\xe4\x55\xe2\x68\x8a\x11\x22\x37\x7a\x74\xdc\xbd\xb9\xf9\xd3\x1a\x7e\xea\xf3\xb4\xf4\xef\x85\xd8\xd3\x73\x00\x44\x7f\xb6\x5a\xe0\x5d\x4c\xae\x96\x64\x42\x89\x91\x5c\x5c\x08\x05\x9c\xcb\x39\x89\xb5\x04\xc0\xc9\x48\xfa\x89\xa4\x1c\x6a\xbc\x42\x1d\xf9\xa7\xd6\xf3\xa3\xe8\x91\x7f\xdc\x6d\xb5\x64\xce\x6c\x7b\xbd\x53\x42\x45\x5f\xc0\xc8\xfb\xe3\xc8\x04\x46\xc2\x12\x37\x08\xa7\x53\x92\x92\x78\x42\x9c\x31\xa1\x97\x84\xc4\xce\x75\xb2\x4a\x9d\x71\x9a\x5c\x66\x24\x75\x70\x1c\x38\x74\x4e\x64\xbb\x1d\xe7\xed\x1c\xc7\x49\xe6\xa4\x24\x0a\x49\xe6\x24\xb1\x83\x27\x93\x55\x8a\x29\x11\xcd\xf1\xe2\xbc\xdd\x34\x9c\x52\x67\x11\xce\xe6\xd4\x99\xe0\x55\x46\x9c\x55\x31\x75\x71\xb2\x05\x92\xcb\x3a\x0c\x8d\xbe\xfc\x3a\x4b\x5e\x5d\x1d\xc9\x54\x38\x51\x98\x51\xcf\xd9\x79\x33\x44\x35\x27\xe6\x54\x86\x03\xd0\xcb\x62\x1b\xea\xc3\xf9\x0f\x45\x6b\xc1\x40\x78\xcd\x84\xb9\x49\x96\xe0\x32\xed\xb3\xb4\x11\x3a\xaf\xeb\x04\xd1\x95\xa4\x7d\x32\xef\x8d\x90\xfd\x58\x78\x1c\x6f\xc6\xe5\x37\x3f\xdb\xe9\x13\x7e\x6b\x72\x6b\x51\x2e\xd9\x7b\x72\xcd\x05\xcc\x8c\x04\x92\x26\x4a\xda\x84\xfb\xc9\xf5\x4b\x4d\x67\x71\x7e\x70\x41\x16\x49\x7a\xfd\x22\x7e\x72\x4d\x49\x66\x56\x4c\xab\x15\xcf\x74\x27\x6f\x70\xb8\xc1\x96\x6f\xb3\x0f\xbf\x21\x93\xb9\x38\x7d\xe2\x48\x43\x4e\xbb\x9f\xc5\x71\x25\x8d\x30\x0f\x16\x2f\x8c\xcf\x9f\xe2\x34\x08\x63\x1c\x85\xf4\x9a\xb7\xc1\x9a\x18\x28\x23\xf1\xb7\xc9\xd2\xe9\x75\x1d\xbe\x2a\x62\xaf\x9d\xcb\x90\xce\x1d\x4e\x4d\x38\x13\x91\x0c\x5b\xe4\x11\xa7\x39\xaa\xd4\x12\x73\x16\xa5\x9c\xf1\x75\x09\x64\x54\x2d\x5c\xab\x55\xeb\x6b\x1e\xce\xe6\x8e\x58\x5c\x67\xc5\x20\x0c\xa0\x55\x1c\x52\x0f\xf0\x85\x56\x0d\xc5\x5b\xbb\x17\x0d\x8b\x91\x2f\x71\x98\xea\xaa\xe9\x26\x1b\x4d\x61\x93\xc9\xf6\x9e\x75\x8a\xe2\x82\x68\xc5\x7d\xc0\xf7\x13\x78\x58\x6c\x31\x6b\xec\x56\xc9\x9c\xdb\x47\x60\x43\xe4\x98\xc2\xd7\xfb\x8e\x23\x46\xdd\x85\x93\x2c\x9b\xc1\x16\xbf\xd8\x78\x07\xad\x60\xda\xbc\xf0\xb1\x3a\x73\x7c\xc7\xee\xc0\x4c\x7f\x4b\x18\x6e\xac\x8d\xa5\xb9\x11\xc4\xcf\x15\x69\x3a\x3b\x63\xe2\x88\x95\xa4\xe9\xbf\x51\xff\xd4\xfd\x99\x42\x44\xf0\x97\x46\x3d\xa3\x59\x30\xfe\x72\xf7\xa0\xdf\x6a\x82\x70\x5b\x6c\x02\xed\x31\x54\x93\x77\x17\xa8\xa4\x2e\xf3\xa6\x3b\xcc\x91\x74\x28\xbf\x0e\x75\xbe\x9e\x2f\x93\x3c\x8f\xd9\xc5\x51\xc8\xb1\x51\xa5\x71\xc6\xc1\x5b\x6a\x5d\xf3\xfc\x20\xd1\x2a\x94\x3e\x0a\x66\xf8\x83\xb7\xc9\xd2\xfb\xbe\x6b\xb5\x0a\x5a\x75\x26\x68\x3d\xc6\x19\x61\x5d\x7a\xe5\xbd\x8a\xc9\x25\xb0\x46\xc4\x5d\x75\xc6\x68\x3d\x4d\x93\x85\x07\x0e\x79\xe4\xad\x5a\x3d\x91\xdb\x08\x40\xeb\x50\xff\x45\xc5\x0c\x3d\x20\x8b\x95\xe5\xf6\xb6\x2a\x69\x51\x45\x04\xe4\xd9\xa1\xce\xaa\xa8\x23\xa3\xeb\x6d\xaf\x33\x2f\xea\x88\xb0\x6a\xdb\xab\x7c\x2a\xaa\x88\x40\x1b\xdb\xab\x5c\x16\x55\x32\xe1\x9a\xd6\x0e\xb4\x23\xe4\xf6\xea\x1f\x8c\xea\xe2\x06\xdc\x5e\x87\x60\x5d\x87\x1d\xba\xf6\xce\x15\x7f\x2d\x3a\x53\xfe\x7c\x95\x4a\x22\xde\x2d\x16\x26\x8c\xf7\x21\xfa\xf1\xec\xf5\x93\xc7\x67\xa3\x37\x8f\xdf\xfe\x34\x7a\x73\xfe\xec\xf9\x8b\xff\xc0\x13\x60\x3c\x8d\xde\x9c\x3d\x7e\xfa\xec\xa7\xd7\x67\xa7\xcf\xce\xc1\x9e\xef\xd7\xcb\xb7\x5a\xe0\xb0\xe9\xcb\x4b\xe2\x5a\x3a\xb8\xb9\x71\x31\xf6\x01\x10\x22\xcd\x18\xfb\x6f\x7f\x7a\xfc\xea\xf5\xc5\xe8\xe9\xeb\x97\x6f\x5e\xbf\x7a\xf6\xea\xed\x09\xcf\xeb\x58\x7d\xdb\x6a\xb9\x31\xf6\x05\x37\x0b\x20\xca\x3a\x0c\x0d\xc5\x01\x49\xdd\xfa\x42\x50\x5c\x3a\x97\x18\xd7\x0e\x66\xcc\x4e\x66\x90\x4c\xb8\x16\xa3\x33\x23\x54\x56\x7d\x72\xfd\x22\x70\x41\x9a\x24\x94\x8b\x89\x8e\x7e\x28\xf9\x90\x21\x0c\xd7\x3c\x5a\x5d\x92\xd2\xcc\x5f\x6b\x73\x21\xcf\xd0\x66\x72\x19\xd3\x48\x7f\x1a\x8d\x8e\x16\x78\xb2\x00\xca\xfd\xa2\x5a\x90\xbf\x1e\x8d\x7a\xcb\xe5\x8f\x1f\x00\x12\x76\x4e\xf5\x52\xe2\xfd\x68\xd4\x7b\xbc\x0a\x5f\x39\x9b\xdb\x10\x74\x77\xbd\x0d\xf1\x7e\x34\xfa\x2d\xf9\xe9\xe3\x77\x5b\xda\xe0\x56\x3e\x96\xc1\xb2\xd7\xa3\x51\xef\x22\x48\x7b\x00\x4d\x48\x64\x19\x2a\x7b\x3b\x1a\x1d\x9f\xfd\x32\x1e\x01\xa4\x0d\x39\x6a\xc5\xd4\x97\xd1\xa8\xf7\xea\xde\xec\xaa\x36\x9e\x52\x33\x2a\xbc\x55\xb5\x90\x78\x3f\x1a\xf5\x7e\xf9\xe5\x6a\xbc\xb9\x09\x2e\x88\xaf\xb7\xc0\x5f\x8f\x46\x47\x4f\xfe\x38\xdd\x32\x86\x92\xed\x85\x6d\x28\xfa\xeb\x68\xd4\x7b\x70\xf4\xcb\xbf\x36\x37\x27\xac\x26\x2c\xeb\xc2\xdf\x8f\x46\x47\x3f\x3f\xf9\xf4\xeb\xc6\x26\xf2\x1c\xdd\xff\x7e\x13\x78\x8e\x69\xec\x01\xa1\x7f\x1d\x8d\x69\x3c\x1a\xf5\xae\xe7\xc1\x8c\xd5\x7b\x70\x6f\x53\xbd\xc2\x7c\x45\x29\x98\x85\x19\xcb\xa8\xf8\x30\x1a\x1d\x91\x8b\xe8\x1e\xc8\xf3\x1c\x0d\x06\xbd\x6e\x17\xf5\xd0\xd1\x70\x38\x84\x27\xff\xdf\xe1\xe1\x37\x4e\x96\xac\xd2\x09\x79\x89\x97\xcb\x30\x9e\xbd\x3b\x3f\xf3\x17\x38\x8c\x3b\xf8\xfb\x60\x7c\xbf\xf7\xc3\xf7\x1d\xee\x76\xda\xf9\xc0\x6d\xad\xfe\x5f\x00\x00\x00\xff\xff\xb5\xe7\x4a\x39\x3f\x99\x01\x00") +var _pkgUiStaticReactStaticJsMainBa725b9fChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x0d\x77\xe3\xb6\xd1\x28\xfc\x57\x64\x3e\x4f\xb4\x80\x05\xd1\xa4\x6c\x6f\x76\x29\xc3\x3a\xc9\x66\xd3\xa4\xcd\x66\xd3\x78\xdb\x34\x55\x75\x72\x20\x12\x92\x18\x53\x24\x4b\x42\xb6\x14\x8b\xff\xfd\x3d\x18\x00\x24\x48\xd1\xbb\xe9\xc7\x7b\xcf\x3d\xb7\xe9\x5a\x20\x30\x18\x0c\xbe\x06\x83\xc1\x60\x80\xc4\x26\x2e\xdd\x47\xbe\xcc\x59\x78\xff\xc7\x32\x4b\xf3\x75\xc1\xf2\x0d\xed\x8f\x3e\x1e\xe7\x0b\xec\xe6\xbb\x72\x83\xe6\x73\x6f\x41\x9e\x7c\xcf\x0b\x56\xbb\x34\x14\x71\x96\x22\x4e\x04\x61\xf8\x89\xbb\x7c\x9f\x67\x85\x28\x29\x43\x13\xef\x25\xae\x88\x7f\xf5\xb2\x05\x85\x9f\x2a\xe2\xbf\xbc\xea\x89\xbb\xee\x89\xeb\xc9\xfb\xca\x3f\x8d\x7b\x3d\xe9\xc4\x9d\x35\x9f\x92\xa8\x30\x4b\xb2\x82\x3e\x55\x44\x07\xdd\x2d\xbb\xe7\xb4\x86\x11\x84\x91\x94\x14\xf8\xe9\x81\x15\x83\x8c\x3e\x55\xd3\x82\x8b\x5d\x91\x0e\x32\xb7\xa0\xe2\x78\xf4\x48\xe6\xae\x29\x53\x81\x25\x4d\x55\x80\xd1\x74\x97\x24\x67\xb4\x98\x15\x81\x2f\xbf\xa3\x88\xb6\xa9\x58\x65\x05\x92\x28\x19\xf5\xa6\xec\x86\xbb\x09\x4f\xd7\x62\x33\x1d\x8d\x18\xce\xe6\xdc\x0d\x37\xac\xf8\x42\x20\x86\x17\x23\x2a\x9a\x22\xd3\xac\xd8\xb2\x24\xfe\x8d\x23\x5c\x91\xcc\x2d\x43\x96\xf0\x7f\x17\xf1\xf9\x47\x10\x8b\xec\x4e\x14\x71\xba\x6e\x70\xe3\xa7\x1a\x96\xdd\x52\x7f\xe6\x14\xeb\x25\x72\x46\xf3\xcc\x2d\x64\x0b\xc8\xca\x2f\xdc\x5f\xb3\x38\x45\x0e\x71\xf0\xc8\xc1\x4e\x20\x41\x58\x07\x46\xb6\x45\x07\x4e\x96\x57\x17\x6f\x17\x68\x82\x03\x6e\x86\x90\x26\x41\xdc\xf0\x19\x0f\xc4\x2d\x9b\xb1\x40\x54\x56\x7f\x70\xe4\x91\x9c\x15\x25\xff\x36\x15\x28\x73\x0b\x4c\x26\xd7\xd7\x18\x7a\xa8\x93\xb4\xae\x93\x96\xdd\xa4\x65\x9d\xc4\x20\x29\x73\x19\xf1\x31\xc9\x24\x9d\x61\x92\xa5\xbc\xa7\x51\xec\xb1\x83\x54\x75\x97\xba\xca\x0c\xb7\x2a\x28\xdb\xd7\x40\xf3\xbd\x28\x58\x28\x5a\x83\x4d\x0d\xb4\x74\x1a\x65\x4f\xf1\x0a\x39\xce\x19\x45\x29\x15\x6e\x58\x96\x88\x61\x57\x64\xdf\x65\x8f\xbc\x78\xc3\x4a\x8e\x30\x1e\x0e\x1d\x51\xb0\xb4\xcc\x59\xc1\x53\xe1\x9c\xd1\x14\x2f\x0b\xce\xee\xa7\x82\x0a\x57\x45\x22\x5c\x3d\x6e\xe2\x84\x23\xa1\x07\xc2\x70\x78\xc6\xdd\x34\x8b\xf8\xf7\x6c\x2b\x63\xd7\x5c\x20\x0f\x13\x67\x99\x45\x07\x07\x63\x3d\x22\x54\xd7\x79\x64\xa0\xff\x8f\x1d\x4a\xd3\xe1\x10\xa5\xb4\x55\x22\xae\xab\x02\xed\x87\x52\xab\x72\x10\xd3\x54\xcd\x54\x8c\x14\xd4\x6e\xac\x69\xbc\x42\x29\xbd\x28\xd6\xcb\x7f\xa0\x7f\x94\xe7\x68\xee\x8d\x5f\x2f\x9e\x7c\x72\x59\xe1\x7f\x94\xe7\xe4\x77\x45\xfd\x03\x5f\xb8\x7c\xcf\x43\xc4\x30\xd6\xfd\x51\xa0\xba\x43\xd3\xb9\xbf\x20\xbe\x87\x89\x15\x33\x39\x89\xb9\x84\x18\xdc\x90\xc3\xfe\x7d\x7a\x9a\xa8\x11\x9a\x05\xff\x70\x55\x10\xcf\xfe\xbb\xb4\xaa\x98\xaf\x93\x8c\xc9\xb8\xab\x85\x4d\xbc\x45\x7b\x97\x84\xcf\x3e\x4a\xe0\xa7\x53\x7b\x2b\x30\x71\xaf\xaf\xcf\x5b\xf4\xf8\x0b\x4c\x4e\x63\x27\xbd\xb1\x97\x8b\xe7\x1a\xfe\xbf\x4d\xfc\xbf\xdc\x33\xff\x71\xc5\x9e\xed\xa5\xff\x41\x73\x36\x5e\x7d\x31\xfe\x1a\x86\xce\xa4\xc2\x9f\xfa\xfe\xf4\xb8\x79\x79\x32\x6e\x5e\x9e\x8c\x9b\x97\xfd\x04\xe0\xe7\x3f\x3e\x55\xee\xa8\xbf\xf0\x51\x3f\x05\xa3\x86\x0c\xb5\xa0\x72\x57\x14\xf1\xf6\x84\xb7\x19\x3e\x64\x73\x1b\x4a\xb3\x59\x81\x26\xd7\xd7\xc4\xfc\xf3\x70\x50\x20\xc9\x1f\xe7\xd9\xe2\x78\x9c\x7b\xc4\x23\xde\x02\x4b\x09\x04\x88\x82\x7e\xa9\xa0\x20\x41\x9f\xd8\x3f\x77\x2c\x98\x7b\x26\xf3\x82\xb0\xdf\x76\x05\x0f\xe6\x93\x2b\x2b\x6e\xc9\xe3\x35\xc4\x5d\x13\xf8\x37\xf1\x16\x64\x99\xb0\xf0\x3e\xd0\xd8\xc9\x32\xd9\x71\xf5\xa1\x32\x14\xd9\x63\x1a\xcc\xfd\x97\xd7\xe4\x6a\x42\xae\x26\x0b\x12\x1e\x58\xda\x2a\x27\x62\xc5\x7d\x93\xcb\xbf\x7c\xad\xa2\x0c\x9c\x7f\xf9\xba\x89\x5c\x17\xfc\x20\xb1\xbd\x26\xfa\x5f\x1d\xcd\x15\xb0\x07\x44\xc8\xb8\xfb\x0d\xbb\x8f\x83\xb9\xff\xea\x35\xf1\x5f\x5d\x12\xdf\xfb\x5c\xc5\x6f\xd9\x9a\xa7\x82\x05\x73\x89\xd8\x2a\x2f\x4b\xe2\x07\xae\x11\xbd\xba\x96\xf0\xe4\x4a\x67\xc9\x0a\x96\x42\xb5\xaf\xaf\x89\x7f\x55\x97\x90\x15\xe1\x26\x8e\x82\xb9\x7f\x7d\x49\xae\x3d\x32\xf1\xae\x54\x7c\xc1\x23\x83\x5d\x43\x96\x2c\xd9\x66\x69\x30\x9f\x5c\x5e\x12\xff\xda\x23\xfe\x64\xa2\x12\x1e\xe2\x2c\xe1\x22\x98\xfb\x57\xaf\x64\x8b\xf9\xfe\x82\xac\x76\xe1\xa6\x8c\x99\x2a\x4d\xb7\xe2\x3a\x4b\x22\x15\x31\xf1\xaf\x25\xd2\xa6\xc2\x93\x57\xf2\x3b\x4e\xa3\x78\x9d\x05\xf3\xcf\xaf\xa1\x4a\xde\x82\xe8\xea\x43\xef\x5d\x7a\x92\xec\x05\x49\xe2\xf5\x46\xa8\xa6\xf6\x3f\xbf\x24\x13\xff\xa5\x4c\xd3\xf1\xaa\xbd\x27\x93\xab\xa6\x67\x20\x5e\x17\xe5\x5f\x5d\x91\xc9\xe5\x2b\xe2\x5f\x5d\x35\x09\x87\x60\x3e\xf1\x7d\xa2\xff\xe9\xf8\x3c\x4e\xef\x75\x5b\xbd\x9a\x10\xff\xf5\xa5\x8e\x3f\xf0\x24\xc9\x1e\x75\x35\xe4\xbf\x09\x60\xda\x72\x33\x1a\xbc\x05\xa9\x3b\xc7\xaa\xfc\x96\x15\x99\x6c\x3c\xa8\xaa\x04\x4a\xd9\xc3\x41\x0f\x96\xc9\xab\x05\x81\x8e\x53\xc9\xba\x35\x5a\xfd\xf5\x12\x10\x5b\x44\xbd\x9e\x90\x89\x77\xb9\x20\xf9\xae\xc8\x13\x6e\xf0\x02\xaa\xba\x3b\x9a\x28\xe8\x4c\x45\x8d\xb7\x20\x65\x9c\x3c\xf0\x22\x98\x4b\x24\xfa\xdf\x82\x3c\x6e\x62\xc1\xad\x7a\x49\xa2\xbb\x95\xf5\x16\x55\x85\x1e\xe3\x34\xca\x1e\xdd\x5f\xff\xbc\xe3\xc5\x01\x13\x5b\xd0\x56\x93\xf0\xfd\xf2\x57\x1e\x0a\x37\x2f\x32\x91\x89\x43\xce\xdd\x0d\x2b\xdf\x3f\xa6\x3f\x14\x59\xce\x0b\x71\x98\xd6\x22\x1f\xb3\x64\x21\xca\xdc\x70\x13\x27\x51\xc1\x53\xe4\xb8\xce\x48\xc8\x19\x0e\x5c\x6c\x97\x24\x4a\x2e\x41\x29\x8d\xb2\x70\xb7\xe5\xa9\x70\xc3\x82\x33\xc1\xdf\x26\x5c\x7e\x21\x27\x64\xe9\x03\x2b\x1d\x8c\xdd\x30\x61\x65\x29\xc5\x1e\x2a\x88\x94\x55\x40\xa8\x7a\x8a\xe2\x82\x43\x99\x81\x93\x88\xc2\x21\x79\x56\xc6\xea\x93\x2d\xcb\x2c\xd9\x09\xee\x90\x84\xaf\x44\xe0\x11\x91\xe5\x81\x57\x61\x97\xe5\x39\x4f\xa3\x0f\x19\x62\x98\x9c\xa5\x52\x84\x7a\x93\xa5\x82\xef\x05\xc6\x52\x68\x3b\xd3\xcd\xf0\x87\x5f\x1e\xb6\xc9\x1b\x28\xfe\x1d\x4b\xd9\x9a\x17\x58\x6c\x8a\xec\x71\x90\xf2\xc7\xc1\xdb\xa2\xc8\x0a\xe4\xa8\xe4\x41\x5c\x0e\xd2\x4c\x0c\xd8\x03\x8b\x13\xb6\x4c\xb8\x3b\xf8\x76\x35\x38\x64\xbb\x17\x05\x1f\xec\xca\x38\x5d\x0f\xbe\x7d\x3b\x78\x8c\xc5\x66\xc0\x06\x2b\x96\x24\xe3\x25\x0b\xef\x07\xe5\x2e\xdc\x0c\x58\x39\x78\xbb\x57\x95\x24\x03\xb1\xe1\xa9\xfc\x53\xf0\x17\xe5\x80\xc7\x32\x34\x60\x83\x6d\x5c\x0a\x76\xcf\x07\x71\x2a\x71\x16\x83\x30\x4b\x23\xa8\x23\x4b\x06\x71\x1a\x26\xbb\x88\x93\x41\x56\xc8\x8c\x83\x9c\xad\xf9\x60\xc3\x24\x3d\x83\xaf\xde\xbf\xf9\xf0\xf3\x0f\x6f\x07\x2c\x8d\x24\x85\x05\x4f\x23\x2e\x77\x05\x12\xd1\x9f\x77\x71\x71\x5f\x0e\xde\x65\x11\x77\x1d\x3c\x4d\xe9\xb3\x95\x76\xe3\x34\x16\xa6\x3b\x52\x5c\xc1\x16\x92\xab\x6f\x9a\x02\x77\x2e\xd4\xbe\x32\x54\xad\x48\xed\x26\x45\xce\x24\x72\x30\xc9\x0c\xfe\x88\x3f\xc4\x21\xff\x21\xde\xf3\xe4\x47\x26\xe2\xec\x78\xf4\x49\x4c\x0b\xb9\x27\xbd\x8f\xc5\x97\x2c\xbc\x8f\xd3\xf5\x9d\xc8\x8a\x16\x4c\xe1\x6e\xb3\xdf\x3e\x92\x58\x3e\x9f\x96\x3d\x9f\xb4\x7c\x26\xc5\x9f\x42\x75\xf2\x3a\x8a\x66\x17\x31\x81\xb8\x82\x97\x72\x13\xc0\xdc\xc7\x38\x12\x1b\x84\x09\x73\x37\x5c\x32\x0f\x84\xb1\x82\x90\x95\x96\x75\x67\x71\xca\x0b\xd8\x46\x36\xf1\x72\x9b\x0a\x1f\xbf\x00\x14\x0b\x37\xbc\x1d\x75\x17\xff\xc6\x55\xb4\x6e\xae\x55\x92\x89\x0f\xbf\x2b\xe1\x78\x7c\xaa\xaa\x7a\xfe\xc9\xbd\x48\x4a\x0a\x92\xa9\x39\x18\xd3\xf9\x82\x24\xf4\x09\x04\xf7\x32\x98\x3b\xff\xc3\xa3\x70\x72\xe5\x39\xc4\xf9\x1f\xb6\x8a\x5e\xad\x5e\xc9\x50\xb8\xbc\x5a\x5e\x2d\x65\xe8\x2a\x62\x9f\x5f\x45\x32\xf4\xfa\xea\xca\xe3\x91\xb3\x20\x09\x5f\xf3\x34\x0a\x9e\xca\x4d\xf6\x18\x9c\x79\x24\xcd\xde\x64\xc9\x6e\x9b\x96\x81\x4f\x12\xb6\xe4\xc9\xd7\x72\x8b\x24\x04\x2f\x02\xa8\x34\xc4\x7d\x99\xed\xbf\xcc\x8a\x88\x17\x6f\x64\xc1\x81\xf3\x3f\x61\x18\x3a\x24\x34\xcd\xa3\x20\x9b\x19\x9b\x72\x47\x72\xd3\x75\x9c\x06\xd7\x44\xf6\xce\xba\xc8\x76\x69\xa4\x32\x03\x6c\x13\xf9\x3e\x67\x61\x2c\x0e\x81\xfb\xea\x9a\x94\x59\x21\x78\x04\x10\x15\xd9\xb3\x7d\x5c\x6a\x3a\x3b\xf8\x97\x99\x10\xd9\xd6\x21\xdb\x2c\xe2\x2a\x6d\x95\xa5\x42\x85\xc2\xa6\x10\x11\x87\xf7\x56\x99\x20\xc3\xac\xb2\x62\xab\x3e\xe3\xf4\x81\x17\x25\xff\xd0\x8e\xdd\xc6\xa9\x0e\xb0\xbd\x0a\xb0\x9d\xc8\x60\x83\xff\x4e\xd5\xa8\x46\x5d\x36\xc1\xbe\x36\xfb\x49\x8e\x2c\xeb\xfb\x1b\x18\x5f\x2a\xa2\xe0\x25\x2f\x1e\xf8\x5d\xce\x42\xde\x60\xf9\x0e\x76\x86\xba\xd4\x24\x5e\xa7\x1f\x64\x29\x3f\xc5\x62\xf3\x85\x6c\x8a\x1a\xee\x2b\x1e\xc6\x5b\x96\x58\x31\x72\xf4\xd4\xf4\x7f\xb0\x23\x2a\x72\x50\xed\xd8\xad\x86\xeb\x4d\xac\x16\x95\x9c\xd5\x81\x36\xe7\x65\x30\x5f\xc8\x4c\x2a\x50\xf2\x22\xe6\x65\xf0\x94\x67\x71\x2a\x4c\x77\x9c\xf9\xa4\x60\x51\xbc\x2b\x83\x4b\x92\xc4\x29\x57\x55\x9d\x90\x55\x9c\x24\x72\x4c\xc9\x5f\x33\x52\x56\xf0\x3f\x87\x94\x87\xed\x32\x4b\x02\x27\x8c\x8b\x30\xe1\x4e\x05\x19\xcb\xe0\xe9\x34\xbf\x6f\xe5\x87\x3a\x95\x82\xe7\x65\x70\xe6\x57\x64\xc9\x0a\x8b\x06\x3b\xeb\x92\x15\x2a\xe8\xf7\x50\xd1\xb4\xa8\xae\x29\xd9\x64\x45\xfc\x9b\x1c\xbe\x50\xde\x6f\xbc\xc8\x82\x33\xaf\x22\xe5\x86\x45\xd9\x23\x34\xde\x25\xd9\xc4\xeb\x0d\x08\x14\x0d\x92\x8a\xac\x8b\xd8\x9a\x3c\x6c\x99\x3d\xf0\xaf\x98\x60\x12\x4b\xa8\x6b\x7c\x7d\x25\xff\x73\x9e\x19\xf8\xd6\x34\xea\x1b\xa4\x7a\xda\x78\x6a\xcc\xbc\x33\x93\x88\x3f\xf0\x54\xdc\xa9\x05\x52\x0f\x24\x8f\xc8\x8e\xd5\x10\xaf\x34\x62\xd3\x1c\xdb\x38\x55\x13\xd6\x1e\xb4\x5b\x56\x48\x3e\x59\xb6\xbf\xea\x8e\xba\x92\xff\x39\x75\xfc\x77\x56\xeb\x86\x49\x1c\xde\xcb\x05\x51\xd6\x73\x93\x3d\xf0\xc2\x7c\xc8\x61\xf5\x8d\x69\x28\xd9\x24\xdb\x6c\x57\xf2\x2f\x42\x11\x3f\xf0\x1f\xd5\x18\xf1\xbd\x8a\xc4\xa9\xe0\x05\x53\xeb\xfb\x53\xc1\xa3\x82\x3d\xbe\x7f\xe0\x45\xc2\x0e\xdf\xca\x94\x07\x96\x04\x3e\xbf\xbc\x78\xe9\x55\x64\x93\x65\xf7\x65\xf0\x54\x55\xa4\x54\x6c\x37\x54\x3f\x3b\xf5\xb3\x55\x3f\xb9\xfa\xd9\x48\x86\x18\xc9\x3f\x2b\xfa\xa4\xc5\x83\x42\x37\x0f\x88\x09\x44\xf1\x8a\xc0\xab\xc8\x9a\x7a\xe4\x81\x7a\x64\x49\x9f\xf2\x22\x0b\x79\x59\xbe\xcf\x25\x41\x30\xce\x75\xcc\x8f\xec\x11\xba\xb3\x89\x91\x9f\x7a\xf0\x37\x91\xef\x57\xab\x52\xca\x6f\x56\x3e\x10\x04\x17\x44\xd6\xec\xcb\xba\xe3\x4d\xcc\x9d\x9a\x45\xfa\x4b\xfe\x2e\xe3\x34\x7a\x2b\x3b\xb5\x8e\xd5\xed\x01\x93\x6e\xb3\x13\x11\xec\x67\x16\x15\x39\xc0\xa2\xdc\x88\x64\x7b\xa5\x5f\x14\x74\x7e\x58\xc8\xa5\x3a\x64\x02\x09\x3c\xfd\x88\xbe\x91\xcf\xd9\x42\x0a\x4b\xc9\x01\xd4\xc9\x44\xe0\x66\x81\x79\x8b\x04\x7e\x8a\x2d\xd5\x97\xad\xb9\x9c\x2f\x48\x4a\xbd\x69\x7a\x23\x1a\x74\xa9\x5a\x89\x0a\xca\x5d\xbe\x17\x3c\x8d\xd0\x99\x47\x9e\x2a\x92\xb8\x8a\x55\xe0\xa9\x52\xb9\x8a\x79\xba\x70\x23\x26\xd8\x0c\x15\xf0\xdb\xc4\x90\x88\x27\x5c\xf0\x41\x13\x61\xe3\x2a\x88\x8c\xc7\xa4\x4e\xa5\x2a\x3f\x0e\x2c\x3c\x84\x29\x35\x77\x81\x8d\xde\x91\x55\x48\x58\xa2\xae\x96\x74\x09\xa3\xb1\xa6\x9d\xa4\x74\xec\x43\x33\x09\xea\x4d\xc5\x4d\xdc\xd4\x49\x98\x3a\xc5\x73\xb1\x50\x5a\x31\x5d\x8b\x62\x38\x44\x6c\x3c\x26\x4e\xba\xdb\x2e\x79\xe1\x50\x2a\xc5\xe5\x6c\x35\x28\x86\xc3\xe2\x56\xa9\xe2\x0a\x8c\x2b\x76\x03\xf2\x2f\xa3\xe9\xc8\xd7\x5b\x6a\x52\xca\xf6\x0b\x69\xa2\x10\x96\x64\x47\x43\x43\xca\x96\x7a\x16\x25\x6c\x2a\x46\x23\x9c\xd1\xb6\x12\x2f\x9c\x8b\xcf\x76\x8b\xe3\xd1\xf9\x9f\x97\x2f\x5f\x3a\x98\x88\xcf\x76\x94\x7a\xc3\xa1\x18\x0e\xd1\x96\x6e\x6f\xa9\x37\xdb\xde\xb8\xd7\xb3\xf1\x76\xec\x4e\x02\x2f\x18\x6f\x31\x29\xe7\x62\x41\xb5\x3e\x1a\x39\xc5\x7a\xe9\x10\x7f\xb4\x55\x04\xe5\x64\xd5\x2a\xb5\x5d\xff\x5a\x8c\x47\x39\xb4\x02\x56\xb4\xcc\x50\xae\x35\xf3\xe5\x7c\xb5\xa8\xf5\xd1\x08\x93\xd1\x68\x85\x83\x93\x66\xd1\xd0\xc3\xa1\x95\x4f\x87\xec\xdc\x98\xa8\xc2\x72\x17\x56\x01\x57\xf2\x53\xd5\x07\x6b\xf2\x40\xcf\x14\x99\x20\xdf\xe6\x38\x5e\xa1\x7c\xbe\x5e\x0c\x87\xf2\xaf\x81\xa4\x67\xfe\x14\x74\xac\xd5\x03\x94\xd5\xa0\xa1\x67\x1e\xae\xda\xd8\x25\x7b\xb7\xa0\xe4\x27\x3d\x3b\x33\x9f\x72\x99\xc0\x24\x77\x41\xde\xa0\x77\x68\x43\xee\x51\x4e\x9c\xbd\x83\x65\xec\x41\xc7\x46\x2a\xf6\xe0\x60\x5c\x55\xa8\x6f\xa0\x29\x39\x8d\x24\xa4\x24\x21\xd9\x91\x2d\xc9\xc9\x86\x44\xf4\x7b\x68\x21\xf7\x87\xf7\x77\xdf\x7e\xf8\xf6\xaf\x6f\x7f\xf9\xf6\xfb\xaf\xbf\xfd\xfe\xdb\x0f\x3f\x93\x95\x49\xfa\xfe\xed\x1f\xbe\x68\x27\xad\x4d\xd2\xbb\x2f\xfe\xf6\xcb\x5f\xbf\xf8\xee\x2f\x6f\x9b\xe9\xff\x60\x94\xf0\xe2\x86\xc3\x7c\xd8\xc6\xe9\x70\x28\xce\xe8\x78\x3d\x1c\xa2\x3a\x8a\x0a\x4c\xd8\xad\xfe\x64\xfb\xe1\x90\x9d\x51\x0b\x80\xed\x29\xc3\x95\x6c\x65\xee\x72\x16\x6e\xd0\x23\xc2\x04\xb5\x4f\x30\x44\x8d\x2b\x22\xa2\xce\xb6\x22\xc2\xdd\x95\x3c\xa2\x67\x7e\x25\x65\xe5\xd3\xb1\x84\x32\x3d\x82\xa2\x9a\x75\xd2\xa7\x9a\x85\x56\x64\x8f\x96\x6e\x9b\xdd\x92\x79\x46\x32\xc5\x09\x32\x2b\xd7\x02\x7f\x6c\xb8\xaa\x52\x48\x4e\x75\xce\x33\xb4\xa1\x76\x6e\x77\x05\x42\x99\xda\x0b\x22\xb9\x50\xe8\xa3\xb1\xa7\x3d\xc8\xbd\xd0\xc2\x32\x54\xf0\x7f\xee\x62\xb9\xfd\x3e\xf3\x2a\x4c\x36\x1a\xe8\xf0\x31\xa0\xcc\x2d\x05\x0b\xef\x8f\xc7\xcc\x95\x22\x09\x0c\x3c\xf9\xd1\x0c\xc3\xe1\x30\xb3\xc7\x17\x0c\x92\x03\x3d\x3b\x43\x56\x0e\x09\x03\x1f\x72\x44\x3e\x97\x5d\xa6\xe1\xe9\x27\xa9\xf2\x49\xc4\x57\x6c\x97\x88\xbf\xb2\x64\xc7\xa5\x70\x60\xe4\xbd\xe0\x00\x04\x43\x41\x8d\xd8\x33\x1c\x22\xcd\x85\x37\xf3\x8d\x6e\xda\xb1\xbf\x70\x0f\xa4\xfd\xbd\x87\xf9\xd4\xd3\xae\x74\x53\xd5\x3c\xa3\x95\xac\x7e\xe2\xdf\x38\x7e\xea\x8f\xa7\x06\x3f\x29\x9f\xc9\x49\x92\xbe\x04\xe0\x62\x6f\x69\x7f\x33\x81\x8c\x08\xc3\x25\x53\x33\x59\x0d\xd2\x4c\x4d\x60\x3d\x62\x3d\xc2\x68\x0a\xeb\x63\x6e\xad\x8f\x24\x1d\xd1\x52\xf5\xd0\x3d\xd5\x4c\x70\x4b\xf3\x39\x5b\x80\x8e\xf6\xec\x1e\x4b\xb4\x05\xf5\xa6\xc5\x4d\x39\x1d\x8d\x0a\x1c\xd2\xed\xbc\x58\x10\xb4\xa3\x9b\x79\xb1\xc0\xc3\x21\xda\xb9\xaa\x53\x86\x43\xb5\x6e\x84\xc3\x21\x0a\xe9\x28\x24\x71\xf9\x3d\xfb\x1e\x85\x78\xa6\xa4\x98\x20\xa4\xd4\xbf\xf0\x66\x21\x5d\xcb\xe0\xd8\xbf\xf0\x00\x72\xbc\xae\x79\x62\x08\xe8\x4c\xcf\x0e\x87\xe8\x5e\x76\x01\x51\x78\x77\xae\xdd\xcd\x90\xb5\x1d\x85\x31\x26\xc9\x3c\x1d\x15\x0b\x1a\x4a\xea\x4f\x89\x57\x88\x50\x48\x15\x18\x1e\x0e\xcf\xfc\x33\x4a\x4d\x65\xdc\x7a\xe0\x00\x1d\xfb\xe1\xf0\xc1\x34\x29\x09\x49\x88\xc9\xce\x3d\xa8\xb8\x43\x1d\x57\x17\x29\x71\xcb\x52\xdf\x0e\x87\xe9\xad\xac\xd9\xd9\xfd\xf1\xa8\x0a\x4c\xe6\xe9\xb8\x5c\x60\x25\x5e\xd8\xf4\xc8\xac\xa5\xcc\xac\x70\x4c\xe5\x8f\xbf\x50\xf0\x23\x7f\x71\x3c\x7a\xe4\x7e\x38\x44\xc9\x3c\x5d\xd0\xed\xdc\x5b\x60\xe8\xaf\xaa\xaa\xaa\x4f\x33\x87\xde\x71\xf4\xfc\xb0\x73\x52\xbe\x66\x52\x72\x1d\xff\xec\x50\x39\xac\xeb\x2d\x23\xb4\xa2\x12\xad\x12\x53\x16\x93\xc3\xc6\x54\x8e\x2d\xa0\x33\x92\x39\x1b\xf9\x0b\xa2\x7e\xe8\x38\xc4\x53\x8b\xdb\x35\xa2\x64\xc3\xf0\x0c\xa7\x7b\xb6\x32\xff\x5e\x4d\x7a\x59\x21\x4c\xa0\xf7\x34\x22\x77\x34\x22\x1f\xe8\x8a\xfc\x4a\x57\xd3\xe7\x2a\xa6\x27\xb7\xaa\x5b\xcf\x0c\x90\x55\x6c\xcd\x01\x18\x45\x3b\x7b\xf8\x84\xb0\xe4\x84\x7a\x69\x82\xb1\x84\xc2\x9b\xf7\xc3\x21\x7a\x4f\x43\x4c\xc2\xdb\x0f\xc3\x21\xfa\x40\xe5\xf8\x81\x41\x85\xc2\x9b\xbb\xe1\x10\xdd\xa9\xc4\x5f\x87\x43\xf4\xab\x4c\x84\x59\x68\xb1\x4d\x35\x55\xdf\x4c\xcb\xc7\x58\x84\x1b\x93\x02\xdb\x3b\xfc\x14\xb2\x92\xab\x3d\x5e\xf0\x86\x7a\x4a\x46\x98\x42\x24\x6c\x0b\x64\xec\x58\xe7\x30\x5b\x46\x0d\xa4\x67\x51\x0f\xc0\xc5\xa4\x3a\xe1\x9f\x33\x74\x37\xa2\x6f\xc8\xaf\x23\xfa\x66\xd4\x01\xc7\x01\x7a\x2f\xd3\x3e\xf4\xa5\x55\xcd\x6c\x7a\x4f\x3e\x60\xd2\x4c\xa4\x3b\xf2\x2b\xae\x7e\xcf\x6a\x4c\x25\x53\x68\x3e\x65\x2f\x61\x6b\x81\xa6\xab\x26\x99\xed\x55\x72\x85\x71\x85\x2c\xa9\xff\x5e\xe1\x54\x52\x3e\x9f\x8b\x91\x23\x49\x70\x16\xe6\xb8\x27\x03\xfd\x70\x23\xd6\x31\x90\x6d\x99\x9b\xe2\x5a\x12\x3e\x6b\xa7\xf9\x98\xb0\x06\xff\xa3\x7d\x24\xbf\x2e\x78\x8e\x36\x66\xab\x12\xb5\x6a\xd6\x80\x49\x12\xeb\xfc\xef\x6b\x55\xb5\x94\xab\xe8\x53\x65\x09\x02\x9b\x96\xac\xc1\xe8\x46\xca\x1a\x52\x10\x9f\x3b\x7b\x67\xc4\xdc\x74\x41\x99\x1b\x4e\x72\x24\xf7\x40\x2b\x81\x6d\x21\x22\xea\xe4\x8d\x9a\xbc\x87\x4e\x5e\x91\xe5\xf5\x31\xfc\xe0\x21\x8b\xa3\x81\x77\x46\x69\xea\xee\x7d\x09\xef\xee\x21\x88\x89\x95\x72\x50\x29\x07\x08\x62\x92\x36\xd5\xb9\x43\x2d\xb3\x89\x39\x1b\x4b\xbe\x86\x54\x80\x3e\xa5\x01\x23\x8d\xfa\x5b\x50\xba\x99\x39\x7b\x27\x70\x0e\x0e\xc9\xf4\x0e\xb5\xb3\xd9\x02\x98\x44\x8d\xa3\x20\x51\x03\x08\x57\x72\xcf\x24\x31\x36\x05\x7f\x40\xf8\xe9\x9b\xe1\x30\x4c\x38\x2b\x3e\xc4\x5b\x9e\xed\x04\xfa\x46\xce\xb6\x5d\x2a\x37\xa0\xc8\x81\xdd\xfa\x36\x7b\xe0\x0e\xf9\xe7\x49\x7c\xc2\x99\x4c\xf8\xd2\x4e\x00\x4d\x80\x43\xfe\x82\x41\x8c\x33\x1b\x55\x32\xdf\x2d\xac\xee\xfb\x55\x76\x9f\xd9\x46\x0a\xca\x5d\x5d\x0d\xc2\x28\x77\x41\x75\x76\x3c\xc2\xde\x52\xb8\x8d\xaa\x4c\x32\xfa\xc2\xc4\x28\x1d\x07\x18\xf1\xd0\xf4\x78\x44\xce\xde\xa1\x94\xbb\x75\x2b\xcd\xde\x31\xb1\x71\x57\x49\x96\x15\xa8\x54\x4a\xdc\x0b\xc4\x74\xef\x1e\x8f\x3e\xc6\x81\x9a\x17\xb1\x9d\x6b\xe4\x7c\xb1\x8f\xcb\x81\x33\xb2\xe3\xb8\xab\xe3\x1d\x92\x50\x67\x95\x64\x62\xdc\x06\x70\xc6\xb2\x79\x07\x3d\x29\x90\x55\xa5\x3a\xa3\x98\x84\x54\xb8\xab\x2c\x15\xc7\xa3\x42\x23\x6b\x3a\x86\xea\x0c\x40\xbd\x27\x43\x0e\xd9\x51\x6f\xba\xbb\x61\xcd\x48\xdc\xa9\xa1\xbe\xa5\x6c\xbe\x83\xf3\x94\xad\x6a\x03\x15\x9d\xd3\xd2\x5d\x73\xd0\x11\x7f\x9b\xae\x32\x94\x10\x9d\x4c\x42\x90\x09\x48\x86\xa7\x29\x85\xe6\xd8\xb2\x3d\x4a\x49\xae\x9a\x63\xe4\x63\x52\x34\xf1\x05\xc9\xb5\x86\x1b\x57\x15\xb7\x9a\xbd\xd3\x07\x29\xe1\x76\x0f\x74\xfb\xa3\x68\x3a\xf9\x0d\xaa\x39\x88\x8d\xa2\xe9\x55\x95\x07\xfa\x54\xf7\xbf\x6b\x14\x8e\x24\xa3\xd0\xa3\x54\x34\xad\x49\x62\x0b\xb0\x51\x87\xc2\x0e\x7a\x5d\xc4\x91\xdb\xa8\xbb\xc8\xce\xc4\x59\x5a\x32\xb2\x35\x91\xa7\xca\x32\x92\x4b\xe1\x6f\x2d\xff\xc8\xed\x25\x59\xca\xfd\xa3\xe6\xb5\xd9\x6c\x13\x44\x2d\x6e\xcb\xf0\x13\x30\x35\x2d\xd6\x33\xd7\x56\xd7\x62\x60\x77\x94\x8a\xd9\x92\x9e\x79\x01\x3b\xa9\x1b\xa5\xa0\x35\x58\xce\xd6\xf4\xcc\x0f\x72\x7a\xe6\x63\xb2\x3c\x1e\x91\xdc\xb3\x62\xc9\x89\xc9\x1a\x44\x05\xcf\x08\x7c\xf1\x70\x88\x62\xfa\x30\x73\x56\xbb\x24\x71\x82\x6b\xac\x85\xc6\x51\x8c\x8f\x47\xb4\x1b\xd1\x51\x8c\x49\x36\x43\xe9\x88\xee\xa4\xec\xb3\x25\x46\x01\x4e\x69\x31\x43\x2b\x57\x7d\x8d\x68\x3a\x0a\x89\x70\x97\xd9\x9e\x3e\x89\x2c\x0f\x4a\xdd\xe1\x63\x03\x41\x36\x5a\x05\x5d\xe1\x00\x59\x80\x2b\xc9\xec\x46\x61\x93\x4c\x54\x8c\x44\x88\x71\x80\x98\x2c\x58\x2d\xaa\x50\xa2\xce\x0a\xea\xb6\x15\x30\xd9\x51\x48\x60\xd0\x05\x4c\xe6\x85\x18\xca\x46\x21\x0e\xd0\xca\x85\x75\x17\x3e\x89\x9d\x51\xcf\xda\xb1\x06\xa8\xf3\xcb\x3d\x65\xd3\x96\x05\x11\xd6\x58\xa0\xb1\x42\xe1\xe6\x2c\x8a\xe2\x74\x4d\x77\xfa\xdb\xee\xf1\x1f\x74\xda\x96\x08\x37\x4e\x53\x5e\x6c\xb3\x52\xd0\xbc\x19\xb8\x3f\xe8\x3d\x3b\xec\xd8\xa9\x5c\x6a\x33\x33\x72\x64\x87\xd7\x9a\xb4\x70\x10\xa7\x83\x95\x82\xad\x07\x9c\xd2\xcf\x1e\x8f\xde\x74\x35\x0f\x17\xf4\x44\x01\xb2\x9b\xed\x82\xdd\x3c\x94\x62\x6b\xd5\x42\x64\xc9\x81\x4a\x7b\x48\xe6\xab\x05\x26\x2b\x7c\xb2\xd8\xea\x92\x2c\x85\xee\x4c\x96\x35\xa2\xd9\xec\x34\x69\x1e\x2e\x02\x2f\x78\x3e\x3d\xf0\xa6\x66\x8b\x5f\x74\x45\x0a\x33\x79\xf5\x08\x9e\x0a\xa5\x40\x51\xa3\x52\x8d\xfe\x99\xda\xec\x07\xea\x8b\x88\xd6\x54\xa8\x21\xed\xc8\x99\xc2\x12\xb4\x63\x7b\xce\xa0\xed\x55\x61\xa4\x65\x4d\xe1\x6e\xe3\x74\x06\x7f\x83\x5a\x95\x81\x49\x6a\x03\xb0\xfd\x0c\xfe\x06\xb5\x2a\x43\x32\xba\x74\xcc\x24\xeb\xf4\x28\xad\x6d\x44\x81\xf7\xb1\x65\x29\x23\xd3\x99\x1f\xb8\x93\xeb\xf3\x54\xa9\x27\xa9\x2a\x09\x94\x7b\x34\x33\x9b\x2b\x40\xab\x76\x70\x1a\xe0\x78\x94\xb3\x2e\xc3\x15\x4f\x4a\xae\x4f\xe0\x84\xdb\x39\x4a\xd1\xaa\x42\x39\x8d\x4f\x70\x17\xe7\x31\xbe\xf1\xcc\xae\xd0\x52\xd8\xd4\xc1\x5b\xea\x01\x47\xa9\xd9\x81\xa6\x42\x16\x2c\x73\xdf\x76\x73\xcb\xc4\x3a\x78\x03\xb9\x53\xea\x61\x29\x3b\x4a\x71\x90\x11\xee\x82\xdc\x57\x21\x01\xdc\xa6\xa5\x6e\x49\xd7\x9c\xcc\x17\x98\x64\x78\x38\xb4\x54\x58\x72\x5d\x06\x31\xad\xe8\x17\xce\x34\x27\xe4\xad\x3e\xad\xb4\xf1\x90\x90\xcc\x54\x8e\x75\xa5\x2b\x9e\x80\x96\x09\x46\x1c\xeb\xb2\xd5\x77\x88\x61\xf2\x95\xfc\x23\xe8\xf7\x88\x11\xa6\xa4\x01\x7c\x3c\x0a\xf2\x2b\x62\x40\xaf\x18\x0e\xdb\x04\xeb\x95\xf2\xd6\xc3\xd3\x74\x34\xc2\xbd\xf5\xb1\x68\x60\xb5\xf6\x62\x2a\x1b\x77\x3a\x1e\xa7\xf8\x0d\x62\xf3\x74\x81\xa7\x67\x3d\xfa\x61\x33\xb1\xdb\x27\x26\x8d\x5d\x03\x33\x7b\xbf\x3e\x5d\x17\x6b\x56\x58\x46\x26\xe7\x08\x14\xc8\x7a\xd3\xa5\x8e\xc8\x46\x76\x54\x7d\x62\x75\x31\xd1\x8d\x97\x6a\x76\xc8\xf4\xb1\x05\x83\x63\x0b\x66\x8e\x2d\x58\x35\xfd\xd8\x96\xc0\xee\x8e\xe1\x50\xb1\xca\xb2\x0e\xd4\xa6\xa6\xe8\x64\xb1\x9d\xa1\x14\xd8\xb4\x25\x38\xc0\x37\xb1\x97\xf2\x8b\x09\x26\xa9\x62\xcf\x36\x9c\xe2\xd7\x1d\x40\x1c\xa0\x54\x2f\x33\x36\xac\x5e\x78\x5a\x12\x81\x42\x2b\xb2\xdc\x06\x14\x59\x7e\x02\xa5\x56\xcb\x95\x45\x68\xc8\xe3\x04\x75\x49\x5e\x69\x39\x9f\xac\x6c\x5a\xbb\xa0\x8a\x6a\x0d\x02\xc0\x35\x05\x5d\x50\x49\xcb\x4a\x6d\x00\xc8\xaa\x55\xa9\x2e\xa4\xae\x9e\x01\x82\x5d\x16\xe9\x1d\xfc\x5d\x83\xf7\x13\x81\x16\x71\x58\xc9\xa0\xae\xaa\x46\x63\xde\x6a\x62\xa2\x00\x60\x9d\xa4\xcd\xea\x09\x90\x66\x95\xb5\x73\xe0\x40\xa3\x94\xf5\x84\xea\x8c\x79\xbb\x81\x35\x46\xb5\xec\xd3\x13\x71\x61\xac\xa4\x80\x56\x26\xac\xb9\x4a\x85\xf0\x74\xfd\x0c\x15\xe4\xe1\x39\x5c\xe4\xb9\x95\xa8\xd5\x34\xf5\x42\x2d\x5a\xfb\xc3\x66\xc9\xe6\x8d\x98\x68\xf4\x33\x92\x81\x64\x56\x42\xf7\x70\x7f\x7a\xda\xde\x92\xe7\x29\xc3\xfd\xf5\x45\xbd\x54\x14\x08\xb8\x27\x1e\x43\x20\x4e\xb1\x5c\x7c\x54\x87\xc7\x69\x9d\x4a\xea\x54\x29\x1d\xd1\xb1\x85\xeb\xe1\x63\xb8\x1a\x64\x52\x22\x3f\x45\x46\xb8\x9b\x4f\x42\x5a\x48\xe9\xf2\x94\x0d\x23\x3e\x4e\xf1\x39\xab\x82\x9e\xa4\x02\x71\xac\x52\x09\x97\x1b\x58\x9a\xf5\x20\x18\x64\x28\x1d\xf1\x0b\x86\xfb\x50\x0c\x20\xa9\x32\xab\x46\x26\x17\x99\xe7\x18\x4f\xdd\x15\x24\x23\x31\x49\x28\x08\x61\xb0\xfd\x39\xdd\x6a\xd9\x71\xa2\xd9\x6a\xed\xea\xad\x96\x78\x76\xab\x75\x92\xd5\x6c\xb5\x42\xb2\xb5\xf6\x0a\x9f\xdc\x72\x49\x5e\x5e\xba\x05\xec\x73\xe5\x3e\x0a\xed\xa4\x8c\xa9\xf4\xc7\x9e\x5c\xf6\x6d\x6e\x89\x8d\xd4\x96\x53\x6f\x9a\xdf\xb4\x13\xa7\xa3\x51\x8e\xcf\x10\x33\x79\xe6\xf9\x02\xab\xe9\x21\xb7\x09\x0f\x37\x5a\x68\x60\xee\xc3\x2d\x2c\xe3\x66\xe7\xda\xe2\xbc\x19\x75\x42\x9e\x0a\x5e\x38\x24\xd5\x53\x7d\x24\x64\xc7\x23\xe6\x3e\x60\x4b\xb8\x6f\xe4\xe0\x59\x41\x13\x98\x8c\x89\x11\x7d\x47\x49\x9f\xd0\x1b\xa0\x06\x50\xcf\xc0\x3a\x07\x89\xa9\x41\x2d\x87\x6d\x4c\x9d\x6d\x1c\x45\x09\x77\x48\xa1\xd8\x43\x8b\x08\x2d\xed\x5b\x24\xa0\x94\x26\x8a\xd8\x44\x4f\xfb\x06\x75\x46\xb5\x7a\x0d\x07\x16\x94\x4e\xc5\xa4\x74\x59\x14\xa9\x96\x87\x51\xc3\xf4\x0e\x76\xab\x76\xb0\x6a\x1b\x4b\x62\xcd\xef\x9b\x25\x5a\x2b\x20\x5d\x65\xb3\xe4\xd6\xf6\x46\x33\x8e\x4e\x23\xb1\xbb\x11\xdb\x04\x39\x0e\x0e\x84\xbb\x02\x65\x85\x86\x71\xb0\xee\x7c\xa4\x14\xfa\x75\x5e\xd0\x26\xaa\xe1\xdf\x9c\x9f\x03\x8b\x99\x2f\x48\x26\xff\x94\xf4\xcc\x87\x1d\xa8\xce\xd1\xb6\x90\xd2\x7b\xf9\xd8\xde\xcb\x23\x46\xe3\xf9\xce\x0c\x0b\x10\xce\xc2\x99\x6c\x55\x55\x65\x86\x03\x1d\xc4\xc3\x61\xa6\x4f\x75\xe0\x3b\x48\xb5\x05\x09\x53\xe7\xa5\x15\x10\xdb\xd0\x0a\xb6\x51\x38\x5e\x21\xee\xc6\xe5\xd7\xa6\x91\xba\xe9\x38\x83\xd0\x49\xfc\x54\x4a\xb0\x83\x78\x85\x9c\x82\x03\x6b\x74\x28\xed\xc2\x64\xae\x4e\x43\x0a\x5c\xab\x25\x9c\x88\x97\x21\x4f\x65\x57\x3a\x67\xdd\x4c\x53\x5d\x5e\x87\x43\xd4\x82\x23\x54\x8d\x1a\x95\xc0\xcc\x0b\x74\xd4\x8d\x8e\x39\xa3\xdb\x99\x1f\x8c\x7d\x50\xff\x65\x05\x52\x2d\x9a\x9d\x68\x47\x72\x9a\xcd\x77\x8b\xe9\xee\xb3\xba\xfc\xda\x70\x0d\x4e\xc5\x51\x39\x1c\x16\xaa\x39\x9d\x9b\x0b\x51\xdc\x3a\x98\xd4\xdf\xea\xb3\x84\x73\x14\x1d\xf9\xe2\x46\x44\x03\xb0\x44\xa5\x8e\x42\x08\x76\x30\x5f\x66\x7b\xe7\xf6\x26\x8a\x1f\x06\xa5\x38\x24\x5c\xce\x18\x29\x13\x06\x7e\xbe\x1f\x94\x59\x12\x47\x83\x17\xa3\xf6\x60\x68\x9b\xc6\x8d\x5e\x4c\xf5\xa8\x97\x59\xda\xa8\xd4\x0e\xf7\x2a\xdf\x4f\xf5\x46\xdb\x9b\x6a\xec\xd7\x16\x76\x7d\x5a\x3e\x7a\x31\xcd\x1e\x78\xb1\x4a\xb2\xc7\x60\x13\x47\x11\x4f\x9d\xdb\x9b\x8b\x28\x7e\xa8\xff\x8a\xe8\xf6\xa4\x0e\x8a\xdf\xdd\x4a\x2c\x40\xdc\xc8\x01\x38\x07\x57\xa7\xcd\x63\xb6\x4b\x86\xef\xe9\x79\x20\x1b\x7b\x43\x5f\xdc\x08\xb6\x4c\xb8\x21\x5d\xb2\xd8\x71\x19\xff\xc6\x83\x72\xcb\x92\x84\x17\x53\x35\x54\x65\x63\x80\xf4\xac\x69\x96\x45\x17\xfa\x5a\x99\x83\xa1\x74\x89\xe6\xd6\x99\x36\xc7\x09\xa7\x13\xf7\x23\xb3\x79\x63\x8d\xc4\x88\x3a\x0e\x59\x37\x08\x6a\x65\xd2\x43\x13\xb7\x6d\x76\x64\x94\x3e\xcc\xbd\xc5\x70\x88\x1e\xe8\xfc\x81\x3c\x2c\x30\x71\x52\x87\xd2\xb5\xb9\x7a\xe7\xe1\x59\x34\xa2\x8e\x14\xb7\x9d\x11\x7a\x98\xfb\x8b\x91\x12\xfa\x46\x4e\xbe\x9f\x3a\x81\x53\xb6\xa1\x87\x43\x24\xe1\xb5\x60\xde\x64\xd1\xa2\x9f\xca\x85\x89\xc3\xed\x6c\xbe\x2a\x44\xc9\xf6\x90\xc7\x93\x79\x94\x10\x6a\x0a\x7a\x6c\xe7\xd0\x05\xc1\xb6\xa0\xc9\x02\x32\xae\x2e\x04\x3a\x69\x49\x39\x7a\x01\xe3\xab\x35\x04\x64\x17\x6c\xdc\x82\xe7\x09\x0b\x39\x7a\xa1\x3b\xf0\x05\x31\xa1\xda\xe6\xcf\x98\x55\x4f\x5f\x8c\xa2\x91\x33\x55\xdd\x25\x87\x96\x63\x59\x56\x0b\x35\x4c\xac\x6e\x3b\xb1\xdc\x34\x67\xdb\x3d\x10\x6f\x6a\x4b\x1a\x4a\x0f\xc3\x21\x42\x07\x8a\x0e\x66\xc3\xd5\x01\xc3\xc3\xa1\x53\x82\x79\x48\xa3\x09\x39\xcc\xda\x26\x31\x07\x1c\x74\xee\xec\xa1\x25\x71\x1a\x44\x63\x48\x73\x30\x76\x19\xf5\xc9\x81\x1e\x6c\x93\x13\x68\xb4\x3d\x5d\x36\x46\xec\x78\x6a\x5a\xf0\xd9\xb6\x51\x73\xf6\xc5\x68\x6f\x0c\x85\xa1\x07\xf4\xfc\x75\x46\xfb\xda\x6a\x58\xf5\x8c\x6c\xc9\x2e\x39\x81\x33\x3a\x8c\x5e\x4c\x9d\xdb\x81\x6a\xde\x17\xd8\xcd\x0b\xae\xdb\x77\xa9\xac\xdf\x9d\x4c\xb5\xa5\x43\x3e\xd2\xce\x55\xd5\x3a\xc3\x79\x87\x1a\x49\xcc\x52\xe2\xb0\x53\x9d\x54\x6a\xf6\x85\x3a\x70\xeb\xcd\x74\x28\x70\x2f\xcf\x41\x20\x2d\xff\x59\x88\x53\x51\x45\xcb\xf7\xb5\x26\x11\x6b\x2b\x71\x04\xc2\xcd\x18\xa4\x1d\x7c\xc1\x48\x46\xc7\x96\x3e\x1e\x82\x49\xb6\x46\x05\x56\xc2\xf0\x77\xdf\xfb\x1e\x26\x31\x55\x85\x1a\xeb\xd5\x46\x6d\x92\xdd\xc6\xc3\x21\xca\x68\xac\xf0\x27\x24\x54\x52\x72\x9e\x3d\x22\xdf\x23\xe3\x0c\x93\x1d\x2d\x2e\xe0\x3c\x7b\x77\xe3\xbb\xd7\xb3\x84\xfa\xc1\xee\xe6\x72\x86\x12\x3a\x21\xbb\xdb\x89\x3b\xb9\xae\xb5\x2f\xf1\xf1\x98\x8d\xfc\x1b\x1a\xcb\x89\x94\xd0\x89\x7b\x4d\x46\xa3\x0c\xe3\x20\xa1\xbb\x9b\xcf\xdd\xeb\xd9\x75\xe0\x7b\x24\x39\xa7\xa1\x56\xfb\xa4\xae\x65\x34\x3b\x1c\x26\x37\x9d\x08\x94\xb4\x41\xe0\xb0\x8d\x27\x82\xd5\xda\x49\x53\xa5\x46\xb8\xf7\x34\xee\x78\x16\x07\x19\xd6\x60\x32\xb3\x6e\x04\x19\x3c\x1e\x13\x0d\xd5\x69\x99\xe1\xd0\x3a\x55\xb2\x13\x8e\x47\x24\xd4\x3e\x23\xaa\x8b\x6c\x53\x30\xca\x30\x71\x44\xbc\x95\x4c\x28\x75\xb7\x59\xc4\x87\xc3\x33\x05\xf2\x07\x9e\xf2\x82\x89\xac\xe7\xf6\xc3\x87\x78\xcb\x07\x12\x78\xa0\xcd\x0e\x4a\xb8\x83\x20\x25\x6a\x57\x22\x1b\xe4\xc9\x6e\x1d\xa7\xae\x5a\x34\x3a\xe8\x80\xa8\x56\x0c\x3d\x51\xf6\x11\x4b\xaa\x82\xcd\xd2\x36\x4e\x09\x4a\xf5\x69\x10\x34\xea\xb9\x35\x82\xd8\x85\xdc\x78\xc5\xd4\x23\x49\x6d\x24\xc5\xbe\x9f\x46\xd9\x93\xa0\x09\x49\x68\x36\x8a\xcf\x9b\xac\x66\x49\x4f\x30\x19\x8d\x62\x7d\xcf\x36\xb9\xe1\x4a\x8f\x96\x9c\x51\x51\x9f\xe3\x15\x95\xee\x8a\x5a\x84\xa3\xfd\x2a\x51\xbb\x4d\x67\xf6\x60\x6c\x27\xe1\xc0\x27\x29\x75\x9c\x11\x80\xc0\x6c\x45\xfc\x9c\xe1\x0b\xd6\x2c\x78\x9d\x1c\xda\xd2\x30\x75\xe3\x34\xe2\xfb\xf7\x2b\xe4\xb8\x70\xaf\x62\xec\x53\x5a\xcc\xbc\x20\x35\xea\xab\x62\xec\xc3\xc1\xf7\x4d\x07\x81\xde\xf1\x65\xb3\x34\x48\x47\x32\xf3\x08\x39\xce\x88\x61\xb7\xdc\x2d\x4b\x51\x20\xbf\x43\xe3\x38\xab\x6d\x24\xd3\x4a\x6e\x31\x2d\xe9\x31\x6d\x37\x06\x86\x93\xe3\x8f\xb5\x8f\x3e\x1f\x76\x46\x9d\x9c\x90\x5a\xe1\x7a\x46\x9d\x9a\xaf\x9b\x43\xae\x53\x2e\xb3\x09\x22\x3c\xef\xcb\x32\xf6\xd5\x71\xd8\x70\xb8\x05\x2d\xf4\x70\xb8\x95\x9d\xa9\xe5\xc1\xce\xa0\xd3\x4b\x55\x5e\x6b\x0b\x6b\x86\x90\x6a\x75\x2c\xb0\xab\x66\x33\x0f\x9f\x24\x9f\x7b\x8b\xda\xf4\x26\x55\x43\xa6\xc6\xe1\xab\x5c\x6c\xdf\x4c\x6c\xf8\x24\xf9\x3c\x6f\x6c\xa4\x30\x36\x13\xfc\x13\x33\x80\xce\x17\x96\xb9\xc5\xb6\xbb\xb3\x64\x58\x50\xa4\x63\xe7\x6c\xe1\x3e\x8c\xb7\x8a\xc1\xa2\x2d\xb0\x5b\xf5\x45\x84\x9a\x3e\x23\x71\xae\x14\x08\x63\xa5\x3d\x20\xa9\x9a\x05\xcd\x60\x4f\x2b\x72\x26\x34\x0f\x30\xf5\x3b\x1d\x8a\x2b\x9b\x69\xf9\xbd\x7c\x5c\xb3\x3b\x9b\x9b\x63\xb2\xee\xeb\x80\xb5\xd5\x72\x17\xff\x70\xdd\x73\xef\x7f\x2f\x5c\xc1\x4b\x81\xd0\x7a\xee\x2f\xc6\x6b\xd9\xda\xae\xc8\xbe\x8e\xf7\x3c\x42\x2b\x8c\x6b\xe6\x51\xf3\xb3\x15\x06\xd3\x1e\xb3\xca\x7d\x85\x6c\x7d\x43\xe7\x84\xb0\x84\x4d\x9a\xd2\xfb\x42\x05\x8b\xe3\xb1\xdf\x52\xd7\x9b\x65\x3d\xf4\x06\x05\xac\x3b\xad\x29\x51\xe0\x99\x4a\x32\x9d\x0a\x66\xbc\xaa\xcb\x32\xbb\xb3\xf4\x71\x80\xba\xe0\x41\xb3\x39\x5b\x4c\x4f\x8f\x72\xe4\xae\x79\x94\xcc\xbd\x05\x49\xec\x41\x15\xd3\x64\x2e\x07\x4e\x20\x53\x5b\xc7\x80\x9d\xe9\x87\x52\x22\xb0\x39\x10\x4c\xf1\xf1\x68\xf4\x11\x6a\xe3\xf8\x10\xa4\xea\xa2\x40\x10\x57\xd8\x6a\xb5\xef\x6d\x6e\x76\xe6\x4f\xeb\xed\x98\x69\xbd\xce\x11\xc6\x70\x28\x4e\xe7\x4d\x03\xad\xe6\x0f\x6f\xcf\x1f\xc5\xc4\xc5\xdc\x5b\xb8\x0f\x98\xb0\xda\x48\xad\x95\x51\x4e\x27\x61\xd7\x9c\xb7\xa7\x13\x7c\x12\x31\x17\x96\xc9\xa1\xc1\xd6\xb2\x28\xf9\x05\xe1\xa7\xd2\x05\x43\x06\xa4\xce\x34\xda\x96\xf6\x64\xbe\x5d\x28\xf1\x81\x6b\x01\x73\xca\xb5\x8a\x87\x77\x45\xcd\xe1\x10\x6d\xdd\x92\x3d\x70\x84\xc9\x56\xe9\x10\x13\x26\x38\x5a\x19\x7d\xb2\xdc\x05\x90\x2d\x58\x6e\xde\x81\x64\xf8\x77\xd4\x2f\xb4\x92\x07\xe2\x11\xe5\xa4\x61\x72\x7d\x4d\x06\xcd\x1f\x0f\x3b\x06\xc5\x8f\x3c\x14\xc8\x23\x1e\x59\x93\x07\x19\x57\xf0\x52\x64\x05\x47\xa0\xef\x53\x24\x9e\x71\xb7\xbe\x4a\x32\x1c\x7e\x8d\x1a\x73\xfe\x9e\x33\x07\x53\x79\x75\xa9\x80\xcc\xb7\x24\x9e\x8b\xc5\x02\x93\x1f\xe1\xf8\x41\x99\x9c\x49\x00\x68\x13\xd2\x34\x43\xbb\x08\x52\xba\xea\x26\x21\xc2\xe4\x67\x5b\xb0\xfc\xad\xe3\xc0\xc4\x28\xfa\xe0\xa8\x34\xa1\xde\x34\xb1\xe9\x49\x70\xbc\x42\xa0\xf4\x48\x16\xb8\xe1\xea\x94\x0a\xd9\xdb\xf3\x8c\x8a\x11\x73\x53\x63\x60\x74\x3c\xfa\x67\x94\xb9\xe9\xf1\x88\x64\x8a\x8a\xc5\x84\xcf\xb3\x05\xc6\x4f\x29\x95\x01\x77\x55\x64\x5b\x52\xa8\xb0\xc8\xb4\x9d\x77\xbc\x92\xd8\x16\xc7\x23\x62\xca\x76\x40\xcc\x36\x73\x6f\x11\x44\x70\xcd\x5c\x19\x31\xf9\xce\x02\xf2\x89\x91\x33\x71\x16\xf5\x6a\x64\x0e\xd0\x8a\xe1\x30\xbd\xd5\xc7\x83\x25\x4d\xa7\x29\x2d\x48\x41\x4b\xbd\x3a\x3e\xc9\x62\x83\x94\x88\x2c\x28\xe0\x6a\x4d\xc0\xac\x19\xf5\x75\xdb\xd0\x7b\xfa\xe9\x01\xa4\x2f\xd6\x37\xe7\xc6\x70\xab\x06\x96\x74\xac\x0c\xaf\x2d\xae\x93\xc9\xa5\x17\x31\x7a\x70\xd7\x5c\x7c\xb1\xe7\x25\xc2\xd8\xdd\xc3\x79\x9e\x36\x67\x95\x93\x8d\xb9\x7b\xb0\xdc\x36\x51\x6c\x4f\x98\x7b\x50\x50\x07\x0b\xea\xa0\xa0\x0e\x35\x54\x46\x33\xc4\x6a\x6b\xed\xec\xe4\xe6\x43\x4c\xb3\xb9\x58\x90\x92\xfe\x86\x62\x30\x7d\x27\xa1\x0a\x1e\x94\xc8\xa7\xe6\x75\x09\x3d\x33\x1c\x22\x15\xa0\xa5\x6b\xca\x34\x33\xbf\x74\x45\x06\xe9\x22\xab\x53\xd9\xbe\xb6\x6c\x35\xf9\x55\x80\x86\x27\xf9\x43\x95\x5f\xfe\xd4\xa9\x32\xff\x19\xa0\xbc\x69\x0a\x3c\x1e\x15\x0d\xb7\x4d\x29\xc7\xa3\xcc\x76\x13\x5a\x30\xaa\x9c\x5b\x0b\x93\x64\x22\x50\x76\xcd\x81\xd4\x37\xb1\xeb\x02\xe4\xd7\x7c\x4e\x7e\x11\xbb\x32\x61\x07\x83\xfa\x26\x76\x6d\xc2\x16\x06\xf9\x45\x2c\x22\xa6\xca\xa2\x40\x53\xa2\x5a\x8d\xe4\xba\x79\xa8\x6a\x05\x50\x54\xee\x8e\xc7\x33\xb8\x00\x61\x13\x6d\x8c\x9e\x00\x5d\x3e\x09\x75\x22\xb6\xe9\xee\x81\x11\x19\x6e\x93\xae\x60\xc2\x06\x26\x34\x78\xc2\x0e\x9e\x16\x0c\xe0\xd9\x1d\x8f\xb9\x1a\x39\x1b\x1a\x37\xa7\x9a\xc7\x63\x67\xb4\xd7\x77\xc8\x48\x44\x37\x9f\x4d\x66\xee\x75\xe0\x4d\xb7\xee\x92\xaf\xe3\xf4\x07\x06\x17\x6f\xb7\x6e\x29\x8a\xec\x9e\x2b\x46\x1b\xab\xed\xfd\x09\x22\xc5\x6d\xb7\x4d\x51\x74\x43\x76\x33\x29\x18\x65\x0f\xfc\x43\x06\xf5\x1b\x45\xba\x7e\x58\x03\xda\xf1\x92\xec\xc0\x86\xd7\x7d\x26\x93\x3b\xf0\x26\xb6\xa1\x0d\x29\x03\x80\x81\xbd\x24\x7c\x8a\xd2\x9a\xf3\x5b\x45\x41\x0f\x8d\xeb\x08\xf9\x33\x06\xd2\xaa\x8a\x01\x77\x4d\xe9\xa9\x05\x47\xbd\x14\x2c\xa9\x37\x5d\xda\x86\x63\x4b\xd5\x05\x7b\xf2\x96\xdc\x93\xf7\xe4\x8e\xb2\xf9\x72\x41\x3e\xd0\x3b\x38\x8e\xf9\x95\xde\x59\xa6\x33\x72\x3c\xdd\x35\x67\x1e\x77\xed\x33\x0f\x60\xf6\x76\xeb\xfa\x04\x78\xec\x9d\x7d\x6e\xb1\xa7\x1e\x79\x4b\x95\x95\x12\xa5\xbf\xce\x1c\x91\xe5\x00\x53\x1f\x11\x78\xc1\x43\xf0\x01\x4e\x1a\xd5\x81\x02\x3a\x05\xf9\xe0\x1a\xe5\xa7\xec\x8f\xb7\xd4\x23\x7b\x1b\xa5\x3e\x76\x68\xe1\x5c\x07\x1f\xcc\xf9\x22\x1c\x2c\xa0\x1e\xa8\x0f\x5a\x53\x21\xa5\x86\xbb\xc6\xec\xe7\x78\x44\xed\xf1\x75\x57\x8b\x26\xa1\xee\x27\x7b\x2c\xde\xd3\xf7\xd4\x3b\xad\xf9\x3d\x5d\x8f\xfc\xe0\x3d\x7d\x18\xf9\xc4\xa7\xd4\x6a\x27\x73\xb4\x6e\x43\xbf\xb5\xa7\xce\x5b\x3c\x72\xaf\x83\xbd\x1d\xb5\x97\x51\x72\x6c\xe9\xa1\xb8\x27\x6f\xad\x01\xb8\x1f\xdd\x93\xb7\xa3\xf7\xf6\xd8\xeb\xce\x91\xbb\x96\x0c\xfc\xa6\xa7\x1e\x8a\xcd\xdf\x75\x37\x18\x9a\xd9\xbf\x31\xbd\x3f\x17\x0b\xf7\x61\xaa\x2a\xad\x24\xcc\x37\xf8\x78\x7c\x73\x73\xa7\xb8\xe7\x9b\xdb\x3b\xc5\x57\xeb\xfe\x91\xd5\xed\x8a\xb8\x72\x75\x9d\x37\x3d\xb1\xb8\xf5\x8e\xc7\xf4\x16\xd4\xa5\x6f\x64\xc3\x28\x54\x10\x62\x7b\x6c\x0e\xc4\x3a\x03\xeb\x0e\x98\xcb\x1b\x4c\xde\x5b\x83\x61\xfc\x10\xfc\x4a\x4e\x46\x10\x58\x8f\x8f\xdf\xab\xd1\x53\xe7\xbb\xb7\xf3\xad\x65\xbe\x93\x31\x02\x37\x29\xc6\xf7\x18\xff\x8e\x3e\x3c\xed\xb0\xe0\xb4\x5b\x3f\xd9\x87\xb8\xb2\x18\x48\x25\x09\x28\xda\xf3\x5b\xf5\xdd\x69\x93\x1e\x8f\x27\x71\xc5\xac\x6e\xfa\x33\xbb\xed\x51\xaa\x6c\xf8\x52\x6d\x3f\x92\x1a\xcb\x91\x54\x79\xcb\x90\x5b\xfe\xd3\x8c\x05\xd0\x02\x19\x0b\x9d\xb1\x30\x19\x0b\x95\xb1\xa8\xb4\x95\x06\xec\x08\xda\x23\xb0\x80\xc3\x7c\x9b\x5f\xa4\x3a\xa6\xcd\xd9\x75\xeb\x78\x63\x6d\xa9\x21\x03\x22\xcb\x2f\x26\x56\x63\xad\xdb\xb1\xcd\xa0\xd7\x26\x1b\xbd\xc5\x2b\x3b\x83\x36\x01\x26\xae\x97\x84\xf5\x48\x03\x5c\x4c\x4c\x79\x36\x0d\x56\xea\x43\x97\x0a\xd5\x2c\xbd\x64\x68\xf3\x8f\x36\x1d\x75\xe4\xc7\x09\x21\x0f\x23\x03\xdb\x6a\x0f\xef\x24\xc1\x26\x46\x36\x63\x2f\x29\xd0\xbe\x6d\x42\x74\xd4\x47\xbb\x44\x56\xb8\x2e\xce\xa6\xa2\x49\xf7\x5a\x34\xc0\x22\x6a\x95\xd2\xe1\x4d\x3d\xc3\xdb\x00\xc0\x62\x38\x4e\x2f\x26\x04\xfe\xac\x47\xa9\x2c\x1a\xe3\xd6\x96\xa8\x11\xb8\x7f\x54\x6e\x21\xed\xbb\x5e\xe8\x39\x2b\x11\xd2\xf1\x0e\xc9\xcd\xfd\x98\xb8\x0e\xaa\x5b\x65\xca\x9d\x80\xba\xa6\xd4\x6a\x99\xc6\xe8\x93\xc6\xd3\xb0\x91\x90\xc3\x11\x8d\x8d\x05\x68\x36\x0f\xc7\x31\x5c\x38\x94\x81\x91\xbf\x20\x1b\x19\x5c\x90\x48\xfe\x8c\xfc\x45\xa3\xf3\xdb\x99\x2d\xc7\x06\x6e\x23\xe5\x37\x34\x1a\x0e\xf3\x9b\x02\xa4\x43\x19\x13\xe9\x70\x98\xa5\x22\x4e\x77\x7c\xba\xa3\x08\x62\xc6\x39\xbe\x40\xd1\x38\xc7\xe7\x68\x33\xde\xe1\xd1\x8e\xe4\x14\x12\x2a\x73\x80\x1b\xdd\xd0\x7c\x38\x8c\x2c\x64\x79\x17\xd9\xe6\x59\x64\x91\x46\x26\x73\xdd\x02\x51\xb7\x05\x30\x66\x20\x4a\x87\x3b\x44\xb1\xfd\x33\x44\xb1\x7d\x43\xd4\x2d\x10\x65\x21\xcb\xbb\xc8\x36\xcf\x22\x8b\x34\x32\x50\xef\xd3\xcd\x70\xb8\x53\x2a\x78\xc0\xb3\xd1\xe1\x1a\x4f\x4e\x11\xc4\x8c\x77\xf8\x02\x30\x9c\x03\xb6\x51\x4e\x76\x4a\xd5\x57\x13\xb5\xb9\x91\x1d\xb1\xb1\x90\xed\xba\xc8\xa2\x67\x91\x6d\x34\x32\x99\xeb\x16\x88\xba\x4d\xeb\xca\x6d\x74\xb8\x43\x14\xdb\x3f\x43\x94\xd5\x52\x9b\x5b\x20\xca\x42\xb6\xeb\x22\x8b\x9e\x45\xb6\xd1\xc8\x76\x94\x26\xc3\x61\x4e\x69\x79\x3c\xd6\x73\x3a\x85\xc5\x70\x87\x47\x82\x14\x10\xcc\xf1\x88\xc9\x1d\xfb\x86\x94\x34\x6a\xe6\xb6\x82\xdb\x34\x70\x91\x84\xab\xec\xc5\xea\x77\xa9\x47\x24\xba\x3f\x66\x71\x4a\x1d\x50\x88\x38\x53\x7d\x9d\x48\xcf\xd9\x9a\x49\xc8\xdd\xb9\xdb\x78\xd6\x90\xb3\x84\x81\x55\xeb\xad\x87\x9f\x3e\xc6\x4c\x8c\xf7\x4b\xf8\xcf\xf5\xb1\xa3\x8f\x9f\x60\x21\xfe\xe1\xdb\x0b\xff\xd5\x54\xe8\x0b\xcd\x7a\xbe\xab\xb3\xac\x38\x45\x05\x3e\x47\xec\x62\x32\x4a\x25\x0b\x55\xa6\x7b\x59\xd9\x8e\xe5\xfa\x1a\x16\xd7\xd7\x67\xda\xdc\xf3\x62\x42\x3e\x8d\xfb\xaa\x17\xf7\xd5\x29\xee\xca\xc6\xcd\x3a\xd5\xd4\x47\x9a\x5a\x5f\xf0\x05\xd2\x0d\x68\x3c\x78\x12\x8f\x3c\xe0\x69\x06\x3c\xbf\xd9\x7e\x64\xa4\xeb\xd7\xd7\x70\xb0\xb4\x61\x7f\x45\x8b\xfd\x59\x3b\x52\x4b\xe5\xcb\xd4\x8e\x95\xa9\xbd\xad\x3a\x73\x39\xf3\x49\x49\x7d\x12\x52\x0f\x2c\x5c\xce\x50\x21\xfb\x2b\xbe\x35\x67\x13\xa3\x02\x4f\x8d\x1a\x3e\x9d\xa3\x78\x44\x0b\x3c\x2e\x24\x3f\x4c\xe7\xf1\xb8\x18\x95\x92\x27\xa6\xf3\x78\x41\x56\xf2\x67\x54\x02\x6b\x4c\x60\xb4\x17\x8d\x41\x73\x6e\xf4\xd2\x11\x7e\xda\xd1\x98\x14\x74\x5c\x90\x92\x4e\xa6\x66\x26\xc8\xc9\x57\xdc\xc8\xa2\x29\x0d\x47\x85\x1c\x2d\xb2\x05\x40\x0d\xa5\x69\x8c\x69\x48\x77\x23\x24\xb3\xe2\x26\x5f\x55\x73\xe2\xdc\x14\x16\xb5\x38\xb1\xb0\x38\xb1\x38\x61\x9e\xa2\xc3\x3c\x57\xe3\x0d\x1e\x6d\x48\xae\x2c\xbb\x4f\x38\xb1\xb0\x38\x71\x07\xd9\xea\x59\x64\x91\x46\x66\x71\x62\x61\x71\x62\x71\xc2\x3c\x45\x87\x79\xda\x44\xf5\x70\x62\x61\x71\xe2\x0e\xb2\xd5\xb3\xc8\x22\x8d\x4c\xf6\x16\xec\x9d\x7a\x85\x07\xa1\xb9\x0b\x61\x10\xc8\x30\xf4\x87\x87\xc9\xe6\x96\x32\xa5\xf3\x5d\xe9\x10\xae\xb9\x4e\x27\x93\x4a\xb5\x24\x0e\xa1\x59\x51\x3b\x7d\x6a\xf1\x72\xa6\xf4\xd0\x2b\x1d\xfa\x18\x6a\x30\xdc\xfc\x08\x6a\x99\xde\x18\x96\xac\x69\x4e\x1e\x68\x34\xdd\xdc\xd0\x95\x5c\x2f\x4c\x41\xb7\xaa\xa0\x19\xca\xa9\xca\x34\xde\xe0\x0b\x68\x2a\x8b\x21\x2b\x6c\xc1\x0a\x16\xae\x95\xc9\xbb\xb9\x35\xe4\xa2\xe8\xd9\xcc\x2b\x9d\x59\xb6\x9b\x2c\xf8\xd6\x34\xde\x8d\x6a\x3c\x53\x30\xdb\x3f\x53\x30\xdb\xe3\x60\x05\x8b\xd3\xca\xe4\xdd\xdc\x98\x2e\xd0\x05\xf7\x65\x5e\xe9\xcc\x24\x87\x1b\xba\x9d\x86\x5a\x9b\x86\xda\x9c\x36\x62\xfe\x91\xb4\xba\x81\x57\x18\x93\xe8\x8c\x3e\x00\xcb\x7a\x1e\xa4\x93\xf6\x60\xa5\xc1\x19\x50\x9b\xfd\x76\x59\x2a\x9e\xc2\x22\xd2\x61\xd2\x72\xa9\xe8\x42\x4e\x6d\xf9\x12\x71\xb0\xb2\x55\xe6\xf8\xe6\x56\x83\xe5\xc3\xa1\x25\x62\xd6\x3a\x78\x38\x01\x52\xb6\x8a\xea\xa7\xa0\xad\x62\xc1\x56\x30\xa6\xde\x34\xbe\x29\x1a\x8e\x3b\x9e\x4c\xe3\xd1\x08\x6b\x2b\x3f\xaf\x11\x32\x95\x12\xbd\xa8\x6f\x05\x28\x59\x33\x19\xd1\xc2\xf6\x9e\xa0\xd4\xd4\x26\x6a\x9e\x2c\x48\x68\x7d\x49\x79\x33\xa5\x09\xa5\xb4\x83\x67\x6c\x21\x99\x81\xcf\x01\x2b\x93\x95\xb6\x30\xc6\x07\xa5\x61\x91\x34\x34\x0c\x99\xb2\x3a\xa4\x4e\x4e\xa1\x06\x25\x5c\xcd\x92\xa1\xd0\x84\x8c\x5b\x21\x22\x99\x00\xa3\x65\xa5\x44\x65\x53\xcc\xd4\x04\xa8\x68\x5a\x5d\xdd\x8b\x38\x95\x13\x2e\x26\xe4\x5b\xd9\x3d\x75\x9e\x9d\xec\x2d\xd9\x5d\x96\xc7\x8c\x93\x83\x55\x73\x0d\xfc\x77\x8b\x2c\x6a\x11\xd6\x48\x1b\x21\xa5\x77\x4d\x36\x65\x9f\x5e\x2e\x17\xbd\x97\xcb\x05\x1d\xf3\x8f\x5e\x2e\x3f\x05\xb8\x98\x54\x46\x6e\x82\x78\xb9\xc0\xcd\xda\x9e\xc8\xf5\xe9\x9d\x94\x0c\x24\x48\x2d\x18\xc8\xc4\x0a\xee\xb9\x4e\x51\xd7\x51\x3e\xd8\xd3\x3e\x35\x03\x4e\x34\x2e\x03\x84\x25\x13\x84\xd4\x9b\x86\xcd\xcd\xff\xd0\x76\x69\x10\x2e\x86\xc3\xef\x90\xfc\x25\x09\xec\x6f\xe0\x67\xb2\x68\x0a\x20\x5b\xd3\x40\xcd\xc5\x78\xd2\x6d\x59\x5c\xe1\xf6\x1c\x15\x44\x8c\x3a\x8d\x40\x58\x9f\x38\xf6\x91\x59\x3b\x1c\xca\xa1\xd2\xec\x16\xbf\x7d\x6e\x4b\xa8\x2c\xd4\x9b\x96\x28\x1b\xe9\x28\x6c\x49\x47\xca\xf0\xb4\x9e\x8c\xbb\x11\x0d\xeb\x0b\xb8\xf3\x9d\x94\x6d\xca\xf9\x0e\x26\x9d\xf2\x2d\x74\x3c\xe6\x37\x99\xd2\x6e\xe5\xb7\x99\x52\x94\x6d\x6e\x62\x15\xb3\xb9\x8d\xb5\xf9\x77\x7b\x09\xcd\x69\x66\xd8\xe8\x86\xc6\x46\x0e\x4f\x89\xf1\x8a\x47\x69\x32\xdb\xba\xac\x08\x51\x4e\x36\x44\x10\x8f\x14\x33\x2d\xed\x06\x93\x73\x1d\x22\x67\x3e\x0e\x12\xa4\x1c\x0c\x09\x52\xc8\xa6\x0a\x93\xac\xe4\xba\x10\xd6\x11\x15\x19\x31\x62\x53\x6b\x27\x5f\xfd\x0e\x29\xbf\x16\xe9\xbb\xf7\x97\x3a\x32\xbd\x25\x69\xea\xe9\x4d\x9a\x5d\xb8\xab\x5c\xff\x69\x7b\x53\xed\x2e\x80\x8f\xaf\x30\x69\xb6\x01\xfa\x2c\xfd\x62\x32\xb5\x27\x69\xfc\xa9\x0d\x41\x57\x46\x2f\x94\x2d\x79\x3c\x8a\x2f\x26\xe4\xec\x64\x29\x20\x59\x57\x97\xda\xc6\x38\x79\x1e\xe3\x73\xf8\x7e\x8f\x64\x7f\x8a\x53\x4e\xe5\x7a\x5d\x03\x18\x4c\x3c\x72\xe6\xf7\x13\xdc\xa3\x1d\xf9\xae\x3b\xc2\x95\xd7\x29\x6d\x64\xa3\x5c\x4f\x91\x15\x59\x93\x07\xb2\x24\x87\x69\x38\x43\x4b\xba\xa6\x70\xf7\x79\x25\x45\xe7\x88\x8a\x51\x4a\x36\x54\x8c\x0a\x82\x72\xca\xf1\x0d\xda\x52\x86\x87\x43\x74\xa0\x39\xc9\xe9\x96\x6c\xe9\x41\x82\xc2\xad\x69\x1f\xe3\x00\xad\x0c\x82\xa5\x44\xb0\xa5\x7c\x94\x92\x9c\x72\x89\x20\xa2\x02\xdf\xa0\x8d\x41\x10\x91\x88\x6e\xc8\x86\x1e\x24\x28\xdc\xb8\xf6\x31\x26\xb9\x99\x1c\x5b\x33\x39\xa2\x9b\xc4\x4c\x97\xc4\x4c\x17\x05\x04\x2e\xce\x20\x04\xe4\x62\x92\xab\x3c\xc3\x21\xca\x29\x84\x14\x59\x64\xa3\x50\x0c\x87\x68\x43\x21\x04\xd4\x61\x12\x29\x8c\x20\x05\x41\x48\x51\x41\xb6\x7a\xd6\x6d\xe5\x04\x4c\xf4\x04\x24\xb9\x8e\xcd\x31\x89\x74\x6c\x04\x57\x60\x50\x69\x6f\xb9\xd0\x86\x44\x98\x94\xcd\xd1\xce\x96\x44\x24\x1f\x6f\xc9\x66\x1c\x61\x4c\x76\xa0\x98\x5b\x1d\x8f\xeb\xe3\xf1\xe1\x78\x5c\x62\xc8\x6f\x4f\xff\xd2\x48\xd0\x5b\xb2\xc1\x64\x35\x2b\x8d\x04\xb4\x25\x11\x0e\xac\xd4\x08\x93\x87\x26\x35\x6f\xa5\xca\x2f\xb2\xb6\x53\x37\xad\xd4\x0d\x26\x4b\x1b\xf3\xa6\x85\x79\x23\xa9\x68\xb4\x79\xcd\x88\xfa\xa2\xfb\xc4\x8a\x80\x7a\xc2\x39\x64\x66\x7c\xce\x1b\xff\x3e\x2a\x4d\xd9\xed\xea\xa4\xbf\xdb\x91\xea\x96\x87\x62\x1f\x71\xc7\xaf\x1d\xab\x0d\x94\x62\xb7\xc7\x58\x35\x9b\x65\x81\x7b\x45\x62\xfb\xa9\x0e\x12\x5b\x86\xbc\xd5\xc1\x2d\xb9\xf8\x8a\x09\x46\xdf\x12\x08\xef\xf2\x3f\x14\x71\x44\x7f\x20\x07\x30\x7b\xa0\xbf\x10\x38\x46\xff\x21\x61\x21\xdf\x64\x49\x64\x5b\xb1\x35\x5e\x38\x2a\x05\xa5\x7c\x24\xf7\x00\xd4\xce\x91\x2b\x83\x2e\x13\xea\xe6\x76\x0f\xf0\x4a\x02\xa9\xab\x79\xa7\x89\x6b\x99\xa8\x6f\xd9\x9d\xa6\x3e\xc8\xd4\xec\x04\xb1\x32\x65\xd9\xe9\x94\xda\x13\xff\x80\xeb\xeb\xf5\x9a\x4f\x73\x75\x53\x5f\x5f\xaf\xd3\xa4\x42\xe3\x9c\x96\x14\xeb\xe4\x2f\xf6\xbc\xec\x16\x25\xac\x27\x75\xf4\xc5\xaf\x67\x5c\xb6\x18\xf7\x08\x62\xce\xac\xfb\x59\x48\xd9\x75\xcc\x98\x9b\x06\x60\xfa\xaf\xec\x3d\xa8\xbe\xd3\xab\x4b\xfe\x5b\xb7\x68\x5d\xe2\x46\xa7\xff\xfc\x4c\x7a\x24\xd3\xc3\x49\x4e\xdf\x93\x03\x5c\x91\x7b\xce\xc2\xf4\x79\x4f\x31\xca\x4a\x45\x3b\x8b\x61\xda\x9e\x10\xa5\x54\x3b\x8d\x31\xa6\x4b\xf3\x74\x31\x1c\xfa\x54\xd6\xc5\x24\x1b\x3b\x12\x99\x86\xf1\x93\xd2\xb5\x53\xb5\x57\x81\x38\x6d\xa1\xf2\x8c\x9b\x19\x55\x70\x74\x5a\xf0\xe1\xe3\x05\x1f\x4e\x0b\x16\x59\xde\x53\x6e\x63\xdb\x0a\x6d\xa8\x9d\x9a\xf6\xb4\x62\x02\xe3\xd0\x38\x6b\xa5\x7f\x26\x07\x77\x97\x36\xdf\xff\x4b\x0e\xae\x28\xe2\xf5\x9a\x17\x3f\xda\x1e\x5a\xe9\xcf\xb2\xd1\xe5\x6a\xd5\x1d\xfe\xf5\xe5\x41\x75\x87\xb9\x7e\x61\x62\x33\xbf\x47\x1c\xec\x48\xc6\xfe\x02\xe8\x1d\x71\x77\x8f\xf5\x2d\x06\x78\x35\x45\x64\x79\x03\x1f\x29\xf8\x43\x0b\xfe\x80\xd5\x7d\x0c\x09\x5e\x49\xca\x8d\xb3\x19\xfa\x41\x4e\x74\x2e\x99\xd8\xc1\xae\xe5\x07\x84\xc1\x41\xc1\x56\x5b\x39\x21\x27\x4f\x32\xe1\x60\x97\x6f\x73\x71\x90\x5c\x44\x79\xcf\xb6\x0e\x01\x7e\xa7\x6f\xd9\xa5\x8a\xf8\x49\x86\x0f\x54\xbb\x55\xd6\x3e\xc4\x4f\xe7\xac\x68\x9c\x8a\x53\x51\x5f\x10\x98\xd6\x4e\xc7\xe5\x0c\x22\xa1\xfd\x05\xfd\x92\x65\xf7\x25\x5d\xda\xd7\xdf\x9a\xfd\xe7\x93\xe2\x52\x01\xab\xb4\x43\xd6\xac\xc7\x21\x6b\x36\x4f\x17\x53\xe5\xe6\x1d\x1d\x88\x90\x1b\x29\x7d\x50\x0c\x77\x39\x6b\xff\x41\x49\x93\xd0\xf1\x65\xa9\x5f\x07\x6b\x00\x19\x48\x93\xfa\x42\x5a\x39\x1c\x22\xe3\xcc\x94\x9a\x38\xe3\x4f\x41\x3b\x23\xaa\xdd\x7f\xb6\xbe\x3b\x2b\x80\x7d\x67\x08\x1b\x67\xa5\xcc\x21\xee\x64\x82\x5b\x37\x36\x0c\xea\x43\x07\xf5\xe1\xbf\x87\x5a\x51\x59\x1f\xa4\x5b\x94\xd7\x71\xe6\x50\xab\x8e\x38\x1e\x5b\xb5\xeb\xd2\xd9\x46\x76\xf8\x1d\xc8\x0e\x7d\xc8\xba\x07\x69\x80\xad\x1b\x49\x5b\x15\x6e\xe7\x6d\xd3\xd1\x8e\xfa\x77\x9b\x4d\xbf\x1d\x05\xe6\x80\xea\x35\xac\xe6\x6e\x18\x5c\xb1\x8b\x67\xa3\xb8\xbe\x7d\xe4\xe4\x7b\x87\x38\x0e\x0e\xfc\x4b\x12\xd2\x27\xb8\x65\x13\xb4\xb2\xc9\x18\x99\x2f\xfe\x8d\x07\x96\x0d\xbd\xfb\xea\xbc\xc4\xe4\x81\x15\x31\x4b\x45\x2b\x87\x8e\x73\x30\x79\x54\x76\x24\x76\xa2\x8a\x72\x30\x59\xb1\x6d\x9c\x1c\x5a\x69\x2a\xca\xc1\x6a\x81\xc8\x54\xd7\xf3\xb2\x71\x19\x65\x66\x16\x4c\x29\x38\xa9\x07\x00\xc9\x68\x87\xc3\xb3\xa2\xd5\x9c\xd6\x17\x2d\x8c\x00\xdf\xe3\x12\x59\x09\xf3\x05\x26\x0d\x32\x5a\x90\x02\xae\x2c\x03\x1a\x19\x68\xb2\x3d\x55\x24\xd4\xa9\x58\xff\x1a\x2b\x23\x64\x7f\x5a\x65\xaa\x58\x29\xec\x19\x17\x4d\xe8\x24\x8e\x5a\x2d\xeb\xbb\xfe\xf5\xb9\x86\x00\x35\x93\xf6\x8f\x96\xa9\xe1\xfb\xf1\x06\x39\xfc\xc7\x0d\x72\x68\x1a\xe4\xf0\x7f\x6f\x83\x98\xe9\x9d\x66\x1f\xf4\xc5\xa9\x13\x6e\x51\x76\x38\x45\x49\x3b\x99\x24\x96\x43\x3f\x96\x43\x07\xcb\xa1\x85\xe5\xd0\xc5\xb2\x9f\xc8\x18\x53\x1e\x2f\xe7\xfe\xe2\xb9\x91\x66\x80\x9b\x01\x27\xd7\x53\xe3\x4c\x09\x6c\x69\x48\x5d\x97\x89\xb1\x57\x6c\xa1\x76\x1b\x9f\x82\x5d\x48\xd8\x4f\xd9\x90\xc6\xbd\x20\xd4\xb5\xa1\xf2\xf0\x2c\x95\x07\x4d\xe5\xa1\xa6\xf2\x70\x4a\xa5\xd2\xa5\xd5\xa5\x1f\xda\x74\x1e\x9e\xa7\xf3\xd0\xa6\xf3\xd0\x4b\x67\xc3\xe8\x78\xf4\x45\xc1\x59\xd9\x70\x47\x63\xc2\x47\x7b\xa0\x7a\xb3\x76\xb8\x6b\xcb\x04\xb0\x0f\x89\xda\x30\x4d\x13\xa5\xf9\xec\xac\xca\xda\x7f\xba\x3e\xfc\xd3\x30\x12\x58\x29\x0a\x9e\x81\xd6\x5a\x04\x03\x25\xe1\x97\xac\x78\x0e\x1a\xd4\x87\x0a\xc2\xf8\x69\x4f\x2c\x35\x0e\x54\x45\x83\x36\xb1\x2d\x90\x26\x5b\xfb\x79\x04\x3b\x6b\x3b\xe5\x04\x14\x5b\xce\x82\xda\x5c\x18\x38\xcd\x1d\xda\x90\x74\xe4\x63\x23\xa3\x58\x8c\xb8\x95\xf1\x70\x9a\x31\xea\x66\x3c\xd8\x19\x41\x35\x3d\x88\xd3\xc1\x12\x27\x4a\xdc\x9a\xef\x16\xc3\x61\x13\x6e\xfc\xe5\x2c\xe7\xbb\x05\x95\x7f\xcc\x16\xa8\x01\xc2\x2d\x97\xae\x5a\xd8\x26\xf3\x64\x81\x2b\x54\xb4\xbc\x17\xd4\x5e\x08\x94\x67\x0a\xbe\xcd\xc7\x72\x47\x69\x79\x23\x20\x4e\x29\x98\x88\x43\xb8\x10\x05\x4b\x95\x99\x05\x0e\x1e\x0e\xbb\x51\xc4\x29\x78\x02\xee\x69\x1d\x3c\x2d\x69\xca\x1f\x07\x0c\x29\xb7\x17\x4b\x56\x72\x47\x8a\x7c\x61\x2b\x3a\x53\x02\x3c\xa4\x6c\x69\xfd\xb0\x0f\xd8\x1a\x9b\xf0\x8e\x72\x14\x9a\xad\x2e\x36\x7e\x1e\x8d\x73\x22\xe5\x47\xd4\x48\xd2\x53\xd8\x9a\xd4\x82\x38\x92\x62\xac\xbe\x92\x81\xa7\x2d\x50\x72\x00\x57\x38\x6f\x51\x8a\xc9\x0f\x08\x93\x5f\xda\x2e\xd3\xf5\xdc\xa8\x5f\x92\x00\xf7\xb0\xb5\x2f\x4a\x04\xae\x28\xfb\x1c\x51\x36\xb3\xd0\x3c\x48\x31\x1c\xee\xd4\x07\xfa\x8b\xea\x98\xe6\x61\x05\xe5\x94\x52\x57\x05\x64\xf7\x6f\x94\xe5\x4f\xad\xf3\xf8\xa7\xdc\xc1\x9c\xd2\xf2\x57\x55\x09\x88\x71\x08\xef\x75\x89\xe5\x9d\x51\xde\xe4\x69\x39\x2f\xfd\xf2\x5f\xc5\x6a\x90\x9e\xf9\x2d\x3c\x7f\x91\x78\x0e\x6e\x5c\xde\xf1\x44\xee\xb2\xd3\xf5\xf1\xa8\x91\x68\x2f\x9c\x1f\x21\xad\x6e\xa0\x16\xca\xbf\xca\xed\x06\xa9\x77\x0c\x8d\x76\x81\x64\x72\x63\xc9\xd6\xfc\x6f\xe3\xc2\x36\xb6\x25\xa5\x8e\xff\x79\x5c\x34\x86\xbd\x24\xa4\xef\x91\xda\xf3\x65\xb0\x93\x2b\x2b\x3c\x0d\x55\x7e\x83\x87\xa8\xef\x9f\x4d\x7e\x39\x54\x44\x91\xfc\x89\x1f\xe4\xde\x41\x85\x48\xe8\x6e\xb9\x60\x2a\x4e\x87\xa6\xea\x9a\x60\xd7\xba\xa1\x11\x3c\x6b\xf6\x7c\xf2\xd2\x08\x09\x69\x79\x5e\x8e\x7c\xbd\x9d\xd3\xdc\x22\xee\xf1\x07\x16\xaf\x10\x43\xb1\xda\x56\xab\xf2\xe4\x07\xc9\xe9\x56\x2f\xa4\x1b\xba\xd5\x8b\x55\x44\xb7\x3d\x8e\x97\x57\x34\x57\x7e\x62\x31\x59\xd3\x0d\x04\x05\x26\x0f\xb4\xbc\xc8\x95\xf8\x4c\x96\xb4\xbc\xd8\xa8\x30\xdc\xf9\xe8\x43\x13\xff\xc6\x49\xfe\xac\xcf\x22\x70\x5d\xd0\x7d\x08\x00\x93\xcd\xc7\x32\x2c\x7b\x32\x6c\x2d\x23\xba\xe3\x71\x6b\x1f\xa3\x58\x7e\x9d\x6b\x9d\x45\x31\xa2\x99\xb9\xd3\x1f\xcd\x8b\x05\xd9\xcb\x9f\x96\x79\xdb\x61\x38\x3c\x43\x87\xf1\xea\xf6\xe1\x78\x3c\x8c\x57\x37\xe3\x87\xe3\x71\x3f\x5e\xdf\x2e\xe1\xe7\x66\xbc\xd4\xcd\xfa\xb6\xf1\xc1\x97\xc3\xb6\xfe\x80\xc7\x1c\x93\xfb\x26\x7a\x03\xd1\x7b\x3c\x16\x98\x3c\xd2\xb7\xe7\x6f\x47\xf7\xe7\xf7\xd3\xc7\x1b\xe5\x3f\xfd\x91\xec\xe8\x3c\x25\xc5\x45\xb6\xc0\x60\xd3\xb1\xb5\x8f\x02\xcf\xb4\xba\xfb\x3d\xb9\x6b\x0e\x01\x9f\x39\xae\x7b\xdf\x7b\x5c\xf7\x9e\x8e\xb7\x1f\x3d\xae\x3b\x05\xb8\x98\x80\x9e\xe7\x8e\xbe\x1f\x75\x52\x48\x6f\x3b\x76\xdb\x50\x12\xfc\x01\x3e\x26\x8b\x69\xdd\x9a\x08\x06\xe3\x89\x8f\xe9\xd5\x4d\x73\xcb\xe4\x03\x39\x60\xb0\x49\xa8\x8d\x78\x54\xcc\xfa\x96\xee\x47\xef\x87\xc3\xf5\x0d\xdd\x8f\xee\x82\xd5\x2d\x3d\xc8\xcf\xd5\x0d\x3d\x8c\xee\x20\xd9\xca\xb0\xc7\x00\x68\x21\xdd\x63\x70\x5f\x5f\x37\x33\xae\x2a\xa3\x50\xda\xcd\x50\x4a\x77\x73\x6f\x41\x0a\xba\x9b\xfb\x0b\x92\xc1\x2c\xe9\x1f\xc6\x4f\x75\x6c\xd0\x0f\xe4\x96\x49\x1c\x72\x54\x9c\x67\x04\x15\x23\x1f\x9f\x67\x98\x48\xa0\x6f\xd3\x88\xef\x83\xc2\x3c\x34\x05\xf3\x50\x85\x55\x4a\x5a\x29\x57\xbe\x15\xca\x48\x49\x52\xac\x6f\x04\xa3\xad\x66\x37\xb5\x12\x69\x6b\xc4\x8f\x7d\x7d\x5b\xc5\x9a\x72\x73\x6f\x81\x47\x8a\xb5\xd9\x6a\xa8\xad\x66\x52\xa7\x58\x0e\xbd\x58\x7c\xc0\x22\xb2\xbc\xd1\x4d\x49\x29\x56\xf9\xa7\xb5\x9f\x42\x6a\xb4\x37\xca\x8f\xd4\x4f\xb6\x07\x29\x7d\x73\xe6\xa7\x79\xbe\x98\x6e\x20\xdf\x19\xe5\xc7\xe3\x76\x38\xdc\xe8\xe2\x29\x35\x84\xc8\x38\x53\x03\x4a\xdb\x35\x6a\xd2\xfc\x4e\x9a\xbf\x38\x1e\xff\x17\x19\x6c\x44\x83\xe1\x6a\x3b\x1c\xfe\xb9\xae\x23\xb1\x72\x10\x8e\x2b\x61\xd4\x7f\x88\x93\x79\x48\xb6\xb6\x4b\xe7\x9f\x6b\xf5\x56\xe2\x5a\x8f\x39\xb9\xbd\x6f\x39\x4d\xc7\xfe\x19\xe5\xb3\x6f\x8e\x47\xf4\x0d\x2d\xb9\x30\xae\xa7\xff\x40\x38\xc6\xc1\x1f\xec\x83\xac\x3f\x18\xbc\x44\x00\xbf\xfe\x46\xab\xe0\xcc\xd1\x64\x2d\x60\x90\xfc\xd9\x73\x7d\x4e\xbd\x29\xb7\x5b\x98\x63\x24\xe8\x4f\x73\xbe\xc0\xb6\xe0\xab\x1c\x9a\xfe\x11\x09\x53\x7d\x7d\x10\x8e\x83\x3f\x9d\xc6\x4d\xf3\xe6\xd8\xad\xbe\x6e\xaa\xab\x49\xe6\xb9\xdd\x34\x7f\x36\x6b\x54\xbc\x42\x27\xc7\x19\x52\xb4\xe1\x34\x96\xb4\x9c\x3e\x22\x24\xcc\xcb\x9a\xbc\x77\x52\x4d\x45\x5f\x82\x9e\x48\xe9\xb9\x20\xe9\x39\x12\x23\x1f\xe3\x4a\x2d\xe7\x7f\x83\x8b\x9b\x53\xe5\x49\x00\xfd\xa4\xef\x08\xeb\x89\xc5\x89\x9a\x9d\x02\x5e\x06\x09\x58\x05\xb7\x3e\x71\xc0\x8e\x47\xf4\xd3\xbc\x58\xc0\x30\xa4\x67\xbe\x55\xb1\xff\x55\x17\x41\xeb\xfb\x7f\xf5\x3d\x72\x61\x0e\x7d\x40\xaa\x02\x67\x15\x3f\x2b\xdf\x5a\xff\x56\xfd\xd9\xbf\x53\x7f\x76\x2e\x08\xb3\xeb\x9f\x36\xf5\x87\x3b\x9f\xe8\x27\xb7\xcc\x55\x53\x11\x5f\x55\xb6\xa9\xda\xdf\xfa\x1e\xe9\xff\xe9\xe4\x7a\x77\x4a\x7f\x9a\x33\xb5\xf0\xd5\x13\x53\xb6\x82\x35\x23\xd5\x3c\x4c\xad\x79\x08\x5c\xa2\x7e\x95\x4a\x05\xc6\x7e\x53\xf6\x9f\x5a\x6f\xaa\x2a\xfe\xca\x14\x7f\x15\x5a\xfc\x88\xa9\x30\x7b\x65\xda\x78\xc5\xa9\x9b\xad\xb3\xa1\x9a\x75\x23\x82\xb6\x76\x4f\xf4\x28\xf6\xae\x6d\xbd\x1e\x1c\xf2\xa1\xd4\xd8\x33\xa4\xc6\x9e\xa1\x30\x47\xb6\x85\x3a\x7e\xc5\xc6\x28\x49\x74\x7c\x9c\x8a\x1e\x07\xa7\xd3\xdc\x3a\x19\x2f\xe5\x8c\xb6\xef\x09\x4c\x95\xb1\xbd\xef\x5e\x9f\x97\xd3\x54\x9b\x45\xa4\x98\x14\xfa\x28\xb6\x90\x13\xde\x3e\x3b\x6d\x4c\x24\x44\xdb\xae\x60\x96\x83\xc1\x84\x14\x0e\x43\xe2\x91\xb6\x99\x44\x07\x16\xe5\x44\xc1\xc1\x99\x72\xcb\x6a\x22\xb7\xae\xea\xd4\x5d\xf5\x47\x64\x0b\x9f\xff\x27\xba\x82\x64\xb4\x30\xd2\x8c\x78\x4e\x9a\x49\x7b\xa5\x99\x94\x8e\xc5\x47\xa5\x99\x53\x80\x8b\x49\x65\xf7\x92\xe8\x1a\x45\xb5\x3b\xad\x20\xdf\x21\x18\xaf\x30\x5a\xd9\x7c\x02\x8f\xb3\xa4\x24\x1d\x75\xd0\xf6\xec\x6d\x06\x59\x85\x89\x19\xde\x66\x70\xe7\x44\x9c\x98\x0f\x75\x69\xb0\x26\xed\xdf\x9b\x23\x6a\xc9\x6a\xba\xde\xa2\x6a\xae\x24\xea\xed\xbe\x94\xba\xd5\x3b\xc4\xdf\xc5\x29\x67\xc5\x1f\xe4\x78\xe5\xa9\x40\x92\x6c\x8f\x30\x63\xf0\xac\xbb\xa5\x56\x27\xc4\x37\xc9\x74\x34\x8a\x9b\xe1\xae\x92\xe7\x31\xf0\x02\x53\x72\xfd\x04\x86\x76\xa5\x11\x76\xb4\xea\x85\x51\x96\x94\xee\x12\xfa\x28\xe5\x65\x09\x82\x6d\xd8\x7a\xa2\xcd\x4e\xc6\xe6\xd0\xaf\x74\xb5\x4f\x28\xb8\x0f\xcd\xce\x9b\x08\x4c\x4a\xb8\x22\x5c\x1f\x88\x67\x2e\x8b\x94\x3f\x82\x3b\x91\xe5\x28\xbe\x40\xc9\xd8\xc7\xa4\xac\xfd\xbe\x64\x55\xc5\xdd\x55\xea\x46\x5c\xb0\x70\x73\x3c\x22\xeb\xab\xef\x68\x1c\x5e\x06\x66\xe1\x06\xd9\xfd\xa8\xde\xd2\x85\x27\xe0\xbf\x07\x9f\x22\x9d\x08\xad\xd5\x78\xb3\x89\x93\x08\xde\x19\x04\x3f\xb1\x60\xd4\x59\x3f\x33\xdd\x3d\x32\x33\xeb\x0b\xbf\xa1\xde\xf1\x28\x6e\xa8\x77\xea\x9c\xe8\xdb\xf4\x81\x25\x71\x34\x88\xe2\x2d\x4f\x4b\xb9\xf1\x19\xac\xb2\x62\x20\xb7\xc1\x64\x00\x27\x6d\x03\x3a\x70\x46\x7c\xe4\x90\x81\x3a\x6c\x83\x6f\x61\x8c\x97\xec\x77\x8e\x49\xda\x7a\xe1\x98\xe8\x07\x8f\x9b\x17\x82\xd5\x8b\xc1\x80\xf5\x4c\x72\x7a\xf3\x42\x30\xe5\xe7\x05\x61\x2e\x9c\x57\x98\x98\x11\x1c\x6f\x34\x19\x28\xd7\x4f\x07\x2b\x2a\xce\xc0\x03\x82\x79\x57\x98\x0a\x0b\x81\x89\xb2\x30\x98\x28\xb8\xf7\x56\x0b\x1e\xa9\x11\x83\x52\x3d\x60\x0a\x52\xe0\xaa\xd5\xa4\x20\x1e\xd1\x6e\x3f\xe9\x0a\xaa\xd4\xda\x01\x45\x43\xab\x5d\x68\x07\xa1\x72\x0a\xd1\x73\xac\xd9\x7e\xf0\xb8\x71\x98\x39\x88\xd3\x01\xc7\x60\x15\x12\xb2\x24\x81\x13\x4d\xb3\xbc\x41\x26\xfd\x7c\xc5\x77\xec\xc0\x0b\xc4\xe0\x5c\x40\xae\xaa\xf5\x24\x95\x08\x52\x77\x13\x47\xb2\xa6\x85\x85\xa9\x20\x19\x36\xb6\x61\xc5\x3c\x6b\xb2\x24\x32\x4b\x6c\x41\xc6\x24\xc1\x96\x91\x1f\x09\xc1\x1f\x45\xad\x54\x2e\xc1\xbc\xaf\xa4\x21\xf8\x90\x1c\x8d\x70\xe9\x32\x50\x1c\xcc\x8c\x13\x0c\x1e\x1d\x8f\x28\xd5\x8e\xef\x50\x3d\x60\x1a\x2f\x19\xf0\x7e\x18\x0e\x50\x68\xa4\x8a\xdd\x78\x2c\xe5\x8a\x26\x7d\x38\xac\xb3\xe9\xb9\x85\x30\x9e\x7a\xb4\x7e\xf6\x71\x38\xd4\x4f\xae\x49\xda\xaa\x2a\x05\x81\x54\xae\x37\xad\xf6\xb7\x5b\xab\xf5\x2e\xa7\x35\x9c\x65\x2f\xcc\xc5\x62\x6a\x99\xe5\x28\xcb\x3a\x2d\x9f\x9d\x3c\x60\x3d\x1c\xa2\x9e\x57\xad\x39\x72\x2c\x07\x82\x2f\xb4\x9e\x72\x2f\x06\x6d\x8d\xe5\x8b\xdb\xda\x31\x20\x3c\xd5\xde\xf7\x34\xbb\x7a\x6c\x55\xbf\xc0\x6a\xde\x5c\xad\x9f\x62\xb5\x0e\x09\x03\x47\xbb\x90\x74\xba\x0f\xe6\x56\xd8\x8d\xd3\x92\x17\xe2\x8b\x95\xe0\x05\xb2\xe7\x2d\x18\x17\xdb\x35\x37\xa4\x37\x94\x49\x16\x28\xab\x81\xc4\xbf\x4b\xa5\xfd\xa2\xfc\x69\x63\x81\x3b\x9a\xbe\x8e\xfa\x36\x5d\x65\xf4\xd4\xfc\x56\x8f\x5b\x65\x99\x07\x77\x9e\xa8\xe3\x8c\x18\x89\x69\x73\xb7\xb7\xbe\xc7\x3b\x4b\x15\x67\x18\x39\x03\x67\x94\xba\xfa\x90\x53\x7f\xa9\x53\x4d\xfd\x21\xdb\x50\xb2\x8d\x0b\xf9\xd1\x9c\x68\xc9\x28\x48\xd7\x27\x9f\xc6\xac\x04\x25\xdd\x79\xab\x5f\x3c\xea\x8b\xa7\x4f\x95\x39\x4c\x41\x25\x4d\xe6\x31\x40\xaa\x90\x9d\x16\xd2\x72\xce\x8c\xea\x6c\x77\xda\x15\xe0\xb9\x93\x7d\xa4\x1b\x9c\x2d\xdb\x8f\x81\x0f\x39\x5a\x81\x38\x7e\xfd\xfa\xf5\xeb\x93\x0e\x68\x31\x0e\x81\xf1\xb4\xaf\xe9\x76\xaa\x1c\x78\x01\x3c\x36\xcf\x7f\x1b\x17\xba\xc1\xa9\xc8\x96\x0e\x87\xbb\x66\xb4\xa4\x98\xa8\xea\xd0\x27\x3d\xd6\x82\x5d\xfd\x2e\x36\xbc\x57\xa9\x15\x92\x3d\x8f\xbb\x4b\x26\xb6\x9d\xa1\x50\xb3\xff\xad\x66\xad\xa1\x61\xe6\x5b\xc3\x60\x83\x1a\x66\xe7\x66\x3b\xa1\x1d\x3b\xa0\x33\x0f\x37\xc0\x3a\x45\x75\x27\x24\xf5\x97\x48\x9f\x94\xa7\x03\x8d\xd1\x3c\xda\x62\xf0\x54\x98\xec\x6a\xee\x63\xd6\xff\xb0\x3d\x70\xb5\x33\xe6\x8e\x8e\xd5\xb6\x25\x35\xf2\x8c\xdd\x0b\xf0\xfa\x10\xaf\x6d\xcb\xe1\x39\xdb\xba\xa1\xa6\xc6\xa5\x35\xa5\xc9\x4c\x8c\xa9\xa6\xee\x62\x12\x68\xe9\x14\x2e\x2c\xa2\x26\x05\x13\xe3\x7e\x9a\xd2\x72\xc6\x64\xfc\x46\xbb\xa5\x0f\x1a\x0f\xd8\xa5\x7a\x45\x23\xac\xfd\x4f\x1a\x0e\xbf\x25\x39\xf5\xa6\x5b\xba\x9b\xe7\x8b\x69\x3e\x1a\x61\x50\x0e\xee\xc1\xeb\xd0\xd6\x3d\x50\xca\xb0\xf5\x74\x17\xda\x6a\x76\x2f\x59\xf8\x74\x4b\x9f\xd4\x97\x7a\x41\x53\x31\xef\xe0\xcc\x27\xf5\x00\xd0\xfc\x7a\x56\x9f\x8b\xc8\x9d\x42\xca\x11\x0e\xea\x18\xb2\x0f\x04\x39\x04\xac\x22\x3b\xb5\xcf\x86\xdb\xd3\x35\xb8\x1c\x91\x72\x5c\x5b\x07\xcd\x0c\x2b\xc6\x63\x45\x09\x4c\x1c\xd9\xbf\x63\x10\xf1\x9d\x20\xa9\x4e\xd6\x62\xe3\xb3\xdc\xee\x2c\xcb\xc0\xbf\xde\x9b\x6b\xb3\xcd\xd3\x69\xcd\x2d\xbd\x6d\x52\x3b\x37\x2f\xe5\x02\x9a\x58\x0b\xa8\xec\x74\xd3\xeb\xc9\xbc\xec\x9c\x98\x85\x16\x64\x48\x76\xb8\xc6\xb3\x85\x25\xd5\x5a\x67\x65\xb7\x6c\xe8\xd6\x74\xcb\xa6\x6e\x78\xbf\x6a\x1e\x51\x51\x3e\x4d\xb6\x7d\xc3\x4b\xd5\xeb\x63\x08\xf7\xb0\xd2\x6d\x64\x27\x83\xdd\x6f\x53\x82\x5c\x49\xb9\x2b\x05\xc3\x36\x3f\x2e\x1a\x1f\xf7\xfc\x71\x90\x22\x2e\x1b\x9e\x91\x42\x03\xbb\xca\xbb\x65\x89\x4d\x6e\xf7\x81\x17\x25\x1c\x45\x7b\xee\x2b\xf7\xd2\xe9\xc0\xd1\xf9\x82\x80\x00\x7d\x52\xd2\x27\x24\x68\x85\x46\xbf\xc1\x4d\xc0\x32\xb2\xaa\xd0\x63\x9c\x46\xd9\xa3\xfb\xeb\x9f\x77\xbc\x38\xe0\x8a\xf8\xaf\x2f\x83\xb6\x80\xdc\x82\x68\x91\xa2\x55\x3c\x71\x1a\x8b\x96\x4b\x7f\xae\x8e\x2b\x4f\x1f\x9e\x54\x19\x50\xf7\x74\xc5\x72\x56\x09\x0f\xdb\xea\xd7\x1c\xf5\x97\x11\xe6\xda\x54\x35\xba\x13\x7d\x31\xca\x7e\x28\x7c\x38\xe4\xea\x09\x70\x38\x99\x85\xa7\xbc\x01\x15\xa5\xdc\x94\x80\xd4\x4b\xde\xb5\x61\x2b\xab\x90\x20\xdc\x98\xaf\x22\xf5\xec\x63\xda\x94\xd3\x32\x74\x27\x92\x01\xb0\xd6\x83\x97\xe6\x8b\x44\x34\xed\xd7\x51\xaf\xfa\x12\xc8\x1a\x74\x58\x54\x58\xa7\x24\x64\x49\x4f\x37\xa6\x07\x9a\xdf\x4e\xe0\x61\x2f\xa6\xdf\xd3\x9c\x4f\x16\xee\x3e\xb0\xbf\x0e\x98\xec\xe9\x03\xb8\xbc\x6b\x5e\xa5\x25\x6f\xe9\x72\xe6\x07\x1e\xb9\xa7\xcb\x99\x17\xf8\xe4\x91\x7a\xe4\x3d\xdc\xab\x7d\xbc\xad\x1f\xc3\x1d\x0e\xdf\xdf\x82\x51\x2f\x38\xe4\x99\xaa\x9b\xe1\xd4\x38\x54\x24\x8f\x37\x0d\xa0\x9a\xf1\x9b\xf9\xe3\x42\x3b\xee\x91\xac\xf0\x26\x9f\x8e\x46\x5b\xbc\x56\x3d\xbc\x99\x3f\x8e\xb6\x0b\x3c\x7d\x1c\xd1\xbc\xbe\x1a\x6a\x95\xf6\x6c\xc6\xd5\xfc\x3d\x64\x94\xdb\xce\xf5\x7c\x37\x9a\x2c\xa8\x8c\xba\x5f\x60\xf2\x7e\x44\xa3\x1a\x97\x4d\xec\xbf\x44\xc4\xfb\x9b\x55\xa7\x22\xab\xf9\xfb\x05\x96\xc8\xd5\x8d\xcc\x78\x85\x0a\x59\xb9\xd1\xdb\x05\xc9\x20\x70\xbf\x20\x09\x50\xf1\x76\x41\x4a\x4d\x0e\x5c\x4e\x2e\x28\x4d\x3e\x59\xba\xac\xc5\xfd\x62\x44\xe1\x78\x90\x48\x5a\xda\x35\x29\x6e\xd5\xc5\x64\x8f\xd2\xc7\x4f\x36\x4b\x48\xcb\x0a\x5a\xb2\xbe\xc4\xbc\x99\x3f\x8e\x73\xdd\x11\x31\xcd\x46\x08\x22\x46\xf7\x8b\x71\x86\xcf\x51\x32\x2e\xf0\x85\x8e\x7a\xbb\x18\x17\x98\xac\x6b\x67\xb5\x3a\x14\x8f\x4a\x4c\xb6\x74\xf2\x1c\xfd\xb2\xc8\x9a\xe0\x4f\x55\xf6\x7d\x43\xd8\x6a\xfe\x7e\x1c\xa9\x57\x69\xcb\x11\x82\x2f\x49\x55\x89\xcf\x51\x31\x4e\xf0\x85\x8e\x7a\xbb\x18\x27\x18\x13\xd3\x4a\x21\xb4\x50\xb5\x3b\xab\x87\xde\x70\x68\x8d\x85\x10\xcb\xea\xef\x87\xc3\x16\xc0\xae\x29\x75\x0d\x36\x15\xf2\x2f\x84\xc7\xb9\xfa\x1a\xf9\xe6\x7b\xe4\xf7\x8d\xda\xf9\x6e\x94\x8f\xb6\x0b\x09\x32\xda\x2e\xa6\x2a\x47\x9d\xa1\xaa\xcc\xe4\xa6\xeb\xaa\x92\x6c\xb3\x7e\x18\xd3\xa8\xb7\x9f\x80\xab\xa8\x93\xa2\x8a\xa4\x6c\xcb\xa5\xe8\xc7\xc2\x7b\x87\x68\x6e\x1e\x38\xbe\x3b\x71\x2a\xe0\xb0\x57\xc1\xef\x7c\x7f\xc6\x7a\xcb\x40\xd8\x1e\x8a\xf9\x85\xb0\x14\x53\xcc\x48\x50\x4a\x31\x65\xe2\x2d\x2d\xb8\x5b\x8a\x62\x25\xe2\x2d\xc7\xcd\x93\x5a\x3a\x06\x19\xb7\xda\x24\xeb\x75\xb6\x3b\x10\x72\xe3\x60\x76\x76\x33\xc7\x73\x02\x01\x3e\x8c\x10\x97\x09\x1c\x1b\x69\x45\x8c\x78\xc0\x2b\x63\xe5\x0c\xf7\xe3\x81\x9d\x7e\x93\xed\x8a\x12\x81\x9c\x7b\xe3\x4f\xa6\xcd\x66\x91\xd1\xb9\xf3\x47\x96\x3a\xc4\xf9\x9a\x2f\x1d\xe2\xbc\x63\x85\x43\x9c\x2f\xf2\x02\xc2\x07\x87\x38\x7f\xdc\xa5\xf0\x37\x91\xf1\xbb\xb5\x43\x9c\x3b\x9e\x3b\xc4\x79\x1f\x0a\x87\x38\xdf\x67\x0f\x0e\x71\xbe\xe2\xa1\xf1\xb5\xa8\x56\xe4\x94\xce\x9d\x3b\xc8\xf8\x0e\xac\x56\x3e\xec\xa4\xc8\xff\x13\x8f\x64\x78\xb3\x93\xc5\x15\xb1\x44\xc5\x84\xcc\x58\xd0\xf2\xd6\x9f\xcc\xca\xb1\x3f\x09\x3c\x29\x0c\xfa\x93\xa0\x6c\xc4\x0f\xb8\x96\x27\x7a\x5e\xcb\x14\xc6\x63\xfe\x0e\x6b\xef\x02\xe6\x10\x58\xeb\x4a\x99\x13\x6c\x65\x0b\xa5\x73\xbd\xaa\x1c\x10\x5e\xd8\x7a\xd3\xa5\x06\x60\x0a\xe0\x5d\x96\x8a\x4d\x07\x24\x92\x20\x19\x32\xcb\x12\xd8\xec\x38\xd8\x86\xe0\x3d\x10\x83\x36\xc8\xc6\x09\xe0\xf7\x1b\x05\x5a\xb6\x12\xbf\x55\x91\x45\x2b\x32\xd1\x91\x27\xa8\xb6\x56\x69\x9a\xde\x91\xdf\x25\xe9\x9d\x0d\x14\xa7\x3b\x01\xee\x24\x6d\x88\x7f\xea\x9a\x23\x7b\x48\x5b\x38\x2f\x2e\xf1\xc8\x6f\xe5\xb8\xb3\x70\xde\xf1\x30\x4b\xa3\x2e\xce\x83\x05\xf1\xf5\x2e\x49\x7e\x86\x63\xbb\xcf\x7c\xcf\x6b\x81\xfd\xac\x8b\xee\xc0\xd9\x20\xb9\x04\x09\x67\x0e\xdb\x3a\x81\x93\x6f\x1d\x3b\xed\x07\x9d\xf6\xc5\x3b\x27\x70\x7e\x78\xd7\x4a\x7b\xb4\x51\x43\x77\x57\x71\x2d\x9c\xcb\x19\x01\x2c\xd4\xf9\xcc\xa1\x74\x3b\x4b\xe8\x99\x17\xd4\xc9\x55\x7d\x25\xc9\x3c\x5e\xd1\xcc\xee\x67\xdc\x0d\xe1\x27\xd8\x33\x9f\xaa\x4f\x99\x94\x76\xd4\xbd\x68\x46\x58\xb1\xde\xc9\x2d\x41\x89\x2b\x7d\xcf\xf7\x29\x62\x42\x4e\xd4\xa9\x71\xf2\xde\xb0\x82\xe1\x50\x20\x46\x1c\xf3\xe9\x10\x6e\x7d\x60\x02\x89\x6b\x75\x9c\x0a\x69\x26\xac\x93\x4a\x2b\xc9\x84\x9b\x2d\x93\x9c\x96\x72\x80\xca\x29\x0b\x93\xdb\x34\xbe\x43\x1c\x60\x11\x72\xc2\xc6\x49\x12\x97\xaa\x7b\xe1\x13\x06\x8f\x9a\xc9\x62\x03\xd3\x5f\xa5\x2d\xb4\xb5\x43\xda\x58\x3b\x8c\xb0\xa1\x4f\x4e\xb9\x62\xa1\x09\xfc\xcb\x87\x37\xea\xbb\x21\xb2\x49\x2f\xed\xf4\x46\x10\xac\x1b\xbb\x68\x79\x1d\x5f\x16\xd9\x63\xa9\xce\x0f\xc1\x2d\xfd\x6f\x59\xca\x67\x52\xa4\x87\x79\xc7\xe1\x51\x53\x13\xaf\x1e\xc1\x53\x61\x92\x22\x0b\x4a\x1f\x17\x66\xf4\x49\x55\x34\xf0\xf9\x25\xd9\x42\x4d\x83\x97\xfc\x8a\x6c\xb2\x5d\x11\x5c\xbe\xe4\xd7\x24\x62\x87\xe0\xd5\xcb\x2b\x7e\x4d\xb6\xb2\xfa\xc1\xe4\xfa\xf5\x84\xbf\x24\xff\xdc\xb1\x42\xf0\x22\xf8\xfc\xf3\xcf\x5f\xf2\x97\xe4\xc0\x59\x11\x5c\x4f\xae\x5f\x5f\xbd\x76\x27\xe7\x2f\xbd\x73\x9f\x5f\x02\x17\x9e\xfb\xb2\x82\xb2\x08\x67\x41\xe6\x13\xfb\xe3\xda\xfe\xf0\x3d\xfb\xeb\xb2\xf5\xe5\xcb\x6d\xb2\x24\x4d\xa3\x68\x3e\xae\xed\x0f\x89\xa2\xf9\xba\x6c\x7d\xf9\xc4\x91\x55\xd2\x08\x4c\xf0\xaa\x09\xbe\x6a\x82\xbe\x05\xe1\x13\x27\x62\x07\x9d\x4d\x87\x2e\xeb\x90\x3b\x91\x04\xc0\xa8\x90\x5f\xf6\x87\x6f\x85\x27\x75\x58\xae\x49\xb1\x31\xa7\x9c\x4b\x4c\x35\xd0\xcb\x76\x66\xd9\xa0\xce\x62\x01\xb7\x09\x9a\x0c\x3e\x71\x74\xc3\x6b\xbc\xd6\x97\x95\x69\xca\x3f\xbd\x41\x4a\xf1\x53\xda\xde\x20\xbd\x37\x6f\xf8\xb6\x77\x47\x29\xdc\x87\x91\xdb\xb8\xb4\xf1\xcb\xdb\xba\x0b\x97\xd6\x57\x97\xeb\x07\x38\xcc\xf3\x0b\xb1\x76\xbd\xae\x9d\xec\x3f\xef\x1b\x9e\x51\x78\x0b\x5b\x3f\x03\x47\x62\xac\x1d\xef\xc4\xf5\x0b\x07\xc3\x61\x5d\x5b\x4a\xad\x78\x30\xf3\x88\xdb\xaf\x55\xb4\x21\xad\xa4\xb9\xbf\x98\x95\x41\x62\x9e\xdd\xe8\xbc\x71\x11\x9e\xde\xc4\x6c\xca\x99\x35\xc1\xa0\x8d\xd3\x5b\x9c\x67\xf3\x6e\x31\x0b\x4b\x4f\x03\x42\xde\xae\x36\xc1\x1b\x0e\xcf\x10\x57\xee\xe4\x6f\xd0\x6e\xbe\x5d\x28\x0c\x10\xf2\x17\x8b\xd1\x6e\xbe\x1d\xf9\x4d\xa4\x0c\x4b\x7c\x17\x93\xe1\xf0\x14\xfa\x96\x86\x18\xc4\xc7\xa9\xb2\xb3\xd1\x10\x64\x43\x35\x04\x1c\xd6\xc1\xc8\xa0\xda\x13\x5b\x6f\xe5\x0d\x48\xb7\x1e\x38\xb7\x7d\x3e\x76\x2b\xde\x7a\x99\xc8\x7e\x22\xa2\xcf\x85\xbe\xae\xf3\x45\xe6\xca\xb2\xda\x9e\xf4\x57\xb4\x9d\x7a\x11\x4d\x73\xba\x82\x77\x4e\xfc\x60\x75\x73\x39\x9b\x04\xab\xe6\xe1\x92\xfc\x9c\x46\x55\x7e\xe3\xc3\x55\x68\x1f\x57\xcd\x3b\x18\xd6\xc0\x38\x1e\xe7\x39\xd9\x28\x6b\xb3\xb5\xf5\xca\xc6\xdc\x5b\x4c\x37\xf6\xb7\xb6\x48\x7b\xa0\xeb\xf3\x6c\xbe\x59\x4c\x0d\xeb\xa1\x74\x33\x4b\xdd\xb2\x59\xeb\x85\x9a\x02\xf5\xd2\x4f\xd6\x18\x07\x86\xcb\xd4\xd0\x46\xda\xd0\xd0\xb5\xf0\xa1\xa0\x81\xb3\xd4\xb0\x4a\x2c\xd5\x90\x46\x46\x55\x58\x81\x19\x34\x48\x41\x26\x31\x28\x95\x80\xa2\x00\x9b\xa1\xde\x02\xbd\x3c\x6f\x03\x5f\x5c\x2a\x70\x33\x12\x86\x43\x00\xae\x85\x0f\x0d\xdd\x08\x23\x12\x9c\xe8\x0a\x35\x0b\x22\xf2\x30\x79\xb8\xa5\x60\x24\xb1\x13\x5c\x63\xb9\xeb\x24\xca\x4a\xea\x24\x53\x7d\x93\x14\xb1\x83\x4e\x51\xd5\x55\xf1\x57\xe7\x76\x0a\x2c\x52\x3e\x24\x4c\xce\x33\x17\x9a\xc2\xa0\xeb\x6b\x87\x4b\x5c\xc3\xea\xd6\xf8\x18\xf4\x4b\xac\x49\x91\x4d\xd1\x02\xf4\xf4\xa3\x52\xe4\x00\x2e\x79\xdb\xaf\xae\xc4\x2b\xb4\xa4\x7b\xb2\xa7\x80\x4c\xca\x15\x08\xce\x75\x25\xb7\xdc\x63\xd2\x74\xd8\xf1\x68\xf7\x09\x8e\x57\x68\x7d\xe3\x4b\x6e\xdb\xd4\x6c\xaa\x0c\x43\x2d\x4c\x53\x8b\x0c\x9b\xda\x11\x6a\x75\xf0\x65\xe0\xeb\x0b\x68\xf7\xa7\xb9\x21\xbc\x1f\x1d\xce\x55\x07\x8c\xd0\xfd\xf8\x2d\x3e\x5f\x63\x72\xa0\xad\xf1\xd5\x6a\x7d\xa5\x02\x78\xae\xf4\xf5\x79\x5f\xf9\x20\x41\x9a\x81\x34\x6b\x8f\xa3\xce\x28\x1a\xad\x71\x60\x13\xf7\x80\xf5\xdb\x34\x7b\xf3\x36\xcd\xfe\x8c\x2e\x2d\xb1\x87\xa4\x9f\x7c\x9b\x06\x96\x09\x52\xbf\x82\x81\xa7\x16\x4f\x93\xeb\x8e\x52\x45\xd5\xd6\x47\x28\x25\x76\x3c\x89\xd5\x80\xfa\x9e\x6d\x79\x49\x62\x39\xec\x20\xa8\xdf\x5d\xea\xbc\xae\x71\xb2\x9e\x9c\x26\xc3\x02\x24\xec\x77\x22\x7a\x17\xa2\x5e\x88\xb9\xbf\x20\xe6\xf9\xa2\x66\x2d\x11\x36\xee\x05\xbc\x29\x5a\x3f\x35\xa5\xd6\xc4\x47\x9e\x3c\x70\xd9\x85\x6f\x92\x2c\xbc\x9f\x39\x83\xcf\x72\x27\x70\x1c\x70\xed\x70\x92\xf8\xd9\xb7\x4e\xe0\x7c\xf6\x8d\x33\xb5\x5a\xa4\xbc\x31\x53\x78\xb6\x1d\x39\xc1\x67\xef\x82\xcf\xee\x9c\xd1\x2e\x90\xf1\x11\x3b\xcc\xc2\x9b\x89\x9a\x92\x3a\x59\xa6\x39\x9f\x2d\x07\x9f\x45\x03\x67\xd4\x44\x01\x1a\xd9\x9a\x33\x95\xe8\x04\xc9\x70\x28\x23\x75\xbd\x8f\xc7\x33\x1d\x21\x87\xcb\x2c\x34\x01\xe7\xb3\xa5\xa3\xf0\xfd\x5c\x67\xe9\x40\xfc\xf9\xb3\x7f\x3a\x81\xfc\x0b\x30\xce\x67\x3f\x3b\xcf\xf6\x5c\xa5\xac\x2c\x6c\x8d\x08\xd8\xd8\x04\x4f\x46\xfa\x05\x9d\x08\x69\x06\x81\xfe\x6e\xb7\x54\x70\xe6\x93\xa6\x80\xb6\x1a\x45\x6d\x45\x2c\x2d\x8a\xe7\xc0\x3b\x42\x20\x67\x29\x9c\x72\x6e\x53\xd6\xa7\xcb\xbe\xfe\x8f\x75\xd9\xfa\x06\xf4\x3e\x18\xfb\xe4\x20\xff\x48\x7a\xe1\xc0\xa6\x9a\x5a\x1a\x18\xfc\x24\x5c\x95\x72\x3c\x8e\xfd\x33\x2a\xdc\x3d\x78\xae\xda\xd3\xb1\x4f\x78\xef\xc5\xf6\x96\x45\x20\xdc\x7e\x8e\x57\xe8\xcc\xa0\x51\x4f\x6d\xc2\x9a\x97\x28\x27\x07\xc3\x61\xfb\x1b\x61\xac\xf0\x37\x92\x40\x4a\x79\xe3\xb1\x41\x26\x5a\x9e\x16\x6b\x3b\x6c\x73\xd3\x22\x35\x2e\x1c\xf4\x7d\x71\x78\x47\xe8\xf0\x91\x2c\x3f\x2b\xcf\xc5\x84\xd7\xb7\xca\xc1\x3d\x56\x7f\xdd\xaa\x8a\x4b\xe6\xf3\xa6\xc8\xca\x72\xc3\x62\x8b\x9b\xa8\x8a\xb2\xc6\xf8\x14\xbc\xe2\x3d\x4f\xef\xbf\x40\xe7\x29\x7d\x8a\xc9\x9a\x76\x7a\x8e\x56\xa2\x0d\x59\x1a\x6a\xdb\xc4\x13\x0e\xbd\xd2\x5f\x19\x26\x3b\xc6\x86\x86\x07\xe6\x75\x37\xd2\x33\x4f\x62\xdf\xa5\xcf\xe4\x6f\xc6\x0d\x3d\xf3\x25\xa4\xda\x18\x34\xd7\x88\x7a\x8e\x4c\xe4\xb6\xa0\xf1\xb4\x80\xb0\x1b\x1a\xbc\x46\xe6\x17\xea\x76\x4a\xb6\x13\x8a\x96\xe6\x6e\x53\xaa\x5e\xb9\x35\xe5\x58\xcd\x70\x5a\x90\xd5\x45\xfd\xc5\x29\xcb\x54\x59\xa6\xb9\xd2\xc3\xdb\xae\x4a\x94\x6d\x27\x33\x66\x44\xcc\xb2\xa1\xd6\x3e\xa3\x0b\x65\x43\xad\xa7\x4c\xe3\x41\xf9\x99\xfa\xd5\x76\x79\xe6\x35\x07\x85\xde\xb2\x12\xd4\x67\xef\x84\xb5\x9d\x51\xd7\x36\x85\xec\xc4\x71\x2c\x61\x2d\x4b\x4f\xb0\xdf\x85\x4a\x35\x6f\xa4\xed\x9d\xda\x10\xc8\x12\xaf\x25\xc1\xa3\x6c\xca\x8c\x7b\x9b\x98\x78\x58\xe3\x87\x2f\x6b\x1c\x56\xf1\x0a\xf5\x21\x3e\x18\xc4\x49\x1b\xf1\xa1\x85\xd8\x23\x89\x85\xb8\x9e\x08\x24\xc1\x15\x6b\xec\x46\x99\xe5\xa9\xc9\xee\x63\x73\x5f\xae\x77\x24\x09\x73\xe5\xce\x31\x23\xc6\x21\x30\x64\x5a\xd1\x92\x0e\x87\xa4\x1d\x4e\x5f\x77\x4b\xf0\x24\x6b\xa5\x38\xbb\xb6\xaa\x01\xc7\x56\xfe\xe7\x1e\x19\xe8\xff\xbb\xaf\x3c\xec\x90\xba\x1f\x02\xbf\x66\xf0\x35\x9a\x13\x2e\x2f\x39\xf8\xe7\x41\xf7\xb4\xb0\x22\x13\xcf\xef\x8d\xbd\xea\x8d\x7d\x79\x12\xeb\xec\x4a\x3e\x28\x45\x11\x87\xc2\x99\x32\xb7\x30\x3a\xf0\x94\x32\x34\xb9\xc2\xa4\xa0\xcc\x95\xdb\xef\x69\x6b\xb9\xa0\x85\xcb\x88\x8e\xd9\x66\x5b\x9e\x0a\x09\xfe\xd2\xbc\xb4\xc3\x10\xbc\x32\x29\x73\x66\x98\x24\x94\xa1\x4b\x0f\xc3\x05\xb6\x14\x25\x72\x53\xcd\xd0\x64\xf2\x0a\x93\x9d\x0c\x5c\x63\xb2\xa5\x0c\x5d\x5f\x63\x38\x48\x4c\x95\x47\x28\x86\xfc\x4b\x4c\x22\xca\xd0\xab\x97\x72\x63\xc6\xd0\x4b\xdc\x2c\x32\x6b\xfb\x55\xad\xf7\x60\x89\xe2\xde\xf3\x43\x89\x38\xcc\x32\x1d\x23\x27\xce\x63\xfa\x43\x91\xe5\xbc\x10\x87\x3b\xb0\x3b\x2e\xcd\x44\xfe\x18\x8c\x44\x23\x40\x7f\x9e\xba\xab\x38\x11\xbc\xb0\xc6\x4a\x73\x1c\xd0\x8b\xe2\x2b\x5e\x86\x45\x9c\x8b\x4c\x69\xcc\x5c\x9e\xee\xb6\xf5\xd5\x44\x23\xab\xd7\x4a\xc9\xb4\xd6\x77\x5a\xba\xb6\x87\xb6\xcb\x4b\x7f\x2a\x6e\x6a\xe5\xa5\xd1\xf2\x89\xd1\xc8\xd4\x5f\x49\x9d\x35\xc4\x5c\x2c\x66\xf6\x47\xf0\x54\x4d\xc5\x67\x93\xd9\x1a\x31\x72\xe6\x61\x29\x27\xbc\x6d\x9f\x87\x0b\xfc\xa4\xaa\x82\x36\x2e\xc3\x6a\x64\xcc\xc5\x42\x0e\xf1\xe0\x13\x75\x2c\x67\x1a\x20\xe2\xab\x38\xe5\x1a\x20\xe6\x25\xe2\xe4\x53\x59\x11\xc3\x38\x58\x23\xf6\x51\x92\xda\x88\x0f\x40\xdc\xa7\xda\x9d\x11\xa1\x24\x31\x73\xc2\x53\xa9\x47\x5b\xfa\x1e\x98\xd4\x15\xcf\xdc\x5d\xc9\xef\x04\x13\x1c\xa3\xa7\x52\x30\xb1\x2b\xe1\xd4\xaa\x10\x83\x15\x17\xe1\x26\x4e\xd7\x52\xd4\x32\xc3\x06\xad\x64\x43\x31\x32\x91\x13\x24\x9d\x7b\x0b\x12\xd3\x54\x8a\xd1\x49\x1f\x42\x39\xf4\xed\x7c\x89\xcc\x17\xd2\x52\xe6\xdb\xd1\x52\xe6\xdb\xf6\xe5\x03\x47\xbe\xad\x9c\x5b\x99\x73\x4d\x37\x32\xe7\x92\x6e\xe6\x7e\x6d\x78\x68\x67\x7f\xbb\x5a\xf1\x50\xe0\x96\xc5\x03\xea\x58\x91\xd6\x35\x8f\x24\xde\xdc\x65\x70\x67\xbe\xc9\x02\x72\x9c\xb6\xb6\x37\x65\x48\xa8\xc7\x82\xe5\x16\x62\xed\xed\x7a\x3a\xc5\xfa\xc8\x87\xb9\x79\xc1\x1f\xe4\x3c\xe6\x7b\xa1\x8e\x7f\x06\x5e\xa0\x11\x2c\xa1\x4a\x1a\xc4\x27\x0a\x88\x5e\x11\x68\x62\xc4\xc9\x03\x7a\x0a\x59\xb8\xe1\x81\x93\x66\x63\xe0\xdf\x0e\x09\x0b\x1e\xf1\x54\xc4\x2c\x91\x3d\xc2\xb6\x7c\x9c\x15\xf1\x3a\x4e\x9d\x4a\xf6\x32\x1c\x37\x0c\xae\x82\x78\x85\x50\x4a\x99\x5b\xc2\xd5\xe9\xec\x1e\x3f\x69\xe4\x9f\x6b\xd7\x4c\x5d\x63\xe6\xd4\x55\xbd\xfc\x41\x92\xa9\xb0\x7c\x6e\xc8\xd4\x59\x5f\x93\xd4\xfd\xb5\x94\x2d\xa6\xd2\x5f\x07\x85\x2e\x81\xc4\xa8\xc0\x64\x89\xce\x7c\x6c\x2a\xe1\x7f\x6e\x9d\x7f\x0c\xfc\xab\xc0\xd4\xf2\x4a\x2e\xf5\x1e\x65\x6e\xc8\x64\x25\x7d\x4c\x76\x48\xc6\x68\xa4\xfe\xe7\xea\x44\x8a\xa7\x91\xd3\x94\x5f\x8a\x2c\x87\xa5\x8b\x30\xe5\xf5\x70\x3e\xf7\x89\x7f\xb5\x80\x39\x59\xef\x53\x7b\x0e\x3c\x8c\x17\xd8\x4d\x5c\xb6\x0e\x3c\x30\xc2\x08\x57\x98\xcc\x39\x11\x0b\x4c\x9e\x0a\x5e\xe6\x59\x5a\xf2\xa0\x20\x5c\xb6\x47\x10\x92\xb8\xfc\x2e\x63\xf0\x5e\xfa\xba\xaa\xc8\x41\x32\xed\x2b\x4c\xf6\x92\x45\x7b\x9f\x63\xf2\x56\xb2\xe4\x2b\x4c\xee\x29\x43\xaf\x31\x79\xec\xf1\x3d\x35\xe8\xb1\x91\x75\x01\x3d\xbc\x8b\x5c\x17\x00\xaf\x47\x86\xbb\x52\x64\x5b\xe8\x8c\x77\xe5\x1a\x6e\xdc\x84\xd9\x36\xcf\x52\x9e\x8a\x0f\xb1\x48\x78\x33\x97\x0e\x72\x88\x0a\x32\x77\x00\x97\x43\x9c\x1a\x93\x43\x9c\x36\x1e\x19\xd1\xc2\xe2\x58\xa7\x19\xb3\xd8\x65\xfa\x12\xc2\x5b\x65\x1e\x86\xf6\x2e\x23\x4f\x7a\x9d\x8e\x58\xba\xe6\x85\x53\x91\xe2\x78\x3c\x85\x94\x31\x5f\x17\x6c\xad\x8c\xd7\xc1\x13\xe5\x09\x8c\x23\x05\x10\x49\x15\xa4\x3b\x40\x54\xe0\x60\xe2\xa8\x41\x57\xb3\x92\x81\x43\xb2\xe3\x91\xbb\x51\x5c\xe6\x89\xda\x3f\x12\x27\x18\x48\xf1\x6b\xcb\xcb\x92\xad\x39\xc6\x41\xda\x43\xee\x5b\x49\x2e\xb8\xe8\x71\x2e\xf7\x0e\x89\xc3\x2c\x0d\xee\xdd\x84\x94\x79\x9c\x06\x67\x1e\x01\xf3\xe1\xef\x41\x94\x30\x76\x5b\xe3\xc6\xd8\x53\x79\xfd\x79\x12\xe6\x96\x72\xe0\x34\x32\xe8\xf8\xda\xfb\x8c\x0c\xe4\x5f\xac\x8c\x73\x9d\x6b\xef\x33\x47\xd9\xc9\x41\xb0\xaa\x70\x70\x4a\x10\x97\x82\x57\x45\xde\xc3\x8a\x7e\x89\xc9\x1d\x04\x26\x98\x7c\x90\x01\x39\x5e\x7e\x95\xe3\xe6\x35\x26\x6f\x60\x20\x61\xf2\x03\xac\xf1\x6f\x30\x79\x27\x13\x5e\x62\xf2\x95\xfc\xfd\x1c\x93\xef\x21\x2b\x26\xbf\x40\x4e\x4c\x7e\x93\xbf\x97\x98\x7c\x0d\xdf\xd7\x98\xfc\x08\x81\x97\x98\x7c\x0b\x81\xcf\x31\xf9\x0e\x02\xaf\x30\xf9\x02\x02\xaf\x31\xf9\x09\x90\x78\x98\x7c\x03\x01\x1f\x93\x7f\x42\x92\x8f\xc9\x97\x40\xc0\x2b\x4c\xfe\x02\x81\xd7\x98\xfc\x55\x0e\x65\x0f\x93\x9f\x01\xc4\xc3\xe4\x0f\x32\xe2\x15\x26\x7f\x96\x62\xc7\x2b\x4c\xfe\x17\x68\xfd\x33\x26\x7f\x93\x11\xaf\x31\xf9\x13\x44\xfc\x0d\x93\x3f\xd2\xe7\xec\x14\xf4\xc8\xef\xf0\xe5\x77\x30\x84\xc1\xdc\x0c\x13\x54\x33\xdf\xef\xeb\x68\x1d\xf1\x0b\x44\x60\x65\xdf\x07\x09\x1c\x63\xec\xf2\x7d\x5e\x7c\x9b\xe6\x3b\xf1\x23\x5f\xd1\xa6\x17\x7e\xe4\x2b\xd8\x4a\x94\x5c\x7c\x73\xe2\xd4\x50\xdd\x15\x60\xad\xbc\x6e\xb8\x2b\x0a\x39\x80\x45\xbd\x3b\x56\x19\xc1\x8b\x6c\x98\xc4\x3c\x35\x11\xb0\xef\x0b\x8b\x2c\x49\x74\x44\x46\xc5\x38\x9d\x42\x61\xb0\x3e\xa1\x27\x6d\xf0\x5a\x8c\x32\x65\x2d\xb9\x61\x69\x94\x70\x28\xcb\x26\x04\xb2\xfc\x95\x25\x3b\x8e\xfa\xa9\x71\x1f\x64\x22\xa0\x30\x90\xad\xe6\x85\xb7\x11\xf2\x22\xcb\x4b\x37\x4b\xdf\xee\xf3\x82\x97\x52\x34\x7e\xb3\x91\x13\x16\x23\xae\x9b\xa0\x4d\x95\xc3\x76\x22\x73\x2a\xbb\x75\x2c\x22\xff\xc4\x0f\x3f\x48\x34\xa7\xee\x0b\xa9\x29\x8a\xef\x79\xb8\x13\x1c\xe4\xdd\xa9\xf3\x16\x6c\x6a\xcf\x28\xe5\x52\xd0\x94\x93\xb7\xdc\xc4\x2b\xf1\x27\x19\x46\x02\x81\x16\xa6\xe0\x72\x9b\xfa\x95\xba\xe3\x25\x77\x3a\x84\x29\x2d\x05\x2b\xc2\xcd\x3b\xc9\xfe\x6d\x97\x8a\xb6\x61\xc9\xff\xba\xcc\x08\x9a\xbc\xf6\xd9\x75\x31\xb8\x58\x13\xc7\xc1\x44\x90\xa7\xbc\xe0\x81\x73\xa3\xd8\xcb\xad\x43\xf2\xac\x14\x81\x73\x73\x61\x22\x54\xfb\xab\x41\xf1\xc5\x4e\x64\x92\x07\x26\x5c\xf0\x3b\xfd\x04\xe8\x69\x2d\xe5\xc6\x2b\xdf\xa9\xc6\x26\x29\x55\x27\xe0\x14\xcc\x5a\x9c\x40\xf5\x3e\xdc\xc9\x7b\xc7\xd3\x1d\x78\x10\xae\x2f\xd3\xf1\x08\xae\x83\x4b\xb1\x5e\xb7\x14\x3b\x2d\xb1\x24\x25\xf5\x48\x48\xcd\xa9\xb4\x11\x13\x79\x2a\x0a\x29\x1d\x26\xd8\x2d\x78\xb4\x0b\xb9\x2d\xf3\x91\xda\x74\xd6\x96\x79\x0a\x25\x2d\x25\x4a\x5a\x4a\x94\xb4\x74\xda\xb0\x28\x25\xbb\x9a\xd5\x6f\x4d\xb1\xf3\xda\x6f\x8c\x46\xf9\xab\x9a\x60\x64\xde\xc3\xbd\x77\x89\x43\x9e\x2c\x16\x0a\x4f\xf3\xee\xd6\x6b\x5e\x8a\x71\x54\x64\xb9\xdc\x39\x8e\x93\xb8\x14\x0e\xb9\xe7\x87\x20\xac\xfa\x96\x80\x24\xfe\x1d\x48\x36\x9c\x45\xb0\xd4\x84\xe0\x06\x19\x6e\xb1\x78\xc4\xf7\x3c\xec\x6e\x5b\xf2\x95\xb5\x90\x2a\xb1\x87\x25\xb0\x96\x2a\x5b\x7a\xa2\xb5\x0c\xdf\x0a\xbe\x95\x72\x70\x89\x9e\x24\x61\x8c\xc0\xa6\x3a\x28\x49\x2c\xf8\x36\x60\x86\xf1\x77\x9e\xcc\x0d\x32\x4a\x69\x39\x1a\xcd\x1c\xe8\xd7\x75\xc1\x0e\x4e\xe0\x3c\x6e\x62\xc1\x25\xb7\xb7\x7c\xc3\xf6\xd5\x51\x77\x28\x2b\xcb\x78\x9d\xaa\x72\xc3\x8a\x14\xe4\x49\x2d\xa3\xd9\xae\x4c\x0e\x77\x5c\x7c\x9b\xa6\xbc\xf8\xe6\xc3\xbb\xef\x82\xa7\x5f\x7e\xd9\x88\x6d\x12\xfc\x09\x61\x94\x92\x27\x96\x24\xd9\x23\x8f\x3e\xb0\x75\x19\xcc\xcd\xc2\xb9\xa8\x60\xbf\x2e\x85\x9c\x05\x0e\x84\x14\x58\x16\x38\x98\xd7\x52\xae\xb9\xbf\xd3\xb3\x34\x3a\x51\xfc\x70\x42\x55\xa5\xcc\x58\xe5\x20\x56\xed\x83\x3f\xd9\x37\x52\xcc\x0f\x71\x80\xac\xcb\xf2\x85\xb2\xa9\x52\x0c\x4a\x32\x19\x7a\xc2\x64\xaa\x36\xbb\xff\x4d\x49\x2c\x1c\x1b\xbe\xfe\x95\x16\x61\xa0\x9d\x1a\x11\xe5\xab\x38\x7a\x97\xed\x52\xe1\x10\x60\x81\x41\xf7\xf2\x58\xcd\xba\xe0\x6e\xd2\x69\xe6\xbf\xe4\x11\xd8\x91\x74\x72\xd7\xb3\x5c\xdd\xa9\x83\x49\x0a\x20\x53\x01\x1c\x0c\xc2\xfa\xda\x60\xcd\x9b\x45\x53\x84\x32\xc5\xef\x21\xaa\xb9\x7f\x46\x6c\xe4\xe0\x5e\xd3\xe6\x97\x30\x46\x21\xb7\xb9\xd8\x07\xed\xa6\x95\x40\xcf\x8f\xac\x3f\x48\xf9\x26\x4b\x95\x5e\x37\x68\xd1\x57\x91\xbe\x2d\xf8\x73\xe3\xe0\x19\x01\xed\x4b\x10\xf7\x9a\x01\xc0\xeb\xc5\x64\x0c\xec\xd0\xe9\x9b\xd2\x7f\x91\x99\x58\x14\x65\xe9\x87\x43\x2e\x25\xab\x82\xe7\x52\x5c\xef\x83\xfd\xab\xab\x05\x76\xae\x9b\x3d\x51\x82\xea\x73\xb2\x5c\x57\x82\xeb\x15\xb2\x6c\xc8\x7b\xd0\x22\x9c\xc2\xfc\xec\xb2\xee\xe0\xcf\x52\x58\x68\x03\x6e\x2f\xcc\x86\x17\x98\xb5\xbb\x02\x27\x04\x5f\x67\xe1\xae\x94\x02\xa4\x80\x1a\x0a\xbe\x17\xac\xe0\xcc\x21\x45\xf6\x58\x06\x8e\xef\x90\x2c\x35\x4b\x66\x8d\xcf\x44\x90\xbc\x71\xef\x1c\x38\xcd\xfa\x3c\x40\x10\x1a\xdc\xc9\x85\x72\x04\x0b\x28\xdc\x17\x4d\xf9\xa3\xf2\xa8\xe6\x10\x78\x1e\xf4\x47\xbe\x0a\x78\x4b\x30\xa8\x08\xec\xee\xe1\x53\xf3\x35\x28\xff\xab\xec\x31\x0d\xec\xbd\x67\xbd\xe9\xbc\xe7\x07\x6d\x6b\xf8\x4d\xb6\xe5\xda\xca\xef\xad\xdc\x53\x31\x37\x05\x4f\x5d\xa0\x42\xae\xd7\xe8\xec\x31\x85\xf5\x5b\x2f\xd6\xf4\xac\x75\x8d\xfb\x8b\xa2\xc8\x1e\xff\x92\x6b\x34\xf0\x25\x73\x38\x81\xdc\xc4\xbc\xcf\x79\x7a\x3c\xa2\xdf\x8b\xb7\x65\x4f\xa7\xa4\x88\x40\x34\x6b\x6b\xdb\xde\xee\x6d\x19\xb2\x9c\xdb\xe5\xf0\x7e\x89\x69\x99\xec\x0a\xc9\x13\x2a\x4c\x9e\xd4\x2c\x4d\xab\xde\x71\xd1\x1d\xbc\xea\x5a\x57\xef\xd8\xfd\xe7\xc9\xe4\x80\x09\x3d\x5e\x8a\xb4\xbe\x21\x98\x17\xf1\x96\x15\x07\x39\x1e\xde\x24\x71\x78\x1f\xb0\x8a\x38\x6f\x15\xa0\xa3\x8e\x23\x14\xe5\xc3\x21\x7f\x5e\x1e\x41\x5a\x3f\x53\x2d\x30\x11\x15\xca\xdc\x37\x86\xa7\x61\xf2\x77\x10\xc6\x27\x98\x70\x0e\xa1\x4b\x4c\x04\xa7\x88\x21\x5f\x0a\xe0\x72\x2f\xe1\xa9\x1f\xb9\xf7\x46\x97\x2f\x31\x9e\x0a\xee\x86\x2e\x8b\x22\x74\xef\xae\xc9\xbd\xbb\x21\xf7\x6e\x48\xee\xdd\x25\xb9\x77\x19\xb9\x77\xb7\x12\x83\xcb\xdc\x47\xd8\x80\xeb\xcb\xc8\xfc\x39\x01\xde\x38\x41\x61\xd3\x1e\xd1\xdd\x32\xe1\xeb\x6a\xe4\x48\x01\x0e\xdf\xbe\x28\x0a\x76\x40\x29\x26\x19\xf5\xa6\xd9\x4d\x3a\xcd\x46\x23\x5c\xcc\xb3\x85\xa5\xa0\xcb\xcc\x7a\xd6\xb7\x11\x40\x9c\xb6\xf7\x02\x6a\x33\xa0\x37\xf6\x9c\xcc\x25\x54\x2d\xd5\x14\x58\x6e\x0f\x44\xbc\xe5\x1f\xd9\x1e\xfc\xaf\x4c\x57\x77\x43\x40\x6e\xfa\x92\x95\x5c\xae\x6d\x7d\x16\x93\x9a\x6d\xc9\x1c\xc7\xe3\x0f\x08\x23\xac\xf8\xf8\xfb\x15\x52\x32\x26\x4b\x42\x98\xd0\x3f\xca\x65\xbe\x07\x83\xcf\x2f\xcf\x0d\x96\x42\xc2\x5c\x4c\x64\xbe\x38\x95\x34\x9d\x96\x6b\x76\x29\x16\x59\x08\x8f\xba\xe5\x20\x3c\x6d\x76\x00\x4a\xee\x07\x48\xb5\x69\x88\xf8\xbf\x80\x7b\xfc\xaf\xe1\x86\xb3\xb0\x2e\xe2\x5e\xf8\x5a\x44\x30\xc7\xbd\x1f\x69\xde\x5d\xc9\xbf\xcb\x42\x96\xc8\x8c\xb3\x1f\x5c\xe6\x8a\xdf\xdc\xf5\x8e\x97\x25\xc2\x81\xf3\x97\x0f\x6f\xfe\xff\x11\x29\x9a\xd5\x5b\x5d\xae\x57\xe3\xa2\x40\x58\x5f\xb2\xb5\x46\x91\x61\x34\xfa\xee\x23\x40\xba\x52\xd6\x90\x81\x3c\x0e\xef\x79\x81\x60\x49\x2a\x83\x27\x91\x45\xec\x10\x38\x2b\x56\x0e\x56\x6c\x1c\xb2\x84\xa7\x11\x2b\xc6\xe1\x86\x87\xf7\x4e\x45\x96\x3b\x21\xd4\xfd\x80\x4d\xf6\xf8\x46\xf2\x3d\xb9\xd0\xc8\x8f\x0f\x90\xf1\xcc\xab\x48\x19\x47\xfc\xcb\xc3\x5d\x1c\x41\x9a\x3e\x1d\x77\x7e\xfe\xf9\xe7\x9f\xc7\xef\xde\x8d\xbf\xfa\x6a\xf0\xcd\x37\xc1\x76\x1b\x94\xa5\x43\x12\xd9\x6e\x92\x3b\xa5\x0e\x1c\xa5\xff\x3d\x4b\x79\x50\xd3\xff\x1b\x5c\x0e\x24\xda\xcf\xc6\x57\x4c\xe8\xb4\x66\x54\x57\xad\x2a\x65\x29\x72\x42\xe8\xc3\x4e\xed\x9c\xb6\xb8\x01\x2e\x15\xb9\x64\x6a\x3d\x3d\xaf\x12\x9b\x79\xa2\x78\x5b\x57\x5c\xfb\x29\x4e\x92\xbf\xa4\xdb\x8f\x89\x7b\xbd\xcd\xec\x68\x07\xeb\xce\x7f\x2a\x02\x82\x94\x26\x11\x83\x74\x66\x0f\xc1\x29\x87\xf8\x33\xb8\x8c\xf0\x31\x4a\xa0\x24\x36\x93\x7c\x81\x29\x67\x60\x72\xe3\x6b\xa3\x3a\x83\x9b\x07\x1f\xc1\xa1\x8f\xcc\x1c\xf2\xf4\xbb\x7a\x0f\xec\x1f\xfe\x25\xc9\xf4\x79\xe9\xb2\x2b\xfd\xc9\x22\xb5\xdc\xa7\xfc\x5e\x3b\xe5\xf6\x3f\x96\x00\x61\x15\x15\xb1\x90\x63\xf4\x2b\xcd\x98\x06\xca\x70\xc3\xac\x99\x50\x5f\x9b\x69\xf5\xe1\xb1\x85\xbe\x35\x59\xc5\x7b\x1e\xa9\xd3\x42\x29\x24\x3e\x2b\x02\x3e\xd9\xb2\x98\x35\xf2\xad\xe8\x46\xe8\x3a\x99\xf5\x24\x4b\x95\x24\x78\xca\xb9\xf8\x33\xdd\x29\xe7\xb1\x83\x2b\x92\xa5\x5f\x26\xbb\xe2\x5f\xc8\xb8\x89\x23\xae\x32\x9e\x08\x76\xb5\x78\x3f\x37\x02\x11\xd1\x92\xd3\x42\xae\x23\xc9\x2e\xe2\x25\x82\x03\x3f\x2c\x67\xe4\x47\xf1\x9b\xe9\xde\x30\x80\xe1\xf0\xbf\x2a\x25\xc1\x02\x31\x86\xa1\x04\x82\x92\xee\xfa\x37\x32\xba\xaf\xdf\xeb\x05\xe5\x53\x9d\xbe\xfd\x5d\x9d\xfe\xaf\x52\xae\xc9\xfb\x36\x7d\x7e\x64\xda\x4b\xf5\xa7\x88\xdc\x9c\x12\xd9\x2f\xd6\xa5\xff\x4f\x09\x5c\x20\xd8\xf4\x0b\x5b\x05\x07\x75\x7b\x9c\xa5\xcf\xa4\xcb\xac\x77\x82\xe7\x25\x9d\xfb\xc4\xf7\xc8\x4b\x8f\x5c\x7a\x1e\x79\xed\x79\xc4\x7f\xe5\x79\xe4\xf2\xa5\xe7\x91\xcf\x27\x9e\x47\x26\xbe\x0c\x5e\x5d\xca\xf0\xab\x97\x57\x12\xe0\xf3\x89\x04\x79\xe9\x5d\xc9\x1f\x7f\xe2\xbd\x96\x10\x93\x2b\xff\xb5\x84\xb9\x7a\x75\xf9\x4a\x42\x5d\xfa\xd7\x97\x2f\xf9\x25\x79\x79\xe9\x7d\x3e\xe1\x97\x0b\xc2\xea\xf5\x0a\x24\x9e\x8e\x86\xb6\x5e\x2a\xde\x49\xa1\x47\xdf\x4a\xa3\x62\xc6\xdc\xb0\x93\x07\xb5\x04\x3b\x1c\x74\xe5\x20\x25\x4f\x29\x3d\x6b\x37\x6f\xab\x3c\x56\xb7\x60\x5b\x07\x4c\xbf\x32\x72\x97\x19\x84\x27\x62\xa6\x62\xf4\x72\xab\x4a\xcf\xfc\x5a\x73\x39\x15\xc5\xc1\xbe\x9f\x4c\xed\x86\x9e\xab\x63\x7d\x37\x16\xca\xee\x7f\x81\xf0\xf4\x0c\x71\x8a\x0a\x9a\xc1\xe9\x1d\xc2\xd8\x8d\xb2\x94\xe3\x29\xf8\x25\x30\x7e\x6e\xb4\xce\x04\xec\x6a\xac\x7a\xdf\xc4\xb5\x55\xe7\x69\x0b\xc5\x58\x79\xe1\xeb\x6f\x9a\x18\x57\x95\x3a\x07\x4c\xf0\x93\xdc\x1d\x92\x94\x26\xd5\x2a\x4e\x59\x92\x1c\x9e\x64\x1d\xf8\xf1\xa8\x3a\x20\x73\x55\x21\xc7\xa3\x09\x21\x5c\x43\xc6\x2b\x24\x8c\x7f\xa6\xaa\xb2\x65\xe0\xff\x46\x7b\x69\x85\x24\x76\xe5\xa6\xb6\x28\x39\xc2\xff\xe5\x16\xbc\xfd\xbf\xb0\x05\xff\x7d\x71\xfb\x79\x09\x8c\xab\xea\x9e\x51\x5b\x11\x07\x51\x5a\x44\x3a\xa9\x7c\x17\x4e\x8a\x57\x0d\x47\xe9\x20\xaa\xe3\x8d\x4f\xa1\x16\xef\xe9\xcc\x2c\xfd\xb0\x68\x6f\xfe\x59\x6f\xac\xe5\xd8\x2c\x70\x9c\xff\x92\x0c\xf6\x77\x58\x3c\xd2\x24\x4e\x79\xe7\xc0\x72\x5d\xb0\x7c\x33\x0e\xb3\x54\x14\x59\x52\xca\x35\xe9\x6e\xb7\xdc\x76\x4c\x50\x6b\xa1\xa2\x7b\xd8\x52\xf5\xad\x54\x5d\x81\x0f\x9a\xf4\xff\x8c\xc4\x07\x45\x3d\x23\xf2\x41\x7f\x7f\x6a\x65\x8d\x7f\xbf\xcc\xa7\xe5\x65\x50\x93\x06\x5f\xf1\x9e\x41\xd4\x16\xf9\x0c\xef\xfd\x98\xd0\x76\xba\x60\x20\xfe\x0c\xd3\x06\x21\xeb\xbf\x2f\x99\xf4\xb5\x60\x6b\x55\xf8\x54\x0b\xfe\xda\x23\x9b\xf4\x64\x61\x5c\x6d\x45\x6c\x71\x99\xa7\x91\x94\x7e\x88\xbd\xb3\xb1\xd3\xed\x78\x02\x84\x06\xdd\x46\xef\x68\x45\xd3\xa8\x11\xb5\xea\x9d\xa3\x9d\xc9\xc4\xbf\x55\x45\xf7\x36\xe9\x89\x84\xef\xfc\xc8\x4b\x77\x80\x4a\xec\xd8\x33\xa9\x99\xc2\x66\xac\xb7\x46\xc8\x7f\xca\x09\xba\xa3\xc9\x66\x3a\x3d\x43\x4a\xc9\x16\xb5\x5b\x67\xfe\x31\x2e\x05\x97\x06\xdb\x5c\xbf\x06\x46\x42\x31\x76\x5c\x91\x65\x79\x57\x4f\xde\xbe\x76\xe2\xbc\x33\xf1\xc1\xff\x00\x8f\x7e\xd7\xd4\xb7\x07\xe3\xdd\x26\x7b\x1c\xec\x52\x9d\x7d\x20\xb9\xd6\x00\xf8\x54\x33\x2e\xfb\x26\x4f\xbb\x0a\x77\x32\xb7\x6c\xbc\x33\x5f\x8a\x36\xda\xe1\x91\xd5\xd0\x1a\xfd\xa7\xc6\x33\x3f\x19\xcf\xbf\x87\x7a\x43\xfb\x7f\x40\xb6\xd7\x90\xfd\xaf\x53\x1d\xfd\xde\x1d\x42\xc1\x29\x43\xaf\x3f\xc7\x24\xe3\xbd\xe7\xd5\x09\x5b\xf2\xa4\x24\x8c\x72\x7d\xd5\xa1\xed\x73\x8f\x8a\x9e\x33\x96\x53\xa3\x1d\xa7\x0c\x59\xc2\x0a\x07\x07\x6c\x76\xb2\x74\xc1\xe3\xe2\x67\x5e\xb3\xe9\x18\xc4\xe9\x40\x60\xe7\x97\x5f\x52\xb6\xe5\xbf\xfc\xe2\x28\xed\x06\xe2\xda\x5f\x48\x8f\x01\x50\xce\x52\x47\xad\x93\x69\x45\xce\xd8\x70\xe8\x90\x81\xd3\x6b\x2a\xa4\x20\xad\x41\x9a\xf0\x35\x4f\xa3\x31\xd4\x73\x2c\x0b\x74\x2a\x92\x62\xe2\xd0\x7f\x27\x3f\x4c\x27\xa7\x22\x2f\x9c\x17\x44\xcc\xd3\x85\x0c\x80\xfd\x29\x78\x9b\x38\xf3\xf1\xc7\xce\x77\x3f\x76\x84\xf6\x7c\xc1\x5b\x2e\x8a\x38\x34\x94\x0b\xd7\xb4\xda\xf1\xe8\x38\x7d\x43\xf5\x53\x55\x58\x16\x2c\x94\x98\x9c\x27\x07\x13\xfe\x9f\x20\xa8\x1c\x8c\x2b\xd4\x77\xb4\x76\x3a\x40\xde\x70\x38\x9d\x20\xf1\xff\x53\x1b\x56\x7d\x6c\x5d\xc2\xc1\xaa\xb6\xe0\xe0\xe0\x54\xaf\x36\x89\xb9\x03\xf7\x2d\xea\xe8\xf5\xf7\x18\xf7\x81\xb9\x25\x9c\xea\x76\xb0\x92\x82\x6a\x5f\x67\xc2\x3c\x2f\x72\x3c\x0a\xf3\xaa\x88\xb9\xd7\x60\xc4\xfb\x70\xc3\x0a\xf0\x33\x35\x2d\x68\xda\xa8\x77\x38\x9e\x7d\xd4\xf6\x1a\x0e\xb2\x2b\x8c\x03\x8f\xd2\xc6\xca\x24\xeb\xb3\x2a\x01\x0f\x11\x86\x57\x50\x4a\xf9\x4c\x04\xcf\xdb\x85\xa4\x0b\x5c\x9b\x1d\xf4\xc1\xa4\x98\xcc\xf9\x42\x5f\xa6\xf1\xad\xc2\x87\xc3\x16\xf9\xc3\x21\x2a\xe8\x7c\x81\x5b\x16\x53\xdd\xf6\x2f\x8c\x57\x5e\xe0\xbb\xaa\x07\x3e\x64\xeb\x35\xf8\x97\xe5\xf8\xff\xaf\x7d\x89\xcd\xc5\x37\xd9\x2e\x89\x7e\xe4\x25\x17\x70\x77\xa7\xf9\x6c\x8b\x08\x2d\x38\x73\x30\xff\x4c\xad\xe6\x8b\x7f\x4d\x63\x7b\x6a\x4b\x50\x0f\x0a\x50\x55\x67\xe9\x77\x30\xad\xdf\x65\xbb\x92\xbf\xdf\x81\xb3\x60\x37\x4b\xbf\xc9\x1e\xb8\xdc\xba\x5a\xf6\x05\xdd\x91\x98\x50\xa6\x7b\xe7\xd6\x1f\x0e\xe5\x50\xa9\x9f\xeb\xfc\x04\xf7\x7b\x3a\xd9\x99\x28\xd6\x22\x57\x50\x43\x47\x90\xcc\xd2\x40\xed\xa7\xe5\x34\xea\xb5\xdc\x01\xc3\x57\xb0\x97\xaa\x9d\x57\xc3\x55\x4a\xb5\x9a\x7d\x92\x0a\x7d\x5a\xaf\xfd\x4d\x07\x76\x0d\xe4\xb6\xb6\x1e\x6f\x29\x9e\xf9\x81\x7b\x5d\x35\xe7\xb2\x75\xbd\x67\xbc\x67\x82\xa3\x14\x6b\xca\xeb\xfa\x3c\xf0\x22\x48\x66\x85\x95\x02\xab\x18\x39\xe5\xae\xb1\xe0\xfd\xa2\xd3\xf3\x0c\xb9\x84\xc3\x57\xe7\x39\x4b\xa4\xb2\x7f\x0b\x91\x71\xf2\xa4\x1a\x2a\x08\xcd\xa9\x10\x88\x10\x15\xdc\xa4\x68\x7a\xf6\xf7\xf4\x62\x9e\x8c\xfd\xc1\x56\x8c\xfd\x01\x38\x7a\xdc\xee\x04\x8f\x6a\x82\x56\x59\x0a\xbe\x3d\x03\xff\xb2\xaa\x88\xa3\xda\x70\xa0\x86\xd3\x40\x3f\x48\x31\x70\x48\xca\x1e\xe2\x35\x13\x59\xe1\xe6\x09\x13\x92\xa2\xa6\x0b\x9c\x77\x2c\x74\xf0\xcc\x79\xf3\xee\x2b\x27\x70\xde\x7c\xf8\xf1\x3b\x87\x38\x83\xd1\x20\x54\xb8\x04\x4c\xeb\xc1\x76\x97\x88\x38\x4f\xb8\x46\xea\xd8\xc2\xd0\x0f\xbb\x82\x37\x02\x51\x73\xdb\x25\xe1\xff\x2f\x5e\x77\x01\xe7\x97\xed\x45\xb6\xf6\xa1\x49\x8d\x77\x2e\x47\x7e\x3b\x53\xad\x9f\x34\x6f\x15\xa9\x6a\x8b\x5b\xea\xf3\xc9\x95\x86\x44\xfc\x02\xbe\x5c\x91\x7d\x2d\x05\x4e\x34\xc1\x23\xe7\x67\xa7\x01\xf4\x5b\x80\x7e\x1b\xf0\xef\x0d\xa0\xff\xca\x06\xf4\x5f\xb5\x01\xdf\x5a\x80\xd7\x2d\xc0\xeb\x36\xe0\x0f\x16\xe0\xa4\x05\x38\x69\x03\x7e\x68\x00\x5f\xdb\x70\xaf\xdb\x60\x7f\x68\xc0\x5e\xda\x60\x2f\xdb\x60\xef\x1a\xb0\x4b\x1b\xec\xb2\x0d\x76\x5f\x83\x35\x6e\xd0\x9a\xf4\xa9\x72\xc2\xd7\xbc\x2e\xd2\x4d\x14\x37\x3e\x1f\x4f\x5a\x05\x8c\xbb\x6d\x7f\x70\x1a\x48\xaf\x0d\xd9\x69\xfc\xdf\x1a\x48\xff\xf3\x16\x64\xb7\xf5\x99\x05\x79\xd5\x86\xec\x34\xff\xca\x82\xf4\xdb\x90\x9d\xf6\xcf\x1b\xc8\x56\xcf\x8f\x3b\x1d\x90\x36\x70\xad\x8e\x1f\x77\x7a\xe0\x1f\xfb\xe5\xb5\x06\x75\x3d\xab\x68\xd7\xf3\x3a\xf5\xde\x6a\xb0\x67\x3a\x41\x69\x27\xb5\xef\xfd\x50\x2e\xbf\xe9\x0b\x31\x50\x6c\x70\xc0\x06\xca\xbc\x0e\x1c\x9c\x0e\xe2\x72\xc0\x06\xcb\xdd\xda\xc1\x15\x09\x79\xff\x93\x6d\xb4\x70\x59\xeb\x51\x04\x2e\x45\xd0\xd4\x2d\x48\x4c\x53\x77\x4d\x12\x9a\xba\x4b\x78\x7f\xc4\x78\xec\x55\x37\x17\x1d\x23\x05\x65\x44\xee\x65\xb0\xf9\x8c\xdb\x9f\x49\xfb\x53\x10\x07\x3b\xca\xd6\xa6\xa4\x93\xeb\xeb\x73\xe4\x8f\x85\xd9\x73\x48\xc4\x0d\x5e\xcb\x0d\x6f\x39\x12\xe7\x19\x26\x0e\x69\x10\x75\x52\xe3\x8f\xa6\x26\x18\x8a\xad\xc8\xae\xfb\xb4\x41\x57\x88\xb5\x85\xc2\x96\x9c\xff\xdf\xbe\x76\x97\xf0\xff\x2b\xef\xdd\x49\xb2\xfe\x0f\x5c\xbc\x43\x4f\x15\xa9\x6f\xd8\x84\x1c\xe9\x11\x48\x52\x29\xbe\xcf\xdc\xcb\xc0\x27\x02\x83\xb4\xb8\xed\xef\xb1\xa7\x75\x11\x47\xc1\x53\xfd\x7a\xa3\x52\x1a\xeb\x17\x15\xe5\x47\xeb\xad\x2f\x19\x71\xf2\x18\x61\xe0\x7b\x5e\x45\x94\x20\xa2\xac\x50\x82\x33\xbf\x22\xda\x39\x03\x5c\xd7\xd5\x9e\x15\xc0\x28\x25\x0e\xef\x4b\x63\xa1\xf2\x2e\x4e\xb3\xa2\x8e\x91\x40\x5f\xb2\x92\x07\xce\xb6\xe5\x9d\xad\xf6\xef\x20\x66\xb5\x67\xb4\x5a\x2e\x3c\x18\x1f\x10\x96\x3b\x91\xa0\xe4\x15\xe9\x5e\x19\x76\xf6\x87\xc6\x11\xff\x72\xb9\x94\x7b\xe8\x2c\x93\xd2\x82\x21\xda\x23\x61\x59\x82\xb3\x74\x23\x93\x6a\x00\x99\x2f\x15\x3c\xb5\x75\xe5\xe6\x7d\x16\xb5\xdb\x2a\xcc\xab\x5a\xb1\x94\x1f\x95\x26\x25\xa1\x99\xee\x8d\x92\x2a\x8b\x0e\x23\x8e\x8a\xe3\x11\x95\xb4\x74\x77\x22\x44\x18\x93\x17\xff\x48\x07\xd6\xff\xac\x87\x0a\x94\x45\xc8\xed\x0b\x33\x1d\x4b\xad\x9a\x41\x7d\xb6\x3b\x83\xbf\x3b\x98\xbc\x50\xbe\xe9\x4f\x31\x76\xa2\x06\x83\x1b\x29\x4c\xd6\xe5\x70\xc1\xe2\xc4\x88\x91\x03\x90\xda\xa8\xd3\x88\x91\x63\xd5\x70\x83\x17\x16\x3f\x7a\xe1\x0c\x2e\xfa\xb1\xde\x36\x60\xb1\xad\xa6\x50\x4a\x13\xe2\x04\x83\xfa\xaa\x45\x0d\x98\x4a\xd2\x75\xec\xcd\x05\x60\xf9\x64\x25\xec\x96\x52\x8d\x0e\x02\xe8\xff\xc7\xdd\x9b\x76\xb7\x6d\x63\x8f\xc3\xef\x9f\x4f\x41\xa3\x1d\x85\x18\x43\xb2\xe4\x24\xed\x84\x0e\xeb\x27\x6b\x93\xd6\x4d\x52\xdb\x69\x66\x46\xd5\x4f\x07\x12\x21\x89\x35\x45\xaa\x24\xe4\x25\x32\xbf\xfb\xff\xe0\x02\x20\x41\x12\x5a\x9c\xa5\x33\x67\x4e\xcf\x69\x64\x92\xd8\x2e\x2e\x2e\xee\x7e\x51\x63\x56\xe5\x7c\x4c\xee\x2e\xac\x47\x03\x14\xc2\x78\x45\x23\xc5\x8e\xef\x99\x03\xcd\x47\x62\x04\xbd\x80\x62\x6b\x18\x29\xe3\x45\x3c\x83\x50\xff\xc1\x5c\x55\x13\x4c\x57\x0d\xf0\x10\xca\x31\x2e\xd2\x2f\x12\x54\x5b\x54\x63\x03\x05\xc1\x55\x1a\xe6\xf3\x19\x9b\x33\x6f\xaf\x07\xd1\xed\x99\xf4\xed\xaa\xa4\x85\x65\xea\xcd\xaa\x0c\x7f\x67\xc7\x3d\xef\x90\x40\x82\x66\xd1\x72\x12\x46\x91\xc7\x72\x52\x56\x3a\xf6\xba\x79\x9e\x93\x85\x5d\x2d\xf8\xe7\x92\xa5\x37\xef\x68\x4a\xe7\x52\x37\x18\x48\xa9\xb1\xf9\x69\x1f\x7d\xc3\x82\xf1\xe1\x83\x2e\x22\xe8\x1b\x3a\x09\xfe\x31\xf9\x87\xf8\x35\x1e\x3d\x18\x3d\x18\x89\x5f\x0f\x02\xfa\xfd\x83\x40\xfc\x7a\xf4\xe0\x41\x97\x05\x68\x00\xb2\xa8\x52\xde\xc4\x7e\xf7\xa8\xb8\xa5\x53\x96\x2d\x23\x5e\xdf\x1d\x92\x94\x35\x96\xfe\x46\x7d\xdf\xef\xb6\x5a\x89\xe4\xab\x7f\xf0\xbb\xc7\xf1\xe3\xce\xc3\xe3\x76\xdc\xee\x1c\x7a\x5d\xaf\x1d\x63\x52\xbf\x90\x79\x3f\xf9\x1b\x1d\xdc\xde\xa2\x6f\xbe\xfb\xee\x3b\x84\x2b\x95\x89\x7a\xfb\x32\xe5\x80\x4b\xc5\xad\xcd\xe1\x1c\x43\x7c\x32\x98\x20\xc4\x51\xd6\x36\x8b\x0c\x0c\x9f\x5a\x6b\x5e\x04\x3f\xae\x9b\x73\x25\x7f\xb8\x72\x62\xcb\x20\xb0\x44\xea\xf3\x48\xe2\xf7\x07\x3a\x0f\xde\xd1\xf2\xb1\x1f\x1d\x2d\xf7\xfd\x4c\xe7\x7e\xa5\xfd\xf1\xe0\xa8\x10\xc5\xc6\xad\xd6\xbc\xdf\x1d\x3c\x5e\xee\x67\x07\xbd\x6e\xf7\xd8\x4d\xa4\xa6\xb4\xdf\x63\xf7\xff\x3e\x87\x8c\x70\xcc\x9d\xf7\x7b\x03\x3c\xc0\x64\xbc\xbf\x8f\x3d\xf3\x83\x25\x68\xe0\x06\xfa\xfa\xd0\xa2\x9f\xb2\x57\xa4\xc7\xa9\xb7\xca\x75\x59\x89\x3e\x1f\x98\xb5\xba\xc4\xae\x7b\x89\x8a\x7b\xe1\x32\x31\xf1\xcc\x86\x30\x00\xe9\x97\x51\x22\x4e\x44\xa9\x02\xcd\xde\xd0\x37\x2e\xc7\xc7\x62\x28\x8f\xe7\x47\xd4\xed\x3d\x3a\x94\x6e\xc6\xf7\xe5\x3f\x0f\xe4\x3f\x0f\xe5\x3f\x2a\xd3\x41\xc0\xc8\xe4\xcb\xab\x09\x93\xaa\x9a\x30\xf2\xbb\x47\xd1\xe3\xf8\x28\xda\xdf\xc7\x49\x3f\x32\xd5\x84\xd1\x97\x53\x13\x26\xa0\x26\x04\xbd\xcb\x1a\x27\x62\x78\xa7\xdc\x07\xc0\x8f\x65\xf2\xfa\xb9\xdf\x85\xf8\x3a\xa9\x74\x39\x2b\x6b\x85\x32\x48\xcd\x5f\x44\xcb\x14\xea\x1c\x6f\xc1\xb4\x27\x80\xac\xaf\x50\xc9\xdb\x5f\x78\xec\xd6\x20\xf2\x43\xb7\xd5\xd2\x29\x5a\x8d\xd5\x77\x4d\x86\xab\x3b\xf0\xb4\x3a\xb2\xd4\x28\xd2\x62\x41\xda\xcc\x04\x75\xa0\x94\x43\xe5\xbb\x28\xe1\xe6\xd2\xc4\x71\x84\xb2\x00\xa9\xb8\x0c\x1b\x4d\x31\x61\x64\x5e\x4c\x5f\x9b\x3f\x88\xcd\xa5\x17\x63\xe5\x97\x5c\x8c\x63\x2e\xf2\x5c\x74\x22\xc7\xc4\xad\x96\xfe\xa9\xbf\x76\xf1\x56\x95\x2c\x69\x68\x60\xcd\x25\xc3\x12\x7a\xbe\xef\xaf\xd9\x99\x42\x5d\xb9\xee\x7d\xe9\x62\x87\x8f\x63\xa0\x17\x4b\xe6\x72\x52\x5b\x38\xc6\x9e\x4d\x5b\x60\x94\x5e\x60\x65\x4f\x50\x61\x01\xaf\xc5\x15\x56\x5f\x32\xa8\xf6\x36\x2a\xa1\xa5\x0f\xd1\xe4\xf5\xf3\x56\x6b\x4c\xe3\x31\x8b\x9e\xc4\xe1\x9c\x8a\x57\x2f\x53\x0a\xdb\x04\x6f\x71\x81\xa9\x29\xfb\x73\xc9\x32\x5e\xfb\xcc\xad\x7a\x75\x47\x09\x3f\x63\xfc\x49\x1c\x3c\x4f\xe9\x95\xdb\x80\xae\x06\x06\x6b\x02\x43\xf9\xfc\xea\x65\x54\x15\x96\xe6\xee\x6f\x9b\x6d\x6d\x0e\x06\x36\x9c\xd6\x4a\xb6\x35\x31\x09\xb6\xbe\x40\xa8\xb2\x7e\xc3\x57\x52\x23\x97\x0e\xc6\xba\x26\x94\xd4\xe0\x0a\xbc\x84\x6b\x38\x95\x08\x0a\xe7\x24\xf1\x69\xdd\xe7\x58\x7c\xb3\xe7\xfb\xf1\xb1\xab\x14\xca\x6b\xe8\x48\x4d\xdd\x5c\xa1\x26\xe5\xb0\x38\x57\x9e\x9e\x51\xc2\x31\xf6\x98\x1e\x59\x5c\x1d\x0d\x95\xf5\xfa\x3e\x4c\x8c\x00\x1d\xc8\xc6\x53\x74\xcc\x25\xd0\xa1\xbe\x25\x94\x14\x69\xe0\x4c\xe3\x8c\x30\xb3\x3c\xc9\xb6\x33\x28\x4f\x8e\xcc\x61\x54\xf3\xb3\x4e\x74\xe1\x3f\x98\x80\xd5\x39\x7c\x63\x70\xe1\xba\x76\x3b\x38\xaa\x57\x28\x68\xd1\x43\x15\x75\xd7\xaa\xfc\x3f\x91\xbc\x1b\x6a\xfe\x92\xdc\x9d\xab\xdd\x2b\x0e\x81\xf9\xa7\xca\x75\x49\x5d\x5d\x0e\x50\x53\x5a\x38\x58\x77\x32\x51\x34\x06\xbe\xab\xf9\xc0\xaa\x2f\x4f\xc1\x4f\x41\x9e\x6e\x6d\x20\x27\x49\x2c\x0f\xba\x5c\xb0\x79\xf4\x49\x76\x11\x2e\xde\xc6\xb0\xa9\xa0\x07\xb7\xa9\xe0\xd7\x58\x2f\x60\xe6\x88\xa4\xda\x6b\x43\xdf\x6e\xd6\x4e\x42\x46\x56\x86\xc1\x07\xcc\x0e\xeb\x8f\xa8\xe6\x5b\xca\x33\xc5\x88\xb2\xce\x98\x6b\x30\x28\x3b\xa9\x5b\x74\xcc\xef\x6a\xb6\x9e\xaa\x59\xac\xd9\xa1\xbc\x1d\xf3\xf5\x7a\x74\x32\xb5\x0b\x0e\x40\xa1\xa8\x5f\xd0\x09\x48\x81\x50\x75\xec\x01\xaf\x83\x8c\xff\x5a\x8a\x18\x7a\xdf\x05\xde\xe1\x63\x49\x1f\x14\x63\xbd\x36\x32\xd9\xcc\x31\x22\x75\x06\x34\xbd\x41\x39\x41\x2f\xe6\x0b\x7e\xe3\x80\x00\xe3\xc8\x4e\x84\xf0\x35\xa7\x3c\x0d\xaf\xd1\x5e\xd9\xf5\xf9\xcd\x82\xed\x9a\xbb\x04\xfd\x6a\x74\xe7\x84\x99\x93\x4c\x9c\x2b\x21\xf4\x39\xfc\x66\xc1\x9c\x7b\x88\x98\xbd\x12\x74\x8f\x38\x72\xa7\x9d\x11\x73\xee\xc9\xb1\xef\x39\x2e\xb8\x30\x39\x97\x6c\xcc\x93\x14\x77\x90\xcd\x74\x3e\x51\xa5\xe6\x3d\x4e\x14\x04\x3d\x5a\x75\x98\x8a\x89\x21\x9c\x79\xa9\x35\xb6\xd5\x5c\x04\xa8\x70\xc4\x1a\xde\x24\x8e\xe8\x19\x40\x13\xb2\xc0\xb9\x61\x5c\xc8\x98\x97\xcc\xc6\x12\xb0\xc2\x0e\xc4\x1e\x1c\xb3\x32\x98\x9e\x3d\xc0\x42\x8c\x1c\xad\xdf\xfd\xa3\xd2\xde\x50\x68\xba\x3f\x67\x86\x66\x7f\x0a\xc8\xb7\xb7\x16\x1c\xd9\x6d\xac\xad\xa8\x72\x64\xa4\x2c\xdf\xeb\x81\x51\xb4\x32\xcc\x63\xbf\xc7\xee\x97\x15\x8c\xcb\x5d\x57\x91\xb2\x72\x77\x91\x17\xfb\x2e\xf5\x2f\x59\xf1\x49\x43\xeb\x40\x36\xc6\x5b\xf3\x54\x39\xbc\x70\xab\x49\x90\x07\x6b\x5d\x49\x0c\xf3\x5e\x21\x6d\x2a\x2b\x5f\x6a\xf7\x6e\x2a\x7b\x53\x92\xaa\x10\x25\xe1\x86\x54\x6b\xde\x6b\x00\xbb\x52\xb3\x43\x1e\xad\xdd\x56\x5c\x95\x88\xd7\x69\x62\x1c\x31\x85\x7d\xe4\xfc\xff\x68\x9f\xf5\xbb\x83\x52\x71\xf2\x7b\x8c\x36\xb9\xd8\x00\xd4\x94\xf1\x11\x52\x2e\x9c\x2d\xe8\x58\x3a\x9a\xa2\x9c\xfc\xe5\xe0\xa4\x77\x80\xa2\xf2\xa0\xf2\xe8\x5a\x2f\xa8\x02\x25\x50\xd7\x6e\x27\x2e\xc6\x2d\xdc\xb1\x36\x7e\xa5\x27\x03\xbb\x5d\x09\x98\x56\x35\x25\xbf\xd0\x5c\x64\x67\x9f\x30\x17\x5d\xd7\x7b\xa7\x83\x5d\xd2\xea\xf7\x71\xb6\x5c\x2c\x92\x94\xb3\x40\x53\x6c\xc0\x36\xa0\xd5\xc8\x28\x85\xb2\xdd\x6d\x29\xb6\x19\xc1\xad\xa3\x6e\x4d\x5b\xf5\x81\xa6\x71\x18\x4f\x65\xe2\xaa\x97\x8c\x8f\x67\x2c\x70\xca\x7b\x43\x5f\xf7\xc8\x91\x38\x96\x11\x27\x89\xa3\x1b\x47\x25\xb3\x0a\xe3\xa9\x33\x09\xd3\x8c\x43\x3a\x2b\xfd\x6d\x07\x61\xb2\x97\x6e\x9b\xa3\x49\xf2\xb6\x4e\xf3\x4d\xc2\x43\x71\x62\xc4\x2c\xcf\x66\xc9\x95\x18\x78\x9e\xa4\xcc\xe1\x33\x1a\x3b\x88\xf4\xd8\x7d\x82\x0a\xdb\xbd\x00\xa4\xf8\x22\x99\x4c\x1c\x38\x24\xca\x90\xc6\x61\xbe\x49\xea\x2c\x58\x0a\x4f\xe2\x31\x73\x52\x46\xb3\x24\xce\x3a\x56\x54\x38\x07\x9e\x0d\xb8\x9b\xbd\x6e\xe9\x4a\x6a\xfa\x49\x88\xab\xa1\xcd\xe9\x28\x62\x6b\x50\x6e\x94\x04\x37\xe5\xc9\xc3\x39\xb9\x91\x21\xee\x8f\xbe\xc7\xc4\xea\xfb\x98\x50\xa9\xdc\x13\x04\xa9\x54\xee\x01\xcb\x22\x77\x45\x32\x43\x77\x61\x4b\xe1\x32\x69\x0b\xbe\x36\xdb\xd5\x99\x63\x12\x25\x94\xb7\x53\x7d\x09\x9e\x24\x54\x7a\x35\x7b\x02\x3d\x08\x9a\x67\xce\xef\xcb\xc3\x6e\xf7\xd0\x29\xbd\x76\x21\xab\x19\x41\xe6\x1b\x81\xe6\x4a\x29\xec\x20\x02\x59\x78\x4b\x5f\x87\xeb\xff\x49\x5f\x87\xbd\x6a\x54\xc8\x8f\x82\x25\xf7\x95\x60\x40\x58\xe7\x5c\xf4\xe1\x23\x85\x31\x6e\xc0\x6e\x6f\xdd\x80\xf9\xab\x5c\xa5\xd9\x7f\xc1\xfc\x15\x64\xe6\x08\xd4\xb7\x84\x5d\x2f\x52\x0f\x21\xe5\x7b\x0e\x21\x63\x4a\xff\x2b\x53\xcf\x96\x38\x22\xff\xd6\x1c\xda\x5e\x4f\x5c\x2e\x7f\x6d\xf2\x32\x3a\x4a\x52\xfe\x3a\x7e\x09\xcc\x13\xd0\x13\x9d\x8b\xc0\x4c\x19\x63\x0b\xdc\x97\x42\x57\x91\x00\x43\x26\xab\xe2\xfe\x73\xf1\x34\x4e\xae\x74\x4a\xe5\x32\x35\x58\xd9\x9d\xcc\x0a\xa6\xde\xa8\x94\xf7\xa2\xa3\x3d\xdf\x67\x52\xf5\x55\x24\x55\x5e\x01\x30\x59\x8e\x09\x02\x73\x0a\x5e\x51\xcb\x9c\x41\x73\xd8\x7c\x0c\x0a\xc4\x35\x2b\xd4\x99\x74\x41\x9d\x2b\x3e\x79\x26\x83\x5b\x22\x96\x1e\x59\x1b\x35\x9d\xb2\x63\xf9\x99\xab\x93\xa3\x29\xf5\x85\xca\x2a\x03\x42\xe0\x51\x19\xc2\x35\x65\x5c\x85\x0f\x98\x69\x1b\x0e\x04\x25\x0c\xfd\xa4\x5d\x87\x87\x8c\x53\x28\xf3\x78\x15\xcf\x0b\xe4\xb9\xbd\x2d\x52\x8b\x1b\x39\x99\xad\xfd\x1c\x1c\x3e\xec\x62\x28\xc3\x0e\xeb\x7d\x7f\x7a\x22\xd3\x73\x49\xee\xdf\x5d\x01\xb9\xf1\x18\x09\x58\xb0\x5c\x78\x86\xd6\xf4\xb9\x78\x10\x85\x63\x5a\x8b\x34\x20\x0b\x9a\xf2\x90\x46\xc3\x22\x57\xe5\x0e\x8d\x72\x7c\x64\x24\x22\x35\x27\xc9\x4b\xc6\x57\x9e\x3b\x2f\xf5\xd1\x01\x5d\x84\x07\x97\xbd\x03\x98\xdc\x50\x45\x9c\x64\xba\xf6\xbc\x4c\x00\x8b\x48\x68\x0c\x80\x8d\xd7\xd2\x1d\x70\xcd\xcb\x8c\xb3\x05\x22\x91\xf9\xd6\x64\x5c\xe4\x59\x6f\xcc\xc1\x1c\x5d\xc5\x8b\x58\x7a\xd0\xec\x46\x3d\xa9\xe9\xbd\xd7\xf1\x25\x8d\xc2\xc0\x59\xd0\x98\x45\x52\xe2\x43\xf7\xf6\x6d\xa0\xd8\xbf\x87\xee\xe1\x5c\x26\x5e\x45\x85\x2b\x86\xfe\x72\x41\xf9\xec\x5d\xca\x26\xe1\x75\x61\x27\x4c\x09\x3a\x2e\xad\x86\x19\x26\x77\x48\xd5\x4a\xb2\x70\x1a\xd3\xc8\x8b\x3b\xf2\x47\x8e\x3b\x7c\xc6\x62\x3b\x3f\xad\x72\xae\x0a\x4e\xba\xf9\x51\x38\x71\x51\xb6\x1c\x8f\x59\x96\xc9\x64\x7c\x32\x8b\x2b\xae\x43\x82\xc9\xbc\xa3\xb7\xb7\x28\x54\x20\xd1\x58\xe4\xfc\x74\xf6\xf6\x0d\xd2\x47\x13\xb2\xa6\x4b\x69\xb0\xcc\xdb\x0e\x9a\x81\xcc\x4f\x4d\x41\x79\x5c\xfc\x79\xa4\x79\x56\xdf\xf7\xb3\xe3\xd8\xef\x79\xe3\x56\x6b\x6c\xe8\xb2\xdc\xd8\xd7\x7f\x42\x52\xf2\xe2\xd4\xca\x4c\xab\x40\xfb\x40\x70\x56\x23\xd5\x54\x0c\x60\x29\x95\x76\x3d\x2f\x2c\xa8\x7a\x62\x92\xf4\x28\x27\x70\x6f\x7b\x2b\xcd\x18\x78\x25\x4d\x6c\xf3\xca\xa7\xc4\xe4\x0f\xbc\x38\x27\x05\xed\xe8\xe5\x1b\x68\x57\x0e\xe6\x22\x5e\xf1\x0d\x61\x78\x85\x80\x8e\x01\x8c\x25\xfc\x63\x3a\xd7\xf4\xb4\xb2\x4a\x99\xfc\xd4\x91\x14\x5e\xf0\x58\xf2\xfc\x3b\x68\x9f\xe9\x1c\xa7\x95\x99\x54\xd5\xe7\xf5\x24\x8f\xb5\xe0\x61\x63\xb0\xca\xdd\x20\x88\x78\xd9\x89\x11\xc0\xd6\x6c\x5f\x10\x7f\x79\x83\xaa\x86\x25\x01\xb5\xd1\x62\x29\xda\x37\x6e\x15\xd9\x00\x92\x62\x18\x21\xd1\xd5\xb7\xf5\x59\x35\x46\x69\xcc\x4b\x6f\xbc\x6d\x49\xc5\xf6\x6e\x5a\x57\x89\x03\x96\x2e\x04\x4e\xaf\x05\x2a\x20\xa7\x44\x02\x52\xed\x14\x98\x10\x4b\x77\x3a\x56\x68\xc3\x7c\x34\x07\xa2\x5a\x2b\xcb\x60\x31\x54\xe3\x14\xc8\x87\x05\x86\x10\xe3\xf0\x48\xdc\x97\x6a\x80\xda\xfe\x57\xee\xfa\xaf\x6a\xf6\x28\x86\xaa\xd8\x3e\x8a\x87\xb1\x4f\x0b\x8b\x7c\xaa\xa3\xab\x65\x9c\x75\xc9\xbe\x87\x3e\x05\x62\x7c\xc4\xf5\xb7\xbe\x4c\x9f\x22\x3f\xf7\xa5\xe5\xc2\x68\xe1\x4b\xad\x3f\x34\xf2\x7d\x3f\xbc\xbd\x95\xf5\xcd\x4d\xc6\xe7\x13\x2c\x01\x6b\xda\x97\xdb\xb7\x1e\x0c\x5f\xd5\x77\xee\xfa\xbf\xd3\x77\xee\xfa\xaf\xf3\x9d\xb3\x60\xd6\x2a\x27\x42\x86\x31\x23\x47\xd5\x2e\xc9\xb3\x18\x7c\x76\x26\xc7\x85\x3a\x8a\x42\x70\x8e\x7d\xae\x74\x49\xb2\xe0\x51\x5a\x96\x90\xba\x8b\xb0\x09\x0c\x89\x55\xcc\x7c\xa9\x33\x26\x36\x5f\x9d\xae\x7f\xf5\x93\x4e\x7b\x67\x18\x67\x6a\x72\x42\x33\x55\xb0\x69\x3c\xa8\xbf\x23\xe6\x19\xf0\x1a\xa7\xa2\xa0\x44\xc6\x78\xea\x11\xb1\xa5\xbf\xf5\x56\x4a\x11\xff\x2a\x14\xcc\xd1\x0d\xf2\x28\x41\xbf\x00\x1c\x1d\x00\x24\xf2\xe2\x7c\x4d\x4c\xf7\x2e\x10\x31\x97\x2d\x08\xe3\xce\xda\x9f\x7a\xc3\x4f\x9f\x42\xf3\xd5\x6b\x88\x3d\xa5\x23\xe9\xf7\xd5\x7c\x7f\xb2\xbe\xe9\x93\x7a\x6a\x26\x60\x8f\x05\x01\x04\x5a\x77\x8c\x64\xfc\x29\x94\x17\xdb\x14\xc2\x5a\xbf\xe3\x5c\x2d\x31\x8b\x23\x81\xe0\x17\xb2\xae\xf8\x0e\x73\x93\xe2\xc3\x97\x99\x1b\x68\x02\x60\x6e\xf0\x4b\xcc\x6d\xaf\x89\x62\xad\xd6\x5e\x73\xc3\xcd\xb0\x27\x71\x21\xda\x50\xe0\x86\x91\xfa\x67\xd6\xd5\x7f\x80\x58\x7d\x58\xc6\x39\x1d\x79\x72\x61\xb6\x2d\x7c\xa5\xb6\xf8\x75\xa0\xf7\x28\x27\xf5\xcd\xb2\x4d\x64\xa7\xec\xf9\x0d\xaa\x01\x1d\x97\x29\x21\x6c\x13\x2a\xa2\xf7\xd3\x4f\x09\xda\x4f\xad\xb1\xfa\x82\xb2\x50\xa9\x12\x59\x13\xb2\x6f\x61\xe5\xec\x1a\xf6\x51\x61\x24\x2b\xb7\x41\xfc\xbd\xe6\xe8\x9b\xe0\xd5\x66\xe3\x12\xdf\x9a\x97\xc1\x67\xc1\x3b\x66\x64\x55\x05\x83\xe6\x39\xef\x0a\xcb\x92\xd5\x4c\x4d\xf6\x46\xb3\x7c\x69\xe9\x04\x62\x66\x95\x68\x82\xf2\x54\x32\x49\xd5\x4c\x08\x6b\x21\x4e\x9a\x39\x02\x2c\x5d\x96\xd3\xa9\x07\xb6\x37\x3f\xd6\x6f\xac\x46\xf1\xe9\x9a\xad\xb4\x2c\x73\x27\xa8\xd5\x19\x5e\xf3\xd8\x57\x5f\x41\xcc\xfc\x17\xa4\xd3\xf5\x14\x66\xa6\x5a\x97\x14\x96\xce\xf8\xa2\x96\x7c\x43\x67\x85\x98\x27\x97\xec\x9d\xb8\xcf\xcd\x3c\x0a\xe8\x14\x9e\x3b\xf0\x02\xad\x0b\xf2\x2f\xf5\xbc\x57\xff\x93\x7a\x5e\x31\xaf\xb7\x16\xd9\x11\x0d\x6b\xd1\x2e\x34\x0e\x92\xb9\x8b\x4b\xdd\xce\xfd\xef\x70\x27\x5b\x8e\x32\x9e\xba\x87\xe4\x11\xc6\x39\x39\xdb\x6c\xed\xee\xe6\xe4\xdc\xfa\x85\x72\x97\x65\x86\x53\x0d\xcb\xc9\x1f\x36\x33\xf8\x0a\xb5\x90\x87\x5a\x74\xbe\x38\x42\x04\x3d\x16\xbf\x23\x2e\x7e\xfe\x20\x7e\x4e\xc5\xcf\x7b\xe8\x9e\x87\x5a\x7f\x2e\x13\x78\x7e\x4f\x3c\xff\xe6\xfe\x23\xf1\xfb\x00\x7e\x5f\x1f\xbe\x3c\x42\xb9\x66\x05\xd5\x62\x18\x2e\x8b\x18\xf4\x5b\x8f\x7f\x40\xf7\x0e\x06\x07\x53\x62\x53\xf7\xf0\x3e\x1b\x80\xb7\xee\xb3\xad\xa1\x80\x4a\xed\xa2\x82\x01\x5d\x56\x4d\x30\xb0\x8f\x56\x88\x50\xbf\x3f\xa8\x66\x6f\x60\x8d\xec\x0d\xca\x54\x18\xef\xdf\xf3\xd1\xbd\x7d\xd6\x8f\x07\xa0\x0b\x2b\x62\x1f\xf6\x7d\xaa\x4c\xb8\xc4\x11\xdd\xe6\x28\x27\xef\x98\xbf\xba\xf1\x74\x5e\xb5\x2b\x4f\x25\x60\x0b\x3c\x99\x96\x6d\x26\x35\xf0\x73\xef\xbb\x2e\xc9\x3c\xb3\x1a\x26\xa4\x54\x53\xd0\x8e\xd9\x95\x73\xca\xa6\x2f\xae\x17\x2e\xfa\x3f\xb7\xdf\x6d\x3f\x1a\xec\x63\xb7\x7f\x73\x15\xcc\xe6\xd9\x60\x1f\x7f\x8b\x30\xd8\x77\xe6\xa0\x76\xe1\x58\xc6\x62\xdd\xde\xde\xdf\xf3\x8b\x30\x66\x6c\x6c\xb2\x52\x61\x15\x99\x55\x68\xbf\x37\x80\x82\x6d\xfd\xc3\x22\x61\x7e\xfc\xf7\x77\xac\x9f\x0e\xca\xda\x62\x90\x60\xcd\x90\xd4\xba\xa4\x7a\xfa\xde\x89\x73\xf3\x98\x36\x64\xb6\xd8\x17\xe2\x15\x68\xcb\xfe\xf6\x4e\x00\xcd\xf7\xfd\x6e\x11\xb6\x76\x00\x8f\xf6\xe3\x42\x78\xd9\x47\x19\x2a\x07\x7d\xc3\x8c\x1d\x7f\xd7\xa1\x10\x58\xc2\xcc\xcc\xc2\x62\x88\xa1\xd5\x53\xe3\x71\xf7\x18\xb5\x81\xb7\xa2\xf0\x47\xbb\xf7\x77\xe6\x31\x12\xfb\xa2\x9f\x60\x99\x52\x15\xce\x85\xe6\x19\x12\xab\x37\xf4\xd4\x71\xc7\x8c\xd3\x71\x31\x26\x49\xf5\xb5\xf1\x26\xac\x37\x54\xf5\xb2\x31\x89\xaa\x6f\x66\xb2\x7e\x31\x26\x59\xf5\x39\xcd\x9e\xd3\x1b\xf1\x42\x83\x5e\x1c\xbc\xec\xb8\xd4\xad\xf2\x52\x79\x4a\x50\x50\x8d\x9c\x9b\x55\xe3\xea\xe6\xc6\x9f\x09\x41\x19\xc2\x9e\xe8\x2d\xb2\xf6\xb6\x73\xf3\xd0\xda\x7c\xfd\xf7\x89\xf5\xfb\x04\x8c\xb9\x86\x56\x58\x7c\x4e\x7f\xe8\x5a\x3f\xa6\x45\x3c\xe3\x7d\x2c\x77\xc8\x43\x5d\xc1\xc8\x7d\xac\x47\x7b\xc9\x7b\x00\x10\xa5\x08\x59\x10\x5b\xff\x86\x5d\xb2\x14\x79\x43\xe6\xf2\x36\xc5\x39\x79\xc9\xfc\x83\xff\x9b\xfe\x1e\xec\xff\xde\xe9\xec\xfb\x9d\xfd\x6f\x0f\xc8\x69\x83\x72\x20\x64\xd0\x8d\xfe\xe0\x48\x6b\x6c\x24\x81\x15\x14\xaa\x87\x3b\xd9\x22\x0a\xb9\x8b\x5a\xa5\x9b\x06\x6f\x66\x8f\x60\x32\x7b\x84\xd6\x0c\x17\x1e\xfa\x68\x8a\x0c\x10\x74\x90\x2e\xee\xc9\x69\xca\xb3\x0f\x21\x37\x95\xea\x09\x81\x3a\x03\xbe\xb8\x15\x55\x62\xbc\x5a\x16\x02\x7b\xa6\x09\x86\x49\x7f\x15\x06\xde\x5b\xe6\x62\xf0\x08\x29\xbb\x4c\x71\x51\x7a\x92\x2b\x8f\xa7\xd8\x52\x51\xc5\xf4\xdc\xe1\xe6\xe4\x12\xdc\x6a\xbd\x64\x1d\xce\x32\xb1\x5b\xc7\x5f\x55\x89\x73\xf5\xdf\xa9\xc4\xb9\xfa\xeb\x94\x38\x8c\xac\x72\xf2\x9a\xb9\xdc\x40\xc0\x10\x63\x0c\x36\xc7\x17\x0c\xe7\x03\xa3\x01\xe4\x1e\x11\x9f\x5b\xdd\xd6\x14\xd2\xfa\x70\x55\x98\x55\x72\x38\x39\xc4\x44\x10\xe9\xee\x00\xae\x80\xde\x80\x24\x7e\xc0\xc6\x49\xc0\xde\x9f\xbe\x2e\x38\x30\x37\x2d\x6f\xe6\xdf\xf7\x0f\xa6\x04\x39\x08\x17\x36\xb3\x58\x19\xc8\x04\xba\xea\x6a\x74\xd2\x3a\x9a\xe4\x85\xd9\xaa\x78\x21\x6b\x45\x74\xc5\x59\x4b\x8e\xb5\x2c\x5b\x98\xa8\x73\xed\xa0\x03\x2c\x71\xd1\x48\x33\xcb\xa8\x07\xed\xd4\x57\x20\x7e\x0c\x65\x76\x2e\x4f\x15\x97\x65\x6e\x82\x0d\x77\xcb\x10\x1f\x2b\x69\x25\xcc\x05\x6a\xe9\xaa\x79\xba\x95\x74\xf0\x82\x5a\xa4\xfa\x91\x5e\x80\x92\x23\xde\x88\x1e\x8b\x69\xb1\x85\x39\x5e\x54\x5e\xa3\xe5\xa8\xd1\x0f\xdd\xe3\x55\xc5\xec\xe2\xad\x72\x1d\x9c\x94\xe7\xe4\xc4\xbe\x47\x17\xec\x06\xee\xf1\x52\x15\xbc\x31\x9b\x4e\xe9\x0d\x6e\x10\x15\x56\xa1\xb2\x9c\x88\x1d\x2f\xde\xc5\x8d\x5d\xa5\x82\xdd\x76\xb9\x2c\xd7\x2a\x36\x0c\x34\xcd\x62\x83\x40\xc7\xac\xe5\x92\xa8\x50\x44\x67\x86\x7a\x7a\x5c\x55\x4a\x2f\xfd\xbd\xbd\x73\xe6\x66\xb8\xd5\xb2\xcc\xdb\xb8\xbd\x37\x84\x7a\x22\x9c\xbb\x99\x86\x63\x3f\x76\x25\x46\x91\x14\x93\xd8\x05\x1c\x22\x89\xef\xfb\x1a\x67\x8e\xbb\x5e\x0f\xde\x68\x64\x21\xe1\x71\xcf\xeb\xc2\x23\x13\x33\xc8\x73\xe6\x46\x18\x93\xa5\x71\xd7\xc4\xae\x81\x04\x64\x89\x89\x20\xe8\xc6\xcb\x0a\x46\x90\x25\x86\x04\x76\xe7\xcc\x1d\xe3\xe3\xd8\x35\xd1\x80\x8c\xc5\xab\x81\x16\x16\xce\x98\x76\xe4\x6b\x21\x9c\x93\x27\x36\x56\x1b\x75\x3a\x07\x20\x9c\x1f\x4f\xbb\x1d\x49\xe2\x37\xec\x11\x13\x73\x9b\x76\x3b\x9c\x8e\xfc\x9e\xf8\xa1\x56\xeb\x77\xc5\x1f\xc6\x3a\xfd\xde\x4c\x0c\xf9\x61\x4d\x08\x7b\xad\x92\x16\x93\xce\x8b\x1c\xe7\xe4\x55\x45\xf2\xd0\x84\xbc\xe9\x70\x4f\xb8\x11\x61\xc6\x04\x25\xe9\x1e\xd1\xc7\xec\x88\xee\xef\x63\xde\xa7\x66\x84\x19\x1d\x58\x8a\x4d\x6e\xe8\x99\x56\x7b\x8e\xfd\xee\x51\xfc\x98\x1d\xc5\xfb\xfb\x98\x0a\xa6\xb1\xec\x39\x1e\x1c\x71\x0d\xec\xa7\x49\x12\x31\x1a\xdb\xc8\xb1\x29\xf9\x48\x89\x4b\x79\x4d\x49\x83\xe1\x9f\xcc\x5f\x4d\xc2\x14\xdc\xd5\x94\x8e\x93\x2c\x58\x0c\xaa\x5a\x74\x25\x1d\xd9\x10\x09\x63\x95\xbe\xae\xb0\x1d\xe7\xe4\xa9\xfd\xf0\xd2\x38\x4e\x38\xdd\xa2\xdf\x4e\xb6\xeb\xb2\x78\xba\x3e\x83\x1a\x0f\x10\x28\x66\xcf\x16\x34\xf6\x1e\x58\x7d\xaf\x66\x0f\x6b\x9e\x57\x49\xcc\xdb\x57\x50\xb3\xa7\x3d\x4a\xa2\x40\x48\xdc\x4f\xca\xa9\x22\xbb\x7a\xe0\x4e\xb3\xa8\xe1\xd5\x26\xa7\x58\xf3\xe2\x61\x8d\x8b\x67\xab\x5d\x60\xbd\x77\x6b\xc5\xc3\x2f\x5e\x1f\xdf\x20\x7d\x9c\xa4\xcf\xaa\x10\x1e\xdf\xdb\x37\x33\x5d\x46\xd2\x65\x2e\x9b\x25\x57\x06\xb8\xca\x3a\xbe\x95\x72\xbb\x3d\x41\x3f\xcd\xb5\xc5\x62\x6d\x91\x9f\x8a\xb5\x65\x7e\xba\x71\x6d\xbb\x68\xdc\x40\x23\x3f\xa1\x01\x44\x48\xaf\x57\x15\x67\xee\x5e\x84\x75\xa4\xeb\x9f\xac\xaf\x62\x8a\x06\x3a\x59\xd1\x78\x99\x66\x50\x8c\x27\x09\x21\x2b\xbe\x35\xf7\x6d\x99\x83\x31\x3a\xbe\xe8\x4c\x6c\xb9\xda\xb7\xee\x00\x07\xf3\x3e\x26\xc8\x71\x11\x31\xf8\xfb\x0e\x8d\x58\x5a\x1e\x7a\xe4\x28\x0d\xb8\xcc\xbe\x61\xe9\xf6\x0c\x26\x03\x85\x81\xbc\xc8\xf4\x94\x9c\x8f\xda\x87\x76\xef\xc3\x45\xca\x4a\x0f\xe9\x32\xd0\xdf\x43\xdf\x4c\x1e\x8a\xff\x10\x59\xd0\x00\xce\x79\xef\xa1\x15\x00\x48\x50\xe0\xf5\xe8\x5f\xe2\x11\x82\xda\xeb\xd6\x2c\x8d\x4b\xd0\xc7\x26\xde\x13\xe6\xde\x7b\x72\xf2\xe2\xf4\xfc\x6c\x05\x4b\x17\x2d\x7c\x74\xaf\x04\x88\x78\x40\xee\xa1\xfc\x9e\xc0\x46\x05\xb6\x2d\xe8\x0b\x77\xe2\xd6\x61\xb9\x0c\x70\x87\x5e\xe5\xaf\x2d\xdd\x6e\x1e\x53\xf9\x87\xdb\x7d\x9c\x1b\xfa\xf7\x79\xd4\x7e\x28\x28\x4d\x26\x84\xb0\x90\xdf\x80\x9f\xa7\x4a\x1f\xd1\xd1\x0f\x3f\x6f\x42\x06\xbd\xbd\xf3\xac\x96\xf3\x39\x4d\xd5\xa4\x8c\x7e\x3a\xea\x05\x96\xf5\xa8\x2a\xb8\xfa\x43\xd7\xa6\x2d\x07\x97\xde\x51\x92\x06\x2c\x65\x41\xc5\xab\xd7\xee\xbe\x3b\x63\x74\xbd\x1b\xfe\x66\xa2\x3b\xd3\x0b\x3f\x01\x28\xae\x71\x36\x2f\xbe\x02\xd2\xb4\xed\x23\x99\xec\xc4\x39\x0b\xe3\xf1\xd6\x6f\xc1\x36\xba\xf6\xba\x30\xfc\x92\x0b\xc0\xdd\x25\x18\xc4\xb8\x18\x37\x85\x84\x6c\xbb\x95\xd4\xa9\xbf\x14\x12\xdd\x98\x46\x4f\xa2\x70\x1a\x7b\x68\x1e\x06\x41\xc4\x04\xb5\xab\xb3\x40\x0a\x25\xbf\xc2\x8d\xf5\x56\x60\x06\xac\xa4\x51\x01\xcd\xc4\xc8\xb4\xdd\x43\x39\x89\x21\x57\x6b\x8a\xd7\x18\x77\x36\xc5\x6e\x34\x2e\xfc\x79\xdb\x1e\xae\xf0\xb6\x34\xea\xfe\xc9\xfa\x4c\xdd\x0c\xfb\x48\x26\xb5\x5b\x2e\x16\x2c\x05\x01\xa7\x52\x0a\xfa\xba\x7d\x1f\xe5\x44\x7d\xbc\x6d\x72\xac\x23\xa9\xf9\x13\xbe\x53\x04\x8e\xcc\x29\xdb\xfc\xf0\x29\x23\x2b\xf3\x70\x57\x58\xab\x5c\x5f\xdd\x38\x27\xbf\x41\x9d\xb7\xc3\x07\x98\xfc\x4b\xfe\x7a\x88\xc9\x8f\xac\xbc\xa0\xe7\x6c\x9e\xe0\x2a\x47\xa8\xef\xf7\xf1\x2c\x8c\x82\x94\xc5\x70\xc7\x5f\xa5\x54\xac\xfe\x4c\xe0\x4e\x06\x9e\xf1\x61\x50\xde\xe7\x37\x72\xe7\xfb\x48\xb7\x41\x04\x55\x5a\x20\x82\xc2\xc0\xa8\x16\xde\x5c\xd1\x6f\xf5\xac\xd2\xb2\xf4\xb8\xb6\x4f\x3a\xfa\xcf\x19\x1b\x5f\x8c\x92\x6b\x9d\x5b\x90\xda\xb6\xd1\x52\xae\x11\x8a\xa7\x86\x81\x17\xab\x22\x8c\x65\x3f\x6b\x87\xd4\x45\x2b\xed\xa9\xe1\x61\xba\xea\x28\x2d\x33\x96\xaa\xaa\x9a\x28\x4e\x62\x86\xf2\x0d\xbd\xc2\x69\x42\x64\x92\xa4\x5e\x9c\x2b\x8d\x46\xa9\xd2\xfe\xf5\x7f\xd2\x72\x53\x2c\xef\x5b\xf6\x55\xb4\x60\xbf\xfe\x77\x6a\xc1\x7e\xfd\x6b\xb4\x60\x02\x54\xff\x64\x7e\xbf\x8f\xb4\x28\x86\x48\x21\x8b\x0d\x48\x1f\x29\x99\x4d\x1c\x4a\x25\xb4\x89\xa7\x52\xb2\x43\x44\x8b\x76\x83\x01\xf9\xd9\xce\xe9\x0b\xe6\x10\xbc\x97\x8c\x42\xd6\xfd\x81\x27\xeb\x9a\x83\xdf\xc3\xb3\x64\x19\xf3\x92\x1e\x98\x8c\xbf\x96\x20\xf7\xba\x85\xec\xb8\xd7\x2d\x85\x46\x60\x95\x2d\x35\xa9\x33\x59\x93\x7a\x2c\x6b\x52\x2f\xd7\x89\x14\xf3\x4a\xcb\xa5\x68\xb9\xf0\x21\x17\x4e\xe0\xcf\x3f\x5b\xa4\x68\xb2\x47\x41\x7b\x12\xb1\x6b\x95\x6f\x34\xcd\xda\x8a\xca\xa1\x9c\xfc\x93\x35\xa3\x18\x01\x80\xc4\x72\x41\xa6\xf2\x82\x4c\xb6\x5c\x90\x3f\x32\x79\x3f\xa6\xa4\x42\x4d\xbd\xd5\x9c\xa6\xd3\x30\x3e\x85\xac\x6c\xbd\x6e\x91\x20\xea\x99\xa0\x6a\x92\xc9\x0a\x03\x53\xa3\x4d\x50\x5b\x4d\x19\xe1\x42\x36\x72\xb9\x9f\x12\x33\x79\x86\xfb\x2d\x13\x94\xb2\x08\x39\x81\x13\xb3\xca\x09\x27\x7b\xe2\xb4\x41\xaa\x84\x2d\xd7\x66\x62\x52\x3e\xb8\x35\xc7\x74\x11\x72\x1a\x85\x1f\x05\x59\x4c\xa5\xb4\x13\xf7\xd3\x01\x48\x33\xd8\x4e\x5d\xc5\xba\xad\x2b\x3e\x61\x93\xb2\x2e\xb4\x58\xa2\x90\x3d\xdb\xc6\xdd\x57\x2c\x73\x83\x04\x18\xb8\x7b\x0b\x7b\x49\x13\x1d\x95\x55\xcf\x5b\x8b\xba\x9d\x47\x29\x9b\x23\x48\xaf\x25\x6b\x46\x7b\xbd\xce\xa3\x3c\x27\xb2\x0c\x00\xad\x29\x0b\xea\xe9\x8a\x4d\xbe\x4e\x0a\xce\x59\x27\x4b\x2a\x19\x52\x4a\x55\x4c\x56\x30\x1e\x39\xc6\x96\xc8\xf4\x9d\xd8\xc0\x9f\x18\x59\xc1\x38\x9e\x1a\x4f\x70\x28\x93\x30\x62\x04\x39\x3f\x38\x88\x30\x25\x7c\xea\xd9\xac\x9f\x6f\x39\x1d\x6b\x6d\x37\x85\xa1\xb2\xbf\x7d\x4e\x6a\xca\x00\x6f\x41\xc4\x00\xe0\x98\x8c\x31\x56\x8e\xcf\x82\x33\xf9\x69\xbd\x56\x41\xe6\x1a\x2b\xf8\x8f\xd8\xb7\xda\x8e\xca\x29\x4a\xb4\x65\x0d\xb4\x95\xf3\x26\xa5\x8c\xbf\x5f\x13\x58\x04\xfe\x11\x4d\xa0\x4a\xfa\xd4\xdd\x58\x9f\xdd\x92\x03\x22\x59\x2e\xda\x61\x3c\x49\x1c\x29\xe6\x38\x20\x4c\xb3\xa0\x9d\xcd\x8b\x1c\xc8\x15\xcc\xe9\xe5\x39\xa1\x3b\xd1\x9b\x11\x0d\xa6\xcc\x24\x33\xe7\xcc\x8d\x3b\x9a\x7a\x62\xdb\x96\xbc\x35\x63\x3e\x0b\x8d\x5c\x79\x37\x60\x12\x77\xd4\x4a\xed\x02\x9b\xd9\x81\xbe\x30\x72\xa2\x6f\x11\x38\xbf\xba\x03\xa9\x92\x10\xac\x44\xba\x53\x77\x65\x74\xae\x6c\x21\x3b\x93\xbf\x25\x41\xc0\xf9\xd1\xcf\xac\xa3\xc2\x5d\xdf\x80\x26\xe0\x09\x6c\x99\x74\x4d\xf8\x37\xf3\xaf\xdc\x9f\x05\xe2\xda\x6a\xac\x31\x23\xb6\x86\x50\x7f\x64\xd8\x09\x8d\xab\x0b\x21\x8f\x93\x22\x32\x08\x10\xee\x18\x7c\xbe\x01\x37\x10\x06\xf9\xa5\xa3\x43\x5a\xa4\xd6\x3f\x4d\x13\xa9\xf6\x0f\xb3\x13\xe5\x99\x1a\xf9\xab\xe2\x16\x33\x70\x87\x68\x74\x2a\xfc\x36\x62\xf0\x64\x6a\xb5\xe4\xbf\xea\x36\xad\xfd\xb9\x45\x39\x2b\x0f\xe9\xa6\x6f\xa2\x52\x5c\xd9\xcf\xd7\xd1\xd5\x7f\xb3\x3a\x5f\x5c\xde\xde\x5e\x94\x13\x39\x25\xa2\xa2\x4c\x52\x52\x2c\xd6\x4b\xc0\x8d\x84\x73\x9f\xba\x90\xb4\x8d\xfb\xb4\x13\xbb\x9c\x63\x12\x73\xdf\xa5\xee\x61\xb7\x67\x0f\xae\xbd\xa1\xf3\x68\xc3\x61\x92\x8a\x28\x93\x5b\x4e\xe2\x49\x38\x6d\x8b\x66\x28\x87\xf4\xa5\x47\x31\xaf\xe2\xc3\x33\xf8\x44\xe2\x43\xca\xfd\x2b\x37\xe6\x98\x24\x76\x7c\x90\x1b\x67\xa4\x2e\xfc\x44\xd5\x24\x19\xfb\xb4\xd5\xa2\x5b\x96\xb3\x13\x4f\x31\x3b\xd4\xea\x02\xb9\x10\xe5\x65\xf1\xfb\x35\xed\xda\xd4\x55\x94\x83\xbe\x8a\x5d\x73\x6f\x2c\x2e\xb5\x64\x71\xe3\x55\xa9\x60\xe6\x72\x4c\x32\x06\x41\x4d\xc9\x92\xbb\x19\xe9\x3d\xec\x76\xed\x37\xdc\x9f\x8d\x7c\x1b\x24\x08\x33\xc1\xc3\x07\xde\xde\x38\x27\xd1\x31\x7a\x96\x2c\x42\x16\x20\x4f\xfc\xb8\x71\x78\xe2\x8c\xa3\x70\x31\x4a\x68\x1a\xac\xd1\x6c\xa4\x5c\x63\x0c\x37\x30\x66\x6f\x4c\x04\xb0\xbc\x31\x60\x4e\x78\xc7\xe3\x6a\x1c\x50\x19\x84\x76\x20\x11\x63\xfd\xe9\xdc\x60\x50\xe0\x25\x46\xcb\x90\x18\xe5\x25\x9a\x93\xc8\x3e\x2d\x95\xbd\xc6\xa0\x19\xab\xdc\xe3\x5f\x70\xdf\xe7\x73\x1a\x07\xed\x93\x30\x66\xce\xcb\x88\x4e\xed\x9a\xaa\xf5\x8a\x33\x92\xf1\x34\x5c\xc0\xc3\xad\x21\xf0\xa6\x0c\x49\xd7\xe6\x3c\xdd\x98\x7b\xc4\xea\xac\x5c\xaa\xbd\xd8\x96\xec\x17\x7d\x36\x28\x8d\x09\x99\x38\xb0\x11\xc7\x47\x51\xed\x54\x4b\x38\xc0\xa1\x1e\x7f\x29\xda\xae\x50\x67\x22\x41\xbc\x1b\x5d\x5f\xbf\xcb\x19\x57\x3e\xaa\x8a\x4c\x5a\xa9\x64\x4e\x96\x82\x48\x1e\x7e\x87\xc9\xdc\x5a\xe9\xe5\x13\xb1\xa7\x62\x3a\x60\x1d\x28\x42\x45\x90\x5d\xab\xbb\xac\xa9\x52\xe6\x51\xfb\x01\x22\x52\xe5\x2d\x23\x39\xb0\x60\x07\xe1\x87\x6d\xac\x91\x52\x21\x8a\xfd\x5a\x88\xfd\xb2\xea\x87\x0a\x40\xd2\xca\x32\x95\xb7\x83\x0e\x07\x4e\x2e\xb4\xab\x40\xc1\x8c\x28\xef\x82\xb4\xf0\x82\xd0\x6c\x81\x7c\xb1\x8c\x2f\xe2\xe4\x2a\x2e\x5e\x16\x2c\x48\x2e\xab\xde\x94\xe1\xa4\x82\x31\x34\xee\xd0\x2f\x76\x3e\x4f\xc5\x6d\x0b\x7c\xcd\x5d\xd4\xb3\x8d\xe3\xba\x41\x47\xfb\x19\x3a\x6e\xd3\xb0\x78\xdf\xda\x3b\x45\x64\x35\x4b\xd9\xc4\x43\xdf\xa0\x7d\xc9\x98\xdb\xcd\xa0\x87\x08\x74\x62\xfa\x13\x25\x13\x7c\x82\x7a\x55\x43\xee\x23\x73\xa5\x7f\x75\xe9\xe5\xaf\x99\xf2\x25\xef\xc4\xc9\x15\x76\x31\x26\xc8\xa1\xd3\xc4\x1e\x28\xb2\xdb\x30\x43\xe6\xf6\xd8\xfd\xbf\x9b\xd9\x66\x3b\xac\x18\x51\xe5\x08\xdd\x41\x0b\xbf\x8e\xe6\x6d\x36\x0d\x6f\x9a\x35\xa0\xce\x96\x1c\x37\x1b\xcd\x0e\xc5\x47\x32\x0a\x78\xcb\x47\x27\x34\xe3\x4e\x09\xeb\xad\x7d\x96\xb1\x17\x02\x48\x08\xef\x22\xff\x6d\xba\x18\xb8\x40\x1a\x29\x51\x59\x04\xd5\x8a\xb9\xa1\x5e\x94\x06\x7d\xf3\xf2\xa1\xf8\xaf\xaa\x2b\x15\x93\x19\x8e\x59\x64\x8f\x66\x9b\xf3\xa2\xfa\x9e\x64\xd5\x65\xa6\x0e\x85\xbf\xb6\xc5\x1b\x2d\xa4\x93\x8c\x6a\x00\xc6\xbe\x0d\x29\xfe\x76\xa2\xc2\x86\xbd\x6f\x57\x9b\x89\xa6\x9e\x0d\x85\x10\xf5\xb9\x60\x36\x63\x9f\xef\x62\xe3\x6f\xd0\x76\xb1\x19\x54\xc8\x94\x48\x66\x7d\x59\x67\x24\xb9\xc3\xe2\x6a\xb6\xc3\xc6\x0a\x8d\xf7\xff\xd1\x65\xda\xf2\xde\xed\x88\x79\x5b\x70\x2c\x65\xe3\x24\x0d\x3e\x1b\xc9\xee\x4a\xe7\x0c\x79\x99\xba\xac\x33\x63\x34\xe2\x33\xb8\xb0\xe5\xcf\x0e\x4f\xde\x2f\x16\x2c\x7d\x46\x33\xe6\x6e\xb7\x37\x01\x39\x16\xc4\x64\xd7\x24\x87\x46\x13\xa9\xaf\xd9\x3c\xc2\x9d\x68\xfe\xc6\x9e\x76\x23\xeb\xb9\xfe\x5f\x6e\x78\xeb\x0b\x28\xcf\x3e\x5d\xc4\x48\xe5\x85\xff\xb9\x0c\xe2\x82\x93\x55\x91\x4f\x25\x5e\xc7\x1f\x06\xf6\x79\x56\xcc\x6d\x50\x7e\x59\xaa\xd7\x67\xc9\xd5\x2f\x49\xca\x36\x1c\x96\xd9\x7d\x6d\x55\x5e\x27\xf0\x49\xc1\xe1\x3a\x2b\xb5\xa2\x54\xeb\xa5\xb4\x9f\x07\xea\x76\xee\xb3\xb9\xa3\xff\x7f\xf8\x50\xff\x81\x88\xa9\x06\xbd\xff\xfd\x43\xf1\xc8\xd4\xc6\xf6\xc4\x83\x9a\x35\x79\x44\x33\x16\x85\xd2\x12\x56\xb5\xec\xe6\x04\x74\xb6\xe2\xf8\x1e\xa3\x48\xb0\x83\x1e\x9a\x27\xa9\xb8\x8c\x72\x32\xb1\x72\xcc\x76\x9f\xbc\x2f\x4f\x6e\x14\x75\xd9\xac\xc1\xda\x60\xa1\x36\x32\xbd\x90\x7b\x3e\xba\x67\x56\xb7\x80\xfa\xa0\x20\x09\x4f\xed\xdb\x2f\x0b\x0e\x51\x95\xf4\xe3\x3f\xe5\x43\xb5\xf1\x82\x08\x84\x1c\x7d\x59\x29\x84\x82\x57\xca\x9d\x4a\xa3\xa9\x17\xed\x98\xed\x8c\xd3\x74\xca\x78\x1b\x18\xe1\x1c\xf2\xb4\x91\xc8\x42\xa1\xce\x4b\xf4\x15\x72\xaf\xc9\x5e\x97\x59\xe2\xb6\x08\xc3\x5f\xc2\xa1\xe4\x79\x98\x8d\xc5\x78\x2c\x70\x76\xf3\x2d\x39\x87\xf5\x15\x1f\xef\xe2\x12\x52\xe7\xc1\xe8\x4e\x3c\x98\x15\x63\x4b\xa2\x3a\xe1\x2e\xef\xd3\x81\x90\xb5\xd5\x02\xe4\x94\x30\x26\xf0\x3c\xcc\x9e\xa7\xc9\x62\xc1\x82\x6d\x0c\x9c\xa0\x02\x1f\xa4\x02\x1b\x49\x4e\x38\x27\x48\xb5\xb5\xa6\xb0\x6d\xce\x41\x31\x45\x8a\x86\x7b\xaa\xde\xf4\xa5\xfd\x40\xe8\x80\x69\x01\x46\x55\x7c\x44\x0e\xa6\x1f\xc5\xd6\x20\x97\x55\x4e\x62\x7f\xaf\x4b\x52\x7f\xaf\x47\x12\xa5\xc2\x39\xe2\xe9\x4d\x61\x75\x0e\x49\xe4\xb3\xbe\xb4\x87\x77\x42\xce\x52\xca\x93\x74\xe0\xe2\xa3\x3d\x37\xf6\xdd\xd0\x8f\x3a\x31\xbb\xe6\x2e\xc6\x9d\x20\x89\x19\x3e\x12\xdd\xc9\xde\x33\x3f\x94\xe7\xb4\x93\x8d\x53\xba\x60\xef\x92\x24\x3a\xa2\xfd\x6c\x70\x7b\xeb\x8a\x7f\xfc\x15\x4f\x38\x8d\xbc\xae\x2e\xe8\xdc\xcd\x31\x11\x2f\x3a\xf0\x7c\x7f\x5f\xfe\x21\x5f\xee\xef\xe7\xb9\xcc\x01\x34\xc1\xab\x54\x4c\x39\xf1\x27\xf9\x24\x8c\x69\x14\xdd\xac\xc4\x84\x63\x59\x92\xdb\xf7\xa3\x8e\xc4\x83\xdb\x5b\xfd\xcb\xc5\xc5\x97\xe1\xc4\x4d\x55\x86\xa6\x24\x07\x5b\xf0\x58\x74\xb6\x14\xeb\x9f\xdb\xd6\xbf\x20\x33\x9f\xdb\xd7\x3f\xf6\xdd\x85\x3f\xab\xad\x7f\x5c\xac\x3f\xf0\x17\x6a\xfd\x75\x6c\xea\xfc\x91\x8c\x8e\x68\x3f\x90\x90\x08\xd6\x41\x22\x28\x20\x61\xac\x7d\x29\xa6\x3b\xaf\xad\x7d\xac\xd7\x3e\x2b\xd6\x3e\xb3\xae\x7d\xa9\xd6\x3e\xcf\x4b\x77\x03\x70\xfb\x27\xe9\x7f\x0e\x3f\xc8\xd8\xcf\xaa\x38\x32\x96\x90\x19\x0f\xfc\xfe\x40\x40\x62\x3c\x90\x81\x92\xab\x3a\x24\xbd\xac\x01\x5c\x12\xe9\x37\xaa\xb6\x54\x71\x66\x65\x72\x27\x05\xca\xcb\x02\x8d\x2e\xbf\x08\x1a\xa9\x7d\xd9\xeb\x91\x85\x0d\x4c\x33\x12\xac\x43\xa3\xa5\xef\xce\xfc\xa0\x06\xa6\x65\x01\xa6\x89\x3f\x53\x60\x9a\xfa\x93\x75\xa8\x34\x95\x00\x9b\x6a\x80\x4d\xd7\x02\xac\xd9\x85\x09\xa0\xae\x86\xde\x2a\xaf\x80\x6a\x2e\x56\xb7\xa8\x81\x6a\xa9\x41\x15\x14\xa0\x0a\xac\xa0\x9a\x2b\x50\x2d\xea\x58\xf7\xc5\x74\x50\x67\x2c\xbd\x0c\xc7\xcc\xd1\x17\xcf\x8d\xfd\xc2\x59\x46\xaa\xc1\x07\xe6\xc6\xe4\x4b\xf2\x44\x51\xb8\xf1\x82\xa9\x28\x99\xa4\x4c\x26\x8d\x79\xf2\xc0\x13\xe4\x1c\x08\x1e\x4f\x9e\xf7\xc2\x89\xd9\x91\xd7\x7e\xa6\x4c\xff\xd6\x25\xcd\xb4\xf6\x51\xac\x29\xfd\x92\x6b\x9a\x72\x9d\xd8\x26\x26\xe0\x96\x4c\x95\x44\x29\xe5\x89\xa3\xcb\x9a\x4a\x5a\xed\x41\xb1\x05\xcf\x64\x1d\x38\xa9\xa4\x1e\x71\xff\xca\xbd\xe4\x98\xdc\x7c\xba\xdc\xa1\xa0\xf1\xf9\x92\xc7\x88\x37\x1d\xde\x36\x18\xf3\x48\x91\xbc\xea\x5c\xca\xad\x0d\x6c\x73\xc2\x58\x46\x20\x85\x49\x8c\x80\x6f\xbd\xe6\xbe\x91\x3b\x4f\x0b\xbc\x67\xe2\x89\xca\xe4\x21\x1d\xdd\xc2\x8f\xec\xb7\x46\x3a\x2b\x2d\xaa\xb1\x2b\xe7\x39\xe5\x4c\xf0\xf0\x3c\x79\x7f\xfe\xac\xc8\x2c\x99\x93\x67\x1f\x9e\x17\xbd\x7e\x48\xd2\x8b\x30\x9e\x3a\x41\x98\x42\x1a\x75\x21\x36\xa4\x2c\x4a\x68\x20\x4d\x66\x67\x52\x93\x5c\x7c\x5f\x31\xa4\x39\xf2\xcb\x5d\xe6\xc3\x8e\x91\xea\x6a\xb2\x8c\x90\x07\x29\xa3\x8b\x3f\xf3\x1c\xb2\x48\xc8\xbe\x2b\x8b\x06\xb5\x5b\xf9\xa5\x33\xb6\x0d\x9f\x93\xf1\x6c\x19\x5f\x48\xdb\xaa\x6e\xf9\x8a\xd1\xc0\x81\xe7\x19\xca\xa1\xb4\xa1\x4c\x1d\x68\xf9\x4a\xbc\xd4\x75\x8c\x85\x14\x95\xa6\x4b\x08\x79\xab\x7e\xfa\xe1\xc9\x89\x53\xbe\x13\x5f\x4e\x93\x34\x59\xf2\x30\x66\xd5\x0f\x7f\xd4\x8f\xc5\x37\x19\x4f\x52\x3a\x65\xa7\x4c\xa0\x73\x98\xc4\xc6\x76\xc2\x0b\x27\xd5\x6f\x04\x6f\x2e\x1d\x56\x23\x96\xf2\x39\x8d\xe9\x94\xa5\x99\xb7\x92\xb0\x3d\x55\x85\x13\xd7\x01\xfa\x6b\xbb\x33\x17\xdc\xf6\x8b\x38\x80\x78\x0d\xa9\xd2\x5c\x23\x1e\xb2\xce\x32\x8d\x54\x10\xd5\xfb\xd3\x13\x97\xcb\x53\x27\xd3\x68\xc2\x99\x13\x67\x56\x10\x86\x6d\xa9\xe5\x3f\x29\x83\x7c\x49\x32\x79\x4e\x62\xac\x23\x6c\xf2\x9c\x28\xc6\xb6\x06\xe2\xec\x22\x5c\x08\x99\x26\x27\x2f\x36\x5a\x29\x95\x31\xe8\x4b\xdd\x3c\x74\xad\x29\xd2\x90\xde\x66\x6d\xf0\xc1\x22\x76\xc9\xec\xee\xd6\xc9\xf5\x71\x51\xbb\xd1\x7c\x92\xfa\xd7\x42\xc4\xb8\xbd\x5d\xe5\x24\xf1\x53\x65\x1f\x8b\x4a\x13\x6e\x72\x4c\xbd\x04\xf2\x8e\x56\xb1\x95\x8c\xcb\x6f\xb2\x63\x1b\x8d\xc8\xbd\x8c\x2c\x8b\x76\xa7\xc9\x95\x86\x74\xda\x11\x5b\x24\xcb\xda\x2d\x8f\xc7\x6e\x4c\xa8\x5d\x0e\xda\x22\xaa\xcd\x6a\x1e\x10\x85\xc3\x5c\x1b\x56\x51\xb8\x10\x5d\x41\x6c\x11\xba\xff\xf0\x6f\x40\x9b\xd6\x2a\xd3\x56\x75\x17\x3c\xc8\x6b\x2b\x88\x88\x1b\x93\x08\x97\xb6\xd8\x0b\x71\x85\xbd\xe0\xf8\xe8\x45\xfd\xe2\x03\xbb\xa9\xbc\xe7\xae\x76\xb8\xde\xb6\x9b\x62\x37\x95\x6b\x68\xe2\x67\x7f\x05\xb9\x73\x65\x3a\x73\xcf\xbc\x3c\x29\x41\xda\xaa\x9b\x2e\x63\x41\x23\xc5\x45\x25\x8e\xbd\xa2\x60\xa7\xf2\xa9\xf3\xda\xbc\xbf\xc8\x2e\xfd\x8d\x96\x61\x14\xd4\x7a\x7b\x2a\x9e\xdd\xa5\x2f\x6a\x9e\x61\xa3\xa3\xca\xd9\x46\xf9\x60\x3d\x8d\x32\x7a\x2f\x0f\xb7\xf2\x81\x2b\xd8\x03\x6e\xf8\x21\x25\x3e\xdf\xe6\x01\x71\x51\xb3\x5c\xcb\x49\x51\x83\x25\x48\x95\xb6\xb2\xc1\x1a\x68\xe6\x88\xbc\xe5\x3e\x75\x1f\x7e\x8f\xc9\x99\xf4\xfd\x79\x6b\x26\x1c\x3a\xe7\xff\xd3\x6e\xeb\x7f\xf0\xaf\xe2\xb6\x7e\xce\xff\x2b\xdd\xd6\xc5\xb4\xfe\x22\xb7\xf5\x67\x76\xe2\x22\xb7\x58\x06\x97\x32\xfe\x52\xfe\x25\x8e\x40\x36\x4b\xae\x5e\x81\x15\xe4\x86\xa4\xfe\x8a\x46\x91\xa7\x32\xeb\x79\xb1\xa9\x91\xa5\x51\xe4\x14\xe7\xf2\x8c\x77\x68\x67\xc4\x63\xdc\x88\x32\x5a\xef\x23\x4c\xdd\x3f\xb8\x74\x7d\x5e\x19\x63\x82\xb7\xba\xb8\xb1\x97\xf1\x4c\x3d\xd1\xc3\xef\x55\xc6\x2f\xde\x7f\x9d\x59\xf4\x60\x16\xf9\xfa\x03\xcf\xd8\xe6\x04\x65\x69\x87\x42\x6c\x5b\x14\x59\xc5\x4a\xf9\x49\xb1\x08\x82\xde\xeb\x9f\xa0\xa6\x7f\x07\x1e\x2e\xff\xc0\xe4\x17\x49\x0a\xde\x71\x4c\x9e\x5b\x76\x52\x9a\x32\x14\x6b\x06\xd6\x8c\x69\x94\x8c\x68\xf4\x3e\x8d\x40\x95\xc0\x0b\x56\x8c\x62\x25\x99\xcf\x37\x30\x8c\x9f\x56\x70\xe5\x85\xcc\x98\x8d\x09\x72\x10\x99\xeb\xf4\xd8\x32\x29\x52\xea\x73\xe0\x16\x66\x49\xc6\x49\xe4\xa7\x05\x03\x08\x8c\xc2\x22\x4d\x78\x32\x4e\x22\x48\x4f\x9e\x19\xf9\xf6\xc9\xd2\x87\x20\xfc\xce\x24\x4d\xe6\xee\xb8\xe0\x5e\xf0\xe7\x8a\xff\x05\x87\x18\x9b\xd6\x84\x8c\xa0\x83\x03\x23\x89\x50\x99\x9c\x08\x63\xb2\x2c\x62\x2f\x6d\x0a\xdc\xc2\x93\x47\x26\x74\x5e\x7e\x69\xcb\xc9\x2e\x96\x91\xf2\x08\x50\xac\x2d\xb8\xdb\x4c\x25\xf2\xca\x79\x03\x78\x76\xf8\x08\x93\xa1\x72\x32\x85\xb2\xc1\x8f\x1e\x60\x4c\x3e\x4a\xd4\x1b\x72\x4c\x5e\xae\x61\x8f\xeb\x5a\x21\xea\x6b\xbb\xbc\x0a\x60\xbb\x86\x22\x74\xa5\x9e\xae\x8c\x43\xa9\x5b\x5d\xb2\x0a\x84\x22\x01\xa1\xb1\x9f\x09\x08\x2d\xfd\x4c\xf0\x9f\x73\x1f\x49\x59\x4d\xc6\x77\x65\xed\x4a\xec\x85\x91\x34\xe3\x73\x51\x44\x9a\xaa\xc2\xc0\x9b\x9b\x70\xae\x8e\x3d\x4e\x62\x4e\xc3\x18\xce\xc7\x27\xbb\xff\xdd\x6d\x6b\x99\xdc\x5a\x66\x6e\x2d\xab\x6e\x2d\xed\xb3\x41\xb9\xbb\x96\xb5\xbd\xe1\x46\x20\xfb\x98\x48\xe5\x88\xf7\xec\xec\xac\xc3\xb2\x31\x5d\x30\x77\x8e\x89\x0c\xef\xb0\x90\xca\xa5\xbb\x37\x06\xf7\x42\x60\x95\xe7\xf4\x5a\x46\xe2\xcb\x78\x3c\x22\xd8\x60\x65\x9a\x8c\xd8\x84\xdb\x4d\xff\x68\xa4\x69\xc6\x53\x36\x49\x52\x21\x05\x03\x40\x55\xb9\xa6\xf5\x96\x49\xc5\xe8\xd4\x80\x5b\xb0\x25\xa6\xea\xa7\x02\x11\xd6\xe7\x12\x22\x50\x7b\xfc\x8e\xa5\xe1\x76\x13\x9f\x0b\x02\xb0\x93\x55\xee\xa3\xb8\xa3\xca\x73\x93\x13\xa6\xed\xed\x25\xab\x77\x5a\x61\xf5\x7e\x3a\x7b\xfb\x46\x15\x58\x8f\x92\x31\x8d\x94\x02\x41\xf0\x01\xaf\x39\x9b\xbb\x0c\xdf\xde\xc2\x37\x32\x33\x53\x38\xb9\x71\x39\x68\xbb\x2c\x07\x8d\x5a\xad\x9b\xa1\xb4\x6e\x46\x15\xeb\xa6\xd9\xfa\xc5\x64\xc2\xc6\x1c\x57\xaa\x0d\x4b\x1a\x50\x1b\x38\xc4\x47\x95\x39\x66\x7a\x8e\xe0\x66\x4e\xfa\x8c\x84\x03\x4c\xfa\x21\x89\x06\x70\x3b\xbc\xe6\x7e\xbf\xd4\x2c\x68\xbf\xad\x22\xb8\x5c\xb9\x5f\x9d\x01\xf9\x10\xaf\xe1\x87\xf3\x5c\xe9\x81\x90\xf6\xe1\x1a\x90\x13\x3b\x81\x32\x08\x0f\x30\xfa\x80\xef\x3f\xa6\xc9\x72\x41\x62\xff\x54\x08\x73\x52\x3d\xd8\x36\x55\x87\x6d\x76\xbd\xa0\x71\xc0\x02\x84\xc9\x4a\xff\x96\x51\x74\x16\xe0\x25\x00\xbc\x8e\xfe\x4e\x41\x11\x12\x14\x2d\x17\xa0\x20\x7a\x4c\xd5\xc0\x45\xd1\x5d\x7d\xb7\x8a\xb3\x93\xce\x69\x84\xc8\xd8\x47\x8b\x24\x89\x8c\x79\x60\xb2\xf4\x0b\xf5\xaf\x7e\x3a\xc6\x24\x0c\xbc\xf1\x06\xb6\xa4\xe1\xd7\xf3\x8b\x40\xb8\x82\x5c\xd9\x30\xd8\x6a\x74\xd6\x31\x0f\xae\x01\x01\xf0\xad\x28\xcc\xd0\xc9\x3a\xa5\x75\x4d\x4d\x5a\x9d\x4a\x3f\x1b\xe4\x90\xe6\xc8\x84\xb8\xe3\x22\x23\xe5\x9e\x02\x1b\x41\x07\xe6\xd3\x2a\x08\x09\x72\x96\x0b\xbc\xc6\xe8\x6b\x66\xeb\xb0\xce\xb2\xa6\x6b\x01\x10\x41\xae\xe6\x35\xda\x96\x2f\x68\x07\x97\x69\xed\xc5\x77\x70\x77\xbc\x6e\xd8\xa4\x37\x5a\xa4\x67\xa5\xbb\x38\x93\x64\x63\x9b\xf6\xa7\x04\xdc\x86\x12\x91\x8d\x7b\x3c\x2e\xef\xf1\xda\xfd\x9d\x14\x7f\xbe\x4f\xc5\x6d\x6e\x30\x9c\x24\xf3\x0d\xc7\x26\x32\x56\x7f\xc9\x43\x4b\x96\x95\x3f\xf5\x11\x26\x73\x5f\x3b\x5d\x91\x85\xd5\xc9\xb9\xc3\x93\x93\xe4\xaa\xf0\xc5\x92\x2e\xcf\xcb\xc5\x1a\x97\xe7\xc0\x74\x6b\xd6\x3e\xcf\xd5\xea\x86\x86\xb7\xb3\x3b\xdf\x5a\xe2\x52\x40\xdb\x8e\xe9\x35\x3d\x10\x20\x91\xe6\xc4\x6d\x0d\x9e\x8b\x63\xa6\xde\x7b\x09\x29\xc0\xe6\x45\x1b\x1c\xd8\xea\x03\x40\xfc\xd1\x16\x07\x9a\x45\x4e\xe6\xbb\x7a\xb0\xd5\xfb\x97\x9b\x6e\xad\x73\xc0\x49\xd3\x30\x48\xb5\xe9\x2f\x26\x25\x8e\x78\x29\x09\x83\x6b\x8f\xef\xbe\xac\x3e\x12\x98\xd1\x96\x5d\xa0\x41\x4e\x3e\x32\x77\xdc\x74\x71\xdb\xbd\x3b\xd9\x53\x5b\xa7\x57\x15\x5d\x2a\xd7\xb7\xe5\xee\xb0\x00\x75\x4d\x96\x13\x9b\xe3\x6d\x15\xdc\x99\xf2\xb4\x28\x93\x42\x3c\xd9\x2a\x75\x57\x9d\x2f\xa4\x6d\xca\x16\x80\x29\xcf\x28\xd7\x87\x04\x44\xf4\xf2\x38\xa6\xbe\x38\x0b\x50\xd5\xa7\x72\x4e\x8e\x7b\x5e\x57\xa3\x36\xeb\xc7\x83\xdb\x5b\x17\x92\xde\xae\x14\x71\xf5\xba\x8a\xf9\xcb\xbc\xfe\x20\xc7\x44\xbc\x2c\x28\x05\x58\x81\xb9\x7a\xa8\x1a\xec\xfb\x29\x61\x39\x26\x2b\xb8\x05\xab\x6a\x82\x44\xfd\x5d\x88\xb0\x77\x61\xc0\x4d\x06\x6f\x6d\x0e\x50\xa5\xf3\x11\xcc\x5c\x54\x5e\xac\x72\xd9\x95\x7b\xa1\x48\x7d\xd8\x6a\xa5\xb7\xb7\x7b\x51\xab\x95\x1c\xaf\xcf\x4e\xda\x9c\xdf\x89\x66\xf5\x4c\x7c\xe6\xc4\x60\x1c\x3c\x9a\xe3\x81\x4c\x7d\xd9\x1f\x08\xb6\xed\x49\x5d\xb3\x5b\x34\xac\x18\x33\x3f\x70\xff\xca\x7d\xc2\x31\x79\xb5\x83\xb6\xb7\xc0\x94\x78\x8b\x5d\xf3\x58\xd6\x21\xd2\x71\xa7\x62\x6f\xe2\x52\x8b\x99\xf8\xb1\x32\x72\x46\x7e\x6c\xe8\x33\x85\xe8\x2d\x55\xb2\x82\xf1\x30\xea\x91\x65\xad\x96\x2c\x1a\xe7\x80\x8e\x54\x50\x49\xf1\x74\xfd\x7e\x7e\xb0\x58\x45\x53\x65\x15\x95\x4b\xf0\x74\x14\xcf\xf8\xb8\x2c\x6f\x96\x61\x2f\x31\x54\xa3\x51\xc3\x5a\xaa\xce\x45\xd3\x46\xfa\xe7\x0e\xd0\x33\x19\xbb\x05\x9d\xb2\xb6\x9c\x09\xaa\x2b\x9a\x48\x05\x69\x25\x87\x17\x57\x38\x3c\x2a\x33\x09\xc4\x32\x93\x80\x5e\x51\x4a\x0a\x95\x99\x17\xf7\x7b\x83\x9c\x44\xc6\xbb\x72\x2a\x1e\xdf\xc0\xa8\xdd\xd1\x59\xe1\x5c\xdb\xb1\x2d\x9f\x3d\xe3\x24\xb1\x56\x63\xe0\x24\xaa\x08\x16\x4f\xff\xb7\x75\xc8\xef\xbf\x8e\x0e\xf9\xe9\x7f\xa7\x0e\xf9\xe9\x5f\xa7\x43\xfe\xcd\x76\xe8\xd0\x71\xa9\x86\x00\xe6\xf2\xc4\x4c\x39\x8a\x8f\xae\xc2\x38\x48\xae\x3a\x33\x59\x40\x08\xb6\x4f\xd5\x67\xcb\x09\x42\x42\x20\x24\xff\xb2\x1f\x66\x5d\x97\xd9\x9e\x0d\xa5\x5a\xba\x43\x3e\xa8\x94\xd3\x04\xae\x74\x99\xb1\x77\xb2\xfe\xe6\xa9\xa6\x86\x59\x95\x4e\x08\xfe\x14\xe2\x07\x54\x89\xa3\x17\x31\xc4\xe8\x96\x89\x50\x8a\x94\x4b\x6a\x3e\x88\x20\x73\x6c\xf9\x67\x65\x64\xf9\xa8\x36\x2e\x22\xa8\x1c\x15\x11\x64\x19\x13\x0d\x8c\x34\x2b\xa6\xbc\xbe\xec\x40\xe1\xa9\x0c\x93\x45\x85\x2e\xcd\x05\x5d\x9a\xf9\x0b\x99\x85\x65\x21\x04\xce\x29\x90\x3d\x05\x6d\x24\xee\x26\x72\x59\x69\x33\x15\x6d\x46\xfe\xa5\x68\x73\xed\x5f\x0a\x51\x7f\x9b\x8c\xbf\x37\x53\xa7\xa6\xd5\xba\x70\x31\x51\x3b\x9a\xc4\x8b\x64\x21\xef\x9d\x46\x41\xae\x53\xe6\xaa\xaf\xa2\x44\x15\x37\x95\x6a\x5d\x7c\xc4\x8c\x14\x76\x81\xcb\x70\x2e\x6f\x50\x59\x20\xb8\x9e\x01\x7d\xcf\x6d\xf7\xa0\x6c\x40\x18\x07\xec\xfa\xed\xc4\x65\x18\xb7\x5a\xba\x0b\x8d\x2a\xa3\x26\xbb\x60\xa4\x23\x76\xa8\xef\xfb\xec\x98\x7b\x76\x06\x80\x63\xd2\xa7\x03\xa9\x96\x18\xe0\xa3\x6b\x57\x67\x22\xef\x92\x87\x5d\x30\x41\x5c\x98\xeb\x7b\xc5\xdc\x80\xfc\xc6\xb1\x6b\xef\x6d\xb6\x3e\xd9\xb9\x06\x62\x99\xf3\xfc\x05\xcb\x81\x75\xb8\xc3\xe5\x30\x5b\x6f\xce\x0c\x03\x90\xca\xb6\x56\x35\xbb\x60\x64\x55\x2d\x32\xec\xbd\x90\x11\x94\xc5\xc4\x12\x52\x2f\xc6\x66\xf3\xe9\x29\x40\x51\x9f\x54\x09\x7a\xc9\x9b\x85\xc1\xf1\x7b\xb0\xae\x50\xb2\xd2\x43\xb0\x1c\x7b\x54\x2a\x9f\x8d\x52\x2c\x16\xd5\x83\x31\x8a\x2d\xad\x7d\xb9\xcb\x9d\x30\xd8\x93\x14\x62\x1d\x9f\x57\x4c\xa2\xba\x31\x05\x3a\x55\x39\xba\x6a\xf9\x9b\x98\xd4\x4f\xb9\x97\x92\xe6\x29\xf7\x22\x62\x94\x99\xf3\x28\x31\x8a\xd0\x79\xe3\xe3\x91\xd7\x1f\x98\x9c\x41\x96\xaf\xc9\x1f\x51\xaf\x6d\x33\x1f\xb5\xef\xa3\xb5\xf6\xac\x8b\x9c\xa0\x27\x41\x50\x54\xad\xc9\xc9\x8f\x3b\xf0\x47\x75\x0f\x02\xab\xaa\xb0\xbb\x53\xc6\x06\x41\x73\x96\x19\x6b\x83\xd6\xaf\x2d\x9d\xd4\xf6\x7a\xb8\x24\xa2\xd0\x74\x2c\x9a\xce\xfd\xa5\x68\xba\xf0\x97\xa2\xe9\x0c\x9a\x32\xa0\x7f\x6d\x59\xca\xbd\xa0\x5d\xa2\x83\xa0\xd2\xc1\x4c\x74\x30\xf5\x03\xd1\xc1\xa5\x1f\x88\x0e\x6e\x8a\xb1\x83\x2a\x09\xde\xeb\x62\xf2\xa2\xd2\xfa\x46\xb4\xbe\xf0\x5f\x88\xd6\x57\xfe\x0b\xd1\xfa\x6d\xd1\x5a\x55\x69\x6e\xa7\x05\xb9\x16\xc3\x9f\x55\x3a\x78\x2b\x3a\x38\xf7\xcf\x44\x07\x7f\xf8\x67\xa2\x83\x67\x7e\xc3\x2f\x41\x32\xe6\x20\x10\x1f\xe8\x9a\x2d\x07\xe0\x0c\x09\x6e\x0a\xef\xfc\x67\x25\x67\xfe\x8b\xff\x4c\x71\xe6\xcf\x7d\x57\xfb\xec\x61\x71\x2f\xcb\xea\xd7\x50\xf3\xfa\xcd\xba\x31\x00\x5e\xc7\xf0\x7f\x9f\xc3\xf7\x62\x80\xa1\xff\xa6\x1c\xe0\xa3\xff\xa6\xea\xb2\xb0\x8d\xd6\x87\x13\x77\x68\x04\x7e\x33\x5f\xfe\xa5\x8a\x06\xf7\xbb\x83\xa3\x4c\xd6\xfe\xa1\xa3\xcc\x7d\xde\x66\x58\x12\x70\xf9\xd5\xc0\x86\xca\xbb\x70\xb8\x9b\xd3\x50\xdd\x27\x4a\xb2\xf2\x50\x18\x47\x61\xcc\xda\xa3\x28\x19\x5f\xa8\xc4\x54\x15\xac\x31\xd2\x16\x16\xe5\x12\x6d\x07\x41\xca\x05\x1a\x28\x97\x2e\xef\x8c\x65\x46\x2f\xdc\x48\xf1\x35\xcd\x09\x92\x17\xb4\x2c\xfe\xeb\x68\x04\xbd\x7b\x3e\xad\xc3\xee\xc6\x95\x54\x4f\xd0\xa7\x2d\x65\xb1\x69\x29\xf3\x9c\xa0\xf7\x19\x73\x60\x10\xe9\x4b\xfa\x55\x16\x51\x39\x8a\x9f\xb6\x8e\xab\x4d\xeb\xb8\x50\xeb\xa8\x72\x5d\x5f\x65\x29\x75\xba\xf0\x69\xab\xf9\x63\xd3\x6a\xce\xd5\x6a\xd4\x55\xe2\x14\x1c\x23\x26\x6e\xf4\xc3\xfd\xee\xed\xed\x47\x6b\xfa\xa9\x4f\xb3\xd2\x7f\x90\x6a\x4f\xcf\x41\x98\x7c\x6c\xb5\xd0\xfb\x98\x5d\x2f\xd8\x98\x33\xa3\xb6\xb8\x54\x0a\x38\x57\x33\x16\x17\x1a\x00\x27\x63\xe9\x25\x4b\x01\x6b\xbc\xd2\x1c\xf9\xb1\xb0\xf3\x93\xe8\x07\xff\x7e\xb7\xd5\x52\x25\xb3\xed\xed\x9e\x33\x2e\xc7\x42\x46\xdd\x1f\x47\x15\x30\x92\x9e\xb8\x41\x38\x99\xb0\x94\xc5\x63\xe6\x8c\x18\xbf\x62\x2c\x76\x6e\x92\x65\xea\x8c\xd2\xe4\x2a\x63\xa9\x43\xe3\xc0\xe1\x33\xa6\xfa\xed\x38\xe7\x33\x1a\x27\x99\x93\xb2\x28\x64\x99\x93\xc4\x0e\x1d\x8f\x97\x29\xe5\x4c\x76\x07\x9f\x43\xbf\x69\x38\xe1\xce\x3c\x9c\xce\xb8\x33\xa6\xcb\x8c\x39\xcb\x72\xe9\xf2\x64\x4b\x22\x97\x75\x04\x19\xfd\xe5\xeb\x80\xbc\x0e\x1d\x25\x54\x38\x51\x98\x71\xcf\xd9\x79\x33\x64\x33\x27\x06\x2e\xc3\x41\xe4\x97\x72\x1b\x9a\xd3\xf9\x17\x27\x2b\x29\x40\x78\xeb\x19\x73\x93\x2d\xa1\x55\xde\x67\x6e\x63\x74\xce\x9b\x0c\xd1\x85\xe2\x7d\x32\xef\x9d\xd4\xfd\x58\x64\x1c\x6f\x0a\xfa\x9b\x5f\xed\xfc\x09\xdc\x9a\xe0\x2d\x0a\x9a\xbd\xa7\x37\xa0\x60\x16\x2c\x90\x72\x51\x2a\x5c\xb8\x9f\xde\xfc\x52\xf0\x59\x20\x0f\xce\xd9\x3c\x49\x6f\x5e\xc7\x4f\x6f\x38\xcb\xcc\x86\x69\xbd\xe1\x49\x31\xc8\x3b\x1a\x6e\xf0\xe5\xdb\x1c\xc3\x6f\xe8\x64\xce\x9e\x3f\x75\x94\x23\xa7\x3d\xce\xe2\x7e\xad\x8a\x30\x24\x8b\x97\xce\xe7\xcf\x68\x1a\x84\x31\x8d\x42\x7e\x03\x7d\x88\x2e\xfa\xda\x49\xfc\x3c\x59\x38\xbd\xae\x03\x50\x91\x7b\xed\x5c\x85\x7c\xe6\x00\x37\xe1\x8c\x65\x2d\x6c\x59\x46\x9c\xe7\xa4\xd6\x4a\xae\x59\x7e\xe5\x8c\x6e\x2a\x28\xa3\x5b\xd1\x46\xab\xc6\x58\xb3\x70\x3a\x73\x24\x70\x9d\xa5\xc0\x30\x44\x96\x71\xc8\x3d\x04\x80\xd6\x1d\xc5\x5b\x87\x97\x1d\xcb\x99\x2f\x68\x98\x16\x4d\xd3\x4d\x3e\x9a\xd2\x27\x53\xec\xbd\x18\x94\xc4\x25\xd3\x4a\x8f\x11\xec\x27\xf2\xa8\xdc\x62\xd1\xd9\x9d\x6a\x39\xb7\x0f\xd1\x86\xcc\x31\x65\xac\xf7\x17\xce\x18\xf5\x25\x82\x64\xc5\x0a\xb6\xc4\xc5\xc6\x3b\x58\x05\xd3\xf5\x80\x8f\xf5\x99\x83\x1d\xfb\x02\x6e\xfa\x5b\xd2\x70\xd3\xc2\x59\x1a\x9c\x20\x7e\xad\x69\xd3\xc5\x19\x93\x47\xac\xa2\x4d\xff\x96\xfb\x57\xee\xaf\x1c\x93\x7f\x7e\x76\xd6\x33\x9e\x05\xa3\xcf\x0f\x0f\xfa\xb6\xa1\x08\xb7\xe5\x26\x28\x22\x86\x1a\xfa\xee\x92\x94\x34\x75\xde\x3f\x4b\x27\xad\xef\x30\xf9\x49\xfe\xfa\x1e\x93\x7f\x73\x7f\x05\x54\xd6\xeb\xaf\x20\xd0\x4a\x15\x60\x26\xcb\x34\xf4\xd0\x41\xcc\xae\x0e\x54\x01\xde\x41\x4e\x18\xdd\xc5\xe4\xc0\xe1\x3e\x2d\x0a\xfe\x7c\x8d\x00\xf9\x9f\xb9\x55\xbc\x0d\x68\x7a\x01\x51\x2e\xfa\x82\x4d\x2f\x20\xc5\x07\x8d\x03\x0f\xcd\x03\x24\x0b\x7f\x78\x88\x27\x0b\xeb\xb5\xfb\x13\x74\xbb\xad\x20\x89\x35\xb3\x48\x3d\x91\x57\x4c\x2f\x47\x34\x6d\x8f\x52\x1a\x07\x90\xd0\xab\x8a\x3a\x25\x5c\x71\x4e\x90\xe2\x40\xda\x0e\x22\xb4\xdf\x1d\x54\x8d\xae\x84\xea\x82\xa8\x3d\x52\x94\xbf\xdc\x5e\x5c\x44\x4e\x40\x3a\x1b\x80\xa3\xd5\x1f\xcb\x8c\x87\x13\x1d\x19\xe7\xa1\x6c\x41\xc7\xac\xad\x38\x24\xbb\x9b\xd5\xeb\x66\x76\xb2\x2e\x2a\x7b\xce\xc9\xbf\x21\x58\x7c\x77\xcf\x83\x13\x5d\x46\x80\x75\x96\x69\x68\x1b\xf2\x89\xac\xfc\x3c\xf5\x04\x40\xab\x60\x2b\x9d\xb1\x44\x63\x5c\x66\xc1\xb2\x6b\x40\xb6\x55\x32\x97\x3e\x31\x33\xce\x17\x99\x77\x70\x20\x91\xb6\x13\x26\x07\x53\xc6\x79\x18\x4f\xdb\x60\xbf\x62\x41\x67\x1e\x1c\xc8\xcb\x36\x5a\x7c\x5a\xc9\x74\x39\x50\x65\xfb\xd5\xd6\xeb\x47\x6b\x38\xaa\x9c\xa0\x67\x02\xf8\xe1\xd8\x79\xff\x1a\x29\x8b\x30\xa7\xd2\xbf\xf2\x81\x3d\x89\xe7\xe6\xb3\xf8\x79\x66\x24\x46\x05\x1b\x58\x5a\xa5\x48\xad\x77\x8f\x5a\x8f\xc6\x18\xaa\xfd\x44\xcb\x30\x30\xb0\x51\x25\x33\x39\x4f\x16\xde\xf7\x5d\x2b\xf2\x2d\x3b\x63\xb2\x1a\xd1\x8c\x89\x21\x9b\xc7\x07\x59\xf3\x5b\x2f\x3b\x23\xb2\x9a\xa4\xc9\xdc\x43\x07\x5b\x8e\x9d\x55\xda\xe3\x72\x85\x9e\xde\xa2\xaa\x15\xce\xd6\x84\x95\x4d\x64\x7a\xad\x1d\xda\x84\x65\x1b\x95\x2b\x73\x7b\x9b\x71\xd9\x46\x26\x49\xdc\xde\x64\x56\x36\x91\x69\x73\xb6\x37\xb9\x29\x9b\x64\x32\xd0\xb4\x1d\x14\x61\xcd\xdb\x9b\x5f\x19\xcd\x25\x3f\xbb\xbd\xcd\x3f\xcb\x36\xe2\x0a\x6d\xef\xdc\xf0\x4f\xa3\xa1\xb2\x6a\xd6\x1a\x01\x37\x40\xa8\x3a\x31\x0f\x31\xf9\xf1\xe4\xed\xd3\x27\x27\xc3\x77\x4f\xce\x5f\x0d\xdf\x9d\xbe\x78\xf9\xfa\x9f\xf8\x08\x19\x7f\x0d\xdf\x9d\x3c\x79\xf6\xe2\xd5\xdb\x93\xe7\x2f\x4e\xd1\x9e\xef\x37\xbf\x6f\xb5\xd0\xc1\xba\x37\xe7\xcc\xb5\x0c\x70\x7b\xeb\x52\xea\x23\x24\x2d\x14\x31\xf5\xcf\x5f\x3d\x79\xf3\xf6\x6c\xf8\xec\xed\x2f\xef\xde\xbe\x79\xf1\xe6\xfc\x08\xca\xb4\xd6\x9f\xb6\x5a\x6e\x4c\x7d\xa9\x9c\x42\x98\x64\x1d\xc1\x55\xc4\x01\x4b\xdd\x26\x24\x78\xf5\x60\x52\xda\x38\x99\xb1\x38\x9a\x41\x32\x06\xa3\x64\x67\xca\xb8\x6a\xfa\xf4\xe6\x75\xe0\xa2\x34\x49\x38\x68\x7d\x0f\xff\x51\x09\x09\x25\x14\xaf\x20\xf9\x64\x92\xf2\xcc\x5f\x15\xde\x7f\x9e\xe1\x9c\x00\x2a\xe3\x61\xf1\x6a\x38\x3c\x9c\xd3\xf1\x1c\xe9\x68\xaa\xfa\x87\xf0\x78\x38\xec\x2d\x16\x3f\xfe\x81\x88\x74\x5b\x6c\x7e\x25\x9f\x0f\x87\xbd\x27\xcb\xf0\x8d\xb3\xb9\x0f\x29\x46\x37\xfb\x90\xcf\x87\xc3\x7f\x27\xaf\x2e\xbe\xdb\xd2\x07\x38\xed\x59\x26\x2b\x1e\x0f\x87\xbd\xb3\x20\xed\x21\x32\x66\x91\x65\xaa\xe2\xe9\x70\x78\xff\xe4\xb7\xd1\x10\x91\xc2\x2f\xab\xf1\x99\x7e\x33\x1c\xf6\xde\x3c\x98\x5e\x37\xe6\x53\xe9\x46\x67\xab\xab\x7f\x24\x9f\x0f\x87\xbd\xdf\x7e\xbb\x1e\x6d\xee\x02\xec\x6a\xcd\x1e\xe0\xf1\x70\x78\xf8\xf4\xcf\xe7\x5b\xe6\x50\x71\xa5\xb2\x4d\xa5\x78\x3b\x1c\xf6\x1e\x1d\xfe\xf6\xf3\xe6\xee\xa4\x13\x94\x05\x2e\xf0\x7c\x38\x3c\xfc\xe9\xe9\xe5\xbf\x36\x76\x91\xe7\xe4\xe1\xf7\x9b\xd0\x73\xc4\x63\x0f\x49\x77\x8a\xe1\x88\xc7\xc3\x61\xef\x66\x16\x4c\x45\xbb\x47\x0f\x36\xb5\x2b\xbd\xd1\xb4\xbf\x88\xf4\x4a\x1b\x96\x2f\x86\xc3\x43\x76\x16\x3d\x40\x79\x9e\x93\x7e\xbf\xd7\xed\x92\x1e\x39\x1c\x0c\x06\xf8\xe8\xff\x3b\x38\xf8\xc6\xc9\x92\x65\x3a\x66\xbf\xd0\xc5\x22\x8c\xa7\xef\x4f\x4f\xfc\x39\x0d\xe3\xce\x88\x7e\x7f\xf8\x70\xf4\x68\xd2\x81\x28\xf2\xce\x1f\xe0\x3a\xf9\xff\x02\x00\x00\xff\xff\xa7\x0d\x01\x4b\x3f\x99\x01\x00") -func pkgUiStaticReactStaticJsMainA7db5187ChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJsMainBa725b9fChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJsMainA7db5187ChunkJs, - "pkg/ui/static/react/static/js/main.a7db5187.chunk.js", + _pkgUiStaticReactStaticJsMainBa725b9fChunkJs, + "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js", ) } -func pkgUiStaticReactStaticJsMainA7db5187ChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJsMainA7db5187ChunkJsBytes() +func pkgUiStaticReactStaticJsMainBa725b9fChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJsMainBa725b9fChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.a7db5187.chunk.js", size: 104767, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js", size: 104767, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -770,7 +770,7 @@ func pkgUiStaticReactStaticJsRuntimeMain56ad181aJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", size: 1552, mode: os.FileMode(420), modTime: time.Unix(1587714257, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", size: 1552, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1530,7 +1530,7 @@ func pkgUiStaticVendorJsJquery350MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.5.0.min.js", size: 89493, mode: os.FileMode(420), modTime: time.Unix(1586532248, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.5.0.min.js", size: 89493, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1811,12 +1811,12 @@ var _bindata = map[string]func() (*asset, error){ "pkg/ui/static/react/favicon.ico": pkgUiStaticReactFaviconIco, "pkg/ui/static/react/index.html": pkgUiStaticReactIndexHtml, "pkg/ui/static/react/manifest.json": pkgUiStaticReactManifestJson, - "pkg/ui/static/react/precache-manifest.13e764b9739a0bc43bda80653214998a.js": pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJs, + "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js": pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, "pkg/ui/static/react/service-worker.js": pkgUiStaticReactServiceWorkerJs, "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css": pkgUiStaticReactStaticCss23f5e1097ChunkCss, - "pkg/ui/static/react/static/css/main.a6053568.chunk.css": pkgUiStaticReactStaticCssMainA6053568ChunkCss, - "pkg/ui/static/react/static/js/2.42f57af3.chunk.js": pkgUiStaticReactStaticJs242f57af3ChunkJs, - "pkg/ui/static/react/static/js/main.a7db5187.chunk.js": pkgUiStaticReactStaticJsMainA7db5187ChunkJs, + "pkg/ui/static/react/static/css/main.61ef2226.chunk.css": pkgUiStaticReactStaticCssMain61ef2226ChunkCss, + "pkg/ui/static/react/static/js/2.926cad18.chunk.js": pkgUiStaticReactStaticJs2926cad18ChunkJs, + "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js": pkgUiStaticReactStaticJsMainBa725b9fChunkJs, "pkg/ui/static/react/static/js/runtime-main.56ad181a.js": pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css": pkgUiStaticVendorBootstrap413CssBootstrapGridCss, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css": pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss, @@ -1933,16 +1933,16 @@ var _bintree = &bintree{nil, map[string]*bintree{ "favicon.ico": &bintree{pkgUiStaticReactFaviconIco, map[string]*bintree{}}, "index.html": &bintree{pkgUiStaticReactIndexHtml, map[string]*bintree{}}, "manifest.json": &bintree{pkgUiStaticReactManifestJson, map[string]*bintree{}}, - "precache-manifest.13e764b9739a0bc43bda80653214998a.js": &bintree{pkgUiStaticReactPrecacheManifest13e764b9739a0bc43bda80653214998aJs, map[string]*bintree{}}, + "precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js": &bintree{pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, map[string]*bintree{}}, "service-worker.js": &bintree{pkgUiStaticReactServiceWorkerJs, map[string]*bintree{}}, "static": &bintree{nil, map[string]*bintree{ "css": &bintree{nil, map[string]*bintree{ "2.3f5e1097.chunk.css": &bintree{pkgUiStaticReactStaticCss23f5e1097ChunkCss, map[string]*bintree{}}, - "main.a6053568.chunk.css": &bintree{pkgUiStaticReactStaticCssMainA6053568ChunkCss, map[string]*bintree{}}, + "main.61ef2226.chunk.css": &bintree{pkgUiStaticReactStaticCssMain61ef2226ChunkCss, map[string]*bintree{}}, }}, "js": &bintree{nil, map[string]*bintree{ - "2.42f57af3.chunk.js": &bintree{pkgUiStaticReactStaticJs242f57af3ChunkJs, map[string]*bintree{}}, - "main.a7db5187.chunk.js": &bintree{pkgUiStaticReactStaticJsMainA7db5187ChunkJs, map[string]*bintree{}}, + "2.926cad18.chunk.js": &bintree{pkgUiStaticReactStaticJs2926cad18ChunkJs, map[string]*bintree{}}, + "main.ba725b9f.chunk.js": &bintree{pkgUiStaticReactStaticJsMainBa725b9fChunkJs, map[string]*bintree{}}, "runtime-main.56ad181a.js": &bintree{pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, map[string]*bintree{}}, }}, }}, diff --git a/pkg/ui/bucket.go b/pkg/ui/bucket.go index 2901b3cb0c7..76e65918615 100644 --- a/pkg/ui/bucket.go +++ b/pkg/ui/bucket.go @@ -7,11 +7,13 @@ import ( "encoding/json" "html/template" "net/http" + "path" "time" "github.com/go-kit/kit/log" "github.com/prometheus/common/route" "github.com/thanos-io/thanos/pkg/block/metadata" + "github.com/thanos-io/thanos/pkg/component" extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" ) @@ -30,7 +32,7 @@ type Bucket struct { func NewBucketUI(logger log.Logger, label, externalPrefix, prefixHeader string) *Bucket { return &Bucket{ - BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs()), + BaseUI: NewBaseUI(log.With(logger, "component", "bucketUI"), "bucket_menu.html", queryTmplFuncs(), externalPrefix, prefixHeader, component.Bucket), Blocks: "[]", Label: label, externalPrefix: externalPrefix, @@ -45,6 +47,15 @@ func (b *Bucket) Register(r *route.Router, ins extpromhttp.InstrumentationMiddle } r.WithPrefix(b.externalPrefix).Get("/", instrf("root", b.root)) r.WithPrefix(b.externalPrefix).Get("/static/*filepath", instrf("static", b.serveStaticAsset)) + // Make sure that "/new" is redirected to "/new/" and + // not just the naked "/new/", which would be the default behavior of the router + // with the "RedirectTrailingSlash" option (https://godoc.org/github.com/julienschmidt/httprouter#Router.RedirectTrailingSlash), + // and which breaks users with a --web.route-prefix that deviates from the path derived + // from the external URL. + r.WithPrefix(b.externalPrefix).Get("/new", func(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, path.Join(GetWebPrefix(b.logger, b.externalPrefix, b.prefixHeader, r), "new")+"/", http.StatusFound) + }) + r.WithPrefix(b.externalPrefix).Get("/new/*filepath", instrf("react-static", b.serveReactUI)) } // Handle / of bucket UIs. diff --git a/pkg/ui/query.go b/pkg/ui/query.go index 9f1f8accba2..2231f99c8a1 100644 --- a/pkg/ui/query.go +++ b/pkg/ui/query.go @@ -49,7 +49,7 @@ func NewQueryUI(logger log.Logger, reg prometheus.Registerer, storeSet *query.St cwd = "" } return &Query{ - BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs()), + BaseUI: NewBaseUI(logger, "query_menu.html", queryTmplFuncs(), externalPrefix, prefixHeader, component.Query), storeSet: storeSet, externalPrefix: externalPrefix, prefixHeader: prefixHeader, @@ -84,6 +84,16 @@ func (q *Query) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew r.Get("/status", instrf("status", q.status)) r.Get("/static/*filepath", instrf("static", q.serveStaticAsset)) + // Make sure that "/new" is redirected to "/new/" and + // not just the naked "/new/", which would be the default behavior of the router + // with the "RedirectTrailingSlash" option (https://godoc.org/github.com/julienschmidt/httprouter#Router.RedirectTrailingSlash), + // and which breaks users with a --web.route-prefix that deviates from the path derived + // from the external URL. + r.Get("/new", func(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, path.Join(GetWebPrefix(q.logger, q.externalPrefix, q.prefixHeader, r), "new")+"/", http.StatusFound) + }) + r.Get("/new/*filepath", instrf("react-static", q.serveReactUI)) + // TODO(bplotka): Consider adding more Thanos related data e.g: // - What store nodes we see currently. // - What sidecars we see currently. diff --git a/pkg/ui/react-app/.eslintrc.json b/pkg/ui/react-app/.eslintrc.json new file mode 100644 index 00000000000..395ca48af20 --- /dev/null +++ b/pkg/ui/react-app/.eslintrc.json @@ -0,0 +1,31 @@ +{ + "parser": "@typescript-eslint/parser", + "extends": [ + "react-app", + "plugin:@typescript-eslint/recommended", + "plugin:prettier/recommended" + ], + "rules": { + "@typescript-eslint/camelcase": "warn", + "eol-last": [ + "error", + "always" + ], + "object-curly-spacing": [ + "error", + "always" + ], + "prefer-const": "warn", + "comma-dangle": [ + "error", + { + "arrays": "always-multiline", + "objects": "always-multiline", + "imports": "always-multiline" + } + ] + }, + "plugins": [ + "prettier" + ] +} diff --git a/pkg/ui/react-app/.gitignore b/pkg/ui/react-app/.gitignore new file mode 100755 index 00000000000..4d29575de80 --- /dev/null +++ b/pkg/ui/react-app/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/pkg/ui/react-app/README.md b/pkg/ui/react-app/README.md new file mode 100755 index 00000000000..f9c67282cb9 --- /dev/null +++ b/pkg/ui/react-app/README.md @@ -0,0 +1,83 @@ +# Working with the React UI + +This file explains how to work with the React-based Thanos UI. + +## Introduction + +The [React-based](https://reactjs.org/) Thanos UI was was bootstrapped using [Create React App](https://github.com/facebook/create-react-app), a popular toolkit for generating React application setups. You can find general information about Create React App on [their documentation site](https://create-react-app.dev/). + +Instead of plain JavaScript, we use [TypeScript](https://www.typescriptlang.org/) to ensure typed code. + +## Development environment + +To work with the React UI code, you will need to have the following tools installed: + +* The [Node.js](https://nodejs.org/) JavaScript runtime. +* The [Yarn](https://yarnpkg.com/) package manager. +* *Recommended:* An editor with TypeScript, React, and [ESLint](https://eslint.org/) linting support. See e.g. [Create React App's editor setup instructions](https://create-react-app.dev/docs/setting-up-your-editor/). If you are not sure which editor to use, we recommend using [Visual Studio Code](https://code.visualstudio.com/docs/languages/typescript). Make sure that [the editor uses the project's TypeScript version rather than its own](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-the-workspace-version-of-typescript). + +**NOTE**: When using Visual Studio Code, be sure to open the `pkg/ui/react-app` directory in the editor instead of the root of the repository. This way, the right ESLint and TypeScript configuration will be picked up from the React workspace. + +## Installing npm dependencies + +The React UI depends on a large number of [npm](https://www.npmjs.com/) packages. These are not checked in, so you will need to download and install them locally via the Yarn package manager: + + yarn + +Yarn consults the `package.json` and `yarn.lock` files for dependencies to install. It creates a `node_modules` directory with all installed dependencies. + +## Running a local development server + +You can start a development server for the React UI outside of a running Thanos server by running: + + yarn start + +This will open a browser window with the React app running on http://localhost:3000/. The page will reload if you make edits to the source code. You will also see any lint errors in the console. + +Due to a `"proxy": "http://localhost:10902"` setting in the `package.json` file, any API requests from the React UI are proxied to `localhost` on port `10902` by the development server. This allows you to run a normal Thanos Query server to handle API requests, while iterating separately on the UI. + + [browser] ----> [localhost:3000 (dev server)] --(proxy API requests)--> [localhost:10902 (Thanos)] + +## Running tests + +Create React App uses the [Jest](https://jestjs.io/) framework for running tests. To run tests in interactive watch mode: + + yarn test + +To generate an HTML-based test coverage report, run: + + CI=true yarn test --coverage + +This creates a `coverage` subdirectory with the generated report. Open `coverage/lcov-report/index.html` in the browser to view it. + +The `CI=true` environment variable prevents the tests from being run in interactive / watching mode. + +See the [Create React App documentation](https://create-react-app.dev/docs/running-tests/) for more information about running tests. + +## Linting + +We define linting rules for the [ESLint](https://eslint.org/) linter. We recommend integrating automated linting and fixing into your editor (e.g. upon save), but you can also run the linter separately from the command-line. + +To detect and automatically fix lint errors, run: + + yarn lint + +This is also available via the `react-app-lint-fix` target in the main Thanos `Makefile`. + +## Building the app for production + +To build a production-optimized version of the React app to a `build` subdirectory, run: + + yarn build + +**NOTE:** You will likely not need to do this directly. Instead, this is taken care of by the `assets` target in the main Thanos `Makefile` when building the full binary. + +## Integration into Thanos + +To build a Thanos binary that includes a compiled-in version of the production build of the React app, change to the root of the repository and run: + + make build + +This compiles in all web assets into the Thanos binary. + +Note that `make build` only compiles static assets using `bindata.go`, if you are working on React UI, make sure you run `make assets` to update `pkg/ui/bindata.go` diff --git a/pkg/ui/react-app/package.json b/pkg/ui/react-app/package.json new file mode 100644 index 00000000000..c529eb4f0f4 --- /dev/null +++ b/pkg/ui/react-app/package.json @@ -0,0 +1,96 @@ +{ + "name": "graph", + "version": "0.1.0", + "private": true, + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^1.2.14", + "@fortawesome/free-solid-svg-icons": "^5.7.1", + "@fortawesome/react-fontawesome": "^0.1.4", + "@reach/router": "^1.2.1", + "@testing-library/react-hooks": "^3.1.1", + "@types/jest": "^24.0.20", + "@types/jquery": "^3.3.29", + "@types/node": "^12.11.1", + "@types/reach__router": "^1.2.6", + "@types/react": "^16.8.2", + "@types/react-copy-to-clipboard": "^4.3.0", + "@types/react-dom": "^16.8.0", + "@types/react-resize-detector": "^4.0.2", + "@types/sanitize-html": "^1.20.2", + "bootstrap": "^4.2.1", + "css.escape": "^1.5.1", + "downshift": "^3.2.2", + "enzyme-to-json": "^3.4.3", + "fuzzy": "^0.1.3", + "i": "^0.3.6", + "jest-fetch-mock": "^2.1.2", + "jquery": "^3.3.1", + "jquery.flot.tooltip": "^0.9.0", + "jsdom": "^15.2.0", + "moment": "^2.24.0", + "moment-timezone": "^0.5.23", + "popper.js": "^1.14.3", + "react": "^16.7.0", + "react-copy-to-clipboard": "^5.0.1", + "react-dom": "^16.7.0", + "react-resize-detector": "^4.2.1", + "react-scripts": "^3.2.0", + "react-test-renderer": "^16.9.0", + "reactstrap": "^8.0.1", + "sanitize-html": "^1.20.1", + "tempusdominus-bootstrap-4": "^5.1.2", + "tempusdominus-core": "^5.0.3", + "typescript": "^3.3.3" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test --runInBand", + "test:debug": "react-scripts --inspect-brk test --runInBand --no-cache", + "eject": "react-scripts eject", + "lint:ci": "eslint --quiet \"src/**/*.{ts,tsx}\"", + "lint": "eslint --fix \"src/**/*.{ts,tsx}\"" + }, + "prettier": { + "singleQuote": true, + "trailingComma": "es5", + "printWidth": 125 + }, + "browserslist": [ + ">0.2%", + "not dead", + "not ie <= 11", + "not op_mini all" + ], + "devDependencies": { + "@types/enzyme": "^3.10.3", + "@types/enzyme-adapter-react-16": "^1.0.5", + "@types/flot": "0.0.31", + "@types/moment-timezone": "^0.5.10", + "@types/reactstrap": "^8.0.5", + "@types/sinon": "^7.5.0", + "@typescript-eslint/eslint-plugin": "2.x", + "@typescript-eslint/parser": "2.x", + "babel-eslint": "10.x", + "enzyme": "^3.10.0", + "enzyme-adapter-react-16": "^1.15.1", + "eslint": "6.x", + "eslint-config-prettier": "^6.4.0", + "eslint-config-react-app": "^5.0.2", + "eslint-plugin-flowtype": "3.x", + "eslint-plugin-import": "2.x", + "eslint-plugin-jsx-a11y": "6.x", + "eslint-plugin-prettier": "^3.1.1", + "eslint-plugin-react": "7.x", + "eslint-plugin-react-hooks": "1.x", + "jest-fetch-mock": "^2.1.2", + "prettier": "^1.18.2", + "sinon": "^7.5.0" + }, + "proxy": "http://localhost:10902", + "jest": { + "snapshotSerializers": [ + "enzyme-to-json/serializer" + ] + } +} diff --git a/pkg/ui/react-app/public/favicon.ico b/pkg/ui/react-app/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..265dd62bd2dc56df8f970a0f254a40b66a9cda34 GIT binary patch literal 16958 zcmeHN&1=*^6rXjmD~hdnDAdaq>qk$57sZS2F2#Zh;=zlw=pV3I#e=9IE$BfM?5Q5C zP!CGcgI}l!LW!uLUPMIvEEGl2iqIa!B5Hguos_rZBs;UohTYAiyiPLn=DpwV&6}Ad z8^%)bm&-Bu-^scQjI}eyxfPc`*7h5SW)$=Cc@5N*a;?VDO98;z4 z>NOF6FAif62jw-Q3Hf6j9)m1bNrWclk1=?nk_S!9A7e1)^d1UKgP8c=0W7%B1j!?4 z_vUbv<-VW*#KeCj2m`hO_iHuc{|)Re^Yfno{+LTABH}*|woZd!KKte92-kT{baco6 z8MkqX*zohGQja;XNEQRl@jrkzz}8-WT*WS~bA{;W@*j3>Lhon2^CJT&mYw}m|Bh%64FS8N0ZX)6QXCasVdqzso z_&ZL)>J)PzQT+4Px`gvzUt|9G+;x`7AHII;tbaeD&rKo|+(y{-5BrDZ5Bpy+X#YDx z;|ukmeqwFf0<2M_Z_gjC-RqL)5(9_r!mf+eB?H$pK8x*&EF4~4u3xzQPdm$baBP? zBcAvFX8eV?iN>1i>|t`nm_#6w9R0PIc*d82;k|u3J){x#CLHgSKklfAkA}TELdbe^k(UA;nT2 zGmJx={4WzsVaC5+_~X4j{hb{5XPR5y`8%k82{J?4qvn4VY*Q?6i7yX_tPC^$GJC3Z zI{fh+EB?0a$$2>ct;nwuo<`tbi9?un!=EmkxK5kukbC%->6F9mCr zB>!(i-9aMWzO6I=r%8XbbswaBP3S4L&f{<~;dgL?j{G`I{(k`t7Al|ALdVvJD}5Yj+L!M|JO24|b~A z|LOsER2U3@Ve?Yh|D%e1J=ihhZ^pkY0w({9?XYL=Oo+6V4ZgWZYy=$PurU%T$8k%R zFU(fjq z=;z{b+ui<|RNIU_nYO(W`n&b2b~5M}`wL~I{#gw8Y}(c>nR_69JgP3yJ3amZ2@o}5 literal 0 HcmV?d00001 diff --git a/pkg/ui/react-app/public/index.html b/pkg/ui/react-app/public/index.html new file mode 100755 index 00000000000..7b9ec7e023e --- /dev/null +++ b/pkg/ui/react-app/public/index.html @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + Thanos Expression Browser + + + +
    + + + diff --git a/pkg/ui/react-app/public/manifest.json b/pkg/ui/react-app/public/manifest.json new file mode 100755 index 00000000000..67269d551aa --- /dev/null +++ b/pkg/ui/react-app/public/manifest.json @@ -0,0 +1,15 @@ +{ + "short_name": "Thanos", + "name": "Thanos web interface", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/pkg/ui/react-app/src/App.css b/pkg/ui/react-app/src/App.css new file mode 100644 index 00000000000..2e34f77a30e --- /dev/null +++ b/pkg/ui/react-app/src/App.css @@ -0,0 +1,253 @@ +.panel { + margin-bottom: 20px; +} + +input[type='checkbox']:checked + label { + color: #286090; +} + +.custom-control-label { + cursor: pointer; +} + +.togglers-wrapper .form-group { + margin-bottom: 0.5rem; +} + +[for$='-toggler'].custom-control-label::before, +[for$='-toggler'].custom-control-label::after { + top: 0.28rem; + left: -1.3rem; + width: 1.12rem; + height: 1.12rem; +} + +.capitalize-title::first-letter { + text-transform: capitalize; +} + +.expression-input { + margin-bottom: 10px; +} + +.expression-input textarea { + /* font-family: Menlo,Monaco,Consolas,'Courier New',monospace; */ + resize: none; + overflow: hidden; +} + +button.execute-btn { + width: 84px; +} + +.alert.alert-danger { + margin-bottom: 10px; +} + +.nav-tabs .nav-link { + cursor: pointer; +} + +.tab-content { + border-left: 1px solid #dee2e6; + border-right: 1px solid #dee2e6; + border-bottom: 1px solid #dee2e6; + padding: 10px; +} + +.tab-content .alert { + margin-bottom: 0; +} + +.data-table.table { + margin: 10px 0 2px 0; +} + +.data-table > tbody > tr > td { + padding: 5px 0 5px 8px; + font-size: 0.8em; + overflow: hidden; +} + +.autosuggest-dropdown { + position: absolute; + border: 1px solid #ced4da; + background-color: #fff; + color: #495057; + font-size: 1rem; + z-index: 1000; + left: 56px; + margin-top: -6px; +} + +.autosuggest-dropdown-list { + padding: 0; + margin: 0; + list-style: none; +} + +.autosuggest-dropdown-list li { + width: 100%; + padding: 0.25rem 1.5rem; + clear: both; + white-space: nowrap; + background-color: transparent; + border: 0; + display: block; +} + +.autosuggest-dropdown-list li.autosuggest-dropdown-header { + background-color: #bfdeff; + font-size: 10px; + line-height: 1.5; + text-transform: uppercase; + text-align: center; +} + +.graph-controls, +.table-controls { + margin-bottom: 10px; +} + +.graph-controls input, +.table-controls input { + text-align: center; +} + +.graph-controls .range-input input { + width: 50px; +} + +.time-input input { + border-right: none; +} + +.time-input { + width: 270px !important; +} + +.graph-controls input.resolution-input { + width: 90px; +} + +.graph-controls > :not(:first-child) { + margin-left: 20px; +} + +.graph-controls .clear-time-btn, +.table-controls .clear-time-btn { + background: #fff; + border-left: none; + border-top: 1px solid #ced4da; + border-bottom: 1px solid #ced4da; + color: #495057; +} + +.graph-legend { + margin: 15px 0 15px 55px; + font-size: 0.75em; + padding: 10px 5px; + display: inline-block; +} + +.legend-item { + cursor: pointer; + display: flex; + padding: 0 5px; + border-radius: 3px; + line-height: 1.7; +} +.legend-item div { + flex-wrap: wrap; +} + +.legend-swatch { + min-width: 7px; + height: 7px; + outline-offset: 1px; + outline: 1.5px solid #ccc; + margin: 6px 8px 2px 0; + display: inline-block; +} + +.legend-item:hover { + background: rgba(0, 0, 0, 0.18); +} + +.legend-metric-name { + margin-right: 1px; +} + +.legend-label-name { + font-weight: bold; +} + +.graph { + margin: 0 5px 0 5px; +} + +.graph-chart { + height: 500px; + width: 100%; + /* This is picked up by Flot's axis label font renderer, + which ignores "color" and uses "fill" instead. */ + fill: #495057; + font-size: 0.8em; +} + +.graph-chart .flot-overlay { + cursor: crosshair; +} + +.graph-tooltip { + background: rgba(0, 0, 0, 0.8); + color: #fff; + font-family: Arial, Helvetica, sans-serif; + font-size: 12px; + white-space: nowrap; + padding: 8px; + border-radius: 3px; +} + +.graph-tooltip .labels { + font-size: 11px; + line-height: 11px; +} + +.graph-tooltip .detail-swatch { + display: inline-block; + width: 10px; + height: 10px; +} + +.add-panel-btn { + margin-bottom: 20px; +} + +.target-head { + font-weight: 700; + font-size: large; +} + +.group-info { + display: flex; + justify-content: space-between; + margin-bottom: 10px; + padding: 10px; +} + +.badges-wrapper > span { + margin-right: 5px; + max-height: 20px; +} + +.rules-head { + font-weight: 600; +} + +.rule_cell { + white-space: pre-wrap; + background-color: #f5f5f5; + display: block; + font-family: monospace; +} diff --git a/pkg/ui/react-app/src/App.test.tsx b/pkg/ui/react-app/src/App.test.tsx new file mode 100755 index 00000000000..6bc74349586 --- /dev/null +++ b/pkg/ui/react-app/src/App.test.tsx @@ -0,0 +1,24 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import App from './App'; +import Navigation from './thanos/Navbar'; +import { Container } from 'reactstrap'; +import { Router } from '@reach/router'; +import { Alerts, Config, Flags, Rules, ServiceDiscovery, Status, Targets, TSDBStatus, PanelList } from './pages'; + +describe('App', () => { + const app = shallow(); + + it('navigates', () => { + expect(app.find(Navigation)).toHaveLength(1); + }); + it('routes', () => { + [Alerts, Config, Flags, Rules, ServiceDiscovery, Status, Targets, TSDBStatus, PanelList].forEach(component => { + const c = app.find(component); + expect(c).toHaveLength(1); + expect(c.prop('pathPrefix')).toBe('/path/prefix'); + }); + expect(app.find(Router)).toHaveLength(1); + expect(app.find(Container)).toHaveLength(1); + }); +}); diff --git a/pkg/ui/react-app/src/App.tsx b/pkg/ui/react-app/src/App.tsx new file mode 100755 index 00000000000..81638cc0b5a --- /dev/null +++ b/pkg/ui/react-app/src/App.tsx @@ -0,0 +1,39 @@ +import React, { FC } from 'react'; +import { Container } from 'reactstrap'; +import { Router, Redirect } from '@reach/router'; + +import { Alerts, Config, Flags, Rules, ServiceDiscovery, Status, Targets, TSDBStatus, PanelList } from './pages'; +import PathPrefixProps from './types/PathPrefixProps'; +import ThanosComponentProps from './thanos/types/ThanosComponentProps'; +import Navigation from './thanos/Navbar'; + +import './App.css'; + +const App: FC = ({ pathPrefix, thanosComponent }) => { + return ( + <> + + + + + + {/* + NOTE: Any route added here needs to also be added to the list of + React-handled router paths ("reactRouterPaths") in /web/web.go. + */} + + + + + + + + + + + + + ); +}; + +export default App; diff --git a/pkg/ui/react-app/src/Navbar.test.tsx b/pkg/ui/react-app/src/Navbar.test.tsx new file mode 100644 index 00000000000..6a8a5b4cdff --- /dev/null +++ b/pkg/ui/react-app/src/Navbar.test.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import Navigation from './Navbar'; +import { NavItem, NavLink } from 'reactstrap'; + +describe('Navbar should contain console Link', () => { + it('with non-empty consoleslink', () => { + const app = shallow(); + expect( + app.contains( + + Consoles + + ) + ).toBeTruthy(); + }); +}); + +describe('Navbar should not contain consoles link', () => { + it('with empty string in consolesLink', () => { + const app = shallow(); + expect( + app.contains( + + Consoles + + ) + ).toBeFalsy(); + }); +}); diff --git a/pkg/ui/react-app/src/Navbar.tsx b/pkg/ui/react-app/src/Navbar.tsx new file mode 100644 index 00000000000..51c072add4b --- /dev/null +++ b/pkg/ui/react-app/src/Navbar.tsx @@ -0,0 +1,87 @@ +import React, { FC, useState } from 'react'; +import { Link } from '@reach/router'; +import { + Collapse, + Navbar, + NavbarToggler, + Nav, + NavItem, + NavLink, + UncontrolledDropdown, + DropdownToggle, + DropdownMenu, + DropdownItem, +} from 'reactstrap'; +import PathPrefixProps from './types/PathPrefixProps'; + +interface NavbarProps { + consolesLink: string | null; +} + +const Navigation: FC = ({ pathPrefix, consolesLink }) => { + const [isOpen, setIsOpen] = useState(false); + const toggle = () => setIsOpen(!isOpen); + return ( + + + + Prometheus + + + + + + ); +}; + +export default Navigation; diff --git a/pkg/ui/react-app/src/components/Checkbox.test.tsx b/pkg/ui/react-app/src/components/Checkbox.test.tsx new file mode 100755 index 00000000000..52258f72dd9 --- /dev/null +++ b/pkg/ui/react-app/src/components/Checkbox.test.tsx @@ -0,0 +1,65 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import Checkbox from './Checkbox'; +import { FormGroup, Label, Input } from 'reactstrap'; + +const MockCmp: React.FC = () =>
    ; + +describe('Checkbox', () => { + it('renders with subcomponents', () => { + const checkBox = shallow(); + [FormGroup, Input, Label].forEach(component => expect(checkBox.find(component)).toHaveLength(1)); + }); + + it('passes down the correct FormGroup props', () => { + const checkBoxProps = { wrapperStyles: { color: 'orange' } }; + const checkBox = shallow(); + const formGroup = checkBox.find(FormGroup); + expect(Object.keys(formGroup.props())).toHaveLength(4); + expect(formGroup.prop('className')).toEqual('custom-control custom-checkbox'); + expect(formGroup.prop('children')).toHaveLength(2); + expect(formGroup.prop('style')).toEqual({ color: 'orange' }); + expect(formGroup.prop('tag')).toEqual('div'); + }); + + it('passes down the correct FormGroup Input props', () => { + const results: string[] = []; + const checkBoxProps = { + onChange: (): void => { + results.push('clicked'); + }, + }; + const checkBox = shallow(); + const input = checkBox.find(Input); + expect(Object.keys(input.props())).toHaveLength(4); + expect(input.prop('className')).toEqual('custom-control-input'); + expect(input.prop('id')).toMatch('1'); + expect(input.prop('type')).toEqual('checkbox'); + input.simulate('change'); + expect(results).toHaveLength(1); + expect(results[0]).toEqual('clicked'); + }); + + it('passes down the correct Label props', () => { + const checkBox = shallow( + + + + ); + const label = checkBox.find(Label); + expect(Object.keys(label.props())).toHaveLength(6); + expect(label.prop('className')).toEqual('custom-control-label'); + expect(label.find(MockCmp)).toHaveLength(1); + expect(label.prop('for')).toMatch('1'); + expect(label.prop('style')).toEqual({ userSelect: 'none' }); + expect(label.prop('tag')).toEqual('label'); + }); + + it('shares checkbox `id` uuid with Input/Label subcomponents', () => { + const checkBox = shallow(); + const input = checkBox.find(Input); + const label = checkBox.find(Label); + expect(label.prop('for')).toBeDefined(); + expect(label.prop('for')).toEqual(input.prop('id')); + }); +}); diff --git a/pkg/ui/react-app/src/components/Checkbox.tsx b/pkg/ui/react-app/src/components/Checkbox.tsx new file mode 100644 index 00000000000..e988628f628 --- /dev/null +++ b/pkg/ui/react-app/src/components/Checkbox.tsx @@ -0,0 +1,19 @@ +import React, { FC, memo, CSSProperties } from 'react'; +import { FormGroup, Label, Input, InputProps } from 'reactstrap'; + +interface CheckboxProps extends InputProps { + wrapperStyles?: CSSProperties; +} + +const Checkbox: FC = ({ children, wrapperStyles, id, ...rest }) => { + return ( + + + + + ); +}; + +export default memo(Checkbox); diff --git a/pkg/ui/react-app/src/components/ToggleMoreLess.test.tsx b/pkg/ui/react-app/src/components/ToggleMoreLess.test.tsx new file mode 100644 index 00000000000..dc3c5a0f94b --- /dev/null +++ b/pkg/ui/react-app/src/components/ToggleMoreLess.test.tsx @@ -0,0 +1,33 @@ +import React from 'react'; +import { shallow } from 'enzyme'; +import { Button } from 'reactstrap'; +import { ToggleMoreLess } from './ToggleMoreLess'; + +describe('ToggleMoreLess', () => { + const showMoreValue = false; + const defaultProps = { + event: (): void => { + tggleBtn.setProps({ showMore: !showMoreValue }); + }, + showMore: showMoreValue, + }; + const tggleBtn = shallow(); + + it('renders a show more btn at start', () => { + const btn = tggleBtn.find(Button); + expect(btn).toHaveLength(1); + expect(btn.prop('color')).toEqual('primary'); + expect(btn.prop('size')).toEqual('xs'); + expect(btn.render().text()).toEqual('show more'); + }); + + it('renders a show less btn if clicked', () => { + tggleBtn.find(Button).simulate('click'); + expect( + tggleBtn + .find(Button) + .render() + .text() + ).toEqual('show less'); + }); +}); diff --git a/pkg/ui/react-app/src/components/ToggleMoreLess.tsx b/pkg/ui/react-app/src/components/ToggleMoreLess.tsx new file mode 100644 index 00000000000..80abbcd1e9a --- /dev/null +++ b/pkg/ui/react-app/src/components/ToggleMoreLess.tsx @@ -0,0 +1,28 @@ +import React, { FC } from 'react'; +import { Button } from 'reactstrap'; + +interface ToggleMoreLessProps { + event(): void; + showMore: boolean; +} + +export const ToggleMoreLess: FC = ({ children, event, showMore }) => { + return ( +

    + {children} + +

    + ); +}; diff --git a/pkg/ui/react-app/src/components/withStatusIndicator.tsx b/pkg/ui/react-app/src/components/withStatusIndicator.tsx new file mode 100644 index 00000000000..b2d9f18b3d8 --- /dev/null +++ b/pkg/ui/react-app/src/components/withStatusIndicator.tsx @@ -0,0 +1,46 @@ +import React, { FC, ComponentType } from 'react'; +import { Alert } from 'reactstrap'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faSpinner } from '@fortawesome/free-solid-svg-icons'; + +interface StatusIndicatorProps { + error?: Error; + isLoading?: boolean; + customErrorMsg?: JSX.Element; + componentTitle?: string; +} + +export const withStatusIndicator = (Component: ComponentType): FC => ({ + error, + isLoading, + customErrorMsg, + componentTitle, + ...rest +}) => { + if (error) { + return ( + + {customErrorMsg ? ( + customErrorMsg + ) : ( + <> + Error: Error fetching {componentTitle || Component.displayName}: {error.message} + + )} + + ); + } + + if (isLoading) { + return ( + + ); + } + return ; +}; diff --git a/pkg/ui/react-app/src/globals.ts b/pkg/ui/react-app/src/globals.ts new file mode 100644 index 00000000000..58755cf86c6 --- /dev/null +++ b/pkg/ui/react-app/src/globals.ts @@ -0,0 +1,4 @@ +import jquery from 'jquery'; + +(window as any).jQuery = jquery; +(window as any).moment = require('moment'); diff --git a/pkg/ui/react-app/src/hooks/useFetch.ts b/pkg/ui/react-app/src/hooks/useFetch.ts new file mode 100644 index 00000000000..5f18b369a9a --- /dev/null +++ b/pkg/ui/react-app/src/hooks/useFetch.ts @@ -0,0 +1,34 @@ +import { useState, useEffect } from 'react'; + +export type APIResponse = { status: string; data: T }; + +export interface FetchState { + response: APIResponse; + error?: Error; + isLoading: boolean; +} + +export const useFetch = (url: string, options?: RequestInit): FetchState => { + const [response, setResponse] = useState>({ status: 'start fetching' } as any); + const [error, setError] = useState(); + const [isLoading, setIsLoading] = useState(true); + + useEffect(() => { + const fetchData = async () => { + setIsLoading(true); + try { + const res = await fetch(url, { cache: 'no-store', credentials: 'same-origin', ...options }); + if (!res.ok) { + throw new Error(res.statusText); + } + const json = (await res.json()) as APIResponse; + setResponse(json); + setIsLoading(false); + } catch (error) { + setError(error); + } + }; + fetchData(); + }, [url, options]); + return { response, error, isLoading }; +}; diff --git a/pkg/ui/react-app/src/hooks/useLocalStorage.test.tsx b/pkg/ui/react-app/src/hooks/useLocalStorage.test.tsx new file mode 100644 index 00000000000..680be78507d --- /dev/null +++ b/pkg/ui/react-app/src/hooks/useLocalStorage.test.tsx @@ -0,0 +1,27 @@ +import { useLocalStorage } from './useLocalStorage'; +import { renderHook, act } from '@testing-library/react-hooks'; + +describe('useLocalStorage', () => { + it('returns the initialState', () => { + const initialState = { a: 1, b: 2 }; + const { result } = renderHook(() => useLocalStorage('mystorage', initialState)); + expect(result.current[0]).toEqual(initialState); + }); + it('stores the initialState as serialized json in localstorage', () => { + const key = 'mystorage'; + const initialState = { a: 1, b: 2 }; + renderHook(() => useLocalStorage(key, initialState)); + expect(localStorage.getItem(key)).toEqual(JSON.stringify(initialState)); + }); + it('returns a setValue function that can reset local storage', () => { + const key = 'mystorage'; + const initialState = { a: 1, b: 2 }; + const { result } = renderHook(() => useLocalStorage(key, initialState)); + const newValue = { a: 2, b: 5 }; + act(() => { + result.current[1](newValue); + }); + expect(result.current[0]).toEqual(newValue); + expect(localStorage.getItem(key)).toEqual(JSON.stringify(newValue)); + }); +}); diff --git a/pkg/ui/react-app/src/hooks/useLocalStorage.tsx b/pkg/ui/react-app/src/hooks/useLocalStorage.tsx new file mode 100644 index 00000000000..75842e769dc --- /dev/null +++ b/pkg/ui/react-app/src/hooks/useLocalStorage.tsx @@ -0,0 +1,13 @@ +import { Dispatch, SetStateAction, useEffect, useState } from 'react'; + +export function useLocalStorage(localStorageKey: string, initialState: S): [S, Dispatch>] { + const localStorageState = JSON.parse(localStorage.getItem(localStorageKey) || JSON.stringify(initialState)); + const [value, setValue] = useState(localStorageState); + + useEffect(() => { + const serializedState = JSON.stringify(value); + localStorage.setItem(localStorageKey, serializedState); + }, [localStorageKey, value]); + + return [value, setValue]; +} diff --git a/pkg/ui/react-app/src/index.tsx b/pkg/ui/react-app/src/index.tsx new file mode 100755 index 00000000000..f1133735e97 --- /dev/null +++ b/pkg/ui/react-app/src/index.tsx @@ -0,0 +1,25 @@ +import './globals'; +import React from 'react'; +import ReactDOM from 'react-dom'; +import App from './App'; +import 'bootstrap/dist/css/bootstrap.min.css'; +import { isPresent } from './utils'; + +// Declared/defined in public/index.html, value replaced by Prometheus when serving bundle. +declare const GLOBAL_PATH_PREFIX: string; +declare const THANOS_COMPONENT: string; + +let prefix = GLOBAL_PATH_PREFIX; +if (GLOBAL_PATH_PREFIX === 'PATH_PREFIX_PLACEHOLDER' || GLOBAL_PATH_PREFIX === '/' || !isPresent(GLOBAL_PATH_PREFIX)) { + // Either we are running the app outside of Prometheus, so the placeholder value in + // the index.html didn't get replaced, or we have a '/' prefix, which we also need to + // normalize to '' to make concatenations work (prefixes like '/foo/bar/' already get + // their trailing slash stripped by Prometheus). + prefix = ''; +} +let thanosComponent = THANOS_COMPONENT; +if (THANOS_COMPONENT === '') { + thanosComponent = 'query'; +} + +ReactDOM.render(, document.getElementById('root')); diff --git a/pkg/ui/react-app/src/pages/alerts/AlertContents.tsx b/pkg/ui/react-app/src/pages/alerts/AlertContents.tsx new file mode 100644 index 00000000000..8f09e5f4558 --- /dev/null +++ b/pkg/ui/react-app/src/pages/alerts/AlertContents.tsx @@ -0,0 +1,136 @@ +import React, { FC, useState, Fragment } from 'react'; +import { Badge } from 'reactstrap'; +import CollapsibleAlertPanel from './CollapsibleAlertPanel'; +import Checkbox from '../../components/Checkbox'; +import { isPresent } from '../../utils'; +import { Rule } from '../../types/types'; + +export type RuleState = keyof RuleStatus; + +export interface RuleStatus { + firing: T; + pending: T; + inactive: T; +} + +export interface AlertsProps { + groups?: RuleGroup[]; + statsCount: RuleStatus; +} + +export interface Alert { + labels: Record; + state: RuleState; + value: string; + annotations: Record; + activeAt: string; +} + +interface RuleGroup { + name: string; + file: string; + rules: Rule[]; + interval: number; +} + +const stateColorTuples: Array<[RuleState, 'success' | 'warning' | 'danger']> = [ + ['inactive', 'success'], + ['pending', 'warning'], + ['firing', 'danger'], +]; + +const AlertsContent: FC = ({ groups = [], statsCount }) => { + const [filter, setFilter] = useState>({ + firing: true, + pending: true, + inactive: true, + }); + const [showAnnotations, setShowAnnotations] = useState(false); + + const toggleFilter = (ruleState: RuleState) => () => { + setFilter({ + ...filter, + [ruleState]: !filter[ruleState], + }); + }; + + return ( + <> +
    + {stateColorTuples.map(([state, color]) => { + return ( + + + {state} ({statsCount[state]}) + + + ); + })} + setShowAnnotations(!showAnnotations)} + > + Show annotations + +
    + {groups.map((group, i) => { + const hasFilterOn = group.rules.some(rule => filter[rule.state]); + return hasFilterOn ? ( + + + {group.file} > {group.name} + + {group.rules.map((rule, j) => { + return ( + filter[rule.state] && ( + + ) + ); + })} + + ) : null; + })} + + ); +}; + +interface GroupInfoProps { + rules: Rule[]; +} + +export const GroupInfo: FC = ({ rules, children }) => { + const statesCounter = rules.reduce( + (acc, r) => { + return { + ...acc, + [r.state]: acc[r.state] + r.alerts.length, + }; + }, + { + firing: 0, + pending: 0, + } + ); + + return ( +
    + {children} +
    + {isPresent(statesCounter.inactive) && inactive} + {statesCounter.pending > 0 && pending ({statesCounter.pending})} + {statesCounter.firing > 0 && firing ({statesCounter.firing})} +
    +
    + ); +}; + +AlertsContent.displayName = 'Alerts'; + +export default AlertsContent; diff --git a/pkg/ui/react-app/src/pages/alerts/Alerts.tsx b/pkg/ui/react-app/src/pages/alerts/Alerts.tsx new file mode 100644 index 00000000000..45e4ff1ffed --- /dev/null +++ b/pkg/ui/react-app/src/pages/alerts/Alerts.tsx @@ -0,0 +1,26 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { useFetch } from '../../hooks/useFetch'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import AlertsContent, { RuleStatus, AlertsProps } from './AlertContents'; + +const AlertsWithStatusIndicator = withStatusIndicator(AlertsContent); + +const Alerts: FC = ({ pathPrefix = '' }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/rules?type=alert`); + + const ruleStatsCount: RuleStatus = { + inactive: 0, + pending: 0, + firing: 0, + }; + + if (response.data && response.data.groups) { + response.data.groups.forEach(el => el.rules.forEach(r => ruleStatsCount[r.state]++)); + } + + return ; +}; + +export default Alerts; diff --git a/pkg/ui/react-app/src/pages/alerts/CollapsibleAlertPanel.tsx b/pkg/ui/react-app/src/pages/alerts/CollapsibleAlertPanel.tsx new file mode 100644 index 00000000000..02d700e3a99 --- /dev/null +++ b/pkg/ui/react-app/src/pages/alerts/CollapsibleAlertPanel.tsx @@ -0,0 +1,123 @@ +import React, { FC, useState, Fragment } from 'react'; +import { Link } from '@reach/router'; +import { Alert, Collapse, Table, Badge } from 'reactstrap'; +import { RuleStatus } from './AlertContents'; +import { Rule } from '../../types/types'; +import { faChevronDown, faChevronRight } from '@fortawesome/free-solid-svg-icons'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { createExpressionLink } from '../../utils/index'; + +interface CollapsibleAlertPanelProps { + rule: Rule; + showAnnotations: boolean; +} + +const alertColors: RuleStatus = { + firing: 'danger', + pending: 'warning', + inactive: 'success', +}; + +const CollapsibleAlertPanel: FC = ({ rule, showAnnotations }) => { + const [open, toggle] = useState(false); + + return ( + <> + toggle(!open)} color={alertColors[rule.state]} style={{ cursor: 'pointer' }}> + + {rule.name} ({`${rule.alerts.length} active`}) + + +
    +          
    +            
    + name: {rule.name} +
    +
    + expr: {rule.query} +
    +
    +
    labels:
    +
    severity: {rule.labels.severity}
    +
    +
    +
    annotations:
    +
    summary: {rule.annotations.summary}
    +
    +
    +
    + {rule.alerts.length > 0 && ( +
    + + + + + + + + + + {rule.alerts.map((alert, i) => { + return ( + + + + + + + + {showAnnotations && } + + ); + })} + +
    LabelsStateActive SinceValue
    + {Object.entries(alert.labels).map(([k, v], j) => { + return ( + + {k}={v} + + ); + })} + +
    + + {alert.state} + +
    +
    {alert.activeAt}{alert.value}
    + )} + + + ); +}; + +interface AnnotationsProps { + annotations: Record; +} + +export const Annotations: FC = ({ annotations }) => { + return ( + +
    +
    Annotations
    +
    + {Object.entries(annotations).map(([k, v], i) => { + return ( +
    + {k} +
    {v}
    +
    + ); + })} +
    + + {Object.keys(data).map(key => ( + + + + + ))} + +
    {key}{data[key]}
    + + ); +}; +const FlagsWithStatusIndicator = withStatusIndicator(FlagsContent); + +FlagsContent.displayName = 'Flags'; + +const Flags: FC = ({ pathPrefix = '' }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/status/flags`); + return ; +}; + +export default Flags; diff --git a/pkg/ui/react-app/src/pages/flags/__snapshots__/Flags.test.tsx.snap b/pkg/ui/react-app/src/pages/flags/__snapshots__/Flags.test.tsx.snap new file mode 100644 index 00000000000..ae382598665 --- /dev/null +++ b/pkg/ui/react-app/src/pages/flags/__snapshots__/Flags.test.tsx.snap @@ -0,0 +1,395 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Flags should match snapshot 1`] = ` + +

    + Command-Line Flags +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + alertmanager.notification-queue-capacity + + 10000 +
    + alertmanager.timeout + + 10s +
    + config.file + + ./documentation/examples/prometheus.yml +
    + log.format + + logfmt +
    + log.level + + info +
    + query.lookback-delta + + 5m +
    + query.max-concurrency + + 20 +
    + query.max-samples + + 50000000 +
    + query.timeout + + 2m +
    + rules.alert.for-grace-period + + 10m +
    + rules.alert.for-outage-tolerance + + 1h +
    + rules.alert.resend-delay + + 1m +
    + storage.remote.flush-deadline + + 1m +
    + storage.remote.read-concurrent-limit + + 10 +
    + storage.remote.read-max-bytes-in-frame + + 1048576 +
    + storage.remote.read-sample-limit + + 50000000 +
    + storage.tsdb.allow-overlapping-blocks + + false +
    + storage.tsdb.max-block-duration + + 36h +
    + storage.tsdb.min-block-duration + + 2h +
    + storage.tsdb.no-lockfile + + false +
    + storage.tsdb.path + + data/ +
    + storage.tsdb.retention + + 0s +
    + storage.tsdb.retention.size + + 0B +
    + storage.tsdb.retention.time + + 0s +
    + storage.tsdb.wal-compression + + false +
    + storage.tsdb.wal-segment-size + + 0B +
    + web.console.libraries + + console_libraries +
    + web.console.templates + + consoles +
    + web.cors.origin + + .* +
    + web.enable-admin-api + + false +
    + web.enable-lifecycle + + false +
    + web.external-url + +
    + web.listen-address + + 0.0.0.0:9090 +
    + web.max-connections + + 512 +
    + web.page-title + + Prometheus Time Series Collection and Processing Server +
    + web.read-timeout + + 5m +
    + web.route-prefix + + / +
    + web.user-assets + +
    +
    +`; diff --git a/pkg/ui/react-app/src/pages/graph/DataTable.test.tsx b/pkg/ui/react-app/src/pages/graph/DataTable.test.tsx new file mode 100755 index 00000000000..1e4fbd46090 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/DataTable.test.tsx @@ -0,0 +1,301 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import DataTable, { QueryResult } from './DataTable'; +import { Alert, Table } from 'reactstrap'; +import SeriesName from './SeriesName'; + +describe('DataTable', () => { + describe('when data is null', () => { + it('renders an alert', () => { + const table = shallow(); + const alert = table.find(Alert); + expect(Object.keys(alert.props())).toHaveLength(7); + expect(alert.prop('color')).toEqual('light'); + expect(alert.prop('children')).toEqual('No data queried yet'); + }); + }); + + describe('when data.result is empty', () => { + it('renders an alert', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'vector', + result: [], + }, + }; + const table = shallow(); + const alert = table.find(Alert); + expect(Object.keys(alert.props())).toHaveLength(7); + expect(alert.prop('color')).toEqual('secondary'); + expect(alert.prop('children')).toEqual('Empty query result'); + }); + }); + + describe('when resultType is a vector with values', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'vector', + result: [ + { + metric: { + __name__: 'metric_name_1', + label1: 'value_1', + labeln: 'value_n', + }, + value: [1572098246.599, '0'], + }, + { + metric: { + __name__: 'metric_name_2', + label1: 'value_1', + labeln: 'value_n', + }, + value: [1572098246.599, '1'], + }, + ], + }, + }; + const dataTable = shallow(); + + it('renders a table', () => { + const table = dataTable.find(Table); + expect(table.prop('hover')).toBe(true); + expect(table.prop('size')).toEqual('sm'); + expect(table.prop('className')).toEqual('data-table'); + expect(table.find('tbody')).toHaveLength(1); + }); + + it('renders rows', () => { + const table = dataTable.find(Table); + table.find('tr').forEach((row, idx) => { + expect(row.find(SeriesName)).toHaveLength(1); + expect( + row + .find('td') + .at(1) + .text() + ).toEqual(`${idx}`); + }); + }); + }); + + describe('when resultType is a vector with too many values', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'vector', + result: Array.from(Array(10001).keys()).map(i => { + return { + metric: { + __name__: `metric_name_${i}`, + label1: 'value_1', + labeln: 'value_n', + }, + value: [1572098246.599, `${i}`], + }; + }), + }, + }; + const dataTable = shallow(); + + it('renders limited rows', () => { + const table = dataTable.find(Table); + expect(table.find('tr')).toHaveLength(10000); + }); + + it('renders a warning', () => { + const alerts = dataTable.find(Alert); + expect( + alerts + .first() + .render() + .text() + ).toEqual('Warning: Fetched 10001 metrics, only displaying first 10000.'); + }); + }); + + describe('when resultType is vector and size is more than maximum limit of formatting', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'vector', + result: Array.from(Array(1001).keys()).map(i => { + return { + metric: { + __name__: `metric_name_${i}`, + label1: 'value_1', + labeln: 'value_n', + }, + value: [1572098246.599, `${i}`], + }; + }), + }, + }; + const dataTable = shallow(); + + it('renders a warning', () => { + const alerts = dataTable.find(Alert); + expect( + alerts + .first() + .render() + .text() + ).toEqual('Notice: Showing more than 1000 series, turning off label formatting for performance reasons.'); + }); + }); + + describe('when result type is a matrix', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'matrix', + result: [ + { + metric: { + __name__: 'promhttp_metric_handler_requests_total', + code: '200', + instance: 'localhost:9090', + job: 'prometheus', + }, + values: [ + [1572097950.93, '9'], + [1572097965.931, '10'], + [1572097980.929, '11'], + [1572097995.931, '12'], + [1572098010.932, '13'], + [1572098025.933, '14'], + [1572098040.93, '15'], + [1572098055.93, '16'], + [1572098070.93, '17'], + [1572098085.936, '18'], + [1572098100.936, '19'], + [1572098115.933, '20'], + [1572098130.932, '21'], + [1572098145.932, '22'], + [1572098160.933, '23'], + [1572098175.934, '24'], + [1572098190.937, '25'], + [1572098205.934, '26'], + [1572098220.933, '27'], + [1572098235.934, '28'], + ], + }, + { + metric: { + __name__: 'promhttp_metric_handler_requests_total', + code: '500', + instance: 'localhost:9090', + job: 'prometheus', + }, + values: [ + [1572097950.93, '0'], + [1572097965.931, '0'], + [1572097980.929, '0'], + [1572097995.931, '0'], + [1572098010.932, '0'], + [1572098025.933, '0'], + [1572098040.93, '0'], + [1572098055.93, '0'], + [1572098070.93, '0'], + [1572098085.936, '0'], + [1572098100.936, '0'], + [1572098115.933, '0'], + [1572098130.932, '0'], + [1572098145.932, '0'], + [1572098160.933, '0'], + [1572098175.934, '0'], + [1572098190.937, '0'], + [1572098205.934, '0'], + [1572098220.933, '0'], + [1572098235.934, '0'], + ], + }, + { + metric: { + __name__: 'promhttp_metric_handler_requests_total', + code: '503', + instance: 'localhost:9090', + job: 'prometheus', + }, + values: [ + [1572097950.93, '0'], + [1572097965.931, '0'], + [1572097980.929, '0'], + [1572097995.931, '0'], + [1572098010.932, '0'], + [1572098025.933, '0'], + [1572098040.93, '0'], + [1572098055.93, '0'], + [1572098070.93, '0'], + [1572098085.936, '0'], + [1572098100.936, '0'], + [1572098115.933, '0'], + [1572098130.932, '0'], + [1572098145.932, '0'], + [1572098160.933, '0'], + [1572098175.934, '0'], + [1572098190.937, '0'], + [1572098205.934, '0'], + [1572098220.933, '0'], + [1572098235.934, '0'], + ], + }, + ], + }, + }; + const dataTable = shallow(); + it('renders rows', () => { + const table = dataTable.find(Table); + const rows = table.find('tr'); + expect(table.find('tr')).toHaveLength(3); + const row = rows.at(0); + expect(row.text()).toEqual(`9 @1572097950.93 +10 @1572097965.931 +11 @1572097980.929 +12 @1572097995.931 +13 @1572098010.932 +14 @1572098025.933 +15 @1572098040.93 +16 @1572098055.93 +17 @1572098070.93 +18 @1572098085.936 +19 @1572098100.936 +20 @1572098115.933 +21 @1572098130.932 +22 @1572098145.932 +23 @1572098160.933 +24 @1572098175.934 +25 @1572098190.937 +26 @1572098205.934 +27 @1572098220.933 +28 @1572098235.934`); + }); + }); + + describe('when resultType is a scalar', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'scalar', + result: [1572098246.599, '5'], + }, + }; + const dataTable = shallow(); + it('renders a scalar row', () => { + const table = dataTable.find(Table); + const rows = table.find('tr'); + expect(rows.text()).toEqual('scalar5'); + }); + }); + + describe('when resultType is a string', () => { + const dataTableProps: QueryResult = { + data: { + resultType: 'string', + result: 'string', + }, + }; + const dataTable = shallow(); + it('renders a string row', () => { + const table = dataTable.find(Table); + const rows = table.find('tr'); + expect(rows.text()).toEqual('stringt'); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/DataTable.tsx b/pkg/ui/react-app/src/pages/graph/DataTable.tsx new file mode 100644 index 00000000000..592135e0efe --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/DataTable.tsx @@ -0,0 +1,137 @@ +import React, { FC, ReactNode } from 'react'; + +import { Alert, Table } from 'reactstrap'; + +import SeriesName from './SeriesName'; +import { Metric } from '../../types/types'; + +export interface QueryResult { + data: + | null + | { + resultType: 'vector'; + result: InstantSample[]; + } + | { + resultType: 'matrix'; + result: RangeSamples[]; + } + | { + resultType: 'scalar'; + result: SampleValue; + } + | { + resultType: 'string'; + result: string; + }; +} + +interface InstantSample { + metric: Metric; + value: SampleValue; +} + +interface RangeSamples { + metric: Metric; + values: SampleValue[]; +} + +type SampleValue = [number, string]; + +const limitSeries = (series: S[]): S[] => { + const maxSeries = 10000; + + if (series.length > maxSeries) { + return series.slice(0, maxSeries); + } + return series; +}; + +const DataTable: FC = ({ data }) => { + if (data === null) { + return No data queried yet; + } + + if (data.result === null || data.result.length === 0) { + return Empty query result; + } + + const maxFormattableSize = 1000; + let rows: ReactNode[] = []; + let limited = false; + const doFormat = data.result.length <= maxFormattableSize; + switch (data.resultType) { + case 'vector': + rows = (limitSeries(data.result) as InstantSample[]).map( + (s: InstantSample, index: number): ReactNode => { + return ( +
    + + {s.value[1]}
    + + {valueText}
    scalar{data.result[1]}
    string{data.result[1]}
    + {rows} +
    + + ); +}; + +export default DataTable; diff --git a/pkg/ui/react-app/src/pages/graph/ExpressionInput.test.tsx b/pkg/ui/react-app/src/pages/graph/ExpressionInput.test.tsx new file mode 100644 index 00000000000..4b058416e20 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/ExpressionInput.test.tsx @@ -0,0 +1,252 @@ +import * as React from 'react'; +import { mount, ReactWrapper } from 'enzyme'; +import ExpressionInput from './ExpressionInput'; +import Downshift from 'downshift'; +import { Button, InputGroup, InputGroupAddon, Input } from 'reactstrap'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faSearch, faSpinner } from '@fortawesome/free-solid-svg-icons'; + +const getKeyEvent = (key: string): React.KeyboardEvent => + ({ + key, + nativeEvent: {}, + preventDefault: () => { + // Do nothing. + }, + } as React.KeyboardEvent); + +describe('ExpressionInput', () => { + const metricNames = ['instance:node_cpu_utilisation:rate1m', 'node_cpu_guest_seconds_total', 'node_cpu_seconds_total']; + const expressionInputProps = { + value: 'node_cpu', + autocompleteSections: { + 'Query History': [], + 'Metric Names': metricNames, + }, + executeQuery: (): void => { + // Do nothing. + }, + onExpressionChange: (): void => { + // Do nothing. + }, + loading: false, + }; + + let expressionInput: ReactWrapper; + beforeEach(() => { + expressionInput = mount(); + }); + + it('renders a downshift component', () => { + const downshift = expressionInput.find(Downshift); + expect(downshift).toHaveLength(1); + }); + + it('renders an InputGroup', () => { + const inputGroup = expressionInput.find(InputGroup); + expect(inputGroup.prop('className')).toEqual('expression-input'); + }); + + it('renders a search icon when it is not loading', () => { + const addon = expressionInput.find(InputGroupAddon).filterWhere(addon => addon.prop('addonType') === 'prepend'); + const icon = addon.find(FontAwesomeIcon); + expect(icon.prop('icon')).toEqual(faSearch); + }); + + it('renders a loading icon when it is loading', () => { + const expressionInput = mount(); + const addon = expressionInput.find(InputGroupAddon).filterWhere(addon => addon.prop('addonType') === 'prepend'); + const icon = addon.find(FontAwesomeIcon); + expect(icon.prop('icon')).toEqual(faSpinner); + expect(icon.prop('spin')).toBe(true); + }); + + it('renders an Input', () => { + const input = expressionInput.find(Input); + expect(input.prop('style')).toEqual({ height: 0 }); + expect(input.prop('autoFocus')).toEqual(true); + expect(input.prop('type')).toEqual('textarea'); + expect(input.prop('rows')).toEqual('1'); + expect(input.prop('placeholder')).toEqual('Expression (press Shift+Enter for newlines)'); + expect(input.prop('value')).toEqual('node_cpu'); + }); + + describe('when autosuggest is closed', () => { + it('prevents Downshift default on Home, End, Arrows', () => { + const downshift = expressionInput.find(Downshift); + const input = downshift.find(Input); + downshift.setState({ isOpen: false }); + ['Home', 'End', 'ArrowUp', 'ArrowDown'].forEach(key => { + const event = getKeyEvent(key); + input.simulate('keydown', event); + const nativeEvent = event.nativeEvent as any; + expect(nativeEvent.preventDownshiftDefault).toBe(true); + }); + }); + + it('does not render an autosuggest', () => { + const downshift = expressionInput.find(Downshift); + downshift.setState({ isOpen: false }); + const ul = downshift.find('ul'); + expect(ul).toHaveLength(0); + }); + }); + + describe('handleInput', () => { + it('should call setState', () => { + const instance: any = expressionInput.instance(); + const stateSpy = jest.spyOn(instance, 'setState'); + instance.handleInput(); + expect(stateSpy).toHaveBeenCalled(); + }); + it('should call onExpressionChange', () => { + const spyOnExpressionChange = jest.fn(); + const props = { ...expressionInputProps, onExpressionChange: spyOnExpressionChange }; + const wrapper = mount(); + const input = wrapper.find(Input); + input.simulate('input', { target: { value: 'prometheus_engine_' } }); + expect(spyOnExpressionChange).toHaveBeenCalledTimes(1); + }); + }); + + describe('onSelect', () => { + it('should call setState with selected value', () => { + const instance: any = expressionInput.instance(); + const stateSpy = jest.spyOn(instance, 'setState'); + instance.setValue('foo'); + expect(stateSpy).toHaveBeenCalledWith({ height: 'auto' }, expect.anything()); + }); + }); + + describe('onClick', () => { + it('executes the query', () => { + const spyExecuteQuery = jest.fn(); + const props = { ...expressionInputProps, executeQuery: spyExecuteQuery }; + const wrapper = mount(); + const btn = wrapper.find(Button).filterWhere(btn => btn.hasClass('execute-btn')); + btn.simulate('click'); + expect(spyExecuteQuery).toHaveBeenCalledTimes(1); + }); + }); + + describe('handleKeyPress', () => { + it('should call executeQuery on Enter key pressed', () => { + const spyExecuteQuery = jest.fn(); + const input = mount(); + const instance: any = input.instance(); + instance.handleKeyPress({ preventDefault: jest.fn, key: 'Enter' }); + expect(spyExecuteQuery).toHaveBeenCalled(); + }); + it('should NOT call executeQuery on Enter + Shift', () => { + const spyExecuteQuery = jest.fn(); + const input = mount(); + const instance: any = input.instance(); + instance.handleKeyPress({ preventDefault: jest.fn, key: 'Enter', shiftKey: true }); + expect(spyExecuteQuery).not.toHaveBeenCalled(); + }); + }); + + describe('getSearchMatches', () => { + it('should return matched value', () => { + const instance: any = expressionInput.instance(); + expect(instance.getSearchMatches('foo', ['barfoobaz', 'bazasdbaz'])).toHaveLength(1); + }); + it('should return empty array if no match found', () => { + const instance: any = expressionInput.instance(); + expect(instance.getSearchMatches('foo', ['barbaz', 'bazasdbaz'])).toHaveLength(0); + }); + }); + + describe('createAutocompleteSection', () => { + it('should close menu if no matches found', () => { + const input = mount(); + const instance: any = input.instance(); + const spyCloseMenu = jest.fn(); + instance.createAutocompleteSection({ inputValue: 'qqqqqq', closeMenu: spyCloseMenu }); + setTimeout(() => { + expect(spyCloseMenu).toHaveBeenCalled(); + }); + }); + it('should not render lsit if inputValue not exist', () => { + const input = mount(); + const instance: any = input.instance(); + const spyCloseMenu = jest.fn(); + instance.createAutocompleteSection({ closeMenu: spyCloseMenu }); + setTimeout(() => expect(spyCloseMenu).toHaveBeenCalled()); + }); + it('should render autosuggest-dropdown', () => { + const input = mount(); + const instance: any = input.instance(); + const spyGetMenuProps = jest.fn(); + const sections = instance.createAutocompleteSection({ + inputValue: 'foo', + highlightedIndex: 0, + getMenuProps: spyGetMenuProps, + getItemProps: jest.fn, + }); + expect(sections.props.className).toEqual('autosuggest-dropdown'); + }); + }); + + describe('when downshift is open', () => { + it('closes the menu on "Enter"', () => { + const downshift = expressionInput.find(Downshift); + const input = downshift.find(Input); + downshift.setState({ isOpen: true }); + const event = getKeyEvent('Enter'); + input.simulate('keydown', event); + expect(downshift.state('isOpen')).toBe(false); + }); + + it('should blur input on escape', () => { + const downshift = expressionInput.find(Downshift); + const instance: any = expressionInput.instance(); + const spyBlur = jest.spyOn(instance.exprInputRef.current, 'blur'); + const input = downshift.find(Input); + downshift.setState({ isOpen: false }); + const event = getKeyEvent('Escape'); + input.simulate('keydown', event); + expect(spyBlur).toHaveBeenCalled(); + }); + + it('noops on ArrowUp or ArrowDown', () => { + const downshift = expressionInput.find(Downshift); + const input = downshift.find(Input); + downshift.setState({ isOpen: true }); + ['ArrowUp', 'ArrowDown'].forEach(key => { + const event = getKeyEvent(key); + input.simulate('keydown', event); + const nativeEvent = event.nativeEvent as any; + expect(nativeEvent.preventDownshiftDefault).toBeUndefined(); + }); + }); + + it('does not render an autosuggest if there are no matches', () => { + const downshift = expressionInput.find(Downshift); + downshift.setState({ isOpen: true }); + const ul = downshift.find('ul'); + expect(ul).toHaveLength(0); + }); + + it('renders an autosuggest if there are matches', () => { + const downshift = expressionInput.find(Downshift); + downshift.setState({ isOpen: true }); + setTimeout(() => { + const ul = downshift.find('ul'); + expect(ul.prop('className')).toEqual('card list-group'); + const items = ul.find('li'); + expect(items.map(item => item.text()).join(', ')).toEqual( + 'node_cpu_guest_seconds_total, node_cpu_seconds_total, instance:node_cpu_utilisation:rate1m' + ); + }); + }); + }); + + it('renders an execute Button', () => { + const addon = expressionInput.find(InputGroupAddon).filterWhere(addon => addon.prop('addonType') === 'append'); + const button = addon.find(Button); + expect(button.prop('className')).toEqual('execute-btn'); + expect(button.prop('color')).toEqual('primary'); + expect(button.text()).toEqual('Execute'); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx b/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx new file mode 100644 index 00000000000..f5e00aaa481 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx @@ -0,0 +1,194 @@ +import React, { Component } from 'react'; +import { Button, InputGroup, InputGroupAddon, InputGroupText, Input } from 'reactstrap'; + +import Downshift, { ControllerStateAndHelpers } from 'downshift'; +import fuzzy from 'fuzzy'; +import sanitizeHTML from 'sanitize-html'; + +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faSearch, faSpinner } from '@fortawesome/free-solid-svg-icons'; + +interface ExpressionInputProps { + value: string; + onExpressionChange: (expr: string) => void; + autocompleteSections: { [key: string]: string[] }; + executeQuery: () => void; + loading: boolean; +} + +interface ExpressionInputState { + height: number | string; +} + +class ExpressionInput extends Component { + private exprInputRef = React.createRef(); + + constructor(props: ExpressionInputProps) { + super(props); + this.state = { + height: 'auto', + }; + } + + componentDidMount() { + this.setHeight(); + } + + setHeight = () => { + const { offsetHeight, clientHeight, scrollHeight } = this.exprInputRef.current!; + const offset = offsetHeight - clientHeight; // Needed in order for the height to be more accurate. + this.setState({ height: scrollHeight + offset }); + }; + + handleInput = () => { + this.setValue(this.exprInputRef.current!.value); + }; + + setValue = (value: string) => { + const { onExpressionChange } = this.props; + onExpressionChange(value); + this.setState({ height: 'auto' }, this.setHeight); + }; + + componentDidUpdate(prevProps: ExpressionInputProps) { + const { value } = this.props; + if (value !== prevProps.value) { + this.setValue(value); + } + } + + handleKeyPress = (event: React.KeyboardEvent) => { + const { executeQuery } = this.props; + if (event.key === 'Enter' && !event.shiftKey) { + executeQuery(); + event.preventDefault(); + } + }; + + getSearchMatches = (input: string, expressions: string[]) => { + return fuzzy.filter(input.replace(/ /g, ''), expressions, { + pre: '', + post: '', + }); + }; + + createAutocompleteSection = (downshift: ControllerStateAndHelpers) => { + const { inputValue = '', closeMenu, highlightedIndex } = downshift; + const { autocompleteSections } = this.props; + let index = 0; + const sections = inputValue!.length + ? Object.entries(autocompleteSections).reduce( + (acc, [title, items]) => { + const matches = this.getSearchMatches(inputValue!, items); + return !matches.length + ? acc + : [ + ...acc, +
      +
    • {title}
    • + {matches + .slice(0, 100) // Limit DOM rendering to 100 results, as DOM rendering is sloooow. + .map(({ original, string: text }) => { + const itemProps = downshift.getItemProps({ + key: original, + index, + item: original, + style: { + backgroundColor: highlightedIndex === index++ ? 'lightgray' : 'white', + }, + }); + return ( +
    • + ); + })} +
    , + ]; + }, + [] as JSX.Element[] + ) + : []; + + if (!sections.length) { + // This is ugly but is needed in order to sync state updates. + // This way we force downshift to wait React render call to complete before closeMenu to be triggered. + setTimeout(closeMenu); + return null; + } + + return ( +
    + {sections} +
    + ); + }; + + render() { + const { executeQuery, value } = this.props; + const { height } = this.state; + return ( + + {downshift => ( +
    + + + + {this.props.loading ? : } + + + { + switch (event.key) { + case 'Home': + case 'End': + // We want to be able to jump to the beginning/end of the input field. + // By default, Downshift otherwise jumps to the first/last suggestion item instead. + (event.nativeEvent as any).preventDownshiftDefault = true; + break; + case 'ArrowUp': + case 'ArrowDown': + if (!downshift.isOpen) { + (event.nativeEvent as any).preventDownshiftDefault = true; + } + break; + case 'Enter': + downshift.closeMenu(); + break; + case 'Escape': + if (!downshift.isOpen) { + this.exprInputRef.current!.blur(); + } + break; + default: + } + }, + } as any)} + value={value} + /> + + + + + {downshift.isOpen && this.createAutocompleteSection(downshift)} +
    + )} +
    + ); + } +} + +export default ExpressionInput; diff --git a/pkg/ui/react-app/src/pages/graph/Graph.test.tsx b/pkg/ui/react-app/src/pages/graph/Graph.test.tsx new file mode 100644 index 00000000000..cb5ce537a17 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/Graph.test.tsx @@ -0,0 +1,268 @@ +import * as React from 'react'; +import $ from 'jquery'; +import { shallow, mount } from 'enzyme'; +import Graph from './Graph'; +import ReactResizeDetector from 'react-resize-detector'; +import { Legend } from './Legend'; + +describe('Graph', () => { + beforeAll(() => { + jest.spyOn(window, 'requestAnimationFrame').mockImplementation((cb: any) => cb()); + }); + describe('data is returned', () => { + const props: any = { + queryParams: { + startTime: 1572128592, + endTime: 1572130692, + resolution: 28, + }, + stacked: false, + data: { + resultType: 'matrix', + result: [ + { + metric: { + code: '200', + handler: '/graph', + instance: 'localhost:9090', + job: 'prometheus', + }, + values: [ + [1572128592, '23'], + [1572128620, '2'], + [1572128648, '4'], + [1572128676, '1'], + [1572128704, '2'], + [1572128732, '12'], + [1572128760, '1'], + [1572128788, '0'], + [1572128816, '0'], + [1572128844, '2'], + [1572128872, '5'], + [1572130384, '6'], + [1572130412, '7'], + [1572130440, '19'], + [1572130468, '33'], + [1572130496, '14'], + [1572130524, '7'], + [1572130552, '6'], + [1572130580, '0'], + [1572130608, '0'], + [1572130636, '0'], + [1572130664, '0'], + [1572130692, '0'], + ], + }, + ], + }, + }; + it('renders a graph with props', () => { + const graph = shallow(); + const div = graph.find('div').filterWhere(elem => elem.prop('className') === 'graph'); + const resize = div.find(ReactResizeDetector); + const innerdiv = div.find('div').filterWhere(elem => elem.prop('className') === 'graph-chart'); + expect(resize.prop('handleWidth')).toBe(true); + expect(div).toHaveLength(1); + expect(innerdiv).toHaveLength(1); + }); + describe('Legend', () => { + it('renders a legend', () => { + const graph = shallow(); + expect(graph.find(Legend)).toHaveLength(1); + }); + }); + }); + describe('on component update', () => { + let graph: any; + let spyState: any; + let mockPlot: any; + beforeEach(() => { + mockPlot = jest.spyOn($, 'plot').mockReturnValue({ setData: jest.fn(), draw: jest.fn(), destroy: jest.fn() } as any); + graph = mount( + + ); + spyState = jest.spyOn(graph.instance(), 'setState'); + }); + afterEach(() => { + spyState.mockReset(); + mockPlot.mockReset(); + }); + it('should trigger state update when new data is received', () => { + graph.setProps({ data: { result: [{ values: [{}], metric: {} }] } }); + expect(spyState).toHaveBeenCalledWith( + { + chartData: [ + { + color: 'rgb(237,194,64)', + data: [[1572128592000, null]], + index: 0, + labels: {}, + }, + ], + }, + expect.anything() + ); + }); + it('should trigger state update when stacked prop is changed', () => { + graph.setProps({ stacked: false }); + expect(spyState).toHaveBeenCalledWith( + { + chartData: [ + { + color: 'rgb(237,194,64)', + data: [[1572128592000, null]], + index: 0, + labels: {}, + }, + ], + }, + expect.anything() + ); + }); + }); + describe('on unmount', () => { + it('should call destroy plot', () => { + const graph = mount( + + ); + const spyPlotDestroy = jest.spyOn(graph.instance(), 'componentWillUnmount'); + graph.unmount(); + expect(spyPlotDestroy).toHaveBeenCalledTimes(1); + spyPlotDestroy.mockReset(); + }); + }); + + describe('plot', () => { + it('should not call jquery.plot if chartRef not exist', () => { + const mockSetData = jest.fn(); + jest.spyOn($, 'plot').mockReturnValue({ setData: mockSetData, draw: jest.fn(), destroy: jest.fn() } as any); + const graph = shallow( + + ); + (graph.instance() as any).plot(); + expect(mockSetData).not.toBeCalled(); + }); + it('should call jquery.plot if chartRef exist', () => { + const mockPlot = jest + .spyOn($, 'plot') + .mockReturnValue({ setData: jest.fn(), draw: jest.fn(), destroy: jest.fn() } as any); + const graph = mount( + + ); + (graph.instance() as any).plot(); + expect(mockPlot).toBeCalled(); + }); + it('should destroy plot', () => { + const mockDestroy = jest.fn(); + jest.spyOn($, 'plot').mockReturnValue({ setData: jest.fn(), draw: jest.fn(), destroy: mockDestroy } as any); + const graph = mount( + + ); + (graph.instance() as any).plot(); + (graph.instance() as any).destroyPlot(); + expect(mockDestroy).toHaveBeenCalledTimes(2); + }); + }); + describe('plotSetAndDraw', () => { + it('should call spyPlotSetAndDraw on legend hover', () => { + jest.spyOn($, 'plot').mockReturnValue({ setData: jest.fn(), draw: jest.fn(), destroy: jest.fn() } as any); + const graph = mount( + + ); + (graph.instance() as any).plot(); // create chart + const spyPlotSetAndDraw = jest.spyOn(graph.instance() as any, 'plotSetAndDraw'); + graph + .find('.legend-item') + .at(0) + .simulate('mouseover'); + expect(spyPlotSetAndDraw).toHaveBeenCalledTimes(1); + }); + it('should call spyPlotSetAndDraw with chartDate from state as default value', () => { + const mockSetData = jest.fn(); + const spyPlot = jest + .spyOn($, 'plot') + .mockReturnValue({ setData: mockSetData, draw: jest.fn(), destroy: jest.fn() } as any); + const graph: any = mount( + + ); + (graph.instance() as any).plot(); // create chart + graph.find('.graph-legend').simulate('mouseout'); + expect(mockSetData).toHaveBeenCalledWith(graph.state().chartData); + spyPlot.mockReset(); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/Graph.tsx b/pkg/ui/react-app/src/pages/graph/Graph.tsx new file mode 100644 index 00000000000..09b15c8252d --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/Graph.tsx @@ -0,0 +1,145 @@ +import $ from 'jquery'; +import React, { PureComponent } from 'react'; +import ReactResizeDetector from 'react-resize-detector'; + +import { Legend } from './Legend'; +import { Metric, QueryParams } from '../../types/types'; +import { isPresent } from '../../utils'; +import { normalizeData, getOptions, toHoverColor } from './GraphHelpers'; + +require('../../vendor/flot/jquery.flot'); +require('../../vendor/flot/jquery.flot.stack'); +require('../../vendor/flot/jquery.flot.time'); +require('../../vendor/flot/jquery.flot.crosshair'); +require('jquery.flot.tooltip'); + +export interface GraphProps { + data: { + resultType: string; + result: Array<{ metric: Metric; values: [number, string][] }>; + }; + stacked: boolean; + useLocalTime: boolean; + queryParams: QueryParams | null; +} + +export interface GraphSeries { + labels: { [key: string]: string }; + color: string; + data: (number | null)[][]; // [x,y][] + index: number; +} + +interface GraphState { + chartData: GraphSeries[]; +} + +class Graph extends PureComponent { + private chartRef = React.createRef(); + private $chart?: jquery.flot.plot; + private rafID = 0; + private selectedSeriesIndexes: number[] = []; + + state = { + chartData: normalizeData(this.props), + }; + + componentDidUpdate(prevProps: GraphProps) { + const { data, stacked, useLocalTime } = this.props; + if (prevProps.data !== data) { + this.selectedSeriesIndexes = []; + this.setState({ chartData: normalizeData(this.props) }, this.plot); + } else if (prevProps.stacked !== stacked) { + this.setState({ chartData: normalizeData(this.props) }, () => { + if (this.selectedSeriesIndexes.length === 0) { + this.plot(); + } else { + this.plot(this.state.chartData.filter((_, i) => this.selectedSeriesIndexes.includes(i))); + } + }); + } + + if (prevProps.useLocalTime !== useLocalTime) { + this.plot(); + } + } + + componentDidMount() { + this.plot(); + } + + componentWillUnmount() { + this.destroyPlot(); + } + + plot = (data: GraphSeries[] = this.state.chartData) => { + if (!this.chartRef.current) { + return; + } + this.destroyPlot(); + + this.$chart = $.plot($(this.chartRef.current), data, getOptions(this.props.stacked, this.props.useLocalTime)); + }; + + destroyPlot = () => { + if (isPresent(this.$chart)) { + this.$chart.destroy(); + } + }; + + plotSetAndDraw(data: GraphSeries[] = this.state.chartData) { + if (isPresent(this.$chart)) { + this.$chart.setData(data); + this.$chart.draw(); + } + } + + handleSeriesSelect = (selected: number[], selectedIndex: number) => { + const { chartData } = this.state; + this.plot( + this.selectedSeriesIndexes.length === 1 && this.selectedSeriesIndexes.includes(selectedIndex) + ? chartData.map(toHoverColor(selectedIndex, this.props.stacked)) + : chartData.filter((_, i) => selected.includes(i)) // draw only selected + ); + this.selectedSeriesIndexes = selected; + }; + + handleSeriesHover = (index: number) => () => { + if (this.rafID) { + cancelAnimationFrame(this.rafID); + } + this.rafID = requestAnimationFrame(() => { + this.plotSetAndDraw(this.state.chartData.map(toHoverColor(index, this.props.stacked))); + }); + }; + + handleLegendMouseOut = () => { + cancelAnimationFrame(this.rafID); + this.plotSetAndDraw(); + }; + + handleResize = () => { + if (isPresent(this.$chart)) { + this.plot(this.$chart.getData() as GraphSeries[]); + } + }; + + render() { + const { chartData } = this.state; + return ( +
    + +
    + +
    + ); + } +} + +export default Graph; diff --git a/pkg/ui/react-app/src/pages/graph/GraphControls.test.tsx b/pkg/ui/react-app/src/pages/graph/GraphControls.test.tsx new file mode 100755 index 00000000000..c81f61d15a3 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphControls.test.tsx @@ -0,0 +1,173 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import GraphControls from './GraphControls'; +import { Button, ButtonGroup, Form, InputGroup, InputGroupAddon, Input } from 'reactstrap'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faPlus, faMinus, faChartArea, faChartLine } from '@fortawesome/free-solid-svg-icons'; +import TimeInput from './TimeInput'; + +const defaultGraphControlProps = { + range: 60 * 60 * 24, + endTime: 1572100217898, + resolution: 10, + stacked: false, + + onChangeRange: (): void => { + // Do nothing. + }, + onChangeEndTime: (): void => { + // Do nothing. + }, + onChangeResolution: (): void => { + // Do nothing. + }, + onChangeStacking: (): void => { + // Do nothing. + }, +}; + +describe('GraphControls', () => { + it('renders a form', () => { + const controls = shallow(); + const form = controls.find(Form); + expect(form).toHaveLength(1); + expect(form.prop('className')).toEqual('graph-controls'); + expect(form.prop('inline')).toBe(true); + }); + + it('renders an Input Group for range', () => { + const controls = shallow(); + const form = controls.find(InputGroup); + expect(form).toHaveLength(1); + expect(form.prop('className')).toEqual('range-input'); + expect(form.prop('size')).toBe('sm'); + }); + + it('renders a decrease/increase range buttons', () => { + [ + { + position: 'prepend', + title: 'Decrease range', + icon: faMinus, + }, + { + position: 'append', + title: 'Increase range', + icon: faPlus, + }, + ].forEach(testCase => { + const controls = shallow(); + const addon = controls.find(InputGroupAddon).filterWhere(addon => addon.prop('addonType') === testCase.position); + const button = addon.find(Button); + const icon = button.find(FontAwesomeIcon); + expect(button.prop('title')).toEqual(testCase.title); + expect(icon).toHaveLength(1); + expect(icon.prop('icon')).toEqual(testCase.icon); + expect(icon.prop('fixedWidth')).toBe(true); + }); + }); + + it('renders an Input for range', () => { + const controls = shallow(); + const form = controls.find(InputGroup); + const input = form.find(Input); + expect(input).toHaveLength(1); + expect(input.prop('defaultValue')).toEqual('1d'); + expect(input.prop('innerRef')).toEqual({ current: null }); + }); + + it('renders a TimeInput with props', () => { + const controls = shallow(); + const timeInput = controls.find(TimeInput); + expect(timeInput).toHaveLength(1); + expect(timeInput.prop('time')).toEqual(1572100217898); + expect(timeInput.prop('range')).toEqual(86400); + expect(timeInput.prop('placeholder')).toEqual('End time'); + }); + + it('renders a TimeInput with a callback', () => { + const results: (number | null)[] = []; + const onChange = (endTime: number | null): void => { + results.push(endTime); + }; + const controls = shallow(); + const timeInput = controls.find(TimeInput); + const onChangeTime = timeInput.prop('onChangeTime'); + if (onChangeTime) { + onChangeTime(5); + expect(results).toHaveLength(1); + expect(results[0]).toEqual(5); + results.pop(); + } else { + fail('Expected onChangeTime to be defined but it was not'); + } + }); + + it('renders a resolution Input with props', () => { + const controls = shallow(); + const input = controls.find(Input).filterWhere(input => input.prop('className') === 'resolution-input'); + expect(input.prop('placeholder')).toEqual('Res. (s)'); + expect(input.prop('defaultValue')).toEqual('10'); + expect(input.prop('innerRef')).toEqual({ current: null }); + expect(input.prop('bsSize')).toEqual('sm'); + }); + + it('renders a button group', () => { + const controls = shallow(); + const group = controls.find(ButtonGroup); + expect(group.prop('className')).toEqual('stacked-input'); + expect(group.prop('size')).toEqual('sm'); + }); + + it('renders buttons inside the button group', () => { + [ + { + title: 'Show unstacked line graph', + icon: faChartLine, + active: true, + }, + { + title: 'Show stacked graph', + icon: faChartArea, + active: false, + }, + ].forEach(testCase => { + const controls = shallow(); + const group = controls.find(ButtonGroup); + const btn = group.find(Button).filterWhere(btn => btn.prop('title') === testCase.title); + expect(btn.prop('active')).toEqual(testCase.active); + const icon = btn.find(FontAwesomeIcon); + expect(icon.prop('icon')).toEqual(testCase.icon); + }); + }); + + it('renders buttons with callbacks', () => { + [ + { + title: 'Show unstacked line graph', + active: true, + }, + { + title: 'Show stacked graph', + active: false, + }, + ].forEach(testCase => { + const results: boolean[] = []; + const onChange = (stacked: boolean): void => { + results.push(stacked); + }; + const controls = shallow(); + const group = controls.find(ButtonGroup); + const btn = group.find(Button).filterWhere(btn => btn.prop('title') === testCase.title); + const onClick = btn.prop('onClick'); + if (onClick) { + onClick({} as React.MouseEvent); + expect(results).toHaveLength(1); + expect(results[0]).toBe(!testCase.active); + results.pop(); + } else { + fail('Expected onClick to be defined but it was not'); + } + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/GraphControls.tsx b/pkg/ui/react-app/src/pages/graph/GraphControls.tsx new file mode 100644 index 00000000000..dd75fb149b7 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphControls.tsx @@ -0,0 +1,150 @@ +import React, { Component } from 'react'; +import { Button, ButtonGroup, Form, InputGroup, InputGroupAddon, Input } from 'reactstrap'; + +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faPlus, faMinus, faChartArea, faChartLine } from '@fortawesome/free-solid-svg-icons'; + +import TimeInput from './TimeInput'; +import { parseRange, formatRange } from '../../utils'; + +interface GraphControlsProps { + range: number; + endTime: number | null; + useLocalTime: boolean; + resolution: number | null; + stacked: boolean; + + onChangeRange: (range: number) => void; + onChangeEndTime: (endTime: number | null) => void; + onChangeResolution: (resolution: number | null) => void; + onChangeStacking: (stacked: boolean) => void; +} + +class GraphControls extends Component { + private rangeRef = React.createRef(); + private resolutionRef = React.createRef(); + + rangeSteps = [ + 1, + 10, + 60, + 5 * 60, + 15 * 60, + 30 * 60, + 60 * 60, + 2 * 60 * 60, + 6 * 60 * 60, + 12 * 60 * 60, + 24 * 60 * 60, + 48 * 60 * 60, + 7 * 24 * 60 * 60, + 14 * 24 * 60 * 60, + 28 * 24 * 60 * 60, + 56 * 24 * 60 * 60, + 365 * 24 * 60 * 60, + 730 * 24 * 60 * 60, + ]; + + onChangeRangeInput = (rangeText: string): void => { + const range = parseRange(rangeText); + if (range === null) { + this.changeRangeInput(this.props.range); + } else { + this.props.onChangeRange(range); + } + }; + + changeRangeInput = (range: number): void => { + this.rangeRef.current!.value = formatRange(range); + }; + + increaseRange = (): void => { + for (const range of this.rangeSteps) { + if (this.props.range < range) { + this.changeRangeInput(range); + this.props.onChangeRange(range); + return; + } + } + }; + + decreaseRange = (): void => { + for (const range of this.rangeSteps.slice().reverse()) { + if (this.props.range > range) { + this.changeRangeInput(range); + this.props.onChangeRange(range); + return; + } + } + }; + + componentDidUpdate(prevProps: GraphControlsProps) { + if (prevProps.range !== this.props.range) { + this.changeRangeInput(this.props.range); + } + if (prevProps.resolution !== this.props.resolution) { + this.resolutionRef.current!.value = this.props.resolution !== null ? this.props.resolution.toString() : ''; + } + } + + render() { + return ( +
    e.preventDefault()}> + + + + + + this.onChangeRangeInput(this.rangeRef.current!.value)} + /> + + + + + + + + + { + const res = parseInt(this.resolutionRef.current!.value); + this.props.onChangeResolution(res ? res : null); + }} + bsSize="sm" + /> + + + + + + + ); + } +} + +export default GraphControls; diff --git a/pkg/ui/react-app/src/pages/graph/GraphHelpers.test.ts b/pkg/ui/react-app/src/pages/graph/GraphHelpers.test.ts new file mode 100644 index 00000000000..a8ecd30fe45 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphHelpers.test.ts @@ -0,0 +1,206 @@ +import { formatValue, getColors, parseValue, getOptions } from './GraphHelpers'; +import moment from 'moment'; +require('../../vendor/flot/jquery.flot'); // need for $.colors + +describe('GraphHelpers', () => { + describe('formatValue', () => { + it('formats tick values correctly', () => { + [ + { input: null, output: 'null' }, + { input: 0, output: '0.00' }, + { input: 2e24, output: '2.00Y' }, + { input: 2e23, output: '200.00Z' }, + { input: 2e22, output: '20.00Z' }, + { input: 2e21, output: '2.00Z' }, + { input: 2e19, output: '20.00E' }, + { input: 2e18, output: '2.00E' }, + { input: 2e17, output: '200.00P' }, + { input: 2e16, output: '20.00P' }, + { input: 2e15, output: '2.00P' }, + { input: 1e15, output: '1.00P' }, + { input: 2e14, output: '200.00T' }, + { input: 2e13, output: '20.00T' }, + { input: 2e12, output: '2.00T' }, + { input: 2e11, output: '200.00G' }, + { input: 2e10, output: '20.00G' }, + { input: 2e9, output: '2.00G' }, + { input: 2e8, output: '200.00M' }, + { input: 2e7, output: '20.00M' }, + { input: 2e6, output: '2.00M' }, + { input: 2e5, output: '200.00k' }, + { input: 2e4, output: '20.00k' }, + { input: 2e3, output: '2.00k' }, + { input: 2e2, output: '200.00' }, + { input: 2e1, output: '20.00' }, + { input: 2, output: '2.00' }, + { input: 2e-1, output: '0.20' }, + { input: 2e-2, output: '0.02' }, + { input: 2e-3, output: '2.00m' }, + { input: 2e-4, output: '0.20m' }, + { input: 2e-5, output: '0.02m' }, + { input: 2e-6, output: '2.00µ' }, + { input: 2e-7, output: '0.20µ' }, + { input: 2e-8, output: '0.02µ' }, + { input: 2e-9, output: '2.00n' }, + { input: 2e-10, output: '0.20n' }, + { input: 2e-11, output: '0.02n' }, + { input: 2e-12, output: '2.00p' }, + { input: 2e-13, output: '0.20p' }, + { input: 2e-14, output: '0.02p' }, + { input: 2e-15, output: '2.00f' }, + { input: 2e-16, output: '0.20f' }, + { input: 2e-17, output: '0.02f' }, + { input: 2e-18, output: '2.00a' }, + { input: 2e-19, output: '0.20a' }, + { input: 2e-20, output: '0.02a' }, + { input: 1e-21, output: '1.00z' }, + { input: 2e-21, output: '2.00z' }, + { input: 2e-22, output: '0.20z' }, + { input: 2e-23, output: '0.02z' }, + { input: 2e-24, output: '2.00y' }, + { input: 2e-25, output: '0.20y' }, + { input: 2e-26, output: '0.02y' }, + ].map(t => { + expect(formatValue(t.input)).toBe(t.output); + }); + }); + it('should throw error if no match', () => { + try { + formatValue(undefined as any); + } catch (error) { + expect(error.message).toEqual("couldn't format a value, this is a bug"); + } + }); + }); + describe('getColors', () => { + it('should generate proper colors', () => { + const data: any = { + resultType: 'matrix', + result: [{}, {}, {}, {}, {}, {}, {}], + }; + expect( + getColors(data) + .map(c => c.toString()) + .join(',') + ).toEqual( + 'rgb(237,194,64),rgb(175,216,248),rgb(203,75,75),rgb(77,167,77),rgb(148,64,237),rgb(189,155,51),rgb(140,172,198)' + ); + }); + }); + describe('parseValue', () => { + it('should parse number properly', () => { + expect(parseValue('12.3e')).toEqual(12.3); + }); + it('should return 0 if value is NaN and stacked prop is true', () => { + expect(parseValue('asd')).toEqual(null); + }); + it('should return null if value is NaN and stacked prop is false', () => { + expect(parseValue('asd')).toBeNull(); + }); + }); + describe('Plot options', () => { + it('should configure options properly if stacked prop is true', () => { + expect(getOptions(true, false)).toMatchObject({ + series: { + stack: true, + lines: { lineWidth: 1, steps: false, fill: true }, + shadowSize: 0, + }, + }); + }); + it('should configure options properly if stacked prop is false', () => { + expect(getOptions(false, false)).toMatchObject({ + series: { + stack: false, + lines: { lineWidth: 2, steps: false, fill: false }, + shadowSize: 0, + }, + }); + }); + it('should configure options properly if useLocalTime prop is true', () => { + expect(getOptions(true, true)).toMatchObject({ + xaxis: { + mode: 'time', + showTicks: true, + showMinorTicks: true, + timeBase: 'milliseconds', + timezone: 'browser', + }, + }); + }); + it('should configure options properly if useLocalTime prop is false', () => { + expect(getOptions(false, false)).toMatchObject({ + xaxis: { + mode: 'time', + showTicks: true, + showMinorTicks: true, + timeBase: 'milliseconds', + }, + }); + }); + it('should return proper tooltip html from options', () => { + expect( + getOptions(true, false).tooltip.content('', 1572128592, 1572128592, { + series: { labels: { foo: '1', bar: '2' }, color: '' }, + } as any) + ).toEqual(` +
    1970-01-19 04:42:08 +00:00
    +
    + + value: 1572128592 +
    +
    +
    foo: 1
    bar: 2
    +
    + `); + }); + it('should return proper tooltip html from options with local time', () => { + moment.tz.setDefault('America/New_York'); + expect( + getOptions(true, true).tooltip.content('', 1572128592, 1572128592, { + series: { labels: { foo: '1', bar: '2' }, color: '' }, + } as any) + ).toEqual(` +
    1970-01-18 23:42:08 -05:00
    +
    + + value: 1572128592 +
    +
    +
    foo: 1
    bar: 2
    +
    + `); + }); + it('should render Plot with proper options', () => { + expect(getOptions(true, false)).toEqual({ + grid: { + hoverable: true, + clickable: true, + autoHighlight: true, + mouseActiveRadius: 100, + }, + legend: { show: false }, + xaxis: { + mode: 'time', + showTicks: true, + showMinorTicks: true, + timeBase: 'milliseconds', + }, + yaxis: { tickFormatter: expect.anything() }, + crosshair: { mode: 'xy', color: '#bbb' }, + tooltip: { + show: true, + cssClass: 'graph-tooltip', + content: expect.anything(), + defaultTheme: false, + lines: true, + }, + series: { + stack: true, + lines: { lineWidth: 1, steps: false, fill: true }, + shadowSize: 0, + }, + }); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/GraphHelpers.ts b/pkg/ui/react-app/src/pages/graph/GraphHelpers.ts new file mode 100644 index 00000000000..4bd2f244265 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphHelpers.ts @@ -0,0 +1,197 @@ +import $ from 'jquery'; + +import { escapeHTML } from '../../utils'; +import { Metric } from '../../types/types'; +import { GraphProps, GraphSeries } from './Graph'; +import moment from 'moment-timezone'; + +export const formatValue = (y: number | null): string => { + if (y === null) { + return 'null'; + } + const absY = Math.abs(y); + + if (absY >= 1e24) { + return (y / 1e24).toFixed(2) + 'Y'; + } else if (absY >= 1e21) { + return (y / 1e21).toFixed(2) + 'Z'; + } else if (absY >= 1e18) { + return (y / 1e18).toFixed(2) + 'E'; + } else if (absY >= 1e15) { + return (y / 1e15).toFixed(2) + 'P'; + } else if (absY >= 1e12) { + return (y / 1e12).toFixed(2) + 'T'; + } else if (absY >= 1e9) { + return (y / 1e9).toFixed(2) + 'G'; + } else if (absY >= 1e6) { + return (y / 1e6).toFixed(2) + 'M'; + } else if (absY >= 1e3) { + return (y / 1e3).toFixed(2) + 'k'; + } else if (absY >= 1) { + return y.toFixed(2); + } else if (absY === 0) { + return y.toFixed(2); + } else if (absY < 1e-23) { + return (y / 1e-24).toFixed(2) + 'y'; + } else if (absY < 1e-20) { + return (y / 1e-21).toFixed(2) + 'z'; + } else if (absY < 1e-17) { + return (y / 1e-18).toFixed(2) + 'a'; + } else if (absY < 1e-14) { + return (y / 1e-15).toFixed(2) + 'f'; + } else if (absY < 1e-11) { + return (y / 1e-12).toFixed(2) + 'p'; + } else if (absY < 1e-8) { + return (y / 1e-9).toFixed(2) + 'n'; + } else if (absY < 1e-5) { + return (y / 1e-6).toFixed(2) + 'µ'; + } else if (absY < 1e-2) { + return (y / 1e-3).toFixed(2) + 'm'; + } else if (absY <= 1) { + return y.toFixed(2); + } + throw Error("couldn't format a value, this is a bug"); +}; + +export const getHoverColor = (color: string, opacity: number, stacked: boolean) => { + const { r, g, b } = $.color.parse(color); + if (!stacked) { + return `rgba(${r}, ${g}, ${b}, ${opacity})`; + } + /* + Unfortunately flot doesn't take into consideration + the alpha value when adjusting the color on the stacked series. + TODO: find better way to set the opacity. + */ + const base = (1 - opacity) * 255; + return `rgb(${Math.round(base + opacity * r)},${Math.round(base + opacity * g)},${Math.round(base + opacity * b)})`; +}; + +export const toHoverColor = (index: number, stacked: boolean) => (series: GraphSeries, i: number) => ({ + ...series, + color: getHoverColor(series.color, i !== index ? 0.3 : 1, stacked), +}); + +export const getOptions = (stacked: boolean, useLocalTime: boolean): jquery.flot.plotOptions => { + return { + grid: { + hoverable: true, + clickable: true, + autoHighlight: true, + mouseActiveRadius: 100, + }, + legend: { + show: false, + }, + xaxis: { + mode: 'time', + showTicks: true, + showMinorTicks: true, + timeBase: 'milliseconds', + timezone: useLocalTime ? 'browser' : undefined, + }, + yaxis: { + tickFormatter: formatValue, + }, + crosshair: { + mode: 'xy', + color: '#bbb', + }, + tooltip: { + show: true, + cssClass: 'graph-tooltip', + content: (_, xval, yval, { series }): string => { + const { labels, color } = series; + let dateTime = moment(xval); + if (!useLocalTime) { + dateTime = dateTime.utc(); + } + return ` +
    ${dateTime.format('YYYY-MM-DD HH:mm:ss Z')}
    +
    + + ${labels.__name__ || 'value'}: ${yval} +
    +
    + ${Object.keys(labels) + .map(k => + k !== '__name__' ? `
    ${k}: ${escapeHTML(labels[k])}
    ` : '' + ) + .join('')} +
    + `; + }, + defaultTheme: false, + lines: true, + }, + series: { + stack: stacked, + lines: { + lineWidth: stacked ? 1 : 2, + steps: false, + fill: stacked, + }, + shadowSize: 0, + }, + }; +}; + +// This was adapted from Flot's color generation code. +export const getColors = (data: { resultType: string; result: Array<{ metric: Metric; values: [number, string][] }> }) => { + const colorPool = ['#edc240', '#afd8f8', '#cb4b4b', '#4da74d', '#9440ed']; + const colorPoolSize = colorPool.length; + let variation = 0; + return data.result.map((_, i) => { + // Each time we exhaust the colors in the pool we adjust + // a scaling factor used to produce more variations on + // those colors. The factor alternates negative/positive + // to produce lighter/darker colors. + + // Reset the variation after every few cycles, or else + // it will end up producing only white or black colors. + + if (i % colorPoolSize === 0 && i) { + if (variation >= 0) { + variation = variation < 0.5 ? -variation - 0.2 : 0; + } else { + variation = -variation; + } + } + return $.color.parse(colorPool[i % colorPoolSize] || '#666').scale('rgb', 1 + variation); + }); +}; + +export const normalizeData = ({ queryParams, data }: GraphProps): GraphSeries[] => { + const colors = getColors(data); + const { startTime, endTime, resolution } = queryParams!; + return data.result.map(({ values, metric }, index) => { + // Insert nulls for all missing steps. + const data = []; + let pos = 0; + + for (let t = startTime; t <= endTime; t += resolution) { + // Allow for floating point inaccuracy. + const currentValue = values[pos]; + if (values.length > pos && currentValue[0] < t + resolution / 100) { + data.push([currentValue[0] * 1000, parseValue(currentValue[1])]); + pos++; + } else { + data.push([t * 1000, null]); + } + } + + return { + labels: metric !== null ? metric : {}, + color: colors[index].toString(), + data, + index, + }; + }); +}; + +export const parseValue = (value: string) => { + const val = parseFloat(value); + // "+Inf", "-Inf", "+Inf" will be parsed into NaN by parseFloat(). They + // can't be graphed, so show them as gaps (null). + return isNaN(val) ? null : val; +}; diff --git a/pkg/ui/react-app/src/pages/graph/GraphTabContent.test.tsx b/pkg/ui/react-app/src/pages/graph/GraphTabContent.test.tsx new file mode 100644 index 00000000000..591ab6eafa8 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphTabContent.test.tsx @@ -0,0 +1,45 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import { Alert } from 'reactstrap'; +import { GraphTabContent } from './GraphTabContent'; + +describe('GraphTabContent', () => { + it('renders an alert if data result type is different than "matrix"', () => { + const props: any = { + data: { resultType: 'invalid', result: [{}] }, + stacked: false, + queryParams: { + startTime: 1572100210000, + endTime: 1572100217898, + resolution: 10, + }, + color: 'danger', + children: `Query result is of wrong type '`, + }; + const graph = shallow(); + const alert = graph.find(Alert); + expect(alert.prop('color')).toEqual(props.color); + expect(alert.childAt(0).text()).toEqual(props.children); + }); + + it('renders an alert if data result empty', () => { + const props: any = { + data: { + resultType: 'matrix', + result: [], + }, + color: 'secondary', + children: 'Empty query result', + stacked: false, + queryParams: { + startTime: 1572100210000, + endTime: 1572100217898, + resolution: 10, + }, + }; + const graph = shallow(); + const alert = graph.find(Alert); + expect(alert.prop('color')).toEqual(props.color); + expect(alert.childAt(0).text()).toEqual(props.children); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/GraphTabContent.tsx b/pkg/ui/react-app/src/pages/graph/GraphTabContent.tsx new file mode 100644 index 00000000000..2350cb117e4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/GraphTabContent.tsx @@ -0,0 +1,27 @@ +import React, { FC } from 'react'; +import { Alert } from 'reactstrap'; +import Graph from './Graph'; +import { QueryParams } from '../../types/types'; +import { isPresent } from '../../utils'; + +interface GraphTabContentProps { + data: any; + stacked: boolean; + useLocalTime: boolean; + lastQueryParams: QueryParams | null; +} + +export const GraphTabContent: FC = ({ data, stacked, useLocalTime, lastQueryParams }) => { + if (!isPresent(data)) { + return No data queried yet; + } + if (data.result.length === 0) { + return Empty query result; + } + if (data.resultType !== 'matrix') { + return ( + Query result is of wrong type '{data.resultType}', should be 'matrix' (range vector). + ); + } + return ; +}; diff --git a/pkg/ui/react-app/src/pages/graph/Legend.tsx b/pkg/ui/react-app/src/pages/graph/Legend.tsx new file mode 100644 index 00000000000..8a4068897a5 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/Legend.tsx @@ -0,0 +1,77 @@ +import React, { PureComponent, SyntheticEvent } from 'react'; +import SeriesName from './SeriesName'; +import { GraphSeries } from './Graph'; + +interface LegendProps { + chartData: GraphSeries[]; + shouldReset: boolean; + onLegendMouseOut: (ev: SyntheticEvent) => void; + onSeriesToggle: (selected: number[], index: number) => void; + onHover: (index: number) => (ev: SyntheticEvent) => void; +} + +interface LegendState { + selectedIndexes: number[]; +} + +export class Legend extends PureComponent { + state = { + selectedIndexes: [] as number[], + }; + componentDidUpdate(prevProps: LegendProps) { + if (this.props.shouldReset && prevProps.shouldReset !== this.props.shouldReset) { + this.setState({ selectedIndexes: [] }); + } + } + handleSeriesSelect = (index: number) => (ev: React.MouseEvent) => { + // TODO: add proper event type + const { selectedIndexes } = this.state; + + let selected = [index]; + if (ev.ctrlKey || ev.metaKey) { + const { chartData } = this.props; + if (selectedIndexes.includes(index)) { + selected = selectedIndexes.filter(idx => idx !== index); + } else { + selected = + // Flip the logic - In case none is selected ctrl + click should deselect clicked series. + selectedIndexes.length === 0 + ? chartData.reduce((acc, _, i) => (i === index ? acc : [...acc, i]), []) + : [...selectedIndexes, index]; // Select multiple. + } + } else if (selectedIndexes.length === 1 && selectedIndexes.includes(index)) { + selected = []; + } + + this.setState({ selectedIndexes: selected }); + this.props.onSeriesToggle(selected, index); + }; + + render() { + const { chartData, onLegendMouseOut, onHover } = this.props; + const { selectedIndexes } = this.state; + const canUseHover = chartData.length > 1 && selectedIndexes.length === 0; + + return ( +
    + {chartData.map(({ index, color, labels }) => ( +
    1 ? this.handleSeriesSelect(index) : undefined} + onMouseOver={canUseHover ? onHover(index) : undefined} + key={index} + className="legend-item" + > + + +
    + ))} + {chartData.length > 1 && ( +
    + Click: select series, {navigator.platform.includes('Mac') ? 'CMD' : 'CTRL'} + click: toggle multiple series +
    + )} +
    + ); + } +} diff --git a/pkg/ui/react-app/src/pages/graph/Panel.test.tsx b/pkg/ui/react-app/src/pages/graph/Panel.test.tsx new file mode 100644 index 00000000000..6e969b9ac60 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/Panel.test.tsx @@ -0,0 +1,140 @@ +import * as React from 'react'; +import { mount, shallow } from 'enzyme'; +import Panel, { PanelOptions, PanelType } from './Panel'; +import ExpressionInput from './ExpressionInput'; +import GraphControls from './GraphControls'; +import { NavLink, TabPane } from 'reactstrap'; +import TimeInput from './TimeInput'; +import DataTable from './DataTable'; +import { GraphTabContent } from './GraphTabContent'; + +const defaultProps = { + options: { + expr: 'prometheus_engine', + type: PanelType.Table, + range: 10, + endTime: 1572100217898, + resolution: 28, + stacked: false, + }, + onOptionsChanged: (): void => { + // Do nothing. + }, + pastQueries: [], + metricNames: [ + 'prometheus_engine_queries', + 'prometheus_engine_queries_concurrent_max', + 'prometheus_engine_query_duration_seconds', + ], + removePanel: (): void => { + // Do nothing. + }, + onExecuteQuery: (): void => { + // Do nothing. + }, + useLocalTime: false, + useDeduplication: true, + usePartialResponse: false, +}; + +describe('Panel', () => { + const panel = shallow(); + + it('renders an ExpressionInput', () => { + const input = panel.find(ExpressionInput); + expect(input.prop('value')).toEqual('prometheus_engine'); + expect(input.prop('autocompleteSections')).toEqual({ + 'Metric Names': [ + 'prometheus_engine_queries', + 'prometheus_engine_queries_concurrent_max', + 'prometheus_engine_query_duration_seconds', + ], + 'Query History': [], + }); + }); + + it('renders NavLinks', () => { + const results: PanelOptions[] = []; + const onOptionsChanged = (opts: PanelOptions): void => { + results.push(opts); + }; + const panel = shallow(); + const links = panel.find(NavLink); + [{ panelType: 'Table', active: true }, { panelType: 'Graph', active: false }].forEach( + (tc: { panelType: string; active: boolean }, i: number) => { + const link = links.at(i); + const className = tc.active ? 'active' : ''; + expect(link.prop('className')).toEqual(className); + link.simulate('click'); + expect(results).toHaveLength(1); + expect(results[0].type).toEqual(tc.panelType.toLowerCase()); + results.pop(); + } + ); + }); + + it('renders a TabPane with a TimeInput and a DataTable when in table mode', () => { + const tab = panel.find(TabPane).filterWhere(tab => tab.prop('tabId') === 'table'); + const timeInput = tab.find(TimeInput); + expect(timeInput.prop('time')).toEqual(defaultProps.options.endTime); + expect(timeInput.prop('range')).toEqual(defaultProps.options.range); + expect(timeInput.prop('placeholder')).toEqual('Evaluation time'); + expect(tab.find(DataTable)).toHaveLength(1); + }); + + it('renders a TabPane with a Graph and GraphControls when in graph mode', () => { + const options = { + expr: 'prometheus_engine', + type: PanelType.Graph, + range: 10, + endTime: 1572100217898, + resolution: 28, + stacked: false, + }; + const graphPanel = mount(); + const controls = graphPanel.find(GraphControls); + graphPanel.setState({ data: { resultType: 'matrix', result: [] } }); + const graph = graphPanel.find(GraphTabContent); + expect(controls.prop('endTime')).toEqual(options.endTime); + expect(controls.prop('range')).toEqual(options.range); + expect(controls.prop('resolution')).toEqual(options.resolution); + expect(controls.prop('stacked')).toEqual(options.stacked); + expect(graph.prop('stacked')).toEqual(options.stacked); + }); + + describe('when switching between modes', () => { + [{ from: PanelType.Table, to: PanelType.Graph }, { from: PanelType.Graph, to: PanelType.Table }].forEach( + ({ from, to }: { from: PanelType; to: PanelType }) => { + it(`${from} -> ${to} nulls out data`, () => { + const props = { + ...defaultProps, + options: { ...defaultProps.options, type: from }, + }; + const panel = shallow(); + const instance: any = panel.instance(); + panel.setState({ data: 'somedata' }); + expect(panel.state('data')).toEqual('somedata'); + instance.handleChangeType(to); + expect(panel.state('data')).toBeNull(); + }); + } + ); + }); + + describe('when changing query then time', () => { + it('executes the new query', () => { + const initialExpr = 'time()'; + const newExpr = 'time() - time()'; + const panel = shallow(); + const instance: any = panel.instance(); + instance.executeQuery(); + const executeQuerySpy = jest.spyOn(instance, 'executeQuery'); + //change query without executing + panel.setProps({ options: { ...defaultProps.options, expr: newExpr } }); + expect(executeQuerySpy).toHaveBeenCalledTimes(0); + //execute query implicitly with time change + panel.setProps({ options: { ...defaultProps.options, expr: newExpr, endTime: 1575744840 } }); + expect(executeQuerySpy).toHaveBeenCalledTimes(1); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/graph/Panel.tsx b/pkg/ui/react-app/src/pages/graph/Panel.tsx new file mode 100644 index 00000000000..4675dbf4754 --- /dev/null +++ b/pkg/ui/react-app/src/pages/graph/Panel.tsx @@ -0,0 +1,322 @@ +import React, { Component } from 'react'; + +import { Alert, Button, Col, Nav, NavItem, NavLink, Row, TabContent, TabPane } from 'reactstrap'; + +import moment from 'moment-timezone'; + +import ExpressionInput from './ExpressionInput'; +import GraphControls from './GraphControls'; +import { GraphTabContent } from './GraphTabContent'; +import DataTable from './DataTable'; +import TimeInput from './TimeInput'; +import QueryStatsView, { QueryStats } from './QueryStatsView'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { QueryParams } from '../../types/types'; + +interface PanelProps { + options: PanelOptions; + onOptionsChanged: (opts: PanelOptions) => void; + useLocalTime: boolean; + useDeduplication: boolean; + usePartialResponse: boolean; + pastQueries: string[]; + metricNames: string[]; + removePanel: () => void; + onExecuteQuery: (query: string) => void; +} + +interface PanelState { + data: any; // TODO: Type data. + lastQueryParams: QueryParams | null; + loading: boolean; + error: string | null; + stats: QueryStats | null; + exprInputValue: string; +} + +export interface PanelOptions { + expr: string; + type: PanelType; + range: number; // Range in seconds. + endTime: number | null; // Timestamp in milliseconds. + resolution: number | null; // Resolution in seconds. + stacked: boolean; +} + +export enum PanelType { + Graph = 'graph', + Table = 'table', +} + +export const PanelDefaultOptions: PanelOptions = { + type: PanelType.Table, + expr: '', + range: 3600, + endTime: null, + resolution: null, + stacked: false, +}; + +class Panel extends Component { + private abortInFlightFetch: (() => void) | null = null; + + constructor(props: PanelProps) { + super(props); + + this.state = { + data: null, + lastQueryParams: null, + loading: false, + error: null, + stats: null, + exprInputValue: props.options.expr, + }; + } + + componentDidUpdate({ options: prevOpts }: PanelProps) { + const { endTime, range, resolution, type } = this.props.options; + if ( + prevOpts.endTime !== endTime || + prevOpts.range !== range || + prevOpts.resolution !== resolution || + prevOpts.type !== type + ) { + this.executeQuery(); + } + } + + componentDidMount() { + this.executeQuery(); + } + + executeQuery = (): void => { + const { exprInputValue: expr } = this.state; + const queryStart = Date.now(); + this.props.onExecuteQuery(expr); + if (this.props.options.expr !== expr) { + this.setOptions({ expr }); + } + if (expr === '') { + return; + } + + if (this.abortInFlightFetch) { + this.abortInFlightFetch(); + this.abortInFlightFetch = null; + } + + const abortController = new AbortController(); + this.abortInFlightFetch = () => abortController.abort(); + this.setState({ loading: true }); + + const endTime = this.getEndTime().valueOf() / 1000; // TODO: shouldn't valueof only work when it's a moment? + const startTime = endTime - this.props.options.range; + const resolution = this.props.options.resolution || Math.max(Math.floor(this.props.options.range / 250), 1); + const params: URLSearchParams = new URLSearchParams({ + query: expr, + dedup: this.props.useDeduplication.toString(), + partial_response: this.props.useDeduplication.toString(), + }); + + let path: string; + switch (this.props.options.type) { + case 'graph': + path = '/api/v1/query_range'; + params.append('start', startTime.toString()); + params.append('end', endTime.toString()); + params.append('step', resolution.toString()); + // TODO path prefix here and elsewhere. + break; + case 'table': + path = '/api/v1/query'; + params.append('time', endTime.toString()); + break; + default: + throw new Error('Invalid panel type "' + this.props.options.type + '"'); + } + + fetch(`${this.props.pathPrefix}${path}?${params}`, { + cache: 'no-store', + credentials: 'same-origin', + signal: abortController.signal, + }) + .then(resp => resp.json()) + .then(json => { + if (json.status !== 'success') { + throw new Error(json.error || 'invalid response JSON'); + } + + let resultSeries = 0; + if (json.data) { + const { resultType, result } = json.data; + if (resultType === 'scalar') { + resultSeries = 1; + } else if (result && result.length > 0) { + resultSeries = result.length; + } + } + + this.setState({ + error: null, + data: json.data, + lastQueryParams: { + startTime, + endTime, + resolution, + }, + stats: { + loadTime: Date.now() - queryStart, + resolution, + resultSeries, + }, + loading: false, + }); + this.abortInFlightFetch = null; + }) + .catch(error => { + if (error.name === 'AbortError') { + // Aborts are expected, don't show an error for them. + return; + } + this.setState({ + error: 'Error executing query: ' + error.message, + loading: false, + }); + }); + }; + + setOptions(opts: object): void { + const newOpts = { ...this.props.options, ...opts }; + this.props.onOptionsChanged(newOpts); + } + + handleExpressionChange = (expr: string): void => { + this.setState({ exprInputValue: expr }); + }; + + handleChangeRange = (range: number): void => { + this.setOptions({ range: range }); + }; + + getEndTime = (): number | moment.Moment => { + if (this.props.options.endTime === null) { + return moment(); + } + return this.props.options.endTime; + }; + + handleChangeEndTime = (endTime: number | null) => { + this.setOptions({ endTime: endTime }); + }; + + handleChangeResolution = (resolution: number | null) => { + this.setOptions({ resolution: resolution }); + }; + + handleChangeType = (type: PanelType) => { + this.setState({ data: null }); + this.setOptions({ type: type }); + }; + + handleChangeStacking = (stacked: boolean) => { + this.setOptions({ stacked: stacked }); + }; + + render() { + const { pastQueries, metricNames, options } = this.props; + return ( +
    + +
    + + + + + + + + + + + + + + + + {g.rules.map((r, i) => { + return ( + + {r.alerts ? ( + + ) : ( + + )} + + + + + + ); + })} + +
    + +

    {g.name}

    +
    +
    +

    {formatRelative(g.lastEvaluation, now())} ago

    +
    +

    {humanizeDuration(parseFloat(g.evaluationTime) * 1000)}

    +
    RuleStateErrorLast EvaluationEvaluation Time
    + + +
    + labels: + {Object.entries(r.labels).map(([key, value]) => ( +
    + {key}: {value} +
    + ))} +
    +
    + annotations: + {Object.entries(r.annotations).map(([key, value]) => ( +
    + {key}: {value} +
    + ))} +
    +
    + + + + {r.health.toUpperCase()} + {r.lastError ? {r.lastError} : null}{formatRelative(r.lastEvaluation, now())} ago{humanizeDuration(parseFloat(r.evaluationTime) * 1000)}
    + ); + })} + + ); + } + + return null; +}; diff --git a/pkg/ui/react-app/src/pages/serviceDiscovery/LabelsTable.tsx b/pkg/ui/react-app/src/pages/serviceDiscovery/LabelsTable.tsx new file mode 100644 index 00000000000..b621df1005d --- /dev/null +++ b/pkg/ui/react-app/src/pages/serviceDiscovery/LabelsTable.tsx @@ -0,0 +1,65 @@ +import React, { FC, useState } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Badge, Table } from 'reactstrap'; +import { TargetLabels } from './Services'; +import { ToggleMoreLess } from '../../components/ToggleMoreLess'; + +interface LabelProps { + value: TargetLabels[]; + name: string; +} + +const formatLabels = (labels: Record | string) => { + return Object.entries(labels).map(([key, value]) => { + return ( +
    + + {`${key}="${value}"`} + +
    + ); + }); +}; + +export const LabelsTable: FC = ({ value, name }) => { + const [showMore, setShowMore] = useState(false); + + return ( + <> +
    + { + setShowMore(!showMore); + }} + showMore={showMore} + > + {name} + +
    + {showMore ? ( + + + + + + + + + {value.map((_, i) => { + return ( + + + {value[i].isDropped ? ( + + ) : ( + + )} + + ); + })} + +
    Discovered LabelsTarget Labels
    {formatLabels(value[i].discoveredLabels)}Dropped{formatLabels(value[i].labels)}
    + ) : null} + + ); +}; diff --git a/pkg/ui/react-app/src/pages/serviceDiscovery/Services.tsx b/pkg/ui/react-app/src/pages/serviceDiscovery/Services.tsx new file mode 100644 index 00000000000..87aabb17ad4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/serviceDiscovery/Services.tsx @@ -0,0 +1,120 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { useFetch } from '../../hooks/useFetch'; +import { LabelsTable } from './LabelsTable'; +import { Target, Labels, DroppedTarget } from '../targets/target'; + +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import { mapObjEntries } from '../../utils'; + +interface ServiceMap { + activeTargets: Target[]; + droppedTargets: DroppedTarget[]; +} + +export interface TargetLabels { + discoveredLabels: Labels; + labels: Labels; + isDropped: boolean; +} + +export const processSummary = (activeTargets: Target[], droppedTargets: DroppedTarget[]) => { + const targets: Record = {}; + + // Get targets of each type along with the total and active end points + for (const target of activeTargets) { + const { scrapePool: name } = target; + if (!targets[name]) { + targets[name] = { + total: 0, + active: 0, + }; + } + targets[name].total++; + targets[name].active++; + } + for (const target of droppedTargets) { + const { job: name } = target.discoveredLabels; + if (!targets[name]) { + targets[name] = { + total: 0, + active: 0, + }; + } + targets[name].total++; + } + + return targets; +}; + +export const processTargets = (activeTargets: Target[], droppedTargets: DroppedTarget[]) => { + const labels: Record = {}; + + for (const target of activeTargets) { + const name = target.scrapePool; + if (!labels[name]) { + labels[name] = []; + } + labels[name].push({ + discoveredLabels: target.discoveredLabels, + labels: target.labels, + isDropped: false, + }); + } + + for (const target of droppedTargets) { + const { job: name } = target.discoveredLabels; + if (!labels[name]) { + labels[name] = []; + } + labels[name].push({ + discoveredLabels: target.discoveredLabels, + isDropped: true, + labels: {}, + }); + } + + return labels; +}; + +export const ServiceDiscoveryContent: FC = ({ activeTargets, droppedTargets }) => { + const targets = processSummary(activeTargets, droppedTargets); + const labels = processTargets(activeTargets, droppedTargets); + + return ( + <> +

    Service Discovery

    + +
    + {mapObjEntries(labels, ([k, v]) => { + return ; + })} + + ); +}; +ServiceDiscoveryContent.displayName = 'ServiceDiscoveryContent'; + +const ServicesWithStatusIndicator = withStatusIndicator(ServiceDiscoveryContent); + +const ServiceDiscovery: FC = ({ pathPrefix }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/targets`); + return ( + + ); +}; + +export default ServiceDiscovery; diff --git a/pkg/ui/react-app/src/pages/status/Status.test.tsx b/pkg/ui/react-app/src/pages/status/Status.test.tsx new file mode 100644 index 00000000000..72c442af284 --- /dev/null +++ b/pkg/ui/react-app/src/pages/status/Status.test.tsx @@ -0,0 +1,49 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import toJson from 'enzyme-to-json'; +import { StatusContent } from './Status'; + +describe('Status', () => { + describe('Snapshot testing', () => { + const response: any = [ + { + startTime: '2019-10-30T22:03:23.247913868+02:00', + CWD: '/home/boyskila/Desktop/prometheus', + reloadConfigSuccess: true, + lastConfigTime: '2019-10-30T22:03:23+02:00', + chunkCount: 1383, + timeSeriesCount: 461, + corruptionCount: 0, + goroutineCount: 37, + GOMAXPROCS: 4, + GOGC: '', + GODEBUG: '', + storageRetention: '15d', + }, + { + version: '', + revision: '', + branch: '', + buildUser: '', + buildDate: '', + goVersion: 'go1.13.3', + }, + { + activeAlertmanagers: [ + { url: 'https://1.2.3.4:9093/api/v1/alerts' }, + { url: 'https://1.2.3.5:9093/api/v1/alerts' }, + { url: 'https://1.2.3.6:9093/api/v1/alerts' }, + { url: 'https://1.2.3.7:9093/api/v1/alerts' }, + { url: 'https://1.2.3.8:9093/api/v1/alerts' }, + { url: 'https://1.2.3.9:9093/api/v1/alerts' }, + ], + droppedAlertmanagers: [], + }, + ]; + it('should match table snapshot', () => { + const wrapper = shallow(); + expect(toJson(wrapper)).toMatchSnapshot(); + jest.restoreAllMocks(); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/status/Status.tsx b/pkg/ui/react-app/src/pages/status/Status.tsx new file mode 100644 index 00000000000..b2c06cd4dc4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/status/Status.tsx @@ -0,0 +1,112 @@ +import React, { Fragment, FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Table } from 'reactstrap'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; +import { useFetch } from '../../hooks/useFetch'; +import PathPrefixProps from '../../types/PathPrefixProps'; + +interface StatusPageProps { + data: Record; + title: string; +} + +export const statusConfig: Record< + string, + { title?: string; customizeValue?: (v: any, key: string) => any; customRow?: boolean; skip?: boolean } +> = { + startTime: { title: 'Start time', customizeValue: (v: string) => new Date(v).toUTCString() }, + CWD: { title: 'Working directory' }, + reloadConfigSuccess: { + title: 'Configuration reload', + customizeValue: (v: boolean) => (v ? 'Successful' : 'Unsuccessful'), + }, + lastConfigTime: { title: 'Last successful configuration reload' }, + chunkCount: { title: 'Head chunks' }, + timeSeriesCount: { title: 'Head time series' }, + corruptionCount: { title: 'WAL corruptions' }, + goroutineCount: { title: 'Goroutines' }, + storageRetention: { title: 'Storage retention' }, + activeAlertmanagers: { + customRow: true, + customizeValue: (alertMgrs: { url: string }[], key) => { + return ( + +
    Endpoint
    + {origin} + {pathname} +
    + + {Object.entries(data).map(([k, v]) => { + const { title = k, customizeValue = (val: any) => val, customRow, skip } = statusConfig[k] || {}; + if (skip) { + return null; + } + if (customRow) { + return customizeValue(v, k); + } + return ( + + + + + ); + })} + +
    + {title} + {customizeValue(v, title)}
    + + ); +}; +const StatusWithStatusIndicator = withStatusIndicator(StatusContent); + +StatusContent.displayName = 'Status'; + +const Status: FC = ({ pathPrefix = '' }) => { + const path = `${pathPrefix}/api/v1`; + + return ( + <> + {[ + { fetchResult: useFetch>(`${path}/status/runtimeinfo`), title: 'Runtime Information' }, + { fetchResult: useFetch>(`${path}/status/buildinfo`), title: 'Build Information' }, + { fetchResult: useFetch>(`${path}/alertmanagers`), title: 'Alertmanagers' }, + ].map(({ fetchResult, title }) => { + const { response, isLoading, error } = fetchResult; + return ( + + ); + })} + + ); +}; + +export default Status; diff --git a/pkg/ui/react-app/src/pages/status/__snapshots__/Status.test.tsx.snap b/pkg/ui/react-app/src/pages/status/__snapshots__/Status.test.tsx.snap new file mode 100644 index 00000000000..fb6eef17d80 --- /dev/null +++ b/pkg/ui/react-app/src/pages/status/__snapshots__/Status.test.tsx.snap @@ -0,0 +1,77 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`Status Snapshot testing should match table snapshot 1`] = ` + +

    + Foo +

    + + + + + + + + + + + + + + + +
    + 0 + + +
    + 1 + + +
    + 2 + + +
    +
    +`; diff --git a/pkg/ui/react-app/src/pages/targets/EndpointLink.test.tsx b/pkg/ui/react-app/src/pages/targets/EndpointLink.test.tsx new file mode 100644 index 00000000000..d89326f73aa --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/EndpointLink.test.tsx @@ -0,0 +1,38 @@ +import React from 'react'; +import { shallow } from 'enzyme'; +import { Badge, Alert } from 'reactstrap'; +import EndpointLink from './EndpointLink'; + +describe('EndpointLink', () => { + it('renders a simple anchor if the endpoint has no query params', () => { + const endpoint = 'http://100.104.208.71:15090/stats/prometheus'; + const globalURL = 'http://100.104.208.71:15090/stats/prometheus'; + const endpointLink = shallow(); + const anchor = endpointLink.find('a'); + expect(anchor.prop('href')).toEqual(globalURL); + expect(anchor.children().text()).toEqual(endpoint); + expect(endpointLink.find('br')).toHaveLength(0); + }); + + it('renders an anchor targeting endpoint but with query param labels if the endpoint has query params', () => { + const endpoint = 'http://100.99.128.71:9115/probe?module=http_2xx&target=http://some-service'; + const globalURL = 'http://100.99.128.71:9115/probe?module=http_2xx&target=http://some-service'; + const endpointLink = shallow(); + const anchor = endpointLink.find('a'); + const badges = endpointLink.find(Badge); + expect(anchor.prop('href')).toEqual(globalURL); + expect(anchor.children().text()).toEqual('http://100.99.128.71:9115/probe'); + expect(endpointLink.find('br')).toHaveLength(1); + expect(badges).toHaveLength(2); + const moduleLabel = badges.filterWhere(badge => badge.hasClass('module')); + expect(moduleLabel.children().text()).toEqual('module="http_2xx"'); + const targetLabel = badges.filterWhere(badge => badge.hasClass('target')); + expect(targetLabel.children().text()).toEqual('target="http://some-service"'); + }); + + it('renders an alert if url is invalid', () => { + const endpointLink = shallow(); + const err = endpointLink.find(Alert); + expect(err.render().text()).toEqual('Error: Invalid URL'); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/EndpointLink.tsx b/pkg/ui/react-app/src/pages/targets/EndpointLink.tsx new file mode 100644 index 00000000000..3f524658be4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/EndpointLink.tsx @@ -0,0 +1,39 @@ +import React, { FC } from 'react'; +import { Badge, Alert } from 'reactstrap'; + +export interface EndpointLinkProps { + endpoint: string; + globalUrl: string; +} + +const EndpointLink: FC = ({ endpoint, globalUrl }) => { + let url: URL; + try { + url = new URL(endpoint); + } catch (e) { + return ( + + Error: {e.message} + + ); + } + + const { host, pathname, protocol, searchParams }: URL = url; + const params = Array.from(searchParams.entries()); + + return ( + <> + {`${protocol}//${host}${pathname}`} + {params.length > 0 ?
    : null} + {params.map(([labelName, labelValue]: [string, string]) => { + return ( + + {`${labelName}="${labelValue}"`} + + ); + })} + + ); +}; + +export default EndpointLink; diff --git a/pkg/ui/react-app/src/pages/targets/Filter.module.css b/pkg/ui/react-app/src/pages/targets/Filter.module.css new file mode 100644 index 00000000000..6cc9adbe23e --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/Filter.module.css @@ -0,0 +1,4 @@ +.btn { + margin-top: 0.6em; + margin-bottom: 15px; +} diff --git a/pkg/ui/react-app/src/pages/targets/Filter.test.tsx b/pkg/ui/react-app/src/pages/targets/Filter.test.tsx new file mode 100644 index 00000000000..79d444ff3e0 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/Filter.test.tsx @@ -0,0 +1,45 @@ +import React, { Component } from 'react'; +import { shallow, ShallowWrapper } from 'enzyme'; +import { Button, ButtonGroup } from 'reactstrap'; +import Filter, { FilterData, FilterProps } from './Filter'; +import sinon, { SinonSpy } from 'sinon'; + +describe('Filter', () => { + const initialState: FilterData = { showHealthy: true, showUnhealthy: true }; + let setFilter: SinonSpy; + let filterWrapper: ShallowWrapper, Component<{}, {}, Component>>; + beforeEach(() => { + setFilter = sinon.spy(); + filterWrapper = shallow(); + }); + + it('renders a button group', () => { + expect(filterWrapper.find(ButtonGroup)).toHaveLength(1); + }); + + it('renders an all filter button that is active by default', () => { + const btn = filterWrapper.find(Button).filterWhere((btn): boolean => btn.hasClass('all')); + expect(btn.prop('active')).toBe(true); + expect(btn.prop('color')).toBe('primary'); + }); + + it('renders an unhealthy filter button that is inactive by default', () => { + const btn = filterWrapper.find(Button).filterWhere((btn): boolean => btn.hasClass('unhealthy')); + expect(btn.prop('active')).toBe(false); + expect(btn.prop('color')).toBe('primary'); + }); + + it('renders an all filter button which shows all targets', () => { + const btn = filterWrapper.find(Button).filterWhere((btn): boolean => btn.hasClass('all')); + btn.simulate('click'); + expect(setFilter.calledOnce).toBe(true); + expect(setFilter.getCall(0).args[0]).toEqual({ showHealthy: true, showUnhealthy: true }); + }); + + it('renders an unhealthy filter button which filters targets', () => { + const btn = filterWrapper.find(Button).filterWhere((btn): boolean => btn.hasClass('unhealthy')); + btn.simulate('click'); + expect(setFilter.calledOnce).toBe(true); + expect(setFilter.getCall(0).args[0]).toEqual({ showHealthy: false, showUnhealthy: true }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/Filter.tsx b/pkg/ui/react-app/src/pages/targets/Filter.tsx new file mode 100644 index 00000000000..900a6d5b0d4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/Filter.tsx @@ -0,0 +1,39 @@ +import React, { Dispatch, FC, SetStateAction } from 'react'; +import { Button, ButtonGroup } from 'reactstrap'; +import styles from './Filter.module.css'; + +export interface FilterData { + showHealthy: boolean; + showUnhealthy: boolean; +} + +export interface FilterProps { + filter: FilterData; + setFilter: Dispatch>; +} + +const Filter: FC = ({ filter, setFilter }) => { + const { showHealthy } = filter; + const btnProps = { + all: { + active: showHealthy, + className: `all ${styles.btn}`, + color: 'primary', + onClick: (): void => setFilter({ ...filter, showHealthy: true }), + }, + unhealthy: { + active: !showHealthy, + className: `unhealthy ${styles.btn}`, + color: 'primary', + onClick: (): void => setFilter({ ...filter, showHealthy: false }), + }, + }; + return ( + + + + + ); +}; + +export default Filter; diff --git a/pkg/ui/react-app/src/pages/targets/ScrapePoolList.test.tsx b/pkg/ui/react-app/src/pages/targets/ScrapePoolList.test.tsx new file mode 100644 index 00000000000..be57f4c8a13 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/ScrapePoolList.test.tsx @@ -0,0 +1,83 @@ +import * as React from 'react'; +import { mount, ReactWrapper } from 'enzyme'; +import { act } from 'react-dom/test-utils'; +import { Alert } from 'reactstrap'; +import { sampleApiResponse } from './__testdata__/testdata'; +import ScrapePoolList from './ScrapePoolList'; +import ScrapePoolPanel from './ScrapePoolPanel'; +import { Target } from './target'; +import { FetchMock } from 'jest-fetch-mock/types'; + +describe('ScrapePoolList', () => { + const defaultProps = { + filter: { showHealthy: true, showUnhealthy: true }, + pathPrefix: '..', + }; + + beforeEach(() => { + fetchMock.resetMocks(); + }); + + describe('when data is returned', () => { + let scrapePoolList: ReactWrapper; + let mock: FetchMock; + beforeEach(() => { + //Tooltip requires DOM elements to exist. They do not in enzyme rendering so we must manually create them. + const scrapePools: { [key: string]: number } = { blackbox: 3, node_exporter: 1, 'prometheus/test': 1 }; + Object.keys(scrapePools).forEach((pool: string): void => { + Array.from(Array(scrapePools[pool]).keys()).forEach((idx: number): void => { + const div = document.createElement('div'); + div.id = `series-labels-${pool}-${idx}`; + document.body.appendChild(div); + }); + }); + mock = fetchMock.mockResponse(JSON.stringify(sampleApiResponse)); + }); + + it('renders a table', async () => { + await act(async () => { + scrapePoolList = mount(); + }); + scrapePoolList.update(); + expect(mock).toHaveBeenCalledWith('../api/v1/targets?state=active', { cache: 'no-store', credentials: 'same-origin' }); + const panels = scrapePoolList.find(ScrapePoolPanel); + expect(panels).toHaveLength(3); + const activeTargets: Target[] = sampleApiResponse.data.activeTargets as Target[]; + activeTargets.forEach(({ scrapePool }: Target) => { + const panel = scrapePoolList.find(ScrapePoolPanel).filterWhere(panel => panel.prop('scrapePool') === scrapePool); + expect(panel).toHaveLength(1); + }); + }); + + it('filters by health', async () => { + const props = { + ...defaultProps, + filter: { showHealthy: false, showUnhealthy: true }, + }; + await act(async () => { + scrapePoolList = mount(); + }); + scrapePoolList.update(); + expect(mock).toHaveBeenCalledWith('../api/v1/targets?state=active', { cache: 'no-store', credentials: 'same-origin' }); + const panels = scrapePoolList.find(ScrapePoolPanel); + expect(panels).toHaveLength(0); + }); + }); + + describe('when an error is returned', () => { + it('displays an alert', async () => { + const mock = fetchMock.mockReject(new Error('Error fetching targets')); + + let scrapePoolList: any; + await act(async () => { + scrapePoolList = mount(); + }); + scrapePoolList.update(); + + expect(mock).toHaveBeenCalledWith('../api/v1/targets?state=active', { cache: 'no-store', credentials: 'same-origin' }); + const alert = scrapePoolList.find(Alert); + expect(alert.prop('color')).toBe('danger'); + expect(alert.text()).toContain('Error fetching targets'); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/ScrapePoolList.tsx b/pkg/ui/react-app/src/pages/targets/ScrapePoolList.tsx new file mode 100644 index 00000000000..7be82f1fcee --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/ScrapePoolList.tsx @@ -0,0 +1,48 @@ +import React, { FC } from 'react'; +import { FilterData } from './Filter'; +import { useFetch } from '../../hooks/useFetch'; +import { groupTargets, Target } from './target'; +import ScrapePoolPanel from './ScrapePoolPanel'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; + +interface ScrapePoolListProps { + filter: FilterData; + activeTargets: Target[]; +} + +export const ScrapePoolContent: FC = ({ filter, activeTargets }) => { + const targetGroups = groupTargets(activeTargets); + const { showHealthy, showUnhealthy } = filter; + return ( + <> + {Object.keys(targetGroups).reduce((panels, scrapePool) => { + const targetGroup = targetGroups[scrapePool]; + const isHealthy = targetGroup.upCount === targetGroup.targets.length; + return (isHealthy && showHealthy) || (!isHealthy && showUnhealthy) + ? [...panels, ] + : panels; + }, [])} + + ); +}; +ScrapePoolContent.displayName = 'ScrapePoolContent'; + +const ScrapePoolListWithStatusIndicator = withStatusIndicator(ScrapePoolContent); + +const ScrapePoolList: FC<{ filter: FilterData } & PathPrefixProps> = ({ pathPrefix, filter }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/targets?state=active`); + const { status: responseStatus } = response; + const badResponse = responseStatus !== 'success' && responseStatus !== 'start fetching'; + return ( + + ); +}; + +export default ScrapePoolList; diff --git a/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.module.css b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.module.css new file mode 100644 index 00000000000..a5b5f9ac5be --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.module.css @@ -0,0 +1,43 @@ +.container { + margin-top: -12px; +} + +.title { + font-size: 20px; + font-weight: bold; + cursor: pointer; +} + +.normal { + composes: title; +} + +.danger { + composes: title; + color: rgb(242, 65, 65); +} + +.table { + width: 100%; +} + +.cell { + height: auto; + word-wrap: break-word; + word-break: break-all; +} + +.endpoint, .labels { + composes: cell; + width: 25%; +} + +.state, .last-scrape { + composes: cell; + width: 10%; +} + +.errors { + composes: cell; + width: 30%; +} diff --git a/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.test.tsx b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.test.tsx new file mode 100644 index 00000000000..c14a531a79b --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.test.tsx @@ -0,0 +1,129 @@ +import React from 'react'; +import { mount, shallow } from 'enzyme'; +import { targetGroups } from './__testdata__/testdata'; +import ScrapePoolPanel, { columns } from './ScrapePoolPanel'; +import { Button, Collapse, Table, Badge } from 'reactstrap'; +import { Target, getColor } from './target'; +import EndpointLink from './EndpointLink'; +import TargetLabels from './TargetLabels'; + +describe('ScrapePoolPanel', () => { + const defaultProps = { + scrapePool: 'blackbox', + targetGroup: targetGroups.blackbox, + }; + const scrapePoolPanel = shallow(); + + it('renders a container', () => { + const div = scrapePoolPanel.find('div').filterWhere(elem => elem.hasClass('container')); + expect(div).toHaveLength(1); + }); + + describe('Header', () => { + it('renders an anchor with up count and danger color if upCount < targetsCount', () => { + const anchor = scrapePoolPanel.find('a'); + expect(anchor).toHaveLength(1); + expect(anchor.prop('id')).toEqual('pool-blackbox'); + expect(anchor.prop('href')).toEqual('#pool-blackbox'); + expect(anchor.text()).toEqual('blackbox (2/3 up)'); + expect(anchor.prop('className')).toEqual('danger'); + }); + + it('renders an anchor with up count and normal color if upCount == targetsCount', () => { + const props = { + scrapePool: 'prometheus', + targetGroup: targetGroups.prometheus, + }; + const scrapePoolPanel = shallow(); + const anchor = scrapePoolPanel.find('a'); + expect(anchor).toHaveLength(1); + expect(anchor.prop('id')).toEqual('pool-prometheus'); + expect(anchor.prop('href')).toEqual('#pool-prometheus'); + expect(anchor.text()).toEqual('prometheus (1/1 up)'); + expect(anchor.prop('className')).toEqual('normal'); + }); + + it('renders a show more btn if collapsed', () => { + const props = { + scrapePool: 'prometheus', + targetGroup: targetGroups.prometheus, + }; + const div = document.createElement('div'); + div.id = `series-labels-prometheus-0`; + document.body.appendChild(div); + const scrapePoolPanel = mount(); + + const btn = scrapePoolPanel.find(Button); + btn.simulate('click'); + const collapse = scrapePoolPanel.find(Collapse); + expect(collapse.prop('isOpen')).toBe(false); + }); + }); + + it('renders a Collapse component', () => { + const collapse = scrapePoolPanel.find(Collapse); + expect(collapse.prop('isOpen')).toBe(true); + }); + + describe('Table', () => { + it('renders a table', () => { + const table = scrapePoolPanel.find(Table); + const headers = table.find('th'); + expect(table).toHaveLength(1); + expect(headers).toHaveLength(6); + columns.forEach(col => { + expect(headers.contains(col)); + }); + }); + + describe('for each target', () => { + const table = scrapePoolPanel.find(Table); + defaultProps.targetGroup.targets.forEach( + ({ discoveredLabels, labels, scrapeUrl, lastError, health }: Target, idx: number) => { + const row = table.find('tr').at(idx + 1); + + it('renders an EndpointLink with the scrapeUrl', () => { + const link = row.find(EndpointLink); + expect(link).toHaveLength(1); + expect(link.prop('endpoint')).toEqual(scrapeUrl); + }); + + it('renders a badge for health', () => { + const td = row.find('td').filterWhere(elem => Boolean(elem.hasClass('state'))); + const badge = td.find(Badge); + expect(badge).toHaveLength(1); + expect(badge.prop('color')).toEqual(getColor(health)); + expect(badge.children().text()).toEqual(health.toUpperCase()); + }); + + it('renders series labels', () => { + const targetLabels = row.find(TargetLabels); + expect(targetLabels).toHaveLength(1); + expect(targetLabels.prop('discoveredLabels')).toEqual(discoveredLabels); + expect(targetLabels.prop('labels')).toEqual(labels); + }); + + it('renders last scrape time', () => { + const lastScrapeCell = row.find('td').filterWhere(elem => Boolean(elem.hasClass('last-scrape'))); + expect(lastScrapeCell).toHaveLength(1); + }); + + it('renders last scrape duration', () => { + const lastScrapeCell = row.find('td').filterWhere(elem => Boolean(elem.hasClass('scrape-duration'))); + expect(lastScrapeCell).toHaveLength(1); + }); + + it('renders a badge for Errors', () => { + const td = row.find('td').filterWhere(elem => Boolean(elem.hasClass('errors'))); + const badge = td.find(Badge); + expect(badge).toHaveLength(lastError ? 1 : 0); + if (lastError) { + expect(badge.prop('color')).toEqual('danger'); + expect(badge.children().text()).toEqual(lastError); + } + }); + } + ); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.tsx b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.tsx new file mode 100644 index 00000000000..390fe3da9c3 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/ScrapePoolPanel.tsx @@ -0,0 +1,84 @@ +import React, { FC } from 'react'; +import { ScrapePool, getColor } from './target'; +import { Collapse, Table, Badge } from 'reactstrap'; +import styles from './ScrapePoolPanel.module.css'; +import { Target } from './target'; +import EndpointLink from './EndpointLink'; +import TargetLabels from './TargetLabels'; +import { now } from 'moment'; +import { useLocalStorage } from '../../hooks/useLocalStorage'; +import { ToggleMoreLess } from '../../components/ToggleMoreLess'; +import { formatRelative, humanizeDuration } from '../../utils'; + +interface PanelProps { + scrapePool: string; + targetGroup: ScrapePool; +} + +export const columns = ['Endpoint', 'State', 'Labels', 'Last Scrape', 'Scrape Duration', 'Error']; + +const ScrapePoolPanel: FC = ({ scrapePool, targetGroup }) => { + const [{ expanded }, setOptions] = useLocalStorage(`targets-${scrapePool}-expanded`, { expanded: true }); + const modifier = targetGroup.upCount < targetGroup.targets.length ? 'danger' : 'normal'; + const id = `pool-${scrapePool}`; + const anchorProps = { + href: `#${id}`, + id, + }; + + return ( +
    + setOptions({ expanded: !expanded })} showMore={expanded}> + + {`${scrapePool} (${targetGroup.upCount}/${targetGroup.targets.length} up)`} + + + + + + + {columns.map(column => ( + + ))} + + + + {targetGroup.targets.map((target: Target, idx: number) => { + const { + discoveredLabels, + labels, + scrapePool, + scrapeUrl, + globalUrl, + lastError, + lastScrape, + lastScrapeDuration, + health, + } = target; + const color = getColor(health); + + return ( + + + + + + + + + ); + })} + +
    {column}
    + + + {health.toUpperCase()} + + + {formatRelative(lastScrape, now())}{humanizeDuration(lastScrapeDuration * 1000)}{lastError ? {lastError} : null}
    +
    +
    + ); +}; + +export default ScrapePoolPanel; diff --git a/pkg/ui/react-app/src/pages/targets/TargetLabels.module.css b/pkg/ui/react-app/src/pages/targets/TargetLabels.module.css new file mode 100644 index 00000000000..9c3768818e4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/TargetLabels.module.css @@ -0,0 +1,3 @@ +.discovered { + white-space: nowrap; +} diff --git a/pkg/ui/react-app/src/pages/targets/TargetLabels.test.tsx b/pkg/ui/react-app/src/pages/targets/TargetLabels.test.tsx new file mode 100644 index 00000000000..e71d311b929 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/TargetLabels.test.tsx @@ -0,0 +1,50 @@ +import * as React from 'react'; +import { shallow } from 'enzyme'; +import TargetLabels from './TargetLabels'; +import { Tooltip, Badge } from 'reactstrap'; +import toJson from 'enzyme-to-json'; + +describe('targetLabels', () => { + const defaultProps = { + discoveredLabels: { + __address__: 'localhost:9100', + __metrics_path__: '/metrics', + __scheme__: 'http', + job: 'node_exporter', + }, + labels: { + instance: 'localhost:9100', + job: 'node_exporter', + foo: 'bar', + }, + idx: 1, + scrapePool: 'cortex/node-exporter_group/0', + }; + const targetLabels = shallow(); + + it('renders a div of series labels', () => { + const div = targetLabels.find('div').filterWhere(elem => elem.hasClass('series-labels-container')); + expect(div).toHaveLength(1); + expect(div.prop('id')).toEqual('series-labels-cortex/node-exporter_group/0-1'); + }); + + it('wraps each label in a label badge', () => { + const l: { [key: string]: string } = defaultProps.labels; + Object.keys(l).forEach((labelName: string): void => { + const badge = targetLabels.find(Badge).filterWhere(badge => badge.hasClass(labelName)); + expect(badge.children().text()).toEqual(`${labelName}="${l[labelName]}"`); + }); + expect(targetLabels.find(Badge)).toHaveLength(3); + }); + + it('renders a tooltip for discovered labels', () => { + const tooltip = targetLabels.find(Tooltip); + expect(tooltip).toHaveLength(1); + expect(tooltip.prop('isOpen')).toBe(false); + expect(tooltip.prop('target')).toEqual('series-labels-cortex\\/node-exporter_group\\/0-1'); + }); + + it('renders discovered labels', () => { + expect(toJson(targetLabels)).toMatchSnapshot(); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/TargetLabels.tsx b/pkg/ui/react-app/src/pages/targets/TargetLabels.tsx new file mode 100644 index 00000000000..45376a18252 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/TargetLabels.tsx @@ -0,0 +1,49 @@ +import React, { FC, Fragment, useState } from 'react'; +import { Badge, Tooltip } from 'reactstrap'; +import 'css.escape'; +import styles from './TargetLabels.module.css'; + +interface Labels { + [key: string]: string; +} + +export interface TargetLabelsProps { + discoveredLabels: Labels; + labels: Labels; + idx: number; + scrapePool: string; +} + +const formatLabels = (labels: Labels): string[] => Object.keys(labels).map(key => `${key}="${labels[key]}"`); + +const TargetLabels: FC = ({ discoveredLabels, labels, idx, scrapePool }) => { + const [tooltipOpen, setTooltipOpen] = useState(false); + + const toggle = (): void => setTooltipOpen(!tooltipOpen); + const id = `series-labels-${scrapePool}-${idx}`; + + return ( + <> +
    + {Object.keys(labels).map(labelName => { + return ( + + {`${labelName}="${labels[labelName]}"`} + + ); + })} +
    + + Before relabeling: + {formatLabels(discoveredLabels).map((s: string, idx: number) => ( + +
    + {s} +
    + ))} +
    + + ); +}; + +export default TargetLabels; diff --git a/pkg/ui/react-app/src/pages/targets/Targets.test.tsx b/pkg/ui/react-app/src/pages/targets/Targets.test.tsx new file mode 100644 index 00000000000..866c35b0950 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/Targets.test.tsx @@ -0,0 +1,33 @@ +import React from 'react'; +import { shallow } from 'enzyme'; +import Targets from './Targets'; +import Filter from './Filter'; +import ScrapePoolList from './ScrapePoolList'; + +describe('Targets', () => { + const defaultProps = { + pathPrefix: '..', + }; + const targets = shallow(); + describe('Header', () => { + const h2 = targets.find('h2'); + it('renders a header', () => { + expect(h2.text()).toEqual('Targets'); + }); + it('renders exactly one header', () => { + const h2 = targets.find('h2'); + expect(h2).toHaveLength(1); + }); + }); + it('renders a filter', () => { + const filter = targets.find(Filter); + expect(filter).toHaveLength(1); + expect(filter.prop('filter')).toEqual({ showHealthy: true, showUnhealthy: true }); + }); + it('renders a scrape pool list', () => { + const scrapePoolList = targets.find(ScrapePoolList); + expect(scrapePoolList).toHaveLength(1); + expect(scrapePoolList.prop('filter')).toEqual({ showHealthy: true, showUnhealthy: true }); + expect(scrapePoolList.prop('pathPrefix')).toEqual(defaultProps.pathPrefix); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/Targets.tsx b/pkg/ui/react-app/src/pages/targets/Targets.tsx new file mode 100644 index 00000000000..5f4737196e4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/Targets.tsx @@ -0,0 +1,22 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import Filter from './Filter'; +import ScrapePoolList from './ScrapePoolList'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { useLocalStorage } from '../../hooks/useLocalStorage'; + +const Targets: FC = ({ pathPrefix }) => { + const [filter, setFilter] = useLocalStorage('targets-page-filter', { showHealthy: true, showUnhealthy: true }); + const filterProps = { filter, setFilter }; + const scrapePoolListProps = { filter, pathPrefix }; + + return ( + <> +

    Targets

    + + + + ); +}; + +export default Targets; diff --git a/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap b/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap new file mode 100644 index 00000000000..1389355e2f4 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap @@ -0,0 +1,81 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`targetLabels renders discovered labels 1`] = ` + +
    + + instance="localhost:9100" + + + job="node_exporter" + + + foo="bar" + +
    + + + Before relabeling: + +
    + + __address__="localhost:9100" + +
    + + __metrics_path__="/metrics" + +
    + + __scheme__="http" + +
    + + job="node_exporter" + +
    +
    +`; diff --git a/pkg/ui/react-app/src/pages/targets/__testdata__/testdata.ts b/pkg/ui/react-app/src/pages/targets/__testdata__/testdata.ts new file mode 100644 index 00000000000..53f6a7e48d9 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/__testdata__/testdata.ts @@ -0,0 +1,220 @@ +/* eslint @typescript-eslint/camelcase: 0 */ + +import { ScrapePools } from '../target'; + +export const targetGroups: ScrapePools = Object.freeze({ + blackbox: { + upCount: 2, + targets: [ + { + discoveredLabels: { + __address__: 'http://prometheus.io', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'http://prometheus.io', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=http%3A%2F%2Fprometheus.io', + globalUrl: 'http://localhost.localdomain:9115/probe?module=http_2xx&target=http%3A%2F%2Fprometheus.io', + lastError: '', + lastScrape: '2019-11-04T11:52:14.759299-07:00', + lastScrapeDuration: 36560147, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'https://prometheus.io', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'https://prometheus.io', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=https%3A%2F%2Fprometheus.io', + globalUrl: 'http://localhost.localdomain:9115/probe?module=http_2xx&target=https%3A%2F%2Fprometheus.io', + lastError: '', + lastScrape: '2019-11-04T11:52:24.731096-07:00', + lastScrapeDuration: 49448763, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'http://example.com:8080', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'http://example.com:8080', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=http%3A%2F%2Fexample.com%3A8080', + globalUrl: 'http://localhost.localdomain:9115/probe?module=http_2xx&target=http%3A%2F%2Fexample.com%3A8080', + lastError: '', + lastScrape: '2019-11-04T11:52:13.516654-07:00', + lastScrapeDuration: 120916592, + health: 'down', + }, + ], + }, + node_exporter: { + upCount: 1, + targets: [ + { + discoveredLabels: { + __address__: 'localhost:9100', + __metrics_path__: '/metrics', + __scheme__: 'http', + job: 'node_exporter', + }, + labels: { + instance: 'localhost:9100', + job: 'node_exporter', + }, + scrapePool: 'node_exporter', + scrapeUrl: 'http://localhost:9100/metrics', + globalUrl: 'http://localhost.localdomain:9100/metrics', + lastError: '', + lastScrape: '2019-11-04T11:52:14.145703-07:00', + lastScrapeDuration: 3842307, + health: 'up', + }, + ], + }, + prometheus: { + upCount: 1, + targets: [ + { + discoveredLabels: { + __address__: 'localhost:9090', + __metrics_path__: '/metrics', + __scheme__: 'http', + job: 'prometheus', + }, + labels: { + instance: 'localhost:9090', + job: 'prometheus', + }, + scrapePool: 'prometheus', + scrapeUrl: 'http://localhost:9090/metrics', + globalUrl: 'http://localhost.localdomain:9000/metrics', + lastError: '', + lastScrape: '2019-11-04T11:52:18.479731-07:00', + lastScrapeDuration: 4050976, + health: 'up', + }, + ], + }, +}); + +export const sampleApiResponse = Object.freeze({ + status: 'success', + data: { + activeTargets: [ + { + discoveredLabels: { + __address__: 'http://prometheus.io', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'http://prometheus.io', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=http%3A%2F%2Fprometheus.io', + lastError: '', + lastScrape: '2019-11-04T11:52:14.759299-07:00', + lastScrapeDuration: 36560147, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'https://prometheus.io', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'https://prometheus.io', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=https%3A%2F%2Fprometheus.io', + lastError: '', + lastScrape: '2019-11-04T11:52:24.731096-07:00', + lastScrapeDuration: 49448763, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'http://example.com:8080', + __metrics_path__: '/probe', + __param_module: 'http_2xx', + __scheme__: 'http', + job: 'blackbox', + }, + labels: { + instance: 'http://example.com:8080', + job: 'blackbox', + }, + scrapePool: 'blackbox', + scrapeUrl: 'http://127.0.0.1:9115/probe?module=http_2xx&target=http%3A%2F%2Fexample.com%3A8080', + lastError: '', + lastScrape: '2019-11-04T11:52:13.516654-07:00', + lastScrapeDuration: 120916592, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'localhost:9100', + __metrics_path__: '/metrics', + __scheme__: 'http', + job: 'node_exporter', + }, + labels: { + instance: 'localhost:9100', + job: 'node_exporter', + }, + scrapePool: 'node_exporter', + scrapeUrl: 'http://localhost:9100/metrics', + lastError: '', + lastScrape: '2019-11-04T11:52:14.145703-07:00', + lastScrapeDuration: 3842307, + health: 'up', + }, + { + discoveredLabels: { + __address__: 'localhost:9090', + __metrics_path__: '/metrics', + __scheme__: 'http', + job: 'prometheus/test', + }, + labels: { + instance: 'localhost:9090', + job: 'prometheus/test', + }, + scrapePool: 'prometheus/test', + scrapeUrl: 'http://localhost:9090/metrics', + lastError: '', + lastScrape: '2019-11-04T11:52:18.479731-07:00', + lastScrapeDuration: 4050976, + health: 'up', + }, + ], + }, +}); diff --git a/pkg/ui/react-app/src/pages/targets/target.test.ts b/pkg/ui/react-app/src/pages/targets/target.test.ts new file mode 100644 index 00000000000..e17ab59e771 --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/target.test.ts @@ -0,0 +1,44 @@ +/* eslint @typescript-eslint/camelcase: 0 */ + +import { sampleApiResponse } from './__testdata__/testdata'; +import { groupTargets, Target, ScrapePools, getColor } from './target'; + +describe('groupTargets', () => { + const targets: Target[] = sampleApiResponse.data.activeTargets as Target[]; + const targetGroups: ScrapePools = groupTargets(targets); + + it('groups a list of targets by scrape job', () => { + ['blackbox', 'prometheus/test', 'node_exporter'].forEach(scrapePool => { + expect(Object.keys(targetGroups)).toContain(scrapePool); + }); + Object.keys(targetGroups).forEach((scrapePool: string): void => { + const ts: Target[] = targetGroups[scrapePool].targets; + ts.forEach((t: Target) => { + expect(t.scrapePool).toEqual(scrapePool); + }); + }); + }); + + it('adds upCount during aggregation', () => { + const testCases: { [key: string]: number } = { blackbox: 3, 'prometheus/test': 1, node_exporter: 1 }; + Object.keys(testCases).forEach((scrapePool: string): void => { + expect(targetGroups[scrapePool].upCount).toEqual(testCases[scrapePool]); + }); + }); +}); + +describe('getColor', () => { + const testCases: { color: string; status: string }[] = [ + { color: 'danger', status: 'down' }, + { color: 'danger', status: 'DOWN' }, + { color: 'warning', status: 'unknown' }, + { color: 'warning', status: 'foo' }, + { color: 'success', status: 'up' }, + { color: 'success', status: 'Up' }, + ]; + testCases.forEach(({ color, status }) => { + it(`returns ${color} for ${status} status`, () => { + expect(getColor(status)).toEqual(color); + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/targets/target.ts b/pkg/ui/react-app/src/pages/targets/target.ts new file mode 100644 index 00000000000..909c67e7b6f --- /dev/null +++ b/pkg/ui/react-app/src/pages/targets/target.ts @@ -0,0 +1,54 @@ +export interface Labels { + [key: string]: string; +} + +export interface Target { + discoveredLabels: Labels; + labels: Labels; + scrapePool: string; + scrapeUrl: string; + globalUrl: string; + lastError: string; + lastScrape: string; + lastScrapeDuration: number; + health: string; +} + +export interface DroppedTarget { + discoveredLabels: Labels; +} + +export interface ScrapePool { + upCount: number; + targets: Target[]; +} + +export interface ScrapePools { + [scrapePool: string]: ScrapePool; +} + +export const groupTargets = (targets: Target[]): ScrapePools => + targets.reduce((pools: ScrapePools, target: Target) => { + const { health, scrapePool } = target; + const up = health.toLowerCase() === 'up' ? 1 : 0; + if (!pools[scrapePool]) { + pools[scrapePool] = { + upCount: 0, + targets: [], + }; + } + pools[scrapePool].targets.push(target); + pools[scrapePool].upCount += up; + return pools; + }, {}); + +export const getColor = (health: string): string => { + switch (health.toLowerCase()) { + case 'up': + return 'success'; + case 'down': + return 'danger'; + default: + return 'warning'; + } +}; diff --git a/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.test.tsx b/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.test.tsx new file mode 100644 index 00000000000..828c3054df5 --- /dev/null +++ b/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.test.tsx @@ -0,0 +1,103 @@ +import * as React from 'react'; +import { mount, ReactWrapper } from 'enzyme'; +import { act } from 'react-dom/test-utils'; +import { Table } from 'reactstrap'; + +import TSDBStatus from './TSDBStatus'; +import { TSDBMap } from './TSDBStatus'; + +const fakeTSDBStatusResponse: { + status: string; + data: TSDBMap; +} = { + status: 'success', + data: { + labelValueCountByLabelName: [ + { + name: '__name__', + value: 5, + }, + ], + seriesCountByMetricName: [ + { + name: 'scrape_duration_seconds', + value: 1, + }, + { + name: 'scrape_samples_scraped', + value: 1, + }, + ], + memoryInBytesByLabelName: [ + { + name: '__name__', + value: 103, + }, + ], + seriesCountByLabelValuePair: [ + { + name: 'instance=localhost:9100', + value: 5, + }, + ], + }, +}; + +describe('TSDB Stats', () => { + beforeEach(() => { + fetchMock.resetMocks(); + }); + + describe('Table Data Validation', () => { + it('Table Test', async () => { + const tables = [ + { + data: fakeTSDBStatusResponse.data.labelValueCountByLabelName, + table_index: 0, + }, + { + data: fakeTSDBStatusResponse.data.seriesCountByMetricName, + table_index: 1, + }, + { + data: fakeTSDBStatusResponse.data.memoryInBytesByLabelName, + table_index: 2, + }, + { + data: fakeTSDBStatusResponse.data.seriesCountByLabelValuePair, + table_index: 3, + }, + ]; + + const mock = fetchMock.mockResponse(JSON.stringify(fakeTSDBStatusResponse)); + let page: any; + await act(async () => { + page = mount(); + }); + page.update(); + + expect(mock).toHaveBeenCalledWith('/path/prefix/api/v1/status/tsdb', { + cache: 'no-store', + credentials: 'same-origin', + }); + + for (let i = 0; i < tables.length; i++) { + const data = tables[i].data; + const table = page + .find(Table) + .at(tables[i].table_index) + .find('tbody'); + const rows = table.find('tr'); + for (let i = 0; i < data.length; i++) { + const firstRowColumns = rows + .at(i) + .find('td') + .map((column: ReactWrapper) => column.text()); + expect(rows.length).toBe(data.length); + expect(firstRowColumns[0]).toBe(data[i].name); + expect(firstRowColumns[1]).toBe(data[i].value.toString()); + } + } + }); + }); +}); diff --git a/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.tsx b/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.tsx new file mode 100644 index 00000000000..111787f9675 --- /dev/null +++ b/pkg/ui/react-app/src/pages/tsdbStatus/TSDBStatus.tsx @@ -0,0 +1,81 @@ +import React, { FC } from 'react'; +import { RouteComponentProps } from '@reach/router'; +import { Table } from 'reactstrap'; + +import { useFetch } from '../../hooks/useFetch'; +import PathPrefixProps from '../../types/PathPrefixProps'; +import { withStatusIndicator } from '../../components/withStatusIndicator'; + +interface Stats { + name: string; + value: number; +} + +export interface TSDBMap { + seriesCountByMetricName: Stats[]; + labelValueCountByLabelName: Stats[]; + memoryInBytesByLabelName: Stats[]; + seriesCountByLabelValuePair: Stats[]; +} + +export const TSDBStatusContent: FC = ({ + labelValueCountByLabelName, + seriesCountByMetricName, + memoryInBytesByLabelName, + seriesCountByLabelValuePair, +}) => { + return ( +
    +

    TSDB Status

    +

    Head Cardinality Stats

    + {[ + { title: 'Top 10 label names with value count', stats: labelValueCountByLabelName }, + { title: 'Top 10 series count by metric names', stats: seriesCountByMetricName }, + { title: 'Top 10 label names with high memory usage', unit: 'Bytes', stats: memoryInBytesByLabelName }, + { title: 'Top 10 series count by label value pairs', stats: seriesCountByLabelValuePair }, + ].map(({ title, unit = 'Count', stats }) => { + return ( +
    +

    {title}

    + + + + + + + + + {stats.map(({ name, value }) => { + return ( + + + + + ); + })} + +
    Name{unit}
    {name}{value}
    +
    + ); + })} +
    + ); +}; +TSDBStatusContent.displayName = 'TSDBStatusContent'; + +const TSDBStatusContentWithStatusIndicator = withStatusIndicator(TSDBStatusContent); + +const TSDBStatus: FC = ({ pathPrefix }) => { + const { response, error, isLoading } = useFetch(`${pathPrefix}/api/v1/status/tsdb`); + + return ( + + ); +}; + +export default TSDBStatus; diff --git a/pkg/ui/react-app/src/react-app-env.d.ts b/pkg/ui/react-app/src/react-app-env.d.ts new file mode 100644 index 00000000000..6431bc5fc6b --- /dev/null +++ b/pkg/ui/react-app/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/pkg/ui/react-app/src/setupTests.ts b/pkg/ui/react-app/src/setupTests.ts new file mode 100644 index 00000000000..962ec1c8217 --- /dev/null +++ b/pkg/ui/react-app/src/setupTests.ts @@ -0,0 +1,9 @@ +import { configure } from 'enzyme'; +import Adapter from 'enzyme-adapter-react-16'; +import { GlobalWithFetchMock } from 'jest-fetch-mock'; +import './globals'; + +configure({ adapter: new Adapter() }); +const customGlobal: GlobalWithFetchMock = global as GlobalWithFetchMock; +customGlobal.fetch = require('jest-fetch-mock'); +customGlobal.fetchMock = customGlobal.fetch; diff --git a/pkg/ui/react-app/src/thanos/Navbar.tsx b/pkg/ui/react-app/src/thanos/Navbar.tsx new file mode 100644 index 00000000000..5a923c05b77 --- /dev/null +++ b/pkg/ui/react-app/src/thanos/Navbar.tsx @@ -0,0 +1,49 @@ +import React, { FC, useState } from 'react'; +import { Link } from '@reach/router'; +import { Collapse, Navbar, NavbarToggler, Nav, NavItem, NavLink } from 'reactstrap'; +import PathPrefixProps from '../types/PathPrefixProps'; +import ThanosComponentProps from './types/ThanosComponentProps'; + +interface NavConfig { + name: string; + uri: string; +} + +const navConfig: { [component: string]: NavConfig[] } = { + query: [{ name: 'Graph', uri: '/new/graph' }], +}; + +const Navigation: FC = ({ pathPrefix, thanosComponent }) => { + const [isOpen, setIsOpen] = useState(false); + const toggle = () => setIsOpen(!isOpen); + return ( + + + + Thanos - {thanosComponent[0].toUpperCase()} + {thanosComponent.substr(1, thanosComponent.length)} + + + + + + ); +}; + +export default Navigation; diff --git a/pkg/ui/react-app/src/thanos/pages/index.tsx b/pkg/ui/react-app/src/thanos/pages/index.tsx new file mode 100644 index 00000000000..cb0ff5c3b54 --- /dev/null +++ b/pkg/ui/react-app/src/thanos/pages/index.tsx @@ -0,0 +1 @@ +export {}; diff --git a/pkg/ui/react-app/src/thanos/types/ThanosComponentProps.ts b/pkg/ui/react-app/src/thanos/types/ThanosComponentProps.ts new file mode 100644 index 00000000000..c9f93a520e3 --- /dev/null +++ b/pkg/ui/react-app/src/thanos/types/ThanosComponentProps.ts @@ -0,0 +1,5 @@ +interface ThanosComponentProps { + thanosComponent: string; +} + +export default ThanosComponentProps; diff --git a/pkg/ui/react-app/src/types/PathPrefixProps.ts b/pkg/ui/react-app/src/types/PathPrefixProps.ts new file mode 100644 index 00000000000..34bf6d5396f --- /dev/null +++ b/pkg/ui/react-app/src/types/PathPrefixProps.ts @@ -0,0 +1,5 @@ +interface PathPrefixProps { + pathPrefix?: string; +} + +export default PathPrefixProps; diff --git a/pkg/ui/react-app/src/types/index.d.ts b/pkg/ui/react-app/src/types/index.d.ts new file mode 100644 index 00000000000..565069002d6 --- /dev/null +++ b/pkg/ui/react-app/src/types/index.d.ts @@ -0,0 +1,68 @@ +declare namespace jquery.flot { + // eslint-disable-next-line @typescript-eslint/class-name-casing + interface plot extends jquery.flot.plot { + destroy: () => void; + } + // eslint-disable-next-line @typescript-eslint/class-name-casing + interface plotOptions extends jquery.flot.plotOptions { + tooltip: { + show?: boolean; + cssClass?: string; + content: ( + label: string, + xval: number, + yval: number, + flotItem: jquery.flot.item & { + series: { + labels: { [key: string]: string }; + color: string; + data: (number | null)[][]; // [x,y][] + index: number; + }; + } + ) => string | string; + xDateFormat?: string; + yDateFormat?: string; + monthNames?: string; + dayNames?: string; + shifts?: { + x: number; + y: number; + }; + defaultTheme?: boolean; + lines?: boolean; + onHover?: () => string; + $compat?: boolean; + }; + crosshair: Partial; + xaxis: { [K in keyof jquery.flot.axisOptions]: jquery.flot.axisOptions[K] } & { + showTicks: boolean; + showMinorTicks: boolean; + timeBase: 'milliseconds'; + }; + series: { [K in keyof jquery.flot.seriesOptions]: jq.flot.seriesOptions[K] } & { + stack: boolean; + }; + } +} + +interface Color { + r: number; + g: number; + b: number; + a: number; + add: (c: string, d: number) => Color; + scale: (c: string, f: number) => Color; + toString: () => string; + normalize: () => Color; + clone: () => Color; +} + +interface JQueryStatic { + color: { + extract: (el: JQuery, css?: CSSStyleDeclaration) => Color; + make: (r?: number, g?: number, b?: number, a?: number) => Color; + parse: (c: string) => Color; + scale: () => Color; + }; +} diff --git a/pkg/ui/react-app/src/types/types.ts b/pkg/ui/react-app/src/types/types.ts new file mode 100644 index 00000000000..a30e64107ab --- /dev/null +++ b/pkg/ui/react-app/src/types/types.ts @@ -0,0 +1,26 @@ +import { Alert, RuleState } from '../pages/alerts/AlertContents'; + +export interface Metric { + [key: string]: string; +} + +export interface QueryParams { + startTime: number; + endTime: number; + resolution: number; +} + +export interface Rule { + alerts: Alert[]; + annotations: Record; + duration: number; + evaluationTime: string; + health: string; + labels: Record; + lastError?: string; + lastEvaluation: string; + name: string; + query: string; + state: RuleState; + type: string; +} diff --git a/pkg/ui/react-app/src/utils/index.ts b/pkg/ui/react-app/src/utils/index.ts new file mode 100644 index 00000000000..ebcf1b62430 --- /dev/null +++ b/pkg/ui/react-app/src/utils/index.ts @@ -0,0 +1,212 @@ +import moment from 'moment-timezone'; + +import { PanelOptions, PanelType, PanelDefaultOptions } from '../pages/graph/Panel'; +import { PanelMeta } from '../pages/graph/PanelList'; + +export const generateID = () => { + return `_${Math.random() + .toString(36) + .substr(2, 9)}`; +}; + +export const byEmptyString = (p: string) => p.length > 0; + +export const isPresent = (obj: T): obj is NonNullable => obj !== null && obj !== undefined; + +export const escapeHTML = (str: string): string => { + const entityMap: { [key: string]: string } = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''', + '/': '/', + }; + + return String(str).replace(/[&<>"'/]/g, function(s) { + return entityMap[s]; + }); +}; + +export const metricToSeriesName = (labels: { [key: string]: string }) => { + if (labels === null) { + return 'scalar'; + } + let tsName = (labels.__name__ || '') + '{'; + const labelStrings: string[] = []; + for (const label in labels) { + if (label !== '__name__') { + labelStrings.push(label + '="' + labels[label] + '"'); + } + } + tsName += labelStrings.join(', ') + '}'; + return tsName; +}; + +const rangeUnits: { [unit: string]: number } = { + y: 60 * 60 * 24 * 365, + w: 60 * 60 * 24 * 7, + d: 60 * 60 * 24, + h: 60 * 60, + m: 60, + s: 1, +}; + +export function parseRange(rangeText: string): number | null { + const rangeRE = new RegExp('^([0-9]+)([ywdhms]+)$'); + const matches = rangeText.match(rangeRE); + if (!matches || matches.length !== 3) { + return null; + } + const value = parseInt(matches[1]); + const unit = matches[2]; + return value * rangeUnits[unit]; +} + +export function formatRange(range: number): string { + for (const unit of Object.keys(rangeUnits)) { + if (range % rangeUnits[unit] === 0) { + return range / rangeUnits[unit] + unit; + } + } + return range + 's'; +} + +export function parseTime(timeText: string): number { + return moment.utc(timeText).valueOf(); +} + +export function formatTime(time: number): string { + return moment.utc(time).format('YYYY-MM-DD HH:mm:ss'); +} + +export const now = (): number => moment().valueOf(); + +export const humanizeDuration = (milliseconds: number): string => { + const sign = milliseconds < 0 ? '-' : ''; + const unsignedMillis = milliseconds < 0 ? -1 * milliseconds : milliseconds; + const duration = moment.duration(unsignedMillis, 'ms'); + const ms = Math.floor(duration.milliseconds()); + const s = Math.floor(duration.seconds()); + const m = Math.floor(duration.minutes()); + const h = Math.floor(duration.hours()); + const d = Math.floor(duration.asDays()); + if (d !== 0) { + return `${sign}${d}d ${h}h ${m}m ${s}s`; + } + if (h !== 0) { + return `${sign}${h}h ${m}m ${s}s`; + } + if (m !== 0) { + return `${sign}${m}m ${s}s`; + } + if (s !== 0) { + return `${sign}${s}.${ms}s`; + } + if (unsignedMillis > 0) { + return `${sign}${unsignedMillis.toFixed(3)}ms`; + } + return '0s'; +}; + +export const formatRelative = (startStr: string, end: number): string => { + const start = parseTime(startStr); + if (start < 0) { + return 'Never'; + } + return humanizeDuration(end - start); +}; + +const paramFormat = /^g\d+\..+=.+$/; + +export const decodePanelOptionsFromQueryString = (query: string): PanelMeta[] => { + if (query === '') { + return []; + } + const urlParams = query.substring(1).split('&'); + + return urlParams.reduce((panels, urlParam, i) => { + const panelsCount = panels.length; + const prefix = `g${panelsCount}.`; + if (urlParam.startsWith(`${prefix}expr=`)) { + const prefixLen = prefix.length; + return [ + ...panels, + { + id: generateID(), + key: `${panelsCount}`, + options: urlParams.slice(i).reduce((opts, param) => { + return param.startsWith(prefix) && paramFormat.test(param) + ? { ...opts, ...parseOption(param.substring(prefixLen)) } + : opts; + }, PanelDefaultOptions), + }, + ]; + } + return panels; + }, []); +}; + +export const parseOption = (param: string): Partial => { + const [opt, val] = param.split('='); + const decodedValue = decodeURIComponent(val.replace(/\+/g, ' ')); + switch (opt) { + case 'expr': + return { expr: decodedValue }; + + case 'tab': + return { type: decodedValue === '0' ? PanelType.Graph : PanelType.Table }; + + case 'stacked': + return { stacked: decodedValue === '1' }; + + case 'range_input': + const range = parseRange(decodedValue); + return isPresent(range) ? { range } : {}; + + case 'end_input': + case 'moment_input': + return { endTime: parseTime(decodedValue) }; + + case 'step_input': + const resolution = parseInt(decodedValue); + return resolution > 0 ? { resolution } : {}; + } + return {}; +}; + +export const formatParam = (key: string) => (paramName: string, value: number | string | boolean) => { + return `g${key}.${paramName}=${encodeURIComponent(value)}`; +}; + +export const toQueryString = ({ key, options }: PanelMeta) => { + const formatWithKey = formatParam(key); + const { expr, type, stacked, range, endTime, resolution } = options; + const time = isPresent(endTime) ? formatTime(endTime) : false; + const urlParams = [ + formatWithKey('expr', expr), + formatWithKey('tab', type === PanelType.Graph ? 0 : 1), + formatWithKey('stacked', stacked ? 1 : 0), + formatWithKey('range_input', formatRange(range)), + time ? `${formatWithKey('end_input', time)}&${formatWithKey('moment_input', time)}` : '', + isPresent(resolution) ? formatWithKey('step_input', resolution) : '', + ]; + return urlParams.filter(byEmptyString).join('&'); +}; + +export const encodePanelOptionsToQueryString = (panels: PanelMeta[]) => { + return `?${panels.map(toQueryString).join('&')}`; +}; + +export const createExpressionLink = (expr: string) => { + return `../graph?g0.expr=${encodeURIComponent(expr)}&g0.tab=1&g0.stacked=0&g0.range_input=1h`; +}; +export const mapObjEntries = ( + o: T, + cb: ([k, v]: [string, T[key]], i: number, arr: [string, T[key]][]) => Z +) => Object.entries(o).map(cb); + +export const callAll = (...fns: Array<(...args: any) => void>) => (...args: any) => { + // eslint-disable-next-line prefer-spread + fns.filter(Boolean).forEach(fn => fn.apply(null, args)); +}; diff --git a/pkg/ui/react-app/src/utils/utils.test.ts b/pkg/ui/react-app/src/utils/utils.test.ts new file mode 100644 index 00000000000..a59f3373d55 --- /dev/null +++ b/pkg/ui/react-app/src/utils/utils.test.ts @@ -0,0 +1,241 @@ +import moment from 'moment'; + +import { + escapeHTML, + metricToSeriesName, + formatTime, + parseTime, + formatRange, + parseRange, + humanizeDuration, + formatRelative, + now, + toQueryString, + encodePanelOptionsToQueryString, + parseOption, + decodePanelOptionsFromQueryString, +} from '.'; +import { PanelType } from '../pages/graph/Panel'; + +describe('Utils', () => { + describe('escapeHTML', (): void => { + it('escapes html sequences', () => { + expect(escapeHTML(`'example'&"another/example"`)).toEqual( + '<strong>'example'&"another/example"</strong>' + ); + }); + }); + + describe('metricToSeriesName', () => { + it('returns "{}" if labels is empty', () => { + const labels = {}; + expect(metricToSeriesName(labels)).toEqual('{}'); + }); + it('returns "metric_name{}" if labels only contains __name__', () => { + const labels = { __name__: 'metric_name' }; + expect(metricToSeriesName(labels)).toEqual('metric_name{}'); + }); + it('returns "{label1=value_1, ..., labeln=value_n} if there are many labels and no name', () => { + const labels = { label1: 'value_1', label2: 'value_2', label3: 'value_3' }; + expect(metricToSeriesName(labels)).toEqual('{label1="value_1", label2="value_2", label3="value_3"}'); + }); + it('returns "metric_name{label1=value_1, ... ,labeln=value_n}" if there are many labels and a name', () => { + const labels = { + __name__: 'metric_name', + label1: 'value_1', + label2: 'value_2', + label3: 'value_3', + }; + expect(metricToSeriesName(labels)).toEqual('metric_name{label1="value_1", label2="value_2", label3="value_3"}'); + }); + }); + + describe('Time format', () => { + describe('formatTime', () => { + it('returns a time string representing the time in seconds', () => { + expect(formatTime(1572049380000)).toEqual('2019-10-26 00:23:00'); + expect(formatTime(0)).toEqual('1970-01-01 00:00:00'); + }); + }); + + describe('parseTime', () => { + it('returns a time string representing the time in seconds', () => { + expect(parseTime('2019-10-26 00:23')).toEqual(1572049380000); + expect(parseTime('1970-01-01 00:00')).toEqual(0); + expect(parseTime('0001-01-01T00:00:00Z')).toEqual(-62135596800000); + }); + }); + + describe('formatRange', () => { + it('returns a time string representing the time in seconds in one unit', () => { + expect(formatRange(60 * 60 * 24 * 365)).toEqual('1y'); + expect(formatRange(60 * 60 * 24 * 7)).toEqual('1w'); + expect(formatRange(2 * 60 * 60 * 24)).toEqual('2d'); + expect(formatRange(60 * 60)).toEqual('1h'); + expect(formatRange(7 * 60)).toEqual('7m'); + expect(formatRange(63)).toEqual('63s'); + }); + }); + + describe('parseRange', () => { + it('returns a time string representing the time in seconds in one unit', () => { + expect(parseRange('1y')).toEqual(60 * 60 * 24 * 365); + expect(parseRange('1w')).toEqual(60 * 60 * 24 * 7); + expect(parseRange('2d')).toEqual(2 * 60 * 60 * 24); + expect(parseRange('1h')).toEqual(60 * 60); + expect(parseRange('7m')).toEqual(7 * 60); + expect(parseRange('63s')).toEqual(63); + }); + }); + + describe('humanizeDuration', () => { + it('humanizes zero', () => { + expect(humanizeDuration(0)).toEqual('0s'); + }); + it('humanizes milliseconds', () => { + expect(humanizeDuration(1.234567)).toEqual('1.235ms'); + expect(humanizeDuration(12.34567)).toEqual('12.346ms'); + expect(humanizeDuration(123.45678)).toEqual('123.457ms'); + expect(humanizeDuration(123)).toEqual('123.000ms'); + }); + it('humanizes seconds', () => { + expect(humanizeDuration(12340)).toEqual('12.340s'); + }); + it('humanizes minutes', () => { + expect(humanizeDuration(1234567)).toEqual('20m 34s'); + }); + + it('humanizes hours', () => { + expect(humanizeDuration(12345678)).toEqual('3h 25m 45s'); + }); + + it('humanizes days', () => { + expect(humanizeDuration(123456789)).toEqual('1d 10h 17m 36s'); + expect(humanizeDuration(123456789000)).toEqual('1428d 21h 33m 9s'); + }); + it('takes sign into account', () => { + expect(humanizeDuration(-123456789000)).toEqual('-1428d 21h 33m 9s'); + }); + }); + + describe('formatRelative', () => { + it('renders never for pre-beginning-of-time strings', () => { + expect(formatRelative('0001-01-01T00:00:00Z', now())).toEqual('Never'); + }); + it('renders a humanized duration for sane durations', () => { + expect(formatRelative('2019-11-04T09:15:29.578701-07:00', parseTime('2019-11-04T09:15:35.8701-07:00'))).toEqual( + '6.292s' + ); + expect(formatRelative('2019-11-04T09:15:35.8701-07:00', parseTime('2019-11-04T09:15:29.578701-07:00'))).toEqual( + '-6.292s' + ); + }); + }); + }); + + describe('URL Params', () => { + const panels: any = [ + { + key: '0', + options: { + endTime: 1572046620000, + expr: 'rate(node_cpu_seconds_total{mode="system"}[1m])', + range: 3600, + resolution: null, + stacked: false, + type: PanelType.Graph, + }, + }, + { + key: '1', + options: { + endTime: null, + expr: 'node_filesystem_avail_bytes', + range: 3600, + resolution: null, + stacked: false, + type: PanelType.Table, + }, + }, + ]; + const query = + '?g0.expr=rate(node_cpu_seconds_total%7Bmode%3D%22system%22%7D%5B1m%5D)&g0.tab=0&g0.stacked=0&g0.range_input=1h&g0.end_input=2019-10-25%2023%3A37%3A00&g0.moment_input=2019-10-25%2023%3A37%3A00&g1.expr=node_filesystem_avail_bytes&g1.tab=1&g1.stacked=0&g1.range_input=1h'; + + describe('decodePanelOptionsFromQueryString', () => { + it('returns [] when query is empty', () => { + expect(decodePanelOptionsFromQueryString('')).toEqual([]); + }); + it('returns and array of parsed params when query string is non-empty', () => { + expect(decodePanelOptionsFromQueryString(query)).toMatchObject(panels); + }); + }); + + describe('parseOption', () => { + it('should return empty object for invalid param', () => { + expect(parseOption('invalid_prop=foo')).toEqual({}); + }); + it('should parse expr param', () => { + expect(parseOption('expr=foo')).toEqual({ expr: 'foo' }); + }); + it('should parse stacked', () => { + expect(parseOption('stacked=1')).toEqual({ stacked: true }); + }); + it('should parse end_input', () => { + expect(parseOption('end_input=2019-10-25%2023%3A37')).toEqual({ endTime: moment.utc('2019-10-25 23:37').valueOf() }); + }); + it('should parse moment_input', () => { + expect(parseOption('moment_input=2019-10-25%2023%3A37')).toEqual({ + endTime: moment.utc('2019-10-25 23:37').valueOf(), + }); + }); + + describe('step_input', () => { + it('should return step_input parsed if > 0', () => { + expect(parseOption('step_input=2')).toEqual({ resolution: 2 }); + }); + it('should return empty object if step is equal 0', () => { + expect(parseOption('step_input=0')).toEqual({}); + }); + }); + + describe('range_input', () => { + it('should return range parsed if its not null', () => { + expect(parseOption('range_input=2h')).toEqual({ range: 7200 }); + }); + it('should return empty object for invalid value', () => { + expect(parseOption('range_input=h')).toEqual({}); + }); + }); + + describe('Parse type param', () => { + it('should return panel type "graph" if tab=0', () => { + expect(parseOption('tab=0')).toEqual({ type: PanelType.Graph }); + }); + it('should return panel type "table" if tab=1', () => { + expect(parseOption('tab=1')).toEqual({ type: PanelType.Table }); + }); + }); + }); + + describe('toQueryString', () => { + it('should generate query string from panel options', () => { + expect( + toQueryString({ + id: 'asdf', + key: '0', + options: { expr: 'foo', type: PanelType.Graph, stacked: true, range: 0, endTime: null, resolution: 1 }, + }) + ).toEqual('g0.expr=foo&g0.tab=0&g0.stacked=1&g0.range_input=0y&g0.step_input=1'); + }); + }); + + describe('encodePanelOptionsToQueryString', () => { + it('returns ? when panels is empty', () => { + expect(encodePanelOptionsToQueryString([])).toEqual('?'); + }); + it('returns an encoded query string otherwise', () => { + expect(encodePanelOptionsToQueryString(panels)).toEqual(query); + }); + }); + }); +}); diff --git a/pkg/ui/react-app/src/vendor/flot/jquery.flot.crosshair.js b/pkg/ui/react-app/src/vendor/flot/jquery.flot.crosshair.js new file mode 100644 index 00000000000..d1dec264fdb --- /dev/null +++ b/pkg/ui/react-app/src/vendor/flot/jquery.flot.crosshair.js @@ -0,0 +1,191 @@ +/** + * + * THIS FILE WAS COPIED INTO THANOS FROM GRAFANA'S VENDORED FORK OF FLOT + * (LIVING AT https://github.com/grafana/grafana/tree/master/public/vendor/flot), + * WHICH CONTAINS FIXES FOR DISPLAYING NULL VALUES IN STACKED GRAPHS. THE ORIGINAL + * FLOT CODE WAS LICENSED UNDER THE MIT LICENSE AS STATED BELOW. ADDITIONAL + * CHANGES HAVE BEEN CONTRIBUTED TO THE GRAFANA FORK UNDER AN APACHE 2 LICENSE, SEE + * https://github.com/grafana/grafana/blob/master/license. + * + */ + +/* eslint-disable prefer-spread */ +/* eslint-disable no-loop-func */ +/* eslint-disable @typescript-eslint/no-this-alias */ +/* eslint-disable no-redeclare */ +/* eslint-disable no-useless-escape */ +/* eslint-disable prefer-const */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable eqeqeq */ +/* eslint-disable no-var */ +/* Flot plugin for showing crosshairs when the mouse hovers over the plot. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +The plugin supports these options: + + crosshair: { + mode: null or "x" or "y" or "xy" + color: color + lineWidth: number + } + +Set the mode to one of "x", "y" or "xy". The "x" mode enables a vertical +crosshair that lets you trace the values on the x axis, "y" enables a +horizontal crosshair and "xy" enables them both. "color" is the color of the +crosshair (default is "rgba(170, 0, 0, 0.80)"), "lineWidth" is the width of +the drawn lines (default is 1). + +The plugin also adds four public methods: + + - setCrosshair( pos ) + + Set the position of the crosshair. Note that this is cleared if the user + moves the mouse. "pos" is in coordinates of the plot and should be on the + form { x: xpos, y: ypos } (you can use x2/x3/... if you're using multiple + axes), which is coincidentally the same format as what you get from a + "plothover" event. If "pos" is null, the crosshair is cleared. + + - clearCrosshair() + + Clear the crosshair. + + - lockCrosshair(pos) + + Cause the crosshair to lock to the current location, no longer updating if + the user moves the mouse. Optionally supply a position (passed on to + setCrosshair()) to move it to. + + Example usage: + + var myFlot = $.plot( $("#graph"), ..., { crosshair: { mode: "x" } } }; + $("#graph").bind( "plothover", function ( evt, position, item ) { + if ( item ) { + // Lock the crosshair to the data point being hovered + myFlot.lockCrosshair({ + x: item.datapoint[ 0 ], + y: item.datapoint[ 1 ] + }); + } else { + // Return normal crosshair operation + myFlot.unlockCrosshair(); + } + }); + + - unlockCrosshair() + + Free the crosshair to move again after locking it. +*/ + +(function($) { + const options = { + crosshair: { + mode: null, // one of null, "x", "y" or "xy", + color: 'rgba(170, 0, 0, 0.80)', + lineWidth: 1, + }, + }; + + function init(plot) { + // position of crosshair in pixels + const crosshair = { x: -1, y: -1, locked: false }; + + plot.setCrosshair = function setCrosshair(pos) { + if (!pos) crosshair.x = -1; + else { + const o = plot.p2c(pos); + crosshair.x = Math.max(0, Math.min(o.left, plot.width())); + crosshair.y = Math.max(0, Math.min(o.top, plot.height())); + } + + plot.triggerRedrawOverlay(); + }; + + plot.clearCrosshair = plot.setCrosshair; // passes null for pos + + plot.lockCrosshair = function lockCrosshair(pos) { + if (pos) plot.setCrosshair(pos); + crosshair.locked = true; + }; + + plot.unlockCrosshair = function unlockCrosshair() { + crosshair.locked = false; + }; + + function onMouseOut() { + if (crosshair.locked) return; + + if (crosshair.x != -1) { + crosshair.x = -1; + plot.triggerRedrawOverlay(); + } + } + + function onMouseMove(e) { + if (crosshair.locked) return; + + if (plot.getSelection && plot.getSelection()) { + crosshair.x = -1; // hide the crosshair while selecting + return; + } + + const offset = plot.offset(); + crosshair.x = Math.max(0, Math.min(e.pageX - offset.left, plot.width())); + crosshair.y = Math.max(0, Math.min(e.pageY - offset.top, plot.height())); + plot.triggerRedrawOverlay(); + } + + plot.hooks.bindEvents.push(function(plot, eventHolder) { + if (!plot.getOptions().crosshair.mode) return; + + eventHolder.mouseout(onMouseOut); + eventHolder.mousemove(onMouseMove); + }); + + plot.hooks.drawOverlay.push(function(plot, ctx) { + const c = plot.getOptions().crosshair; + if (!c.mode) return; + + const plotOffset = plot.getPlotOffset(); + + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + + if (crosshair.x != -1) { + const adj = plot.getOptions().crosshair.lineWidth % 2 ? 0.5 : 0; + + ctx.strokeStyle = c.color; + ctx.lineWidth = c.lineWidth; + ctx.lineJoin = 'round'; + + ctx.beginPath(); + if (c.mode.indexOf('x') != -1) { + const drawX = Math.floor(crosshair.x) + adj; + ctx.moveTo(drawX, 0); + ctx.lineTo(drawX, plot.height()); + } + if (c.mode.indexOf('y') != -1) { + const drawY = Math.floor(crosshair.y) + adj; + ctx.moveTo(0, drawY); + ctx.lineTo(plot.width(), drawY); + } + ctx.stroke(); + } + ctx.restore(); + }); + + plot.hooks.shutdown.push(function(plot, eventHolder) { + eventHolder.unbind('mouseout', onMouseOut); + eventHolder.unbind('mousemove', onMouseMove); + }); + } + + $.plot.plugins.push({ + init: init, + options: options, + name: 'crosshair', + version: '1.0', + }); +})(window.jQuery); diff --git a/pkg/ui/react-app/src/vendor/flot/jquery.flot.js b/pkg/ui/react-app/src/vendor/flot/jquery.flot.js new file mode 100644 index 00000000000..136e64d7fa8 --- /dev/null +++ b/pkg/ui/react-app/src/vendor/flot/jquery.flot.js @@ -0,0 +1,3412 @@ +/** + * + * THIS FILE WAS COPIED INTO THANOS FROM GRAFANA'S VENDORED FORK OF FLOT + * (LIVING AT https://github.com/grafana/grafana/tree/master/public/vendor/flot), + * WHICH CONTAINS FIXES FOR DISPLAYING NULL VALUES IN STACKED GRAPHS. THE ORIGINAL + * FLOT CODE WAS LICENSED UNDER THE MIT LICENSE AS STATED BELOW. ADDITIONAL + * CHANGES HAVE BEEN CONTRIBUTED TO THE GRAFANA FORK UNDER AN APACHE 2 LICENSE, SEE + * https://github.com/grafana/grafana/blob/master/license. + * + */ + +/* eslint-disable prefer-spread */ +/* eslint-disable no-loop-func */ +/* eslint-disable @typescript-eslint/no-this-alias */ +/* eslint-disable no-redeclare */ +/* eslint-disable no-useless-escape */ +/* eslint-disable prefer-const */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable eqeqeq */ +/* eslint-disable no-var */ +/* Javascript plotting library for jQuery, version 0.8.3. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +*/ + +// first an inline dependency, jquery.colorhelpers.js, we inline it here +// for convenience + +/* Plugin for jQuery for working with colors. + * + * Version 1.1. + * + * Inspiration from jQuery color animation plugin by John Resig. + * + * Released under the MIT license by Ole Laursen, October 2009. + * + * Examples: + * + * $.color.parse("#fff").scale('rgb', 0.25).add('a', -0.5).toString() + * var c = $.color.extract($("#mydiv"), 'background-color'); + * console.log(c.r, c.g, c.b, c.a); + * $.color.make(100, 50, 25, 0.4).toString() // returns "rgba(100,50,25,0.4)" + * + * Note that .scale() and .add() return the same modified object + * instead of making a new one. + * + * V. 1.1: Fix error handling so e.g. parsing an empty string does + * produce a color rather than just crashing. + */ + +(function($) { + $.color = {}; + $.color.make = function(r, g, b, a) { + var o = {}; + o.r = r || 0; + o.g = g || 0; + o.b = b || 0; + o.a = a != null ? a : 1; + o.add = function(c, d) { + for (var i = 0; i < c.length; ++i) o[c.charAt(i)] += d; + return o.normalize(); + }; + o.scale = function(c, f) { + for (var i = 0; i < c.length; ++i) o[c.charAt(i)] *= f; + return o.normalize(); + }; + o.toString = function() { + if (o.a >= 1) { + return 'rgb(' + [o.r, o.g, o.b].join(',') + ')'; + } else { + return 'rgba(' + [o.r, o.g, o.b, o.a].join(',') + ')'; + } + }; + o.normalize = function() { + function clamp(min, value, max) { + return value < min ? min : value > max ? max : value; + } + o.r = clamp(0, parseInt(o.r), 255); + o.g = clamp(0, parseInt(o.g), 255); + o.b = clamp(0, parseInt(o.b), 255); + o.a = clamp(0, o.a, 1); + return o; + }; + o.clone = function() { + return $.color.make(o.r, o.b, o.g, o.a); + }; + return o.normalize(); + }; + $.color.extract = function(elem, css) { + var c; + do { + c = elem.css(css).toLowerCase(); + if (c != '' && c != 'transparent') break; + elem = elem.parent(); + } while (elem.length && !$.nodeName(elem.get(0), 'body')); + if (c == 'rgba(0, 0, 0, 0)') c = 'transparent'; + return $.color.parse(c); + }; + $.color.parse = function(str) { + var res, + m = $.color.make; + if ((res = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))) + return m(parseInt(res[1], 10), parseInt(res[2], 10), parseInt(res[3], 10)); + if ((res = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))) + return m(parseInt(res[1], 10), parseInt(res[2], 10), parseInt(res[3], 10), parseFloat(res[4])); + if ((res = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))) + return m(parseFloat(res[1]) * 2.55, parseFloat(res[2]) * 2.55, parseFloat(res[3]) * 2.55); + if ( + (res = /rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec( + str + )) + ) + return m(parseFloat(res[1]) * 2.55, parseFloat(res[2]) * 2.55, parseFloat(res[3]) * 2.55, parseFloat(res[4])); + if ((res = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))) + return m(parseInt(res[1], 16), parseInt(res[2], 16), parseInt(res[3], 16)); + if ((res = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))) + return m(parseInt(res[1] + res[1], 16), parseInt(res[2] + res[2], 16), parseInt(res[3] + res[3], 16)); + var name = $.trim(str).toLowerCase(); + if (name == 'transparent') return m(255, 255, 255, 0); + else { + res = lookupColors[name] || [0, 0, 0]; + return m(res[0], res[1], res[2]); + } + }; + var lookupColors = { + aqua: [0, 255, 255], + azure: [240, 255, 255], + beige: [245, 245, 220], + black: [0, 0, 0], + blue: [0, 0, 255], + brown: [165, 42, 42], + cyan: [0, 255, 255], + darkblue: [0, 0, 139], + darkcyan: [0, 139, 139], + darkgrey: [169, 169, 169], + darkgreen: [0, 100, 0], + darkkhaki: [189, 183, 107], + darkmagenta: [139, 0, 139], + darkolivegreen: [85, 107, 47], + darkorange: [255, 140, 0], + darkorchid: [153, 50, 204], + darkred: [139, 0, 0], + darksalmon: [233, 150, 122], + darkviolet: [148, 0, 211], + fuchsia: [255, 0, 255], + gold: [255, 215, 0], + green: [0, 128, 0], + indigo: [75, 0, 130], + khaki: [240, 230, 140], + lightblue: [173, 216, 230], + lightcyan: [224, 255, 255], + lightgreen: [144, 238, 144], + lightgrey: [211, 211, 211], + lightpink: [255, 182, 193], + lightyellow: [255, 255, 224], + lime: [0, 255, 0], + magenta: [255, 0, 255], + maroon: [128, 0, 0], + navy: [0, 0, 128], + olive: [128, 128, 0], + orange: [255, 165, 0], + pink: [255, 192, 203], + purple: [128, 0, 128], + violet: [128, 0, 128], + red: [255, 0, 0], + silver: [192, 192, 192], + white: [255, 255, 255], + yellow: [255, 255, 0], + }; +})(window.jQuery); + +// the actual Flot code +(function($) { + // Cache the prototype hasOwnProperty for faster access + + let hasOwnProperty = Object.prototype.hasOwnProperty; + + // A shim to provide 'detach' to jQuery versions prior to 1.4. Using a DOM + // operation produces the same effect as detach, i.e. removing the element + // without touching its jQuery data. + + // Do not merge this into Flot 0.9, since it requires jQuery 1.4.4+. + + if (!$.fn.detach) { + $.fn.detach = function() { + return this.each(function() { + if (this.parentNode) { + this.parentNode.removeChild(this); + } + }); + }; + } + + /////////////////////////////////////////////////////////////////////////// + // The Canvas object is a wrapper around an HTML5 tag. + // + // @constructor + // @param {string} cls List of classes to apply to the canvas. + // @param {element} container Element onto which to append the canvas. + // + // Requiring a container is a little iffy, but unfortunately canvas + // operations don't work unless the canvas is attached to the DOM. + + function Canvas(cls, container) { + var element = container.children('.' + cls)[0]; + + if (element == null) { + element = document.createElement('canvas'); + element.className = cls; + + $(element) + .css({ direction: 'ltr', position: 'absolute', left: 0, top: 0 }) + .appendTo(container); + + // If HTML5 Canvas isn't available, fall back to [Ex|Flash]canvas + + if (!element.getContext) { + if (window.G_vmlCanvasManager) { + element = window.G_vmlCanvasManager.initElement(element); + } else { + throw new Error( + "Canvas is not available. If you're using IE with a fall-back such as Excanvas, then there's either a mistake in your conditional include, or the page has no DOCTYPE and is rendering in Quirks Mode." + ); + } + } + } + + this.element = element; + + var context = (this.context = element.getContext('2d')); + + // Determine the screen's ratio of physical to device-independent + // pixels. This is the ratio between the canvas width that the browser + // advertises and the number of pixels actually present in that space. + + // The iPhone 4, for example, has a device-independent width of 320px, + // but its screen is actually 640px wide. It therefore has a pixel + // ratio of 2, while most normal devices have a ratio of 1. + + let devicePixelRatio = window.devicePixelRatio || 1, + backingStoreRatio = + context.webkitBackingStorePixelRatio || + context.mozBackingStorePixelRatio || + context.msBackingStorePixelRatio || + context.oBackingStorePixelRatio || + context.backingStorePixelRatio || + 1; + + this.pixelRatio = devicePixelRatio / backingStoreRatio; + + // Size the canvas to match the internal dimensions of its container + + this.resize(container.width(), container.height()); + + // Collection of HTML div layers for text overlaid onto the canvas + + this.textContainer = null; + this.text = {}; + + // Cache of text fragments and metrics, so we can avoid expensively + // re-calculating them when the plot is re-rendered in a loop. + + this._textCache = {}; + this._textSizeCache = window.flotTextSizeCache = window.flotTextSizeCache || {}; + } + + // Resizes the canvas to the given dimensions. + // + // @param {number} width New width of the canvas, in pixels. + // @param {number} width New height of the canvas, in pixels. + + Canvas.prototype.resize = function(width, height) { + if (width <= 0 || height <= 0) { + throw new Error('Invalid dimensions for plot, width = ' + width + ', height = ' + height); + } + + let element = this.element, + context = this.context, + pixelRatio = this.pixelRatio; + + // Resize the canvas, increasing its density based on the display's + // pixel ratio; basically giving it more pixels without increasing the + // size of its element, to take advantage of the fact that retina + // displays have that many more pixels in the same advertised space. + + // Resizing should reset the state (excanvas seems to be buggy though) + + if (this.width != width) { + element.width = width * pixelRatio; + element.style.width = width + 'px'; + this.width = width; + } + + if (this.height != height) { + element.height = height * pixelRatio; + element.style.height = height + 'px'; + this.height = height; + } + + // Save the context, so we can reset in case we get replotted. The + // restore ensure that we're really back at the initial state, and + // should be safe even if we haven't saved the initial state yet. + + context.restore(); + context.save(); + + // Scale the coordinate space to match the display density; so even though we + // may have twice as many pixels, we still want lines and other drawing to + // appear at the same size; the extra pixels will just make them crisper. + + context.scale(pixelRatio, pixelRatio); + }; + + // Clears the entire canvas area, not including any overlaid HTML text + + Canvas.prototype.clear = function() { + this.context.clearRect(0, 0, this.width, this.height); + }; + + // Finishes rendering the canvas, including managing the text overlay. + + Canvas.prototype.render = function() { + let cache = this._textCache; + + // For each text layer, add elements marked as active that haven't + // already been rendered, and remove those that are no longer active. + + for (let layerKey in cache) { + if (hasOwnProperty.call(cache, layerKey)) { + let layer = this.getTextLayer(layerKey), + layerCache = cache[layerKey]; + + layer.hide(); + + for (let styleKey in layerCache) { + if (hasOwnProperty.call(layerCache, styleKey)) { + let styleCache = layerCache[styleKey]; + for (let key in styleCache) { + if (hasOwnProperty.call(styleCache, key)) { + let positions = styleCache[key].positions; + + for (var i = 0, position; (position = positions[i]); i++) { + if (position.active) { + if (!position.rendered) { + layer.append(position.element); + position.rendered = true; + } + } else { + positions.splice(i--, 1); + if (position.rendered) { + position.element.detach(); + } + } + } + + if (positions.length == 0) { + delete styleCache[key]; + } + } + } + } + } + + layer.show(); + } + } + }; + + // Creates (if necessary) and returns the text overlay container. + // + // @param {string} classes String of space-separated CSS classes used to + // uniquely identify the text layer. + // @return {object} The jQuery-wrapped text-layer div. + + Canvas.prototype.getTextLayer = function(classes) { + let layer = this.text[classes]; + + // Create the text layer if it doesn't exist + + if (layer == null) { + // Create the text layer container, if it doesn't exist + + if (this.textContainer == null) { + this.textContainer = $("
    ") + .css({ + position: 'absolute', + top: 0, + left: 0, + bottom: 0, + right: 0, + 'font-size': 'smaller', + color: '#545454', + }) + .insertAfter(this.element); + } + + layer = this.text[classes] = $('
    ') + .addClass(classes) + .css({ + position: 'absolute', + top: 0, + left: 0, + bottom: 0, + right: 0, + }) + .appendTo(this.textContainer); + } + + return layer; + }; + + // Creates (if necessary) and returns a text info object. + // + // The object looks like this: + // + // { + // width: Width of the text's wrapper div. + // height: Height of the text's wrapper div. + // element: The jQuery-wrapped HTML div containing the text. + // positions: Array of positions at which this text is drawn. + // } + // + // The positions array contains objects that look like this: + // + // { + // active: Flag indicating whether the text should be visible. + // rendered: Flag indicating whether the text is currently visible. + // element: The jQuery-wrapped HTML div containing the text. + // x: X coordinate at which to draw the text. + // y: Y coordinate at which to draw the text. + // } + // + // Each position after the first receives a clone of the original element. + // + // The idea is that that the width, height, and general 'identity' of the + // text is constant no matter where it is placed; the placements are a + // secondary property. + // + // Canvas maintains a cache of recently-used text info objects; getTextInfo + // either returns the cached element or creates a new entry. + // + // @param {string} layer A string of space-separated CSS classes uniquely + // identifying the layer containing this text. + // @param {string} text Text string to retrieve info for. + // @param {(string|object)=} font Either a string of space-separated CSS + // classes or a font-spec object, defining the text's font and style. + // @param {number=} angle Angle at which to rotate the text, in degrees. + // Angle is currently unused, it will be implemented in the future. + // @param {number=} width Maximum width of the text before it wraps. + // @return {object} a text info object. + + Canvas.prototype.getTextInfo = function(layer, text, font, angle, width) { + let textStyle, layerCache, styleCache, info; + + // Cast the value to a string, in case we were given a number or such + + text = '' + text; + + // If the font is a font-spec object, generate a CSS font definition + + if (typeof font === 'object') { + textStyle = + font.style + + ' ' + + font.variant + + ' ' + + font.weight + + ' ' + + font.size + + 'px/' + + font.lineHeight + + 'px ' + + font.family; + } else { + textStyle = font; + } + + // Retrieve (or create) the cache for the text's layer and styles + + layerCache = this._textCache[layer]; + + if (layerCache == null) { + layerCache = this._textCache[layer] = {}; + } + + styleCache = layerCache[textStyle]; + + if (styleCache == null) { + styleCache = layerCache[textStyle] = {}; + } + + info = styleCache[text]; + + // If we can't find a matching element in our cache, create a new one + + if (info == null) { + var element = $('
    ') + .html(text) + .css({ + position: 'absolute', + 'max-width': width, + top: -9999, + }) + .appendTo(this.getTextLayer(layer)); + + if (typeof font === 'object') { + element.css({ + font: textStyle, + color: font.color, + }); + } else if (typeof font === 'string') { + element.addClass(font); + } + + info = styleCache[text] = { element: element, positions: [] }; + + let size = this._textSizeCache[text]; + if (size) { + info.width = size.width; + info.height = size.height; + } else { + info.width = element.outerWidth(true); + info.height = element.outerHeight(true); + this._textSizeCache[text] = { width: info.width, height: info.height }; + } + element.detach(); + } + + return info; + }; + + // Adds a text string to the canvas text overlay. + // + // The text isn't drawn immediately; it is marked as rendering, which will + // result in its addition to the canvas on the next render pass. + // + // @param {string} layer A string of space-separated CSS classes uniquely + // identifying the layer containing this text. + // @param {number} x X coordinate at which to draw the text. + // @param {number} y Y coordinate at which to draw the text. + // @param {string} text Text string to draw. + // @param {(string|object)=} font Either a string of space-separated CSS + // classes or a font-spec object, defining the text's font and style. + // @param {number=} angle Angle at which to rotate the text, in degrees. + // Angle is currently unused, it will be implemented in the future. + // @param {number=} width Maximum width of the text before it wraps. + // @param {string=} halign Horizontal alignment of the text; either "left", + // "center" or "right". + // @param {string=} valign Vertical alignment of the text; either "top", + // "middle" or "bottom". + + Canvas.prototype.addText = function(layer, x, y, text, font, angle, width, halign, valign) { + let info = this.getTextInfo(layer, text, font, angle, width), + positions = info.positions; + + // Tweak the div's position to match the text's alignment + + if (halign == 'center') { + x -= info.width / 2; + } else if (halign == 'right') { + x -= info.width; + } + + if (valign == 'middle') { + y -= info.height / 2; + } else if (valign == 'bottom') { + y -= info.height; + } + + // Determine whether this text already exists at this position. + // If so, mark it for inclusion in the next render pass. + + for (var i = 0, position; (position = positions[i]); i++) { + if (position.x == x && position.y == y) { + position.active = true; + return; + } + } + + // If the text doesn't exist at this position, create a new entry + + // For the very first position we'll re-use the original element, + // while for subsequent ones we'll clone it. + + position = { + active: true, + rendered: false, + element: positions.length ? info.element.clone() : info.element, + x: x, + y: y, + }; + + positions.push(position); + + // Move the element to its final position within the container + + position.element.css({ + top: Math.round(y), + left: Math.round(x), + 'text-align': halign, // In case the text wraps + }); + }; + + // Removes one or more text strings from the canvas text overlay. + // + // If no parameters are given, all text within the layer is removed. + // + // Note that the text is not immediately removed; it is simply marked as + // inactive, which will result in its removal on the next render pass. + // This avoids the performance penalty for 'clear and redraw' behavior, + // where we potentially get rid of all text on a layer, but will likely + // add back most or all of it later, as when redrawing axes, for example. + // + // @param {string} layer A string of space-separated CSS classes uniquely + // identifying the layer containing this text. + // @param {number=} x X coordinate of the text. + // @param {number=} y Y coordinate of the text. + // @param {string=} text Text string to remove. + // @param {(string|object)=} font Either a string of space-separated CSS + // classes or a font-spec object, defining the text's font and style. + // @param {number=} angle Angle at which the text is rotated, in degrees. + // Angle is currently unused, it will be implemented in the future. + + Canvas.prototype.removeText = function(layer, x, y, text, font, angle) { + if (text == null) { + let layerCache = this._textCache[layer]; + if (layerCache != null) { + for (let styleKey in layerCache) { + if (hasOwnProperty.call(layerCache, styleKey)) { + let styleCache = layerCache[styleKey]; + for (let key in styleCache) { + if (hasOwnProperty.call(styleCache, key)) { + var positions = styleCache[key].positions; + for (var i = 0, position; (position = positions[i]); i++) { + position.active = false; + } + } + } + } + } + } + } else { + var positions = this.getTextInfo(layer, text, font, angle).positions; + for (var i = 0, position; (position = positions[i]); i++) { + if (position.x == x && position.y == y) { + position.active = false; + } + } + } + }; + + /////////////////////////////////////////////////////////////////////////// + // The top-level container for the entire plot. + + function Plot(placeholder, data_, options_, plugins) { + // data is on the form: + // [ series1, series2 ... ] + // where series is either just the data as [ [x1, y1], [x2, y2], ... ] + // or { data: [ [x1, y1], [x2, y2], ... ], label: "some label", ... } + + let series = [], + options = { + // the color theme used for graphs + colors: ['#edc240', '#afd8f8', '#cb4b4b', '#4da74d', '#9440ed'], + legend: { + show: true, + noColumns: 1, // number of colums in legend table + labelFormatter: null, // fn: string -> string + labelBoxBorderColor: '#ccc', // border color for the little label boxes + container: null, // container (as jQuery object) to put legend in, null means default on top of graph + position: 'ne', // position of default legend container within plot + margin: 5, // distance from grid edge to default legend container within plot + backgroundColor: null, // null means auto-detect + backgroundOpacity: 0.85, // set to 0 to avoid background + sorted: null, // default to no legend sorting + }, + xaxis: { + show: null, // null = auto-detect, true = always, false = never + position: 'bottom', // or "top" + mode: null, // null or "time" + font: null, // null (derived from CSS in placeholder) or object like { size: 11, lineHeight: 13, style: "italic", weight: "bold", family: "sans-serif", variant: "small-caps" } + color: null, // base color, labels, ticks + tickColor: null, // possibly different color of ticks, e.g. "rgba(0,0,0,0.15)" + transform: null, // null or f: number -> number to transform axis + inverseTransform: null, // if transform is set, this should be the inverse function + min: null, // min. value to show, null means set automatically + max: null, // max. value to show, null means set automatically + autoscaleMargin: null, // margin in % to add if auto-setting min/max + ticks: null, // either [1, 3] or [[1, "a"], 3] or (fn: axis info -> ticks) or app. number of ticks for auto-ticks + tickFormatter: null, // fn: number -> string + labelWidth: null, // size of tick labels in pixels + labelHeight: null, + reserveSpace: null, // whether to reserve space even if axis isn't shown + tickLength: null, // size in pixels of ticks, or "full" for whole line + alignTicksWithAxis: null, // axis number or null for no sync + tickDecimals: null, // no. of decimals, null means auto + tickSize: null, // number or [number, "unit"] + minTickSize: null, // number or [number, "unit"] + }, + yaxis: { + autoscaleMargin: 0.02, + position: 'left', // or "right" + }, + xaxes: [], + yaxes: [], + series: { + points: { + show: false, + radius: 3, + lineWidth: 2, // in pixels + fill: true, + fillColor: '#ffffff', + symbol: 'circle', // or callback + }, + lines: { + // we don't put in show: false so we can see + // whether lines were actively disabled + lineWidth: 2, // in pixels + fill: false, + fillColor: null, + steps: false, + // Omit 'zero', so we can later default its value to + // match that of the 'fill' option. + }, + bars: { + show: false, + lineWidth: 2, // in pixels + barWidth: 1, // in units of the x axis + fill: true, + fillColor: null, + align: 'left', // "left", "right", or "center" + horizontal: false, + zero: true, + }, + shadowSize: 3, + highlightColor: null, + }, + grid: { + show: true, + aboveData: false, + color: '#545454', // primary color used for outline and labels + backgroundColor: null, // null for transparent, else color + borderColor: null, // set if different from the grid color + tickColor: null, // color for the ticks, e.g. "rgba(0,0,0,0.15)" + margin: 0, // distance from the canvas edge to the grid + labelMargin: 5, // in pixels + eventSectionHeight: 0, // space for event section + axisMargin: 8, // in pixels + borderWidth: 2, // in pixels + minBorderMargin: null, // in pixels, null means taken from points radius + markings: null, // array of ranges or fn: axes -> array of ranges + markingsColor: '#f4f4f4', + markingsLineWidth: 2, + // interactive stuff + clickable: false, + hoverable: false, + autoHighlight: true, // highlight in case mouse is near + mouseActiveRadius: 10, // how far the mouse can be away to activate an item + }, + interaction: { + redrawOverlayInterval: 1000 / 60, // time between updates, -1 means in same flow + }, + hooks: {}, + }, + surface = null, // the canvas for the plot itself + overlay = null, // canvas for interactive stuff on top of plot + eventHolder = null, // jQuery object that events should be bound to + ctx = null, + octx = null, + xaxes = [], + yaxes = [], + plotOffset = { left: 0, right: 0, top: 0, bottom: 0 }, + plotWidth = 0, + plotHeight = 0, + hooks = { + processOptions: [], + processRawData: [], + processDatapoints: [], + processOffset: [], + processRange: [], + drawBackground: [], + drawSeries: [], + draw: [], + bindEvents: [], + drawOverlay: [], + shutdown: [], + }, + plot = this; + + // public functions + plot.setData = setData; + plot.setupGrid = setupGrid; + plot.draw = draw; + plot.getPlaceholder = function() { + return placeholder; + }; + plot.getCanvas = function() { + return surface.element; + }; + plot.getPlotOffset = function() { + return plotOffset; + }; + plot.width = function() { + return plotWidth; + }; + plot.height = function() { + return plotHeight; + }; + plot.offset = function() { + let o = eventHolder.offset(); + o.left += plotOffset.left; + o.top += plotOffset.top; + return o; + }; + plot.getData = function() { + return series; + }; + plot.getAxes = function() { + var res = {}; + $.each(xaxes.concat(yaxes), function(_, axis) { + if (axis) res[axis.direction + (axis.n != 1 ? axis.n : '') + 'axis'] = axis; + }); + return res; + }; + plot.getXAxes = function() { + return xaxes; + }; + plot.getYAxes = function() { + return yaxes; + }; + plot.c2p = canvasToAxisCoords; + plot.p2c = axisToCanvasCoords; + plot.getOptions = function() { + return options; + }; + plot.highlight = highlight; + plot.unhighlight = unhighlight; + plot.triggerRedrawOverlay = triggerRedrawOverlay; + plot.pointOffset = function(point) { + return { + left: parseInt(xaxes[axisNumber(point, 'x') - 1].p2c(+point.x) + plotOffset.left, 10), + top: parseInt(yaxes[axisNumber(point, 'y') - 1].p2c(+point.y) + plotOffset.top, 10), + }; + }; + plot.shutdown = shutdown; + plot.destroy = function() { + shutdown(); + placeholder.removeData('plot').empty(); + + series = []; + options = null; + surface = null; + overlay = null; + eventHolder = null; + ctx = null; + octx = null; + xaxes = []; + yaxes = []; + hooks = null; + highlights = []; + plot = null; + }; + plot.resize = function() { + let width = placeholder.width(), + height = placeholder.height(); + surface.resize(width, height); + overlay.resize(width, height); + }; + + // public attributes + plot.hooks = hooks; + + // initialize + initPlugins(plot); + parseOptions(options_); + setupCanvases(); + setData(data_); + setupGrid(); + draw(); + bindEvents(); + + function executeHooks(hook, args) { + args = [plot].concat(args); + for (var i = 0; i < hook.length; ++i) hook[i].apply(this, args); + } + + function initPlugins() { + // References to key classes, allowing plugins to modify them + + let classes = { + Canvas: Canvas, + }; + + for (let i = 0; i < plugins.length; ++i) { + let p = plugins[i]; + p.init(plot, classes); + if (p.options) $.extend(true, options, p.options); + } + } + + function parseOptions(opts) { + $.extend(true, options, opts); + + // $.extend merges arrays, rather than replacing them. When less + // colors are provided than the size of the default palette, we + // end up with those colors plus the remaining defaults, which is + // not expected behavior; avoid it by replacing them here. + + if (opts && opts.colors) { + options.colors = opts.colors; + } + + if (options.xaxis.color == null) + options.xaxis.color = $.color + .parse(options.grid.color) + .scale('a', 0.22) + .toString(); + if (options.yaxis.color == null) + options.yaxis.color = $.color + .parse(options.grid.color) + .scale('a', 0.22) + .toString(); + + if (options.xaxis.tickColor == null) + // grid.tickColor for back-compatibility + options.xaxis.tickColor = options.grid.tickColor || options.xaxis.color; + if (options.yaxis.tickColor == null) + // grid.tickColor for back-compatibility + options.yaxis.tickColor = options.grid.tickColor || options.yaxis.color; + + if (options.grid.borderColor == null) options.grid.borderColor = options.grid.color; + if (options.grid.tickColor == null) + options.grid.tickColor = $.color + .parse(options.grid.color) + .scale('a', 0.22) + .toString(); + + // Fill in defaults for axis options, including any unspecified + // font-spec fields, if a font-spec was provided. + + // If no x/y axis options were provided, create one of each anyway, + // since the rest of the code assumes that they exist. + + var i, + axisOptions, + axisCount, + fontSize = placeholder.css('font-size'), + fontSizeDefault = fontSize ? +fontSize.replace('px', '') : 13, + fontDefaults = { + style: placeholder.css('font-style'), + size: Math.round(0.8 * fontSizeDefault), + variant: placeholder.css('font-variant'), + weight: placeholder.css('font-weight'), + family: placeholder.css('font-family'), + }; + + axisCount = options.xaxes.length || 1; + for (i = 0; i < axisCount; ++i) { + axisOptions = options.xaxes[i]; + if (axisOptions && !axisOptions.tickColor) { + axisOptions.tickColor = axisOptions.color; + } + + axisOptions = $.extend(true, {}, options.xaxis, axisOptions); + options.xaxes[i] = axisOptions; + + if (axisOptions.font) { + axisOptions.font = $.extend({}, fontDefaults, axisOptions.font); + if (!axisOptions.font.color) { + axisOptions.font.color = axisOptions.color; + } + if (!axisOptions.font.lineHeight) { + axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15); + } + } + } + + axisCount = options.yaxes.length || 1; + for (i = 0; i < axisCount; ++i) { + axisOptions = options.yaxes[i]; + if (axisOptions && !axisOptions.tickColor) { + axisOptions.tickColor = axisOptions.color; + } + + axisOptions = $.extend(true, {}, options.yaxis, axisOptions); + options.yaxes[i] = axisOptions; + + if (axisOptions.font) { + axisOptions.font = $.extend({}, fontDefaults, axisOptions.font); + if (!axisOptions.font.color) { + axisOptions.font.color = axisOptions.color; + } + if (!axisOptions.font.lineHeight) { + axisOptions.font.lineHeight = Math.round(axisOptions.font.size * 1.15); + } + } + } + + // backwards compatibility, to be removed in future + if (options.xaxis.noTicks && options.xaxis.ticks == null) options.xaxis.ticks = options.xaxis.noTicks; + if (options.yaxis.noTicks && options.yaxis.ticks == null) options.yaxis.ticks = options.yaxis.noTicks; + if (options.x2axis) { + options.xaxes[1] = $.extend(true, {}, options.xaxis, options.x2axis); + options.xaxes[1].position = 'top'; + // Override the inherit to allow the axis to auto-scale + if (options.x2axis.min == null) { + options.xaxes[1].min = null; + } + if (options.x2axis.max == null) { + options.xaxes[1].max = null; + } + } + if (options.y2axis) { + options.yaxes[1] = $.extend(true, {}, options.yaxis, options.y2axis); + options.yaxes[1].position = 'right'; + // Override the inherit to allow the axis to auto-scale + if (options.y2axis.min == null) { + options.yaxes[1].min = null; + } + if (options.y2axis.max == null) { + options.yaxes[1].max = null; + } + } + if (options.grid.coloredAreas) options.grid.markings = options.grid.coloredAreas; + if (options.grid.coloredAreasColor) options.grid.markingsColor = options.grid.coloredAreasColor; + if (options.lines) $.extend(true, options.series.lines, options.lines); + if (options.points) $.extend(true, options.series.points, options.points); + if (options.bars) $.extend(true, options.series.bars, options.bars); + if (options.shadowSize != null) options.series.shadowSize = options.shadowSize; + if (options.highlightColor != null) options.series.highlightColor = options.highlightColor; + + // save options on axes for future reference + for (i = 0; i < options.xaxes.length; ++i) getOrCreateAxis(xaxes, i + 1).options = options.xaxes[i]; + for (i = 0; i < options.yaxes.length; ++i) getOrCreateAxis(yaxes, i + 1).options = options.yaxes[i]; + + // add hooks from options + for (var n in hooks) if (options.hooks[n] && options.hooks[n].length) hooks[n] = hooks[n].concat(options.hooks[n]); + + executeHooks(hooks.processOptions, [options]); + } + + function setData(d) { + series = parseData(d); + fillInSeriesOptions(); + processData(); + } + + function parseData(d) { + let res = []; + for (let i = 0; i < d.length; ++i) { + let s = $.extend(true, {}, options.series); + + if (d[i].data != null) { + s.data = d[i].data; // move the data instead of deep-copy + delete d[i].data; + + $.extend(true, s, d[i]); + + d[i].data = s.data; + } else s.data = d[i]; + res.push(s); + } + + return res; + } + + function axisNumber(obj, coord) { + var a = obj[coord + 'axis']; + if (typeof a == 'object') + // if we got a real axis, extract number + a = a.n; + if (typeof a != 'number') a = 1; // default to first axis + return a; + } + + function allAxes() { + // return flat array without annoying null entries + return $.grep(xaxes.concat(yaxes), function(a) { + return a; + }); + } + + function canvasToAxisCoords(pos) { + // return an object with x/y corresponding to all used axes + var res = {}, + i, + axis; + for (i = 0; i < xaxes.length; ++i) { + axis = xaxes[i]; + if (axis) res['x' + axis.n] = axis.c2p(pos.left); + } + + for (i = 0; i < yaxes.length; ++i) { + axis = yaxes[i]; + if (axis) res['y' + axis.n] = axis.c2p(pos.top); + } + + if (res.x1 !== undefined) res.x = res.x1; + if (res.y1 !== undefined) res.y = res.y1; + + return res; + } + + function axisToCanvasCoords(pos) { + // get canvas coords from the first pair of x/y found in pos + var res = {}, + i, + axis, + key; + + for (i = 0; i < xaxes.length; ++i) { + axis = xaxes[i]; + if (axis && axis.used) { + key = 'x' + axis.n; + if (pos[key] == null && axis.n == 1) key = 'x'; + + if (pos[key] != null) { + res.left = axis.p2c(pos[key]); + break; + } + } + } + + for (i = 0; i < yaxes.length; ++i) { + axis = yaxes[i]; + if (axis && axis.used) { + key = 'y' + axis.n; + if (pos[key] == null && axis.n == 1) key = 'y'; + + if (pos[key] != null) { + res.top = axis.p2c(pos[key]); + break; + } + } + } + + return res; + } + + function getOrCreateAxis(axes, number) { + if (!axes[number - 1]) + axes[number - 1] = { + n: number, // save the number for future reference + direction: axes == xaxes ? 'x' : 'y', + options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis), + }; + + return axes[number - 1]; + } + + function fillInSeriesOptions() { + var neededColors = series.length, + maxIndex = -1, + i; + + // Subtract the number of series that already have fixed colors or + // color indexes from the number that we still need to generate. + + for (i = 0; i < series.length; ++i) { + let sc = series[i].color; + if (sc != null) { + neededColors--; + if (typeof sc == 'number' && sc > maxIndex) { + maxIndex = sc; + } + } + } + + // If any of the series have fixed color indexes, then we need to + // generate at least as many colors as the highest index. + + if (neededColors <= maxIndex) { + neededColors = maxIndex + 1; + } + + // Generate all the colors, using first the option colors and then + // variations on those colors once they're exhausted. + + var c, + colors = [], + colorPool = options.colors, + colorPoolSize = colorPool.length, + variation = 0; + + for (i = 0; i < neededColors; i++) { + c = $.color.parse(colorPool[i % colorPoolSize] || '#666'); + + // Each time we exhaust the colors in the pool we adjust + // a scaling factor used to produce more variations on + // those colors. The factor alternates negative/positive + // to produce lighter/darker colors. + + // Reset the variation after every few cycles, or else + // it will end up producing only white or black colors. + + if (i % colorPoolSize == 0 && i) { + if (variation >= 0) { + if (variation < 0.5) { + variation = -variation - 0.2; + } else variation = 0; + } else variation = -variation; + } + + colors[i] = c.scale('rgb', 1 + variation); + } + + // Finalize the series options, filling in their colors + + var colori = 0, + s; + for (i = 0; i < series.length; ++i) { + s = series[i]; + + // assign colors + if (s.color == null) { + s.color = colors[colori].toString(); + ++colori; + } else if (typeof s.color == 'number') s.color = colors[s.color].toString(); + + // turn on lines automatically in case nothing is set + if (s.lines.show == null) { + var v, + show = true; + for (v in s) + if (s[v] && s[v].show) { + show = false; + break; + } + if (show) s.lines.show = true; + } + + // If nothing was provided for lines.zero, default it to match + // lines.fill, since areas by default should extend to zero. + + if (s.lines.zero == null) { + s.lines.zero = !!s.lines.fill; + } + + // setup axes + s.xaxis = getOrCreateAxis(xaxes, axisNumber(s, 'x')); + s.yaxis = getOrCreateAxis(yaxes, axisNumber(s, 'y')); + } + } + + function processData() { + let topSentry = Number.POSITIVE_INFINITY, + bottomSentry = Number.NEGATIVE_INFINITY, + fakeInfinity = Number.MAX_VALUE, + i, + j, + k, + m, + s, + points, + ps, + val, + f, + p, + data, + format; + + function updateAxis(axis, min, max) { + if (min < axis.datamin && min != -fakeInfinity) axis.datamin = min; + if (max > axis.datamax && max != fakeInfinity) axis.datamax = max; + } + + $.each(allAxes(), function(_, axis) { + // init axis + axis.datamin = topSentry; + axis.datamax = bottomSentry; + axis.used = false; + }); + + for (i = 0; i < series.length; ++i) { + s = series[i]; + s.datapoints = { points: [] }; + + executeHooks(hooks.processRawData, [s, s.data, s.datapoints]); + } + + // first pass: clean and copy data + for (i = 0; i < series.length; ++i) { + s = series[i]; + + data = s.data; + format = s.datapoints.format; + + if (!format) { + format = []; + // find out how to copy + format.push({ x: true, number: true, required: true }); + format.push({ y: true, number: true, required: true }); + + if (s.stack || s.bars.show || (s.lines.show && s.lines.fill)) { + let autoscale = !!((s.bars.show && s.bars.zero) || (s.lines.show && s.lines.zero)); + format.push({ y: true, number: true, required: false, defaultValue: 0, autoscale: autoscale }); + if (s.bars.horizontal) { + delete format[format.length - 1].y; + format[format.length - 1].x = true; + } + } + + s.datapoints.format = format; + } + + if (s.datapoints.pointsize != null) continue; // already filled in + + s.datapoints.pointsize = format.length; + + ps = s.datapoints.pointsize; + points = s.datapoints.points; + + let insertSteps = s.lines.show && s.lines.steps; + s.xaxis.used = s.yaxis.used = true; + + for (j = k = 0; j < data.length; ++j, k += ps) { + p = data[j]; + + let nullify = p == null; + if (!nullify) { + for (m = 0; m < ps; ++m) { + val = p[m]; + f = format[m]; + + if (f) { + if (f.number && val != null) { + val = +val; // convert to number + if (isNaN(val)) val = null; + else if (val == Infinity) val = fakeInfinity; + else if (val == -Infinity) val = -fakeInfinity; + } + + if (val == null) { + if (f.required) nullify = true; + + if (f.defaultValue != null) val = f.defaultValue; + } + } + + points[k + m] = val; + } + } + + if (nullify) { + for (m = 0; m < ps; ++m) { + val = points[k + m]; + if (val != null) { + f = format[m]; + // extract min/max info + if (f.autoscale !== false) { + if (f.x) { + updateAxis(s.xaxis, val, val); + } + if (f.y) { + updateAxis(s.yaxis, val, val); + } + } + } + points[k + m] = null; + } + } + + if (insertSteps && k > 0 && (!nullify || points[k - ps] != null)) { + // copy the point to make room for a middle point + for (m = 0; m < ps; ++m) points[k + ps + m] = points[k + m]; + + // middle point has same y + points[k + 1] = points[k - ps + 1] || 0; + + // if series has null values, let's give the last !null value a nice step + if (nullify) points[k] = p[0]; + + // we've added a point, better reflect that + k += ps; + } + } + } + + // give the hooks a chance to run + for (i = 0; i < series.length; ++i) { + s = series[i]; + points = s.datapoints.points; + ps = s.datapoints.pointsize; + + // grafana + if (s.transform === 'negative-Y') { + for (j = 0; j < points.length; j += ps) { + if (points[j] == null) continue; + + val = points[j + 1]; + points[j + 1] = -val; + } + } + + executeHooks(hooks.processDatapoints, [s, s.datapoints]); + } + + // second pass: find datamax/datamin for auto-scaling + for (i = 0; i < series.length; ++i) { + s = series[i]; + points = s.datapoints.points; + ps = s.datapoints.pointsize; + format = s.datapoints.format; + + var xmin = topSentry, + ymin = topSentry, + xmax = bottomSentry, + ymax = bottomSentry; + + for (j = 0; j < points.length; j += ps) { + if (points[j] == null) continue; + + for (m = 0; m < ps; ++m) { + val = points[j + m]; + f = format[m]; + if (!f || f.autoscale === false || val == fakeInfinity || val == -fakeInfinity) continue; + + if (f.x) { + if (val < xmin) xmin = val; + if (val > xmax) xmax = val; + } + if (f.y) { + if (val < ymin) ymin = val; + if (val > ymax) ymax = val; + } + } + } + + if (s.bars.show) { + // make sure we got room for the bar on the dancing floor + var delta; + + switch (s.bars.align) { + case 'left': + delta = 0; + break; + case 'right': + delta = -s.bars.barWidth; + break; + default: + delta = -s.bars.barWidth / 2; + } + + if (s.bars.horizontal) { + ymin += delta; + ymax += delta + s.bars.barWidth; + } else { + xmin += delta; + xmax += delta + s.bars.barWidth; + } + } + + updateAxis(s.xaxis, xmin, xmax); + updateAxis(s.yaxis, ymin, ymax); + } + + $.each(allAxes(), function(_, axis) { + if (axis.datamin == topSentry) axis.datamin = null; + if (axis.datamax == bottomSentry) axis.datamax = null; + }); + } + + function setupCanvases() { + // Make sure the placeholder is clear of everything except canvases + // from a previous plot in this container that we'll try to re-use. + + placeholder.find('.flot-temp-elem').remove(); + + if (placeholder.css('position') == 'static') placeholder.css('position', 'relative'); // for positioning labels and overlay + + surface = new Canvas('flot-base', placeholder); + overlay = new Canvas('flot-overlay', placeholder); // overlay canvas for interactive features + + ctx = surface.context; + octx = overlay.context; + + // define which element we're listening for events on + eventHolder = $(overlay.element).unbind(); + + // If we're re-using a plot object, shut down the old one + + var existing = placeholder.data('plot'); + + if (existing) { + existing.shutdown(); + overlay.clear(); + } + + // save in case we get replotted + placeholder.data('plot', plot); + } + + function bindEvents() { + // bind events + if (options.grid.hoverable) { + eventHolder.mousemove(onMouseMove); + + // Use bind, rather than .mouseleave, because we officially + // still support jQuery 1.2.6, which doesn't define a shortcut + // for mouseenter or mouseleave. This was a bug/oversight that + // was fixed somewhere around 1.3.x. We can return to using + // .mouseleave when we drop support for 1.2.6. + + eventHolder.bind('mouseleave', onMouseLeave); + } + + if (options.grid.clickable) eventHolder.click(onClick); + + executeHooks(hooks.bindEvents, [eventHolder]); + } + + function shutdown() { + if (redrawTimeout) clearTimeout(redrawTimeout); + + eventHolder.unbind('mousemove', onMouseMove); + eventHolder.unbind('mouseleave', onMouseLeave); + eventHolder.unbind('click', onClick); + + executeHooks(hooks.shutdown, [eventHolder]); + } + + function setTransformationHelpers(axis) { + // set helper functions on the axis, assumes plot area + // has been computed already + + function identity(x) { + return x; + } + + var s, + m, + t = axis.options.transform || identity, + it = axis.options.inverseTransform; + + // precompute how much the axis is scaling a point + // in canvas space + if (axis.direction == 'x') { + s = axis.scale = plotWidth / Math.abs(t(axis.max) - t(axis.min)); + m = Math.min(t(axis.max), t(axis.min)); + } else { + s = axis.scale = plotHeight / Math.abs(t(axis.max) - t(axis.min)); + s = -s; + m = Math.max(t(axis.max), t(axis.min)); + } + + // data point to canvas coordinate + if (t == identity) + // slight optimization + axis.p2c = function(p) { + return (p - m) * s; + }; + else + axis.p2c = function(p) { + return (t(p) - m) * s; + }; + // canvas coordinate to data point + if (!it) + axis.c2p = function(c) { + return m + c / s; + }; + else + axis.c2p = function(c) { + return it(m + c / s); + }; + } + + function measureTickLabels(axis) { + let opts = axis.options, + ticks = axis.ticks || [], + labelWidth = opts.labelWidth || 0, + labelHeight = opts.labelHeight || 0, + maxWidth = labelWidth || (axis.direction == 'x' ? Math.floor(surface.width / (ticks.length || 1)) : null), + legacyStyles = axis.direction + 'Axis ' + axis.direction + axis.n + 'Axis', + layer = 'flot-' + axis.direction + '-axis flot-' + axis.direction + axis.n + '-axis ' + legacyStyles, + font = opts.font || 'flot-tick-label tickLabel'; + + for (let i = 0; i < ticks.length; ++i) { + let t = ticks[i]; + + if (!t.label) continue; + + let info = surface.getTextInfo(layer, t.label, font, null, maxWidth); + + /// Grafana fix, add +1 to label width + labelWidth = Math.max(labelWidth, info.width + 1); + labelHeight = Math.max(labelHeight, info.height); + } + + axis.labelWidth = opts.labelWidth || labelWidth; + axis.labelHeight = opts.labelHeight || labelHeight; + } + + function allocateAxisBoxFirstPhase(axis) { + // find the bounding box of the axis by looking at label + // widths/heights and ticks, make room by diminishing the + // plotOffset; this first phase only looks at one + // dimension per axis, the other dimension depends on the + // other axes so will have to wait + + let lw = axis.labelWidth, + lh = axis.labelHeight, + pos = axis.options.position, + isXAxis = axis.direction === 'x', + tickLength = axis.options.tickLength, + axisMargin = options.grid.axisMargin, + padding = options.grid.labelMargin, + eventSectionPadding = options.grid.eventSectionHeight, + innermost = true, + outermost = true, + first = true, + found = false; + + // Determine the axis's position in its direction and on its side + + $.each(isXAxis ? xaxes : yaxes, function(i, a) { + if (a && (a.show || a.reserveSpace)) { + if (a === axis) { + found = true; + } else if (a.options.position === pos) { + if (found) { + outermost = false; + } else { + innermost = false; + } + } + if (!found) { + first = false; + } + } + }); + + // The outermost axis on each side has no margin + + if (outermost) { + axisMargin = 0; + } + + // The ticks for the first axis in each direction stretch across + + if (tickLength == null) { + tickLength = first ? 'full' : 5; + } + + if (!isNaN(+tickLength)) padding += +tickLength; + + if (isXAxis) { + // Add space for event section + lh += padding; + lh += eventSectionPadding; + + if (pos == 'bottom') { + plotOffset.bottom += lh + axisMargin; + axis.box = { top: surface.height - plotOffset.bottom, height: lh }; + } else { + axis.box = { top: plotOffset.top + axisMargin, height: lh }; + plotOffset.top += lh + axisMargin; + } + } else { + lw += padding; + + if (pos == 'left') { + axis.box = { left: plotOffset.left + axisMargin, width: lw }; + plotOffset.left += lw + axisMargin; + } else { + plotOffset.right += lw + axisMargin; + axis.box = { left: surface.width - plotOffset.right, width: lw }; + } + } + + // save for future reference + axis.position = pos; + axis.tickLength = tickLength; + axis.box.padding = padding; + axis.box.eventSectionPadding = eventSectionPadding; + axis.innermost = innermost; + } + + function allocateAxisBoxSecondPhase(axis) { + // now that all axis boxes have been placed in one + // dimension, we can set the remaining dimension coordinates + if (axis.direction == 'x') { + axis.box.left = plotOffset.left - axis.labelWidth / 2; + axis.box.width = surface.width - plotOffset.left - plotOffset.right + axis.labelWidth; + } else { + axis.box.top = plotOffset.top - axis.labelHeight / 2; + axis.box.height = surface.height - plotOffset.bottom - plotOffset.top + axis.labelHeight; + } + } + + function adjustLayoutForThingsStickingOut() { + // possibly adjust plot offset to ensure everything stays + // inside the canvas and isn't clipped off + + let minMargin = options.grid.minBorderMargin, + i; + + // check stuff from the plot (FIXME: this should just read + // a value from the series, otherwise it's impossible to + // customize) + if (minMargin == null) { + minMargin = 0; + for (i = 0; i < series.length; ++i) + minMargin = Math.max(minMargin, 2 * (series[i].points.radius + series[i].points.lineWidth / 2)); + } + + let margins = { + left: minMargin, + right: minMargin, + top: minMargin, + bottom: minMargin, + }; + + // check axis labels, note we don't check the actual + // labels but instead use the overall width/height to not + // jump as much around with replots + $.each(allAxes(), function(_, axis) { + if (axis.reserveSpace && axis.ticks && axis.ticks.length) { + if (axis.direction === 'x') { + margins.left = Math.max(margins.left, axis.labelWidth / 2); + margins.right = Math.max(margins.right, axis.labelWidth / 2); + } else { + margins.bottom = Math.max(margins.bottom, axis.labelHeight / 2); + margins.top = Math.max(margins.top, axis.labelHeight / 2); + } + } + }); + + plotOffset.left = Math.ceil(Math.max(margins.left, plotOffset.left)); + plotOffset.right = Math.ceil(Math.max(margins.right, plotOffset.right)); + plotOffset.top = Math.ceil(Math.max(margins.top, plotOffset.top)); + plotOffset.bottom = Math.ceil(Math.max(margins.bottom, plotOffset.bottom)); + } + + function setupGrid() { + var i, + axes = allAxes(), + showGrid = options.grid.show; + + // Initialize the plot's offset from the edge of the canvas + + for (var a in plotOffset) { + let margin = options.grid.margin || 0; + plotOffset[a] = typeof margin == 'number' ? margin : margin[a] || 0; + } + + executeHooks(hooks.processOffset, [plotOffset]); + + // If the grid is visible, add its border width to the offset + + for (var a in plotOffset) { + if (typeof options.grid.borderWidth == 'object') { + plotOffset[a] += showGrid ? options.grid.borderWidth[a] : 0; + } else { + plotOffset[a] += showGrid ? options.grid.borderWidth : 0; + } + } + + $.each(axes, function(_, axis) { + let axisOpts = axis.options; + axis.show = axisOpts.show == null ? axis.used : axisOpts.show; + axis.reserveSpace = axisOpts.reserveSpace == null ? axis.show : axisOpts.reserveSpace; + setRange(axis); + }); + + executeHooks(hooks.processRange, []); + + if (showGrid) { + var allocatedAxes = $.grep(axes, function(axis) { + return axis.show || axis.reserveSpace; + }); + + let snaped = false; + for (var i = 0; i < 2; i++) { + $.each(allocatedAxes, function(_, axis) { + // make the ticks + setupTickGeneration(axis); + setTicks(axis); + snaped = snapRangeToTicks(axis, axis.ticks) || snaped; + // find labelWidth/Height for axis + measureTickLabels(axis); + }); + + if (snaped && hooks.processRange.length > 0) { + executeHooks(hooks.processRange, []); + snaped = false; + } else { + break; + } + } + + // with all dimensions calculated, we can compute the + // axis bounding boxes, start from the outside + // (reverse order) + for (i = allocatedAxes.length - 1; i >= 0; --i) allocateAxisBoxFirstPhase(allocatedAxes[i]); + + // make sure we've got enough space for things that + // might stick out + adjustLayoutForThingsStickingOut(); + + $.each(allocatedAxes, function(_, axis) { + allocateAxisBoxSecondPhase(axis); + }); + } + + plotWidth = surface.width - plotOffset.left - plotOffset.right; + plotHeight = surface.height - plotOffset.bottom - plotOffset.top; + + // now we got the proper plot dimensions, we can compute the scaling + $.each(axes, function(_, axis) { + setTransformationHelpers(axis); + }); + + if (showGrid) { + drawAxisLabels(); + } + + insertLegend(); + } + + function setRange(axis) { + let opts = axis.options, + min = +(opts.min != null ? opts.min : axis.datamin), + max = +(opts.max != null ? opts.max : axis.datamax), + delta = max - min; + + if (delta == 0.0) { + // Grafana fix: wide Y min and max using increased wideFactor + // when all series values are the same + let wideFactor = 0.25; + let widen = Math.abs(max == 0 ? 1 : max * wideFactor); + + if (opts.min == null) { + min -= widen; + } + // always widen max if we couldn't widen min to ensure we + // don't fall into min == max which doesn't work + if (opts.max == null || opts.min != null) { + max += widen; + } + } else { + // consider autoscaling + let margin = opts.autoscaleMargin; + if (margin != null) { + if (opts.min == null) { + min -= delta * margin; + // make sure we don't go below zero if all values + // are positive + if (min < 0 && axis.datamin != null && axis.datamin >= 0) min = 0; + } + if (opts.max == null) { + max += delta * margin; + if (max > 0 && axis.datamax != null && axis.datamax <= 0) max = 0; + } + } + } + axis.min = min; + axis.max = max; + } + + function setupTickGeneration(axis) { + let opts = axis.options; + + // estimate number of ticks + let noTicks; + if (typeof opts.ticks == 'number' && opts.ticks > 0) noTicks = opts.ticks; + // heuristic based on the model a*sqrt(x) fitted to + // some data points that seemed reasonable + else noTicks = 0.3 * Math.sqrt(axis.direction == 'x' ? surface.width : surface.height); + + let delta = (axis.max - axis.min) / noTicks, + dec = -Math.floor(Math.log(delta) / Math.LN10), + maxDec = opts.tickDecimals; + + if (maxDec != null && dec > maxDec) { + dec = maxDec; + } + + let magn = Math.pow(10, -dec), + norm = delta / magn, // norm is between 1.0 and 10.0 + size; + + if (norm < 1.5) { + size = 1; + } else if (norm < 3) { + size = 2; + // special case for 2.5, requires an extra decimal + if (norm > 2.25 && (maxDec == null || dec + 1 <= maxDec)) { + size = 2.5; + ++dec; + } + } else if (norm < 7.5) { + size = 5; + } else { + size = 10; + } + + size *= magn; + + if (opts.minTickSize != null && size < opts.minTickSize) { + size = opts.minTickSize; + } + + axis.delta = delta; + axis.tickDecimals = Math.max(0, maxDec != null ? maxDec : dec); + axis.tickSize = opts.tickSize || size; + + // grafana addition + if (opts.tickDecimals === null || opts.tickDecimals === undefined) { + axis.scaledDecimals = axis.tickDecimals + dec; + } + + // Time mode was moved to a plug-in in 0.8, and since so many people use it + // we'll add an especially friendly reminder to make sure they included it. + + if (opts.mode == 'time' && !axis.tickGenerator) { + throw new Error('Time mode requires the flot.time plugin.'); + } + + // Flot supports base-10 axes; any other mode else is handled by a plug-in, + // like flot.time.js. + + if (!axis.tickGenerator) { + axis.tickGenerator = function(axis) { + let ticks = [], + start = floorInBase(axis.min, axis.tickSize), + i = 0, + v = Number.NaN, + prev; + + do { + prev = v; + v = start + i * axis.tickSize; + ticks.push(v); + ++i; + } while (v < axis.max && v != prev); + return ticks; + }; + + axis.tickFormatter = function(value, axis) { + let factor = axis.tickDecimals ? Math.pow(10, axis.tickDecimals) : 1; + var formatted = '' + Math.round(value * factor) / factor; + + // If tickDecimals was specified, ensure that we have exactly that + // much precision; otherwise default to the value's own precision. + + if (axis.tickDecimals != null) { + var decimal = formatted.indexOf('.'); + let precision = decimal == -1 ? 0 : formatted.length - decimal - 1; + if (precision < axis.tickDecimals) { + return (precision ? formatted : formatted + '.') + ('' + factor).substr(1, axis.tickDecimals - precision); + } + } + + return formatted; + }; + } + + if ($.isFunction(opts.tickFormatter)) + axis.tickFormatter = function(v, axis) { + return '' + opts.tickFormatter(v, axis); + }; + + if (opts.alignTicksWithAxis != null) { + var otherAxis = (axis.direction == 'x' ? xaxes : yaxes)[opts.alignTicksWithAxis - 1]; + if (otherAxis && otherAxis.used && otherAxis != axis) { + // consider snapping min/max to outermost nice ticks + let niceTicks = axis.tickGenerator(axis); + if (niceTicks.length > 0) { + if (opts.min == null) axis.min = Math.min(axis.min, niceTicks[0]); + if (opts.max == null && niceTicks.length > 1) axis.max = Math.max(axis.max, niceTicks[niceTicks.length - 1]); + } + + axis.tickGenerator = function(axis) { + // copy ticks, scaled to this axis + var ticks = [], + v, + i; + for (i = 0; i < otherAxis.ticks.length; ++i) { + v = (otherAxis.ticks[i].v - otherAxis.min) / (otherAxis.max - otherAxis.min); + v = axis.min + v * (axis.max - axis.min); + ticks.push(v); + } + return ticks; + }; + + // we might need an extra decimal since forced + // ticks don't necessarily fit naturally + if (!axis.mode && opts.tickDecimals == null) { + let extraDec = Math.max(0, -Math.floor(Math.log(axis.delta) / Math.LN10) + 1), + ts = axis.tickGenerator(axis); + + // only proceed if the tick interval rounded + // with an extra decimal doesn't give us a + // zero at end + if (!(ts.length > 1 && /\..*0$/.test((ts[1] - ts[0]).toFixed(extraDec)))) axis.tickDecimals = extraDec; + } + } + } + } + + function setTicks(axis) { + var oticks = axis.options.ticks, + ticks = []; + if (oticks == null || (typeof oticks == 'number' && oticks > 0)) ticks = axis.tickGenerator(axis); + else if (oticks) { + if ($.isFunction(oticks)) + // generate the ticks + ticks = oticks(axis); + else ticks = oticks; + } + + // clean up/labelify the supplied ticks, copy them over + let i, v; + axis.ticks = []; + for (i = 0; i < ticks.length; ++i) { + let label = null; + let t = ticks[i]; + if (typeof t == 'object') { + v = +t[0]; + if (t.length > 1) label = t[1]; + } else v = +t; + if (label == null) label = axis.tickFormatter(v, axis); + if (!isNaN(v)) axis.ticks.push({ v: v, label: label }); + } + } + + function snapRangeToTicks(axis, ticks) { + let changed = false; + if (axis.options.autoscaleMargin && ticks.length > 0) { + // snap to ticks + if (axis.options.min == null) { + axis.min = Math.min(axis.min, ticks[0].v); + changed = true; + } + if (axis.options.max == null && ticks.length > 1) { + axis.max = Math.max(axis.max, ticks[ticks.length - 1].v); + changed = true; + } + } + return changed; + } + + function draw() { + surface.clear(); + + executeHooks(hooks.drawBackground, [ctx]); + + let grid = options.grid; + + // draw background, if any + if (grid.show && grid.backgroundColor) drawBackground(); + + if (grid.show && !grid.aboveData) { + drawGrid(); + } + + for (let i = 0; i < series.length; ++i) { + executeHooks(hooks.drawSeries, [ctx, series[i]]); + drawSeries(series[i]); + } + + executeHooks(hooks.draw, [ctx]); + + if (grid.show && grid.aboveData) { + drawGrid(); + } + + surface.render(); + + // A draw implies that either the axes or data have changed, so we + // should probably update the overlay highlights as well. + + triggerRedrawOverlay(); + } + + function extractRange(ranges, coord) { + var axis, + from, + to, + key, + axes = allAxes(); + + for (let i = 0; i < axes.length; ++i) { + axis = axes[i]; + if (axis.direction == coord) { + key = coord + axis.n + 'axis'; + if (!ranges[key] && axis.n == 1) key = coord + 'axis'; // support x1axis as xaxis + if (ranges[key]) { + from = ranges[key].from; + to = ranges[key].to; + break; + } + } + } + + // backwards-compat stuff - to be removed in future + if (!ranges[key]) { + axis = coord == 'x' ? xaxes[0] : yaxes[0]; + from = ranges[coord + '1']; + to = ranges[coord + '2']; + } + + // auto-reverse as an added bonus + if (from != null && to != null && from > to) { + let tmp = from; + from = to; + to = tmp; + } + + return { from: from, to: to, axis: axis }; + } + + function drawBackground() { + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + + ctx.fillStyle = getColorOrGradient(options.grid.backgroundColor, plotHeight, 0, 'rgba(255, 255, 255, 0)'); + ctx.fillRect(0, 0, plotWidth, plotHeight); + ctx.restore(); + } + + function drawGrid() { + let i, axes, bw, bc; + + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + + // draw markings + let markings = options.grid.markings; + if (markings) { + if ($.isFunction(markings)) { + axes = plot.getAxes(); + // xmin etc. is backwards compatibility, to be + // removed in the future + axes.xmin = axes.xaxis.min; + axes.xmax = axes.xaxis.max; + axes.ymin = axes.yaxis.min; + axes.ymax = axes.yaxis.max; + + markings = markings(axes); + } + + for (i = 0; i < markings.length; ++i) { + let m = markings[i], + xrange = extractRange(m, 'x'), + yrange = extractRange(m, 'y'); + + // fill in missing + if (xrange.from == null) xrange.from = xrange.axis.min; + if (xrange.to == null) xrange.to = xrange.axis.max; + if (yrange.from == null) yrange.from = yrange.axis.min; + if (yrange.to == null) yrange.to = yrange.axis.max; + + // clip + if ( + xrange.to < xrange.axis.min || + xrange.from > xrange.axis.max || + yrange.to < yrange.axis.min || + yrange.from > yrange.axis.max + ) + continue; + + xrange.from = Math.max(xrange.from, xrange.axis.min); + xrange.to = Math.min(xrange.to, xrange.axis.max); + yrange.from = Math.max(yrange.from, yrange.axis.min); + yrange.to = Math.min(yrange.to, yrange.axis.max); + + let xequal = xrange.from === xrange.to, + yequal = yrange.from === yrange.to; + + if (xequal && yequal) { + continue; + } + + // then draw + xrange.from = Math.floor(xrange.axis.p2c(xrange.from)); + xrange.to = Math.floor(xrange.axis.p2c(xrange.to)); + yrange.from = Math.floor(yrange.axis.p2c(yrange.from)); + yrange.to = Math.floor(yrange.axis.p2c(yrange.to)); + + if (xequal || yequal) { + let lineWidth = m.lineWidth || options.grid.markingsLineWidth, + subPixel = lineWidth % 2 ? 0.5 : 0; + ctx.beginPath(); + ctx.strokeStyle = m.color || options.grid.markingsColor; + ctx.lineWidth = lineWidth; + if (xequal) { + ctx.moveTo(xrange.to + subPixel, yrange.from); + ctx.lineTo(xrange.to + subPixel, yrange.to); + } else { + ctx.moveTo(xrange.from, yrange.to + subPixel); + ctx.lineTo(xrange.to, yrange.to + subPixel); + } + ctx.stroke(); + } else { + ctx.fillStyle = m.color || options.grid.markingsColor; + ctx.fillRect(xrange.from, yrange.to, xrange.to - xrange.from, yrange.from - yrange.to); + } + } + } + + // draw the ticks + axes = allAxes(); + bw = options.grid.borderWidth; + + for (let j = 0; j < axes.length; ++j) { + var axis = axes[j], + box = axis.box, + t = axis.tickLength, + x, + y, + xoff, + yoff; + if (!axis.show || axis.ticks.length == 0) continue; + + ctx.lineWidth = 1; + + // find the edges + if (axis.direction == 'x') { + x = 0; + if (t == 'full') y = axis.position == 'top' ? 0 : plotHeight; + else y = box.top - plotOffset.top + (axis.position == 'top' ? box.height : 0); + } else { + y = 0; + if (t == 'full') x = axis.position == 'left' ? 0 : plotWidth; + else x = box.left - plotOffset.left + (axis.position == 'left' ? box.width : 0); + } + + // draw tick bar + if (!axis.innermost) { + ctx.strokeStyle = axis.options.color; + ctx.beginPath(); + xoff = yoff = 0; + if (axis.direction == 'x') xoff = plotWidth + 1; + else yoff = plotHeight + 1; + + if (ctx.lineWidth == 1) { + if (axis.direction == 'x') { + y = Math.floor(y) + 0.5; + } else { + x = Math.floor(x) + 0.5; + } + } + + ctx.moveTo(x, y); + ctx.lineTo(x + xoff, y + yoff); + ctx.stroke(); + } + + // draw ticks + + ctx.strokeStyle = axis.options.tickColor; + + ctx.beginPath(); + for (i = 0; i < axis.ticks.length; ++i) { + let v = axis.ticks[i].v; + + xoff = yoff = 0; + + if ( + isNaN(v) || + v < axis.min || + v > axis.max || + // skip those lying on the axes if we got a border + (t == 'full' && ((typeof bw == 'object' && bw[axis.position] > 0) || bw > 0) && (v == axis.min || v == axis.max)) + ) + continue; + + if (axis.direction == 'x') { + x = axis.p2c(v); + yoff = t == 'full' ? -plotHeight : t; + + if (axis.position == 'top') yoff = -yoff; + } else { + y = axis.p2c(v); + xoff = t == 'full' ? -plotWidth : t; + + if (axis.position == 'left') xoff = -xoff; + } + + if (ctx.lineWidth == 1) { + if (axis.direction == 'x') x = Math.floor(x) + 0.5; + else y = Math.floor(y) + 0.5; + } + + ctx.moveTo(x, y); + ctx.lineTo(x + xoff, y + yoff); + } + + ctx.stroke(); + } + + // draw border + if (bw) { + // If either borderWidth or borderColor is an object, then draw the border + // line by line instead of as one rectangle + bc = options.grid.borderColor; + if (typeof bw == 'object' || typeof bc == 'object') { + if (typeof bw !== 'object') { + bw = { top: bw, right: bw, bottom: bw, left: bw }; + } + if (typeof bc !== 'object') { + bc = { top: bc, right: bc, bottom: bc, left: bc }; + } + + if (bw.top > 0) { + ctx.strokeStyle = bc.top; + ctx.lineWidth = bw.top; + ctx.beginPath(); + ctx.moveTo(0 - bw.left, 0 - bw.top / 2); + ctx.lineTo(plotWidth, 0 - bw.top / 2); + ctx.stroke(); + } + + if (bw.right > 0) { + ctx.strokeStyle = bc.right; + ctx.lineWidth = bw.right; + ctx.beginPath(); + ctx.moveTo(plotWidth + bw.right / 2, 0 - bw.top); + ctx.lineTo(plotWidth + bw.right / 2, plotHeight); + ctx.stroke(); + } + + if (bw.bottom > 0) { + ctx.strokeStyle = bc.bottom; + ctx.lineWidth = bw.bottom; + ctx.beginPath(); + ctx.moveTo(plotWidth + bw.right, plotHeight + bw.bottom / 2); + ctx.lineTo(0, plotHeight + bw.bottom / 2); + ctx.stroke(); + } + + if (bw.left > 0) { + ctx.strokeStyle = bc.left; + ctx.lineWidth = bw.left; + ctx.beginPath(); + ctx.moveTo(0 - bw.left / 2, plotHeight + bw.bottom); + ctx.lineTo(0 - bw.left / 2, 0); + ctx.stroke(); + } + } else { + ctx.lineWidth = bw; + ctx.strokeStyle = options.grid.borderColor; + ctx.strokeRect(-bw / 2, -bw / 2, plotWidth + bw, plotHeight + bw); + } + } + + ctx.restore(); + } + + function drawAxisLabels() { + $.each(allAxes(), function(_, axis) { + let box = axis.box, + legacyStyles = axis.direction + 'Axis ' + axis.direction + axis.n + 'Axis', + layer = 'flot-' + axis.direction + '-axis flot-' + axis.direction + axis.n + '-axis ' + legacyStyles, + font = axis.options.font || 'flot-tick-label tickLabel', + tick, + x, + y, + halign, + valign; + + // Remove text before checking for axis.show and ticks.length; + // otherwise plugins, like flot-tickrotor, that draw their own + // tick labels will end up with both theirs and the defaults. + + surface.removeText(layer); + + if (!axis.show || axis.ticks.length == 0) return; + + for (let i = 0; i < axis.ticks.length; ++i) { + tick = axis.ticks[i]; + if (!tick.label || tick.v < axis.min || tick.v > axis.max) continue; + + if (axis.direction == 'x') { + halign = 'center'; + x = plotOffset.left + axis.p2c(tick.v); + if (axis.position == 'bottom') { + y = box.top + box.padding + box.eventSectionPadding; + } else { + y = box.top + box.height - box.padding; + valign = 'bottom'; + } + } else { + valign = 'middle'; + y = plotOffset.top + axis.p2c(tick.v); + if (axis.position == 'left') { + x = box.left + box.width - box.padding; + halign = 'right'; + } else { + x = box.left + box.padding; + } + } + + surface.addText(layer, x, y, tick.label, font, null, null, halign, valign); + } + }); + } + + function drawOrphanedPoints(series) { + /* Filters series data for points with no neighbors before or after + * and plots single 0.5 radius points for them so that they are displayed. + */ + let abandonedPoints = []; + let beforeX = null; + let afterX = null; + let datapoints = series.datapoints; + // find any points with no neighbors before or after + let emptyPoints = []; + for (let j = 0; j < datapoints.pointsize - 2; j++) { + emptyPoints.push(0); + } + for (let i = 0; i < datapoints.points.length; i += datapoints.pointsize) { + var x = datapoints.points[i], + y = datapoints.points[i + 1]; + if (i === datapoints.points.length - datapoints.pointsize) { + afterX = null; + } else { + afterX = datapoints.points[i + datapoints.pointsize]; + } + if (x !== null && y !== null && beforeX === null && afterX === null) { + abandonedPoints.push(x); + abandonedPoints.push(y); + abandonedPoints.push.apply(abandonedPoints, emptyPoints); + } + beforeX = x; + } + var olddatapoints = datapoints.points; + datapoints.points = abandonedPoints; + + series.points.radius = series.lines.lineWidth / 2; + // plot the orphan points with a radius of lineWidth/2 + drawSeriesPoints(series); + // reset old info + datapoints.points = olddatapoints; + } + + function drawSeries(series) { + if (series.lines.show) { + drawSeriesLines(series); + if (!series.points.show && !series.bars.show) { + // not necessary if user wants points displayed for everything + drawOrphanedPoints(series); + } + } + if (series.bars.show) drawSeriesBars(series); + if (series.points.show) drawSeriesPoints(series); + } + + function drawSeriesLines(series) { + function plotLine(datapoints, xoffset, yoffset, axisx, axisy) { + let points = datapoints.points, + ps = datapoints.pointsize, + prevx = null, + prevy = null; + + ctx.beginPath(); + for (let i = ps; i < points.length; i += ps) { + var x1 = points[i - ps], + y1 = points[i - ps + 1], + x2 = points[i], + y2 = points[i + 1]; + + if (x1 == null || x2 == null) continue; + + // clip with ymin + if (y1 <= y2 && y1 < axisy.min) { + if (y2 < axisy.min) continue; // line segment is outside + // compute new intersection point + x1 = ((axisy.min - y1) / (y2 - y1)) * (x2 - x1) + x1; + y1 = axisy.min; + } else if (y2 <= y1 && y2 < axisy.min) { + if (y1 < axisy.min) continue; + x2 = ((axisy.min - y1) / (y2 - y1)) * (x2 - x1) + x1; + y2 = axisy.min; + } + + // clip with ymax + if (y1 >= y2 && y1 > axisy.max) { + if (y2 > axisy.max) continue; + x1 = ((axisy.max - y1) / (y2 - y1)) * (x2 - x1) + x1; + y1 = axisy.max; + } else if (y2 >= y1 && y2 > axisy.max) { + if (y1 > axisy.max) continue; + x2 = ((axisy.max - y1) / (y2 - y1)) * (x2 - x1) + x1; + y2 = axisy.max; + } + + // clip with xmin + if (x1 <= x2 && x1 < axisx.min) { + if (x2 < axisx.min) continue; + y1 = ((axisx.min - x1) / (x2 - x1)) * (y2 - y1) + y1; + x1 = axisx.min; + } else if (x2 <= x1 && x2 < axisx.min) { + if (x1 < axisx.min) continue; + y2 = ((axisx.min - x1) / (x2 - x1)) * (y2 - y1) + y1; + x2 = axisx.min; + } + + // clip with xmax + if (x1 >= x2 && x1 > axisx.max) { + if (x2 > axisx.max) continue; + y1 = ((axisx.max - x1) / (x2 - x1)) * (y2 - y1) + y1; + x1 = axisx.max; + } else if (x2 >= x1 && x2 > axisx.max) { + if (x1 > axisx.max) continue; + y2 = ((axisx.max - x1) / (x2 - x1)) * (y2 - y1) + y1; + x2 = axisx.max; + } + + if (x1 != prevx || y1 != prevy) ctx.moveTo(axisx.p2c(x1) + xoffset, axisy.p2c(y1) + yoffset); + + prevx = x2; + prevy = y2; + ctx.lineTo(axisx.p2c(x2) + xoffset, axisy.p2c(y2) + yoffset); + } + ctx.stroke(); + } + + function plotLineArea(datapoints, axisx, axisy) { + let points = datapoints.points, + ps = datapoints.pointsize, + bottom = Math.min(Math.max(0, axisy.min), axisy.max), + i = 0, + areaOpen = false, + ypos = 1, + segmentStart = 0, + segmentEnd = 0; + + // we process each segment in two turns, first forward + // direction to sketch out top, then once we hit the + // end we go backwards to sketch the bottom + while (true) { + if (ps > 0 && i > points.length + ps) break; + + i += ps; // ps is negative if going backwards + + let x1 = points[i - ps], + y1 = points[i - ps + ypos], + x2 = points[i], + y2 = points[i + ypos]; + + if (areaOpen) { + if (ps > 0 && x1 != null && x2 == null) { + // at turning point + segmentEnd = i; + ps = -ps; + ypos = 2; + continue; + } + + if (ps < 0 && i == segmentStart + ps) { + // done with the reverse sweep + ctx.fill(); + areaOpen = false; + ps = -ps; + ypos = 1; + i = segmentStart = segmentEnd + ps; + continue; + } + } + + if (x1 == null || x2 == null) continue; + + // clip x values + + // clip with xmin + if (x1 <= x2 && x1 < axisx.min) { + if (x2 < axisx.min) continue; + y1 = ((axisx.min - x1) / (x2 - x1)) * (y2 - y1) + y1; + x1 = axisx.min; + } else if (x2 <= x1 && x2 < axisx.min) { + if (x1 < axisx.min) continue; + y2 = ((axisx.min - x1) / (x2 - x1)) * (y2 - y1) + y1; + x2 = axisx.min; + } + + // clip with xmax + if (x1 >= x2 && x1 > axisx.max) { + if (x2 > axisx.max) continue; + y1 = ((axisx.max - x1) / (x2 - x1)) * (y2 - y1) + y1; + x1 = axisx.max; + } else if (x2 >= x1 && x2 > axisx.max) { + if (x1 > axisx.max) continue; + y2 = ((axisx.max - x1) / (x2 - x1)) * (y2 - y1) + y1; + x2 = axisx.max; + } + + if (!areaOpen) { + // open area + ctx.beginPath(); + ctx.moveTo(axisx.p2c(x1), axisy.p2c(bottom)); + areaOpen = true; + } + + // now first check the case where both is outside + if (y1 >= axisy.max && y2 >= axisy.max) { + ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.max)); + ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.max)); + continue; + } else if (y1 <= axisy.min && y2 <= axisy.min) { + ctx.lineTo(axisx.p2c(x1), axisy.p2c(axisy.min)); + ctx.lineTo(axisx.p2c(x2), axisy.p2c(axisy.min)); + continue; + } + + // else it's a bit more complicated, there might + // be a flat maxed out rectangle first, then a + // triangular cutout or reverse; to find these + // keep track of the current x values + var x1old = x1, + x2old = x2; + + // clip the y values, without shortcutting, we + // go through all cases in turn + + // clip with ymin + if (y1 <= y2 && y1 < axisy.min && y2 >= axisy.min) { + x1 = ((axisy.min - y1) / (y2 - y1)) * (x2 - x1) + x1; + y1 = axisy.min; + } else if (y2 <= y1 && y2 < axisy.min && y1 >= axisy.min) { + x2 = ((axisy.min - y1) / (y2 - y1)) * (x2 - x1) + x1; + y2 = axisy.min; + } + + // clip with ymax + if (y1 >= y2 && y1 > axisy.max && y2 <= axisy.max) { + x1 = ((axisy.max - y1) / (y2 - y1)) * (x2 - x1) + x1; + y1 = axisy.max; + } else if (y2 >= y1 && y2 > axisy.max && y1 <= axisy.max) { + x2 = ((axisy.max - y1) / (y2 - y1)) * (x2 - x1) + x1; + y2 = axisy.max; + } + + // if the x value was changed we got a rectangle + // to fill + if (x1 != x1old) { + ctx.lineTo(axisx.p2c(x1old), axisy.p2c(y1)); + // it goes to (x1, y1), but we fill that below + } + + // fill triangular section, this sometimes result + // in redundant points if (x1, y1) hasn't changed + // from previous line to, but we just ignore that + ctx.lineTo(axisx.p2c(x1), axisy.p2c(y1)); + ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2)); + + // fill the other rectangle if it's there + if (x2 != x2old) { + ctx.lineTo(axisx.p2c(x2), axisy.p2c(y2)); + ctx.lineTo(axisx.p2c(x2old), axisy.p2c(y2)); + } + } + } + + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + ctx.lineJoin = 'round'; + + let lw = series.lines.lineWidth, + sw = series.shadowSize; + // FIXME: consider another form of shadow when filling is turned on + if (lw > 0 && sw > 0) { + // draw shadow as a thick and thin line with transparency + ctx.lineWidth = sw; + ctx.strokeStyle = 'rgba(0,0,0,0.1)'; + // position shadow at angle from the mid of line + var angle = Math.PI / 18; + plotLine( + series.datapoints, + Math.sin(angle) * (lw / 2 + sw / 2), + Math.cos(angle) * (lw / 2 + sw / 2), + series.xaxis, + series.yaxis + ); + ctx.lineWidth = sw / 2; + plotLine( + series.datapoints, + Math.sin(angle) * (lw / 2 + sw / 4), + Math.cos(angle) * (lw / 2 + sw / 4), + series.xaxis, + series.yaxis + ); + } + + ctx.lineWidth = lw; + ctx.strokeStyle = series.color; + let fillStyle = getFillStyle(series.lines, series.color, 0, plotHeight); + if (fillStyle) { + ctx.fillStyle = fillStyle; + plotLineArea(series.datapoints, series.xaxis, series.yaxis); + } + + if (lw > 0) plotLine(series.datapoints, 0, 0, series.xaxis, series.yaxis); + ctx.restore(); + } + + function drawSeriesPoints(series) { + function plotPoints(datapoints, radius, fillStyle, offset, shadow, axisx, axisy, symbol) { + var points = datapoints.points, + ps = datapoints.pointsize; + + for (let i = 0; i < points.length; i += ps) { + var x = points[i], + y = points[i + 1]; + if (x == null || x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max) continue; + + ctx.beginPath(); + x = axisx.p2c(x); + y = axisy.p2c(y) + offset; + if (symbol == 'circle') ctx.arc(x, y, radius, 0, shadow ? Math.PI : Math.PI * 2, false); + else symbol(ctx, x, y, radius, shadow); + ctx.closePath(); + + if (fillStyle) { + ctx.fillStyle = fillStyle; + ctx.fill(); + } + ctx.stroke(); + } + } + + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + + let lw = series.points.lineWidth, + sw = series.shadowSize, + radius = series.points.radius, + symbol = series.points.symbol; + + // If the user sets the line width to 0, we change it to a very + // small value. A line width of 0 seems to force the default of 1. + // Doing the conditional here allows the shadow setting to still be + // optional even with a lineWidth of 0. + + if (lw == 0) lw = 0.0001; + + if (lw > 0 && sw > 0) { + // draw shadow in two steps + let w = sw / 2; + ctx.lineWidth = w; + ctx.strokeStyle = 'rgba(0,0,0,0.1)'; + plotPoints(series.datapoints, radius, null, w + w / 2, true, series.xaxis, series.yaxis, symbol); + + ctx.strokeStyle = 'rgba(0,0,0,0.2)'; + plotPoints(series.datapoints, radius, null, w / 2, true, series.xaxis, series.yaxis, symbol); + } + + ctx.lineWidth = lw; + ctx.strokeStyle = series.color; + plotPoints( + series.datapoints, + radius, + getFillStyle(series.points, series.color), + 0, + false, + series.xaxis, + series.yaxis, + symbol + ); + ctx.restore(); + } + + function drawBar(x, y, b, barLeft, barRight, fillStyleCallback, axisx, axisy, c, horizontal, lineWidth) { + var left, right, bottom, top, drawLeft, drawRight, drawTop, drawBottom, tmp; + + // in horizontal mode, we start the bar from the left + // instead of from the bottom so it appears to be + // horizontal rather than vertical + if (horizontal) { + drawBottom = drawRight = drawTop = true; + drawLeft = false; + left = b; + right = x; + top = y + barLeft; + bottom = y + barRight; + + // account for negative bars + if (right < left) { + tmp = right; + right = left; + left = tmp; + drawLeft = true; + drawRight = false; + } + } else { + drawLeft = drawRight = drawTop = true; + drawBottom = false; + left = x + barLeft; + right = x + barRight; + bottom = b; + top = y; + + // account for negative bars + if (top < bottom) { + tmp = top; + top = bottom; + bottom = tmp; + drawBottom = true; + drawTop = false; + } + } + + // clip + if (right < axisx.min || left > axisx.max || top < axisy.min || bottom > axisy.max) return; + + if (left < axisx.min) { + left = axisx.min; + drawLeft = false; + } + + if (right > axisx.max) { + right = axisx.max; + drawRight = false; + } + + if (bottom < axisy.min) { + bottom = axisy.min; + drawBottom = false; + } + + if (top > axisy.max) { + top = axisy.max; + drawTop = false; + } + + left = axisx.p2c(left); + bottom = axisy.p2c(bottom); + right = axisx.p2c(right); + top = axisy.p2c(top); + + // fill the bar + if (fillStyleCallback) { + c.fillStyle = fillStyleCallback(bottom, top); + c.fillRect(left, top, right - left, bottom - top); + } + + // draw outline + if (lineWidth > 0 && (drawLeft || drawRight || drawTop || drawBottom)) { + c.beginPath(); + + // FIXME: inline moveTo is buggy with excanvas + c.moveTo(left, bottom); + if (drawLeft) c.lineTo(left, top); + else c.moveTo(left, top); + if (drawTop) c.lineTo(right, top); + else c.moveTo(right, top); + if (drawRight) c.lineTo(right, bottom); + else c.moveTo(right, bottom); + if (drawBottom) c.lineTo(left, bottom); + else c.moveTo(left, bottom); + c.stroke(); + } + } + + function drawSeriesBars(series) { + function plotBars(datapoints, barLeft, barRight, fillStyleCallback, axisx, axisy) { + var points = datapoints.points, + ps = datapoints.pointsize; + + for (let i = 0; i < points.length; i += ps) { + if (points[i] == null) continue; + drawBar( + points[i], + points[i + 1], + points[i + 2], + barLeft, + barRight, + fillStyleCallback, + axisx, + axisy, + ctx, + series.bars.horizontal, + series.bars.lineWidth + ); + } + } + + ctx.save(); + ctx.translate(plotOffset.left, plotOffset.top); + + // FIXME: figure out a way to add shadows (for instance along the right edge) + ctx.lineWidth = series.bars.lineWidth; + ctx.strokeStyle = series.color; + + let barLeft; + + switch (series.bars.align) { + case 'left': + barLeft = 0; + break; + case 'right': + barLeft = -series.bars.barWidth; + break; + default: + barLeft = -series.bars.barWidth / 2; + } + + var fillStyleCallback = series.bars.fill + ? function(bottom, top) { + return getFillStyle(series.bars, series.color, bottom, top); + } + : null; + plotBars(series.datapoints, barLeft, barLeft + series.bars.barWidth, fillStyleCallback, series.xaxis, series.yaxis); + ctx.restore(); + } + + function getFillStyle(filloptions, seriesColor, bottom, top) { + let fill = filloptions.fill; + if (!fill) return null; + + if (filloptions.fillColor) return getColorOrGradient(filloptions.fillColor, bottom, top, seriesColor); + + let c = $.color.parse(seriesColor); + c.a = typeof fill == 'number' ? fill : 0.4; + c.normalize(); + return c.toString(); + } + + function insertLegend() { + if (options.legend.container != null) { + $(options.legend.container).html(''); + } else { + placeholder.find('.legend').remove(); + } + + if (!options.legend.show) { + return; + } + + var fragments = [], + entries = [], + rowStarted = false, + lf = options.legend.labelFormatter, + s, + label; + + // Build a list of legend entries, with each having a label and a color + + for (var i = 0; i < series.length; ++i) { + s = series[i]; + if (s.label) { + label = lf ? lf(s.label, s) : s.label; + if (label) { + entries.push({ + label: label, + color: s.color, + }); + } + } + } + + // Sort the legend using either the default or a custom comparator + + if (options.legend.sorted) { + if ($.isFunction(options.legend.sorted)) { + entries.sort(options.legend.sorted); + } else if (options.legend.sorted == 'reverse') { + entries.reverse(); + } else { + var ascending = options.legend.sorted != 'descending'; + entries.sort(function(a, b) { + // eslint-disable-next-line + return a.label == b.label ? 0 : a.label < b.label != ascending ? 1 : -1; // Logical XOR + }); + } + } + + // Generate markup for the list of entries, in their final order + + for (var i = 0; i < entries.length; ++i) { + let entry = entries[i]; + + if (i % options.legend.noColumns == 0) { + if (rowStarted) fragments.push('
    ' + + entry.label + + '
    ' + fragments.join('') + '
    '; + if (options.legend.container != null) $(options.legend.container).html(table); + else { + var pos = '', + p = options.legend.position, + m = options.legend.margin; + if (m[0] == null) m = [m, m]; + if (p.charAt(0) == 'n') pos += 'top:' + (m[1] + plotOffset.top) + 'px;'; + else if (p.charAt(0) == 's') pos += 'bottom:' + (m[1] + plotOffset.bottom) + 'px;'; + if (p.charAt(1) == 'e') pos += 'right:' + (m[0] + plotOffset.right) + 'px;'; + else if (p.charAt(1) == 'w') pos += 'left:' + (m[0] + plotOffset.left) + 'px;'; + var legend = $( + '
    ' + table.replace('style="', 'style="position:absolute;' + pos + ';') + '
    ' + ).appendTo(placeholder); + if (options.legend.backgroundOpacity != 0.0) { + // put in the transparent background + // separately to avoid blended labels and + // label boxes + let c = options.legend.backgroundColor; + if (c == null) { + c = options.grid.backgroundColor; + if (c && typeof c == 'string') c = $.color.parse(c); + else c = $.color.extract(legend, 'background-color'); + c.a = 1; + c = c.toString(); + } + let div = legend.children(); + $( + '
    ' + ) + .prependTo(legend) + .css('opacity', options.legend.backgroundOpacity); + } + } + } + + // interactive features + + var highlights = [], + redrawTimeout = null; + + // returns the data item the mouse is over, or null if none is found + function findNearbyItem(mouseX, mouseY, seriesFilter) { + let maxDistance = options.grid.mouseActiveRadius, + smallestDistance = maxDistance * maxDistance + 1, + item = null, + i, + j, + ps; + + for (i = series.length - 1; i >= 0; --i) { + if (!seriesFilter(series[i])) continue; + + let s = series[i], + axisx = s.xaxis, + axisy = s.yaxis, + points = s.datapoints.points, + mx = axisx.c2p(mouseX), // precompute some stuff to make the loop faster + my = axisy.c2p(mouseY), + maxx = maxDistance / axisx.scale, + maxy = maxDistance / axisy.scale; + + ps = s.datapoints.pointsize; + // with inverse transforms, we can't use the maxx/maxy + // optimization, sadly + if (axisx.options.inverseTransform) maxx = Number.MAX_VALUE; + if (axisy.options.inverseTransform) maxy = Number.MAX_VALUE; + + if (s.lines.show || s.points.show) { + for (j = 0; j < points.length; j += ps) { + var x = points[j], + y = points[j + 1]; + if (x == null) continue; + + // For points and lines, the cursor must be within a + // certain distance to the data point + if (x - mx > maxx || x - mx < -maxx || y - my > maxy || y - my < -maxy) continue; + + // We have to calculate distances in pixels, not in + // data units, because the scales of the axes may be different + let dx = Math.abs(axisx.p2c(x) - mouseX), + dy = Math.abs(axisy.p2c(y) - mouseY), + dist = dx * dx + dy * dy; // we save the sqrt + + // use <= to ensure last point takes precedence + // (last generally means on top of) + if (dist < smallestDistance) { + smallestDistance = dist; + item = [i, j / ps]; + } + } + } + + if (s.bars.show && !item) { + // no other point can be nearby + + var barLeft, barRight; + + switch (s.bars.align) { + case 'left': + barLeft = 0; + break; + case 'right': + barLeft = -s.bars.barWidth; + break; + default: + barLeft = -s.bars.barWidth / 2; + } + + barRight = barLeft + s.bars.barWidth; + + for (j = 0; j < points.length; j += ps) { + var x = points[j], + y = points[j + 1], + b = points[j + 2]; + if (x == null) continue; + + // for a bar graph, the cursor must be inside the bar + if ( + series[i].bars.horizontal + ? mx <= Math.max(b, x) && mx >= Math.min(b, x) && my >= y + barLeft && my <= y + barRight + : mx >= x + barLeft && mx <= x + barRight && my >= Math.min(b, y) && my <= Math.max(b, y) + ) + item = [i, j / ps]; + } + } + } + + if (item) { + i = item[0]; + j = item[1]; + ps = series[i].datapoints.pointsize; + + return { + datapoint: series[i].datapoints.points.slice(j * ps, (j + 1) * ps), + dataIndex: j, + series: series[i], + seriesIndex: i, + }; + } + + return null; + } + + function onMouseMove(e) { + if (options.grid.hoverable) + triggerClickHoverEvent('plothover', e, function(s) { + return s['hoverable'] != false; + }); + } + + function onMouseLeave(e) { + if (options.grid.hoverable) + triggerClickHoverEvent('plothover', e, function() { + return false; + }); + } + + function onClick(e) { + if (plot.isSelecting) { + return; + } + + triggerClickHoverEvent('plotclick', e, function(s) { + return s['clickable'] != false; + }); + } + + // trigger click or hover event (they send the same parameters + // so we share their code) + function triggerClickHoverEvent(eventname, event, seriesFilter) { + let offset = eventHolder.offset(), + canvasX = event.pageX - offset.left - plotOffset.left, + canvasY = event.pageY - offset.top - plotOffset.top, + pos = canvasToAxisCoords({ left: canvasX, top: canvasY }); + + pos.pageX = event.pageX; + pos.pageY = event.pageY; + + // Add ctrlKey and metaKey to event + pos.ctrlKey = event.ctrlKey; + pos.metaKey = event.metaKey; + + let item = findNearbyItem(canvasX, canvasY, seriesFilter); + + if (item) { + // fill in mouse pos for any listeners out there + item.pageX = parseInt(item.series.xaxis.p2c(item.datapoint[0]) + offset.left + plotOffset.left, 10); + item.pageY = parseInt(item.series.yaxis.p2c(item.datapoint[1]) + offset.top + plotOffset.top, 10); + } + + if (options.grid.autoHighlight) { + // clear auto-highlights + for (let i = 0; i < highlights.length; ++i) { + let h = highlights[i]; + if ( + h.auto == eventname && + !(item && h.series == item.series && h.point[0] == item.datapoint[0] && h.point[1] == item.datapoint[1]) + ) + unhighlight(h.series, h.point); + } + + if (item) highlight(item.series, item.datapoint, eventname); + } + + placeholder.trigger(eventname, [pos, item]); + } + + function triggerRedrawOverlay() { + let t = options.interaction.redrawOverlayInterval; + if (t == -1) { + // skip event queue + drawOverlay(); + return; + } + + if (!redrawTimeout) redrawTimeout = setTimeout(drawOverlay, t); + } + + function drawOverlay() { + redrawTimeout = null; + + // draw highlights + octx.save(); + overlay.clear(); + octx.translate(plotOffset.left, plotOffset.top); + + let i, hi; + for (i = 0; i < highlights.length; ++i) { + hi = highlights[i]; + + if (hi.series.bars.show) drawBarHighlight(hi.series, hi.point); + else drawPointHighlight(hi.series, hi.point); + } + octx.restore(); + + executeHooks(hooks.drawOverlay, [octx]); + } + + function highlight(s, point, auto) { + if (typeof s == 'number') s = series[s]; + + if (typeof point == 'number') { + let ps = s.datapoints.pointsize; + point = s.datapoints.points.slice(ps * point, ps * (point + 1)); + } + + let i = indexOfHighlight(s, point); + if (i == -1) { + highlights.push({ series: s, point: point, auto: auto }); + + triggerRedrawOverlay(); + } else if (!auto) highlights[i].auto = false; + } + + function unhighlight(s, point) { + if (s == null && point == null) { + highlights = []; + triggerRedrawOverlay(); + return; + } + + if (typeof s == 'number') s = series[s]; + + if (typeof point == 'number') { + let ps = s.datapoints.pointsize; + point = s.datapoints.points.slice(ps * point, ps * (point + 1)); + } + + let i = indexOfHighlight(s, point); + if (i != -1) { + highlights.splice(i, 1); + + triggerRedrawOverlay(); + } + } + + function indexOfHighlight(s, p) { + for (let i = 0; i < highlights.length; ++i) { + let h = highlights[i]; + if (h.series == s && h.point[0] == p[0] && h.point[1] == p[1]) return i; + } + return -1; + } + + function drawPointHighlight(series, point) { + var x = point[0], + y = point[1], + axisx = series.xaxis, + axisy = series.yaxis, + highlightColor = + typeof series.highlightColor === 'string' + ? series.highlightColor + : $.color + .parse(series.color) + .scale('a', 0.5) + .toString(); + + if (x < axisx.min || x > axisx.max || y < axisy.min || y > axisy.max) return; + + let pointRadius = series.points.radius + series.points.lineWidth / 2; + octx.lineWidth = pointRadius; + octx.strokeStyle = highlightColor; + let radius = 1.5 * pointRadius; + x = axisx.p2c(x); + y = axisy.p2c(y); + + octx.beginPath(); + if (series.points.symbol == 'circle') octx.arc(x, y, radius, 0, 2 * Math.PI, false); + else series.points.symbol(octx, x, y, radius, false); + octx.closePath(); + octx.stroke(); + } + + function drawBarHighlight(series, point) { + var highlightColor = + typeof series.highlightColor === 'string' + ? series.highlightColor + : $.color + .parse(series.color) + .scale('a', 0.5) + .toString(), + fillStyle = highlightColor, + barLeft; + + switch (series.bars.align) { + case 'left': + barLeft = 0; + break; + case 'right': + barLeft = -series.bars.barWidth; + break; + default: + barLeft = -series.bars.barWidth / 2; + } + + octx.lineWidth = series.bars.lineWidth; + octx.strokeStyle = highlightColor; + + drawBar( + point[0], + point[1], + point[2] || 0, + barLeft, + barLeft + series.bars.barWidth, + function() { + return fillStyle; + }, + series.xaxis, + series.yaxis, + octx, + series.bars.horizontal, + series.bars.lineWidth + ); + } + + function getColorOrGradient(spec, bottom, top, defaultColor) { + if (typeof spec == 'string') return spec; + else { + // assume this is a gradient spec; IE currently only + // supports a simple vertical gradient properly, so that's + // what we support too + let gradient = ctx.createLinearGradient(0, top, 0, bottom); + + for (let i = 0, l = spec.colors.length; i < l; ++i) { + let c = spec.colors[i]; + if (typeof c != 'string') { + let co = $.color.parse(defaultColor); + if (c.brightness != null) co = co.scale('rgb', c.brightness); + if (c.opacity != null) co.a *= c.opacity; + c = co.toString(); + } + gradient.addColorStop(i / (l - 1), c); + } + + return gradient; + } + } + } + + // Add the plot function to the top level of the jQuery object + + $.plot = function(placeholder, data, options) { + //var t0 = new Date(); + let plot = new Plot($(placeholder), data, options, $.plot.plugins); + //(window.console ? console.log : alert)("time used (msecs): " + ((new Date()).getTime() - t0.getTime())); + return plot; + }; + + $.plot.version = '0.8.3'; + + $.plot.plugins = []; + + // Also add the plot function as a chainable property + + $.fn.plot = function(data, options) { + return this.each(function() { + $.plot(this, data, options); + }); + }; + + // round to nearby lower multiple of base + function floorInBase(n, base) { + return base * Math.floor(n / base); + } +})(window.jQuery); diff --git a/pkg/ui/react-app/src/vendor/flot/jquery.flot.stack.js b/pkg/ui/react-app/src/vendor/flot/jquery.flot.stack.js new file mode 100644 index 00000000000..b721606cc77 --- /dev/null +++ b/pkg/ui/react-app/src/vendor/flot/jquery.flot.stack.js @@ -0,0 +1,205 @@ +/** + * + * THIS FILE WAS COPIED INTO THANOS FROM GRAFANA'S VENDORED FORK OF FLOT + * (LIVING AT https://github.com/grafana/grafana/tree/master/public/vendor/flot), + * WHICH CONTAINS FIXES FOR DISPLAYING NULL VALUES IN STACKED GRAPHS. THE ORIGINAL + * FLOT CODE WAS LICENSED UNDER THE MIT LICENSE AS STATED BELOW. ADDITIONAL + * CHANGES HAVE BEEN CONTRIBUTED TO THE GRAFANA FORK UNDER AN APACHE 2 LICENSE, SEE + * https://github.com/grafana/grafana/blob/master/license. + * + */ + +/* eslint-disable prefer-spread */ +/* eslint-disable no-loop-func */ +/* eslint-disable @typescript-eslint/no-this-alias */ +/* eslint-disable no-redeclare */ +/* eslint-disable no-useless-escape */ +/* eslint-disable prefer-const */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable eqeqeq */ +/* eslint-disable no-var */ + +/* Flot plugin for stacking data sets rather than overlyaing them. + +Copyright (c) 2007-2014 IOLA and Ole Laursen. +Licensed under the MIT license. + +The plugin assumes the data is sorted on x (or y if stacking horizontally). +For line charts, it is assumed that if a line has an undefined gap (from a +null point), then the line above it should have the same gap - insert zeros +instead of "null" if you want another behaviour. This also holds for the start +and end of the chart. Note that stacking a mix of positive and negative values +in most instances doesn't make sense (so it looks weird). + +Two or more series are stacked when their "stack" attribute is set to the same +key (which can be any number or string or just "true"). To specify the default +stack, you can set the stack option like this: + + series: { + stack: null/false, true, or a key (number/string) + } + +You can also specify it for a single series, like this: + + $.plot( $("#placeholder"), [{ + data: [ ... ], + stack: true + }]) + +The stacking order is determined by the order of the data series in the array +(later series end up on top of the previous). + +Internally, the plugin modifies the datapoints in each series, adding an +offset to the y value. For line series, extra data points are inserted through +interpolation. If there's a second y value, it's also adjusted (e.g for bar +charts or filled areas). + +*/ + +(function($) { + const options = { + series: { stack: null }, // or number/string + }; + + function init(plot) { + function findMatchingSeries(s, allseries) { + let res = null; + for (let i = 0; i < allseries.length; ++i) { + if (s == allseries[i]) break; + + if (allseries[i].stack == s.stack) res = allseries[i]; + } + + return res; + } + + function stackData(plot, s, datapoints) { + if (s.stack == null || s.stack === false) return; + + const other = findMatchingSeries(s, plot.getData()); + if (!other) return; + + let ps = datapoints.pointsize, + points = datapoints.points, + otherps = other.datapoints.pointsize, + otherpoints = other.datapoints.points, + newpoints = [], + px, + py, + intery, + qx, + qy, + bottom, + withlines = s.lines.show, + horizontal = s.bars.horizontal, + withbottom = ps > 2 && (horizontal ? datapoints.format[2].x : datapoints.format[2].y), + withsteps = withlines && s.lines.steps, + keyOffset = horizontal ? 1 : 0, + accumulateOffset = horizontal ? 0 : 1, + i = 0, + j = 0, + l, + m; + + while (true) { + if (i >= points.length && j >= otherpoints.length) break; + + l = newpoints.length; + + if (i < points.length && points[i] == null) { + // copy gaps + for (m = 0; m < ps; ++m) newpoints.push(points[i + m]); + i += ps; + } else if (i >= points.length) { + // take the remaining points from the previous series + for (m = 0; m < ps; ++m) newpoints.push(otherpoints[j + m]); + if (withbottom) newpoints[l + 2] = otherpoints[j + accumulateOffset]; + j += otherps; + } else if (j >= otherpoints.length) { + // take the remaining points from the current series + for (m = 0; m < ps; ++m) newpoints.push(points[i + m]); + i += ps; + } else if (j < otherpoints.length && otherpoints[j] == null) { + // ignore point + j += otherps; + } else { + // cases where we actually got two points + px = points[i + keyOffset]; + py = points[i + accumulateOffset]; + qx = otherpoints[j + keyOffset]; + qy = otherpoints[j + accumulateOffset]; + bottom = 0; + + if (px == qx) { + for (m = 0; m < ps; ++m) newpoints.push(points[i + m]); + + newpoints[l + accumulateOffset] += qy; + bottom = qy; + + i += ps; + j += otherps; + } else if (px > qx) { + // take the point from the previous series so that next series will correctly stack + if (i == 0) { + for (m = 0; m < ps; ++m) newpoints.push(otherpoints[j + m]); + bottom = qy; + } + // we got past point below, might need to + // insert interpolated extra point + if (i > 0 && points[i - ps] != null) { + intery = py + ((points[i - ps + accumulateOffset] - py) * (qx - px)) / (points[i - ps + keyOffset] - px); + newpoints.push(qx); + newpoints.push(intery + qy); + for (m = 2; m < ps; ++m) newpoints.push(points[i + m]); + bottom = qy; + } + + j += otherps; + } else { + // px < qx + for (m = 0; m < ps; ++m) newpoints.push(points[i + m]); + + // we might be able to interpolate a point below, + // this can give us a better y + if (j > 0 && otherpoints[j - otherps] != null) + bottom = + qy + + ((otherpoints[j - otherps + accumulateOffset] - qy) * (px - qx)) / + (otherpoints[j - otherps + keyOffset] - qx); + + newpoints[l + accumulateOffset] += bottom; + + i += ps; + } + + if (l != newpoints.length && withbottom) newpoints[l + 2] = bottom; + } + + // maintain the line steps invariant + if ( + withsteps && + l != newpoints.length && + l > 0 && + newpoints[l] != null && + newpoints[l] != newpoints[l - ps] && + newpoints[l + 1] != newpoints[l - ps + 1] + ) { + for (m = 0; m < ps; ++m) newpoints[l + ps + m] = newpoints[l + m]; + newpoints[l + 1] = newpoints[l - ps + 1]; + } + } + + datapoints.points = newpoints; + } + + plot.hooks.processDatapoints.push(stackData); + } + + $.plot.plugins.push({ + init: init, + options: options, + name: 'stack', + version: '1.2', + }); +})(window.jQuery); diff --git a/pkg/ui/react-app/src/vendor/flot/jquery.flot.time.js b/pkg/ui/react-app/src/vendor/flot/jquery.flot.time.js new file mode 100644 index 00000000000..0b01c59fa34 --- /dev/null +++ b/pkg/ui/react-app/src/vendor/flot/jquery.flot.time.js @@ -0,0 +1,482 @@ +/** + * + * THIS FILE WAS COPIED INTO THANOS FROM GRAFANA'S VENDORED FORK OF FLOT + * (LIVING AT https://github.com/grafana/grafana/tree/master/public/vendor/flot), + * WHICH CONTAINS FIXES FOR DISPLAYING NULL VALUES IN STACKED GRAPHS. THE ORIGINAL + * FLOT CODE WAS LICENSED UNDER THE MIT LICENSE AS STATED BELOW. ADDITIONAL + * CHANGES HAVE BEEN CONTRIBUTED TO THE GRAFANA FORK UNDER AN APACHE 2 LICENSE, SEE + * https://github.com/grafana/grafana/blob/master/license. + * + */ + +/* eslint-disable prefer-rest-params */ +/* eslint-disable no-useless-concat */ +/* eslint-disable default-case */ +/* eslint-disable prefer-spread */ +/* eslint-disable no-loop-func */ +/* eslint-disable @typescript-eslint/no-this-alias */ +/* eslint-disable no-redeclare */ +/* eslint-disable no-useless-escape */ +/* eslint-disable prefer-const */ +/* eslint-disable @typescript-eslint/explicit-function-return-type */ +/* eslint-disable @typescript-eslint/no-use-before-define */ +/* eslint-disable eqeqeq */ +/* eslint-disable no-var */ + +/* Pretty handling of time axes. + +Copyright (c) 2007-2013 IOLA and Ole Laursen. +Licensed under the MIT license. + +Set axis.mode to "time" to enable. See the section "Time series data" in +API.txt for details. + +*/ + +(function($) { + const options = { + xaxis: { + timezone: null, // "browser" for local to the client or timezone for timezone-js + timeformat: null, // format string to use + twelveHourClock: false, // 12 or 24 time in time mode + monthNames: null, // list of names of months + }, + }; + + // round to nearby lower multiple of base + + function floorInBase(n, base) { + return base * Math.floor(n / base); + } + + // Returns a string with the date d formatted according to fmt. + // A subset of the Open Group's strftime format is supported. + + function formatDate(d, fmt, monthNames, dayNames) { + if (typeof d.strftime == 'function') { + return d.strftime(fmt); + } + + const leftPad = function(n, pad) { + n = '' + n; + pad = '' + (pad == null ? '0' : pad); + return n.length == 1 ? pad + n : n; + }; + + const r = []; + let escape = false; + const hours = d.getHours(); + const isAM = hours < 12; + + if (monthNames == null) { + monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; + } + + if (dayNames == null) { + dayNames = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']; + } + + let hours12; + + if (hours > 12) { + hours12 = hours - 12; + } else if (hours == 0) { + hours12 = 12; + } else { + hours12 = hours; + } + + for (let i = 0; i < fmt.length; ++i) { + let c = fmt.charAt(i); + + if (escape) { + switch (c) { + case 'a': + c = '' + dayNames[d.getDay()]; + break; + case 'b': + c = '' + monthNames[d.getMonth()]; + break; + case 'd': + c = leftPad(d.getDate(), ''); + break; + case 'e': + c = leftPad(d.getDate(), ' '); + break; + case 'h': // For back-compat with 0.7; remove in 1.0 + case 'H': + c = leftPad(hours); + break; + case 'I': + c = leftPad(hours12); + break; + case 'l': + c = leftPad(hours12, ' '); + break; + case 'm': + c = leftPad(d.getMonth() + 1, ''); + break; + case 'M': + c = leftPad(d.getMinutes()); + break; + // quarters not in Open Group's strftime specification + case 'q': + c = '' + (Math.floor(d.getMonth() / 3) + 1); + break; + case 'S': + c = leftPad(d.getSeconds()); + break; + case 'y': + c = leftPad(d.getFullYear() % 100); + break; + case 'Y': + c = '' + d.getFullYear(); + break; + case 'p': + c = isAM ? '' + 'am' : '' + 'pm'; + break; + case 'P': + c = isAM ? '' + 'AM' : '' + 'PM'; + break; + case 'w': + c = '' + d.getDay(); + break; + } + r.push(c); + escape = false; + } else { + if (c == '%') { + escape = true; + } else { + r.push(c); + } + } + } + + return r.join(''); + } + + // To have a consistent view of time-based data independent of which time + // zone the client happens to be in we need a date-like object independent + // of time zones. This is done through a wrapper that only calls the UTC + // versions of the accessor methods. + + function makeUtcWrapper(d) { + function addProxyMethod(sourceObj, sourceMethod, targetObj, targetMethod) { + sourceObj[sourceMethod] = function() { + return targetObj[targetMethod].apply(targetObj, arguments); + }; + } + + const utc = { + date: d, + }; + + // support strftime, if found + + if (d.strftime != undefined) { + addProxyMethod(utc, 'strftime', d, 'strftime'); + } + + addProxyMethod(utc, 'getTime', d, 'getTime'); + addProxyMethod(utc, 'setTime', d, 'setTime'); + + const props = ['Date', 'Day', 'FullYear', 'Hours', 'Milliseconds', 'Minutes', 'Month', 'Seconds']; + + for (let p = 0; p < props.length; p++) { + addProxyMethod(utc, 'get' + props[p], d, 'getUTC' + props[p]); + addProxyMethod(utc, 'set' + props[p], d, 'setUTC' + props[p]); + } + + return utc; + } + + // select time zone strategy. This returns a date-like object tied to the + // desired timezone + + function dateGenerator(ts, opts) { + if (opts.timezone == 'browser') { + return new Date(ts); + } else if (!opts.timezone || opts.timezone == 'utc') { + return makeUtcWrapper(new Date(ts)); + } + // } else if (typeof timezoneJS != 'undefined' && typeof timezoneJS.Date != 'undefined') { + // const d = new timezoneJS.Date(); + // // timezone-js is fickle, so be sure to set the time zone before + // // setting the time. + // d.setTimezone(opts.timezone); + // d.setTime(ts); + // return d; + // } + return makeUtcWrapper(new Date(ts)); + } + + // map of app. size of time units in milliseconds + + const timeUnitSize = { + second: 1000, + minute: 60 * 1000, + hour: 60 * 60 * 1000, + day: 24 * 60 * 60 * 1000, + month: 30 * 24 * 60 * 60 * 1000, + quarter: 3 * 30 * 24 * 60 * 60 * 1000, + year: 365.2425 * 24 * 60 * 60 * 1000, + }; + + // the allowed tick sizes, after 1 year we use + // an integer algorithm + + const baseSpec = [ + [1, 'second'], + [2, 'second'], + [5, 'second'], + [10, 'second'], + [30, 'second'], + [1, 'minute'], + [2, 'minute'], + [5, 'minute'], + [10, 'minute'], + [30, 'minute'], + [1, 'hour'], + [2, 'hour'], + [4, 'hour'], + [8, 'hour'], + [12, 'hour'], + [1, 'day'], + [2, 'day'], + [3, 'day'], + [0.25, 'month'], + [0.5, 'month'], + [1, 'month'], + [2, 'month'], + ]; + + // we don't know which variant(s) we'll need yet, but generating both is + // cheap + + const specMonths = baseSpec.concat([[3, 'month'], [6, 'month'], [1, 'year']]); + const specQuarters = baseSpec.concat([[1, 'quarter'], [2, 'quarter'], [1, 'year']]); + + function init(plot) { + plot.hooks.processOptions.push(function(plot) { + $.each(plot.getAxes(), function(axisName, axis) { + const opts = axis.options; + + if (opts.mode == 'time') { + axis.tickGenerator = function(axis) { + const ticks = []; + const d = dateGenerator(axis.min, opts); + let minSize = 0; + + // make quarter use a possibility if quarters are + // mentioned in either of these options + + const spec = + (opts.tickSize && opts.tickSize[1] === 'quarter') || (opts.minTickSize && opts.minTickSize[1] === 'quarter') + ? specQuarters + : specMonths; + + if (opts.minTickSize != null) { + if (typeof opts.tickSize == 'number') { + minSize = opts.tickSize; + } else { + minSize = opts.minTickSize[0] * timeUnitSize[opts.minTickSize[1]]; + } + } + + for (var i = 0; i < spec.length - 1; ++i) { + if ( + axis.delta < (spec[i][0] * timeUnitSize[spec[i][1]] + spec[i + 1][0] * timeUnitSize[spec[i + 1][1]]) / 2 && + spec[i][0] * timeUnitSize[spec[i][1]] >= minSize + ) { + break; + } + } + + let size = spec[i][0]; + let unit = spec[i][1]; + + // special-case the possibility of several years + + if (unit == 'year') { + // if given a minTickSize in years, just use it, + // ensuring that it's an integer + + if (opts.minTickSize != null && opts.minTickSize[1] == 'year') { + size = Math.floor(opts.minTickSize[0]); + } else { + const magn = Math.pow(10, Math.floor(Math.log(axis.delta / timeUnitSize.year) / Math.LN10)); + const norm = axis.delta / timeUnitSize.year / magn; + + if (norm < 1.5) { + size = 1; + } else if (norm < 3) { + size = 2; + } else if (norm < 7.5) { + size = 5; + } else { + size = 10; + } + + size *= magn; + } + + // minimum size for years is 1 + + if (size < 1) { + size = 1; + } + } + + axis.tickSize = opts.tickSize || [size, unit]; + const tickSize = axis.tickSize[0]; + unit = axis.tickSize[1]; + + const step = tickSize * timeUnitSize[unit]; + + if (unit == 'second') { + d.setSeconds(floorInBase(d.getSeconds(), tickSize)); + } else if (unit == 'minute') { + d.setMinutes(floorInBase(d.getMinutes(), tickSize)); + } else if (unit == 'hour') { + d.setHours(floorInBase(d.getHours(), tickSize)); + } else if (unit == 'month') { + d.setMonth(floorInBase(d.getMonth(), tickSize)); + } else if (unit == 'quarter') { + d.setMonth(3 * floorInBase(d.getMonth() / 3, tickSize)); + } else if (unit == 'year') { + d.setFullYear(floorInBase(d.getFullYear(), tickSize)); + } + + // reset smaller components + + d.setMilliseconds(0); + + if (step >= timeUnitSize.minute) { + d.setSeconds(0); + } + if (step >= timeUnitSize.hour) { + d.setMinutes(0); + } + if (step >= timeUnitSize.day) { + d.setHours(0); + } + if (step >= timeUnitSize.day * 4) { + d.setDate(1); + } + if (step >= timeUnitSize.month * 2) { + d.setMonth(floorInBase(d.getMonth(), 3)); + } + if (step >= timeUnitSize.quarter * 2) { + d.setMonth(floorInBase(d.getMonth(), 6)); + } + if (step >= timeUnitSize.year) { + d.setMonth(0); + } + + let carry = 0; + let v = Number.NaN; + let prev; + + do { + prev = v; + v = d.getTime(); + ticks.push(v); + + if (unit == 'month' || unit == 'quarter') { + if (tickSize < 1) { + // a bit complicated - we'll divide the + // month/quarter up but we need to take + // care of fractions so we don't end up in + // the middle of a day + + d.setDate(1); + const start = d.getTime(); + d.setMonth(d.getMonth() + (unit == 'quarter' ? 3 : 1)); + const end = d.getTime(); + d.setTime(v + carry * timeUnitSize.hour + (end - start) * tickSize); + carry = d.getHours(); + d.setHours(0); + } else { + d.setMonth(d.getMonth() + tickSize * (unit == 'quarter' ? 3 : 1)); + } + } else if (unit == 'year') { + d.setFullYear(d.getFullYear() + tickSize); + } else { + d.setTime(v + step); + } + } while (v < axis.max && v != prev); + + return ticks; + }; + + axis.tickFormatter = function(v, axis) { + const d = dateGenerator(v, axis.options); + + // first check global format + + if (opts.timeformat != null) { + return formatDate(d, opts.timeformat, opts.monthNames, opts.dayNames); + } + + // possibly use quarters if quarters are mentioned in + // any of these places + + const useQuarters = + (axis.options.tickSize && axis.options.tickSize[1] == 'quarter') || + (axis.options.minTickSize && axis.options.minTickSize[1] == 'quarter'); + + const t = axis.tickSize[0] * timeUnitSize[axis.tickSize[1]]; + const span = axis.max - axis.min; + const suffix = opts.twelveHourClock ? ' %p' : ''; + const hourCode = opts.twelveHourClock ? '%I' : '%H'; + let fmt; + + if (t < timeUnitSize.minute) { + fmt = hourCode + ':%M:%S' + suffix; + } else if (t < timeUnitSize.day) { + if (span < 2 * timeUnitSize.day) { + fmt = hourCode + ':%M' + suffix; + } else { + fmt = '%b %d ' + hourCode + ':%M' + suffix; + } + } else if (t < timeUnitSize.month) { + fmt = '%b %d'; + } else if ((useQuarters && t < timeUnitSize.quarter) || (!useQuarters && t < timeUnitSize.year)) { + if (span < timeUnitSize.year) { + fmt = '%b'; + } else { + fmt = '%b %Y'; + } + } else if (useQuarters && t < timeUnitSize.year) { + if (span < timeUnitSize.year) { + fmt = 'Q%q'; + } else { + fmt = 'Q%q %Y'; + } + } else { + fmt = '%Y'; + } + + const rt = formatDate(d, fmt, opts.monthNames, opts.dayNames); + + return rt; + }; + } + }); + }); + } + + $.plot.plugins.push({ + init: init, + options: options, + name: 'time', + version: '1.0', + }); + + // Time-axis support used to be in Flot core, which exposed the + // formatDate function on the plot object. Various plugins depend + // on the function, so we need to re-expose it here. + + $.plot.formatDate = formatDate; +})(window.jQuery); diff --git a/pkg/ui/react-app/tsconfig.json b/pkg/ui/react-app/tsconfig.json new file mode 100644 index 00000000000..15dc86f99ba --- /dev/null +++ b/pkg/ui/react-app/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "preserve" + }, + "include": [ + "src", "test", "react-app-env.d.ts" + ] +} diff --git a/pkg/ui/react-app/yarn.lock b/pkg/ui/react-app/yarn.lock new file mode 100644 index 00000000000..f650f09a850 --- /dev/null +++ b/pkg/ui/react-app/yarn.lock @@ -0,0 +1,11424 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" + integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/core@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.0.tgz#9b00f73554edd67bebc86df8303ef678be3d7b48" + integrity sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.0" + "@babel/helpers" "^7.6.0" + "@babel/parser" "^7.6.0" + "@babel/template" "^7.6.0" + "@babel/traverse" "^7.6.0" + "@babel/types" "^7.6.0" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/core@^7.1.0", "@babel/core@^7.4.5": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" + integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.4" + "@babel/helpers" "^7.6.2" + "@babel/parser" "^7.6.4" + "@babel/template" "^7.6.0" + "@babel/traverse" "^7.6.3" + "@babel/types" "^7.6.3" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.4.0", "@babel/generator@^7.6.0", "@babel/generator@^7.6.3", "@babel/generator@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" + integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w== + dependencies: + "@babel/types" "^7.6.3" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + +"@babel/helper-annotate-as-pure@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" + integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" + integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== + dependencies: + "@babel/helper-explode-assignable-expression" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-builder-react-jsx@^7.3.0": + version "7.3.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" + integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== + dependencies: + "@babel/types" "^7.3.0" + esutils "^2.0.0" + +"@babel/helper-call-delegate@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" + integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== + dependencies: + "@babel/helper-hoist-variables" "^7.4.4" + "@babel/traverse" "^7.4.4" + "@babel/types" "^7.4.4" + +"@babel/helper-create-class-features-plugin@^7.5.5", "@babel/helper-create-class-features-plugin@^7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" + integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng== + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-member-expression-to-functions" "^7.5.5" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.5.5" + "@babel/helper-split-export-declaration" "^7.4.4" + +"@babel/helper-define-map@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" + integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/types" "^7.5.5" + lodash "^4.17.13" + +"@babel/helper-explode-assignable-expression@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" + integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== + dependencies: + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-function-name@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== + dependencies: + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-get-function-arity@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-hoist-variables@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" + integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== + dependencies: + "@babel/types" "^7.4.4" + +"@babel/helper-member-expression-to-functions@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" + integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== + dependencies: + "@babel/types" "^7.5.5" + +"@babel/helper-module-imports@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" + integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" + integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-simple-access" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/template" "^7.4.4" + "@babel/types" "^7.5.5" + lodash "^4.17.13" + +"@babel/helper-optimise-call-expression@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" + integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-plugin-utils@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== + +"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" + integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== + dependencies: + lodash "^4.17.13" + +"@babel/helper-remap-async-to-generator@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" + integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-wrap-function" "^7.1.0" + "@babel/template" "^7.1.0" + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-replace-supers@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" + integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.5.5" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/traverse" "^7.5.5" + "@babel/types" "^7.5.5" + +"@babel/helper-simple-access@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" + integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== + dependencies: + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-split-export-declaration@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" + integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== + dependencies: + "@babel/types" "^7.4.4" + +"@babel/helper-wrap-function@^7.1.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" + integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/template" "^7.1.0" + "@babel/traverse" "^7.1.0" + "@babel/types" "^7.2.0" + +"@babel/helpers@^7.6.0", "@babel/helpers@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153" + integrity sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA== + dependencies: + "@babel/template" "^7.6.0" + "@babel/traverse" "^7.6.2" + "@babel/types" "^7.6.0" + +"@babel/highlight@^7.0.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" + integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.6.0", "@babel/parser@^7.6.3", "@babel/parser@^7.6.4": + version "7.6.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" + integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A== + +"@babel/plugin-proposal-async-generator-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" + integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-remap-async-to-generator" "^7.1.0" + "@babel/plugin-syntax-async-generators" "^7.2.0" + +"@babel/plugin-proposal-class-properties@7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4" + integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.5.5" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-proposal-decorators@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.6.0.tgz#6659d2572a17d70abd68123e89a12a43d90aa30c" + integrity sha512-ZSyYw9trQI50sES6YxREXKu+4b7MAg6Qx2cvyDDYjP2Hpzd3FleOUwC9cqn1+za8d0A2ZU8SHujxFao956efUg== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.6.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-decorators" "^7.2.0" + +"@babel/plugin-proposal-dynamic-import@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506" + integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-dynamic-import" "^7.2.0" + +"@babel/plugin-proposal-json-strings@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" + integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-json-strings" "^7.2.0" + +"@babel/plugin-proposal-object-rest-spread@7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58" + integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + +"@babel/plugin-proposal-object-rest-spread@^7.5.5", "@babel/plugin-proposal-object-rest-spread@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" + integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + +"@babel/plugin-proposal-optional-catch-binding@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" + integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + +"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz#05413762894f41bfe42b9a5e80919bd575dcc802" + integrity sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.4.4" + regexpu-core "^4.6.0" + +"@babel/plugin-syntax-async-generators@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" + integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-decorators@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" + integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-dynamic-import@7.2.0", "@babel/plugin-syntax-dynamic-import@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" + integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-flow@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" + integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-json-strings@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" + integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-jsx@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" + integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" + integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" + integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-syntax-typescript@^7.2.0": + version "7.3.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz#a7cc3f66119a9f7ebe2de5383cce193473d65991" + integrity sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-arrow-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" + integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-async-to-generator@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" + integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-remap-async-to-generator" "^7.1.0" + +"@babel/plugin-transform-block-scoped-functions@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" + integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-block-scoping@^7.6.0", "@babel/plugin-transform-block-scoping@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" + integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + lodash "^4.17.13" + +"@babel/plugin-transform-classes@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" + integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-define-map" "^7.5.5" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.5.5" + "@babel/helper-split-export-declaration" "^7.4.4" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" + integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-destructuring@7.6.0", "@babel/plugin-transform-destructuring@^7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" + integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz#44abb948b88f0199a627024e1508acaf8dc9b2f9" + integrity sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.4.4" + regexpu-core "^4.6.0" + +"@babel/plugin-transform-duplicate-keys@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" + integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-exponentiation-operator@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" + integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-flow-strip-types@7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz#d267a081f49a8705fc9146de0768c6b58dccd8f7" + integrity sha512-WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-flow" "^7.2.0" + +"@babel/plugin-transform-for-of@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" + integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-function-name@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" + integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-literals@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" + integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-member-expression-literals@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" + integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-modules-amd@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" + integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== + dependencies: + "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" + +"@babel/plugin-transform-modules-commonjs@^7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486" + integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g== + dependencies: + "@babel/helper-module-transforms" "^7.4.4" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-simple-access" "^7.1.0" + babel-plugin-dynamic-import-node "^2.3.0" + +"@babel/plugin-transform-modules-systemjs@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" + integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== + dependencies: + "@babel/helper-hoist-variables" "^7.4.4" + "@babel/helper-plugin-utils" "^7.0.0" + babel-plugin-dynamic-import-node "^2.3.0" + +"@babel/plugin-transform-modules-umd@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" + integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== + dependencies: + "@babel/helper-module-transforms" "^7.1.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf" + integrity sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw== + dependencies: + regexpu-core "^4.6.0" + +"@babel/plugin-transform-new-target@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" + integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-object-super@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" + integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.5.5" + +"@babel/plugin-transform-parameters@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" + integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== + dependencies: + "@babel/helper-call-delegate" "^7.4.4" + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-property-literals@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" + integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-react-constant-elements@^7.0.0": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.6.3.tgz#9fc9ea060b983c7c035acbe481cbe1fb1245bfff" + integrity sha512-1/YogSSU7Tby9rq2VCmhuRg+6pxsHy2rI7w/oo8RKoBt6uBUFG+mk6x13kK+FY1/ggN92HAfg7ADd1v1+NCOKg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-react-display-name@7.2.0", "@babel/plugin-transform-react-display-name@^7.0.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" + integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-react-jsx-self@^7.0.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba" + integrity sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@babel/plugin-transform-react-jsx-source@^7.0.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.5.0.tgz#583b10c49cf057e237085bcbd8cc960bd83bd96b" + integrity sha512-58Q+Jsy4IDCZx7kqEZuSDdam/1oW8OdDX8f+Loo6xyxdfg1yF0GE2XNJQSTZCaMol93+FBzpWiPEwtbMloAcPg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@babel/plugin-transform-react-jsx@^7.0.0": + version "7.3.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" + integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== + dependencies: + "@babel/helper-builder-react-jsx" "^7.3.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-jsx" "^7.2.0" + +"@babel/plugin-transform-regenerator@^7.4.5": + version "7.4.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" + integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== + dependencies: + regenerator-transform "^0.14.0" + +"@babel/plugin-transform-reserved-words@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" + integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-runtime@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.0.tgz#85a3cce402b28586138e368fce20ab3019b9713e" + integrity sha512-Da8tMf7uClzwUm/pnJ1S93m/aRXmoYNDD7TkHua8xBDdaAs54uZpTWvEt6NGwmoVMb9mZbntfTqmG2oSzN/7Vg== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + resolve "^1.8.1" + semver "^5.5.1" + +"@babel/plugin-transform-shorthand-properties@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" + integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-spread@^7.2.0", "@babel/plugin-transform-spread@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd" + integrity sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-sticky-regex@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" + integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.0.0" + +"@babel/plugin-transform-template-literals@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" + integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-typeof-symbol@^7.2.0": + version "7.2.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" + integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/plugin-transform-typescript@^7.6.0": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz#dddb50cf3b8b2ef70b22e5326e9a91f05a1db13b" + integrity sha512-aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.6.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-syntax-typescript" "^7.2.0" + +"@babel/plugin-transform-unicode-regex@^7.4.4", "@babel/plugin-transform-unicode-regex@^7.6.2": + version "7.6.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz#b692aad888a7e8d8b1b214be6b9dc03d5031f698" + integrity sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-regex" "^7.4.4" + regexpu-core "^4.6.0" + +"@babel/preset-env@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.0.tgz#aae4141c506100bb2bfaa4ac2a5c12b395619e50" + integrity sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-async-generator-functions" "^7.2.0" + "@babel/plugin-proposal-dynamic-import" "^7.5.0" + "@babel/plugin-proposal-json-strings" "^7.2.0" + "@babel/plugin-proposal-object-rest-spread" "^7.5.5" + "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/plugin-syntax-dynamic-import" "^7.2.0" + "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + "@babel/plugin-transform-arrow-functions" "^7.2.0" + "@babel/plugin-transform-async-to-generator" "^7.5.0" + "@babel/plugin-transform-block-scoped-functions" "^7.2.0" + "@babel/plugin-transform-block-scoping" "^7.6.0" + "@babel/plugin-transform-classes" "^7.5.5" + "@babel/plugin-transform-computed-properties" "^7.2.0" + "@babel/plugin-transform-destructuring" "^7.6.0" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/plugin-transform-duplicate-keys" "^7.5.0" + "@babel/plugin-transform-exponentiation-operator" "^7.2.0" + "@babel/plugin-transform-for-of" "^7.4.4" + "@babel/plugin-transform-function-name" "^7.4.4" + "@babel/plugin-transform-literals" "^7.2.0" + "@babel/plugin-transform-member-expression-literals" "^7.2.0" + "@babel/plugin-transform-modules-amd" "^7.5.0" + "@babel/plugin-transform-modules-commonjs" "^7.6.0" + "@babel/plugin-transform-modules-systemjs" "^7.5.0" + "@babel/plugin-transform-modules-umd" "^7.2.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.0" + "@babel/plugin-transform-new-target" "^7.4.4" + "@babel/plugin-transform-object-super" "^7.5.5" + "@babel/plugin-transform-parameters" "^7.4.4" + "@babel/plugin-transform-property-literals" "^7.2.0" + "@babel/plugin-transform-regenerator" "^7.4.5" + "@babel/plugin-transform-reserved-words" "^7.2.0" + "@babel/plugin-transform-shorthand-properties" "^7.2.0" + "@babel/plugin-transform-spread" "^7.2.0" + "@babel/plugin-transform-sticky-regex" "^7.2.0" + "@babel/plugin-transform-template-literals" "^7.4.4" + "@babel/plugin-transform-typeof-symbol" "^7.2.0" + "@babel/plugin-transform-unicode-regex" "^7.4.4" + "@babel/types" "^7.6.0" + browserslist "^4.6.0" + core-js-compat "^3.1.1" + invariant "^2.2.2" + js-levenshtein "^1.1.3" + semver "^5.5.0" + +"@babel/preset-env@^7.4.5": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271" + integrity sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ== + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-async-generator-functions" "^7.2.0" + "@babel/plugin-proposal-dynamic-import" "^7.5.0" + "@babel/plugin-proposal-json-strings" "^7.2.0" + "@babel/plugin-proposal-object-rest-spread" "^7.6.2" + "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.6.2" + "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/plugin-syntax-dynamic-import" "^7.2.0" + "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + "@babel/plugin-transform-arrow-functions" "^7.2.0" + "@babel/plugin-transform-async-to-generator" "^7.5.0" + "@babel/plugin-transform-block-scoped-functions" "^7.2.0" + "@babel/plugin-transform-block-scoping" "^7.6.3" + "@babel/plugin-transform-classes" "^7.5.5" + "@babel/plugin-transform-computed-properties" "^7.2.0" + "@babel/plugin-transform-destructuring" "^7.6.0" + "@babel/plugin-transform-dotall-regex" "^7.6.2" + "@babel/plugin-transform-duplicate-keys" "^7.5.0" + "@babel/plugin-transform-exponentiation-operator" "^7.2.0" + "@babel/plugin-transform-for-of" "^7.4.4" + "@babel/plugin-transform-function-name" "^7.4.4" + "@babel/plugin-transform-literals" "^7.2.0" + "@babel/plugin-transform-member-expression-literals" "^7.2.0" + "@babel/plugin-transform-modules-amd" "^7.5.0" + "@babel/plugin-transform-modules-commonjs" "^7.6.0" + "@babel/plugin-transform-modules-systemjs" "^7.5.0" + "@babel/plugin-transform-modules-umd" "^7.2.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3" + "@babel/plugin-transform-new-target" "^7.4.4" + "@babel/plugin-transform-object-super" "^7.5.5" + "@babel/plugin-transform-parameters" "^7.4.4" + "@babel/plugin-transform-property-literals" "^7.2.0" + "@babel/plugin-transform-regenerator" "^7.4.5" + "@babel/plugin-transform-reserved-words" "^7.2.0" + "@babel/plugin-transform-shorthand-properties" "^7.2.0" + "@babel/plugin-transform-spread" "^7.6.2" + "@babel/plugin-transform-sticky-regex" "^7.2.0" + "@babel/plugin-transform-template-literals" "^7.4.4" + "@babel/plugin-transform-typeof-symbol" "^7.2.0" + "@babel/plugin-transform-unicode-regex" "^7.6.2" + "@babel/types" "^7.6.3" + browserslist "^4.6.0" + core-js-compat "^3.1.1" + invariant "^2.2.2" + js-levenshtein "^1.1.3" + semver "^5.5.0" + +"@babel/preset-react@7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" + integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-react-jsx-self" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + +"@babel/preset-react@^7.0.0": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.6.3.tgz#d5242c828322520205ae4eda5d4f4f618964e2f6" + integrity sha512-07yQhmkZmRAfwREYIQgW0HEwMY9GBJVuPY4Q12UC72AbfaawuupVWa8zQs2tlL+yun45Nv/1KreII/0PLfEsgA== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-transform-react-display-name" "^7.0.0" + "@babel/plugin-transform-react-jsx" "^7.0.0" + "@babel/plugin-transform-react-jsx-self" "^7.0.0" + "@babel/plugin-transform-react-jsx-source" "^7.0.0" + +"@babel/preset-typescript@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.6.0.tgz#25768cb8830280baf47c45ab1a519a9977498c98" + integrity sha512-4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-transform-typescript" "^7.6.0" + +"@babel/runtime@7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.0.tgz#4fc1d642a9fd0299754e8b5de62c631cf5568205" + integrity sha512-89eSBLJsxNxOERC0Op4vd+0Bqm6wRMqMbFtV3i0/fbaWw/mJ8Q3eBvgX0G4SyrOOLCtbu98HspF8o09MRT+KzQ== + dependencies: + regenerator-runtime "^0.13.2" + +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.4": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f" + integrity sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA== + dependencies: + regenerator-runtime "^0.13.2" + +"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" + integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.6.0" + "@babel/types" "^7.6.0" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.0", "@babel/traverse@^7.6.2", "@babel/traverse@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" + integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.6.3" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/parser" "^7.6.3" + "@babel/types" "^7.6.3" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + +"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0", "@babel/types@^7.6.3": + version "7.6.3" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" + integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA== + dependencies: + esutils "^2.0.2" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + +"@cnakazawa/watch@^1.0.3": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" + integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== + dependencies: + exec-sh "^0.3.2" + minimist "^1.2.0" + +"@csstools/convert-colors@^1.4.0": + version "1.4.0" + resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" + integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== + +"@csstools/normalize.css@^9.0.1": + version "9.0.1" + resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-9.0.1.tgz#c27b391d8457d1e893f1eddeaf5e5412d12ffbb5" + integrity sha512-6It2EVfGskxZCQhuykrfnALg7oVeiI6KclWSmGDqB0AiInVrTGB9Jp9i4/Ad21u9Jde/voVQz6eFX/eSg/UsPA== + +"@fortawesome/fontawesome-common-types@^0.2.25": + version "0.2.25" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.25.tgz#6df015905081f2762e5cfddeb7a20d2e9b16c786" + integrity sha512-3RuZPDuuPELd7RXtUqTCfed14fcny9UiPOkdr2i+cYxBoTOfQgxcDoq77fHiiHcgWuo1LoBUpvGxFF1H/y7s3Q== + +"@fortawesome/fontawesome-svg-core@^1.2.14": + version "1.2.25" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.25.tgz#24b03391d14f0c6171e8cad7057c687b74049790" + integrity sha512-MotKnn53JKqbkLQiwcZSBJVYtTgIKFbh7B8+kd05TSnfKYPFmjKKI59o2fpz5t0Hzl35vVGU6+N4twoOpZUrqA== + dependencies: + "@fortawesome/fontawesome-common-types" "^0.2.25" + +"@fortawesome/free-solid-svg-icons@^5.7.1": + version "5.11.2" + resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.11.2.tgz#2f2f1459743a27902b76655a0d0bc5ec4d945631" + integrity sha512-zBue4i0PAZJUXOmLBBvM7L0O7wmsDC8dFv9IhpW5QL4kT9xhhVUsYg/LX1+5KaukWq4/cbDcKT+RT1aRe543sg== + dependencies: + "@fortawesome/fontawesome-common-types" "^0.2.25" + +"@fortawesome/react-fontawesome@^0.1.4": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.6.tgz#b798b96401e25d07c30bbe1b9ec0e6d8a33760a5" + integrity sha512-DNqt2t4JQ0YQKi832XzByk1wlQzgugwwCCNQHsFyz1z/zA9dtypSvsvVwMIaWXMljalYzKAA2zHX13C1DIxKAw== + dependencies: + prop-types "^15.5.10" + +"@hapi/address@2.x.x": + version "2.1.2" + resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.2.tgz#1c794cd6dbf2354d1eb1ef10e0303f573e1c7222" + integrity sha512-O4QDrx+JoGKZc6aN64L04vqa7e41tIiLU+OvKdcYaEMP97UttL0f9GIi9/0A4WAMx0uBd6SidDIhktZhgOcN8Q== + +"@hapi/bourne@1.x.x": + version "1.3.2" + resolved "https://registry.yarnpkg.com/@hapi/bourne/-/bourne-1.3.2.tgz#0a7095adea067243ce3283e1b56b8a8f453b242a" + integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== + +"@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": + version "8.3.1" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.3.1.tgz#227d29efdb158e4a64590224add90c820f94d20e" + integrity sha512-75ocgnI7HG/I01iGA3/rs0y6PXydUA/kxhFZM0HoT8NLSTnt/J8Gq03iKl4a4B/2A3iMG0ctXtxr5Hg9SGr1gw== + +"@hapi/joi@^15.0.0": + version "15.1.1" + resolved "https://registry.yarnpkg.com/@hapi/joi/-/joi-15.1.1.tgz#c675b8a71296f02833f8d6d243b34c57b8ce19d7" + integrity sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ== + dependencies: + "@hapi/address" "2.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" + "@hapi/topo" "3.x.x" + +"@hapi/topo@3.x.x": + version "3.1.6" + resolved "https://registry.yarnpkg.com/@hapi/topo/-/topo-3.1.6.tgz#68d935fa3eae7fdd5ab0d7f953f3205d8b2bfc29" + integrity sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ== + dependencies: + "@hapi/hoek" "^8.3.0" + +"@jest/console@^24.7.1", "@jest/console@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/console/-/console-24.9.0.tgz#79b1bc06fb74a8cfb01cbdedf945584b1b9707f0" + integrity sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ== + dependencies: + "@jest/source-map" "^24.9.0" + chalk "^2.0.1" + slash "^2.0.0" + +"@jest/core@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/core/-/core-24.9.0.tgz#2ceccd0b93181f9c4850e74f2a9ad43d351369c4" + integrity sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A== + dependencies: + "@jest/console" "^24.7.1" + "@jest/reporters" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-changed-files "^24.9.0" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-resolve-dependencies "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + jest-watcher "^24.9.0" + micromatch "^3.1.10" + p-each-series "^1.0.0" + realpath-native "^1.1.0" + rimraf "^2.5.4" + slash "^2.0.0" + strip-ansi "^5.0.0" + +"@jest/environment@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" + integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== + dependencies: + "@jest/fake-timers" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + +"@jest/fake-timers@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" + integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== + dependencies: + "@jest/types" "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + +"@jest/reporters@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-24.9.0.tgz#86660eff8e2b9661d042a8e98a028b8d631a5b43" + integrity sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.2" + istanbul-lib-coverage "^2.0.2" + istanbul-lib-instrument "^3.0.1" + istanbul-lib-report "^2.0.4" + istanbul-lib-source-maps "^3.0.1" + istanbul-reports "^2.2.6" + jest-haste-map "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + node-notifier "^5.4.2" + slash "^2.0.0" + source-map "^0.6.0" + string-length "^2.0.0" + +"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-24.9.0.tgz#0e263a94430be4b41da683ccc1e6bffe2a191714" + integrity sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg== + dependencies: + callsites "^3.0.0" + graceful-fs "^4.1.15" + source-map "^0.6.0" + +"@jest/test-result@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-24.9.0.tgz#11796e8aa9dbf88ea025757b3152595ad06ba0ca" + integrity sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA== + dependencies: + "@jest/console" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/istanbul-lib-coverage" "^2.0.0" + +"@jest/test-sequencer@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz#f8f334f35b625a4f2f355f2fe7e6036dad2e6b31" + integrity sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A== + dependencies: + "@jest/test-result" "^24.9.0" + jest-haste-map "^24.9.0" + jest-runner "^24.9.0" + jest-runtime "^24.9.0" + +"@jest/transform@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-24.9.0.tgz#4ae2768b296553fadab09e9ec119543c90b16c56" + integrity sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^24.9.0" + babel-plugin-istanbul "^5.1.0" + chalk "^2.0.1" + convert-source-map "^1.4.0" + fast-json-stable-stringify "^2.0.0" + graceful-fs "^4.1.15" + jest-haste-map "^24.9.0" + jest-regex-util "^24.9.0" + jest-util "^24.9.0" + micromatch "^3.1.10" + pirates "^4.0.1" + realpath-native "^1.1.0" + slash "^2.0.0" + source-map "^0.6.1" + write-file-atomic "2.4.1" + +"@jest/types@^24.9.0": + version "24.9.0" + resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" + integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^1.1.1" + "@types/yargs" "^13.0.0" + +"@mrmlnc/readdir-enhanced@^2.2.1": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" + integrity sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g== + dependencies: + call-me-maybe "^1.0.1" + glob-to-regexp "^0.3.0" + +"@nodelib/fs.stat@^1.1.2": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" + integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== + +"@reach/auto-id@^0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@reach/auto-id/-/auto-id-0.2.0.tgz#97f9e48fe736aa5c6f4f32cf73c1f19d005f8550" + integrity sha512-lVK/svL2HuQdp7jgvlrLkFsUx50Az9chAhxpiPwBqcS83I2pVWvXp98FOcSCCJCV++l115QmzHhFd+ycw1zLBg== + +"@reach/router@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.2.1.tgz#34ae3541a5ac44fa7796e5506a5d7274a162be4e" + integrity sha512-kTaX08X4g27tzIFQGRukaHmNbtMYDS3LEWIS8+l6OayGIw6Oyo1HIF/JzeuR2FoF9z6oV+x/wJSVSq4v8tcUGQ== + dependencies: + create-react-context "^0.2.1" + invariant "^2.2.3" + prop-types "^15.6.1" + react-lifecycles-compat "^3.0.4" + warning "^3.0.0" + +"@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.4.0": + version "1.6.0" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.6.0.tgz#ec7670432ae9c8eb710400d112c201a362d83393" + integrity sha512-w4/WHG7C4WWFyE5geCieFJF6MZkbW4VAriol5KlmQXpAQdxvV0p26sqNZOW6Qyw6Y0l9K4g+cHvvczR2sEEpqg== + dependencies: + type-detect "4.0.8" + +"@sinonjs/formatio@^3.2.1": + version "3.2.2" + resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.2.2.tgz#771c60dfa75ea7f2d68e3b94c7e888a78781372c" + integrity sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ== + dependencies: + "@sinonjs/commons" "^1" + "@sinonjs/samsam" "^3.1.0" + +"@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.3": + version "3.3.3" + resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.3.tgz#46682efd9967b259b81136b9f120fd54585feb4a" + integrity sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ== + dependencies: + "@sinonjs/commons" "^1.3.0" + array-from "^2.1.1" + lodash "^4.17.15" + +"@sinonjs/text-encoding@^0.7.1": + version "0.7.1" + resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" + integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== + +"@svgr/babel-plugin-add-jsx-attribute@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz#dadcb6218503532d6884b210e7f3c502caaa44b1" + integrity sha512-j7KnilGyZzYr/jhcrSYS3FGWMZVaqyCG0vzMCwzvei0coIkczuYMcniK07nI0aHJINciujjH11T72ICW5eL5Ig== + +"@svgr/babel-plugin-remove-jsx-attribute@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-4.2.0.tgz#297550b9a8c0c7337bea12bdfc8a80bb66f85abc" + integrity sha512-3XHLtJ+HbRCH4n28S7y/yZoEQnRpl0tvTZQsHqvaeNXPra+6vE5tbRliH3ox1yZYPCxrlqaJT/Mg+75GpDKlvQ== + +"@svgr/babel-plugin-remove-jsx-empty-expression@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-4.2.0.tgz#c196302f3e68eab6a05e98af9ca8570bc13131c7" + integrity sha512-yTr2iLdf6oEuUE9MsRdvt0NmdpMBAkgK8Bjhl6epb+eQWk6abBaX3d65UZ3E3FWaOwePyUgNyNCMVG61gGCQ7w== + +"@svgr/babel-plugin-replace-jsx-attribute-value@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-4.2.0.tgz#310ec0775de808a6a2e4fd4268c245fd734c1165" + integrity sha512-U9m870Kqm0ko8beHawRXLGLvSi/ZMrl89gJ5BNcT452fAjtF2p4uRzXkdzvGJJJYBgx7BmqlDjBN/eCp5AAX2w== + +"@svgr/babel-plugin-svg-dynamic-title@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-4.3.3.tgz#2cdedd747e5b1b29ed4c241e46256aac8110dd93" + integrity sha512-w3Be6xUNdwgParsvxkkeZb545VhXEwjGMwExMVBIdPQJeyMQHqm9Msnb2a1teHBqUYL66qtwfhNkbj1iarCG7w== + +"@svgr/babel-plugin-svg-em-dimensions@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-4.2.0.tgz#9a94791c9a288108d20a9d2cc64cac820f141391" + integrity sha512-C0Uy+BHolCHGOZ8Dnr1zXy/KgpBOkEUYY9kI/HseHVPeMbluaX3CijJr7D4C5uR8zrc1T64nnq/k63ydQuGt4w== + +"@svgr/babel-plugin-transform-react-native-svg@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-4.2.0.tgz#151487322843359a1ca86b21a3815fd21a88b717" + integrity sha512-7YvynOpZDpCOUoIVlaaOUU87J4Z6RdD6spYN4eUb5tfPoKGSF9OG2NuhgYnq4jSkAxcpMaXWPf1cePkzmqTPNw== + +"@svgr/babel-plugin-transform-svg-component@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-4.2.0.tgz#5f1e2f886b2c85c67e76da42f0f6be1b1767b697" + integrity sha512-hYfYuZhQPCBVotABsXKSCfel2slf/yvJY8heTVX1PCTaq/IgASq1IyxPPKJ0chWREEKewIU/JMSsIGBtK1KKxw== + +"@svgr/babel-preset@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-4.3.3.tgz#a75d8c2f202ac0e5774e6bfc165d028b39a1316c" + integrity sha512-6PG80tdz4eAlYUN3g5GZiUjg2FMcp+Wn6rtnz5WJG9ITGEF1pmFdzq02597Hn0OmnQuCVaBYQE1OVFAnwOl+0A== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^4.2.0" + "@svgr/babel-plugin-remove-jsx-attribute" "^4.2.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "^4.2.0" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^4.2.0" + "@svgr/babel-plugin-svg-dynamic-title" "^4.3.3" + "@svgr/babel-plugin-svg-em-dimensions" "^4.2.0" + "@svgr/babel-plugin-transform-react-native-svg" "^4.2.0" + "@svgr/babel-plugin-transform-svg-component" "^4.2.0" + +"@svgr/core@^4.3.2": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-4.3.3.tgz#b37b89d5b757dc66e8c74156d00c368338d24293" + integrity sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w== + dependencies: + "@svgr/plugin-jsx" "^4.3.3" + camelcase "^5.3.1" + cosmiconfig "^5.2.1" + +"@svgr/hast-util-to-babel-ast@^4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-4.3.2.tgz#1d5a082f7b929ef8f1f578950238f630e14532b8" + integrity sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg== + dependencies: + "@babel/types" "^7.4.4" + +"@svgr/plugin-jsx@^4.3.2", "@svgr/plugin-jsx@^4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz#e2ba913dbdfbe85252a34db101abc7ebd50992fa" + integrity sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w== + dependencies: + "@babel/core" "^7.4.5" + "@svgr/babel-preset" "^4.3.3" + "@svgr/hast-util-to-babel-ast" "^4.3.2" + svg-parser "^2.0.0" + +"@svgr/plugin-svgo@^4.3.1": + version "4.3.1" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-4.3.1.tgz#daac0a3d872e3f55935c6588dd370336865e9e32" + integrity sha512-PrMtEDUWjX3Ea65JsVCwTIXuSqa3CG9px+DluF1/eo9mlDrgrtFE7NE/DjdhjJgSM9wenlVBzkzneSIUgfUI/w== + dependencies: + cosmiconfig "^5.2.1" + merge-deep "^3.0.2" + svgo "^1.2.2" + +"@svgr/webpack@4.3.2": + version "4.3.2" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.3.2.tgz#319d4471c8f3d5c3af35059274834d9b5b8fb956" + integrity sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w== + dependencies: + "@babel/core" "^7.4.5" + "@babel/plugin-transform-react-constant-elements" "^7.0.0" + "@babel/preset-env" "^7.4.5" + "@babel/preset-react" "^7.0.0" + "@svgr/core" "^4.3.2" + "@svgr/plugin-jsx" "^4.3.2" + "@svgr/plugin-svgo" "^4.3.1" + loader-utils "^1.2.3" + +"@testing-library/react-hooks@^3.1.1": + version "3.1.1" + resolved "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.1.1.tgz#5c93e463c0252bea6ac237ec8d9c982c27d67208" + integrity sha512-HANnmA68/i6RwZn9j7pcbAg438PoDToftRQ1CH0j893WuQGtENFm57GKTagtmXXDN5gKh3rVbN1GH6HDvHbk6A== + dependencies: + "@babel/runtime" "^7.5.4" + "@types/testing-library__react-hooks" "^2.0.0" + +"@types/babel__core@^7.1.0": + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" + integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + version "7.6.0" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.0.tgz#f1ec1c104d1bb463556ecb724018ab788d0c172a" + integrity sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw== + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + version "7.0.2" + resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.0.2.tgz#4ff63d6b52eddac1de7b975a5223ed32ecea9307" + integrity sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg== + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": + version "7.0.7" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" + integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== + dependencies: + "@babel/types" "^7.3.0" + +"@types/cheerio@*": + version "0.22.13" + resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.13.tgz#5eecda091a24514185dcba99eda77e62bf6523e6" + integrity sha512-OZd7dCUOUkiTorf97vJKwZnSja/DmHfuBAroe1kREZZTCf/tlFecwHhsOos3uVHxeKGZDwzolIrCUApClkdLuA== + dependencies: + "@types/node" "*" + +"@types/domhandler@*": + version "2.4.1" + resolved "https://registry.yarnpkg.com/@types/domhandler/-/domhandler-2.4.1.tgz#7b3b347f7762180fbcb1ece1ce3dd0ebbb8c64cf" + integrity sha512-cfBw6q6tT5sa1gSPFSRKzF/xxYrrmeiut7E0TxNBObiLSBTuFEHibcfEe3waQPEDbqBsq+ql/TOniw65EyDFMA== + +"@types/domutils@*": + version "1.7.2" + resolved "https://registry.yarnpkg.com/@types/domutils/-/domutils-1.7.2.tgz#89422e579c165994ad5c09ce90325da596cc105d" + integrity sha512-Nnwy1Ztwq42SSNSZSh9EXBJGrOZPR+PQ2sRT4VZy8hnsFXfCil7YlKO2hd2360HyrtFz2qwnKQ13ENrgXNxJbw== + dependencies: + "@types/domhandler" "*" + +"@types/enzyme-adapter-react-16@^1.0.5": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.5.tgz#1bf30a166f49be69eeda4b81e3f24113c8b4e9d5" + integrity sha512-K7HLFTkBDN5RyRmU90JuYt8OWEY2iKUn43SDWEoBOXd/PowUWjLZ3Q6qMBiQuZeFYK/TOstaZxsnI0fXoAfLpg== + dependencies: + "@types/enzyme" "*" + +"@types/enzyme@*", "@types/enzyme@^3.10.3": + version "3.10.3" + resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.3.tgz#02b6c5ac7d0472005944a652e79045e2f6c66804" + integrity sha512-f/Kcb84sZOSZiBPCkr4He9/cpuSLcKRyQaEE20Q30Prx0Dn6wcyMAWI0yofL6yvd9Ht9G7EVkQeRqK0n5w8ILw== + dependencies: + "@types/cheerio" "*" + "@types/react" "*" + +"@types/eslint-visitor-keys@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" + integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== + +"@types/flot@0.0.31": + version "0.0.31" + resolved "https://registry.yarnpkg.com/@types/flot/-/flot-0.0.31.tgz#0daca37c6c855b69a0a7e2e37dd0f84b3db8c8c1" + integrity sha512-X+RcMQCqPlQo8zPT6cUFTd/PoYBShMQlHUeOXf05jWlfYnvLuRmluB9z+2EsOKFgUzqzZve5brx+gnFxBaHEUw== + dependencies: + "@types/jquery" "*" + +"@types/history@*": + version "4.7.3" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.3.tgz#856c99cdc1551d22c22b18b5402719affec9839a" + integrity sha512-cS5owqtwzLN5kY+l+KgKdRJ/Cee8tlmQoGQuIE9tWnSmS3JMKzmxo2HIAk2wODMifGwO20d62xZQLYz+RLfXmw== + +"@types/htmlparser2@*": + version "3.10.1" + resolved "https://registry.yarnpkg.com/@types/htmlparser2/-/htmlparser2-3.10.1.tgz#1e65ba81401d53f425c1e2ba5a3d05c90ab742c7" + integrity sha512-fCxmHS4ryCUCfV9+CJZY1UjkbR+6Al/EQdX5Jh03qBj9gdlPG5q+7uNoDgE/ZNXb3XNWSAQgqKIWnbRCbOyyWA== + dependencies: + "@types/domhandler" "*" + "@types/domutils" "*" + "@types/node" "*" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz#42995b446db9a48a11a07ec083499a860e9138ff" + integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== + +"@types/istanbul-lib-report@*": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" + integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" + integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== + dependencies: + "@types/istanbul-lib-coverage" "*" + "@types/istanbul-lib-report" "*" + +"@types/jest-diff@*": + version "20.0.1" + resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" + integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== + +"@types/jest@^24.0.20": + version "24.0.20" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.20.tgz#729d5fe8684e7fb06368d3bd557ac6d91289d861" + integrity sha512-M8ebEkOpykGdLoRrmew7UowTZ1DANeeP0HiSIChl/4DGgmnSC1ntitNtkyNSXjMTsZvXuaxJrxjImEnRWNPsPw== + dependencies: + "@types/jest-diff" "*" + +"@types/jquery@*", "@types/jquery@^3.3.29": + version "3.3.31" + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.31.tgz#27c706e4bf488474e1cb54a71d8303f37c93451b" + integrity sha512-Lz4BAJihoFw5nRzKvg4nawXPzutkv7wmfQ5121avptaSIXlDNJCUuxZxX/G+9EVidZGuO0UBlk+YjKbwRKJigg== + dependencies: + "@types/sizzle" "*" + +"@types/json-schema@^7.0.3": + version "7.0.3" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636" + integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== + +"@types/moment-timezone@^0.5.10": + version "0.5.12" + resolved "https://registry.yarnpkg.com/@types/moment-timezone/-/moment-timezone-0.5.12.tgz#0fb680c03db194fe8ff4551eaeb1eec8d3d80e9f" + integrity sha512-hnHH2+Efg2vExr/dSz+IX860nSiyk9Sk4pJF2EmS11lRpMcNXeB4KBW5xcgw2QPsb9amTXdsVNEe5IoJXiT0uw== + dependencies: + moment ">=2.14.0" + +"@types/node@*", "@types/node@^12.11.1": + version "12.11.1" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.1.tgz#1fd7b821f798b7fa29f667a1be8f3442bb8922a3" + integrity sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A== + +"@types/prop-types@*": + version "15.7.3" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7" + integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw== + +"@types/q@^1.5.1": + version "1.5.2" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" + integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== + +"@types/reach__router@^1.2.6": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.2.6.tgz#b14cf1adbd1a365d204bbf6605cd9dd7b8816c87" + integrity sha512-Oh5DAVr/L2svBvubw6QEFpXGu295Y406BPs4i9t1n2pp7M+q3pmCmhzb9oZV5wncR41KCD3NHl1Yhi7uKnTPsA== + dependencies: + "@types/history" "*" + "@types/react" "*" + +"@types/react-copy-to-clipboard@^4.3.0": + version "4.3.0" + resolved "https://registry.yarnpkg.com/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-4.3.0.tgz#8e07becb4f11cfced4bd36038cb5bdf5c2658be5" + integrity sha512-iideNPRyroENqsOFh1i2Dv3zkviYS9r/9qD9Uh3Z9NNoAAqqa2x53i7iGndGNnJFIo20wIu7Hgh77tx1io8bgw== + dependencies: + "@types/react" "*" + +"@types/react-dom@^16.8.0": + version "16.9.2" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.2.tgz#90f9e6c161850be1feb31d2f448121be2a4f3b47" + integrity sha512-hgPbBoI1aTSTvZwo8HYw35UaTldW6n2ETLvHAcfcg1FaOuBV3olmyCe5eMpx2WybWMBPv0MdU2t5GOcQhP+3zA== + dependencies: + "@types/react" "*" + +"@types/react-resize-detector@^4.0.2": + version "4.0.2" + resolved "https://registry.yarnpkg.com/@types/react-resize-detector/-/react-resize-detector-4.0.2.tgz#5c046301a881fe9af741536e0dd4c34dfb155c6e" + integrity sha512-5tJSq35S4H/0QhHwd5nMWuBVj96NHCTLW5AyZoKKQq5VBrNWkgrJan/WJ/w36Pf5v+WWw/1Wc9CMxgt1reksKA== + dependencies: + "@types/react" "*" + +"@types/react-test-renderer@*": + version "16.9.1" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.1.tgz#9d432c46c515ebe50c45fa92c6fb5acdc22e39c4" + integrity sha512-nCXQokZN1jp+QkoDNmDZwoWpKY8HDczqevIDO4Uv9/s9rbGPbSpy8Uaxa5ixHKkcm/Wt0Y9C3wCxZivh4Al+rQ== + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^16.8.2": + version "16.9.9" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.9.tgz#a62c6f40f04bc7681be5e20975503a64fe783c3a" + integrity sha512-L+AudFJkDukk+ukInYvpoAPyJK5q1GanFOINOJnM0w6tUgITuWvJ4jyoBPFL7z4/L8hGLd+K/6xR5uUjXu0vVg== + dependencies: + "@types/prop-types" "*" + csstype "^2.2.0" + +"@types/reactstrap@^8.0.5": + version "8.0.5" + resolved "https://registry.yarnpkg.com/@types/reactstrap/-/reactstrap-8.0.5.tgz#6c6429bcfcc1d97d9a89bcb73a07bbb698bfe945" + integrity sha512-cdTmatus6s/f5GltmDGLbCl31cexQbIFRPPjfEYzTEpjtV5uUNaWmcCSaMbuj5fnvaSTs8Ysx6u0bVb5pPFtjA== + dependencies: + "@types/react" "*" + popper.js "^1.14.1" + +"@types/sanitize-html@^1.20.2": + version "1.20.2" + resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.20.2.tgz#59777f79f015321334e3a9f28882f58c0a0d42b8" + integrity sha512-SrefiiBebGIhxEFkpbbYOwO1S6+zQLWAC4s4tipchlHq1aO9bp0xiapM7Zm0ml20MF+3OePWYdksB1xtneKPxg== + dependencies: + "@types/htmlparser2" "*" + +"@types/sinon@^7.5.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-7.5.0.tgz#f5a10c27175465a0b001b68d8b9f761582967cc6" + integrity sha512-NyzhuSBy97B/zE58cDw4NyGvByQbAHNP9069KVSgnXt/sc0T6MFRh0InKAeBVHJWdSXG1S3+PxgVIgKo9mTHbw== + +"@types/sizzle@*": + version "2.3.2" + resolved "https://registry.yarnpkg.com/@types/sizzle/-/sizzle-2.3.2.tgz#a811b8c18e2babab7d542b3365887ae2e4d9de47" + integrity sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg== + +"@types/stack-utils@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" + integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== + +"@types/testing-library__react-hooks@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@types/testing-library__react-hooks/-/testing-library__react-hooks-2.0.0.tgz#7b289d64945517ae8ba9cbcb0c5b282432aaeffa" + integrity sha512-YUVqXGCChJKEJ4aAnMXqPCq0NfPAFVsJeGIb2y/iiMjxwyu+45+vR+AHOwjJHHKEHeC0ZhOGrZ5gSEmaJe4tyQ== + dependencies: + "@types/react" "*" + "@types/react-test-renderer" "*" + +"@types/yargs-parser@*": + version "13.1.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" + integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== + +"@types/yargs@^13.0.0": + version "13.0.3" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" + integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@2.x": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.5.0.tgz#101d96743ce3365b3223df73d641078c9b775903" + integrity sha512-ddrJZxp5ns1Lh5ofZQYk3P8RyvKfyz/VcRR4ZiJLHO/ljnQAO8YvTfj268+WJOOadn99mvDiqJA65+HAKoeSPA== + dependencies: + "@typescript-eslint/experimental-utils" "2.5.0" + eslint-utils "^1.4.2" + functional-red-black-tree "^1.0.1" + regexpp "^2.0.1" + tsutils "^3.17.1" + +"@typescript-eslint/eslint-plugin@^2.2.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.4.0.tgz#aaf6b542ff75b78f4191a8bf1c519184817caa24" + integrity sha512-se/YCk7PUoyMwSm/u3Ii9E+BgDUc736uw/lXCDpXEqRgPGsoBTtS8Mntue/vZX8EGyzGplYuePBuVyhZDM9EpQ== + dependencies: + "@typescript-eslint/experimental-utils" "2.4.0" + eslint-utils "^1.4.2" + functional-red-black-tree "^1.0.1" + regexpp "^2.0.1" + tsutils "^3.17.1" + +"@typescript-eslint/experimental-utils@2.4.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.4.0.tgz#dd8f3f466be25c3610a06fed22cfb6e6aa17f6d9" + integrity sha512-2cvhNaJoWavgTtnC7e1jUSPZQ7e4U2X9Yoy5sQmkS7lTESuyuZrlRcaoNuFfYEd6hgrmMU7+QoSp8Ad+kT1nfA== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.4.0" + eslint-scope "^5.0.0" + +"@typescript-eslint/experimental-utils@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.5.0.tgz#383a97ded9a7940e5053449f6d73995e782b8fb1" + integrity sha512-UgcQGE0GKJVChyRuN1CWqDW8Pnu7+mVst0aWrhiyuUD1J9c+h8woBdT4XddCvhcXDodTDVIfE3DzGHVjp7tUeQ== + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/typescript-estree" "2.5.0" + eslint-scope "^5.0.0" + +"@typescript-eslint/parser@2.x": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.5.0.tgz#858030ddd808fbbe88e03f42e5971efaccb8218a" + integrity sha512-9UBMiAwIDWSl79UyogaBdj3hidzv6exjKUx60OuZuFnJf56tq/UMpdPcX09YmGqE8f4AnAueYtBxV8IcAT3jdQ== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.5.0" + "@typescript-eslint/typescript-estree" "2.5.0" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/parser@^2.2.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.4.0.tgz#fe43ed5fec14af03d3594fce2c3b7ec4c8df0243" + integrity sha512-IouAKi/grJ4MFrwdXIJ1GHAwbPWYgkT3b/x8Q49F378c9nwgxVkO76e0rZeUVpwHMaUuoKG2sUeK0XGkwdlwkw== + dependencies: + "@types/eslint-visitor-keys" "^1.0.0" + "@typescript-eslint/experimental-utils" "2.4.0" + "@typescript-eslint/typescript-estree" "2.4.0" + eslint-visitor-keys "^1.1.0" + +"@typescript-eslint/typescript-estree@2.4.0": + version "2.4.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.4.0.tgz#722c95493e1b7682893edaaaec0e69f36917feef" + integrity sha512-/DzDAtMqF5d9IlXrrvu/Id/uoKjnSxf/3FbtKK679a/T7lbDM8qQuirtGvFy6Uh+x0hALuCMwnMfUf0P24/+Iw== + dependencies: + chokidar "^3.0.2" + glob "^7.1.4" + is-glob "^4.0.1" + lodash.unescape "4.0.1" + semver "^6.3.0" + +"@typescript-eslint/typescript-estree@2.5.0": + version "2.5.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.5.0.tgz#40ada624d6217ef092a3a79ed30d947ad4f212ce" + integrity sha512-AXURyF8NcA3IsnbjNX1v9qbwa0dDoY9YPcKYR2utvMHoUcu3636zrz0gRWtVAyxbPCkhyKuGg6WZIyi2Fc79CA== + dependencies: + debug "^4.1.1" + glob "^7.1.4" + is-glob "^4.0.1" + lodash.unescape "4.0.1" + semver "^6.3.0" + +"@webassemblyjs/ast@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" + integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== + dependencies: + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + +"@webassemblyjs/floating-point-hex-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" + integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== + +"@webassemblyjs/helper-api-error@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" + integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== + +"@webassemblyjs/helper-buffer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" + integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== + +"@webassemblyjs/helper-code-frame@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" + integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== + dependencies: + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/helper-fsm@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" + integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== + +"@webassemblyjs/helper-module-context@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" + integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== + dependencies: + "@webassemblyjs/ast" "1.8.5" + mamacro "^0.0.3" + +"@webassemblyjs/helper-wasm-bytecode@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" + integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== + +"@webassemblyjs/helper-wasm-section@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" + integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + +"@webassemblyjs/ieee754@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" + integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" + integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" + integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== + +"@webassemblyjs/wasm-edit@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" + integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/helper-wasm-section" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-opt" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/wasm-gen@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" + integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wasm-opt@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" + integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + +"@webassemblyjs/wasm-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" + integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wast-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" + integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/floating-point-hex-parser" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-code-frame" "1.8.5" + "@webassemblyjs/helper-fsm" "1.8.5" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" + integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +abab@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.2.tgz#a2fba1b122c69a85caa02d10f9270c7219709a9d" + integrity sha512-2scffjvioEmNz0OyDSLGWDfKCVwaKc6l9Pm9kOIREU13ClXZvHpg/nRL5xyjSSSLhOnXqft2HpsAzNEEA8cFFg== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + +acorn-globals@^4.1.0, acorn-globals@^4.3.0, acorn-globals@^4.3.2: + version "4.3.4" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" + integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-jsx@^5.0.2: + version "5.1.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" + integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== + +acorn-walk@^6.0.1: + version "6.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" + integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== + +acorn@^5.5.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + +acorn@^6.0.1, acorn@^6.0.4, acorn@^6.2.1: + version "6.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" + integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA== + +acorn@^7.0.0, acorn@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" + integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== + +address@1.1.2, address@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6" + integrity sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA== + +adjust-sourcemap-loader@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" + integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA== + dependencies: + assert "1.4.1" + camelcase "5.0.0" + loader-utils "1.2.3" + object-path "0.11.4" + regex-parser "2.2.10" + +airbnb-prop-types@^2.15.0: + version "2.15.0" + resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz#5287820043af1eb469f5b0af0d6f70da6c52aaef" + integrity sha512-jUh2/hfKsRjNFC4XONQrxo/n/3GG4Tn6Hl0WlFQN5PY9OMC9loSCoAYKnZsWaP8wEfd5xcrPloK0Zg6iS1xwVA== + dependencies: + array.prototype.find "^2.1.0" + function.prototype.name "^1.1.1" + has "^1.0.3" + is-regex "^1.0.4" + object-is "^1.0.1" + object.assign "^4.1.0" + object.entries "^1.1.0" + prop-types "^15.7.2" + prop-types-exact "^1.2.0" + react-is "^16.9.0" + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + +ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" + integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== + +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: + version "6.10.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" + integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +alphanum-sort@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= + +ansi-colors@^3.0.0: + version "3.2.4" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" + integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== + +ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-escapes@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.2.1.tgz#4dccdb846c3eee10f6d64dea66273eab90c37228" + integrity sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q== + dependencies: + type-fest "^0.5.2" + +ansi-html@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" + integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4= + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.0.0, ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +anymatch@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" + integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== + dependencies: + normalize-path "^3.0.0" + picomatch "^2.0.4" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w= + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + +arity-n@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/arity-n/-/arity-n-1.0.4.tgz#d9e76b11733e08569c0847ae7b39b2860b30b745" + integrity sha1-2edrEXM+CFacCEeuezmyhgswt0U= + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + +array-filter@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" + integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM= + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + +array-flatten@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099" + integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== + +array-from@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" + integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= + +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1, array-uniq@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +array.prototype.find@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz#630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7" + integrity sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.13.0" + +array.prototype.flat@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.2.tgz#8f3c71d245ba349b6b64b4078f76f5576f1fd723" + integrity sha512-VXjh7lAL4KXKF2hY4FnEW9eRW6IhdvFW1sN/JwLbmECbCgACCnBHNyP3lFiYuttr0jxRN9Bsc5+G27dMseSWqQ== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.15.0" + function-bind "^1.1.1" + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + +asap@~2.0.3, asap@~2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +asn1.js@^4.0.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assert@1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" + integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= + dependencies: + util "0.10.3" + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +ast-types-flow@0.0.7, ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-each@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + +async-limiter@^1.0.0, async-limiter@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" + integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== + +async@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" + integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== + dependencies: + lodash "^4.17.14" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +atob@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +autoprefixer@^9.6.1: + version "9.6.5" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.5.tgz#98f4afe7e93cccf323287515d426019619775e5e" + integrity sha512-rGd50YV8LgwFQ2WQp4XzOTG69u1qQsXn0amww7tjqV5jJuNazgFKYEVItEBngyyvVITKOg20zr2V+9VsrXJQ2g== + dependencies: + browserslist "^4.7.0" + caniuse-lite "^1.0.30000999" + chalk "^2.4.2" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^7.0.18" + postcss-value-parser "^4.0.2" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" + integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + +axobject-query@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9" + integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== + dependencies: + ast-types-flow "0.0.7" + +babel-code-frame@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-eslint@10.0.3, babel-eslint@10.x: + version "10.0.3" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a" + integrity sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + eslint-visitor-keys "^1.0.0" + resolve "^1.12.0" + +babel-extract-comments@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz#0a2aedf81417ed391b85e18b4614e693a0351a21" + integrity sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ== + dependencies: + babylon "^6.18.0" + +babel-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-24.9.0.tgz#3fc327cb8467b89d14d7bc70e315104a783ccd54" + integrity sha512-ntuddfyiN+EhMw58PTNL1ph4C9rECiQXjI4nMMBKBaNjXvqLdkXpPRcMSr4iyBrJg/+wz9brFUD6RhOAT6r4Iw== + dependencies: + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/babel__core" "^7.1.0" + babel-plugin-istanbul "^5.1.0" + babel-preset-jest "^24.9.0" + chalk "^2.4.2" + slash "^2.0.0" + +babel-loader@8.0.6: + version "8.0.6" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" + integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw== + dependencies: + find-cache-dir "^2.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + pify "^4.0.1" + +babel-plugin-dynamic-import-node@2.3.0, babel-plugin-dynamic-import-node@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" + integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== + dependencies: + object.assign "^4.1.0" + +babel-plugin-istanbul@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz#df4ade83d897a92df069c4d9a25cf2671293c854" + integrity sha512-5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + find-up "^3.0.0" + istanbul-lib-instrument "^3.3.0" + test-exclude "^5.2.3" + +babel-plugin-jest-hoist@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.9.0.tgz#4f837091eb407e01447c8843cbec546d0002d756" + integrity sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw== + dependencies: + "@types/babel__traverse" "^7.0.6" + +babel-plugin-macros@2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" + integrity sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ== + dependencies: + "@babel/runtime" "^7.4.2" + cosmiconfig "^5.2.0" + resolve "^1.10.0" + +babel-plugin-named-asset-import@^0.3.4: + version "0.3.4" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.4.tgz#4a8fc30e9a3e2b1f5ed36883386ab2d84e1089bd" + integrity sha512-S6d+tEzc5Af1tKIMbsf2QirCcPdQ+mKUCY2H1nJj1DyA1ShwpsoxEOAwbWsG5gcXNV/olpvQd9vrUWRx4bnhpw== + +babel-plugin-syntax-object-rest-spread@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5" + integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U= + +babel-plugin-transform-object-rest-spread@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06" + integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY= + dependencies: + babel-plugin-syntax-object-rest-spread "^6.8.0" + babel-runtime "^6.26.0" + +babel-plugin-transform-react-remove-prop-types@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz#f2edaf9b4c6a5fbe5c1d678bfb531078c1555f3a" + integrity sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA== + +babel-preset-jest@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-24.9.0.tgz#192b521e2217fb1d1f67cf73f70c336650ad3cdc" + integrity sha512-izTUuhE4TMfTRPF92fFwD2QfdXaZW08qvWTFCI51V8rW5x00UuPgc3ajRoWofXOuxjfcOM5zzSYsQS3H8KGCAg== + dependencies: + "@babel/plugin-syntax-object-rest-spread" "^7.0.0" + babel-plugin-jest-hoist "^24.9.0" + +babel-preset-react-app@^9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.0.2.tgz#247d37e883d6d6f4b4691e5f23711bb2dd80567d" + integrity sha512-aXD+CTH8Chn8sNJr4tO/trWKqe5sSE4hdO76j9fhVezJSzmpWYWUSc5JoPmdSxADwef5kQFNGKXd433vvkd2VQ== + dependencies: + "@babel/core" "7.6.0" + "@babel/plugin-proposal-class-properties" "7.5.5" + "@babel/plugin-proposal-decorators" "7.6.0" + "@babel/plugin-proposal-object-rest-spread" "7.5.5" + "@babel/plugin-syntax-dynamic-import" "7.2.0" + "@babel/plugin-transform-destructuring" "7.6.0" + "@babel/plugin-transform-flow-strip-types" "7.4.4" + "@babel/plugin-transform-react-display-name" "7.2.0" + "@babel/plugin-transform-runtime" "7.6.0" + "@babel/preset-env" "7.6.0" + "@babel/preset-react" "7.0.0" + "@babel/preset-typescript" "7.6.0" + "@babel/runtime" "7.6.0" + babel-plugin-dynamic-import-node "2.3.0" + babel-plugin-macros "2.6.1" + babel-plugin-transform-react-remove-prop-types "0.4.24" + +babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base64-js@^1.0.2: + version "1.3.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1" + integrity sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +batch@0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16" + integrity sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY= + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +binary-extensions@^1.0.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + +binary-extensions@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" + integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== + +bluebird@^3.5.5: + version "3.7.1" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de" + integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== + +body-parser@1.19.0: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + +bonjour@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/bonjour/-/bonjour-3.5.0.tgz#8e890a183d8ee9a2393b3844c691a42bcf7bc9f5" + integrity sha1-jokKGD2O6aI5OzhExpGkK897yfU= + dependencies: + array-flatten "^2.1.0" + deep-equal "^1.0.1" + dns-equal "^1.0.0" + dns-txt "^2.0.2" + multicast-dns "^6.0.1" + multicast-dns-service-types "^1.1.0" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + +bootstrap@>=4.1.2, bootstrap@^4.2.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.3.1.tgz#280ca8f610504d99d7b6b4bfc4b68cec601704ac" + integrity sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.1, braces@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +braces@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browser-process-hrtime@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== + +browser-resolve@^1.11.3: + version "1.11.3" + resolved "https://registry.yarnpkg.com/browser-resolve/-/browser-resolve-1.11.3.tgz#9b7cbb3d0f510e4cb86bdbd796124d28b5890af6" + integrity sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ== + dependencies: + resolve "1.1.7" + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" + integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA== + dependencies: + caniuse-lite "^1.0.30000989" + electron-to-chromium "^1.3.247" + node-releases "^1.1.29" + +browserslist@^4.0.0, browserslist@^4.1.1, browserslist@^4.6.0, browserslist@^4.6.4, browserslist@^4.7.0: + version "4.7.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.1.tgz#bd400d1aea56538580e8c4d5f1c54ac11b5ab468" + integrity sha512-QtULFqKIAtiyNx7NhZ/p4rB8m3xDozVo/pi5VgTlADLF2tNigz/QH+v0m5qhn7XfHT7u+607NcCNOnC0HZAlMg== + dependencies: + caniuse-lite "^1.0.30000999" + electron-to-chromium "^1.3.284" + node-releases "^1.1.36" + +bser@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" + integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== + dependencies: + node-int64 "^0.4.0" + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer-indexof@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-indexof/-/buffer-indexof-1.1.1.tgz#52fabcc6a606d1a00302802648ef68f639da268c" + integrity sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g== + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +cacache@^12.0.2: + version "12.0.3" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.3.tgz#be99abba4e1bf5df461cd5a2c1071fc432573390" + integrity sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw== + dependencies: + bluebird "^3.5.5" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.4" + graceful-fs "^4.1.15" + infer-owner "^1.0.3" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.3" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +call-me-maybe@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b" + integrity sha1-JtII6onje1y95gJQoV8DHBak1ms= + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= + dependencies: + no-case "^2.2.0" + upper-case "^1.1.1" + +camelcase@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" + integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +camelcase@^5.0.0, camelcase@^5.2.0, camelcase@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30000999: + version "1.0.30000999" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz#427253a69ad7bea4aa8d8345687b8eec51ca0e43" + integrity sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg== + +capture-exit@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" + integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g== + dependencies: + rsvp "^4.8.4" + +case-sensitive-paths-webpack-plugin@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.2.0.tgz#3371ef6365ef9c25fa4b81c16ace0e9c7dc58c3e" + integrity sha512-u5ElzokS8A1pm9vM3/iDgTcI3xqHxuCao94Oz8etI3cf0Tio0p8izkDYbTIn09uP3yUUr6+veaE6IkjnTYS46g== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cheerio@^1.0.0-rc.2: + version "1.0.0-rc.3" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" + integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.1" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash "^4.15.0" + parse5 "^3.0.1" + +chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: + version "2.1.8" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" + integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.1" + optionalDependencies: + fsevents "^1.2.7" + +chokidar@^3.0.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.2.2.tgz#a433973350021e09f2b853a2287781022c0dc935" + integrity sha512-bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.2.0" + optionalDependencies: + fsevents "~2.1.1" + +chownr@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" + integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== + +chrome-trace-event@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" + integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== + dependencies: + tslib "^1.9.0" + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +classnames@^2.2.3: + version "2.2.6" + resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" + integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== + +clean-css@4.2.x: + version "4.2.1" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" + integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== + dependencies: + source-map "~0.6.0" + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + +cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" + +cliui@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" + integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== + dependencies: + string-width "^3.1.0" + strip-ansi "^5.2.0" + wrap-ansi "^5.1.0" + +clone-deep@^0.2.4: + version "0.2.4" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" + integrity sha1-TnPdCen7lxzDhnDF3O2cGJZIHMY= + dependencies: + for-own "^0.1.3" + is-plain-object "^2.0.1" + kind-of "^3.0.2" + lazy-cache "^1.0.3" + shallow-clone "^0.1.2" + +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0, color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" + integrity sha512-vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + +combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@2.17.x: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== + +commander@2.20.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" + integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== + +commander@^2.11.0, commander@^2.19.0, commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@~2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== + +common-tags@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" + integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +compose-function@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/compose-function/-/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f" + integrity sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8= + dependencies: + arity-n "^1.0.4" + +compressible@~2.0.16: + version "2.0.17" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" + integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + dependencies: + mime-db ">= 1.40.0 < 2" + +compression@^1.5.2: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +compute-scroll-into-view@^1.0.9: + version "1.0.11" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz#7ff0a57f9aeda6314132d8994cce7aeca794fecf" + integrity sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +confusing-browser-globals@^1.0.9: + version "1.0.9" + resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" + integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== + +connect-history-api-fallback@^1.3.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" + integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + +content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@1.6.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== + dependencies: + safe-buffer "~5.1.1" + +convert-source-map@^0.3.3: + version "0.3.5" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" + integrity sha1-8dgClQr33SYxof6+BZZVDIarMZA= + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +copy-to-clipboard@^3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" + integrity sha512-eOZERzvCmxS8HWzugj4Uxl8OJxa7T2k1Gi0X5qavwydHIfuSHq2dTD09LOg/XyGq4Zpb5IsR/2OJ5lbOegz78w== + dependencies: + toggle-selection "^1.0.6" + +core-js-compat@^3.1.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.3.2.tgz#1096c989c1b929ede06b5b6b4768dc4439078c03" + integrity sha512-gfiK4QnNXhnnHVOIZst2XHdFfdMTPxtR0EGs0TdILMlGIft+087oH6/Sw2xTTIjpWXC9vEwsJA8VG3XTGcmO5g== + dependencies: + browserslist "^4.7.0" + semver "^6.3.0" + +core-js@3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.2.1.tgz#cd41f38534da6cc59f7db050fe67307de9868b09" + integrity sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw== + +core-js@^1.0.0: + version "1.2.7" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" + integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= + +core-js@^2.4.0: + version "2.6.10" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f" + integrity sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA== + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@^5.0.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +create-ecdh@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +create-react-context@^0.2.1: + version "0.2.3" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3" + integrity sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag== + dependencies: + fbjs "^0.8.0" + gud "^1.0.0" + +create-react-context@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" + integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== + dependencies: + gud "^1.0.0" + warning "^4.0.3" + +cross-fetch@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-2.2.3.tgz#e8a0b3c54598136e037f8650f8e823ccdfac198e" + integrity sha512-PrWWNH3yL2NYIb/7WF/5vFG3DCQiXDOVf8k3ijatbrtnwNuhMWLC7YF7uqf53tbTFDzHIUD8oITw4Bxt8ST3Nw== + dependencies: + node-fetch "2.1.2" + whatwg-fetch "2.0.4" + +cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +css-blank-pseudo@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5" + integrity sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w== + dependencies: + postcss "^7.0.5" + +css-color-names@0.0.4, css-color-names@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= + +css-declaration-sorter@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" + integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== + dependencies: + postcss "^7.0.1" + timsort "^0.3.0" + +css-has-pseudo@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz#3c642ab34ca242c59c41a125df9105841f6966ee" + integrity sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^5.0.0-rc.4" + +css-loader@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" + integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w== + dependencies: + camelcase "^5.2.0" + icss-utils "^4.1.0" + loader-utils "^1.2.3" + normalize-path "^3.0.0" + postcss "^7.0.14" + postcss-modules-extract-imports "^2.0.0" + postcss-modules-local-by-default "^2.0.6" + postcss-modules-scope "^2.1.0" + postcss-modules-values "^2.0.0" + postcss-value-parser "^3.3.0" + schema-utils "^1.0.0" + +css-prefers-color-scheme@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz#6f830a2714199d4f0d0d0bb8a27916ed65cff1f4" + integrity sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg== + dependencies: + postcss "^7.0.5" + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^1.1.0, css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-select@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" + integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== + dependencies: + boolbase "^1.0.0" + css-what "^2.1.2" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-tree@1.0.0-alpha.29: + version "1.0.0-alpha.29" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" + integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg== + dependencies: + mdn-data "~1.1.0" + source-map "^0.5.3" + +css-tree@1.0.0-alpha.33: + version "1.0.0-alpha.33" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.33.tgz#970e20e5a91f7a378ddd0fc58d0b6c8d4f3be93e" + integrity sha512-SPt57bh5nQnpsTBsx/IXbO14sRc9xXu5MtMAVuo0BaQQmyf0NupNPPSoMaqiAF5tDFafYsTkfeH4Q/HCKXkg4w== + dependencies: + mdn-data "2.0.4" + source-map "^0.5.3" + +css-unit-converter@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" + integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= + +css-what@2.1, css-what@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +css.escape@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" + integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= + +css@^2.0.0: + version "2.2.4" + resolved "https://registry.yarnpkg.com/css/-/css-2.2.4.tgz#c646755c73971f2bba6a601e2cf2fd71b1298929" + integrity sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw== + dependencies: + inherits "^2.0.3" + source-map "^0.6.1" + source-map-resolve "^0.5.2" + urix "^0.1.0" + +cssdb@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-4.4.0.tgz#3bf2f2a68c10f5c6a08abd92378331ee803cddb0" + integrity sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ== + +cssesc@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" + integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== + dependencies: + css-declaration-sorter "^4.0.1" + cssnano-util-raw-cache "^4.0.1" + postcss "^7.0.0" + postcss-calc "^7.0.1" + postcss-colormin "^4.0.3" + postcss-convert-values "^4.0.1" + postcss-discard-comments "^4.0.2" + postcss-discard-duplicates "^4.0.2" + postcss-discard-empty "^4.0.1" + postcss-discard-overridden "^4.0.1" + postcss-merge-longhand "^4.0.11" + postcss-merge-rules "^4.0.3" + postcss-minify-font-values "^4.0.2" + postcss-minify-gradients "^4.0.2" + postcss-minify-params "^4.0.2" + postcss-minify-selectors "^4.0.2" + postcss-normalize-charset "^4.0.1" + postcss-normalize-display-values "^4.0.2" + postcss-normalize-positions "^4.0.2" + postcss-normalize-repeat-style "^4.0.2" + postcss-normalize-string "^4.0.2" + postcss-normalize-timing-functions "^4.0.2" + postcss-normalize-unicode "^4.0.1" + postcss-normalize-url "^4.0.1" + postcss-normalize-whitespace "^4.0.2" + postcss-ordered-values "^4.1.2" + postcss-reduce-initial "^4.0.3" + postcss-reduce-transforms "^4.0.2" + postcss-svgo "^4.0.2" + postcss-unique-selectors "^4.0.1" + +cssnano-util-get-arguments@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" + integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= + +cssnano-util-get-match@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" + integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= + +cssnano-util-raw-cache@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" + integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== + dependencies: + postcss "^7.0.0" + +cssnano-util-same-parent@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" + integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== + +cssnano@^4.1.10: + version "4.1.10" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" + integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== + dependencies: + cosmiconfig "^5.0.0" + cssnano-preset-default "^4.0.7" + is-resolvable "^1.0.0" + postcss "^7.0.0" + +csso@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" + integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg== + dependencies: + css-tree "1.0.0-alpha.29" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@^0.3.4, cssom@~0.3.6: + version "0.3.8" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" + integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== + +cssom@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.1.tgz#b24111d236b6dbd00cdfacb5ab67a20473381fe3" + integrity sha512-6Aajq0XmukE7HdXUU6IoSWuH1H6gH9z6qmagsstTiN7cW2FNTsb+J2Chs+ufPgZCsV/yo8oaEudQLrb9dGxSVQ== + +cssstyle@^1.0.0, cssstyle@^1.1.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" + integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== + dependencies: + cssom "0.3.x" + +cssstyle@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.0.0.tgz#911f0fe25532db4f5d44afc83f89cc4b82c97fe3" + integrity sha512-QXSAu2WBsSRXCPjvI43Y40m6fMevvyRm8JVAuF9ksQz5jha4pWP1wpaK7Yu5oLFc6+XAY+hj8YhefyXcBB53gg== + dependencies: + cssom "~0.3.6" + +csstype@^2.2.0: + version "2.6.7" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.7.tgz#20b0024c20b6718f4eda3853a1f5a1cce7f5e4a5" + integrity sha512-9Mcn9sFbGBAdmimWb2gLVDtFJzeKtDGIr76TUqmjZrw9LFXBMSU70lcs+C0/7fyCd6iBDqmksUcCOUIkisPHsQ== + +cyclist@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9" + integrity sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk= + +d@1, d@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" + integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== + dependencies: + es5-ext "^0.10.50" + type "^1.0.1" + +damerau-levenshtein@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.5.tgz#780cf7144eb2e8dbd1c3bb83ae31100ccc31a414" + integrity sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA== + +dashdash@^1.12.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +data-urls@^1.0.0, data-urls@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= + +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.0.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decamelize@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz#656d7bbc8094c4c788ea53c5840908c9c7d063c7" + integrity sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg== + dependencies: + xregexp "4.0.0" + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +deep-equal@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.0.tgz#3103cdf8ab6d32cf4a8df7865458f2b8d33f3745" + integrity sha512-ZbfWJq/wN1Z273o7mUSjILYqehAktR2NVoSrOukDkU9kg2v/Uv89yU4Cvz8seJeAmtN5oqiefKq8FPuXOboqLw== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +default-gateway@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" + integrity sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA== + dependencies: + execa "^1.0.0" + ip-regex "^2.1.0" + +define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" + integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= + dependencies: + globby "^6.1.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + p-map "^1.1.1" + pify "^3.0.0" + rimraf "^2.2.8" + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + +detect-newline@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" + integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I= + +detect-node@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" + integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== + +detect-port-alt@1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275" + integrity sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q== + dependencies: + address "^1.0.1" + debug "^2.6.0" + +diff-sequences@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-24.9.0.tgz#5715d6244e2aa65f48bba0bc972db0b0b11e95b5" + integrity sha512-Dj6Wk3tWyTE+Fo1rW8v0Xhwk80um6yFYKbuAxc9c3EZxIHFDYwbi34Uk42u1CdnIiVorvt4RmlSDjIPyzGC2ew== + +diff@^3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dir-glob@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034" + integrity sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag== + dependencies: + arrify "^1.0.1" + path-type "^3.0.0" + +discontinuous-range@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/discontinuous-range/-/discontinuous-range-1.0.0.tgz#e38331f0844bba49b9a9cb71c771585aab1bc65a" + integrity sha1-44Mx8IRLukm5qctxx3FYWqsbxlo= + +dns-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d" + integrity sha1-s55/HabrCnW6nBcySzR1PEfgZU0= + +dns-packet@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-1.3.1.tgz#12aa426981075be500b910eedcd0b47dd7deda5a" + integrity sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg== + dependencies: + ip "^1.1.0" + safe-buffer "^5.0.1" + +dns-txt@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/dns-txt/-/dns-txt-2.0.2.tgz#b91d806f5d27188e4ab3e7d107d881a1cc4642b6" + integrity sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY= + dependencies: + buffer-indexof "^1.0.0" + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-converter@^0.2: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-helpers@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/dom-helpers/-/dom-helpers-3.4.0.tgz#e9b369700f959f62ecde5a6babde4bccd9169af8" + integrity sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA== + dependencies: + "@babel/runtime" "^7.1.2" + +dom-serializer@0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.1.tgz#13650c850daffea35d8b626a4cfc4d3a17643fdb" + integrity sha512-sK3ujri04WyjwQXVoK4PU3y8ula1stq10GJZpqHIUgoGZdsGzAGu65BnU3d08aTVSvO7mGPZUc0wTEDL+qGE0Q== + dependencies: + domelementtype "^2.0.1" + entities "^2.0.0" + +dom-serializer@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domelementtype@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" + integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1, domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dot-prop@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== + dependencies: + is-obj "^1.0.0" + +dotenv-expand@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" + integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== + +dotenv@6.2.0: + version "6.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064" + integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== + +downshift@^3.2.2: + version "3.3.5" + resolved "https://registry.yarnpkg.com/downshift/-/downshift-3.3.5.tgz#635f465ab45f577814a98901024873637649ce6f" + integrity sha512-OLBKLfP8cUaB7/wF0Al74v+znYOV/BG6hMGIj/JMuPcnNHQ/1WrF3btCZx+KnJcYtfMdQHEwWv0yC1cdPinyXw== + dependencies: + "@babel/runtime" "^7.4.5" + "@reach/auto-id" "^0.2.0" + compute-scroll-into-view "^1.0.9" + prop-types "^15.7.2" + react-is "^16.9.0" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + +electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.284: + version "1.3.284" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.284.tgz#b24359fa4f49b3a7c52afc005d59ec3aa9f6796e" + integrity sha512-duOA4IWKH4R8ttiE8q/7xfg6eheRvMKlGqOOcGlDukdHEDJ26Wf7cMrCiK9Am11mswR6E/a23jXVA4UPDthTIw== + +elliptic@^6.0.0: + version "6.5.1" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" + integrity sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg== + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emoji-regex@^7.0.1, emoji-regex@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + +encoding@^0.1.11: + version "0.1.12" + resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" + integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= + dependencies: + iconv-lite "~0.4.13" + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + +enhanced-resolve@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz#2937e2b8066cd0fe7ce0990a98f0d71a35189f66" + integrity sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.5.0" + tapable "^1.0.0" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +entities@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.0.tgz#68d6084cab1b079767540d80e56a39b423e4abf4" + integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== + +enzyme-adapter-react-16@^1.15.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.1.tgz#8ad55332be7091dc53a25d7d38b3485fc2ba50d5" + integrity sha512-yMPxrP3vjJP+4wL/qqfkT6JAIctcwKF+zXO6utlGPgUJT2l4tzrdjMDWGd/Pp1BjHBcljhN24OzNEGRteibJhA== + dependencies: + enzyme-adapter-utils "^1.12.1" + enzyme-shallow-equal "^1.0.0" + has "^1.0.3" + object.assign "^4.1.0" + object.values "^1.1.0" + prop-types "^15.7.2" + react-is "^16.10.2" + react-test-renderer "^16.0.0-0" + semver "^5.7.0" + +enzyme-adapter-utils@^1.12.1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.1.tgz#e828e0d038e2b1efa4b9619ce896226f85c9dd88" + integrity sha512-KWiHzSjZaLEoDCOxY8Z1RAbUResbqKN5bZvenPbfKtWorJFVETUw754ebkuCQ3JKm0adx1kF8JaiR+PHPiP47g== + dependencies: + airbnb-prop-types "^2.15.0" + function.prototype.name "^1.1.1" + object.assign "^4.1.0" + object.fromentries "^2.0.1" + prop-types "^15.7.2" + semver "^5.7.0" + +enzyme-shallow-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.0.tgz#d8e4603495e6ea279038eef05a4bf4887b55dc69" + integrity sha512-VUf+q5o1EIv2ZaloNQQtWCJM9gpeux6vudGVH6vLmfPXFLRuxl5+Aq3U260wof9nn0b0i+P5OEUXm1vnxkRpXQ== + dependencies: + has "^1.0.3" + object-is "^1.0.1" + +enzyme-to-json@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.4.3.tgz#ed4386f48768ed29e2d1a2910893542c34e7e0af" + integrity sha512-jqNEZlHqLdz7OTpXSzzghArSS3vigj67IU/fWkPyl1c0TCj9P5s6Ze0kRkYZWNEoCqCR79xlQbigYlMx5erh8A== + dependencies: + lodash "^4.17.15" + +enzyme@^3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6" + integrity sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg== + dependencies: + array.prototype.flat "^1.2.1" + cheerio "^1.0.0-rc.2" + function.prototype.name "^1.1.0" + has "^1.0.3" + html-element-map "^1.0.0" + is-boolean-object "^1.0.0" + is-callable "^1.1.4" + is-number-object "^1.0.3" + is-regex "^1.0.4" + is-string "^1.0.4" + is-subset "^0.1.1" + lodash.escape "^4.0.1" + lodash.isequal "^4.5.0" + object-inspect "^1.6.0" + object-is "^1.0.1" + object.assign "^4.1.0" + object.entries "^1.0.4" + object.values "^1.0.4" + raf "^3.4.0" + rst-selector-parser "^2.2.3" + string.prototype.trim "^1.1.2" + +errno@^0.1.3, errno@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + dependencies: + prr "~1.0.1" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.12.0, es-abstract@^1.15.0, es-abstract@^1.5.1, es-abstract@^1.7.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.15.0.tgz#8884928ec7e40a79e3c9bc812d37d10c8b24cc57" + integrity sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.0" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-inspect "^1.6.0" + object-keys "^1.1.1" + string.prototype.trimleft "^2.1.0" + string.prototype.trimright "^2.1.0" + +es-abstract@^1.13.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d" + integrity sha512-xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.0" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-inspect "^1.6.0" + object-keys "^1.1.1" + string.prototype.trimleft "^2.1.0" + string.prototype.trimright "^2.1.0" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@^0.10.51: + version "0.10.51" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.51.tgz#ed2d7d9d48a12df86e0299287e93a09ff478842f" + integrity sha512-oRpWzM2WcLHVKpnrcyB7OW8j/s67Ba04JCm0WnNv3RiABSvs7mrQlutB8DBv793gKcp0XENR8Il8WxGTlZ73gQ== + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.1" + next-tick "^1.0.0" + +es6-iterator@2.0.3, es6-iterator@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-symbol@^3.1.1, es6-symbol@~3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.2.tgz#859fdd34f32e905ff06d752e7171ddd4444a7ed1" + integrity sha512-/ZypxQsArlv+KHpGvng52/Iz8by3EQPxhmbuz8yFG89N/caTFBSbcXONDw0aMjy827gQg26XAjP4uXFvnfINmQ== + dependencies: + d "^1.0.1" + es5-ext "^0.10.51" + +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +escodegen@^1.11.0, escodegen@^1.11.1, escodegen@^1.9.1: + version "1.12.0" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" + integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg== + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +eslint-config-prettier@^6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.4.0.tgz#0a04f147e31d33c6c161b2dd0971418ac52d0477" + integrity sha512-YrKucoFdc7SEko5Sxe4r6ixqXPDP1tunGw91POeZTTRKItf/AMFYt/YLEQtZMkR2LVpAVhcAcZgcWpm1oGPW7w== + dependencies: + get-stdin "^6.0.0" + +eslint-config-react-app@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-5.0.2.tgz#df40d73a1402986030680c040bbee520db5a32a4" + integrity sha512-VhlESAQM83uULJ9jsvcKxx2Ab0yrmjUt8kDz5DyhTQufqWE0ssAnejlWri5LXv25xoXfdqOyeDPdfJS9dXKagQ== + dependencies: + confusing-browser-globals "^1.0.9" + +eslint-import-resolver-node@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + dependencies: + debug "^2.6.9" + resolve "^1.5.0" + +eslint-loader@3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-3.0.2.tgz#5a627316a51d6f41d357b9f6f0554e91506cdd6e" + integrity sha512-S5VnD+UpVY1PyYRqeBd/4pgsmkvSokbHqTXAQMpvCyRr3XN2tvSLo9spm2nEpqQqh9dezw3os/0zWihLeOg2Rw== + dependencies: + fs-extra "^8.1.0" + loader-fs-cache "^1.0.2" + loader-utils "^1.2.3" + object-hash "^1.3.1" + schema-utils "^2.2.0" + +eslint-module-utils@^2.4.0: + version "2.4.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c" + integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw== + dependencies: + debug "^2.6.8" + pkg-dir "^2.0.0" + +eslint-plugin-flowtype@3.13.0, eslint-plugin-flowtype@3.x: + version "3.13.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.13.0.tgz#e241ebd39c0ce519345a3f074ec1ebde4cf80f2c" + integrity sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw== + dependencies: + lodash "^4.17.15" + +eslint-plugin-import@2.18.2, eslint-plugin-import@2.x: + version "2.18.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" + integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== + dependencies: + array-includes "^3.0.3" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.0" + has "^1.0.3" + minimatch "^3.0.4" + object.values "^1.1.0" + read-pkg-up "^2.0.0" + resolve "^1.11.0" + +eslint-plugin-jsx-a11y@6.2.3, eslint-plugin-jsx-a11y@6.x: + version "6.2.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.2.3.tgz#b872a09d5de51af70a97db1eea7dc933043708aa" + integrity sha512-CawzfGt9w83tyuVekn0GDPU9ytYtxyxyFZ3aSWROmnRRFQFT2BiPJd7jvRdzNDi6oLWaS2asMeYSNMjWTV4eNg== + dependencies: + "@babel/runtime" "^7.4.5" + aria-query "^3.0.0" + array-includes "^3.0.3" + ast-types-flow "^0.0.7" + axobject-query "^2.0.2" + damerau-levenshtein "^1.0.4" + emoji-regex "^7.0.2" + has "^1.0.3" + jsx-ast-utils "^2.2.1" + +eslint-plugin-prettier@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.1.tgz#507b8562410d02a03f0ddc949c616f877852f2ba" + integrity sha512-A+TZuHZ0KU0cnn56/9mfR7/KjUJ9QNVXUhwvRFSR7PGPe0zQR6PTkmyqg1AtUUEOzTqeRsUwyKFh0oVZKVCrtA== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-react-hooks@1.x, eslint-plugin-react-hooks@^1.6.1: + version "1.7.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04" + integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA== + +eslint-plugin-react@7.14.3: + version "7.14.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13" + integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA== + dependencies: + array-includes "^3.0.3" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.1.0" + object.entries "^1.1.0" + object.fromentries "^2.0.0" + object.values "^1.1.0" + prop-types "^15.7.2" + resolve "^1.10.1" + +eslint-plugin-react@7.x: + version "7.16.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09" + integrity sha512-GacBAATewhhptbK3/vTP09CbFrgUJmBSaaRcWdbQLFvUZy9yVcQxigBNHGPU/KE2AyHpzj3AWXpxoMTsIDiHug== + dependencies: + array-includes "^3.0.3" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.2.1" + object.entries "^1.1.0" + object.fromentries "^2.0.0" + object.values "^1.1.0" + prop-types "^15.7.2" + resolve "^1.12.0" + +eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.0.0.tgz#e87c8887c73e8d1ec84f1ca591645c358bfc8fb9" + integrity sha512-oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-utils@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" + integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== + dependencies: + eslint-visitor-keys "^1.0.0" + +eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" + integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== + +eslint@6.x, eslint@^6.1.0: + version "6.5.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.5.1.tgz#828e4c469697d43bb586144be152198b91e96ed6" + integrity sha512-32h99BoLYStT1iq1v2P9uwpyznQ4M2jRiFB6acitKz52Gqn+vPaMDUTB1bYi1WN4Nquj2w+t+bimYUG83DC55A== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.10.0" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^5.0.0" + eslint-utils "^1.4.2" + eslint-visitor-keys "^1.1.0" + espree "^6.1.1" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.0.0" + globals "^11.7.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^6.4.1" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.14" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^6.1.2" + strip-ansi "^5.2.0" + strip-json-comments "^3.0.1" + table "^5.2.3" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de" + integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ== + dependencies: + acorn "^7.0.0" + acorn-jsx "^5.0.2" + eslint-visitor-keys "^1.1.0" + +esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + dependencies: + estraverse "^4.1.0" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +esutils@^2.0.0, esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +eventemitter3@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb" + integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg== + +events@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" + integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== + +eventsource@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0" + integrity sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ== + dependencies: + original "^1.0.0" + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +exec-sh@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" + integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +exit@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" + integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expect@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-24.9.0.tgz#b75165b4817074fa4a157794f46fe9f1ba15b6ca" + integrity sha512-wvVAx8XIol3Z5m9zvZXiyZOQ+sRJqNTIm6sGjdWlaZIeupQGO3WbYI+15D/AmEwZywL6wtJkbAbJtzkOfBuR0Q== + dependencies: + "@jest/types" "^24.9.0" + ansi-styles "^3.2.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-regex-util "^24.9.0" + +express@^4.16.2: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +external-editor@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" + integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + +fast-glob@^2.0.2: + version "2.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d" + integrity sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw== + dependencies: + "@mrmlnc/readdir-enhanced" "^2.2.1" + "@nodelib/fs.stat" "^1.1.2" + glob-parent "^3.1.0" + is-glob "^4.0.0" + merge2 "^1.2.3" + micromatch "^3.1.10" + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +faye-websocket@^0.10.0: + version "0.10.0" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4" + integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ= + dependencies: + websocket-driver ">=0.5.1" + +faye-websocket@~0.11.1: + version "0.11.3" + resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e" + integrity sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA== + dependencies: + websocket-driver ">=0.5.1" + +fb-watchman@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" + integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= + dependencies: + bser "^2.0.0" + +fbjs@^0.8.0: + version "0.8.17" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" + integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= + dependencies: + core-js "^1.0.0" + isomorphic-fetch "^2.1.1" + loose-envify "^1.0.0" + object-assign "^4.1.0" + promise "^7.1.1" + setimmediate "^1.0.5" + ua-parser-js "^0.7.18" + +figgy-pudding@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +file-loader@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" + integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw== + dependencies: + loader-utils "^1.0.2" + schema-utils "^1.0.0" + +filesize@3.6.1: + version "3.6.1" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" + integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +find-cache-dir@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-0.1.1.tgz#c8defae57c8a52a8a784f9e31c57c742e993a0b9" + integrity sha1-yN765XyKUqinhPnjHFfHQumToLk= + dependencies: + commondir "^1.0.1" + mkdirp "^0.5.1" + pkg-dir "^1.0.0" + +find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-up@3.0.0, find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flatted@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.1.tgz#69e57caa8f0eacbc281d2e2cb458d46fdb449e08" + integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== + +flatten@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" + integrity sha1-2uRqnXj74lKSJYzB54CkHZXAN4I= + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +follow-redirects@^1.0.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f" + integrity sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A== + dependencies: + debug "^3.0.0" + +for-in@^0.1.3: + version "0.1.8" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-0.1.8.tgz#d8773908e31256109952b1fdb9b3fa867d2775e1" + integrity sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE= + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +for-own@^0.1.3: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +fork-ts-checker-webpack-plugin@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c" + integrity sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA== + dependencies: + babel-code-frame "^6.22.0" + chalk "^2.4.1" + chokidar "^2.0.4" + micromatch "^3.1.10" + minimatch "^3.0.4" + semver "^5.6.0" + tapable "^1.0.0" + worker-rpc "^0.1.0" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-extra@7.0.1, fs-extra@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-extra@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^1.2.5: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" + integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== + dependencies: + minipass "^2.6.0" + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a" + integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ== + +fsevents@^1.2.7: + version "1.2.9" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" + integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== + dependencies: + nan "^2.12.1" + node-pre-gyp "^0.12.0" + +fsevents@~2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.1.tgz#74c64e21df71721845d0c44fe54b7f56b82995a9" + integrity sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw== + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +function.prototype.name@^1.1.0, function.prototype.name@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.1.tgz#6d252350803085abc2ad423d4fe3be2f9cbda392" + integrity sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + functions-have-names "^1.1.1" + is-callable "^1.1.4" + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +functions-have-names@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.0.tgz#83da7583e4ea0c9ac5ff530f73394b033e0bf77d" + integrity sha512-zKXyzksTeaCSw5wIX79iCA40YAa6CJMJgNg9wdkU/ERBrIdPSimPICYiLp65lRbSBqtiHql/HZfS2DyI/AH6tQ== + +fuzzy@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/fuzzy/-/fuzzy-0.1.3.tgz#4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8" + integrity sha1-THbsL/CsGjap3M+aAN+GIweNTtg= + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + +get-caller-file@^2.0.1: + version "2.0.5" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" + integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.1.tgz#6f7764f88ea11e0b514bd9bd860a132259992ca4" + integrity sha512-09/VS4iek66Dh2bctjRkowueRJbY1JDGR1L/zRxO1Qk8Uxs6PnqaNSqalpizPT+CDjre3hnEsuzvhgomz9qYrA== + +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-parent@^5.0.0, glob-parent@~5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.0.tgz#5f4c1d1e748d30cd73ad2944b3577a81b081e8c2" + integrity sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw== + dependencies: + is-glob "^4.0.1" + +glob-to-regexp@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" + integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= + +glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: + version "7.1.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +global-modules@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" + integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== + dependencies: + global-prefix "^3.0.0" + +global-prefix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" + integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== + dependencies: + ini "^1.3.5" + kind-of "^6.0.2" + which "^1.3.1" + +globals@^11.1.0, globals@^11.7.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globby@8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" + integrity sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w== + dependencies: + array-union "^1.0.1" + dir-glob "2.0.0" + fast-glob "^2.0.2" + glob "^7.1.2" + ignore "^3.3.5" + pify "^3.0.0" + slash "^1.0.0" + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.2" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" + integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== + +growly@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081" + integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE= + +gud@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" + integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== + +gzip-size@5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" + integrity sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA== + dependencies: + duplexer "^0.1.1" + pify "^4.0.1" + +handle-thing@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754" + integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ== + +handlebars@^4.1.2: + version "4.4.3" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.4.3.tgz#180bae52c1d0e9ec0c15d7e82a4362d662762f6e" + integrity sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw== + dependencies: + neo-async "^2.6.0" + optimist "^0.6.1" + source-map "^0.6.1" + optionalDependencies: + uglify-js "^3.1.4" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + +harmony-reflect@^1.4.6: + version "1.6.1" + resolved "https://registry.yarnpkg.com/harmony-reflect/-/harmony-reflect-1.6.1.tgz#c108d4f2bb451efef7a37861fdbdae72c9bdefa9" + integrity sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.0, has@^1.0.1, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +he@1.2.x: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +hex-color-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" + integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +hosted-git-info@^2.1.4: + version "2.8.5" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" + integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== + +hpack.js@^2.1.6: + version "2.1.6" + resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2" + integrity sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI= + dependencies: + inherits "^2.0.1" + obuf "^1.0.0" + readable-stream "^2.0.1" + wbuf "^1.1.0" + +hsl-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" + integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= + +hsla-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" + integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= + +html-comment-regex@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" + integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== + +html-element-map@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.1.0.tgz#e5aab9a834caf883b421f8bd9eaedcaac887d63c" + integrity sha512-iqiG3dTZmy+uUaTmHarTL+3/A2VW9ox/9uasKEZC+R/wAtUrTcRlXPSaPqsnWPfIu8wqn09jQNwMRqzL54jSYA== + dependencies: + array-filter "^1.0.0" + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +html-entities@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" + integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= + +html-minifier@^3.5.20: + version "3.5.21" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" + integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== + dependencies: + camel-case "3.0.x" + clean-css "4.2.x" + commander "2.17.x" + he "1.2.x" + param-case "2.1.x" + relateurl "0.2.x" + uglify-js "3.4.x" + +html-webpack-plugin@4.0.0-beta.5: + version "4.0.0-beta.5" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.5.tgz#2c53083c1151bfec20479b1f8aaf0039e77b5513" + integrity sha512-y5l4lGxOW3pz3xBTFdfB9rnnrWRPVxlAhX6nrBYIcW+2k2zC3mSp/3DxlWVCMBfnO6UAnoF8OcFn0IMy6kaKAQ== + dependencies: + html-minifier "^3.5.20" + loader-utils "^1.1.0" + lodash "^4.17.11" + pretty-error "^2.1.1" + tapable "^1.1.0" + util.promisify "1.0.0" + +htmlparser2@^3.10.0, htmlparser2@^3.3.0, htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +http-deceiver@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" + integrity sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc= + +http-errors@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-errors@~1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d" + integrity sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0= + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.0" + statuses ">= 1.4.0 < 2" + +http-errors@~1.7.2: + version "1.7.3" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" + integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +"http-parser-js@>=0.4.0 <0.4.11": + version "0.4.10" + resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4" + integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q= + +http-proxy-middleware@^0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" + integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q== + dependencies: + http-proxy "^1.17.0" + is-glob "^4.0.0" + lodash "^4.17.11" + micromatch "^3.1.10" + +http-proxy@^1.17.0: + version "1.18.0" + resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.0.tgz#dbe55f63e75a347db7f3d99974f2692a314a6a3a" + integrity sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ== + dependencies: + eventemitter3 "^4.0.0" + follow-redirects "^1.0.0" + requires-port "^1.0.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +i@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" + integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= + +iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= + +icss-utils@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" + integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== + dependencies: + postcss "^7.0.14" + +identity-obj-proxy@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz#94d2bda96084453ef36fbc5aaec37e0f79f1fc14" + integrity sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ= + dependencies: + harmony-reflect "^1.4.6" + +ieee754@^1.1.4: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + +ignore-walk@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" + integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== + dependencies: + minimatch "^3.0.4" + +ignore@^3.3.5: + version "3.3.10" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +immer@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d" + integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg== + +import-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9" + integrity sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk= + dependencies: + import-from "^2.1.0" + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" + integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-2.1.0.tgz#335db7f2a7affd53aaa471d4b8021dee36b7f3b1" + integrity sha1-M1238qev/VOqpHHUuAId7ja387E= + dependencies: + resolve-from "^3.0.0" + +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + +infer-owner@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" + integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +ini@^1.3.5, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +inquirer@6.5.0: + version "6.5.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" + integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== + dependencies: + ansi-escapes "^3.2.0" + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^2.0.0" + lodash "^4.17.12" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.4.0" + string-width "^2.1.0" + strip-ansi "^5.1.0" + through "^2.3.6" + +inquirer@^6.4.1: + version "6.5.2" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" + integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== + dependencies: + ansi-escapes "^3.2.0" + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^2.0.0" + lodash "^4.17.12" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.4.0" + string-width "^2.1.0" + strip-ansi "^5.1.0" + through "^2.3.6" + +internal-ip@^4.2.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" + integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== + dependencies: + default-gateway "^4.2.0" + ipaddr.js "^1.9.0" + +invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + +ip-regex@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" + integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= + +ip@^1.1.0, ip@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" + integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= + +ipaddr.js@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" + integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== + +ipaddr.js@^1.9.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arguments@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.0.4.tgz#3faf966c7cba0ff437fb31f6250082fcf0448cf3" + integrity sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA== + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + +is-binary-path@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" + integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== + dependencies: + binary-extensions "^2.0.0" + +is-boolean-object@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" + integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M= + +is-buffer@^1.0.2, is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-color-stop@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" + integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= + dependencies: + css-color-names "^0.0.4" + hex-color-regex "^1.1.0" + hsl-regex "^1.0.0" + hsla-regex "^1.0.0" + rgb-regex "^1.0.1" + rgba-regex "^1.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-generator-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" + integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-number-object@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" + integrity sha1-8mWrian0RQNO9q/xWo8AsA9VF5k= + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-obj@^1.0.0, is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= + +is-path-in-cwd@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" + integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" + integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= + dependencies: + has "^1.0.1" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + +is-root@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" + integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== + +is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-string@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" + integrity sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ= + +is-subset@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" + integrity sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY= + +is-svg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" + integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== + dependencies: + html-comment-regex "^1.1.0" + +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + dependencies: + has-symbols "^1.0.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +isomorphic-fetch@^2.1.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" + integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= + dependencies: + node-fetch "^1.0.1" + whatwg-fetch ">=0.10.0" + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +istanbul-lib-coverage@^2.0.2, istanbul-lib-coverage@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz#675f0ab69503fad4b1d849f736baaca803344f49" + integrity sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA== + +istanbul-lib-instrument@^3.0.1, istanbul-lib-instrument@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz#a5f63d91f0bbc0c3e479ef4c5de027335ec6d630" + integrity sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA== + dependencies: + "@babel/generator" "^7.4.0" + "@babel/parser" "^7.4.3" + "@babel/template" "^7.4.0" + "@babel/traverse" "^7.4.3" + "@babel/types" "^7.4.0" + istanbul-lib-coverage "^2.0.5" + semver "^6.0.0" + +istanbul-lib-report@^2.0.4: + version "2.0.8" + resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz#5a8113cd746d43c4889eba36ab10e7d50c9b4f33" + integrity sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ== + dependencies: + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + supports-color "^6.1.0" + +istanbul-lib-source-maps@^3.0.1: + version "3.0.6" + resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz#284997c48211752ec486253da97e3879defba8c8" + integrity sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw== + dependencies: + debug "^4.1.1" + istanbul-lib-coverage "^2.0.5" + make-dir "^2.1.0" + rimraf "^2.6.3" + source-map "^0.6.1" + +istanbul-reports@^2.2.6: + version "2.2.6" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" + integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== + dependencies: + handlebars "^4.1.2" + +jest-changed-files@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-24.9.0.tgz#08d8c15eb79a7fa3fc98269bc14b451ee82f8039" + integrity sha512-6aTWpe2mHF0DhL28WjdkO8LyGjs3zItPET4bMSeXU6T3ub4FPMw+mcOcbdGXQOAfmLcxofD23/5Bl9Z4AkFwqg== + dependencies: + "@jest/types" "^24.9.0" + execa "^1.0.0" + throat "^4.0.0" + +jest-cli@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-24.9.0.tgz#ad2de62d07472d419c6abc301fc432b98b10d2af" + integrity sha512-+VLRKyitT3BWoMeSUIHRxV/2g8y9gw91Jh5z2UmXZzkZKpbC08CSehVxgHUwTpy+HwGcns/tqafQDJW7imYvGg== + dependencies: + "@jest/core" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + exit "^0.1.2" + import-local "^2.0.0" + is-ci "^2.0.0" + jest-config "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + prompts "^2.0.1" + realpath-native "^1.1.0" + yargs "^13.3.0" + +jest-config@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-24.9.0.tgz#fb1bbc60c73a46af03590719efa4825e6e4dd1b5" + integrity sha512-RATtQJtVYQrp7fvWg6f5y3pEFj9I+H8sWw4aKxnDZ96mob5i5SD6ZEGWgMLXQ4LE8UurrjbdlLWdUeo+28QpfQ== + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^24.9.0" + "@jest/types" "^24.9.0" + babel-jest "^24.9.0" + chalk "^2.0.1" + glob "^7.1.1" + jest-environment-jsdom "^24.9.0" + jest-environment-node "^24.9.0" + jest-get-type "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + micromatch "^3.1.10" + pretty-format "^24.9.0" + realpath-native "^1.1.0" + +jest-diff@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" + integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== + dependencies: + chalk "^2.0.1" + diff-sequences "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-docblock@^24.3.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2" + integrity sha512-F1DjdpDMJMA1cN6He0FNYNZlo3yYmOtRUnktrT9Q37njYzC5WEaDdmbynIgy0L/IvXvvgsG8OsqhLPXTpfmZAA== + dependencies: + detect-newline "^2.1.0" + +jest-each@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-24.9.0.tgz#eb2da602e2a610898dbc5f1f6df3ba86b55f8b05" + integrity sha512-ONi0R4BvW45cw8s2Lrx8YgbeXL1oCQ/wIDwmsM3CqM/nlblNCPmnC3IPQlMbRFZu3wKdQ2U8BqM6lh3LJ5Bsog== + dependencies: + "@jest/types" "^24.9.0" + chalk "^2.0.1" + jest-get-type "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + +jest-environment-jsdom-fourteen@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-0.1.0.tgz#aad6393a9d4b565b69a609109bf469f62bf18ccc" + integrity sha512-4vtoRMg7jAstitRzL4nbw83VmGH8Rs13wrND3Ud2o1fczDhMUF32iIrNKwYGgeOPUdfvZU4oy8Bbv+ni1fgVCA== + dependencies: + jest-mock "^24.5.0" + jest-util "^24.5.0" + jsdom "^14.0.0" + +jest-environment-jsdom@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-24.9.0.tgz#4b0806c7fc94f95edb369a69cc2778eec2b7375b" + integrity sha512-Zv9FV9NBRzLuALXjvRijO2351DRQeLYXtpD4xNvfoVFw21IOKNhZAEUKcbiEtjTkm2GsJ3boMVgkaR7rN8qetA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + jsdom "^11.5.1" + +jest-environment-node@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-24.9.0.tgz#333d2d2796f9687f2aeebf0742b519f33c1cbfd3" + integrity sha512-6d4V2f4nxzIzwendo27Tr0aFm+IXWa0XEUnaH6nU0FMaozxovt+sfRvh4J47wL1OvF83I3SSTu0XK+i4Bqe7uA== + dependencies: + "@jest/environment" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/types" "^24.9.0" + jest-mock "^24.9.0" + jest-util "^24.9.0" + +jest-fetch-mock@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/jest-fetch-mock/-/jest-fetch-mock-2.1.2.tgz#1260b347918e3931c4ec743ceaf60433da661bd0" + integrity sha512-tcSR4Lh2bWLe1+0w/IwvNxeDocMI/6yIA2bijZ0fyWxC4kQ18lckQ1n7Yd40NKuisGmcGBRFPandRXrW/ti/Bw== + dependencies: + cross-fetch "^2.2.2" + promise-polyfill "^7.1.1" + +jest-get-type@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-24.9.0.tgz#1684a0c8a50f2e4901b6644ae861f579eed2ef0e" + integrity sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q== + +jest-haste-map@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-24.9.0.tgz#b38a5d64274934e21fa417ae9a9fbeb77ceaac7d" + integrity sha512-kfVFmsuWui2Sj1Rp1AJ4D9HqJwE4uwTlS/vO+eRUaMmd54BFpli2XhMQnPC2k4cHFVbB2Q2C+jtI1AGLgEnCjQ== + dependencies: + "@jest/types" "^24.9.0" + anymatch "^2.0.0" + fb-watchman "^2.0.0" + graceful-fs "^4.1.15" + invariant "^2.2.4" + jest-serializer "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.9.0" + micromatch "^3.1.10" + sane "^4.0.3" + walker "^1.0.7" + optionalDependencies: + fsevents "^1.2.7" + +jest-jasmine2@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-24.9.0.tgz#1f7b1bd3242c1774e62acabb3646d96afc3be6a0" + integrity sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw== + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + co "^4.6.0" + expect "^24.9.0" + is-generator-fn "^2.0.0" + jest-each "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-runtime "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + pretty-format "^24.9.0" + throat "^4.0.0" + +jest-leak-detector@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-24.9.0.tgz#b665dea7c77100c5c4f7dfcb153b65cf07dcf96a" + integrity sha512-tYkFIDsiKTGwb2FG1w8hX9V0aUb2ot8zY/2nFg087dUageonw1zrLMP4W6zsRO59dPkTSKie+D4rhMuP9nRmrA== + dependencies: + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-matcher-utils@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-24.9.0.tgz#f5b3661d5e628dffe6dd65251dfdae0e87c3a073" + integrity sha512-OZz2IXsu6eaiMAwe67c1T+5tUAtQyQx27/EMEkbFAGiw52tB9em+uGbzpcgYVpA8wl0hlxKPZxrly4CXU/GjHA== + dependencies: + chalk "^2.0.1" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + pretty-format "^24.9.0" + +jest-message-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-24.9.0.tgz#527f54a1e380f5e202a8d1149b0ec872f43119e3" + integrity sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/stack-utils" "^1.0.1" + chalk "^2.0.1" + micromatch "^3.1.10" + slash "^2.0.0" + stack-utils "^1.0.1" + +jest-mock@^24.5.0, jest-mock@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" + integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== + dependencies: + "@jest/types" "^24.9.0" + +jest-pnp-resolver@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz#ecdae604c077a7fbc70defb6d517c3c1c898923a" + integrity sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ== + +jest-regex-util@^24.3.0, jest-regex-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-24.9.0.tgz#c13fb3380bde22bf6575432c493ea8fe37965636" + integrity sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA== + +jest-resolve-dependencies@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-24.9.0.tgz#ad055198959c4cfba8a4f066c673a3f0786507ab" + integrity sha512-Fm7b6AlWnYhT0BXy4hXpactHIqER7erNgIsIozDXWl5dVm+k8XdGVe1oTg1JyaFnOxarMEbax3wyRJqGP2Pq+g== + dependencies: + "@jest/types" "^24.9.0" + jest-regex-util "^24.3.0" + jest-snapshot "^24.9.0" + +jest-resolve@24.9.0, jest-resolve@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-24.9.0.tgz#dff04c7687af34c4dd7e524892d9cf77e5d17321" + integrity sha512-TaLeLVL1l08YFZAt3zaPtjiVvyy4oSA6CRe+0AFPPVX3Q/VI0giIWWoAvoS5L96vj9Dqxj4fB5p2qrHCmTU/MQ== + dependencies: + "@jest/types" "^24.9.0" + browser-resolve "^1.11.3" + chalk "^2.0.1" + jest-pnp-resolver "^1.2.1" + realpath-native "^1.1.0" + +jest-runner@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-24.9.0.tgz#574fafdbd54455c2b34b4bdf4365a23857fcdf42" + integrity sha512-KksJQyI3/0mhcfspnxxEOBueGrd5E4vV7ADQLT9ESaCzz02WnbdbKWIf5Mkaucoaj7obQckYPVX6JJhgUcoWWg== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + chalk "^2.4.2" + exit "^0.1.2" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-docblock "^24.3.0" + jest-haste-map "^24.9.0" + jest-jasmine2 "^24.9.0" + jest-leak-detector "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + jest-runtime "^24.9.0" + jest-util "^24.9.0" + jest-worker "^24.6.0" + source-map-support "^0.5.6" + throat "^4.0.0" + +jest-runtime@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-24.9.0.tgz#9f14583af6a4f7314a6a9d9f0226e1a781c8e4ac" + integrity sha512-8oNqgnmF3v2J6PVRM2Jfuj8oX3syKmaynlDMMKQ4iyzbQzIG6th5ub/lM2bCMTmoTKM3ykcUYI2Pw9xwNtjMnw== + dependencies: + "@jest/console" "^24.7.1" + "@jest/environment" "^24.9.0" + "@jest/source-map" "^24.3.0" + "@jest/transform" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + chalk "^2.0.1" + exit "^0.1.2" + glob "^7.1.3" + graceful-fs "^4.1.15" + jest-config "^24.9.0" + jest-haste-map "^24.9.0" + jest-message-util "^24.9.0" + jest-mock "^24.9.0" + jest-regex-util "^24.3.0" + jest-resolve "^24.9.0" + jest-snapshot "^24.9.0" + jest-util "^24.9.0" + jest-validate "^24.9.0" + realpath-native "^1.1.0" + slash "^2.0.0" + strip-bom "^3.0.0" + yargs "^13.3.0" + +jest-serializer@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-24.9.0.tgz#e6d7d7ef96d31e8b9079a714754c5d5c58288e73" + integrity sha512-DxYipDr8OvfrKH3Kel6NdED3OXxjvxXZ1uIY2I9OFbGg+vUkkg7AGvi65qbhbWNPvDckXmzMPbK3u3HaDO49bQ== + +jest-snapshot@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-24.9.0.tgz#ec8e9ca4f2ec0c5c87ae8f925cf97497b0e951ba" + integrity sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew== + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^24.9.0" + chalk "^2.0.1" + expect "^24.9.0" + jest-diff "^24.9.0" + jest-get-type "^24.9.0" + jest-matcher-utils "^24.9.0" + jest-message-util "^24.9.0" + jest-resolve "^24.9.0" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + pretty-format "^24.9.0" + semver "^6.2.0" + +jest-util@^24.5.0, jest-util@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" + integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== + dependencies: + "@jest/console" "^24.9.0" + "@jest/fake-timers" "^24.9.0" + "@jest/source-map" "^24.9.0" + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + callsites "^3.0.0" + chalk "^2.0.1" + graceful-fs "^4.1.15" + is-ci "^2.0.0" + mkdirp "^0.5.1" + slash "^2.0.0" + source-map "^0.6.0" + +jest-validate@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-24.9.0.tgz#0775c55360d173cd854e40180756d4ff52def8ab" + integrity sha512-HPIt6C5ACwiqSiwi+OfSSHbK8sG7akG8eATl+IPKaeIjtPOeBUd/g3J7DghugzxrGjI93qS/+RPKe1H6PqvhRQ== + dependencies: + "@jest/types" "^24.9.0" + camelcase "^5.3.1" + chalk "^2.0.1" + jest-get-type "^24.9.0" + leven "^3.1.0" + pretty-format "^24.9.0" + +jest-watch-typeahead@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.4.0.tgz#4d5356839a85421588ce452d2440bf0d25308397" + integrity sha512-bJR/HPNgOQnkmttg1OkBIrYFAYuxFxExtgQh67N2qPvaWGVC8TCkedRNPKBfmZfVXFD3u2sCH+9OuS5ApBfCgA== + dependencies: + ansi-escapes "^4.2.1" + chalk "^2.4.1" + jest-watcher "^24.3.0" + slash "^3.0.0" + string-length "^3.1.0" + strip-ansi "^5.0.0" + +jest-watcher@^24.3.0, jest-watcher@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-24.9.0.tgz#4b56e5d1ceff005f5b88e528dc9afc8dd4ed2b3b" + integrity sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw== + dependencies: + "@jest/test-result" "^24.9.0" + "@jest/types" "^24.9.0" + "@types/yargs" "^13.0.0" + ansi-escapes "^3.0.0" + chalk "^2.0.1" + jest-util "^24.9.0" + string-length "^2.0.0" + +jest-worker@^24.6.0, jest-worker@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-24.9.0.tgz#5dbfdb5b2d322e98567898238a9697bcce67b3e5" + integrity sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw== + dependencies: + merge-stream "^2.0.0" + supports-color "^6.1.0" + +jest@24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" + integrity sha512-YvkBL1Zm7d2B1+h5fHEOdyjCG+sGMz4f8D86/0HiqJ6MB4MnDc8FgP5vdWsGnemOQro7lnYo8UakZ3+5A0jxGw== + dependencies: + import-local "^2.0.0" + jest-cli "^24.9.0" + +jquery.flot.tooltip@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/jquery.flot.tooltip/-/jquery.flot.tooltip-0.9.0.tgz#ae16bf94b26c2ed9ab4db167bba52dfdb615c1df" + integrity sha1-rha/lLJsLtmrTbFnu6Ut/bYVwd8= + +jquery@^3.0, jquery@^3.3.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" + integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== + +js-levenshtein@^1.1.3: + version "1.1.6" + resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" + integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + +js-yaml@^3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsdom@^11.5.1: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsdom@^14.0.0: + version "14.1.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-14.1.0.tgz#916463b6094956b0a6c1782c94e380cd30e1981b" + integrity sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng== + dependencies: + abab "^2.0.0" + acorn "^6.0.4" + acorn-globals "^4.3.0" + array-equal "^1.0.0" + cssom "^0.3.4" + cssstyle "^1.1.1" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.0" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.1.3" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.5" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^2.5.0" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^6.1.2" + xml-name-validator "^3.0.0" + +jsdom@^15.2.0: + version "15.2.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.0.tgz#4baead4f464e733533ed6ac607ce440918cf5cbb" + integrity sha512-+hRyEfjRPFwTYMmSQ3/f7U9nP8ZNZmbkmUek760ZpxnCPWJIhaaLRuUSvpJ36fZKCGENxLwxClzwpOpnXNfChQ== + dependencies: + abab "^2.0.0" + acorn "^7.1.0" + acorn-globals "^4.3.2" + array-equal "^1.0.0" + cssom "^0.4.1" + cssstyle "^2.0.0" + data-urls "^1.1.0" + domexception "^1.0.1" + escodegen "^1.11.1" + html-encoding-sniffer "^1.0.2" + nwsapi "^2.1.4" + parse5 "5.1.0" + pn "^1.1.0" + request "^2.88.0" + request-promise-native "^1.0.7" + saxes "^3.1.9" + symbol-tree "^3.2.2" + tough-cookie "^3.0.1" + w3c-hr-time "^1.0.1" + w3c-xmlserializer "^1.1.2" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.5" + whatwg-mimetype "^2.3.0" + whatwg-url "^7.0.0" + ws "^7.0.0" + xml-name-validator "^3.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + +json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +json-stable-stringify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz#9a759d39c5f2ff503fd5300646ed445f88c4f9af" + integrity sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8= + dependencies: + jsonify "~0.0.0" + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json3@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81" + integrity sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA== + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +json5@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" + integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== + dependencies: + minimist "^1.2.0" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonify@~0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/jsonify/-/jsonify-0.0.0.tgz#2c74b6ee41d93ca51b7b5aaee8f503631d252a73" + integrity sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM= + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" + integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ== + dependencies: + array-includes "^3.0.3" + object.assign "^4.1.0" + +just-extend@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc" + integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw== + +killable@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" + integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== + +kind-of@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5" + integrity sha1-AY7HpM5+OobLkUG+UZ0kyPqpgbU= + dependencies: + is-buffer "^1.0.2" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + +kleur@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" + integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== + +last-call-webpack-plugin@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" + integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== + dependencies: + lodash "^4.17.5" + webpack-sources "^1.1.0" + +lazy-cache@^0.2.3: + version "0.2.7" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" + integrity sha1-f+3fLctu23fRHvHRF6tf/fCrG2U= + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= + +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + +leven@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" + integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + +loader-fs-cache@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz#54cedf6b727e1779fd8f01205f05f6e88706f086" + integrity sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw== + dependencies: + find-cache-dir "^0.1.1" + mkdirp "0.5.1" + +loader-runner@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + +loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash-es@^4.17.15: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.15.tgz#21bd96839354412f23d7a10340e5eac6ee455d78" + integrity sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ== + +lodash._reinterpolate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + +lodash.escape@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-4.0.1.tgz#c9044690c21e04294beaa517712fded1fa88de98" + integrity sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg= + +lodash.escaperegexp@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz#64762c48618082518ac3df4ccf5d5886dae20347" + integrity sha1-ZHYsSGGAglGKw99Mz11YhtriA0c= + +lodash.flattendeep@^4.4.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz#fb030917f86a3134e5bc9bec0d69e0013ddfedb2" + integrity sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI= + +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= + +lodash.isfunction@^3.0.9: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" + integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== + +lodash.isobject@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d" + integrity sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0= + +lodash.isplainobject@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" + integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= + +lodash.isstring@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451" + integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.mergewith@^4.6.1: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" + integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash.template@^4.4.0, lodash.template@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab" + integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A== + dependencies: + lodash._reinterpolate "^3.0.0" + lodash.templatesettings "^4.0.0" + +lodash.templatesettings@^4.0.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33" + integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ== + dependencies: + lodash._reinterpolate "^3.0.0" + +lodash.tonumber@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/lodash.tonumber/-/lodash.tonumber-4.0.3.tgz#0b96b31b35672793eb7f5a63ee791f1b9e9025d9" + integrity sha1-C5azGzVnJ5Prf1pj7nkfG56QJdk= + +lodash.unescape@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" + integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + +"lodash@>=3.5 <5", lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== + +loglevel@^1.4.1: + version "1.6.4" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.4.tgz#f408f4f006db8354d0577dcf6d33485b3cb90d56" + integrity sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g== + +lolex@^4.1.0, lolex@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.2.0.tgz#ddbd7f6213ca1ea5826901ab1222b65d714b3cd7" + integrity sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg== + +loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +makeerror@1.0.x: + version "1.0.11" + resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" + integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= + dependencies: + tmpl "1.0.x" + +mamacro@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" + integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== + +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mdn-data@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" + integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== + +mdn-data@~1.1.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" + integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA== + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + +memory-fs@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +memory-fs@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c" + integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA== + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +merge-deep@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/merge-deep/-/merge-deep-3.0.2.tgz#f39fa100a4f1bd34ff29f7d2bf4508fbb8d83ad2" + integrity sha512-T7qC8kg4Zoti1cFd8Cr0M+qaZfOwjlPDEdZIIPPB2JZctjaPM4fX+i7HOId69tAti2fvO6X5ldfYUONDODsrkA== + dependencies: + arr-union "^3.1.0" + clone-deep "^0.2.4" + kind-of "^3.0.2" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + +merge-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== + +merge2@^1.2.3: + version "1.3.0" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.3.0.tgz#5b366ee83b2f1582c48f87e47cf1a9352103ca81" + integrity sha512-2j4DAdlBOkiSZIsaXk4mTE3sRS02yBHAtfy127xRV3bQUFqXkjHCHLW6Scv7DwNRbIWNHH8zpnz9zMaKXIdvYw== + +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + +microevent.ts@~0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0" + integrity sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g== + +micromatch@^3.1.10, micromatch@^3.1.4: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@1.40.0: + version "1.40.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" + integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== + +"mime-db@>= 1.40.0 < 2": + version "1.42.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac" + integrity sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ== + +mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.24" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== + dependencies: + mime-db "1.40.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" + integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mini-css-extract-plugin@0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1" + integrity sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw== + dependencies: + loader-utils "^1.1.0" + normalize-url "1.9.1" + schema-utils "^1.0.0" + webpack-sources "^1.1.0" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@3.0.4, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@^1.1.1, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" + integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" + integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== + dependencies: + minipass "^2.9.0" + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566" + integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mixin-object@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/mixin-object/-/mixin-object-2.0.1.tgz#4fb949441dab182540f1fe035ba60e1947a5e57e" + integrity sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4= + dependencies: + for-in "^0.1.3" + is-extendable "^0.1.1" + +mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= + dependencies: + minimist "0.0.8" + +moment-timezone@^0.4.0: + version "0.4.1" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.4.1.tgz#81f598c3ad5e22cdad796b67ecd8d88d0f5baa06" + integrity sha1-gfWYw61eIs2teWtn7NjYjQ9bqgY= + dependencies: + moment ">= 2.6.0" + +moment-timezone@^0.5.11, moment-timezone@^0.5.23: + version "0.5.27" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.27.tgz#73adec8139b6fe30452e78f210f27b1f346b8877" + integrity sha512-EIKQs7h5sAsjhPCqN6ggx6cEbs94GK050254TIJySD1bzoM5JTYDwAU1IoVOeTOL6Gm27kYJ51/uuvq1kIlrbw== + dependencies: + moment ">= 2.9.0" + +"moment@>= 2.6.0", "moment@>= 2.9.0", moment@>=2.14.0, moment@^2.22.2, moment@^2.24.0: + version "2.24.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" + integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== + +moo@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e" + integrity sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw== + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +multicast-dns-service-types@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz#899f11d9686e5e05cb91b35d5f0e63b773cfc901" + integrity sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE= + +multicast-dns@^6.0.1: + version "6.2.3" + resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-6.2.3.tgz#a0ec7bd9055c4282f790c3c82f4e28db3b31b229" + integrity sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g== + dependencies: + dns-packet "^1.3.1" + thunky "^1.0.2" + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + +nan@^2.12.1: + version "2.14.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +nearley@^2.7.10: + version "2.19.0" + resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.0.tgz#37717781d0fd0f2bfc95e233ebd75678ca4bda46" + integrity sha512-2v52FTw7RPqieZr3Gth1luAXZR7Je6q3KaDHY5bjl/paDUdMu35fZ8ICNgiYJRr3tf3NMvIQQR1r27AvEr9CRA== + dependencies: + commander "^2.19.0" + moo "^0.4.3" + railroad-diagrams "^1.0.0" + randexp "0.4.6" + semver "^5.4.1" + +needle@^2.2.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" + integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + +neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: + version "2.6.1" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + +next-tick@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +nise@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.2.tgz#b6d29af10e48b321b307e10e065199338eeb2652" + integrity sha512-/6RhOUlicRCbE9s+94qCUsyE+pKlVJ5AhIv+jEE7ESKwnbXqulKZ1FYU+XAtHHWE9TinYvAxDUJAb912PwPoWA== + dependencies: + "@sinonjs/formatio" "^3.2.1" + "@sinonjs/text-encoding" "^0.7.1" + just-extend "^4.0.2" + lolex "^4.1.0" + path-to-regexp "^1.7.0" + +no-case@^2.2.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== + dependencies: + lower-case "^1.1.1" + +node-fetch@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" + integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= + +node-fetch@^1.0.1: + version "1.7.3" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" + integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ== + dependencies: + encoding "^0.1.11" + is-stream "^1.0.1" + +node-forge@0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" + integrity sha512-7ASaDa3pD+lJ3WvXFsxekJQelBKRpne+GOVbLbtHYdd7pFspyeuJHnWfLplGf3SwKGbfs/aYl5V/JCIaHVUKKQ== + +node-int64@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" + integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= + +node-libs-browser@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425" + integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.1" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "^1.0.1" + +node-modules-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" + integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= + +node-notifier@^5.4.2: + version "5.4.3" + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-5.4.3.tgz#cb72daf94c93904098e28b9c590fd866e464bd50" + integrity sha512-M4UBGcs4jeOK9CjTsYwkvH6/MzuUmGCyTW+kCY7uO+1ZVr0+FHGdPdIf5CCLqAaxnRrWidyoQlNkMIIVwbKB8Q== + dependencies: + growly "^1.3.0" + is-wsl "^1.1.0" + semver "^5.5.0" + shellwords "^0.1.1" + which "^1.3.0" + +node-pre-gyp@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" + integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-releases@^1.1.29, node-releases@^1.1.36: + version "1.1.36" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.36.tgz#44b7cb8254138e87bdbfa47761d0f825e20900b4" + integrity sha512-ggXhX6QGyJSjj3r+6ml2LqqC28XOWmKtpb+a15/Zpr9V3yoNazxJNlcQDS9bYaid5FReEWHEgToH1mwoUceWwg== + dependencies: + semver "^6.3.0" + +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= + dependencies: + abbrev "1" + osenv "^0.1.4" + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0, normalize-path@~3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= + +normalize-url@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" + integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= + dependencies: + object-assign "^4.0.1" + prepend-http "^1.0.0" + query-string "^4.1.0" + sort-keys "^1.0.0" + +normalize-url@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" + integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== + +npm-bundled@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" + integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== + +npm-packlist@^1.1.6: + version "1.4.6" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" + integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@^1.0.2, nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +nwsapi@^2.0.7, nwsapi@^2.1.3, nwsapi@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" + integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-hash@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" + integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== + +object-inspect@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" + integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== + +object-is@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" + integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY= + +object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-path@0.11.4: + version "0.11.4" + resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" + integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk= + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.1" + has-symbols "^1.0.0" + object-keys "^1.0.11" + +object.entries@^1.0.4, object.entries@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" + integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + +object.fromentries@^2.0.0, object.fromentries@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.1.tgz#050f077855c7af8ae6649f45c80b16ee2d31e704" + integrity sha512-PUQv8Hbg3j2QX0IQYv3iAGCbGcu4yY4KQ92/dhA4sFSixBmSmp13UpDLs6jGK8rBtbmhNNIK99LD2k293jpiGA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.15.0" + function-bind "^1.1.1" + has "^1.0.3" + +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +object.values@^1.0.4, object.values@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" + integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + +obuf@^1.0.0, obuf@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e" + integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg== + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +open@^6.3.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" + integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== + dependencies: + is-wsl "^1.1.0" + +opn@^5.1.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" + integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== + dependencies: + is-wsl "^1.1.0" + +optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optimize-css-assets-webpack-plugin@5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" + integrity sha512-q9fbvCRS6EYtUKKSwI87qm2IxlyJK5b4dygW1rKUBT6mMDhdG5e5bZT63v6tnJR9F9FB/H5a0HTmtw+laUBxKA== + dependencies: + cssnano "^4.1.10" + last-call-webpack-plugin "^3.0.0" + +optionator@^0.8.1, optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +original@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f" + integrity sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg== + dependencies: + url-parse "^1.4.3" + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +os-homedir@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + +os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-each-series@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-each-series/-/p-each-series-1.0.0.tgz#930f3d12dd1f50e7434457a22cd6f04ac6ad7f71" + integrity sha1-kw89Et0fUOdDRFeiLNbwSsatf3E= + dependencies: + p-reduce "^1.0.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" + integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== + +p-reduce@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" + integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +pako@~1.0.5: + version "1.0.10" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" + integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== + +parallel-transform@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.2.0.tgz#9049ca37d6cb2182c3b1d2c720be94d14a5814fc" + integrity sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg== + dependencies: + cyclist "^1.0.1" + inherits "^2.0.3" + readable-stream "^2.1.5" + +param-case@2.1.x: + version "2.1.1" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= + dependencies: + no-case "^2.2.0" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0: + version "5.1.5" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.5.tgz#003271343da58dc94cace494faef3d2147ecea0e" + integrity sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ== + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + +parse5@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2" + integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ== + +parse5@^3.0.1: + version "3.0.3" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-3.0.3.tgz#042f792ffdd36851551cf4e9e066b3874ab45b5c" + integrity sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA== + dependencies: + "@types/node" "*" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-browserify@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a" + integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ== + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + +path-to-regexp@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" + integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= + dependencies: + isarray "0.0.1" + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pbkdf2@^3.0.3: + version "3.0.17" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +picomatch@^2.0.4: + version "2.0.7" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" + integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pirates@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" + integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== + dependencies: + node-modules-regexp "^1.0.0" + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= + dependencies: + find-up "^1.0.0" + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-up@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= + dependencies: + find-up "^2.1.0" + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +pnp-webpack-plugin@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb" + integrity sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg== + dependencies: + ts-pnp "^1.1.2" + +popper.js@^1.14.1, popper.js@^1.14.3, popper.js@^1.14.4: + version "1.16.0" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.0.tgz#2e1816bcbbaa518ea6c2e15a466f4cb9c6e2fbb3" + integrity sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw== + +portfinder@^1.0.9: + version "1.0.25" + resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" + integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg== + dependencies: + async "^2.6.2" + debug "^3.1.1" + mkdirp "^0.5.1" + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +postcss-attribute-case-insensitive@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.1.tgz#b2a721a0d279c2f9103a36331c88981526428cc7" + integrity sha512-L2YKB3vF4PetdTIthQVeT+7YiSzMoNMLLYxPXXppOOP7NoazEAy45sh2LvJ8leCQjfBcfkYQs8TtCcQjeZTp8A== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0" + +postcss-browser-comments@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-2.0.0.tgz#dc48d6a8ddbff188a80a000b7393436cb18aed88" + integrity sha512-xGG0UvoxwBc4Yx4JX3gc0RuDl1kc4bVihCzzk6UC72YPfq5fu3c717Nu8Un3nvnq1BJ31gBnFXIG/OaUTnpHgA== + dependencies: + postcss "^7.0.2" + +postcss-calc@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" + integrity sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== + dependencies: + css-unit-converter "^1.1.1" + postcss "^7.0.5" + postcss-selector-parser "^5.0.0-rc.4" + postcss-value-parser "^3.3.1" + +postcss-color-functional-notation@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz#5efd37a88fbabeb00a2966d1e53d98ced93f74e0" + integrity sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-gray@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz#532a31eb909f8da898ceffe296fdc1f864be8547" + integrity sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-color-hex-alpha@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz#a8d9ca4c39d497c9661e374b9c51899ef0f87388" + integrity sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw== + dependencies: + postcss "^7.0.14" + postcss-values-parser "^2.0.1" + +postcss-color-mod-function@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz#816ba145ac11cc3cb6baa905a75a49f903e4d31d" + integrity sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-color-rebeccapurple@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz#c7a89be872bb74e45b1e3022bfe5748823e6de77" + integrity sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-colormin@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" + integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== + dependencies: + browserslist "^4.0.0" + color "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-convert-values@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" + integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-custom-media@^7.0.8: + version "7.0.8" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz#fffd13ffeffad73621be5f387076a28b00294e0c" + integrity sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg== + dependencies: + postcss "^7.0.14" + +postcss-custom-properties@^8.0.11: + version "8.0.11" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz#2d61772d6e92f22f5e0d52602df8fae46fa30d97" + integrity sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA== + dependencies: + postcss "^7.0.17" + postcss-values-parser "^2.0.1" + +postcss-custom-selectors@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz#64858c6eb2ecff2fb41d0b28c9dd7b3db4de7fba" + integrity sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-dir-pseudo-class@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz#6e3a4177d0edb3abcc85fdb6fbb1c26dabaeaba2" + integrity sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-discard-comments@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" + integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== + dependencies: + postcss "^7.0.0" + +postcss-discard-duplicates@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" + integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== + dependencies: + postcss "^7.0.0" + +postcss-discard-empty@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" + integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== + dependencies: + postcss "^7.0.0" + +postcss-discard-overridden@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" + integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== + dependencies: + postcss "^7.0.0" + +postcss-double-position-gradients@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz#fc927d52fddc896cb3a2812ebc5df147e110522e" + integrity sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA== + dependencies: + postcss "^7.0.5" + postcss-values-parser "^2.0.0" + +postcss-env-function@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/postcss-env-function/-/postcss-env-function-2.0.2.tgz#0f3e3d3c57f094a92c2baf4b6241f0b0da5365d7" + integrity sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-flexbugs-fixes@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.1.0.tgz#e094a9df1783e2200b7b19f875dcad3b3aff8b20" + integrity sha512-jr1LHxQvStNNAHlgco6PzY308zvLklh7SJVYuWUwyUQncofaAlD2l+P/gxKHOdqWKe7xJSkVLFF/2Tp+JqMSZA== + dependencies: + postcss "^7.0.0" + +postcss-focus-visible@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz#477d107113ade6024b14128317ade2bd1e17046e" + integrity sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g== + dependencies: + postcss "^7.0.2" + +postcss-focus-within@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz#763b8788596cee9b874c999201cdde80659ef680" + integrity sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w== + dependencies: + postcss "^7.0.2" + +postcss-font-variant@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-font-variant/-/postcss-font-variant-4.0.0.tgz#71dd3c6c10a0d846c5eda07803439617bbbabacc" + integrity sha512-M8BFYKOvCrI2aITzDad7kWuXXTm0YhGdP9Q8HanmN4EF1Hmcgs1KK5rSHylt/lUJe8yLxiSwWAHdScoEiIxztg== + dependencies: + postcss "^7.0.2" + +postcss-gap-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz#431c192ab3ed96a3c3d09f2ff615960f902c1715" + integrity sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg== + dependencies: + postcss "^7.0.2" + +postcss-image-set-function@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz#28920a2f29945bed4c3198d7df6496d410d3f288" + integrity sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-initial@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.1.tgz#99d319669a13d6c06ef8e70d852f68cb1b399b61" + integrity sha512-I2Sz83ZSHybMNh02xQDK609lZ1/QOyYeuizCjzEhlMgeV/HcDJapQiH4yTqLjZss0X6/6VvKFXUeObaHpJoINw== + dependencies: + lodash.template "^4.5.0" + postcss "^7.0.2" + +postcss-lab-function@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz#bb51a6856cd12289ab4ae20db1e3821ef13d7d2e" + integrity sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg== + dependencies: + "@csstools/convert-colors" "^1.4.0" + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-load-config@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-2.1.0.tgz#c84d692b7bb7b41ddced94ee62e8ab31b417b003" + integrity sha512-4pV3JJVPLd5+RueiVVB+gFOAa7GWc25XQcMp86Zexzke69mKf6Nx9LRcQywdz7yZI9n1udOxmLuAwTBypypF8Q== + dependencies: + cosmiconfig "^5.0.0" + import-cwd "^2.0.0" + +postcss-loader@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-loader/-/postcss-loader-3.0.0.tgz#6b97943e47c72d845fa9e03f273773d4e8dd6c2d" + integrity sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA== + dependencies: + loader-utils "^1.1.0" + postcss "^7.0.0" + postcss-load-config "^2.0.0" + schema-utils "^1.0.0" + +postcss-logical@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-logical/-/postcss-logical-3.0.0.tgz#2495d0f8b82e9f262725f75f9401b34e7b45d5b5" + integrity sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA== + dependencies: + postcss "^7.0.2" + +postcss-media-minmax@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz#b75bb6cbc217c8ac49433e12f22048814a4f5ed5" + integrity sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw== + dependencies: + postcss "^7.0.2" + +postcss-merge-longhand@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" + integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== + dependencies: + css-color-names "0.0.4" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + stylehacks "^4.0.0" + +postcss-merge-rules@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" + integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + cssnano-util-same-parent "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + vendors "^1.0.0" + +postcss-minify-font-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" + integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-gradients@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" + integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + is-color-stop "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-params@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" + integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== + dependencies: + alphanum-sort "^1.0.0" + browserslist "^4.0.0" + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + uniqs "^2.0.0" + +postcss-minify-selectors@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" + integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== + dependencies: + alphanum-sort "^1.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +postcss-modules-extract-imports@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" + integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== + dependencies: + postcss "^7.0.5" + +postcss-modules-local-by-default@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" + integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + postcss-value-parser "^3.3.1" + +postcss-modules-scope@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" + integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A== + dependencies: + postcss "^7.0.6" + postcss-selector-parser "^6.0.0" + +postcss-modules-values@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" + integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w== + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^7.0.6" + +postcss-nesting@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-7.0.1.tgz#b50ad7b7f0173e5b5e3880c3501344703e04c052" + integrity sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg== + dependencies: + postcss "^7.0.2" + +postcss-normalize-charset@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" + integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== + dependencies: + postcss "^7.0.0" + +postcss-normalize-display-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" + integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-positions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" + integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== + dependencies: + cssnano-util-get-arguments "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-repeat-style@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" + integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-string@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" + integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== + dependencies: + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-timing-functions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" + integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-unicode@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" + integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-url@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" + integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-whitespace@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" + integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-7.0.1.tgz#eb51568d962b8aa61a8318383c8bb7e54332282e" + integrity sha512-NOp1fwrG+6kVXWo7P9SizCHX6QvioxFD/hZcI2MLxPmVnFJFC0j0DDpIuNw2tUDeCFMni59gCVgeJ1/hYhj2OQ== + dependencies: + "@csstools/normalize.css" "^9.0.1" + browserslist "^4.1.1" + postcss "^7.0.2" + postcss-browser-comments "^2.0.0" + +postcss-ordered-values@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" + integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== + dependencies: + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-overflow-shorthand@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz#31ecf350e9c6f6ddc250a78f0c3e111f32dd4c30" + integrity sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g== + dependencies: + postcss "^7.0.2" + +postcss-page-break@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/postcss-page-break/-/postcss-page-break-2.0.0.tgz#add52d0e0a528cabe6afee8b46e2abb277df46bf" + integrity sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ== + dependencies: + postcss "^7.0.2" + +postcss-place@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-place/-/postcss-place-4.0.1.tgz#e9f39d33d2dc584e46ee1db45adb77ca9d1dcc62" + integrity sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg== + dependencies: + postcss "^7.0.2" + postcss-values-parser "^2.0.0" + +postcss-preset-env@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz#c34ddacf8f902383b35ad1e030f178f4cdf118a5" + integrity sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg== + dependencies: + autoprefixer "^9.6.1" + browserslist "^4.6.4" + caniuse-lite "^1.0.30000981" + css-blank-pseudo "^0.1.4" + css-has-pseudo "^0.10.0" + css-prefers-color-scheme "^3.1.1" + cssdb "^4.4.0" + postcss "^7.0.17" + postcss-attribute-case-insensitive "^4.0.1" + postcss-color-functional-notation "^2.0.1" + postcss-color-gray "^5.0.0" + postcss-color-hex-alpha "^5.0.3" + postcss-color-mod-function "^3.0.3" + postcss-color-rebeccapurple "^4.0.1" + postcss-custom-media "^7.0.8" + postcss-custom-properties "^8.0.11" + postcss-custom-selectors "^5.1.2" + postcss-dir-pseudo-class "^5.0.0" + postcss-double-position-gradients "^1.0.0" + postcss-env-function "^2.0.2" + postcss-focus-visible "^4.0.0" + postcss-focus-within "^3.0.0" + postcss-font-variant "^4.0.0" + postcss-gap-properties "^2.0.0" + postcss-image-set-function "^3.0.1" + postcss-initial "^3.0.0" + postcss-lab-function "^2.0.1" + postcss-logical "^3.0.0" + postcss-media-minmax "^4.0.0" + postcss-nesting "^7.0.0" + postcss-overflow-shorthand "^2.0.0" + postcss-page-break "^2.0.0" + postcss-place "^4.0.1" + postcss-pseudo-class-any-link "^6.0.0" + postcss-replace-overflow-wrap "^3.0.0" + postcss-selector-matches "^4.0.0" + postcss-selector-not "^4.0.0" + +postcss-pseudo-class-any-link@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz#2ed3eed393b3702879dec4a87032b210daeb04d1" + integrity sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew== + dependencies: + postcss "^7.0.2" + postcss-selector-parser "^5.0.0-rc.3" + +postcss-reduce-initial@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" + integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + +postcss-reduce-transforms@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" + integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== + dependencies: + cssnano-util-get-match "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-replace-overflow-wrap@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz#61b360ffdaedca84c7c918d2b0f0d0ea559ab01c" + integrity sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw== + dependencies: + postcss "^7.0.2" + +postcss-safe-parser@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.1.tgz#8756d9e4c36fdce2c72b091bbc8ca176ab1fcdea" + integrity sha512-xZsFA3uX8MO3yAda03QrG3/Eg1LN3EPfjjf07vke/46HERLZyHrTsQ9E1r1w1W//fWEhtYNndo2hQplN2cVpCQ== + dependencies: + postcss "^7.0.0" + +postcss-selector-matches@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz#71c8248f917ba2cc93037c9637ee09c64436fcff" + integrity sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-not@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-not/-/postcss-selector-not-4.0.0.tgz#c68ff7ba96527499e832724a2674d65603b645c0" + integrity sha512-W+bkBZRhqJaYN8XAnbbZPLWMvZD1wKTu0UxtFKdhtGjWYmxhkUneoeOhRJKdAE5V7ZTlnbHfCR+6bNwK9e1dTQ== + dependencies: + balanced-match "^1.0.0" + postcss "^7.0.2" + +postcss-selector-parser@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" + integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= + dependencies: + dot-prop "^4.1.1" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + dependencies: + cssesc "^2.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^6.0.0: + version "6.0.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" + integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== + dependencies: + cssesc "^3.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" + integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== + dependencies: + is-svg "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + svgo "^1.0.0" + +postcss-unique-selectors@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" + integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== + dependencies: + alphanum-sort "^1.0.0" + postcss "^7.0.0" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss-value-parser@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9" + integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ== + +postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz#da8b472d901da1e205b47bdc98637b9e9e550e5f" + integrity sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss@7.0.14: + version "7.0.14" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" + integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.18" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.18.tgz#4b9cda95ae6c069c67a4d933029eddd4838ac233" + integrity sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +prepend-http@^1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^1.18.2: + version "1.18.2" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" + integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== + +pretty-bytes@^5.1.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.3.0.tgz#f2849e27db79fb4d6cfe24764fc4134f165989f2" + integrity sha512-hjGrh+P926p4R4WbaB6OckyRtO0F0/lQBiT+0gnxjV+5kjPBrfVBFCsCLbMqVQeydvIoouYTCmmEURiH3R1Bdg== + +pretty-error@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" + integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM= + dependencies: + renderkid "^2.0.1" + utila "~0.4" + +pretty-format@^24.9.0: + version "24.9.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.9.0.tgz#12fac31b37019a4eea3c11aa9a959eb7628aa7c9" + integrity sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA== + dependencies: + "@jest/types" "^24.9.0" + ansi-regex "^4.0.0" + ansi-styles "^3.2.0" + react-is "^16.8.4" + +private@^0.1.6: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +promise-polyfill@^7.1.1: + version "7.1.2" + resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b" + integrity sha512-FuEc12/eKqqoRYIGBrUptCBRhobL19PS2U31vMNTfyck1FxPyMfgsXyW4Mav85y/ZN1hop3hOwRlUDok23oYfQ== + +promise@8.0.3: + version "8.0.3" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.3.tgz#f592e099c6cddc000d538ee7283bb190452b0bf6" + integrity sha512-HeRDUL1RJiLhyA0/grn+PTShlBAcLuh/1BJGtrvjwbvRDCTLLMEz9rOGCV+R3vHY4MixIuoMEd9Yq/XvsTPcjw== + dependencies: + asap "~2.0.6" + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +prompts@^2.0.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" + integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== + dependencies: + kleur "^3.0.3" + sisteransi "^1.0.3" + +prop-types-exact@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/prop-types-exact/-/prop-types-exact-1.2.0.tgz#825d6be46094663848237e3925a98c6e944e9869" + integrity sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA== + dependencies: + has "^1.0.3" + object.assign "^4.1.0" + reflect.ownkeys "^0.2.0" + +prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: + version "15.7.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" + integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== + dependencies: + loose-envify "^1.4.0" + object-assign "^4.1.1" + react-is "^16.8.1" + +proxy-addr@~2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" + integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.0" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + +psl@^1.1.24, psl@^1.1.28: + version "1.4.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" + integrity sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw== + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0, punycode@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.1.2: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= + +qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +query-string@^4.1.0: + version "4.3.4" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" + integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= + dependencies: + object-assign "^4.1.0" + strict-uri-encode "^1.0.0" + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +querystringify@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e" + integrity sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA== + +raf-schd@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/raf-schd/-/raf-schd-4.0.2.tgz#bd44c708188f2e84c810bf55fcea9231bcaed8a0" + integrity sha512-VhlMZmGy6A6hrkJWHLNTGl5gtgMUm+xfGza6wbwnE914yeQ5Ybm18vgM734RZhMgfw4tacUrWseGZlpUrrakEQ== + +raf@3.4.1, raf@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" + integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== + dependencies: + performance-now "^2.1.0" + +railroad-diagrams@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e" + integrity sha1-635iZ1SN3t+4mcG5Dlc3RVnN234= + +randexp@0.4.6: + version "0.4.6" + resolved "https://registry.yarnpkg.com/randexp/-/randexp-0.4.6.tgz#e986ad5e5e31dae13ddd6f7b3019aa7c87f60ca3" + integrity sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ== + dependencies: + discontinuous-range "1.0.0" + ret "~0.1.10" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@^1.2.1, range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +react-app-polyfill@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-1.0.4.tgz#4dd2636846b585c2d842b1e44e1bc29044345874" + integrity sha512-5Vte6ki7jpNsNCUKaboyofAhmURmCn2Y6Hu7ydJ6Iu4dct1CIGoh/1FT7gUZKAbowVX2lxVPlijvp1nKxfAl4w== + dependencies: + core-js "3.2.1" + object-assign "4.1.1" + promise "8.0.3" + raf "3.4.1" + regenerator-runtime "0.13.3" + whatwg-fetch "3.0.0" + +react-copy-to-clipboard@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.1.tgz#8eae107bb400be73132ed3b6a7b4fb156090208e" + integrity sha512-ELKq31/E3zjFs5rDWNCfFL4NvNFQvGRoJdAKReD/rUPA+xxiLPQmZBZBvy2vgH7V0GE9isIQpT9WXbwIVErYdA== + dependencies: + copy-to-clipboard "^3" + prop-types "^15.5.8" + +react-dev-utils@^9.1.0: + version "9.1.0" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81" + integrity sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg== + dependencies: + "@babel/code-frame" "7.5.5" + address "1.1.2" + browserslist "4.7.0" + chalk "2.4.2" + cross-spawn "6.0.5" + detect-port-alt "1.1.6" + escape-string-regexp "1.0.5" + filesize "3.6.1" + find-up "3.0.0" + fork-ts-checker-webpack-plugin "1.5.0" + global-modules "2.0.0" + globby "8.0.2" + gzip-size "5.1.1" + immer "1.10.0" + inquirer "6.5.0" + is-root "2.1.0" + loader-utils "1.2.3" + open "^6.3.0" + pkg-up "2.0.0" + react-error-overlay "^6.0.3" + recursive-readdir "2.2.2" + shell-quote "1.7.2" + sockjs-client "1.4.0" + strip-ansi "5.2.0" + text-table "0.2.0" + +react-dom@^16.7.0: + version "16.10.2" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.10.2.tgz#4840bce5409176bc3a1f2bd8cb10b92db452fda6" + integrity sha512-kWGDcH3ItJK4+6Pl9DZB16BXYAZyrYQItU4OMy0jAkv5aNqc+mAKb4TpFtAteI6TJZu+9ZlNhaeNQSVQDHJzkw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + scheduler "^0.16.2" + +react-error-overlay@^6.0.3: + version "6.0.3" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.3.tgz#c378c4b0a21e88b2e159a3e62b2f531fd63bf60d" + integrity sha512-bOUvMWFQVk5oz8Ded9Xb7WVdEi3QGLC8tH7HmYP0Fdp4Bn3qw0tRFmr5TW6mvahzvmrK4a6bqWGfCevBflP+Xw== + +react-is@^16.10.2, react-is@^16.8.6: + version "16.11.0" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" + integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== + +react-is@^16.8.1, react-is@^16.8.4, react-is@^16.9.0: + version "16.10.2" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.10.2.tgz#984120fd4d16800e9a738208ab1fba422d23b5ab" + integrity sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA== + +react-lifecycles-compat@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" + integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== + +react-popper@^1.3.3: + version "1.3.4" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.4.tgz#f0cd3b0d30378e1f663b0d79bcc8614221652ced" + integrity sha512-9AcQB29V+WrBKk6X7p0eojd1f25/oJajVdMZkywIoAV6Ag7hzE1Mhyeup2Q1QnvFRtGQFQvtqfhlEoDAPfKAVA== + dependencies: + "@babel/runtime" "^7.1.2" + create-react-context "^0.3.0" + popper.js "^1.14.4" + prop-types "^15.6.1" + typed-styles "^0.0.7" + warning "^4.0.2" + +react-resize-detector@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/react-resize-detector/-/react-resize-detector-4.2.1.tgz#8982b74c3e1cf949afaa3c41050458c87b033982" + integrity sha512-ZfPMBPxXi0o3xox42MIEtz84tPSVMW9GgwLHYvjVXlFM+OkNzbeEtpVSV+mSTJmk4Znwomolzt35zHN9LNBQMQ== + dependencies: + lodash "^4.17.15" + lodash-es "^4.17.15" + prop-types "^15.7.2" + raf-schd "^4.0.2" + resize-observer-polyfill "^1.5.1" + +react-scripts@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.2.0.tgz#58ccd6b4ffa27f1b4d2986cbdcaa916660e9e33c" + integrity sha512-6LzuKbE2B4eFQG6i1FnTScn9HDcWBfXXnOwW9xKFPJ/E3rK8i1ufbOZ0ocKyRPxJAKdN7iqg3i7lt0+oxkSVOA== + dependencies: + "@babel/core" "7.6.0" + "@svgr/webpack" "4.3.2" + "@typescript-eslint/eslint-plugin" "^2.2.0" + "@typescript-eslint/parser" "^2.2.0" + babel-eslint "10.0.3" + babel-jest "^24.9.0" + babel-loader "8.0.6" + babel-plugin-named-asset-import "^0.3.4" + babel-preset-react-app "^9.0.2" + camelcase "^5.2.0" + case-sensitive-paths-webpack-plugin "2.2.0" + css-loader "2.1.1" + dotenv "6.2.0" + dotenv-expand "5.1.0" + eslint "^6.1.0" + eslint-config-react-app "^5.0.2" + eslint-loader "3.0.2" + eslint-plugin-flowtype "3.13.0" + eslint-plugin-import "2.18.2" + eslint-plugin-jsx-a11y "6.2.3" + eslint-plugin-react "7.14.3" + eslint-plugin-react-hooks "^1.6.1" + file-loader "3.0.1" + fs-extra "7.0.1" + html-webpack-plugin "4.0.0-beta.5" + identity-obj-proxy "3.0.0" + is-wsl "^1.1.0" + jest "24.9.0" + jest-environment-jsdom-fourteen "0.1.0" + jest-resolve "24.9.0" + jest-watch-typeahead "0.4.0" + mini-css-extract-plugin "0.8.0" + optimize-css-assets-webpack-plugin "5.0.3" + pnp-webpack-plugin "1.5.0" + postcss-flexbugs-fixes "4.1.0" + postcss-loader "3.0.0" + postcss-normalize "7.0.1" + postcss-preset-env "6.7.0" + postcss-safe-parser "4.0.1" + react-app-polyfill "^1.0.4" + react-dev-utils "^9.1.0" + resolve "1.12.0" + resolve-url-loader "3.1.0" + sass-loader "7.2.0" + semver "6.3.0" + style-loader "1.0.0" + terser-webpack-plugin "1.4.1" + ts-pnp "1.1.4" + url-loader "2.1.0" + webpack "4.41.0" + webpack-dev-server "3.2.1" + webpack-manifest-plugin "2.1.1" + workbox-webpack-plugin "4.3.1" + optionalDependencies: + fsevents "2.0.7" + +react-test-renderer@^16.0.0-0, react-test-renderer@^16.9.0: + version "16.11.0" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.11.0.tgz#72574566496462c808ac449b0287a4c0a1a7d8f8" + integrity sha512-nh9gDl8R4ut+ZNNb2EeKO5VMvTKxwzurbSMuGBoKtjpjbg8JK/u3eVPVNi1h1Ue+eYK9oSzJjb+K3lzLxyA4ag== + dependencies: + object-assign "^4.1.1" + prop-types "^15.6.2" + react-is "^16.8.6" + scheduler "^0.17.0" + +react-transition-group@^2.3.1: + version "2.9.0" + resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-2.9.0.tgz#df9cdb025796211151a436c69a8f3b97b5b07c8d" + integrity sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg== + dependencies: + dom-helpers "^3.4.0" + loose-envify "^1.4.0" + prop-types "^15.6.2" + react-lifecycles-compat "^3.0.4" + +react@^16.7.0: + version "16.10.2" + resolved "https://registry.yarnpkg.com/react/-/react-16.10.2.tgz#a5ede5cdd5c536f745173c8da47bda64797a4cf0" + integrity sha512-MFVIq0DpIhrHFyqLU0S3+4dIcBhhOvBE8bJ/5kHPVOVaGdo0KuiQzpcjCPsf585WvhypqtrMILyoE2th6dT+Lw== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + prop-types "^15.6.2" + +reactstrap@^8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.0.1.tgz#0b663c8195f540bc1d6d5dbcbcf73cab56fe7c79" + integrity sha512-GvUWEL+a2+3npK1OxTXcNBMHXX4x6uc1KQRzK7yAOl+8sAHTRWqjunvMUfny3oDh8yKVzgqpqQlWWvs1B2HR9A== + dependencies: + "@babel/runtime" "^7.2.0" + classnames "^2.2.3" + lodash.isfunction "^3.0.9" + lodash.isobject "^3.0.2" + lodash.tonumber "^4.0.3" + prop-types "^15.5.8" + react-lifecycles-compat "^3.0.4" + react-popper "^1.3.3" + react-transition-group "^2.3.1" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg-up@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-4.0.0.tgz#1b221c6088ba7799601c808f91161c66e58f8978" + integrity sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA== + dependencies: + find-up "^3.0.0" + read-pkg "^3.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@^3.0.6, readable-stream@^3.1.1: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" + integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +readdirp@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" + integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== + dependencies: + picomatch "^2.0.4" + +realpath-native@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c" + integrity sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA== + dependencies: + util.promisify "^1.0.0" + +recursive-readdir@2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f" + integrity sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg== + dependencies: + minimatch "3.0.4" + +reflect.ownkeys@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" + integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= + +regenerate-unicode-properties@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" + integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== + dependencies: + regenerate "^1.4.0" + +regenerate@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + +regenerator-runtime@0.13.3, regenerator-runtime@^0.13.2: + version "0.13.3" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" + integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-transform@^0.14.0: + version "0.14.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" + integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== + dependencies: + private "^0.1.6" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regex-parser@2.2.10: + version "2.2.10" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" + integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== + +regexp.prototype.flags@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" + integrity sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA== + dependencies: + define-properties "^1.1.2" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpu-core@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" + integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== + dependencies: + regenerate "^1.4.0" + regenerate-unicode-properties "^8.1.0" + regjsgen "^0.5.0" + regjsparser "^0.6.0" + unicode-match-property-ecmascript "^1.0.4" + unicode-match-property-value-ecmascript "^1.1.0" + +regjsgen@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" + integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== + +regjsparser@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" + integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== + dependencies: + jsesc "~0.5.0" + +relateurl@0.2.x: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +renderkid@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149" + integrity sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA== + dependencies: + css-select "^1.1.0" + dom-converter "^0.2" + htmlparser2 "^3.3.0" + strip-ansi "^3.0.0" + utila "^0.4.0" + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +request-promise-core@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" + integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== + dependencies: + lodash "^4.17.11" + +request-promise-native@^1.0.5, request-promise-native@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" + integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== + dependencies: + request-promise-core "1.1.2" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@^2.87.0, request@^2.88.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.0" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.4.3" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + +require-main-filename@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" + integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== + +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8= + +resize-observer-polyfill@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464" + integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg== + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-url-loader@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.0.tgz#54d8181d33cd1b66a59544d05cadf8e4aa7d37cc" + integrity sha512-2QcrA+2QgVqsMJ1Hn5NnJXIGCX1clQ1F6QJTqOeiaDw9ACo1G2k+8/shq3mtqne03HOFyskAClqfxKyFBriXZg== + dependencies: + adjust-sourcemap-loader "2.0.0" + camelcase "5.0.0" + compose-function "3.0.3" + convert-source-map "1.6.0" + es6-iterator "2.0.3" + loader-utils "1.2.3" + postcss "7.0.14" + rework "1.0.1" + rework-visit "1.0.0" + source-map "0.6.1" + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@1.1.7: + version "1.1.7" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" + integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= + +resolve@1.12.0, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: + version "1.12.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" + integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== + dependencies: + path-parse "^1.0.6" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +rework-visit@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" + integrity sha1-mUWygD8hni96ygCtuLyfZA+ELJo= + +rework@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rework/-/rework-1.0.1.tgz#30806a841342b54510aa4110850cd48534144aa7" + integrity sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc= + dependencies: + convert-source-map "^0.3.3" + css "^2.0.0" + +rgb-regex@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" + integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= + +rgba-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" + integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= + +rimraf@2.6.3: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" + integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== + dependencies: + glob "^7.1.3" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rst-selector-parser@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/rst-selector-parser/-/rst-selector-parser-2.2.3.tgz#81b230ea2fcc6066c89e3472de794285d9b03d91" + integrity sha1-gbIw6i/MYGbInjRy3nlChdmwPZE= + dependencies: + lodash.flattendeep "^4.4.0" + nearley "^2.7.10" + +rsvp@^4.8.4: + version "4.8.5" + resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" + integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= + dependencies: + is-promise "^2.1.0" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + +rxjs@^6.4.0: + version "6.5.3" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" + integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" + integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sane@^4.0.3: + version "4.1.0" + resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded" + integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA== + dependencies: + "@cnakazawa/watch" "^1.0.3" + anymatch "^2.0.0" + capture-exit "^2.0.0" + exec-sh "^0.3.2" + execa "^1.0.0" + fb-watchman "^2.0.0" + micromatch "^3.1.4" + minimist "^1.1.1" + walker "~1.0.5" + +sanitize-html@^1.20.1: + version "1.20.1" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.20.1.tgz#f6effdf55dd398807171215a62bfc21811bacf85" + integrity sha512-txnH8TQjaQvg2Q0HY06G6CDJLVYCpbnxrdO0WN8gjCKaU5J0KbyGYhZxx5QJg3WLZ1lB7XU9kDkfrCXUozqptA== + dependencies: + chalk "^2.4.1" + htmlparser2 "^3.10.0" + lodash.clonedeep "^4.5.0" + lodash.escaperegexp "^4.1.2" + lodash.isplainobject "^4.0.6" + lodash.isstring "^4.0.1" + lodash.mergewith "^4.6.1" + postcss "^7.0.5" + srcset "^1.0.0" + xtend "^4.0.1" + +sass-loader@7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.2.0.tgz#e34115239309d15b2527cb62b5dfefb62a96ff7f" + integrity sha512-h8yUWaWtsbuIiOCgR9fd9c2lRXZ2uG+h8Dzg/AGNj+Hg/3TO8+BBAW9mEP+mh8ei+qBKqSJ0F1FLlYjNBc61OA== + dependencies: + clone-deep "^4.0.1" + loader-utils "^1.0.1" + neo-async "^2.5.0" + pify "^4.0.1" + semver "^5.5.0" + +sax@^1.2.4, sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +saxes@^3.1.9: + version "3.1.11" + resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b" + integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g== + dependencies: + xmlchars "^2.1.1" + +scheduler@^0.16.2: + version "0.16.2" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.16.2.tgz#f74cd9d33eff6fc554edfb79864868e4819132c1" + integrity sha512-BqYVWqwz6s1wZMhjFvLfVR5WXP7ZY32M/wYPo04CcuPM7XZEbV2TBNW7Z0UkguPTl0dWMA59VbNXxK6q+pHItg== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +scheduler@^0.17.0: + version "0.17.0" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" + integrity sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA== + dependencies: + loose-envify "^1.1.0" + object-assign "^4.1.1" + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.2.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f" + integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ== + dependencies: + ajv "^6.10.2" + ajv-keywords "^3.4.1" + +select-hose@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" + integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= + +selfsigned@^1.9.1: + version "1.10.7" + resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" + integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA== + dependencies: + node-forge "0.9.0" + +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + +semver@6.3.0, semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" + integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + +send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + +serialize-javascript@^1.7.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb" + integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A== + +serve-index@^1.7.2: + version "1.9.1" + resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" + integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= + dependencies: + accepts "~1.3.4" + batch "0.6.1" + debug "2.6.9" + escape-html "~1.0.3" + http-errors "~1.6.2" + mime-types "~2.1.17" + parseurl "~1.3.2" + +serve-static@1.14.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^2.0.0, set-value@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b" + integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4, setimmediate@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +setprototypeof@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656" + integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ== + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shallow-clone@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-0.1.2.tgz#5909e874ba77106d73ac414cfec1ffca87d97060" + integrity sha1-WQnodLp3EG1zrEFM/sH/yofZcGA= + dependencies: + is-extendable "^0.1.1" + kind-of "^2.0.1" + lazy-cache "^0.2.3" + mixin-object "^2.0.1" + +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shell-quote@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + +shellwords@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" + integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +sinon@^7.5.0: + version "7.5.0" + resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.5.0.tgz#e9488ea466070ea908fd44a3d6478fd4923c67ec" + integrity sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q== + dependencies: + "@sinonjs/commons" "^1.4.0" + "@sinonjs/formatio" "^3.2.1" + "@sinonjs/samsam" "^3.3.3" + diff "^3.5.0" + lolex "^4.2.0" + nise "^1.5.2" + supports-color "^5.5.0" + +sisteransi@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" + integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +sockjs-client@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz#12fc9d6cb663da5739d3dc5fb6e8687da95cb177" + integrity sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg== + dependencies: + debug "^3.2.5" + eventsource "^1.0.7" + faye-websocket "~0.11.1" + inherits "^2.0.3" + json3 "^3.3.2" + url-parse "^1.4.3" + +sockjs-client@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" + integrity sha512-5zaLyO8/nri5cua0VtOrFXBPK1jbL4+1cebT/mmKA1E1ZXOvJrII75bPu0l0k843G/+iAbhEqzyKr0w/eCCj7g== + dependencies: + debug "^3.2.5" + eventsource "^1.0.7" + faye-websocket "~0.11.1" + inherits "^2.0.3" + json3 "^3.3.2" + url-parse "^1.4.3" + +sockjs@0.3.19: + version "0.3.19" + resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.19.tgz#d976bbe800af7bd20ae08598d582393508993c0d" + integrity sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw== + dependencies: + faye-websocket "^0.10.0" + uuid "^3.0.1" + +sort-keys@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" + integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= + dependencies: + is-plain-obj "^1.0.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.5.6, source-map-support@~0.5.12: + version "0.5.13" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" + integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +spdx-correct@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.5" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654" + integrity sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q== + +spdy-transport@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31" + integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw== + dependencies: + debug "^4.1.0" + detect-node "^2.0.4" + hpack.js "^2.1.6" + obuf "^1.1.2" + readable-stream "^3.0.6" + wbuf "^1.7.3" + +spdy@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.1.tgz#6f12ed1c5db7ea4f24ebb8b89ba58c87c08257f2" + integrity sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA== + dependencies: + debug "^4.1.0" + handle-thing "^2.0.0" + http-deceiver "^1.2.7" + select-hose "^2.0.0" + spdy-transport "^3.0.0" + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +srcset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/srcset/-/srcset-1.0.0.tgz#a5669de12b42f3b1d5e83ed03c71046fc48f41ef" + integrity sha1-pWad4StC87HV6D7QPHEEb8SPQe8= + dependencies: + array-uniq "^1.0.2" + number-is-nan "^1.0.0" + +sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + dependencies: + figgy-pudding "^3.5.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" + integrity sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA== + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" + integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= + +strict-uri-encode@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" + integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= + +string-length@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed" + integrity sha1-1A27aGo6zpYMHP/KVivyxF+DY+0= + dependencies: + astral-regex "^1.0.0" + strip-ansi "^4.0.0" + +string-length@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-length/-/string-length-3.1.0.tgz#107ef8c23456e187a8abd4a61162ff4ac6e25837" + integrity sha512-Ttp5YvkGm5v9Ijagtaz1BnN+k9ObpvS0eIBblPMp2YWL8FBmi9qblQ9fexc2k/CXFgrTIteU3jAw3payCnwSTA== + dependencies: + astral-regex "^1.0.0" + strip-ansi "^5.2.0" + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0, string-width@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string.prototype.trim@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.0.tgz#75a729b10cfc1be439543dae442129459ce61e3d" + integrity sha512-9EIjYD/WdlvLpn987+ctkLf0FfvBefOCuiEr2henD8X+7jfwPnyvTdmW8OJhj5p+M0/96mBdynLWkxUr+rHlpg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.13.0" + function-bind "^1.1.1" + +string.prototype.trimleft@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" + integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + +string.prototype.trimright@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" + integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== + dependencies: + define-properties "^1.1.3" + function-bind "^1.1.1" + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-comments@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-1.0.2.tgz#82b9c45e7f05873bee53f37168af930aa368679d" + integrity sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw== + dependencies: + babel-extract-comments "^1.0.0" + babel-plugin-transform-object-rest-spread "^6.26.0" + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-json-comments@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" + integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== + +strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +style-loader@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82" + integrity sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw== + dependencies: + loader-utils "^1.2.3" + schema-utils "^2.0.1" + +stylehacks@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" + integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +svg-parser@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.2.tgz#d134cc396fa2681dc64f518330784e98bd801ec8" + integrity sha512-1gtApepKFweigFZj3sGO8KT8LvVZK8io146EzXrpVuWCDAbISz/yMucco3hWTkpZNoPabM+dnMOpy6Swue68Zg== + +svgo@^1.0.0, svgo@^1.2.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.0.tgz#bae51ba95ded9a33a36b7c46ce9c359ae9154313" + integrity sha512-MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ== + dependencies: + chalk "^2.4.1" + coa "^2.0.2" + css-select "^2.0.0" + css-select-base-adapter "^0.1.1" + css-tree "1.0.0-alpha.33" + csso "^3.5.1" + js-yaml "^3.13.1" + mkdirp "~0.5.1" + object.values "^1.1.0" + sax "~1.2.4" + stable "^0.1.8" + unquote "~1.1.1" + util.promisify "~1.0.0" + +symbol-tree@^3.2.2: + version "3.2.4" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" + integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== + +table@^5.2.3: + version "5.4.6" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" + integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== + dependencies: + ajv "^6.10.2" + lodash "^4.17.14" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tapable@^1.0.0, tapable@^1.1.0, tapable@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tar@^4: + version "4.4.13" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" + integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.8.6" + minizlib "^1.2.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.3" + +tempusdominus-bootstrap-4@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.1.2.tgz#3c9906ca6e5d563faa0b81b2fdc6aa79cad9c0be" + integrity sha512-ksD8qc4wOJeE19wvryXmEpRzMUSZu4wSOdG6zKSn8l4ccad16249KOX1j0CccyZpuuES/n4FLqLAUB+Dd1LTBA== + dependencies: + bootstrap ">=4.1.2" + jquery "^3.0" + moment "^2.22.2" + moment-timezone "^0.5.11" + popper.js "^1.14.3" + +tempusdominus-core@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/tempusdominus-core/-/tempusdominus-core-5.0.3.tgz#808642e47a83f45d7ef18c1597fd7b1d413d69e5" + integrity sha512-52lClmU33gb6J6I/S9uGDrgQwccq3Yw9SlZerTgGLOzOB3Sc9pgIVBirfPMsMcx8nPsg6mA5ItFAH/5BZiQThg== + dependencies: + jquery "^3.0" + moment "^2.22.2" + moment-timezone "^0.4.0" + +terser-webpack-plugin@1.4.1, terser-webpack-plugin@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" + integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg== + dependencies: + cacache "^12.0.2" + find-cache-dir "^2.1.0" + is-wsl "^1.1.0" + schema-utils "^1.0.0" + serialize-javascript "^1.7.0" + source-map "^0.6.1" + terser "^4.1.2" + webpack-sources "^1.4.0" + worker-farm "^1.7.0" + +terser@^4.1.2: + version "4.3.9" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.3.9.tgz#e4be37f80553d02645668727777687dad26bbca8" + integrity sha512-NFGMpHjlzmyOtPL+fDw3G7+6Ueh/sz4mkaUYa4lJCxOPTNzd0Uj0aZJOmsDYoSQyfuVoWDMSWTPU3huyOm2zdA== + dependencies: + commander "^2.20.0" + source-map "~0.6.1" + source-map-support "~0.5.12" + +test-exclude@^5.2.3: + version "5.2.3" + resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-5.2.3.tgz#c3d3e1e311eb7ee405e092dac10aefd09091eac0" + integrity sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g== + dependencies: + glob "^7.1.3" + minimatch "^3.0.4" + read-pkg-up "^4.0.0" + require-main-filename "^2.0.0" + +text-table@0.2.0, text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +throat@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/throat/-/throat-4.1.0.tgz#89037cbc92c56ab18926e6ba4cbb200e15672a6a" + integrity sha1-iQN8vJLFarGJJua6TLsgDhVnKmo= + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +thunky@^1.0.2: + version "1.1.0" + resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d" + integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA== + +timers-browserify@^2.0.4: + version "2.0.11" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.11.tgz#800b1f3eee272e5bc53ee465a04d0e804c31211f" + integrity sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ== + dependencies: + setimmediate "^1.0.4" + +timsort@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" + integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +tmpl@1.0.x: + version "1.0.4" + resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1" + integrity sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE= + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toggle-selection@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" + integrity sha1-bkWxJj8gF/oKzH2J14sVuL932jI= + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" + integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== + dependencies: + psl "^1.1.28" + punycode "^2.1.1" + +tough-cookie@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" + integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== + dependencies: + ip-regex "^2.1.0" + psl "^1.1.28" + punycode "^2.1.1" + +tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +ts-pnp@1.1.4, ts-pnp@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.4.tgz#ae27126960ebaefb874c6d7fa4729729ab200d90" + integrity sha512-1J/vefLC+BWSo+qe8OnJQfWTYRS6ingxjwqmHMqaMxXMj7kFtKLgAaYW3JeX3mktjgUL+etlU8/B4VUAUI9QGw== + +tslib@^1.8.1, tslib@^1.9.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" + integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== + +tsutils@^3.17.1: + version "3.17.1" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" + integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g== + dependencies: + tslib "^1.8.1" + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +type-detect@4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" + integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== + +type-fest@^0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" + integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== + +type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +type@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" + integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== + +typed-styles@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" + integrity sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q== + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +typescript@^3.3.3: + version "3.7.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.2.tgz#27e489b95fa5909445e9fef5ee48d81697ad18fb" + integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ== + +ua-parser-js@^0.7.18: + version "0.7.20" + resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098" + integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw== + +uglify-js@3.4.x: + version "3.4.10" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" + integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== + dependencies: + commander "~2.19.0" + source-map "~0.6.1" + +uglify-js@^3.1.4: + version "3.6.2" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.2.tgz#fd8048c86d990ddd29fe99d3300e0cb329103f4d" + integrity sha512-+gh/xFte41GPrgSMJ/oJVq15zYmqr74pY9VoM69UzMzq9NFk4YDylclb1/bhEzZSaUQjbW5RvniHeq1cdtRYjw== + dependencies: + commander "2.20.0" + source-map "~0.6.1" + +unicode-canonical-property-names-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== + +unicode-match-property-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.4" + unicode-property-aliases-ecmascript "^1.0.4" + +unicode-match-property-value-ecmascript@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" + integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== + +unicode-property-aliases-ecmascript@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" + integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== + +union-value@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847" + integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg== + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^2.0.1" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= + +unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c" + integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w== + dependencies: + imurmurhash "^0.1.4" + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" + integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== + +upper-case@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +url-loader@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.1.0.tgz#bcc1ecabbd197e913eca23f5e0378e24b4412961" + integrity sha512-kVrp/8VfEm5fUt+fl2E0FQyrpmOYgMEkBsv8+UDP1wFhszECq5JyGF33I7cajlVY90zRZ6MyfgKXngLvHYZX8A== + dependencies: + loader-utils "^1.2.3" + mime "^2.4.4" + schema-utils "^2.0.0" + +url-parse@^1.4.3: + version "1.4.7" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278" + integrity sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util.promisify@1.0.0, util.promisify@^1.0.0, util.promisify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +utila@^0.4.0, utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + +uuid@^3.0.1, uuid@^3.3.2: + version "3.3.3" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" + integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== + +v8-compile-cache@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.1.0.tgz#e14de37b31a6d194f5690d67efc4e7f6fc6ab30e" + integrity sha512-usZBT3PW+LOjM25wbqIlZwPeJV+3OSz3M1k1Ws8snlW39dZyYL9lOGC5FgPVHfk0jKmjiDV8Z0mIbVQPiwFs7g== + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + +vendors@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" + integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== + +verror@1.10.0: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +vm-browserify@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" + integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== + +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + dependencies: + browser-process-hrtime "^0.1.2" + +w3c-xmlserializer@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-1.1.2.tgz#30485ca7d70a6fd052420a3d12fd90e6339ce794" + integrity sha512-p10l/ayESzrBMYWRID6xbuCKh2Fp77+sA0doRuGn4tTIMrrZVeqfpKjXHY+oDh3K4nLdPgNwMTVP6Vp4pvqbNg== + dependencies: + domexception "^1.0.1" + webidl-conversions "^4.0.2" + xml-name-validator "^3.0.0" + +walker@^1.0.7, walker@~1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" + integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= + dependencies: + makeerror "1.0.x" + +warning@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" + integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w= + dependencies: + loose-envify "^1.0.0" + +warning@^4.0.2, warning@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" + integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== + dependencies: + loose-envify "^1.0.0" + +watchpack@^1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== + dependencies: + chokidar "^2.0.2" + graceful-fs "^4.1.2" + neo-async "^2.5.0" + +wbuf@^1.1.0, wbuf@^1.7.3: + version "1.7.3" + resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df" + integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA== + dependencies: + minimalistic-assert "^1.0.0" + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webpack-dev-middleware@^3.5.1: + version "3.7.2" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3" + integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw== + dependencies: + memory-fs "^0.4.1" + mime "^2.4.4" + mkdirp "^0.5.1" + range-parser "^1.2.1" + webpack-log "^2.0.0" + +webpack-dev-server@3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.2.1.tgz#1b45ce3ecfc55b6ebe5e36dab2777c02bc508c4e" + integrity sha512-sjuE4mnmx6JOh9kvSbPYw3u/6uxCLHNWfhWaIPwcXWsvWOPN+nc5baq4i9jui3oOBRXGonK9+OI0jVkaz6/rCw== + dependencies: + ansi-html "0.0.7" + bonjour "^3.5.0" + chokidar "^2.0.0" + compression "^1.5.2" + connect-history-api-fallback "^1.3.0" + debug "^4.1.1" + del "^3.0.0" + express "^4.16.2" + html-entities "^1.2.0" + http-proxy-middleware "^0.19.1" + import-local "^2.0.0" + internal-ip "^4.2.0" + ip "^1.1.5" + killable "^1.0.0" + loglevel "^1.4.1" + opn "^5.1.0" + portfinder "^1.0.9" + schema-utils "^1.0.0" + selfsigned "^1.9.1" + semver "^5.6.0" + serve-index "^1.7.2" + sockjs "0.3.19" + sockjs-client "1.3.0" + spdy "^4.0.0" + strip-ansi "^3.0.0" + supports-color "^6.1.0" + url "^0.11.0" + webpack-dev-middleware "^3.5.1" + webpack-log "^2.0.0" + yargs "12.0.2" + +webpack-log@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-2.0.0.tgz#5b7928e0637593f119d32f6227c1e0ac31e1b47f" + integrity sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg== + dependencies: + ansi-colors "^3.0.0" + uuid "^3.3.2" + +webpack-manifest-plugin@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.1.tgz#6b3e280327815b83152c79f42d0ca13b665773c4" + integrity sha512-2zqJ6mvc3yoiqfDjghAIpljhLSDh/G7vqGrzYcYqqRCd/ZZZCAuc/YPE5xG0LGpLgDJRhUNV1H+znyyhIxahzA== + dependencies: + fs-extra "^7.0.0" + lodash ">=3.5 <5" + object.entries "^1.1.0" + tapable "^1.0.0" + +webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: + version "1.4.3" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" + integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@4.41.0: + version "4.41.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b" + integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/wasm-edit" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + acorn "^6.2.1" + ajv "^6.10.2" + ajv-keywords "^3.4.1" + chrome-trace-event "^1.0.2" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.3" + json-parse-better-errors "^1.0.2" + loader-runner "^2.4.0" + loader-utils "^1.2.3" + memory-fs "^0.4.1" + micromatch "^3.1.10" + mkdirp "^0.5.1" + neo-async "^2.6.1" + node-libs-browser "^2.2.1" + schema-utils "^1.0.0" + tapable "^1.1.3" + terser-webpack-plugin "^1.4.1" + watchpack "^1.6.0" + webpack-sources "^1.4.1" + +websocket-driver@>=0.5.1: + version "0.7.3" + resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.3.tgz#a2d4e0d4f4f116f1e6297eba58b05d430100e9f9" + integrity sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg== + dependencies: + http-parser-js ">=0.4.0 <0.4.11" + safe-buffer ">=5.1.0" + websocket-extensions ">=0.1.1" + +websocket-extensions@>=0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" + integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-fetch@2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" + integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== + +whatwg-fetch@3.0.0, whatwg-fetch@>=0.10.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" + integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== + +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0, whatwg-mimetype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" + integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.9, which@^1.3.0, which@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +workbox-background-sync@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-background-sync/-/workbox-background-sync-4.3.1.tgz#26821b9bf16e9e37fd1d640289edddc08afd1950" + integrity sha512-1uFkvU8JXi7L7fCHVBEEnc3asPpiAL33kO495UMcD5+arew9IbKW2rV5lpzhoWcm/qhGB89YfO4PmB/0hQwPRg== + dependencies: + workbox-core "^4.3.1" + +workbox-broadcast-update@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-broadcast-update/-/workbox-broadcast-update-4.3.1.tgz#e2c0280b149e3a504983b757606ad041f332c35b" + integrity sha512-MTSfgzIljpKLTBPROo4IpKjESD86pPFlZwlvVG32Kb70hW+aob4Jxpblud8EhNb1/L5m43DUM4q7C+W6eQMMbA== + dependencies: + workbox-core "^4.3.1" + +workbox-build@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-build/-/workbox-build-4.3.1.tgz#414f70fb4d6de47f6538608b80ec52412d233e64" + integrity sha512-UHdwrN3FrDvicM3AqJS/J07X0KXj67R8Cg0waq1MKEOqzo89ap6zh6LmaLnRAjpB+bDIz+7OlPye9iii9KBnxw== + dependencies: + "@babel/runtime" "^7.3.4" + "@hapi/joi" "^15.0.0" + common-tags "^1.8.0" + fs-extra "^4.0.2" + glob "^7.1.3" + lodash.template "^4.4.0" + pretty-bytes "^5.1.0" + stringify-object "^3.3.0" + strip-comments "^1.0.2" + workbox-background-sync "^4.3.1" + workbox-broadcast-update "^4.3.1" + workbox-cacheable-response "^4.3.1" + workbox-core "^4.3.1" + workbox-expiration "^4.3.1" + workbox-google-analytics "^4.3.1" + workbox-navigation-preload "^4.3.1" + workbox-precaching "^4.3.1" + workbox-range-requests "^4.3.1" + workbox-routing "^4.3.1" + workbox-strategies "^4.3.1" + workbox-streams "^4.3.1" + workbox-sw "^4.3.1" + workbox-window "^4.3.1" + +workbox-cacheable-response@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-cacheable-response/-/workbox-cacheable-response-4.3.1.tgz#f53e079179c095a3f19e5313b284975c91428c91" + integrity sha512-Rp5qlzm6z8IOvnQNkCdO9qrDgDpoPNguovs0H8C+wswLuPgSzSp9p2afb5maUt9R1uTIwOXrVQMmPfPypv+npw== + dependencies: + workbox-core "^4.3.1" + +workbox-core@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-core/-/workbox-core-4.3.1.tgz#005d2c6a06a171437afd6ca2904a5727ecd73be6" + integrity sha512-I3C9jlLmMKPxAC1t0ExCq+QoAMd0vAAHULEgRZ7kieCdUd919n53WC0AfvokHNwqRhGn+tIIj7vcb5duCjs2Kg== + +workbox-expiration@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-expiration/-/workbox-expiration-4.3.1.tgz#d790433562029e56837f341d7f553c4a78ebe921" + integrity sha512-vsJLhgQsQouv9m0rpbXubT5jw0jMQdjpkum0uT+d9tTwhXcEZks7qLfQ9dGSaufTD2eimxbUOJfWLbNQpIDMPw== + dependencies: + workbox-core "^4.3.1" + +workbox-google-analytics@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-google-analytics/-/workbox-google-analytics-4.3.1.tgz#9eda0183b103890b5c256e6f4ea15a1f1548519a" + integrity sha512-xzCjAoKuOb55CBSwQrbyWBKqp35yg1vw9ohIlU2wTy06ZrYfJ8rKochb1MSGlnoBfXGWss3UPzxR5QL5guIFdg== + dependencies: + workbox-background-sync "^4.3.1" + workbox-core "^4.3.1" + workbox-routing "^4.3.1" + workbox-strategies "^4.3.1" + +workbox-navigation-preload@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-navigation-preload/-/workbox-navigation-preload-4.3.1.tgz#29c8e4db5843803b34cd96dc155f9ebd9afa453d" + integrity sha512-K076n3oFHYp16/C+F8CwrRqD25GitA6Rkd6+qAmLmMv1QHPI2jfDwYqrytOfKfYq42bYtW8Pr21ejZX7GvALOw== + dependencies: + workbox-core "^4.3.1" + +workbox-precaching@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-precaching/-/workbox-precaching-4.3.1.tgz#9fc45ed122d94bbe1f0ea9584ff5940960771cba" + integrity sha512-piSg/2csPoIi/vPpp48t1q5JLYjMkmg5gsXBQkh/QYapCdVwwmKlU9mHdmy52KsDGIjVaqEUMFvEzn2LRaigqQ== + dependencies: + workbox-core "^4.3.1" + +workbox-range-requests@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-range-requests/-/workbox-range-requests-4.3.1.tgz#f8a470188922145cbf0c09a9a2d5e35645244e74" + integrity sha512-S+HhL9+iTFypJZ/yQSl/x2Bf5pWnbXdd3j57xnb0V60FW1LVn9LRZkPtneODklzYuFZv7qK6riZ5BNyc0R0jZA== + dependencies: + workbox-core "^4.3.1" + +workbox-routing@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-routing/-/workbox-routing-4.3.1.tgz#a675841af623e0bb0c67ce4ed8e724ac0bed0cda" + integrity sha512-FkbtrODA4Imsi0p7TW9u9MXuQ5P4pVs1sWHK4dJMMChVROsbEltuE79fBoIk/BCztvOJ7yUpErMKa4z3uQLX+g== + dependencies: + workbox-core "^4.3.1" + +workbox-strategies@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-strategies/-/workbox-strategies-4.3.1.tgz#d2be03c4ef214c115e1ab29c9c759c9fe3e9e646" + integrity sha512-F/+E57BmVG8dX6dCCopBlkDvvhg/zj6VDs0PigYwSN23L8hseSRwljrceU2WzTvk/+BSYICsWmRq5qHS2UYzhw== + dependencies: + workbox-core "^4.3.1" + +workbox-streams@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-streams/-/workbox-streams-4.3.1.tgz#0b57da70e982572de09c8742dd0cb40a6b7c2cc3" + integrity sha512-4Kisis1f/y0ihf4l3u/+ndMkJkIT4/6UOacU3A4BwZSAC9pQ9vSvJpIi/WFGQRH/uPXvuVjF5c2RfIPQFSS2uA== + dependencies: + workbox-core "^4.3.1" + +workbox-sw@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-sw/-/workbox-sw-4.3.1.tgz#df69e395c479ef4d14499372bcd84c0f5e246164" + integrity sha512-0jXdusCL2uC5gM3yYFT6QMBzKfBr2XTk0g5TPAV4y8IZDyVNDyj1a8uSXy3/XrvkVTmQvLN4O5k3JawGReXr9w== + +workbox-webpack-plugin@4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-webpack-plugin/-/workbox-webpack-plugin-4.3.1.tgz#47ff5ea1cc074b6c40fb5a86108863a24120d4bd" + integrity sha512-gJ9jd8Mb8wHLbRz9ZvGN57IAmknOipD3W4XNE/Lk/4lqs5Htw4WOQgakQy/o/4CoXQlMCYldaqUg+EJ35l9MEQ== + dependencies: + "@babel/runtime" "^7.0.0" + json-stable-stringify "^1.0.1" + workbox-build "^4.3.1" + +workbox-window@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/workbox-window/-/workbox-window-4.3.1.tgz#ee6051bf10f06afa5483c9b8dfa0531994ede0f3" + integrity sha512-C5gWKh6I58w3GeSc0wp2Ne+rqVw8qwcmZnQGpjiek8A2wpbxSJb1FdCoQVO+jDJs35bFgo/WETgl1fqgsxN0Hg== + dependencies: + workbox-core "^4.3.1" + +worker-farm@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + dependencies: + errno "~0.1.7" + +worker-rpc@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5" + integrity sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg== + dependencies: + microevent.ts "~0.1.1" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrap-ansi@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" + integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== + dependencies: + ansi-styles "^3.2.0" + string-width "^3.0.0" + strip-ansi "^5.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write-file-atomic@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.1.tgz#d0b05463c188ae804396fd5ab2a370062af87529" + integrity sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^5.2.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + dependencies: + async-limiter "~1.0.0" + +ws@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" + integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== + dependencies: + async-limiter "~1.0.0" + +ws@^7.0.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.1.2.tgz#c672d1629de8bb27a9699eb599be47aeeedd8f73" + integrity sha512-gftXq3XI81cJCgkUiAVixA0raD9IVmXqsylCrjRygw4+UOOGzPoxnQ6r/CnVL9i+mDncJo94tSkyrtuuQVBmrg== + dependencies: + async-limiter "^1.0.0" + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xmlchars@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" + integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== + +xregexp@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz#e698189de49dd2a18cc5687b05e17c8e43943020" + integrity sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg== + +xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" + integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== + +"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + +yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yargs-parser@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" + integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== + dependencies: + camelcase "^4.1.0" + +yargs-parser@^13.1.1: + version "13.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" + integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs@12.0.2: + version "12.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" + integrity sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ== + dependencies: + cliui "^4.0.0" + decamelize "^2.0.0" + find-up "^3.0.0" + get-caller-file "^1.0.1" + os-locale "^3.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^10.1.0" + +yargs@^13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" + integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== + dependencies: + cliui "^5.0.0" + find-up "^3.0.0" + get-caller-file "^2.0.1" + require-directory "^2.1.1" + require-main-filename "^2.0.0" + set-blocking "^2.0.0" + string-width "^3.0.0" + which-module "^2.0.0" + y18n "^4.0.0" + yargs-parser "^13.1.1" diff --git a/pkg/ui/rule.go b/pkg/ui/rule.go index 18828291293..5f54415b3f2 100644 --- a/pkg/ui/rule.go +++ b/pkg/ui/rule.go @@ -16,6 +16,7 @@ import ( "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/common/route" "github.com/prometheus/prometheus/rules" + "github.com/thanos-io/thanos/pkg/component" extpromhttp "github.com/thanos-io/thanos/pkg/extprom/http" thanosrule "github.com/thanos-io/thanos/pkg/rule" ) @@ -32,7 +33,7 @@ type Rule struct { func NewRuleUI(logger log.Logger, reg prometheus.Registerer, ruleManager *thanosrule.Manager, queryURL string, externalPrefix, prefixHeader string) *Rule { return &Rule{ - BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL)), + BaseUI: NewBaseUI(logger, "rule_menu.html", ruleTmplFuncs(queryURL), externalPrefix, prefixHeader, component.Rule), externalPrefix: externalPrefix, prefixHeader: prefixHeader, ruleManager: ruleManager, @@ -164,6 +165,15 @@ func (ru *Rule) Register(r *route.Router, ins extpromhttp.InstrumentationMiddlew r.Get("/rules", instrf("rules", ru.rules)) r.Get("/static/*filepath", instrf("static", ru.serveStaticAsset)) + // Make sure that "/new" is redirected to "/new/" and + // not just the naked "/new/", which would be the default behavior of the router + // with the "RedirectTrailingSlash" option (https://godoc.org/github.com/julienschmidt/httprouter#Router.RedirectTrailingSlash), + // and which breaks users with a --web.route-prefix that deviates from the path derived + // from the external URL. + r.Get("/new", func(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, path.Join(GetWebPrefix(ru.logger, ru.externalPrefix, ru.prefixHeader, r), "new")+"/", http.StatusFound) + }) + r.Get("/new/*filepath", instrf("react-static", ru.serveReactUI)) } // AlertStatus bundles alerting rules and the mapping of alert states to row classes. diff --git a/pkg/ui/templates/query_menu.html b/pkg/ui/templates/query_menu.html index 0497d3b3d43..a968dcc8983 100644 --- a/pkg/ui/templates/query_menu.html +++ b/pkg/ui/templates/query_menu.html @@ -18,6 +18,9 @@ + diff --git a/pkg/ui/ui.go b/pkg/ui/ui.go index aded58c7413..4ceb7a7c988 100644 --- a/pkg/ui/ui.go +++ b/pkg/ui/ui.go @@ -6,9 +6,9 @@ package ui import ( "bytes" "html/template" - "io" "net/http" "net/url" + "os" "path" "path/filepath" "strings" @@ -18,40 +18,103 @@ import ( "github.com/pkg/errors" "github.com/prometheus/common/route" "github.com/prometheus/common/version" + "github.com/thanos-io/thanos/pkg/component" +) + +var ( + reactAppPaths = []string{ + "/", + "/alerts", + "/config", + "/flags", + "/graph", + "/rules", + "/service-discovery", + "/status", + "/targets", + "/tsdb-status", + "/version", + } ) type BaseUI struct { - logger log.Logger - menuTmpl string - tmplFuncs template.FuncMap + logger log.Logger + menuTmpl string + tmplFuncs template.FuncMap + externalPrefix, prefixHeader string + component component.Component } -func NewBaseUI(logger log.Logger, menuTmpl string, funcMap template.FuncMap) *BaseUI { +func NewBaseUI(logger log.Logger, menuTmpl string, funcMap template.FuncMap, externalPrefix, prefixHeader string, component component.Component) *BaseUI { funcMap["pathPrefix"] = func() string { return "" } funcMap["buildVersion"] = func() string { return version.Revision } - return &BaseUI{logger: logger, menuTmpl: menuTmpl, tmplFuncs: funcMap} + return &BaseUI{logger: logger, menuTmpl: menuTmpl, tmplFuncs: funcMap, externalPrefix: externalPrefix, prefixHeader: prefixHeader, component: component} } - func (bu *BaseUI) serveStaticAsset(w http.ResponseWriter, req *http.Request) { fp := route.Param(req.Context(), "filepath") fp = filepath.Join("pkg/ui/static", fp) + bu.serveAsset(fp, w, req) +} - info, err := AssetInfo(fp) +func (bu *BaseUI) serveReactUI(w http.ResponseWriter, req *http.Request) { + fp := route.Param(req.Context(), "filepath") + for _, rp := range reactAppPaths { + if fp != rp { + continue + } + bu.serveReactIndex("pkg/ui/static/react/index.html", w, req) + return + } + fp = filepath.Join("pkg/ui/static/react/", fp) + bu.serveAsset(fp, w, req) +} + +func (bu *BaseUI) serveReactIndex(index string, w http.ResponseWriter, req *http.Request) { + _, file, err := bu.getAssetFile(index) if err != nil { - level.Warn(bu.logger).Log("msg", "Could not get file info", "err", err, "file", fp) + level.Warn(bu.logger).Log("msg", "Could not get file", "err", err, "file", index) w.WriteHeader(http.StatusNotFound) return } - file, err := Asset(fp) + prefix := GetWebPrefix(bu.logger, bu.externalPrefix, bu.prefixHeader, req) + + tmpl, err := template.New("").Funcs(bu.tmplFuncs). + Funcs(template.FuncMap{"pathPrefix": func() string { return prefix }}). + Parse(string(file)) + if err != nil { - if err != io.EOF { - level.Warn(bu.logger).Log("msg", "Could not get file", "err", err, "file", fp) - } - w.WriteHeader(http.StatusNotFound) + http.Error(w, err.Error(), http.StatusInternalServerError) return } + if err := tmpl.Execute(w, struct { + Component string + }{ + Component: bu.component.String(), + }); err != nil { + level.Warn(bu.logger).Log("msg", "template expansion failed", "err", err) + } +} +func (bu *BaseUI) getAssetFile(filename string) (os.FileInfo, []byte, error) { + info, err := AssetInfo(filename) + if err != nil { + return nil, nil, err + } + file, err := Asset(filename) + if err != nil { + return nil, nil, err + } + return info, file, nil +} + +func (bu *BaseUI) serveAsset(fp string, w http.ResponseWriter, req *http.Request) { + info, file, err := bu.getAssetFile(fp) + if err != nil { + level.Warn(bu.logger).Log("msg", "Could not get file", "err", err, "file", fp) + w.WriteHeader(http.StatusNotFound) + return + } http.ServeContent(w, req, info.Name(), info.ModTime(), bytes.NewReader(file)) } diff --git a/scripts/build-react-app.sh b/scripts/build-react-app.sh new file mode 100755 index 00000000000..101ee30e9cc --- /dev/null +++ b/scripts/build-react-app.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +# +# Build React web UI. +# Run from repository root. +set -e +set -u + +if ! [[ "$0" =~ "scripts/build-react-app.sh" ]]; then + echo "must be run from repository root" + exit 255 +fi + +cd pkg/ui/react-app + +PUBLIC_URL=. yarn build +rm -rf ../static/react +mv build ../static/react \ No newline at end of file From 4e8e9bc6678e5b24cdee41146a93bef9c304a7fb Mon Sep 17 00:00:00 2001 From: Pierre-Yves Aillet Date: Mon, 11 May 2020 16:44:44 +0200 Subject: [PATCH 177/190] Fix minor typos (#2586) Signed-off-by: Pierre-Yves Aillet --- tutorials/katacoda/thanos/1-globalview/step3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/katacoda/thanos/1-globalview/step3.md b/tutorials/katacoda/thanos/1-globalview/step3.md index 23c58c34f1c..3f46d86bc10 100644 --- a/tutorials/katacoda/thanos/1-globalview/step3.md +++ b/tutorials/katacoda/thanos/1-globalview/step3.md @@ -55,7 +55,7 @@ It's just enough to query Querier for Date: Mon, 11 May 2020 19:03:21 +0300 Subject: [PATCH 178/190] react: update deps (#2589) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * react: graph/panel: revert changes temporarily Signed-off-by: Giedrius Statkevičius * react-app: apply 'Update React vendoring' Add the commit https://github.com/prometheus/prometheus/commit/65a19421a42c69e16241eec24c66b98e4c8fa5da via a 3-way merge. Signed-off-by: Giedrius Statkevičius * ui/react-app: update yarn deps Should fix security warnings. Ported from https://github.com/prometheus/prometheus/commit/24ecae995691dabf782a6b4a7464f7aab561b554. Signed-off-by: Giedrius Statkevičius * ui: update bindata Signed-off-by: Giedrius Statkevičius --- pkg/ui/bindata.go | 295 +- pkg/ui/react-app/package.json | 2 +- .../src/pages/graph/ExpressionInput.tsx | 63 +- .../react-app/src/pages/graph/Graph.test.tsx | 10 +- .../react-app/src/pages/graph/Panel.test.tsx | 62 +- .../react-app/src/pages/graph/PanelList.tsx | 10 +- .../__snapshots__/TargetLabels.test.tsx.snap | 2 +- pkg/ui/react-app/yarn.lock | 5385 +++++++++-------- 8 files changed, 3075 insertions(+), 2754 deletions(-) diff --git a/pkg/ui/bindata.go b/pkg/ui/bindata.go index cbdeab31507..2c75df05606 100644 --- a/pkg/ui/bindata.go +++ b/pkg/ui/bindata.go @@ -24,13 +24,14 @@ // pkg/ui/static/react/favicon.ico // pkg/ui/static/react/index.html // pkg/ui/static/react/manifest.json -// pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js +// pkg/ui/static/react/precache-manifest.5b38a4fc0bde14c6f31f0e40057889e9.js // pkg/ui/static/react/service-worker.js -// pkg/ui/static/react/static/css/2.3f5e1097.chunk.css -// pkg/ui/static/react/static/css/main.61ef2226.chunk.css -// pkg/ui/static/react/static/js/2.926cad18.chunk.js -// pkg/ui/static/react/static/js/main.ba725b9f.chunk.js -// pkg/ui/static/react/static/js/runtime-main.56ad181a.js +// pkg/ui/static/react/static/css/2.df42c974.chunk.css +// pkg/ui/static/react/static/css/main.02392ede.chunk.css +// pkg/ui/static/react/static/js/2.b309ab18.chunk.js +// pkg/ui/static/react/static/js/2.b309ab18.chunk.js.LICENSE.txt +// pkg/ui/static/react/static/js/main.bd8c49dc.chunk.js +// pkg/ui/static/react/static/js/runtime-main.5db206b5.js // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css // pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css @@ -170,7 +171,7 @@ func pkgUiTemplates_baseHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/_base.html", size: 1478, mode: os.FileMode(436), modTime: time.Unix(1588865307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -190,7 +191,7 @@ func pkgUiTemplatesAlertsHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/alerts.html", size: 5106, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -210,7 +211,7 @@ func pkgUiTemplatesBucketHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1586945562, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket.html", size: 1382, mode: os.FileMode(420), modTime: time.Unix(1586287991, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -230,7 +231,7 @@ func pkgUiTemplatesBucket_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/bucket_menu.html", size: 787, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -250,7 +251,7 @@ func pkgUiTemplatesGraphHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/graph.html", size: 2298, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -270,7 +271,7 @@ func pkgUiTemplatesQuery_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1682, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/query_menu.html", size: 1682, mode: os.FileMode(436), modTime: time.Unix(1589208144, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -290,7 +291,7 @@ func pkgUiTemplatesRule_menuHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rule_menu.html", size: 963, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -310,7 +311,7 @@ func pkgUiTemplatesRulesHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/rules.html", size: 1944, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -330,7 +331,7 @@ func pkgUiTemplatesStatusHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/status.html", size: 1272, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -350,7 +351,7 @@ func pkgUiTemplatesStoresHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2358, mode: os.FileMode(420), modTime: time.Unix(1586945562, 0)} + info := bindataFileInfo{name: "pkg/ui/templates/stores.html", size: 2358, mode: os.FileMode(436), modTime: time.Unix(1588865307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -370,7 +371,7 @@ func pkgUiStaticCssAlertsCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/alerts.css", size: 401, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -390,7 +391,7 @@ func pkgUiStaticCssGraphCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/graph.css", size: 3844, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -410,7 +411,7 @@ func pkgUiStaticCssPrometheusCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/prometheus.css", size: 470, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -430,7 +431,7 @@ func pkgUiStaticCssRulesCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/css/rules.css", size: 195, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -450,7 +451,7 @@ func pkgUiStaticImgAjaxLoaderGif() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/ajax-loader.gif", size: 847, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -470,7 +471,7 @@ func pkgUiStaticImgFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/img/favicon.ico", size: 15886, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -490,7 +491,7 @@ func pkgUiStaticJsAlertsJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/alerts.js", size: 2637, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -510,7 +511,7 @@ func pkgUiStaticJsBucketJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(420), modTime: time.Unix(1586945562, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/bucket.js", size: 5274, mode: os.FileMode(436), modTime: time.Unix(1588865307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -530,7 +531,7 @@ func pkgUiStaticJsGraphJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph.js", size: 38722, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -550,12 +551,12 @@ func pkgUiStaticJsGraph_templateHandlebar() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/js/graph_template.handlebar", size: 8984, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xdb\x72\xb3\x20\x14\x85\xef\x7d\x0a\xc6\xeb\x3f\x04\xc9\x2f\x6a\x5f\xa5\xd3\x0b\xc4\xcd\x88\x89\xc4\x01\xd2\xc3\x74\xf2\xee\x1d\xac\x6d\xf0\x94\x3a\x9d\x5e\x02\xeb\x5b\x7b\xef\x05\xbc\x47\x08\xc5\x52\x9d\xc0\xc6\x0f\xc8\x2f\x10\x8a\x5b\xae\x34\x16\xd6\xef\xc4\x78\x6f\x1d\x77\x4a\xec\x85\xb5\xfb\xfe\x80\x25\x20\x29\xa5\x0c\x8b\xfa\xa2\x8f\xbd\xee\x5f\xc0\x35\x63\xac\x19\xa8\x92\x67\x34\x2d\x0b\x39\x50\xcd\x14\xc2\x2d\xef\xb6\x81\xbd\x72\x80\xcd\x45\x3b\xd5\xc2\x6e\xa5\xf2\xe8\x38\x65\xbc\x4a\xf2\x84\x07\xb5\x27\xf8\x52\x0f\x6b\x16\x61\x17\x41\x42\x14\x1f\x64\x0a\x09\x29\xb2\x20\x9e\x69\x8c\x8b\xa2\xb1\x57\xe3\x55\x05\x65\xc2\x17\xbc\x65\x36\x69\x6e\x49\xb2\xc5\x67\x69\xd0\x35\xd9\xe0\xa7\x74\x05\xaf\xb8\x76\xed\xe9\x13\x0c\xd6\x83\xa2\x33\x20\xb8\xa8\x7d\x54\x5a\x49\xb0\x0e\x8b\x8c\x51\xca\xca\xff\x84\x94\x24\xcf\x28\x03\x52\x92\x03\xcf\x38\x91\x2c\x3f\x80\xa8\xbe\x27\xfa\x1d\xfa\x35\x29\x98\x67\x25\x60\xf7\x72\x36\x47\x30\xb7\x94\x66\xdb\xdb\x6e\x6b\x96\xcd\x5d\xe1\xdc\x73\xe5\x8f\x2c\xda\xde\xd3\x46\x08\x5d\xbd\x7b\x0c\xda\x99\xb7\xee\xac\xb4\xf3\x93\x3d\x4e\xaf\xf7\xa7\x37\xfe\x27\xef\x6e\xf3\x98\x73\xbb\x95\xdf\x1f\x21\xf4\x14\x5d\x3f\x02\x00\x00\xff\xff\x16\x36\xf7\x56\x7e\x04\x00\x00") +var _pkgUiStaticReactAssetManifestJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x94\x3f\x4f\xc3\x30\x10\xc5\xf7\x7c\x0a\x2b\x33\x75\xdd\xfc\x69\x13\x56\xd4\x01\x09\xb1\x30\x22\x86\xf8\x7c\x51\x9d\x36\x6e\x15\xbb\x50\x84\xfa\xdd\x91\x4b\xa0\x6e\xfe\x14\x0b\x31\xda\x7e\xbf\x77\xbe\x77\x71\x3e\x02\x42\xc2\x52\x6e\x50\x87\xb7\xc4\x2e\x08\x09\xeb\x42\x2a\x0a\xda\xee\x84\x74\xaa\x4d\x61\x24\x4c\x41\xeb\xe9\xe9\x80\x45\x71\x1e\xa1\x40\x0a\xab\xbd\x5a\x9f\x74\x37\x0e\x57\x5d\x62\x55\x4b\x71\x91\x41\x92\x0b\x68\xa9\xaa\x0b\xd1\xba\xd8\xf9\x81\x27\x65\x0b\x37\x7b\x65\x64\x8d\x93\x91\xca\x17\xc7\xa9\xe0\x11\x9b\xf3\xd4\xa9\xdd\xc1\x87\xee\x30\x66\xe1\xde\xc2\x49\x28\xa2\xa2\x4c\x22\xc8\x17\x89\x13\x4f\x37\xc6\x41\xd1\xa5\x57\x65\x55\x3c\x66\x79\xc1\x67\xd9\x39\xb3\xce\xe5\x86\x24\x3e\x3e\x43\x8d\x8e\xc9\x5a\x3f\xa9\x04\x1e\xe8\xca\xd4\x9b\x2f\xd0\x59\xb7\x8a\x5d\x83\x50\xc0\xca\x46\xa5\x64\x89\xda\xd0\x94\xc7\x59\x91\x94\xc0\xb8\xc0\x59\x02\xf3\x32\x9e\x95\x0c\x13\xc6\xd2\x45\x96\xe5\x98\xff\x74\xf4\x37\xf4\xbb\x53\x6c\x5e\x25\xe0\xe4\x6d\xdb\xac\xb1\x39\xa7\xd4\xdb\xf6\x9b\x56\x2f\x9b\xab\xc2\xbe\xe7\xc8\x1b\x19\xb4\xbd\xa6\xf5\x9a\xe3\xc3\xfd\xdd\xf2\xf1\x69\x49\xcd\xc1\xf8\xcc\xd3\x95\x07\x84\x1c\x6d\x8d\x10\x95\x69\xde\x77\x5b\xa9\x8c\x4d\xee\xb9\x5b\xf6\xb7\x37\xf4\x2f\xdf\xb5\x77\x8c\x7d\xbb\x91\xbf\x4b\x40\xc8\x4b\x70\xfc\x0c\x00\x00\xff\xff\x79\x67\x81\x7b\xde\x04\x00\x00") func pkgUiStaticReactAssetManifestJsonBytes() ([]byte, error) { return bindataRead( @@ -570,7 +571,7 @@ func pkgUiStaticReactAssetManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1150, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/asset-manifest.json", size: 1246, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -590,12 +591,12 @@ func pkgUiStaticReactFaviconIco() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 16958, mode: os.FileMode(420), modTime: time.Unix(1588400914, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/favicon.ico", size: 16958, mode: os.FileMode(436), modTime: time.Unix(1589211640, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x7f\x6f\xdb\xb6\x16\xfd\x2a\xb2\x1e\xa0\x8a\x08\x4d\xff\x78\xaf\xbf\x6c\x33\x0f\xed\xd0\xad\x2b\xda\x26\x58\xf2\xc7\x06\x41\x08\x68\xea\x2a\x62\x42\x93\xda\x25\xe5\x34\x70\xf4\xdd\x07\x4a\x96\x9d\x76\xcd\xd6\x20\xb0\x29\xf2\x9e\xc3\xc3\x73\xaf\x2e\xbd\x1a\x15\x56\xfa\xfb\x1a\xa2\xca\x6f\xf4\xe9\x2a\x7c\x46\x5a\x98\x6b\x1e\x83\x89\x4f\x57\x15\x88\xe2\x74\xb5\x01\x2f\x22\x59\x09\x74\xe0\x79\xdc\xf8\x72\xfc\x2a\x9e\x9c\xae\xb4\x32\xb7\x11\x82\xe6\xb1\xab\x2c\x7a\xd9\xf8\x48\x49\x6b\xe2\xa8\x42\x28\x79\xcc\x26\xa5\xd8\x86\x09\xa6\xa4\x0d\xf1\x1d\x8d\x11\x1b\xe0\xf1\x56\xc1\x5d\x6d\xd1\xc7\x91\xb4\xc6\x83\xf1\x3c\xbe\x53\x85\xaf\x78\x01\x5b\x25\x61\xdc\x3d\x50\x65\x94\x57\x42\x8f\x9d\x14\x1a\xf8\x8c\xba\x0a\x95\xb9\x1d\x7b\x3b\x2e\x95\xe7\xe6\x5b\x52\x5f\xc1\x06\xc6\xd2\x6a\x8b\x8f\x78\xff\x33\xed\xfe\x42\xac\x93\xa8\x6a\x7f\x2a\xad\x71\x3e\xfa\xe5\xe3\xd9\xdb\x37\x1f\xaf\xce\xdf\x5c\xbe\xbf\x3a\xff\xed\xdd\xcf\xbf\xfe\xce\x9f\x3d\x5b\xae\x26\xfb\xa0\xaf\x83\x2f\xdf\xbf\xf9\x7c\x76\x71\xf5\xd3\xd9\xa7\xf3\xb3\xcf\xef\x3e\x5f\xf2\x67\x7f\x36\x80\xf7\x8f\xe3\x8f\x6e\x6c\x84\x51\x25\x38\x7f\x34\x62\x98\x61\x37\xce\x9a\xa0\xc4\x2b\xaf\xe1\xf4\xb2\x12\xc6\xba\xe8\xdd\x97\x1a\xc1\x39\x65\x4d\xf4\x16\xed\x9d\x03\x5c\x4d\xfa\x80\x9e\x74\x60\x71\x5e\x78\x25\x27\xd2\xb9\xc9\x9c\xfd\xb7\x7c\x0e\xb3\xe9\xeb\x97\x4c\x56\x8d\xb9\x65\xd2\xb9\x78\x9f\x0b\x7f\xaf\xc1\x55\x00\x3e\x7e\x1a\xbf\x11\xca\xb0\x17\x33\x28\xe7\xf3\xf9\x8b\x7f\xa6\x98\xf4\x35\xb0\xb6\xc5\xfd\xe9\xca\xd8\xfd\x71\xff\xb0\x4d\x64\x00\x8a\xc8\xdb\x08\x8c\x58\x6b\x88\x3e\x88\xad\xb8\xe8\x56\xc3\x24\x36\x26\xf2\x95\x72\x91\xa8\x6b\xb6\x9a\x1c\x80\xab\x42\x6d\x23\x55\xf0\x18\xad\xed\xe8\x0b\xb5\x3d\x98\x3d\x2a\x1b\x23\xbd\xb2\x26\xad\xc9\x6e\x18\x47\x90\x02\xd9\x95\x16\xd3\xad\xc0\x08\xa9\xa7\x86\x43\x36\xcd\xa9\xe5\x90\xcd\x72\xda\x70\xc8\xe6\x39\xd5\x7c\x4a\x05\xcf\xf2\xa5\x5e\x19\xa6\xc1\x5c\xfb\x6a\xa9\x4f\x4e\x88\xe7\x26\xd3\x39\x3d\x5b\xdf\x80\xf4\xac\x46\xeb\x6d\x28\x78\x56\x09\x77\x76\x67\xce\xd1\xd6\x80\xfe\x9e\x49\xa1\x75\xaa\xa8\x27\x49\xa2\x32\x9f\x27\x89\x60\x75\xe3\xaa\x34\x3c\x64\xd3\x9c\xd0\x30\xe0\xd3\x65\xd0\x81\x91\x32\x91\x25\x3f\x44\x69\x29\x92\x24\x49\xeb\x0c\x73\x6e\x33\xcc\x49\xc7\xe0\x92\xc4\xa5\x40\x96\x62\x50\x4a\x04\x73\x95\x2a\x7d\x4a\x52\xb2\x44\xf0\x0d\x9a\x48\x76\x0a\x98\xa8\x6b\x7d\x9f\x4a\xda\x3c\x3c\x64\x39\xa1\x65\x4a\xda\x83\x35\x65\x7a\x74\x06\x28\xf2\xe9\x12\x57\x72\xe0\xc4\x93\x93\xe3\xaa\xe7\x32\xc3\x9c\x1a\x3e\x9a\x52\xcb\x67\x4b\xbb\xf2\x43\x9c\x0d\x71\x21\xa6\xe1\x3e\xb3\xf9\x72\x3a\xe2\x5c\x65\x4d\x9e\x24\xa9\xe1\xa3\x19\x69\x4d\x92\xa4\x92\xb9\x5a\x2b\x09\x29\x8e\xc7\x74\x46\x28\x70\x9d\x6a\xe6\xb8\x0f\xe6\x90\x76\x2f\x19\xda\x7e\xaf\x5d\x4b\x15\xdf\xcd\x16\xd3\x96\xca\x90\x93\x83\x60\x1d\x72\xa9\xca\xd4\x67\x90\x93\x3d\x28\x8c\x19\x7c\x09\xfd\xc0\x2d\xbb\x1c\xf3\x30\xc5\x77\x6a\x01\x54\x2f\x46\x33\xba\x5f\x5c\xec\xda\x76\x30\xa7\x0e\xa0\xce\x61\x1c\xb0\x14\xe9\x71\xac\x09\x45\xa6\xc3\x69\x0f\x73\xad\x66\x1b\x5e\x53\xcd\x24\xf7\x54\xb3\x82\x1f\xaa\x0d\x28\x52\x4f\x76\x9a\xd9\x30\x24\x0f\x0f\xfb\xd4\x16\x50\x2a\x03\x43\x42\xbb\xb0\x1d\x98\x66\x03\x18\x2a\x7e\x31\x9a\xd2\x6b\xf0\x0b\xdf\x92\x96\x6a\x86\x8f\xf8\xc8\x2e\x6e\x4c\x8f\x2e\xe2\x11\x0f\xd5\x61\xcb\xe8\xe2\x7e\xb3\xb6\x3a\x49\xfa\x6f\xe6\xed\x85\x47\x65\xae\x2f\xc5\x75\x92\x3c\xb5\xe3\xdf\x63\xe9\x6e\x2b\x74\x03\x8b\xf8\x93\x2d\x1a\x0d\x71\x4b\xe8\x53\xe0\xf8\xea\x0a\xdc\x3e\x6c\x80\x8d\xa6\xbd\x5c\x7f\x94\x8b\xb4\x4f\xca\x2c\x81\x24\x49\x91\xeb\x14\x09\xa1\xaf\x12\x18\x32\x84\x4b\x55\xa6\xff\x0b\xab\xb1\xed\xb6\x8a\xf9\x70\x26\x4c\x92\xf0\xcf\x8e\x3b\x1d\x41\x7d\x2d\xec\xc5\x49\x04\xe1\x21\x35\x8d\xd6\x24\xd0\x69\x86\xa9\x7f\x4a\xba\xa7\x71\x01\xa5\x68\xb4\x8f\xbf\x75\xbc\x3f\x05\xb6\x84\xce\x3b\x41\xae\xf3\xe5\x68\x32\x92\xa1\xe4\x4d\x78\x4d\x91\x68\x56\xa4\x9e\x1a\xfa\x38\x3b\x83\xc4\x0c\xf2\x96\xad\x95\x29\x3a\x5d\xd4\x90\xc3\xcb\xe7\x83\x47\xe6\xab\x94\xf6\xa5\x09\x49\x02\x8f\x4e\xfb\xff\x43\xc4\x81\x15\xd8\x5e\x7b\xbb\xf8\xce\xe2\xa1\x82\x83\x2e\xa4\xb1\x88\x29\x12\x8a\x61\x3b\xfb\x55\x45\x1e\x20\x3f\xd4\x67\x02\x20\x70\xd4\xa1\xd3\xc7\xc3\x6b\x54\x29\xc7\xee\x60\x5d\x0b\x79\xfb\xc1\x59\x53\x5f\xa3\xa8\xab\x27\xa6\x43\x7b\xa1\x86\x63\xdf\x75\x3a\x53\x90\x2c\xfb\x47\x1e\x9a\x0b\x32\xd7\x75\x80\xbe\x85\x85\x1d\x2c\x9f\x2e\xed\x0a\x1f\x37\x12\x48\x31\xb3\x39\xe9\x04\x38\x6e\x96\xa1\x5d\xa5\x59\x4e\xbe\xbd\x58\x23\x87\xf2\xd1\xa5\x74\x13\xee\xb4\xd7\xf3\x17\x52\x14\xb3\x57\xfb\x0b\xe9\xc6\x85\xfb\xe1\xdf\x60\xdd\x55\xb6\x16\x2f\xe7\xcf\xd7\xaf\xcb\xef\x22\x27\xfd\xdd\x35\xe9\x7e\xe2\xfc\x15\x00\x00\xff\xff\xac\x81\x9d\xe2\xf2\x08\x00\x00") +var _pkgUiStaticReactIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xff\x6f\xdb\xb6\x13\xfd\x57\x64\x7e\x00\x41\x44\x68\xda\x4e\x03\x7c\x12\xdb\xcc\xd0\x0e\xdd\xba\xa2\x6d\x82\x25\x3f\x6c\x10\x84\x80\xa6\x4e\x11\x13\x9a\xd4\xc8\x93\xd3\xc0\xd1\xff\x3e\x50\xfe\x96\x66\xcd\xd6\x20\xb0\x29\xf2\xdd\xe3\xe3\xbb\xd3\xd1\xf3\x41\xe9\x14\x3e\x36\x90\xd4\xb8\x34\xe7\xf3\xf8\x99\x18\x69\x6f\x05\x01\x4b\xce\xe7\x35\xc8\xf2\x7c\xbe\x04\x94\x89\xaa\xa5\x0f\x80\x82\xb4\x58\x0d\x4f\xc9\xe8\x7c\x6e\xb4\xbd\x4f\x3c\x18\x41\x42\xed\x3c\xaa\x16\x13\xad\x9c\x25\x49\xed\xa1\x12\x84\x8f\x2a\xb9\x8a\x13\x5c\x2b\x17\xf1\x3d\x8d\x95\x4b\x10\x64\xa5\xe1\xa1\x71\x1e\x49\xa2\x9c\x45\xb0\x28\xc8\x83\x2e\xb1\x16\x25\xac\xb4\x82\x61\xff\xc0\xb4\xd5\xa8\xa5\x19\x06\x25\x0d\x88\x09\x0b\xb5\xd7\xf6\x7e\x88\x6e\x58\x69\x14\xf6\x25\x29\xd6\xb0\x84\xa1\x72\xc6\xf9\x67\xbc\xff\x1b\xf7\x7f\x11\x1b\x94\xd7\x0d\x9e\x2b\x67\x03\x26\xbf\x7e\xba\x78\xf7\xf6\xd3\xcd\xe5\xdb\xeb\x0f\x37\x97\xbf\xbf\xff\xe5\xb7\x3f\x04\x21\xf3\xd1\x16\xf3\x2d\xf6\xfa\xc3\xdb\x2f\x17\x57\x37\x3f\x5f\x7c\xbe\xbc\xf8\xf2\xfe\xcb\xb5\x20\x7f\xb5\xe0\x1f\x9f\xc1\x0f\x5e\x2c\xa5\xd5\x15\x04\x3c\xd8\xb0\x9b\xe1\x77\xc1\xd9\xa8\x03\x35\x1a\x38\xbf\xae\xa5\x75\x21\x79\xff\xb5\xf1\x10\x82\x76\x36\x79\xe7\xdd\x43\x00\x3f\x1f\x6d\x00\x1b\xd2\x1d\x4b\x40\x89\x5a\x8d\x54\x08\xa3\x63\x5e\x56\x27\xc7\xea\xec\xff\x27\x5c\xd5\xad\xbd\xe7\x2a\x04\xb2\xcd\x04\x3e\x1a\x08\x35\x00\x92\xd7\xe3\x97\x52\x5b\x3e\x3e\x7e\x73\x76\x0c\x25\xfc\x3b\xc5\x68\x53\x01\x0b\x57\x3e\x9e\xcf\xad\xdb\x1e\xf7\x4f\xd7\x26\x16\xa0\x4c\xd0\x25\x60\xe5\xc2\x40\xf2\x51\xae\xe4\x55\xbf\x1a\x27\x7d\x6b\x13\xac\x75\x48\x64\xd3\xf0\xf9\x68\x1f\x38\x2f\xf5\x2a\xd1\xa5\x20\xde\xb9\x9e\xbe\xd4\xab\xbd\xd7\x83\xaa\xb5\x0a\xb5\xb3\x19\xd0\xf5\x6e\x9c\xf8\xcc\xd3\x75\xe5\x7c\xb6\x92\x3e\xb1\xcc\x30\x29\x7c\x3e\x2e\x58\x23\x7c\x3e\x29\x58\x25\x7c\x7e\x5c\x30\x25\xc6\x2c\x88\xbc\x98\xa9\xb9\xe4\x06\xec\x2d\xd6\x33\x75\x74\x44\x8d\x90\xb9\x2a\xd8\xc5\xe2\x0e\x14\xf2\xc6\x3b\x74\xb1\xdc\x79\x2d\xc3\xc5\x83\xbd\xf4\xae\x01\x8f\x8f\x5c\x49\x63\x32\xc7\x0c\x4d\x53\x97\x9b\x22\x4d\x03\x6f\xda\x50\x67\xf1\x21\x1f\x17\x94\xc5\x81\x18\xcf\xa2\x0e\x9b\x68\x9b\x34\xf4\x87\x28\x1b\x66\x69\x9a\x66\x90\xdb\x42\x34\xb9\x2d\x68\xcf\xa0\xd3\x54\x67\x9e\xce\xc2\x4e\x29\x0d\x3c\xd4\xba\xc2\x8c\x66\x74\xe6\x01\x5b\x6f\x93\xb6\x57\xc0\x65\xd3\x98\xc7\xac\x65\xd5\xd3\x53\x5e\x50\x86\x19\xed\xf6\xd6\x60\x76\x70\x06\x98\x17\xe3\x99\x9f\xb7\x3b\x4e\x7f\x74\x74\x58\x45\xd1\xe6\xbe\x60\x56\x0c\xc6\x4c\x8a\xc9\x4c\xce\x71\x87\x93\x11\x17\x31\x8d\xc0\x5c\x16\xb3\xf1\x40\x08\x97\x37\x45\x9a\x66\x56\x0c\x26\xb4\xb3\x69\x9a\xb5\x3c\x34\x46\x2b\xc8\xfc\x70\xc8\x26\x94\x81\x30\x99\xe1\x41\x60\x34\x87\x76\x5b\xc9\xd0\xf5\x39\x12\xeb\x8e\x39\xb1\x9e\x4c\xc7\x1d\x6b\x63\x4e\xf6\x82\x4d\xcc\xa5\xae\x32\x9b\xfb\x82\x6e\x83\xe2\x98\xc3\xd7\xd8\x0d\xc2\x6c\xa3\x35\x4e\x89\xb5\x9e\x7a\x66\xa6\x83\x09\xdb\x2e\x4e\xd7\x5d\xb7\x33\x07\x62\x50\xef\x30\xee\x62\x19\xb2\xc3\xd8\x50\x86\xdc\xc4\xd3\xee\xe7\x3a\xc3\x97\x02\x98\xe1\x4a\x58\x66\x78\x29\x0e\xd5\xc6\x3c\x43\xba\x36\xdc\xc5\x21\x7d\x7a\xda\xa6\xb6\x84\x4a\x5b\xd8\x25\xb4\x87\xad\xc1\xb6\x4b\xf0\xb1\xe2\xa7\x83\x31\xbb\x05\x9c\x62\x47\x3b\x66\xb8\x17\xcf\xab\x97\xb4\x76\x13\x5d\x92\x81\x88\xd5\xe1\xaa\xe4\xea\x71\xb9\x70\x26\x4d\x37\xdf\x1c\xdd\x15\x7a\x6d\x6f\xaf\xe5\x6d\x9a\xbe\xb6\xe3\x3f\xb1\x6c\xbd\x92\xa6\x85\x29\xf9\xec\xca\xd6\x00\xe9\x28\x7b\x2d\x98\xdc\xdc\x40\xd8\xc2\x76\x61\x83\xf1\x46\x2e\x7e\x73\xfc\x3e\x29\x93\xd4\xc7\x52\x15\x26\x03\x4a\xd9\x69\xea\x77\x19\x82\x99\xae\xb2\x93\xb8\x4a\x5c\xbf\x15\x11\xbb\x33\x41\x9a\xc6\x7f\x7e\xd8\xe9\x10\xb4\xc9\xe5\x56\x9c\xf2\x20\x11\x32\xdb\x1a\x43\x23\x9d\xe1\x3e\xc3\xd7\xa4\x23\x23\x25\x54\xb2\x35\x48\x5e\x3a\xbe\x39\x05\x74\x94\x1d\xf7\x82\x42\xef\xcb\xc1\x64\xa0\xfb\x56\x11\x5f\x53\xa0\x86\x97\x19\x32\xcb\xf6\xc7\xf5\x74\xfd\xac\x88\x3a\xbe\xd0\xb6\xec\x75\x31\x4b\xf7\x2f\x1f\x46\x8f\xec\x37\x29\x8d\x9c\x5e\xbc\x38\xed\x4f\x7b\xc4\x81\x95\x6f\xb5\x77\xd3\xef\x2c\xee\x2b\x38\xea\xf2\x8c\x48\xc2\x3c\x65\x3e\x6e\xe7\x5e\xa4\x64\x0b\xfc\xa1\x3e\x13\x03\x22\x47\x13\x3b\x3d\xe9\xad\x97\x22\x36\x60\xfe\x00\x8b\x46\xaa\xfb\x8f\xc1\xd9\xe6\xd6\xcb\xa6\x7e\x65\x3a\xb6\x17\xd6\x08\xb9\xe9\x3a\xbd\x29\x92\xce\x36\x8f\xc2\x33\x29\x24\x0f\x7d\x07\xd8\xb4\xb0\xb8\x43\x15\x1b\xe2\xa1\xdd\x56\x47\x47\xd4\x67\x32\xaf\x0a\xda\x0b\xd0\xa2\x99\xc5\x76\x95\xe5\x05\x7d\x79\xaf\x26\xc1\xab\x67\x97\xd2\x5d\xbc\xd3\x16\x6f\xc6\x67\x72\x31\x39\xdd\x5e\x48\x77\x21\xde\x0f\xff\x15\xd6\x5f\x65\x8b\xf2\x54\x9d\x9c\x95\xea\xbb\x91\xa3\xcd\xdd\x35\xea\x7f\xe0\xfc\x1d\x00\x00\xff\xff\x6f\xa8\xbe\x2f\xf0\x08\x00\x00") func pkgUiStaticReactIndexHtmlBytes() ([]byte, error) { return bindataRead( @@ -610,7 +611,7 @@ func pkgUiStaticReactIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2290, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/index.html", size: 2288, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -630,32 +631,32 @@ func pkgUiStaticReactManifestJson() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 300, mode: os.FileMode(493), modTime: time.Unix(1588400914, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/manifest.json", size: 300, mode: os.FileMode(509), modTime: time.Unix(1589211640, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8f\x51\x4e\x02\x31\x10\x86\xdf\xf7\x14\xcd\x3e\x41\x82\x85\x4e\xdb\xd9\xad\xc6\x23\x78\x02\x42\xc8\x6c\x3b\x0d\x45\x28\x66\xbb\x18\x13\xf1\xee\x06\xc5\xc4\x04\x25\x98\xf8\xdc\xce\xf7\xfd\x5f\xe1\x4d\x94\xcb\xe5\x53\xcf\x9e\xfc\x8a\x1f\x28\xa7\xc8\x65\x10\xf7\x62\xf4\xdb\xd3\xe1\x20\xe6\x8b\xb1\xf4\xbb\xec\x69\x18\xcd\x2b\x21\x5e\x2b\x21\x84\xa8\x7b\x7e\x4e\x25\xed\x72\x7d\x2b\x6a\x83\xd6\xba\x68\xa2\x25\x15\x14\x38\x6c\x83\x89\x11\x9c\x01\xa3\x81\xc8\xe9\x7a\xf2\x79\xb3\xef\x37\xc7\xef\x72\x9a\x72\xe0\x17\xb9\x1a\xb6\x9b\xba\x12\xe2\x6d\xf2\x33\xb6\xd3\xa8\x1b\xdb\x22\x5a\x0d\x46\x63\x00\x02\x3e\x43\x95\x81\x86\xe4\xa7\xbe\x94\x29\x48\x1d\x2d\xab\x99\x6b\xa4\x5f\xed\xf3\xa3\xf4\xa5\x5c\xe2\x7b\x50\xc1\x07\x33\x0b\xae\xb1\xd0\x3a\x50\x11\xce\xa7\x7e\xe3\x6f\x29\x65\x89\x8a\x23\x00\xe0\x75\x8a\xbf\x24\xac\x8f\x05\x0e\xd0\x53\x50\xed\x09\xbf\xfe\xb7\x80\xf5\x69\x7f\x47\x0d\xd8\xce\xc5\xab\x04\x84\xd4\x34\xcc\x33\x32\x1d\x84\x0e\x1d\x5b\xc2\x0b\x82\x7e\x9f\x87\xb4\xe5\x9b\x0f\x91\xc5\x63\x87\xa2\x2f\x45\xb5\x18\xdf\xbd\x07\x00\x00\xff\xff\x7e\x77\x6d\xf1\x81\x02\x00\x00") +var _pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x90\xc1\x8b\x1a\x31\x14\x87\xef\xf3\x57\x84\x39\x29\xd8\x98\xe4\x25\x93\x49\x4b\x4f\xc5\x43\xa1\xed\xa5\x47\x11\x49\x5e\x5e\x70\xac\x8e\x65\x12\x8b\x50\xf7\x7f\x5f\xdc\x75\x4f\xbb\x3b\x28\xec\x39\x79\xdf\xc7\xf7\xcb\xb4\x4b\x7c\xbd\xfe\x3b\x10\x7a\xdc\xd0\x4f\xdf\x77\x89\x72\x61\x5f\xd9\xe4\xbd\xa7\xf3\x99\x2d\x57\x53\x8e\x87\x1e\x7d\x99\x2c\x2b\xc6\xfe\x57\x8c\x31\x56\x0f\xf4\xaf\xcb\xdd\xa1\xaf\x3f\xb3\xda\x46\x32\xd2\x8a\xd0\x58\x61\x5c\x22\x8b\x12\xa2\xf5\x56\x04\x2f\x9d\x0f\x2d\xd4\xb3\xe7\x9b\xe3\xb0\xbb\x7c\xe7\xf3\xae\x8f\x74\xe2\x9b\xb2\xdf\xd5\x15\x63\x0f\xb3\xb7\xb1\x28\x45\x0c\xa9\x89\xc6\x3b\x49\xe0\x1b\x1d\x83\x7e\x85\xca\xc5\x97\x0e\xe7\x98\xf3\x5c\xf1\x98\xb4\x42\x67\x35\xc7\xcd\xb1\xff\xc3\x31\xe7\x31\xbe\x55\xca\xba\x56\x48\x13\x55\x52\xda\xda\x06\xa2\x1b\xe3\xef\x7d\xd7\x73\xa1\xc0\x29\x8a\x74\x9b\xe2\x9e\x84\xed\xa5\x20\x80\x70\x3e\xc8\xf6\x8a\xdf\x8e\xd2\x23\x04\x50\xba\x45\x6a\x0d\x81\x76\xd6\x05\x99\x22\x26\xe1\x94\x93\x1e\x80\xee\x33\xf1\x1f\xdf\xbf\x2d\x7e\xfd\x5e\xf0\x72\x2a\x1f\x35\xdb\xf6\xba\x5a\x88\x2d\x6a\x17\xf1\xa6\xac\xe0\x0c\x81\x74\x08\x36\x79\x0d\x60\x04\x40\x33\x22\x18\x8e\x7d\xe9\xf6\xf4\xe9\x49\x64\x62\x50\xa2\x09\xe6\x45\x51\xad\xa6\x5f\x1e\x03\x00\x00\xff\xff\x69\x36\x34\xfb\xf7\x02\x00\x00") -func pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJsBytes() ([]byte, error) { +func pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9JsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, - "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js", + _pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9Js, + "pkg/ui/static/react/precache-manifest.5b38a4fc0bde14c6f31f0e40057889e9.js", ) } -func pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs() (*asset, error) { - bytes, err := pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJsBytes() +func pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9Js() (*asset, error) { + bytes, err := pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9JsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js", size: 641, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/precache-manifest.5b38a4fc0bde14c6f31f0e40057889e9.js", size: 759, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x71\x6f\xdb\x36\x10\xc5\xff\xd7\xa7\xb8\x19\x43\x6d\xa7\x0e\xe9\x25\x45\xd2\x35\xf0\x86\xa2\xdb\xba\xa0\x59\x91\xda\x29\x8c\xc1\x71\x02\x8a\x3c\x49\x9c\x29\x9e\xc6\xa3\xe2\x1a\x6d\xbf\xfb\x40\x45\x49\xb7\xae\xfe\x53\xe4\xdd\x8f\xf7\xee\x3d\xc9\x83\x83\x0c\x0e\x60\x89\x4e\x53\x8d\x10\x09\x76\xd4\x06\x58\x52\xd8\xe4\xf4\xe1\xb0\xa1\x2d\x06\x34\xc0\x18\xee\xac\x46\xd8\x52\xd8\x60\xf8\x2e\x83\xae\xeb\x4f\x6a\x87\xce\x81\x47\x34\xa9\x33\x60\x69\x39\x62\x80\x58\x59\x86\xc2\x3a\x04\xeb\xef\x79\x5b\xcc\x41\x35\x0d\x28\x6f\xd2\x01\x70\x45\xad\x33\x89\x61\x2c\xab\xdc\x21\xfc\x7e\x75\x75\x09\x5a\xe9\xca\xfa\x12\x0a\xfa\x37\x24\x12\x89\x54\xba\x40\x84\x2a\xc6\x86\x5f\x48\x59\x12\x89\xd2\x49\x5f\xbd\xab\x5e\x37\xfd\x38\x57\x15\x42\x40\x8e\x40\x05\xc4\x0a\x41\x93\x41\xb0\x0c\xaa\x8d\x74\x58\xa2\xc7\xa0\x22\x1a\x01\x97\x0e\x15\x23\x18\xf2\xc3\x08\x6d\x63\x54\xc4\x2f\xaf\xdd\xcf\x14\x50\x47\xb7\x3b\x03\xeb\x39\xa2\x32\x13\xa8\xd5\x06\x41\x57\xca\x97\xc8\x5f\x6f\x09\xf2\xd6\x3a\x03\x9a\x7c\x61\xcb\x36\xa8\x68\xc9\x27\x4c\x12\x1b\xf0\x30\xb4\xfd\x12\xee\xcb\x9a\x40\x1a\x99\xf7\x29\x3a\x52\xf3\x5f\xb8\xca\xe0\x40\x66\x99\xad\x1b\x0a\x71\xa1\x83\x6d\x22\x8f\x06\x0f\x95\x1c\x29\xa8\x12\x45\x49\x54\x3a\x54\x8d\x65\xa1\xa9\x96\xdb\xde\x33\x6d\xbc\x0c\xd8\x69\x64\xf9\x4c\x1c\x8b\x1f\x1e\xaf\x78\x2b\xfe\xe2\xc1\xf8\xec\x6b\x74\x06\x30\x10\xb2\x09\x98\x0c\xc0\xc3\x5a\x79\x5b\x20\x47\xa1\x4f\x4f\x8e\x8e\x4e\xf2\x67\xd3\x69\x3e\x7d\x7e\x7a\x74\x82\xd3\x7c\x7a\xac\x4e\xd5\xb4\x38\x79\x7e\x8c\xda\x24\x5a\x96\x70\x8c\xae\x10\xca\x98\x5f\xef\xd0\xc7\x8b\x94\x02\x8f\x61\x34\xac\x91\x59\x95\x38\x9c\xc0\x08\xd3\xcd\x18\x66\x3f\xc1\xc7\x0c\xc0\x16\xfd\x89\x30\x2a\x2a\x78\xf2\x04\xbe\x7c\x89\xb8\x6b\x10\x66\xb3\x19\x0c\x17\x6f\xce\x2f\x6f\x97\x2f\xcf\xaf\xce\xdf\xbe\x1e\x8e\xbb\x4e\x80\xee\x2d\xde\xd8\x66\xa9\x6c\xb4\xbe\x1c\x8d\xcf\x32\x80\xcf\xd9\xe7\x34\x48\xaf\x54\x68\x0a\x28\xb4\xb3\xe8\x23\xbf\x72\xca\xd6\xa9\x2a\xeb\xd3\x9e\x82\xd2\x17\x2e\x96\xe2\x41\xf6\x4b\x6f\xe6\xd4\x46\x1c\x8d\xa1\xc6\x58\x91\x01\x2c\x0a\xab\x13\xc2\xed\xba\x68\x22\xf7\x9e\x72\x43\xde\xa4\x1c\x24\x5a\xc0\xbf\x5b\xe4\xc8\x5d\x6a\xdf\xcf\x2f\x38\xa5\x3e\xe5\xef\x71\x8d\x7b\xac\x5e\xfc\xf8\x6e\xae\xf2\xce\xea\x4e\xd3\xed\xed\xc3\x28\x7f\xf4\x9d\x30\x83\xd5\x5a\x68\xf2\x5a\xc5\xd1\xbe\x9a\x4f\x9f\x60\xb5\x1e\x9f\x3d\x4a\xef\x0b\xac\x2f\xff\x2f\x6d\x0f\x63\x02\x1f\xff\xb3\xbd\x40\x6d\xda\xac\x78\xf8\xa3\xdf\xaa\x3b\x5b\x76\xb9\xbe\xc7\x7c\xe3\xa9\x12\xe3\xab\x84\x7c\x83\xbb\xdf\x28\xbc\x9f\x5f\x8c\x06\x42\x5a\x6f\xf0\x83\xa8\x62\xed\x06\xe3\x49\x67\x5f\x06\x90\x3b\xa5\x37\xce\x72\x7c\x01\x2b\x79\x73\x2d\x6f\xe5\x44\x5e\xcb\xd5\x8d\xfc\x79\xfd\xf4\x5a\xac\x6e\xe4\xfa\xe9\xf7\x72\x3d\xe9\xfc\xfc\x27\x00\x00\xff\xff\x6c\xa2\x27\xed\x9f\x04\x00\x00") +var _pkgUiStaticReactServiceWorkerJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x61\x6f\xdb\x36\x10\xfd\xae\x5f\x71\x33\x86\xda\x4e\x1d\x32\x59\xd2\x2d\x69\xe0\x0d\x45\xb7\x75\x41\xb3\x22\xb5\x53\x18\x43\xe2\x06\x14\x79\x92\x38\x53\x3c\x8d\x47\xc5\x35\xda\xfe\xf7\x81\xb2\x9c\x6e\xdd\xfc\x4d\x22\xdf\xbd\xbb\x77\xef\x51\x1e\x1c\x64\x70\x00\x0b\x74\x9a\x6a\x84\x48\xb0\xa1\x36\xc0\x82\xc2\x2a\xa7\x0f\x87\x0d\xad\x31\xa0\x01\xc6\xf0\x60\x35\xc2\x9a\xc2\x0a\xc3\x37\x19\x74\x55\x7f\x50\x3b\x74\x0e\x3c\xa2\x49\x95\x01\x4b\xcb\x11\x03\xc4\xca\x32\x14\xd6\x21\x58\xbf\xe5\x5b\x63\x0e\xaa\x69\x40\x79\x93\x0e\x80\x2b\x6a\x9d\x49\x1c\xc6\xb2\xca\x1d\xc2\x6f\x37\x37\xd7\xa0\x95\xae\xac\x2f\xa1\xa0\x7f\x92\x44\x22\x91\xa0\x73\x44\xa8\x62\x6c\xf8\xb9\x94\x25\x91\x28\x9d\xf4\xd5\xdb\xea\x55\xd3\x8f\x73\x53\x21\x04\xe4\x08\x54\x40\xac\x10\x34\x19\x04\xcb\xa0\xda\x48\x87\x25\x7a\x0c\x2a\xa2\x11\x70\xed\x50\x31\x82\x21\x3f\x8c\xd0\x36\x46\x45\xfc\xd2\x6d\x3b\x53\x40\x1d\xdd\xe6\x02\xac\xe7\x88\xca\x4c\xa0\x56\x2b\x04\x5d\x29\x5f\x22\x7f\xbd\x25\xc8\x5b\xeb\x0c\x68\xf2\x85\x2d\xdb\xa0\xa2\x25\x9f\x68\x92\xd8\x80\x87\xa1\xed\x97\xb0\x85\x35\x81\x34\x32\xef\x53\xf4\x9d\x9a\xfd\xcc\x55\x06\x07\x32\xcb\x6c\xdd\x50\x88\x73\x1d\x6c\x13\x79\x34\xd8\x21\x39\x52\x50\x25\x8a\x92\xa8\x74\xa8\x1a\xcb\x42\x53\x2d\xd7\xbd\x67\xda\x78\x19\xb0\xd3\xc8\xf2\x54\x9c\x88\xe3\xc7\x2b\x5e\x8b\x3f\x79\x30\xbe\xf8\x9a\x3a\x03\x18\x08\xd9\x04\x4c\x06\xe0\x61\xad\xbc\x2d\x90\xa3\x78\x96\x9f\x9c\xa9\xd3\x42\x1f\xe5\x06\x8f\x4f\xf5\xf7\xc5\xc9\x71\x71\x84\xa7\x47\x47\xcf\x7e\x38\x3b\x3b\xc7\xf3\xc4\x96\x25\x3a\x46\x57\x08\x65\xcc\x2f\x0f\xe8\xe3\x55\x4a\x81\xc7\x30\x1a\xd6\xc8\xac\x4a\x1c\x4e\x60\x84\xe9\x66\x0c\xd3\x1f\xe1\x63\x06\x60\x8b\xfe\x44\x18\x15\x15\x3c\x79\x02\x5f\xfe\x44\xdc\x34\x08\xd3\xe9\x14\x86\xf3\xd7\x97\xd7\xf7\x8b\x17\x97\x37\x97\x6f\x5e\x0d\xc7\x5d\x25\x40\xd7\x8b\x57\xb6\x59\x28\x1b\xad\x2f\x47\xe3\x8b\x0c\xe0\x73\xf6\x39\x0d\xd2\x2b\x15\x9a\x02\x0a\xed\x2c\xfa\xc8\x2f\x9d\xb2\x75\x42\x65\x7d\xda\x53\x50\x7a\xe0\x7c\x21\x76\xb2\x5f\x78\x33\xa3\x36\xe2\x68\x0c\x35\xc6\x8a\x0c\x60\x51\x58\x9d\x28\xdc\xa6\x8b\x26\x72\xef\x29\x37\xe4\x4d\xca\x41\x62\x0b\xf8\x57\x8b\x1c\xb9\x4b\xed\xbb\xd9\x15\xa7\xd4\xa7\xfc\x3d\xae\x71\x8f\xd5\xf3\xf3\xb7\x33\x95\x77\x56\x77\x9a\xee\xef\x77\xa3\xfc\xde\x57\xc2\x14\x6e\x97\x42\x93\xd7\x2a\x8e\xf6\x61\x3e\x7d\x82\xdb\xe5\xf8\xe2\x51\x7a\x0f\xb0\xbe\xfc\xaf\xb4\x3d\x1c\x13\xf8\xf8\xaf\xed\x05\x6a\xd3\x66\xc5\xee\x45\xbf\x51\x0f\xb6\xec\x72\xbd\xa5\xf9\x9f\x56\x25\xc6\x97\x89\xf2\x35\x6e\x7e\xa5\xf0\x6e\x76\x35\x1a\x08\x69\xbd\xc1\x0f\xa2\x8a\xb5\x1b\x8c\x27\x9d\x7d\x19\x40\xee\x94\x5e\x39\xcb\xf1\x39\xdc\xca\xf7\x77\xf2\x5e\x4e\xe4\x9d\xbc\x7d\x7f\x27\x7f\x5a\x3e\xbd\x13\xe9\x63\xf9\xf4\x5b\xb9\x9c\x74\x8e\xfe\x1d\x00\x00\xff\xff\x20\xfd\x71\x4b\xa1\x04\x00\x00") func pkgUiStaticReactServiceWorkerJsBytes() ([]byte, error) { return bindataRead( @@ -670,107 +671,127 @@ func pkgUiStaticReactServiceWorkerJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1183, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/service-worker.js", size: 1185, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticCss23f5e1097ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\xfd\x8f\xe3\x38\x92\x20\xfa\xfb\x02\xf7\x3f\x68\xab\x50\xe8\xce\x69\xcb\x25\xc9\x96\xed\x74\xa2\x1b\x3b\x3b\x37\x8b\x1b\xa0\x7b\x70\xd8\xde\x05\xee\xa1\xaf\x0e\x90\x2d\xda\xd6\x94\xbe\x4e\x92\x2b\x95\x6d\xe4\xfe\xed\x0f\xfc\x92\xf8\x11\xa4\x28\x67\xf5\xcc\xec\x7b\xbb\xb3\xe8\x4a\x93\xc1\x88\x60\x30\x18\xc1\xa0\xc8\xe0\xf2\x50\x55\x5d\xdb\x35\x49\xed\xa7\x49\x87\xba\xac\x40\x75\x76\xfc\x8c\x1a\xff\x39\x4b\xcf\xa8\xf3\x96\x87\xae\xfc\x25\x4d\xba\xc4\x4f\x8e\x5d\x56\x95\xdf\x1f\x73\x94\x34\x9f\xf6\xc9\xa9\x43\xcd\x62\x7e\xf3\x14\x1d\x1b\x54\xa0\xb2\xfb\x1f\xd5\xb5\x69\xbf\x02\x9e\x9f\xb2\xf2\xda\xa1\x37\x60\xca\xca\xaf\xc3\xd1\x80\xe7\xcd\x1c\xb5\x97\xea\xf9\x8d\xcc\x60\x14\x6f\xe6\xa3\xab\xd2\xe4\xe5\x2d\xcd\xcf\xe7\x1c\xfd\x4f\xd4\x64\x55\xea\x8e\x85\xfd\x6c\x9f\xb3\xee\x78\x71\x6d\xd5\x25\x87\x1c\x79\xdd\x65\x59\xa2\xbe\x9b\xdd\xa8\x6e\xd0\x17\xde\xa8\x6d\xfc\xaa\xcc\x5f\x6e\x75\xd5\x66\xb8\x17\xfb\xe4\xd0\x56\xf9\xb5\x43\x4f\xcf\x59\xda\x5d\xf6\x61\xdd\x3f\x5d\x50\x76\xbe\x74\xe4\xcf\x22\x69\xce\x59\xb9\xf7\xf1\xdf\x75\x92\xa6\x59\x79\xde\x07\x4f\xd5\x17\xd4\x9c\xf2\xea\x79\x7f\xc9\xd2\x14\x95\x4f\xc7\x3c\xab\xf7\x0d\x3a\x76\xdf\x06\x0b\xf2\xbf\x87\xa7\x43\xd5\xa4\xa8\xd9\x07\xaf\x53\x6c\xde\xf2\xac\xed\xfc\xb6\x7b\xc9\xd1\xbe\xac\x4a\x34\xd9\x60\x99\x36\x55\x9d\x56\xcf\xa5\x5f\xa0\xf2\x7a\x4b\xb3\xb6\xce\x93\x97\xfd\x21\xaf\x8e\x9f\x39\xbf\x51\xdd\x7b\xc1\xc0\xf0\xba\xee\x79\xef\xd6\x0d\x2a\x5e\xff\xa9\x40\x69\x96\x78\xdf\x16\x59\xe9\xd3\xf2\x78\xbb\xa9\xfb\x87\xdb\x3c\xd2\x4b\xa1\xbe\x3d\xb4\x37\x8a\x6a\xb5\x43\xc5\x2b\x40\x62\xbb\xd9\xfd\xd6\x24\x1e\x1f\xa3\xaf\x4b\x62\x1e\x26\x47\xbd\x54\x1a\x1d\xd0\xa9\x6a\xd0\xed\x58\x95\x1d\x2a\xbb\xfd\xbb\x77\x4f\x7c\x44\xb3\x32\xcf\x4a\xe4\xd3\x81\xd5\xf4\x75\x26\x73\xcb\x43\xd5\x75\x55\xc1\xc9\x51\xf5\xf4\x73\x74\xea\xf6\xdb\xba\xf7\xda\x2a\xcf\x52\xaf\x6b\x92\xb2\xad\x93\x06\x95\x1d\x53\x60\xbf\x21\x53\xc1\x0a\xc2\x30\x8f\x30\xcd\xf9\x90\xb0\x99\xb0\x8c\x1e\x9e\xba\xaa\xde\xfb\xdb\xba\x7f\xe2\xd4\xee\x64\x9d\x88\x57\xe2\x7c\x33\xcd\xb9\x15\x84\x21\x1e\x61\xde\x9f\x4e\x27\xca\xef\x86\xf3\xbb\x9b\xcf\x2f\x46\xf0\x1b\xc8\x19\xa3\x35\x0a\x99\x75\x65\x94\xf3\xe6\x3e\xbe\xbf\xbe\x90\x31\x56\x45\xc2\x9c\xd9\xcd\x1b\x94\xe2\x94\x57\x49\xc7\xe8\x33\x61\x13\x54\xc9\xb5\xab\x9e\x06\xb6\xde\x82\x95\x8a\x42\x45\x7a\x07\xab\xcf\x59\x8a\x1a\x66\x58\xc2\x0d\xb6\xc0\xd3\x6e\x92\x78\x85\x6b\x49\xfc\x42\x7a\x63\x66\x7d\xda\x9b\x78\x89\xe8\xa2\x3f\xdd\xb8\x0b\xc0\x03\x30\xbb\xf5\x1e\xff\xfb\x05\x2b\x71\xef\xb7\x97\x24\xad\x9e\xdd\x3c\x94\x27\xda\xd4\x4b\x75\x75\x59\x16\x08\x45\x05\x59\xd7\xcc\x6b\xd3\xa2\x63\x55\xa6\x4c\xc6\x31\x76\x78\xa7\xaa\xec\xfc\x67\xea\xc9\xb7\x41\x40\x7f\xb7\xd9\xaf\x68\x1f\x2e\x23\x54\x3c\xb9\x8b\xf4\x70\xed\xba\xaa\x34\xca\xd5\x41\x1c\x4e\x4b\xd2\xd1\x05\xfc\x89\x57\x7b\xa4\xfe\xdd\x5b\x28\xc8\x8b\x44\x88\x06\x83\xb8\x87\x0a\xb8\xd8\x1f\x69\xfc\x77\xf4\xe6\x7e\x18\xc2\x00\x88\xc6\x1b\xfa\xa1\x2e\xc8\x47\xf4\x3f\x5f\xaa\xe7\xfb\xb9\xd7\x57\xe9\x0a\xe6\x37\xf0\x0c\xac\xbe\x47\xe4\xff\x46\x2a\xbd\xdf\xff\xf4\xf1\x7f\xfe\x74\x0f\x72\x31\x08\x1c\xb1\xfe\x01\x97\x7a\xdd\x05\x79\xb4\xf9\x7d\x6c\x8f\x31\x87\x20\x0c\xbc\x5c\xbf\x20\x0f\x23\xf1\xba\xca\x23\x50\x2e\xe8\xa5\x68\xe2\xd6\xa1\xbe\xf3\x93\x3c\x3b\x97\xfb\x23\x2a\x3b\xd4\xcc\xc5\x60\x90\xe3\x7f\xc7\x6c\x25\x65\xea\xfd\x5b\x56\x20\xef\xe7\x63\x83\x50\xe9\x34\x68\x12\x72\xaf\x4b\x6f\x63\x0c\xc1\xed\x0f\x8f\x36\x88\x8b\xa1\xf6\x8b\xfc\x49\xd6\x7e\xac\x2e\x2b\x2f\xa8\xc9\xba\x3b\x08\x7a\x6d\x9d\x94\x37\x11\x57\xb4\x8c\x9f\xc6\x3f\x51\xc1\x23\x83\x20\xf8\x30\x8d\x9f\x84\x54\xb7\xb1\xc5\x0c\x2b\xca\xa2\xb1\xd4\x3d\x6e\xd3\x87\x73\x58\x75\x24\x69\x76\x6d\xf7\xcb\x28\x76\x72\xa6\x03\x42\xde\xef\x00\xaf\x3b\x44\x99\x04\x43\x84\x84\xff\x74\xc7\xa8\xe8\x1f\x0f\xb2\xe2\x59\x38\xd2\xac\xc5\x7f\xce\x90\xcc\xd0\x64\x7f\xc1\xa1\xe8\xed\x90\x1c\x3f\x9f\x9b\xea\x5a\xa6\xc4\x41\x3f\x1d\xab\xbc\x6a\xf6\xef\x37\xc7\x6d\xbc\x4d\x9f\x8e\xd7\xa6\xad\x9a\x7d\x59\x61\x61\xe6\xd5\x33\x4a\xe7\x74\x70\x88\x9d\xc7\x59\xf1\x3f\x1b\xf4\x25\xab\xae\xad\xf7\x53\x55\x76\x17\x87\x79\x00\x84\xef\x23\xb6\x3f\xa3\xbe\x9b\x8d\x09\x25\x78\xad\xb9\x3f\x65\x4d\xdb\xf9\xc7\x4b\x96\xa7\x78\x7c\x59\x4f\xeb\x2a\x73\x9b\xfc\x56\x6c\xba\x6c\xdf\xa3\x47\x74\x44\x27\x77\x5d\xe7\x0a\x47\x16\x24\xa2\xc2\xc5\x63\x48\x8e\xff\x74\xc7\xb8\x3c\x3e\xdf\xc6\x95\xcc\x72\x87\x8a\x27\xab\x52\x4b\x9a\x30\x83\x4c\x9a\xbc\x7c\xf5\xd9\x42\xb0\x52\xa9\x3a\xab\x7a\xba\xc4\xeb\xc7\xd9\x8d\xe8\x12\x72\x76\x33\xba\x8a\x34\x0e\xfc\xd3\x9d\xfa\x95\x2e\x4b\xf4\x3c\x83\x8d\x2a\x4f\x6f\xf7\x0e\x1c\xf1\x9c\xe3\xee\x56\x83\xf2\x04\xaf\xe1\xe7\x62\x70\xdd\x96\x60\x06\x99\x72\x2b\x87\xa4\x62\x2c\xe8\xbd\x0f\x82\xed\x81\x44\x7e\x04\x9e\x6e\x77\x91\x88\x90\x17\x51\x85\x0a\xbc\xc0\xc3\x31\x2e\x0e\x63\xf5\x2d\x3a\x16\x37\xe2\xc9\x43\x83\xb1\x79\x73\x87\x86\x33\x33\x06\x82\x36\xd0\xf4\x81\x75\x97\xf7\x89\xfd\x22\x5b\x07\xd8\x63\xb1\x50\x29\xf0\xfc\x10\x47\x5d\x72\xa4\x1e\x3f\xcc\x66\x58\x1e\x11\x69\xeb\xc2\x1f\x69\xcf\x99\x86\x73\x1d\x4e\xfa\x57\x73\x38\x6c\xc1\x02\xea\x9a\x10\xdc\x59\xed\xaa\xb0\x07\x1a\x2e\x63\x6c\x04\xa5\x69\xfb\xb6\x45\x04\x65\xf0\x2b\xf8\x06\x82\x67\xc9\x23\xec\xbf\xba\x6e\x51\xf2\x6f\xb0\x34\x14\xc1\x7c\x55\x92\xdb\xfd\x56\xfa\xb4\xbc\xb6\xa8\x7b\x46\x65\xf7\x72\xaa\xae\x0d\xf7\x23\x83\x4b\xdb\xaa\x2e\x8d\xec\xea\x64\x65\x7d\xed\x7c\xcc\x47\xed\xd1\xa0\x85\x06\x59\xdf\xcb\x24\x3e\xa9\xeb\x8c\xff\xf6\x0f\xff\xf0\xf1\x77\xff\xf8\x0f\xde\xef\xbc\x7f\xe6\x5c\x79\x5f\xd6\xcb\xd5\x32\xf4\xbe\xbd\x74\x5d\xdd\xee\x3f\x7e\x3c\xa3\x6e\x60\x79\x79\xac\x8a\x8f\x0f\x18\xfe\x0f\x55\xfd\x42\x2c\x99\x17\x05\x61\xe8\x47\x41\xf8\xe8\xfd\xdb\x05\x09\x78\x7e\x7f\xed\x2e\x55\xd3\x1a\x81\x9f\xb3\xae\x43\xcd\xc2\xfb\x53\x79\x5c\x62\xa0\x1f\xb3\x23\x2a\x5b\x94\x7a\xd7\x32\x45\x8d\xf7\xd3\x9f\xfe\x4d\xe0\x21\xeb\x2e\xd7\x03\xa1\xde\x3d\x1f\xda\x8f\x03\x43\x1f\x0f\x79\x75\xf8\x58\x24\x6d\x87\x9a\x8f\x3f\xfe\xe9\x0f\x7f\xfc\xf3\xcf\x7f\xc4\xfc\x7d\xdc\x37\x55\xd5\xdd\x7c\xff\x90\x5f\xd1\xa0\x93\xbe\x9f\x95\x69\x76\xae\xf6\xef\x37\x9b\x30\x38\x45\x4f\xbe\x5f\x5f\x9b\x3a\x47\xfb\xf7\x9b\xd3\x3a\x3a\x86\xb8\x20\x2b\x3f\xef\xdf\xa3\xdd\x0a\xed\x8e\x4f\xbe\xdf\xa0\x74\xff\x3e\x3d\xae\xe2\x75\xfc\xe4\xfb\x55\x93\x94\x67\xb4\x7f\x7f\x4a\xb7\x28\x5c\x3f\xf9\xfe\x0b\xc2\xc3\x8a\xd5\xfc\x18\x06\xdb\x27\xdf\x3f\xe3\x08\x6b\xff\x3e\xda\x25\x5b\xd2\xa2\x43\x49\xbe\x7f\x1f\x05\xc7\xc7\x47\x5c\x7d\x7c\x49\xca\xfd\xfb\x70\x9b\x44\x87\xdd\x93\xef\x3f\x5f\xb2\x0e\xd1\x49\x82\x9b\x26\x2f\x83\xe6\xd0\x9f\x7e\x9a\x34\x9f\xf7\xef\x57\xeb\x55\xb2\x0e\x30\x73\x4d\x56\x24\xcd\x8b\xd0\x21\xea\xf8\x49\xd9\xd0\xb2\xbd\x1e\x8f\xa8\x6d\x05\x2e\xb2\xf2\x54\x89\x64\x93\xa6\xc4\xb1\xdc\xc8\x76\x8a\xfb\xd5\x08\x3d\xcd\x89\x76\xbd\x3f\xed\x4e\x8f\xa7\x84\x00\x48\x8c\x1c\x1a\x94\x7c\x26\x5a\xe4\xf7\xed\x5e\x29\x69\x0b\xfa\x59\x46\x2e\x2d\x52\xfa\x25\x45\x2e\xcd\xcf\xf4\xe3\x87\x82\x33\xdf\x87\x51\x10\x90\x62\xb2\x68\x3c\x25\x45\x96\xbf\xf8\x6d\x52\xb6\x7e\x8b\x9a\xec\xb4\xf7\x93\xba\xce\x91\xdf\xbe\xb4\x1d\x2a\x16\xff\x9c\x67\xe5\xe7\x9f\x92\xe3\xcf\xe4\xe7\xbf\x54\x65\xb7\x78\xf7\x33\x3a\x57\xc8\xfb\xf7\x3f\xbd\x5b\xfc\x6b\x75\xa8\xba\x6a\xf1\xee\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xbb\xc5\xef\x9b\x2c\xc9\x17\xef\xfe\x5c\x75\x95\xf7\x73\x52\xb6\xef\x16\x23\x81\xc5\xbb\xdf\x63\x02\xde\x1f\xf0\x84\xf6\xfe\x58\x54\x7f\xc9\xde\x8d\x38\xf5\x82\x9f\x5f\x8a\x43\x95\xbf\x63\xd8\xc4\x56\x4a\x1f\x8a\xaa\xac\xda\x3a\x39\xa2\xfd\xcf\xff\xf2\x53\x55\x56\xfe\xbf\xa2\xf3\x35\x4f\x9a\xc5\x4f\xa8\xcc\xab\xc5\x4f\x55\x99\x1c\xab\xc5\x1f\xaa\xb2\xad\xf2\xa4\x5d\xbc\xfb\x31\x3b\xa0\x26\xc1\xcb\x09\x1c\x6b\x54\xef\x16\xef\xfe\x50\x5d\x9b\x0c\x35\xde\x9f\xd1\xf3\xbb\xc5\x80\xee\xf5\x77\x0b\xf6\x1d\x67\x74\xb8\x3d\x5e\x6d\xe3\x91\x1e\x7c\x6f\xff\x7a\xe9\x8a\xfc\x26\x30\xb4\x1f\xfb\x2c\x59\x96\x70\x19\xc6\x4f\xfe\x33\x3a\x7c\xce\x3a\x9f\x9a\xf0\xec\x57\xe4\x27\xe9\x5f\xae\x6d\x47\x63\xe8\xa1\x36\xa9\xfd\x4b\x76\xbe\x10\xa5\x61\x7e\x40\x58\x43\xbd\x26\x4d\x97\x1d\x73\xb4\x48\xda\x2c\x45\x8b\x53\x76\x3e\x26\x35\xee\x10\xfe\xf3\xda\xa0\xc5\xa9\xaa\x30\xdf\x38\x9a\xc1\xff\x10\x3b\xb6\x28\x92\xac\x5c\x94\xc9\x97\x45\x8b\xc8\x06\x8c\xfc\xbd\xf0\xf5\x50\xa5\x2f\xc3\xee\xf2\x93\xd8\x9f\x49\xcd\xe0\x63\xc6\xf5\x42\x56\x0b\xa6\x15\x83\x52\x88\x3a\xa1\xa9\xc4\x42\x56\x88\x85\xa2\x0e\x0b\x55\x19\xc4\xcd\xdc\x06\x15\xd2\x5e\xef\x3a\x08\x94\x01\x88\xb9\x3b\x89\xc2\x28\x8e\x1e\x9f\x84\x6d\x85\x1c\x9d\xba\x27\xdd\xf9\xe2\xe5\xd4\x2f\x5d\x72\xc8\xca\x14\xf5\xdf\xbf\xf3\xc3\x77\x9f\xf6\xa7\xea\x78\x6d\x6f\xd5\xb5\xc3\xc8\xf7\xc1\x3f\x66\x45\x5d\x35\x5d\x52\x76\xaf\x97\x46\xd4\x91\xac\xcc\xba\x2c\xc9\xf9\x12\x45\xf8\x58\xfc\x25\x6b\xb3\x43\x8e\x5e\x2f\xe1\xe2\x12\x2d\x2e\xab\xc5\x65\xbd\xb8\xc4\x8b\xcb\x86\x0d\x00\xf9\x52\xc2\x37\x86\xf8\xb7\xa9\x25\x59\x9d\xd4\x36\x10\x2c\x82\xd7\xe4\x70\x68\xa8\xcf\xaa\x9a\xec\x9c\x95\x49\xee\x77\x59\x97\xa3\x4f\x0b\x52\x43\xff\xa6\x3b\x2a\x29\x3a\x56\x74\x2a\xec\x89\x93\xc0\x1d\x92\x55\x14\x82\xf0\xd2\xaa\xeb\x50\xfa\x34\x09\xc0\x9c\xe3\x05\xe5\xb5\xf2\x9d\x2d\x30\x51\xf1\xdb\xcf\x59\xed\x63\x97\x41\xbc\xbf\xb5\xf6\x35\x49\xd3\x06\xb5\x2d\x0b\x83\xd9\x77\xf3\xa6\x48\x72\x70\xcb\x8c\x41\x2f\xd2\x7c\x51\xe5\x8b\x6b\x7e\x03\x64\xa7\xd6\x11\x21\xbf\x56\xb9\x57\xe1\x0a\xef\x8a\xeb\x3c\x02\xe1\x69\x08\x82\xd7\xb4\xbb\x29\xdf\x1a\x5e\xd3\xf4\x06\x8c\x22\x1f\x36\xf2\x45\x29\x78\x25\x13\xf0\xff\x5e\xab\x0e\x0d\x13\xd0\x0b\x3c\xc2\xd0\x61\xd1\x76\x4d\x55\x9e\x25\xc4\x87\x2a\x4f\x51\xf3\xda\x16\x49\x9e\x0b\x7b\x00\xbb\xe0\xc3\x6b\x7b\x3d\x2c\xda\x6b\xad\x87\x7d\xc2\x44\xd9\xc6\x1f\x24\x01\x05\x4f\x5f\x10\x36\x28\x49\xce\xe6\x02\x53\x5c\x8c\xec\xc6\x3f\xd0\x2d\xa3\x18\x15\xaf\x18\x35\xf9\x28\xba\xc4\xbf\x92\x9b\xbc\x44\x55\x15\x82\x0c\xa1\x36\xa7\x38\xf6\x84\xad\xf8\x06\x1c\xf1\xe6\xb0\x32\x2b\xd5\x6b\x82\x97\x7d\xdf\xfe\x72\x69\xd0\xe9\xd3\x03\xfd\x9b\x4f\xcc\x4f\x0f\x0b\x6b\x2d\x9d\xb2\x13\x30\x22\x37\x4c\x67\xc0\x1e\xd9\x19\x51\xad\xc3\xeb\xb1\x4a\xd1\xe2\xf3\x21\x5d\xd4\x0d\x5a\xb4\x49\x51\x4b\xbe\xc2\xc9\x65\x29\x1e\x6b\x21\xf8\xab\xd1\x5d\x89\x96\x10\xdb\x89\x06\x4d\x59\x8a\xd1\x1e\x25\xd7\xae\x7a\xa5\xbe\x43\xd3\xc0\xac\x38\xdf\xa4\x58\x9d\xc8\x20\x2b\xce\x8b\xf6\xcb\xf9\xa6\x68\x4e\x91\xa5\x69\x8e\x5e\x71\x8d\x72\x32\xe6\x95\x6e\x18\x8f\xbb\x04\x79\x52\xb7\x68\xcf\xff\x78\x65\x1e\x8c\x6f\x8b\x13\xa6\x97\x5b\x32\x59\x78\x11\x9f\x41\xb4\x54\x0e\x0c\x54\x4b\xce\xd0\xf9\xd8\x41\xee\x69\xc3\x57\x79\x1f\x99\x9b\x85\x3c\x39\xa0\x1c\x0e\x33\x21\xfb\x4b\x3f\x01\xde\xe4\xc8\x31\x60\xc5\xca\xe0\xe3\xc0\x8c\x99\x42\x5e\x14\xd7\xbd\x87\xa5\xed\x71\xfb\x47\x5a\xf8\x0d\xee\x1f\xe9\x11\xc3\xb4\x20\x11\xc8\xa2\xaa\x3b\xea\xbc\x5b\x94\xa3\x63\xb7\xc0\xfc\x27\x0d\x4a\x60\x47\xcd\xb5\x76\xd4\x04\x5e\x02\xd9\x43\x91\xd0\x4d\x73\x4d\xac\x96\xd2\xa5\x72\x23\x2b\x90\x53\xd5\x14\x54\x05\x58\xd5\x73\xd5\xa4\xfe\x73\x93\xd4\xcc\xf6\xbe\xfe\xd2\xbd\xd4\xe8\x7b\xda\xfe\xd3\x82\xfe\x6a\x50\x8b\x3a\xfe\xa3\xbd\x1e\x8a\xac\xfb\xb4\x60\xa2\xe4\x92\x48\xea\x1a\x25\x4d\x52\x1e\xd1\x9e\xd6\xc8\x98\xc8\x44\xdb\xf3\x68\xf1\x41\x42\x0c\xd7\x31\x3a\x6a\x25\x1b\x2a\xb9\x54\x0d\xe4\x64\xd2\x7b\xbf\xa8\x7e\x65\x43\x95\x95\x25\x6a\x64\xea\xa6\x6a\xce\x80\x5e\xcf\x78\xd0\x2a\x84\xaf\x42\xc0\x9c\xc3\x23\x45\x31\x1f\x2f\xe8\xf8\xf9\x50\xf5\x9f\x16\x42\x21\x56\xc6\xea\x13\xbc\x4a\x1d\x8f\xac\x89\x68\x70\x34\x2b\xa1\xe0\xe1\xad\x9f\x57\xc7\x24\x97\xaa\x8a\xaa\xec\x2e\x52\x09\x06\xfc\x04\x0d\x5f\x9e\xb5\x1d\x5e\x19\x0f\xda\x2a\x19\x9a\xa7\x06\x11\xdd\xe4\xa6\xe3\xf5\x94\xa1\x3c\x6d\x51\x77\x1b\xcf\x6f\x05\x4f\xc0\xe7\xb1\xe1\x20\x5d\x8e\xce\xa8\x4c\x95\xf3\x6e\xd2\xa7\xa8\xde\x17\x7e\xaa\xa8\x64\x57\x2c\x9e\x06\x20\x05\xc0\x5c\x79\x92\xbd\x02\x89\x32\x7d\x1a\x73\x30\xa5\xaf\x9b\xea\x4c\xd6\x22\x06\x57\x4a\x25\x56\x5e\x8b\x03\x6a\xb0\x42\x30\xa1\x91\x41\xf7\xdb\x1a\x33\x45\x27\x9c\x01\xb0\xba\x76\x32\xe0\x4d\xf8\x58\xc8\xb0\xb7\x28\x69\x8e\x97\x4f\xdc\xfc\xf8\xd5\xe9\xd4\xa2\x6e\xef\x93\x68\x50\x1f\x25\xa2\x53\x52\xcb\x91\x1c\x2d\x10\x3c\x1f\x34\xcc\x04\xc1\xd8\xe6\x94\xe5\xc8\xbf\xd6\x79\x95\xa4\x9c\x47\x2c\xdb\x41\x6a\xe6\x79\x5e\x5d\x3b\x6c\x83\x20\x1b\xfc\xda\x5e\x0b\x1c\xa1\x0f\x95\xe4\x34\x4c\xd6\x61\x07\x20\xcf\xd8\x0e\x15\x75\x9e\x74\x68\x80\xa4\xfd\xa3\xde\xe7\x93\x54\x2a\xac\xd8\x97\x97\x70\xb1\xbc\x44\x8b\xe5\x65\xb5\x58\x5e\xd6\x8b\xe5\x25\x5e\x2c\x2f\x9b\x85\x71\x65\xae\xeb\x0e\x5b\x94\xc5\x5a\xb4\x11\x11\xec\x97\x50\x58\xa2\x45\xd4\x89\x60\x8a\x97\x48\x2c\xa7\xa5\xab\xc5\x65\x75\x13\x15\x72\xcb\xc0\xd7\x8b\xcb\xfa\xa6\x6a\xea\x2b\x66\xf6\x12\x4b\xe5\x6c\x0b\x13\xf7\x60\x73\x93\x63\xa3\xd7\x65\x8e\x92\x54\x87\x96\x7a\xb1\x0a\x82\xd7\x25\x93\x95\x2f\x72\x4e\x0f\x2b\x0d\x35\x8b\xe1\xcf\xe8\xa6\xb4\xd7\xa5\xa0\x80\x12\x7c\x31\xeb\x02\xaf\x13\xfb\xbd\x56\xeb\x46\x6a\x6b\x77\x6a\xa2\xc0\x56\x14\xe3\xa5\x11\xd7\x44\xa1\xb0\x12\x17\x97\x45\xdc\xce\x88\xc7\xd6\x42\xf0\xb4\x5d\xf8\xf0\xba\x24\xab\xf0\x05\xb0\x16\x57\x63\xd1\xd7\x65\x91\x34\x9f\x17\xf8\x3f\x83\x99\x27\xe7\x8f\x80\xa8\xf3\x78\xda\xa1\xd5\x2b\x3d\xfa\x45\xa7\xc3\x42\x39\x07\xc6\x17\x45\x34\x84\x78\xd2\x8e\x0e\x0b\x4d\xc9\x74\x81\x67\x97\x06\x46\xdd\x62\x9e\xf0\xaf\x9f\x0f\x5c\x60\xf4\x2b\x0b\x1b\x18\x66\xd5\xb2\xb6\x10\xba\xfc\x18\x7c\x78\x52\xd6\x09\xd7\xba\x46\xcd\x31\x69\xd1\xeb\x52\x8b\x71\x24\x91\x03\x2a\x3c\x36\xf0\xe9\x76\x86\x62\xef\x65\x59\xab\x5b\xd7\x6a\x63\xed\x2b\xd6\xff\x8e\x82\x70\xfd\xbf\x83\xe0\xf7\xc1\xbb\xd7\x65\x56\x9c\xfd\x53\x7e\xcd\xd2\x05\xf9\xb3\xbb\x5c\x8b\x43\x99\x64\x38\xc2\x93\x3c\x89\x68\x73\x15\xc8\x71\x44\xc9\x9c\x02\x77\x12\xb8\x66\x8d\xca\xf4\x3e\x45\x28\x42\x1b\xc3\x87\x08\xb6\x22\x87\x47\x8e\x56\xfa\x78\x79\x0e\x99\x26\x69\x5a\x0c\xd0\x7c\x95\x2d\x8f\x9a\x2c\x3c\x1c\xb0\x88\x9a\xbc\x5d\xc6\x03\x08\xdb\xc6\x25\x6b\x3e\xb2\xbd\xb8\x27\xff\xf5\x71\xc1\x6b\xf2\x03\x69\x2a\xf9\xca\xd7\xcf\x87\x54\x90\x4d\x83\x0a\x6f\xb9\x96\x47\x5c\x22\x40\xa4\xa4\xc9\x8e\x6d\xd7\xa8\x52\xc2\x42\xfa\x7c\x48\x3d\x91\x86\x74\xbc\x2f\x50\x66\x21\x8e\xc8\x6b\x41\xa2\x9a\x26\x89\xac\x50\xa2\x18\xde\x53\x44\x62\x58\x15\x8c\x42\x61\x8b\x82\x65\xdd\x20\xbf\x3d\x36\x38\xc6\xc1\xc1\x0f\xd6\x26\x36\x24\xab\x75\x50\xf7\x43\x00\xe6\xbf\xec\x29\xd8\xeb\x12\x2b\x68\x92\x95\xe3\x29\x51\x61\x05\xc3\x26\x61\x18\x8f\x57\x10\xe8\xfc\x27\x25\xd2\x44\x25\x0b\x2d\x71\x97\x81\xe8\xac\xf9\xb8\xff\x48\x76\x54\xf9\x18\xf3\x68\x3b\xc0\x0f\x35\xda\x46\x86\x46\xfc\x48\x3e\xd4\xe8\x71\x63\x68\x44\x37\xad\x0d\xad\xc2\x90\x32\x38\x56\xd2\x49\xfc\x5b\x48\x6e\xd9\x54\xcf\x83\xda\x9c\x72\xd4\x3f\xe1\xff\xd0\xb8\x07\xff\x47\xc6\xe1\x8b\x68\x09\x12\x52\xf2\xba\x2c\x2b\xff\x7c\xed\x3a\xd4\xb4\xb2\x5d\x0d\x94\x1d\x21\x01\xf0\x87\xe5\xb1\xca\x17\x62\xc1\x2f\xc7\x3c\x69\xdb\xdf\x7d\x7f\xac\x72\x7f\x38\x7f\x3a\x20\x92\x1d\xc3\x2b\x6d\x8d\x41\x43\xfa\x4f\x44\xff\x59\xd1\x7f\xd6\xf4\x9f\x98\xfe\xb3\xa1\xff\x6c\xe9\x3f\x3b\xfa\xcf\x23\x6b\x1e\xb0\x7f\x19\x9e\x90\x21\xc2\xe2\xa1\x7f\xe5\x67\xfe\x2f\xa7\x95\x9f\x39\xb9\xfc\xcc\x29\xe6\x67\x4e\x34\x3f\x73\xba\xf9\x99\x93\xce\xcf\x9c\x7a\x7e\xe6\x0c\xe4\x67\xce\x03\xc6\x1c\x8c\x7f\x8e\x54\xc2\x91\xcc\xc8\x4f\x91\xf2\x7f\x39\x3f\x45\xca\xf9\x29\x52\xce\x4f\x91\x72\x7e\x8a\x94\xf3\x53\xa4\x9c\x9f\x22\xe5\xfc\x14\x29\xe7\xa7\x48\x39\x3f\x18\x73\x30\xfe\x39\x52\x09\x47\x32\x23\x3f\x6d\xc1\xff\xe5\xfc\xb4\x05\xe7\xa7\x2d\x38\x3f\x6d\xc1\xf9\x69\x0b\xce\x4f\x5b\x70\x7e\xda\x82\xf3\xd3\x16\x9c\x9f\xb6\xe0\xfc\x60\xcc\xc1\xf8\xe7\x48\x25\x1c\xc9\x8c\xfc\xf4\x39\xff\x97\xf3\xd3\x0f\xea\xd1\x0f\x1a\xd2\x0f\x4a\xd2\x0f\x7a\xd2\x0f\xaa\xd2\x0f\xda\xd2\x0f\x0a\xd3\x0f\x3a\xd3\x8f\x6a\xd3\x8f\x9a\xd3\x8f\xca\xd3\x53\xfd\x01\xb6\x2b\x67\xce\x61\xa2\xe7\x37\x32\x27\x0f\x49\x9b\xb5\xd8\x0f\xe0\x1f\xe7\xa6\x7a\xde\x87\x4a\x44\xf8\x3a\x28\x2e\x69\x41\xf6\xba\xd4\x43\x97\x50\x8b\x70\x04\xdf\x2d\x57\xe4\xff\xc4\x60\x73\x28\xa3\xd0\xd1\x08\x1d\x6e\x96\x1b\xfc\x7f\x5b\x29\x36\x1d\x0a\x29\xfc\x6a\x84\x8f\x62\x11\x30\x8a\x19\xc4\x7a\x84\x58\xad\x00\x06\xc6\x42\x0a\x1f\x8f\xf0\xeb\x10\xe0\x60\x2c\xa4\xf0\x9b\x11\x3e\x96\xc2\xe8\x98\x4b\x60\x2b\x40\x40\x22\x88\x15\x19\xec\x46\xf8\x0d\x24\x83\x8d\x22\x83\xc7\x11\x7e\x2b\xc9\x60\xcb\x65\x10\x06\xc2\x20\x40\x42\xd8\x29\x42\x08\x85\x51\x7b\x84\xa4\xf0\xa8\x48\x21\x14\x07\x4e\xdf\x4e\x78\x5d\xd2\x55\x08\x39\x22\x78\xa3\x0b\x3a\x3f\xe4\xa5\x78\xe5\xcc\x0a\xc3\x15\x2f\x0c\x6e\xc3\x15\x40\x5a\x10\x72\x10\x5e\x10\xb1\x82\x88\x17\xac\x58\xc1\x80\x63\xcd\x0a\xd6\xbc\x20\x66\x05\x31\x2f\xd8\xb0\x82\x0d\x2f\xd8\xb2\x82\x2d\x2f\xd8\xb1\x82\x1d\x2f\x78\x64\x05\x8f\x03\x63\x9c\xd5\x70\xe4\x75\x60\x76\xe0\x36\xe4\xec\x86\x98\x5f\xb2\xcb\xe0\x87\x37\xd1\x83\x09\x6a\xc0\xea\x23\xa9\x5e\xd4\x7d\x06\xb0\x92\x00\x88\xce\xb3\x9a\xb5\x54\x23\x2a\x39\x03\x88\x25\x00\x51\xab\x19\xc0\x46\x02\x20\xda\xcc\x6a\xb6\x72\x8d\xce\xf7\x4e\x02\xd8\xe8\x7c\x3f\x4a\x00\x5b\x81\xef\x30\x90\x65\xa2\x33\x1e\xca\x52\x13\x34\xd1\xb6\x52\xc3\x66\x7c\x9e\xa9\x63\x66\x7f\x9e\xb5\xc3\x6e\x63\x96\xc1\xc3\xde\x6c\xa6\xcd\xc3\x6e\x6f\xd2\xec\x61\x8f\x38\xd3\xf2\x61\xd7\x39\xd3\xf8\x61\x1f\x3b\x69\xff\xb0\xfb\x9d\x69\x02\xb1\x9f\x9e\x69\x05\xb1\x43\x9f\x34\x84\xc4\xd7\xcf\xb4\x85\x64\x51\x30\xd3\x1c\x92\xd5\x83\x93\x45\x6c\x0b\x83\x51\x6c\x0b\xd8\x2e\xb6\x85\x6e\x1a\x89\xd6\x29\xd6\x91\x28\x96\x62\x20\x89\xe6\x28\x36\x92\x28\x8a\x62\x26\x89\x26\x28\x96\x92\x0c\xb5\x62\x2c\xc9\xc8\x2a\xf6\x92\x0c\x9d\x62\x32\xc9\xd8\x28\x56\x93\x0e\x85\x6a\x38\xa9\xb0\x55\xdb\x49\xc5\xa9\x99\x4f\x22\x0a\x25\x06\x18\xab\xa6\x8c\x2b\x11\xd0\x84\x7d\x25\x02\x33\x99\x58\x22\xb9\x09\x2b\x4b\x24\x39\x61\x68\x89\x64\x4d\xb6\x96\x88\x78\xc2\xdc\x12\x91\x4f\x58\x5c\x32\x04\x26\xa3\x4b\xc7\x62\xc2\xee\xd2\xa1\x31\x98\x5e\x6b\xc0\x8b\x97\xf4\xf3\x6c\x2f\x0b\x01\xe6\xd9\x5e\x1c\x42\xcc\xb2\xbd\x38\xb2\x99\x69\x7b\x71\x08\x34\x69\x7b\x71\x74\x34\xd3\xf6\xe2\x30\x6a\xa6\xed\xc5\xf1\xd6\xa4\xed\xc5\xa1\xd8\x4c\xdb\x8b\x63\xb6\x99\xb6\x17\x07\x77\x93\xb6\x97\xc4\x7d\x33\x6d\x2f\x09\x10\x67\xda\x5e\x12\x49\x3a\xd9\xde\x22\x35\xd8\xde\x22\x85\x6d\x6f\x91\xea\xb6\x97\x68\x9d\x62\x7b\x89\x62\x29\xb6\x97\x68\x8e\x62\x7b\x89\xa2\x28\xb6\x97\x68\x82\x62\x7b\xc9\x50\x2b\xb6\x97\x8c\xac\x62\x7b\xc9\xd0\x29\xb6\x97\x8c\x8d\x62\x7b\xe9\x50\xa8\xb6\x97\x0a\x5b\xb5\xbd\x54\x9c\x9a\xed\x25\xa2\x80\x6d\x2f\x91\x88\xdd\xf6\x12\x01\x4d\xd8\x5e\x22\x30\x93\xed\x25\x92\x9b\xb0\xbd\x44\x92\x13\xb6\x97\x48\xd6\x64\x7b\x89\x88\x27\x6c\x2f\x11\xf9\x84\xed\x25\x43\x60\xb2\xbd\x74\x2c\x26\x6c\x2f\x1d\x1a\x77\xdb\x3b\xee\x1b\xe6\x7e\x7e\x9e\x67\x7b\xd9\x76\xd0\x3c\xdb\x9b\x9f\x67\xda\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x9b\x9f\x67\xdb\xde\xfc\x3c\xdb\xf6\xe6\x67\x07\xdb\x4b\xf6\x00\x67\xda\x5e\xb2\x59\x38\xd3\xf6\x92\x5d\x45\x27\xdb\x9b\x9f\x4d\x9b\x01\x67\xd8\xf6\xe6\x67\xdd\xf6\x12\xad\x53\x6c\x2f\x51\x2c\xc5\xf6\x12\xcd\x51\x6c\x2f\x51\x14\xc5\xf6\x12\x4d\x50\x6c\x2f\x19\x6a\xc5\xf6\x92\x91\x55\x6c\x2f\x19\x3a\xc5\xf6\x92\xb1\x51\x6c\x2f\x1d\x0a\xd5\xf6\x52\x61\xab\xb6\x97\x8a\x53\xb3\xbd\x44\x14\xb0\xed\x25\x12\xb1\xdb\x5e\x22\xa0\x09\xdb\x4b\x04\x66\xb2\xbd\x44\x72\x13\xb6\x97\x48\x72\xc2\xf6\x12\xc9\x9a\x6c\x2f\x11\xf1\x84\xed\x25\x22\x9f\xb0\xbd\x64\x08\x4c\xb6\x97\x8e\xc5\x84\xed\xa5\x43\xe3\x6e\x7b\x85\xcf\x2f\xb9\xdf\xcf\xdc\x5f\xed\xef\xd9\x62\xed\xe7\xee\xb2\xf6\xf3\x37\x5a\x7b\x97\xbd\xd6\x7e\xfe\x76\x6b\x3f\x7f\xc7\xb5\x77\xd9\x74\xed\xe7\xef\xbb\xf6\xf3\xb7\x5e\x7b\x97\xdd\xd7\xfe\x8e\x0d\xd8\xfe\x8e\x3d\xd8\xde\x79\x1b\xb6\xcf\x0d\xc6\xb7\xcf\x61\xe3\xdb\xe7\xba\xf1\x25\x5a\xa7\x18\x5f\xa2\x58\x8a\xf1\x25\x9a\xa3\x18\x5f\xa2\x28\x8a\xf1\x25\x9a\xa0\x18\x5f\x32\xd4\x8a\xf1\x25\x23\xab\x18\x5f\x32\x74\x8a\xf1\x25\x63\xa3\x18\x5f\x3a\x14\xaa\xf1\xa5\xc2\x56\x8d\x2f\x15\xa7\x66\x7c\x89\x28\x60\xe3\x4b\x24\x62\x37\xbe\x44\x40\x13\xc6\x97\x08\xcc\x64\x7c\x89\xe4\x26\x8c\x2f\x91\xe4\x84\xf1\x25\x92\x35\x19\x5f\x22\xe2\x09\xe3\x4b\x44\x3e\x61\x7c\xc9\x10\x98\x8c\x2f\x1d\x8b\x09\xe3\x4b\x87\xc6\x64\x7c\x97\x86\x84\x1a\xd2\x31\x19\xf9\x64\xc2\x72\x4c\xa4\x31\xe4\xb5\x18\x8e\x5a\xd0\x43\xd2\xca\x69\xc4\xae\xaa\xe1\x43\x4d\xec\x1c\xca\x80\x92\xe6\x41\xb8\xa8\xa7\x19\x29\x2f\xca\x5d\x8e\xc8\x88\xe5\x50\xa5\x2f\xdf\x91\xff\xde\x04\xaa\x26\x78\xbf\x2d\xc6\xbe\x90\x1f\x42\x77\x56\xe4\x40\x0c\xad\xa2\xb8\xd0\x00\xca\x7f\x0b\xad\xc7\xa2\xcb\xcd\x74\xe8\x46\x45\xc7\x7b\x0d\x21\x61\xe2\x90\x6f\x5c\x33\x8f\x51\xf7\x32\xa6\x1c\xb5\xad\xd8\xf7\x05\x50\x9b\x42\x85\x17\xb0\x50\x22\x8d\x67\x28\x93\x4f\xd7\x64\x35\xe6\x0d\x93\xf0\xba\x66\x5f\x76\x17\xbf\x3a\xf9\xdd\x4b\x8d\xbe\xad\xd2\xf4\x41\xbf\x49\x2c\x9e\x5c\x0b\xe2\x07\x8e\x89\xdc\x7b\x18\xf1\x48\x97\x32\xf8\xc1\x1b\x2b\xaa\xed\x88\x8b\xdd\xa7\x5c\xc8\x3f\x7f\x18\xfb\x3b\x94\x5c\x80\x9b\xce\x87\x5d\x9a\x9c\x4e\x0a\x2e\x48\x94\x43\x95\x8a\x57\x10\xe2\x58\x22\x0f\x1e\xa3\xb5\x4d\x0e\x02\x2d\x2a\x03\xb9\x25\xcf\x19\x31\x05\x21\xf4\xce\x06\x04\x75\xf8\xf1\x74\x4c\x47\x26\x86\xab\xa7\x0b\xb5\x40\x20\x21\x94\x41\x18\xd3\x4d\xba\x4b\x0f\x1a\x46\x48\x88\x42\xa5\x8e\x5d\x10\xa4\x58\x06\x8a\xf2\xb0\x3a\x6c\x0f\x07\x50\x94\xe3\x6d\x5a\xb3\x30\x15\x18\x93\x38\x35\x30\xa8\xfb\xc7\xdd\xf1\x70\x1c\x05\x4a\xef\xed\x2e\xe4\x9f\xa2\x30\x79\x09\x88\x6b\x85\x36\xc7\x83\x82\x0b\x14\x24\xaf\x52\xf1\x8a\x42\x1c\x4a\x40\x11\xee\x4e\x69\xf8\x88\x60\x11\xb2\xcb\xc7\x16\x01\x8a\x10\x46\xf1\xc9\x40\xe0\xf4\x0b\xd3\xd3\x38\x8e\x59\x79\xaa\x16\xc2\xdf\x02\x62\xfa\x13\x44\x81\x50\x8c\x24\x14\x90\xc0\x68\x79\x2a\xff\xbc\x28\x3f\x61\x39\x6d\x8e\xa7\x34\x01\xe5\x44\xae\x64\x9b\x85\x34\x56\x9b\x24\x24\x42\x40\x7d\x4b\x0e\x69\x8a\x62\x4e\x9b\x5d\xf9\x5e\xc8\x3f\x05\xdc\x43\x09\x84\xeb\x74\x42\xe8\x90\x28\xb8\x20\x51\x0d\x55\x2a\x5e\x41\x60\x63\x09\x28\xb3\xd3\x29\x3d\x6d\x61\xdd\xe2\xf7\xd6\xcd\x62\x93\x20\x4c\x92\x53\x80\x0c\x1d\xde\x25\x21\x67\x82\xde\x8e\x5f\x48\xbf\x04\xe4\xbc\x00\x44\x14\x1f\x85\x59\x49\x21\x21\xc1\xf1\x9a\x54\x2d\xb8\x68\x05\xa0\xd4\x50\xfa\xb8\x31\xcc\x48\x76\xb7\xdf\x2c\x34\x11\xc0\x24\x33\x19\x06\xec\x69\x78\x08\x0e\x5b\xce\x01\xb9\x0a\xbe\x10\x7f\x08\x98\xd9\x6f\x10\x4b\x7a\x4a\x4f\x48\xc2\x02\x89\x8b\x55\xa4\xca\xef\x8b\xfa\x1b\xd6\xb0\xc3\xe9\x78\x3a\x82\xb2\xa2\x69\x0f\xcc\xa2\x12\xea\x4d\x92\x92\x40\xa0\x2e\xa2\x23\x3a\x9e\x36\xa3\x4a\x34\x9f\x17\xc2\xdf\x92\x5e\xe1\x9f\xa0\xad\xdf\x1c\x77\xc7\x44\x44\x01\xeb\x14\x2e\x4f\xe5\x9f\x17\xe5\x27\x28\xa1\xc7\xf8\xf1\xf1\x11\x96\x10\x49\x04\x61\xd3\x25\x5e\x6d\xd6\xa4\x11\x02\xb4\xc9\x8f\x87\xc3\x61\xd0\x00\x9e\xf9\x48\xfc\x25\x60\xe6\x05\x17\x90\x94\x98\x05\x69\x12\xc0\xc4\xaf\x0c\x03\x70\x6c\x58\x5c\x7a\x4b\x22\x5c\x2e\xe7\x9b\xf5\xc4\x38\x4b\xac\x21\x8f\xc2\x3a\x5e\xa7\x71\xac\xa0\xe3\x9a\xcd\xf1\xad\x1f\xe3\x20\xde\x02\x28\x59\xe6\x2f\x19\xa5\x1c\x4a\x60\xd6\x5c\xf8\x7a\x7d\xb3\x42\x49\x5d\x21\x90\x4a\xd0\xa2\x05\x0c\x02\xcc\x1d\xb1\xc3\xa5\xcd\xc9\x98\x7c\x58\xe0\xd8\x54\x8a\x1f\x04\xc4\xb6\x50\x02\x94\x87\x86\x16\x0f\xf7\xb0\x0f\x39\x6e\x6f\x6d\xe3\xe5\x23\xfd\x04\x4f\x09\x35\xa8\xad\xab\xb2\xcd\xbe\xe0\x40\xd1\x7c\x11\x70\x38\x5f\xdf\xd3\x1d\xc7\xe1\x36\x1d\x2f\xa7\xa7\xee\xb1\xef\xea\xaa\xeb\xf1\xf2\x0a\xa1\xff\xc1\x28\x59\x80\xd3\xed\x66\x6b\xe4\xb4\xb0\x5c\x59\xfc\x0a\x9c\x16\xe9\x2c\x4e\x1f\x1f\x43\x23\xa7\xf9\xf9\x37\xe5\x34\x3f\xcf\xe2\x34\x0c\x1f\x1f\x8d\xac\xf6\xf9\x6f\xca\x6a\x9f\x5b\x58\xd5\xc0\x7f\x4b\x56\xcc\x7c\x2c\x4f\x55\x53\xf8\xc7\xaa\xec\x9a\xca\x22\x0d\x76\xf3\xe4\x98\xe4\xc7\x6f\xc3\x65\x8c\x0a\xef\x3b\x8f\x6e\x13\x79\xdf\x79\x51\xdd\x3f\x3c\x8d\xbb\x2d\xb4\x98\x6d\x22\xdd\x97\x62\xc5\x68\x47\x55\x43\x90\x67\xf5\x7e\xbc\xe2\xdf\x03\x97\xa4\x8e\x28\x5d\xa7\x09\x78\x49\x6a\xcc\x23\xd2\x24\x25\x3b\x43\x2e\x5a\x4a\x6f\x19\xc6\xad\x87\x92\x16\xaf\xef\xfd\xea\xda\x2d\xc6\x14\xe6\x5a\xdd\xd3\xd7\x40\x32\x28\x70\xdd\xa0\x13\x6a\x5a\xbf\x41\xe9\xf5\x88\x52\xbf\xa8\xd8\x09\x77\xfc\xf3\xe1\x26\x8f\x1a\xd0\x0d\x9a\x00\x45\xfe\xfd\x2a\x0f\xf6\x7e\xef\x17\xad\x8f\xfa\x3a\x29\x53\xdd\x66\xf3\xfc\x33\xb0\xa2\xb0\x5c\x05\x4e\xa3\x25\xc7\x60\xc1\x21\x3d\x9d\x86\x8c\x06\xd8\xc9\xf6\x63\x36\x3a\xfc\x3f\x7a\xcf\x8b\xb9\xf1\x30\x5a\x2d\xa2\x38\x66\x49\xe9\x14\xee\x87\x6b\xd0\xf5\xb5\xf3\xeb\x3c\x39\xa2\x0b\xc9\x6d\x22\xa7\xa2\x7b\xaa\xea\xe4\x98\x75\x2f\xe4\x22\x9b\xd2\xfd\xea\xd7\xfb\xda\xb5\xf7\x13\x9d\xdf\x64\xcc\x8d\x27\x16\xff\xd2\xa0\x24\xad\xca\xfc\xe5\x13\xb4\xa8\xa5\xab\x8d\x11\x23\x4d\xb7\x00\x0c\x21\xed\xcd\x97\x24\xbf\x22\x97\xd1\x94\x59\x23\xb7\xb6\x65\xb6\x7c\x92\x93\xcd\x68\x47\xe8\x07\x1a\xd2\x80\xa6\xce\x10\x33\x76\x10\xe3\xc2\xcd\xc7\x77\x5e\x28\x58\x15\xbe\x5d\x0c\x81\x28\x89\x74\x26\x12\x58\x84\xcb\x58\x65\x02\x7b\x2c\x9d\x8f\x49\x2e\x44\x00\xfd\x5e\xf4\x14\xcd\xb6\x00\x68\x46\x93\x44\x23\x98\xea\x72\xb7\x85\xa9\x4a\x63\x53\xe7\x49\x56\x76\xa8\xef\xcc\x76\x5e\xca\xa0\xb2\x82\x53\xa8\xb0\x62\x55\xee\xf6\x6c\x59\x53\x06\xc6\xf8\xee\xc7\xf0\x9e\x92\x17\x98\xba\x23\x17\xe7\xe7\x85\x13\x9c\x30\x02\xa6\xeb\x6f\x2a\x3c\xe8\x05\x41\x27\x48\xc7\x49\x4d\x12\x61\x18\x26\xf0\x6e\xaa\xda\x29\x90\x78\x08\xd1\x26\xa4\xe1\x9b\xd1\x53\x94\xc9\x97\x12\xc0\x58\xfc\x52\x5c\xf3\x2e\xab\x73\xf4\x69\x01\xd5\x62\x12\x9f\x86\xfc\x32\xb2\x73\x92\xae\x3d\x93\x1a\x92\x94\x06\x4a\xa0\x45\xab\x01\x05\x15\xee\xdd\x0f\xd7\x9b\x31\xe8\xbc\x7b\x95\xda\xb5\x4a\x72\xf5\x8b\x23\x62\x57\x25\x87\x9f\xb6\x8b\x92\xda\x2d\xb2\x11\x13\x49\xae\x02\x5c\x49\x93\x3b\x24\x5f\x41\x93\xfa\x44\x10\x50\xff\x02\xbc\x2e\x26\x4a\x62\xa5\x26\x03\xf3\x8d\x98\x06\x27\xf2\x1f\x62\x15\x35\xc1\xca\xed\x77\xad\x5e\x4d\x54\x26\x23\xc7\x0a\xa5\x5e\x32\x27\x43\x41\x3e\xfa\x91\xb4\x00\x2d\x4f\xbb\xaf\xa4\x1d\x90\x93\x03\x6c\x01\xce\x49\x3e\x38\x8b\x58\xda\x2e\xe9\xb2\xe3\x13\x94\xaa\x8a\x61\x5d\x85\x11\x90\x33\x6d\xf9\x25\xc9\xb3\xd4\x3f\x21\x94\x62\xbb\x24\xe5\xf7\x78\xd2\xbf\xa2\x8e\x7a\x07\x27\x0e\xa0\x99\x3d\x39\xd6\xae\xaa\xf0\x5c\x01\x06\x8f\x7c\x36\xc5\x78\x7f\xf5\x49\xc2\xaf\x7d\xfc\x24\x51\x36\xa4\x9e\x91\x8c\x89\xc8\x52\xe8\x66\x5d\x6c\x31\x34\x59\x67\xad\x83\x45\xb8\xd9\x2e\x36\x8f\x8b\xe5\xe3\x83\x29\x9d\x80\x30\xa7\x97\x19\x59\x32\x64\xe9\x62\xf9\x9c\xb0\x3f\x93\x0e\xa5\x9e\xbc\xc0\x20\xe5\xca\xd6\x03\x4b\x82\x2a\x4f\x27\x20\xaa\x78\x10\x59\xcd\x8a\xe4\x8c\xf6\xd7\x26\xff\xf6\x5d\x9a\x74\xc9\x9e\xfc\xfe\xd8\x7e\x39\x7f\xd7\x17\xf9\xd3\xf1\x92\x34\x2d\xea\xbe\xbf\x76\x27\x7f\xb7\xf8\xb0\xfa\x43\xfb\xe5\xec\xf5\x45\x5e\xb6\xdf\x7f\x73\xe9\xba\x7a\xff\xf1\xe3\xf3\xf3\xf3\xf2\x79\xb5\xac\x9a\xf3\xc7\x28\x08\x02\xdc\xf4\x1b\xef\x4b\x86\x9e\xff\xb9\xea\xbf\xff\x86\x1c\x46\xf1\x76\xdf\x7c\x58\xfd\xf1\xc3\xea\x0f\x75\xd2\x5d\xbc\x53\x96\xe7\xdf\x7f\xf3\x21\x5a\x51\x7e\xbf\xf1\xd2\xef\xbf\xf9\x29\x5a\xae\xbc\xcd\x72\xbb\xfa\x71\xb9\xf1\xd6\xcb\x78\x75\xf4\x97\x6b\x3f\x5c\x06\xeb\xe5\x7a\xe3\x87\xcb\xb5\x17\x2e\x43\x7f\xb9\xcb\xc3\x65\xe8\xe1\x9f\xab\xe5\xda\x5f\x2d\x77\xc7\xe5\xc6\x5f\x6e\x56\x5e\x88\xff\x8d\xb6\x5e\xb8\x8c\x96\xdb\xdc\x5f\x7b\xeb\xe5\x06\xa3\x58\x2d\x63\x7f\xb9\x23\xa8\xc2\x65\xf8\xeb\x37\x1f\x29\x1f\x98\xc9\x0f\xab\x3f\xbe\x93\x24\xd1\xa0\x1a\x25\xdd\xbe\xac\xd8\x5f\x62\xdd\xa0\x6f\x58\x79\xbc\x61\xa5\x44\x85\x1a\xee\x74\xb1\x12\xa5\xa1\x70\x1c\x8c\xba\xf6\x07\x0f\x2c\x35\x28\x01\xcb\x8f\x37\xad\x0a\x2c\x68\x00\x15\xc2\x16\x06\x08\xea\xa9\x85\x01\x03\x17\xff\xa1\xcc\xe9\x85\x1d\x8c\x4d\x52\x07\xae\x75\xc4\xce\x4d\xb8\x25\x90\x73\xa5\x2a\xed\x41\xaf\x49\xf1\xc0\x1e\x75\xe8\xcb\x6d\xde\x2c\x1a\xf4\xa3\xab\x6a\x93\x7a\x78\x34\x31\xb4\xa1\xf6\x75\x79\xbc\xb6\x5d\x55\xf8\x6c\x0d\x60\x34\x03\x12\xd8\x4c\x3b\xf0\xed\x8a\x2e\x69\xa8\xe1\x79\xf8\xb8\xc6\xcb\x1c\xbd\x3b\xbf\xad\x39\x58\x7b\x31\x68\x0e\xe8\x0e\x2c\x33\x07\x5e\xf0\x63\xe0\x45\x97\xf5\xaf\x45\xe0\xc5\x3f\x06\xde\xea\xb2\xd6\x67\xaf\x37\xcc\x55\x26\x5b\xb6\x6b\x42\x5d\xe2\xc7\x5d\xdd\x7b\x61\x50\xf7\x8b\xff\xbf\x5a\x37\xf2\x92\x9f\x20\x24\x2a\x17\x26\x2b\x36\xee\x1f\x67\x19\x29\x58\x47\x0d\x56\x0a\xd0\xd4\xaf\x65\xa6\x60\x3e\x74\x73\x62\x87\x1b\x0c\x95\x16\x78\x3b\x9a\x3e\x18\xd6\x64\xff\x00\x79\x4c\x1a\x40\x4b\x1b\x17\x33\x4b\x18\xbc\xc3\xd6\x02\xed\x0c\x06\x57\x5d\x40\x0a\xd2\x50\x57\xbb\x06\x8a\xc2\x4a\xda\xd0\xf0\xa6\xac\x05\x2d\x34\xe1\xd1\xb2\x80\xda\xa5\xa8\xf3\xe6\x24\x44\x53\x33\x83\x0c\xd9\x20\x73\xd9\xab\x8c\x2a\xd5\xb0\x2c\x21\x1c\x7b\x0b\x02\x55\xa6\x77\xf0\xc0\x52\x77\xbd\x99\x15\xe5\xd9\x94\x79\x8c\x19\x66\xbc\x1d\x7c\x62\x86\x82\x9c\xbb\x4d\x54\x4b\xd3\x7b\x06\x7f\x4f\x54\x09\x7d\xb5\x01\x70\xc2\xa7\x0c\xc4\x6a\x7d\x44\xe0\x9e\x25\xad\x98\xea\x01\xb1\xf8\x5f\x8d\xff\x69\x6c\xb7\x3b\xfc\x88\x8d\x75\x9a\x78\x8f\xc9\xed\x61\xa2\x23\xac\x92\x64\xdc\x34\x4c\x21\x52\x37\x77\x0e\xdf\xc1\x0a\x8c\x7b\xe4\x6c\x6f\x62\xcb\x3e\x0f\xc1\xae\x19\x26\xa1\x05\x76\x62\x06\xea\x6c\xba\x4d\x3f\x53\x3b\xfb\xdc\x03\xf8\x54\x14\x6d\x7a\xd0\x54\xca\x46\x04\x6f\x5f\xfc\x64\xe5\xd7\xdd\x62\xa1\x4f\xa1\x8c\x78\xff\xf3\x6d\xb2\x44\x51\xb0\x88\x57\xf3\x36\x59\x58\x6f\xed\x21\x27\x03\x52\xc6\x8c\xbd\x1d\xf3\xf7\xb0\xd1\x32\x84\x1b\x94\x27\x21\x36\xf1\x23\xcf\x8f\xbc\xad\xb7\x15\xa3\x93\xb6\x6b\xaa\xcf\x48\x6a\x80\xe3\x93\xc0\x0b\xf2\x95\xb7\x2a\x02\x7f\x85\x63\x2d\x1e\x48\x1c\xb3\xe6\x98\x23\xaf\xf9\xfe\x9b\x65\xac\x94\x1d\xfb\xef\xbf\x59\x7d\x03\x57\xbd\x98\xab\x68\x2b\x08\xe2\x3f\xc3\x96\x0c\xd3\x06\x97\x4d\x19\x09\x14\x56\x1f\xdb\x94\x17\x14\x1a\xdc\x96\x61\xe8\xff\x43\xb3\x05\xfa\xd6\x8c\x06\xea\xb4\x3d\x63\x21\x30\xab\xd9\x1b\xb6\x69\xf8\x04\x35\x6e\xd4\xf0\xc9\xf9\x77\xb0\x55\x63\x32\x26\x72\xf8\x36\xd7\x9a\xfc\xd7\x76\xcd\x7f\xd9\x48\xd0\x46\xfe\x15\x36\x76\xec\xb6\x0e\xd4\xeb\xaf\x65\xec\x4c\xbc\x40\xc6\x68\x1a\xd6\xbe\xc9\xe3\x68\x48\xcd\xf0\x6e\x9b\x3d\xee\xe6\x74\xa2\x9d\xfb\xa6\xcf\x7d\x16\xdc\xd0\x76\xc6\xe6\xcf\xd0\x76\xfe\xf6\x8f\xb1\xe9\x4d\x59\xa9\x5a\xe9\x9a\x46\x72\x02\xdc\x79\x23\x68\xae\x60\x6d\x4d\x67\xee\x09\x0c\xed\xef\xdf\x12\xb2\xa2\x50\xe5\x7c\x17\x1f\xb3\xa2\x7a\x17\x4c\xa0\x45\x71\x60\xce\x68\x2d\xa6\x9b\xcc\xda\x20\x9a\x3d\xb9\x27\x9a\xdf\xa7\x14\x5f\x71\xab\x68\x0e\x46\xf5\x76\xce\x7a\x13\x6c\x52\xe8\x90\x3e\xa9\x98\xee\xc5\xd7\xda\x2e\x72\xc7\x67\xdd\x30\x32\xf8\x26\x3b\xfb\x6f\xdf\x32\x52\xa7\xc5\xdc\x4d\xa3\xfb\xd9\x99\xdc\xdd\x30\xb3\x66\x9f\xa7\x86\x0e\x1a\x27\xe9\x04\xbc\xfb\x06\xd2\xec\xe9\x69\x6b\x3b\x67\x23\x09\x56\xc1\x59\x5b\x49\x53\x28\xbe\x52\x64\xa9\x1c\x35\x1a\x8f\x7b\x91\xb7\xa1\x9a\xea\xd9\x23\x47\xbe\xf4\x63\x47\x52\x7b\xd1\xe1\x09\xf9\x12\x2c\x29\x73\xc5\xc6\xb4\x3f\x7f\xb9\xb6\x5d\x76\x7a\xf1\xf9\x73\x20\x66\x32\xf4\xf9\x35\x00\x85\xd4\x0b\xe0\xa4\x14\x7c\xe6\x4a\xc7\xad\xe4\xc7\xd1\xe5\x01\x76\x5e\x39\xec\x0f\xbc\x8e\x4e\xb0\xc1\xcf\xf3\x99\x11\x02\xe7\x4b\x95\x57\x47\xc4\x96\xd2\x22\x52\x96\x91\xf8\x82\xf6\x6d\x64\xc8\x3c\x90\x53\xe2\x84\x47\x4c\xec\x2b\x78\xf2\x73\xfa\x00\xda\xf8\x40\x26\x96\x7c\x7b\x69\xb2\xf2\xf3\x78\x06\x0d\x3a\x90\x06\x1e\x47\x83\x04\xc3\x47\xc9\xb9\x3b\x56\x34\x86\xb3\x7c\xaf\xcb\x43\x67\x78\x26\x5f\xbd\xa9\x61\x7c\xfc\x96\x31\x05\x6a\xcb\x70\xc3\xe2\xda\xa2\x86\x07\x0c\x64\x1b\x96\x1c\xbe\x07\x4a\x5b\xbd\x50\x2b\x98\x3a\x4b\x3c\xde\xfe\x10\xcf\x13\xbb\x5d\x50\x99\x3a\x9a\x6b\xba\x37\x62\xba\xeb\xa1\xb0\x0a\xdd\x06\xf9\x0a\x17\x4e\xfe\xfa\xd4\x9d\x6f\xaa\x60\x05\x73\xbf\xa0\x72\xe8\x4a\x30\x89\x08\xf8\x96\x2a\x86\x5e\xb2\xe0\x1f\x37\x54\x5e\x4f\x9d\x75\xb7\x04\xa3\x1a\x6f\x5a\x60\x6c\xfc\xd7\x8d\x5f\xa3\x58\x6e\xe2\xd7\x44\x06\xe4\xaf\x0f\x0e\xc0\x1e\x01\xb8\xb1\x77\xe5\x7c\xf4\x05\x95\x5d\x3b\x72\xcb\xf3\x7a\xd8\xef\x79\xb2\x17\x71\x65\xbf\x49\x0b\x25\x2c\x0e\x77\x24\xdf\x07\xc1\xe6\x31\x7d\xd4\x70\x6d\xa2\xe3\x51\xc2\x25\xc8\x71\x40\xcf\xf7\x4a\xcc\x52\x5c\xed\x16\xe1\x9a\x89\x91\x49\x71\x40\x28\x49\x73\xc0\x39\x48\xf5\xeb\x48\x40\x7e\x88\x93\xfc\x1c\x08\x3f\x2c\xf9\x7d\x65\xe7\x16\x7b\xde\xa2\xbd\x54\xcf\x3f\xc8\xdd\x69\xaa\x3a\xad\x9e\xb1\x55\x3f\x9f\x73\x34\x29\xf5\xe8\x78\xd4\xf8\x8f\x8f\x87\x3b\xf8\xdf\x03\x43\xe3\xd2\x0b\xde\x6e\xb2\x2f\x77\x0e\xf4\x90\x54\xc5\x2e\x0b\x76\xbd\x49\x96\xc5\xf0\xd6\x9a\x88\xc7\x45\x9f\xe3\x64\x13\x6d\x76\x0a\xb6\x78\x1d\x1f\x36\x91\x82\x4d\xd4\xe8\x91\xc4\x74\x57\xc3\x55\xb0\x08\x49\x7f\xa1\xbe\x2a\x6a\x3d\x22\x76\x53\xec\x19\xc2\x70\x57\x6d\xc7\x36\x80\x72\x0b\xdd\x9a\xa3\xde\x54\xde\xea\x05\x79\x14\xc7\xf1\xe1\x9e\x5e\xec\xc1\x91\xba\x4f\xc5\x8d\x3d\xba\x7b\xe4\x69\xee\x1b\xbb\x40\x86\x2f\xe4\xd0\xa9\x04\x01\x8b\x8b\x86\x47\xe1\x6e\xb7\x52\x35\x3c\x44\x5b\xb4\x5a\x4b\xb8\x24\xfd\x66\xe8\xa7\xfb\xb8\x8d\x16\xe1\x2e\x58\x3c\x6e\xb5\x1e\xaa\x9a\xcd\x50\xba\xe9\xb5\xb3\x00\x66\x68\xb5\x4b\x0b\x48\xa7\x79\x77\xe6\x68\x34\x95\xaf\x2a\xf4\xe3\x76\xbd\x0a\xe6\xf3\xbf\x07\x46\xe6\x4e\x6d\x86\xfb\x72\xdf\x38\x67\xe5\xa9\x9a\x90\xc2\x36\x89\x0e\x9a\xea\x91\xc2\x11\x85\x8b\x0e\x87\xab\xdd\xfa\x71\xa3\x22\x0a\xb7\xc9\xee\x30\x22\x12\x15\x98\x20\x9e\xee\x55\xbc\x5b\x84\xdb\xcd\x22\x7c\x8c\xe5\x6e\x29\xba\x4b\xb0\xb9\x29\xae\x5b\x97\xdd\xb5\x76\x1a\x1c\x50\x59\xda\x85\x59\xfa\x4a\x64\xa9\xb2\x1d\x6c\x83\xed\x69\x26\xdb\x7b\x75\x14\xee\xd3\x54\xa8\x0b\x77\x0e\x28\xcb\x08\x35\x95\x46\xf0\xfd\xe9\x74\x0c\x83\xed\x93\x9a\xb0\x0a\x17\x4a\x88\xdc\xb2\x12\xbe\x47\x41\xb2\x0b\xd4\xac\x2f\xe9\xea\x11\x05\x81\x84\x4e\x54\x5b\x4e\x61\xba\xa3\x51\x14\x2d\xc2\x2d\x8e\x3a\xb4\x8e\x2a\xca\xcb\x71\xaa\xfa\xfb\x76\x39\xb8\x6b\xb1\x53\x0b\x40\x91\x87\x1e\xc1\xba\x6c\xec\x02\x15\xb3\xd2\x85\xe3\xe6\x31\x56\x64\x3f\x5b\xa3\xe7\x74\x44\x57\x6a\x43\x77\xee\x1c\x6e\x9a\xb5\xcb\x3e\xaf\x87\xdd\x51\x68\x97\x7a\x44\xe2\x62\x83\x8f\xbb\x68\xb5\x5a\x29\xa8\x0e\x69\x14\x72\x97\x46\x51\x89\xea\xcc\x90\xbb\x74\x2f\x5e\xec\x56\x92\x77\x61\xd8\x64\x5d\x66\x08\xdd\x4c\xb1\x6b\xdf\xdd\xd5\xd8\xa5\x01\xa0\xc5\xbc\x2b\x73\x0c\x32\x15\xac\x2a\xed\x28\x3c\x45\xe9\x6c\xe6\xf7\xfa\x90\xdc\xa7\xbf\x70\x47\xee\x1b\x5f\x92\xea\x6a\xda\x16\xed\x4e\x8f\xa7\x44\xb5\x45\xa4\x50\x40\xe3\x6a\x91\x23\xb4\x41\x2a\xb2\x34\x41\x01\x8a\x05\x64\xa2\x02\x53\xec\x0e\xfd\x0b\x37\x8b\x28\xdc\x2e\xa2\xf0\x51\xe9\xa1\xa2\xc0\x14\xa1\xbb\x29\x76\xeb\xbe\xbb\x06\x3b\xc0\x03\x0a\xcc\x7a\x32\xd7\x08\x13\xc9\x6a\x0e\x30\x7d\x4c\x4f\x73\x99\xdf\x6b\x63\x72\x9f\x02\x83\x1d\xb9\x77\x7c\x5d\x13\xac\x3d\xa9\x77\x0b\x68\xd6\x35\x8e\xc2\x29\x86\x5b\x45\xdb\x48\x5b\x9e\xa5\x51\x18\xad\x47\x44\xb2\xe5\x6d\x3e\x3b\xf4\x6b\x17\x2d\x76\xbb\xc5\xe3\x4a\xee\x94\x66\x74\x9b\xcf\x8e\x26\xd7\xad\xc3\x73\x0c\xee\x14\x38\x68\x6e\x71\x17\x66\xad\x7e\x89\x24\xb5\x45\x7b\x98\x84\xe9\x4c\xb6\xf7\xea\x18\xdc\x6b\x68\xf5\x2e\xdc\x35\x9c\x6c\xf3\x5a\xdd\x27\x9e\xdc\x0f\x55\xda\xb9\xed\x0c\xcf\xc3\x29\xaa\xab\x4a\x6e\xba\xab\xc2\x7e\xbb\xa1\xaf\x8a\x16\xab\x24\x54\x85\xe6\xec\x1b\xbe\x05\xc1\x62\x71\xd7\xe4\x59\x2d\x01\xa5\xd6\x3a\x37\x6f\xfb\x78\xe6\x70\xcf\x55\xf5\x7b\x7a\xa7\x6b\xfd\x44\x1f\xdf\xa6\x15\xda\xee\xf2\xe4\xd6\xa9\xd6\xd2\x65\x16\xcc\xc7\x0a\xcd\x83\x59\xfb\xcb\xc1\x6e\x11\x86\xdb\x45\x18\xd9\x7a\x6d\x98\x0d\xe6\xfd\x66\xde\x11\xa7\xf9\x70\xcf\x2e\xf3\xcc\xb6\x96\x39\x71\xe7\xae\xf3\x1d\x0a\x70\xef\xbc\x78\xeb\x2e\xf4\x64\x4f\xdf\xac\x27\xf2\xae\xf4\xe4\xf6\xab\xd2\xce\x69\x0d\x33\x13\x27\x38\x2f\x9c\xf7\xa5\x85\x0b\x64\x86\xbe\x9a\x66\x84\x61\x9f\x9a\xb3\xef\x36\x1f\x66\xef\x4e\xcf\x6a\x69\x9b\x0b\xf7\xec\x56\xcf\x1e\xee\xbb\xe7\xc1\x9b\x76\xaf\x27\xfa\xf8\x36\xad\x10\x77\xb3\x27\x37\x71\xc5\x46\x4e\xfb\xd7\x73\x10\x42\x8a\xef\xb8\x9f\x1d\xad\x16\xe1\x26\x5a\x84\xbb\x35\xdc\x41\x83\xce\x83\xfb\xdb\x9c\x67\x27\x85\x9f\xb9\xab\xed\xde\xcc\xa2\xea\x77\xec\x72\xcf\x1a\xd7\x7b\x95\xfc\x0d\xbb\xde\xb6\xae\xbd\x71\xf8\x95\x5d\xf0\xc9\x4d\x5e\xa5\x9d\xe3\x16\xcb\x5c\xb4\x90\xae\xcf\xd8\x04\x8f\xe3\x45\xf8\xb8\x5a\x6c\x8d\xdd\x35\x28\xbc\x69\x4f\x9c\xb3\xef\xa4\xf3\xf3\xb7\xc1\x67\xb5\xb4\x68\xfe\xbd\xdb\xe2\xb3\x07\xfd\xde\x29\xf0\xb6\x6d\xf2\x89\x6e\xbe\x4d\x31\xe4\x5d\xf3\xc9\x3d\x62\xb9\x99\x8b\xad\x9f\x89\x12\x9a\x01\x33\xf6\xcd\x87\x93\xcd\x70\x3f\x0d\xfa\x6f\xd8\x47\xe7\xac\x3b\xa9\xff\xec\xdd\xf3\x39\x0d\x2d\xca\x7f\xcf\x6e\xfa\xdc\x61\xbe\x57\xef\xdf\xb4\xbb\x6e\xef\xe0\xdb\xb4\x41\xda\x6d\x9f\xdc\x55\x96\x5a\xb9\x5a\xfe\x59\x48\x21\xad\x77\xde\x6c\x5f\xef\x16\xd1\xfa\x71\x11\xc5\x81\xa1\xa3\x06\xad\x87\x37\xdf\x39\xe3\x4e\x4a\x3f\x77\xbf\x7d\x46\x3b\x8b\xca\xdf\xb7\xff\x3e\x73\x98\xef\xd5\xf9\xb7\xec\xc7\x5b\x3b\xf8\x56\x55\x10\xf7\xe7\x27\x37\xa6\xc5\x46\x2e\x56\x7e\x16\x42\xd8\xc6\x3b\xed\xd0\xc7\xd1\x22\xde\x2d\x36\xc0\x82\x0e\xd8\xa9\x97\x70\xab\x7a\xce\x39\x76\x34\xee\xb3\xf6\xe9\xdd\x9b\x59\x0d\xfb\xdc\x7d\xfb\x79\xa3\x7a\xbf\x51\xbf\x7b\x1f\xdf\xd6\xb5\xbb\x06\x3f\xcf\xca\xcf\x37\xc3\x55\x0a\xb6\xcb\x6b\x3c\xda\x4e\x1a\xcb\xba\x1d\x04\xf1\xe6\xb0\xd2\x9a\x5c\xcb\x14\x35\x98\xf1\xb1\x9d\xfc\x55\xb4\xe4\xaa\x6b\x6c\x29\x1e\x96\x97\x39\xd0\xbe\x88\x96\xba\xae\xb2\xad\x39\xe3\xb1\x77\x72\x95\x87\x3c\xdd\x72\xe8\x4a\x86\xe7\x7c\xfb\x6a\x19\xcb\x05\x1a\x6d\x21\xd0\x18\x53\xbc\x7f\x95\x8c\xec\x18\x25\xb9\x1c\x63\x79\xdf\x60\x80\xf9\x4e\x00\x17\xf3\x09\x91\x4c\x3f\xe4\x1a\xd1\x2f\xdd\x4b\x8d\xbe\x3f\x5c\xbb\xae\x2a\x3f\x8d\xd0\x0b\xa1\xb2\x41\x2d\xea\x0c\x75\xed\xf5\x50\x64\x62\xa5\x78\x9f\x6d\x79\x4a\x52\x04\xdd\xbb\x60\x97\x19\xe8\x7d\x0e\xdc\xeb\xa4\x79\xb2\x57\xbb\xbf\x49\x62\x20\x69\x7a\x8b\x24\x49\x11\x9d\x97\x78\xfe\x3d\x0c\xd7\x2c\x02\xf2\x56\x42\x9e\xd4\xad\x54\x2d\x26\x71\x1a\x20\x70\x80\xac\x5f\xc6\x62\xe3\x18\x0c\x0f\xe7\xec\x2f\x59\x9a\xa2\x12\xba\xb7\x43\x61\xbd\xe5\x8a\x5d\x6f\x79\xb2\xd4\x39\x4b\x42\xe0\xce\x5d\x1e\xdc\xdc\x2c\xc8\x5f\x39\x3a\x75\xf4\xaf\x86\x3e\xde\x87\xff\xbc\xd6\x7a\x6f\x5f\x35\x13\xfc\x7c\xc9\x3a\xe4\xb7\x75\x72\xc4\x02\xa4\xb7\x00\x55\x5b\x96\x9c\x3a\xd4\xc0\x17\xbf\xc4\xbb\x69\xcb\x28\x8e\xf5\x97\xa0\x59\x29\xbf\x7e\xf6\xee\x9d\xf8\x2e\xf4\x72\x85\x0a\x7a\xfb\x6a\x98\x44\x2c\x15\x3b\x2f\x87\x5e\x79\x18\x5e\x91\x60\xbf\x29\x75\xb0\x89\xde\x19\x54\xd4\xdd\x0b\xeb\x92\x72\xb3\x6e\x00\x2d\x50\x79\xb5\x65\x0b\x63\x39\xe9\x79\xd2\xb0\x30\x08\x02\x39\x6f\xd8\x29\xaf\x92\x6e\x8f\xc1\x9e\xc6\x4b\xa2\x61\x20\x3c\x90\xc1\xec\x18\xbf\xf1\xb7\x5f\xd2\xdc\xf3\xd8\x49\xa8\xb7\xcc\xe4\xa5\xa0\x70\x99\x8e\xe0\xcf\xb3\xb6\xf3\xdb\xee\x25\x47\x86\xfb\x6e\xf3\x9f\x41\x12\x9f\xc5\x0b\x63\x53\xfe\x31\x49\x5a\x44\x86\xb7\x66\x78\xbd\xe1\x09\x94\x29\x1d\xdd\x1b\x7f\x41\x83\xc0\x90\xcb\x9a\xe6\x1b\xb5\x72\xfb\xb6\x70\x24\xd4\x16\x46\x5a\x00\xb1\xed\x66\x07\x10\x2b\x52\x47\x62\x45\x3a\x87\xd8\xe3\x63\x04\x10\xcb\xcf\x8e\xc4\xf2\xf3\x1c\x62\x61\x14\x04\x00\xb5\x3e\x77\xa4\xd6\xe7\x66\x6a\xcc\xca\x78\xca\xbc\xc1\xb3\x84\x60\xe4\xaf\x75\x28\x99\xfb\x02\xe5\xc2\x32\xd3\x7c\x00\xdd\x6f\x6e\x7e\x82\x3b\xac\x8e\x6e\xb2\x26\xcd\x0f\xd4\xa9\x09\x33\xc4\xf2\x49\xe9\x92\x0d\x9e\xd4\x31\x33\xca\x97\xf2\x25\x4a\x57\xc5\xfa\x57\xb4\xef\x90\x44\xb9\x4e\x99\x04\x0c\xb5\x51\x84\x6d\xed\xd7\x4c\x19\x4b\xd2\x50\x7a\xc9\x9a\xe0\xe6\xb6\x51\x19\xbd\x03\x19\x1f\xcb\xd5\x6e\x71\x58\x14\xac\xbf\xcd\xa8\xc8\x4b\x22\x33\x59\x96\x43\xc4\x46\x77\xb8\x9d\xfe\x5b\xa8\x83\x3e\xbf\xac\x7a\x61\xeb\xca\xc4\xf8\x5b\xfb\x0f\x8f\xff\x30\xea\xbf\xf4\xf4\x3d\xb7\x02\x95\xdd\xff\xf9\x9e\x72\xf8\x69\x61\x83\xc1\xd4\xec\x10\xa4\xff\x76\x90\xae\xaa\x3f\x89\x46\x9b\x89\x86\x26\x3c\x18\xda\xa5\xd9\x97\x2c\x45\xcd\x6d\x58\xda\xf2\x35\x06\x5b\x72\xa8\x2b\x5d\x61\x84\x84\xb7\x10\xe9\xbb\x70\x02\xda\xac\x43\x96\x17\x50\x95\xd8\x29\xa4\xc1\xd3\x31\x47\x49\xb3\x3f\x54\xdd\xc5\x3d\x47\x00\x7f\x89\x4d\x5f\x9a\x4e\x5e\xe6\x0f\x14\x76\x79\xd0\x2e\x17\x4a\x51\x72\xb8\x09\x77\xe1\x01\x0c\xac\x8d\xdb\x6e\x0a\x95\x61\xb7\x44\x26\x43\x4b\xc5\x4d\x0e\x47\x22\xfc\xf0\x96\x4c\x64\x8c\xac\x65\x32\xee\xe1\xb5\x65\x7b\x48\xd2\x39\x12\x44\xa9\x19\x61\x06\x88\x0b\x4a\x52\xc1\x30\x49\x6f\x54\xf1\xe8\x7c\x09\x3e\xfa\xa6\x47\xd2\x32\xcb\xd6\x58\x04\xf7\x15\x7a\xee\xcb\xa0\x77\xa2\x72\x09\x21\xff\x42\x88\xfe\xf9\x14\xb7\x3c\xc0\x25\xbe\x51\x65\xc8\x70\xa2\xe3\x13\xf6\x14\x48\x05\xf9\x6d\x48\x03\xb2\x0f\xbd\xd0\xa3\xd3\xd7\x80\x48\xda\x8a\x03\xea\xf7\x53\xf5\xc2\xde\x0e\x54\xcd\x9e\xd8\x96\xb9\xd5\x89\x1a\x68\xc1\x24\x04\xcc\xb7\x21\x48\xa2\x3d\xec\xaa\x2a\x3f\x24\x8d\xf5\x25\x36\x35\x65\x09\xcd\x97\xd2\x25\x4d\x27\xe1\x30\xa7\x7e\x91\x19\xa1\x7f\xd2\x4d\xbe\x53\xd6\xb4\x9d\x7f\xbc\x64\x79\xfa\xa0\x31\xac\x41\xdc\xe4\x07\xd3\xea\xde\x86\x3a\x4f\x86\x76\xa0\x06\x68\x50\x6c\x9f\x51\xf6\x3f\x0f\xb7\xd1\x1a\x53\x8f\xc8\xe3\x2e\x65\x9d\xa4\x54\xba\x76\xda\xc2\x9a\xd4\x73\x81\x0b\xdc\x7b\x13\x13\x52\x9d\x16\x6c\xfb\x6d\x9d\x67\x9d\x92\xcf\x76\x19\x6f\x22\xe9\xa9\x48\xba\x8c\x61\xa5\x06\x1c\xd4\x8b\x2f\x2c\xeb\x36\x1d\x0e\x58\x76\x8b\x40\xce\x4b\x02\xd6\x88\x2d\x0c\xa4\x35\x50\x00\xec\x26\x7e\x07\xb7\xe7\x9b\x8c\x86\x6a\x55\x48\xca\x73\x9a\x6c\xd9\xcb\xde\xbd\xd3\x76\x49\xad\x34\xf3\xb3\x23\x4d\x88\xa4\x46\x71\xb0\x9a\x64\x56\xa6\x59\x83\x8e\x3c\xab\xcc\xb5\x28\xa5\x84\x4a\xe3\xbc\x35\x66\x21\x9a\xb6\x9e\x72\x85\x34\xd9\xc7\x4d\x54\x23\xa4\x75\xd6\x2b\x96\xd0\x38\xfd\xf1\xc2\x48\x99\xfd\x66\x5a\x16\x33\x00\xd1\x73\xb6\x07\xe0\xac\xb7\xcf\xc6\x99\x92\x71\x61\x77\x96\x8d\xd0\x4d\x98\xc8\x13\xed\x9f\x46\x54\x28\x16\xdd\xa7\x96\xe4\x6c\xaa\x85\x27\xec\x7e\x93\x74\x5c\x87\xaa\xff\x34\x4d\x48\x6c\x86\xb9\xae\x4c\x6d\xe6\xe0\xd7\x91\x02\xbb\x8b\x64\x5f\x0e\xcf\x26\xb6\xf5\x16\x3c\xc0\x9f\x48\x44\xa7\x67\x5e\xb9\x40\x7e\x55\x9c\x9b\x6d\xd7\xa0\xee\x78\x91\x3e\x47\x08\x98\x7f\x10\x53\xf3\x2d\xc0\x1a\x9e\x8c\x4d\xaa\x13\x53\xbc\x59\xaa\x84\xec\x6f\x13\xeb\x22\xce\xe0\x07\x3d\xcd\x9d\x89\xdd\xef\xa6\x79\x97\xc0\xc0\x8e\x48\x80\x96\x5e\x49\x38\x1c\x28\x2b\x80\x36\xda\x1c\xd4\x51\xa6\x36\xe2\x20\xdc\xe4\x00\x3a\x93\x1e\x87\xd3\x95\x09\xa0\xc5\x24\x3b\x62\x1b\x29\x37\xa1\xbe\x4a\x33\x0d\x25\x94\x92\xd2\x9c\xcd\xd2\x3c\x28\x7c\xc5\x6b\xe4\x95\x7d\x41\xe5\x8b\xdf\xd5\x1d\x2c\x0d\x8d\xd7\x70\xe3\x21\xc9\x9d\xec\x45\x6c\x4c\xa9\xb0\x77\xaf\x35\xa7\xf8\x91\x1d\xee\x04\x43\x5f\x61\xdd\x69\x12\xee\x54\xb2\x47\x73\x4b\x4d\x56\x9e\xab\x86\xb8\xb6\x66\xab\xd0\xaf\x39\x04\x23\x69\x51\xa6\x00\xed\xb7\x8b\xd9\x4f\xea\x1a\x95\xa9\x24\x02\xbf\x6e\x10\x2e\x94\xa4\x0e\xb5\xf2\xa8\xd3\x07\x9a\x7a\x86\x58\x99\xcf\x85\xc8\x88\x0e\x98\x92\x12\x52\xeb\x8c\x14\x11\x7d\xa7\x33\x27\xd5\x8a\x15\xd8\x18\xc1\xa0\x2a\x94\x05\xab\x0e\x6a\x27\x21\xf6\x0a\x40\x2b\x57\x3b\xa2\x72\x60\xd7\x02\xab\x96\xd8\x2d\xf2\xa0\x26\xf2\x8b\xeb\x1a\x18\x95\xcf\x04\x2e\x69\x47\x68\xe2\x2d\x71\x35\x9b\xa7\x79\x7f\x6a\x3c\x5e\x22\x6c\x58\x1a\x5e\x71\x5a\x3f\xc6\x41\xbc\x05\x92\x9c\xba\xec\x5f\xb2\x5d\x56\xfd\x1b\xec\xfb\x23\x4a\xd7\x69\x62\xf8\xf6\xaa\x4a\xc0\xb0\x18\xb5\x81\xb1\x75\xa8\xf8\x89\x42\xc6\x8b\x43\x4b\xb3\x6b\x26\xd5\x9a\x2d\xe7\x4f\xdb\x3c\xf0\xbd\x67\xe9\xf1\x1a\x2c\x55\xef\x3b\x2f\xaa\xfb\x87\x37\x91\xd2\x6b\x75\xb5\xf9\x41\x57\x60\x13\xa0\x7d\x8a\xa8\xad\x98\xf2\x3a\xe0\x1f\x20\x35\x7d\xfd\x7a\x67\x99\x44\xd4\x6d\x61\x95\x22\xae\x9e\x39\x60\x94\x3f\x68\xc4\x66\xd2\xd2\x6b\x9d\x46\xcc\x04\x68\x1f\x31\xb5\x95\x79\xc4\x8c\x90\xe6\x11\xfb\x0a\x27\xc3\x66\x68\xbe\x26\x66\x65\xcb\x26\xe4\xfb\x33\xd2\x6a\x40\x17\x99\xb0\x14\x99\xb3\xf7\xb0\x98\x85\x57\x15\xda\xd4\xd2\x14\x40\x67\xd8\x41\x99\xdf\xcc\xaa\x21\x8e\xea\xe1\xaa\x1b\x5f\x65\x05\xe7\x32\x1f\xee\x98\x0c\x60\x1f\xc4\xd5\xa1\x61\x6f\x67\x2e\x12\x78\xec\x67\x62\x34\xed\x48\xdd\xd3\xd0\x36\x4a\x33\x56\xbc\x4a\x7e\x75\xf3\x7e\x0b\xfb\x40\x9e\x95\xc2\xf4\xd7\x76\x53\x69\x19\xf0\xe8\x46\x2e\xbe\x56\x20\x7e\x74\x92\x96\x48\x21\xdc\x58\x4a\x32\x3f\x6c\x27\xf1\x85\xae\x1f\x3e\x89\x87\x25\xa1\xc7\x35\x9c\x9e\x45\x11\x0f\x93\x01\xa9\x26\x2c\x9f\x31\x41\x9a\x6f\x7c\xc6\x44\xcd\xc8\x6d\xa6\x41\x95\xc3\xe9\xb1\x10\xe5\xf1\x89\x5d\x70\x48\x8d\xfc\x2b\x47\xc6\xe9\x87\x31\x77\x09\xea\x29\xc1\x56\xe9\x56\x13\x2d\x2d\x34\x70\xc0\x89\xdb\x5f\x3e\xe2\x29\x0f\xee\x40\x31\x48\xc5\xb0\x68\xd5\x90\x52\xc2\xfa\x1c\x51\xd7\xd9\xca\x97\xd4\xae\xaa\x61\x54\x9c\x01\xa7\x4f\xd9\x82\x66\x8a\xcb\xe8\x24\x3d\xc4\x07\xbd\xff\x42\x04\xae\xbd\xa2\xa4\xd0\x86\x4e\x81\xf2\x25\x1a\x8d\x49\xe8\x4c\x07\x4f\x46\xe0\x0a\x6e\x10\x1a\xe9\x5c\x8c\x8d\x25\x41\xe4\xe3\x5b\xa1\x5e\x1c\x7c\xf8\x18\x07\x1f\xf0\xbf\x63\x63\xb6\xd8\x87\x9f\x70\x50\xf4\x5a\x09\x22\xa6\x50\xb8\x18\x07\x95\xdd\xdf\xe8\x55\x58\xe9\x01\xc7\x9d\xb7\x03\x1f\x70\x3c\x9d\x4e\xf4\x65\xc3\xcd\x32\xde\xac\x97\xdb\x38\xf7\x57\xcb\xf8\xd1\x5b\x2d\x37\x61\x84\x47\x69\xb5\xc3\xff\x8d\x7f\x0c\xbc\xf5\x32\xda\xe4\xd1\xf2\x71\xbb\xf6\xa2\xe5\xe3\xe3\x8f\x3b\x2f\x5a\x86\x8f\x2b\xfd\x89\x47\x57\x29\x61\x5b\xdb\xa1\xa6\xc8\xca\xa4\x9b\x30\x03\x77\x5a\xcf\xb7\xd3\xff\x5b\x8c\xd5\xda\x5b\x1b\x9e\xa2\x1c\x46\x8b\xbc\xb3\x79\xb7\xe0\xb9\x09\x73\x7c\xdb\x0b\x7c\x6d\x59\x49\x2c\x34\x93\xf0\x9c\xa1\x9f\x41\x9e\xc4\xe7\x73\xa6\xb5\x68\x16\xe0\xc6\x7f\x8f\x13\xda\x5f\x7b\xfe\x5a\x98\xd2\xe3\xf3\xa3\xab\x6f\xe4\xa9\x6d\xd4\x10\x5b\x67\x7f\x3b\xf5\x68\x9f\xb3\xee\x78\xb9\x49\xeb\xbb\x48\x31\xad\x14\xc6\x3e\x88\xd4\x87\xb0\x96\xdc\x6d\xf0\x4f\xf1\xb2\xe3\x4b\xf2\x5c\x8d\x28\xdd\xc9\xd1\x81\xc5\xce\x8b\xbe\x98\x1a\x09\xb1\x3d\x75\x64\xa4\x9c\x73\xc2\x6b\x28\x43\x74\x57\x00\x17\xfb\xde\x1a\x17\x4b\xbb\x05\x42\xb9\x6e\xc7\xa8\x03\x86\xf8\x16\xaf\xb5\xfc\x86\x8f\xcf\x2c\xa4\x5b\x35\xa7\xaa\x29\xf4\xd7\x71\x80\x8b\x37\x7f\x63\x8e\x04\x4e\xcc\x50\x7f\xad\x17\x83\xfe\x36\x1c\x38\x88\xc9\xfd\x92\x95\xf3\x0c\x71\xbf\x83\x65\xc7\x79\x97\xb1\x15\x96\xb2\x5a\xe7\xe9\x28\xe4\x49\x87\xfe\xd7\xb7\xfc\xcd\x6c\x5b\xa5\x1b\x83\xbf\xa1\x81\xa4\x1b\x56\x96\x87\xe3\xc8\xb9\x61\x70\xdf\x71\x2b\x9a\x20\x75\xf7\x9e\x59\x47\xcf\xfe\x36\xd7\xbc\xdd\x7b\xf8\x41\xb2\xff\xcf\x3e\x49\xee\x1c\x3e\x59\xbe\x42\x0c\x1a\x9a\xd4\x35\x4a\x9a\xa4\x3c\x22\xe1\xb5\x36\xb5\x50\xf9\xfd\x0a\x7d\x4f\x07\xe3\xef\xa7\xfb\x9e\xe8\x02\xd0\xef\xf7\x7e\x41\x9e\xa7\xbc\x0e\xb1\x38\x1b\x7d\x50\x1a\x0a\x8e\x5f\x8a\x6b\xde\x65\x75\x8e\x3e\x29\x8f\x74\xff\x82\x75\xee\x13\xd9\x10\x20\x7f\x7e\xff\x2e\x7c\xf7\x69\xd8\x4f\x97\x1e\x0c\x94\xce\xd9\x69\x6b\x2c\x48\x2e\xae\x89\x1b\xd5\x90\x9c\x35\x27\x3d\x46\x7d\x9d\x08\x1f\x65\x01\x32\x7e\x5b\x4c\xee\xff\x0f\x9d\x10\xe2\xdf\xf1\x16\x21\xbd\xa1\x01\x9e\xeb\x04\x77\xca\x55\x06\xf2\xf3\xd4\x17\x23\x99\x3e\x48\x1e\xd8\x70\x03\x3f\xad\xbc\x82\x47\x04\xa0\x9b\x2e\xe3\x61\x23\xe9\x58\x8b\x76\x62\x03\xd8\xf4\x98\x63\xe2\x80\xf7\x56\x87\x0f\xd5\x11\xbf\xbd\x11\x00\xfb\x78\x0e\xc7\x58\xe0\x49\x75\xc7\x54\x12\x68\x69\xfb\x46\x22\xb9\x29\xd5\x14\xf0\xe4\x49\x79\xfe\x16\x95\x0f\x00\x1e\xe6\x1b\x87\xfd\x92\x7f\x6e\xaa\xe7\x16\xbd\x03\xb0\x00\x8d\x7f\xc1\x86\xda\x3f\x90\x26\x9f\x14\x4c\x49\xd7\x35\xdf\x0a\xf5\x4a\x07\x69\x27\xd4\x0b\xbe\x0e\x5e\x4a\xf5\x37\x5f\xc1\xc2\x02\x9c\x2d\x8c\x92\x82\x37\xaa\xf8\xc5\xb4\xc0\xf4\x0d\xdc\xea\x16\x01\x06\x86\x53\x2b\x6c\x2f\x6f\x38\x4f\xa1\xec\x7f\x99\x05\xf6\xf0\xa4\x0e\xea\xd4\x67\x71\x3a\x97\xf9\xb5\x20\x59\x52\x58\x73\x69\x7f\xd8\xfd\x69\x21\x2c\x2c\xcf\xe8\xa6\x4f\xc3\x70\xb9\x16\xef\x61\x9b\x93\xa6\x7c\x1d\x07\x47\xd8\x50\x5f\x9b\x84\x6a\xf7\x7b\x4e\xaf\xcd\x33\xf2\xa9\xe2\x72\x2d\x0e\xfa\x2e\x38\xd6\x1d\xac\x4b\x0b\xd7\x89\x2b\xd3\xc0\xbc\x93\x92\xdf\x0a\x7f\xfb\x95\x11\x53\x96\x09\x7a\xbc\xe4\x1f\x8e\x4c\x69\x52\x84\xe5\x67\xd8\x88\x15\x8f\x76\x33\xbf\x35\x91\x5a\x5b\xb8\x2d\x4c\x55\x2f\x34\xbc\xee\xfa\x57\x0a\xca\x7e\x4b\x32\x26\xcd\x57\x95\x7c\x66\xf8\x65\x1b\xa7\xd9\x71\x97\x05\x19\xbf\x7a\x67\xfa\xcc\x32\x81\xa3\xb9\x96\x25\xf6\x6f\x98\x17\x29\x53\x0a\xd7\x20\xf1\x8e\x99\x78\x91\xf5\x78\x6d\xda\xaa\xd9\xb3\x6d\x1b\x28\x55\x1d\x42\x11\x52\x9e\x3a\x83\x6e\xc2\x8e\x0a\x06\x4e\x06\x71\xfe\x1a\xf4\xfb\xbf\x94\x79\x54\x66\x17\x73\x7d\xa7\x26\xab\xa3\x71\xb7\x16\x2b\x88\x66\x6b\xb0\xd0\xfe\xef\x51\x69\x5b\x67\x6b\xac\xbd\x81\xae\x3e\x81\x4e\x4b\xfe\x4b\xbf\x07\x32\x5f\x4b\x95\xdb\x37\xeb\x70\x7b\xaf\xf2\xb6\x5f\x5d\x6b\xe5\x8b\xe1\x66\xad\xa5\x14\xe5\x7d\x74\x81\xad\x53\x96\xe7\x7e\x5e\x3d\x0b\x9f\x89\xd5\xda\x6b\x5d\x83\x9b\x78\xf2\xb4\x99\x98\x1d\x02\x26\xf9\xc8\x47\x5c\xf7\x0a\xfc\xb0\x63\x67\x58\x2f\x1a\x76\xe0\x5d\xb1\x28\xce\x8f\xc9\x39\x45\xa7\xe4\x9a\x77\x66\x24\xda\xb2\x72\x36\x1b\xaa\x05\x73\xa6\xdc\xba\x92\x84\xb6\x34\x81\x80\x4a\xd9\xdf\x81\xe6\xc3\x7f\x7e\xab\x31\xd7\x4a\x7c\x3d\xd9\x19\x6c\x49\x99\x7c\xb1\x5e\x0a\x97\xf6\x75\xd4\x1c\x42\x81\x9a\x06\x8b\xe0\xa3\x09\x15\xad\x89\x0a\xc8\x74\xe4\xa0\xfc\x0a\xc1\xf0\x9b\xde\x60\x87\x73\x2e\x72\xa0\xe5\x8c\xfc\x0b\xaa\x4a\x63\x1c\x5d\x72\x68\xe5\x3b\x9e\xe2\xee\x00\x35\x22\x23\xa4\x47\xfe\x22\x99\x38\x64\x09\xd0\x93\xf1\x32\x18\xe9\xbe\xb6\xe3\x00\x18\x41\xf5\x50\x1c\x0f\x88\x0c\x07\x1b\xf9\xee\x84\x4e\x4d\x94\xa0\x52\x43\x65\x29\x6f\x46\xd1\x28\xdf\x1b\xfe\x85\x7b\x6b\x93\xf2\x6c\xbb\x0f\x89\x92\xe4\xbb\x18\x69\x41\xec\x2f\xe5\x64\x1e\xb6\x7d\x63\x35\x11\x35\xe9\x93\x37\xfc\x4b\x76\x96\x47\x02\x72\x2e\x21\xe5\xc2\xb1\x69\x7c\xac\x37\x6c\x31\xee\x3a\xcb\x73\x5d\x09\xa0\xf1\x53\x20\x87\xc4\x0f\x42\x1d\xcd\x78\x3a\xe0\xb2\x1e\x63\xe3\xa7\x56\x30\x34\xf6\x69\x82\xbe\xca\xd7\x3a\xb5\xeb\x12\xb4\x0d\xbd\x27\x9e\xa1\x54\x69\xe8\x1f\x92\x36\xc3\x1d\x27\x3f\xce\x4d\xf5\xbc\x0f\x21\x1c\x5d\x72\xe0\x77\xcc\x7f\x20\x3f\xea\x44\x38\x59\x49\x67\xae\x04\xc3\xc6\x55\x49\x76\x52\x26\x5f\x0e\x49\x03\xec\xea\x1a\xcc\xc7\x21\x69\x16\xec\xdf\x1f\x96\x18\x77\x92\x95\x08\x2a\xf2\x4f\xf9\x35\x4b\xad\x86\x0e\xb8\xbf\xa2\xde\x9e\x27\x77\x4a\xfc\x03\xea\x9e\x11\x2a\x39\x03\xfe\xa1\x11\xb7\xf9\xa5\xed\x6c\x69\xef\x7c\x15\xc2\xbb\xf7\xbc\x5c\x3b\x73\x3a\x71\x39\xc1\x9c\xaf\x47\x66\x4d\x30\x0e\x63\xd9\x84\x89\xc5\x80\xb0\x67\xd0\x32\x0f\xdc\xe1\x20\x18\x76\x61\xa2\xc8\x5f\x6a\x02\x05\xa9\xdc\xc8\x90\x2e\xb2\xed\x92\x2e\x3b\xb2\x14\x90\x12\x29\xe9\xae\x92\x79\x7c\x8c\xdf\x36\x06\x44\x3c\xe5\xa9\x38\x35\xc8\xa2\x59\x9c\x1d\xd0\x6d\x47\xce\x08\x39\xde\xdf\x68\xb7\x1a\xb4\x0f\xa9\xd0\x55\x94\xc9\x24\x4c\x56\x57\xa3\x9b\x20\x81\x21\x45\x43\x78\xa9\x83\x8e\x30\x50\x3f\x3b\x56\xa5\xf5\x93\xf3\x32\x16\x42\xcf\x25\x90\xc0\x8c\x7d\xfa\x15\x13\x98\x19\x0e\x63\x8a\x82\xa0\xe2\x0a\x82\x0f\x1e\xb9\x4a\x3f\x24\x62\x4c\xfa\x21\x9f\x65\xbc\x7c\xa4\x59\x26\x19\xcb\xf4\xb3\x1c\xbd\xe2\xa1\x5a\x0c\xb0\x92\xd9\x8e\x09\x15\xb5\xe4\xd2\x54\x71\x53\xf5\x21\x99\xc0\x9a\xea\xd9\x63\x77\xd4\x6c\xd9\x77\x54\x0c\x9e\x38\x47\x95\x69\xd9\x54\xcf\xf6\x06\xc6\x19\xc4\xbf\x60\x4c\x35\x37\xcc\x5a\xe0\x3b\xa0\x3c\x7d\xee\x95\xfc\x68\xa8\x15\xf3\xa6\xf3\x37\xcc\x50\xd1\x70\xfd\x63\x56\xd4\x55\xd3\x25\x65\xf7\x24\x4c\x5c\x9a\xb2\xc8\x88\x89\xcf\x55\xc9\x87\x01\x0a\xb6\xdd\x6c\x61\x05\x2b\x52\x4b\x37\xa5\xca\xbb\x15\x8c\xe7\x4f\x55\x71\xbf\x55\xc1\x8a\x74\xa6\x82\xc9\x0d\x66\x2b\x98\xda\xfc\x8d\x0a\x36\x5b\xf2\x53\x0a\x26\xf0\xf7\x46\x05\x13\x30\xb9\x2a\xd8\xe3\x63\x08\x2b\x18\xb9\xc3\x66\xea\xa6\x54\x79\xb7\x82\xf1\x9c\xb9\x2a\xee\xb7\x2a\x58\x7e\x9e\xa9\x60\x72\x83\xd9\x0a\xa6\x36\x7f\xa3\x82\xcd\x96\xfc\x94\x82\x09\xfc\xbd\x51\xc1\x04\x4c\xae\x0a\x16\x86\x8f\x8f\xb0\x86\xf5\xb9\xa5\x9f\x52\xe5\xdd\x1a\x36\x24\x4a\x56\x91\xbf\x55\xc5\xfa\x7c\xa6\x8a\xc9\x0d\x66\xab\x98\xda\xfc\x8d\x2a\x36\x5b\xf4\x53\x2a\x26\xf0\xf7\x46\x15\x13\x30\xc1\x2a\x26\xc3\xbf\x71\x20\xcd\x62\x98\xad\x7e\x72\xf3\x79\xea\xf1\x16\xdd\xf8\x9a\x8a\x31\x47\x1c\x13\x2a\xf1\x95\xf4\xc1\xae\x0c\xbc\x32\xa7\xa7\x22\xc5\x18\x74\x61\xa9\x53\x22\x12\x08\x42\xcc\x26\x2b\x66\xce\x7f\x7c\x30\x10\x95\xa5\xaf\x37\x8c\x9d\x1a\x5a\x39\x93\x21\x4d\x1c\x6e\x9d\x08\xa9\x5b\x6f\x22\x86\x95\x15\x03\xdd\x5b\x19\xb7\x8e\x5c\x98\x15\x37\xa0\xa6\x40\xdb\x4b\xf5\x6c\x03\x04\x37\xae\x9c\x86\x88\xab\x10\x34\x38\xf2\xfe\x9e\xf4\x56\xc2\x04\x3a\x1a\x9d\xbe\xed\x6e\x8d\x74\x6e\x78\x85\xff\xff\x1b\x87\xe3\xc6\xc0\x15\x2c\xc6\xb8\xc7\xfe\x7f\x19\x3f\x7c\xc3\xea\xa8\x47\xfc\xfe\x9b\x68\x28\xc0\x61\xf4\x31\xa9\xbf\xff\x86\xb0\x3d\x14\x17\x59\x87\x9a\x3c\x2b\xb2\xee\xfb\x6f\x42\x76\x4c\x79\xed\x6d\x2f\x51\xf4\xd3\xda\x0b\x63\xfa\x6f\xb4\xba\x44\x11\x70\x79\x07\x16\x14\xea\xbb\x39\x33\x82\x24\x35\x49\x0c\x3a\x40\x2b\xad\xf3\x84\x81\x38\x4c\xe1\x34\x69\x3e\x1b\xcc\x86\x5e\xa5\xd0\x04\x00\xd4\x47\xc8\x60\x3a\x90\xa5\xb8\xb4\x39\xe1\xef\xc3\x22\x0c\x82\x0f\x92\x6c\xcc\x6d\x6d\x0c\x99\x6d\x85\x4a\x6a\xeb\x44\x4b\xb5\x17\x2a\x96\xc8\x8a\xc5\x68\x33\x2c\x04\x15\x93\x61\x81\x94\x2c\x86\x0e\x67\xdc\xe9\x86\x19\x96\xad\x84\x3e\x30\xb2\xa5\x50\xeb\x43\x83\x18\xfe\x6e\x8d\x45\x14\xc7\x0b\x6f\xfc\xcf\xdf\xcc\x64\xc8\xd2\x1a\x2d\x86\xeb\xcc\x50\x8c\x06\x50\x67\x9b\x2e\x80\xc9\x60\xb7\x05\x92\x26\x75\x4a\xc8\xa9\xed\x5c\x8f\x51\x48\xf0\xf4\x5c\x35\x29\x5d\x2b\x1d\x1a\x94\x7c\xf6\xf1\x6f\xc7\x37\x7d\x8c\xdb\xb0\x92\x8f\x8a\x8c\x0f\xfa\xe0\x0e\xfc\x70\x51\x0e\x20\xc8\xaf\x89\x04\x0c\x6a\x49\x76\xd3\x49\x76\x0d\x31\xef\x86\x27\x94\xb3\xfc\xfb\x63\xa5\x29\x03\x87\xe3\xc7\x46\x8d\xee\x98\xef\x45\x27\x3b\xd6\xd9\xd2\xe7\xca\x94\x81\x04\x20\x22\x6d\xff\x50\xa5\x2f\xca\x47\x2c\xbe\x7f\x1e\x4a\x80\x5d\xd6\xe5\x48\xf9\x3c\xcb\xf3\xf4\x10\x80\xf6\x7a\x90\x60\xe8\x21\xd4\x15\x04\xb2\x60\x28\x51\xdf\x89\x9d\xd2\xaf\x27\x60\xa8\xc9\x6f\xd6\x03\xd4\x77\xe3\x9f\x52\x7e\x35\xb9\x23\x2c\xd3\xff\xf0\x95\x80\x5f\xbf\x8a\xc0\xec\x69\xa6\xbb\x61\x44\xed\x82\xd5\xc3\x93\xe9\x23\xb7\xaa\x9e\x12\x75\x48\x83\xd8\xe8\x88\xf7\x58\x7d\x2f\xac\xfb\x07\x0f\x28\x0a\xbc\x40\x42\xf8\x9d\xa0\x2c\xae\xfa\x3a\x48\xf8\x54\x55\x9d\x59\x22\xae\x12\x90\x1f\xda\x30\x74\x9f\x92\x02\x34\x79\x38\xf8\x1e\x40\xdd\xd5\x8b\xa4\xde\xd3\xe3\x06\xca\xd1\x01\x7e\x21\x49\x7e\x5d\x4d\x6e\x47\xbe\x05\x2f\x8c\xa8\x58\x0e\xbf\xe5\x46\xd2\x0d\x7a\xb7\x79\xb9\x11\x95\x2a\x2b\xce\x3e\x56\xd1\x3c\x79\x99\xbc\xb3\x30\x7e\xbc\xa3\xdf\xf4\xe0\xf9\x96\x15\x67\xf1\xe0\xd8\x94\x92\x08\x7c\x74\x55\x0d\xb4\x54\x0d\x94\x8e\xc2\x68\xac\xac\xd4\x68\x6f\x00\x82\x90\x6d\x32\x13\x05\xec\x94\x91\x6c\x8a\x84\xf7\x27\xcd\x1e\x48\x80\xf6\xa8\x1f\x93\x35\x84\x9c\x42\x33\x7f\x57\x1a\x49\xc9\x5b\x2c\x64\x83\x45\x49\xf2\x18\xd7\xbd\xac\x1d\xec\x84\x9b\x42\x5f\xe3\x79\x1f\x7a\x81\xc9\x7d\xaa\x07\xe6\x34\xd3\x24\x99\x38\x4c\x8f\x11\x24\x13\xdf\x5d\x3e\x2c\x03\xd5\x9d\x02\xa2\xc4\x74\x09\x01\xc8\x87\x0e\xc3\x76\x5e\x00\xfd\x4e\xe2\x86\x4d\x13\xf1\xd6\x0c\xd0\xe6\xeb\xa5\x01\x9e\xc4\xec\x89\x06\x63\xe1\x0c\xcf\xe7\xa6\xe5\x94\x8b\x2b\x2a\x6a\x46\xe7\x91\x66\x13\xf5\x9e\xbe\x7f\x85\x5c\xc6\xd3\x88\x9d\xa4\x0a\x34\x00\xc4\x7a\x2f\x6d\xbb\x58\x0d\xb4\x41\xb9\xca\x1c\x30\x16\xe8\xb4\x6b\x41\x63\xc4\x96\x52\x13\xb3\x8d\x61\x18\x0e\x20\xd2\xdf\xfe\xb1\xba\x96\xdd\x7e\x45\xef\x04\x28\x65\x2a\x88\xdc\xf2\x9c\xd4\xc3\x79\x08\xb1\xb5\x58\x7e\x6e\xb2\x14\x2a\x07\x8a\xaa\xa6\xbe\x24\x65\xbb\x0f\x9f\x9e\xb3\xb4\x7a\x6e\xf7\x21\xd8\xf5\x89\xdb\xf3\xaf\xaf\xcb\xe4\x78\xac\x9a\x34\xab\x4a\x66\x3b\x94\xc7\xbd\x34\x00\x71\x84\xaa\x93\xdf\xbd\xd4\x48\x56\x28\xcb\x8a\x2b\x70\xc2\x26\x4c\x2d\x5e\x74\x33\xbc\xdc\x6a\xc6\x2b\xa1\x34\x35\xbf\xe3\x4d\x0c\x95\x8e\xc8\xe6\x5d\x0f\x5a\x28\x08\x25\x51\x82\x67\x34\x71\x5c\x97\x1e\x9b\x6b\x71\x70\x39\xef\x3a\xac\x31\xf5\x25\x77\x48\x8f\xe6\x4c\x3d\xff\x2a\x5f\xa5\x54\x22\x9b\x91\x19\xb2\xfe\xfd\x4e\x2d\xb8\x41\x1f\x02\xa6\x1a\x59\xdf\x10\x84\xbe\x36\xc8\x67\x3a\x87\xa3\x37\x1f\xdf\x39\xd0\x22\xf1\x0e\xa7\x68\x7e\xb1\xdc\xf0\x70\xba\x8c\x4c\x39\xe5\xc9\x73\xe7\xd5\xc9\x39\x2b\x49\x33\x79\xc4\x94\x13\x67\xda\x50\x80\x12\xaf\x93\x33\x62\xdf\x5d\x26\x92\x49\xca\x67\x0d\xe5\x9c\xd5\x43\x36\x6c\xe5\x02\x6f\x14\x3f\x4d\x25\x16\x83\xaf\x21\xf3\xa3\xb7\x03\x7b\xca\xf3\x5d\xd1\x93\xfd\x55\x79\x27\xe5\x93\x8e\xc4\x8a\xb4\xe4\xdc\xec\xd1\x9d\x39\x1f\x08\x3e\x35\x8c\xf3\x04\x89\x83\xcb\x24\xfb\x7e\x84\x65\x57\x60\x24\x27\x6e\x45\x8c\xd4\xec\x3b\x1a\x36\x1b\xa6\x51\x60\x8a\x29\x62\x1f\xef\xa6\x3b\x1c\xc8\x05\x53\x76\x8a\xf8\xf9\x9e\xad\x48\xc1\xf9\x3c\x3b\x7d\x8a\xd2\xf9\x2c\xb4\x38\xa1\xc8\x39\x01\x61\x4a\xa8\x81\xb5\xcb\x81\xc4\x65\x0c\x63\xb4\x69\x82\x69\xec\x57\x13\x43\xbf\xe2\xe3\x02\x53\x9b\xa9\x08\x00\x35\x1d\x40\x22\xd7\x16\xa0\xb8\x66\x65\xa5\x86\x11\xde\x23\xad\x68\x6a\xa2\x18\xd9\xbf\x6b\xda\x4c\xce\x1a\xea\x9d\x92\xf4\x6c\xf7\x3d\x58\x5e\x58\x5c\x6b\x49\x5a\xdb\xf8\x83\x94\xc4\x61\xab\x26\x0d\x72\x4b\xf1\xaf\x1c\x27\x55\xee\x23\xc0\x19\x74\x84\xdb\x30\xa6\x9b\x3c\x7f\x9d\x0b\x47\x7f\x7d\xea\xce\xf7\x90\xe8\xb0\x3a\xdf\x27\x4a\x68\x03\xb6\x93\xcf\x7f\xd9\x36\x47\x29\x04\x79\x33\x58\x39\x3a\x70\xe8\x4a\x8f\xd1\xd7\x7d\xb6\xf0\x38\x1c\x86\x20\x1b\x65\xea\x91\x8a\x8d\x76\xa2\x62\x33\xaa\x32\xbf\x19\x18\x8c\xda\xeb\xd7\x4d\x56\x24\xcd\x8b\xd3\x5d\x8b\x44\x6e\x23\xf7\x78\x28\x55\xbf\x57\x80\xf8\x36\xd1\xf1\xa8\xe2\x5b\xc2\xf8\x94\x84\x16\xae\x7e\x1a\xbb\x69\x8a\xa8\x45\xc7\xaa\x4c\x27\x3b\xc9\xd6\x60\x89\xda\x4a\xe9\xe6\x58\xee\xd0\xd1\x78\x1d\x1f\x36\x91\x8e\x73\x69\xc2\x39\xa7\xb3\x61\xb0\x5b\x84\xe1\x76\x11\x46\x72\x77\xaf\xc7\x23\x6a\x5b\x3b\x63\xd1\x2e\xd9\xae\xe3\x91\x31\xda\x46\xed\x2a\x2b\x75\xe8\x68\x88\xb6\x68\xb5\x56\xf1\xa9\xdd\x14\xa9\x38\x76\x72\x1d\x2c\xc2\xcd\x76\xb1\x79\x14\xbb\x98\x95\xa7\x6a\x82\x9f\x6d\x12\x1d\x76\x03\x3f\xb8\x81\xd2\x39\x52\xe4\xd2\xb3\x70\x9b\xec\x0e\x12\xa6\x25\x80\x69\x4e\x9f\xa2\xd5\x22\xdc\x44\x8b\x70\xb7\x16\x3b\xf5\x9c\x34\x65\x56\x9e\x39\x37\xec\xb5\x6a\x68\xb1\x73\x0c\x83\xed\xc0\x10\x6b\xa6\xf4\x8e\x97\x4a\x1d\x34\xa2\x4c\x57\x8f\x28\x08\x54\x94\x4b\x18\xe5\xac\x9e\xc6\xf1\x22\x7c\x5c\x2d\xb6\x62\x47\xd3\xa4\x3c\x4f\x49\x3d\x3d\xae\x62\x41\x3f\x69\x13\xa5\x8f\xac\xd0\x61\x0c\x0f\x69\x14\xae\x02\x05\xdb\x12\xc4\x36\xab\x77\x51\xb0\x88\x57\x8a\x6e\x92\x63\x1f\xd3\x83\x48\x5f\xf7\x4e\xc4\x46\x4a\xf7\x68\x99\xe3\x00\x26\x28\x40\xb1\x8c\x6e\x09\xa1\x9b\xd5\xbd\xf5\x6e\x11\xad\x1f\x17\x51\x1c\xc8\xc3\xd7\x4c\x5c\xcd\xa3\xc9\x04\x05\x71\x37\x9f\xb5\xa1\x6b\x3e\x3b\x4d\xbe\x34\x0a\xa3\xb5\x84\x49\x1b\x36\x8e\xdc\xb1\x57\x71\xb4\x88\x77\x8b\x0d\x9b\x7a\x7f\xb9\x16\x87\xaa\x6b\xaa\x72\x58\xe1\x46\x86\x3d\x10\x43\x2e\x08\x78\xcf\x63\x65\xdf\x37\xd4\xa9\xae\x31\x55\xb2\xaa\x14\x78\x72\x3a\xe3\x09\x6c\x70\xe5\xa8\x81\xf2\xc4\x39\x7d\x5d\x0d\xc7\xa5\xef\xac\xeb\x55\x84\x28\xd9\x8c\x1a\x6d\x18\xbb\xae\xc7\x2b\xc9\x9a\x5b\x59\xf7\xf2\xba\x34\x6b\x8b\xac\x6d\xb3\x43\x8e\x94\xfe\xae\x05\xf4\x02\x94\xb7\x3c\xe6\x55\x6b\xca\x9a\x0f\x24\x23\x93\x3b\x0d\x32\xa8\xac\x85\x82\x60\x1d\xec\x62\x60\xcc\x8f\x47\x14\xeb\x2f\x28\xec\xd2\x04\x47\xba\x12\x2a\xef\x22\x3d\xbb\xc7\x40\x1f\x4f\xc7\x54\x07\x15\xa5\x34\x70\x10\x6d\xe3\x88\x03\x6a\xeb\x98\xd5\x6e\x95\xae\x81\x5b\x72\xef\x51\x84\x56\x28\x56\x43\xe2\x4d\xba\x4b\x0f\x1a\x32\x98\xc5\xe3\xee\x78\x38\x9e\x74\x60\x80\xc9\x28\x88\x56\xd1\x66\x00\x95\x57\x1f\x61\x1c\x6f\xa3\x35\x64\xb1\xd6\x28\x1d\x93\xd1\x71\xaa\x2b\xb4\x39\x1e\x14\x54\x30\x83\x87\x30\x3d\x1d\x34\x50\x48\x86\x87\x08\x85\x2b\x0e\x28\xae\x1c\x82\x63\xbc\xde\x40\xe9\xf3\xd2\x10\x1d\x4f\xa1\x3a\xbe\x08\xc5\xe8\x20\xe2\x81\x19\x4b\x0e\x69\x8a\x62\x09\x0e\xe2\x6a\x13\x1d\x57\x03\x57\x8a\xeb\xdf\xc5\x9b\x75\x00\x09\xed\x74\x3a\xad\x8e\xa9\xc2\xd8\xe9\x84\xd0\x21\x51\x50\xc1\xbc\x9d\x4e\x68\x97\x84\x2a\x28\xc0\x5e\xbc\x5a\x9d\x82\x81\x3d\xd9\x61\x6f\xa3\xf0\x08\x0e\xe9\x69\x97\x6e\xb5\x21\x3d\xc5\x47\x61\x48\x29\x26\x03\x73\xe1\x21\x38\x6c\x15\x48\x80\xb7\xf5\x63\x18\x85\xdb\xd1\xa8\x08\xee\x76\x17\xee\xc2\x5d\x04\xb1\x86\xf0\xff\x54\xd6\xd2\x53\x7a\x42\x12\x22\x98\x33\x74\x44\xc7\xd3\x46\x06\x04\x18\xdb\xec\xf0\xff\xc6\x0e\x8c\x6e\x32\x3c\x84\x28\x82\x26\x2a\x99\x93\x8f\xea\x2c\xd8\x1c\x77\xc7\x44\xc4\x63\x98\x02\x8f\x87\xc3\x01\x49\x70\x90\xa6\xad\x83\x38\x88\x5f\xff\x89\xc7\xb3\x9f\xd1\xcb\xa9\x49\x0a\xd4\x7a\x75\x53\x9d\x1b\xd4\xb6\xfe\x21\x69\xfc\xb6\x6b\xb2\x1a\xb5\xb7\xe0\x83\x78\x12\x70\xb0\xae\x21\xcd\x78\xd8\x55\x60\x6d\xe0\x05\xaf\xaf\xff\xf4\x9b\x61\x5e\x72\x7c\xf2\xa6\xb8\x98\xd6\x49\xf9\x16\x25\x6e\x4d\x69\x39\x70\x5d\xbe\x56\x88\x3d\x70\xb9\x12\x0e\xbf\x3a\x2f\x6e\x98\xde\xf9\x6a\x23\xdb\x55\x05\x76\x23\xc8\x92\xc2\x5b\x6e\xe8\x26\xc7\x93\xb1\xc6\x79\xdf\x43\xea\xb3\x7b\x3a\x15\x60\xb0\x53\xfd\x34\x29\x5e\x99\x25\x8d\x7f\xc6\x72\x46\x65\xf7\xed\x3a\x4e\xd1\x79\xa1\x9d\x54\x8d\x1f\xbc\x28\xfe\xb0\x10\xd6\x1b\x5e\x20\xfd\x8a\x83\x0f\x60\xab\x00\x2c\xdd\xda\x70\x3d\xe8\xd7\xaa\xc7\x54\x0b\x52\xaf\x92\x32\x2b\x92\x0e\xa5\x83\x54\x68\x01\x16\x02\xa4\xea\x5e\xd8\x7a\xb4\xbf\x5e\x56\x9e\xb2\x32\xeb\xd0\xd3\xec\x16\x77\x0d\x9b\x8d\x53\x9a\x8c\x4e\xfa\xf9\xfa\xba\x24\x44\xcc\xcf\x9a\x8a\x97\x94\x08\xa8\x7c\x38\xf1\x55\x38\xd6\xf6\xf6\xcc\x09\xaf\xea\x21\x39\x3f\x21\xad\xc5\x83\x4c\x72\x5a\x14\x61\x52\x0d\x6b\x39\x18\x07\x3f\x68\x6b\xa8\x95\x3f\x41\x85\x10\x99\xe9\x4f\x50\x2c\xa8\x33\xd1\x90\x3f\xf9\x19\x63\x39\x9e\xc4\x58\xc1\xe2\xfe\x11\xcf\xb6\xbc\xa7\xb9\x5e\xdc\xbe\xd4\xe9\xc7\x05\x7f\xbb\x33\xb7\x96\x63\xb5\xda\xe9\xcf\xaf\x70\xcc\x56\x21\x37\x7c\x94\xd2\xf4\xc3\x94\x16\xdd\xf9\xa1\x30\x9d\x16\x53\x03\xed\x73\xe7\x1d\x5f\xd5\x04\xd4\x97\xaa\xc9\x7e\xad\xca\x2e\xc9\xc1\x9b\x7d\x20\xa4\x76\x28\x55\x7f\x27\xd9\x3a\x45\x2d\x98\xe6\xab\x86\x71\xb4\x6c\x47\x22\x1c\x99\xd1\xb5\x69\x3c\xf7\xf9\xb6\x2f\xa7\xd6\x23\x20\xe6\x0d\x00\x90\xef\x21\x4f\x86\xcb\xd8\x91\x0f\x5c\x5f\x6b\xf8\x20\x64\x7f\xcb\x11\x04\xf9\xf9\x1b\x0d\xa2\x25\x09\x05\xcc\x3b\x4f\x46\xe1\x34\x8a\x85\x7e\xa5\xe0\xfe\x51\x04\x90\xfd\x4d\x47\x11\xe2\xe7\xef\x67\x14\x79\xa6\x07\x98\x77\x9e\xf1\xc1\x69\x14\xf3\xf3\x57\x1c\x45\x00\xd9\xdf\x74\x14\x21\x7e\xfe\x7e\x46\x71\xc8\xa6\x00\x33\xdf\xcf\x70\x87\xe4\x9a\xff\x57\x1b\x46\x00\xd9\xdf\x74\x18\x21\x7e\xfe\x56\xc3\x28\x32\x72\xca\xaf\xed\x45\x97\x3b\x0f\xcb\x65\x7e\x4c\x5b\xde\x93\xf8\xcc\x0b\x4a\xfa\x45\x5d\x45\x70\xcf\x5d\x33\x88\x11\xd7\xbb\x63\xd6\x45\x2e\x14\x19\xb9\xee\x55\xf3\x6d\x69\x43\xfb\x99\xd1\xd2\x44\x2b\xe9\x8b\x8e\x91\x25\xbe\xfd\x3d\x0f\xb9\x72\x62\xd2\xb4\x5a\xa6\x34\x95\xd5\x32\x2e\xd4\xe9\xb9\xef\xa7\xf3\xad\x73\x23\x86\x99\x62\x9c\x6c\x27\x09\xd2\xc8\x16\xdf\xa4\x9f\x8b\xde\x49\x94\x9c\xaa\x24\x4a\x5a\x08\x50\x74\xdc\xf5\xe7\x1b\xfc\x86\xf6\x73\xc5\x68\x6f\x25\x09\xd1\xc8\x12\xff\x90\x30\x0f\xb9\x93\x08\x39\x4d\x49\x84\xb4\x50\xa7\xe7\xf4\x65\x82\x7f\x84\x80\x1a\xcf\x14\x9e\xad\x89\x3c\x8f\x4d\xcc\xf0\x2f\x1d\x33\x30\xbb\x4d\x62\x46\x50\x9e\xc4\xa4\x50\x27\xe6\xfe\xe9\x84\x7e\x25\x31\xb4\x9f\x29\xbc\x89\x56\x92\xfc\x6c\x2c\x91\xaf\x31\xf3\x90\x3b\x89\x90\xd3\x94\x44\x48\x0b\x75\x7a\xae\x9f\x77\xd8\x97\x1c\xb8\xf9\x4c\x01\xda\x1b\x49\xf2\x33\x33\xc4\x3e\x18\xcd\xc2\xed\x24\x3e\x4e\x52\x12\x1f\x2d\xd4\xc9\x39\x7e\x81\x62\x1f\x9b\xc0\xd6\x33\x85\x67\x6d\x23\xeb\x9e\x89\x1d\xfe\x49\x6b\x0e\x6a\x37\xcd\x63\x14\x65\xcd\x23\x85\xd0\x48\x39\x7c\x23\xe3\x9f\xc3\xa0\xc6\xb3\xb5\xce\xdc\x44\xf6\x16\x26\x66\xf8\x37\xb7\x19\x98\xdd\x5c\x05\x23\x28\xbb\x0a\x52\xf8\xca\x4e\x3a\xd0\x34\xbf\x64\x41\x2c\x9d\x53\x8f\xd5\x37\x48\xf5\xe3\xc4\xc3\x42\x28\xa0\x5b\xd9\xc3\xd9\x98\xb0\xee\xbd\x80\x64\x0a\x1f\x9e\xfc\x5b\xc6\x8c\xa0\xba\x9a\x0b\x0c\x37\x5b\x28\x30\xb9\x89\xc5\x37\x4b\xe9\xc5\xac\xe5\xf8\x93\x8d\x87\x0b\x28\xa5\x3a\x70\xb3\x8d\x5f\x0f\xd7\xae\xab\x4a\x7e\xde\x63\xfa\x31\x35\xb6\x91\x1d\xbc\xed\x55\xb5\x84\x12\x1c\x73\xcc\x00\x5b\xbe\xaf\xcb\xae\x4a\xda\xee\x36\x66\x16\x5c\xc5\x41\xdd\xdb\xbe\x46\xee\x0c\x9f\x23\xd5\xaf\x57\xbb\xf8\x41\x4b\xbb\x31\x66\x6a\xee\x27\x76\xeb\x1f\xe4\x23\x50\x52\xd6\x65\x15\x92\x4b\x09\x53\x4b\x9b\xaa\xf6\x4f\x59\xde\xa1\x66\x7f\xc8\xaf\xcd\xb7\x61\xc0\xdf\xda\x36\x54\x0d\x2f\x45\x1a\x3e\xa4\x12\x01\xe9\xf7\x80\xe1\x9c\x15\x04\x98\xe4\xc6\xc1\x2e\x9d\xa3\x0e\xc5\x0a\xe5\x91\x05\x0d\xe6\x92\xa5\x5a\x16\x76\x5c\xc1\xef\xc9\x19\xbf\x74\xb1\x8f\xb2\x70\xa2\x6a\x79\xf3\xff\x2b\x0d\x9e\x3d\x3f\x45\x10\x3f\x70\xd6\xc9\x27\x37\xf9\xf3\xce\xeb\xb2\xa8\xd2\x24\xf7\xab\x1a\x95\xfa\x45\xcc\xb1\xce\xa3\x7f\x0f\x20\x7e\xcf\x75\x72\x28\x79\x61\x29\xee\x28\xe0\xf0\x95\xe9\x94\xf5\x28\x65\x87\xa9\xd4\x47\x2a\x83\x38\x78\x12\x65\x0c\x3c\x41\x4a\xfe\x56\xe7\x81\xf0\x2a\x21\x65\x31\xcd\x92\xbc\x3a\x1b\xdf\x34\x25\xd7\x7d\xd8\xa3\xa4\x2c\x5b\x20\x34\x09\x09\xae\xe5\x29\x49\x91\x27\xe3\x15\x3e\x56\x03\x2f\x7c\xaf\xd8\xf5\x00\xc3\xb3\xec\x13\x2d\xe0\x47\xcb\x67\x41\x40\xcf\x8e\x1b\x99\x92\xdf\xde\xfe\x7f\xbe\xf5\x63\x32\xff\x2c\x75\xce\x5f\x90\x8d\xf2\x73\x3f\x04\x40\x51\xd0\xd7\x2d\xcc\x28\x08\x9f\x23\x86\xe1\xa7\xac\x0e\x7e\x7b\x6c\xaa\x3c\xc7\x56\x57\x9e\xae\xd8\xcc\x4a\xaf\x7d\x06\xc1\x07\xcf\x27\x1f\xec\x1f\x8c\x28\x38\x3f\xec\x64\xc6\x0d\x40\xf2\xe5\xc2\xb1\xa8\x1a\x3b\x89\x95\xdf\x4e\x9f\x00\x63\xc6\x87\x7e\x4d\xbf\x34\x59\xf9\x59\x9d\x03\x40\x23\x32\xed\xe1\x69\xca\x1b\x51\xa3\x85\xd2\x49\xb3\x56\x64\xa5\xab\xe8\x38\x4e\xf5\x6e\x2d\xf0\xda\xaa\x24\xba\x31\x8f\xbd\x01\xa1\x71\x90\x67\x1d\xa9\x11\xec\xcb\x4c\x3a\x16\x4d\x00\x94\x70\x0a\x1b\x17\x0f\x67\x4f\x44\xc1\x29\xdc\x95\xa3\x4b\xb0\xa5\x8a\xb5\xb3\xdd\x7e\xbc\x77\xa9\x10\x69\x39\xba\xc8\x55\x41\xcd\x52\xf3\x25\x80\xa3\x83\x58\x07\x63\x3f\xbe\x3c\x0b\x83\xf6\xe5\x02\x6e\xdb\x69\x74\x88\x39\xba\x09\xef\x50\x2b\xd5\x64\x2d\x20\xae\x59\xa5\x89\xe6\x70\x9e\xc5\xfe\xd4\xc9\x98\x00\x48\xcf\x57\xa4\xdd\x65\x36\xde\xef\x5d\x59\x8f\x3e\xac\x04\x3f\x4e\xf9\xf6\x94\x45\xae\x70\x0c\x7d\xef\x93\xc3\x49\xe2\x7f\x45\x7b\x00\x65\x02\x0b\xf4\xeb\x98\x82\x61\xd1\x75\xd3\x90\x71\x4c\xe0\x92\x25\xa5\x9a\x32\x36\x60\xa6\x63\x54\xa6\xa0\x50\xe5\x14\x55\x8a\x44\x8d\x57\x55\xa7\x6f\xce\x8a\x1c\xff\x00\xa4\x4c\x91\x1f\x7a\x8c\x4d\x6d\x80\x45\x2b\x7f\x2e\x52\x6c\x43\xed\xc2\x21\x69\xfc\x02\x25\xed\xb5\x31\x1d\x4c\xf7\x1f\x1f\x1f\x1f\xeb\x9e\x4d\x0e\x12\x2c\xb0\xf1\x91\x03\x07\x8a\xcf\x72\x82\x40\x72\xb2\xc2\xe3\x1f\x41\x30\x7c\xa2\xda\x87\x6c\xc1\x0f\x38\x0e\xc1\xfa\x1a\xbc\xea\x8a\x2c\xb8\xde\xee\x57\x61\x3c\x83\xe3\x32\x38\x26\x7b\x2b\x6e\x7b\x1d\xe8\xb5\x85\x18\x9d\x61\xe9\xd8\xbe\x05\xd3\x36\xf9\x99\x3b\xf4\x3e\x17\x5a\xef\x4c\xad\x87\x6f\x90\x40\xa3\x30\x5c\x93\x56\xcb\xae\xaa\xf2\x2e\xab\x01\xbd\x18\xad\xe6\x36\x50\xce\x74\x0d\x0f\xf2\x93\x08\xf2\x94\x14\x59\xfe\xb2\xc7\xa1\x6b\x8e\xfc\xf6\xa5\xed\x50\xb1\xf8\xe7\x3c\x2b\x3f\xff\x94\x1c\x7f\x26\x3f\xff\xa5\x2a\xbb\xc5\xcf\xe8\x5c\x21\xef\xdf\xff\xb4\xf8\xd7\xea\x50\x75\xd5\xe2\x7f\xa0\xfc\x0b\xea\xb2\x63\xe2\xfd\x19\x5d\xd1\xe2\xf7\x4d\x96\xe4\x8b\x3f\x57\x5d\xe5\xfd\x9c\x94\xed\xa2\x4d\xca\xd6\x6f\x51\x93\x9d\x16\xbf\xc7\x98\xbd\x3f\x60\xab\xec\xfd\xb1\xa8\xfe\x92\x0d\xb8\xd4\x9f\x3f\xbf\x14\x87\x8a\x61\x11\xe0\x59\xa8\xcb\x52\x53\x34\x45\x92\x6b\xcf\xd5\xab\xef\xc0\x0b\x67\xf8\xf0\x64\x14\x7f\x53\x43\x0d\x9e\xbe\x13\xf7\x31\xc6\x02\x65\x95\x99\xa3\x0e\xbb\x4f\x6c\xd9\xb1\xd9\x61\x0c\x91\xc4\x97\x24\xe7\xa5\x54\xa2\x42\x49\xa7\x73\x49\x11\xbd\xdf\x4d\x1a\x12\x13\xa9\x87\xf5\x60\x4e\x4d\xc1\x89\x31\x25\x50\xbc\xd7\xe3\x50\xe1\x2d\x93\xa6\xa9\x9e\x01\x25\x91\xf5\x82\xbd\x25\xba\x13\x5e\xb7\x5d\xae\x59\x08\x2d\x22\xe2\x13\x45\xc7\x27\xbe\x3a\x24\x6e\x3a\x01\x37\x7d\xe8\x68\x12\xfb\xfc\xba\x3c\xb4\x3e\x23\xe1\x63\x19\xfc\xd2\xfb\x75\x9e\x1c\x51\x81\xca\xee\xff\x7c\xdf\x55\xf5\xa7\x85\x08\xd2\xe1\x05\x03\x0f\x5c\xd7\xec\xd5\xfc\x49\x14\x8c\x79\x15\x13\x17\xce\xf8\x51\xd4\x15\xd3\xf0\x8a\x24\x88\x70\x48\xe9\x42\x96\x32\xac\xd3\x4c\xc2\x84\x67\xc6\xf9\x93\x7e\x04\x9f\x2c\x5c\xac\x5c\x10\x67\x21\x0b\x85\x14\x8d\x1b\x59\x1e\x1b\x39\x07\x34\x90\x60\x1a\x76\x1d\x81\x88\x86\xad\xc3\x04\xe6\x07\xf5\xd8\xcd\x24\x02\xc9\x4c\xa4\xc5\xa5\xa6\x7c\xa1\xd7\xe5\xa6\x48\x8f\xfa\x72\x67\xf9\xd1\xc1\x96\x05\xc8\xb2\x7b\xcd\x53\x2c\x86\x08\x12\x21\xad\xe2\x32\x64\x5f\xf2\x67\x20\x83\x44\x25\xe1\xe4\xb2\x52\x3f\xef\xb3\x54\xbc\xa2\xa0\x94\x85\x8d\xb3\x9c\xf0\xc8\xcb\x52\xc2\x25\x33\xb5\x8c\x20\x81\x24\x84\x2b\xb8\x7c\xf8\x80\xdf\xa9\x64\x22\x0d\x48\x70\x02\x29\x2e\x36\xf9\xd4\x87\xa8\x61\xa0\xe8\xc8\x62\x50\x14\x1c\x47\x9d\x95\x25\xc9\x94\xc5\x7d\x33\x71\xdb\xda\x8e\x9f\xb8\xe1\x07\x5f\xdc\x00\x03\x18\xd3\x45\x92\xaa\xa6\x99\x20\xe0\x38\x69\x13\x3c\x09\xfc\xe0\xb5\xdd\x7f\xb9\xfa\xff\xc4\xae\xfe\xaf\x12\x9c\x0f\x4a\xb5\xe0\x7f\x38\x2e\x1b\x5e\x55\x78\xfd\x8d\xfc\xa5\x70\x67\x00\x1b\x0d\x89\x1e\x9f\x96\xc9\xa9\xd3\x89\x9b\x97\x1a\xf2\xd2\xe5\x0d\x0b\x0f\x46\xd0\xb6\xf0\xe0\x20\x78\xe1\xa1\x7c\x63\x88\xb9\x6d\xb2\xa3\xf9\x41\x30\x7f\x02\xb6\x1f\xe4\xc5\x07\x09\x39\x7c\x9a\x2f\xed\x3b\xcf\xa7\x89\x70\x5d\x71\x8b\x66\x4f\x27\x61\x77\x16\xcb\xd1\x48\x41\x2b\x12\x49\x7b\xe2\x39\x3c\xb1\x41\x85\x59\x22\x95\xb7\x71\xff\x63\x16\x4f\xf4\x1a\x84\x95\x11\x61\x95\xc4\x81\xe8\x2a\x49\x8a\xd2\x1d\x46\x90\x22\x82\xc6\x90\xd4\xfc\x20\xae\x93\x80\x31\x7c\x12\x3a\x24\xdd\x2f\xe4\x1f\x21\x56\xe3\x52\xc3\x91\x09\x68\xb0\x45\x5e\xac\x4e\x4e\x10\xac\x22\x5e\x71\x19\x35\x6f\xd0\x65\xee\xf4\x61\x97\x98\xa3\x03\x4f\xd3\x19\xdb\x86\xdd\xc2\x9d\xc3\xf0\x8b\x8b\x3c\x0e\xc5\x16\x79\x42\xe2\x7a\x97\xf1\x67\x98\x20\x05\xa0\x55\x3f\x08\xab\xbc\xf9\x93\x58\x46\x0f\x0d\xad\x44\xc5\x12\x59\x04\xa2\xe0\xc0\x45\xdf\xbc\x51\x55\x38\xd3\x87\x55\x66\x8c\x8e\x2b\xdb\x7b\x9b\xcb\x99\xfb\x88\x7a\xdc\x49\xf0\x8c\xaf\x46\x89\x19\x20\x8d\xf9\x1d\x88\x4a\xc6\xc1\x07\x30\x30\x0e\xf5\xcc\xf0\x6c\x55\xa7\xfa\x1e\x7d\x4b\xf7\xb4\xc5\xff\x9b\xe8\xde\xb8\xda\xe6\x30\x64\xb5\x2d\x6f\x10\x3a\xa8\x2b\xc1\x03\x29\x2b\xae\xf8\x41\x5a\x70\xff\x66\xd6\x4a\xe4\x01\x1a\x1f\x81\x15\x7b\xcc\x17\xb3\x15\xb9\xae\x3d\xc2\x8a\x7c\x9e\x56\x4b\xbc\xe9\x3a\x2d\xb2\x46\x35\x9a\xa5\x66\x87\x4d\xd5\x14\x6f\x54\xaf\x65\x3d\xbc\xd9\x72\xa3\x0e\x2e\x5a\x38\x8f\x03\x5f\x36\xa7\x5a\x65\xd6\x3a\x74\xc0\xff\xb3\xbf\x0b\xb0\x72\x7e\x16\x60\x25\xa6\xe7\x57\xe6\x15\x94\x76\x6e\x9c\x8a\xe2\x41\x03\xe0\x00\x04\xbd\xb4\x4a\xf2\x47\x57\xd7\x16\xe5\xfa\x57\x84\xb1\x6e\x29\x7d\xbd\xba\x75\xd5\xf5\x78\xe1\x87\xad\xea\xa4\xf4\x5f\x46\x50\x16\x99\x99\x8e\x01\x40\x67\x09\xd4\xc6\x6c\xfc\x95\xb5\x66\x8e\x92\x66\x7f\xa8\xba\x8b\xf4\x75\x72\x6c\x69\xbf\x57\x4b\x02\x0b\x7a\xec\x8a\x84\x2b\x02\x37\xca\xb5\x10\x5c\x24\x9e\xa3\x39\x25\x47\xe4\x7f\xc9\xda\xec\x90\xe5\x59\xf7\xc2\xcf\x3f\x58\xaa\xec\x07\x0f\x36\x72\x1e\x45\xb7\xd3\x0a\x1b\x63\xf2\xc5\xb7\x01\x41\xc7\x16\x36\xf7\xa5\x5a\x94\x47\xc2\xfd\xb8\x81\xd4\xce\x2f\x51\xdf\x2d\x94\xb2\xba\x41\x5f\x94\x32\x7e\x10\x4f\x89\x89\x68\xa9\xd2\x9c\x0c\xac\x8a\x13\xd3\xa1\xc7\xd5\xe4\x72\xac\x1c\x0f\xc0\x49\x87\xe1\x44\xc6\xff\x22\x9f\x35\xc0\xc3\x1a\xac\xca\xc0\x06\xc6\x0c\xf5\x0c\xe2\x82\xb0\x3c\xc1\x86\x6f\xe1\xc3\x67\x8c\x0c\x58\xe9\x81\x10\x79\x88\xc6\xe3\x5e\xfa\x60\xf9\x75\x53\xd5\xa8\xe9\x5e\xf6\x0c\xea\xc9\x56\xe7\x78\x30\xc4\xc6\x0d\x19\x10\xbb\xc4\xa0\x56\x58\x80\x13\xc3\x0d\x34\x53\xef\x6d\x87\xe2\xd9\x33\xa5\xa1\xcb\x58\x5a\x20\x69\xe8\xc3\x09\x05\x4f\x36\xa1\x73\x79\x7a\x41\x8b\x67\xe1\x93\xb1\x66\xfe\x9c\xfc\x8a\x7d\xb9\x63\x66\x63\x83\xdd\x54\xb9\x3a\xb9\x79\x31\x1e\x44\xe3\xe2\x70\xf0\xcb\xe3\x60\xcd\xfd\x66\xcd\x73\xb4\x50\x93\x1f\x7f\xb0\xef\x08\x8e\x07\x11\x6c\x43\x34\x64\xa4\x85\x46\x69\xa8\x9c\x3f\x50\x2e\xa2\x7a\xe3\x08\x0c\x27\x78\xc1\xca\x0b\xdd\x8d\x02\x29\x1b\x5b\x92\x4a\x2d\x07\x20\xb8\x03\x38\x66\xf6\x13\xbf\x99\xc1\x1d\x15\xde\xa2\xd1\x39\xe5\x2b\x57\x43\x35\x79\x09\xd1\xc0\x2a\x7d\x25\xd1\xf2\x4a\x46\x24\x7c\xcc\x27\x7f\x8f\xab\xc0\x7d\x59\xf9\x0d\xaa\x51\x42\xf2\xd7\x7c\x24\xdf\xb8\xe9\x01\x26\x0b\xa9\xb7\x3d\xc8\x38\xfd\xf8\xa2\x77\xca\xf2\xfc\xfb\x6f\x3e\x44\xab\xd3\xe9\xf4\x8d\xfc\x82\xe3\xce\xdb\x89\x8f\x33\xa6\xdf\x7f\xf3\x53\xbc\x8c\x62\x2f\xc8\xfd\xb5\x47\xff\x17\x2e\x63\x3f\x5c\xc6\x3f\xae\x71\xf9\x3a\x8f\x96\xb1\x1f\x2d\xe3\x1f\x29\xd8\xaf\xc0\x9b\x8a\x66\x89\xff\xbd\x75\x35\x5a\x6e\x49\x57\xc3\x65\x8c\xbb\xf9\xe3\x0a\xff\x5e\xe7\xb8\x7f\x1e\xee\x23\xa9\xdf\xe5\x6b\x9f\xfc\xcf\xda\xd7\xac\x4c\xb3\x63\xd2\x55\x4d\x0b\x18\x2b\xd3\xe3\x63\x83\xd5\x8a\x65\xb3\x65\xb0\x51\x70\x52\x1d\xfe\x48\xd5\x07\xe5\x4d\xaa\x0f\xea\xeb\x11\x20\xb7\x5e\x9e\xdd\xc8\x11\xf2\xec\x57\x1c\x0b\xf0\xa3\xf5\xe4\x88\x50\xc0\x8f\x08\xf1\x43\x15\xa3\xde\xaf\xc6\xfb\xd1\x8d\x5a\x40\xe8\xe3\xdf\x64\x8a\xe3\x1e\x96\x1d\x39\x0f\x53\xf7\x3c\xbd\x3f\x8b\x18\xee\xde\x46\xa7\x87\x89\x02\x5b\xda\x4a\x1e\x7a\xc1\x40\x8e\x76\x1c\xc8\xb9\xa5\xd6\xdd\xb1\x04\x96\x84\x7f\xcf\x5a\x78\x44\xc0\x17\x2b\xd0\x12\xe5\x98\xd4\x24\xa9\x92\x49\x1f\xb1\x8a\xf0\x9c\xa7\x78\x68\x07\xbd\x19\xbf\x5a\x0d\x2a\x87\xe5\x1d\x09\x1f\xd1\x7c\xb1\xa1\xcd\x63\x42\xf9\xe8\xda\x9a\x44\x72\x3e\x1d\xa9\x5b\x57\x01\x6b\xd9\xa6\xea\x92\x0e\x7d\x1b\x76\xd7\xa6\x14\xd7\xb1\x52\xb9\x94\x8b\xee\x2b\x62\x5d\x2a\xb8\x6c\xce\x40\xd8\x92\x21\x7f\x2b\xc9\xfa\x89\x40\xa8\xb0\xf8\x27\x20\xfa\x54\x00\xd1\x49\x69\x1b\x55\xac\xb0\x24\x62\x8d\x85\x10\x74\xcc\xf2\x25\x73\x8c\xa3\x79\x5b\x6a\x32\x07\x68\x55\x08\x7e\x5b\x00\x9f\x91\xc4\x03\x7e\x6c\x07\x26\x42\x85\x6d\xd0\xcf\x4d\xf5\x7c\x0b\x3e\x00\x83\xd3\x1e\x93\x1c\x7d\x1b\x88\xe3\xc2\x8b\x5e\xe3\xe0\x83\xa0\xe3\xd0\xb0\x7f\x15\xbc\x4b\x09\xdb\xd7\x1a\x76\xd5\xc8\x1d\xaf\x0d\x1e\x57\xf2\x89\x15\x18\x5c\x3d\x0a\xd0\x07\x0e\xf3\xe7\x3a\xc8\x46\x58\xb9\xbb\xe6\x01\x7e\x5d\xd2\x75\xf4\x21\x69\x11\x46\x71\x83\x1f\xa4\xf8\xc7\xac\xa8\xab\xa6\x4b\xca\x8e\x37\xe8\xaa\x5a\x85\xed\xaa\x5a\x87\x2b\xb2\x34\xcd\x35\xb4\xb4\x54\x87\x66\x1f\x0c\x14\x68\x5a\x0a\xf0\x30\x8e\x84\xc6\xcb\x58\x65\x68\x07\x75\x80\x95\x8b\x2d\x0e\xe7\x21\x4d\x83\x29\xb1\x97\x00\x9e\x08\xf0\x63\xba\xec\xb3\xfc\xae\xc2\x82\x5d\x86\xd3\x40\xf5\x72\xba\xb4\x36\x3d\xbe\xa0\xf0\x39\xe6\x42\x30\x3d\x8c\xa0\x72\x0a\xbc\x8f\x70\x56\x1f\x47\x10\xb8\x52\xc1\xa1\x1a\x13\xc7\xf4\x15\x05\x95\x63\x96\x72\xc0\xf4\xb6\x81\xc6\xaf\xfa\xc4\xc1\x59\x7e\xdf\x40\xe4\x48\x02\xd5\xcb\x4d\x7c\xd2\x47\x10\x14\x3e\xc9\xbd\x7e\xd3\x03\x05\x2a\x93\xf2\x3b\x05\x67\xe1\x91\x02\x81\x0d\x01\x48\x29\x34\x32\x46\xde\x30\x50\x18\xe3\x37\xe7\x4d\x2f\x0c\xa8\xbc\x69\x0f\x0d\x9c\xe5\x57\x06\x04\x66\x64\x50\xbd\xdc\xc4\x27\x7d\x87\x40\xe1\x93\x5d\x4f\x37\xbd\x11\xa0\xb2\xa9\x3e\x15\x70\x96\xde\x09\x10\x98\x91\x00\xb5\x62\x13\x8b\xf4\x29\x01\x85\x45\x7a\x05\xdc\x94\x10\x52\xe5\x50\x49\xf6\x7f\x16\x33\xfd\x0b\x8c\x88\x60\x6a\xa9\x51\x80\xe4\x1d\x00\x4d\x80\xcd\x67\x00\x96\x66\xe9\xd7\xc5\x27\x26\xeb\x3f\x0b\x99\xfa\x25\x19\x0d\x40\x4a\xa1\x51\x03\x49\x22\x7f\x55\x03\x2f\x59\x87\x40\xfd\x3b\x29\x90\xc2\xb2\x47\x87\x07\xfc\x0c\x5b\xa0\x69\x87\x6b\xd8\xf5\x02\x1d\x54\x79\xad\xd4\xa9\x09\xdd\xda\x92\x96\x6a\x2e\xcd\xa0\xb7\x49\x9d\x1a\x92\x4f\x8c\x62\x22\x24\x97\x46\x01\x17\x42\x00\x77\x7a\x00\xa0\x19\x8c\x4c\xdd\x1c\xc1\x58\xd0\x6a\xec\xd8\x08\xc9\xc3\x5a\x43\x57\x46\x40\x1a\xb8\x02\x60\x83\xf7\x04\xb2\x5f\x02\xe0\x82\x13\x93\x1a\x68\x0e\x6c\x68\xc0\x7d\x88\x04\xae\xf9\x0f\x0e\x4e\x4d\xb9\x7c\x45\x5f\x35\xe3\x1c\x76\xb0\xae\x12\xb8\x66\x59\x39\x38\x37\x72\x12\xb4\x66\xe0\x06\xf1\x89\x9a\x67\xb2\x35\x23\xea\xe6\xb3\x02\xab\x4d\xfd\x81\x6b\x3a\x23\x15\x9e\x25\x59\x93\x99\x87\x52\xbc\x2c\x54\x4f\x3c\x36\xa8\x00\x20\x35\xb0\x18\x86\xb3\x3d\x18\x6c\x6e\xc4\x76\xee\x0d\x38\x80\xcc\x64\x10\x12\xaa\xa9\x0b\x19\xa9\xed\x55\x66\x77\x54\xe2\xa4\x35\x66\x73\x83\x10\x89\x0d\xdd\xc5\x91\x9f\x55\x71\xaf\x0c\x90\xc7\xac\x39\xe6\xe8\xa6\xc5\x19\x10\x2c\x79\x69\x4c\x85\x34\xe0\x0d\xd4\x97\x7c\x45\x20\xf2\x41\xf6\x94\xf5\x73\xbe\xd6\xa6\x7e\x59\x95\xf2\x9d\x7e\x11\x65\xea\xd3\x38\x4c\x09\xcb\x20\x10\x1a\xaa\x81\xf1\x9b\x0c\x2e\xc3\x01\x00\x9d\x74\x39\x99\xfc\x02\x00\x7c\x31\x5a\x1c\x4a\x20\xc0\x23\xca\x73\x05\x12\x17\xc9\xa0\xa7\x1c\xf5\xd2\xdd\x3b\xb0\x8f\x12\x94\x50\x26\x00\x9b\x6f\x95\xe1\x69\x3d\x25\xee\xb6\x70\x91\xf8\x00\xe5\x2c\xf4\xb6\x98\x96\x7b\x5b\x4c\x8b\x9e\xc3\xb8\x48\x7f\x80\x75\x1a\x80\xb6\x98\x1a\x83\xb1\xd7\x0e\xc3\x60\xc9\x2c\x9b\xfa\xc5\xa4\xda\x17\x4e\x9a\x5f\xcc\x56\xfe\xc2\x41\xff\x0b\x87\x29\x50\xcc\x98\x05\xc5\xac\x89\x50\x4c\xce\x85\x62\xce\x74\xb0\xdc\x07\xc4\x06\x75\x6a\x1c\xf2\xb3\xcb\x38\x0c\x50\xce\xe3\x90\x9f\xa7\xc7\x21\x3f\x4f\x8f\x03\x87\x71\x19\x87\x01\xd6\x69\x1c\xf2\xf3\xd4\x38\x8c\xbd\xbe\x6f\x1c\x86\x9b\x95\xa9\xdf\xe7\x53\x03\xd1\xe7\x2e\x03\x31\x40\x39\x0f\x44\x9f\x4f\x0f\x44\x9f\x4f\x0f\x04\x87\x71\x19\x88\x01\xd6\x69\x20\xfa\x7c\x6a\x20\xc6\x5e\xcf\x18\x88\xba\xc9\xca\x0e\xcb\x9e\xfc\x31\x25\x7e\x0a\xe4\x30\x02\x22\xa0\xf3\x20\xd0\x46\x93\xe3\x40\xc1\x26\x87\x42\x00\x73\x19\x0d\x11\xdc\x69\x40\x68\x83\x89\x31\x91\xe4\xe0\x32\x2c\x4b\x54\x1c\xf0\xea\x14\xb5\x75\x55\xb6\xd9\x17\xe8\x91\x58\xf0\x38\x2c\xc9\x25\x31\x24\xce\xd2\x4e\xd2\xa9\x68\xe1\xcc\x1f\xe2\x9a\x4c\x6d\xe1\x69\x25\xe4\x74\xc5\x42\x07\x24\x05\x40\x79\x46\xf6\xed\x81\x8a\xea\xf0\x17\x74\xec\x80\x8a\x2f\x59\x8a\xaa\xe9\x23\x20\xd2\x95\x48\x2d\x43\x11\x0f\x8e\xf5\x2e\xf9\x51\x78\x78\x79\x1c\x8e\x21\x0b\x1f\xbc\xd6\xd1\x72\x17\x6f\xc3\xf5\xea\x03\xd0\x2a\xdc\x18\x5a\xc5\x9b\x65\x14\x43\x2d\xd6\x87\x97\x15\xd4\x60\x0b\x42\x87\x87\x97\x10\x82\xa6\xc7\x09\x48\xa6\x05\xac\xd0\x7a\xd2\x6b\x51\xf7\x48\x2d\x4d\x37\x02\x27\x5f\xd1\x80\x9b\xea\xd9\x6f\xd0\x17\xd4\xb4\x5a\xba\x16\xa1\xca\x40\xc3\xd4\x52\xae\xd5\x1a\x3f\x37\x49\x7d\x1b\xfe\xda\xe3\xff\x68\x30\xf4\xdd\x24\x01\x8a\x16\x80\xb8\x64\x36\x06\x9c\x46\xfa\x27\x1c\xf5\x48\x49\x31\x34\x10\xf2\x81\x24\xb8\x0d\x7f\xcb\xd1\xce\x08\x12\x0a\x20\xa1\x06\x42\x33\x02\x71\x3c\x3c\x3f\x90\x09\x2c\x94\xc0\x24\x6c\xca\x01\x01\x9a\xe8\xe4\x06\xa6\xe3\x20\x55\xb6\xb6\xa8\x4c\xe1\x96\xa8\x4c\x6d\xed\xe8\xf7\x5d\xad\x29\x2d\xb6\x35\x64\x99\x57\xb4\x96\x52\x5e\x16\x1b\x82\x84\x84\xa0\x86\xf6\xb4\x52\xff\x9e\x43\x0e\x81\x31\x41\xc1\x89\x62\x4c\x6d\xb0\x80\xb4\x16\xc8\x4c\x83\x09\x46\x3f\x7b\x66\x6a\x30\x7c\x57\x13\x9b\xf0\x42\x73\x4f\x1a\xd4\x1d\x2f\x52\x1b\x56\xa6\x37\x91\xf5\x44\x2a\xb3\x0a\x40\xd4\x11\xa0\x15\x28\x04\x45\x3f\xe4\x66\x26\x41\xa8\xba\x21\xb7\x32\x6a\x86\xdc\x98\xe9\x05\xd4\xd6\xa4\x15\xa3\x60\x44\x69\x0e\x6d\x4d\xf2\x6c\x51\x7e\x22\xb7\x18\x6e\xe3\xef\xbd\x6a\x38\x04\x50\x51\xee\x04\xd6\x26\x74\xd2\x62\x94\xf8\x08\x0f\x8a\x9b\x40\x4b\xb2\x26\x0d\x4c\x82\x26\xe0\x8a\xc2\x91\x06\x66\x7d\x63\x3d\x10\x05\x44\x5a\xe8\xd2\x31\xef\x37\xd0\xfe\x16\xae\x2e\xab\x2d\xe6\x79\x2d\x8a\xf9\x1e\xc7\x35\x50\xba\xd3\x77\xb5\x85\x93\xfb\x22\xbb\x2d\x6e\x1e\x8c\x61\x9c\xeb\xc4\xda\xc2\xc5\x8f\xb5\x85\x8b\x2b\xe3\x50\x13\xde\xac\x70\x76\x68\xc5\x3d\x3e\xad\x78\x93\x5b\x6b\x8b\xbb\x3d\x1b\xd6\x89\x7b\x9d\x5b\x5b\xbc\xdd\xbf\xb5\xc5\x9b\x5c\x5c\x71\x97\x97\x63\xf2\x9a\xe3\xe8\x46\x39\xb9\xfb\x3a\x2c\x9f\xbb\xdc\x5d\x71\xa7\xc7\x2b\xee\x76\x7a\x92\x44\xdc\xfd\x9e\x2a\x15\x57\xd7\x27\x68\xce\x5d\xde\x6f\xd4\x9a\xbb\x1c\xa0\x2a\x5f\x37\x1f\x88\x89\xce\x70\x83\xc5\x1d\x9e\x50\x1a\x06\x17\x67\xa8\x0e\xc0\xb4\x3f\xd4\x95\xd2\xc9\x25\xaa\x22\x33\x78\x45\xcb\xf6\x2f\xe9\x49\x91\xba\xba\xc5\x22\x9d\xe7\x16\x29\xe6\x7b\xdc\xe2\x40\xe9\x4e\xb7\x58\xa4\x4e\x6e\x91\x6c\x7e\xbb\xb9\x45\x86\x71\xae\x5b\x2c\x52\x17\xb7\x58\xa4\x2e\x6e\x91\x43\xd9\xdd\x62\x91\xba\xba\xc5\x11\x72\x86\x5b\xc4\x8d\xde\xe0\x16\x8b\xf4\x6e\xb7\x88\x75\xe2\x5e\xb7\x58\xa4\x6f\x77\x8b\x45\xfa\x16\xb7\x38\xc8\x6d\x9e\x5b\x64\xf2\x9a\xe3\x16\x47\x39\xb9\xbb\x45\x2c\x9f\x7b\xdc\x22\xe9\xd5\x1d\x6e\x51\x91\xc6\x1c\xb7\x28\x49\xc4\xdd\x2d\xaa\x52\x71\x75\x8b\x82\xe6\xdc\xe5\x16\x47\xad\xb9\xc7\x2d\x6a\xf2\x75\x73\x8b\x98\xa8\xbb\x5b\x54\x06\xc3\xcd\x2d\x4a\xc3\xe0\xe2\x16\xd5\x01\x98\x76\x8b\xba\x52\xba\xb8\x45\x4d\x64\xee\x6e\x91\x7f\x8d\x23\x3d\xc9\xcf\xae\x6e\x31\x3f\xcf\x73\x8b\x14\xf3\x3d\x6e\x71\xa0\x74\xa7\x5b\xcc\xcf\x4e\x6e\x91\x7c\x8b\x74\x73\x8b\x0c\xe3\x5c\xb7\x98\x9f\x5d\xdc\x62\x7e\x76\x71\x8b\x1c\xca\xee\x16\xf3\xb3\xab\x5b\x1c\x21\x67\xb8\x45\xdc\xe8\x0d\x6e\x31\x3f\xdf\xed\x16\xf3\xf3\xfd\x6e\x31\x3f\xbf\xdd\x2d\xe6\xe7\xb7\xb8\xc5\x41\x6e\xf3\xdc\x22\x93\xd7\x1c\xb7\x38\xca\xc9\xdd\x2d\x62\xf9\xdc\xe3\x16\x49\xaf\xee\x70\x8b\x8a\x34\xe6\xb8\x45\x49\x22\xee\x6e\x51\x95\x8a\xab\x5b\x14\x34\xe7\x2e\xb7\x38\x6a\xcd\x3d\x6e\x51\x93\xaf\x9b\x5b\xc4\x44\xdd\xdd\xa2\x32\x18\x6e\x6e\x51\x1a\x06\x17\xb7\xa8\x0e\xc0\xb4\x5b\xd4\x95\xd2\xc5\x2d\x6a\x22\x73\x77\x8b\xc3\xe1\x08\xd2\x95\x3e\x77\xf5\x8b\x7d\x3e\xcf\x2f\x52\xcc\xf7\xf8\xc5\x81\xd2\x9d\x7e\xb1\xcf\x9d\xfc\x22\x39\x1a\xe2\xe6\x17\x19\xc6\xb9\x7e\xb1\xcf\x5d\xfc\x62\x9f\xbb\xf8\x45\x0e\x65\xf7\x8b\x7d\xee\xea\x17\x47\xc8\x19\x7e\x11\x37\x7a\x83\x5f\xec\xf3\xbb\xfd\x22\xd6\x89\x7b\xfd\x62\x9f\xbf\xdd\x2f\xf6\xf9\x5b\xfc\xe2\x20\xb7\x79\x7e\x91\xc9\x6b\x8e\x5f\x1c\xe5\xe4\xee\x17\xb1\x7c\xee\xf1\x8b\xa4\x57\x77\xf8\x45\x45\x1a\x73\xfc\xa2\x24\x11\x77\xbf\xa8\x4a\xc5\xd5\x2f\x0a\x9a\x73\x97\x5f\x1c\xb5\xe6\x1e\xbf\xa8\xc9\xd7\xcd\x2f\x62\xa2\xee\x7e\x51\x19\x0c\x37\xbf\x28\x0d\x83\x8b\x5f\x54\x07\x60\xda\x2f\xea\x4a\xe9\xe2\x17\x35\x91\x99\xfc\xe2\x92\x24\xe8\xa2\xc7\xe5\xc7\x5c\x5d\xb2\x95\xc4\x00\xf4\x4c\xbf\xf0\x88\xa2\x0e\x42\x0e\xb8\x51\x08\xe5\x78\x9b\xed\x0b\x26\x6e\xd9\x16\xd3\x0c\xb4\x85\x0b\x0f\xfc\xfc\x35\xc8\x86\x75\xcb\x18\xb7\x2e\xd2\x69\x3e\x8a\xd4\x85\x0f\x7e\xfe\xd8\x95\x8f\x31\x46\x27\xa3\x71\x9e\xe6\x03\x87\xdb\xd3\x7c\xf0\xf3\xb7\xae\x7c\x08\x8b\x22\xdc\xbc\xcf\xa7\x19\xc1\xeb\x9b\x69\x46\xf8\xf9\x53\x98\x91\xe5\xf0\x4e\x17\x99\xb1\xc3\x11\x3b\x75\xbe\x0e\x60\xf4\xec\x9d\xfa\x74\x9f\x08\xca\x4f\xb6\xe1\xf9\xdb\x65\xc7\xf1\xa4\x1b\xfd\x0d\x82\xf2\x63\x80\xfa\xc1\x40\x10\x9c\x9f\x99\xd3\x4f\xd1\x81\xe0\xe4\xc5\x27\xe5\x01\x28\x03\xc7\xd9\xf1\xb3\xf0\xc4\x10\xbf\xb0\x4e\xcb\xc7\x26\x4f\x42\x9f\xe4\x9a\xd7\x25\xc1\x4e\xee\xf3\xb0\x84\xfc\xb4\x80\xdf\xaf\x19\xab\x95\x07\xa9\x78\x52\x15\x2d\xd5\xfa\x4a\xc1\x31\xbe\x23\xf1\x4f\xed\xb5\xc6\x74\x5b\xef\xdb\x6f\x0d\x3c\x3f\x78\x55\xe3\x7d\xab\xb0\xfb\xf0\x70\x5b\xd2\xbf\x64\x46\xe4\xa6\x6a\x27\xd9\x01\xc5\x91\xb1\x28\x78\x7d\x5d\xb6\x8d\x5f\x95\xf9\x0b\x70\x9e\x91\xe9\xf5\x98\x64\x25\x14\x92\xd6\x6b\xa7\x39\x9f\x48\x6a\x14\xbc\xbe\x66\x59\x36\x83\x07\x25\xbf\x39\x5e\xe8\x0a\xe7\x1e\x19\x61\x9f\x5c\xe7\x24\x0f\x9b\xd1\xdc\x21\x0b\xa0\x86\xfc\xa5\x2a\xa2\xf8\x56\x23\xe3\x90\xfc\x3d\x30\x46\x92\x1d\xe6\x88\x72\x46\x13\xc7\x68\x09\xd7\x5f\x97\x34\xc1\x3b\xbd\x56\x26\x3e\x5d\x1a\xb2\xb4\xfc\x91\xf6\x76\x69\xb0\x8d\x1f\x44\x8d\xa1\x6d\x94\xe6\xa4\x55\xa8\x3d\x7b\x0a\xb5\xa4\x97\xa7\x84\xc6\xa4\xd9\x4a\x6b\x0b\x92\xa5\xc6\x41\x68\xae\x1e\x90\x7e\xf6\xa3\x98\x25\x52\x88\xe2\x0f\x72\x4d\x1c\xdc\xf8\xf3\x4d\x4a\xcd\x96\xb7\xd9\xaa\x6d\xc2\x80\x37\x0a\x03\xb5\x15\xb1\x41\xe3\xb0\x88\x95\x17\xcc\x06\xcf\x50\x21\xe3\xbc\x60\x3e\x86\xd7\xa8\x94\xaa\xed\xd0\x6a\xab\xb6\xc2\x9c\x08\x67\x6a\xe5\x4a\xc2\x8a\xa0\x16\x62\x6d\x41\x7b\x21\x3c\x96\xa4\x34\x2f\x2e\x03\x80\x81\x00\x36\xfc\x5f\x18\x9a\xd1\x07\x04\xc1\x97\x67\x0d\xea\x32\x40\x89\xaf\xd1\x89\x60\x5f\x14\xa9\xca\x48\xbe\xa8\x3d\x95\x1b\xb3\xa5\x09\x4a\xfd\x1c\x47\x5f\xf4\x82\x9b\xe9\x74\xf2\x64\xe6\x27\xf0\xe9\xbf\xa3\x90\xbe\x58\xbd\x04\x2d\xdc\x90\x7e\x5d\x16\x7e\x70\xe3\x39\xfc\x25\x39\x74\x7e\xb0\x58\x16\x2f\x43\xb5\x7e\xe9\xb7\x68\x08\x48\x3f\x82\x00\x17\x7e\x8b\x83\x8a\x07\xba\xeb\x5b\xe4\x2a\x2a\xfd\xa2\x6f\xe1\x87\x9c\x53\xfd\x52\x63\xd1\xf9\x21\x21\x13\x4a\x69\xc0\x75\xb8\x86\xc0\xf5\x23\x9c\xf8\x44\x9b\xc2\xb8\x82\x91\xbf\x0e\xa0\x83\xe6\x2a\x52\xe1\xa9\x38\xb9\x0b\xd1\x4d\x7c\xa3\x56\xe9\x41\x44\xe8\x45\x5a\x22\x73\xa5\x03\x11\xa1\x15\x01\x29\xa4\x15\xfe\x15\x7c\xe2\xeb\x06\x0a\xfb\x0a\xca\x31\x87\xbe\xcc\xfd\x8a\x73\x1f\xea\xcc\xaf\x08\xb1\x95\xc8\xbc\x06\xd5\x10\xa8\x7e\x84\x6a\x86\x0c\x31\x0a\xeb\x0a\x36\x7e\xf5\x5d\xe7\x5c\x41\x48\x2f\xbb\x6b\x8c\xaf\x07\xc6\x21\xb9\xaf\x09\xb1\xb5\xc4\x3a\x24\xf8\x35\xa1\xb5\x56\x98\x87\x24\xaf\x60\xe4\xec\x43\xa2\x57\x90\xd2\x0e\x00\xb2\x8f\x79\x17\xd4\x5b\xba\x45\xe7\xc7\x84\x5c\x2c\x76\x40\x83\x6a\x08\x54\x3f\x42\xb1\xac\x6b\x3a\xf3\x0a\x36\xc6\xbc\x06\x98\xab\x08\x69\xd6\x36\x05\xac\xf6\x83\xf1\x65\x21\xa9\x82\x18\x98\xfa\x65\xac\xd7\x2d\x4c\x4d\x2c\x4c\xdd\x0b\x30\x80\x89\xa9\x0f\x1a\x26\xc8\xc6\xd4\xb9\x86\x4c\x37\x32\xb5\x1f\xde\xe4\x57\x7e\x14\x9e\x43\x42\x29\x94\x78\x06\x00\x89\x99\xa9\x7b\x01\xd0\x64\x67\xea\x83\x86\xd3\x68\x68\xea\x5c\x43\x6b\xb0\x34\xb5\x1f\xc9\xd9\xb9\x95\x6e\x44\x84\x64\x24\x77\x03\xe8\x45\x44\xc8\x45\x6a\x2f\x80\x4e\xa8\x18\x4d\xd6\xa6\xce\x35\xa4\xb0\xb9\xa9\xfd\x95\xf4\xba\xa9\xd2\x83\x15\xa1\xb7\x92\x6f\xb6\xe8\x1d\x58\x11\x5a\x2b\xa5\x03\x1a\xe0\x41\xc3\x67\x30\x39\x75\xae\xa1\x04\x6d\x4e\xed\xaf\x47\xee\xa1\x11\x58\x13\x7a\x6b\x99\x7f\x68\x08\xd6\x84\xdc\x5a\xed\x01\x34\x06\x2a\x4e\xa3\xdd\xa9\x73\x0d\xad\xc1\xf0\xd4\x7e\x3c\xf4\x43\x9b\xdb\xc4\xf2\xd4\x2f\x23\x08\x68\x7a\x6a\x62\x7a\xea\x5e\x00\x83\x6d\x4f\x7d\xd0\xf0\x19\x8c\x4f\x9d\x6b\x28\x41\xeb\x53\xf8\xe5\xb0\x68\xf0\xc1\x55\x43\x49\x9d\x7c\x29\xad\x1b\x20\xd0\x86\x82\xf6\x02\x28\x4b\xe9\x0e\xae\x1d\x34\xbc\xac\x27\x10\x74\xae\xa3\x66\x4f\x51\x00\x2b\x88\x32\x1a\x3b\x04\xf5\x87\x3a\xfd\x32\x92\xfb\x03\x75\x87\x3a\xfd\x32\x52\xbb\x03\xf5\x46\xc5\x3a\xf4\x06\xea\x8c\x8a\x58\x78\x57\x43\xe9\xcb\xb0\xa0\xf0\x81\x15\x45\x49\x17\x01\xa5\xb4\xa6\xd0\x01\x1b\x0a\xd8\x0b\x80\x3c\xd7\x3e\xd0\x11\x15\x27\xef\x08\xb0\xb4\xd0\xd0\xd2\x7e\xe8\xab\x8b\x72\x3d\x76\x03\x1c\x13\xba\x1c\x28\xd7\x72\x47\xc0\x41\xa1\xcb\x81\x72\xad\x76\x05\x1c\x15\x15\xef\xd0\x19\x70\x58\x54\xd4\xac\x3b\xd0\xb8\x0c\x8b\x0d\x1f\x58\x6d\x94\x74\x81\x50\x4a\xeb\x0d\x1d\xb0\xa1\x80\xbd\x00\xc8\x3a\x03\xac\x39\x34\x9c\xbc\x2b\xc0\xb2\x43\x43\x4b\x3b\xa2\xcf\x7d\x12\x50\xb2\x8e\x68\x01\x65\x47\xaa\x09\x55\x01\x8e\xf4\x45\x83\x6d\x38\x6c\x2f\xc1\x36\x70\xa8\x7a\x80\x31\xb3\x1e\x69\xe0\x39\x8c\x9c\x74\x4a\x01\xb6\xbc\xf1\xec\xb7\x96\x48\x0e\xd7\x11\x7e\x04\x20\x30\x9e\x63\x80\xbd\x04\x08\x47\x75\x20\x4e\x43\x6c\x07\xa2\x85\x22\xbc\x76\x2a\xc8\xc3\x00\x9c\xea\x74\xa8\xc7\xa0\x7b\x09\xda\x12\xf0\x81\xd8\x6d\x61\x1f\x48\xc0\x18\xfc\xb5\x13\xf1\x1f\xae\xe7\xe4\x27\xa3\x40\x06\xdc\x4b\xc0\xe6\x58\x10\xc4\x6d\x89\x08\x41\xf4\xa6\xb8\xb0\xb5\x87\x86\xb8\x9a\xd3\x9e\x0a\x10\x19\x6c\x2f\xc1\x1a\xc3\x44\x10\xb3\x39\x58\x04\x91\x1b\x42\xc6\x76\x2a\x6a\xc4\x00\x9c\xf6\x74\xec\xc8\xa0\x7b\x09\xda\x12\x41\x82\xd8\x6d\x71\x24\x48\xc0\x18\x4d\xb6\xf6\x80\x12\x57\x73\xea\x53\x61\x25\x83\xed\x25\x58\x63\x70\x09\x62\x36\x87\x98\x20\x72\x43\xa0\x49\x8c\x8b\x29\xd6\xa4\x26\xa8\x7e\x91\xa0\xc0\x88\x93\x41\xf6\x32\x24\x1c\x77\xc2\x58\x0d\xd1\x27\x8c\x18\x8a\x41\x89\x35\xb1\x86\xa1\xd4\xf0\xd4\x2f\x12\xa8\x39\x18\x65\xe0\xbd\x0c\x6e\x09\x49\x61\xfc\xb6\xc0\x14\x26\x61\x0c\x4f\x89\x59\xb1\x45\xa8\xd4\x00\xd5\x2f\x12\xa4\x31\x4e\x65\xd0\xbd\x0c\x6d\x8e\x56\x61\xec\x96\x98\x15\x26\x60\x8a\x5c\x89\x7d\xb1\x04\xaf\xd4\x10\xd5\x2f\x12\xa0\x29\x84\x65\xc0\xbd\x0c\x6c\x0c\x64\x61\xdc\xe6\x70\x16\x46\x6f\x08\x6a\x89\x71\xb1\xc6\xb5\xd4\x0e\xd5\x2f\x12\xa8\x39\xba\x65\xe0\xbd\x0c\x6e\x89\x71\x61\xfc\xb6\x48\x17\x26\x61\x8c\x77\x89\xa5\xb1\x84\xbc\xd4\x24\xd5\x2f\x12\xa0\x29\xf0\x65\xc0\xbd\x0c\x6c\x0c\x7f\x61\xdc\xe6\x20\x18\x46\x6f\x08\x85\xdb\xe9\x68\x98\x80\x70\xf3\xec\x12\x13\xf3\x06\xbd\xdc\xc0\x16\x19\x1b\x68\x58\xe3\x63\x03\x19\x73\x94\xdc\x4e\x06\xca\x04\x62\x60\x63\x3a\x5c\xe6\xf0\xbd\x0c\x6f\x09\x9a\x0d\x14\x6c\xa1\xb3\x81\x88\x31\x80\x6e\xa7\x62\x68\x02\x30\xf0\x30\x19\x49\x73\xf0\x5e\x06\x37\xc7\xd3\x06\xfc\x96\xa8\xda\x40\xc2\x14\x5b\xb7\xd3\xe1\x35\x01\x19\x78\x70\x08\xb2\x79\x83\x5e\x6e\x60\x0b\xb5\x0d\x34\xac\x01\xb7\x81\x8c\x39\xec\x6e\xa7\x22\x6f\x02\x30\x70\x31\x19\x7f\x73\xf0\x5e\x06\x37\x47\xe1\x06\xfc\x96\x58\xdc\x40\xc2\x14\x91\xb7\x93\x41\x39\x83\xe0\x4c\x38\x84\xe6\x63\x8b\x5e\x6d\x61\x0c\xd0\x2d\x54\xcc\x61\xba\x85\x10\x14\xac\x5b\x4e\x60\x15\x7e\x91\x9a\xa3\x75\x5c\x47\x38\x13\x80\xc0\x68\x9d\x01\xf6\x12\x20\x1c\xad\x83\x38\x0d\xd1\x3a\x88\x16\x8a\xd6\x8b\x74\x22\x5a\xc7\x00\x9c\xea\x74\xb4\xce\xa0\x7b\x09\xda\x12\xad\x83\xd8\x6d\xd1\x3a\x48\xc0\x18\xad\x17\xa9\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\x17\xa9\x35\x5a\xc7\xd5\x9c\xf6\x54\xb4\xce\x60\x7b\x09\xd6\x18\xad\x83\x98\xcd\xd1\x3a\x88\xdc\x10\xad\x17\xe9\x44\xb4\x8e\x01\x38\xed\xe9\x68\x9d\x41\xf7\x12\xb4\x25\x5a\x07\xb1\xdb\xa2\x75\x90\x80\x31\x5a\x2f\x52\x6b\xb4\x8e\xab\x39\xf5\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\x27\xc6\xc5\x14\xad\x53\x13\x54\xbf\x48\x50\x60\xb4\xce\x20\x7b\x19\x12\x8e\xd6\x61\xac\x86\x68\x1d\x46\x0c\x45\xeb\xc4\x9a\x58\xa3\x75\x6a\x78\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xac\xd8\xa2\x75\x6a\x80\xea\x17\x09\xd2\x18\xad\x33\xe8\x5e\x86\x36\x47\xeb\x30\x76\x4b\xb4\x0e\x13\x30\x45\xeb\xc4\xbe\x58\xa2\x75\x6a\x88\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\xc4\xb8\x58\xa3\x75\x6a\x87\xea\x17\x09\xd4\x1c\xad\x33\xf0\x5e\x06\xb7\x44\xeb\x30\x7e\x5b\xb4\x0e\x93\x30\x46\xeb\xc4\xd2\x58\xa2\x75\x6a\x92\xea\x17\x09\xd0\x14\xad\x33\xe0\x5e\x06\x36\x46\xeb\x30\x6e\x73\xb4\x0e\xa3\x37\x44\xeb\x45\x3a\x19\xad\x13\x10\x6e\x9e\x5d\xa2\x75\xde\xa0\x97\x1b\xd8\xa2\x75\x03\x0d\x6b\xb4\x6e\x20\x63\x8e\xd6\x31\x98\x3d\x5a\x27\x10\x03\x1b\xd3\xd1\x3a\x87\xef\x65\x78\x4b\xb4\x6e\xa0\x60\x8b\xd6\x0d\x44\x8c\xd1\x3a\x86\xb2\x46\xeb\x04\x60\xe0\x61\x32\x5a\xe7\xe0\xbd\x0c\x6e\x8e\xd6\x0d\xf8\x2d\xd1\xba\x81\x84\x29\x5a\xc7\x40\x13\xd1\x3a\x01\x19\x78\x70\x88\xd6\x79\x83\x5e\x6e\x60\x8b\xd6\x0d\x34\xac\xd1\xba\x81\x8c\x39\x5a\xc7\x60\xd6\x68\x9d\x00\x0c\x5c\x4c\x46\xeb\x1c\xbc\x97\xc1\xcd\xd1\xba\x01\xbf\x25\x5a\x37\x90\x30\x45\xeb\x3c\x07\x89\x39\x5a\x67\x10\x9c\x09\x87\x68\x7d\x6c\xd1\xab\x2d\x8c\xd1\xba\x85\x8a\x39\x5a\xb7\x10\x72\x8c\xd6\xf9\x3d\xa5\xc2\xcf\xcf\xe6\x68\x1d\xd7\x11\xce\x04\x20\x30\x5a\x67\x80\xbd\x04\x08\x47\xeb\x20\x4e\x43\xb4\x0e\xa2\x85\xa2\xf5\xfc\x3c\x11\xad\x63\x00\x4e\x75\x3a\x5a\x67\xd0\xbd\x04\x6d\x89\xd6\x41\xec\xb6\x68\x1d\x24\x60\x8c\xd6\xf3\xb3\x3d\x5a\xc7\xf5\x9c\xfc\x64\xb4\xce\x80\x7b\x09\xd8\x1c\xad\x83\xb8\x2d\xd1\x3a\x88\xde\x14\xad\xe7\x67\x6b\xb4\x8e\xab\x39\xed\xa9\x68\x9d\xc1\xf6\x12\xac\x31\x5a\x07\x31\x9b\xa3\x75\x10\xb9\x21\x5a\xcf\xcf\x13\xd1\x3a\x06\xe0\xb4\xa7\xa3\x75\x06\xdd\x4b\xd0\x96\x68\x1d\xc4\x6e\x8b\xd6\x41\x02\xc6\x68\x3d\x3f\x5b\xa3\x75\x5c\xcd\xa9\x4f\x45\xeb\x0c\xb6\x97\x60\x8d\xd1\x3a\x88\xd9\x1c\xad\x83\xc8\x0d\xd1\x3a\x31\x2e\xa6\x68\x9d\x9a\xa0\xfa\x45\x82\x02\xa3\x75\x06\xd9\xcb\x90\x70\xb4\x0e\x63\x35\x44\xeb\x30\x62\x28\x5a\x27\xd6\xc4\x1a\xad\x53\xc3\x53\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x66\xc5\x16\xad\x53\x03\x54\xbf\x48\x90\xc6\x68\x9d\x41\xf7\x32\xb4\x39\x5a\x87\xb1\x5b\xa2\x75\x98\x80\x29\x5a\x27\xf6\xc5\x12\xad\x53\x43\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\x27\xc6\xc5\x1a\xad\x53\x3b\x54\xbf\x48\xa0\xe6\x68\x9d\x81\xf7\x32\xb8\x25\x5a\x87\xf1\xdb\xa2\x75\x98\x84\x31\x5a\x27\x96\xc6\x12\xad\x53\x93\x54\xbf\x48\x80\xa6\x68\x9d\x01\xf7\x32\xb0\x31\x5a\x87\x71\x9b\xa3\x75\x18\xbd\x21\x5a\xcf\xcf\x93\xd1\x3a\x01\xe1\xe6\xd9\x25\x5a\xe7\x0d\x7a\xb9\x81\x2d\x5a\x37\xd0\xb0\x46\xeb\x06\x32\xe6\x68\x1d\x83\xd9\xa3\x75\x02\x31\xb0\x31\x1d\xad\x73\xf8\x5e\x86\xb7\x44\xeb\x06\x0a\xb6\x68\xdd\x40\xc4\x18\xad\x63\x28\x6b\xb4\x4e\x00\x06\x1e\x26\xa3\x75\x0e\xde\xcb\xe0\xe6\x68\xdd\x80\xdf\x12\xad\x1b\x48\x98\xa2\x75\x0c\x34\x11\xad\x13\x90\x81\x07\x87\x68\x9d\x37\xe8\xe5\x06\xb6\x68\xdd\x40\xc3\x1a\xad\x1b\xc8\x98\xa3\x75\x0c\x66\x8d\xd6\x09\xc0\xc0\xc5\x64\xb4\xce\xc1\x7b\x19\xdc\x1c\xad\x1b\xf0\x5b\xa2\x75\x03\x09\x53\xb4\xce\x53\xa3\x99\xa3\x75\x06\xc1\x99\x70\x88\xd6\xc7\x16\xbd\xda\xc2\x18\xad\x5b\xa8\x98\xa3\x75\x0b\x21\xc7\x68\x7d\xc8\xe6\x51\xf8\x7d\x6e\x0e\xd7\xfb\x9c\x85\xd6\x02\x10\x18\xae\xf7\xfc\x4a\xb2\x08\x08\x87\xeb\x20\x4e\x43\xb8\x0e\xa2\x85\xc2\xf5\x3e\x9f\x08\xd7\xfb\x9c\x05\xd4\x02\xa4\x39\x5c\xef\xf9\x1d\x65\x11\xda\x12\xae\x83\xd8\x6d\xe1\x3a\x48\xc0\x18\xae\xf7\xb9\x3d\x5c\xef\x73\x16\x52\x0b\x80\xc6\x70\xbd\xe7\x17\x98\x45\x60\x73\xb8\x0e\xe2\xb6\x84\xeb\x20\x7a\x53\xb8\xde\xe7\xd6\x70\xbd\xcf\x59\x50\x2d\xc0\x99\xc2\xf5\x9e\xdf\x6e\x16\x61\x8d\xe1\x3a\x88\xd9\x1c\xae\x83\xc8\x0d\xe1\x7a\x9f\x4f\x84\xeb\x7d\xce\x02\x6a\x01\xd2\x1c\xae\xf7\xfc\xd2\xb3\x08\x6d\x09\xd7\x41\xec\xb6\x70\x1d\x24\x60\x0c\xd7\xfb\xdc\x1a\xae\xf7\x39\x0b\xaa\x05\x38\x53\xb8\xde\xf3\x3b\xd1\x22\xac\x31\x5c\x07\x31\x9b\xc3\x75\x10\xb9\x21\x5c\x27\xc6\xc5\x14\xae\x53\x13\x54\xbf\x48\x50\x60\xb8\xde\xf3\x2b\xd3\x12\x24\x1c\xae\xc3\x58\x0d\xe1\x3a\x8c\x18\x0a\xd7\x89\x35\xb1\x86\xeb\xd4\xf0\xd4\x2f\x12\xa8\x39\x5c\xef\xf9\x1d\x6a\x09\xdc\x12\xae\xc3\xf8\x6d\xe1\x3a\x4c\xc2\x18\xae\x13\xb3\x62\x0b\xd7\xa9\x01\xaa\x5f\x24\x48\x63\xb8\xde\xf3\x0b\xd6\x12\xb4\x39\x5c\x87\xb1\x5b\xc2\x75\x98\x80\x29\x5c\x27\xf6\xc5\x12\xae\x53\x43\x54\xbf\x48\x80\xa6\x70\xbd\xe7\xb7\xaf\x25\x60\x63\xb8\x0e\xe3\x36\x87\xeb\x30\x7a\x43\xb8\x4e\x8c\x8b\x35\x5c\xa7\x76\xa8\x7e\x91\x40\xcd\xe1\x7a\xcf\x2f\x65\x4b\xe0\x96\x70\x1d\xc6\x6f\x0b\xd7\x61\x12\xc6\x70\x9d\x58\x1a\x4b\xb8\x4e\x4d\x52\xfd\x22\x01\x9a\xc2\xf5\x9e\xdf\xd9\x96\x80\x8d\xe1\x3a\x8c\xdb\x1c\xae\xc3\xe8\x0d\xe1\x7a\x9f\x4f\x86\xeb\x7d\xce\x43\x69\x11\xd8\x12\xae\xf7\xc3\x35\x6e\xa9\x81\x2d\x5c\x37\xd0\xb0\x86\xeb\x06\x32\xe6\x70\x1d\x83\xd9\xc3\xf5\x3e\xe7\xc1\xb4\x08\x6b\x0e\xd7\xfb\xe1\x8e\xb7\x04\x6f\x09\xd7\x0d\x14\x6c\xe1\xba\x81\x88\x31\x5c\xc7\x50\xd6\x70\xbd\xcf\x79\x38\x2d\x82\x1a\xc3\xf5\x7e\xb8\x00\x2e\x81\x9b\xc3\x75\x03\x7e\x4b\xb8\x6e\x20\x61\x0a\xd7\x31\xd0\x44\xb8\xde\xe7\x3c\x94\x16\x81\x2d\xe1\x7a\x3f\xdc\x0b\x97\x1a\xd8\xc2\x75\x03\x0d\x6b\xb8\x6e\x20\x63\x0e\xd7\x31\x98\x35\x5c\xef\x73\x1e\x4e\x8b\xa0\xc6\x70\xbd\x1f\xae\x8d\x4b\xe0\xe6\x70\xdd\x80\xdf\x12\xae\x1b\x48\x98\xc2\x75\x9e\xb1\xd5\x1c\xae\xf7\xf9\x18\x48\xcb\xd0\xa6\x70\xbd\x17\xee\x92\x2b\x2d\x8c\xe1\xba\x85\x8a\x39\x5c\xb7\x10\x02\xc3\xf5\x65\x87\xfa\xce\x2f\xaa\xb2\x22\x99\xfc\x6e\xa7\xaa\xec\xfc\x53\x52\x64\xf9\xcb\xfe\xe7\x7f\xf9\xa9\x2a\x2b\xff\x5f\xd1\xf9\x9a\x27\xcd\xe2\x27\x54\xe6\xd5\xe2\xa7\xaa\x4c\x8e\xd5\xe2\x0f\x55\xd9\x56\x79\xd2\x2e\x7e\xcc\x0e\xa8\x49\xba\xac\x2a\x3d\x0c\xbd\xf8\x43\x75\x6d\x32\xd4\x78\x7f\x46\xcf\x8b\x01\xad\xc8\x24\x21\xc8\xd2\x36\xdf\xc8\x0f\x92\x1b\x76\xcf\x8a\x34\x50\x92\x13\x5c\x4f\x36\xa8\xc1\xb1\xec\xe1\x7a\x9e\x44\x0d\xb2\x6b\xae\xe5\x31\xe9\x90\x9a\xb8\xf3\x89\xd4\x0e\x85\x28\xcf\xb3\xba\xcd\x5a\x20\xf5\x22\x43\x44\xb2\x92\x0a\x5d\x50\x53\x93\x92\x2a\x9a\x96\x54\x80\xd2\x72\x93\x92\x3a\x96\x90\x57\x80\xd3\x12\xf2\x9a\x93\x0c\x90\x56\x3c\x7f\xed\x14\x43\x43\x0e\xdb\x49\x9e\xc6\xd7\xd6\x6c\x6c\x59\xae\x53\x50\xe5\x4a\xdd\xf8\x1a\x72\xda\x4e\xf2\x35\x3e\x77\x33\x93\x2f\x7e\x70\x84\x8e\xde\xd9\x8d\xaf\x21\xc7\xed\x24\x5f\xe3\x7b\x03\x33\xf9\x1a\xb6\xc8\x48\x3b\x9e\xef\x76\x8a\xb1\x21\xe7\xed\x24\x63\x63\xc2\x67\x2b\x63\xac\x17\xd5\x33\x6a\x8e\x49\x8b\x6e\x6c\xb6\x24\x65\x7b\xaa\x9a\x62\x3f\x54\x68\xf8\xaf\x75\x0d\x37\x19\x2a\x74\x7d\x4f\xea\xac\x4b\xf2\xec\x57\xad\xcd\x58\x23\x36\x22\x86\xe9\x99\xe4\x6d\xf4\x73\x9a\xe9\x77\x2c\xd9\xaf\x82\xc0\x0a\x8c\x1a\x09\x9c\x95\x99\x9a\x50\x0b\x23\xb5\x58\x9b\x09\x1c\xaa\x3c\x95\x60\xb7\x76\x58\x85\x17\x5a\xa4\x35\x20\x22\x38\x52\xc8\xb6\x7b\xc9\xd1\x9e\x96\xe8\xf6\x11\x5b\xa7\x1b\x4d\x20\xf9\xfe\x74\x3a\x69\x00\x75\x93\x15\x49\xf3\xc2\x41\x82\x60\x7b\x90\xa0\x12\x09\x8c\xe6\x87\x5d\x28\x85\x17\x6c\x15\x47\x0c\xf1\xe6\xb0\xd2\xad\x05\x3a\x56\x65\x2a\x50\xda\x1c\xb7\xf1\x36\xd5\x29\x0d\x80\x32\xad\xb1\x58\xa2\xb6\x7e\x5c\x9f\xe2\xb5\x4e\xed\x7a\x3c\xa2\xb6\xe5\x50\xd1\x2e\xd9\xae\x63\x80\x16\x05\x53\x28\xb1\x42\x89\x4e\xf8\xb8\x79\x8c\x74\xf1\x66\xe5\xa9\x1a\x40\xb6\x49\x74\xd8\xe9\x44\x30\x8c\x4c\x81\x94\xc8\x42\x3b\x6d\x36\x5b\xbd\x1b\xcf\x49\x53\x66\xe5\x79\x1c\xbf\x63\x18\x6c\x75\x0a\x0c\x4c\x26\xc2\x0b\x25\x3a\x87\x64\x77\x90\xf5\x8f\xc0\xa6\x49\x79\x1e\x81\xd2\xe3\x2a\x86\xa4\x45\xa1\x64\x2a\xac\x4c\x22\x92\x6c\xc3\x34\x4a\x74\xfb\x47\xe6\x25\xef\xca\xee\xf4\x78\x4a\x74\x1a\x04\x48\x26\x41\x8b\x24\x0a\xc7\x43\xba\x4a\x75\x0a\x69\xd2\x7c\xe6\x20\xab\xf5\x2a\x59\x07\x50\x27\x9a\xcf\x6a\x17\x9a\xcf\xca\x60\x47\xe1\x3a\xdc\x68\xe8\x0f\x55\x3a\x68\x6f\x14\x46\x71\xf4\xa8\xfb\x9e\x6b\x87\x52\xa3\x86\x33\x34\x79\x72\xfc\xec\xc7\x01\x03\x13\x13\x0f\xcb\x69\x87\xc7\x09\x3c\x42\x5f\xda\x9c\x40\x7f\x58\x84\x41\xf0\x01\x6c\x71\xc9\x52\xba\x52\xdb\x07\x1f\x03\x2f\x79\xd2\xb2\xc7\xd2\x95\x8c\x90\xc4\x58\xcf\x35\x9b\x95\x59\x97\x25\xb9\x90\x44\x9a\x8a\x0a\x1d\x2b\xba\x9c\xa3\xc9\x90\x95\x42\x2d\x23\x32\xed\x6f\x83\x92\xcf\xb7\xe7\xaa\x49\xe9\x9f\x7b\xf2\x5f\x1f\x17\x8c\xb0\x43\x2e\x69\xfa\x54\x0b\x04\xc2\x57\x4c\xa8\x45\x5c\x8d\xb2\xf2\x82\x9a\x4c\xf2\x68\x2c\x15\xf5\x8d\xfc\x9b\xe5\x59\xf7\xc2\xb3\x53\x8b\x50\x59\x09\xc0\x69\x09\xda\x99\x2b\xae\x9b\xac\xec\x6e\xbf\x5b\xd0\x8c\xbf\x8b\xfd\x01\x9d\xaa\x86\x75\x1e\x4c\x05\xfd\x64\x4e\x12\x9d\xec\xcb\xaa\xfb\x76\x79\xe8\xca\x07\x4d\x7a\xd7\x32\x45\x4d\x9e\x95\xe8\x35\x39\x1c\x9a\x5f\xba\xac\xcb\xd1\x27\x96\x66\x78\x48\x0c\xec\x7d\xfb\xce\x4b\xba\xae\xf9\x96\x54\x3f\x78\xef\x1e\xde\xbd\xd6\x0d\x92\x56\xb6\x75\x83\x7c\x65\x6d\x7b\xc8\xab\xe3\xe7\xff\x7b\xad\x3a\xb4\xc0\xd0\x6c\x5c\xc3\xba\xf7\xda\x2a\xcf\x52\xef\x7d\x92\x1e\xe2\x43\xfa\x54\x27\x67\x44\x87\xc9\xcf\xca\x36\x4b\xd1\x3e\xf9\x52\x65\xe9\x6b\x77\x41\x49\x7a\x4b\xb3\xb6\xce\x93\x97\x7d\x97\x1c\x72\xe4\xe3\x22\xd4\xf8\x58\x71\xea\xd7\xac\x38\x2f\xba\xe6\x66\x6a\x7f\x89\x16\x97\xd5\xa2\xbe\x55\x4d\x7d\x49\xca\x76\xbf\x7a\x7a\xce\xd2\xea\xb9\xdd\xaf\x68\x95\xd8\x90\xf4\x98\xb5\xfb\x27\x5c\x7e\x6b\xb3\x5f\xd1\x3e\x59\xbd\x2e\xb1\x18\x92\xac\x44\xcd\x82\x4c\x46\x65\xed\x26\x8e\x70\x99\x7c\x39\x24\xcd\xc0\x31\x1e\x86\xd7\xe5\x21\x49\xcf\x50\xe7\x83\x00\x6b\x38\xee\x14\xab\xc4\xd3\x20\x4f\xea\x16\xed\xf9\x1f\x92\x1e\x62\x48\xaf\x4b\x17\xfc\xaf\xcb\x4d\x9b\x41\x9a\xb3\x25\x22\xa3\xd8\x51\x3a\x36\x16\x8a\x2e\x00\x67\x29\x42\x11\xda\xe8\x88\x04\x53\xc7\x26\x81\x58\xe3\x75\x58\x3c\xdf\x91\xff\x2e\xa4\xf2\x54\xfe\x79\x51\x7e\xa2\x44\xe0\x83\xf7\x84\xf2\xc0\xbb\xbd\x24\x50\xbc\x81\xcc\xc3\x13\xd8\xf0\xf5\xbf\xfd\xc3\xc7\xdf\xbd\xf7\xda\xea\xda\x1c\xd1\x4f\x49\x5d\x67\xe5\xf9\xdf\xff\xf5\xc7\xef\xa3\xe5\xea\x14\xa3\x30\x78\xdc\x2e\x8f\x97\x6b\xf9\x79\x79\x6c\xdb\x65\x91\xd4\xde\xef\x3e\xfe\xbf\x01\x00\x00\xff\xff\x35\x38\x9c\x20\xf7\x4d\x02\x00") +var _pkgUiStaticReactStaticCss2Df42c974ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfd\xfb\x8f\xe3\x38\x92\x20\x8e\xff\xbe\xc0\xfd\x0f\xbe\x6a\x14\xba\x73\xda\x52\x4b\xb2\x65\x3b\x9d\xa8\xc6\xce\xce\xcd\xe2\x06\xe8\x1e\x2c\xb6\x77\x81\xfb\xa2\xaf\x0e\x90\x2d\xda\xd6\x94\x5e\x27\xc9\x95\xca\x31\x72\xff\xf6\x2f\xf8\x92\xf8\x08\x52\x94\xb3\xaa\x6f\x66\x3f\x3b\x3d\xa8\xb4\xc8\x60\x44\x30\x18\x64\x30\xf8\x08\xfa\x87\xaa\xea\xda\xae\x49\x6a\x2f\x4d\x3a\xd4\x65\x05\xaa\xb3\xe3\x27\xd4\x78\xcf\x59\x7a\x46\xdd\xc2\x3f\x74\xe5\xaf\x69\xd2\x25\x5e\x72\xec\xb2\xaa\xfc\x70\xcc\x51\xd2\x7c\xdc\x27\xa7\x0e\x35\xcb\xf9\xc5\x53\x74\x6c\x50\x81\xca\xee\x7f\x56\xd7\xa6\xfd\x02\x78\x7e\xce\xca\x6b\x87\xde\x80\x29\x2b\xbf\x0c\x47\x03\x9e\x37\x73\xd4\x5e\xaa\xe7\x37\x32\x83\x51\xbc\x99\x8f\xae\x4a\x93\x97\xb7\x14\x3f\x9f\x73\xf4\x2f\xa8\xc9\xaa\xd4\x1d\x0b\xfb\x6c\x9f\xb3\xee\x78\x71\x2d\xd5\x25\x87\x1c\x2d\xba\x8b\x5f\xa2\xbe\x9b\x5d\xa8\x6e\xd0\x67\x5e\xa8\x6d\xbc\xaa\xcc\x5f\x6e\x75\xd5\x66\xb8\x16\xfb\xe4\xd0\x56\xf9\xb5\x43\x4f\xcf\x59\xda\x5d\xf6\x61\xdd\x3f\x5d\x50\x76\xbe\x74\xe4\x67\x91\x34\xe7\xac\xdc\x7b\xf8\x77\x9d\xa4\x69\x56\x9e\xf7\xc1\x53\xf5\x19\x35\xa7\xbc\x7a\xde\x5f\xb2\x34\x45\xe5\xd3\x31\xcf\xea\x7d\x83\x8e\xdd\x77\xc1\x92\xfc\xf7\xf0\x74\xa8\x9a\x14\x35\xfb\xe0\x75\x8a\xcd\x5b\x9e\xb5\x9d\xd7\x76\x2f\x39\xda\x97\x55\x89\x26\x0b\xf8\x69\x53\xd5\x69\xf5\x5c\x7a\x05\x2a\xaf\xb7\x34\x6b\xeb\x3c\x79\xd9\x1f\xf2\xea\xf8\x89\xf3\x1b\xd5\xfd\x22\x18\x18\x5e\xd7\x3d\xaf\xdd\xba\x41\xc5\xeb\x3f\x16\x28\xcd\x92\xc5\x77\x45\x56\x7a\x34\x3d\xde\x6e\xea\xfe\xe1\x36\x8f\xb4\x2f\xe4\xb7\x87\xf6\x46\x51\xad\x76\xa8\x78\x05\x48\x6c\x37\xbb\xaf\x4d\xe2\xf1\x31\xfa\xb2\x24\xe6\x61\x72\xd4\x4b\xa5\xd0\x01\x9d\xaa\x06\xdd\x8e\x55\xd9\xa1\xb2\xdb\xbf\x7b\xf7\xc4\x5b\x34\x2b\xf3\xac\x44\x1e\x6d\x58\x4d\x5f\x67\x32\xe7\x1f\xaa\xae\xab\x0a\x4e\x8e\xaa\xa7\x97\xa3\x53\xb7\xdf\xd6\xfd\xa2\xad\xf2\x2c\x5d\x74\x4d\x52\xb6\x75\xd2\xa0\xb2\x63\x0a\xec\x35\xa4\x2b\x58\x41\x18\xe6\x11\xa6\x39\x1f\x12\xd6\x13\xfc\xe8\xe1\xa9\xab\xea\xbd\xb7\xad\xfb\x27\x4e\xed\x4e\xd6\x89\x78\x25\xce\x37\xd3\x9c\x5b\x41\x18\xe2\x11\xe6\x9b\xd3\xe9\x44\xf9\xdd\x70\x7e\x77\xf3\xf9\xc5\x08\xbe\x82\x9c\x31\x5a\xa3\x90\x59\x55\x46\x39\x6f\xee\xe3\xfb\xcb\x0b\x19\x63\x55\x24\xcc\x99\xdd\xbc\x41\x29\x4e\x79\x95\x74\x8c\x3e\x13\x36\x41\x95\x5c\xbb\xea\x69\x60\xeb\x2d\x58\xa9\x28\x54\xa4\x77\xb0\xfa\x9c\xa5\xa8\x61\x03\x4b\xb8\xc1\x23\xf0\xb4\x99\x24\x56\xe1\x5a\x12\xbb\x90\xde\xd8\xb0\x3e\x6d\x4d\x16\x89\x68\xa2\x3f\xde\xb8\x09\xc0\x0d\x30\xbb\xf4\x1e\xff\xfd\x8c\x95\xb8\xf7\xda\x4b\x92\x56\xcf\x6e\x16\x6a\x21\x8e\xa9\x97\xea\xea\x32\x2d\x10\x92\x0a\x32\xaf\x99\x57\xa6\x45\xc7\xaa\x4c\x99\x8c\x63\x6c\xf0\x4e\x55\xd9\x79\xcf\xd4\x92\x6f\x83\x80\x7e\xb7\xd9\x5f\xd1\x3e\xf4\x23\x54\x3c\xb9\x8b\xf4\x70\xed\xba\xaa\x34\xca\xd5\x41\x1c\x4e\x53\xd2\xd1\x04\xfc\x89\x67\x2f\x48\xfe\xbb\xb7\x50\x90\x27\x89\x10\x0d\x06\x71\x0f\x15\x70\xb2\x3f\xd2\xf8\x1f\xe8\xcd\xf5\x30\xb8\x01\x10\x8d\x37\xd4\x43\x9d\x90\x8f\xe8\x7f\xb9\x54\xcf\xf7\x73\xaf\xcf\xd2\x15\xcc\x6f\xe0\x19\x98\x7d\x8f\xc8\xff\x8d\x64\x2e\x7e\xff\xf3\x0f\xff\xf2\xf3\x3d\xc8\x45\x27\x70\xc4\xfa\x07\x9c\xba\xe8\x2e\x68\x41\x8b\xdf\xc7\xf6\xe8\x73\x08\xc2\xc0\xd3\xf5\x0b\x5a\x60\x24\x8b\xae\x5a\x10\x28\x17\xf4\x92\x37\x71\xeb\x50\xdf\x79\x49\x9e\x9d\xcb\xfd\x11\x95\x1d\x6a\xe6\x62\x30\xc8\xf1\x7f\x60\xb6\x92\x32\x5d\xfc\x5b\x56\xa0\xc5\x2f\xc7\x06\xa1\xd2\xa9\xd1\x24\xe4\x8b\x2e\xbd\x8d\x3e\x04\x1f\x7f\xb8\xb7\x41\x4c\x0c\x1d\xbf\xc8\x4f\x32\xf7\x63\x79\x59\x79\x41\x4d\xd6\xdd\x41\x70\xd1\xd6\x49\x79\x13\x71\x45\x7e\xfc\x34\xfe\x44\x05\xf7\x0c\x82\xe0\xfd\x34\x7e\xe2\x52\xdd\xc6\x12\x33\x46\x51\xe6\x8d\xa5\xee\x7e\x9b\xde\x9c\xc3\xac\x23\x49\xb3\x6b\xbb\xf7\xa3\xd8\xc9\x98\x0e\x08\x79\xbd\x03\x3c\xef\x10\x65\x12\x0c\x1e\x12\xfe\xe9\x8e\x51\xd1\x3f\xee\x64\xc5\xb3\x70\xa4\x59\x8b\x7f\xce\x90\xcc\x50\x64\x7f\xc1\xae\xe8\xed\x90\x1c\x3f\x9d\x9b\xea\x5a\xa6\xc4\x40\x3f\x1d\xab\xbc\x6a\xf6\xdf\x6c\x8e\xdb\x78\x9b\x3e\x1d\xaf\x4d\x5b\x35\xfb\xb2\xc2\xc2\xcc\xab\x67\x94\xce\xa9\xe0\xe0\x3b\x8f\xbd\xe2\x5f\x1a\xf4\x39\xab\xae\xed\xe2\xe7\xaa\xec\x2e\x0e\xfd\x00\x70\xdf\x47\x6c\x7f\x46\x7d\x37\x1b\x13\x4a\xf0\x5c\x73\x7f\xca\x9a\xb6\xf3\x8e\x97\x2c\x4f\x71\xfb\xb2\x9a\xd6\x55\xe6\xd6\xf9\xad\xd8\x74\xd9\x7e\x83\x1e\xd1\x11\x9d\xdc\x75\x9d\x2b\x1c\x99\x90\x88\x0a\x17\x8f\x2e\x39\xfe\xe9\x8e\xd1\x3f\x3e\xdf\xc6\x99\x8c\xbf\x43\xc5\x93\x55\xa9\x25\x4d\x98\x41\x26\x4d\x5e\xbe\x78\x6f\x21\x58\xa9\x54\x9d\x55\x3d\xf5\xf1\xfc\x71\x76\x21\x3a\x85\x9c\x5d\x8c\xce\x22\x8d\x0d\xff\x74\xa7\x7e\xa5\x7e\x89\x9e\x67\xb0\x51\xe5\xe9\xed\xde\x86\x23\x96\x73\x5c\xdd\x6a\x50\x9e\xe0\x39\xfc\x5c\x0c\xae\xcb\x12\x6c\x40\xa6\xdc\xca\x2e\xa9\xe8\x0b\x2e\xbe\x09\x82\xed\x81\x78\x7e\x04\x9e\x2e\x77\x11\x8f\x90\x27\x51\x85\x0a\x16\xc1\x02\xfb\xb8\xd8\x8d\xd5\x97\xe8\x98\xdf\x88\x3b\x0f\x75\xc6\xe6\xf5\x1d\xea\xce\xcc\x68\x08\x5a\x40\xd3\x07\x56\x5d\x5e\x27\xf6\x45\x96\x0e\xb0\xc5\x62\xae\x52\xb0\xf0\x42\xec\x75\xc9\x9e\x7a\xfc\x30\x9b\x61\xb9\x45\xa4\xa5\x0b\x6f\xa4\x3d\xa7\x1b\xce\x35\x38\xe9\x6f\x66\x70\xd8\x84\x05\xd4\x35\xc1\xb9\xb3\x8e\xab\xc2\x1a\x68\xe8\xc7\x78\x10\x94\xba\xed\xdb\x26\x11\x94\xc1\x2f\x60\x1b\x08\x1e\x9f\x7b\xd8\xbf\xb9\x6e\x51\xf2\x6f\x18\x69\x28\x82\xf9\xaa\x24\x97\xfb\x5a\xfa\xe4\x5f\x5b\xd4\x3d\xa3\xb2\x7b\x39\x55\xd7\x86\xdb\x91\xc1\xa4\x6d\x55\x93\x46\x56\x75\xb2\xb2\xbe\x76\x1e\xe6\xa3\x5e\x50\xa7\x85\x3a\x59\x1f\x64\x12\x1f\xd5\x79\xc6\x7f\xfb\x87\x7f\xf8\xe1\x77\xff\xfd\x1f\x16\xbf\x5b\xfc\x13\xe7\x6a\xf1\x79\xed\xaf\xfd\x70\xf1\xdd\xa5\xeb\xea\x76\xff\xc3\x0f\x67\xd4\x0d\x2c\xfb\xc7\xaa\xf8\xe1\x01\xc3\xff\xa1\xaa\x5f\xc8\x48\xb6\x88\x82\x30\xf4\xa2\x20\x7c\x5c\xfc\xdb\x05\x09\x78\x7e\x7f\xed\x2e\x55\xd3\x1a\x81\x9f\xb3\xae\x43\xcd\x72\xf1\xa7\xf2\xe8\x63\xa0\x9f\xb2\x23\x2a\x5b\x94\x2e\xae\x65\x8a\x9a\xc5\xcf\x7f\xfa\x37\x81\x87\xac\xbb\x5c\x0f\x84\x7a\xf7\x7c\x68\x7f\x18\x18\xfa\xe1\x90\x57\x87\x1f\x8a\xa4\xed\x50\xf3\xc3\x4f\x7f\xfa\xc3\x1f\xff\xfc\xcb\x1f\x31\x7f\x3f\xec\x9b\xaa\xea\x6e\x9e\x77\xc8\xaf\x68\xd0\x49\xcf\xcb\xca\x34\x3b\x57\xfb\x6f\x36\x9b\x30\x38\x45\x4f\x9e\x57\x5f\x9b\x3a\x47\xfb\x6f\x36\xa7\x75\x74\x0c\x71\x42\x56\x7e\xda\x7f\x83\x76\x2b\xb4\x3b\x3e\x79\x5e\x83\xd2\xfd\x37\xe9\x71\x15\xaf\xe3\x27\xcf\xab\x9a\xa4\x3c\xa3\xfd\x37\xa7\x74\x8b\xc2\xf5\x93\xe7\xbd\x20\xdc\xac\x58\xcd\x8f\x61\xb0\x7d\xf2\xbc\x33\xf6\xb0\xf6\xdf\x44\xbb\x64\x4b\x4a\x74\x28\xc9\xf7\xdf\x44\xc1\xf1\xf1\x11\x67\x1f\x5f\x92\x72\xff\x4d\xb8\x4d\xa2\xc3\xee\xc9\xf3\x9e\x2f\x59\x87\x68\x27\xc1\x45\x93\x97\x41\x73\xe8\xa7\x97\x26\xcd\xa7\xfd\x37\xab\xf5\x2a\x59\x07\x98\xb9\x26\x2b\x92\xe6\x45\xa8\x10\x35\xfc\x24\x6d\x28\xd9\x5e\x8f\x47\xd4\xb6\x02\x17\x59\x79\xaa\x44\xb2\x49\x53\x62\x5f\x6e\x64\x3b\xc5\xf5\x6a\x84\x9a\xe6\x44\xbb\xbe\x39\xed\x4e\x8f\xa7\x84\x00\x48\x8c\x1c\x1a\x94\x7c\x22\x5a\xe4\xf5\xed\x5e\x49\x69\x0b\xba\x2d\x23\xa7\x16\x29\xdd\x49\x91\x53\xf3\x33\xdd\xfc\x50\x70\xe6\xfb\x30\x0a\x02\x92\x4c\x26\x8d\xa7\xa4\xc8\xf2\x17\xaf\x4d\xca\xd6\x6b\x51\x93\x9d\xf6\x5e\x52\xd7\x39\xf2\xda\x97\xb6\x43\xc5\xf2\x9f\xf2\xac\xfc\xf4\x73\x72\xfc\x85\x7c\xfe\x73\x55\x76\xcb\x77\xbf\xa0\x73\x85\x16\xff\xfe\xa7\x77\xcb\x7f\xad\x0e\x55\x57\x2d\xdf\xfd\x4f\x94\x7f\x46\x5d\x76\x4c\x16\x7f\x46\x57\xf4\x6e\xf9\xfb\x26\x4b\xf2\xe5\xbb\x3f\x57\x5d\xb5\xf8\x25\x29\xdb\x77\xcb\x91\xc0\xf2\xdd\xef\x31\x81\xc5\x1f\x70\x87\x5e\xfc\xb1\xa8\xfe\x92\xbd\x1b\x71\xea\x09\xbf\xbc\x14\x87\x2a\x7f\xc7\xb0\x89\xa5\x94\x3a\x14\x55\x59\xb5\x75\x72\x44\xfb\x5f\xfe\xf9\xe7\xaa\xac\xbc\x7f\x45\xe7\x6b\x9e\x34\xcb\x9f\x51\x99\x57\xcb\x9f\xab\x32\x39\x56\xcb\x3f\x54\x65\x5b\xe5\x49\xbb\x7c\xf7\x53\x76\x40\x4d\x82\xa7\x13\xd8\xd7\xa8\xde\x2d\xdf\xfd\xa1\xba\x36\x19\x6a\x16\x7f\x46\xcf\xef\x96\x03\xba\xd7\xdf\x2d\xd9\x3e\xce\x68\x70\x7b\x3c\xdb\xc6\x2d\x3d\xd8\xde\xfe\xf5\xd2\x15\xf9\x4d\x60\x68\x3f\xd6\x59\x1a\x59\x42\x3f\x8c\x9f\xbc\x67\x74\xf8\x94\x75\x1e\x1d\xc2\xb3\xbf\x22\x2f\x49\xff\x72\x6d\x3b\xea\x43\x0f\xb9\x49\xed\x5d\xb2\xf3\x85\x28\x0d\xb3\x03\xc2\x1c\xea\x35\x69\xba\xec\x98\xa3\x65\xd2\x66\x29\x5a\x9e\xb2\xf3\x31\xa9\x71\x85\xf0\xcf\x6b\x83\x96\xa7\xaa\xc2\x7c\x63\x6f\x06\xff\x21\xe3\xd8\xb2\x48\xb2\x72\x59\x26\x9f\x97\x2d\x22\x0b\x30\xf2\x7e\xe1\xeb\xa1\x4a\x5f\x86\xd5\xe5\x27\xb1\x3e\x7f\x47\x9a\x21\x2c\xed\x36\xa8\x90\x56\x7e\xd7\x41\xa0\x34\x47\xcc\x8d\x4b\x14\x46\x71\xf4\xf8\x24\x2c\x32\xe4\xe8\xd4\x3d\xe9\xa6\x18\x4f\xae\x7e\xed\x92\x43\x56\xa6\xa8\xff\xf0\xce\x0b\xdf\x7d\xdc\x9f\xaa\xe3\xb5\xc5\x16\xe9\x3b\xfa\xd3\xfb\x9c\xb5\xd9\x21\x47\x0f\xb7\xea\xda\x61\x82\xfb\xe0\xbf\x67\x45\x5d\x35\x5d\x52\x76\xaf\x97\x46\xd4\xa2\xac\xcc\xba\x2c\xc9\xf9\x24\x46\xd8\x4e\x66\x48\x5e\x2f\xe1\xf2\x12\x2d\x2f\xab\xe5\x65\xbd\xbc\xc4\xcb\xcb\x86\x35\x11\xd9\x4b\xe1\x4b\x47\x7c\xf7\xca\x27\xf3\x97\xda\x06\x82\xc5\xf2\x9a\x1c\x0e\x0d\xb5\x6a\x55\x93\x9d\xb3\x32\xc9\xbd\x2e\xeb\x72\xf4\x71\x49\x72\xe8\x6f\xba\xe6\x92\xa2\x63\x45\x3b\xcb\x9e\x98\x11\x5c\x21\x59\x89\x21\x88\x45\x5a\x75\x1d\x4a\x9f\x26\x01\x98\xf9\xbc\xa0\xbc\x56\x76\xe2\x02\x13\x15\xaf\xfd\x94\xd5\x1e\x36\x2a\x64\x7e\x60\xcd\x7d\x4d\xd2\xb4\x41\x6d\xcb\x1c\x65\xb6\xb3\xde\x14\x49\x0e\x2e\xaa\x31\xe8\x65\x9a\x2f\xab\x7c\x79\xcd\x6f\x80\xec\xd4\x3c\x22\xe4\xd7\x2a\x5f\x54\x38\x63\x71\xc5\x79\x0b\x02\xb1\xd0\x10\x04\xaf\x69\x77\x53\x76\x23\x5e\xd3\xf4\x06\xb4\x22\x6f\x36\xb2\xe7\x14\xbc\x92\x2e\xfa\x7f\xaf\x55\x87\x86\x2e\xba\x08\x16\x84\xa1\xc3\xb2\xed\x9a\xaa\x3c\x4b\x88\x0f\x55\x9e\xa2\xe6\xb5\x2d\x92\x3c\x17\x56\x09\x76\xc1\xfb\xd7\xf6\x7a\x58\xb6\xd7\x5a\x77\x0c\x85\xce\xb3\x8d\xdf\x4b\x02\x0a\x9e\x3e\x23\x3c\xe4\x24\x39\xeb\x1f\x4c\x71\x31\xb2\x1b\xdf\xc2\xf3\xa3\x18\x15\xaf\x18\x35\xd9\x36\xf5\xf1\x57\x72\x93\x27\xb1\xaa\x42\x90\x26\xd4\xfa\x19\xc7\x9e\xb0\x39\xe1\x80\x23\xde\x1c\x56\x66\xa5\x7a\x4d\x48\x37\xfc\xf5\xd2\xa0\xd3\xc7\x87\xa5\xf4\x25\x61\x62\xed\x0d\x72\xf3\x7a\xac\x52\xb4\xfc\x74\x48\x97\x75\x83\x96\x6d\x52\xd4\xd2\xd8\xfe\x65\x4d\x8c\x38\x5e\xe1\x9e\xdb\xa0\xa9\xbe\x3b\x8e\x10\xc9\xb5\xab\x5e\xe9\x78\xaf\xe9\x44\x56\x9c\x6f\x92\x7f\x4d\x6a\x96\x15\xe7\x65\xfb\xf9\x7c\x53\xda\xb2\xc8\xd2\x34\x47\xaf\x38\x47\x39\xcd\xf2\x4a\x17\x79\x47\xcf\x3e\x4f\xea\x16\xed\xf9\x8f\x57\x66\x75\xf8\x52\x36\x61\xda\xdf\x12\xf5\xe5\x49\x5c\xa7\x69\xaa\x3c\x99\x57\xc7\x5b\x86\xce\xc3\x46\x6d\x4f\x0b\xbe\xca\x6b\xbf\xbc\xa3\xe6\xc9\x01\xe5\xb0\x6b\x08\x8d\x88\x74\xdb\xee\x26\x7b\x7b\x01\x4b\xa6\xa3\xf6\x30\x58\x63\x67\x8a\x0d\x4e\x3c\x29\xae\xfb\x05\x96\xf6\x82\x8f\x48\x74\x9c\x6f\x70\xfd\x48\x8d\x18\xa6\x25\xf1\x1a\x96\x55\xdd\x51\x83\xdb\xa2\x1c\x1d\xbb\x25\xe6\x3f\x69\x50\x02\x1b\x57\xae\x8b\xa3\x26\xf0\x14\x68\x84\x12\x09\xdd\x34\x63\xc1\x72\x29\x5d\x2a\x37\x32\x6b\x38\x55\x4d\x41\x55\x80\x65\x3d\x57\x4d\xea\x3d\x37\x49\xcd\x46\xc3\xd7\x5f\xbb\x97\x1a\x7d\xa0\xe5\x3f\x2e\xe9\x57\x83\x5a\xd4\xf1\x8f\xf6\x7a\x28\xb2\xee\xe3\x92\x89\x92\x4b\x22\xa9\x6b\x94\x34\x49\x79\x44\x7b\x9a\x23\x63\xa2\x66\x91\x7b\x78\x0f\x12\x62\x38\x8f\xd1\x51\x33\x59\x53\xc9\xa9\xaa\xf3\x25\x93\xde\x7b\x45\xf5\x57\xd6\x54\x59\x59\xa2\x46\xa6\x6e\xca\xe6\x0c\xe8\xf9\x8c\x07\x2d\x43\xd8\xc9\x01\xfa\x1c\x6e\x29\x8a\xf9\x78\x41\xc7\x4f\x87\xaa\xff\xb8\x14\x12\xb1\x32\x56\x1f\xe1\x99\xe5\x78\xcc\x4c\x44\x83\x3d\x50\x09\x05\x77\x49\xbd\xbc\x3a\x26\xb9\x94\x55\x54\x65\x77\x91\x52\x30\xe0\x47\xa8\xf9\xf2\xac\xed\xf0\x6c\x76\xd0\x56\x69\xa0\x79\x6a\x10\xd1\x4d\x3e\x74\xbc\x9e\x32\x94\xa7\x2d\xea\x6e\xe3\x99\xab\xe0\x09\xd8\xd2\x1a\x0e\xbf\xe5\xe8\x8c\xca\x54\x39\xa3\x26\x6d\x1f\xf5\x9e\xf0\xa9\xa2\x92\x8d\xa3\xb8\x83\x4f\x12\x80\xbe\xf2\x24\x8f\xf5\xc4\x33\xf4\xa8\x9f\xc0\x94\xbe\x6e\xaa\x33\x99\x1d\x18\x8c\x1b\x95\x58\x79\x2d\x0e\xa8\xc1\x0a\xc1\x84\x46\x1a\xdd\x6b\x6b\xcc\x14\xed\x70\x06\xc0\xea\xda\xc9\x80\x37\x61\x83\x8f\x61\x6f\x51\xd2\x1c\x2f\x1f\xf9\xf0\xe3\x55\xa7\x53\x8b\xba\xbd\x47\x3c\x38\xbd\x95\x88\x4e\x49\x25\x47\x72\x34\x41\xb0\x67\x50\x33\x13\x04\x63\x99\x53\x96\x23\xef\x5a\xe7\x55\x92\x72\x1e\xb1\x6c\x07\xa9\x99\xfb\x79\x75\xed\xf0\x18\x04\x8d\xc1\xaf\xed\xb5\xc0\x5e\xf5\x90\x49\x4e\xb0\x64\x1d\x36\x00\x72\x8f\xed\x50\x51\xe7\x49\x87\x06\x48\x5a\x3f\x6a\x7d\x3e\x4a\xa9\xc2\x1c\xda\xbf\x84\x4b\xff\x12\x2d\xfd\xcb\x6a\xe9\x5f\xd6\x4b\xff\x12\x2f\xfd\xcb\x66\x69\x9c\x2b\xeb\xba\xc3\xa6\x49\xb1\xe6\x13\x44\x04\xfb\x25\x14\x26\x4d\x11\x35\x22\x98\xe2\x25\x12\xd3\x69\xea\x6a\x79\x59\xdd\x44\x85\xdc\x32\xf0\xf5\xf2\xb2\xbe\xa9\x9a\xfa\x8a\x99\xbd\xc4\x52\x3a\x5b\x76\xc4\x35\xd8\xdc\x64\x0f\xe6\xd5\xcf\x51\x92\xea\xd0\x52\x2d\x56\x41\xf0\xea\x33\x59\x79\x22\xe7\xf4\x80\xd1\x90\xb3\x1c\x7e\x46\x37\xa5\xbc\x2e\x05\x05\x94\xe0\x8b\x59\x15\x78\x9e\x58\xef\xb5\x9a\x37\x52\x5b\xbb\x53\x13\x05\xb6\xa2\x18\x2f\x8d\x38\x27\x0a\x85\xb9\xb1\x38\x2d\xe2\xe3\x8c\x78\xd4\x2c\x04\x4f\xc8\x85\x0f\xaf\x3e\x99\x17\x2f\x81\xd9\xb1\xea\x31\xbe\xfa\x45\xd2\x7c\x5a\xe2\x7f\x86\x61\x9e\x9c\x19\x02\x7c\xc3\xe3\x69\x87\x56\xaf\xf4\xb8\x16\xed\x0e\x4b\xe5\xec\x16\x9f\x14\xd1\x49\xfd\x93\x76\xdc\x57\x28\x4a\xba\x0b\xdc\xbb\x34\x30\x6a\x16\xf3\x84\xef\x58\x3e\x70\x81\xd1\x9d\x11\xd6\x30\x6c\x54\xcb\xda\x42\xa8\xf2\x63\xf0\xfe\x49\x99\x27\x5c\xeb\x1a\x35\xc7\xa4\x45\xaf\xbe\xe6\x75\x48\x22\x07\x54\x78\x2c\xe0\xd1\x25\x08\x65\xbc\x97\x65\xad\x2e\x37\xab\x85\xb5\x9d\xa7\xff\x1d\x05\xe1\xfa\x7f\x07\xc1\xef\x83\x77\xaf\x7e\x56\x9c\xbd\x53\x7e\xcd\xd2\x25\xf9\xd9\x5d\xae\xc5\xa1\x4c\x32\xec\x73\x49\x96\x44\x1c\x73\x15\xc8\xb1\x45\x49\x9f\x02\xfd\x7d\xae\x59\xa3\x32\x7d\x93\x22\x14\xa1\x8d\x61\xf3\x80\xcd\xc8\xe1\x96\xa3\x99\x1e\x9e\x9e\x43\x43\x93\xd4\x2d\x06\x68\x3e\xcb\x96\x5b\x4d\x16\x1e\x76\x5a\x44\x4d\xde\xfa\xf1\x00\xc2\x96\x5e\xc7\x39\x1f\x59\x17\xf4\xf0\xf7\x6b\xf2\x23\x29\x29\x99\xca\xd7\x4f\x87\x54\x10\x4d\x83\x8a\x85\xbf\x96\x1b\x5c\xc2\x4f\x84\xa4\x89\x8e\xad\xa9\xa8\x42\xc2\x32\xfa\x74\x48\x17\x22\x0d\xe9\x44\x5e\xa0\x74\x42\xec\x22\xd7\x82\x40\x35\x45\x12\x59\xa1\x44\x31\xfc\x42\x91\x88\x61\x52\x80\x65\x42\xc4\xc1\xe7\x04\x7e\xdd\x20\xaf\x3d\x36\xd8\xc5\xc1\xbe\x0f\x56\x26\xd6\x22\xab\x75\x50\xf7\x83\xff\xe5\xbd\xec\x29\xd8\xab\x8f\xf5\x33\xc9\xca\xf1\x60\xa7\x30\x81\x61\x7d\x30\x8c\xc7\x5b\x03\xb4\xfb\x93\x14\xa9\x9f\x92\x79\x96\xe8\xf6\x13\x95\x35\x9f\xd0\x1f\xc9\x8e\x1a\x1f\x63\x1e\x6d\x67\xee\xa1\x42\xdb\xc8\x50\x88\x9f\xa2\x87\x0a\x3d\x6e\x0c\x85\xe8\x3a\xb3\xa1\x54\x18\x52\x06\xc7\x4c\xde\x87\xc7\x84\xfc\x2c\x7e\x15\x52\x5e\x5b\x88\x5f\x7d\xfe\xff\x48\xe2\x32\x4b\x77\xc9\xdf\x56\xc7\xbb\xda\xc6\x5d\x84\xf7\xb5\xe2\xdd\x4d\x04\xb4\x7e\x53\x3d\x0f\x1d\xfa\x94\xa3\xfe\x09\xff\x43\x07\x27\xfc\x8f\xdc\x4a\x9e\xd8\x70\xa4\x99\x48\xca\xab\x5f\x56\xde\xf9\xda\x75\xa8\x69\x65\x83\x17\x28\x8b\x67\x02\xe0\x8f\xfe\xb1\xca\x97\x62\xc2\xaf\xc7\x3c\x69\xdb\xdf\x7d\x38\x56\xb9\x37\x1c\xe6\x1d\x10\xc9\x16\xfb\x95\x96\xc6\xa0\x21\xfd\x13\xd1\x3f\x2b\xfa\x67\x4d\xff\xc4\xf4\xcf\x86\xfe\xd9\xd2\x3f\x3b\xfa\xe7\x91\x15\x0f\xd8\x5f\x86\x27\x64\x88\xb0\x02\xd2\x5f\x54\xc4\xf8\x2f\xa7\x95\x9f\x39\xb9\xfc\xcc\x29\xe6\x67\x4e\x34\x3f\x73\xba\xf9\x99\x93\xce\xcf\x9c\x7a\x7e\xe6\x0c\xe4\x67\xce\x03\xc6\x1c\x8c\x3f\x47\x2a\xe1\x48\x66\xe4\x87\x36\x32\xfe\xcb\xf9\x29\x52\xce\x4f\x91\x72\x7e\x8a\x94\xf3\x53\xa4\x9c\x9f\x22\xe5\xfc\x14\x29\xe7\xa7\x48\x39\x3f\x45\xca\xf9\xc1\x98\x83\xf1\xe7\x48\x25\x1c\xc9\x8c\xfc\x50\x35\xc3\x7f\x39\x3f\x6d\xc1\xf9\x69\x0b\xce\x4f\x5b\x70\x7e\xda\x82\xf3\xd3\x16\x9c\x9f\xb6\xe0\xfc\xb4\x05\xe7\xa7\x2d\x38\x3f\x18\x73\x30\xfe\x1c\xa9\x84\x23\x99\x91\x9f\x3e\xe7\x7f\x39\x3f\xfd\xa0\x1e\xfd\xa0\x21\xfd\xa0\x24\xfd\xa0\x27\xfd\xa0\x2a\xfd\xa0\x2d\xfd\xa0\x30\xfd\xa0\x33\xfd\xa8\x36\xfd\xa8\x39\xfd\xa8\x3c\x3d\xd5\x1f\x60\x65\x77\xe6\x28\x49\xf4\xfc\x46\xfa\xe4\x21\x69\xb3\x16\x5b\x68\xfc\x71\x6e\xaa\xe7\x7d\xa8\xb8\xea\xa4\x37\x63\xab\xdf\x7a\xe1\x8f\xbf\x23\xa5\xe8\x42\xa4\xee\xd5\x0b\xa0\x91\x08\x1a\x4b\x90\xb1\x04\xb8\x12\x01\x57\x2b\x7f\x45\xfe\x27\xc2\x8f\x89\x42\xb1\xb5\x58\x2c\x8a\x45\xf8\x28\x16\x01\x63\x09\x50\x62\x24\x92\x18\xd9\x48\x95\xdb\xf8\x1b\xfc\xbf\xad\x54\xc5\x21\xf1\x75\xe8\xcc\x63\x11\xf5\x54\xaf\x2a\x1a\x32\x0c\x8c\xe0\x3b\xa0\xa6\xbb\xb1\xa2\x64\xf0\x99\xc9\xcf\xca\x2a\x11\x32\x80\xcd\x10\x35\x19\xe9\x46\xf8\x75\x08\x70\x30\x26\x52\xf8\x8d\xb5\xcd\xc9\x68\x29\x40\x40\x22\x88\x15\x19\xec\x46\xf8\x0d\x24\x83\x8d\x22\x83\xc7\x11\x7e\x2b\xc9\x60\xcb\x65\x10\x06\x42\x23\x40\x42\xd8\x29\x42\x08\x85\x56\x7b\x84\xa4\xf0\xa8\x48\x21\x8c\x26\x7a\x09\x9d\x33\x93\x33\xa8\x37\xea\x7d\x78\x21\x4f\xc5\x6e\x1e\x4b\x0c\x57\x3c\x31\xb8\x0d\x77\x4c\x69\x42\xc8\x41\x78\x42\xc4\x12\x22\x9e\xb0\x62\x09\x03\x8e\x35\x4b\x58\xf3\x84\x98\x25\xc4\x3c\x61\xc3\x12\x36\x3c\x61\xcb\x12\xb6\x3c\x61\xc7\x12\x76\x3c\xe1\x91\x25\x3c\x0e\x8c\x71\x56\xc3\x91\xd7\x81\xd9\x81\xdb\x90\xb3\x1b\x62\x7e\xc9\x92\x98\x17\xde\x44\xab\x2e\xa8\x01\xcb\x8f\xa4\x7c\x51\xf7\x19\xc0\x4a\x02\x20\x3a\xcf\x72\xd6\x52\x8e\xa8\xe4\x0c\x20\x96\x00\x44\xad\x66\x00\x1b\x09\x80\x68\x33\xcb\xd9\xca\x39\x3a\xdf\x3b\x09\x60\xa3\xf3\xfd\x28\x01\x6c\x05\xbe\xc3\x40\x96\x89\xce\x78\x28\x4b\x4d\xd0\x44\xdb\x2c\x17\x9b\xb6\x3b\x86\x7f\x6c\x1a\xdd\x2d\x00\x36\xd7\xae\x46\x00\x1b\xf4\xfb\xec\x00\x9e\x00\xb8\x9a\x02\x3c\x45\x70\xb5\x06\x78\x12\x31\xdb\x20\xb0\x09\xc3\x3c\x9b\x80\xa5\x3a\xcb\x2c\x60\xc1\xce\x67\x6c\xda\x38\x60\x51\xce\xb4\x0f\x58\xa2\x33\x4d\x04\x16\xec\xa4\x95\xc0\x13\xb7\x99\x86\x02\xcf\xf0\x66\xda\x0a\x3c\x15\x9c\x34\x17\x64\x96\x38\xd3\x62\x90\xe9\xe4\x4c\xa3\x41\xe6\x9d\x4e\x76\xa3\x2d\x0c\xa6\xa3\x2d\x60\xeb\xd1\x16\xba\x01\x21\x5a\xa7\xd8\x10\xa2\x58\x8a\x19\x21\x9a\xa3\x58\x12\xa2\x28\x8a\x31\x21\x9a\xa0\xd8\x13\xd2\xd4\x8a\x49\x21\x2d\xab\x58\x15\xd2\x74\x8a\x61\x21\x6d\xa3\xd8\x16\xda\x14\xaa\x79\xa1\xc2\x56\x2d\x0c\x15\xa7\x66\x64\x88\x28\x14\xef\x71\xcc\x9a\x32\x41\x44\x40\x13\x56\x88\x08\xcc\x64\x88\x88\xe4\x26\x6c\x11\x91\xe4\x84\x39\x22\x92\x35\x59\x24\x22\xe2\x09\xa3\x44\x44\x3e\x61\x97\x48\x13\x98\x4c\x13\x6d\x8b\x09\xeb\x44\x9b\xc6\x60\xa0\xac\x8b\x28\xd8\x19\xbc\xc3\x42\x61\x67\xd2\xdd\x42\x61\x07\xd7\xd5\x42\x61\x17\xf8\x3e\x0b\x85\x5d\x66\x57\x0b\x85\x9d\x6a\x57\x0b\x85\xdd\xee\xd9\x16\x8a\xb9\xd8\xf3\x2c\x14\x96\xea\x2c\x0b\x85\x05\x3b\x9f\xb1\x69\x0b\x85\x45\x39\xd3\x42\x61\x89\xce\xb4\x50\x58\xb0\x93\x16\xaa\x48\x67\x5b\xa8\x22\x9d\x6d\xa1\x8a\xd4\xc1\x42\x91\x75\x95\x99\x16\x8a\x2c\xc0\xcc\xb4\x50\x64\xa5\xc6\xc9\x42\x15\xa9\xc1\x42\x15\x29\x6c\xa1\x8a\x54\xb7\x50\x44\xeb\x14\x0b\x45\x14\x4b\xb1\x50\x44\x73\x14\x0b\x45\x14\x45\xb1\x50\x44\x13\x14\x0b\x45\x9a\x5a\xb1\x50\xa4\x65\x15\x0b\x45\x9a\x4e\xb1\x50\xa4\x6d\x14\x0b\x45\x9b\x42\xb5\x50\x54\xd8\xaa\x85\xa2\xe2\xd4\x2c\x14\x11\x05\x6c\xa1\x88\x44\xec\x16\x8a\x08\x68\xc2\x42\x11\x81\x99\x2c\x14\x91\xdc\x84\x85\x22\x92\x9c\xb0\x50\x44\xb2\x26\x0b\x45\x44\x3c\x61\xa1\x88\xc8\x27\x2c\x14\x69\x02\x93\x85\xa2\x6d\x31\x61\xa1\x68\xd3\xb8\x5b\xa8\x71\x55\x3e\xf7\xf2\xf3\x1d\x16\x2a\x3f\xcf\xb1\x50\xf9\xd9\xdd\x42\xe5\xe7\x7b\x2d\x54\x7e\x76\xb7\x50\xf9\xd9\xdd\x42\xe5\xe7\x3b\x2c\x14\x5b\x94\x9e\x67\xa1\xb0\x54\x67\x59\x28\x2c\xd8\xf9\x8c\x4d\x5b\x28\x2c\xca\x99\x16\x0a\x4b\x74\xa6\x85\xc2\x82\x9d\xb4\x50\xf9\x79\xb6\x85\xca\xcf\xb3\x2d\x54\x7e\x76\xb0\x50\x64\x27\x62\xa6\x85\x22\x5b\x16\x33\x2d\x14\xd9\xdb\x70\xb2\x50\xf9\xd9\xb4\xfc\x76\x86\x2d\x54\x7e\xd6\x2d\x14\xd1\x3a\xc5\x42\x11\xc5\x52\x2c\x14\xd1\x1c\xc5\x42\x11\x45\x51\x2c\x14\xd1\x04\xc5\x42\x91\xa6\x56\x2c\x14\x69\x59\xc5\x42\x91\xa6\x53\x2c\x14\x69\x1b\xc5\x42\xd1\xa6\x50\x2d\x14\x15\xb6\x6a\xa1\xa8\x38\x35\x0b\x45\x44\x01\x5b\x28\x22\x11\xbb\x85\x22\x02\x9a\xb0\x50\x44\x60\x26\x0b\x45\x24\x37\x61\xa1\x88\x24\x27\x2c\x14\x91\xac\xc9\x42\x11\x11\x4f\x58\x28\x22\xf2\x09\x0b\x45\x9a\xc0\x64\xa1\x68\x5b\x4c\x58\x28\xda\x34\xee\x16\x4a\xd8\xd8\xcd\xbd\xfe\x9e\x5d\x9e\x3e\x9f\x63\xa2\xfa\xdc\xdd\x44\xf5\xf9\xbd\x26\xaa\xcf\xdd\x4d\x54\x9f\xbb\x9b\xa8\x3e\xbf\xc3\x44\xf5\xf7\x6c\xfd\xf4\x73\x77\x7f\xfa\xf9\x1b\x40\xbd\xcb\x1e\x50\x3f\x7f\x1b\xa8\x9f\xbf\x13\xd4\xbb\x6c\x06\xf5\xf3\xf7\x83\xfa\xf9\x5b\x42\xbd\xcb\xae\x50\x7f\xc7\xc6\x50\x7f\xc7\xde\x50\xef\xbc\x3d\xd4\xe7\x06\x13\xd5\xe7\xb0\x89\xea\x73\xdd\x44\x11\xad\x53\x4c\x14\x51\x2c\xc5\x44\x11\xcd\x51\x4c\x14\x51\x14\xc5\x44\x11\x4d\x50\x4c\x14\x69\x6a\xc5\x44\x91\x96\x55\x4c\x14\x69\x3a\xc5\x44\x91\xb6\x51\x4c\x14\x6d\x0a\xd5\x44\x51\x61\xab\x26\x8a\x8a\x53\x33\x51\x44\x14\xb0\x89\x22\x12\xb1\x9b\x28\x22\xa0\x09\x13\x45\x04\x66\x32\x51\x44\x72\x13\x26\x8a\x48\x72\xc2\x44\x11\xc9\x9a\x4c\x14\x11\xf1\x84\x89\x22\x22\x9f\x30\x51\xa4\x09\x4c\x26\x8a\xb6\xc5\x84\x89\xa2\x4d\x63\x32\x51\xbe\x21\x92\x94\x74\xd6\x54\x3e\xdf\xe7\x8f\x11\xa4\x86\x80\x4e\xc3\x81\x45\x7a\xd3\x48\x39\xd2\xdf\x55\x35\x7c\x32\x98\x1d\xe6\x1c\x50\xd2\x00\x40\x17\xf5\x4a\x00\xe5\x45\xb9\xa2\x18\x19\xb1\x1c\xaa\xf4\xe5\x7b\xf2\xef\x4d\xa0\x6a\x82\xf7\xda\x62\xac\x0b\xf9\x10\xaa\xb3\x22\xa7\x4a\x69\x16\xc5\x85\x06\x50\xfe\x2d\x94\x1e\x93\x2e\x37\xd3\xc9\x55\x15\x1d\xaf\x35\x84\x84\x89\x43\x0e\x35\xc2\x2c\x46\xdd\xcb\x98\x72\xd4\xb6\x62\xdd\x97\x40\x6e\x0a\x25\x5e\xc0\x44\x89\x34\xee\xa1\x4c\x3e\x5d\x93\xd5\x98\x37\x4c\x62\xd1\x35\xfb\xb2\xbb\x78\xd5\xc9\xeb\x5e\x6a\xf4\x5d\x95\xa6\x0f\x7a\x08\x0d\xf1\xf8\x77\x10\x3f\x70\x4c\xe4\x4a\xe0\x88\x47\xba\x6b\xc8\x8f\xaf\x5a\x51\x6d\x47\x5c\x2c\x90\xc0\x52\xfe\xfc\x71\xac\xef\x90\x72\x01\x42\x7c\x1c\x76\x69\x72\x3a\x29\xb8\x20\x51\x0e\x59\x2a\x5e\x41\x88\x63\x8a\xdc\x78\x8c\xd6\x36\x39\x08\xb4\xa8\x0c\xe4\x92\x3c\x58\xd2\x14\x84\x50\x3b\x1b\x10\x54\xe1\xc7\xd3\x31\x1d\x99\x18\x62\x2e\x2c\xd5\x04\x81\x84\x90\x06\x61\x4c\x37\xe9\x2e\x3d\x68\x18\x21\x21\x0a\x99\x3a\x76\x41\x90\x62\x1a\x28\xca\xc3\xea\xb0\x3d\x1c\x40\x51\x8e\x61\x24\xcc\xc2\x54\x60\x4c\xe2\xd4\xc0\xa0\xea\x1f\x77\xc7\xc3\x71\x14\x28\x0d\x58\xb1\x94\x3f\x45\x61\xf2\x14\x10\xd7\x0a\x6d\x8e\x07\x05\x17\x28\x48\x9e\xa5\xe2\x15\x85\x38\xa4\x80\x22\xdc\x9d\xd2\xf0\x11\xc1\x22\x64\x51\x37\x2c\x02\x14\x21\x8c\xe2\x93\x81\xc0\xee\x17\xa6\xa7\xb1\x1d\xb3\xf2\x54\x2d\x85\xdf\x02\x62\xfa\x09\xa2\x40\x28\x46\x12\x0a\x48\x60\x34\x3d\x95\x3f\x2f\xca\x27\x2c\xa7\xcd\xf1\x94\x26\xa0\x9c\x48\x2c\x12\xb3\x90\xc6\x6c\x93\x84\x44\x08\xa8\x6e\xc9\x21\x4d\x51\xcc\x69\xb3\x58\x27\x4b\xf9\x53\xc0\x3d\xa4\x40\xb8\x4e\x27\x84\x0e\x89\x82\x0b\x12\xd5\x90\xa5\xe2\x15\x04\x36\xa6\x80\x32\x3b\x9d\xd2\xd3\x16\xd6\x2d\x1e\xb0\xc5\x2c\x36\x09\xc2\x24\x39\x05\xc8\x50\xe1\x5d\x12\x72\x26\x68\x58\x98\xa5\xf4\x25\x20\xe7\x09\x20\xa2\xf8\x28\xf4\x4a\x0a\x09\x09\x8e\xe7\xa4\x6a\xc2\x45\x4b\x00\xa5\x86\xd2\xc7\x8d\xa1\x47\xb2\xa0\x36\x66\xa1\x89\x00\x26\x99\xc9\x30\x60\x4d\xc3\x43\x70\xd8\x72\x0e\x48\x0c\x94\xa5\xf8\x21\x60\x66\xdf\x20\x96\xf4\x94\x9e\x90\x84\x05\x12\x17\xcb\x48\x95\xef\x8b\xfa\x0d\x6b\xd8\xe1\x74\x3c\x1d\x41\x59\xd1\x78\x3f\x66\x51\x09\xf9\x26\x49\x49\x20\x50\x15\xd1\x11\x1d\x4f\x9b\x51\x25\x9a\x4f\x4b\xe1\xb7\xa4\x57\xf8\x13\x1c\xeb\x37\xc7\xdd\x31\x11\x51\xc0\x3a\x85\xd3\x53\xf9\xf3\xa2\x7c\x82\x12\x7a\x8c\x1f\x1f\x1f\x61\x09\x91\x08\x48\x36\x5d\xe2\xd9\x66\x4d\x1a\x21\xc0\x31\xf9\xf1\x70\x38\x0c\x1a\xc0\x43\xfe\x89\x5f\x02\x66\x9e\x70\x01\x49\x89\xe1\xff\x26\x01\x4c\xfc\xca\x30\x00\xc7\x86\xc9\xe5\xc2\x27\xc2\xe5\x72\xbe\x59\xef\x5d\xb1\x88\x52\x72\x2b\xac\xe3\x75\x1a\xc7\x0a\x3a\xae\xd9\x1c\xdf\xfa\x31\x0e\xe2\x2d\x80\x92\x85\xbc\x94\x51\xca\xae\x04\x66\xcd\x85\xaf\xd7\x37\x2b\x94\x54\x15\x02\xa9\x38\x2d\x9a\xc3\x20\xc0\xdc\xe1\x3b\x5c\xda\x9c\xb4\xc9\xfb\x25\xf6\x4d\x25\xff\x41\x40\x6c\x73\x25\x40\x79\x68\x68\x71\x73\x0f\xab\xb5\xe3\xf2\xd6\x36\xf6\x1f\xe9\xa1\x17\x4a\xa8\x41\x6d\x5d\x95\x6d\xf6\x19\x3b\x8a\xe6\xdb\xf4\xc3\x2d\xb5\x9e\xae\x38\x0e\x57\xd2\x79\x3a\xbd\xbb\x86\x6d\x57\x57\x5d\x8f\x97\x57\x08\xfd\x8f\x46\xc9\x02\x9c\x6e\x37\x5b\x23\xa7\x85\xe5\xde\xff\x17\xe0\xb4\x48\x67\x71\xfa\xf8\x18\x1a\x39\xcd\xcf\x5f\x95\xd3\xfc\x3c\x8b\xd3\x30\x7c\x7c\x34\xb2\xda\xe7\x5f\x95\xd5\x3e\xb7\xb0\xaa\x81\x7f\x4d\x56\xcc\x7c\xf8\xa7\xaa\x29\xbc\x63\x55\x76\x4d\x65\x91\x06\xbb\xbf\x79\x4c\xf2\xe3\x77\xa1\x1f\xa3\x62\xf1\xfd\x82\x2e\x13\x2d\xbe\x5f\x44\x75\xff\xf0\x34\xae\xb6\xd0\x64\xb6\x88\x74\x5f\x34\x31\xe3\x38\xaa\x0e\x04\x79\x56\xef\xc7\x38\x39\x3d\x70\xd3\xf8\x88\xd2\x75\x9a\x80\x37\x8d\x9f\xc8\x8d\x6d\x7a\xcf\x47\x1c\x21\x17\x7e\x18\xb7\x0b\x94\xb4\x78\x5e\xef\x55\xd7\x6e\x39\xbe\xd9\xa1\xe5\x0d\x3a\x57\x37\xe8\x84\x9a\xd6\x6b\x50\x7a\x3d\xa2\xd4\x2b\x2a\x76\x81\x08\x7f\x3e\xdc\x64\x41\x0b\x94\xc9\xbd\x75\xb9\x1d\xf6\x7b\xaf\x68\x3d\xd4\xd7\x49\x99\xea\xc3\x29\x8f\x78\x06\xb7\xa1\x10\x5b\xa5\xc9\xca\xf3\x4d\x8b\x7c\xa7\x84\x3e\xc5\xff\x31\x79\x2b\x88\x68\x50\x1f\xa7\x16\x91\xfd\xac\xe0\x90\x9e\x4e\x43\xe8\x1f\x6c\x48\x7b\x99\x1e\xbd\x11\xcd\x4c\x75\x18\xad\x96\x51\x1c\xb3\x88\xab\x8a\x18\x86\x78\x21\xf5\xb5\xf3\xea\x3c\x39\xa2\x0b\x09\xcb\x25\xc7\x59\x7d\xaa\xea\xe4\x98\x75\x2f\xe4\xc6\xb7\x26\xc7\xbb\x0b\xcf\x2f\x32\x06\x70\x15\x93\x7f\x6d\x50\x92\x56\x65\xfe\xf2\x11\x9a\x80\xd2\x99\xc1\x88\x91\xc6\x17\x02\x9a\x82\xd6\xe6\x73\x92\x5f\x91\x4b\xab\xc8\xac\x91\x30\x25\x32\x5b\x1e\x09\x1c\x6a\xec\xf3\x74\x33\x85\x14\xa0\xb1\xa2\xc4\x10\x55\x64\x20\xe0\x5d\xfd\xfb\x45\x28\x8c\x00\x7c\x69\x17\x02\x51\x62\xb9\x4d\x44\x6c\x0a\xfd\x58\x65\x02\x5b\x17\x9d\x8f\x49\x2e\x44\x00\x3d\x10\xc8\x14\xcd\xb6\x00\x68\x46\x93\x44\x23\x98\xaa\xbf\xdb\xc2\x54\xa5\xb6\xa9\xf3\x24\x2b\x71\x4f\x35\x8f\xc9\xea\x88\xab\xc6\xf9\x09\xd4\xc1\xd7\x1e\xba\x71\x6a\x9c\x31\x3e\x49\xc5\x58\xa2\x6f\x22\xc1\x95\x90\x93\xf3\xf3\xd2\x09\x4e\x90\xbb\xe9\x32\xb1\x0a\x0f\xda\x29\xd0\x4c\xd1\xd6\x51\x63\x21\x19\x1a\x07\x8c\xc1\xa0\x56\x0a\x24\x1e\x42\xb4\x09\x69\x38\x00\xc8\x14\x65\xb2\x97\x01\x0c\x11\xbf\x16\xd7\xbc\xcb\xea\x1c\x7d\x5c\x42\xb9\x98\xc4\xc7\x21\x8c\x9a\x6c\x8b\xa4\xe8\x1e\x24\x87\xc4\x5e\x83\x22\x37\xd2\x6c\x40\x2d\x85\xf0\x32\x43\x14\x0f\x0c\x3a\xef\x96\xba\x76\x49\x9d\x5c\xa4\xe5\x88\xd8\xc5\xf3\xe1\xd3\x76\xed\x5c\xbb\x93\x3b\x62\x22\x31\xc4\x80\x0b\xbe\x72\x85\xe4\x0b\xbd\x52\x9d\x08\x02\x6a\x55\x80\x87\x2f\x45\x49\xac\xd4\x28\x94\x9e\x11\xd3\x60\x3a\xfe\x43\xcc\x22\xe3\xcf\x52\x03\xfe\x95\x03\x7f\xd4\xa1\xd5\x08\xe4\x5a\xbe\x1a\x4f\x53\xc6\x8e\xd5\x4f\x8d\xbc\x42\x1a\x8e\x6c\xe2\x91\x58\x39\x2d\x7f\x3f\x46\x89\xc5\x23\x47\xcc\xd9\x02\xf5\x24\x61\x4b\x2d\x42\x6c\xbb\xa4\xcb\x8e\x4f\x50\xfc\x46\x86\x75\x15\x46\x40\x68\x4f\xff\x73\x92\x67\xa9\x77\x42\x28\xc5\xa3\x98\x14\xf4\xea\x49\xdf\x15\x1d\xb5\x14\x8e\xa6\x43\x43\x54\x73\xac\x5d\x55\xe1\x9e\x05\x34\x35\xd9\x06\xc5\x78\xff\xea\x91\x68\xb6\xfb\xf8\x49\xa2\x6c\x88\xc7\x26\x0d\x3d\x22\x4b\xa1\xdb\x58\x64\xf3\x89\xc9\x9c\x6a\x1d\x2c\xc3\xcd\x76\xb9\x79\x5c\xfa\x8f\x0f\x86\x18\x3b\x19\x99\x49\x64\xe9\x7f\x28\xb2\x5b\x6a\x39\xac\xfe\x4b\xff\x39\x61\x39\x49\x87\xd2\xc5\xde\x50\xdc\x06\xc5\x45\x29\x47\x4d\x96\x46\xa3\x81\xbc\x8a\x49\x9e\x10\x91\x74\x65\x59\x83\x45\x16\x97\x07\x02\xc0\x63\x79\x10\xc5\x96\x15\xc9\x19\xed\xaf\x4d\xfe\xdd\xbb\x34\xe9\x92\x3d\xf9\xfe\xa1\xfd\x7c\xfe\xbe\x2f\xf2\xa7\xe3\x25\x69\x5a\xd4\x7d\xb8\x76\x27\x6f\xb7\x7c\xbf\xfa\x43\xfb\xf9\xbc\xe8\x8b\xbc\x6c\x3f\x7c\x7b\xe9\xba\x7a\xff\xc3\x0f\xcf\xcf\xcf\xfe\xf3\xca\xaf\x9a\xf3\x0f\x51\x10\x04\xb8\xe8\xb7\x0b\xd2\xea\x1f\xbe\xdd\x7d\xbb\xa0\xed\x86\x7f\xbe\x5f\xfd\xf1\xfd\xea\x0f\x75\xd2\x5d\x16\xa7\x2c\xcf\x3f\x7c\xfb\x3e\x5a\x51\x96\xbf\x5d\xa4\x1f\xbe\xfd\x39\xf2\x57\x8b\x8d\xbf\x5d\xfd\xe4\x6f\x16\x6b\x3f\x5e\x1d\x3d\x7f\xed\x85\x7e\xb0\xf6\xd7\x1b\x2f\xf4\xd7\x8b\xd0\x0f\x3d\x7f\x97\x87\x7e\xb8\xc0\x9f\x2b\x7f\xed\xad\xfc\xdd\xd1\xdf\x78\xfe\x66\xb5\x08\xf1\xdf\x68\xbb\x08\xfd\xc8\xdf\xe6\xde\x7a\xb1\xf6\x37\x18\xc5\xca\x8f\x3d\x7f\x47\x50\x85\x7e\xf8\xd7\x6f\x7f\xa0\x7c\x60\x3e\xdf\xaf\xfe\xf8\x4e\x12\x46\x83\x6a\x94\x74\xfb\xb2\x62\xbf\xc4\xbc\x71\xc0\x24\x6b\x5e\xc3\xec\x8e\x0a\x36\xa4\xba\xfa\xb0\xe0\x4f\x4b\x8d\x05\x89\x2e\x53\x70\x0e\xbd\xe2\xc0\x50\xaa\x41\x1f\xe8\x1c\xd8\x41\x2b\x98\xdf\x02\xea\x86\xcd\x13\x11\x7a\x0d\xf1\x44\x64\x42\xa0\xe9\xa4\x04\x61\xb3\x3a\x30\x7e\x9b\xa7\x90\x83\x9c\xbb\xaa\x36\x4a\xd9\xda\x06\xaf\xfe\xf1\xda\x76\x55\xe1\xb1\x89\x80\xb1\x47\x49\x60\x33\xbb\x14\x6f\xb5\x88\x0f\xc9\x62\x25\xbe\x56\x7f\x5a\x8f\xfd\x29\x06\xfb\x13\x5d\x21\x65\xfd\x69\x11\xfc\x14\x2c\xa2\xcb\xfa\xaf\x45\xb0\x88\x7f\x0a\x16\xab\xcb\x5a\x57\xff\xc5\xa0\xec\x4c\xa8\x6c\x55\x83\xea\xf1\x0f\xbb\xba\x5f\x84\x41\xdd\x2f\xff\x3f\x3c\x42\x90\x57\x66\x05\x39\x51\xd1\x30\x71\xb1\x58\x8d\x3f\xcc\xea\xe0\xb0\x7e\x1a\x7a\x38\xa0\xa5\x5f\xaa\x8b\xab\x33\x11\xc1\xf6\xe9\x93\x30\x70\xe0\x11\x26\x70\x86\x82\x37\x65\x52\x61\xa1\xa9\x9a\xd2\x49\x50\x83\x69\x36\xf2\x66\xb7\xd5\x13\xc5\x0c\xc6\x9b\x35\x0f\x77\x83\x54\x46\x95\x6c\x58\x96\x10\x8e\xbd\x05\x81\x2a\xd3\x3b\x78\x60\x81\x11\xdf\xcc\x8a\xf2\x90\xd4\x1c\xc6\xf6\x44\xd4\xe8\x8b\x31\xe8\x84\x4f\x61\x74\xb5\x3e\x22\x70\x01\x89\x66\x4c\xd5\x80\xf4\xc3\x2f\xc6\xff\x34\xb6\xdb\x9c\xde\xed\xc0\x3a\x0d\xfb\xc9\xe4\xf6\x30\x51\x11\x96\x49\xe2\xfd\x1a\x54\x8c\xe4\xcd\xd5\xf1\x3b\x58\x81\x71\x8f\x9c\xed\x4d\x6c\xd9\xf5\x14\xa8\x9a\xd2\x28\xd3\x15\x54\x99\x30\x22\x78\xfb\xf0\x9d\x95\x5f\xd6\xef\xa3\x0f\x0d\x8d\x78\xff\xfe\x3c\xbf\x28\x0a\x96\xf1\x6a\xd2\xf3\x63\x15\xfc\x0f\x4d\x82\x4b\x30\xd7\xe4\x01\x5a\xd0\x4c\x41\x3a\x7a\x82\x0c\xdc\x3e\xeb\x67\x40\x8a\x3e\xb1\x57\xa3\xfe\x86\xbc\xc1\x30\x1a\x27\x7b\xf8\x37\x9d\xe3\x61\x7d\xf9\x76\xd1\x76\x4d\xf5\x09\x91\x19\x1f\x65\x9c\x4d\x06\x8f\x59\x73\xcc\xd1\xe2\xd8\x7f\xf8\x76\xf3\xed\xe2\xf8\x42\xfe\x34\x1f\xbe\x5d\xfb\x31\x9f\xa7\x91\xf9\x22\x2d\xef\x61\x85\xf9\x4b\x95\x95\x1f\xbe\x25\xf5\xa1\xd3\xc6\xd8\xdf\x2d\x56\xfe\xe6\xe2\xaf\x7f\xda\x2c\x36\x7e\x3c\xcc\xf0\x74\xe4\x3b\x3f\x22\xe8\xfd\xcd\xb7\xe3\x14\x94\x31\x34\xf0\x48\x38\xfe\x3b\x74\x23\x99\x9e\xb8\x38\x92\x12\x28\xac\x58\xb6\x81\x4a\xe8\x86\xce\xae\x24\x57\x75\xa3\x33\xc9\xd5\xfc\x6f\xc0\x9d\x34\x75\x4b\x79\xaa\x3e\xb7\x5f\xfe\x97\x4b\xf9\x5f\xc3\xcc\xd4\x30\xf3\x1b\xf8\xa2\xf6\x61\x02\x54\xf1\x2f\x35\x4e\x40\x0e\xdf\x60\x3a\xe7\x7b\xa4\xc6\xa2\x37\x65\xc2\x63\xa5\xab\x1b\x77\x27\x70\x67\xdf\xd4\x79\x16\xe1\x50\x74\xa6\x8f\x3a\x94\xbf\xdf\x4b\xb5\xa2\x50\xe5\x7c\x17\x1f\xb3\x1c\x29\x17\x4c\xa0\x9e\x4e\x32\xf7\x05\xbd\xd5\x39\x18\xd5\x93\xd5\xeb\x4d\xb0\x49\xa1\x03\x96\x24\x63\xba\x16\x5f\xca\x63\x75\xc7\x67\xf5\x59\xd5\x11\xc0\x89\xfd\xb7\x7b\xad\xaa\x9a\xcc\xf5\x5b\xef\x67\x67\xd2\x69\x34\xb3\x66\xd7\x5b\xb0\x82\x6f\xf1\x5e\xa7\x50\x7c\xa1\xe1\x5e\xd9\x72\x1d\x37\xc9\xc9\xc3\x51\x4d\xf5\xbc\x20\x1b\xe5\xfa\xf6\xab\x54\x5e\x1c\x1c\x85\x7b\xa0\x96\x10\xa5\x62\x61\x5a\x9f\xbf\x5c\xdb\x2e\x3b\xbd\x78\xfc\xad\x10\x33\x19\xfa\x36\x1b\x80\x42\xaa\x05\xb0\x63\x0c\xef\x3d\xeb\xb8\x95\x7b\xff\xba\x3c\xc0\xca\x2b\x87\x18\x81\xe7\xce\x09\x36\xf8\xed\x3e\x33\x42\xe0\x2c\x8e\xf2\x24\x89\x58\x52\x9a\x20\xc8\x32\x12\x9f\xc4\xbe\x8d\x0c\x99\x1b\x72\x4a\x9c\x70\x8b\x89\x75\x05\xcf\xcb\x4c\x6f\xc4\x8f\xef\x59\x62\xc9\xb7\x97\x26\x2b\x3f\x8d\x7b\xf1\xd0\xc6\x3c\xb8\x2d\x0f\x09\x86\xb7\x92\x73\x75\xac\x68\x0c\x67\x1a\x5e\xfd\x43\x67\x78\xf7\x5e\x3d\x81\x6a\x7c\xbf\x96\x31\x05\x6a\x8b\xfa\x08\x3e\x3f\xa7\x78\x6d\x51\xc3\xe7\x86\x64\x21\x88\x1c\xc6\x04\x52\x5b\x3d\x51\x4b\x98\x3a\x90\x35\x1e\x72\x15\x0f\x65\xb9\x9d\xc3\x9d\x3a\xdf\xa4\x1e\x8f\x35\x9d\x8b\x55\x58\x84\x4e\xce\x7e\xed\x73\xb5\xb8\xa5\xf5\xe3\xb4\x87\xae\x04\x6f\x23\x83\xef\x95\x62\x68\x9f\xcd\xf7\x71\x41\xf9\x39\xcb\x79\x07\x58\x31\x2a\xe1\x1d\xff\xae\x1c\x4e\xf6\xdc\xf8\x19\x4f\x7f\x13\xbf\x26\x32\x20\x7f\x0b\x70\x00\x5e\x10\x80\x1b\x53\x30\x0f\x7d\x46\x65\xd7\x8e\xdc\xf2\x0b\xc2\xf6\x0b\x23\xec\xc5\x58\xd9\x50\xd1\x44\x09\x8b\x50\xf7\xe1\xe6\x31\x90\x34\x7d\x25\xe3\x9b\x20\xd8\x3c\xa6\x8f\x1a\xc5\x4d\x74\x3c\xba\x51\xb4\xce\x96\x56\xbb\x65\xb8\x66\xc2\x66\xb2\x1e\x10\x4a\x32\x1f\x70\x0e\xb2\xff\x22\x72\x52\x1e\xcf\x24\x9f\x03\xe1\x07\x9f\x5f\x8f\x72\x2e\xb1\xe7\x25\xda\x4b\xf5\xfc\xa3\x5c\x9d\xa6\xaa\xd3\xea\x19\x0f\xb6\xe7\x73\x8e\x26\xa5\x1e\x1d\x8f\x1a\xff\xf1\xf1\x70\x07\xff\x50\xcb\xbb\xd4\x82\x97\x9b\xac\xcb\x9d\x0d\x3d\xdc\xe1\xb6\xcb\x82\x9d\xd0\x96\x65\x31\xbc\x8f\x26\xe2\x11\x75\x70\xbc\x20\x0e\x26\x3a\x68\x7e\x9c\x6c\xa2\xcd\x4e\xa1\x1b\xaf\xe3\xc3\x26\x72\xa7\x6b\x15\x4a\xb8\x0a\x96\x21\x91\x0c\x24\x15\xa5\x03\x8c\x88\xdd\xba\x80\xbb\xd8\x66\x74\x02\xc7\x32\x40\x37\x10\xaa\x35\xa7\x23\x50\x79\xab\x37\xf7\x50\x1c\xc7\x87\x7b\x6a\x01\x2b\xc3\x7d\x9d\xc1\x58\xa3\xbb\x5b\x9e\x5e\xca\xb7\x0b\x64\xd8\x55\x83\x76\xfd\x04\x2c\x92\x4e\xb2\xdb\xfe\x40\x92\x43\x3f\x88\xc2\xdd\x6e\xa5\xf6\x83\x10\x6d\xd1\x6a\xed\x46\xd1\x2a\x89\x6d\xb4\x0c\x77\xc1\xf2\x71\xab\xc9\x41\xd5\x7f\x86\xd2\x4d\xfb\x5d\xc5\x34\x47\xf7\x5d\x4a\x40\x9a\xcf\xab\x33\x47\xef\xa9\x7c\x55\xa1\x1f\xb7\xeb\x55\x30\x9f\x7f\xa8\xe1\xef\xd4\x79\xb8\x2e\xf7\xb5\x73\x56\x9e\xaa\x09\x29\x6c\x93\xe8\xa0\xa9\x1e\x49\x1c\x51\x88\x7a\x47\xa2\x36\xa8\xdf\x0e\x3a\x1e\xae\x76\xeb\xc7\x8d\x4a\x28\xdc\x26\xbb\xc3\x14\x21\x6b\xad\xe3\xdd\x32\xdc\x6e\x96\xe1\x63\x2c\x57\x5b\xd1\x6d\x82\xcd\x4d\xb1\x9d\x44\x32\x43\xab\xa7\xc1\x01\x95\xa6\x55\x98\xa5\xcf\x44\x96\x2a\xdb\xc1\x36\xd8\x9e\x66\xb2\xad\x35\xef\x7d\x9a\x0c\x55\xe1\xce\x06\x65\x01\x2f\xa6\xa2\x24\x7d\x73\x3a\x1d\xc3\x60\xfb\xa4\xc6\xe3\xc0\x89\x12\x22\x51\xcf\x78\x30\x0d\x20\xc9\x29\x34\xd3\x37\x28\x48\x76\x81\x7a\xf5\x3d\x5d\x3d\xa2\x20\x70\x23\x3a\xb1\xda\x19\x2d\xc3\x2d\xf6\x98\x34\x71\x28\x2a\xce\x71\xaa\x5a\xfe\x66\x69\xcd\xd0\x75\xa7\x12\x80\xba\x0f\x35\x82\x35\xde\x58\x05\x2a\x66\xa5\x0a\xc7\xcd\x63\xac\xc8\x7e\xb6\xde\xcf\xa9\x88\xae\xfa\x86\xea\xdc\xd9\xdc\x34\x74\x89\xbd\xf7\x0f\x4b\xa9\xd0\x72\xef\x88\x44\xd4\x41\x16\x11\x45\x4f\x71\x18\xcd\x8f\xbb\x68\xb5\x5a\x29\xe4\x0e\x69\x14\x72\xe3\x69\x27\x37\x21\x82\x78\xb9\x5b\x49\x76\x8c\x61\x93\xf5\x9d\x21\x74\x1b\xd4\x1d\xe5\x33\x43\xd5\x5d\x0a\x00\x9a\xce\xab\x32\x67\x68\xa7\x82\x55\xa5\x1d\x85\xa7\x28\x9d\xcd\x3c\xd0\xde\xf7\xe9\x38\x5c\x91\xfb\xda\x97\xc4\x04\x99\x1e\xaf\x76\xa7\xc7\x53\xa2\x8e\x57\x24\x51\x40\x23\xea\x1c\x0d\x65\xa3\x25\x38\x8e\xeb\x11\xda\x20\x95\x5c\x9a\xa0\x00\xc5\xd3\xe4\xec\x12\x08\x37\xcb\x28\xdc\x2e\xa3\xf0\x51\x91\x81\xa2\xe2\x14\xa1\xfb\x80\xee\x24\xa0\x19\x3a\xee\x00\x0f\xa8\x38\xab\xc9\xdc\xa1\x9c\x48\x56\x33\xa3\xe9\x63\x7a\x9a\xcb\xbc\xde\xe2\xf7\xa9\x38\x58\x91\x7b\xdb\xd7\x35\x56\xcd\x93\x7a\xda\x98\x06\xb0\xe1\x28\xe4\x21\xb5\xf9\xb4\x57\xbf\x5d\xfc\xcd\x55\xb4\x8d\xb4\xa9\x62\x1a\x85\xd1\x7a\x8a\x90\xb5\xde\xbb\x68\xb9\xdb\x2d\x1f\x57\x72\xa5\xb5\x61\xbb\xf9\xe4\x38\x68\x3b\x09\x64\xd6\x90\x3d\x05\x0e\x0e\xd8\xb8\x0a\xb3\x66\xe2\x44\x92\x9a\x03\x11\x26\x61\x3a\x93\x6d\xad\x71\xef\x1d\xaa\xf5\x2a\xdc\xd5\x9c\x6c\x79\x5f\x5d\x49\x9f\x5c\x0b\x56\xca\xb9\xad\x8a\xcf\xc3\x29\xaa\xab\x4a\x6e\xba\xaa\xc2\x8e\x84\xa1\xae\x8a\x16\xab\x24\x54\x85\xe6\xec\x1b\xf6\xa3\x60\xb1\xb8\x6b\xf2\xac\x92\x80\x52\x6b\x95\x9b\xb7\x74\x3e\xb3\xb9\xe7\xaa\xfa\x3d\xb5\xd3\xb5\x7e\xa2\x8e\x6f\xd3\x0a\x6d\x65\x7d\x72\x31\x58\x2b\xe9\xd2\x0b\xe6\x63\x85\xfa\xc1\xac\x15\xf3\x60\xb7\x0c\xc3\xed\x32\x8c\x6c\xb5\x36\xf4\x06\xf3\x0a\x3a\xaf\x88\x53\x7f\xb8\x67\xdd\x7c\x66\x59\x4b\x9f\xb8\x73\x1d\xfd\x0e\x05\xb8\xb7\x5f\xbc\x75\x5d\x7d\xb2\xa6\x6f\xd6\x13\x79\x9d\x7d\x72\xa9\x58\x29\xe7\x34\x87\x99\x89\x13\xec\x17\xce\x6b\xe8\xc2\x35\x1a\x43\x5d\x4d\x3d\xc2\xb0\xa6\xce\xd9\x77\xeb\x0f\xb3\x57\xd2\x67\x95\xb4\xf5\x85\x7b\x56\xd6\x67\x37\xf7\xdd\xfd\xe0\x4d\x2b\xed\x13\x75\x7c\x9b\x56\x88\x2b\xef\x93\x0b\xca\x62\x21\xa7\xb5\xf4\x39\x08\x21\xc5\x77\x5c\x5b\x8f\x56\xcb\x70\x13\x2d\xc3\xdd\x1a\xae\xa0\x41\xe7\xc1\xb5\x76\xce\xb3\x93\xc2\xcf\x5c\x61\x77\x2f\x66\x51\xf5\x3b\x56\xdc\x67\xb5\xeb\xbd\x4a\xfe\x86\x15\x78\x5b\xd5\xde\xd8\xfc\xca\x8a\xfc\xe4\x52\xb2\x52\xce\x71\x09\x66\x2e\x5a\x48\xd7\x67\x2c\xb5\xc7\xf1\x32\x7c\x5c\x2d\xb7\xc6\xea\x1a\x14\xde\xb4\xf2\xce\xd9\x77\xd2\xf9\xf9\x8b\xed\xb3\x4a\x5a\x34\xff\xde\xc5\xf7\xd9\x8d\x7e\x6f\x17\x78\xdb\x62\xfc\x44\x35\xdf\xa6\x18\xf2\xda\xfc\xe4\x2a\xb3\x5c\xcc\x65\xac\x9f\x89\x12\xea\x01\x33\x56\xde\x87\xc3\xd6\x70\x3d\x0d\xfa\x6f\x58\x89\xe7\xac\x3b\xa9\xff\xec\xf5\xf7\x39\x05\x2d\xca\x7f\xcf\x7a\xfc\xdc\x66\xbe\x57\xef\xdf\xb4\x3e\x6f\xaf\xe0\xdb\xb4\x41\x5a\xaf\x9f\x5c\x75\x96\x4a\xb9\x8e\xfc\xb3\x90\x42\x5a\xef\xbc\x18\xbf\xde\x2d\xa3\xf5\xe3\x32\x8a\x03\x43\x45\x0d\x5a\x0f\x2f\xce\x73\xc6\x9d\x94\x7e\xee\x7a\xfc\x8c\x72\x16\x95\xbf\x6f\x7d\x7e\x66\x33\xdf\xab\xf3\x6f\x59\xaf\xb7\x56\xf0\xad\xaa\x20\xae\xdf\x4f\x2e\x4c\x8b\x85\x5c\x46\xf9\x59\x08\xe1\x31\xde\x69\x85\x3e\x8e\x96\xf1\x6e\xb9\x01\x26\x74\xc0\x4a\xbd\x84\x5b\xd5\x73\xce\xb1\xe3\xe0\x3e\x6b\x9d\xde\xbd\x98\x75\x60\x9f\xbb\x6e\x3f\xaf\x55\xef\x1f\xd4\xef\x5e\xc7\xb7\x55\xed\xae\xc6\xcf\xb3\xf2\xd3\xcd\x70\xbb\x83\xad\xf2\x1a\x0f\xff\x93\xc2\xb2\x6e\x07\x41\xbc\x39\xac\xb4\x22\xd7\x32\x45\x0d\x66\x7c\x2c\x27\xef\x9a\x96\x5c\x75\x8d\x25\xc5\xeb\x04\x32\x07\xda\x8e\x69\xa9\xeb\x2a\x5b\x9a\x33\x5e\x0c\x20\xb7\x8b\x48\x94\xfc\x43\x57\x32\x3c\xe7\xdb\x17\x0b\x3d\x2b\xd0\x68\x0b\x81\xc6\x18\xab\xf7\x8b\x84\xd6\xc5\x28\xc9\x7d\x1d\x4b\x78\xea\x01\xe6\x7b\x01\x5c\x8c\xaa\x42\xe2\x9d\xd0\x80\xa9\xdd\x4b\x8d\x3e\x1c\xae\x5d\x57\x95\x1f\x47\xe8\xa5\x90\xd9\xa0\x16\x75\x86\xbc\xf6\x7a\x28\x32\x31\x53\xbc\x62\xe7\x9f\x92\x14\x89\x37\x50\xd8\x35\x0f\x7a\xa3\x05\xd7\x36\x69\xdc\x83\xc4\x2b\xb8\x78\x70\xf8\x24\x45\xb4\x63\xe1\x0e\xf4\x30\xdc\x24\x09\x48\xac\xea\x3c\xa9\x5b\x29\x5b\x8c\x45\x33\x40\x60\x0f\x57\xbf\xe0\xc5\x1a\x22\x18\x1e\x19\xd8\x5f\xb2\x34\x45\xa5\x78\xf9\x87\xc2\x2c\xfc\x15\xbb\xa1\xe3\x5c\x1b\x81\xb2\x5e\x27\xde\xe7\x97\xe4\x57\x8e\x4e\x1d\xfd\xd5\xd0\xc7\x8a\xf0\xcf\x6b\xad\x73\xfc\xaa\x8d\x83\xcf\x97\xac\x43\x5e\x5b\x27\x47\x2c\x04\x7a\x3b\x50\x1d\x50\x92\x53\x87\x1a\xf8\x42\x98\x78\x67\xcd\x8f\xe2\x58\x7f\xf9\x92\xa5\xf2\x6b\x69\xef\xde\x89\xef\x60\xfa\x2b\x54\xd0\x6b\x58\x83\x26\xb3\x50\xb5\x3c\x1d\x8a\x99\x3d\x84\xe8\x66\xdf\x94\x3a\x58\x44\xaf\x0c\x2a\xea\xee\x85\x55\x49\xb9\x71\x37\x80\x16\xa8\xbc\xda\x02\x17\xb1\x98\xbd\x3c\x7e\x51\x18\x04\x81\x1c\xc2\xe8\x94\x57\x49\xb7\xc7\x60\x4f\xc2\xcb\xd7\x01\xee\xc1\xf2\x60\xc2\x6f\x02\xee\x7d\x1a\xb5\x03\x8f\xd4\xea\x75\x33\x79\x3e\x26\x5c\xb2\x23\xf8\xf3\xac\xed\xbc\xb6\x7b\xc9\x91\xe1\xe2\xdb\xfc\x67\x1f\xc4\x67\x80\xc2\xd8\x14\x0a\x49\x92\x16\x91\xe1\xad\x19\x62\x61\x3f\x81\x32\xa5\xad\x7b\xe3\xf1\xc8\x09\x0c\xb9\xc4\x69\xbe\x69\x2b\x97\x6f\x0b\x47\x42\x6d\x61\xa4\x05\x10\xdb\x6e\x76\x00\xb1\x22\x75\x24\x56\xa4\x73\x88\x3d\x3e\x46\x00\xb1\xfc\xec\x48\x2c\x3f\xcf\x21\x36\xbc\xb6\x2e\x23\xe9\x73\x47\x6a\x7d\x6e\xa6\xc6\x46\x99\x85\xd2\x6f\x70\x2f\x21\x18\x79\xec\x73\x25\x88\x98\x1a\x69\x9f\x69\x3e\x80\xee\xab\x0f\x3f\xc1\x1d\xa3\x8e\x3e\x64\x4d\x0e\x3f\x50\xa5\x26\x86\x21\x16\xfb\x46\x97\x6c\xf0\xa4\xb6\x99\x51\xbe\x94\x2f\x51\xba\x2a\xd6\xdf\x70\x7c\x87\x24\xca\x75\xca\x24\x60\xa8\x8c\x22\x6c\x6b\xbd\x66\xca\x58\x92\x86\x52\x4b\x56\x04\x17\xb7\xb5\xca\x68\x1d\xd8\x3b\xfb\xc6\x2b\xdf\x62\xb3\x28\x58\xbf\x4e\xab\xc8\xd3\x1a\x33\x59\x16\x77\xc3\x46\x77\xb8\xb5\xfe\x35\xd4\x41\xef\x5f\x56\xbd\xb0\x55\x65\xa2\xfd\xad\xf5\x87\xdb\x7f\x68\xf5\x5f\x7b\xfa\x26\x4e\x81\xca\xee\xff\x7c\xa0\x1c\x7e\x5c\xda\x60\x30\x35\x3b\x04\xa9\xbf\x1d\xa4\xab\xea\x8f\xe2\xa0\xcd\x44\x43\x03\x21\x0c\xe5\xd2\xec\x73\x96\xa2\xe6\x36\x4c\x4f\xf9\x1c\x83\x4d\x39\xd4\xd9\xaa\xd0\x42\xc2\xdb\x4f\xf4\x6d\x1d\x01\x6d\xd6\x21\xcb\x8b\x6f\x8a\x03\x13\x52\x0f\xe6\x98\xa3\xa4\xd9\x1f\xaa\xee\xe2\x1e\x3b\x80\xbf\x66\xa3\x4f\x4d\x27\x6f\xf5\x07\x0a\xbb\xdc\x73\x96\x13\x25\x57\x35\xdc\x84\xbb\xf0\x00\x7a\xb7\xc6\xb5\x2f\x85\xca\xb0\x64\x21\x93\xa1\xa9\xe2\x4a\x83\x23\x11\x7e\x82\x4a\x26\x32\xba\xb7\x32\x19\x77\x1f\xd7\xb2\x46\x23\xe9\x1c\x71\x84\xd4\x30\x50\x03\xc4\x05\x25\xa9\x30\x30\x49\x2f\x7e\x70\x17\x59\x0a\xd2\x09\xbc\xa8\xc3\xdd\x59\x99\x65\xab\x2f\x82\xeb\x0a\x3d\x9e\x62\xd0\x3b\x51\xb9\x04\xbf\x7b\x29\xb8\xe0\xbc\x8b\x5b\x9e\x33\x11\xdf\xf0\x30\x44\x3e\xd1\xf1\x09\x8e\x3d\xc9\x20\xdf\x86\xf0\x20\xfb\x70\x11\x2e\x68\xf7\x35\x20\x92\xd6\xc3\x80\xfc\xfd\x54\xbe\xb0\xc0\x02\x65\xb3\x27\x45\x65\x6e\x75\xa2\x06\x5a\x30\x09\x01\xf3\x6d\x70\x92\x68\x0d\xbb\xaa\xca\x0f\x49\x63\x7d\xd7\x46\x0d\x65\x42\xe3\xa8\x74\x49\xd3\x49\x38\xcc\x21\x61\x64\x46\xe8\x4f\xba\xd2\x76\xca\x9a\xb6\xf3\x8e\x97\x2c\x4f\x1f\x34\x86\x35\x88\x9b\xfc\xfc\x4c\xdd\xdb\x50\xe7\xc9\x50\x0e\xd4\x00\x0d\x8a\x2d\xf6\xc9\xf6\xe7\xe1\x36\x8e\xc6\xd4\x22\x72\xbf\x4b\x99\x27\x29\x99\xae\x95\xb6\xb0\x26\xd5\x5c\xe0\x02\xd7\xde\xc4\x84\x94\xa7\x39\xdb\x5e\x5b\xe7\x59\xa7\x04\xdd\xf4\xe3\x0d\x5d\x31\x93\xc2\xeb\xf0\x54\x03\x0e\x6a\xc5\x97\x96\x79\x9b\x0e\x07\x4c\xbb\x45\x20\xe7\x29\x01\x2b\xc4\x26\x06\xd2\x1c\x28\x00\x96\xf4\xbe\x87\xcb\xf3\x95\x3e\x43\xb6\x2a\x24\x1a\x80\x46\x91\xd1\x8a\xbd\x0b\xa4\x2d\x55\x5a\x69\xe6\x67\x47\x9a\x10\x49\x8d\xe2\x30\x6a\x92\x5e\x99\x66\x0d\x3a\xf2\x20\x37\xd7\xa2\x94\x02\x2d\x8d\xfd\xd6\x18\x9d\x68\x7a\xf4\x94\x33\xa4\xce\x3e\xae\x64\x1a\x21\xad\xbd\x5e\x19\x09\x8d\xdd\x1f\x4f\x8c\x94\xde\x6f\xa6\x65\x19\x06\x20\x7a\xce\xe3\x01\xd8\xeb\xed\xbd\x71\xa6\x64\x5c\xd8\x9d\x35\x46\xe8\x43\x98\xc8\x13\xad\x9f\x46\x54\x48\x16\xcd\xa7\x16\xfc\x6c\xaa\xc4\x42\x58\x82\x26\x61\xba\x0e\x55\xff\x71\x9a\x90\x58\x0c\x73\x5d\x99\xca\xcc\xc1\xaf\x23\x05\x56\x17\xc9\xba\x1c\xee\x4d\x6c\xe9\x2d\x78\x80\xf7\x29\x44\xa3\x67\x9e\xb9\x40\x76\x55\xec\x9b\x6d\xd7\xa0\xee\x78\x91\xf6\x04\x04\xcc\x3f\x8a\x21\xfb\x96\x60\x0e\x0f\xd2\x26\xe5\x89\xa1\xdf\x2c\x59\x42\x54\x38\xf3\xbc\x48\x58\x3a\xd5\x5e\x67\x34\x33\xfb\xfd\x34\xe7\x12\x18\x58\x0d\x09\xd0\x52\x27\x09\x87\x03\x65\x05\xd0\x46\x9b\x83\x3a\x4a\xd4\x46\x1c\x84\x9b\x6c\x3e\x67\xd2\x63\x63\xba\x32\x01\x94\x98\x64\x47\x2c\x23\x45\x2c\xd4\xe7\x68\xa6\xa6\x84\x02\x55\x9a\x63\x5c\x9a\x1b\x85\xcf\x77\x8d\xbc\xb2\x4d\x4c\x3e\xf5\x5d\xdd\xc1\xd2\x50\x78\x0d\x17\x1e\x62\xdd\xc9\x36\xc4\xc6\x94\x0a\x7b\xf7\x4c\x73\x8a\x1f\xd9\xdc\x4e\x30\xf4\x05\x66\x9d\x26\xe1\x4e\x85\x80\x34\x97\xd4\x64\xb5\x70\xd5\x10\xd7\xd2\x6c\x0e\xfa\x25\x9b\x60\x24\x2d\xca\x14\xa0\xfd\x76\x31\x7b\x49\x5d\xa3\x32\x95\x44\xe0\xd5\x0d\xc2\x89\x92\xd4\xa1\x52\x0b\x6a\xf2\x81\xa2\x0b\x83\xa7\xcc\xfb\x42\x64\x44\x07\x74\x49\x09\xa9\xb5\x47\x8a\x88\xbe\xd7\x99\x93\x72\xc5\x0c\x3c\x18\xc1\xa0\x2a\x94\x05\xab\x0e\x6a\x27\x21\xd6\x0a\x40\x2b\x67\x3b\xa2\x72\x60\xd7\x02\xab\xa6\xd8\x47\xe4\x41\x4d\xe4\xd7\x6b\x35\x30\x2a\x9f\x09\x5c\xd2\x7a\xd0\xc4\x4b\xab\x6a\x50\xcf\x89\xf7\x9e\xe7\x3d\xb6\xaf\x87\x3e\x75\x59\xbd\xe4\xef\x97\xcf\x7a\x78\x5f\x97\x80\x61\x2a\x6a\x03\x63\xb3\x50\x71\x83\x42\xc6\x8b\x1d\x4b\xb3\x69\x26\xd9\xda\x58\xce\x5f\xdf\x78\x98\x7a\xcc\xf9\x4d\xa4\xf4\x5c\x5d\x6d\x7e\xd4\x15\xd8\x04\x68\xef\x22\x6a\x29\xa6\xbc\x0e\xf8\x07\x48\x4d\x5f\xbf\xdc\x71\x22\x11\x75\x5b\x58\xa5\x88\xb3\x67\x36\x98\xf8\xf4\xf7\x9b\x68\xe9\xb9\x4e\x2d\x66\x02\xb4\xb7\x98\x5a\xca\xdc\x62\x46\x48\x73\x8b\x7d\x81\xc3\x59\x33\x34\x5f\x13\xb3\xb2\x60\x13\xf2\xd5\x19\x69\x36\xa0\x8b\x4c\x98\x8a\xcc\x59\x79\x58\xce\xc2\xab\x0a\x6d\x6a\x6a\x0a\xa0\x33\xac\x9f\xcc\x2f\x66\xd5\x10\x47\xf5\x70\xd5\x8d\x2f\x32\x83\x73\xe9\x0f\x77\x74\x06\xb0\x0e\xe2\xec\xd0\xb0\xb2\x33\x17\x09\xdc\xf6\x33\x31\x9a\xd6\xa3\xee\x29\x68\x6b\xa5\x19\x33\x5e\x25\xea\xfa\xd4\xb3\xf7\x45\x56\x0a\xdd\x5f\x5b\x4b\xa5\x69\xc0\x33\x15\xb9\xe9\xd9\x78\x69\x8a\x14\xc2\x85\xe1\x87\xf4\x95\x13\x6a\x5e\xc8\x17\x7a\x30\x57\x03\x8f\xd4\xd4\x88\xe7\x21\xa1\xf7\x2a\x9c\x5e\x1a\x11\xcf\x9a\x01\xe1\x20\x2c\xbb\x9c\x20\xcd\x37\xbe\x0c\xa2\xc6\x15\x37\xd3\xa0\xda\xe3\xf4\xfe\x86\xf2\x66\xc5\x2e\x38\xa4\x46\xfe\x95\x63\xdd\x74\xdf\xcc\x5d\x82\x7a\xe0\xaf\x55\xba\xd5\x44\x4b\x13\x0d\x1c\x70\xe2\xa6\xf7\x79\xa0\x42\xbf\xf2\x42\x1f\xed\x4f\xf2\xf0\x60\x06\x77\x10\x56\x9f\x56\x99\x45\x7f\x68\x08\xc3\x44\x5a\xe3\x88\x72\xad\xf7\x5b\x75\xee\xaf\xec\xed\x76\x55\x0d\xa3\xe2\x0c\x38\x6d\xae\x0b\x9d\x41\x9c\xda\x27\xe9\x21\x3e\xe8\xc2\x13\x56\x05\x34\xe1\x28\xb4\xa1\x73\xa9\x7c\xda\x48\xfd\x24\x3a\xfa\x80\x67\x35\xc4\x01\xa0\x91\x4e\xea\xd8\x58\x12\x44\x3e\x3e\x4d\xb8\x88\x83\xf7\x3f\xc4\xc1\x7b\xfc\x77\x2c\xcc\x1c\x10\xf8\xb1\x09\xa5\x2b\x29\x8e\xcd\x14\x0a\x97\xf1\x48\x65\xf7\xeb\x3e\x4b\x39\xf9\x04\xf9\xe9\x74\xa2\x2f\xbc\x6d\xfc\x78\xb3\xf6\xb7\x71\xee\xad\xfc\xf8\x71\xb1\xf2\x37\x61\x84\x1b\x6a\xb5\xc3\xff\xc6\x3f\x05\x8b\xb5\x1f\x6d\xf2\xc8\x7f\xdc\xae\x17\x91\xff\xf8\xf8\xd3\x6e\x11\xf9\xe1\xe3\x4a\x7f\x23\xcf\x55\x50\x78\xec\xef\x50\x53\x64\x65\xd2\x4d\x0c\x3e\x77\x8e\xd9\x6f\xa7\xff\xdb\x36\x97\xf0\x60\xe1\xfa\x5b\xed\x69\x3e\xb9\xc1\xc8\x5b\x85\x77\xcb\x9e\x8f\x64\x8e\xef\x74\x81\x0f\xd2\x2a\x51\x87\x66\x12\x9e\xd3\xfa\x33\xc8\x93\x95\x83\x39\x9d\x5b\x1c\x1c\xe0\xc2\x7f\x7b\xdd\x5a\x7d\x06\xf2\x73\x86\x9e\xff\xa9\xea\x3f\x7c\xeb\xad\x17\xde\x7a\xb1\x5b\xec\xe4\xb7\x1f\x9b\x0f\xdf\xae\xbe\x95\x3b\xbd\x51\x71\x6c\x32\xf8\x7a\x5a\xd3\x3e\x67\xdd\xf1\x72\x93\x26\xa4\x91\x32\xee\x52\x18\x7b\xdb\x52\x03\xc3\x4a\x72\x9b\xc2\x4f\x0e\xc8\x56\x31\xc9\x73\xd5\x05\x76\x27\x47\xdb\x1b\x5b\x36\xfa\xf4\x64\x24\x2c\x46\x50\x2b\x47\xd2\x39\x27\x3c\x87\x32\x44\x97\x31\x70\xb2\xb7\x58\xe3\x64\x69\x79\x43\x48\xd7\x47\x38\x6a\x9d\x21\xbe\xc5\x4b\x3d\xe4\xe7\xa9\x6a\x8a\xbf\xcd\x57\x7d\x66\x08\x58\xbb\x59\x64\x2f\x7b\x57\x57\x15\x4f\x40\x72\xc1\x51\x11\xe6\x49\x87\xfe\xd7\x77\xbe\xfa\x9c\xa8\x8d\xf6\x57\xec\x22\x74\x8d\xc5\xf2\x02\x1a\x39\xe8\x0a\x2e\x95\x6d\x45\x25\x54\x17\x9c\x59\xff\x58\xd8\x5f\x95\x9a\xb7\xe0\x0c\xbf\xac\x25\xcc\xd2\xc8\x5b\xaf\xff\xe9\xde\xfd\x9d\xb7\x54\x3e\x3c\x2d\x96\xd4\x35\x4a\x9a\xa4\x3c\x22\xe1\x65\x31\x35\x51\xf9\x7e\x85\x36\x7d\x41\x1f\xf0\xe9\xbe\xc7\xae\x00\xf4\xfb\xbd\x57\x90\x97\x15\xaf\x83\x3f\xc8\xda\x1b\xec\x4e\x0a\x8e\x5f\x8b\x6b\xde\x65\x75\x8e\x3e\x2e\x95\x0c\xac\x65\x1f\x89\x53\x4a\x7e\x7e\x78\x17\xbe\xfb\x38\x2c\xfa\x4a\x6f\xdd\x49\x47\xc1\x34\x73\x0b\xc9\xc5\x35\xc0\x9f\xea\xa3\xb1\xe2\xa4\xc6\xa8\xaf\x13\x61\xe7\x10\x22\x43\x9a\x8c\x08\xa9\x19\xc3\x0d\x89\xb7\x08\xc8\x16\x8c\x24\x7b\x26\x3b\x05\x93\xd7\x16\x93\xcb\xdd\x83\x38\x04\xd7\x6a\xbc\x32\x47\xaf\x23\x80\x87\x18\xc1\x85\x61\x95\x81\xfc\x3c\xb5\x41\x22\xd3\x07\xc9\x03\xeb\x4b\xe0\x4e\xc2\x2b\xb8\x23\x0e\x5d\xeb\x18\xcf\xd6\x48\xa7\x38\xb4\x03\x0a\x80\x3f\x3d\x67\x78\x04\x1e\x1d\x1d\xf6\x65\x23\x7e\x55\x21\x00\x56\xa5\x1c\x4e\x6d\xc0\xdd\xf3\x8e\x4e\x29\xd0\xd2\xd6\x33\xc4\x23\x00\x1a\x38\xb0\x84\x21\xb2\x37\xd5\x29\x04\xba\x79\x52\x9e\xbf\x43\xe5\x03\x80\x87\x99\xd8\xc1\x75\xff\xa7\xa6\x7a\x6e\xd1\x3b\x00\x0b\x50\xf8\x57\x6c\x0f\xbc\x03\x29\xf2\x51\xc1\x94\x74\x5d\xf3\x9d\x90\xaf\x08\x84\x56\x42\xbd\xfd\xea\x60\x11\x55\xdb\xe6\xba\x56\x62\xdd\x06\x9d\x68\x0e\x51\x52\xf0\x9a\x09\xbf\xb5\x15\x98\xb6\x88\xad\x26\x18\x60\x60\x38\xd4\xc1\x96\x95\x86\xe3\x06\xca\x52\x8c\x59\x60\x0f\x4f\x6a\xa3\x4e\xed\x1a\xd3\xbe\xcf\xef\xcc\xc8\x92\xc2\x9a\x4e\xeb\xc3\x2e\x17\x0b\x4e\x48\x79\x46\x37\xbd\xdb\x86\xfe\x5a\xbc\xa4\x6c\x0e\xeb\xf1\x65\x4c\x2b\x61\x43\x7d\x31\x12\xca\xdd\xef\x39\xbd\x36\xcf\xc8\x4a\xfe\xe5\x5a\x1c\xf4\x35\x60\xac\x3b\x58\x97\x96\xae\x1d\x5d\xa6\x81\x79\x27\x29\x5f\x0b\x7f\xfb\x85\x11\x0b\x66\x11\x7b\x08\xc3\x89\x22\x4d\x8a\xb0\xfc\x0c\x6b\x82\xe2\xb9\x67\x66\xe7\x26\x82\x3f\x0b\x57\x69\xa9\xea\x85\xe2\xf4\x4b\xf0\x32\xbe\xa2\x7b\xf4\xf4\x1b\x91\x31\x69\xbe\xaa\xe4\x33\xbd\x35\x5b\x3b\x01\x82\x24\x24\x8d\xee\x9b\x05\x19\xbf\x97\x66\xda\x64\x98\xc0\xd1\x5c\xcb\x12\x1b\x38\xcc\x8b\x14\xcb\x83\x6b\x90\x78\x01\x4b\x9c\x9f\x29\xaf\xfe\x02\xc1\xd4\x10\x8a\x90\xf2\x30\x18\x74\x4d\x74\x54\x30\xb0\x33\x88\xfd\xd7\xa0\xdf\xf7\x29\x33\x46\xfe\x9f\x4c\x93\x5d\xc6\xea\x3b\xd5\x58\x6d\x0a\x55\x7c\x6e\xfa\xab\x60\x99\xad\xbb\x42\xf9\xbf\x45\x75\x6d\x9d\xc7\x61\xed\xc9\x70\xf5\xc5\x70\x9a\x72\xa7\x66\xb7\xff\xc9\x14\xfb\x4b\xe9\x70\x3b\x28\x6f\x7b\x87\xee\xb6\xf7\x2a\x6d\xfb\xc5\xb5\x55\xbe\x27\x6d\xd6\x56\x4a\x51\x5e\xa7\x15\xd8\x3a\x65\x79\xee\xe5\xd5\xb3\xb0\x47\xa9\xe6\x5e\xeb\x1a\x5c\xfd\x93\xbb\xcb\x44\xaf\x10\x30\xc9\x67\x20\xe2\xba\x57\xe0\x87\xf5\x40\xc3\x0c\xd1\xb0\xc2\xeb\x8a\x45\x31\x77\x4c\xce\x29\x3a\x25\xd7\xbc\x33\x23\xd1\x26\x92\xb3\xd9\x50\x47\x2e\x67\xca\xad\x2b\x49\xeb\xbe\x3c\xe0\x55\xb1\xf5\xd1\xdf\xa6\x0b\xcf\xed\xb2\x6f\xaf\x0c\xeb\xc4\x65\xf2\xd9\x7a\x39\x59\x5a\x72\xd1\xee\x25\xa9\xe1\x98\x08\x3e\x1a\x5d\xcf\x7a\x61\x9e\xf4\x03\x0e\xca\x0f\xb3\x0f\xdf\xf4\x26\x35\x1c\x80\x8f\x03\xf9\x33\xe2\x00\xa8\xba\x84\x71\x74\xc9\xa1\x95\xef\x1a\x8a\x8e\x38\xed\xbd\x23\xe4\x82\xfc\x22\x11\x21\x64\x09\xd0\x33\xda\x32\x18\xa9\xbe\xe6\xdc\x03\xa3\x8f\x7a\x3c\x8b\xfb\x1e\x86\x23\x76\x7c\x21\x40\xa7\x26\x4a\x50\xc9\xa1\xb2\x94\xd7\x89\xa8\x43\xbd\x18\xfe\xc2\xb5\xb5\x49\x79\xf6\x80\x0b\x89\x92\xc4\x5d\x18\x69\x41\xec\xfb\x72\x50\x09\xdb\xe2\xb0\x1a\x95\x98\xd4\x69\x31\xfc\x25\xcb\xc7\x23\x01\x39\xa6\x8d\x72\xf1\xd5\xd4\x3e\xd6\x9b\x9e\x18\x77\x9d\xe5\xb9\xae\x04\x50\xfb\x29\x90\x43\x00\x02\x21\x8f\x86\xbf\x1c\x70\x59\xcf\x4b\xf1\x83\x0a\x18\x1a\x1b\x13\x41\x5f\xa5\xb0\x0b\xfa\xc1\x7d\x5a\x86\xde\x57\xce\x50\xaa\x14\xf4\x0e\x49\x9b\xe1\x8a\x93\x8f\x73\x53\x3d\xef\x43\x08\x47\x97\x1c\xf8\x5d\xe7\x1f\xc9\x47\x9d\x08\x67\xfc\x68\xcf\x95\x60\x58\xbb\x2a\x41\x37\xca\xe4\xf3\x21\x69\x80\x05\x57\xc3\xf0\x71\x48\x9a\x25\xfb\xbb\xf0\x31\xee\x24\x2b\x11\x94\xe4\x9d\xf2\x6b\x96\x42\x19\xf9\x19\x4a\x2d\x40\xd8\xb6\x80\x52\xfb\xdc\x3a\x80\x02\x37\x34\xd4\xdb\xe1\xe4\xd6\x84\x77\x40\xdd\x33\x42\x25\xaf\x98\x77\x68\xc4\x3d\x02\x69\x05\x5b\x5a\x2e\x5f\x85\xf0\x82\x3d\x4f\xd7\x4e\x55\x4e\x1c\xbf\x37\xc7\xa3\x91\x59\x13\x06\x9d\x31\x6d\x62\xe8\xc6\x80\xb0\xc5\xd1\x6e\xd6\xdf\x61\x78\x18\x76\xa1\x03\xca\xdb\x3c\x81\x82\x54\x2e\x64\x08\x87\xd8\x76\x49\x97\x1d\x59\x88\x43\x89\x94\x74\x1b\xc7\xdc\x3e\xc6\xed\x8c\x01\x11\x0f\xcb\x29\x76\x39\x32\x0b\x16\x7b\x1d\x74\x9f\x8f\x33\x42\x0e\xb0\x37\xda\xb9\x7d\x6d\xdf\x15\xba\x6c\x31\x19\x64\xc8\x6a\xc2\xf4\xa1\x4d\x60\x48\xd1\x10\x9e\xea\xa0\x23\x0c\xd4\xcb\x8e\x55\x69\xdd\xa1\xf6\x63\xf1\x80\x2f\x10\xa0\x8b\xed\x14\x8b\x01\xba\x0c\x47\xfb\x44\x41\x50\x71\x05\xc1\xfb\x05\xb9\x2a\x3e\x04\x1a\x4c\xfa\x21\x5e\x63\xec\x3f\xd2\x28\x8a\x8c\x65\xba\xa7\x47\x2f\x31\xa8\x23\x11\x98\x29\x8f\x49\x30\xc8\x38\x3a\xc1\xf9\xc5\x44\xf9\x71\xc4\x82\xf3\xfb\x7c\xaa\x8b\x58\x62\x55\xaa\x88\xa9\xfa\x92\x48\x5b\x4d\xf5\xbc\x60\xb7\xc0\x6c\xd1\x6d\x54\x0c\x0b\x71\x8c\x50\x86\x85\xa6\x7a\xb6\x17\x30\xf6\x60\xbe\x09\x32\x55\xdc\x30\x6a\x00\x5b\x8f\x72\xf7\xfd\x7b\x6d\xf9\xd1\x50\x29\xc3\xbb\x2e\x9f\x61\x84\x12\x07\xee\xff\x9e\x15\x75\xd5\x74\x49\xd9\x3d\x09\x03\x17\x0d\x49\x64\xc4\xc4\xc7\x2a\x69\x6e\x00\x74\xb0\xed\x66\x0b\x77\xb0\x22\xb5\x88\x59\xca\x84\xc5\x2c\x83\xe8\x62\x96\xf3\x75\x31\xcb\xf9\xba\x98\xe5\xfc\xbb\x3a\x18\x8f\xcf\xaa\x22\x7e\x6b\x07\x2b\xd2\x99\x1d\x4c\x2e\x30\xbb\x83\xa9\xc5\xdf\xd8\xc1\xfe\xee\x5a\x7e\xaa\x83\x09\xf2\x79\x63\x07\x13\x30\xb9\x76\xb0\xc7\xc7\x10\xee\x60\xe4\x96\x9e\x49\xcc\x52\x26\x2c\x66\x19\x44\x17\xb3\x9c\xaf\x8b\x59\xce\xd7\xc5\x2c\xe7\xdf\xd5\xc1\x78\x4c\x62\x15\xf1\x5b\x3b\x58\x7e\x9e\xd9\xc1\xe4\x02\xb3\x3b\x98\x5a\xfc\x8d\x1d\xec\xef\xae\xe5\xa7\x3a\x98\x20\x9f\x37\x76\x30\x01\x93\x6b\x07\x0b\xc3\xc7\x47\xb8\x87\xf5\xb9\x45\xce\x52\x26\x2c\x67\x19\x44\x97\xb3\x9c\xaf\xcb\x59\xce\xd7\xe5\x2c\xe7\xdf\xd5\xc3\x86\x40\xdc\x2a\xe6\xb7\x76\xb1\x3e\x9f\xd9\xc5\xe4\x02\xb3\xbb\x98\x5a\xfc\x8d\x5d\xec\xef\xae\xe9\xa7\xba\x98\x20\x9f\x37\x76\x31\x01\x13\xdc\xc5\x64\xf8\x37\x2a\x92\xb9\x19\xa6\xda\xc0\xda\x00\x56\xe9\x5b\x45\x3f\xaf\xcb\xc9\x65\xe7\x75\x89\xb7\xf4\x87\x2f\xd9\x19\xfe\xd6\x9b\x60\x42\xf5\xbf\x90\xde\xdb\x95\x9e\x67\xe6\xf4\x90\xb8\xb8\xd6\xb6\xb4\xe4\x29\x2b\x2f\x10\x84\x18\x15\x5a\x7c\x01\xe3\xf1\xc1\x40\x54\x6e\x71\xbd\x60\xec\x54\xd0\xca\x99\x0c\x69\xe2\x70\xeb\x44\x48\xdd\xba\x10\x31\xac\xac\x18\xe8\xda\xf4\xb8\xf4\xee\xc2\xac\xb8\x80\x3f\x05\xda\x5e\xaa\x67\x1b\x20\xb8\xf0\xef\xd4\x44\x5c\x85\xa0\xc6\x91\xf7\x47\xa4\x37\x4f\x26\xd0\xd1\x55\xb8\xdf\xea\x2e\xda\x2a\x18\x6f\x5b\xac\x02\xe8\xd6\x22\xe3\x7d\xc1\xfe\xef\xc7\x0f\xdf\xb2\x3c\x2c\x30\x74\x4c\xea\x0f\xdf\x12\x46\x87\xe4\x22\xeb\x50\x93\x67\x45\xd6\x7d\xf8\x36\x0c\x86\x64\x46\x31\xa2\x17\x37\xd6\x8b\xed\x25\x8a\x7e\x5e\x2f\xc2\x98\xfe\x8d\x56\x97\x28\x02\x2e\xb6\xc1\xb2\x42\x7d\x37\xa7\x53\x90\x08\x45\x89\x41\x0d\x68\xa6\xb5\xab\x30\x10\x87\x5e\x9c\x26\xcd\x27\xc3\xc8\xa1\x67\x29\x34\x01\x00\xf5\x51\x3f\x98\x0e\x34\x58\x5c\xda\x9c\xf0\xf7\x7e\x19\x06\xc1\x7b\x49\x36\xe6\xb2\x36\x86\xcc\xc3\x85\x4a\x6a\xeb\x44\x4b\x1d\x32\x54\x2c\x91\x15\x8b\x71\xd8\xb0\x10\x54\x46\x0d\x0b\xa4\x34\x68\xe8\x70\xc6\xcd\x42\x98\x61\x79\xa0\xd0\x1b\x46\x1e\x2c\xd4\xfc\xd0\x20\x86\xbf\xe5\xf1\x22\x8a\xe3\xe5\x62\xfc\xe7\xff\xd9\xa8\x21\x0b\x6c\x1c\x34\x5c\x3b\x87\x32\x6e\x00\x79\xb6\x1e\x03\x8c\x1a\xec\x62\x55\xd2\xa4\x4e\xe1\x75\xb5\x7d\x3a\x31\x6a\xed\x73\xd5\xa4\x74\xc6\x74\x68\x50\xf2\xc9\xc3\xdf\x8e\x2f\x74\x19\x37\x9d\x24\x4b\x15\x19\x9f\xe7\xc2\x15\xf8\xf1\xa2\x9c\x9f\x92\xdf\x06\x0a\x18\x94\x4f\xf6\x0e\x49\xb4\x1c\x31\x8e\xce\x42\x48\x67\xaf\x69\x8c\x99\xa6\x88\x3a\x8e\x47\x36\x34\xba\x63\xfc\x26\x9d\xec\x98\x67\x0b\x86\x2d\x53\x06\x02\xfa\x88\xb4\xbd\x43\x95\xbe\x28\x47\x01\xc4\xf0\x3d\x75\x3f\x6c\xb1\x87\x52\xb9\x2e\xeb\x72\xa4\x9c\x79\xe1\x61\xb8\x08\x40\x7b\x3d\x48\x30\xf4\x10\xfd\x0a\x02\x59\x32\x94\xa8\xef\xc4\x3a\xea\xd7\xb1\x30\xd4\xe4\x41\xa0\x01\xea\xfb\xf1\xa7\x14\x3e\x51\xae\x08\x7b\xc6\x63\xd8\x22\xe5\x57\x55\x23\x30\x38\xa2\xe9\x1e\x2d\xd1\xc2\x60\xf5\xf0\x64\x3a\x39\xa4\x6a\xab\x44\x1d\x52\x28\xd6\x58\xe2\xad\x6f\x6f\x11\xd6\xfd\xc3\x02\x48\x0a\x16\x81\x84\xf0\x7b\x41\x77\x5c\xd5\x77\x90\xf0\xa9\xaa\x3a\xb3\x44\x5c\x25\x20\xbf\xa2\x63\xa8\x3e\x25\x05\x28\xf6\x70\x71\x27\x80\xaa\xab\x27\x49\xb5\xa7\x67\xb8\x94\xf3\x58\xfc\x2a\xa7\xfc\x74\xa2\x5c\x8e\x1c\xb0\x59\x1a\x51\xb1\x10\x9d\xfe\x46\xd2\x0d\x1a\x09\xc0\xdf\x88\x4a\x95\x15\x67\x0f\xab\x68\x9e\xbc\x4c\xde\xb9\x1a\x4f\x2e\xd0\x03\x0d\x70\x7f\xcb\x8a\xf3\x72\xc4\x4d\xcb\x08\x09\x5d\x55\x53\xb7\xb4\xbd\x34\xb8\x83\x04\x52\x40\x73\x00\x03\x2e\x60\x18\xba\x74\xe9\x1a\x87\x31\x63\x43\x40\xec\xda\x06\x2d\x33\x4d\x60\x00\x33\x52\x4d\xd1\xf1\xd3\x82\x9a\x2c\xb9\xf5\xc9\x79\x59\xf3\x86\xf5\x50\x18\x38\x7f\x32\x2c\x24\x91\x65\x24\x25\x58\x6b\x5c\xf7\xb2\x1a\xb0\x83\xb9\x0a\x33\x6c\x7c\x55\xce\xae\x8b\xa5\x07\x25\x90\x06\x2a\x8c\x8c\x61\x63\x71\xdf\xee\xac\x1b\x29\x3d\x55\x39\x80\x92\xca\xb8\xd2\x6d\x04\xd0\xef\x25\xd6\x98\x2a\x8b\x37\xf3\x80\x32\x5f\x2e\x12\xf7\x24\xe6\x85\xd8\xa9\x97\xce\xf0\x40\x4f\xb9\x97\x34\x1d\xea\xe6\x91\x9e\xee\x37\x46\x06\xbe\x40\x38\xf1\x69\xc4\x4e\x52\x05\x0a\x4c\x0c\x40\x73\x68\xdb\xc5\x6a\xa0\x0d\xca\x55\xe6\x80\xb1\x40\xe7\xb2\x2d\x38\xa8\xb0\xe9\xce\x44\xd7\x63\x18\x86\xab\x6b\xf4\xdb\x3b\x56\xd7\xb2\xdb\xaf\x9e\x94\x4f\x05\xea\x9c\xd4\xc3\xe1\x2c\x72\x12\x1e\x48\x3f\x37\x59\x0a\xa5\x03\x49\x55\x53\x5f\x92\xb2\xdd\x93\x28\x88\xd5\x73\xbb\x0f\xc1\x6a\x4e\x44\xfe\x78\x7d\xf5\x93\xe3\xb1\x6a\xd2\xac\x2a\xd9\x38\xa1\xbc\xa4\xa7\x01\x08\x4a\x5e\x9d\xbc\xee\xa5\x56\xdf\x73\x99\xe8\xe1\x76\x45\x05\x89\xd1\xa6\x57\xa9\xcd\x3a\xb9\xab\xe0\xfd\x51\x9a\x30\x2a\x13\x95\x27\xe8\xf8\x37\x76\x76\xd2\x63\x73\x2d\x0e\x2e\x47\xe9\x87\x99\x96\x3e\xf1\x0c\xe9\xe9\xbc\xa9\x17\x8e\xe5\x0b\xd1\xca\x74\x7f\x64\x86\xcc\x02\xbf\x57\x13\x6e\xd0\xba\xfc\x54\x21\xeb\x33\x99\xd0\xe2\xbf\x7c\x5c\x7c\x38\x7d\xf7\xc3\x3b\x07\x5a\x64\xd6\xcf\x29\x9a\x5f\xc6\x37\x3c\xd0\x2f\x23\x53\x0e\x90\xf3\x48\x8e\x75\x72\xce\x4a\x52\x4c\x6e\x31\xe5\xd0\xa9\xd6\x14\xa0\xc4\xeb\xe4\x8c\xd8\x36\xc8\x44\xc4\x54\xf9\x18\xb3\x1c\x98\x7d\x08\xf9\xae\x5c\xc3\x8f\x86\x7b\xf8\xc6\x30\x75\x70\x30\x01\x7e\xaa\x7f\x60\x4f\x79\xa1\x2e\x1a\xf1\xc6\x9b\xc3\xca\xf5\xb5\x46\x59\xf9\xa4\xd3\xf6\x22\x2d\xe5\x01\x82\x3b\x63\xc6\x10\x7c\xaa\x33\xb3\x10\x24\x0e\x4e\x44\xec\x4e\xba\xc5\x55\x1e\xc9\x89\xfe\xf9\x48\xcd\xee\xe6\xdb\x86\x36\x8d\x02\x53\x4c\x11\xfb\x28\x2c\x87\xb3\xfe\x60\xd8\x59\x11\x3f\x5f\xcb\x14\x29\x38\x5f\x95\xa1\xaf\xad\x3a\x5f\xb3\x10\x3b\x14\x39\x2a\x21\x74\x09\xd5\xbd\x74\x39\x93\xec\xc7\x30\x46\x9b\x26\x98\xda\x7e\x35\xd1\xf4\x2b\xde\x2e\x30\xb5\x99\x8a\x00\x50\xd3\x01\x24\x72\x6d\x01\x8a\x6b\x56\xe8\x75\x18\xe1\x3d\xd2\x8a\xa6\x3a\x8a\x91\xfd\xbb\xba\xcd\x64\xaf\xa1\xd6\x29\x49\xcf\x76\xdb\x83\xe5\x85\xc5\xb5\x96\xa4\xb5\x8d\xdf\x4b\xa1\x58\xb6\x6a\x98\x31\xb7\x77\x2c\x94\x13\xe5\xca\x55\x27\x79\x08\x10\x2e\xd8\x99\x2e\x01\xfe\x0d\x5c\x22\xa4\x02\xd5\x2e\x03\x26\x34\x83\x2d\x20\xf3\x2f\xdb\x22\x1c\x85\x20\x0f\x4f\x2b\xfb\xd6\x87\xae\x5c\x30\x3a\xba\x55\x14\x5e\x18\xc4\x10\x64\x41\x46\x3d\x43\xb0\xd1\x8e\x10\x6c\x46\x65\xe1\xf7\x69\x83\x51\x3f\xbc\xba\xc9\x8a\xa4\x79\x71\xba\x28\x95\xc8\x65\xe4\x1a\x0f\xa9\xea\x32\x39\x88\x6f\x13\x1d\x8f\x2a\x3e\x1f\xc6\xa7\x04\x7e\x71\xb5\x84\xd8\x10\x52\x44\x2d\x3a\x56\x65\x3a\x59\x49\x36\xcb\x49\xd4\x52\x4a\x35\xc7\x74\x87\x8a\xc6\xeb\xf8\xb0\x89\x74\x9c\xbe\x09\xe7\x9c\xca\x86\xc1\x6e\x19\x86\xdb\x65\x18\xc9\xd5\xbd\x1e\x8f\xa8\x6d\xed\x8c\x45\xbb\x64\xbb\x8e\x47\xc6\x68\x19\xb5\xaa\x2c\xd5\xa1\xa2\x21\xda\xa2\xd5\x5a\xc5\xa7\x56\x53\xa4\xe2\x58\xc9\x75\xb0\x0c\x37\xdb\xe5\xe6\x51\xac\x62\x56\x9e\xaa\x09\x7e\xb6\x49\x74\xd8\x0d\xfc\xe0\x02\x4a\xe5\x48\x92\x4b\xcd\xc2\x6d\xb2\x3b\x48\x98\x7c\x00\xd3\x9c\x3a\x45\xab\x65\xb8\x89\x96\xe1\x6e\x2d\x56\xea\x39\x69\xca\x31\x68\x1d\x7f\xf2\x1c\x9a\x4e\x1c\xc3\x60\x3b\x30\xc4\x8a\x29\xb5\xe3\xa9\x52\x05\x8d\x28\xd3\xd5\x23\x0a\x02\x15\xa5\x0f\xa3\x9c\x55\xd3\x38\x5e\x86\x8f\xab\xe5\x56\xac\x68\x9a\x94\xe7\x29\xa9\xa7\xc7\x55\x2c\xe8\x27\x2d\xa2\xd4\x91\x25\x3a\xb4\xe1\x21\x8d\xc2\x55\xa0\x60\xf3\x41\x6c\xb3\x6a\x17\x05\xcb\x78\xa5\xe8\x26\x39\x70\x30\xdd\x88\xf4\x89\xf8\x44\x2c\xa4\x54\x8f\xa6\x39\x36\x60\x82\x02\x14\xcb\xe8\x7c\x08\xdd\xac\xea\xad\x77\xcb\x68\xfd\xb8\x8c\xe2\x40\x6e\xbe\x66\xe2\x5e\x2d\x0d\xec\x29\x88\xbb\xf9\xa4\x35\x5d\xf3\xc9\xa9\xf3\xa5\x51\x18\xad\x25\x4c\x5a\xb3\x71\xe4\x8e\xb5\x8a\xa3\x65\xbc\x5b\x6e\x58\xd7\xfb\xcb\xb5\x38\x54\x5d\x53\x95\xc3\x1c\x32\x32\xac\x32\x18\x22\xa7\xc0\xab\x0a\x2b\xfb\xda\x97\x4e\x75\x8d\xa9\x92\x79\x9b\xc0\x13\x3d\xc5\x37\x71\xa8\x51\x8d\xe6\xf6\xea\x27\x39\x6a\xa0\xf8\x8b\x4e\xbb\x78\xe1\x38\xb9\x9c\x75\x87\x91\x10\x25\xcb\x3f\xe3\x18\xc6\xee\xc4\xf2\x4c\x32\xab\x55\x66\x96\x3c\x2f\xcd\xda\x22\x6b\xdb\xec\x90\x23\xa5\xbe\x6b\x01\xbd\x00\xb5\xf0\x8f\x79\xd5\x9a\x1e\x3a\x00\x82\xf6\xc9\x95\x06\x19\x54\xe6\x42\x41\xb0\x0e\x76\x31\xd0\xe6\xc7\x23\x8a\xf5\x77\x36\x76\x69\x82\x7d\x49\x09\xd5\xe2\x22\xbd\xde\xc8\x40\x1f\x4f\xc7\x54\x07\x15\xa5\x34\x70\x10\x6d\xe3\x88\x03\x6a\xf3\x98\xd5\x6e\x95\xae\x81\xab\xa8\xdf\xa0\x08\xad\x50\xac\x3a\x9d\x9b\x74\x97\x1e\x34\x64\x30\x8b\xc7\xdd\xf1\x70\x3c\xe9\xc0\x00\x93\x51\x10\xad\xa2\xcd\x00\x2a\xcf\x3e\xc2\x38\xde\x46\x6b\x68\xc4\x5a\xa3\x74\x0c\xda\xc8\xa9\xae\xd0\xe6\x78\x50\x50\xc1\x0c\x1e\xc2\xf4\x74\xd0\x40\x21\x19\x1e\x22\x14\xae\x38\xa0\x38\x73\x08\x8e\xf1\x7a\x03\x85\x99\x4c\x43\x74\x3c\x85\x6a\xfb\x22\x14\xa3\x83\x88\x07\x66\x2c\x39\xa4\x29\x8a\x25\x38\x88\xab\x4d\x74\x5c\x0d\x5c\x29\xa6\x7f\x17\x6f\xd6\x01\x24\xb4\xd3\xe9\xb4\x3a\xa6\x0a\x63\xa7\x13\x42\x87\x44\x41\x05\xf3\x76\x3a\xa1\x5d\x12\xaa\xa0\x00\x7b\xf1\x6a\x75\x0a\x06\xf6\x64\x83\xbd\x8d\xc2\x23\xd8\xa4\xa7\x5d\xba\xd5\x9a\xf4\x14\x1f\x85\x26\xa5\x98\x0c\xcc\x85\x87\xe0\xb0\x55\x20\x01\xde\xd6\x8f\x61\x14\x6e\xc7\x41\x45\x30\xb7\xbb\x70\x17\xee\x22\x88\x35\x84\xff\x53\x59\x4b\x4f\xe9\x09\x49\x88\x60\xce\xd0\x11\x1d\x4f\x1b\x19\x10\x60\x6c\xb3\xc3\xff\x8d\x15\x18\xcd\x64\x78\x08\x51\x04\x75\x54\xd2\x27\x1f\xd5\x5e\xb0\x39\xee\x8e\x89\x88\xc7\xd0\x05\x1e\x0f\x87\x03\x92\xe0\x20\x4d\x5b\x07\x71\x10\xbf\xfe\x23\xdf\x3c\xf9\x84\x5e\x4e\x4d\x52\xa0\x76\x51\x37\xd5\xb9\x41\x6d\xeb\x1d\x92\xc6\x6b\xbb\x26\xab\x51\x7b\x0b\xde\x8b\x67\xd0\x86\xd1\x35\xa4\x91\x41\xbb\x0a\xcc\x0d\x16\xc1\xeb\xeb\x3f\x7e\x35\xcc\x3e\xc7\x77\x13\xe3\x9e\x09\xeb\x3b\x5a\x20\x6a\x97\x25\x7f\x8e\x74\xe9\x8b\xec\xca\x2b\xdb\xda\xd6\x8d\x04\x0a\x1f\xed\x52\x2f\x53\xb0\x25\x12\x61\x9e\x73\xe7\x3b\xa0\x6c\x09\x53\x58\x80\x20\xb3\x8a\x85\xbf\xa1\xeb\x19\xce\x0b\x19\x52\x25\xf4\xe0\x46\x40\xeb\xa5\xfa\xc1\x44\x3c\xd5\x4a\x1a\xef\x8c\xa5\x8a\xca\xee\xbb\x75\x9c\xa2\xf3\x52\x3b\xf4\x18\x3f\x2c\xa2\xf8\xfd\x52\x98\x40\x2c\x02\xe9\x2b\x0e\xde\x83\xa5\x02\x30\x75\x6b\xc3\xf5\xa0\x07\x23\x18\x03\x9f\x48\xb5\x4a\xca\xac\x48\x3a\x94\x0e\x1b\x8f\x34\x01\x0b\x01\xd2\xdd\x45\xd8\x2e\x68\x7d\x17\x59\x79\xca\xca\xac\x43\x4f\xb3\x4b\xdc\xd5\x3c\x36\x4e\x69\x20\x46\xe9\xf3\xf5\xd5\x27\x44\xcc\xcf\xdd\x8a\x57\x7b\x08\xa8\x7c\xc8\xed\x55\x38\x0f\xf5\xf6\x78\x23\xaf\xea\xe9\x2a\x2f\x21\xa5\xc5\x98\x75\x72\x90\x22\xa1\x6b\x0c\x93\x33\x18\x07\x3f\xb0\x69\xc8\x95\x77\x6d\x42\x88\xcc\xf4\xae\x0d\xf3\xd2\x4c\x34\xe4\x5d\x32\xa3\x73\xc6\xa3\x77\x2b\x58\xdc\xf7\xbd\x26\xce\x98\xc1\x3b\x59\xfa\xa1\xb2\xaf\x77\x50\xf3\x2b\x9f\xc5\x54\xd0\x0f\x9b\x34\x5a\xe3\x9b\x9e\x19\x70\x7e\x89\x4d\xa7\xc5\xda\x58\xdb\xfe\xbb\x63\x97\x49\x41\xfd\xbd\xa6\x10\x82\x98\xd9\xd9\xe0\xe9\x42\x9c\x41\x4b\x30\x2e\xd6\xd9\xea\x5e\xc2\x76\xa9\x9a\xec\xaf\x55\xd9\x25\x39\x78\xf7\x0d\x84\x74\x3a\x2d\x69\x6c\x48\xdb\x69\x02\x47\x72\xba\x62\xb9\xed\x2a\x2a\x67\x22\xdc\xa8\x01\xa2\x75\x2e\xeb\xd0\xb8\x42\x2b\x11\xf6\xa0\x26\x9f\x43\x41\x61\x77\xdc\x19\xd7\x89\x84\xd6\x43\x71\x20\xfd\x21\x52\x8d\x8b\x9e\x90\xfd\xad\xdf\x54\x55\x40\x8a\x5f\x53\x5b\x20\x82\x33\x14\x06\x2a\xfe\xc5\x75\xc6\x89\xc8\x4c\xb5\xb1\x04\x5e\x81\x79\xe0\x01\x58\x9c\xf4\xa6\x70\xbb\x4f\xf0\x05\xf5\x06\xa2\xf8\x55\xf5\x06\x20\x38\x47\x6f\x80\xe2\x5f\x5e\x6f\x5c\x88\xbc\x5d\x6f\x78\x3c\x11\x98\x07\x1e\x57\xc4\x49\x6f\xf2\xf3\x6f\xad\x37\x10\xc5\xaf\xaa\x37\x00\xc1\x39\x7a\x03\x14\xff\xf2\x7a\xe3\x42\xe4\xed\x7a\x33\x44\xc9\x80\x99\xe8\x67\x4c\x68\x48\xf8\x84\xdf\x56\x71\x20\x8a\x5f\x55\x71\x00\x82\x73\x14\x07\x28\xfe\xe5\x15\xc7\x85\xc8\x5c\xc5\x11\xcb\x9f\xf2\x6b\x7b\xd1\x48\x0c\xc7\x54\x89\xa0\xf9\x75\x3c\x80\x6d\x7d\x8f\x65\x12\xb7\xc9\xbb\x82\x04\x41\x30\xdc\x77\xb9\xcd\xe4\x27\x38\xef\x65\xf0\x6d\x0b\x43\xf9\x99\xce\xf7\x44\x29\x69\xc7\xcf\xc8\x12\xdf\x1e\x99\x87\x5c\x39\xb3\x6a\xf2\xcf\x28\x4d\xc5\x3f\xc3\x89\x3a\x3d\xf7\xfd\x16\xbe\xb5\x62\xc4\x30\x53\x8c\x93\xe5\x24\x41\x1a\xd9\xe2\x9b\x38\x73\xd1\x3b\x89\x92\x53\x95\x44\x49\x13\x01\x8a\x8e\xbb\x42\x7c\x03\xc8\x50\x7e\xae\x18\xed\xa5\x24\x21\x1a\x59\xe2\x1b\x4d\xf3\x90\x3b\x89\x90\xd3\x94\x44\x48\x13\x75\x7a\x4e\x3b\x57\x7c\x93\x0a\x2a\x3c\x53\x78\xb6\x22\x72\x3f\x36\x31\xc3\x77\xc2\x66\x60\x76\xeb\xc4\x8c\xa0\xdc\x89\x49\xa2\x4e\xcc\x7d\x6b\x8d\xee\xa2\x19\xca\xcf\x14\xde\x44\x29\x49\x7e\x36\x96\xc8\x6e\xdd\x3c\xe4\x4e\x22\xe4\x34\x25\x11\xd2\x44\x9d\x9e\xeb\xf6\x1f\xdb\xe9\x83\x8b\xcf\x14\xa0\xbd\x90\x24\x3f\x33\x43\x6c\x43\x71\x16\x6e\x27\xf1\x71\x92\x92\xf8\x68\xa2\x4e\xce\x71\x87\x92\x6d\x46\x82\xa5\x67\x0a\xcf\x5a\x46\xd6\x3d\x13\x3b\x7c\xcb\x73\x0e\x6a\x37\xcd\x63\x14\x65\xcd\x23\x89\x50\x4b\x39\xec\xa1\xf2\xed\x52\xa8\xf0\x6c\xad\x33\x17\x91\xad\x85\x89\x19\xbe\x27\x3b\x03\xb3\x9b\xa9\x60\x04\x65\x53\x41\x12\x5f\xd9\x49\x18\x1a\x6b\x9d\xcc\x65\xa5\x9b\x02\xb1\xfa\x6e\xb4\x7e\xa0\x7b\x98\x08\x05\xca\x03\xb9\x61\xdd\x2f\x02\xf2\x0c\xc4\xf0\xd4\xaa\x1f\x33\x82\xea\x6c\x2e\x30\xdc\x2d\xa2\xc0\xe4\xda\x19\x5f\x9e\x7f\x20\x9f\xfe\xf8\xc9\xda\xc3\x05\x94\x52\x1d\xb8\xd9\xc6\xaf\x87\x6b\xd7\x55\x25\x3f\x0f\x34\xfd\x28\x25\xdb\x2a\x09\xde\xf6\x3a\x65\x42\x09\x8e\xd1\x6f\x80\x4d\x86\x57\xbf\xab\x92\xb6\xbb\x8d\xe1\x2d\x57\x71\x50\x6b\xdb\xca\xc0\x55\x05\x8d\x79\x75\x33\x74\x17\x3f\x68\xd1\x40\xc6\x70\xf9\xc0\x13\xd8\x72\xec\x2a\xf9\x88\x9c\x14\xfa\x5e\x85\xe4\x52\xc2\xd4\xd2\xa6\xaa\xbd\x53\x96\x77\xa8\xd9\x1f\xf2\x6b\xf3\x5d\x18\xf0\x17\xf2\x0d\x59\xc3\x0b\xbd\x86\x5d\x78\x22\x20\xfd\xae\x33\x1c\x3b\x83\x00\x93\xa8\x3d\xd8\xa4\x73\xd4\xa1\x98\xa1\xbc\xa0\xa3\xc1\x5c\xb2\x54\x7b\x62\x03\x67\xf0\x9b\x8b\xc6\x8d\x53\xb6\x53\x0f\xbf\x16\x20\x6f\x37\x7d\xa1\xc6\xb3\xc7\xc9\x08\xe2\x07\xce\x3a\xd9\xc1\x95\x77\x0b\x5f\xfd\xa2\x4a\x93\xdc\xab\x6a\x54\xea\x17\x50\xc7\xbc\x05\xfd\x3d\x80\x78\x3d\xd7\xc9\x21\xe5\x85\xc5\xdf\xa3\x80\xc3\xa6\xe5\x29\xeb\x51\xca\x0e\xdb\xa9\x8f\xfd\x06\x71\xf0\x24\xca\x18\x78\xfa\x99\xfc\x56\xfb\x81\xf0\xba\x2b\x65\x31\xcd\x92\xbc\x3a\x1b\xdf\x92\xa6\x11\x59\xe8\x63\xd0\x2c\x7c\x22\xd4\x09\x09\x2e\xff\x94\xa4\x68\x21\xe3\x15\xce\x3e\x90\x9f\xa7\xaa\x29\x16\xfe\x8a\x5d\x0f\x19\x9e\xa2\xc3\xc9\x14\x20\x4f\x3a\xf4\xff\xfb\xce\xc3\x9d\xf8\xc1\x79\x3f\xdf\x85\x3c\xdf\xbc\x27\xa0\xf4\x85\x1f\x1d\x94\xf0\x21\x56\x89\x82\xd0\xb7\x36\x8c\x05\xda\x63\x92\xa3\xef\x42\x3f\x88\x1e\x64\xb1\x7a\xed\xb1\xa9\xf2\x1c\x8f\x5e\xb2\xda\xe3\xe1\x4a\x7a\x7d\x38\x08\xde\x2f\x3c\x72\x8e\xc2\x8c\x82\xd3\x67\xc7\x5e\x6e\x00\x92\xcf\x17\x8e\x45\x3f\x58\x33\x81\x95\xdf\x64\x9f\x00\x63\x9d\x58\x0a\xf6\x31\x89\x9b\x74\x1f\x58\xdd\x79\x21\xda\xf9\x51\x3a\x39\x3c\x08\xe1\x81\xa6\x44\xc7\x71\xaa\xb7\x84\x81\xd7\x9f\x25\xd1\x8d\x8f\x72\x18\x10\x1a\x1b\x79\xd6\x79\x25\xa1\x9f\xce\xa4\x63\xd1\x04\x41\x79\x5d\xb1\x71\xf1\x70\xf6\x44\x14\x9c\xc2\x5d\x21\xb8\x84\x31\x49\x19\x35\x6c\xf7\x38\xef\x35\xb9\x91\x16\x82\x8b\x5c\x7a\xd4\x46\x3c\x6e\x4a\x1d\x07\xda\xb5\x10\xcb\xe6\xf3\xb3\xd0\x68\x9f\x2f\xe0\xf2\x97\x46\x87\x8c\x4b\x37\xe1\x1d\x7d\x25\x9b\xd8\x54\x71\xee\x27\x75\x34\x87\x63\x46\xf6\x77\x9b\xc6\x80\x3e\x7a\xfc\x21\xed\x56\xb6\xe9\xa6\x32\x0d\x79\xb3\x72\x0e\xc9\xb3\x12\x63\xe3\x88\xf5\x59\x28\x93\x48\xe1\x1a\xc0\xde\x23\x67\xc9\xc4\x7f\xc5\x71\x02\x8a\xf8\x15\xe8\x17\x4e\x85\x01\x47\xd7\x59\x39\xd0\x98\xc8\xc3\xab\x34\x0a\xbe\xf5\xe1\x2c\x52\x02\x95\xa9\x72\xc0\x08\x8e\x4d\xa5\x88\xde\x1c\x9e\x08\x10\xbf\x31\x3a\x11\xd0\x00\xb4\x6a\x3f\xfe\xee\xc6\xcd\x79\x24\x4e\x63\xe8\x70\x70\x48\x1a\xaf\x40\x49\x7b\x6d\x4c\xe7\xfe\xbd\xc7\xc7\xc7\xc7\xba\x67\x7d\x82\xcc\xb5\x99\xf8\xe5\x79\x37\xc5\x67\x39\x03\x21\xd9\x52\xe1\x01\xa3\x20\x18\xc2\x12\xed\x43\x36\x5f\x06\xec\x85\x30\xe8\x1a\x8c\xe9\x8a\xcc\x57\xde\x6e\x4e\x61\x3c\x83\xbd\x32\xd8\x23\x7b\x29\x3e\xe4\x3a\xd0\x6b\x0b\xd1\xb9\xc1\xd2\xb1\xed\xf4\xd2\x32\xf9\x99\xdb\xf1\x3e\x17\x4a\xef\x4c\xa5\x87\xfd\x3e\xa0\x50\x18\xae\x49\x29\xbf\xab\xaa\xbc\xcb\x6a\x40\x2f\xc6\xc1\x72\x1b\x28\x27\xec\x58\x43\x06\xd4\x01\x3b\x25\x45\x96\xbf\xec\xb1\xe7\x97\x23\xaf\x7d\x69\x3b\x54\x2c\xff\x29\xcf\xca\x4f\x3f\x27\xc7\x5f\xc8\xe7\x3f\x57\x65\xb7\x7c\xf7\x0b\x3a\x57\x68\xf1\xef\x7f\x7a\xb7\xfc\xd7\xea\x50\x75\xd5\xf2\xdd\xff\x44\xf9\x67\xd4\x65\xc7\x64\xf1\x67\x74\x45\xef\x96\xbf\x6f\xb2\x24\x5f\xbe\xfb\x73\xd5\x55\x8b\x5f\x92\xb2\x7d\xb7\x6c\x93\xb2\xf5\x5a\xd4\x64\xa7\xe5\xbb\xdf\x63\x02\x8b\x3f\xe0\x31\x79\xf1\xc7\xa2\xfa\x4b\xf6\x6e\xc4\xa9\x27\xfc\xf2\x52\x1c\xaa\xfc\x1d\xc3\x26\x96\x62\x7e\x23\x8b\xb4\xd1\x14\x49\x2e\xf9\xf9\x6b\xd5\xcf\xf7\x63\xf1\x7c\x25\xee\x96\xe2\x37\x1d\xad\xc1\x93\x91\xe2\xa2\xc0\x98\x20\xcf\x49\x9f\x72\xd4\x61\x1b\x8a\x87\x77\x3c\xa8\x30\x86\x48\x70\x4b\x12\xd7\x52\x4a\x51\xa1\xa4\xf3\xcf\x24\x89\x5e\x57\x27\x05\xc9\x78\xa8\xfb\xc8\x60\xdc\x4c\xc1\x92\x31\x95\x50\x4c\xd8\xe3\x90\xb1\xf0\x93\xa6\xa9\x9e\x01\x95\x91\xb5\x84\x3d\x77\xbc\x13\x1e\xde\xf6\xd7\xcc\x1f\x15\x11\xf1\x6e\xa3\xe3\x13\xdf\x51\x13\x57\x70\x80\x6b\x55\xb4\x35\xc9\xd8\xfb\xea\x1f\x5a\x8f\x91\xf0\xb0\x0c\x7e\xed\xbd\x3a\x4f\x8e\xa8\x40\x65\xf7\x7f\x3e\x74\x55\xfd\x71\x29\x82\x74\x78\xd6\xc0\x87\xf4\x35\x3d\x56\x3f\x8d\x82\x31\xaf\x62\xe2\xc2\x19\x8f\xf2\xba\x62\x1a\xde\xd5\x05\x11\x0e\x11\x6a\xc8\x7c\x86\x55\x9a\x49\x98\xf0\xcc\x38\x7f\xd2\xef\x3b\x90\xd9\x8b\x95\x0b\x62\x96\x64\xa1\x90\xa4\x71\x55\x68\xc1\x5a\xce\x01\x0d\x24\x98\x86\xdd\xfd\x20\xa2\x61\x93\x31\x81\xf9\x41\x3d\x76\x33\x89\x40\x32\x13\x69\x71\xa9\x8d\x61\x11\x0d\x72\x53\xa4\x47\xed\xb4\xb3\xfc\x68\x63\xcb\x02\x64\xe1\xc0\xe6\x29\x16\x43\x04\x89\x90\x66\x71\x19\xb2\xa3\x07\x33\x90\x41\xa2\x92\x70\x72\x59\xa9\xb1\xb3\xd8\x56\xb9\x28\x28\x65\xa2\xe2\x2c\x27\xdc\xf2\xb2\x94\x70\xca\x4c\x2d\x23\x48\x20\x09\xe1\x0c\x2e\x1f\xde\xe0\x77\x2a\x99\x48\x03\x12\x9c\x40\x8a\x8b\x4d\xbe\x55\x2a\x6a\x18\x28\x3a\x32\xb9\x13\x05\xc7\x51\x67\x65\x49\x1e\x66\xe7\x96\x9a\x18\x71\x6d\xf9\x4c\x5c\x3d\x83\xaf\xc6\x80\x5e\x8c\xe9\x4a\x4f\x55\xd3\xb0\x1b\xb0\xb3\xb4\x09\x9e\x04\x7e\xf0\x4c\xef\xbf\x0c\xff\x7f\x1a\xc3\xff\x9b\xf8\xeb\x83\x8a\x2d\xf9\x0f\xc7\x49\xc4\xab\x0a\xcf\xa6\xaf\x62\x7f\x16\x6e\x63\xe3\x21\x44\xa2\xc7\x3b\x69\x72\xea\x74\xe2\xe6\x89\x87\x3c\x91\x79\xc3\x34\x84\x11\xb4\x4d\x43\x38\x08\x9e\x86\x28\xcb\xf7\x31\x1f\xa9\xec\x68\x7e\x14\x06\x43\x01\xdb\x8f\xf2\x54\x84\xb8\x23\x9e\x2f\x05\xb8\x75\x45\x2d\x8e\x81\x3a\x05\xbb\xe5\xf0\xc7\x11\x0b\x9a\x9e\x48\xca\x13\xcf\xe1\x89\xb5\x29\xcc\x12\xc9\xbc\x8d\x2b\x22\xb3\x78\xa2\x57\x5a\xac\x8c\x08\x53\x26\x0e\x44\xa7\x4c\xe2\x31\x3b\x97\x06\xa4\x88\xa0\x26\x24\x39\x3f\x8a\x93\x26\xbd\x09\x9f\x84\xfa\x3c\x89\xb7\x3c\xf9\x72\xc0\x6a\x9c\x76\x38\xf2\x00\xb5\xb5\xc8\x8a\xd5\xe0\x09\x72\x55\xa4\x2b\x4e\xa9\xe6\xb5\xb9\xcc\x9d\xde\xea\x12\x73\xb4\xdd\x69\xa4\x63\x5b\xab\x5b\xb8\x73\x68\x7d\x71\xc2\xc7\xa1\xd8\x84\x4f\x38\x1b\xea\xd2\xfc\x0c\x13\xd4\xfe\x34\xeb\x47\x61\xc6\x37\xbb\x0b\xcb\xd8\xa1\x96\x95\x88\x58\x9c\x8c\x40\x94\x1b\x38\xff\x9b\xd7\xa8\x0a\x67\x7a\xab\xca\x8c\xd1\x66\x65\x4b\x6c\x73\x39\x73\x6f\xd0\x05\xb7\x10\x3c\x86\xbe\x51\x62\x06\x48\x63\x5c\x0d\xa2\x91\x71\xf0\x1e\xf4\x91\x43\x3d\xf2\x3b\x9b\xe0\xa9\x86\x47\x5f\xe2\x3d\x6d\xf1\x7f\x13\xd5\x1b\x27\xde\x1c\x86\x4c\xbc\xa5\xc8\xe1\x2e\xda\x4a\xf0\x40\xba\x8a\x33\x7e\x94\xe6\xde\x5f\x6b\xac\x12\x59\x80\x9a\x47\xe0\xc4\xee\xfd\xc5\x6c\x6e\xae\x2b\x8f\x30\x37\x9f\xa7\xd4\x12\x6f\xba\x4a\x8b\xac\x51\x85\x6e\x86\x07\x31\xee\xe0\x8d\xaa\xb5\xac\x86\x37\x5b\xd0\xd7\xc1\x3e\x0b\xc7\x5c\x0c\x37\x63\x89\x52\x99\x95\x0e\x1d\xf0\x7f\x5f\x65\x5f\x41\xe9\x56\x50\xb4\xbf\xb1\x27\x8a\xfb\xf7\xc0\xb9\x02\x7a\xb5\x98\x84\xa3\xae\xae\x2d\xca\xf5\xcd\x83\x31\xcf\x97\x36\xb3\x6e\x5d\x75\x3d\x5e\xf8\x19\xa6\x3a\x29\xbd\x97\x11\x94\xf9\x68\xa6\xdd\x75\x68\x8b\x5e\x2d\xcc\xda\x5f\x99\x67\xe6\x28\x69\xf6\x87\xaa\xbb\x48\x9b\x95\x63\x49\xfb\xed\x67\xe2\x54\xd0\xd3\x4c\xc4\x55\x11\xb8\x51\x5e\x18\xc0\x49\xe2\xf1\x94\x53\x72\x44\xde\xe7\xac\xcd\x0e\x59\x9e\x75\x2f\xfc\x58\x81\x25\x0b\x3e\x01\xb0\xb9\x2f\x40\xa4\x5c\x41\x7d\x77\x5f\xca\xf7\x4a\xd4\x77\x4b\x25\xad\x6e\xd0\x67\x25\x8d\x1f\x0f\x53\xdc\x09\x9a\xaa\x14\x27\x72\x51\x71\x62\x3a\xf4\x10\x95\x9c\x8e\x65\xfb\x70\x03\x0e\x38\xfc\x2f\xb2\x4b\xf0\x60\xa0\x81\x8b\x41\x6c\x43\x24\x08\x3f\x06\x1a\x1e\x23\x32\x94\xa0\x07\x24\x64\x19\x8e\xa7\x87\x46\x69\x7a\x75\x53\xd5\xa8\xe9\x5e\xf6\x2c\xf7\x49\x3d\x1c\x61\x43\x49\xc4\x61\xaf\x12\x54\x0a\xd7\x70\x42\xd8\x40\x31\xf5\xf6\x78\x28\x9e\x47\x52\x0a\xba\x08\xdb\x02\x49\x27\xed\x9c\x50\xf0\x04\x49\x8e\x0b\x6c\x11\xb4\x58\xc7\xe7\xeb\xf5\x17\xe4\xd4\xd2\x3b\xf0\x98\xd1\x54\xb9\xda\x41\x78\x32\x6e\x0a\xe3\xf4\x64\x30\x0d\xa3\xc8\xa7\x8e\x6c\x18\xce\x3f\xb0\x51\x27\x7e\x6f\x5f\x9e\x1a\xb7\xc6\x21\x41\x0f\xb1\x66\xe7\xcb\xda\x45\x0a\x8e\x42\x1c\x8e\x57\x82\x99\x17\xba\x9e\x01\x52\x30\x96\x24\x99\x5a\x00\x3f\x70\x0d\x69\x0c\xcb\x27\xee\xc1\xc0\x15\x12\x1e\x43\xd1\x39\xe5\xf3\x1f\x43\x36\x79\x40\xcf\xc0\x2a\x7d\x5c\xcf\xf2\x74\x43\x24\x6c\x15\x93\xdf\xe3\x5c\x62\x5f\x56\x5e\x83\x6a\x94\x90\x58\x35\x3f\x90\x1d\xd4\xe1\xe5\x20\x13\xa9\xaf\xfe\x8e\xdf\x29\xcb\xf3\x0f\xdf\xbe\x8f\x56\xa7\xd3\x69\x78\xd5\x6f\x37\x3e\xea\xb7\x13\xdf\xf4\x4b\x3f\x7c\xfb\x73\xec\x47\xf1\x22\xc8\xbd\xf5\x82\xfe\x17\xfa\xb1\x17\xfa\xf1\x4f\x6b\x9c\xbe\xce\x23\x3f\xf6\x22\x3f\xfe\x89\x82\xfd\x15\x78\x8a\xcf\x2c\xf4\xbf\xc1\xda\x46\xfe\x96\xd4\x36\xf4\x63\x5c\xd3\x9f\x56\xf8\x7b\x9d\xe3\x2a\x2e\x70\x35\x49\xfe\x2e\x5f\x7b\xe4\x3f\x6b\x75\xb3\x32\xcd\x8e\x49\x57\x35\x2d\x30\xea\x98\xde\xa9\x1a\x86\x9f\x58\x1e\x7f\x0c\x83\x0d\x1c\x46\x87\xbf\x84\xf4\x5e\x79\xf8\xe8\xbd\xfa\xc4\x02\xc8\xed\x22\xcf\x6e\xe4\x94\x6f\xf6\x57\x3c\xaf\xe4\xa7\x9f\xc9\x29\x93\x80\x9f\x32\xe1\x1b\xf7\xa3\xf6\xaf\xc6\x77\x97\x1a\x35\x81\xd0\xc7\xdf\xa4\xa3\xe3\x1a\x96\x1d\x39\x73\x51\xf7\x3c\x06\x3e\x9b\x7d\xde\xbd\x1c\x4b\x8f\x9f\x04\xb6\xc8\x93\x7c\x1a\x0f\x03\x4d\x0c\xc8\x73\x63\x65\x19\x04\x6b\x9b\xdc\x8d\x80\xdc\xfe\x43\x56\xff\x98\xd4\x24\x14\x92\x49\xa7\x70\x33\xf3\xd0\xa3\xb8\x79\x86\xb6\x1f\xf7\x33\x06\xb5\xc1\x32\x8b\x84\xed\x15\x4f\x2c\x68\x33\x5f\x50\x58\xb8\xb6\x26\x33\x7b\x8f\x4a\xfb\xd6\x55\xc2\xfc\xad\xa9\xba\xa4\x43\xdf\x85\xdd\xb5\x29\x1f\xa4\x90\x6f\x33\x4a\xf9\x0a\xac\x6d\x58\x16\x5c\x6c\xf2\x5b\x89\x2a\x4f\x2a\x44\x2b\xcb\x97\xf3\x69\x4c\x7b\xa2\x17\xd2\xa2\x98\x98\x61\x89\x67\x1a\x0b\x2e\xc5\x18\x5b\x4b\xe6\x18\x7b\x67\xb6\x80\x60\x0e\xd0\xaa\x10\xbc\xb6\x00\xb6\x04\xc4\x43\x71\xcc\xa3\x8e\x50\x61\x6b\xb4\x73\x53\x3d\xdf\x82\xf7\xda\xf1\xdf\xe0\xe1\x35\x0e\xde\x0b\x8a\x08\xb5\x9d\x7b\x61\x5f\x2a\xf2\xa5\x1a\x50\x1d\x32\x8e\xd7\x06\xb7\x10\xd9\xf9\x02\x9a\x69\x9c\xe2\x9a\x1b\x0c\xf3\xe7\xda\x5c\x46\x58\xb9\xba\xe6\xa6\x7a\xf5\xe9\xf4\xf2\x90\xb4\x08\xa3\xb8\xc1\x6f\x20\x8c\x8f\xdc\xf3\x02\x5d\x55\xab\xb0\x5d\x55\xeb\x70\x45\x96\xa6\xb9\x86\x96\xa6\xea\xd0\x6c\x21\x57\x81\xa6\xa9\x00\x0f\x63\x4b\x68\xbc\x8c\x59\x86\x72\x50\x05\x58\xba\x58\xe2\x70\x1e\xee\xa5\x9b\x62\x67\x09\xe0\x89\x00\x3f\xc6\x8f\x3e\xcb\x0f\x0d\x2c\xd9\xed\x1f\x0d\x54\x4f\xa7\xd3\x55\xd3\x6b\x04\x0a\x9f\xe3\xe5\x6f\xd3\x4b\x01\x2a\xa7\xc0\x83\x01\x67\xf5\xb5\x00\x81\x2b\x15\x1c\xca\x31\x71\x4c\x9f\x15\x50\x39\x66\x77\xac\x4d\xc1\xfe\x35\x7e\xd5\x98\xff\x67\x39\xe0\xbf\xc8\x91\x04\xaa\xa7\x9b\xf8\xa4\xaf\x02\x28\x7c\x92\x8b\xcc\xa6\x88\xfd\x2a\x93\x72\xe0\xfe\xb3\x10\xb5\x5f\x60\x43\x00\x52\x12\x8d\x8c\x91\xa0\xfe\x0a\x63\xfc\xaa\xb0\x29\xe4\xbe\xca\x9b\x16\x79\xff\x2c\x87\xdd\x17\x98\x91\x41\xf5\x74\x13\x9f\x34\x30\xbf\xc2\x27\xbb\x8f\x6b\x0a\x9a\xaf\xb2\xa9\xc6\xce\x3f\x4b\x81\xf3\x05\x66\x24\x40\x2d\xd9\xc4\x22\x8d\xad\xaf\xb0\x48\xef\xbc\x9a\x02\x2a\xaa\x1c\x2a\xd1\xef\xcf\x62\xe8\x7b\x81\x11\x11\x4c\x4d\x35\x0a\x90\x04\xc6\xd7\x04\xd8\x7c\x02\x60\x69\xd8\x7a\x5d\x7c\x62\xf4\xfa\xb3\x10\xba\x5e\x92\xd1\x00\xa4\x24\x1a\x35\x90\x44\xb6\x57\x35\xf0\x92\x75\x08\xd4\xbf\x93\x02\x29\x4c\x60\x74\x78\xc0\xce\xb0\xa9\x96\x76\xe4\x81\x1d\xef\xd6\x41\x95\x27\x28\x9d\x8a\xd0\x95\x1d\x69\xd2\xe5\x52\x0c\x7a\x70\xd2\xa9\x20\xd9\xfb\x11\x7e\x3b\x15\x0a\xb8\x10\x02\xb8\xd2\x03\x00\x0d\x8b\x63\xaa\xe6\x08\xc6\x5c\x40\x63\xc5\x46\x48\xee\x24\x1a\xaa\x32\x02\x52\x37\x10\x00\x1b\xac\xa7\x12\xc0\x44\xb1\x9c\x1c\x5c\x30\x62\x52\x01\xcd\x80\x0d\x05\xb8\x0d\x91\xc0\x35\xfb\xc1\xc1\xe9\x50\x2e\xdf\x49\x56\x87\x71\x0e\x3b\x8c\xae\x12\xb8\x36\xb2\x72\x70\x3e\xc8\x49\xd0\xda\x00\x37\x88\x4f\xd4\x3c\xd3\x58\x33\xa2\x6e\x3e\x29\xb0\x5a\xd7\x1f\xb8\xa6\x3d\x52\xe1\x59\x92\x35\xe9\x79\x28\xc5\xd3\x42\xf5\x54\x5a\x83\x0a\x00\x52\x03\x8b\x61\x38\xdb\x2b\xb0\xe6\x42\x6c\x59\xda\x80\x03\x88\x29\x05\x21\xe1\x4f\x68\x4b\x48\xa7\x63\xb9\xba\xa0\x12\x3b\xad\x31\xac\x16\x84\x48\x2c\xe8\x2e\x8e\xfc\xac\x8a\x7b\x65\x80\x3c\x66\xcd\x31\x47\x37\xcd\xcf\x80\x60\xc9\xd3\x5b\x2a\xa4\x01\x6f\xa0\xbe\x86\x2a\x02\x91\xad\xb2\x53\xd6\xcf\xd9\x47\x4b\xbd\xb2\x2a\xe5\x4b\xcc\x22\xca\xd4\xa3\x7e\x98\xe2\x96\x41\x20\xd4\x55\x03\xfd\x37\x19\x5c\x86\x03\x00\x3a\xe9\x16\x29\xf9\x02\x00\x3c\xd1\x5b\x1c\x52\x20\xc0\x23\xca\x73\x05\x12\x27\xc9\xa0\xa7\x1c\xf5\xd2\x65\x28\xb0\x8e\x12\x94\x90\x26\x00\x9b\xef\x01\xe1\x6e\x3d\x25\xee\xb6\x70\x91\xf8\x00\xe5\x2c\xf4\xb6\x98\x96\x7b\x5b\x4c\x8b\x9e\xc3\xb8\x48\x7f\x80\x75\x6a\x80\xb6\x98\x6a\x83\xb1\xd6\x0e\xcd\x60\x89\x2d\x9a\x7a\xc5\xa4\xda\x17\x4e\x9a\x5f\xcc\x56\xfe\xc2\x41\xff\x0b\x87\x2e\x50\xcc\xe8\x05\xc5\xac\x8e\x50\x4c\xf6\x85\x62\x4e\x77\xb0\xdc\xe0\xc2\x03\xea\x54\x3b\xe4\x67\x97\x76\x18\xa0\x9c\xdb\x21\x3f\x4f\xb7\x43\x7e\x9e\x6e\x07\x0e\xe3\xd2\x0e\x03\xac\x53\x3b\xe4\xe7\xa9\x76\x18\x6b\x7d\x5f\x3b\x0c\x77\xe1\x52\xaf\xcf\xa7\x1a\xa2\xcf\x5d\x1a\x62\x80\x72\x6e\x88\x3e\x9f\x6e\x88\x3e\x9f\x6e\x08\x0e\xe3\xd2\x10\x03\xac\x53\x43\xf4\xf9\x54\x43\x8c\xb5\x9e\xd1\x10\x75\x93\x95\x1d\x96\x3d\xf9\x31\x25\x7e\x0a\xe4\xd0\x02\x22\xa0\x73\x23\xd0\x42\x93\xed\x40\xc1\x26\x9b\x42\x00\x73\x69\x0d\x11\xdc\xa9\x41\x68\x81\x89\x36\x91\xe4\xe0\xd2\x2c\x3e\x2a\x0e\x78\x76\x8a\xda\xba\x2a\xdb\xec\x33\xf4\x6a\x2a\x78\x4e\x91\x5c\xfa\x1f\x22\x05\x69\x67\x9c\x54\xb4\x70\x88\x06\x71\x4e\xa6\x96\x58\x68\x29\xe4\xd0\xc1\x52\x07\x24\x09\x40\x7a\x46\x16\xe7\x81\x8c\xea\xf0\x17\x74\xec\x80\x8c\xcf\x59\x8a\xaa\xe9\x93\x11\xd2\xb5\x35\x2d\x24\x0b\x77\x8e\xf5\x2a\x79\x51\x78\x78\x79\x1c\xce\x87\x0a\x5b\x4f\xeb\xc8\xdf\xc5\xdb\x70\xbd\x7a\x0f\x94\x0a\x37\x86\x52\xf1\xc6\x8f\x62\xa8\xc4\xfa\xf0\xb2\x82\x0a\x6c\x41\xe8\xf0\xf0\x12\x42\xd0\x74\x8b\x9e\xdc\x75\xc7\x0a\xad\x87\x04\x16\x75\x8f\xe4\xd2\xb8\x10\x70\x94\x0c\x0d\xb8\xa9\x9e\xbd\x06\x7d\x46\x4d\xab\xc5\xd5\x10\xb2\x0c\x34\x4c\x25\xe5\x5c\xad\xf0\x73\x93\xd4\x37\xf9\xbe\xbf\x06\x43\x5f\x0f\x12\xa0\x68\x02\x88\x4b\x66\x63\xc0\x69\xa4\x7f\xc2\x5e\x8f\x14\xa5\x40\x03\x21\x1b\x24\xc1\x6d\xf8\x2d\x7b\x3b\x23\x48\x28\x80\x84\x1a\x08\x0d\xdd\xc2\xf1\xf0\x40\x2e\x26\xb0\x50\x02\x93\xb0\x29\xdb\xed\x34\x22\xc5\x0d\x0c\x88\x40\xb2\x6c\x65\x51\x99\xc2\x25\x51\x99\xda\xca\xd1\x9d\x56\xad\x28\x4d\xb6\x15\x64\x21\x32\xb4\x92\x52\x00\x0d\x1b\x82\x84\xb8\xa0\x86\xf2\x34\x53\xdf\xcf\x21\x67\xa3\x98\xa0\xe0\x88\x1e\xa6\x32\x58\x40\x5a\x09\x64\xa6\xc1\x04\xa3\x1f\xc9\x32\x15\x18\xf6\xd5\xc4\x22\x3c\xd1\x5c\x93\x06\x75\xc7\x8b\x54\x86\xa5\xe9\x45\x64\x3d\x91\xd2\xac\x02\x10\x75\x04\x28\x05\x0a\x41\xd1\x0f\xb9\x98\x49\x10\xaa\x6e\xc8\xa5\x8c\x9a\x21\x17\x66\x7a\x01\x95\x35\x69\xc5\x28\x18\x51\x9a\x43\x59\x93\x3c\x5b\x94\x9f\xc8\xf9\xf2\xdb\xf8\xbd\x57\x07\x0e\x01\x54\x94\x3b\x81\xb5\x09\x9d\x94\x18\x25\x3e\xc2\x83\xe2\x26\xd0\x92\xac\x49\x01\x93\xa0\x09\xb8\xa2\x70\xa4\x80\x59\xdf\x58\x0d\x44\x01\x91\x12\xba\x74\xcc\xeb\x0d\xb4\xbe\x85\xab\xc9\x6a\x8b\x79\x56\x8b\x62\xbe\xc7\x70\x0d\x94\xee\xb4\x5d\x6d\xe1\x64\xbe\xc8\x6a\x8b\x9b\x05\x63\x18\xe7\x1a\xb1\xb6\x70\xb1\x63\x6d\xe1\x62\xca\x38\xd4\x84\x35\x2b\x9c\x0d\x5a\x71\x8f\x4d\x2b\xde\x64\xd6\xda\xe2\x6e\xcb\x86\x75\xe2\x5e\xe3\xd6\x16\x6f\xb7\x6f\x6d\xf1\x26\x13\x57\xdc\x65\xe5\x98\xbc\xe6\x18\xba\x51\x4e\xee\xb6\x0e\xcb\xe7\x2e\x73\x57\xdc\x69\xf1\x8a\xbb\x8d\x9e\x24\x11\x77\xbb\xa7\x4a\xc5\xd5\xf4\x09\x9a\x73\x97\xf5\x1b\xb5\xe6\x2e\x03\xa8\xca\xd7\xcd\x06\x62\xa2\x33\xcc\x60\x71\x87\x25\x94\x9a\xc1\xc5\x18\xaa\x0d\x30\x6d\x0f\x75\xa5\x74\x32\x89\xaa\xc8\x0c\x56\xd1\xb2\xfc\x4b\x6a\x52\xa4\xae\x66\xb1\x48\xe7\x99\x45\x8a\xf9\x1e\xb3\x38\x50\xba\xd3\x2c\x16\xa9\x93\x59\x24\x8b\xdf\x6e\x66\x91\x61\x9c\x6b\x16\x8b\xd4\xc5\x2c\x16\xa9\x8b\x59\xe4\x50\x76\xb3\x58\xa4\xae\x66\x71\x84\x9c\x61\x16\x71\xa1\x37\x98\xc5\x22\xbd\xdb\x2c\x62\x9d\xb8\xd7\x2c\x16\xe9\xdb\xcd\x62\x91\xbe\xc5\x2c\x0e\x72\x9b\x67\x16\x99\xbc\xe6\x98\xc5\x51\x4e\xee\x66\x11\xcb\xe7\x1e\xb3\x48\x6a\x75\x87\x59\x54\xa4\x31\xc7\x2c\x4a\x12\x71\x37\x8b\xaa\x54\x5c\xcd\xa2\xa0\x39\x77\x99\xc5\x51\x6b\xee\x31\x8b\x9a\x7c\xdd\xcc\x22\x26\xea\x6e\x16\x95\xc6\x70\x33\x8b\x52\x33\xb8\x98\x45\xb5\x01\xa6\xcd\xa2\xae\x94\x2e\x66\x51\x13\x99\xbb\x59\xe4\xbb\x71\xa4\x26\xf9\xd9\xd5\x2c\xe6\xe7\x79\x66\x91\x62\xbe\xc7\x2c\x0e\x94\xee\x34\x8b\xf9\xd9\xc9\x2c\x92\xbd\x48\x37\xb3\xc8\x30\xce\x35\x8b\xf9\xd9\xc5\x2c\xe6\x67\x17\xb3\xc8\xa1\xec\x66\x31\x3f\xbb\x9a\xc5\x11\x72\x86\x59\xc4\x85\xde\x60\x16\xf3\xf3\xdd\x66\x31\x3f\xdf\x6f\x16\xf3\xf3\xdb\xcd\x62\x7e\x7e\x8b\x59\x1c\xe4\x36\xcf\x2c\x32\x79\xcd\x31\x8b\xa3\x9c\xdc\xcd\x22\x96\xcf\x3d\x66\x91\xd4\xea\x0e\xb3\xa8\x48\x63\x8e\x59\x94\x24\xe2\x6e\x16\x55\xa9\xb8\x9a\x45\x41\x73\xee\x32\x8b\xa3\xd6\xdc\x63\x16\x35\xf9\xba\x99\x45\x4c\xd4\xdd\x2c\x2a\x8d\xe1\x66\x16\xa5\x66\x70\x31\x8b\x6a\x03\x4c\x9b\x45\x5d\x29\x5d\xcc\xa2\x26\x32\x77\xb3\x38\x1c\x8e\x20\x55\xe9\x73\x57\xbb\xd8\xe7\xf3\xec\x22\xc5\x7c\x8f\x5d\x1c\x28\xdd\x69\x17\xfb\xdc\xc9\x2e\x92\xa3\x21\x6e\x76\x91\x61\x9c\x6b\x17\xfb\xdc\xc5\x2e\xf6\xb9\x8b\x5d\xe4\x50\x76\xbb\xd8\xe7\xae\x76\x71\x84\x9c\x61\x17\xfb\xfc\x4d\x76\xb1\xcf\xef\xb6\x8b\x58\x27\xee\xb5\x8b\x7d\xfe\x76\xbb\xd8\xe7\x6f\xb1\x8b\x83\xdc\xe6\xd9\x45\x26\xaf\x39\x76\x71\x94\x93\xbb\x5d\xc4\xf2\xb9\xc7\x2e\x92\x5a\xdd\x61\x17\x15\x69\xcc\xb1\x8b\x92\x44\xdc\xed\xa2\x2a\x15\x57\xbb\x28\x68\xce\x5d\x76\x71\xd4\x9a\x7b\xec\xa2\x26\x5f\x37\xbb\x88\x89\xba\xdb\x45\xa5\x31\xdc\xec\xa2\xd4\x0c\x2e\x76\x51\x6d\x80\x69\xbb\xa8\x2b\xa5\x8b\x5d\xd4\x44\x66\xb2\x8b\x3e\x09\x9d\x44\x8f\xcb\x8f\x51\x94\xe4\x51\x12\x03\xd0\x33\xfd\xc2\xab\x71\x3a\x08\x39\xe0\x46\x21\x94\xe3\x6d\xb6\x1d\x4c\x5c\xb2\x2d\xa6\x19\x68\x0b\x17\x1e\xf8\xf9\x6b\x90\x0d\xeb\x92\x31\x2e\x5d\xa4\xd3\x7c\x14\xa9\x0b\x1f\xfc\xfc\xb1\x2b\x1f\xa3\x8f\x4e\x5a\xe3\x3c\xcd\x07\x76\xb7\xa7\xf9\xe0\xe7\x6f\x5d\xf9\x10\x26\x45\xb8\x78\x9f\x4f\x33\x82\xe7\x37\xd3\x8c\xf0\xf3\xa7\x30\x23\xfe\xf0\xa0\x12\xe9\xb1\xc3\x11\x3b\xb5\xbf\x0e\x60\xf4\xec\x9d\xfa\x56\x99\x08\xca\x4f\xb6\xb1\x07\xaf\xc6\x93\x6e\xf4\x1b\x04\xe5\xc7\x00\xf5\x83\x81\x20\x38\x3f\x33\xa7\x9f\xa2\x03\xc1\xc9\xd3\x3c\xca\x4b\x3d\x06\x8e\xb3\xe3\x27\xe1\xcd\x17\x7e\x61\x9d\xa6\x8f\x45\x9e\x84\x3a\xc9\x39\xaf\x3e\xc1\x4e\xee\xf3\xb0\xa0\xe9\x34\x81\xdf\xaf\x19\xb3\x95\x97\x83\x78\x88\x12\x2d\x1c\xf6\x4a\xc1\x31\xc6\xfa\xff\xc7\xf6\x5a\x63\xba\xed\xe2\xbb\xef\x0c\x3c\x3f\x2c\xaa\x66\xf1\x9d\xc2\xee\xc3\xc3\xcd\xa7\xbf\x64\x46\xe4\xa2\x6a\x25\xd9\x01\xc5\x91\xb1\x28\x78\x7d\xf5\xdb\xc6\xab\xca\xfc\x05\x38\xcf\x38\xbe\x30\xcf\x0f\x2e\x0a\x81\xc5\x83\xf1\xbd\x1e\xe0\xa1\x45\x12\x74\x04\xcf\xb5\x59\x2c\xc4\xe0\x41\x89\x40\x4d\xde\xd0\x19\xcf\x40\x32\x26\x3c\x72\xb5\x93\xbc\x46\x45\x23\x7a\x2c\x81\x1c\xf2\x4b\x55\x4a\xf1\xa1\x3a\xc6\x2d\xf9\x3d\x30\x46\x42\xd2\xe5\x88\x72\x46\x43\xb2\x68\x21\xb1\x5f\x7d\x1a\x82\x9b\x5e\x31\x13\xdf\x6d\x0c\x59\x18\xf5\x48\x7b\xb8\x31\xd8\xc6\x0f\xa2\xf6\xd0\x32\x4a\x71\x52\x2a\xd4\xde\x7c\x84\x4a\xd2\x8b\x54\x42\x61\x52\x6c\xa5\x95\x05\xc9\xd2\x81\x42\x28\xae\x1e\x96\x7e\xf6\xa2\x98\x05\x55\x88\xe2\xf7\x72\x4e\x1c\xdc\xf8\xe3\x3b\x4a\xce\x96\x97\xd9\xaa\x65\xc2\x80\x17\x0a\x03\xb5\x14\x19\x8f\xc6\x66\x11\x33\x2f\x98\x0d\x1e\xad\x42\xc6\x79\xc1\x7c\x0c\x6f\x09\x29\x59\xdb\xa1\xd4\x56\x2d\x85\x39\x11\xce\xd7\xca\x99\x84\x15\x41\x2d\xc4\xdc\x82\xd6\x42\x78\xea\x46\x29\x5e\x5c\x06\x00\x03\x01\x6c\x04\x3e\x33\x34\xa3\x3d\x08\x82\xcf\xcf\x1a\xd4\x65\x80\x12\x9f\x10\x13\xc1\x3e\x2b\x52\x95\x91\x7c\x56\x6b\x2a\x17\x66\xd3\x14\x94\x7a\x39\xf6\xc4\xe8\x65\x37\xd3\x49\xe5\xc9\x98\x4a\xe0\x7b\x6d\x47\x21\xc6\xac\x7a\x21\x5a\xb8\x2d\xfd\xea\x17\x5e\xc0\x1f\x99\x92\x7c\xc7\xa2\xf3\x82\xa5\x5f\xbc\x0c\xd9\xfa\x05\xe0\xa2\x21\x20\xfd\x08\x02\x5c\xfe\x2d\x0e\x2a\x1e\xe8\xde\x6f\x91\xab\xa8\xf4\x4b\xbf\x85\x17\xca\xcf\x61\x29\xec\x86\x84\x4c\x28\x85\x6a\xd6\xe1\x1a\x02\xd7\x8f\x70\x43\x38\x1c\x15\xf2\xa0\x62\xe4\xf1\xdb\x75\xd0\x5c\x45\x4a\xe3\x84\xeb\x80\x5e\x74\x13\x1f\xe8\x54\x6a\x10\x11\x7a\x91\x16\x6c\x5a\xa9\x40\x44\x68\x45\x40\x9c\x5f\x85\x7f\x05\x9f\x18\x7f\x5e\x61\x5f\x41\x39\x86\x39\x97\xb9\x5f\x71\xee\x43\x9d\xf9\x15\x21\xb6\x12\x99\xd7\xa0\x1a\x02\xd5\x8f\x50\xcd\x10\x2d\x46\x61\x5d\xc1\xc6\xaf\xc1\xeb\x9c\x2b\x08\xe9\xc5\x77\x8d\xf1\xf5\xc0\x38\x24\xf7\x35\x21\xb6\x96\x58\x87\x04\xbf\x26\xb4\xd6\x0a\xf3\x90\xe4\x15\x8c\x9c\x7d\x48\xf4\x0a\x52\x5a\x01\x40\xf6\x31\xaf\x82\x7a\x63\xb7\xe8\xbc\x98\x90\x8b\xc5\x0a\x68\x50\x0d\x81\xea\x47\x28\x16\xcf\x4c\x67\x5e\xc1\xc6\x98\xd7\x00\x73\x15\x21\x8d\x87\xa6\x80\xd5\x5e\x30\xbe\x04\x23\x65\x90\x01\xa6\x7e\x19\xf3\xf5\x11\xa6\x26\x23\x4c\xdd\x0b\x30\xc0\x10\x53\x1f\x34\x4c\xd0\x18\x53\xe7\x1a\x32\x7d\x90\xa9\xbd\xf0\x26\xbf\xca\xa2\xf0\x1c\x12\x4a\xa1\xc4\x33\x00\x48\x86\x99\xba\x17\x00\x4d\xe3\x4c\x7d\xd0\x70\x1a\x07\x9a\x3a\xd7\xd0\x1a\x46\x9a\xda\x8b\xe4\x18\xca\x4a\x35\x22\x42\x32\x92\xab\x01\xd4\x22\x22\xe4\x22\xb5\x16\x40\x25\x54\x8c\xa6\xd1\xa6\xce\x35\xa4\xf0\x70\x53\x7b\x2b\xe9\xe9\x49\xa5\x06\x2b\x42\x6f\x25\xdf\x72\xd1\x2b\xb0\x22\xb4\x56\x4a\x05\x34\xc0\x83\x86\xcf\x30\xe4\xd4\xb9\x86\x12\x1c\x73\x6a\x6f\x3d\x72\x0f\xb5\xc0\x9a\xd0\x5b\xcb\xfc\x43\x4d\xb0\x26\xe4\xd6\x6a\x0d\xa0\x36\x50\x71\x1a\xc7\x9d\x3a\xd7\xd0\x1a\x06\x9e\xda\x8b\x87\x7a\x68\x7d\x9b\x8c\x3c\xf5\xcb\x08\x02\x0e\x3d\x35\x19\x7a\xea\x5e\x00\x83\xc7\x9e\xfa\xa0\xe1\x33\x0c\x3e\x75\xae\xa1\x04\x47\x9f\xc2\x2b\x87\x49\x83\x07\xce\x1a\x4a\x6a\xe4\x4b\x69\xde\x00\x81\x36\x14\xb4\x17\x40\x59\xe0\x6d\x70\xee\xa0\xe1\x65\x35\x81\xa0\x73\x1d\x35\x7b\x2f\x00\x98\x41\x94\xd1\x58\x21\xa8\x3e\xd4\xe8\x97\x91\x5c\x1f\xa8\x3a\xd4\xe8\x97\x91\x5a\x1d\xa8\x36\x2a\xd6\xa1\x36\x50\x65\x54\xc4\xc2\xe3\x07\x4a\x5d\x86\x09\x85\x07\xcc\x28\x4a\x3a\x09\x28\xa5\x39\x85\x0e\xd8\x50\xc0\x5e\x00\xe4\x11\xd1\x81\x8a\xa8\x38\x79\x45\x80\xa9\x85\x86\x96\xd6\x43\x9f\x5d\x94\xeb\xb1\x1a\x60\x9b\xd0\xe9\x40\xb9\x96\x2b\x02\x36\x0a\x9d\x0e\x94\x6b\xb5\x2a\x60\xab\xa8\x78\x87\xca\x80\xcd\xa2\xa2\x66\xd5\x81\xda\x65\x98\x6c\x78\xc0\x6c\xa3\xa4\x13\x84\x52\x9a\x6f\xe8\x80\x0d\x05\xec\x05\x40\x56\x19\x60\xce\xa1\xe1\xe4\x55\x01\xa6\x1d\x1a\x5a\x5a\x11\xbd\xef\x13\x87\x92\x55\x44\x73\x28\x3b\x92\x4d\xa8\x0a\x70\xa4\x2e\x1a\x6c\xc3\x61\x7b\x09\xb6\x81\x5d\xd5\x03\x8c\x99\xd5\x48\x03\xcf\x61\xe4\xa4\x52\x0a\xb0\xe5\x85\x5e\xaf\xb5\x78\x72\x38\x8f\xf0\x23\x00\x81\xfe\x1c\x03\xec\x25\x40\xd8\xab\x03\x71\x1a\x7c\x3b\x10\x2d\xe4\xe1\xb5\x53\x4e\x1e\x06\xe0\x54\xa7\x5d\x3d\x06\xdd\x4b\xd0\x16\x87\x0f\xc4\x6e\x73\xfb\x40\x02\x46\xe7\xaf\x9d\xf0\xff\x70\x3e\x27\x3f\xe9\x05\x32\xe0\x5e\x02\x36\xfb\x82\x20\x6e\x8b\x47\x08\xa2\x37\xf9\x85\xad\xdd\x35\xc4\xd9\x9c\xf6\x94\x83\xc8\x60\x7b\x09\xd6\xe8\x26\x82\x98\xcd\xce\x22\x88\xdc\xe0\x32\xb6\x53\x5e\x23\x06\xe0\xb4\xa7\x7d\x47\x06\xdd\x4b\xd0\x16\x0f\x12\xc4\x6e\xf3\x23\x41\x02\x46\x6f\xb2\xb5\x3b\x94\x38\x9b\x53\x9f\x72\x2b\x19\x6c\x2f\xc1\x1a\x9d\x4b\x10\xb3\xd9\xc5\x04\x91\x1b\x1c\x4d\x32\xb8\x98\x7c\x4d\x3a\x04\xd5\x2f\x12\x14\xe8\x71\x32\xc8\x5e\x86\x84\xfd\x4e\x18\xab\xc1\xfb\x84\x11\x43\x3e\x28\x19\x4d\xac\x6e\x28\x1d\x78\xea\x17\x09\xd4\xec\x8c\x32\xf0\x5e\x06\xb7\xb8\xa4\x30\x7e\x9b\x63\x0a\x93\x30\xba\xa7\x64\x58\xb1\x79\xa8\x74\x00\xaa\x5f\x24\x48\xa3\x9f\xca\xa0\x7b\x19\xda\xec\xad\xc2\xd8\x2d\x3e\x2b\x4c\xc0\xe4\xb9\x92\xf1\xc5\xe2\xbc\xd2\x81\xa8\x7e\x91\x00\x4d\x2e\x2c\x03\xee\x65\x60\xa3\x23\x0b\xe3\x36\xbb\xb3\x30\x7a\x83\x53\x4b\x06\x17\xab\x5f\x4b\xc7\xa1\xfa\x45\x02\x35\x7b\xb7\x0c\xbc\x97\xc1\x2d\x3e\x2e\x8c\xdf\xe6\xe9\xc2\x24\x8c\xfe\x2e\x19\x69\x2c\x2e\x2f\x1d\x92\xea\x17\x09\xd0\xe4\xf8\x32\xe0\x5e\x06\x36\xba\xbf\x30\x6e\xb3\x13\x0c\xa3\x37\xb8\xc2\xed\xb4\x37\x4c\x40\xf8\xf0\xec\xe2\x13\xf3\x02\xbd\x5c\xc0\xe6\x19\x1b\x68\x58\xfd\x63\x03\x19\xb3\x97\xdc\x4e\x3a\xca\x04\x62\x60\x63\xda\x5d\xe6\xf0\xbd\x0c\x6f\x71\x9a\x0d\x14\x6c\xae\xb3\x81\x88\xd1\x81\x6e\xa7\x7c\x68\x02\x30\xf0\x30\xe9\x49\x73\xf0\x5e\x06\x37\xfb\xd3\x06\xfc\x16\xaf\xda\x40\xc2\xe4\x5b\xb7\xd3\xee\x35\x01\x19\x78\x70\x70\xb2\x79\x81\x5e\x2e\x60\x73\xb5\x0d\x34\xac\x0e\xb7\x81\x8c\xd9\xed\x6e\xa7\x3c\x6f\x02\x30\x70\x31\xe9\x7f\x73\xf0\x5e\x06\x37\x7b\xe1\x06\xfc\x16\x5f\xdc\x40\xc2\xe4\x91\xb7\x93\x4e\x39\x83\xe0\x4c\x38\xb8\xe6\x63\x89\x5e\x2d\x61\x74\xd0\x2d\x54\xcc\x6e\xba\x85\x10\xe4\xac\x5b\x4e\x63\x15\x5e\x91\x9a\xbd\x75\x9c\x47\x38\x13\x80\x40\x6f\x9d\x01\xf6\x12\x20\xec\xad\x83\x38\x0d\xde\x3a\x88\x16\xf2\xd6\x8b\x74\xc2\x5b\xc7\x00\x9c\xea\xb4\xb7\xce\xa0\x7b\x09\xda\xe2\xad\x83\xd8\x6d\xde\x3a\x48\xc0\xe8\xad\x17\xa9\xdd\x5b\xc7\xf9\x9c\xfc\xa4\xb7\xce\x80\x7b\x09\xd8\xec\xad\x83\xb8\x2d\xde\x3a\x88\xde\xe4\xad\x17\xa9\xd5\x5b\xc7\xd9\x9c\xf6\x94\xb7\xce\x60\x7b\x09\xd6\xe8\xad\x83\x98\xcd\xde\x3a\x88\xdc\xe0\xad\x17\xe9\x84\xb7\x8e\x01\x38\xed\x69\x6f\x9d\x41\xf7\x12\xb4\xc5\x5b\x07\xb1\xdb\xbc\x75\x90\x80\xd1\x5b\x2f\x52\xab\xb7\x8e\xb3\x39\xf5\x29\x6f\x9d\xc1\xf6\x12\xac\xd1\x5b\x07\x31\x9b\xbd\x75\x10\xb9\xc1\x5b\x27\x83\x8b\xc9\x5b\xa7\x43\x50\xfd\x22\x41\x81\xde\x3a\x83\xec\x65\x48\xd8\x5b\x87\xb1\x1a\xbc\x75\x18\x31\xe4\xad\x93\xd1\xc4\xea\xad\xd3\x81\xa7\x7e\x91\x40\xcd\xde\x3a\x03\xef\x65\x70\x8b\xb7\x0e\xe3\xb7\x79\xeb\x30\x09\xa3\xb7\x4e\x86\x15\x9b\xb7\x4e\x07\xa0\xfa\x45\x82\x34\x7a\xeb\x0c\xba\x97\xa1\xcd\xde\x3a\x8c\xdd\xe2\xad\xc3\x04\x4c\xde\x3a\x19\x5f\x2c\xde\x3a\x1d\x88\xea\x17\x09\xd0\xe4\xad\x33\xe0\x5e\x06\x36\x7a\xeb\x30\x6e\xb3\xb7\x0e\xa3\x37\x78\xeb\x64\x70\xb1\x7a\xeb\x74\x1c\xaa\x5f\x24\x50\xb3\xb7\xce\xc0\x7b\x19\xdc\xe2\xad\xc3\xf8\x6d\xde\x3a\x4c\xc2\xe8\xad\x93\x91\xc6\xe2\xad\xd3\x21\xa9\x7e\x91\x00\x4d\xde\x3a\x03\xee\x65\x60\xa3\xb7\x0e\xe3\x36\x7b\xeb\x30\x7a\x83\xb7\x5e\xa4\x93\xde\x3a\x01\xe1\xc3\xb3\x8b\xb7\xce\x0b\xf4\x72\x01\x9b\xb7\x6e\xa0\x61\xf5\xd6\x0d\x64\xcc\xde\x3a\x06\xb3\x7b\xeb\x04\x62\x60\x63\xda\x5b\xe7\xf0\xbd\x0c\x6f\xf1\xd6\x0d\x14\x6c\xde\xba\x81\x88\xd1\x5b\xc7\x50\x56\x6f\x9d\x00\x0c\x3c\x4c\x7a\xeb\x1c\xbc\x97\xc1\xcd\xde\xba\x01\xbf\xc5\x5b\x37\x90\x30\x79\xeb\x18\x68\xc2\x5b\x27\x20\x03\x0f\x0e\xde\x3a\x2f\xd0\xcb\x05\x6c\xde\xba\x81\x86\xd5\x5b\x37\x90\x31\x7b\xeb\x18\xcc\xea\xad\x13\x80\x81\x8b\x49\x6f\x9d\x83\xf7\x32\xb8\xd9\x5b\x37\xe0\xb7\x78\xeb\x06\x12\x26\x6f\x9d\xc7\x23\x31\x7b\xeb\x0c\x82\x33\xe1\xe0\xad\x8f\x25\x7a\xb5\x84\xd1\x5b\xb7\x50\x31\x7b\xeb\x16\x42\x8e\xde\x3a\xbf\xb3\x54\x78\xf9\xd9\xec\xad\xe3\x3c\xc2\x99\x00\x04\x7a\xeb\x0c\xb0\x97\x00\x61\x6f\x1d\xc4\x69\xf0\xd6\x41\xb4\x90\xb7\x9e\x9f\x27\xbc\x75\x0c\xc0\xa9\x4e\x7b\xeb\x0c\xba\x97\xa0\x2d\xde\x3a\x88\xdd\xe6\xad\x83\x04\x8c\xde\x7a\x7e\xb6\x7b\xeb\x38\x9f\x93\x9f\xf4\xd6\x19\x70\x2f\x01\x9b\xbd\x75\x10\xb7\xc5\x5b\x07\xd1\x9b\xbc\xf5\xfc\x6c\xf5\xd6\x71\x36\xa7\x3d\xe5\xad\x33\xd8\x5e\x82\x35\x7a\xeb\x20\x66\xb3\xb7\x0e\x22\x37\x78\xeb\xf9\x79\xc2\x5b\xc7\x00\x9c\xf6\xb4\xb7\xce\xa0\x7b\x09\xda\xe2\xad\x83\xd8\x6d\xde\x3a\x48\xc0\xe8\xad\xe7\x67\xab\xb7\x8e\xb3\x39\xf5\x29\x6f\x9d\xc1\xf6\x12\xac\xd1\x5b\x07\x31\x9b\xbd\x75\x10\xb9\xc1\x5b\x27\x83\x8b\xc9\x5b\xa7\x43\x50\xfd\x22\x41\x81\xde\x3a\x83\xec\x65\x48\xd8\x5b\x87\xb1\x1a\xbc\x75\x18\x31\xe4\xad\x93\xd1\xc4\xea\xad\xd3\x81\xa7\x7e\x91\x40\xcd\xde\x3a\x03\xef\x65\x70\x8b\xb7\x0e\xe3\xb7\x79\xeb\x30\x09\xa3\xb7\x4e\x86\x15\x9b\xb7\x4e\x07\xa0\xfa\x45\x82\x34\x7a\xeb\x0c\xba\x97\xa1\xcd\xde\x3a\x8c\xdd\xe2\xad\xc3\x04\x4c\xde\x3a\x19\x5f\x2c\xde\x3a\x1d\x88\xea\x17\x09\xd0\xe4\xad\x33\xe0\x5e\x06\x36\x7a\xeb\x30\x6e\xb3\xb7\x0e\xa3\x37\x78\xeb\x64\x70\xb1\x7a\xeb\x74\x1c\xaa\x5f\x24\x50\xb3\xb7\xce\xc0\x7b\x19\xdc\xe2\xad\xc3\xf8\x6d\xde\x3a\x4c\xc2\xe8\xad\x93\x91\xc6\xe2\xad\xd3\x21\xa9\x7e\x91\x00\x4d\xde\x3a\x03\xee\x65\x60\xa3\xb7\x0e\xe3\x36\x7b\xeb\x30\x7a\x83\xb7\x9e\x9f\x27\xbd\x75\x02\xc2\x87\x67\x17\x6f\x9d\x17\xe8\xe5\x02\x36\x6f\xdd\x40\xc3\xea\xad\x1b\xc8\x98\xbd\x75\x0c\x66\xf7\xd6\x09\xc4\xc0\xc6\xb4\xb7\xce\xe1\x7b\x19\xde\xe2\xad\x1b\x28\xd8\xbc\x75\x03\x11\xa3\xb7\x8e\xa1\xac\xde\x3a\x01\x18\x78\x98\xf4\xd6\x39\x78\x2f\x83\x9b\xbd\x75\x03\x7e\x8b\xb7\x6e\x20\x61\xf2\xd6\x31\xd0\x84\xb7\x4e\x40\x06\x1e\x1c\xbc\x75\x5e\xa0\x97\x0b\xd8\xbc\x75\x03\x0d\xab\xb7\x6e\x20\x63\xf6\xd6\x31\x98\xd5\x5b\x27\x00\x03\x17\x93\xde\x3a\x07\xef\x65\x70\xb3\xb7\x6e\xc0\x6f\xf1\xd6\x0d\x24\x4c\xde\x3a\x0f\x93\x66\xf6\xd6\x19\x04\x67\xc2\xc1\x5b\x1f\x4b\xf4\x6a\x09\xa3\xb7\x6e\xa1\x62\xf6\xd6\x2d\x84\x1c\xbd\xf5\x21\xb2\x47\xe1\xf5\xb9\xd9\x5d\xef\x73\xe6\x5a\x0b\x40\xa0\xbb\xde\xf3\x2b\xc9\x22\x20\xec\xae\x83\x38\x0d\xee\x3a\x88\x16\x72\xd7\xfb\x7c\xc2\x5d\xef\x73\xe6\x50\x0b\x90\x66\x77\xbd\xe7\x77\x94\x45\x68\x8b\xbb\x0e\x62\xb7\xb9\xeb\x20\x01\xa3\xbb\xde\xe7\x76\x77\xbd\xcf\x99\x4b\x2d\x00\x1a\xdd\xf5\x9e\x5f\x60\x16\x81\xcd\xee\x3a\x88\xdb\xe2\xae\x83\xe8\x4d\xee\x7a\x9f\x5b\xdd\xf5\x3e\x67\x4e\xb5\x00\x67\x72\xd7\x7b\x7e\xbb\x59\x84\x35\xba\xeb\x20\x66\xb3\xbb\x0e\x22\x37\xb8\xeb\x7d\x3e\xe1\xae\xf7\x39\x73\xa8\x05\x48\xb3\xbb\xde\xf3\x4b\xcf\x22\xb4\xc5\x5d\x07\xb1\xdb\xdc\x75\x90\x80\xd1\x5d\xef\x73\xab\xbb\xde\xe7\xcc\xa9\x16\xe0\x4c\xee\x7a\xcf\xef\x44\x8b\xb0\x46\x77\x1d\xc4\x6c\x76\xd7\x41\xe4\x06\x77\x9d\x0c\x2e\x26\x77\x9d\x0e\x41\xf5\x8b\x04\x05\xba\xeb\x3d\xbf\x32\x2d\x41\xc2\xee\x3a\x8c\xd5\xe0\xae\xc3\x88\x21\x77\x9d\x8c\x26\x56\x77\x9d\x0e\x3c\xf5\x8b\x04\x6a\x76\xd7\x7b\x7e\x87\x5a\x02\xb7\xb8\xeb\x30\x7e\x9b\xbb\x0e\x93\x30\xba\xeb\x64\x58\xb1\xb9\xeb\x74\x00\xaa\x5f\x24\x48\xa3\xbb\xde\xf3\x0b\xd6\x12\xb4\xd9\x5d\x87\xb1\x5b\xdc\x75\x98\x80\xc9\x5d\x27\xe3\x8b\xc5\x5d\xa7\x03\x51\xfd\x22\x01\x9a\xdc\xf5\x9e\xdf\xbe\x96\x80\x8d\xee\x3a\x8c\xdb\xec\xae\xc3\xe8\x0d\xee\x3a\x19\x5c\xac\xee\x3a\x1d\x87\xea\x17\x09\xd4\xec\xae\xf7\xfc\x52\xb6\x04\x6e\x71\xd7\x61\xfc\x36\x77\x1d\x26\x61\x74\xd7\xc9\x48\x63\x71\xd7\xe9\x90\x54\xbf\x48\x80\x26\x77\xbd\xe7\x77\xb6\x25\x60\xa3\xbb\x0e\xe3\x36\xbb\xeb\x30\x7a\x83\xbb\xde\xe7\x93\xee\x7a\x9f\x73\x57\x5a\x04\xb6\xb8\xeb\xfd\x70\x8d\x5b\x2a\x60\x73\xd7\x0d\x34\xac\xee\xba\x81\x8c\xd9\x5d\xc7\x60\x76\x77\xbd\xcf\xb9\x33\x2d\xc2\x9a\xdd\xf5\x7e\xb8\xe3\x2d\xc1\x5b\xdc\x75\x03\x05\x9b\xbb\x6e\x20\x62\x74\xd7\x31\x94\xd5\x5d\xef\x73\xee\x4e\x8b\xa0\x46\x77\xbd\x1f\x2e\x80\x4b\xe0\x66\x77\xdd\x80\xdf\xe2\xae\x1b\x48\x98\xdc\x75\x0c\x34\xe1\xae\xf7\x39\x77\xa5\x45\x60\x8b\xbb\xde\x0f\xf7\xc2\xa5\x02\x36\x77\xdd\x40\xc3\xea\xae\x1b\xc8\x98\xdd\x75\x0c\x66\x75\xd7\xfb\x9c\xbb\xd3\x22\xa8\xd1\x5d\xef\x87\x6b\xe3\x12\xb8\xd9\x5d\x37\xe0\xb7\xb8\xeb\x06\x12\x26\x77\x9d\x47\x6f\x35\xbb\xeb\x7d\x3e\x3a\xd2\x32\xb4\xc9\x5d\xef\x85\xbb\xe4\x4a\x09\xa3\xbb\x6e\xa1\x62\x76\xd7\x2d\x84\x40\x77\xdd\xef\x50\xdf\x79\x45\x55\x56\x24\x92\xdf\xed\x54\x95\x9d\x77\x4a\x8a\x2c\x7f\xd9\xff\xf2\xcf\x3f\x57\x65\xe5\xfd\x2b\x3a\x5f\xf3\xa4\x59\xfe\x8c\xca\xbc\x5a\xfe\x5c\x95\xc9\xb1\x5a\xfe\xa1\x2a\xdb\x2a\x4f\xda\xe5\xbb\x9f\xb2\x03\x6a\x92\x2e\xab\xca\x05\x06\x7f\xb7\x7c\xf7\x87\xea\xda\x64\xa8\x59\xfc\x19\x3d\xbf\x5b\x0e\xa8\x45\x46\x09\x51\x16\xc6\xf9\x46\x3e\x48\xac\xd8\x3d\x4b\xd2\x40\x49\x8c\x70\x3d\xe0\xa0\x06\xc7\xa2\x89\xeb\xb1\x12\x35\xc8\xae\xb9\x96\xc7\xa4\x43\x6a\x20\xcf\x27\x92\x3b\x24\xa2\x3c\xcf\xea\x36\x6b\x81\xf0\x8b\x0c\x11\x89\x52\x2a\x54\x41\x0d\x55\x4a\xb2\x68\x98\x52\x01\x4a\x8b\x55\x4a\xf2\x58\x80\x5e\x01\x4e\x0b\xd0\x6b\x0e\x34\x40\x4a\xf1\x78\xb6\x53\x0c\x0d\x31\x6d\x27\x79\x1a\x5f\x5f\xb3\xb1\x65\xb9\x52\x41\x15\x2c\x75\xe3\x6b\x88\x71\x3b\xc9\xd7\xf8\xfc\xcd\x4c\xbe\xf8\xe1\x11\xda\x7a\x67\x37\xbe\x86\x98\xb7\x93\x7c\x8d\xef\x0f\xcc\xe4\x6b\x58\x26\x23\xe5\x78\xfc\xdb\x29\xc6\x86\x18\xb8\x93\x8c\x8d\x01\xa0\xad\x8c\xb1\x5a\x54\xcf\xa8\x39\x26\x2d\xba\xb1\xde\x92\x94\xed\xa9\x6a\x8a\xfd\x90\xa1\xe1\xbf\xd6\x35\x5c\x64\xc8\xd0\xf5\x3d\xa9\xb3\x2e\xc9\xb3\xbf\x6a\x65\xc6\x1c\xb1\x10\x19\x9c\x9e\x49\xec\x46\x2f\xa7\x91\x7f\xc7\x94\xfd\x2a\x08\xac\xc0\xa8\x91\xc0\x59\x9a\xa9\x08\x1d\x61\xa4\x12\x6b\x33\x81\x43\x95\xa7\x12\xec\xd6\x0e\xab\xf0\x42\x93\xb4\x02\x44\x04\x47\x0a\xd9\x76\x2f\x39\xda\xd3\x14\x7d\x7c\xc4\xa3\xd3\x8d\x06\x91\xfc\xe6\x74\x3a\x69\x00\x75\x93\x15\x49\xf3\xc2\x41\x82\x60\x7b\x90\xa0\x12\x09\x8c\xc6\x88\x5d\x2a\x89\x17\x3c\x2a\x8e\x18\xe2\xcd\x61\xa5\x8f\x16\xe8\x58\x95\xa9\x40\x69\x73\xdc\xc6\xdb\x54\xa7\x34\x00\xca\xb4\xc6\x64\x89\xda\xfa\x71\x7d\x8a\xd7\x3a\xb5\xeb\xf1\x88\xda\x96\x43\x45\xbb\x64\xbb\x8e\x01\x5a\x14\x4c\xa1\xc4\x12\x25\x3a\xe1\xe3\xe6\x31\xd2\xc5\x9b\x95\xa7\x6a\x00\xd9\x26\xd1\x61\xa7\x13\xc1\x30\x32\x05\x92\x22\x0b\xed\xb4\xd9\x6c\xf5\x6a\x3c\x27\x4d\x99\x95\xe7\xb1\xfd\x8e\x61\xb0\xd5\x29\x30\x30\x99\x08\x4f\x94\xe8\x1c\x92\xdd\x41\xd6\x3f\x02\x9b\x26\xe5\x79\x04\x4a\x8f\xab\x18\x92\x16\x85\x92\xa9\xb0\x34\x89\x48\xb2\x0d\xd3\x28\xd1\xc7\x3f\xd2\x2f\x79\x55\x76\xa7\xc7\x53\xa2\xd3\x20\x40\x32\x09\x9a\x24\x51\x38\x1e\xd2\x55\xaa\x53\x48\x93\xe6\x13\x07\x59\xad\x57\xc9\x3a\x80\x2a\xd1\x7c\x52\xab\xd0\x7c\x52\x1a\x3b\x0a\xd7\xe1\x46\x43\x7f\xa8\xd2\x41\x7b\xa3\x30\x8a\xa3\x47\xdd\xf6\x5c\x3b\x94\x1a\x35\x9c\xa1\xc9\x93\xe3\x27\x2f\x0e\x18\x98\x18\x7c\x58\x0e\x3d\x3c\x76\xe0\x11\xfa\xd2\xe6\x04\xfa\xfd\x32\x0c\x82\xf7\x60\x89\x4b\x96\xd2\xd9\xda\x3e\xf8\x21\x58\x24\x4f\x5a\x04\x59\x3a\x93\x11\x02\x19\xeb\xf1\x66\xb3\x32\xeb\xb2\x24\x17\x02\x49\x53\x51\xa1\x63\x45\x67\x74\x34\x20\xb2\x92\xa8\x45\x45\xa6\xf5\x6d\x50\xf2\xe9\xf6\x5c\x35\x29\xfd\xb9\x27\xff\x7a\x38\x61\x84\x1d\xe2\x49\xd3\xa7\x5b\x20\x10\x3e\x63\x42\x2d\xe2\x6a\x94\x95\x17\xd4\x64\x92\x45\x63\xe1\xa8\x6f\xe4\x6f\x96\x67\xdd\x0b\x8f\x50\x2d\x42\x65\x25\x00\xa7\x05\x6c\x67\xa6\xb8\x6e\xb2\xb2\xbb\xfd\x6e\x49\xa3\xfe\x2e\xf7\x07\x74\xaa\x1a\x56\x79\x30\x1c\xf4\x93\x39\x50\x74\xb2\x2f\xab\xee\x3b\xff\xd0\x95\x0f\x9a\xf4\xae\x65\x8a\x9a\x3c\x2b\xd1\x6b\x72\x38\x34\xbf\x76\x59\x97\xa3\x8f\x2c\xd4\xf0\x10\x1c\x78\xf1\xdd\xbb\x45\xd2\x75\xcd\x77\x24\xfb\x61\xf1\xee\xe1\xdd\x6b\xdd\x20\x69\x66\x5b\x37\xc8\x53\xe6\xb6\x87\xbc\x3a\x7e\xfa\xbf\xd7\xaa\x43\x4b\x0c\xcd\xda\x35\xac\xfb\x45\x5b\xe5\x59\xba\xf8\x26\x49\x0f\xf1\x21\x7d\xaa\x93\x33\xa2\xcd\xe4\x65\x65\x9b\xa5\x68\x9f\x7c\xae\xb2\xf4\xb5\xbb\xa0\x24\xbd\xa5\x59\x5b\xe7\xc9\xcb\xbe\x4b\x0e\x39\xf2\x70\x12\x6a\x3c\xac\x38\xf5\x6b\x56\x9c\x97\x5d\x73\x33\x95\xbf\x44\xcb\xcb\x6a\x59\xdf\xaa\xa6\xbe\x24\x65\xbb\x5f\x3d\x3d\x67\x69\xf5\xdc\xee\x57\x34\x4b\x2c\x48\x6a\xcc\xca\xfd\x23\x4e\xbf\xb5\xd9\x5f\xd1\x3e\x59\xbd\xfa\x58\x0c\x49\x56\xa2\x66\x49\x3a\xa3\x32\x77\x13\x5b\xb8\x4c\x3e\x1f\x92\x66\xe0\x18\x37\xc3\xab\x7f\x48\xd2\x33\x54\xf9\x20\xc0\x1a\x8e\x2b\xc5\x32\x71\x37\xc8\x93\xba\x45\x7b\xfe\x43\xd2\x43\x0c\xb9\xe8\xd2\x25\xff\x75\xb9\x69\x3d\x48\x33\xb6\x44\x64\x14\x3b\x4a\xc7\xc2\x42\xd2\x05\xe0\x2c\x45\x28\x42\x1b\x1d\x91\x30\xd4\xb1\x4e\x20\xe6\x2c\x3a\x2c\x9e\xef\xc9\xbf\x4b\x29\x3d\x95\x3f\x2f\xca\x27\x4a\x04\x3e\x78\x4d\x28\x0f\xbc\xda\x3e\x81\xe2\x05\x64\x1e\x9e\xc0\x82\xaf\xff\xed\x1f\x7e\xf8\xdd\x37\x8b\xb6\xba\x36\x47\xf4\x73\x52\xd7\x59\x79\xfe\xf7\x7f\xfd\xe9\x43\xe4\xa7\xa7\x75\x74\x7c\xdc\xae\xfd\xe3\xe5\x5a\x7e\xf2\x8f\x6d\xeb\x17\x49\xbd\xf8\xdd\x0f\xff\xff\x00\x00\x00\xff\xff\xba\xe8\x98\x84\x46\x4f\x02\x00") -func pkgUiStaticReactStaticCss23f5e1097ChunkCssBytes() ([]byte, error) { +func pkgUiStaticReactStaticCss2Df42c974ChunkCssBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticCss23f5e1097ChunkCss, - "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", + _pkgUiStaticReactStaticCss2Df42c974ChunkCss, + "pkg/ui/static/react/static/css/2.df42c974.chunk.css", ) } -func pkgUiStaticReactStaticCss23f5e1097ChunkCss() (*asset, error) { - bytes, err := pkgUiStaticReactStaticCss23f5e1097ChunkCssBytes() +func pkgUiStaticReactStaticCss2Df42c974ChunkCss() (*asset, error) { + bytes, err := pkgUiStaticReactStaticCss2Df42c974ChunkCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css", size: 151031, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/2.df42c974.chunk.css", size: 151366, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticCssMain61ef2226ChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x6d\x8f\xa4\xb8\x11\xfe\x9e\x5f\x41\xb4\x89\x74\x7b\x19\x73\xc0\x4c\xf7\xf4\xd2\xda\x91\x72\x8a\x92\x53\xb2\x89\x4e\xd9\x64\xa5\xe4\x74\x42\x06\x17\xe0\x1b\x63\xfb\xec\x62\x9a\x5e\xd4\xff\x3d\xb2\x79\x19\xe8\x66\xef\xa2\x91\x98\xc6\x2e\x97\xeb\xe5\xa9\xa7\x8a\xf0\xe7\x16\xcc\x99\x58\xa4\x68\xfb\x52\x40\x47\x2a\xa3\x4e\x69\x7c\x2c\x95\x44\x62\xf9\x67\x48\xc3\x47\x03\xcd\xb1\x50\x42\x99\xf4\xcd\x63\x7c\x88\x0e\x70\x09\x0b\x25\x4b\x5e\x91\x33\x6d\x44\xcf\xb8\xd5\x82\x9e\xd3\x5c\xa8\xe2\xf9\xa8\x29\x63\x5c\x56\x69\x1c\xe9\x6e\xa1\x25\xbe\xd7\xdd\xa4\xe4\xfe\xfe\xfe\x78\x52\x86\x91\xdc\x00\x7d\x4e\xfd\x93\x50\x21\x8e\x39\x2d\x9e\x2b\xa3\x5a\xc9\xc8\x28\x5a\xee\xdc\xdf\x31\x57\x86\x81\x49\x63\xdd\x05\x56\x09\xce\x82\x37\x45\x51\x8c\xab\xc4\x50\xc6\x5b\x9b\x3e\xe8\xee\x12\xfe\x99\x0b\x04\x93\xe5\x28\xb3\x2c\x3e\xd7\xac\xea\x1b\x6a\x2a\x2e\x09\x2a\x9d\x86\x7b\x68\x8e\xe3\x7b\xae\x10\x55\x93\xc6\x3b\x77\xea\x63\x61\xa8\x86\xef\x95\x12\xdf\x53\x09\x22\x2b\x94\x44\xca\x25\x98\x2c\x4b\x1a\x5a\x34\x4b\x25\x24\x4e\xb6\x8e\x20\x47\x01\x59\x16\x6b\xfd\x97\x9f\xfa\x57\xb7\x93\x39\x0a\x27\xe0\x55\x8d\xe9\x63\x14\x1d\x8b\xd6\x58\x65\x52\xad\xb8\x44\x30\xb7\xba\x18\x95\x95\xbb\xfb\xbf\xea\xbb\xe7\x7d\x3f\x45\x22\x79\x88\x1f\xe2\x8d\x8b\x69\xee\x2f\xfe\xc8\x4c\xdc\x9f\x38\xc3\x3a\x8d\xa3\xe8\xf7\x1b\x4e\x81\x10\x59\x76\xff\xe1\x53\x9e\xf5\xf5\x60\x0c\x6d\x51\x0d\x99\x38\x19\xaa\xc7\x44\xb8\xf7\xcd\xf4\xdc\xaa\x04\xc9\xbc\x13\x59\x16\xff\xe3\xa1\xea\xee\x6e\x04\x04\xcd\x41\xd8\x2c\x8b\x3f\x7d\xea\xf2\xd1\xba\x64\xb7\x61\x9c\xa0\x16\x89\xf5\x8b\x59\x16\xbf\x4b\x3e\xfd\xed\x56\x99\x03\x29\x64\x59\xf2\xed\xcf\x7f\xea\x66\x4f\x37\x74\x81\x31\xca\xd8\x2c\x4b\xfe\xfa\xed\xcb\x7f\x46\xc1\x7b\x27\xf8\x2f\x6a\x2a\xc0\x0f\x83\x4d\x8c\xdb\x42\xbd\x80\x01\x96\x65\x09\x7c\x14\x0f\xfd\xa9\xe6\x08\xc4\x6a\x5a\x40\x2a\x95\x8b\xc8\x25\xd4\x4e\x63\xbf\xc6\x8c\xcb\xe9\x85\x4b\xdd\xe2\x0f\x78\xd6\xf0\xbe\xa8\xa1\x78\xce\x55\xf7\x63\xea\x7f\x01\xfb\x83\x77\x7b\x4a\x5c\x72\xd8\x47\xef\xa2\x4b\x58\xb4\x16\x55\x43\x1c\xb6\x8c\x12\x64\x94\xb9\x82\x02\xaa\xaa\x12\x60\xac\x4f\x88\x06\x13\x84\xa5\x32\x8d\x2b\xca\x56\x5f\x99\x11\xee\x0c\x34\x97\x1f\x4a\x65\x7e\xf7\x9e\x8c\xe7\x7e\xdc\xbc\x25\xa5\x25\x82\xb9\xfb\xbf\x44\x73\x28\x95\x81\xde\x97\x4b\x72\x70\x95\x2f\xa0\xc4\x94\xc4\xe1\xbd\x7b\x19\xc3\x1e\xc6\x89\x7b\x1b\x61\x34\xbe\x5e\xc2\x82\x6a\x8e\x54\xf0\xcf\x40\x7c\x3d\xa4\x25\x37\x16\x89\x00\x44\x30\x3d\x42\x87\x04\x0d\x95\xd6\xf9\x94\xbe\x0a\x5f\x42\xe8\xb4\x01\x6b\xb9\x92\xc4\x07\xf6\xca\x55\xc7\x25\xb7\x42\x81\x53\x48\x0d\xd0\xde\x80\x2f\x36\xa9\x24\x1c\x5d\x4e\x4b\xa1\x4e\x69\xcd\x19\x03\x79\xc9\x5b\x44\x25\x43\xe8\xa0\x68\x11\x48\x8e\x72\x84\xc4\xc1\x13\x06\x15\x60\x70\x78\x92\xa1\xee\x36\xef\x96\xf4\x85\x20\xcd\x6d\xe0\x7f\x09\x2e\x9f\x6f\x53\x47\x73\x1f\x4b\x90\xd8\x8f\xcc\xe4\x43\xb7\x20\x2d\x06\x90\xc0\x7e\xe6\xad\x21\x78\x5f\xda\x9e\xee\xbf\xd9\x5f\x32\xec\xea\xda\x60\xf0\xe3\xca\x81\xe8\x12\x32\x8a\x94\x78\xa2\x08\xfd\x73\x94\xf0\x1a\x82\x28\xf0\x84\xf6\x2a\xf3\x84\xb9\x62\xe7\x27\x34\x4f\xc8\xfa\xe9\xb2\x9d\x97\x74\xcf\xc3\x8a\xd7\xc3\x03\x34\x37\x31\x0f\x1d\xb1\xd8\xb6\xaa\xc0\x22\x61\x46\x69\xa6\x4e\xb2\xd7\xca\x72\xe4\x4a\xa6\x34\xb7\x4a\xb4\x08\x5b\xb4\x0e\xec\x81\xd1\xad\x46\x50\x96\x53\xfb\x78\x78\xb7\x8b\x76\x8f\xcb\xde\xe2\xb0\xf8\x99\x70\xc9\xa0\x73\xe4\x17\x0d\x98\xdd\xed\x75\x77\x5c\x32\xf7\xde\x27\x7c\xc3\x34\x22\xb8\xc5\xd9\xd5\x68\x3c\x94\x46\x47\xb7\x4e\x2c\x9e\xc5\x00\xae\x5f\x38\x1d\x08\xbe\x60\xdf\x39\x47\x61\xe2\xaa\x34\x88\x7d\xb1\x1e\x0b\x01\xd4\xa4\xb9\xc2\xfa\x78\x4b\x36\xb7\x4e\x73\xc9\x91\x53\x31\x85\x29\x3a\xae\x3a\xed\x2f\x1b\xb3\xbd\x59\x03\x65\x60\xfa\xdb\xf0\xe6\x25\x83\xb2\x5c\xc6\xd4\x35\x2e\xc1\x25\x90\xb9\xc8\x77\xc7\xab\x0a\x6e\x1d\x43\x15\xd4\xc2\xb0\x41\x05\xaf\x64\x5a\xc0\x50\x0e\x95\xa1\xba\x9e\xc8\xc5\xde\x0d\xc0\x9b\xdf\x37\x8b\x6c\x7d\x24\xf0\x45\x7e\x7d\x70\x58\xed\x7f\xf5\xc2\x20\x34\xae\x9a\x47\xa6\x18\x0e\x0d\xf9\xd9\x0d\x65\xc3\x9b\xf5\xe6\xaa\x28\x87\x64\xbf\xca\x4c\xad\xeb\x31\xd2\xdd\x6f\x79\xa3\x95\x41\x2a\x71\xdb\xe2\xd0\x80\x87\xf7\x2b\x99\x0d\x87\xdf\x6d\xf8\xf8\x94\x4a\x85\x5f\x8d\x34\x59\xd4\x5c\xb0\xb7\x53\x64\x3c\x84\x93\xad\xb8\x84\x1e\x46\xc4\x5b\x97\xa3\xbc\x89\xd0\xd5\xfe\x22\xdb\x43\x19\x2d\xc9\xc9\x53\xe6\xb8\xe0\x6a\x64\xa3\x14\xbf\xc4\x46\xe3\xfe\xaa\x28\x27\x5b\x05\x54\x20\xd9\x4c\x33\x03\x79\xf8\x7f\xbb\xdd\x9a\x3e\x1e\x77\xd0\xac\x18\xcd\x71\xcc\x0c\x74\x2e\x3d\x04\x47\xbc\x0f\x5a\x09\x47\x68\xae\xd8\x77\x3e\xe0\x46\xd8\x59\x9d\xe7\xab\xab\x29\xf1\xfe\x06\xd6\x8f\x2b\xc5\x01\xe3\x2f\xc3\x20\xec\x47\xa2\x61\x0a\x18\xf7\xed\x89\x62\x51\xf7\x0d\x97\x64\x48\xe9\xa3\xee\xa6\x1e\xe8\x7e\xaa\x16\xbd\x6a\x55\x96\x16\x3c\xb3\x4f\x4b\xae\x7a\xd6\xb3\xeb\x18\x9a\xfd\x40\xa8\x8e\x82\x83\xe8\xd7\xdd\x4e\x6b\x47\xb5\xcb\x8c\x9a\x2a\xa7\x5f\x45\x77\xee\x2f\x8c\x0f\x6f\x67\xe9\x06\xd0\xf0\x82\x48\xda\x4c\x6c\xff\xda\x6f\x66\x21\xdf\xf2\x07\x99\xab\x19\x75\x4c\xe4\x94\x41\x1f\xc9\x19\x88\x35\x35\x38\x8d\x90\xbb\xc8\x11\xc5\x82\xf9\x4a\x2e\xc4\x06\x47\xbb\x3e\xb1\x52\x10\x84\xa5\x50\x48\x9c\x3f\x82\x9e\xa7\x7c\x16\x46\x59\x5b\x53\x3e\xd7\x33\x2a\x25\x90\xeb\x2f\xb9\x7c\x78\x7b\x5c\x34\x08\x7f\x5d\x49\x1b\x2e\xce\xe9\x1f\x0d\xa7\xe2\xee\x3b\x10\x2f\x80\xbc\xa0\x77\x96\x4a\x4b\x2c\x18\xbe\x62\xb9\xc4\x19\x7f\x4b\xc5\x13\x82\x0e\x5b\xf8\xb9\x32\x2d\x08\x87\x29\x77\x31\xf5\xc7\xf1\x35\xca\xe2\x8d\x63\x0c\x90\x72\x31\xa1\x6a\x2b\xf7\x73\x5c\x5f\x71\x36\x30\x25\x65\x8c\xf8\xd1\xd4\x17\xf8\xc6\x78\x1a\xa2\x9f\x75\x3d\xe1\x5f\xe7\x76\xe1\xbf\x70\x52\xce\x30\xd5\x6a\xc2\x65\xa9\xfa\x55\x21\xfd\xd4\x5a\xe4\xe5\x79\x9a\x2f\x52\x1f\x23\x92\x03\x9e\x00\xe4\xf5\x97\x94\x33\x72\x3d\x9a\xe4\x94\x55\x30\x8f\xb2\x4f\x56\x53\xb9\xc6\xe2\xce\x37\xe8\x6e\x8a\xd2\x60\xb9\x69\x05\xd8\x5b\xc3\xf7\x0e\x94\x6e\xcf\x7f\xc8\xac\x86\x75\x6d\x80\x6c\x77\xd0\xe9\xfb\x71\xfd\x89\xba\x84\x49\xa3\xa4\xf2\x5a\x2e\xbf\xf9\xe6\xeb\x37\x81\x55\xad\x29\xe0\xef\x54\x6b\x2e\xab\x7f\xff\xf3\xc3\xfb\x86\x72\x19\xee\x63\x28\x93\x24\xd9\x87\x45\xdd\xca\xe7\xb0\xb0\x36\x6c\xa8\x0e\xbe\xfe\xe6\x7f\x01\x00\x00\xff\xff\xaf\xfb\xb2\xbb\x3f\x0f\x00\x00") +var _pkgUiStaticReactStaticCssMain02392edeChunkCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x6d\x8f\xe3\xb6\x11\xfe\xde\x5f\xa1\xe2\x5a\x20\x97\x2e\x15\x49\x5e\xaf\xbd\x32\x6e\x81\x06\x45\x1b\xb4\xd7\x22\xe8\xb5\x0b\xb4\x41\x20\x50\xe2\x48\x66\x96\x22\x19\x72\xb4\x96\x4f\xf0\x7f\x2f\x48\xbd\xac\x64\xeb\x92\x62\x01\xad\x45\x0e\x87\xf3\xf2\xcc\x33\xa3\xf0\xe7\x06\xcc\x99\x58\xa4\x68\xbb\x52\x40\x4b\x2a\xa3\x4e\x69\x7c\x28\x95\x44\x62\xf9\x67\x48\xc3\x9d\x81\xfa\x50\x28\xa1\x4c\xfa\x6e\x17\xef\xa3\x3d\x5c\xc2\x42\xc9\x92\x57\xe4\x4c\x6b\xd1\x31\x6e\xb5\xa0\xe7\x34\x17\xaa\x78\x39\x68\xca\x18\x97\x55\x1a\x47\xba\x9d\x69\x89\x37\xba\x1d\x95\x6c\x36\x9b\xc3\x49\x19\x46\x72\x03\xf4\x25\xf5\x4f\x42\x85\x38\xe4\xb4\x78\xa9\x8c\x6a\x24\x23\x83\x68\xb9\x75\x7f\x87\x5c\x19\x06\x26\x8d\x75\x1b\x58\x25\x38\x0b\xde\x15\x45\x31\xac\x12\x43\x19\x6f\x6c\x7a\xaf\xdb\x4b\xf8\x67\x2e\x10\x4c\x96\xa3\xcc\xb2\xf8\x7c\x64\x55\x57\x53\x53\x71\x49\x50\xe9\x34\x7c\x80\xfa\x30\xbc\xe7\x0a\x51\xd5\x69\xbc\x75\xa7\x3e\x15\x86\x6a\xf8\x5e\x29\xf1\x3d\x95\x20\xb2\x42\x49\xa4\x5c\x82\xc9\xb2\xa4\xa6\x45\x3d\x57\x42\xe2\x64\xed\x08\x72\x14\x90\x65\xb1\xd6\x7f\xf9\xa9\x7b\x73\x3b\x99\xa2\x70\x02\x5e\x1d\x31\xdd\x45\xd1\xa1\x68\x8c\x55\x26\xd5\x8a\x4b\x04\x73\xab\x8b\x51\x59\xb9\xbb\xff\xab\xbe\x7b\x79\xe8\xc6\x48\x24\xf7\xf1\x7d\xbc\x72\x31\xcd\xfd\xc5\x9f\x98\x89\xbb\x13\x67\x78\x4c\xe3\x28\xfa\xfd\x8a\x53\x20\x44\x96\x6d\x3e\x3e\xe7\x59\x77\xec\x8d\xa1\x0d\xaa\x3e\x13\x27\x43\xf5\x90\x08\xf7\xbe\x9a\x9e\x5b\x95\x20\x99\x77\x22\xcb\xe2\x7f\xdc\x57\xed\xdd\x8d\x80\xa0\x39\x08\x9b\x65\xf1\xf3\x73\x9b\x0f\xd6\x25\xdb\x15\xe3\x04\xb5\x48\xac\x5f\xcc\xb2\xf8\x31\x79\xfe\xdb\xad\x32\x07\x52\xc8\xb2\xe4\xdb\x9f\xff\xd4\x4e\x9e\xae\xe8\x02\x63\x94\xb1\x59\x96\xfc\xf5\xdb\xd7\xff\x0c\x82\x1b\x27\xf8\x2f\x6a\x2a\xc0\x8f\xbd\x4d\x8c\xdb\x42\xbd\x82\x01\x96\x65\x09\x7c\x12\xf7\xdd\xe9\xc8\x11\x88\xd5\xb4\x80\x54\x2a\x17\x91\x4b\xa8\x9d\xc6\x6e\x89\x19\x97\xd3\x0b\x97\xba\xc1\x1f\xf0\xac\xe1\x43\x71\x84\xe2\x25\x57\xed\x8f\xa9\xff\x05\xec\x0f\xde\xed\x31\x71\xc9\xfe\x21\x7a\x8c\x2e\x61\xd1\x58\x54\x35\x71\xd8\x32\x4a\x90\x41\xe6\x0a\x0a\xa8\xaa\x4a\x80\xb1\x3e\x21\x1a\x4c\x10\x96\xca\xd4\xae\x28\x1b\x7d\x65\x46\xb8\x35\x50\x5f\x7e\x28\x95\xf9\xdd\x07\x32\x9c\xfb\x71\xf5\x96\x94\x96\x08\xe6\xee\xff\x12\xcd\xa1\x54\x06\x3a\x5f\x2e\xc9\xde\x55\xbe\x80\x12\x53\x12\x87\x1b\xf7\x32\x84\x3d\x8c\x13\xf7\x36\xc0\x68\x78\xbd\x84\x05\xd5\x1c\xa9\xe0\x9f\x81\xf8\x7a\x48\x4b\x6e\x2c\x12\x01\x88\x60\x3a\x84\x16\x09\x1a\x2a\xad\xf3\x29\x7d\x13\xbe\x84\xd0\x6a\x03\xd6\x72\x25\x89\x0f\xec\x95\xab\x8e\x4b\x6e\x85\x02\xa7\x90\x1a\xa0\x9d\x01\x5f\x6c\x52\x49\x38\xb8\x9c\x96\x42\x9d\xd2\x23\x67\x0c\xe4\x25\x6f\x10\x95\x0c\xa1\x85\xa2\x41\x20\x39\xca\x01\x12\x7b\x4f\x18\x54\x80\xc1\xfe\x49\xfa\xba\x5b\xbd\x5b\xd2\x57\x82\x34\xb7\x81\xff\x25\xb8\x7c\xb9\x4d\x1d\xcd\x7d\x2c\x41\x62\x37\x30\x93\x0f\xdd\x8c\xb4\x18\x40\x02\x0f\x13\x6f\xf5\xc1\xfb\xd2\xf6\x78\xff\xcd\xfe\x9c\x61\x17\xd7\x06\xbd\x1f\x57\x0e\x44\x97\x90\x51\xa4\xc4\x13\x45\xe8\x9f\x83\x84\xd7\x10\x44\x81\x27\xb4\x37\x99\x27\xcc\x15\x3b\x3f\xa1\x79\x42\xd6\x8d\x97\x6d\xbd\xa4\x7b\xee\x17\xbc\x1e\xee\xa1\xbe\x89\x79\xe8\x88\xc5\x36\x55\x05\x16\x09\x33\x4a\x33\x75\x92\x9d\x56\x96\x23\x57\x32\xa5\xb9\x55\xa2\x41\x58\xa3\x75\x60\xf7\x8c\xae\x35\x82\xb2\x1c\xdb\xc7\xfd\xe3\x36\xda\xee\xe6\xbd\xc5\x61\xf1\x33\xe1\x92\x41\xeb\xc8\x2f\xea\x31\xbb\x7d\xd0\xed\x61\xce\xdc\x0f\x3e\xe1\x2b\xa6\x11\xc1\x2d\x4e\xae\x46\xc3\xa1\x34\x3a\xb8\x75\x62\xf1\x2c\x7a\x70\xfd\xc2\xe9\x40\xf0\x19\xfb\x4e\x39\x0a\x13\x57\xa5\x41\xec\x8b\xf5\x50\x08\xa0\x26\xcd\x15\x1e\x0f\xb7\x64\x73\xeb\x34\x97\x1c\x39\x15\x63\x98\xa2\xc3\xa2\xd3\xfe\xb2\x31\xeb\x9b\x47\xa0\x0c\x4c\x77\x1b\xde\xbc\x64\x50\x96\xf3\x98\xba\xc6\x25\xb8\x04\x32\x15\xf9\xf6\x70\x55\xc1\x8d\x63\xa8\x82\x5a\xe8\x37\xa8\xe0\x95\x4c\x0b\xe8\xcb\xa1\x32\x54\x1f\x47\x72\xb1\x77\x3d\xf0\xa6\xf7\xd5\x22\x5b\x1e\x09\x7c\x91\x5f\x1f\xec\x57\xbb\x5f\xbd\x30\x08\x8d\xab\xe6\x81\x29\xfa\x43\x7d\x7e\xb6\x7d\xd9\xf0\x7a\xb9\xb9\x28\xca\x3e\xd9\x6f\x32\x63\xeb\xda\x45\xba\xfd\x2d\xaf\xb5\x32\x48\x25\xae\x5b\x1c\x1a\xf0\xf0\x7e\x23\xb3\xfe\xf0\xe3\x8a\x8f\x4f\xa9\x54\xf8\xd5\x40\x93\xc5\x91\x0b\xf6\x7e\x8c\x8c\x87\x70\xb2\x16\x97\xd0\xc3\x88\x78\xeb\x72\x94\x37\x11\xba\xda\x9f\x65\xbb\x2f\xa3\x39\x39\x79\xca\x1c\x16\x5c\x8d\xac\x94\xe2\x97\xd8\x68\xd8\x5f\x14\xe5\x68\xab\x80\x0a\x24\x9b\x68\xa6\x27\x0f\xff\x6f\xbb\x5d\xd2\xc7\x6e\x0b\xf5\x82\xd1\x1c\xc7\x4c\x40\xe7\xd2\x43\x70\xc0\x7b\xaf\x95\x70\x84\xfa\x8a\x7d\xa7\x03\x6e\x84\x9d\xd4\x79\xbe\xba\x9a\x12\x37\x37\xb0\xde\x2d\x14\x07\x8c\xbf\xf6\x83\xb0\x1f\x89\xfa\x29\x60\xd8\xb7\x27\x8a\xc5\xb1\xab\xb9\x24\x7d\x4a\x77\xba\x1d\x7b\xa0\xfb\xa9\x1a\xf4\xaa\x55\x59\x5a\xf0\xcc\x3e\x2e\xb9\xea\x59\xce\xae\x43\x68\x1e\x7a\x42\x75\x14\x1c\x44\xbf\xee\x76\x7a\x74\x54\x3b\xcf\xa8\xa9\x72\xfa\x55\x74\xe7\xfe\xc2\x78\xff\x7e\x92\xae\x01\x0d\x2f\x88\xa4\xf5\xc8\xf6\x6f\xfd\x66\x12\xf2\x2d\xbf\x97\xb9\x9a\x51\x87\x44\x8e\x19\xf4\x91\x9c\x80\x78\xa4\x06\xc7\x11\x72\x1b\x39\xa2\x98\x31\x5f\xc9\x85\x58\xe1\x68\xd7\x27\x16\x0a\x82\xb0\x14\x0a\x89\xf3\x47\xd0\xf3\x98\xcf\xc2\x28\x6b\x8f\x94\x4f\xf5\x8c\x4a\x09\xe4\xfa\x4b\x2e\xef\xdf\x1f\x66\x0d\xc2\x5f\x57\xd2\x9a\x8b\x73\xfa\x47\xc3\xa9\xb8\xfb\x0e\xc4\x2b\x20\x2f\xe8\x9d\xa5\xd2\x12\x0b\x86\x2f\x58\x2e\x71\xc6\xdf\x52\xf1\x88\xa0\xfd\x1a\x7e\xae\x4c\x0b\xc2\x7e\xca\x9d\x4d\xfd\x71\x7c\x8d\xb2\x78\xe5\x18\x03\xa4\x5c\x8c\xa8\x5a\xcb\xfd\x14\xd7\x37\x9c\xf5\x4c\x49\x19\x23\x7e\x34\xf5\x05\xbe\x32\x9e\x86\xe8\x67\x5d\x4f\xf8\xd7\xb9\x9d\xf9\x2f\x9c\x94\x33\x4c\x35\x9a\x70\x59\xaa\x6e\x51\x48\x3f\x35\x16\x79\x79\x1e\xe7\x8b\xd4\xc7\x88\xe4\x80\x27\x00\x79\xfd\x25\xe5\x8c\x5c\x8e\x26\x39\x65\x15\x4c\xa3\xec\x93\xd5\x54\x2e\xb1\xb8\xf5\x0d\xba\x1d\xa3\xd4\x5b\x6e\x1a\x01\xf6\xd6\xf0\x07\x07\x4a\xb7\xe7\x3f\x64\x16\xc3\xba\x36\x40\xd6\x3b\xe8\xf8\xfd\xb8\xfc\x44\x9d\xc3\xa4\x56\x52\x79\x2d\x97\xdf\x7c\xf3\xf5\xbb\xc0\xaa\xc6\x14\xf0\x77\xaa\x35\x97\xd5\xbf\xff\xf9\xf1\x43\x4d\xb9\x0c\xa3\x64\xf3\x98\x00\x83\xb0\x38\x36\xf2\x25\x2c\xac\x0d\x6b\xaa\x83\xaf\xbf\xf9\x5f\x00\x00\x00\xff\xff\x6a\x22\x62\x57\x3f\x0f\x00\x00") -func pkgUiStaticReactStaticCssMain61ef2226ChunkCssBytes() ([]byte, error) { +func pkgUiStaticReactStaticCssMain02392edeChunkCssBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticCssMain61ef2226ChunkCss, - "pkg/ui/static/react/static/css/main.61ef2226.chunk.css", + _pkgUiStaticReactStaticCssMain02392edeChunkCss, + "pkg/ui/static/react/static/css/main.02392ede.chunk.css", ) } -func pkgUiStaticReactStaticCssMain61ef2226ChunkCss() (*asset, error) { - bytes, err := pkgUiStaticReactStaticCssMain61ef2226ChunkCssBytes() +func pkgUiStaticReactStaticCssMain02392edeChunkCss() (*asset, error) { + bytes, err := pkgUiStaticReactStaticCssMain02392edeChunkCssBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.61ef2226.chunk.css", size: 3903, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/css/main.02392ede.chunk.css", size: 3903, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJs2926cad18ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x0b\x93\xdb\x36\xb2\x30\xfa\x57\x24\xae\x3f\x86\xb0\x20\x0e\x29\x69\x5e\x94\x61\x95\xd7\x76\x36\xc9\xf1\x24\x7b\x12\x6f\xb2\x67\x39\x74\x3e\x8e\x08\x8d\xb8\xa1\x48\x85\x84\xc6\xf3\xa0\xf6\xb7\xdf\xea\x06\x48\x82\x14\x65\x67\xf3\xe5\x3b\xe7\xd6\xad\x5b\x65\x8f\x48\x10\xcf\x46\xa3\xd1\xe8\x17\x2c\xb1\x8e\x0b\xfb\x23\xbf\xd9\x86\xcb\x5f\xbe\x29\xb2\x74\x7b\x9b\x87\xdb\x35\xeb\x4f\x2e\x4b\x3f\x20\xf6\x76\x57\xac\x2d\xdf\x9f\x04\xd4\x5f\xed\xd2\xa5\x88\xb3\xd4\xe2\x54\xd0\x94\x3c\x19\xbb\x82\x0f\x0a\x91\xc7\x4b\x61\xcc\xb9\xcd\xef\xb7\x59\x2e\x0a\x96\x5a\xae\xe3\x92\x3d\xed\x66\x6f\xe7\x38\x23\x56\x4f\x9e\x56\x95\xa9\x1d\x59\x82\x1a\xb7\x06\xb5\xea\x7c\xe4\x29\xe7\x62\x97\xa7\x83\xe5\x9e\x10\xaa\x72\xac\x7b\x73\x24\x5a\x8e\xb8\x37\xc7\x4e\xcb\x91\xf4\xe6\x58\x69\x39\xc2\xde\x1c\x6b\x2d\xc7\x2f\xbd\x39\x6e\xb4\x1c\xff\xec\xcd\xb1\xd1\x72\xf0\xde\x1c\x57\x5a\x8e\x65\x6f\x8e\x5b\x2d\x47\xd4\x9b\xe3\x4e\xcb\x71\xd3\x9b\xe3\x41\xcb\xb1\xea\xcd\xf1\xb8\x27\x64\x7e\x17\xe6\x83\x9c\x66\x2c\xb5\x2e\xce\x09\x8d\x59\x6a\xa7\x56\x46\x68\x08\xf3\x4a\x68\x81\xef\x21\x99\x57\xa5\x07\x4b\x98\xdd\xa6\x1b\x59\x1c\x0d\x1c\xc6\x18\x37\x4d\x8b\x33\xc3\x20\xb4\x4e\x12\xa6\x69\x09\x96\x13\x2a\x16\xdc\x2e\xb6\x49\x2c\x2c\x63\x60\x10\x7b\x13\x6e\xad\xa6\x37\xbc\xae\x4b\xf8\x3c\x28\x4b\xbe\x27\xc4\xfe\x67\x16\xa7\x98\xd9\xe3\xfb\xba\xe5\x44\xb6\x0c\x1d\x4e\xd9\xd3\x7e\xae\x8a\x7d\x77\xf3\x4f\xbe\x14\xf6\x2f\xfc\xa1\xb0\x38\xb1\x57\x59\xfe\x36\x5c\xae\xb5\x16\x72\xf2\x34\x76\xa1\x3f\x76\x9c\x46\xfc\xfe\xbb\x95\x95\x13\xd3\xb4\x52\x3f\x0f\x18\xf7\xf3\x80\x20\xa0\x9a\x76\x76\xb2\x9d\x55\x96\x5b\xd8\x16\xcd\xd9\xab\x3c\x0f\x1f\xec\xb8\xc0\x5f\x4b\x90\x85\xf0\x7c\x11\xd0\x8c\xe5\x76\xc2\xd3\x5b\xb1\xa6\x31\xf4\x28\x7b\xe9\xcc\x49\xec\xa7\x2c\xf7\xb3\x31\x73\x03\xa8\x3f\x0d\xaa\x8e\xc6\x7b\xa8\x6e\x0b\x19\xeb\xb6\x56\x30\xfe\x2d\x0e\xdc\x32\x76\x69\xc4\x57\x71\xca\x23\x63\xc8\x98\x78\xd8\xf2\x6c\x35\x58\x66\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x11\x33\x32\x84\x83\xc1\xea\xa2\x1f\xe3\x34\xca\x3e\x9a\xa6\xfc\xb5\xdf\x26\x7c\xc3\x53\x51\x96\x1a\x22\x68\x3d\x59\x57\xab\x36\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\xe9\x12\xaa\x8a\x08\x51\x83\x48\xf9\xc7\xc1\x5b\xec\x82\xf1\x75\x7a\x17\x26\x71\x34\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xd1\x40\x64\x90\x96\x8e\x8c\xff\x6d\x0f\xde\xde\x6f\xf9\x52\x70\x95\x55\x64\x83\x1b\x3e\x08\xd3\x41\xd5\xc0\x20\x5b\x0d\x54\xef\xec\xc1\x8f\x50\x67\x28\x81\x13\xc6\x09\x8f\x6c\x43\x0e\xf1\x86\x15\x76\x68\x67\x29\xff\x6e\xf5\xfe\x61\xcb\x2d\x1f\x5e\x81\xba\xa4\xb7\x14\x1e\x61\x24\x74\x8d\x8f\xc5\x3a\xdc\x72\xeb\x69\xb9\xcb\x73\x9e\x0a\x0f\x92\xc2\xf4\x61\x4f\x02\x42\x37\x7d\xb5\x60\xd1\x4e\x75\xaa\x8e\x67\xcf\x24\x34\xb1\x92\xe2\x61\x73\x93\x25\x34\xe7\x69\xc4\x73\xaf\x2a\xb9\x27\x58\x20\x04\xdc\xf8\x6e\x65\xfd\x5f\xa8\x3f\x20\xd0\xf5\x2b\xf6\xf4\x65\x18\x71\xcf\x3d\x75\xe8\xeb\x2c\x49\xc2\x6d\xc1\xbd\xe9\xa9\x43\xaf\xb2\x28\x4c\xbc\xa9\xe3\xd0\xd7\x61\x9e\xed\x0a\x9e\x78\x67\x8e\xb3\xa7\xb7\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x6d\x2a\x78\x6e\x50\x63\x97\x56\x09\xf7\xb1\x30\xa8\x11\x6e\xb7\x3c\x84\x0f\x5c\x65\xe0\x32\x5d\xc4\x1b\x9e\xed\xe0\x29\xab\xcb\xaa\xa7\x38\xbd\x6d\x5e\x78\x24\x9f\x65\x29\xf9\x50\x67\xb8\x8f\x05\x8f\x8c\x80\xde\xb1\xa7\xb7\xdf\xbe\x7f\xfb\xfd\xd7\xdf\xfe\xc5\x93\x0d\x61\x16\x4c\x7b\xfb\x46\x25\x41\x4d\x6f\xff\xfe\xf5\x7b\x99\xa9\xaa\x06\x52\x30\x8b\xac\x6b\x4f\x1f\x98\x6f\x84\x3b\x91\x8d\x0b\x11\xe6\x38\x82\x9d\xc8\xd4\xcf\x98\xa7\xd0\x1d\x91\x6d\xeb\xaf\x22\xdb\xaa\x14\xf9\x2d\x8f\x6f\xd7\xa2\xfe\x8a\x6f\x75\xaa\xcc\x71\x93\x09\x91\x6d\x5a\x2f\x4d\x6a\x55\x30\xe1\xab\x2a\x3f\x3c\x56\x29\xf2\x73\x40\x5f\xb1\xa1\xbe\xa4\xbb\xeb\xb2\x2c\x87\x6a\x61\x46\xd9\x72\x27\x57\x66\x37\xc5\x5e\xe6\x3c\x14\x5c\xad\x0d\x8d\x08\x7f\xd4\xc8\x66\xba\x4b\x92\xa1\x24\xc0\x6d\x32\xc5\x49\x59\xbe\x32\x4d\x23\xdd\x6d\x6e\x78\xae\x75\x80\x2b\xa2\x45\x1a\x9a\xf7\x08\x15\xc2\x2a\x13\x4c\xa7\xcc\xf1\xaa\x87\x50\x0f\xad\x21\x2f\xcb\x8a\xde\x34\xa4\x8a\x13\xd3\x34\xd4\x9a\x33\xe2\x74\xc0\xf7\x16\xaf\xe9\x06\xb7\xd5\x97\x79\xbc\xb2\x62\x8b\xe8\x9f\x2c\x02\x89\x86\x5c\x1c\x7a\x3f\x4d\xf3\x55\xd5\xab\x1a\x24\xbf\xee\x78\xfe\xf0\x03\x4f\xf8\x52\x64\xf9\xab\x24\xb1\x38\x96\x16\x6a\x4c\x65\x69\x7d\x2a\xb3\xf1\x27\x63\xc4\x09\xa1\xc3\x2a\x3f\x11\xeb\x3c\xfb\xa8\x93\xb5\xf7\x6b\x3e\x10\x61\x7e\xcb\xc5\xe0\x0b\x63\xc4\x47\xc6\x17\x83\x65\xb6\x4b\xa2\x41\x9a\x09\x20\x5c\x71\xc4\x53\x11\xaf\x80\xc6\xc5\xe9\x40\xac\xf9\x20\xca\x36\x74\x20\xe2\xad\x37\x58\xae\xf9\xf2\x97\x41\xb1\xe5\x49\x02\x43\x21\x15\xe9\x17\xfb\x6a\xac\x00\x93\x2a\xf5\x23\xee\x24\xbe\x13\x78\x62\xff\x19\xee\xa9\x9e\xa8\xbc\xde\xbe\xad\x9c\xa9\xad\x2f\x2c\x8a\xf8\x36\xd5\x08\x3b\x6f\x76\x2f\xc1\xdc\xb9\x78\x11\xe6\xb7\x08\x90\x42\x8d\x7a\x2e\x46\xa3\x6a\x27\xad\xbf\xf9\x22\x98\x57\xc5\x72\x18\x5b\x4a\x54\x03\xdb\x3c\x13\x19\x4c\x8a\xbd\x0e\x8b\xef\x3e\xa6\x7f\xcd\xb3\x2d\xcf\xc5\x83\xbd\x0c\x93\xc4\x4a\x29\xee\xa7\xb0\x95\xb2\x14\xf7\xd3\x7a\xb0\xc4\x0e\xb7\xdb\xe4\x01\x59\x55\x5a\x37\x44\xf6\x9f\x64\xc2\xf2\x3d\xe9\x61\x26\xb1\x57\xf3\xa1\x96\xbd\x05\xa0\x8a\x2b\xe8\xf4\xb0\x01\x5c\x66\x35\x40\xe1\xcc\x0f\xa8\x60\xce\x27\x21\x93\xb7\x21\x13\x03\xdb\x80\x1f\xe2\x0a\x3f\xf3\x0e\xda\xc6\x65\xa9\x2d\xb6\x98\x70\xc9\x6f\xe7\x64\xce\x93\x82\x0f\xe2\x55\x67\x81\x02\xd8\x2a\x06\x42\x56\x1d\xb2\x4c\x41\x0c\x56\x35\xcd\xc9\x3c\x34\x4d\x55\x4d\x48\xf6\x55\x35\xda\x5e\x1f\x93\x6a\x50\x05\x4c\x59\x4e\x52\x39\x29\x39\x2d\xa0\x76\xbf\x08\xea\x0a\x0a\xb2\xaf\x67\xa6\xe1\xb0\xf6\x35\x27\xbf\xb0\x32\x3b\xe2\xab\x70\x97\x08\x96\xd1\x86\xc1\xcf\x88\x57\xf3\x74\x56\xce\x0e\x27\x2c\xdb\x57\xd3\x4c\xfd\x80\x90\xb2\xb4\x9a\xc2\x39\xd9\x7f\xf6\x68\xa0\x21\x37\x72\x5e\xf1\x0a\x87\xcf\x18\x57\x24\xe2\x69\x3f\x57\x9c\x18\xcd\xd8\xd3\x9e\xc6\xac\xcd\xf4\x21\xda\xe6\xcc\x99\xe7\x2f\xe2\x6a\x1e\xf3\xd1\x88\xa4\x2c\xf6\xf3\x80\x36\x8c\x5f\x4a\x5e\x32\xa7\x2c\xad\xcc\x4f\x25\x6f\x56\xaf\xc5\xec\xf7\xe0\xe4\x27\x47\x51\x1d\x3a\xda\xe4\xb4\x4b\xa2\x89\x4e\x18\xf4\x25\xac\x00\xf1\x03\xb2\x04\x76\x2c\x78\x1e\x8a\x0c\x97\xa5\x1c\x3b\x66\x37\x7c\x89\x09\x83\x57\x15\xaa\x06\x80\x14\x07\xcb\x56\x64\x3f\x20\x96\x4a\xdc\xe0\xa4\x5a\xfb\x7e\x40\x73\x36\x74\x68\xc6\x86\x2e\x8d\x99\x9c\xe6\xb9\xc8\x1f\xea\xa5\x12\xd2\x82\x71\xbf\xd3\x8b\xc0\x22\xf3\xa1\x95\x33\x2b\x64\x85\x9d\xf2\x7b\x61\x11\x62\x47\x59\xca\x91\xaf\x56\xe8\x6a\xdf\x85\xc9\x8e\x03\xa9\x2d\xcb\x54\xcd\x0a\x6c\x16\x64\x0e\x4d\x92\xf9\x7e\x19\x8a\xe5\xda\x5a\x92\xa7\x0c\xba\x10\xb3\xe5\x7e\x15\xa7\x61\x92\x3c\x3c\x41\x07\xf2\xb2\x94\x48\x50\xd8\x12\x44\x65\x59\x3d\x59\xa4\xce\x19\xaf\xac\x4c\x91\xf0\xb8\xc6\xee\x74\xbf\x47\xf8\xb5\x58\xdd\x86\xce\x03\x5f\xd6\x61\x61\x43\x21\xf8\x66\x2b\x80\x35\x8d\x78\x21\xf2\xdd\x52\xec\x72\x3e\x48\xb3\x74\x8c\x63\xbe\x49\x78\xcd\xad\x1a\x88\xd1\x7f\x24\xb6\xe0\x44\x37\x27\x29\x6d\x4b\xfa\x9e\xaf\x78\xce\xd3\x65\xd5\x5f\xa0\xa3\x83\x75\x58\xa4\x5f\xc0\x56\xc4\x81\x85\x8e\x45\x1c\x26\x71\xc1\xa3\xc1\x18\x98\x6f\x9e\x5b\xa4\x95\x03\x66\x9c\x47\xcd\x56\xc4\x7f\x4b\xd7\x7f\xd3\x51\xfe\x78\x05\x9f\x3e\x98\x66\x9f\x3d\xfe\xc6\x9f\x3d\xfe\x86\x9f\x3d\x64\x17\x9f\x3d\xfe\xea\x42\x87\x7e\xb1\x44\xf2\x59\xb1\xc4\xee\xb3\x62\x89\xed\x67\x05\x06\xab\xcf\x0a\x1d\xa2\xcf\x8a\x36\x74\xc1\xc5\xe6\xa8\xe0\x42\x1e\xf6\xd9\xd3\x36\xe7\xab\xf8\xde\x33\x56\x61\x61\xd0\x78\x99\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\x1f\xc7\x51\xf6\x31\x95\xa9\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\xb3\xbc\xb4\x67\x83\xea\xff\x64\x66\x9f\x0d\x9c\xc1\x74\x6a\x5f\xbe\x9b\xcc\xdc\xc1\xec\x7c\xba\x1c\xab\x8f\x63\xfc\x08\x0f\xf0\x79\xe0\xbc\x73\x27\xf6\xf9\x60\x72\x7e\x61\x9f\x61\x9e\xfa\xbf\xac\x04\x73\x61\x33\x63\xd5\xcc\xe9\xf8\xd2\x3e\x1d\x4c\xe0\x67\x3a\x98\xce\xec\xa9\x3d\x7b\xe7\x5e\xcc\x06\xd3\xd9\xd4\x9e\xfd\x78\x7a\xb6\x74\xc6\xee\xd4\x9e\x0e\x5c\xc7\x3e\x1f\x4f\xa0\x33\xe3\xc9\x6c\x3d\x9d\x2c\x31\xd5\x19\x4c\x66\xf8\x69\x80\x9f\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\xba\xbc\xb4\xa7\xe3\x4b\xfb\x02\x06\x71\x31\x76\x1d\x6c\x62\x6c\xcf\x1e\x8d\x60\x0f\x9b\xcf\x27\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xbb\x89\x73\x3e\x98\x5e\x2e\xd5\x27\x04\x2a\x3e\x48\xb8\x25\xee\xe5\x0c\x46\x09\x7f\x8f\x02\x7f\xe6\x4e\xb1\xc1\xd9\x12\x81\x06\xc0\x9b\xc0\xcf\x74\xac\x46\xf5\x6e\x72\x36\x1b\xb8\x67\x17\xf6\xd9\x8f\x33\x00\xdd\x00\x80\x34\x56\xf0\x91\xd0\x5b\x8f\xa7\x93\xa5\x04\xa9\x33\x9e\xcc\xc6\x0a\xae\xe3\xc9\xec\x47\x2c\xf8\xee\xec\x12\x70\xe0\xe2\xd2\x76\x97\x38\x27\x97\xf6\x05\x8c\xe3\x62\xe0\x3a\x63\x39\x3f\x08\xbb\xf8\x28\xec\x96\x61\xc2\xd3\x28\xcc\xc7\xc8\x3d\xf7\x42\x70\x72\x3e\x43\xd4\x9b\x9e\x0d\xdc\x33\xe7\x2b\x77\xb2\x1c\x9f\xd9\x67\x93\xf3\x81\x33\x76\x27\xe3\x53\x7b\x7a\x3e\x85\x07\x77\x72\x37\x9e\x02\x06\x4c\xce\xec\x53\x77\x30\x71\xed\xd9\xe5\x78\x76\x31\x98\x5d\x8c\x67\x17\xeb\xd9\xc5\x8f\xee\x64\xe9\xa8\x92\x55\xa1\x01\x96\x5b\xcf\x9c\xa5\xaa\x71\xe0\x4e\xe4\xc7\x01\x7e\xbc\x3b\x9d\xac\xdd\xc9\xef\x2e\x3a\xbb\x58\xca\xce\x38\x83\xd9\x85\xec\xd1\x00\x7b\x74\x07\x1d\x1d\x60\xc1\x71\x55\x46\xd6\xf9\x78\x05\x3f\x97\x93\xf5\x6c\x32\x3b\x56\xf3\xe4\xcc\x59\x3a\x03\xac\x79\x5c\x55\x2a\x47\xfa\xd5\xec\x62\xa9\xc6\xef\x8c\x67\x17\xe3\x0a\x08\xe3\xd9\xc5\x8f\x13\x67\x76\x64\x10\x8f\x9b\xe9\x74\x6a\x4f\x2e\xcf\x06\x97\xa7\xf6\xe5\xec\x3c\x19\x4f\x2e\x6c\xf7\xec\x12\x7e\xa6\x97\x17\xcb\xf1\xcc\x3e\x3b\x3b\x1f\xcf\xec\x73\xe7\x74\xec\x4e\xec\xc9\xd9\x29\xbc\x4c\xcf\xc6\xee\x99\x7d\x79\x3e\xb6\x9d\xb3\x8b\x77\x80\x8c\xee\x64\x30\x3d\x83\xcc\xa7\xc9\x78\x76\x6a\x5f\x5e\x8c\x67\x67\xf6\xf4\x74\xd2\x53\xc3\x99\x5e\x83\x8b\x55\x24\xb2\xbd\xf3\x01\xb4\x7e\xbe\x94\xb9\x07\x75\x49\x98\x7e\xd9\x36\x64\x1e\x60\xc1\xe4\x62\x62\x9f\x39\xee\xe0\x62\x6a\x4f\xce\x2e\x97\x98\x77\x20\xcb\xc9\xbc\x03\x55\x10\x32\x63\x1b\xee\x6c\x62\x5f\x9e\x4e\xc7\xee\xcc\xb5\x2f\x9c\xd3\xa5\xec\x52\x5d\x10\x7a\x84\x05\x21\xb3\xec\x1c\x22\x70\x78\x1c\x81\xd7\x61\x2e\xc6\x61\xce\xc3\x0a\x79\x01\x71\x6b\xe4\x75\x57\x1c\x90\xf7\xd4\x71\x06\xd3\x0b\x9c\xd1\x6a\x3e\x67\x6a\x36\x67\x8e\x44\x85\xb1\x4c\x92\xb3\x52\x61\x79\x85\xe3\x33\x89\xe1\x3f\x9e\x9f\xc9\x39\x1c\xc8\xa4\x16\x12\x76\x2b\x9e\x3a\x17\xeb\xd9\xf4\xec\xf1\x6a\x7a\x0e\x64\xd6\x3d\xbd\xb4\x4f\xdf\x4d\x2e\x00\x11\xcf\x92\xf1\xc5\x29\x2c\x76\x77\x6a\x9f\x2f\xc7\xa7\xb6\x3b\x3e\x03\x8a\x77\x6a\x9f\x8e\xcf\x20\xfd\xd2\xbe\x1c\xb8\xef\x2e\xcf\x06\x93\xd9\xc5\x9d\xeb\xcc\xd6\xd3\x8b\x59\x32\xbe\xb8\xb4\x2f\xc7\xee\xc5\xb9\x7d\xb1\x1c\x4f\xed\xc9\xf8\xcc\x3e\x1d\xbb\xae\x3d\x1b\x5f\xd8\xe7\x63\xf7\xdc\x9e\xc1\x3c\x21\xbc\x8a\xcf\xc0\x2b\x89\x53\xde\x0b\xaf\x89\xe3\xe2\x62\xbf\x3c\x03\x78\x7d\x75\x36\xfb\xf1\xc2\x59\x3a\xe3\x0b\xfb\x62\x36\x3e\xb7\x5d\x40\x18\xf9\xef\x2b\xf7\xec\x35\x24\x0c\xce\x66\x03\x67\x70\xee\xc2\xa3\x33\xb8\x70\xee\xa6\xb8\xb6\xdc\x73\xfb\xec\x7c\xe0\xce\xec\xe9\x74\x30\x9d\xc8\x7f\xeb\xd9\xd9\x6c\x09\x35\x01\xa4\xce\xb0\xba\x01\xd6\x75\x07\x64\xae\xaf\x91\xc7\xab\xd9\xd9\x6c\x70\x79\xf6\xd5\x14\xd0\x79\xb6\x84\x05\x35\xbd\x00\x22\x3d\xb1\x9d\xcb\xc1\xe4\xd4\xbe\x38\x95\x58\x32\x98\x39\x80\x8f\xd3\x09\x10\xe9\x09\x10\x57\x00\xf4\x6c\x62\x9f\x9f\x26\xe3\xf3\xa9\x3d\x3d\x97\x7f\x97\x80\x5f\xa7\xf2\xcf\x74\x62\x9f\x9f\xc9\xc7\xd9\xa9\x3d\x39\x1d\x38\xc9\x18\xa8\xea\xe5\x00\xff\x02\x02\x4c\x4e\x07\xf0\x47\x3e\xb9\x67\xd8\x38\xec\xb9\x67\x53\xd8\x17\xcf\x70\xff\x3d\x9b\x2c\xeb\x8c\x2a\x0f\x3e\x62\x36\xd8\x64\x2f\x27\x83\xc9\xf4\xdc\x9e\x9c\x26\xd8\x85\x81\xec\x08\xb4\x3b\xc0\x3f\xd8\x0f\xf9\x58\xf5\xe3\xf2\x6c\x0c\x33\x50\x8d\x66\xe9\x9e\xc2\xe2\x96\x7f\x71\xa4\x83\x99\x0d\x9b\x3b\x3c\x4a\x00\xfc\xe8\xba\x93\xa5\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x62\xf9\x09\xa4\xe0\x77\x79\x96\x7e\x82\xfd\x38\xbf\x00\xb4\x98\x38\xe7\xb6\x33\xb9\x1c\x4c\x2f\x5c\x7b\x76\x7e\x06\xfc\xc3\xd9\xc5\xd9\x00\x50\xd2\x9d\xe2\x76\x0a\x74\x4d\xff\x3b\x99\xd9\xa7\x67\x97\x6a\x5b\x9d\xb9\x08\xb5\xb3\xf3\xb1\xfc\x81\xfd\xfe\xf4\x7c\x8c\x7f\x61\xef\x3c\x9d\x4c\xb0\xd8\x29\xee\xa0\x0e\x90\xa5\xd9\xbb\x09\xec\x84\x17\x33\xfb\xd4\x39\x4d\xdc\xd3\x99\x7d\x3e\x3b\x1d\xc3\xaf\x33\x71\xa1\xfc\xf9\x25\x14\x99\x9e\x62\xf9\x19\x6c\xd7\x53\xf7\x5c\x95\xb7\x9d\x99\x6a\x70\xd0\x34\x78\x0e\xbb\x64\xf3\xb7\xea\xe0\x40\x76\xf0\xdd\x04\x61\xea\x56\x43\x54\x63\xc2\xcc\x93\x6a\x34\xf2\x05\x0b\x4c\x06\x0e\xc2\x36\xf9\x2c\x6c\xa5\x98\x52\xc2\x76\x3a\x71\x34\xd8\x9e\x4e\x15\x87\x72\x0a\x88\x72\x69\x3b\xd3\x77\x93\xc9\x85\x7d\x71\x3e\x98\xcd\x00\x0f\xa1\x39\xec\x06\x76\x56\x3d\x62\xeb\x03\x07\xc7\x27\x87\x87\xa3\x03\xf6\x4e\xfe\x51\x10\xb5\x1d\xc9\xb5\xbc\x73\xa7\xb8\x55\x4d\x4e\xcf\x12\x09\xbe\x01\x42\x13\x99\x2e\xe0\x5e\xa6\x17\xf0\x67\x22\xe1\x38\xae\x8a\x21\xb7\x54\x37\x20\x9b\xc6\xfe\x60\x57\xe4\xa3\xea\xca\x3b\x35\x82\xf3\x89\x7d\xa9\xb2\x6a\x7f\x64\x7e\x85\x07\x08\xb2\xdd\x67\x41\xa6\xa4\xc3\xbd\x30\x43\x9e\x64\x72\x71\x0a\x93\xa4\xda\x74\xdf\x5d\xba\x80\x87\x83\xd9\xd9\xb9\x3d\x75\x67\xfa\xdc\x4d\xf5\xb9\x9b\x2a\x6c\x84\x05\xdf\x46\xc8\xb1\x86\x91\x12\x15\xc7\x0a\x2f\x6d\x47\x72\xcd\x8e\xfb\xce\xbd\xb8\x00\x6c\x04\x50\x02\x87\x3a\xbb\x00\xae\xd6\xb5\x27\xa7\xa7\x4b\x89\x8b\xe3\x1a\x2f\x5d\x39\xf0\xd9\xac\x29\x7e\xb8\x04\xaa\xc5\xa2\x70\x51\xbd\x54\x5d\x7c\x27\x07\x79\xaa\x50\x43\x43\xe1\x89\x8e\xc2\x17\xb6\xe3\xb8\xaa\x10\x82\x77\x7b\x14\xbc\x9b\x38\xdd\x15\x47\x98\xe5\x0b\x79\xca\x38\x1b\x4c\x9c\x8b\xaf\x90\xf9\x44\x42\x0e\x14\x57\x52\xf3\x31\x92\xf2\x3b\x20\xd8\xfd\x44\x1e\xb6\x59\x55\x68\x30\x9d\x8c\xab\xaf\xe3\xe9\x44\x91\x79\xfc\x38\xae\x2a\x93\xff\xb0\xc7\xab\xa3\x3d\xde\x26\x47\x3b\x7c\xae\x77\x78\x72\x3e\xf9\xf1\x6c\x76\xa4\x0d\xc5\x4c\xf7\x8f\xc7\x9d\xcd\x7e\xdf\x70\xdd\xd9\x0c\x0a\x1f\x85\xc6\xe4\x08\x30\x7e\x9c\x3a\x33\x28\xfc\x3b\x61\x15\x1d\x85\x55\xc1\xc3\x7c\xb9\xee\xdd\xdc\x1d\x67\x22\x99\xa1\xd3\xc1\x0c\xb6\xc6\x77\x33\xe7\x14\x0f\x72\x53\xe0\xf6\x4e\xf1\xbf\xeb\xd8\x67\x63\xe0\x26\xc6\xe7\x5f\x4d\xcf\x27\xcb\xc9\xb9\x7d\x36\x9e\x42\xb6\xd9\x6c\x7c\x7e\x69\x03\x51\x1a\xbb\x93\x8b\xd7\x00\xf3\x4b\x38\x8d\x4e\x27\x13\x38\x14\xc1\x04\x0c\x9c\x1f\x1c\x99\x88\xaf\x05\x3e\x42\xba\xfa\xbf\x9c\x5d\xe0\x39\xf0\x72\x62\xe3\xb6\x05\xac\xd2\xc5\x18\x20\x78\x66\x4f\x91\x0d\x9b\x0d\xea\x6d\xf1\x7c\xe0\x9e\x27\x97\xd0\x22\xfc\x59\xb6\xce\x58\xda\x59\x0c\x98\x56\xe4\x5c\xeb\xd3\x5a\x75\x98\xb3\xdd\xf1\x74\xf6\x78\x05\x6d\x03\x53\x32\x3e\x87\xa3\x15\x30\x74\x17\xe3\xd3\x73\x7b\x82\x0f\xee\x04\xd8\x09\xfc\x52\xa5\x0d\xaa\x74\x99\x1f\x5e\xf1\xdb\x40\x7d\x03\x76\x07\xce\x61\x55\x5a\x55\x06\xe7\x65\x7d\x7c\x5e\xb6\x71\x9a\xf2\xbc\x9f\x4b\x75\x1d\xdc\x02\x9c\xd9\x60\x76\x71\xe4\x6c\x51\x74\x0e\x14\x9d\x13\x56\xe7\x84\xf3\xb8\x81\xb4\xe9\x59\xeb\x3c\xa2\x17\x29\xb4\xcc\xf2\x9f\xde\x9e\xde\xd0\x18\x6a\x9b\x38\x17\x63\x98\xc0\x3f\xa4\xb6\x2b\x60\x6c\x4f\xeb\xb3\x62\xe7\xf3\x0f\xc0\x61\x5d\x42\x61\x07\x72\x7d\xba\xea\xc7\x8d\x3b\xb1\x2f\x27\x13\xc0\x11\xe7\xfc\x77\xf6\x4f\x75\xc4\xb9\x94\x89\xae\x3e\x6e\x38\x56\x9d\x9e\x0d\x9c\x3f\xa4\x66\x0d\x04\xae\x73\x81\xfd\x3e\x73\xe0\xe7\xff\x04\xae\x5a\x77\x01\x03\x6f\x8e\x62\xa0\x88\x37\xbc\x26\xa3\xd3\xd3\x16\x61\x88\x70\x3b\x05\xa2\x30\x91\x2c\x82\xe3\xd8\xce\xf9\x58\xfe\x00\xaf\x8a\x78\x6e\x23\xa6\xc3\xf3\x74\x62\xbb\xc0\xd6\xcd\x60\xff\x93\x22\x95\x99\xfc\xbb\x1c\x6b\xb9\x65\x3e\xf5\x8c\x79\x81\x21\x06\x6e\xf7\xe2\x12\x2a\x3b\x3f\xb5\x2f\xa7\x03\x78\x76\x3f\x5f\x0e\x72\x0d\x5c\x38\xf0\x9c\x2e\x5b\x9d\x91\xcf\xaa\x4b\x03\xcc\xfe\xce\x75\xb0\x01\xd8\xa3\xb1\xdc\xf4\xf4\x0c\x46\xf2\xb9\x72\x28\xee\x9a\x0d\xe4\x48\xb4\xbc\x90\x6b\xa2\x1e\xf5\x71\x00\xf1\x3b\x9f\x28\x70\x0d\x74\x70\x1d\x2d\x97\xe8\xc0\xfa\x0c\x64\xdf\x35\x53\x02\x93\xdb\x96\x6b\xeb\x86\x60\x1d\x4d\xc7\x7f\x9f\x40\xfb\xb7\x74\x49\x8a\xb1\x2b\x75\xec\x20\x4e\x07\x7c\xa1\xd4\x24\x52\x43\x5f\x69\x0c\x31\xeb\x13\xea\x2e\xbc\x94\xf2\x74\xb7\x91\xf2\x7f\x6f\xe8\xd0\x65\x96\xae\xe2\xdb\x5d\xfd\xfe\x31\x8f\x85\x7a\xde\x13\x8f\xfb\x22\x60\x29\xed\xf6\xe7\xb3\x8a\x22\xde\x28\x6a\x2a\xcd\x8d\xd4\xfb\x5b\x9a\x0a\x87\x50\x2d\x9b\xbd\xcc\x52\xa9\xa5\xc8\x72\xc6\x29\xb7\x7f\xfe\x19\xbf\xfd\xfc\x33\x13\x7f\xb0\x1e\xeb\xbf\x0f\x6a\xff\xa7\xfd\xfe\x64\xf9\xab\x46\xfa\x9d\x5a\xd3\x33\x82\x06\x6f\x6e\xc7\xde\xcd\x39\x62\xef\x56\x6b\xdc\x97\xcc\xa8\xd2\x35\x33\x05\xa9\x1c\x33\x4d\x43\x9a\xef\x1c\x7c\xa9\xd5\x66\x8b\x3e\xa3\x37\x65\xea\xb0\xf7\x7a\x3e\x72\xd3\xfc\x54\x83\x6d\x3c\x60\xac\x4e\x1f\x56\xcf\x0d\xca\x2c\xaa\xde\x79\x75\x8b\xc4\xe2\xa4\x63\x5d\xf7\xdf\x37\xdb\xba\xb5\xdd\xbf\x63\xad\x20\xad\x5d\x74\xcd\xfc\x42\x7f\xf1\x9e\xf6\x34\x6f\x69\x87\x53\x32\xef\x83\xa1\xca\x72\xcb\x85\x66\x2d\x20\x81\x56\x98\xa6\x95\xb3\x1c\x80\xbb\x0c\x85\xf5\xa9\x9c\x56\x4a\xec\x55\x9c\x08\x9e\xf7\x5a\x34\xf6\x16\x7d\xc3\x8b\x65\x1e\x6f\x45\x96\x5b\x29\xe5\xc4\x6e\xc0\xb7\x27\x84\x10\x9a\xf7\x98\x30\x0a\xf2\xa4\xe6\xc7\x17\x68\xaf\xd8\x98\x58\xd4\x80\xdc\xfe\x16\xe5\xf9\x81\x7e\xf9\x7f\x40\xd1\x8e\x6d\xcf\xe3\xd5\x27\x21\x5b\x99\x5a\x7c\x12\xfa\xff\x7e\x87\x0e\x34\xe3\x5b\x55\xe5\xd7\xc5\xdb\x7a\x1e\x94\x96\x9c\xa6\xc4\x34\xb5\x11\xec\xeb\x11\xb4\xcd\x37\x7f\xa3\xa2\x5f\x43\x72\x87\xa6\x0c\x76\x43\xf5\xad\x32\x01\x99\x8b\x17\x5c\x47\x79\x98\x6c\x06\x2b\x66\xae\x2b\xb6\x49\xdb\xd0\xe7\xff\x9e\x8d\x80\x6a\x54\x0e\x64\x95\x67\x1b\xa0\x17\xed\xf6\x7f\xbb\x5a\xbd\xd8\xe6\x3c\x8c\x3e\xa5\x51\xaf\x81\x1a\xe9\xe4\x91\x71\x6a\x89\x31\x73\x08\x2c\xdd\x05\xf7\x2c\xce\xb8\x9d\xf3\x6d\x12\x2e\xb9\x75\xe2\x5f\x8f\x7f\xbe\x2e\x82\x91\x65\x93\xc5\xc9\xad\x46\xf8\x75\x0b\x0c\xb1\x10\xb6\xc8\xfe\xb6\xdd\xf2\xfc\x75\x58\x70\x8b\x78\x86\x01\x4b\xcd\x2e\x76\x37\x85\xc8\x2d\x87\xba\xc4\x16\xd9\xbb\xec\x63\x95\x61\xc4\xab\x6f\xae\xdc\x35\x04\x5a\xa0\xae\xd9\xd0\x45\xe3\x88\x35\x1b\x3a\xca\x7c\xe1\x8e\x3c\x35\x3d\xbf\xe9\x98\xe5\x01\xf3\xb3\x80\x07\x4f\xb3\xd8\x81\x0d\x05\x6d\x72\x90\x43\x86\xa7\x8a\x3d\x5e\x70\xaf\x8b\x35\xa6\x39\x81\x4a\x14\x56\x2c\x2a\xb6\x9a\xfb\x4e\xd0\x70\xd5\xdc\x77\x83\xbd\xd7\x63\x3f\xb7\x38\xc2\x86\xf3\xbd\xb2\xe8\x69\xba\xbe\x69\x81\xac\x6b\xef\x6c\x9a\x95\xbd\xdc\x4b\xa7\x2c\x87\x3d\x9f\x17\x89\xf5\xb4\xa7\x50\x87\xf7\xb4\x6f\xaa\xbd\x6a\xec\x0a\xe5\x38\x69\xca\xb8\xbd\x09\x8b\x5f\x68\xc6\x78\x65\xf0\x1a\x33\x6e\x2f\x93\xb0\x28\xa0\x77\x34\x64\xdc\x16\xb1\x48\x38\x2d\xd8\x8d\x25\x08\x5d\xb2\x8d\x65\xe0\x77\x38\x3b\xf8\x41\x45\x99\xdb\xc6\x89\xd8\x0a\x56\x0f\xc7\x5c\x9a\x33\x6e\x6f\x77\x49\xc1\xb1\xa1\x55\x7c\xcf\xa3\x9f\xe2\x08\x2d\xb5\xb9\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x59\x1e\xf1\x9c\x16\x00\xe5\xb8\x10\x5f\x0b\xbe\xa1\x4b\x28\x92\xc4\x5b\xba\x83\xea\xe2\x47\x4e\xb7\x80\x76\x99\x40\xc3\x64\xba\x92\x75\x27\x34\x62\x56\x62\x09\xf6\x64\xac\xc2\x31\xb4\x6a\x78\x29\x85\x67\x6c\xd8\xf0\x72\x7c\x59\x7d\x34\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x3f\x66\xa9\x08\x13\xc3\x33\xb4\x17\xc0\xa0\xb2\x34\x6e\x32\xb1\xc6\xe7\xa6\xc4\x1d\xcf\x45\xbc\xc4\xfc\xf5\x63\x37\xf7\x1e\xb3\x1b\x15\x04\x77\x84\xf6\x5a\x9d\xef\x4c\x53\x99\x95\xee\x08\x4d\xd0\x84\x22\x1c\xe3\xf0\x79\x53\x78\x7b\xa4\xf0\xb6\x2e\xbc\x6d\x0a\x03\xb8\x9a\xa2\xab\x23\x45\x57\x75\xd1\x55\x53\xb4\xf8\x18\x6e\xc7\xd9\x36\x5c\xc6\xe2\xc1\xa0\xdc\x86\xf7\xef\xe4\x2b\x81\x9d\xa4\xc7\x0f\x20\x3a\xee\x65\x10\xf9\x3c\x58\x70\x0f\x9a\xd9\x93\x4f\xee\xde\xb0\x1f\xa3\x09\x2b\x5d\x59\xb1\xe6\xc0\x00\x9b\xf4\x16\x50\x52\xe4\x61\x5a\xac\xb2\x7c\x63\xd0\x9e\xc5\x67\xd7\x9f\x17\xb9\x1d\x35\x6f\x96\xf6\x85\x78\xfa\x0b\x8d\xa0\x56\x58\x1c\x06\xbd\xb1\x52\x42\xe8\x9d\x22\xd3\x56\x6e\xdf\x10\xab\xa0\x3b\x58\x64\x4b\xba\xa5\x11\x7d\x92\x6b\xc7\xcb\x28\xae\x15\x2f\x04\x0e\x37\x5e\x59\xc3\x3b\xd2\xdd\x90\xe4\xda\xe0\xf3\xe1\xba\x76\x23\xe8\x67\x2c\x5b\x3e\x06\xe8\xd0\xa1\x52\x88\x4c\x52\x66\x7e\x5c\x37\xe5\xb4\x8c\xd7\xb5\x75\xec\x2a\x4e\xa3\x01\xac\x72\x83\x16\x84\x02\x88\x91\x7a\x3e\xb0\x3b\x3b\x04\x72\x1a\x2e\x05\x7d\xf5\xef\xb8\x6e\x08\xf2\x74\x55\xd9\x24\xc2\xe6\x5f\x74\xcc\x3b\x2d\x41\xca\xd2\x7a\x55\xed\x93\xe8\xc9\x71\x6b\x3d\x00\x75\x7c\x45\xf6\x57\x76\x14\x17\xdb\x24\x7c\x00\xb2\xc2\x8c\x2f\xb3\x54\xbc\xfa\xc8\x8b\x6c\xc3\xbf\xc6\x3e\x5e\xe1\xee\x0f\xfb\x56\xc1\x9e\xe4\x62\xf4\x62\x3b\xb4\x6f\xb2\x2c\xa1\x35\x3d\xc2\x24\x65\xb8\x0f\x73\x83\xef\x9a\x81\x3f\xbe\xe2\x40\x68\x5c\xb9\x01\xd0\xa6\x4c\x40\x68\x43\x7c\x9a\xea\x15\x29\x68\x12\x60\x09\x37\x55\x5b\xbe\xbe\xe6\x69\xb3\xa0\xa9\x5c\xcb\x01\x91\x32\x94\x7f\xbb\x2f\x15\x89\x6b\x1a\x86\x95\xd9\x6a\xb8\x32\x88\x47\x6d\x51\x40\x28\x12\xb3\x26\x7f\x45\x05\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x5e\xb6\x2a\x4c\x6e\x0d\x6a\xdc\x17\xb0\x4a\x60\xa9\xb8\xf7\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\xdc\x43\x1f\x80\xb8\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xb7\xbe\xf2\x2a\x4f\x03\x47\x68\xbb\xa1\x37\x75\x17\xf6\xb4\x8d\x97\x35\xfe\x0c\x5d\x0d\x73\x0c\x43\x62\x0c\x1a\xf3\x6a\x58\x30\x74\xeb\xf9\x1f\xba\x72\xe6\x31\x0b\x4e\x29\x3e\xd5\xd3\x34\x74\xe5\x04\x61\xaa\x9c\x89\xa1\xdb\xcc\x01\x26\x23\xc0\xe5\x13\x80\x69\xe8\x56\x00\x1a\xba\x6a\xf8\x86\xa1\x0d\x5b\xe6\xd4\x06\x35\x74\x25\xdb\x7f\x5b\x1f\x0f\x06\xdc\x6a\x8c\xae\x59\xf7\x3c\xf6\x72\x62\x9a\x92\x7f\x18\x32\xed\x28\x36\xd1\x8f\x62\x13\x38\x8a\xf5\x9b\xf5\xa7\xb5\x2f\x11\xb6\x9a\x31\x2b\xb5\x97\xeb\x38\x89\x72\x9e\x4a\x37\xc5\x36\xed\x6e\xce\xa4\xb2\x57\xb0\xc8\xdb\x07\x93\xd4\x0e\x85\xc8\xe3\x9b\x9d\xe0\x45\x59\x3e\xed\x89\x9d\xf3\x68\xb7\xe4\x56\x87\x21\x54\x02\x00\x2d\x37\x30\xd7\xc5\xc7\x18\x38\x39\x41\x9e\x96\x61\xc1\x25\xa3\x61\x78\x1c\x73\x15\x0d\x5f\xc2\x72\x1a\xf1\x84\x0b\x3e\xd0\x2b\x90\xdf\xe7\x37\x39\x0f\x7f\x99\x63\xf9\x42\x3c\x24\xbc\x29\x8f\xaf\x2c\xaf\xf6\x8f\xf9\x27\x1c\xe0\x60\x2f\x88\x37\x16\xf9\x0d\xfb\xd2\x27\x06\x08\xac\x4f\x73\xee\x31\x3c\x83\xd0\x8c\x45\x96\xb0\x8b\x24\x5e\x72\xcb\xa1\x39\xc2\xaf\x7a\xcf\x47\xc0\xfd\x62\xbb\xf5\x11\xcd\x46\x1f\x96\xe2\xa7\x58\xac\x2d\xe3\x23\xbf\xf9\x25\x16\x06\x59\x70\xdf\x4a\x59\x46\x61\xb2\xc2\xfc\x95\xb0\x1c\xd2\x66\xab\x47\xa9\xaa\xd2\x25\x24\x60\xb1\xc7\xfd\x2c\x60\x31\xe5\x7b\x42\x9f\xf6\x44\x81\x48\x2d\x1a\xcf\x69\x39\xe4\x19\x61\x1e\x87\x63\x83\x94\x65\x27\x3d\x0a\x05\xa4\x2f\x14\x34\x7d\xd1\x66\xd4\x03\x96\x57\x80\xf6\x23\x4b\xc0\xbb\xe6\x7c\x40\x9f\xf0\x0b\x30\xa4\x84\x86\x30\x07\x30\x17\xb4\x60\xb5\x68\x32\x5c\x3c\xed\xbd\x90\x2e\xd9\xd6\xca\xa9\xaf\xa6\xae\x39\xab\xc6\xad\x39\xc4\xcd\xb7\x95\x04\xbb\x9c\x50\x9b\xa2\xac\x93\xfa\xa9\x2d\xc2\x5b\xaa\xe7\xa5\x4b\xa2\xb1\xac\x19\x21\x64\x6f\xdf\xc4\x69\x24\x6d\xfc\x0b\x3b\xec\xb8\xf9\x74\xc5\x99\x38\xa9\xf3\xb4\xc7\xf0\x5e\xac\xe3\x62\x6f\x11\x3c\x93\xa4\x2c\x2d\x4b\x38\x87\x7d\x59\x65\x33\xb4\x5c\x06\xb1\x88\x3a\xb1\xe4\xe4\xe9\xb8\xaf\xa0\x95\x32\xf9\xa8\xf9\x05\xb0\xf4\xdf\xb7\xdf\x1f\x5a\xcd\xf1\x2e\x5b\x0d\x04\x21\xbd\x07\xc5\xd7\x61\x0a\x7c\x03\x9c\x38\x07\xe1\x00\x97\xd2\x20\x2c\x06\x61\xcd\xbb\x18\x7f\xac\xa5\x75\xcb\xaf\x93\x39\xf3\xf4\x45\x75\xae\x99\xa7\x8d\xdf\x87\x40\xa7\x4d\x4d\x30\xc3\xf4\x97\xb2\x04\x02\x6c\xeb\x72\x2e\x36\x74\xa8\x81\xe2\x30\x23\x4e\x07\xc0\x39\xe5\x76\x25\xf7\x62\x43\x87\xd0\x63\x52\xb4\x1c\xe8\x17\xcd\x89\x76\x62\xca\xba\x72\x38\xd3\xcc\x2d\x4d\xf6\x4b\x05\xa1\x29\xa6\xd1\x94\x7c\x4e\x6c\x9a\xfd\xbf\x57\xdc\xab\x0f\xf8\x0f\x16\x00\x66\x7f\x80\x00\x30\x63\xd9\xff\x94\x00\x30\xeb\x67\x84\xf3\x23\x02\xc0\x3f\x12\x01\xfe\x7f\x61\xd6\x1f\x24\xcc\xfa\x1d\x44\xcb\x6a\x85\x54\x98\xb8\x84\xd8\xe2\xd1\x4e\xb2\x30\xb2\xe0\x7d\xf2\xbb\x26\xb2\x71\x12\x2c\x38\x70\xaa\x12\x3c\xdf\xad\x16\x0d\x66\x6a\xa9\xbd\x3a\x88\x46\xb9\x54\x8b\x4f\xdb\xa5\x00\x92\xa8\x4b\xf8\x63\x7d\x62\xea\x01\xfc\x7f\x57\xe7\x92\x69\xe3\xcc\x7e\xeb\x38\xf3\xee\x12\x21\x7d\x63\x04\x10\xfe\xf7\x8d\x2f\xaf\x71\xa0\x1e\x5b\xac\x0b\x14\x87\xa2\xe5\x30\x9c\xa1\xcc\xb0\xe9\x46\x23\x00\x12\x8b\xff\x31\x2d\xb2\xc5\x89\xf7\x19\xed\x69\xfc\x7b\xbd\x00\x8f\x2d\xc3\xae\xc3\xdf\xe1\x9a\x63\x82\x22\xd6\x50\x41\x3a\x3c\x02\x82\xa7\x17\x86\xb5\x10\x4d\xf4\x73\x5d\x3f\x00\x3c\x06\xfc\x7e\x9b\xf3\xa2\x40\xe1\xef\xae\x10\x03\x1e\x8b\x35\xcf\x07\x37\x1c\x45\xd7\x83\x2c\x6f\xb1\x61\xf3\x4f\x68\xa9\x4d\x53\x23\xbd\xf4\x49\x43\x20\x4f\xf1\x08\x5c\xe7\x02\xba\x1c\x02\x70\xe7\x92\xcb\x81\x41\xfe\x8e\xed\xac\xeb\x1a\x7c\x38\x2b\x87\x0c\x6f\xe3\xf5\xda\x90\x5d\x51\x3b\xde\x2f\xa0\x92\xa1\x43\xbc\x0e\x36\x0e\x79\x9d\xe5\xd0\x71\xfc\x9f\xff\xb9\xe3\xf9\xc3\x20\xe7\xbf\xee\xe2\x9c\x03\x17\x2b\x59\xe9\xc1\xc7\x58\xac\x07\xe1\xa0\x2a\xd9\x20\x5d\x8a\x8b\x14\x76\xf7\x7d\x7f\xf4\x0f\x59\xc1\x42\xfe\x78\xe8\x45\xad\x9d\x8b\x69\xd6\xe3\x04\x1d\x33\x3f\xa0\x21\x4b\xeb\x8e\xd2\x82\xf5\x92\x6d\xba\x64\xb1\x3c\xb0\xd1\x84\xc5\x8a\xd9\xa1\x3b\x16\xa3\xff\x26\xdd\xb2\xb8\x3a\x86\xd1\x15\x7b\xda\xd3\x88\xad\xea\x6d\x95\xae\xd9\xaa\x23\x8a\xa3\x37\x6c\xdd\x7c\xdf\xb0\x1b\xb9\xf5\xca\xa6\x31\x78\xc5\x9e\xde\xb2\x43\x82\xd4\x47\x8c\x78\x13\xb5\x40\x0b\x2f\x60\xa7\x59\xc4\x01\x8d\xf7\xf4\xae\xa7\x22\x15\x08\x81\x9b\x26\x47\x95\x89\x04\xda\x9e\x3e\xb0\x27\xa8\x01\x10\xaf\xc8\x97\xf0\x93\x66\xe9\x92\xcb\x87\xab\x2c\xda\x49\x24\x6c\x56\xee\xab\x16\x5e\xd1\x8c\xc6\xcc\xc2\xd3\x55\x48\xda\x27\x35\xcb\x90\x8c\x9c\x81\x82\xd7\xd8\x16\xfc\x5e\x30\x40\x62\x54\x4a\x02\xe7\xf2\x40\xac\x8c\x09\x3f\x0f\xca\x12\xc1\xff\xaa\x92\x1b\xc0\x92\xd1\xdf\xad\x9c\x10\xd3\x8c\x81\x3c\x68\x69\x34\x23\xf3\xd4\x5e\xf3\x30\x82\x43\x26\x4f\xa3\xd7\xeb\x38\x89\xac\x98\xd8\xdb\x30\xe7\xa9\xf8\x36\x8b\xb8\x9d\xf3\x4d\x76\xc7\xab\x2f\x0d\x91\xe8\xc6\x88\x60\x8c\x2f\xf8\xc8\x30\xbc\x9e\xc5\x50\x96\xbd\xd3\xb0\x58\xf9\x51\xc5\x41\x05\x0d\x05\x6f\xb6\x33\x80\xd0\xe3\x81\xd4\x48\x0b\x15\xc3\xed\x55\x6a\x03\x35\x96\x92\x1b\xfa\x33\x3b\xf9\xe0\x5f\x17\xd7\xbb\x2f\xdf\x7e\xf9\xe5\xf5\xfd\x2b\x27\x18\x95\x9d\xf7\x67\x27\xb7\xcd\x5c\x7c\xd7\xe8\x8f\x86\x43\x40\x0b\xc9\x51\x62\x78\x09\xd8\xac\x54\xf4\x9d\x94\x7d\x6c\xe2\x2a\x0c\x6f\x51\x71\x36\xbc\xc3\x1f\xcb\x40\x29\x28\x0c\x2b\x55\xe2\x85\x96\x9b\x7e\x43\x34\xc5\x4b\xc7\x34\xc5\xd8\xc5\x73\x0f\xd9\x3f\xda\xab\x94\x3d\x6a\x54\xef\xe9\x9f\x18\x4e\xc2\x33\xa6\xf6\xcc\x76\x0d\xaa\xd3\xb9\x47\x2a\x7b\xe2\x39\x54\x64\xc8\x64\x7a\x3d\x0e\xa7\x12\x96\xb0\x8c\xc9\x9e\xde\x72\xd1\xb7\x3f\x57\x53\xa5\x67\xf6\xf8\x0b\x67\x01\x4f\x3e\x1f\x61\x78\x2f\xd9\x58\xe0\xc9\xb4\x60\x4f\x61\xc9\xfe\x20\xc2\xe5\x2f\xde\x81\x4a\x8c\x3d\xda\x1b\x9e\xdf\x72\x19\x2f\x4c\xeb\xb4\x45\x68\x13\x8b\x02\x28\x38\xbf\x93\xab\x15\x43\x88\x51\xb1\xa7\x3c\x5c\xae\xfb\xfa\xf8\x68\xc3\x17\x19\xd5\x81\x93\x3d\xdd\x84\xdb\xbe\x6c\xd8\x60\xdd\x33\xeb\x11\x05\x5f\x1d\x22\xa6\x23\x8c\x52\xbc\x0b\x9a\xc2\x46\x40\x80\xd4\x23\x7d\xea\x01\x65\xa7\xea\x65\x7f\x9c\x09\xd8\x2b\xe2\xbc\x10\xc7\x2a\xe0\xbf\x5a\x0e\xd9\xd3\x24\xfc\x64\x96\xb1\x4b\xf6\x94\xff\xda\x03\x59\x6d\x2e\x68\xca\x46\x7c\x64\xe1\x44\x79\x4e\x03\xd6\x76\x3f\xd3\x97\xcc\x31\xcd\xf4\x85\x58\xf8\x38\x75\x69\x10\x78\x7e\x00\xd5\xa7\xd1\xd1\x51\xd6\xf3\x52\x96\x87\x53\x28\xa7\xde\xdb\xd1\x22\xcb\x85\x17\xdb\xf0\x43\x8b\x2d\x82\x4d\x2a\xad\x96\x7c\x4f\x1f\x6d\x7e\x2f\x78\x1a\x31\x40\xea\xea\xb9\xab\x1f\x02\xa2\x47\x91\xde\xd1\x50\x3b\x60\x3b\x41\x59\x3e\xed\x69\xc1\x5c\xba\x3c\x10\x05\xd3\x84\x0d\x5d\x34\xc2\x30\x6e\xb2\x2c\xe1\xa1\x4e\x3f\x42\xd3\xb4\x12\x16\xb6\x6a\x2b\x54\x6d\xa3\x11\xa1\x87\x84\x28\x2c\xcb\x5b\x2b\x24\x65\x69\x85\xec\x69\x4f\x68\xc1\x18\x5b\x9a\xa6\x15\x4a\x94\x2c\xc6\x63\x32\x2f\x5e\x2c\xe7\x50\x5c\x19\xaf\x0c\x99\xc5\x5b\xf5\x13\x24\xbf\x52\x7a\x41\x72\x3c\x72\x52\xa3\xe6\xa7\x70\x43\x31\xcd\x70\xc8\x58\x0e\xdd\x33\x4d\xf8\x79\xb4\xe3\xe2\xaf\x49\x18\xa7\x95\xba\x0d\xba\x90\xb1\x6e\xb8\x0e\x42\x16\x56\xca\x42\xa8\x31\x66\x99\x69\x76\x14\xe1\x29\x59\xf8\x81\x97\x95\x65\xb7\xba\x94\x2c\x52\x29\x98\x18\xba\x14\x8a\xb3\x6a\x42\xac\x84\xc6\x34\x27\x55\x84\x0d\xd5\x2b\xcc\x92\x93\x1a\x8b\xc2\x66\x06\xad\x27\x7e\xbf\x0d\xd3\x28\xf3\x14\xbf\x61\x8c\x2c\x45\x90\x46\x57\xa1\x58\xdb\x39\x7c\xdc\x58\x28\x22\x56\x56\x12\xd7\x6f\x4e\x6e\xa9\x61\x10\x1a\x17\xdf\xf3\x30\x7a\x80\xad\x0f\xf5\x79\x2d\x94\xee\xf2\x33\xb0\xb0\xd3\x2c\xdb\xea\x78\xb9\xa7\xad\x81\x1d\x2e\x09\x9a\xce\x5b\x41\x82\xaa\xe3\xba\xcc\x1f\x00\xf4\xeb\x1d\x05\x88\xf3\xd0\x12\xac\x80\xe7\xde\x1d\xc8\x4a\xd9\xba\xa2\x09\x86\x86\xf6\x06\x1a\x24\x68\x09\xc4\x34\x15\xbf\x91\x12\xc6\xd8\x86\x40\x47\xdf\x6e\xb6\xe2\xe1\x58\x47\xe7\x3a\x92\xc8\x1e\xbb\x55\xd7\x9d\x3d\xbd\x4d\xb2\x9b\x30\x79\x7b\x17\x26\x5e\x9b\x43\x07\xe6\xe0\x49\x32\x10\xc8\xf7\xe2\xe3\x9e\x1c\xd0\x4a\x5d\x1a\xef\xa0\xb1\x13\x8c\x12\x1a\x4d\x6b\x73\x8e\x79\xfe\x22\x35\xcd\xa1\x0b\x28\xa9\x80\xe2\xe7\x01\xcd\x29\x46\xa5\x43\x3b\x26\x19\x39\xa6\xe6\x27\x38\x60\xfd\x50\x06\xb3\x3b\x28\x40\xa4\x84\xbd\x3e\xd0\x50\x91\xc7\x9b\x4f\x6d\x31\x86\xe1\x59\xc0\x11\x34\xa8\xf2\x33\xa0\x09\xd0\xf3\x5f\x78\x67\x13\xd3\x42\xef\x89\xb2\xf4\x1b\x29\x4e\xc5\x74\x59\xdf\x59\xb5\x9c\x86\x2c\xaa\x3d\x27\xed\xd3\x8c\x2f\x7c\x1e\x78\x9c\x78\xbb\x2a\x7e\x10\xc7\x00\x7c\x34\x4e\x0f\x1b\xd5\xf9\x09\xec\xb6\x58\x8c\x5d\x6f\x5b\x61\x05\x47\xae\x02\xdb\xea\xf4\xb5\x11\xf3\x8e\x2a\x19\x2f\x4c\x05\x5a\x83\x34\xe0\x47\x20\x73\x3f\x1b\x8d\x02\xe4\xd3\x6a\xe8\xa9\x3c\x2c\xa3\x7c\x4f\x6f\x73\xbe\x3d\xe8\x55\x1d\x2a\x09\x18\xee\x8c\x39\x68\x58\xa2\x1a\x0a\xd9\x30\x9d\x67\x2f\xe2\x79\x36\x1a\x91\xa1\xb0\xb8\x9f\x05\x34\x23\x43\xc6\x42\xd3\xcc\x65\x80\x14\x48\xab\x57\x78\xde\xdd\x44\xbb\x1c\xa8\x43\x43\xe6\x07\x2d\x44\xca\x9b\x91\xc4\x2f\xf2\x79\x3c\x1a\x11\x45\x10\x33\x06\x4d\xc6\x01\x8d\x69\x0a\xcb\x2c\x94\x2d\x66\x1a\x3a\xc5\x12\x9d\x3e\x5b\xa0\x8a\x84\xa1\x36\x58\x38\x5b\x00\xef\xb2\x8b\x23\xcf\xa5\xc5\x6e\x0b\x27\x27\xef\x6a\x4f\xe8\xa7\x84\x0a\x16\x6c\x3b\x07\x41\x64\x58\x7c\x90\x44\xa8\x62\x2d\x8c\x3f\xcb\xdd\x64\xf0\x2d\x32\x6a\x03\x79\xac\xa8\x75\x1b\x52\x8e\x37\x78\x13\x0a\x3e\xf8\x9e\xdf\xbe\xbd\xdf\x2a\x0a\x23\x69\x97\x6a\xd8\xd0\x8c\x36\xba\xb6\x61\x2b\xbf\xa6\x4d\x18\xb9\x30\x30\x02\xd6\x51\x2e\x55\x26\xc3\xef\x59\x0f\x99\xab\x36\x4a\x5a\xd0\x25\x4d\xe8\x8e\x6e\xe9\x8a\x46\x74\x4d\x6f\xe8\x86\x5e\xd1\x5b\x7a\x47\x1f\x98\x51\xc4\x8f\x8f\x09\x37\x46\xee\x73\xa0\xab\xd0\x5d\xfa\x8a\x35\x67\x48\xfa\x91\x39\xf4\x91\x39\xf4\x67\xb6\xe4\x16\xa1\xdf\xc9\x9f\xf7\xf2\xe7\x5e\xfe\x7c\xcb\xfa\x65\x04\x2a\xc2\xe6\x16\x15\x0c\xce\x9e\xbe\x3b\x8c\x7e\x45\xdf\x02\x6e\xfe\xc0\xde\xda\xdb\x6c\x4b\x7f\x85\x5f\x38\xda\xbd\xae\x1e\x7e\x61\x6f\xd5\x09\xf0\x27\x76\x6c\xf5\x38\x54\xc3\xb3\xf4\x45\x8e\x8a\x92\x78\x65\x71\x3f\x0d\xa0\x0b\x8d\x32\x57\x3e\x8c\xdd\x3d\x7d\xc3\x0c\x8c\xe5\xc0\xa3\xb2\xc0\xe0\x6b\x3c\x2a\xc3\xe2\x21\x5d\x96\xe1\x4e\x64\xab\x6c\xb9\x2b\xf0\x69\x9b\x84\x0f\xe5\x32\x4b\x45\x9e\x25\x45\x19\xf1\x15\xcf\xcb\x28\x2e\xc2\x9b\x84\x47\xe5\x3a\x8e\x22\x9e\x96\x71\xb1\x09\xb7\x65\x92\x65\xdb\x72\xb3\x4b\x44\xbc\x4d\x78\x99\x6d\x79\x5a\xe6\x3c\x8c\xb2\x34\x79\x28\xd5\x81\x3b\x2a\x8b\x65\xb6\xe5\x91\x41\xff\xcc\x0c\xff\xfa\xfa\x7e\xe2\x5c\x5f\x8b\xeb\xeb\xfc\xfa\x3a\xbd\xbe\x5e\x05\x06\xfd\x2b\x33\xac\x85\x77\x7d\x7d\x7d\x6d\x97\xfe\xf5\xf5\xc7\x71\x50\xfa\x1f\xae\x9d\xf1\xf5\xf5\x7d\xe8\x04\x64\x64\xd0\xef\x99\x71\x7d\xed\x1b\xa3\x3f\x8f\x8c\xe7\x96\x31\xfa\xeb\xc8\x20\xd6\xc2\x53\xef\xfe\xf3\x0f\xcf\xca\xe1\xbf\x82\x05\x23\x2a\x65\xe1\x7d\x61\x35\x35\x7e\x80\xdf\x2f\x02\xf2\x9c\x7c\x51\x5e\x1b\xdd\x0f\xd7\x06\x7c\xb9\x36\x4a\x55\x2f\x29\x55\x2d\xd7\xd7\x81\x41\xff\xce\x0c\xaf\x69\xf0\xfa\xda\xb2\xac\x7f\xbf\x6a\x52\x76\xbf\x58\xc4\xbf\xbe\x0e\x82\xd2\x18\x7d\x3f\x32\xc8\x73\x52\xda\xcf\xc9\xf5\x35\x34\x4d\xff\xc9\xa4\x24\x0d\x16\x8f\xf5\xe7\x91\x31\x32\xa8\x71\x6b\x10\xfa\xb5\x9e\x6e\x7c\xc0\x3e\x8e\xb0\xe2\x0f\xaa\xd2\x80\x54\xad\x90\xe7\x72\x0c\xa3\x67\xaa\xf0\xdf\x7a\x0a\x3f\xa7\xf2\xc7\x20\xf4\xab\xbe\xcf\x96\xff\x72\xf4\x2f\xe8\xe2\x9f\x47\x06\xa9\xb3\x7e\xd9\xe9\x5e\xf9\xd2\x20\xf4\x47\x3d\xf1\xef\x84\xfe\x57\xb7\xbe\xbf\x8e\x8c\x67\x06\xa1\x7f\x61\x4f\x5f\xbf\xf1\x5a\xdf\xfe\xa4\xa0\x6b\x10\xfa\xfa\xdd\xab\x1f\x7e\x68\x7f\xbd\xbe\xb6\x9b\xef\xef\x5f\xfd\xa5\xfd\x55\x7e\x2a\xfd\xe7\x01\x7c\x7e\xf5\xfe\xfd\xf7\x5e\xa7\xdd\xef\x09\xfd\xeb\x0f\x6f\xff\xf6\xe6\xbb\xee\x87\xbf\x13\xfa\xfa\xab\xaf\xdf\x75\x3a\xe3\x59\x88\xb8\x78\x36\x29\xe1\xf4\x51\xa6\x62\x0d\xff\xc7\xf0\x42\xc6\x16\x9a\x43\x94\xd9\x6a\x8c\xae\x1f\x12\x23\x14\xb4\xf8\x1d\x4f\xcb\x2c\x8a\x4a\xcb\xf2\x47\xe3\xa0\x24\xd6\xf5\x75\xf4\x9c\xa4\x65\x83\x94\xea\x83\x7a\xbf\xbe\x8e\x46\xa4\x24\x35\xb6\xe1\xec\x1b\xb1\x41\x28\x70\xec\x9d\x91\x02\xb2\xbf\x19\x19\xe4\x99\xca\x92\x72\x1e\x15\xaf\xb3\x54\xf0\x7b\xd1\x1d\x1b\x54\x27\xe7\xce\x6b\x7a\xc5\x7f\x2d\x6f\x45\x99\xc8\x11\x35\x03\x6c\x8f\xc1\x5a\x78\xe3\xeb\xeb\x88\x2c\xb0\xeb\x5a\xc7\xac\x05\xf3\x3f\x8c\x83\xf2\x99\xea\xe2\x9e\xfe\x07\x3b\xf9\xea\xfd\xd5\xbb\x67\x27\x31\xfd\x4f\x76\x02\x1d\x8c\xd3\xed\x4e\x28\xba\x52\x42\xbf\xc2\x9c\x87\xe5\xcd\x4e\x88\x2c\x25\x90\xef\x19\x3b\xf9\xb0\xbe\x8e\xe0\xf1\x1b\x76\xf2\xc1\xff\xf0\x14\x8c\xae\x9f\xae\x8b\xe7\xd7\x7e\x1a\x8a\xf8\x8e\x0f\xae\x3f\x9e\xd0\x7f\xc8\xda\xfe\x64\xf9\x40\x08\x46\xa4\xb4\xae\x3f\x8e\x48\x79\x6d\x57\x09\xe4\xd9\x09\xe5\x9c\x9d\xf8\xa3\x7f\x05\x27\x54\xf0\x16\xae\xe1\xe2\xf2\xaf\xaf\xa3\x70\xbc\x0a\x9e\x5c\x7a\xb6\xc7\x51\x2c\x4a\x39\x44\x52\xda\x38\x82\x5b\x04\xe1\x81\x1b\x92\x64\x1b\x0c\xe7\xde\x18\x89\xf1\xd9\xe9\xe9\xf4\xac\xe6\x03\xe0\x04\x50\x96\xe9\x42\x78\xf9\x0b\x67\xa1\x94\x58\xab\x3c\xdb\xbc\x5e\x87\xf9\xeb\x2c\xe2\x56\x3e\xc2\x12\xc4\xeb\xfd\xf8\xf2\xa5\xeb\x94\xa7\xa7\x93\xcb\x33\xea\x3a\x93\xa9\x99\x97\xa7\x67\xd3\x09\x9c\x72\x73\xce\x4e\x2c\x1f\xc8\xdd\xbd\xbb\xba\xbe\x3f\x5f\x05\xe5\x87\xf1\xe2\x3a\x22\xe5\x87\xf1\x33\x45\x08\xd5\x97\xf1\xf5\xee\xcb\x2f\xbf\xfc\x12\xe0\x70\x72\x4b\x33\xde\xbf\x03\x89\x85\x71\xed\x18\x68\xe3\x6c\x5c\xef\x56\xab\x55\x64\x78\xbc\xb6\x32\x19\xbb\x64\x64\x5c\x5f\x1b\x23\x8e\xf6\x22\xd0\xbb\x57\xa2\x56\x0f\x8e\xd1\xe4\x5a\x8e\xc0\x72\xcf\xc8\xc8\x18\x18\x9e\xcc\xbe\xa7\x31\xd7\xcf\xa6\x2b\x38\xe4\x86\x9c\x3d\xf0\x3e\x15\xeb\x10\x75\x03\x76\xb5\x6b\x98\xa6\xb1\x8a\x79\x12\x15\x1c\x8f\x95\x52\x66\xf8\x6d\xb8\xe1\xdd\xad\x9d\x3e\x45\x71\xee\x19\x8d\x1c\xcd\xa0\x29\xe0\xb8\x91\xf0\x5b\x9e\x46\xc6\x5e\x5a\x55\xbc\x56\x7c\xcf\x5b\xf6\x8b\x64\x39\x5f\x49\x53\x25\x28\x51\x10\xda\x7e\x7b\xeb\xeb\xef\x95\x90\xa6\x11\x5b\x4a\xfb\x8b\xef\x38\x79\x7a\xcd\x9e\xb0\x5e\xef\x6d\x65\xd9\xdd\x86\xf0\xaf\xb5\xa5\xa5\x6a\x56\x90\x96\x36\xa7\xbd\x45\x73\x8d\xbf\x9d\x73\x3f\x55\xcc\xec\x68\x14\xcc\xc9\xbc\xe6\x64\x61\x67\xd6\xec\x0c\x0a\x8e\xd8\x98\xd3\x4c\xb9\x5a\xd0\x42\xf1\x31\x6b\xe0\x5f\x18\x9e\x6e\xb2\x8f\x29\xcf\xdf\x34\xdc\x8a\x58\x88\x7a\x38\xde\x25\xc6\xc4\x04\x74\xf5\x83\x9a\xcd\x1f\xea\x42\x45\x38\x02\xc2\xe9\xe6\xa3\x69\x5e\xca\x1f\x17\x5f\x2b\x9e\x01\x03\x68\x0e\x33\xd3\xb4\x2c\xa8\xb9\xd5\x5a\x59\x0a\xef\x15\x70\xcc\x91\x69\xae\x2c\x41\xa8\x80\x83\x47\x44\x6f\x08\x4a\xe2\x5d\x55\xaf\xb5\x65\xff\xb0\xf9\x3d\x5f\x02\x57\x0c\x7c\x49\xcc\xb6\xbe\x1b\x60\x9e\x4b\x06\x6d\x49\x73\x94\x84\xa1\xc0\x55\x49\x6e\xff\xfc\xf0\x75\x64\xc5\x84\xb4\x3a\x92\xd8\x71\x84\x11\x35\xab\x44\xc9\x04\x27\x84\xe6\x75\xe4\xcd\x5b\x14\x69\xdc\xf6\x54\x65\x9a\x77\x96\xa0\x09\x31\xcd\xcf\xd5\x03\x1d\xda\xfa\x93\xa0\xfa\x5e\xe1\x58\x4e\xf5\x2e\x16\x7f\x7e\x78\x1f\xde\x02\xea\xa2\x09\x32\xf6\x10\x07\x37\x0d\x88\x69\xa6\xed\x9c\xaf\x2b\x23\x35\x25\x57\xee\xf9\xf2\xd9\xd6\xea\x9c\x30\x1a\x9a\xef\xe3\x95\x95\xda\xbf\x16\xa1\x69\x0e\xef\x7d\x0e\x0b\x34\x80\x03\xfb\xa6\x2c\x87\x1b\x5b\xf0\x42\xa8\x23\x3c\x4e\x44\x3b\x1e\xf0\x91\x55\x27\x67\xee\x8a\x71\x40\x2f\x0a\xa7\xd8\x8f\xa6\xf9\x65\x5d\x17\x62\xb4\xb5\x63\x1d\xc9\xb8\x11\x47\x06\x21\x8b\x1d\xdb\xd5\xc7\xd4\x9c\xd3\x8c\x13\x4f\xb4\xc5\xe5\x90\x91\xee\xd8\x03\xa1\x05\xb3\xd6\x2c\x84\x3a\x2b\xc6\xb5\x18\x8f\xe7\x64\xed\x17\x01\x33\xfe\x64\x8c\x76\x30\x9a\xd1\x1d\xb7\x20\x85\xcc\xaf\xd8\x5a\xc5\x43\xa5\x06\xa1\xb7\x8c\xf3\xaa\x4f\xa6\x79\x85\x5e\x98\x35\x95\x20\x65\x29\xf6\x18\x9e\xb2\x0b\xcd\xdb\xc3\x60\xc3\x57\x08\x47\xb9\xea\x1f\xc9\xd3\xbd\xc5\xe9\xd0\x69\x62\x57\xee\x18\x63\x0f\x30\x61\x52\x82\xdf\x19\xf1\xbe\x0e\x67\xb9\xb4\x1a\x8f\x97\xaf\xa9\xf1\xcc\x35\x88\x5a\xb8\xcd\x6a\x86\x93\xc2\x53\x15\xda\x76\xde\x31\xe2\x18\x08\xa9\x2b\xaa\xcf\xb6\x88\x8f\x29\x00\x81\xbc\xcc\xed\x65\xb8\x5c\xf3\x77\x08\x27\xd3\x54\x26\x8e\xc2\xe7\x76\xb1\x8e\x57\xc2\x22\x01\x15\x3e\xe6\x0d\x58\xa6\xd1\x8f\x84\xeb\x4a\x65\xff\x21\x60\x43\xa7\xe5\xd7\xc7\x1b\x39\x69\xd4\xd5\x9b\xd4\x34\x5a\x52\x59\x45\xca\x87\xdc\x12\x44\xa3\x92\x95\x5c\xa6\x89\x0b\xaa\xcd\x04\x2a\x1d\xfb\xb5\x20\x48\x2c\xd0\xc0\x5f\xf3\x8e\xe3\x87\x54\x53\x9d\x0e\x4b\xb4\x90\xac\x42\x94\xce\x33\x40\x95\x1c\x4d\xf7\xbe\x0a\xd3\x28\xe1\x7e\xea\x67\x41\xc0\x84\xe6\xf6\xc5\x5b\xf2\x10\xd3\xe4\x34\x67\xa9\x69\xba\xf5\x96\x03\x04\x52\xbe\x0b\xed\x9d\xdb\x45\xb6\xcb\x97\xfc\xeb\x34\xe2\xf7\x63\xa1\xbf\xc9\xf8\xc2\x3a\x39\x4a\xf1\x90\x3f\x4f\x59\x8a\x21\x56\x7f\x88\x6f\x92\x38\xbd\x9d\xa3\xdc\x53\x3b\x78\x8d\xdd\x5a\x66\xb1\x70\xbd\xb1\xab\xf9\x51\xf1\x3e\x83\x9e\x7a\xff\x36\x90\x91\x32\xd8\xf1\xf5\x0a\x20\x46\xcd\x07\x63\x5c\x03\xe5\xfa\x58\xbd\x0a\x1c\x47\x6a\x53\xdd\xb4\x9a\x76\xd3\xb2\x34\x24\xdf\x86\x6f\xc7\xda\xbb\xf9\xcc\x38\xd0\x03\x23\x96\x7e\x5e\x3a\x7e\x28\x39\x59\xc5\x1a\x2c\x8c\x24\xbc\xe1\x89\xcc\xa9\x3d\x6b\x65\x5a\x15\xd4\x05\xa1\x3b\x9e\xe8\xbe\xc6\xc5\x1b\x2d\xa1\x2c\xf5\x94\x21\x63\x43\x6e\x9a\x21\xe0\x73\x5f\x69\xad\x75\x18\xb3\xfe\x4d\x1b\xf7\x46\x1f\x77\xc2\x3b\xd6\x60\x95\x7f\xdc\x48\xd0\xd6\xb7\x94\xe6\x0d\x96\x67\x34\x66\xdc\xf2\x03\x5a\x61\x37\x15\x84\x86\xac\x76\x95\x0c\x01\xd7\x53\x3f\x63\xb1\x1f\x06\x01\x5e\x8a\x91\x05\x6c\x68\xe5\xf0\x03\xcf\x04\x6d\xcd\x88\x46\x69\xae\x78\xc7\x98\xa4\x4f\x6f\xcd\x7b\x37\x32\xd3\xe4\xfb\x5a\xec\x9a\xb2\x82\xdb\x4a\x80\x24\x5d\x4d\x0b\x6e\xc7\xc5\xdf\xaf\xde\x1d\x8a\x5b\x60\x51\x85\x1b\x5e\x6c\xc3\x25\xff\xdb\xf7\x5f\xd3\x94\x59\xbc\xcb\x2d\x70\x52\x8b\x55\x54\xc3\x95\x38\xf7\x3f\x24\x35\x17\x65\x99\xc2\xc6\x59\x61\x67\x59\x1a\x70\xb2\x80\x43\xc6\x0a\xfb\xc2\x45\x55\x5b\x8f\xc0\x27\xa3\x21\xe3\x8b\xc3\x56\xbd\x57\xb5\x90\x5e\xf2\x2a\xc0\x74\x84\xda\x9a\x0f\xbb\xdd\x5a\x58\x6b\x66\x45\x2c\x3c\xe8\x2f\xbd\x61\xc3\xd8\x8a\x08\x7d\x25\x6b\xb2\x32\x16\x55\x4e\x06\x3f\xc6\xfc\x23\x31\xcd\xcc\x16\xd9\x76\xc8\x18\xb0\x4c\x99\x1d\x46\xd1\xdb\x3b\x9e\x8a\x77\x71\x21\x78\xca\xf3\xc5\x61\x92\x65\xec\xd2\x24\x0b\x23\x83\xc6\x9c\x0e\x5d\xe2\x65\x40\xd8\xc2\xe5\x1a\x73\x41\x85\xda\xab\x65\x64\x69\x93\x1d\x03\xca\x36\x86\xee\x6c\xd7\xcb\x7f\x0f\x34\xcf\x3d\x66\xc4\x06\x1d\xf2\xce\xf6\x5d\x7f\x36\xe4\x45\x2b\xbd\xa8\x71\xbc\x76\x5d\xf1\x5d\xed\x23\xaf\xb3\x8d\xdc\x47\x0c\x42\x54\x83\x87\x5c\x93\xf1\xdc\xa8\xb6\xff\x9e\x76\x6b\x6e\x87\x7d\x23\xd1\x23\x3a\xc6\x37\xc9\x92\xc0\xe6\x1d\xeb\xe4\xba\xd5\x49\x4e\x80\xff\x7b\xa0\xc3\x4e\x8d\x12\xe7\xfa\x52\xad\x87\x83\x8e\x42\x73\x0b\x2b\x57\xb6\xa5\xf6\xd7\x6f\x7a\x17\x45\xc5\x15\x08\x4e\xd3\x46\x95\xdb\x0b\xc6\x43\x96\x0a\x88\xe3\x7e\x4f\xa1\x8d\x34\x6a\xb7\x50\x19\x17\xf5\x2d\xed\x2e\x1b\x6d\x9a\x37\x0d\xe5\xef\xb0\xc5\x4d\x9f\xd2\x85\x9f\x06\x9e\x1f\xec\xf7\xc4\xfb\x03\x86\x25\xdb\x3b\x4e\x7a\xea\xa1\xca\x9d\xe0\x30\x4d\x82\xa0\xee\x1d\xd0\x05\xb4\x54\xfa\xc3\x81\x22\xe5\xc4\xbd\xa0\x81\xc3\x0a\x56\x69\xa5\x2c\x3e\xd2\x43\xa2\xf7\xac\xe2\xe1\xfd\x58\x5e\xd4\x90\x31\xd1\x83\x4c\x9c\x48\x95\x13\xcb\xd4\x11\xf0\xf7\xb5\xa0\xb8\x4f\x9c\xb2\x0a\x1e\xef\x5f\xfd\x85\xf5\xaf\xdf\x45\x9f\x84\xe0\xb3\xa0\xd2\xca\x1f\x3d\xfa\x78\x78\x08\x59\xf4\x5e\xfc\x51\x79\x31\x1f\xd1\xbb\xd5\x7a\x99\xa3\x95\xa3\x83\xd2\x73\x94\x14\xc8\x4d\x73\x9e\xb2\x18\xb5\x41\x73\x02\xdc\x43\xaa\x11\x72\x75\x8c\x4b\x35\x9d\x4d\x6d\x16\x58\x01\x08\x45\x8b\x5d\x10\x69\x87\xb3\x7f\x1f\x9b\xda\xe5\x6f\x48\x6d\xae\x71\xe4\xec\xc6\xc9\x9e\x5e\xc1\xc8\x37\xf0\x47\x9e\xe0\x1a\x12\xd7\x85\x21\x1e\xe0\xba\x54\xed\x90\x9c\xa5\x29\xcf\x61\xaf\x64\xc6\x8b\x70\x10\x47\xec\x0b\x63\xf4\x30\x32\xbe\x78\xf9\xe2\x24\x7c\xf9\x42\x4a\xe2\x9a\xe4\xf1\x75\x7e\x7d\xfd\xc5\x60\x53\x84\x49\x92\x7d\x5c\x86\x5b\xb1\xcb\x39\xfb\xe2\x8b\x97\x2f\xb2\xad\x92\x3c\x48\x95\x00\xa6\x9d\xc8\xc4\x97\x2f\x4e\x64\xf2\x4b\x83\xf2\x9e\x6b\x5b\xfc\x76\x75\x1f\xd8\x17\x5f\x04\x35\x79\x37\xcd\x8d\x9c\x1b\xc3\x7f\xfe\xe1\x59\xc0\x1a\xe9\xfc\x17\xe5\xb5\x71\x8d\x42\xdd\xde\x4a\xab\x9e\x34\x55\x95\x65\x55\x55\xa3\x07\x58\x78\xb8\x3c\x4a\x29\x19\x3d\x56\x57\x1c\xfd\x8b\xc9\xf1\xf7\xd5\xf6\x2f\x76\xa4\x9c\xa7\x14\x25\x3d\x65\x9a\x4f\xbd\x25\xc3\x3f\x61\x73\xa3\xe7\x3d\x45\xed\x3f\xd9\x23\x7f\xf4\xaf\x40\x6e\xb9\xdd\x09\xe6\x9d\x19\x5d\xe7\x7c\xc5\xbe\xf8\x62\x50\xf3\xa1\x5f\x54\x4f\xed\x29\xee\xfd\x2e\xe7\xef\x44\x9b\xc0\xf9\x91\x43\x9f\xe4\xfb\xc9\xbc\x7b\x6c\x07\xac\x37\xa8\x21\xf5\x3d\x38\x58\x1d\xff\x04\xe9\x64\x07\x4e\xd0\xa0\xc6\x9b\x63\x13\x01\xdf\x59\xd4\x87\x1d\x58\x52\x8a\xad\x6b\x55\x8e\x41\xe8\x64\x08\xa7\xb6\x9e\xa9\xe1\x29\x0e\xb2\xa7\xa6\xfa\x13\x35\xbc\x0a\x16\x06\xa1\x07\x2b\xa7\x86\xd8\xd0\x39\xde\x4c\x53\xc1\x6f\x6d\xa7\xaf\x9a\xe7\xd4\xbb\x37\x08\xad\x4a\x52\xfb\xb9\x87\xb3\x4f\x80\x08\x6c\xe0\x4c\xcd\x8b\xaa\x40\x45\x10\x6e\xd9\xba\xfa\x54\x96\x6b\x5b\x7a\xfa\x5d\xb5\xf3\xc2\x87\x4d\xf6\xd8\x93\x9a\xf5\xe5\x2c\x3a\x89\x40\x61\xba\xf8\x97\x02\x5c\x96\x59\x9a\xe2\xe2\xc3\x02\xac\xf2\xd4\xa0\xa8\xfd\x69\xde\xfc\x62\x08\x6b\x1d\xc7\x76\xa5\xc6\x36\x64\x06\xfd\x3b\x62\xf6\x86\x6d\x6a\x98\x69\xe2\xf9\x8d\x12\xe7\x94\xc0\x1f\x5e\xb1\xab\xbe\x3c\x57\x7a\x1e\x51\x41\x64\x6d\x2f\xb3\x0d\x9c\x01\x2b\x16\xff\xaf\x59\x11\x43\xbf\x09\xbd\x63\xa2\x2c\xb5\x6c\xa9\x08\xe3\xb4\x20\x8b\x3e\x13\x89\xcb\x96\x20\x60\xc1\xbb\xac\xbe\xc7\x69\x2e\x25\xac\xcd\x79\x73\xae\x29\x76\xf3\xb2\x1c\x5a\xc3\x5c\x4a\x4f\xf3\xba\x22\x48\x4d\xeb\xa6\x17\xcd\xa3\x95\x13\x8f\x1f\xeb\xba\x69\xba\x67\xe6\xd1\xaf\x68\xd6\xd4\xdd\x41\xe3\x95\x25\xad\x58\xe7\x82\xb5\xfa\x08\xcc\x84\xd0\x18\x85\xa1\x33\xaf\xa5\x34\xf4\x5b\x26\x16\x07\xf5\x70\x5d\x49\xbc\x85\x85\xe0\xa8\x40\x5c\xc3\xa3\x7d\x1a\x0f\xc5\xb1\x4f\xf5\xe6\x5b\x96\x96\x6b\x5a\x79\xef\x49\x90\x31\x66\x1d\x8a\x93\xc9\xe2\x38\x10\x04\xf1\x5c\x52\x96\xc3\x14\x0d\xe8\xde\x70\x38\x13\xf1\x48\x5a\x19\xf5\x97\xc0\x56\xf2\x05\x0c\x2f\x2a\xcb\x4e\x27\x18\x63\xaf\x4c\xf3\xce\x7a\x45\x39\x59\x8c\x5d\x4f\xc8\x5c\xe2\x58\x2e\x41\x16\xae\xb7\x5b\xfc\x64\xed\x28\x27\x63\xf8\x11\xc4\x73\xbc\x99\x99\x43\x69\xb7\x6f\x7e\x8e\xc1\x35\xad\xad\x5c\x9a\x69\x43\x16\x48\x7b\x0d\x99\xcf\x03\x5a\x30\x75\xaf\xd5\x30\x2b\xcb\x61\x2d\xae\xc6\x11\xd5\x9d\x5e\xb8\x5e\x06\x2f\x71\x5f\x07\xa1\x70\xa6\x8b\xba\x95\x60\x6c\xae\xec\x9c\x50\x78\xa5\x63\x4f\x68\xef\x52\x29\x56\x4c\xab\x4c\xe2\x20\x53\xd1\xcd\x34\x0f\xfd\x3c\x60\x8c\x15\x7e\x1e\xcc\x49\x3e\x1a\xd5\x48\xb0\x58\x71\x0b\x3e\x52\xf8\x44\x3c\x95\xef\x15\x74\xb8\xa8\x9e\x5d\xcf\xd9\xd3\x88\x78\xd1\x9e\x16\xbc\x22\x77\xfd\x1a\x2d\xd4\x89\xa0\x57\x2e\xfe\x11\x44\x2f\x52\x13\xcf\x83\xa9\xe8\x43\xc1\x4a\x71\x81\xe7\xc7\x4e\x0d\xa6\x79\x83\x42\x75\x51\x0b\xd5\xaf\xca\x72\x78\xa5\xc4\x14\xd2\x2e\x4e\x13\xb3\x0b\x42\x88\xc8\x1f\x94\xd6\xb0\x26\x8d\x32\x86\x56\x5e\x96\x3d\xe4\x14\x10\xb2\x22\x39\x4a\xe9\xd2\x24\xd4\xe4\xa4\x16\x37\x6a\x32\xd7\x7b\xe9\xf8\xb0\x6f\x20\x22\x68\x24\xc1\xe1\xf3\x80\xd4\x51\x80\x10\x32\x15\xf9\xe9\x85\xe6\x67\xa0\x72\x27\xdd\x3d\xa0\x9a\x50\x88\x2e\x54\x3f\x5d\x58\xc5\x0d\x68\x09\x69\xbb\x9e\xe1\xd2\x42\xf3\x9d\xba\x0d\x4d\xcb\x49\x3b\x39\xc9\x42\xba\xdc\x0e\x6f\xaa\xf3\x44\x85\x5e\xb5\x4d\x66\xbc\x88\xbd\x76\x8c\x81\xe1\xcd\xa2\x73\xa6\x16\xc4\xb3\x62\xd6\x73\xd2\x14\xca\xb2\x7f\xcb\x97\x78\x6b\xe0\x22\xb6\x95\xe3\xec\x2e\x49\x70\xfc\xbc\x58\x86\x5b\xde\xe3\xd2\xd0\xb1\xce\x93\x6a\x0f\x59\x24\xcf\x5b\x98\x78\x68\xbe\x69\xfc\xf0\x90\x8a\xf0\x7e\x80\x39\xe9\x60\x97\xe6\x7c\x99\xdd\xa6\xf1\x23\x8f\x34\xd7\x1f\x6f\x60\x8c\x54\x95\xbb\x34\xfe\x75\xc7\x7f\xc8\xf2\x3e\xf1\x97\x76\x98\xc2\x55\xbf\x65\xc3\xd4\x8e\xb8\xe0\x4b\xf1\x66\xb7\x4d\xe2\x65\x28\x78\x41\x77\x4c\x11\xd0\x1f\xd0\xd7\x07\x05\xde\x52\x1d\x0c\x3c\x0b\x7c\xb0\xbe\x25\x74\xab\x8e\x5a\x82\x71\x3f\xc6\xa3\x16\xee\x28\x7e\x1c\xa0\xcc\x4b\x9d\xb3\x62\xa2\x16\x3f\xca\xe3\xb9\x32\x65\x46\xc9\x24\x75\x6b\xfc\xdc\xa1\x9c\x9f\xf2\x3d\xcd\x58\x81\xc0\x7f\xcf\xef\xfb\x06\x90\x32\xc3\x40\xca\x18\x6b\x1b\x73\x73\x04\x77\xe5\xf5\x7d\x97\xf2\xc7\xc5\x57\x79\x40\xeb\x0b\xec\xc3\xef\x05\xda\x44\xa4\xa2\xb9\xde\x52\x4b\xc4\x7e\x73\x8c\x3a\x95\x17\x02\x99\xc1\x39\x9f\x43\x82\x26\xc8\x27\xe9\x88\x65\x70\x5c\xab\x54\x8b\x53\xd9\xf6\x4c\xa7\xa7\xb2\xab\x3f\x02\xba\xec\x6b\xd3\x3d\x04\x9c\x3c\xda\x63\x1d\x4d\x08\xa4\x74\x4f\xad\x5c\xca\x32\x25\xa5\x29\xd8\x93\xa6\xdd\xf1\x4e\x1d\x2a\x79\xf2\xbf\x16\x7c\x17\x65\x5e\xc2\x29\x92\x26\xef\x2f\xb4\x59\x1f\xde\xd3\x9e\xc2\x61\x16\x43\x29\xf2\x04\x2d\x26\xbc\x27\xe3\xa5\xe1\x1d\xaa\xcc\xa5\x75\xfd\xd0\xd9\x53\x63\xd0\xf3\x7d\x4f\x8d\x51\x9d\x9c\xf3\xbb\x38\xdb\x15\x6a\xf8\xad\xb2\xff\x3a\x96\x69\xbf\xa7\xdb\x9c\x7f\x89\xd2\x22\xef\x09\x2d\x6f\xfa\xa4\x5b\xbe\x1b\x30\xf8\xd3\x91\x1c\x51\xee\x4f\x03\x66\xc1\xdf\xb2\xe4\xfe\x0c\xff\x9e\x06\x65\xa9\x2f\x2a\x95\x15\x4e\x68\x88\x85\x93\x00\xef\xb2\x9c\x06\xcc\x80\xb5\xe1\x4f\x03\xd4\x93\xd1\xc6\xb2\x61\x46\xf6\xca\xa8\xe7\x93\x7d\x69\x11\x19\x6a\xa4\x32\x02\x17\x7e\xaa\x6a\x9a\x92\x85\xea\x5d\x51\x5f\xec\xec\x3b\x01\x74\x7c\x16\xb0\x91\x05\x3f\x0b\xe8\x32\x3c\x9e\x05\x65\xe9\x12\x6f\xf2\xdc\x32\xf8\x1d\x4f\x65\x65\x53\x74\xcb\x89\xa2\xea\x8d\x40\xd9\x53\x59\xf6\x3c\x18\x71\xff\xe2\x20\x83\x07\x3f\xa6\xd9\x6d\x71\x5f\x59\x30\xf5\xad\x9d\x21\x34\x6f\x9a\x00\x9d\x0a\xd7\xfe\x62\x23\x0c\x94\xa6\x14\xea\x90\x91\xee\x70\x40\x0b\xc8\xc9\xda\x20\xf7\x52\xd3\xfc\x51\x66\xc7\xc0\x8a\x82\x85\x56\x0a\x7b\x8d\x7c\x49\x9b\xa0\x1f\xc4\xa8\xf5\x15\x63\x41\xc6\xd5\xb3\xbc\x64\xd4\x81\x7a\x9d\x06\x86\x02\x46\x3c\x09\x58\xaa\xa5\xe8\xb3\x35\x25\x64\x0f\x08\x2d\x51\xe8\xfd\xab\xbf\xf4\xf8\x71\x74\x45\x8e\xbd\x8a\x2b\x25\x27\x5a\x1c\xb8\x69\x0c\x9d\x7e\x47\xdb\x5a\xd3\x00\x74\xb0\x5f\x27\xa6\xc4\x8d\xd2\x22\xed\xb0\x5f\x3f\x2b\xbd\x7b\xed\x4d\x82\xb7\xdb\xea\x76\x48\xd6\x87\xda\x70\x8e\x8f\x0c\x69\x7c\x54\x3e\x23\x28\xd6\xfb\xd9\xe2\xb4\xf7\x9e\x75\x39\x09\x7d\x94\x6d\xd9\x88\x9a\xb4\x97\xb2\xfc\x0d\x92\xd6\xae\x94\x55\x09\xfe\x0d\x82\xcb\x0d\xfd\x36\x3b\xeb\xb7\x65\xdc\x5d\x27\xab\x4b\x56\x91\x9c\x03\x51\xb2\x72\xcd\x4b\x49\x9a\x80\x67\x0b\x38\x02\x42\xbf\xbd\x21\x80\x24\x1b\x01\x71\x37\x64\xd2\x02\x18\xd2\xd4\xab\x72\x2c\xb2\x21\xbe\x7e\x50\xaf\xa9\x69\x3a\x8c\xb1\x4c\x0b\x0c\xea\x19\xcf\x9b\x8f\xfa\x87\x97\x63\xd7\x33\x9e\xe9\xdf\x24\x52\x35\x18\x29\x9b\xfa\x97\xca\x62\x01\xc5\xc8\x6a\x5c\xfa\x27\x10\x45\xb4\x6c\x22\xdd\x4a\x4b\x59\x02\xf7\x3b\xd4\x83\x66\x35\xbe\x56\x75\x8f\x5c\xac\x7d\x64\x8c\x0d\xc4\xe0\x2e\xc5\xa9\xbc\x75\xaa\x40\xa9\x48\x60\x90\xcf\x6b\x30\x9f\x86\xcc\x48\xc2\x42\xe8\xe9\xe3\x19\xa1\x05\x33\x94\x6d\x21\x76\xa3\x82\x2e\xec\x7a\xb9\x82\x4f\x8f\x4f\xf9\x70\xa8\x9f\x29\x34\x9c\x87\x9e\x2c\x65\x3f\x5a\x96\xd0\x2c\x1e\x32\x16\x2e\x0c\x6d\xd7\x33\x7a\x36\x82\x4d\xfb\x70\x72\xc5\x0a\xe9\x58\xd1\xb7\x60\xe8\x2d\x1b\x2e\x4d\x73\x58\xd0\x3b\x36\x74\x61\xff\xde\xe0\x36\x1d\x2b\x9e\xe2\x66\x2e\x1f\x56\x4c\xcc\x57\x6c\xe5\xdf\x48\xf9\x77\xb1\x58\x1d\x5f\x81\x57\x1e\x0c\x7c\xd5\x65\x8b\x87\xee\x7c\xcd\x6e\x98\x91\xa5\x09\x7a\x0f\x72\xd3\x1c\xae\x4d\xb3\x35\x9a\x7d\x4d\x01\xe2\x95\xb5\x66\x7e\xb8\xd8\x68\x9b\xbe\xb7\xb1\x01\xfa\xf8\x1c\xd0\xd0\x34\x6f\x95\x66\x96\x59\x11\xb3\x12\x66\xed\x98\xb5\x65\xd6\x8a\x6d\x88\xff\x10\x94\xa5\xb5\xf2\x1f\x02\xf6\xb4\x27\xc4\x5f\x29\x76\xec\xeb\x37\x90\xbe\xd5\xdf\x65\x06\x1e\x60\xa8\x2c\x20\x87\x68\x46\x93\xf8\x6e\x40\xe0\x67\x12\xd0\x15\xf0\xc9\x1b\xcd\x14\xcd\x8f\x82\xf9\x8a\x8d\x46\xc0\x3e\x9b\x26\x40\xa5\x2c\xad\x3b\x16\x31\x87\x94\xe5\xda\xde\x66\x5b\x8b\x20\x9c\xda\x80\x30\xcd\xd1\xe8\xce\x34\x57\x78\xd2\x7c\xda\xf9\x3c\x60\xfe\x47\x1a\xd1\xbb\x40\x06\x73\xda\xb7\xcc\xa2\xa0\x3e\x7d\x50\xe2\x0f\x1a\x14\x45\x3d\xfe\x9d\x14\x47\x58\x9f\x1b\x06\x6c\x12\x9f\x98\xee\x21\x4e\xf7\xb0\x35\xdd\x65\x39\x1c\x8d\xee\xca\x12\x47\x21\xbb\xbf\xfa\x1d\x5d\x07\xd8\xdc\x05\x84\xae\xd0\xf1\x9e\xcc\x6b\x83\x87\xbb\x31\xcb\x88\x14\xea\xdc\xfd\xaf\x9c\x31\xe6\x98\xe6\xdd\x49\xfe\x92\x39\xfb\x7d\xcf\xae\xdb\x68\x30\x90\x17\x46\x4e\xad\x40\xd0\xe4\x76\xc1\x85\x64\x86\x0a\xbf\x33\x30\x9d\x87\x30\x76\xa9\x52\xac\xf3\x68\x20\x2b\x90\x7c\x7e\x1d\xe0\xcb\x7f\x08\x16\xc0\x38\x7a\x59\x75\xa0\x73\x17\x56\xca\x7c\x4e\x39\x35\x0c\x2a\x02\xaa\xb7\xd5\x0d\xba\xd8\x35\xeb\x5a\x24\xed\x40\x64\xba\x73\x0c\x1c\xc3\x70\x4c\x07\x66\x07\xdc\xcf\xd9\x4f\x16\xa7\xb1\x1f\x06\x24\x60\x43\x2b\xf5\xd1\x27\x24\xc4\xf8\x36\x7d\x3b\x2a\x54\xe4\x60\x00\x38\x2f\x03\xce\x50\x82\xc6\x7b\x4a\x33\xe1\x25\x1d\x19\xa3\xdc\x40\xfd\x80\xaa\x4b\x8e\x8b\x43\x23\xaa\x46\x91\x03\xe0\xe8\x8c\x01\x68\x5a\xd6\x8c\x23\xa6\x21\xcb\x2b\xe1\x40\x46\xfd\x80\xc8\x80\xb1\x9a\x75\x99\x15\xb3\xd0\x2f\x02\xc9\xa5\x14\x30\x20\x01\x3f\x31\xe9\x0c\x87\x66\x34\x6e\xf6\x62\xe4\x67\x68\x0e\x34\x14\x23\x00\xd2\x94\x50\x4c\xc4\xd7\x61\x2a\xb1\x7a\xbf\x27\x84\xae\xc3\xe2\x60\x98\x47\xad\x62\x94\x7d\xa7\x76\x60\x87\x2a\xaa\x03\xfb\xb1\x7a\xf8\x01\x2b\x44\x0f\xab\xb6\x84\x7e\xd8\x29\x4b\x40\xa4\x66\x87\xe3\xb0\xc3\x61\x63\x49\x98\xde\x1e\x6b\xe8\xbf\x14\xdf\x88\xcc\xc1\x31\xd4\xc5\x0a\x10\x71\xe9\x61\xc7\x3a\xfb\xc2\x81\x1d\xd2\x3c\xca\x30\xbe\x39\xbb\x59\x08\x1b\x6b\xea\xda\x15\xde\x6f\x12\x0f\x3e\x40\x07\xba\xdf\x64\xba\xda\x09\xac\x94\xa5\x1d\x94\x97\x36\x3f\x0e\xaa\x08\xeb\x91\xe3\x5e\xbd\xff\xb8\x8e\x61\xd0\x6d\xc1\x29\xe9\x1a\x83\x91\x46\x6e\x0a\xb0\x12\x61\xde\xf2\x07\xaf\x25\xc9\xdc\x4e\xb2\x65\x28\xc5\xb8\xcd\x33\xac\xc8\x75\x4b\x7b\x5d\x45\xde\x93\xe1\xf3\xa2\x3d\xcd\xb3\xac\xd7\xbf\x9c\x33\xc6\xd6\x7b\x8a\x4e\x38\xc7\xbe\x47\x76\xb8\x84\x63\x9f\x92\x56\x9b\xa6\x35\x8c\xa0\xc9\x2f\xd1\x73\xa7\x6c\x9e\x91\xde\x0e\x87\x40\x11\x50\x3c\xcd\xed\x75\xce\x57\x65\xf9\x2f\x6e\x8b\xf0\x06\x0d\xdb\xd0\xb9\x19\x15\x17\xde\x0d\xb7\x86\x2e\xa1\x95\x22\x03\xdf\x1d\x42\x95\x9a\xab\x97\x2f\xff\xa4\x29\x99\x66\xc1\x06\xbd\xe0\x76\xe5\x74\x54\x1a\x52\x2b\xa5\x7d\xaa\x54\x7d\x7b\x5a\x3d\xf5\xf3\xec\xba\x01\x99\xfe\x56\x57\x80\x83\xa2\xca\xec\xbc\xa9\x95\x6f\xb6\xe2\xa1\x55\xe5\x6f\x12\x02\xc4\x2b\xab\x11\x47\xbc\x38\xeb\x73\x45\x95\x7d\xe8\xe9\xed\xb0\xde\x1d\x6c\x6c\x1d\x75\xbf\x6b\x1e\x46\x3c\xef\x1b\xdb\x33\xb5\xe4\x6a\x98\x92\x3d\x45\x00\xf6\x65\xfe\xcf\x9e\xcc\xd2\x54\xef\xff\x70\x9a\x34\x83\xbf\x0a\x69\xb4\x24\xb1\xa7\xe8\x69\x72\xe8\xae\xdb\xad\xea\x58\x9b\xa6\x69\x40\x0d\x4d\xfd\xa6\xa9\xee\x38\xb0\x04\xeb\x9e\x50\x90\x03\x46\xdf\xe3\xaa\x4c\x57\x36\x58\x05\x10\xd8\xe8\x64\xac\x82\x92\xef\x04\x92\xce\x75\x33\x68\x52\x50\x5f\x8c\x5d\xcc\xc5\x7f\x3d\xc8\xd3\x1c\x7f\xfc\xf4\x85\xb3\x48\x47\xc2\x4b\x65\xde\x3b\x9e\xf6\xd4\xd8\x89\x5c\x38\x4f\x47\x6c\x42\x78\xd7\x2c\x81\x43\x0d\x59\x14\x7d\xb2\x02\xf7\x73\x15\x24\x87\x43\x6a\x3b\xbd\xd6\x3d\x7e\x29\x16\xc2\x4b\xe7\xe3\x31\x70\x34\xf3\xaa\xba\xbc\x5d\xdd\xed\x6f\xae\x6e\x3e\x1a\xe5\x2f\xc4\x91\x7a\xf6\x7b\x52\xe3\x7c\x2a\xd6\x4c\x5b\x01\xbf\xd2\xa7\x3c\x8c\xe2\x0c\x03\x0c\x01\x1d\xb8\xc9\xee\xe1\x79\x15\xcb\xa0\x43\xdb\xb0\x28\x3e\x66\x79\x04\xcf\xf1\x26\xbc\x95\xf1\x08\x1b\x06\x4b\x04\x0c\x85\xb5\xb5\x63\xf8\x53\xb1\xbb\xd9\xc4\x02\xf2\xe7\xbc\xe0\xe2\x30\xff\x5a\xe6\xaf\x2c\x23\x6f\xb9\xa5\x5f\x06\x70\xc7\xdb\x81\x0d\x1d\xda\xf2\xd4\x30\x8c\xb9\x78\x91\x62\x68\xbc\x7c\x84\x51\x0a\xa4\x58\xb8\xb1\x2e\xa9\x6b\x7a\xe0\x6d\xc7\x21\x61\x47\x71\x4e\x33\xd8\x4d\xf8\xbd\x00\x0e\xab\x2c\x73\x1a\xb2\xd4\x34\x75\xe9\x1b\x63\x2c\xa6\x05\x7b\x6c\xf4\x25\x42\x12\xa3\x45\xeb\xe4\x96\xd5\xe2\x58\x74\x80\xae\x8e\x01\x42\xd3\x3a\x86\xb5\x3c\x52\x95\x68\x36\xaf\x4f\x9d\x02\x81\x23\x2e\x50\xc3\xb4\x3c\x6c\xa3\xa7\x11\xd3\xe4\xaa\x96\x5a\xbb\xd8\x92\x7a\x7e\xa2\x7f\xf1\x4a\x32\xee\x42\x32\xee\xa2\x66\xdc\x45\x87\x71\x17\x6d\xc6\x9d\x66\xa6\x99\x7d\xc2\x04\x9a\x88\x2a\x7c\xcf\xbc\x72\xdd\xb0\x12\xb6\xf3\x63\x79\xd8\xd2\x0f\x2a\x8c\xb1\xa2\xd6\x83\xf9\x93\x80\xc1\x59\x0c\x06\x0f\xb9\xd9\x8a\x62\xda\xe1\x00\x1b\x36\xa0\x9e\xef\x57\x2d\x13\xdb\x86\x43\x6f\x81\x5a\xb7\xf2\x6d\x38\x51\x14\x96\x63\xa0\x2a\x3f\x0b\x54\xbe\x9e\x4d\x05\x2f\x90\xd0\x42\x05\x71\x5d\x9e\xa0\xf3\xbc\x7e\x40\x0b\xe6\xe0\x7d\x08\x75\xc0\x0f\xe9\x33\x2e\xea\x40\x1c\x56\xcc\xb8\x62\x7c\x53\xd3\x1c\xa6\x56\x8c\xf5\x94\xa5\x15\x56\xa2\x7c\x9a\xa0\xae\x1b\x5e\x0a\xa2\xc7\xb5\xa8\xbb\xf0\xa8\x75\x41\xe3\x8f\x73\xd3\x1c\x02\x7b\x8e\x57\xf2\x3c\x62\x98\x24\x98\xb2\x61\x26\xd3\x32\x48\x83\xfc\xa4\x6d\x04\xad\x1c\xb3\x3b\xd8\x18\xd0\x08\xfe\xac\x59\x58\x0d\xe6\x86\xc5\xed\x10\x6c\x6d\xa2\xe4\xe0\x22\xab\xa3\x05\x64\x18\x2d\x40\x32\xd6\x7e\x1e\xd0\x54\x13\xbc\x5b\xa2\x2c\x8d\xe7\x06\x2d\x1a\xad\xbf\x5f\x04\x5e\x81\x47\x85\x0d\x1b\xf2\xb2\x1c\xc6\xa6\x29\x16\x37\xde\x47\x6e\xdd\xd0\x15\xe5\xd8\x43\x7a\xc5\xd2\x45\x56\x96\x56\xbc\xe0\xde\xba\x2c\x73\x8c\x21\x12\x7a\x1b\x74\x01\x30\xcd\xd4\xda\xd0\x2b\x99\x33\xc7\x23\x70\xc2\x3e\x72\xeb\x8a\x46\x84\xe6\x56\x42\x61\x7e\xe0\xdb\x8e\x25\x55\x3f\x77\x78\x18\xd9\xb2\xc4\xdf\xe1\x9c\x5c\xf9\x91\xbf\x0b\xe0\x3c\xb2\x51\x4f\x5b\xa2\x19\x1f\x66\x65\x29\x63\x9b\xa9\x99\x4f\x00\x44\xbb\xda\x66\xa2\xae\xee\x4a\x56\x97\xc8\x59\xdc\xf8\x3b\xa8\x67\x9e\xc9\x20\xc6\x68\x71\x96\xd0\x25\x41\xfb\xee\xe3\xa5\xad\x84\x65\x8b\x9f\xac\x98\x6e\x89\xb7\x82\xa4\x97\x63\xd7\x34\xad\xd8\x4f\xa0\x7f\x21\xfc\x6c\x81\xca\xe3\xaa\xbf\xc2\x91\x62\x94\xe6\xab\x4a\xfd\xb3\xa6\x55\xd5\xc4\xbb\x22\x34\x5b\xa8\x0e\x84\xf4\x8a\x2e\x89\x57\xb9\xe3\x84\xf4\xaa\x6d\xb5\xfe\x73\x9b\x18\x03\x11\x6b\xc7\x6b\xc8\xed\x4a\xd7\xe1\xa3\x78\x19\x58\x03\xc0\xfd\x10\x8e\xdd\xf5\x27\x63\x60\x04\x74\xc9\xc2\x85\xeb\x39\x74\x77\xc4\x25\x51\xba\xe6\xef\x09\x2d\x28\xb0\xb7\xdb\x63\xd9\x7e\xb2\x04\x95\xa7\xa5\x2a\xeb\x8a\xf9\xfa\x31\x9a\xd6\xb2\xd0\x61\x08\x0b\xa0\x2c\xd3\x21\x63\x09\xac\x2c\x4b\xb0\x94\x34\xa8\xb6\x53\xd9\xbd\xad\x7a\x68\x02\x10\xc9\x83\x64\xb6\x0f\xe6\xcb\x17\xf1\x7c\xa9\x02\xe7\xb4\xc7\xbb\x54\xe3\x25\x2b\xe6\x3f\x70\xeb\x15\xb7\x56\x84\xa6\x24\x68\x68\x1e\x14\x90\x32\x74\x2d\xbb\x02\xb6\xd4\xc0\x41\xaa\xd2\x73\x13\xe2\x3f\x04\x12\xda\x19\x1b\x8d\x96\xf3\xec\x45\x0c\xeb\x58\x6f\x32\x53\x75\x60\x84\x8c\xaa\xb3\x8f\xdc\x5a\xbe\x74\x4d\x53\x76\x00\x1f\x61\x17\xad\x25\x9a\xcb\xb1\x4b\xaa\xa8\xbc\x2a\xb2\xa0\x31\x90\x9a\x8d\xe5\x78\x22\x6b\x5c\x18\xcf\x0d\x79\xc1\xcf\x81\xd3\x54\x4a\x97\x2f\x32\xd3\xfc\xb9\xa9\x72\x49\x33\x20\x28\xd0\x3d\x48\xad\x85\xa4\x75\x2a\x6e\xe2\x64\xbf\xaa\x78\xa4\x4a\xef\x88\x3d\xac\x5e\x6e\xf5\xd8\x88\x15\x9c\x8a\x86\x39\x69\x09\x53\x50\x7c\x7f\xcb\x69\xc8\x0a\xd8\x6b\x7e\xe1\x69\xfc\xd8\x75\xb0\x55\xe2\x1f\x3d\xbe\x04\xfb\xae\xd2\x05\xc0\x8e\x52\x9b\x81\x2e\x1c\x6f\x57\xeb\x58\x91\x75\x29\x18\xa7\x4b\x5c\x8e\xd0\x81\x4a\x79\x36\x2f\x94\x60\x34\x44\xdf\x0b\xd3\x1c\x5a\x19\xfb\x9b\x74\x9c\x2c\x08\x46\x3b\x32\x4d\xab\x60\x45\x05\x00\x58\x03\x6a\xa1\x95\x65\x41\xe8\x52\x91\x72\xe6\x07\x84\xd0\x94\x0d\x5d\x6a\x65\xec\xab\xba\x06\x0c\x1d\x9e\x55\x3e\x63\x54\x06\x11\xb4\xea\x10\xd1\x18\x81\x0f\x2b\xd5\x26\x65\x60\x10\x8c\xf1\x54\x35\x5a\x8b\xd5\xa5\xc1\x31\xf4\x9b\x40\x3f\xff\xe2\x87\x81\xd6\xd5\xc4\x0f\x03\x39\x00\x78\x82\xb9\x2a\xcb\xcf\x37\x1e\x52\x85\x9d\x5e\x76\xa4\x51\x34\x85\x49\x65\x14\x9d\x7d\x0d\xe0\xca\x8f\xd7\x2b\x16\x8d\xca\x8c\x78\xdf\x59\x9c\x2e\x49\x0d\xfa\x3d\xd4\x28\xcd\x8b\xe2\xe4\xc8\x74\xc2\xa4\xc4\x72\x47\x7d\xaf\x4d\xe6\xb0\x90\x33\x23\x95\x3b\xe8\xb5\x48\xd3\x66\xdb\x49\x91\x82\x16\xec\x67\x6e\x09\x3f\x0d\x70\x6d\x2d\xb2\x6a\x2f\xf5\xe2\xea\x69\x6e\x15\xec\xbd\xc5\xfb\x62\xc7\xb3\xe6\xf2\x26\x2d\xfc\xcd\x4b\x87\xc6\xac\xbb\x63\xd2\x9d\x2c\xb3\xa5\x6b\xba\xa1\x57\xcc\xa1\xb7\xcc\x70\x0c\x7a\xc7\x62\xd3\xf4\x03\xfa\x00\xfd\x7f\xc5\x12\xfa\x08\x3b\x67\x66\x9a\x8d\x65\xb8\x05\xdb\xdf\x8e\xd0\x9f\xd9\xc7\x11\x93\x47\xae\x57\x0b\xd7\x6b\x05\xa5\x2a\x4b\xdb\xa5\xdf\xb1\xc7\x6a\x70\xb8\x5b\xc8\x28\x61\xd2\x42\x2a\x2c\xcb\x1d\x99\xdf\x0e\x19\xfb\xae\x8a\x62\x6a\x6d\xd9\xa3\x7f\x1b\x90\xf9\xed\x68\x24\x37\x2a\xd3\x54\x26\x04\x6b\xe6\xd0\xb0\x2c\xb7\x07\x66\x55\x51\x59\x5a\x2b\x6b\x0b\xf3\x3c\xbc\x21\xf3\x0d\xe3\xfe\xba\xb2\x85\xdf\x58\x5b\x28\x14\xd1\x82\x90\x27\x85\xd6\x5b\x75\x3d\xc1\x1e\x3a\xf3\x91\xfd\x4c\xf6\xa9\x69\x5a\xd6\x96\x0d\x37\xd0\x98\x69\x5e\x8d\xc7\x14\xc8\x41\x95\x9d\xec\xe3\x95\x75\x35\x62\xb7\x34\x35\x4d\xe8\xee\x55\xdd\xa3\xf9\x86\x09\xd5\xda\xc6\xba\xa3\x0f\x00\x58\x6d\xbf\xbd\x7a\xe9\x48\x51\xf6\x2d\x4c\xec\x9d\x7f\x1b\x94\xe5\x03\xfe\xb5\xe0\x87\xfd\x20\x2d\x56\x96\x84\xcc\x1f\x60\x03\x7c\x20\xfb\x6a\x57\x5b\xd2\x07\x42\x77\xa6\x09\x8c\xc4\x43\x3d\x8b\xa6\x79\x55\x47\x38\x02\x8a\xd9\x32\xe5\xb0\x96\x8d\xa9\x84\x1c\x1a\x4d\xd8\x2b\x42\xef\xf6\x8d\x67\x46\xc2\xad\x98\x78\xf1\xde\x8a\x81\x1a\x92\xda\x78\x80\xf1\xda\x0a\x68\x4f\x97\x8d\x59\x01\x3b\x14\x93\x4a\x76\xb1\x0e\x84\xd3\x1b\xca\x98\x9b\x26\xa7\x11\x1b\x66\xa6\x19\x5a\x9c\xad\xea\x76\x80\x01\x41\x6e\x87\xe1\xf5\x1f\xe8\x18\x1c\x55\xab\x12\x77\x9f\x25\x8b\x80\xd5\x8e\x34\xbd\x6f\xed\xda\xfb\x72\x62\x9a\xc6\xd7\x6f\xa0\x21\x2b\x61\x4b\xdf\x09\x88\x3a\xf7\x5f\x76\xbc\x2f\x6f\x00\x5b\xeb\x2d\x68\x89\x3a\x7a\xdc\xf5\xa4\x87\xb8\x60\x56\xed\xf6\x61\x25\xd5\x5e\xa6\x93\x2c\x25\x11\x15\xa4\xd2\x52\x90\x26\xf8\xcd\x0a\x95\xd8\x2d\x91\x1f\x6d\xf6\x93\x65\x45\x9b\xe4\x19\xaf\x1a\x1c\x72\x4b\x31\xfb\x8b\xad\x87\xd9\xa8\x7c\x8f\x17\x8e\xb7\xac\xe3\x3b\x8d\xc7\xb8\x4a\x96\x7e\x1c\x50\x7d\x23\x05\xbe\x4f\x0e\x42\x1e\xaa\xb6\x4c\x8e\x41\xb1\x5b\x19\xdb\x7e\x72\x28\x95\xa7\xf3\xb2\x62\x79\xfa\x3d\x9e\x95\xe7\xf6\xb2\xe2\xc2\x62\xea\x12\x3a\xb4\x38\xcb\x6a\xcb\xda\x3b\x0e\x28\xdb\x75\x32\x07\xe4\xa0\x69\xa5\x2d\x52\xd2\xd4\x55\x59\x16\x16\xa7\x11\x21\x56\x86\x76\x57\x34\xa5\x43\x51\x96\x9f\x71\xbb\xc6\x10\x61\xba\x79\x11\x7b\xa8\x3c\x78\x0d\x52\x19\x17\x29\xa3\x5e\xf4\x6e\x7a\xa0\x87\x26\x4a\x6c\x38\xdc\xd2\x95\x45\x68\xdb\xd0\xf3\x98\x67\x97\xfb\x09\xbb\xd9\x4f\x38\x35\xf7\x5a\xdd\xd7\xe7\xb9\x3e\xe3\xfb\x3f\x49\x4b\x7b\x83\x1a\x7f\x92\xa2\xab\x46\x6a\xd8\x91\x59\x41\x7e\xd4\xa7\x97\xe5\x56\x89\xb0\x4a\x14\xba\xae\x79\x7c\xbb\x16\xe5\xc7\x38\x12\x6b\x83\x1e\x88\x5a\xe4\xe6\xd6\xef\x0f\x26\xa8\x51\x2b\x83\xdb\xe7\xdf\x85\xeb\x4d\x94\xdb\x5e\x63\xfe\x76\x68\xd1\xdd\x3b\x36\x94\xd5\x9d\xa0\x43\x87\x36\x9a\xb6\x31\xbf\xbc\x34\x03\x83\x13\x1a\x9f\x19\xb8\xcc\xda\x8c\x5c\x15\xed\x1f\xa8\x69\x7e\x5e\x54\xd8\x00\xa3\x72\xb2\x44\x3b\xab\xe3\x53\xa7\xe2\xe6\x75\xfa\xd5\xd8\xe5\x57\x5d\x7b\x73\xd8\x29\x19\xa2\x5a\x9f\x03\x29\x41\xf6\x45\xb0\xe8\x80\xdc\xc3\xc0\x6e\xfd\x66\x84\xb9\x66\x46\x98\xeb\x66\x84\x84\xd0\x82\xef\xad\x94\xcc\x1f\x71\xfd\xb3\xf7\x18\x31\x72\x9b\xb3\xf7\x8d\x31\x98\x4a\xf2\x0d\xcf\x90\x11\x28\xb7\x0d\x8b\xfa\xa8\xdb\xff\x55\x2f\xec\xbd\x96\x4a\x1f\x65\x80\xe3\xf7\x95\x95\x1d\x7d\x94\xfe\xba\x6f\xb2\x25\x7b\x2f\x1f\xe9\x63\x63\x13\xfa\xbe\x7e\x84\x76\xd1\xc4\xb1\x36\xa1\x7d\xaf\x12\xd0\x90\xf3\xfe\x20\x3e\x4e\x27\xb4\x5e\x6d\x87\x99\xce\x81\x47\xf7\x05\xd0\xb6\xcb\xa1\x6e\x62\x5f\x8b\x85\x9a\xa4\x8a\x57\x78\x44\x17\xa6\xc2\x4a\xeb\x00\x89\x2a\xfe\x5e\xbd\x33\xe6\xfb\x83\x20\x6b\x8d\xa4\xd4\x0f\x7a\xc4\xf6\x5d\x47\x7f\x2e\xa3\x8a\xa6\x55\xcd\x9a\x41\xde\xbb\x0a\xd2\x48\x85\x5b\x94\xbe\x11\x1d\xbe\xed\x84\x7f\xff\x6d\x96\x43\x9d\x98\x36\xd0\xdf\x1f\xd8\xc9\x87\x17\x96\x1f\x8e\x1f\x03\xff\xc3\xf5\xc9\xb5\xf3\xd2\xc3\x40\x68\xe2\x3a\xbf\x4e\xaf\x57\xc1\x73\xe2\xb7\xdf\xaf\x4f\x16\x2f\xad\x85\xf7\xe2\xfa\xe4\xda\x7d\x59\x92\x67\x27\x71\xd3\xab\x5f\x3b\x36\x3a\xb7\x96\x20\x8b\x47\xfb\x36\xe7\xdb\xb6\x69\x11\x1c\x54\x2b\x1b\x91\x2a\x30\x25\xcd\x29\x9a\xec\xa6\x7b\x42\xbc\x66\x1b\xee\x2d\xdf\x3e\x39\x57\x85\x0e\x43\xca\x88\x4f\x97\x6e\xa2\x42\xc2\xa9\xba\xaa\xe6\xb1\xba\xa0\x45\x45\x8b\xac\xde\x8f\x44\x65\x12\xbe\x13\x68\x9a\x35\x8b\x33\xc3\x4b\x33\x61\xa1\x81\x15\x31\x08\x95\xc2\xc7\x6a\xdf\x43\x9b\x19\x7d\x74\xc8\x41\x74\x0c\xbe\xd1\x86\x69\xe1\xe7\x81\xe7\x07\x5e\x3b\x8b\xc5\xa9\x1a\x93\xe8\x1d\x53\x1b\xd3\x64\x50\x64\x2d\x88\xaf\xf5\x84\xa6\x9a\x3d\x36\x7b\x34\x6f\x85\x27\xce\xf0\x4d\xbf\x90\x4d\x33\xe4\xaa\x8f\x93\x9d\x80\xcd\x78\x29\x63\xf7\x76\x1b\x75\x5a\x61\xce\x5c\xbc\xc8\x51\x7e\x1d\xaf\xac\x66\xdd\x5b\x99\x2f\x02\x8a\x61\xab\x1b\x21\x27\x21\xb5\xb9\x7f\xbb\x09\x3f\x20\x54\xaf\x4a\x02\xc7\xe2\x14\x6b\xd1\x7c\x2d\x5f\xba\x0b\x9d\x44\x59\x29\xf1\xd2\xda\xac\xaf\xcf\xc8\xad\xdd\xce\xaf\x2a\x58\x35\x32\x98\x43\x97\x60\x6c\xdb\x5e\xcd\xd7\x27\x0b\x3a\x04\x23\xcb\xf6\x29\xe3\x86\x2a\x67\x8f\x59\x9d\x69\xbe\xab\x99\x3a\x80\xa9\x57\x77\xa3\x72\xfb\xde\x4b\x93\xf6\xd7\xf4\x17\x19\x95\xec\xba\x78\x6e\xbd\xf0\xaf\x3f\x5e\xff\x14\x8c\x5e\x12\xff\xc3\xcb\xe0\x79\xf9\x27\x2d\x30\xd9\x1c\x23\x6a\x62\x60\xf5\x7e\x34\xa6\x19\x6e\x36\xad\x99\xad\x79\xec\xd7\x7d\x9d\x54\x5c\x70\xce\x8c\x17\x52\xa2\xe2\x04\xa6\x69\xbc\x94\xcf\x4d\xd8\xae\xa0\x89\xba\xfe\x92\x4d\x17\xbe\x14\xfe\xa0\xf1\x42\xe0\xfd\x52\x47\x62\x2a\xcb\x61\xee\x43\xe6\xca\x42\x1a\x18\x3c\x61\xcb\x08\xea\x0b\x8c\xc5\x40\xd4\x54\x13\xef\x20\xaa\xb5\xa8\xbf\xa1\x8b\x43\x15\xcf\x49\x30\xa1\x5f\x2a\xf6\xb8\x80\xb5\xea\xc1\x3e\xd4\x04\x38\xa7\x8f\xc0\x36\x16\x1c\x78\x10\x2c\x49\x45\x65\x4d\x86\x0b\xb4\x27\xca\x54\x88\xf3\x4a\x7f\x90\x73\x94\x4b\x43\xaa\x6e\x08\x67\x41\x9a\xa8\xfe\x82\xdc\x62\x5b\x7e\x1e\x90\x85\x7a\xb0\x04\x7a\xa0\xe0\x50\x94\xd9\xa2\x90\x51\x7c\x9b\x09\xa8\x18\xe0\x8c\x85\x5d\x77\xf0\xdc\x9f\x04\xd2\x10\x16\xaa\x73\x02\x96\x51\x6d\xf5\x32\x97\x50\xad\x02\xed\x2a\x84\x45\x5d\x80\xb7\x0b\xc8\x15\xe8\xdd\x02\xce\x35\xfb\xa7\x9d\xf3\x30\x7a\x58\xa8\x5f\x44\x45\xeb\x11\x48\x64\x1d\xf1\xd7\x92\xf5\x90\x3d\xd1\x64\x5a\x80\x6c\xf4\x35\x7b\xb4\x42\x89\xa7\x3f\x49\x2c\x95\xfc\x79\x51\x6e\x73\x7e\x67\x2d\xbc\xbf\xa5\x22\x4e\x4a\xf4\x2a\x3e\xa1\x6f\xd8\x53\x75\xa7\xa3\xba\xf2\x43\x40\x5e\xbc\x75\x81\xdf\xa3\x56\x0d\x8a\xb5\x6f\x5e\xf8\x73\xb3\xf9\x6a\x3b\xbd\xdb\xd9\xe9\x1b\x85\x60\x8b\x10\xae\xc3\xa2\x2f\xf8\x7d\x35\x20\x5d\xa6\xa2\x2f\xf5\x23\xf4\x4d\xc6\x52\x72\xe6\xfc\x45\x3a\xe7\x07\x34\x4e\x06\xc8\xf7\x79\xd0\xa2\x71\x7b\xba\x4c\xb2\x82\xeb\xc1\xe4\xdb\x71\xa0\x15\x15\xae\x68\xb2\xba\xaa\xa3\x87\x20\x4b\xae\x05\x97\x70\x4d\x3a\xa4\xd4\xa0\xd2\x42\x34\xd4\xd4\xcf\x83\x79\x6a\x9a\x29\x14\xef\xf8\x52\xa1\xa8\xb7\x31\x2f\x70\x5d\xd3\xb4\xc2\x45\x28\x2d\x56\x94\x2d\x6a\xd7\xcd\xfd\xc8\x0e\x86\x41\x9a\xc9\x53\x5c\x2b\x8b\xdb\x62\xb2\x36\xd1\x8c\x1b\x9d\x55\x8b\x68\xc7\xc4\x8b\xd1\xea\x20\xe2\xf7\xbd\xe6\x17\x8b\xbe\x68\xd1\x6a\x5b\x07\x88\x50\x85\xed\xa4\x8e\x00\x8d\xc4\xb9\xa2\x2b\x40\xb4\x3c\x45\x50\x90\x7e\xa9\x87\x56\x88\x1f\x39\xe9\x79\x01\xa7\x71\x40\xc1\x57\x49\x62\x55\x84\xd8\x1b\xbb\x7b\x1a\x46\x91\xd7\xeb\x1e\x76\x70\x9f\x81\x36\xb4\xd6\x25\x0b\xb7\x5c\x58\x84\x22\xea\x11\xdc\xb1\xc3\x28\xfa\x73\xf7\x72\x06\xbd\xd2\x30\x8a\xac\x2a\x2a\x77\x27\xe8\xbf\xd7\x79\xaf\x10\x96\xa3\x36\xbc\x8a\x97\xfc\xd4\x63\x25\x52\x19\x67\x1c\xba\x98\x56\x3e\x61\x3a\x5d\x54\xee\x48\x6a\x4d\xf7\xf5\xf4\xde\xe2\x54\xd7\x2f\x93\x3a\x37\xae\xfc\x63\x96\xdd\xdd\x62\x18\xb1\x3b\xed\x5a\x79\xa8\xcc\x40\x01\x5a\x16\xb6\x64\x2f\xe9\xc4\xb1\xbc\x5d\x6b\x62\x55\xf7\xab\x24\x39\x3a\x84\x9e\xea\x3f\x95\xfd\x48\x0b\x9f\x1f\xb3\xde\x0e\x0e\x1a\x6a\xfa\x0d\xa0\xea\xda\x47\x43\xd1\x42\xbe\xf4\xce\xcb\xb7\x96\xa5\x4f\xb2\xbc\x00\xb7\x39\x46\xe3\x0d\x1d\x35\x2d\xee\x2d\xaf\x9f\xba\x21\x73\x45\xac\x0f\x33\x1f\x71\x04\x50\x25\xaa\x5d\x75\x71\x90\xe2\x59\x70\xc4\x31\x04\xdf\x6c\x93\x50\x70\x03\xad\x24\x59\x9d\xad\x2c\x39\xa9\xb7\x71\x3f\xa0\x5c\x8f\xab\x49\xf6\xfb\x6e\xf4\x6e\x8c\x27\xce\x83\x86\xf7\xd1\x74\x65\xda\x35\x23\xa2\xe1\x20\x0d\x04\x7c\xcb\x10\xfe\x94\xa0\x56\x39\x25\x34\x37\xcd\x43\xc2\x93\x4b\xfd\x72\xb5\xde\x72\x54\x15\x69\xe4\xfb\x25\x50\xd3\x37\x68\x98\xdb\xa2\x04\x19\xa1\x3f\x35\x82\xac\xcc\xce\x39\xde\xf4\x6c\x55\xa5\x1b\x02\x92\xa1\x5d\x27\xee\xa8\x7f\x65\x27\xfe\x87\xd6\xc9\x6c\xa4\x5f\x83\xf3\x7d\xeb\xfa\xdf\x3a\xf9\xef\x8d\xe3\x9f\x96\xfa\xcf\x4a\x93\xae\x20\x82\x21\xf6\xb8\x69\xde\x5a\xe8\x15\x9c\x67\x9b\xb8\xe0\x64\x91\x55\xf7\x30\xd8\x51\x96\x72\xe4\xb9\xc2\x38\x01\xc6\xba\xce\x2b\xd6\x3c\x6d\x32\x22\x38\xbd\xee\x7d\xb7\xbc\x12\xc9\xe6\xa4\x8a\xdd\x87\x2e\xfe\xdd\x5c\x64\xbf\x7f\xb4\x5f\x87\x49\x72\x13\x2e\x7f\x29\x5a\x1e\x7a\x9c\xf5\x91\xfd\x43\x52\xd6\x5c\x1c\xaf\xa8\x9e\xf2\xcd\xb5\xfe\x8a\x12\x59\xda\xb1\x41\x16\x7e\x1a\x30\xdc\x98\xa9\xc0\xdb\xdd\x9a\x3b\x34\xf6\x54\x39\x91\xd6\x16\x07\x72\x2b\x46\xe5\xcc\xd8\xa5\x4b\xd6\x61\x07\x32\x96\xa1\x93\x77\xba\x44\xcf\x7d\x36\x74\xe6\x61\x6d\xfd\xcb\xc6\xae\xda\x8f\xc3\x4a\xce\x3b\x1f\x8d\x8a\x17\xb5\xbd\x33\x41\x13\xf6\xd8\x2f\x6a\x95\xa9\xef\x04\x34\x95\x9c\x26\xb7\x0b\x91\x6d\xbf\x4b\xbf\x0c\x93\x82\xa3\x12\x2e\x6e\xee\x94\x19\xba\x64\xce\xed\x0d\xdf\x64\xf9\x03\x6a\xb9\x86\xc0\x0a\xb2\xa1\x4b\x33\xd3\xb4\x62\x96\x2e\xfc\xc0\xc3\x3b\x1b\x12\xf6\xd4\xda\xb8\x9a\x4b\xeb\x94\x5d\x86\x68\xd5\x3d\x76\x69\x58\xed\xe5\x8d\xf5\xec\x00\x0e\x56\x4f\x0a\xba\x29\xed\x44\x95\xbb\xb5\x72\xb2\xa8\xb4\x0b\xa6\x99\xd8\xeb\xb0\xc0\xab\x52\xe2\xca\x56\xcb\xcb\x4d\x33\xaf\xcf\xc6\x1a\x63\xf3\xd1\xca\x89\x69\x0a\x2b\x47\xb5\xbc\xd5\x5c\xd1\x43\x55\xd7\x96\xd5\xfa\xd8\x53\x19\xca\xb1\x67\x24\xaa\x5f\x75\xe1\x83\x98\xfe\x95\xd0\x66\x6e\xa5\xec\xd1\x56\xd7\x49\x58\x42\xde\x6a\xf0\x72\xec\xce\x49\x75\x25\x8e\x95\x52\x97\xd0\xf4\x05\x2b\x4c\xb3\x18\x8f\xf7\x75\xe3\x5d\x2e\xb2\xe6\x4c\x9a\xfa\x38\x8d\x91\x73\x8a\x35\x67\xe8\x8e\xf9\x67\x0b\xf8\xa8\x33\x55\xd5\x2b\x61\x61\x4f\xce\x8c\x85\x52\x41\x88\x9e\xaa\xad\xdc\x3d\xb3\x3a\x8c\xf7\x34\xc9\x74\x8e\xa2\x5b\x51\x5a\x96\xa2\x2c\x2d\x59\x5f\xd5\x3c\x14\xe9\xad\x6e\x98\xa1\xa5\x23\xff\x29\x16\xad\x5b\x4c\x9a\xbd\x29\x43\xf4\xf3\x39\xad\xf4\x34\x4a\xf9\xb9\xa8\x6c\x8f\x89\x97\x06\x0d\x4e\x51\x51\x96\xda\x9c\x42\xdd\x3d\x7d\x4d\xec\xaa\xd1\xee\xd5\x4d\x5a\xb9\xde\xfe\xe6\xfb\x9a\x18\x24\xfa\xed\x38\x6f\xf8\x8a\xe7\x79\xaf\x35\xb1\xef\x1b\x69\x26\xe2\xd5\x83\x01\x9b\x6c\x76\x9b\xf3\xa2\x30\xa8\x46\x94\x2c\x43\x2e\x34\x83\x1c\x49\x9d\x04\xd4\x37\x72\x5e\x64\xc9\x1d\x37\xa8\x01\x74\xb3\x53\x01\x10\x88\x41\x7f\x2d\xed\x4f\x0e\xad\x2a\x8a\x0c\x59\x2b\x46\xcf\xa5\x06\x10\xe1\xdf\x5b\xa9\x4b\x55\x3d\x50\x69\x40\x73\x66\x6c\x79\x1a\x21\x13\x91\xb1\xa7\x42\x84\xa2\x6f\x12\xf2\x3d\x0d\x93\x8f\xe1\x43\xd1\x87\xbf\x72\x73\x68\xe6\x45\x6e\x12\x07\xf3\x84\x84\xbf\xd7\x67\x03\x37\x11\x65\x23\x02\x3c\x50\xbc\x6d\xf5\x41\x9e\xb3\xea\xfa\x1a\x02\x5f\x4d\xa4\x1e\xda\xb2\x26\x4d\xa2\x75\x83\x58\xbd\xf5\xdf\x5a\xdc\xcf\xfd\x59\x80\x64\x55\x3e\xcd\x63\x1f\x4e\xf4\x41\xeb\x80\x27\x1b\xcd\x30\xfc\x61\xdf\xbd\x61\x73\xdc\x01\xb5\xbd\xb2\x7e\xc4\x33\x83\x44\x1d\x3c\x59\x01\x3a\xa9\x0d\x14\x0e\xd5\x38\xa1\xd5\x46\x6a\xcb\xb9\x20\x5e\xea\xe7\xbe\x13\x8c\x0c\xc0\x73\x23\x90\x8d\x65\x78\x09\x4e\xd3\xa4\x0c\xb3\x49\x39\x53\xe2\xfc\xa6\xc1\x3d\x05\x08\xea\x8b\x52\xf3\xfa\x73\x1a\x1e\x21\x6c\xe2\x79\x77\xbd\x42\x64\xee\x42\x5e\xa2\xa5\x5d\xe2\x45\x93\xee\x25\x60\x29\x4d\xe6\xf2\xfa\xf6\x17\x31\x21\xb5\xe9\x8f\x84\x52\x41\x97\x44\x0a\x9e\xeb\xce\xf5\x5f\x30\xfa\x7e\x2d\x4d\xfe\x07\x05\x4f\x56\x63\x04\xcb\x4e\xc8\x6b\x44\x13\x96\x9a\xa6\x75\x78\xf3\x57\xda\x7f\x05\x61\x8a\xe1\xe9\x00\x00\xf4\xd6\x4a\xc8\x22\x5b\x24\xd5\xa5\x41\xa1\x15\x53\x41\xbf\xa7\x19\x51\x8f\x7f\x07\x0e\xcd\xb3\xe2\xd1\x88\x7e\x3a\x53\x9d\x2a\xd4\x0c\xc2\xc4\x10\x28\x9b\x0f\x19\xfb\x1e\xf7\x49\xc5\xb8\x2c\x99\x9f\x06\x84\x5a\x59\x59\x8a\x6a\x7e\x31\xb7\x04\xc6\x7e\x4f\x77\x2c\x5b\x24\x3a\x46\x03\xb7\x95\xd4\xb7\xed\x23\xce\x56\xb8\x6c\xf3\xfb\x25\x47\xcf\x84\xaf\xb2\xec\x17\x38\x6b\xf7\x7f\xb1\x52\xba\xb3\x0b\xe0\x11\xdf\xe7\xe1\x92\x13\xca\x47\xee\x4b\x06\x7b\x09\x74\xf0\xef\x3d\x1d\x14\x0a\xd9\x90\x94\xaa\xae\xcd\xf9\x62\x67\x11\xcf\xd2\x5a\xb9\xe5\x02\x59\x4f\xd9\xbc\xa5\x37\xc2\x8e\x64\xb3\x50\xf9\x57\x70\xf1\x3e\xde\xf0\x6c\x27\xac\x1d\xd4\xfd\x99\x65\x2a\x7c\x27\xf0\xa7\x01\x9e\x6b\x43\xcb\xa1\x30\x7b\x19\x59\x64\xde\xf7\x34\x6d\xc1\x9c\x0a\xdf\x3d\xc8\x09\x0b\xce\xfb\x1e\x3f\x4e\x0e\x3e\xe6\x64\x91\x7b\x7f\xc7\xd5\xa2\xaf\x11\xf5\x78\xec\xba\xab\x21\x83\x1d\x5c\x6d\x12\x9c\x66\xd2\x83\x2c\x3e\x64\x29\x45\x97\x8b\x84\x55\x11\xb2\xd4\x9f\x00\x6b\x98\xfa\xa7\xc1\x3c\xf3\x81\x73\x0b\x58\x08\xfd\xa2\x85\x69\xe2\x43\xdb\x3f\x80\x15\x7b\xe8\xfe\x74\xcc\x03\x7f\x12\x54\x71\xc0\xaa\x94\xa9\x9e\xe2\x60\x0e\xd8\x99\x69\x05\x36\x78\x21\x54\x56\x9b\x42\x02\x6c\x83\x84\xc6\x3e\xf0\x8d\x01\xeb\x21\xd3\xf8\xa5\x45\x61\x80\xe1\x54\x92\x3f\xaf\x7f\x6f\x6d\x17\x62\x61\xbd\x17\xa3\x03\x41\x0d\xdc\x98\x50\xe9\x0e\x0e\x2b\x2a\xa6\x31\xa1\xf1\x9e\x7e\x5c\xf3\x3e\x4f\x90\x83\xeb\x01\x53\x26\x68\xce\xaa\xeb\xf1\x68\xc6\xd4\xb5\x96\x5a\x67\x62\x0d\xf3\x2c\x42\xc3\xbe\xab\x5d\x75\xdc\xca\xe1\xe0\x27\x69\x28\x3c\x75\x9b\x7c\xe9\x2e\x0e\xda\xf0\x52\x3a\x1e\x0b\xe0\x53\xb5\x25\x8c\x27\xba\xfd\x1e\xc8\x9d\x78\xc1\xe0\x30\x07\x07\xa7\x6a\xc3\x03\xb6\xb8\xca\x4d\x63\xb5\xba\xe8\x50\x10\x5a\xef\xa9\x00\x61\x1b\x37\x55\x8b\x94\xe5\xad\x95\xf9\x69\x60\x9a\xf0\x57\x1e\x9c\x6a\x05\x73\x2c\xf7\x40\x15\xcf\x04\x0d\xba\xfe\x89\xb9\x29\x34\x53\xd7\x5e\x0b\x36\x63\x0d\xb1\x95\x66\xe0\x6b\x76\xf2\xc1\x7a\x7b\x17\x26\xe5\xd7\xa9\xe0\x79\x1a\x26\xe5\xf7\x61\x7a\xcb\xcb\xfa\x2a\xec\x52\xc6\x7b\x29\xd1\x22\xfe\x6f\xdf\x7f\x4d\x90\x16\x3f\x3b\x99\x1f\x23\x32\x1d\x8d\x27\x06\x13\x2b\xb2\x84\x03\xc1\x55\x8f\xf6\xc7\x30\x4f\x4d\x93\x9b\xe6\xd7\xb5\x3f\x50\xb8\xe1\xa4\x9b\xa5\xba\xfb\xb8\x6e\x69\x50\xb7\x84\xfe\x7b\xf6\x86\x17\x45\x78\xcb\x29\x97\x04\x07\x03\xff\x3c\x4a\x21\xf4\xdb\x2a\x67\x6b\xde\x5b\x14\x47\x5f\x59\xd5\x69\x97\x90\x3d\x02\xe6\x6f\x2d\xec\x69\x76\xc3\xaf\x2c\xf2\x14\xaa\xa8\xf0\x9d\x88\xc8\x6f\xbe\xbb\x52\xbe\x8b\xef\xb2\x30\xe2\x91\x41\xbf\x02\x12\xd7\x9b\x57\x06\x43\xfe\x8a\x54\xbd\xb5\xe4\xbd\xb0\xf2\xa5\x0f\x53\xff\x26\xe7\x9a\x13\x5b\xd2\xff\x96\x4e\xaf\x3b\x64\xbc\x35\xbd\x5a\x8e\x0d\x0f\x5b\x5f\xd3\xe8\x52\xcc\xff\x53\x18\x0b\x4f\x3d\xb7\x16\x9d\x25\x8d\x08\x16\xe3\xb1\xaa\x19\x73\x3e\xda\xaa\x02\x52\x96\x56\xfd\xc2\x86\x0e\x1d\x3a\x43\xf4\x63\x6f\xe5\x7f\xe9\x94\xe5\xdf\x5a\x0b\x23\xa4\xfe\x63\x50\x89\x17\x31\x1f\x0e\x8a\xc9\xb1\x51\x63\x99\x6d\xb6\x09\x17\x68\x2f\x12\xca\x0c\x3f\xc0\x32\x28\x4b\x84\x97\x3a\xf2\xe9\x5f\x4c\x73\x78\x10\x07\xdb\x8e\xb2\x1f\x96\x79\x96\x24\x8b\xd6\x64\xab\x16\x89\x67\x85\x3d\xd1\xac\x8f\xcc\xdd\x61\xc6\x6a\xe2\xe4\xf2\xf9\xb2\x73\x47\x71\x73\x7b\x9b\xa4\x5c\x4b\xe6\xd0\xa4\xd6\x0f\xd0\x9d\xb2\x5f\x44\x8b\x0d\x8d\x57\x81\x53\x2c\x9e\xf4\x97\x83\x38\x1d\xc4\x00\xd2\x9c\x28\x97\x0e\x9a\xfb\xcb\x80\x0e\x1d\x69\xee\x57\x39\xc6\xd7\xaa\x17\x79\x5c\x1f\x3a\xb8\x11\x96\xa5\x55\xe0\xb5\x6d\x3b\xd8\xca\x17\x56\x5a\x29\xae\x33\x42\x53\x6c\x9b\x78\xd6\x8e\xa5\x34\x3d\xd0\xee\x55\xc6\x7c\x9a\x4c\x3c\x95\x06\x3a\x4a\x41\xb0\x7c\x91\xa0\x95\x77\x6a\x09\xe8\x50\x4e\x8b\x45\xe6\x29\x11\x0e\xa6\x2c\x69\xf5\x49\xf3\xc4\x88\x17\xc2\xdb\x2d\xaa\x7e\x10\x2f\x59\x40\x26\x07\x32\x79\xe1\x9e\xfe\xc8\x4e\x3e\x8c\x37\xc5\xf8\x84\xfe\x17\x3b\x19\x4b\xfb\x02\xa2\x0b\xa8\xfe\xd2\x16\x94\xdb\x22\xfb\xdb\x76\x5b\x5b\x26\xd4\xd9\xfe\xa3\x65\x2c\x54\x19\xa3\xfd\x48\x8d\x4d\x31\xd6\x62\xf2\xfc\x17\xfd\x8b\x34\x67\xf8\xcf\xbe\x25\xd6\x56\x89\xcb\xa0\x4d\xfa\xfb\x70\xa4\x29\xcc\x9b\x2e\x3e\x43\xea\x11\x17\xb6\xba\x40\x55\xda\x65\xc0\xd3\xe8\x99\xbd\x8b\xa3\xd1\x68\x8f\xbf\xcc\xa5\xcf\xf4\x5b\x9f\x31\x80\x52\x9f\x60\xdd\xd7\x6b\xeb\xc4\x68\x79\xda\xd3\xff\x94\xd7\x4f\xeb\x61\x20\xdb\x25\x98\xf0\x94\x48\x5f\x8a\x54\x1b\xff\x7a\xaa\xe7\xa3\xca\x8e\x59\x1c\xdc\x9b\x4f\x50\xb2\x45\x0b\x2e\x8e\x5d\x1c\x29\xd5\x4d\x38\x82\x2a\xda\xf1\x81\xa4\x4d\x90\xcc\xff\x0f\x4b\x90\x80\xa5\x9d\xdb\x46\xe5\x97\x9c\xb4\xaf\xc6\xcc\xba\x57\x57\x6b\x13\x2f\xd1\x1d\x83\xa1\xb4\x5a\xf6\x3a\x43\x87\xe3\x59\x2b\x41\xf6\x60\x4f\xc3\xe5\x92\x17\xc5\x31\xf9\x78\x53\x7d\x59\x8a\x3e\x99\xad\x30\xcd\x3a\x4f\xba\xa8\x75\x31\xd0\x45\x4f\xaa\x66\x0a\xf9\x4a\x53\x42\x1b\xb5\xe8\x22\xf5\x04\x39\x14\x3c\xb5\x94\x77\xdd\xe9\xd6\x17\x77\x8e\x27\xa5\xfa\x15\x76\x53\x66\x89\xce\xf5\xc1\x82\x2c\x04\x8a\xa6\xff\x03\xfa\xc2\x60\xc0\x24\x4e\x07\xf9\xc2\x17\x81\x27\x5a\x92\x4c\xa2\xdb\x47\x4b\x86\x41\xdd\xcb\x92\xfb\xc2\x4f\x83\x60\x6f\xe9\xa0\x00\x1a\xaf\x5d\x76\x2b\xef\x92\xff\x14\xe2\x29\xb6\x50\xd5\xd9\xf9\x0a\x87\x9a\x75\x58\xbc\x09\x45\xf8\xdb\xb1\xbe\x19\xbb\x69\x0e\xbb\xfd\x11\xc0\x66\x41\xf1\x6f\xd0\xf9\xe1\x19\xfd\x87\xfa\xe5\x5c\x99\x3b\x3c\x49\x5b\x87\xe7\xd7\xfb\xf2\xda\xaf\x9e\x03\xf2\x0c\xef\x5d\x3b\xf1\x5f\x8d\xff\x11\xe8\xd4\x26\xe5\x07\x76\x75\xcd\xb4\x77\xaf\x61\x21\x78\x4b\x95\x11\x85\x22\x1c\x1b\x23\xa1\x9b\xc0\x1a\xe3\x67\xa6\xd1\x8d\x24\x70\x80\x55\x78\x63\x6f\xf7\xb2\x7e\x79\xce\x4b\x7b\xe8\x93\x21\xf2\x1d\x6e\x8d\x78\xab\x7e\x98\x14\xdc\x90\xbb\xae\x65\x00\x65\x97\x41\xa4\x30\x54\x16\x67\x8c\x8d\xf8\xc8\x30\x16\x23\xee\x35\xd6\xaf\x8b\x6f\x7e\xf8\xee\x5b\x69\xc5\x80\x4b\x87\xec\xad\xb4\x3a\x4e\x66\xe4\x69\xff\x0f\x0d\x89\xa5\xa7\x54\xca\xda\x81\x0b\xd3\xfd\xa3\xae\x16\x3f\x98\x4a\x95\xed\x1f\xb6\xfa\x68\x71\x52\x96\xdf\x68\x6f\x7b\x1a\xb5\xcb\xb4\x96\xe1\x3f\x6c\xb9\x4c\xab\x3e\xa8\x85\xf3\xa6\x5b\x84\x3c\xfd\x43\x71\x55\x2a\xd6\xe3\xcf\x9f\xaa\xf5\x9b\x6e\xad\x3f\x1f\xad\xf6\x9b\x56\xb5\xc8\xa6\x68\x86\x00\x07\x8d\x74\x42\xf1\x4b\x9d\x30\x0d\xe1\x40\x1d\x6b\x66\xad\x2d\x34\x92\xf6\x30\x9a\xba\x07\xb5\x41\xff\x40\x72\x12\x4b\x23\xb0\x58\xd3\x9a\x0f\xbf\x91\x5f\xa8\xa1\x80\x08\xc8\x52\x18\x44\xdd\x6a\x95\xd6\x2e\x87\x72\x35\x87\x78\x54\x80\x76\xac\x9c\xc1\x8b\xe4\xab\x9b\x10\x68\x12\x5b\xa5\x82\xea\x3f\xac\x5c\x89\x58\x4f\x61\x9f\xe7\xd2\xbf\x12\x6f\x7c\x9e\x7f\x83\xb8\xd0\x6d\x56\x8f\xe0\x99\xa9\x87\x43\x91\x8b\x52\x35\xe3\xb1\x57\x67\xb1\x25\x7e\x55\x97\xfb\x13\xe2\x7d\x79\x70\x69\x7f\x15\x63\x23\x5e\x59\xb1\x46\x72\xeb\x70\x88\x35\x39\xb0\xd2\x0a\x66\x94\x13\xb2\x48\x3d\xfd\x0b\x0e\x45\x4f\x9e\x7f\xbe\x43\x30\xe1\x70\xf8\x57\x11\x5a\xe9\xe1\xf1\x4f\x7e\x19\x3a\xc7\xf0\xb2\x73\xbf\xff\x61\x63\x0a\xb7\x1a\x00\x28\x3d\xbb\x42\xaf\x5f\x77\x7c\xc7\xfb\x37\x5c\x80\x47\x63\x72\xc5\xd0\x27\x74\x75\x6f\x90\x91\x81\x85\x0c\x9a\xb3\x6f\xea\x0d\x89\xa6\xa6\x89\x31\x9e\x0f\x2e\x91\x87\x5c\xda\x5a\xd0\xad\x73\x52\x42\xbc\xbc\xd1\xdb\xe0\xdd\x7b\x7b\x1a\xf1\xc3\x4e\x91\x27\xbc\x30\x0f\xda\x97\x71\x81\xd9\xa3\x8d\xb9\x64\xe3\x79\x7d\xe1\x15\xde\x7d\x55\xbb\x4e\xb1\x47\xfb\x67\xcc\x06\x47\xc4\x42\x86\x99\x35\xe2\xb4\x96\x97\x33\x75\xf9\x8c\x56\x26\x1f\x8f\xd1\x29\xd7\x82\xb6\x98\x32\x84\xad\x42\xf8\xea\x65\x09\x55\x3b\x4e\x8c\x2a\x2f\x5a\x2b\x16\x75\xf8\x3f\xda\x6a\x34\x72\x71\x13\x74\xee\x1d\xe6\xa6\x89\xab\x15\xf5\x2c\x28\xa8\xb0\x80\x42\x34\x3d\xed\xbf\xa9\x5c\x01\x1e\x73\x18\xf3\x9a\xd0\xc8\x29\x48\x91\xe8\xd5\x80\x4e\xe9\x93\xd4\xe2\x1c\x17\xb0\x1f\xc8\x79\x34\x42\xe4\x8b\x7a\x96\xd3\x40\xe2\xe8\x01\x65\xea\x9b\x25\xd9\xd3\x49\xa5\xa6\xee\xb3\x05\xb2\x04\xe3\x94\x33\x00\x2f\x4d\x01\xd8\x5d\xa4\x7f\x91\x2e\xaa\xc9\xad\xa8\x5b\x7d\x39\x46\xcd\x8c\x79\xfd\xf8\xde\xc6\x8d\x7a\x91\xcd\xdb\x78\xa0\x16\x03\x55\x53\xcc\xa5\x7d\x7d\x35\xb1\xc0\x43\xa1\xbd\x4d\x33\x79\xda\xea\xe9\x41\xcf\xcf\xac\xc1\xfe\x6a\x96\x09\x0f\xf3\xff\xfc\x64\x4d\x0a\x71\x24\xda\x53\x3f\xe8\x15\x0c\xea\x5c\x9d\x4b\xb3\xb6\xf8\x49\xee\x0f\x34\x6c\x19\x6a\x15\xba\xc8\x6d\x3c\xce\xcb\x32\x6b\x1d\x98\x63\xea\xc7\x01\xd9\x23\xbb\xf6\xa9\x19\x94\x33\x82\x8e\x41\x6a\x65\x62\x24\x2c\x2b\x55\x64\x21\xf6\xc3\x80\xf2\x16\xd2\xca\xfb\x59\x10\x31\x61\x33\x18\x8d\xa8\x7a\x43\x5c\x2c\x9a\x13\x5c\x61\xe9\x42\x3b\x51\x4b\x8e\x72\xbc\xc2\x76\x1c\x2c\x80\xcf\x8a\x9e\x5f\xdb\x25\xb9\x8e\x46\xd6\xc2\xf3\xf9\xdb\x00\x3f\x5c\x47\xa3\x92\x9c\xa8\xcb\xe8\x68\xd6\xbe\xe8\xf6\x43\x75\x9f\x30\x61\x25\xb1\x8c\x51\xce\x47\x06\xc1\x03\xe0\xff\x0a\x9e\xd7\xd7\x04\xc7\x9c\xf9\xc6\xfb\x6c\x6b\x50\xe3\xfb\xf8\x76\x2d\x0c\x6a\xfc\x39\x13\x22\xdb\x18\xd4\x78\xc7\x57\xc2\x08\x68\xc8\xd9\x81\x08\x80\x16\x7d\x51\x8f\x07\x9a\xa1\x5d\x27\x0c\xb4\xb4\x65\x81\x43\x59\xb6\xd9\x66\x05\x8f\xd0\x7e\x30\x44\xf6\xec\xfb\x2c\x53\x71\x7b\xac\xdf\x51\x6d\x59\xb6\x2a\xb1\x96\x18\xdf\xbd\x93\x4f\x81\xf4\xc0\xc1\x53\xad\xdd\x34\x4b\x91\xf1\xb3\x38\x93\x17\x92\x15\xe2\x21\xc1\x7b\xe4\xf0\xa2\xf3\x52\x79\xb8\xb4\x52\x4d\x13\xb9\x3c\xd3\xac\x4b\x3f\xda\x4b\xa4\x47\x86\xca\x61\x90\x3d\xdd\x75\xef\x10\xae\x75\x5e\x34\xa6\x21\x7b\x92\xa8\x17\xcb\x43\x5b\xe8\xc7\x41\xd5\x8c\x1f\x07\xb4\x79\x64\xa2\xba\x3a\x08\xb3\x02\x11\xaf\xee\x99\xc5\x9d\x84\x50\x41\xb4\xdc\x50\x51\x73\xea\x6b\xd8\xef\x2d\xef\xeb\xc4\xc4\xa1\x05\xcb\x0f\xc3\xa3\x0e\x72\x7b\xb9\xcb\x2d\x3d\x86\xbd\x3e\x25\x6a\x93\x43\x1b\x86\x25\x03\x2c\x46\x15\x51\x8a\xa1\x6d\x2d\xcc\xf0\xed\x6e\x73\xc3\x73\x5f\x04\x0b\xc3\xf0\x8c\xed\xbd\x41\xe8\xae\xe5\x7e\xd1\xc9\x56\x96\x90\x69\xc8\x58\x62\x9a\xa3\x25\x31\xcd\x8c\x4b\xc3\xe4\xba\x39\xe9\xec\xbb\x33\xcd\x9d\x3f\x0d\xd0\xa7\x1e\xd9\xb4\xe5\x09\x9b\xd0\x84\x25\x65\x09\xe9\x74\xc7\x46\xcb\xb2\x74\xe5\x22\x7d\x94\x70\xc1\xce\xee\x46\x09\xa1\x96\x3b\x8e\xc9\x73\xcb\x1d\x5b\x31\x74\xfb\x64\x59\x96\xf6\x29\x21\x2f\x98\x63\x9a\x56\xc8\x1c\x42\x77\x27\x2c\x9e\xef\x9e\xb3\x09\x3d\x28\xac\x74\xe8\x7b\xcd\xd1\x60\xc7\x46\xbb\xb2\x84\x16\x1d\xd8\x92\x7d\x37\x58\xec\x46\x16\xfc\x8e\x5c\xf2\x3c\xf5\x27\x81\x37\x42\x35\x44\x0e\x84\xc0\xde\xa5\xb1\x60\x09\xcd\xed\x42\x84\xb9\x60\x3b\x9a\xdb\x3c\x8d\x18\x7a\xae\xa3\xec\x64\xc5\x11\x2f\xaa\x49\x8b\xb8\x1e\xd0\xb7\xbb\x00\x72\xcd\x4b\x8a\x66\x6c\xc5\xf5\x03\xbf\x8c\x3a\x6b\xdf\x64\xd1\x43\xeb\x82\x93\xb4\xe3\x01\x87\xc1\x39\x14\xfe\x0a\x0d\x7f\xe9\xa7\x6e\xea\xac\xf1\x5e\xb2\x15\xc6\x4d\x92\x2d\x7f\x31\x08\xc5\x2e\xb0\xac\x75\xcb\xe9\xba\x7b\x89\x27\x30\xc2\xd2\x6a\xc2\xa1\x61\x13\x05\x25\x7e\x11\xce\xe3\xd1\x88\x58\x39\x86\x15\x57\x0b\x11\x5d\xd4\xf3\xf6\xf2\xa3\x62\x61\xd5\x3d\x80\x59\xc8\x00\xf1\x25\x35\xce\xb5\x21\x94\xa5\x0c\xa3\xe0\xc7\x80\x95\x9d\x4a\x18\xde\x43\x87\xab\x3b\xef\xae\xee\x84\xa3\xe5\x8b\xac\x37\x92\x47\x47\x4f\xb6\x38\xd4\x5a\x94\x29\x54\xb2\xf3\x5a\xc3\x34\xad\x5c\x27\x30\xf0\xba\x1a\x97\xd4\x68\x65\x32\x62\x3a\x8c\xb0\xd3\x1f\xf8\x72\xcc\x4c\xba\x58\x67\x1f\x7b\x56\xe2\x5a\xed\xb5\xc8\x37\xaf\xe3\xa8\xcf\x50\x40\xe5\x21\x7b\x2a\xb2\xdb\xdb\xa4\x6f\x1b\x36\x6e\xb2\x2c\xe1\x61\xcb\xef\x77\xa1\x0e\x1a\xd0\xb2\xa5\x4c\xe4\xa1\x85\xea\xf9\x60\xfb\x4f\x54\x3b\x8b\x47\xf9\x5b\x95\xac\x5e\x65\x61\xc9\x98\x23\x41\xbe\x51\x72\x84\x2a\xee\x53\x89\x91\xa0\xf0\x32\xf8\x0d\x67\x27\x6d\x87\xa8\x8e\x3f\xd4\x49\x4c\xaf\xa0\xf8\xb3\xf2\xc3\x26\x8b\x76\x09\x7f\x56\x5e\x9f\x58\x0b\xef\x9f\xe1\x5d\x58\xf2\xe5\x26\x24\xc5\x32\x8f\xb7\xe2\x24\xa6\xb7\x9c\x3d\xc9\xc0\x72\x9e\xef\x52\xa3\xba\x16\x69\xb3\x4b\x44\xbc\x4d\x38\xfb\xa2\x7a\xfa\xe2\xa5\x41\x8d\xe6\x42\xa4\x80\x8a\x35\x0f\x23\x59\x08\x5d\x57\xe5\x77\xf5\x18\xd0\x65\x96\x78\xfe\xa4\xfe\xf8\x62\x99\x25\xb7\x79\xb6\xdb\xca\x6c\xf5\x9b\x56\x42\xe4\xad\x02\x02\xd6\xa6\xaa\x14\x1f\xf5\xac\x91\xe7\x4f\xbb\x59\x5f\x88\x5c\x65\xcf\x5f\xf6\x94\xf9\x59\x79\x44\x7a\xbe\x43\x0d\x83\x1a\x46\xa0\x51\x92\x3b\xfd\xf6\xdb\x5a\xe4\xf0\x89\xdb\xf8\x0e\x6f\x7b\x3b\x72\x65\xa3\x8c\xa1\x43\xbc\x23\x55\x75\x2f\x3d\x5a\xf4\xdc\x83\x54\x55\xe1\x07\xb4\x23\x2d\x94\x3e\x76\x8b\xda\xca\x94\x07\x14\x9d\x88\xea\x71\x3d\x1c\x5c\x11\xec\x20\x5d\xac\x0e\xee\x2f\xf2\x79\x3a\x1a\x11\xb9\x46\xb9\x9f\x06\xd4\xb8\x4d\xb2\x9b\x30\x79\x7b\x17\x26\x06\xba\x30\x4b\xc2\x21\xba\xdf\x08\xd9\xdf\x72\x3b\xdb\x0a\x9c\x47\x26\x9f\xe3\x2c\xa5\xb7\xdc\x46\xd8\x43\x92\x58\x65\x99\x80\x87\x6a\xbe\xf1\x39\x94\xba\xb1\x5b\x34\xc6\x0c\x23\x2c\xb1\xc6\xd7\x08\x51\xff\x15\xe0\x77\x69\xfe\x69\x71\xfd\x71\x34\x3f\x69\x26\xe9\x68\x48\xa7\x2a\xa0\x08\xdd\x32\xa1\xe8\x77\xb5\x0b\x7c\x99\x87\xb7\x48\xc8\x49\x15\x2d\xc9\xa1\xeb\x06\x00\xd1\x8b\xf5\x3c\x92\xae\x10\x18\xf2\x29\x0a\x88\x0c\x81\x19\x93\xae\x9a\x24\x26\xa4\x82\xf3\x8a\xc6\x5a\x48\xa4\x38\xf0\xe2\x46\x3b\xf2\x4a\xc9\xbc\x62\x25\x26\x09\x19\x46\x73\x68\x5d\xff\xd5\xf5\xb2\x8e\xe2\x3b\xa0\xb6\x05\xb3\x36\x6a\x57\x8f\x49\x59\xfa\x12\x4b\xc9\x61\xe0\xfd\x25\xbb\xe5\x7e\x11\x94\xe5\x2d\xb7\x2b\xb4\xa6\xa1\xe6\xa8\xbc\x84\x1d\xf6\xd1\x5e\x8b\x4d\xf2\xd7\x9c\x2b\x6b\xdf\x98\x8c\x96\xb0\xd7\xee\x30\xa2\x80\x0c\x63\x14\xb2\xb0\x89\xe7\x3c\x6f\xc6\x17\xea\xc6\xca\xd4\x0a\xd9\x56\x37\xa7\xd6\x63\xa5\x32\xc3\x50\x01\xcd\xe4\x11\xbe\x1a\xdc\x7b\x7e\x2f\xb9\xce\xea\xd2\x8b\x6d\xa7\x14\x4c\xc5\x3c\x66\x2b\x3f\xaa\xa2\x58\xe4\xe8\xa2\xa4\x2c\x12\x63\x9a\x93\x97\x63\x97\xa0\x45\x93\x0a\xb9\x55\x03\x39\x61\x52\x89\x1f\xb2\x3b\x6e\xb5\x81\x1b\x13\x6a\x48\xea\x66\x60\x88\xae\x07\x6e\x85\x84\xca\x8b\xa7\x77\xd8\x62\xe8\xef\xb0\xc5\xab\x6a\xa6\xaa\x98\x8d\x06\xa9\xdd\x5d\xe3\x7a\xab\xd9\xee\x87\x87\xa6\x5d\x47\x91\xac\xd5\x95\xf0\xc8\x3c\x0b\x76\xf0\xe5\x33\xf7\xc8\x21\xed\x47\xa6\xa3\xfd\xb9\xba\x4d\x8f\x1a\xcd\xbd\x7a\xdd\x3c\xea\x6e\x39\xd1\x73\x0b\x1d\xbd\x92\xe1\x45\x5f\x27\x59\x8a\x96\xeb\xf0\x8b\x93\x36\x74\x48\xe7\xad\xc6\x92\x2a\x22\x29\x6d\x7b\xc6\xc3\xe4\x86\x39\x0f\x5f\xde\xbf\x38\xa9\x9f\x0d\x7a\x65\xa7\x19\x56\xff\x5a\x96\x62\x18\xd3\xf4\x48\xcd\x2d\x9f\x75\x4b\xee\x83\x8f\xb0\x91\xfd\xc2\x1f\x4e\xe8\xcf\x6a\x47\xdc\x64\xbb\x82\x97\xdb\x2c\x4e\x05\xcf\xcb\xa5\xf4\x3b\xde\xf0\x74\x57\x46\x79\x78\x5b\x46\x79\xb6\x25\xe5\x32\x89\x97\xbf\x9c\xd0\xef\xb0\x8c\xff\xc1\x0e\x9e\x13\x38\x2c\xda\x96\x3d\x22\x25\xd1\x88\xca\x7b\xae\x5f\x7a\x50\x27\xdf\x6b\xc9\xda\xfd\xe3\xdf\xf2\xb6\x57\x33\x63\xac\x63\x26\xa5\xbe\x84\xed\x70\xb3\x8d\x15\xf9\x7e\x8f\x8e\xce\x96\x81\xd1\x6a\x91\xa7\xd0\xb8\xc1\x77\x9d\x90\x71\x68\xa9\x43\x8b\x8e\xce\xb6\xd6\x72\x21\x85\x29\x06\x71\x8f\x8c\x25\x45\x39\x6b\x5e\x96\x29\x4d\xeb\x43\xba\x20\xd8\x40\x81\x0d\x08\xbf\x08\x68\xac\xf1\x54\xf1\x4a\x39\xec\xe4\x32\x4e\x0d\x63\xd9\xc2\xca\x58\x4a\x73\x56\x57\xe1\xa9\x0f\xa6\xd9\xa3\x76\x4b\x21\x7b\x4e\xf3\x3a\xb3\x7a\xd5\xba\xa0\x42\x9f\x67\x24\x63\xf7\xbc\x5e\xcf\xc3\xac\x0e\x5c\xa0\x07\xee\x8f\xf1\xd4\x91\x51\x2b\xeb\x3d\xfb\x5a\xc4\xce\x56\x78\xf1\x52\xd8\x6f\xf3\xb8\x27\xf6\xed\x2e\x8e\x58\x88\x3f\x18\xbc\x0f\xdf\x1f\xf1\x67\x34\xc2\x4b\x35\x7a\x24\x35\xfc\x8e\xa7\x02\x85\x11\xca\xe5\x22\xa3\xb9\x54\x49\x37\x33\xf5\xb6\xd6\xd7\xa4\x0b\xeb\x9b\x5a\x7d\x31\x74\x51\xae\x5a\x57\x00\x69\x4f\xf5\x45\xdf\xde\xd0\xa5\x6b\xbc\x91\x26\x3f\xd0\x43\x49\x49\xbe\xda\x6d\xb1\x59\x3c\xd0\xb9\x26\xb7\xe3\xe2\x7d\x1e\xdf\xde\xf2\x5c\x79\x7f\x09\xe9\x3b\x5a\x19\x6b\x13\xab\x6a\x11\x23\x29\x84\x09\x9e\x17\x9f\xf6\xc4\x8e\x78\xc2\x6f\x81\x18\x57\x57\xf5\x8b\x6c\xfb\xd7\x3c\xdb\x86\xb7\xa1\x1c\x6c\x3d\x03\x71\x8f\x15\xd3\x37\x8d\x8c\x5a\xd0\x18\xe5\xab\x55\xcf\xa8\xea\x87\x45\x68\x3c\x64\xcc\xca\xda\x1d\x27\x65\x99\x2f\x5a\xc5\xf1\x9e\x6e\xbc\x13\x7d\x08\xb3\x5f\xeb\xcb\xa1\x47\x5f\x6f\x36\x3c\x8a\x43\xc1\x5b\x5d\xa3\x1c\x3d\xc4\x78\x2a\xde\x48\xb2\x80\xc2\xa0\xbb\xe6\xde\xa0\xb8\xd1\x62\xb4\x9a\x52\xba\xe5\x0a\x26\x42\x82\xce\xaa\xa5\xdd\xb1\xef\x04\xf4\xd1\x46\xe3\x8a\x46\x29\x4e\x68\x5c\x07\x9c\xae\xdc\x45\xe9\xa7\xfa\x87\x8e\x2e\x8d\x40\xb2\x11\x82\xc3\x2e\xd6\x46\x80\xf7\x9c\xec\x55\x1a\x7b\x92\x3c\x94\xf7\x74\xe8\x94\xd7\xba\xfc\x42\xe7\x6a\xaa\xcb\x27\xe8\xa6\x6a\x86\xc8\x6b\x22\x50\x0f\x63\x2b\x8c\xc2\xb3\xa0\x15\xb3\x94\x54\x29\x34\x63\x71\x1d\x2a\x03\xe5\xd9\x47\x3c\x21\x43\x8e\x66\x1a\xd5\x32\x49\x3b\xcb\x84\x5a\x4b\xb6\x91\xfd\x2f\x48\x59\x6a\x6f\x18\x6f\xd4\x0a\xd9\x46\x35\x89\x11\x32\xeb\x37\xa6\x6b\x57\x3e\xe1\x6c\xf5\xd8\x80\x4c\xcd\x16\x8f\xd0\x95\x4f\xc8\xf8\x03\xf2\x13\x9c\x04\x31\xde\x44\x25\xdf\xd1\x8c\xe1\xd4\xa5\xc9\x84\x26\xcc\x52\x4a\x0a\x83\xe8\xfa\x67\x60\xa4\x2a\xa6\x2f\x41\xe5\x33\xbb\x61\x56\xc1\xbe\x53\x0c\x97\xf0\x93\x40\xc5\x40\x72\x03\xba\x66\x56\xe1\x4f\xd4\xad\x4a\x2a\x20\x8f\x5d\x45\xe4\x21\x34\x32\x4d\x6b\xcb\xba\x8b\x2e\xc2\x45\x47\x23\x66\x65\x8b\x6d\x6b\xe9\x79\x5b\xfb\x26\x4e\x23\x75\x33\x43\x44\x8f\x96\xdd\xfd\x3f\xd4\xfd\x09\x97\xdb\x36\xf2\x2f\x0c\x7f\x95\x16\x5e\x0f\x2f\x60\xa1\xd5\x92\xb3\xfc\x27\x94\x61\x1e\xc7\x4b\xe2\x89\x3b\x76\x6c\x27\xb1\x87\xad\xe9\xc3\x96\xa0\x16\x63\x8a\x54\x48\xa8\x37\x51\xdf\xfd\x3d\x28\xac\x5c\xd4\x71\xe6\x3e\xf7\x9e\xe7\x89\x67\x5a\x24\x08\x02\x20\x96\x42\x55\xa1\xaa\x7e\xcc\x9d\xc9\x40\x84\xb7\x05\x2d\xca\xf4\x12\xca\xb8\x50\xe7\x97\xa5\x25\x20\x39\x95\xc3\x13\xaa\xc1\xa2\x66\x98\xc3\x82\xfa\xf1\x38\x42\x18\xf4\x03\xc1\x3a\x14\xff\x23\x47\xde\x12\xa8\x95\x8e\x36\x34\x42\x64\x2f\xd7\x3c\x5e\xb2\xb9\xe2\x8a\xb1\xbe\x64\xf1\xcc\x11\x96\x67\xc5\x36\x17\x6c\x4c\x37\x72\x01\x6e\x37\x41\x30\x98\x0c\x18\xd3\x77\x2e\x6a\xc6\x8a\x26\xa0\x8d\x6c\xdb\x34\x49\x9a\xd4\xb1\x73\x5a\xd0\x84\x10\xba\x91\x0f\x64\x3f\xcb\x5f\x53\xd2\x96\xd0\xad\x99\xdc\x66\xb2\x36\x13\x98\xea\x0e\x42\x68\x11\x2d\x8d\x63\xcc\xb2\xd9\xde\xe1\x90\x8e\xe9\x96\x84\x9a\x63\xdd\x3a\x8a\xad\xd6\xa6\xfc\x48\xef\xac\xed\xbf\x58\xa3\xee\xd4\x39\x08\x1a\x2b\x36\x08\xfc\xa5\x64\xa2\x93\x7e\xe1\x94\x4d\x97\xf8\x7f\x6b\xd6\xaa\xea\x0e\x4e\x3e\x18\x5e\x86\xcb\xfb\x27\x2f\xc0\x99\xd0\x8a\x55\x80\x2a\xd6\xc2\x6d\x3a\x3b\x1b\x11\x34\x34\x73\xe8\xec\x6c\x84\xa3\x70\xf4\xf0\xec\x6c\x54\x13\x44\x86\x08\xcb\xab\x07\x04\x01\x70\x06\x5b\x7a\x91\xc0\xa6\x64\xcb\x96\x10\x08\xac\x08\x82\x8b\x01\x63\xdb\x91\x99\xf8\x75\x0d\x60\x00\x72\x54\x21\x5d\x0d\x7b\x15\x04\x83\x4a\xcd\xdf\xed\xc8\x4e\x5f\xb9\xef\x04\x41\x09\xf9\x2a\x8b\x4c\x89\xd1\xc3\x87\x92\xda\x94\x75\x3d\x70\xe9\x72\x4a\x2f\x1b\xd1\xbf\xfc\x77\x5a\x53\xe6\xf8\x98\x6e\xb4\x96\x2f\x08\xcc\x95\x9b\x95\x64\x9a\x04\xc1\x60\xe9\x36\x24\x29\xec\x24\xe5\xa2\xb8\xce\xed\x92\x30\x09\xe6\xad\x15\xf5\x88\xe6\x9d\x6f\xaa\x89\x39\x5d\xb8\x87\xe6\x80\x11\x96\xa1\x8b\x1d\xbd\x38\x4a\xf3\xa3\x39\x31\x63\x69\xcf\xec\x16\x43\x39\x29\x60\x9a\x0e\xc6\x64\xda\xb6\x5b\x99\xc3\x8c\xb4\xb9\x91\xaa\xe4\x48\x4d\x48\x44\xf6\xe0\xa0\xb5\xe9\x78\xbe\x34\xfc\x0a\xe5\xb4\xb7\x93\x68\x99\xde\x48\x0e\x6c\x0e\x27\x2c\x4a\x74\x6b\x1f\xe5\x01\x55\xf6\xf8\x03\x64\x6a\x03\x26\x25\xae\x54\xb4\x37\x98\x57\xdb\xce\xe4\xb4\x4f\xf5\x81\x80\x94\x5d\x59\x45\x05\x9b\x4c\xc5\xe3\x76\x4d\x10\x6f\x65\x1e\x0b\xcf\x84\x5a\xe3\xc1\x56\x6e\x4e\x03\x2c\x85\x3a\x12\x1b\x6c\x25\x8f\xf1\x5c\x7f\x71\x5d\xc3\x50\x35\xd2\x3c\x97\xfc\xca\x4a\xf4\xa6\x8d\x9a\xf0\x54\x7e\x26\x9a\xa9\xe8\x2f\xb8\x60\x49\x2c\x86\xc3\x19\x81\x99\x9a\x56\x1e\xf3\xf0\x5e\x14\x9b\x0d\xd8\xf6\xc2\x0e\x5e\x8d\xe6\xdb\xb2\xe4\xb9\xd0\x4d\x2b\x46\x3c\xe3\x6b\x9a\xcb\x52\x52\x56\xd8\x6a\xe2\xdc\x2b\xae\x8f\x29\xf1\xca\xad\x46\xa5\x5d\x15\x7a\x0a\xa6\x23\x3f\xc5\xcf\x60\xe4\x60\x7f\x1d\xe1\x4a\xd7\xfb\xe6\xe2\x0f\x96\xd2\x6a\x24\x77\x1f\x96\xc2\x8f\x33\x33\xc3\x25\xc3\x1d\xee\x33\xb5\x6b\x57\xb3\xa1\xaa\xa0\xba\x4e\xcd\xa7\x10\xbd\x87\xeb\x2f\x9d\x03\xe4\x86\xe4\xf8\x71\x35\x2a\x79\xb5\xcd\x04\x03\x0d\x73\xd5\x65\x01\xab\x2e\x13\xeb\x0e\x0c\xb7\xa3\x4d\x51\x09\x33\x76\x41\xd0\xbc\x6f\x8c\x25\x35\x35\x81\x69\x98\xea\xe0\xc3\x16\x36\x30\xe5\xe3\x19\x9d\x33\xd1\x24\x0c\x34\x63\x7c\xa4\x90\x4e\x20\x28\x7c\x10\x64\xbe\x09\x0d\x46\x20\x88\xfa\xd0\x0d\x7c\xa4\xb0\x21\x9e\xb0\x89\x36\x6f\xcd\x24\xaf\xb3\x4a\xab\x69\xc6\xb2\x86\xd3\x3b\xb0\xa1\x3a\x08\x98\x5f\xac\x29\x75\xe0\x00\x27\xc0\x0c\x3a\xb3\xe0\xec\x7a\xaa\x6a\x17\xe0\xdd\x9e\x2a\x7c\x85\x39\x68\xfb\x2c\xcf\x9a\xc4\x85\x1c\x41\x88\xc1\x6a\x69\x9f\x01\xf0\x4d\xe2\x62\xc6\xca\x06\xbf\x10\xdd\x61\x15\xc3\x45\x5b\xf5\xe0\x0c\x9c\x46\x75\x80\x23\xf5\x48\xe3\xea\x66\x76\xef\x22\x54\x96\x14\x04\xd6\xa1\x76\xea\x18\xf7\x4a\x47\xb5\x95\xb3\x20\xcc\xdc\x38\xa4\x7b\x6b\xeb\x93\x69\x0f\xaf\xc7\xe2\x2f\xdf\x12\x26\x32\x25\x84\xe0\x05\xfe\x5a\xce\x93\xd6\xa8\xf6\xdb\xa7\x76\xe4\x01\xca\xe9\x8e\xe7\xdb\x35\x37\xa6\xa9\x6d\x53\x55\xb0\x18\x85\xf0\x61\x9e\xec\x68\xec\xab\xe4\x02\x48\xf3\x24\x83\x42\xad\xf5\x4c\xdf\xb3\xc6\x11\xe2\xfd\xaf\x77\x9e\xc4\x7c\xd6\x32\x95\x3d\xf8\x7d\xda\x08\xe2\x2f\x3e\xe9\xba\x4c\x85\xb9\xd6\x16\xba\x60\xf2\xb1\xa7\xcb\xb4\x3f\xba\x49\x6c\x2d\x8e\x67\x11\x0f\xe5\x1e\xa0\x7b\x12\x2c\xee\x34\x45\x08\x77\x59\x91\x2c\xc2\x5d\x5e\x7c\xbf\xbd\xd0\x86\xbe\x14\xa6\x70\xb8\x03\x4e\xb1\xc7\x28\x53\x36\xb8\xae\xad\x3a\xe0\x42\x13\x29\x61\x42\x7a\x8a\x11\x14\x10\x04\x2f\xb0\xa0\x46\x7f\x16\x04\x2f\x20\xf2\xa3\x5a\x1e\x52\xee\xa2\x83\xc9\x9e\x6a\xa1\xe2\xff\x4c\x2d\x84\xca\xaf\xb1\xa7\x0b\x3d\xe6\xa5\x86\x3e\xfc\xcd\x4a\xf4\x8e\x69\xeb\xa9\x6b\x78\x9e\xc0\x2e\x7d\xc1\x97\x45\xc9\xb7\xb9\xea\x58\x9f\xca\x35\x5b\x60\x08\x35\xd7\xd4\x4e\xd2\x9f\xc6\x1c\x02\xab\xda\x46\xca\x48\xb5\x13\xb4\x70\xf6\x3d\xb2\xdf\xef\x95\x7f\x8b\x65\x53\x3a\x76\xfc\xbc\xcf\xdf\x44\x56\xd8\xe7\x86\xa2\xec\x21\xf5\x64\xe9\xe2\x8f\x0f\x60\xc6\x36\x42\x63\xa9\xac\x2e\x3e\xad\x3f\xd7\xa8\x00\x07\x57\x45\x0d\xa3\x9e\x45\x64\x62\x49\x81\xfd\xbb\xca\xa6\x12\xd2\x4a\xef\x2d\x6f\xd5\x4e\xc3\x17\xcc\x06\xcf\xb4\x49\x75\xed\x8c\x28\x3b\x0f\xf5\xd6\xc5\xfd\x7e\x8b\x3e\xf0\xf0\xc6\x54\xa9\x76\x75\x33\x0d\x82\xe0\x2b\xb5\x1b\xc0\x9d\x67\xd0\x6c\x52\xdc\x0e\x10\x9a\x34\x55\x50\x93\x4b\xe0\xcd\x7b\x95\x05\x82\xe8\xf2\x85\xcd\xd2\xb8\xd7\x67\x93\xaa\x0b\xa8\x50\x82\x21\x08\x9b\xbe\x56\x67\x24\xd2\x35\x7f\x2f\x92\xf5\x86\xa9\x1e\x35\xb7\x75\xfd\x3c\x11\x7c\x94\x17\xd7\x58\xeb\x7f\xdc\xda\x67\x72\x0d\x74\x68\x28\xdb\x79\x11\xd0\x42\xfd\x98\x76\x7b\x5c\x76\x55\x1f\x83\xa4\xd2\xef\xe1\x74\x54\x86\xf7\xe9\x7a\x0b\x9f\x19\x0e\x26\xb4\xc9\x30\x74\xdd\xb2\xbb\x53\x63\x7a\x68\x1e\x7c\xe0\x54\xee\xe1\xfa\xb1\xad\x05\x40\xb4\x5a\x6c\xc9\x9e\xb6\xb8\x92\xbf\x53\x71\xf7\xbb\xee\xab\xba\xc3\xfe\xa8\xba\xfb\x7a\xe9\xef\x34\xe2\x9e\x5e\xfe\xab\xd6\x1c\xd0\xdf\xa9\x03\xf2\x4e\x6b\xf7\x36\xbe\x53\x92\x89\x9f\xf8\xad\xdc\x6b\x2e\x60\x5b\x80\x48\x6a\x73\xb9\xdc\x33\xbb\x41\xad\x92\xfc\x92\x2f\x3e\x14\x5b\x08\x73\x2f\x53\x44\x99\xe9\xb7\x16\x5c\x24\x69\x26\xaf\x60\x30\xde\xae\x92\x0a\x5e\x5a\x73\x91\xe8\x2c\x9b\xe4\x92\x7f\x34\x17\x9f\xe4\x05\x98\x70\xea\xa7\x57\x29\xbf\xd6\xb5\x94\x6a\x3b\x5c\x98\x5a\xcb\x67\xfa\xfa\xb3\xca\xfa\x99\xdf\x9a\x14\x8d\x19\x66\xaf\x54\xb3\xb2\x94\xe7\xe2\xa3\xbb\x84\xca\x8a\xe5\xb2\xe2\x2a\x55\x5d\x42\xaa\x3e\xba\x78\xb5\xf0\x6e\x40\xd2\x96\xcd\x9b\x97\x9c\xe7\x1f\xdd\x25\xbc\xa1\xa8\x80\xd7\x0b\xa2\xd0\x07\x0b\xea\xc6\xa6\x5f\xaf\xd2\x3e\xc9\x8d\x19\xa6\xb3\x09\x3a\xcc\x47\x90\x3f\x08\xee\x8c\xa1\xbe\xda\x92\x22\xed\x5e\x3c\x32\x1d\x11\xb9\xcb\x90\x8f\x6c\x5f\xd8\xf7\x7d\x57\x89\xf3\x56\x59\x93\x40\x44\x93\xf0\x51\x20\xa2\xaf\xc2\xaf\x03\x11\x3d\x0a\xc7\xa1\x7e\x51\xcd\x05\xa3\x2a\x95\xd3\xc4\x05\xff\x52\x60\x7e\xea\x94\x24\xcd\x11\xbd\xc8\xb6\xa5\xbe\x2d\xb6\x02\xf5\x84\x4f\x6a\x0a\x21\x7c\xc6\xda\xbc\x85\xe5\x5a\x5e\x58\xa3\xd0\x9f\x0f\x71\x08\xdd\xbc\x6a\x9f\x6f\x68\x46\x04\xe0\x1c\x9a\x16\xc3\xb9\x94\xa4\x1c\x65\x88\xe0\xba\xb8\xe2\x25\xa2\x70\x99\xf1\xe4\x8a\x9b\xe4\xad\x40\x66\xd8\x75\x76\x7d\xa7\x5e\xd0\x37\xfa\x15\xf3\xe8\x4b\xbf\xb9\xd9\x40\x6a\x54\x37\xa1\xd0\x7c\x72\x67\x72\x98\xa8\xaa\x00\xa3\xd0\xd8\x2f\x00\x4d\xc6\x0a\x81\xd6\x74\x4a\x23\x3c\x97\x75\xed\x59\x1f\x42\x28\xa9\xba\xd6\xa3\xce\x9c\x08\x48\x73\x66\xc5\xbe\xfe\x53\x1a\xaa\xdf\x81\x68\xe8\xba\x47\x3d\xe3\x9e\x06\x3c\x9f\x31\xd1\xd3\x6d\x79\xed\xac\x7b\x21\x7d\x4f\x8b\xbc\xab\xaf\x3b\x94\x9d\x4e\xe4\x0b\xcb\xe5\x21\x4f\x33\x30\x7d\xef\x52\x7b\x99\x62\x7b\xc5\x70\x23\xa5\xdf\x55\xf4\x0e\xf3\x96\xbe\x41\x1d\x55\x95\x4e\xc4\x8e\x4a\xdb\x45\x43\x34\x42\x43\xef\x51\xe8\x1e\x01\xcc\x8a\x92\xcb\x68\x69\xa5\x67\x20\xad\xfd\x67\x82\x1a\x11\xa8\x38\x4a\xf3\x23\x4e\x14\xb9\x5f\x2e\x21\x28\x3d\x8f\x8b\xde\xd8\x9d\xa0\x1c\x10\x41\xe0\x62\x55\x78\xd1\x89\x21\x42\x8e\xa0\xc2\x1e\x21\x02\xaf\x93\xc3\x59\xc3\x8d\x0e\x5e\x78\xf8\x08\xad\xe1\x76\x40\x73\xed\xe8\xa0\x2d\x9c\xde\x83\x19\x53\x34\x48\x4a\x9e\xd4\x17\x65\x3d\x2f\xb2\x9a\xaf\x2f\xf8\xa2\x5e\x95\x75\xba\xbe\xac\x81\x13\xae\xb3\x34\xff\x5c\x4b\x92\x5e\x6f\x92\x32\x59\x13\x7c\x9f\xe5\x13\x84\x95\x25\x67\x27\x4f\x4e\x2e\x53\xfa\xa7\xac\x40\xd9\x02\xd4\x8f\xc1\x9a\xac\x7e\x2c\x4b\x3b\x49\xe9\x33\xce\x4e\xf4\x39\xf6\x59\xf5\x10\x47\x61\xfc\x1f\x36\xab\xd9\x59\xf5\xd0\x1c\x6f\x8f\xc8\x49\x4a\x3f\x73\x76\xf2\x9f\xb3\xea\xe1\xe3\x01\x8e\xc2\xb3\xf8\xd9\xf3\xa7\x1f\x9e\x9e\xc5\xf5\xf1\x31\xa9\x65\xc2\xec\x6c\x26\xaf\x9f\x9c\x55\x0f\x1f\xf8\xbe\x5c\xbf\x37\x4f\x89\x55\x98\x38\xb9\xa5\x81\xec\x80\xbb\x71\x0a\x85\x1f\xdb\x0e\x89\x52\xe6\x83\x48\xc5\x26\xc6\x1d\x46\x60\x53\x83\x48\x3c\x9e\xd5\xb5\x17\x18\xed\x79\x13\x57\x0d\x16\x12\x56\xe4\xfb\x10\x34\xe4\x10\x9d\xa0\xa1\x66\x81\xbd\x92\xbe\xe7\x2d\x7f\xaf\x13\x65\xf7\xeb\xac\x23\x2c\x66\xd1\x37\x24\xe2\x3e\x27\x6d\x5d\x79\x42\xc3\xeb\x77\x6a\xf5\x6b\x7a\xcb\x7b\xf5\x2b\x74\xae\x02\xb5\xb4\x40\x65\xa5\x34\xd0\xd4\xa8\xe3\xd4\x73\x26\x21\x34\x61\xfa\xf8\x8f\xa6\x84\x66\x2c\xb5\xda\x75\xbb\x10\xb4\x06\x35\xd1\x0b\x88\x26\xee\xf4\x8a\x66\x3a\xcc\xd9\x98\x96\x2c\x8b\x8b\x59\xdb\x34\xaa\x71\x1a\x4c\x0b\x2a\xf3\xc4\xf9\x8c\x4c\xff\xdd\x6c\x53\xc5\xfe\xed\xb5\x69\xce\xfc\xc0\x6c\x15\xa1\xda\xdf\x47\x45\x31\xb1\x3d\xf1\x8e\x37\x21\x6d\x0e\x60\x8e\xba\xb8\xff\x79\x10\x5c\xb4\xf6\x57\x61\x66\x2c\xb3\x60\xb1\xa1\x7e\x41\x59\x63\x22\x63\x8e\x01\xf7\x75\x8d\x45\xc3\xd0\x82\x35\xb1\x02\xbc\x23\xee\x8f\x9e\x4d\xb4\x60\x99\xa6\xde\xf1\x4c\x0a\x5b\xd6\x46\x5a\x21\xec\xd0\x0d\x1b\xd3\xa5\x03\x1f\x5b\xb0\xe5\xf1\x84\xae\x20\xf2\x38\xbd\x60\x97\x78\x05\xe7\x1f\x17\x75\xbd\x7c\x32\xe9\xf3\x72\x5d\x05\xc1\xc0\xb7\x46\x09\x82\x67\xfa\x3b\x57\x1e\xa8\x41\x8b\xd0\xd8\x90\x41\x7c\xc4\xff\xc4\x05\x99\x5e\x04\x01\xb8\x78\x33\x5f\xd7\x57\xd0\x14\x2c\xa1\x30\x21\x84\x7e\xe4\x10\x27\x07\x36\x0b\x65\x31\xbd\x84\x09\x85\x0b\x76\x2d\x85\x7a\x00\x4a\x6b\xda\x11\x0f\x26\x94\xd3\x92\x34\xe2\x4f\x82\x0d\x83\x67\x23\xe5\x3b\xd4\xa5\x84\xa6\x75\x5d\x6a\x15\x5c\xc5\x40\x61\xbc\x4e\x36\xf8\x8a\xe3\xc2\x33\x4e\x7a\xce\x2d\xe0\xcb\x74\xf3\x78\x39\xdd\x0c\x87\x64\xce\x0a\xba\x19\x30\xb6\x80\x83\xa2\x3b\x65\x29\x83\xe7\x14\x02\x1d\x10\x5a\x49\x99\x4d\xd9\x68\x25\xf4\x4a\x3e\xb0\xc5\x41\x48\x1b\x75\xb4\x10\x6f\x66\x74\x4e\x37\xf0\x75\x95\x36\x7c\x4a\xe2\xc4\xc5\xbb\x6e\x7d\xa0\x6a\x5d\x42\xbf\xe7\x44\x8e\xe3\x74\xf3\xb8\xd2\x8d\x49\x64\x51\xc6\x4e\x6a\xee\xdb\x49\x0d\xec\x0a\x9c\x37\xcd\x02\x65\x0b\x2d\x57\xb0\xa5\x73\xb9\x36\xe6\xa3\xaa\x9c\x07\x01\x52\xc6\xa8\x72\x1a\xfa\x85\xb5\xd0\x39\xee\x46\xe7\xfc\x2a\xc9\x7e\x2d\xb3\x20\x18\xcc\x47\x79\x71\x0a\x6f\xc9\x72\xcd\x03\x55\x20\xdd\xe5\x45\x3e\xe7\xa1\xcc\x93\xcf\x79\x5d\xcf\x5b\xf4\x0e\x92\x11\xd9\x93\xf0\xa9\xac\xcf\x59\x9f\x59\x7f\xd9\xcf\x1c\x60\x3a\xe6\x74\x4b\xac\xc2\xd1\x8f\x3a\xc9\x3b\xe8\x0d\xb4\x60\x22\xf2\xc3\xef\x93\x90\xd3\x94\x8d\xa7\x1a\xd8\xa9\xd4\x86\xca\x60\xd2\x5c\xd7\x92\xd2\x97\x9e\x1f\xbf\x1c\x51\x9e\xe4\x40\x36\xae\x14\xf4\x63\xd9\xc0\x67\xc6\x39\x78\x4f\x94\x04\x2c\xd7\x64\x16\x6f\x88\x1b\x79\x1b\x46\xe7\x1e\x3a\x1e\xf7\x1d\x65\x7d\x03\xc0\x7e\x70\x68\xd3\x15\xef\x39\x45\x8f\x1f\x4c\x9e\x3c\x3e\x79\xf0\xe8\x09\x52\x71\x9f\x3b\xbc\x94\x67\xa9\x02\x1a\xf1\x96\x29\x17\x20\x2a\x99\x20\xcf\x6d\xcb\xaf\x20\xc0\xed\x28\x07\x93\x96\x57\xb3\xf6\xb3\x56\xf8\x1b\x26\x3c\x34\xd8\xf8\x55\x44\xc7\x9a\xc6\x29\x53\xf8\x75\x6d\x08\xcb\x77\x1c\xa7\x71\x39\xa3\x09\x44\x28\x4f\x97\x58\x40\xa4\x68\xa2\xd4\xe0\x69\x5d\xc3\x6b\x14\xcc\x31\xfd\x02\xd3\x76\x41\x6f\x1b\x05\xc1\x79\x1b\x6c\x58\x95\xe9\x61\xdd\x22\x6f\x5c\x3c\xdc\xaa\x5b\xb9\x32\x07\x73\x85\xb2\xe7\x0f\x5d\xa5\x9c\xbd\xf2\x8e\xe7\xa6\x0f\xe0\x58\x82\xaf\x41\x83\xa9\x87\xc9\xe5\x7b\x98\x72\x3b\xbf\xd2\x25\xfe\x05\xe7\x44\xc7\x91\xcf\xe3\x7f\x39\x7f\x77\x48\x32\x1b\xa1\x0b\x7e\x60\x52\x8a\xb8\x9c\x45\x2d\x26\x0d\xb0\x16\x9b\xe7\x90\x60\x25\x66\xce\x21\xa7\x7e\x05\x9a\x1d\xdc\xe7\xf1\xbf\xbd\x00\x08\xd8\xbf\x35\x1c\xe3\xbe\xeb\xcc\x0c\x08\x45\x7d\xd3\xf1\x0f\xcb\x2b\xf6\x9f\xbf\x77\x33\x92\x1e\x74\x6d\x9d\xa7\xe3\xe2\xcb\xbb\x41\x17\x78\xa4\x10\x60\x94\x15\xbe\xb6\xdd\x07\xe0\x71\xd2\xe5\x6a\x27\xfa\x9c\xc6\x3b\x89\x99\xf4\xa4\x7d\xd7\x4e\x92\x5b\x2e\x28\xd6\x3c\xfb\x57\xee\xbb\xfc\xf2\x8e\xf7\x23\xd9\x53\x65\xaa\xd9\x23\x91\x7e\xe4\x2d\x09\xaa\xf9\x89\xff\x7d\x2b\x7f\xb7\x9d\xda\xb0\x13\xd5\xae\x8a\x9b\x92\xff\x77\x0d\x32\x2c\x5d\xb3\xb2\x49\x4f\xda\x77\xed\x24\xa3\xbe\x70\x2d\x9b\x8a\x51\x9a\x57\xbc\x14\xdf\x83\x02\x5c\x92\xa5\x46\xa0\x67\x68\xaa\x52\x8e\xff\xfd\x96\x42\xdd\x3e\x35\x6e\x25\x74\xaa\x56\x66\x62\x72\xb0\x96\xa2\x57\x7b\xf0\x7f\xa0\xc2\x06\x68\x0f\x54\xde\x09\xd4\x6a\x83\xfd\xc3\x49\xb4\xde\x99\x94\xf2\x2f\x16\x33\x02\xa7\xe4\x6d\xb8\x1f\xdc\xda\x9a\x38\x40\x8a\x48\xd9\xbc\x61\xb5\xdd\x14\x20\x7b\x36\x09\xcf\x36\x56\x6b\x91\x82\x40\xb6\x43\x69\x9c\x44\xc4\x43\xad\xaa\x96\x3c\x47\x17\x7f\xfe\xc8\xf0\x3c\x0d\xd7\x78\x2a\x37\xb2\x2f\x5d\xe3\xee\x64\x07\x84\x25\x75\xf8\xd9\x84\x8e\x69\x86\x45\x50\xd1\x35\x3c\x91\xc3\x86\xfc\xb1\x06\xce\xfd\x61\x66\x78\x10\x0c\xfe\xf4\x10\xde\x06\x97\x3c\xb6\x26\xfc\xfc\x3e\x13\xfe\x19\xd9\x71\xd6\x36\xd0\x97\xb3\xbb\xbc\x55\x50\x11\x46\xfc\x80\x43\x71\xfd\x35\xb9\x3e\x4e\x3f\x3c\x68\x42\x0d\x9a\xd7\x70\x26\x0b\x65\x63\x2f\xd4\xc6\x5e\xe8\x69\x66\xe8\x9c\x5a\xeb\xb0\xcc\xef\x21\x47\x9a\x4f\x68\x06\xd3\x35\x6a\xe5\xd8\x3a\xd6\xdd\x37\xe1\x9d\xa0\xd3\x9c\xe5\x53\x2f\xae\xb1\x5a\xe5\x8f\xc7\x3d\xdf\x06\xf0\x3b\x14\x8c\x81\x74\x63\xb4\x1d\xbb\x46\xe6\xd9\x13\xb9\x1d\x78\xf8\x01\xea\xc3\x3e\x14\x21\x52\x57\xc8\xd0\x30\x99\xa4\x2f\x11\xf5\x97\x58\x88\x14\xe9\x30\xa9\x4f\x61\x59\x23\x58\xdd\xc8\x74\xc1\xd3\x2c\x0b\x91\xd7\x1d\x7d\x7a\xb9\x56\x28\x77\xde\xf0\xef\x53\x08\x60\x10\xe7\x2a\xb5\x70\x83\xc7\x13\x9a\xb0\xf1\x34\x79\xcc\xd2\x69\x22\x99\x47\x80\x0f\x4d\x3d\x37\x77\xb5\x2e\x24\x9b\x75\x87\x8b\x38\x99\x91\x58\xcc\x70\x4e\xe8\x56\x0b\x66\x25\xcd\x15\x4a\x43\x63\x8d\x7a\xb1\xd9\x4b\x17\x9b\xfd\x55\xdb\x23\xda\x78\x41\x47\x83\xcd\x0d\x51\xae\xd0\x43\xe3\x09\xfd\x6b\xd3\xf5\xd8\x68\x94\x1b\x42\x84\x95\x21\x53\x7e\xed\x41\x32\x88\x51\xb1\xe1\x39\x2f\x95\xbb\xa5\x9c\x99\x97\x5c\x3c\x2b\xd6\x9b\xad\xe0\x8b\xf7\xca\x7f\x94\xec\xe9\x8f\x8d\xe6\xa4\x5c\x1b\x90\xd5\x88\x40\x0b\x9c\x66\xe5\x25\x3f\xc4\x88\x82\x7e\xc7\x70\x68\xe0\x8a\xfa\x2b\xf0\x89\x41\x80\x11\x48\x1c\x09\x83\xee\x31\x27\xe2\x20\xec\x62\x41\xea\x3a\x97\x34\xb1\xae\x81\x73\x05\xf3\x55\xcf\xb3\x95\x10\x3a\x38\x1d\x6d\xd2\x1b\x9e\x7d\x5f\xdc\x40\x83\x2b\x4c\x82\xe0\x95\x5e\xf5\x09\x09\x82\x1f\xcd\x79\xae\x0a\x6d\x52\x8d\x00\xae\x90\x16\xac\x1a\xad\xd3\xfc\x77\xb8\x49\xe5\x4d\x72\xa3\x6e\x5c\xba\x97\x6a\xde\x63\x09\x95\x2d\xbd\xd6\x39\x55\x5a\xe9\xbf\x53\x50\xef\xad\x94\x78\x41\x9f\x92\x28\x19\x22\x14\x7a\x10\xf4\xbf\x35\x34\x51\xbb\x46\x90\x2b\x75\xce\xea\x40\x03\x2d\xce\x07\x13\xe4\x40\x0c\x61\xad\x48\x31\x19\xf7\xfb\x86\x73\x8c\xad\x95\xab\xb2\xb7\x64\x97\x69\x2f\xce\x79\x55\x7d\xe0\x37\x82\xa1\x8d\x86\x9a\x0c\x93\x0b\x88\xa0\xcb\xa7\x19\x5f\x8a\xf0\x78\x22\xff\xdb\xdc\x4c\xe1\x7b\xc3\x6f\xc7\x9b\x9b\xe9\x3a\x29\x2f\xd3\xfc\x58\x14\x9b\x50\x3e\xd9\x24\x8b\x45\x9a\x5f\x86\xe3\xe9\x45\x51\x2e\x78\x19\x8e\x11\x44\x94\xed\x2f\xde\xa0\x89\x4e\xb5\xff\x68\x08\x3e\xb8\xd3\x8b\xe2\xe6\xb8\x4a\xef\x64\x39\xaa\x94\xe3\x8b\xe2\x66\x5a\x5c\xf1\x72\x99\x15\xd7\x61\x05\xc1\xfb\x74\xcd\x61\xb2\x15\x85\xa9\xcc\x6f\x81\xdf\xce\x7f\x4c\xa1\x7d\xff\x40\x34\x69\x7a\xd7\x64\x4d\x26\x6a\xab\xd6\x1d\x57\x93\xb0\xb9\x02\xb6\x64\x5a\x32\x34\xf9\x87\xb6\xe7\x29\x36\x74\xce\x26\x8f\xe4\x36\x03\x68\x00\xb2\x2d\xaf\xf9\x52\x10\xfb\xb9\x65\x7a\xb9\x12\x0c\x7d\x3b\xfe\x07\xa2\x15\xfb\xea\x5b\x9d\x15\x92\x09\x2d\x5c\x0a\xb4\xd2\xbd\x67\x7a\x87\x21\xd3\xfb\x88\xa6\xa6\xaa\xed\x48\x1d\x51\xc1\xbc\x3a\xf9\x8a\xc8\x0f\xf2\x45\xcc\x8c\xe8\x18\x82\x9e\xfe\x4a\x78\x5b\xb1\x02\x45\x2e\xb6\xf9\x02\x43\x9c\xa7\x97\x59\x91\x00\xc6\xcf\xde\x2d\x55\xd0\xf1\x75\xbd\x9f\xc0\x2f\x8a\x6e\x0f\x3c\x98\x6e\xad\xaf\xb3\xf9\x90\x8b\x64\xfe\xf9\x12\xea\x7a\x96\xa5\x1b\x86\x34\xe4\x86\x1c\x4c\x39\x29\x9a\xfe\x45\xfd\xaf\x20\x7a\x0a\xfb\x4b\x09\x32\x2a\x0c\x44\xb3\x1c\x06\x46\xa4\x3d\xef\xba\xb8\x39\xa7\x74\x77\x51\xdc\xbc\x87\xf9\xf4\x8e\x67\xe9\x81\x30\xf8\x1c\x13\x5a\xec\x69\x93\x8a\x1c\xc8\x57\xe9\x7c\x06\x92\xf5\x40\xb6\x52\x6e\xc8\xaa\xc2\x53\x3b\x41\x0e\xe4\x9d\xef\xa9\x9a\xd7\xaa\xad\x87\x5a\x98\x02\xef\xac\xbd\xae\x3e\x71\x16\xa3\xdf\xf9\xc5\xe7\x54\x20\x8a\x4e\x8b\x3b\x44\xd1\xba\x42\x33\xfa\x03\x3f\x30\x4a\xaa\xab\xe8\x4f\x4d\x0f\xfd\x5f\xb8\x07\x5b\x25\x97\xa9\x24\xbf\x15\x00\x8c\xfc\xc4\x63\xde\x88\x30\xc8\xa5\x88\xfa\x03\x8f\x78\x08\x8f\x7a\x77\x4f\x01\x20\x6e\xcd\x50\x8c\x43\xee\x1c\x37\x72\xf6\x89\x37\xa2\x52\xa5\x4b\x8c\x39\xfb\xc4\xe3\x7c\x36\x14\x04\x2a\xb0\xea\xc4\x3d\x10\x7c\xae\x26\xe8\x03\xf0\x14\xcb\x8b\x9c\xd7\xa0\xaa\xc7\xd1\xe0\x78\x1e\xf3\x64\x46\x46\x43\x72\x42\xff\x25\x1f\x1f\x1f\x9f\xd0\x7f\x73\xb6\xb3\x54\xc6\x5b\x47\x57\x69\x95\x5e\xa4\x59\x2a\x6e\x43\xb4\x4a\x17\x0b\x9e\x23\x6a\x68\x8f\x0e\x00\xb0\xa7\x5c\xb0\x5d\xc6\x85\xe0\xe5\xfb\x4d\x32\x97\xb4\x04\x8d\x11\x5d\x16\xb9\xf8\x1d\x90\x6e\x43\xf4\xf5\x78\x8c\xbc\xfe\x13\xa2\x89\xe4\x68\xa2\x3e\xb8\xc0\xba\x65\x04\x0b\x6f\x9d\xdc\xe0\x31\x2d\xe3\x47\xb3\x63\x9c\xd7\xf5\x98\x90\x21\x2e\x21\xde\x04\x04\x97\x08\x85\x5b\xb4\xb9\xe8\xf1\x31\x63\x48\x81\xec\x42\x68\x9d\x49\x38\xa6\x15\x1b\xd3\x39\x1b\x2b\x80\x3d\xc6\x70\x19\x21\x45\x0a\x51\x68\x96\x09\xb2\x9a\xd9\xb1\x8a\xea\x97\x3c\xfe\x7a\x9a\x0c\xd9\x23\x82\x14\xd5\x32\x01\x08\xe6\x43\x1b\x01\x24\x1f\xa6\x3c\x4e\x20\xa8\x68\x41\x08\x2d\x23\x6c\x4b\x33\x99\x8f\x5d\xb8\x10\x4d\x71\x51\xf3\x25\x53\xfa\xa0\xfb\x82\x6e\xa2\xca\x3f\x44\xbf\x2b\xe0\x60\xf5\x1e\x09\xfd\x86\xf4\x96\xed\x52\x21\x84\xa2\x9f\xfd\x9e\x92\xc3\xea\xcb\xf2\x99\x31\x83\xc8\x4f\x4f\x20\xa6\xc6\x7c\xc8\xbc\xe1\x83\xcb\x39\x4f\x33\xcc\x63\xa4\xa8\x31\x1a\x8a\xee\x84\x17\x76\xc2\xcf\x8e\xd3\xe3\xf9\x71\x75\x3c\xfa\x86\x10\x39\xea\x74\xee\xc6\xb9\x6c\xcd\x1d\xe0\x87\x68\xc1\xf0\xe0\x74\xd4\x21\x5b\x58\x32\x42\x24\x08\x90\xdb\x16\x1b\x81\x5b\xec\x0b\x88\x0e\x26\xb4\x04\xce\x95\x26\x4c\xf3\x63\x25\xa1\x15\xfb\xb2\x16\xcb\x09\xe5\xb8\xa7\x16\x86\x73\x32\x4d\x18\x92\xdb\x2e\x32\xb8\x82\xfd\x6d\x0d\x82\xa2\xae\x55\x46\xc6\x58\x52\xd7\x03\x6f\xcb\x91\x3c\x19\x4a\xf3\x2c\x3d\x10\x7b\x46\x7d\x00\xa0\xd4\xc8\xad\x18\xac\x35\xde\xf1\xb9\xa8\x2c\x64\x9a\x8e\xda\xf1\x85\x3d\x81\x53\x56\xa9\xe3\x56\x70\x57\xe4\x71\x35\x23\xca\x67\xda\x6f\x93\x1c\x9d\xa1\x59\x7a\x75\x8d\x8b\xbe\xf5\x44\x53\x5a\xd2\x84\x0c\xe5\x9a\x75\x03\x59\x08\xdf\xf3\xc4\x33\x7f\x2b\x3c\x5b\x2b\x00\xce\xf4\xf2\x79\x5a\xe0\x79\x55\xa9\x78\x62\xbb\x42\x52\x1d\x71\x1b\xee\xba\xd1\x4e\x41\x63\xaa\xe5\x33\x18\x55\xa4\x33\x5b\x91\x1f\x82\x81\xe4\x11\x9a\xa0\x30\x07\x6b\x40\x1b\x9f\x26\xdc\x25\x79\xba\x06\x03\x9f\x57\x82\x97\x70\x01\xd6\xd1\xca\xa8\x26\xdb\xae\xdd\xed\x32\xcd\xb2\x37\xba\x19\xf2\x36\xe3\x37\x3f\x94\xc5\xb5\xb9\x7e\xbf\x2a\xd3\xfc\x33\xdc\x39\xaa\x38\x18\xd3\xcb\x32\x5d\x3c\x2d\x79\x62\xae\x9f\x41\xa9\xcd\xbb\x17\xf9\xa2\x99\xf0\x5e\x24\xa5\x7d\xfb\x9d\xaa\x44\x5f\x7a\x79\xdf\x15\xd7\x36\xa3\x9c\x34\x3f\xda\x4a\x0b\xd7\x4e\xc5\x05\xc2\xc5\x66\x95\x28\x9b\x9f\xeb\x74\x51\x5c\xc3\xd5\xdd\x2b\x80\xff\x93\x57\x45\xb1\x56\xe6\xad\x7a\xaf\x0b\x77\x7b\x0a\x5b\x63\x8f\x59\x82\xb2\x2f\xf8\x6a\xd0\xd4\xc4\xfc\xb3\x75\xaf\x65\x1b\x2f\x2e\x11\xad\x20\xd4\x2a\x9d\xb3\x7f\x59\xd9\x03\x0c\xd1\x95\x10\x94\x2e\xf1\x1c\x04\xae\x5f\x38\x96\x22\x73\xa2\x26\x2f\xcc\x01\x70\x0d\xf5\x6e\x2b\x2f\xa6\x84\x5b\x86\x41\x80\x2e\xb9\x40\x29\x5c\x3a\xe5\xb3\x06\xf9\x04\xdd\x90\x5c\x42\x51\x11\x66\xb1\x98\x4d\x3d\xcd\x08\x4e\x7d\x98\x0b\x5c\xd8\x1d\x2b\x97\x2b\xae\x00\xfc\x54\x9c\x33\x1d\x6e\xa9\x90\x74\x04\xe5\x30\x89\x90\xd2\x3e\x0c\x20\x52\x92\xde\x0b\xcc\xa3\x01\x63\x69\x5d\xcb\x8f\xca\x87\x80\x71\xd2\x8d\xa4\x54\xb9\x48\x4a\xa4\xcb\xda\xd5\x35\xd2\xa7\x9f\x60\xa5\xe4\x82\x52\x3a\xd6\x0e\x49\xe1\x4f\x7e\x0e\x43\x69\xbe\xe2\x65\x2a\xd7\xa3\xec\x89\xaa\xd5\x13\x0c\xd4\xf0\x89\x76\xf9\x95\x03\x09\x3e\x91\x51\x26\x53\x9c\xc1\x35\xcd\x09\xf4\x0e\xcb\x01\x53\x63\xde\x09\x01\xdc\x08\x35\xa5\x87\xd4\xc6\xf3\xb3\xe3\xea\x0f\x24\xbe\x7f\x24\x49\x63\xd8\xfc\xd1\x1a\xd3\xdc\xca\x89\x36\x2c\x91\xa5\xdd\x10\xb0\xa8\x5c\x27\x99\x0e\x59\x24\x80\x9a\x09\xc8\xc4\x85\x94\x8e\x55\x20\xa0\xbc\xae\xf3\x08\xa7\x3e\x5d\x2b\x08\x85\x78\xed\x79\x5d\xa7\xd5\x4b\x49\x82\x38\x4e\x49\x94\xd6\xf5\x38\x54\x80\x14\x56\x1d\x13\x23\x85\xe6\x8f\xa8\x66\x35\x66\x5d\xb5\x89\xf7\x6d\xac\x4d\xa3\xcc\x8a\xb1\x60\xf3\x0f\x74\x1f\x75\x83\x8b\x99\xc8\x67\xfd\xb4\x1d\x1e\x7d\x2f\x87\x3c\xcd\x2f\x5d\x16\x4c\x94\xb8\x14\xe9\x7d\xb3\x24\x21\x04\x6c\xfc\x77\x33\x96\xa3\x61\xbb\x4c\x26\x50\x4f\x56\x3d\x4d\xd5\x43\xab\xb7\xdd\x84\x0d\x4e\x47\x0d\x36\x5c\xee\x62\x8e\x7f\x84\xd8\xab\x86\xaf\xa4\x15\xc3\x49\x5d\x97\x5f\xbc\x1f\xa7\x92\x16\x94\x91\xde\x5e\x4a\x5a\xd1\x94\x84\x36\x74\x6e\x15\x04\x89\xe2\x93\xfe\x1b\x06\xc3\x1b\xed\x54\xce\x85\x63\x5d\x8b\xd9\xbe\x54\xfd\xc0\x81\xd0\x79\x77\xc9\xeb\xb0\x65\xb8\x70\xcc\x28\x98\x9c\xab\x88\x6c\x72\x79\xd0\x9c\x79\x41\xcc\xa8\x10\x80\x8a\x32\x27\xc6\x16\xcc\x4c\x0a\x4f\x14\x66\xbf\x71\x7c\x3a\xea\x4a\x40\xed\x19\x05\x9b\x9a\xe6\x24\xbc\xef\x50\xfb\x9b\x2b\xce\xcd\x98\xde\x69\x91\xf1\xa5\x38\x86\xb9\xb0\x73\xef\x84\xe3\x7d\xdf\xbc\xb8\xbf\x94\x3d\x21\x7a\x73\xf7\xed\x06\x95\xb6\x01\x21\x6a\x14\x0c\x08\x51\xad\x76\xd0\xfc\x63\x8f\x86\xd1\x2e\x15\x3e\x94\x8b\x45\x9d\xba\xb9\x49\xe8\x9f\x59\xc3\x39\xe7\x6e\x2f\x49\x6d\x4f\xc8\x86\xdc\xb8\x8a\x1e\x21\x12\xc6\xf9\x6c\x5a\x3e\xfe\x1a\x0e\x42\x8b\x98\x4b\x2e\xb6\x9c\xc9\x0a\xd2\xb8\x9c\xd5\x75\x1a\x97\xc7\x8f\xe0\x77\xec\x45\xd1\xdb\xfb\x1c\xb9\x0d\x5d\xe7\x5a\x27\xe9\x22\x13\xa0\xc9\x6f\x1e\x04\xb6\x69\xe2\x3d\x6a\xfd\x96\xd2\x4f\x7e\x4e\xa2\xa4\x93\x76\x44\x72\xf5\xe1\x8e\xdd\xb5\x08\xc9\xc9\xe3\x02\x34\xab\x69\x2c\xe2\x64\x36\x73\x93\x0e\xd8\x7f\xb9\xa1\x59\xe4\x80\x7d\x3b\xe6\x6f\x1e\xf9\xe1\xee\x72\x12\xba\x19\xbb\x27\x60\x4f\xd8\x0d\xda\xab\x75\xd1\x1f\xae\x39\xcf\x59\x21\x68\x71\xd0\x32\xbe\x10\x54\x92\xce\x1e\x47\x63\x29\x9f\x29\x65\x7d\xc6\xd7\xc6\x87\x61\x53\x16\x1b\x96\x1b\xd3\xbb\x2a\xcd\x2f\x59\x21\xb7\x02\x75\xed\x22\x02\x29\xeb\x3f\x08\xb6\x54\x31\x61\xec\xb1\x93\x52\x98\x43\xb6\x6b\x66\xfc\x0a\x8c\xb9\x36\xcf\x17\xac\x54\x97\x10\x8c\x2f\x6d\xed\xb2\xb9\xdb\x65\xf7\x74\xbe\x2d\xbb\x47\x01\xea\x2b\x37\x9a\x8c\x9b\xe6\xda\xd9\xc2\x35\xfd\x55\xe1\xb2\xf4\xb1\xab\xff\x8e\x6d\xbe\x7b\xbe\xa7\xe5\xb6\x07\x99\x87\xe6\x7f\x55\x99\xdf\x01\xa3\xc5\x56\x31\xa6\x1a\x8c\xb8\xa8\x98\x60\xa6\xcf\x62\xaf\x2f\x67\xe6\x9c\xad\xfd\xe2\x43\x4e\xc7\x74\xd2\xff\x4c\x1f\x1d\xab\x52\xcd\x39\x5d\x71\xcd\xb0\xe9\xd5\x63\xd7\xfb\xe4\xa1\x18\xba\xbb\x66\x79\x95\xe0\x1b\x7d\x3c\xe3\x27\x39\x6b\x26\xe5\x30\x69\xca\x37\x30\xe0\x41\x00\x78\x23\x0a\x75\xe4\xde\x4e\xb5\xcf\x15\x42\xcb\x9e\x76\x64\x08\x6f\x92\xfa\xcf\xa8\x5f\x1e\xdb\x59\x7f\xa7\xd6\x36\xad\xc7\xc6\x46\x71\x01\x5e\x56\xb6\xd9\x3b\xe6\x35\xd6\xe5\x32\x39\xe6\x6a\xc8\x4c\xc4\x19\x9d\x59\xed\x0e\xfa\x59\xd4\xcc\x1a\x62\x61\xd6\xae\xea\x0d\x95\x4e\x11\x04\x96\x55\x52\xe1\x00\x22\x04\x4b\x1a\x5d\xb5\x9a\x77\x37\x5a\xde\x40\x9f\xda\xd2\x3b\x29\x98\x93\xb0\xb7\xe1\x03\x9f\xb0\xdd\xd3\xee\x5f\xb8\x02\xda\xdb\x90\x76\xdb\x81\xb1\xbf\x0e\x2d\x31\x69\x7c\x00\x3c\x1b\x02\x18\x29\xf8\x5b\x35\xba\x5c\x33\x0f\x1f\x8a\x0d\xeb\x49\x86\x4d\x71\xd7\xfe\xd6\xd6\x07\xc8\xa5\x07\x09\x0d\x83\xa3\xbe\x06\x1a\x2f\x0d\xa0\x2d\x3b\x29\x14\x25\xfd\xe6\x43\x7b\x5a\x5d\xcb\x1d\xab\xfb\x6c\xf4\xcd\xb1\xe2\x36\x8a\x0a\xf3\x87\x70\xf9\xf6\x15\x39\x79\xe4\xb9\xca\x21\x78\x17\xc9\xaa\x96\x37\xac\x33\x11\xa9\x1d\x18\xb6\x53\x58\x0b\xa9\xa0\x89\xa0\x95\x50\x71\xa0\x54\xc0\xc6\xba\x5a\x15\xd7\xf5\x2a\x5d\x70\xf2\xe0\x84\xce\x05\x3b\x71\x91\x86\x1f\x78\x71\x9e\x32\x81\xc9\x2e\x91\x4c\x2d\x58\x30\x27\x23\xa5\xa4\x53\xa7\x89\x7f\x6e\x79\x25\x9e\x1a\x19\xf6\x65\x99\xac\x79\x74\x20\x1d\x67\x82\x84\x0d\x74\x9f\x4c\xb7\x14\xec\xf4\xaf\x92\x8c\xa8\x5b\x91\xce\x3f\x63\x3f\x62\xd0\x56\x38\x36\xe1\x20\x16\x54\x6a\x2c\xad\xe5\x66\x99\x0a\xe6\x5c\xae\x5c\x41\x1b\xd1\xc5\xe0\xdf\x29\xe6\x3a\xe4\xca\x4b\x5e\x28\x2d\x9e\xde\xcb\xd9\xa3\x63\x41\x8a\xd8\xec\xd2\x43\x9c\x33\xd8\xd8\xc9\x8c\x15\xb1\x53\x84\xe5\x33\xe6\xc3\xa9\xe3\x62\xa4\x05\x60\x56\xe8\x73\x28\xb9\xa1\xba\x76\x2c\x45\x9f\x79\x1c\x5e\x88\x91\x90\x7b\x1e\x2f\x95\x8c\x12\xcf\xc8\x68\x5e\xe4\xf3\x44\x34\x1e\xa1\x87\x68\x46\x74\x94\xd3\xa2\x1d\xe5\x14\xf0\x2d\x8a\x38\x9d\x19\xd0\x43\x41\xb9\xd5\x36\x96\xae\x09\x0b\xd1\x65\x0d\x64\x81\x0b\x39\x99\xf4\xb9\xba\x17\xf2\xda\x0f\x8b\x3d\x52\x00\xa1\x8d\xde\x37\xa1\x16\x60\x49\xc8\x11\x68\x80\x26\xa7\x4b\x6c\x22\x17\x0d\x26\x53\xa7\x92\x4e\x45\x5d\xcb\xc1\xa5\xb9\xaf\xcc\xcb\x14\x7d\x97\x83\x3c\xcc\xec\x46\x71\x0c\x71\xea\x27\xc7\x38\x3f\x71\x89\xa0\xb9\x53\x0d\xcf\x54\x07\x55\xed\x0e\x31\xe9\xb2\x4b\xca\x6d\x8e\x1d\xb3\x52\x79\xe0\x83\x98\xd3\x38\xa3\x25\xcd\x67\x84\x96\x8f\x27\x41\x90\x44\x79\x28\x45\x89\x6e\xa6\x09\x1d\xcf\xb4\x13\xbc\x8d\xf9\xcd\xc1\x6f\x9b\x0e\x26\x80\xbd\x5c\xd9\xc8\xdb\xca\xd3\x9a\xd3\x0d\x28\x34\x7c\xcb\x66\x41\x68\xb1\x11\x5e\xda\x60\x4c\x77\xda\x72\xed\x05\x90\x8f\x70\xb7\xa7\x8a\x90\x84\x1d\x0e\x65\x4f\x73\x42\x8d\x37\x9a\x96\x9c\x53\x5e\x85\xc2\x26\xbe\x51\x9b\x60\x98\x53\xdb\x99\xa1\xed\x6e\xd3\x7d\x61\x6e\x7b\x92\xaa\x5e\x0a\xe3\x19\xd5\x61\x08\xe5\xbd\xe7\x1f\xed\xd4\xa1\x9a\x33\xc3\x9c\x66\x72\xaf\x05\x64\x75\x7d\x39\x6a\x7c\x01\x4c\x62\xfd\x40\x7d\x80\xed\x7b\x3b\x5a\xda\xb5\x9d\x96\xca\x19\x2f\xec\xda\x3c\x80\x05\x4a\xd4\x1a\xde\x10\x38\xd8\xc2\xf7\xf0\x9e\x2a\x68\xee\xc1\xd8\x9a\x80\xd8\xa1\xcf\xd5\xd0\x4f\xdc\xf9\x7e\x84\xbf\x7c\x60\xa9\x98\x11\x12\x56\x3e\xa8\xa6\x49\xd6\xbc\x00\xa1\x5b\x96\xc1\x36\xa0\x5a\x31\xb8\x27\x1c\x02\x64\xc8\x95\xda\x53\x7e\x02\x13\x71\xc9\x7e\xc2\x39\x99\xd1\x94\x41\x20\xd1\x26\x5f\x9e\x2a\x6d\x50\x1a\x4f\x4c\x06\x26\x85\x08\x42\xf3\x01\xc4\x9b\xc3\x10\x1a\x39\xa5\x16\xbf\x07\x20\x4a\x1b\xfa\x8e\x12\x14\x1c\x4a\xd0\x01\x1d\x07\xb1\x6d\x48\x59\xa2\xed\x0e\x71\x4a\x5c\x19\xe5\x8c\xa6\x44\x35\xb2\xae\xb1\xae\x34\x9f\x51\x40\x51\x2f\xb4\x71\xa7\x80\x98\xcc\x7b\xbc\xed\x1d\x7c\xd2\x24\x49\x0d\xba\x62\xc9\x53\x46\x39\x35\xaf\x5b\x2a\x75\x09\x21\x95\x8b\x0d\x01\x81\xc8\x07\x1e\xc8\xd4\xae\xaf\xab\x83\x07\x04\xb2\x32\xf5\x06\xc4\xdb\x51\xb6\xc1\x0e\xc9\x73\x9d\x6c\xf0\x96\x2e\x05\xcd\x08\xbd\xc4\xa6\xa9\xc0\x4f\x06\x81\x7f\x6b\xe2\xcb\x64\x84\x66\x0e\xd8\x57\xe7\x30\xf7\x1a\xdf\x57\xa7\xca\x6b\xd3\x1c\x03\x84\xa7\x11\x7f\x75\xaa\xbc\xb6\x14\x53\xa7\xa9\x3b\xbb\xdb\xad\xfd\x18\x6b\x73\x6a\x68\x46\x92\xa7\xeb\x30\xa3\x0a\x2d\xc1\xff\x64\x49\x5e\xb3\xfd\xdd\xc8\x6e\xaf\xce\x65\x62\x21\xe8\xce\xec\x13\xe1\x0e\x3d\x44\x61\xdc\x33\x15\xb5\xf0\xe2\x96\xb9\x72\x03\x37\x71\x3b\x39\xce\x35\x77\x45\xdd\xa9\x99\x24\x38\xf9\x7e\xb6\xa7\xba\xf8\x96\xf8\x09\x38\xad\x1a\xd8\x40\x6d\x50\x21\x67\x0e\x91\x7f\xea\x1b\xf1\x8c\xc1\x61\xae\x65\x3c\x9c\x33\x98\x75\xfe\x3e\x97\xcf\x58\xf3\x16\x02\xdd\x34\x93\x2c\xb4\x88\x50\x86\x96\x7a\x82\x35\x3f\xbb\x63\xf5\x62\x83\xde\x6a\x85\x5a\x0a\xe7\xa8\x46\xcd\x26\xef\xe8\x52\xb9\xf6\x2d\xa4\xbc\xbc\x32\x0a\x62\x7a\xd1\xd0\x2f\x83\x0d\x8e\x0b\x2d\x47\xd1\xf2\x46\xf2\x54\x48\x7d\x2e\x18\x0e\xe7\x6a\xc8\xea\x5a\x07\x88\x84\x85\xd9\xc4\x54\x01\x50\x18\x32\xda\xe6\x90\xba\x08\x02\x9c\xd8\x1b\x36\xa6\x95\x5c\xa1\x16\xe8\x84\xfa\x37\xfe\x16\xeb\xde\xa9\xeb\x0a\x4b\xd9\xda\xa5\x0c\x87\x74\xd9\xb7\x69\xf7\x26\xba\xd7\x8e\x8f\xa9\x43\x89\x81\x56\xea\x41\xab\xeb\xa4\x89\xbd\x02\x00\xbc\x84\x0a\x4b\xd0\x66\xb4\xb2\x31\xd2\x60\xfb\x37\xf6\x2f\x40\x59\xa4\x70\x8c\x14\x13\x0a\x8a\x53\x5a\x30\xc6\xf0\x45\x84\x24\x33\x8a\x42\xa4\x3a\x11\xde\x53\xd7\x03\x26\xe5\xf4\xc1\xda\x8b\x26\xb0\x96\x54\x6d\x5e\xe4\x22\xcd\xb7\x7c\x7a\xc1\x06\xe3\xfd\x42\xd2\xa3\x75\x10\xac\x41\xe3\xe2\xd4\x0e\x25\xd9\xa7\x4b\x8c\xe7\xac\x07\x8b\x8c\x80\x6c\xd2\x4c\x5d\x10\x67\xf8\xbd\x69\x03\x88\x05\x01\xce\x47\xc6\xec\x85\xc5\x2b\x7b\x4d\xdd\xe5\x47\xef\xfa\xd3\x8c\xea\x91\xcf\xa0\x6d\x26\x2c\xbb\x24\x6e\x99\x9b\x39\x4e\x03\xeb\x62\xe0\xe3\x6d\x0f\xfc\x03\xbc\x17\x6d\x59\x16\xe2\x95\x8a\x5b\x3d\x18\x7b\x47\x18\x0e\x5f\x22\xa3\x7d\xaf\x53\xf5\x92\x1c\x2d\xec\x1d\xf5\x6d\xeb\x5a\xdf\x1d\xab\x13\x77\x99\xa6\x24\xb4\x01\xcb\x7a\x01\x29\x96\x59\x91\x40\xb4\x0d\x38\x32\x59\x2a\xb2\xe8\x4f\xa4\x95\x8d\x40\x9f\x01\x24\x25\xf4\x42\x06\xd8\x06\xf6\x11\xcd\x98\x2d\x79\x1b\x21\x14\x6e\x09\xa1\xee\xc5\x66\x9b\xc0\x51\xc7\xf4\x6b\x10\x60\xd7\xc9\xcc\x1a\x0e\xf4\x4e\x69\x2f\xa3\x2b\x20\x1e\xcf\xfc\x21\xf3\x9f\x4c\xfc\x27\x9f\xfc\x27\x8f\x66\x30\xd1\xe7\x6c\x30\xa1\x0b\x22\x3f\x7c\x1d\x99\xba\xd3\xfc\x68\x1d\x04\xf8\x82\xad\xb5\x84\x44\xc2\xb5\x8f\xdd\x64\xa8\x03\xdd\x19\xeb\x86\x6c\x4f\x68\x1a\x04\xd8\xbc\xc0\x06\x17\x84\x5e\x04\x81\x37\xb0\x3d\xfd\x6a\xe7\xe6\x45\x5d\xeb\xd1\xa4\x7e\x60\x32\x43\x84\xe8\xc2\x83\xa9\x28\xa9\x5c\x1d\x44\xb7\x7e\x29\xf0\x45\x24\x97\x49\x38\xa6\x25\x5d\x12\x0a\xe5\xad\xe5\xe7\xc8\x35\x34\xd7\x0a\x96\x0b\xf0\x40\xe2\xf9\xc2\xa6\xe8\x5f\x36\x26\x64\x3f\x73\xf4\xb6\x8d\x35\x15\x35\xa5\x08\x43\xa3\x39\x09\x9b\x0f\x80\xf9\x33\xa6\xa7\xd5\x86\xf3\x45\x27\x34\x8a\x62\x39\x79\x10\xf4\x41\x96\xf9\x0c\x35\x27\xe1\xce\x6c\xc1\x61\x5e\xd7\x83\x3c\x08\x44\x5d\x5f\x82\x7d\x31\x77\x2c\x2f\x37\x4c\xb5\x7a\x2e\x82\x60\x70\x09\x16\x88\xc2\x43\xff\x5e\xde\x8c\x8a\xe5\x32\x2a\x2d\x7b\xcc\xc6\xa1\x77\xa4\xa6\x1b\xe0\x1e\x03\x08\x87\xb9\x91\x7d\xa9\x24\x70\xf9\x45\x95\x5f\x8a\x97\x1c\xbb\xe4\x59\xd8\x9f\xc5\xb2\xfb\xe6\x80\xaf\x54\xe4\x38\x08\x20\x68\x55\x69\xf7\x16\x7d\x05\xa0\x50\x84\x96\xa3\x22\x5b\xb0\xd2\x32\x24\xd4\x5d\xfa\x3b\x86\x64\xb3\x8a\x6c\x41\x82\x00\x7e\x9d\xa6\x4c\x96\xa0\xeb\x69\x61\x2f\xe9\x74\xb2\x97\xec\x7a\x43\x21\xbd\x4c\x16\xfc\x43\x71\xd8\x81\x1c\x38\x0e\x6d\xad\x9d\x71\x02\x44\xc4\x9e\x93\xd3\xb1\x41\x75\x90\x93\x4d\x0a\x98\xc0\xd9\x70\x6c\x8f\xdd\xc5\x9e\x72\xed\xa7\xae\x9f\x1d\x3a\x12\x64\x6d\x6a\xce\x15\x8e\x19\xf4\xa8\x42\xfb\x6d\xc0\x8a\x1b\x1b\xab\x85\x0e\xb1\xd7\x9c\x52\x34\x25\x53\x5c\xd8\x50\xfe\x10\x83\x6f\x99\xe6\x69\xb5\x02\x4a\x2c\x80\xeb\xc4\x83\x31\xb1\x73\x27\x19\xa9\xe7\x2c\xa1\x72\xcb\x52\xd0\x80\xd0\x6b\x1e\xc0\x5e\xa2\xb5\x9e\xaa\x6b\xf5\x73\x9a\x90\xb6\x0c\xd4\x58\x03\x7d\x96\xc4\x32\xbb\xb1\x2d\x55\x77\x54\xe0\xdc\xb6\xa6\x1f\x7e\x4a\xb9\xa5\xfb\x10\x54\x42\x07\xba\x33\x7e\x14\x1d\xe4\xac\x03\xde\xea\xaa\x19\x03\x80\xa8\xb1\x2e\x0b\x0d\xc4\x2a\xe8\x7b\x60\x71\x2b\x70\x37\xb6\xaa\x69\x25\xbe\xa9\x00\x67\xf2\x2f\x34\x3e\x08\x4a\x88\x9e\x46\x1c\xf6\x2c\xb8\x21\x27\xdd\x8c\x73\xcb\x5f\xb8\x97\x94\x00\x68\xfd\xd2\x0a\x30\x63\x93\xaf\x48\x6e\x56\x7b\xed\x58\x25\x6a\x10\xc0\x23\x68\xeb\x00\xf0\x39\x31\x24\xc8\xf9\xa5\x86\x35\x27\x54\x48\x42\x9f\x9a\x58\x97\x05\x9d\x10\x32\x1d\x88\x20\xc8\x25\x7f\xd1\x07\x4b\xa6\x06\xbf\x47\xab\x67\xfa\x17\x5b\xb8\xaf\x7b\x3b\x95\xe6\x7e\x67\xd1\x92\xe5\xb1\xe9\x58\x34\x03\x44\xa0\x66\x3f\xcf\x9a\x1d\x5d\x46\xa5\x13\x94\x55\xac\x63\x3d\x2d\x07\x63\xda\x82\x77\x93\xc3\x0b\x58\x01\xaa\x63\xd5\xaf\xe7\x05\x2c\xb7\x21\xe1\x7a\x55\xa8\x5e\x15\xaa\x57\xb5\xdf\x91\xec\x4c\xa1\x3b\x53\x39\x86\xc0\x91\xa7\xd7\x99\xb2\x14\xdb\x91\x02\x3a\x52\xa9\xdb\xc6\x53\xf1\x38\x01\xc7\x9a\x32\x16\xb3\x20\x90\x7f\x75\x63\x1b\x37\x1e\x7d\x32\x33\xde\x7c\x94\x43\x65\x54\xc7\xe5\x9a\xb5\xa4\x8a\x79\xa4\x8a\xad\xec\x1c\x9a\x1b\xac\xbb\x65\x1e\x8b\xd9\x54\xff\xfa\xfb\x4f\xc3\x68\x48\xe9\xaa\xeb\xba\x17\xd3\x26\xef\xb7\xfa\x56\x8b\xdc\x10\xb3\x8d\xc0\x02\x3a\x53\x95\xdc\x88\x80\x52\x65\xe9\x82\x3f\x2f\xae\xf3\x70\x23\x34\xcf\x4b\x28\x24\xfe\xba\x81\x24\xf8\x04\x9d\xf4\x41\xe1\xed\xc8\x64\xfd\xa5\x84\x4a\xfa\xfb\x2a\x77\x76\x4a\xaa\x8c\x3d\xa4\xbf\xd9\x0a\xef\x01\x94\xa4\x1e\xe8\x82\xdc\x33\x5d\xdc\xfe\x0b\xfc\x32\xba\xd4\xdd\x7c\xa7\x30\xa4\x5a\x7d\xa0\x9a\x93\x2c\x9e\x39\xe5\x6e\x9b\xfa\x82\xb7\x15\x1c\x66\xab\xcc\x0a\xe2\xc8\x57\xe1\x4e\xc5\xe3\xdc\x8f\x54\x8a\x39\x03\xe7\x03\xac\xbd\x10\xd4\x02\xce\xed\xfc\x3a\x3e\xa6\x13\x32\xcd\xad\xbc\xa2\x15\xe2\xc5\x06\x83\x6e\x58\x2b\x8a\x3d\x01\x9c\x35\x4f\x3a\x54\x3b\x0c\x7f\x62\xf4\xe9\x49\x09\x01\xab\x1a\x3a\x6b\x36\xf9\xca\x7b\xdc\x90\xc8\x44\x5d\xe3\x04\xc8\x63\x26\x30\x31\x2f\x82\xba\xa2\x91\x4d\xd9\x86\x53\x6f\xe3\x67\xbb\x2a\x2b\xae\xc3\x6f\xc7\x63\xba\x4c\x2a\x11\x3e\x1a\x8f\x9d\xf2\xff\xeb\xf1\x58\x6f\xbe\x0b\x2e\x99\xe4\x03\x3e\x64\xb2\x38\x08\x5b\x6e\x19\x0e\x3e\xab\x6b\xd9\xd5\x1a\x08\x94\x7a\xa4\xde\x3f\xff\x17\x6e\x2f\x6d\x28\xdb\x05\xe5\x64\x5a\x76\xda\x9f\x2b\x8b\x21\x93\xab\xd0\x9e\x84\x9d\xe3\xcd\x43\xc8\x1d\x7d\xa0\x1e\x2a\x72\x0b\xfa\x0b\x50\x10\x75\xce\x87\x08\x99\xea\x98\x1a\xc8\x40\x3e\x21\x83\xcf\xf1\x26\x67\x48\x39\x07\x40\x50\x46\x7a\x3a\x2a\x36\x42\x05\x6f\xe7\x0b\x26\x74\x88\x18\xbe\xa0\xf8\x70\x03\x89\x7a\x97\x21\x81\x4c\xc0\x1d\x0d\x2b\x42\x4f\x47\x70\xf1\x9b\x79\xce\x6c\x4d\xc6\x1c\x7c\x25\xe8\x85\x60\x3a\x8e\x78\x22\x44\xf9\x23\xf8\x04\x4f\x1b\xcc\x93\x4c\xbf\xf7\x38\xff\x0e\x5e\x3d\x78\x5a\x4e\x5d\xe8\x90\xbf\x03\xab\xe9\xde\x3a\x08\x6f\xdb\x69\x59\xf3\xc0\xc0\x89\xc5\x72\x3b\xff\x6a\x00\xc0\x13\xff\x54\x3f\x8f\xe4\x0f\xe9\xc4\xae\x67\x4d\x34\x28\x1b\x74\x20\xba\x03\xfd\xa9\xb1\x12\xc0\x1a\xc5\xa2\xe1\xd5\x5e\xd7\x58\xf2\x77\xd0\x8d\xea\xe0\xba\xe5\x1b\x08\x67\xee\x5e\xc8\x76\x49\xab\x8d\x39\x58\xb4\x12\xa1\x85\xd2\xf0\xd1\xde\x81\xb2\xb3\x3c\x82\xb4\x46\xaf\x00\x52\x7c\xe1\x0c\xd9\x0a\xdf\xa4\xaf\x64\x85\x35\x64\x13\x84\x44\x65\x88\x79\x13\x40\x46\xd0\x7c\x88\x10\x91\x9f\x53\x38\x03\xb3\xc2\x88\xd5\xaa\x08\x83\x7d\x20\x0b\xd0\x8a\x82\x92\x69\xb0\x81\xc4\x34\x82\x44\x1a\xa4\x1d\x18\x60\xf3\xf9\xa1\x8a\x74\xbf\x6b\x43\xfe\x2b\xd3\x60\x7f\x6e\x06\x81\x9e\xb1\x0a\x90\x17\xc2\xea\x98\xd9\xad\xf7\x41\x3d\x6f\xa7\x0e\x5f\xa2\x07\x4e\x47\xe3\x14\xeb\xbc\xe0\x96\x06\xf6\xac\xbd\xf3\xaf\x7d\xd0\x06\x4e\x6d\x56\x21\x28\xd9\xbf\x0e\x38\xbb\x72\xe0\x64\x45\x5c\x02\xce\x50\x37\x26\x4e\x0e\xf3\x73\xd5\x39\xb1\xf5\xb1\xc3\x81\xe7\x16\x51\x6b\x24\x73\x12\xb6\xbe\x29\x57\x2a\x4d\x1b\x55\xaf\x3b\x73\x14\x08\xaa\x6e\xf3\xc9\xd9\xf5\xf0\xe4\x92\xf4\x73\x11\x17\x42\x1b\x15\xda\x71\x9b\x42\x52\x53\x9c\x6d\x20\x64\xb6\xe6\xae\xf5\x4a\x90\x7c\xa8\x2c\x2f\x99\x51\xf8\x0b\xea\x31\x6d\xdf\xa9\x4b\x89\x12\x98\x2a\xfa\x79\x4a\x68\x61\xdd\x13\xd7\xfa\x88\x57\x45\x80\x52\xe4\xad\x36\x61\x6c\x6a\x15\xca\x0e\xa0\xf0\x4e\x75\xc6\xa4\x96\x4f\x64\x92\x3b\xf1\xbd\xf4\xbc\x93\x30\xf7\x23\xeb\xcf\x88\x76\x30\x3c\x42\xde\xb1\xea\x95\x68\x04\xc6\xf0\x97\xb5\x36\x5a\xf1\x91\x97\xb2\xa4\x82\x08\xe6\xc8\x33\xd4\xbe\xf5\x4b\x68\x9e\x7f\x70\x12\xf1\xb0\xd7\x83\xb8\xd9\xb2\x26\xb0\xe1\xa6\x1b\xbe\xb8\x4d\x52\x95\xe5\xc0\xfd\x24\xb5\x15\x05\xf9\x2f\x48\xaa\xe7\xe4\x17\xab\xf2\x5f\xa6\x37\x6a\xdb\x9d\x75\x48\x6b\xa7\x85\xff\x1d\x69\x3d\x3a\x40\x28\xe5\xa6\x63\x5a\x20\xa7\xa6\x80\x00\x19\x9e\xcd\xcf\xac\x41\x05\xbf\x9c\xca\x29\xd3\xc3\x2f\xa4\x68\x32\x33\xa0\x2e\x6f\x0c\xc5\x4a\x2e\x94\xc5\x77\xbf\xf5\x4b\x8b\xf2\x21\x91\x5c\x80\xc1\xb1\xe7\x3d\x1f\x81\x39\xe2\xab\x5c\x32\x24\x93\x31\x09\xd7\xc2\x44\x75\x32\x31\xa0\x48\x5d\x9f\x76\x13\x21\xf8\x5c\xc9\x97\xd1\x38\x3c\x9e\x48\xa2\xa5\x7b\x27\xdc\x2d\x8b\x32\x44\x2b\xb1\xce\x5e\x16\x25\xa2\x30\x3f\x43\x35\x4d\xe5\x8b\x48\x0e\x5b\x83\x6f\x80\x5d\xc6\xb3\x23\x31\xec\xc4\x81\x4f\xe2\xbe\xc3\xb6\xef\xe0\xdb\x08\x5f\xe0\xc7\x2e\x30\x25\x42\x4f\x51\xc5\x1d\xb6\x2d\x54\x7a\xca\x16\x41\x80\x45\xeb\xe5\x2f\xad\xa5\x25\x40\xe9\x51\x42\x14\x95\x3c\x59\xbc\xc9\xb3\x5b\x44\xd1\x3a\xb9\x79\x0d\x0b\x04\x51\x34\xe7\x59\xa6\x3d\xb1\xf4\xdd\x5b\x6d\x0c\x41\x51\x59\x5c\xbf\xdf\x24\xb9\x4c\x2f\x32\x7d\xb5\xad\xf8\x69\xb2\x41\x14\x2d\xcb\x64\xcd\xbf\xd7\x06\xb0\xc6\x7f\xe3\xc5\x42\x45\xcf\x6e\x08\x69\x92\x45\xb1\x33\x18\xa2\x80\x34\xf6\x7a\x90\x3b\x3b\x86\x91\xc9\x62\xf1\x0c\x06\xb0\xc7\xe8\xcd\x0f\x98\xa6\x2c\x20\x2f\xb1\xb3\x8d\xe8\x5b\xd2\x52\xf2\xd1\x30\xa3\xa6\x60\xcc\x3d\xd1\x58\xd0\x2b\x2d\xa1\x13\x13\x14\x0b\x0b\x06\xc4\xcc\x06\x71\xd7\x7b\x1a\x10\x85\xb9\x01\xec\x2b\xd8\x95\xc0\x39\x18\x34\x48\xde\xc3\x3b\x5d\x40\x47\x68\x78\x29\xd9\xe8\xa1\xa4\xb1\x1a\x36\x61\x3c\x4d\x99\x88\x13\x78\xbb\x74\x26\xf8\x47\x68\x98\x42\x36\xf0\xfa\x2f\x87\x4c\xdd\x4d\x0b\xb9\x14\x2b\x76\x09\x20\xbc\xda\xc2\xad\x43\x81\x69\x65\x03\x37\xa9\x88\x14\xda\x65\xf5\xff\x48\xef\x79\x65\xff\x55\x07\x0e\x3a\x21\x14\x1a\x42\xa6\x24\x0c\xe6\x0b\x10\xfa\xbf\xd3\xe5\x50\x5e\x5f\xbf\x3f\x39\x9e\x4c\x49\xc9\x4a\x1b\x0b\xca\x3e\xa2\xff\x1b\x03\xa1\xa4\xf0\xf6\x40\x78\xa7\xb7\x7a\x07\xa4\xa5\x6f\x96\x9c\xd7\x75\x7b\xe3\x34\x5a\xc0\xae\xca\x42\x04\x41\x19\x09\xa5\x91\x74\x33\x5b\x2b\x2c\x1a\x83\x45\x42\x38\xda\xed\x1b\xdf\xdc\x8d\xaf\xd7\xe4\xc6\xf8\xe6\x76\x7c\x21\x48\xb6\x1c\xe3\x03\x30\xbf\x6a\x96\x29\x0b\x89\x74\x89\x4b\x15\x83\x90\x8d\x69\xca\x74\x25\x34\x51\xc3\x3c\x15\x2c\x89\x0b\x35\xac\xa3\x55\x52\xa9\x5a\x05\x89\xd2\x46\xcb\x05\x09\x53\xf7\x6d\x42\xab\x14\x5d\x58\x77\xf0\x10\x50\xfd\xa2\xa3\xfb\x61\xc1\xec\x6c\x0c\x02\x0f\x19\x0d\x9d\x9f\xdb\xed\xe0\xfc\x1c\xd9\x78\xdf\x55\x83\xd1\xe9\x24\xd9\x01\x16\x5a\x11\xcc\x23\x84\x42\x5f\x95\xdc\x2c\x17\x78\x22\xa2\xc3\xb6\xe8\xef\xea\x5f\x89\x6c\xac\x95\x67\x72\xbe\x71\x39\xdf\xcc\x74\x2f\xcd\x74\x6f\x4f\x72\xac\x67\x39\x2c\x02\x35\xd3\xed\x84\x16\x80\x17\x6a\xa0\x1c\xa7\x16\xbc\x51\x87\x1b\x7d\x2a\xd8\xc9\x59\x79\x72\xd9\x14\x5a\xaf\x92\xec\x10\x99\x30\x21\x64\xac\x4e\xbc\xb5\xa2\x23\x5c\x32\x39\xab\x7a\x15\xa0\x9a\x0b\x2a\xa6\x9d\x30\x47\x41\x60\x0e\xd1\x0b\x56\x46\xcd\x69\x66\x26\xe2\x55\x92\x61\x42\x42\x4e\xa2\x82\x21\x64\xcf\x6c\xdc\xcc\x2f\xa2\x62\x28\x9f\x34\xd7\x4a\xa1\x8c\x6c\x94\xb1\x48\xd1\x1b\xf9\x4a\x6b\x00\xe5\x10\xf2\x21\x42\x70\x92\x06\x5c\xd6\x55\x92\x79\x66\xd4\x1a\x73\xa7\x9d\xdc\x1f\x9f\x12\xec\x72\x34\xdb\x25\xfc\x60\xd0\x6e\xee\x15\x14\x81\xb0\x05\x4e\x56\x50\x94\x92\xbd\x0a\x75\xe6\x1e\x16\x51\xb3\x11\x45\x4f\x0b\x8a\xfb\xaa\xbf\xec\x56\x8f\x73\xa6\x8c\xc8\x5d\xe5\x24\xca\xbb\x4c\x38\xce\x99\xc6\x15\x24\x91\x0d\x2d\x83\x9f\x02\x7e\xbf\x16\x66\x73\xd9\x5f\xb9\x41\x99\x6b\x30\xc0\xa6\x79\xa1\x81\xd1\xfe\x32\x96\x50\x37\xc8\x8f\xc7\x3d\x00\x93\xe5\x4b\x81\x75\x48\x32\x0e\x7e\x63\x8a\xbf\x39\x50\xaa\x9e\xa8\x06\x7b\xb9\x02\x8e\xbb\xc9\x3a\x25\x4c\xeb\xa1\x8e\xf5\x01\xb5\x8e\xfc\x5a\xb1\x04\x94\x06\x60\x2a\xc7\x92\x28\x1d\x4e\x42\x6b\x86\xa9\x3c\x28\xd2\xc7\xe3\x68\x1e\x26\x51\x0a\x86\xa4\x73\x30\x70\x91\x1b\x15\x06\xd9\xd6\x42\xc6\x48\x56\xb2\x04\xc8\xe4\x20\x18\xe4\x16\x82\x26\x08\xf0\x20\xf7\x39\x35\xf3\xa0\xae\x07\x2f\xb0\xff\x84\x22\x03\x23\x8d\x88\x89\x66\x77\x87\x73\xbd\x0c\x68\x62\xb7\xce\xa9\xd6\x65\x0a\xbb\xd5\x54\x1d\xdf\xab\x0e\x94\xbe\xdf\x39\x72\x65\x7c\xe6\xc6\x53\xc4\x37\x3c\x4d\x8e\x8f\xa7\x04\x83\xd1\x69\xe2\x7d\x19\x73\xa1\x89\xdc\x4c\xd4\x05\x2a\x40\x7d\x42\x53\xa0\x3b\x70\x22\x35\x18\xbb\x11\x85\x60\xd8\x8d\xb1\x60\xc7\x13\x08\xb3\xd0\x60\x52\xb5\x0e\xce\x29\xfd\xda\xcc\x63\x63\x05\xce\xba\x2a\x03\xe8\xb0\x8e\x13\x8c\x15\x63\x4d\x70\x58\xef\x43\x30\x37\x5d\x0b\x24\x73\xbf\x77\x7a\x46\x10\x0a\x9a\x35\x42\x44\x98\x83\x94\xa4\x13\x64\x58\x4f\xec\x08\x15\x39\x0a\x8d\x1a\x11\x5c\x7f\x4e\x47\x3a\x98\x3b\x43\x45\x6e\xe2\xba\xa7\xf9\x51\x0e\xe4\xf9\x5a\x4b\xf2\xfa\x01\xfc\xd4\x26\xdc\xfb\x45\xb6\x2d\xc9\x83\x13\x7a\xd7\x6c\x49\x1f\x18\xc2\xd4\x2e\x4d\x1d\xdf\x90\xee\xba\xf0\x2f\xe0\x24\x67\x51\xfc\x9a\x18\x7e\x17\x2c\x2e\xeb\x3a\x99\xd1\xb5\x89\x22\x2b\x25\x38\x08\x62\xac\xa3\x1e\x87\x9c\x9e\x7a\xcf\x6c\xdc\x6e\xc8\xe0\x40\xb5\x1c\x02\x5f\x18\x2b\x0c\x32\xb6\x60\x73\x06\xa0\xbc\x09\xfd\xaa\x11\x19\x54\x09\xc5\xfe\xfd\xe0\x5a\x0b\x7f\xeb\x61\x07\x1b\x93\x80\xb5\x85\x65\xe4\x46\xc0\xc2\x05\x01\x3e\x65\x6b\xaf\x56\xba\x66\xa7\x23\x65\xb2\x20\x3b\x5f\xa1\x00\x12\xba\x65\xde\xab\xa1\xe2\xba\xe5\x60\x0d\xd7\x14\x73\x76\x0f\xa0\xcf\x9a\xf6\x18\x2f\x04\x81\xe4\x58\x2d\x40\x2d\x2b\xa2\x47\xe1\x57\xd4\xeb\x06\x76\xea\x10\x25\x29\xf7\x40\xc7\x98\x97\x29\xea\xc5\x11\x3c\xfd\x4b\x1c\x41\xa5\x40\x32\x18\x35\xfa\x40\x84\x1a\xd4\x14\x15\x8e\x5e\x41\xa1\x94\xc4\x8b\x41\x17\xf3\x59\xd8\x20\x05\x14\xcc\x4f\x96\x1d\xf0\xb9\xb5\x8a\x1f\x57\xd4\xf5\x60\x69\xba\x5f\xa3\xc4\xd9\x7b\x1b\x7d\x4b\x68\xe2\x35\x28\x00\x0b\xd0\x80\x1d\x05\xc1\xe0\x0a\x97\x16\xeb\x71\xd9\x00\x57\xac\xeb\x35\x35\x03\x9d\x0d\xd7\x80\xbb\xc6\xfc\xd8\x68\x64\x5a\x4d\x5b\x29\x17\x8a\x08\x56\x10\x6e\x75\x3a\x87\xe0\x1c\xcd\x60\x5c\x75\x9d\x90\x20\xd0\xf9\xe6\x7e\x68\xae\xba\x9e\xeb\xa2\x7e\x4f\xf3\x45\x71\x5d\xd7\x39\xd9\xab\x10\xa9\xe3\x29\xae\xd8\x45\x9c\x6a\x8c\x39\x7e\x10\xb2\x6e\xc1\x2a\x73\x82\x90\x3e\x99\x44\x59\xb8\xb4\x00\x91\xf2\x73\xf0\xc6\x80\xfd\x75\x90\xfe\xd4\x5b\x33\x03\x6d\x54\x19\xf8\x41\xb0\x42\xd8\xe8\x8e\x04\x20\x1a\xbc\x61\xdb\x20\xa8\xe2\xed\xcc\x3d\x09\x82\x5f\x70\xa5\x9c\x47\xf5\x78\x37\x5e\xb1\x20\x3c\x06\xe6\xa8\x8d\xd1\xe2\x22\xe4\xaa\xc6\xaf\xe5\xb8\xf2\x1e\xe0\x17\x4c\xea\x7a\x69\xad\x56\xb4\x51\x81\x4b\xd0\x95\x5e\x8c\x36\x70\x10\x27\x48\x5d\x0f\x7e\xc1\x25\xa9\xeb\x6d\x10\x5c\xe2\x32\x5e\x43\x07\x5e\x41\x10\x5f\x8c\xe7\xac\x54\x9f\x81\xe5\x2f\xcc\x41\x07\x38\x6a\x97\x34\x5b\xd3\x43\x3d\x1e\x04\x8b\x2e\x48\xea\x9a\xde\x09\x42\x65\x5d\x80\x94\x7c\xf8\xcd\x3e\xec\x25\xf5\x72\xb7\x0d\x7a\xfd\xcc\x4d\x5b\xe7\x10\x00\xd2\xc2\xe4\x55\x1a\xf8\xe5\x80\x65\x87\x25\xbc\x1e\xd1\xa0\x39\xdd\x69\x92\xd9\xc0\xe9\x19\xef\xc9\xb4\x0d\xd0\x5c\xaa\xe8\x83\x82\x74\x02\xc6\xf6\x11\xf0\xbf\x3c\x17\x6a\x16\x2e\x5b\x2a\x6c\xb8\x4e\x9d\xfa\x63\x07\x8a\xbb\x69\x5c\x2c\x99\x7f\xcf\xe3\xfc\xa8\xaf\xd0\x1c\x42\xd5\xee\xbd\xed\x4d\xb9\x62\xfe\x37\x18\x26\xaa\xe6\xe6\x19\xae\x26\x48\xba\xeb\xb0\xb0\xd4\x8d\x36\x11\x38\xd5\xce\xd7\x42\x01\xef\x81\x40\x51\x63\xa5\x3c\x0c\x9b\x34\x43\x31\xea\xce\xd6\x4f\x52\xb4\x69\x51\xd7\x65\x77\xf6\x71\xf5\xd9\xd4\xcf\x4b\x71\x01\x31\x4e\x26\x10\x92\x57\x61\x9d\xfe\xf7\x15\x1f\x4f\xa6\x45\xd4\x28\xbe\x20\x21\x2e\x7b\xa7\xb3\x6b\x8d\x36\x1f\x04\x5a\xbc\xb7\xa7\x09\xe7\x82\xe5\xa3\xac\x98\x2b\x0f\x91\x37\xfe\x89\x3c\xfd\x20\xa5\xc2\xe8\x64\x7a\x37\x02\x85\xec\xc7\xd3\xd7\x5d\x0b\x25\xd0\xe7\xf0\xba\xee\xb1\x43\x22\x1e\x33\x04\xc1\x3b\x05\x83\xe9\x9f\x8f\x9e\xbf\x39\x7d\x2b\x4b\x2c\x89\x2a\xf9\x65\x59\xac\xdf\xc3\xfb\xc0\x4f\xf0\x1b\x71\x72\xb3\xce\x10\xd1\x91\x39\x21\xc4\xbe\x96\x2f\x9c\x76\x75\x00\x02\x8c\x3e\xca\xad\xbe\xbf\xfd\x90\x5c\x4a\xf9\x07\x23\x28\xb2\xe4\x65\x59\x94\x9e\x3d\xf3\xdd\x08\x52\x30\x7a\x95\x5f\x25\x59\xba\x38\xfa\x78\xfa\x3a\x94\xb2\x35\xa1\x42\x79\xd0\xdd\xc8\xcf\x8d\xcf\x66\x0f\x4e\xe8\xcf\x20\x0f\x47\x67\xf9\xc9\x25\x7d\xad\x99\xaf\x6a\x7b\xb1\x4e\x85\x3e\x60\xa9\xd3\x75\x72\xc9\xeb\x92\x57\x5c\xd4\xcb\x34\xe3\x70\xe2\xf2\xe2\xde\xa3\x99\xcf\xfc\xf6\x92\xe7\xc4\x3f\x86\x79\x2f\x5a\xb6\x6d\xbd\x4e\xdb\x7a\xc9\x34\x4f\xf0\x0b\xb2\xcb\xeb\xda\xe0\x54\x73\x12\xc9\xb1\x2e\x48\x28\x8b\x1c\xa2\x18\x0d\x7b\x00\x50\xac\x1a\xbf\x88\x44\x88\x24\xb7\x30\x43\xb4\xb0\x01\xff\x0d\xde\x7d\x5e\xd7\xe6\xdd\x01\x63\xd7\xc0\x32\x6b\x18\xb9\x86\xcd\x96\x20\xb6\xb2\x02\x8a\x12\x71\x31\x53\xa5\xc1\x94\x49\xd6\xac\xff\xac\x10\x62\x7c\xf6\x2d\x6f\x80\x8c\x14\x98\x84\x62\x5a\xc6\xc6\xbe\x69\xc6\x78\x3e\x2f\x16\xfc\xd7\x77\xaf\x9e\x15\xeb\x4d\x91\x2b\x04\xc5\x21\x62\x68\xd8\xf3\xc4\x97\x4a\xc9\x1e\x68\x94\x92\xeb\xcd\x49\x35\xea\x76\x32\xc4\x3a\x1b\xfd\xf1\xe7\x96\x97\xb7\x3a\xd0\xfa\xdb\x2c\x49\x73\x6b\x60\x68\xc6\xa0\x19\xef\xa2\x50\xe2\xba\x64\xd5\xa8\x13\xdc\x5d\x5f\x7a\x7e\x40\xef\x05\xce\x29\xf8\xfe\xc8\xa1\xb3\x47\x81\x9a\x8b\x0b\x10\x69\x59\x5b\x56\xbc\x4c\x93\xac\x3f\x22\x9d\xee\x5c\xac\xd5\x51\x3a\xa3\xfa\x12\x15\x71\xc3\x4f\xea\x29\x40\xf4\xc5\x18\x56\x36\x1c\xfa\x8c\x5e\x29\xaf\xb8\x5e\x5c\x4e\x16\xe7\x91\xcf\x1b\x6a\x75\xe2\x1e\xf0\x1f\xc0\xf0\xb3\x5b\xa0\x55\x99\x34\x1c\xcf\x65\x97\xc9\x8e\xd6\x3a\x9d\xb4\xc2\x28\x34\x32\x30\x00\xc1\xe8\x79\xdd\xd0\xac\x48\xce\xe1\xb5\x70\x21\x85\xd5\x53\x2d\xc4\xd5\xf5\xc0\xa2\x7f\x80\xe2\xa4\xf5\x81\xbe\x41\x98\xaf\x49\x6a\xa2\x7e\x29\x63\x81\x96\xea\x28\x27\x91\x52\x1b\xe5\x7d\x6a\xa3\x9d\xfc\x96\x50\xa8\x59\xa0\x80\x41\x1d\x72\xc0\xcf\x82\xa2\xb3\xf2\x2c\x47\x60\x33\x13\xf6\xe4\xcd\x0f\xe4\x55\xe1\x6a\x8d\x82\xee\x4f\xc1\x4e\xfe\xf1\x68\x7c\x72\x49\x9f\x09\x76\xf2\xff\x1b\x3d\x7c\x70\x42\x3f\x0b\x76\x82\xe3\x28\x98\x91\x73\x16\xff\x27\x98\x3d\x3c\xa1\xbf\x03\x01\x1a\x3d\x8c\x48\x18\x1f\x9d\x89\xd9\x43\x1c\xff\x47\x16\x39\x7b\x48\x1e\x9c\x5c\xae\xe9\x73\x4d\xa0\x7e\x78\xf1\xa1\xfe\xf1\xc5\xd3\xe7\x52\x6e\xfc\x5e\xa6\x9d\x9d\x9c\x9d\x9c\xd0\xb7\x82\xed\xf6\xf4\x1d\xfc\xfd\x28\x18\x7a\x78\x82\x8c\x77\x2a\x7a\x88\x08\xfd\xa3\xc7\x90\x27\xf1\x43\xd0\xbe\xf2\x0f\x79\x9b\x8e\x85\xdd\x0d\x42\x58\x43\x55\x59\xf8\xd4\xf8\xc8\x8e\x69\xda\x3e\x39\x6f\x9c\x02\xab\x73\x89\x5c\xe3\x03\x97\x2c\xd5\x9a\x62\x34\x94\x94\xae\x8c\xc7\xb3\x08\x97\xac\xb4\x51\x5a\xea\x1a\x3d\x44\x54\xf9\xd0\x71\xf0\x1b\x89\x67\xc4\x1a\xac\xe7\x84\x84\xed\x67\x20\x1a\xe4\x3e\x16\xcd\xaf\x6d\x3a\xad\x42\x86\x70\xc6\xd8\x3b\xe1\x3e\x3f\xc1\x95\x7a\x3e\xb7\x01\x40\xe2\x6a\xa6\x0c\x32\x15\xf9\x88\x2b\xe5\xe2\xe4\xcf\x4b\xfd\x4e\xc6\x2a\x6d\xbc\x7c\xd0\xb4\x37\xab\xeb\xb4\xae\x8b\x38\x9b\x45\x69\x34\xc0\x73\x96\x11\xad\x77\x0b\xb1\x00\xf4\x69\x29\x68\x38\x6b\xfc\x8c\xd0\x44\xfe\x19\x4c\x40\xc9\x30\x37\xbb\x67\xe2\xe7\x8e\xc7\x33\xc9\xa5\x17\xe0\xd3\x15\x04\x09\x0c\xb5\xfb\xf4\x1f\x45\xcb\xc3\x91\xdd\x8d\x92\x3f\x92\x9b\xf7\x5c\x88\x34\xbf\xac\x46\xcb\x2c\x11\xda\x15\xd5\x02\x91\xe7\x6a\x7b\x70\xda\xce\x38\x9f\x49\x7e\xbf\x88\x73\x29\x39\x97\x75\x8d\x4b\xb6\xdb\x13\x12\xe7\x33\x05\xb1\x6c\x29\xa2\x87\xbc\x39\x18\x03\xb8\x0c\xe5\xfb\x3f\x04\x1c\xec\xb2\x73\xf5\xeb\x9b\x2f\xcd\x45\x7a\xc5\xc3\x31\xcd\x92\x4a\x9c\x16\x8b\x74\x99\xf2\x05\xf8\xd5\x8a\x04\xfc\x6b\xfd\xb6\x86\xbb\x6d\x99\x85\xa6\x10\xe0\xbd\xd1\x0f\x2f\x3e\x20\x9a\x56\xaf\x8b\x79\x92\x85\xca\x5e\xe2\xa2\xd8\x8a\x3a\xd9\x6c\xe4\xff\x8f\x2b\x51\x94\x72\xab\x1f\x0d\x8f\xa1\xce\x2a\x2d\x72\xd8\xf1\xe5\xe6\x5f\x5f\xa7\x0b\x00\x0f\x7d\x70\xa2\x48\xcf\xb9\x76\xd4\x9f\x17\x19\xa1\x0a\xfa\x05\x80\x0c\xcb\x42\xf2\x6a\x80\x6f\x31\x18\xd3\xa4\xba\xcd\xe7\x1a\x63\x58\xf0\x5c\x00\x08\x1d\x92\xa2\x53\xaa\x18\xb1\x93\x9b\xe3\xeb\xeb\xeb\xe3\x65\x51\xae\x8f\xb7\x65\xa6\x76\xb9\xc5\xf4\x68\xbe\x92\xbc\x8d\x60\xbf\x7e\x78\x79\xfc\x4f\x44\x25\x07\xb8\x11\xda\x0d\xf0\xa3\x50\x68\x0f\x8a\x7f\xda\xc8\xed\x0b\xa9\xd8\xf0\x2a\x45\x5e\x22\x7a\x23\xef\x1b\x35\xad\x33\x7a\x64\x59\x2e\xfa\x47\x05\xa1\x3b\xbd\x0c\x32\x45\xe7\xf8\x23\xb9\x4a\x34\x6a\xc7\xde\xb4\xbd\x0a\x77\xb2\xcc\x93\xb3\x8b\x9b\x75\x76\x76\x71\xa2\xaa\x3c\x39\xbb\x90\xbf\x27\xaa\xbc\x93\xb3\x0b\xf9\x7b\x76\x71\xb2\xa7\x25\xaf\x36\x45\x5e\xf1\x97\x29\xcf\x16\xfa\x65\x64\x12\x3f\x9e\xbe\x46\xfa\x2b\x4c\xd2\x07\x7e\x23\x4c\xb3\x4c\xda\xbf\xde\xbf\xf9\x59\xb5\xe0\x8a\x97\x42\x3b\x42\x42\x13\x51\xa8\xf8\x48\xc5\x45\x1e\xc1\x37\xcb\x8e\x56\xb7\xb2\x14\x14\xca\xb7\x15\xdf\xa9\x93\xe5\x87\x87\x8e\xc9\xdd\x53\x6f\x4a\xab\x29\x63\x86\xea\x46\x48\xf1\xcc\x4e\xaa\xed\x01\x03\x14\x11\xfd\x28\x30\x2c\x9c\xe6\x5a\x91\x02\x71\xf8\xa3\xc0\xcd\x54\x00\xea\x90\x09\x0e\x8d\xe6\x95\xc0\x6f\x05\x81\xc4\x0f\x65\x92\x57\x9b\xa2\x14\x32\xf1\x9d\x4e\x6c\x55\xdb\xab\x7b\xc2\x2d\x07\x00\x26\x60\x79\xb6\x02\x0e\x5b\xd5\xde\xca\xad\xeb\xed\x46\xbb\xaf\x5f\xb0\xd5\x48\x7f\x77\x5d\xaf\x94\xd2\x4f\xdd\x06\x01\xbe\xf0\x82\x7f\x5c\x68\xde\x89\x44\x77\xf8\x82\x84\x46\xbb\x78\xda\x08\x2a\x40\x2f\xd9\xdd\xe8\x59\x92\x65\x17\xc9\xfc\x73\x85\x51\x91\xcf\xf9\xd1\x9a\xaf\x8b\xf2\x16\x11\x7a\xc5\x56\xa3\x4a\x24\x62\x5b\x3d\x03\x7c\xf7\xdd\x9e\xde\x4a\x2a\xfb\x54\xfe\xb9\x66\x48\x61\x9f\xf2\x05\xa2\xe7\x6c\x57\xf2\x64\x71\xfb\x5e\x48\x79\x1b\xb0\xc6\xdf\xe9\x89\xf1\x23\x4f\x16\x7d\x58\xd6\x53\x15\x71\x5b\xca\x2a\x0a\xf2\xa5\x62\xbb\xfd\x54\xb0\xdf\x85\x72\x7e\x4d\xc9\x94\x54\xb1\xe8\x40\x11\x00\xde\x3b\xc3\x07\x1f\x35\x02\x38\x88\xf8\xd1\x8c\x4c\x05\xab\x62\xde\x93\x75\xdf\xe0\x33\x84\xe2\x33\x84\xe6\xff\xe8\x91\x64\x00\x2f\xb9\x78\x9a\x65\xcd\x6f\xe9\x8b\x85\xbc\x8d\xd2\xd0\x9a\x8c\xbc\x53\x81\x38\x3a\x5f\xee\x4d\x47\x55\xe5\x16\x3c\x13\x9e\xb6\x1b\x37\xeb\x49\xaa\x6b\x4e\x6f\x63\x3e\x63\xfa\x18\x74\x4f\x8b\x2b\x5e\x96\xe9\x82\x9f\xa6\x6b\x85\x9e\x79\x50\xe9\xbd\x05\xb7\xbd\xb5\xce\xc7\xb8\x29\xc1\x8d\x6d\xff\xf0\x80\xab\xfc\x96\x9c\x1b\xef\x3e\x1e\x9f\xeb\xf9\xe0\xfb\x8a\xa8\xf0\x7b\xe4\x4a\xca\xef\xb1\xfc\x4b\x79\x2c\x66\xb3\x26\xf0\x46\x72\x21\x97\x4b\x8f\x29\x4d\x5d\x5f\x7b\xfb\x4c\x39\x82\x8c\x58\x10\xfa\x06\x8f\xcd\x91\xef\x1e\x44\x86\x53\x1b\xdf\xe1\x9c\xd0\xd5\x68\x5b\x66\x0c\x63\x5e\xd7\x70\x59\xd7\x7a\x0b\x21\x43\x84\x88\xe5\xdf\xbe\x17\xd4\x23\xff\x43\x74\x72\x82\xe4\xbb\x0a\xbf\x73\xb4\xe6\x62\x55\x2c\xea\x5a\x68\x70\xaf\x95\x4d\x51\x59\xe8\xca\x6d\xc9\x0c\xbb\x1b\x60\x5f\xc8\x61\x7e\x08\x21\xe3\x7e\xba\x1a\xcd\xcb\xa2\xaa\x9e\x17\xeb\x24\xcd\xc9\xae\x27\x96\xb8\xe4\xd5\xa4\x20\x9e\xa9\xdd\x14\x3e\x86\xea\x1b\xf5\x43\x1b\x85\xb0\x3f\x5a\xdf\x33\x94\x1b\x71\x51\x89\x01\x53\xc1\x10\xbc\x27\x19\x3c\xd0\x12\xfb\x07\xb2\x6b\x16\x24\xa9\x66\xba\xd4\x9f\x15\x04\xab\x91\xb7\x23\x3a\xc8\x3b\xc7\xe9\x98\x8c\xfa\x0d\x66\x44\x1e\x75\x2b\x7b\xb5\x4c\x16\x10\x0f\x30\xc9\x08\xa1\xbf\x4a\x7a\x49\x57\x54\xd0\x73\x42\xb7\x46\xf1\x70\x0e\xbc\xc8\xf2\x28\xcd\xf1\xc6\xa8\xaf\x65\xdd\x6a\x5f\x26\x41\x30\x06\x6f\x57\xc5\x42\x0c\x87\xc0\x79\x34\x74\x58\x08\x08\xa2\x48\x4a\xe1\x46\x52\xfd\x34\x63\x02\xd2\x15\x58\x29\x68\x20\x98\xc1\x73\x2d\xa3\xa8\xac\x84\x16\xaa\xa7\xed\x44\x79\x06\xc7\xa7\x8d\x97\xa2\x03\x3d\x03\x01\x35\x35\xd5\x55\x7c\x82\x82\x85\xb3\x87\x14\x7f\xc9\x34\x80\xff\xae\xee\x45\xf5\x63\xdb\xf1\xa7\xa0\x68\x88\x24\x03\xbc\xd0\x2d\x54\x3c\xb3\x39\xf8\x23\xd4\x1b\x06\xaf\x59\x4e\xdb\xc3\x5a\x03\x06\x67\xec\x43\x86\x3f\x58\xd7\xad\x08\x05\x28\x44\x11\x22\x43\x3d\x74\xda\x82\x52\xe7\x57\x9a\xe9\xd5\x68\x9e\xcc\x57\x5c\x05\x48\x74\x00\x74\x82\xa2\x07\x13\x44\xe8\xa2\xbf\x40\x74\xce\xd0\xf0\x8d\x18\x0e\x87\x0b\xb3\x46\x0b\x75\x99\x2e\x0d\x27\x08\xf1\x25\x7c\xd6\x10\x9c\xcc\xce\x47\x6d\xc2\x89\xd1\xab\xe5\xb1\xc9\x73\xfc\x3e\xcd\xe7\x1c\xd1\xce\x9b\xa0\x17\x16\xc9\xe5\x7d\x85\xfc\x5c\xe4\xfc\xf8\x54\xae\x02\xe4\x72\x13\x42\xbd\xb9\xef\x86\x5d\xeb\xcf\x5b\x03\x2c\xfc\x5b\xd2\x5f\x93\x2e\xe0\xf8\x03\x58\x6d\x37\x0a\x20\xb4\xef\x85\xa7\xc0\x2b\x22\x9f\xcc\xc4\xe3\x99\x6c\x8e\xe6\x22\xe3\xe6\x93\x59\x74\xf0\xc9\x50\x8a\x08\xd0\x6c\x3f\x39\x92\xbb\xd8\xf0\xa3\x18\xa2\xe9\xd1\x9f\x6c\x3c\x1a\x4f\x50\x88\x10\x09\x5d\x31\x2a\xaa\xd1\x6a\xb4\x52\x3b\x1b\xe9\x69\xe6\xd2\x3d\x8e\x97\x0a\xab\x6e\x35\x52\xb8\x33\xef\x79\xbe\x30\x11\xaa\xfc\x34\x75\xd6\x78\x41\xcf\xe9\x8a\xd4\xf5\xd6\x1e\xef\x9e\x6b\xf2\x0e\x85\x5c\x33\x04\x77\x88\x5e\x02\x5a\xe9\xca\xc5\xf2\xa0\xe7\xca\x01\x7b\x35\xaa\xb6\xa0\x51\x95\x29\x10\xdf\x63\xa5\x54\x86\x84\x96\xec\x57\xc9\x7b\x69\x02\x03\x7c\xc4\xf9\xc8\xf1\x20\x6c\x42\x37\x41\xb0\x6e\x91\x0d\x00\xd0\x89\xcf\xe9\x6a\xd6\x20\x49\xab\x11\x70\xff\xb2\xe3\x85\x72\xa8\x79\x02\xc1\xce\xd9\xc1\xb0\x57\xe6\x43\x90\xce\x8f\xc8\x1e\xa8\x91\xba\x23\x8a\xa4\x6f\xd9\x60\x02\x80\xc8\xf9\x02\xdf\xd2\x37\xc4\x11\x62\xd8\x56\xc5\xaa\x2c\xae\x8f\x3e\x4c\xdf\xe0\xe3\x09\xfd\x40\xf6\x7b\xd8\x51\xe1\x0e\xfd\x5c\x1c\x59\x26\xd3\x17\xe6\xdf\x80\xcc\x9b\x58\xf9\x14\xd8\xc4\x5b\xfa\x94\x5e\x33\x31\xdd\xd6\x35\xde\x4a\xc9\x76\x1e\x04\x2d\xff\xa0\xb9\xec\x30\x7d\x5c\x92\xb2\x4a\x12\x2c\xda\xe8\x2e\xfe\x64\x1c\x7d\x2d\x45\x36\xc6\x9f\xb0\x47\xe3\x71\x10\xf0\xc7\x5f\x8d\xc7\x75\xfd\xd5\xf8\x6b\xc6\x18\xa7\x92\xe2\xdc\x76\xfc\xc4\xbd\x40\x5a\x0e\x62\x51\x0b\x21\x74\xce\xb8\x9b\x8d\x53\xf4\x50\x92\xa6\x79\x3c\x9e\x4d\xc9\xdc\x9e\xf3\xda\xc8\x12\x25\x80\xd1\x70\xcb\xa5\xc8\x25\xd7\xe1\x22\x5b\x6b\x4c\x99\x2e\x96\x0e\x38\xb7\x92\x0c\x4b\x05\xa4\x40\xfe\x55\xf4\xa9\x24\x64\x37\xb7\xf2\x77\x41\xa6\x17\x25\x4f\x3e\xcb\xad\x4f\x36\x26\xcd\x8f\x72\x92\xaa\x76\xc9\x01\x70\x70\xd4\xb9\x62\x4e\xe7\x0a\xc2\x78\xe4\x24\x9b\xb8\x90\xdc\xe3\x50\x3e\x98\x91\x5d\xca\x0a\x5d\x62\x02\x68\x3c\x05\xd9\x43\xa8\x8d\x44\xd6\x60\xed\xc5\xd3\x81\xfa\xf6\x20\x70\x4d\x49\x09\xcd\xe3\x74\xb6\xc7\x2b\x7a\x4e\x13\x42\x68\xbb\x7f\x5b\x11\x97\x01\x8c\x64\xb7\xa7\x5b\xbf\x5f\xf5\xfe\x00\x3d\xb1\x8d\x27\x33\x85\x41\x09\x2c\x99\xd7\x64\x92\xc5\x49\x9b\xc7\x6c\x7c\x52\x32\x53\xee\x7f\x6c\x6b\x86\x66\x9a\x82\x45\x1b\x9c\xa7\x79\xd2\x61\x9c\x2a\xe0\xc4\x9e\x74\xe0\x4d\x07\xf3\x20\x28\x83\x40\xb5\xf0\x25\x88\x4e\x4a\xee\xf1\x12\xe0\x54\xc8\x7c\x01\x84\x46\x48\xa9\x57\xb3\xac\x56\xcd\x96\x54\x8e\x8c\xd5\x81\x2b\x0a\x37\x0f\x82\x39\x58\xe2\xc3\xe8\xe0\x84\x65\xf1\x1c\xc6\x23\x9d\xd5\x75\x16\xa3\x87\x70\xe9\xa1\x29\x67\x60\x04\x54\xb1\xc2\x0b\x1c\x4b\xe2\xc9\x4c\x59\xf0\x7b\x05\x00\x21\xb5\x65\xc0\x1d\x21\x3b\x88\x17\x9d\x44\x09\xa0\x2d\x87\x10\x02\x20\x83\x19\x86\x53\x26\xf3\xd0\xad\x1d\xd0\x4a\xf6\xbf\x37\xbf\x20\x73\x22\xab\x4f\x64\x8f\xc0\x82\xaf\x88\x60\x89\x35\x8c\x54\x47\x30\xf2\xde\x11\x07\xad\xc2\xac\x40\x94\x6a\x9c\x9c\x50\xf8\x09\x93\xe8\x43\x28\x29\x84\x1a\xbe\x0a\x42\xdb\x95\xc5\x5a\x4e\xc9\x21\x3a\x12\x85\xec\x80\xfd\x7e\xdf\x2c\x47\x13\x52\x44\x65\xbf\x87\x62\x2f\x67\xdd\x2d\x3d\x87\xb0\x4b\x11\x6e\xed\xcf\xf8\x29\x3b\xef\x5b\x7d\xaf\x93\x4a\xd8\x2d\x59\x45\x45\xe9\x6c\xc8\xec\x29\xa1\x87\xde\x97\x5b\xaf\x79\x4d\x6f\xc3\xec\x29\x21\xf4\x91\x22\x32\x75\x8d\x7e\x7c\xf1\xf4\x39\x82\xdd\x44\x32\x31\xd1\x35\x43\x79\x61\xe0\x06\x42\x4d\x8b\x54\xaa\x58\x9b\x76\x84\xf8\x9a\xdd\x82\x60\xc2\xe9\x92\xdd\x2a\x9e\x26\x63\x03\xbc\x60\xb7\x7a\xbb\x50\x0c\xd5\x35\x1d\xf0\x20\xb8\xae\x6b\xb9\xf7\x98\x2e\x05\x2b\x6e\xce\xc6\x84\xc0\x26\x0d\xe2\x0d\xe3\xf6\x12\x70\x9a\xb0\xa8\xeb\x6b\x29\x59\xd0\x2c\x3a\x6d\x44\x2a\xbb\xa0\xf1\x92\x5e\xd3\xf3\x19\x09\x4f\xfd\x50\x65\x17\x72\x9b\xb9\xa6\x8b\x99\x2b\x54\xca\x59\xf8\x4a\x4a\xd5\x9a\x10\x37\x36\xa8\x2c\x52\x5b\x94\x1e\xa6\x10\xee\x5e\xa8\x36\xca\x1d\x8b\x66\xd1\x32\x94\xc5\x5d\x42\xf8\x1f\xaf\x92\x19\x91\x25\xe1\xd6\x5e\xf7\x4c\xef\xa5\x76\xbf\x3b\x3e\x36\x6c\x35\x1c\xbc\xf5\x31\xd5\x05\x18\xb4\x19\xa9\xf8\x1c\xa4\xdf\x7f\xbd\x7f\xf3\xf3\x01\x97\xaf\xa3\x3b\xe3\x75\x42\x73\x8a\x40\x91\xa3\x24\xe6\xf7\xa0\x8f\xea\x17\x7c\xcd\x3b\xba\x0f\x84\xc3\x9c\x6d\x98\x99\x5d\x72\x81\x28\xda\x14\x95\xe8\x89\xbb\xde\x72\xf1\x6a\x02\x4d\x5c\x62\x13\xc9\xbf\xae\x4b\x5a\x42\xbc\x6e\xa3\x70\x51\xea\x14\x17\xf6\x0b\x14\x49\x5c\x69\x1d\x05\x35\x14\x29\x2c\xd4\x22\xc9\xa9\x5e\x34\x21\xc4\xdd\x68\x9f\x3f\x81\x29\x91\x76\xb7\x36\x48\xcf\xfd\x6e\xc1\xba\x5a\xbf\x36\xa5\xe3\xb4\x35\x9a\x4e\xa0\xc0\x74\x7b\xfa\xc8\x89\xd5\x58\x4e\x9a\xba\x35\xd0\x92\xe9\xb7\x7c\x7d\xc4\x7e\x4f\x1d\xa1\x6d\x45\x92\x75\xb8\xd7\x2a\x12\xf4\xbe\x7d\xc2\x75\x5d\x26\x9b\xa7\x59\x8f\x85\xb1\x2f\xcc\xc3\x2e\x86\x55\x84\x17\xcc\x99\x67\x11\x1c\x8f\x25\x57\x2d\xd8\x9d\x0e\x49\xdc\xc1\x26\x27\x23\xfe\x27\x1e\x13\x0f\x1a\xd0\x64\x6b\xfa\xcb\x34\x60\x44\x4d\xc9\x54\x74\xce\xc7\x2c\x70\x28\x1c\x69\x4d\xb9\x82\x56\xd5\xb2\x35\xf8\x2f\x4f\x89\x6c\x61\x37\xd9\x06\x84\x25\x16\x50\x52\x99\xa0\x6b\xd5\x88\xec\x89\x57\x79\xde\x8f\x42\x7d\xd0\x36\xdf\xf3\xbd\xb0\x05\x34\x3d\x2f\xc8\x5f\x19\xe3\x5b\xbb\xfb\x9c\x59\x99\xa3\xc2\xce\xab\x3e\xca\x47\x7a\x94\xe0\xa8\xcf\x47\xc3\x24\xaa\xd9\x3d\x5a\x96\x4b\xe7\x96\xd0\x6b\x7f\x92\x37\xdb\x2d\x0b\x17\x4d\x53\x6f\x12\xea\x1a\xb6\x79\xa7\x8e\x06\x7a\x23\x8c\x23\xe6\x64\x94\x17\x02\xa3\x8b\x62\x71\x8b\x7a\xa0\x89\x9d\x87\x8a\x85\xa5\x34\x27\x87\x06\xa2\x1e\x8e\x47\x4c\xa0\x47\xed\x25\xba\xa9\xf8\x76\x51\x54\x26\x70\x53\x4f\xbc\x8f\x56\x46\x40\xb9\xd2\xa0\x8d\xfd\x8f\xfa\x0a\x19\x60\xee\x83\xcb\x49\xee\x4f\xdd\x2a\xa8\x95\x7b\xd0\x1a\xa0\x9a\xc6\x51\xcc\xcd\xaa\xf4\xfd\xf6\xe5\x86\xef\x21\xe2\xe4\xa3\x8f\xa7\xaf\x7f\x14\x62\xa3\x45\x2e\xcd\x05\x70\xb9\x8e\x41\x2d\xfc\x52\xb0\xdd\x18\x22\x11\x4c\x1e\x3d\xfa\x2a\x7c\x34\xfe\x7a\x4f\x7f\x13\xed\xf3\x9e\x9b\x55\x89\xc9\xf4\x74\x34\x2f\xca\x8a\x0d\x06\xbf\x89\x20\x40\xd7\xa9\x58\x3d\x2b\xf9\x82\xe7\x22\x4d\xb2\x0a\xa5\xf9\xd1\x6f\x82\x9e\xc2\x8b\xec\x37\x01\xd9\x74\x63\xad\xa8\x81\xbb\xc0\xb4\xb4\x54\xba\x37\x59\x74\x5d\xcb\x92\x07\xbc\xa1\xd4\x32\x6c\x46\x03\x6b\xd9\x01\x75\x81\x48\xa0\xda\x27\x79\x73\xc0\xd7\xc4\xda\xa6\x9b\x83\xb2\x8b\x2b\xe9\x4b\xde\x55\x1c\xec\x2d\x29\x1f\x6d\x92\xaa\xba\x2e\xca\x05\xa1\xf0\xb6\xe2\x31\x7d\xde\xd6\x25\x4a\xe6\x95\x79\x09\x86\x97\xd5\x19\x8d\x40\x11\x04\xd5\xa8\xad\x32\xed\x4b\xc3\xee\x15\x59\xb9\xf7\xa9\x75\x5d\xc4\xe8\xe3\xb1\x1e\x2a\xbe\x38\x06\x34\xd5\x59\x5d\xe3\xde\x74\x86\x9a\x63\x8b\x08\x2d\x48\xd5\x95\xaf\x13\x0a\x36\xdc\xd3\x5e\xab\x65\x7f\xea\x00\x1f\x5d\xb2\x6a\x54\xe4\x59\x91\x2c\xe0\x02\xb8\x18\xb8\x02\x81\x14\xae\xb4\x14\x0a\xd7\x20\xe2\x01\x6b\x34\x5f\x25\xf9\xa5\x02\x39\xa6\x5a\xf0\x06\x66\xaa\x32\x32\x79\xa8\x59\x22\xe5\x32\xd3\x09\xbb\x55\x69\x36\x26\x4a\xf1\x98\xea\xac\x24\x4c\xb1\x49\xa7\x95\xc7\x31\xc9\x07\x2f\x45\x6c\x92\x66\x75\xdd\x9b\x4d\x1d\xf6\x00\xde\x46\x65\xe5\x09\xad\x51\x83\x27\xa4\xcf\x8a\xc9\xcb\xca\x6f\x44\xb4\xbb\x48\xf3\xa4\xbc\x0d\x5d\xf2\x3e\xdc\xc1\xb9\x50\x33\xe3\x9e\x02\x08\x68\x57\x9d\x8f\x89\xf2\x5c\x30\xfd\x2a\xe5\xd2\xb2\xd5\xbb\xa6\x4f\x05\x36\x9f\xee\xfc\x78\x6d\xef\x47\x6e\x1c\xca\xb0\xb7\xf7\xbd\xe1\x94\xac\x6c\xe5\x89\xe0\xda\x51\xad\x4f\xdb\x20\x82\xa0\xc4\xda\x12\x50\xb6\x40\x8d\x9e\x52\x32\x54\x4a\xbf\xc0\x1b\x1a\x2c\x25\x5d\xa9\xa0\x4b\x46\xb2\x98\x6b\x78\x11\xa5\x76\x98\xef\x3b\x3a\x79\xa8\x07\xec\x1b\x14\x4f\xd3\x38\xfe\x6a\x52\x86\xc6\xb2\x00\x0b\x57\xb3\x53\x8d\x14\x4b\xc2\xf4\xf1\x76\xe3\xfc\xca\x1e\x8d\xaa\x3c\xfa\x0c\xd4\x1d\x60\xd2\xa3\xc6\x19\xe7\x81\x74\x3e\x5f\xf7\xa6\xdf\x1c\xbb\x27\x8d\xa3\x50\x5d\xdb\xc9\xd9\x05\x8e\x42\x59\x6a\x2d\x33\x12\x95\x0c\xe7\x9f\x5f\xc0\x58\x71\x9f\x81\xf5\xd8\x28\x42\xb9\xf6\x8f\x68\x76\x97\x65\xe8\x9a\x14\xd5\x62\x78\x5b\xed\xaa\xbe\x92\x1d\x46\xbb\xdd\xaa\xe2\x9e\x48\x5e\xd1\xeb\x4e\x47\xae\x0f\xd4\xa2\x5c\x6d\xe0\x04\xa7\x49\xbf\xb8\x1e\x9e\xa7\x42\x94\x55\x3f\xe5\x06\x56\x5a\x72\x21\xe8\xb1\xca\xfb\x04\x11\xed\x05\xe4\xbf\xac\x90\xbd\xc1\x2e\x69\xa7\x4f\xc0\x43\x93\xe1\x99\xba\xa7\x55\x39\x0f\x81\xc4\xef\xc9\xa8\xc8\x31\x92\x8b\xeb\x48\x8b\x5d\xcd\xcd\x5b\x18\x4b\x48\xc9\xf6\x28\x1b\xf9\x20\x28\xb0\x47\x90\x94\x38\xf8\xf5\xf8\x6b\xd8\x0b\xd5\xad\x0a\xb7\xba\xe2\xc9\xa2\x11\xb1\x46\x48\x66\xb1\x67\x76\xe7\x41\x90\x63\xcf\xcc\xf2\x93\x60\xf1\x8c\xfe\x20\xd8\x09\x66\xe4\x2c\xc2\x11\x0b\xea\x07\xa4\x3e\x8b\x94\x7d\xa5\x37\x71\xa5\x68\xb3\x09\xd1\x5c\x9f\x93\xaa\xa3\xef\x8d\x39\x36\xed\x62\x8a\x7c\x12\xca\xd6\x1a\x04\x2d\xe5\x9c\x30\x44\xe7\x4a\x31\xde\xe0\xa4\x39\x18\xa2\xf0\xde\x09\x24\xeb\x80\xd3\xf1\x0d\x6a\x01\xcb\xb4\x70\xb8\x54\x8c\xb3\x11\x64\x0d\x02\xfc\x83\x75\xc2\xdf\x96\x19\x89\xd0\xb6\xcc\x50\x5f\x24\x07\xad\xfa\x86\xd3\x0c\xfe\xbf\x7b\x9a\xe1\x2a\xd5\x47\x0e\x48\xfe\x2a\x47\xe1\xaa\xae\x91\xfa\x0e\x18\xc8\x86\x91\x8b\x31\xc9\x31\xed\x37\x7d\x2a\x39\xd6\x66\x0a\x89\x5a\x09\x98\x84\xad\x14\x5a\x45\x3c\xae\x66\x80\x68\x68\x4f\x2c\x7e\x50\x27\x16\xc3\x82\x84\xad\x8e\x82\x0e\xf2\x0e\x46\x4c\x87\x99\xb3\x0c\x9d\x13\x6c\x1a\x0b\x58\x9c\x4e\x5d\xa6\x17\x9e\xb2\x5e\x98\xb1\xee\x79\x70\xe2\xac\x5b\x8b\x21\x3a\xba\x4e\xaa\xa3\xbc\x10\x47\x72\x0a\xc9\x1e\xa3\x49\x3c\x9e\xed\x69\xb3\x37\x98\x92\xa1\x69\xca\x72\x30\xda\x8c\x8b\x46\xc9\x09\xb3\x1e\x9d\x7b\x5a\xf6\x45\x5c\xb5\xe4\x25\x8d\xc0\x1f\xcd\x45\xd3\xc0\x05\x09\xa1\xbc\x94\x72\xa5\xbc\x6a\x77\xb8\x68\xf5\xa5\x9c\xc3\xdb\x6a\x85\x0b\x02\xa8\x72\x97\x10\x11\x3d\xc5\x09\x48\x62\x09\x4b\x3d\xd8\x07\x43\x85\x94\xd3\x94\x3a\xdf\xfc\xf1\x03\x44\xc5\x80\xe6\x76\x02\x8f\xb1\x64\x94\xae\x37\x4a\x1c\x83\x89\xd5\xf3\x12\x96\x93\x50\x8a\x0f\xce\x0b\x22\x95\xe2\x94\xcc\xc3\xd0\x63\x39\x07\x9f\x3c\x3e\x51\x3f\xfe\x0d\xa2\x8f\x14\x7d\xb5\x82\x84\x66\xcd\xf7\x58\x2e\x32\x50\xa7\x41\x19\xfd\x3a\x8d\x1e\x9b\xe9\x28\x9e\x85\xb8\xdf\x9b\x5b\xdb\xca\x49\xda\x2d\xea\x1a\xf7\x7d\x7c\x84\x71\xc9\xb0\xf8\xd2\x4f\x26\xed\xf3\xe1\x8b\xa4\xe2\x32\x19\x0e\x84\x13\x6b\x16\xae\xcd\xa5\xba\xd4\xaf\x94\xe2\x25\x4b\x08\x4d\xd9\x20\x0f\x82\x78\x46\x71\xc1\xde\x2b\x93\x0a\x4e\x48\x14\x8b\x56\x0d\x45\x3c\x99\x91\x59\x88\x0b\x76\xad\x02\xe0\x0a\x9a\x42\x80\xdc\xd4\x22\xd0\xdd\xe1\x94\x38\x0a\x7d\x37\x5a\xf3\xf2\x92\xe3\x78\x46\x0b\x5f\x5e\x23\xc4\x19\xb2\x68\xbd\x02\xb0\x53\x07\xa3\xad\xd0\x44\x45\xfb\x96\x12\x82\xe7\xe5\xef\x90\x22\x94\x97\x58\xc9\x2e\xe5\xe2\x54\x7a\x6e\x29\xa1\x4b\x89\x5e\xdd\x8d\xa9\xbc\x07\x0b\x65\x3d\x14\x5a\xd3\x13\x8a\xbe\xd0\xb5\x0a\x22\x10\xbd\x7d\xf3\xfe\x83\x5c\x82\x26\xf0\xcc\x38\x08\x7a\x34\x34\x45\x5d\xb7\x95\x34\xca\x5c\x4b\x2b\x50\x49\x3b\x46\x30\x27\xbb\xd4\x2d\x51\xb9\x33\x89\x75\x86\xcb\x48\x6e\xa5\x8b\xf4\xea\x89\x0d\xac\x86\xbd\x69\x08\x01\x14\x96\x2a\x7e\xbe\x12\xb1\xcd\xc2\xce\x83\xa0\xa9\x4c\x4a\xba\x62\x74\x23\x02\x62\x5a\xd7\x9e\x56\x1e\xd8\x6b\x41\xf9\x4c\xc5\x09\xd7\x6a\x0d\xab\x5f\x73\xa7\xe8\xd4\x29\xff\x68\x4b\x73\xe8\xeb\x20\x1b\xda\x49\xea\x8e\xd3\x7a\x50\x11\xdb\x21\x1d\x9b\x1a\x02\x30\x3e\xe5\x36\x10\xa3\x2f\x92\xeb\x58\x86\x8b\xbe\x77\xef\x46\x97\x25\xdf\x60\x1b\x6d\xb3\xa1\x74\xb1\xe1\xf7\x18\x13\x06\x0b\xc5\x2c\x7b\x7a\xa7\x85\x77\x70\x2e\x79\x03\x97\x87\x23\x00\xd9\x73\x16\x87\xbb\xac\x41\x0e\x01\xf1\xfd\x4e\x72\x7c\x80\xef\x83\x24\x5b\x9f\xce\xe5\xec\xca\x1c\x40\xa0\x07\x59\x6f\x10\xfd\x11\xa1\x15\x33\x60\xf5\x58\x85\xc5\xd5\x45\x83\xc2\x95\xce\x5d\x42\x06\xe0\x7e\x14\x37\x70\x16\xb3\xba\x46\xcb\xf4\x46\x45\x71\xcb\x48\x10\xe0\x74\x38\xf7\x37\xe8\xad\x28\xc0\xa3\x32\xc2\x09\xc3\x25\xdb\xda\x46\x60\x42\x00\x9e\xbf\x60\x25\xc0\xf9\x91\xb0\x89\xf2\x9b\x92\xba\x1e\xd3\xc2\x4f\x9a\x2b\x58\x66\x15\x9b\x19\x0b\x66\xe1\x19\xf2\x46\x8c\x5e\xb9\xda\x75\x74\x64\x31\x82\x00\xa6\x78\x23\x7f\xd5\xdd\x71\x25\xff\x0e\x13\x97\x45\xd6\x0e\x79\xe4\x85\xbe\x3f\xae\xe0\x47\xee\xad\x68\x5b\x49\xa2\x9b\xe6\x47\x22\x12\x23\xb8\x31\xf5\x6e\x48\xb8\x85\xee\xd9\x28\x90\x27\x4f\x5b\x59\xb4\xc7\x12\x24\x9c\x43\x81\x4c\x1c\xef\x0d\xaa\xbb\x5e\x1d\x1c\x4c\x5f\x55\xec\xc8\x4e\x16\x13\xb1\x15\xe2\x68\x4c\x5d\x34\x88\x56\xb8\x85\x32\x2a\x0f\x69\x85\x22\x29\xb7\x1f\x02\x5a\xa4\x39\x6b\xb9\x43\xfa\x0e\x90\x74\x27\x8a\x4d\x08\xbd\x3a\xcc\x47\x9b\xe4\x92\x7f\x52\xad\xa2\xb2\xef\x42\xd5\x93\xfa\xc9\x47\xf5\x64\x4f\x42\x78\x69\xac\xb2\x8c\xf7\x26\x0e\x00\xdd\xf4\x80\xf4\x4b\x99\x50\x2b\x58\x4d\x54\x50\xff\xeb\x68\xc1\x9a\x85\x49\x8e\xce\x4d\x47\x35\x73\x4b\x7f\x95\x90\x7b\xbe\xd5\x9d\xb0\x6a\x4c\x3f\xbb\x2a\x3a\x9d\x40\xb9\x4c\x81\xc7\x6f\x41\xa7\x58\xd7\xf9\x68\xa1\x1f\xea\xbd\x6b\xaa\x22\xfb\x32\x96\x03\xa7\x50\xd7\xea\xba\x95\x0b\xa2\x3d\xd8\xc5\xda\xb3\xae\x95\x8e\xd8\x0b\xe9\xc4\x83\x80\x2b\x98\x97\x0e\x0a\x01\x2e\x80\x06\xd8\x86\xc3\x02\xeb\xc0\xa9\x7f\x28\x36\x16\x48\x9d\xd0\x42\x0d\x52\x3b\xd3\x6b\xbe\x14\x2e\x97\x39\x76\x71\xe3\x7d\x5c\xc0\x5f\xdb\xc5\x0a\x0d\xeb\x83\xa4\xd3\x00\x3e\xe0\xc6\xff\x58\xd5\xd0\xce\x0a\x50\xa1\xca\xdd\x6f\x4f\xfd\xae\xfc\x52\xf7\x93\xa6\x7a\xbd\x31\x1a\xb2\x8f\xbe\xa4\x57\x1b\xef\x18\x32\x5d\xd7\x09\x6f\x46\x0f\xde\x39\x58\xb8\x10\x79\x73\x19\x51\x0b\x23\xa7\xd2\xf5\xec\x3f\xe4\x8b\xd8\xc8\x23\x77\x83\x69\x27\x86\x6e\x79\x1f\x6a\xa7\xf3\xb2\x97\xf3\xfc\x0a\x73\x12\xa5\x8c\x87\xdf\xb5\xa7\x41\x2a\x05\x19\xb7\x4a\x7d\xac\x62\x7b\xe2\x1f\xa5\xb1\x98\x85\x3c\x2e\x67\xd3\x34\x4a\x2d\x1e\x1e\xce\xa3\xd4\x5f\xae\x61\x41\xf3\xa8\x08\x53\x7f\x71\x13\x78\x8d\x15\x7b\x15\xb6\xb8\x43\xd2\xfc\x28\xc6\x31\x52\x5b\x37\xec\x1d\x7f\x81\x51\x0c\x30\xb4\x9b\xf4\x86\x67\x6f\x0d\x74\xaf\x9f\x3f\x6f\x00\x16\x1b\x60\x75\x41\xa8\x01\xc0\xcf\x49\x04\xb3\xdf\x6d\x30\xb1\x98\x01\x40\x6c\x98\x2b\x38\x12\x3b\xa0\x1a\x95\xdc\x82\x28\xc3\x4c\x0f\x35\xf2\x4b\x4f\xa4\x63\xf5\x96\x45\x94\x05\x5e\x1f\x0d\xb9\xd1\xe3\x84\x82\x22\x14\xa2\x62\x2b\x20\xd9\x2f\x00\xcc\x24\x60\x98\x4b\x6f\x98\x9d\x06\x9a\xb5\xbb\x4f\xf2\xed\x5e\x48\x69\xc7\xea\x17\x72\xab\xce\xeb\x1a\xc3\x99\x7f\x51\xd7\x03\x25\x4c\x19\x20\xba\xd0\x60\x08\x5b\x16\xb5\x33\x85\x24\xf1\xb4\x53\xc8\xec\x3c\x92\x3f\x05\x1b\x17\xb7\x69\xab\x0f\x21\x91\x88\xed\xa7\xce\x42\x61\x49\x57\x9b\x86\xc5\x68\x0e\x64\x14\xb2\x7d\x07\x6c\x8e\x99\x8d\x11\x4e\x59\x27\x3f\xb5\xc0\x6e\x02\x48\x23\x08\xac\x45\x96\xc9\xf7\x69\xda\xb8\x33\x19\x0c\xbc\xb2\xca\xd0\xbc\x73\x95\x13\xe3\xdd\x22\x3b\x28\x52\xcb\x5e\x7e\x73\x45\x2c\x48\x24\x74\x01\xad\x80\xe9\xa4\x49\x54\xe8\x17\x68\xa2\x62\x14\xbb\x39\x82\x2e\xb2\x6d\x79\x04\xee\xc5\x47\xda\xe7\xf8\xc8\x38\x1b\x1f\x95\xbc\x4a\xef\xf8\x91\x6a\xe8\xd1\x3c\x4b\xe7\x9f\x8f\x16\x17\x99\xba\x58\x17\xdb\x8a\x2f\x8a\xeb\x5c\x5d\x6d\x37\xea\x57\x0a\x28\xea\xaa\xb8\xe2\xa5\xbe\xda\x0a\x75\xc1\x73\x61\xd2\x32\x9e\x5c\xf1\x23\xa5\x92\x3d\x52\x2e\xa1\x47\xca\x95\xf4\xe8\x33\xbf\x85\x72\x3f\xf3\xdb\x4d\xc9\xab\x4a\x5e\x6c\x37\x47\xda\xc4\x7e\xcd\xf3\x2d\xf2\xcc\x48\xfe\x9a\xf7\xf5\x4e\xcb\x3b\x01\x2f\xc7\x91\x63\x88\x95\xd2\x8b\x1a\x60\x56\x73\x30\x2f\xcc\x52\xf7\xd8\x9e\x95\xfc\xb8\x7b\x7c\xcb\xdd\xd7\xca\xa5\xea\x3e\x18\x8b\xba\xe6\x5d\x67\xf5\x8b\xd4\x57\xff\x35\x0f\xf8\x4d\xfb\xb8\x76\x75\xa7\x39\x9c\x00\x76\x5e\x69\xbd\xb0\x5c\xda\x37\xc8\x9e\x9a\xf8\x11\x7f\x01\x53\xa1\xe4\x02\x0d\x37\xb1\xcd\x0f\xbc\x65\xdf\x01\x50\xcc\x76\x84\x2b\xaf\x7a\xf4\xf0\x21\xd2\x9d\x29\x13\x04\x05\xab\xed\x87\x88\xe6\xba\x0b\x36\x65\x71\xd3\x0e\xe3\x6d\x1d\xaa\x80\xcb\xe9\xe8\xcc\x94\xc4\xcf\x63\x31\xd3\x48\x0e\xb9\xe4\x94\x3d\xa0\x47\x36\x57\x6c\xab\x93\x02\x1f\x11\x29\x7f\x77\xf7\x5b\x6e\x24\x37\xed\x4e\x5e\x1a\x8f\x85\x76\x09\x10\xa2\x6f\x74\xb9\x4d\x17\x8c\xfb\x3f\x75\x7d\x07\xbf\xc3\x21\x2d\x24\x5f\xbc\x2a\xb2\xc5\x3b\x9e\x2c\x6e\x9b\x11\x67\x20\x20\x6f\xb2\xb8\xfd\x3d\x49\xc5\x70\x18\xea\x3b\xc0\xce\x00\x93\x06\xf0\xa6\x64\x0d\xdf\x4a\xa3\x25\xf9\xd7\xfb\x37\x3f\x33\xcf\x31\xe7\xce\x3a\x7d\xb2\x17\xf0\xee\x4b\x5d\x11\xbb\x84\x5b\x15\xa1\x83\x5d\xd1\xbb\xd1\x3c\x59\xf3\xec\x59\x52\x71\xf6\x13\xbd\x53\x4a\xec\x6b\x78\xff\xda\xfa\xb2\xc3\x2b\x3f\x6f\xd7\xbc\x4c\xe7\x3d\x20\x1b\xea\x2d\x77\x6c\x8d\xfd\x98\x62\x4d\x63\x67\x12\x04\x83\xb4\xfa\x39\xf9\x19\x73\x1f\xfc\x9d\x13\xb2\x77\xdb\x32\x2e\x7b\x06\xe1\x6e\x6f\x46\x81\xc6\x33\x42\x20\xfe\x0a\xbf\xd9\x14\xa5\xa8\x58\xa9\x58\xfd\x9f\x04\xcb\x47\x7f\xfc\xb2\xe5\xe5\x2d\xfd\x45\x5e\x3f\x70\x70\x35\x79\xf1\xac\xc8\x97\x59\x3a\xef\x8f\x37\x34\x7a\x20\x19\x23\x40\xae\x7a\xc0\x7e\x11\x84\xc2\x11\x8f\x2a\xcb\x3e\xd1\xb7\x3f\x09\x42\xef\x20\x70\x8b\x4b\x93\xaf\xdd\xc9\xe4\x46\x60\x77\xbd\x0a\xd0\xb6\xe2\x47\xb2\x13\xe6\x02\x29\xb5\x0b\xcb\xb1\xe4\x35\x59\x3e\xca\x21\xca\x13\xc3\x39\x9e\x8c\xbf\x21\x34\xc7\x13\xf9\xe7\xab\x6f\x08\xa1\x09\x3c\x4e\x61\x9f\xc3\xff\xfc\x46\x0a\x9f\x32\xa1\x22\x34\x63\x39\xfe\xea\x91\x94\x71\x7b\x17\x36\x1f\x55\xdb\x8b\x4a\x94\x78\x4c\x0d\x40\x39\x91\x9d\xbf\xa7\x1b\x76\x20\x9a\x95\x31\x73\xb2\x86\xa7\x05\x13\x86\x76\x46\x88\x48\xe1\x22\x65\x97\x18\x36\x5d\x04\xd6\x7e\x32\x69\xce\x4e\xa5\x8c\x9d\xb1\x31\xdd\xb2\xb9\x09\x77\x95\x3d\xde\x4e\xb3\xe1\x50\xcd\x8e\x0d\x1b\x4c\xe8\x92\xcd\xe3\x6c\x36\x2a\xe5\x46\x2a\x57\xeb\xd2\xf0\x63\xa4\x64\x3b\x48\x0d\x97\x14\x1c\x14\xaa\x70\xb7\xa7\xdb\x32\x0d\xc5\xde\xc9\x1f\xb2\x9c\x05\xbb\xc4\xcb\xd1\x26\x11\x2b\x42\x2f\xd8\x6e\x4f\xd7\x0e\x0f\xd5\x28\xbf\xe8\xc2\x1a\xde\x5f\xb1\xf1\xf4\xea\xf1\x7a\x7a\x65\xda\xf1\x94\x2d\xe2\xab\x19\xbd\x66\x69\x7c\x05\x2e\xb0\xca\x68\xf1\x29\xd9\x5d\x80\x5d\x35\x4b\xb5\x9a\xea\x4a\x39\x3e\x2f\x78\xdb\x31\xde\xc4\x75\x3e\x41\x9e\xd5\xa0\x9d\xb3\xd7\x64\xb7\x61\x83\xb1\x7e\x22\x6b\xbc\x63\x2b\xa5\xc9\x7b\x0a\x9a\xf5\xbb\x20\x18\x54\x64\x77\x2c\x69\xe1\xad\xe5\x2d\xee\xe2\xc9\x8c\xd4\x75\x82\x09\x1e\x4c\x74\x44\x09\xd6\xad\x1b\x5f\x93\xe9\x45\x2c\x33\xcf\xd8\xf9\xde\xd8\x58\x3e\x1d\xb4\xeb\x05\x43\xc6\x0d\xd9\xe5\x9d\x6e\xbd\x80\x5e\x45\x27\x68\x98\x5a\x7d\xdc\x95\xf7\x49\x7b\x53\xc2\xde\xc5\x18\x2b\xd5\xa1\xe4\x9e\x2e\x59\x27\x28\xd8\x56\x92\xed\x13\xe4\x82\x81\x4d\x4d\x90\x74\x37\x6b\x00\x93\x65\xac\xb0\x58\x00\x9a\xb3\x3d\xa5\x12\x76\x29\xa7\x7f\xc5\x2e\x71\x0a\x9d\x04\x53\x2b\xf1\x0e\x1b\xae\x70\x4a\x0b\x15\xf4\x74\x0b\xfa\x6c\x8a\x46\x26\x22\xfb\x9c\x55\x86\x10\x27\xfe\xe0\xd8\x57\xe5\xad\xe2\x09\x91\xfc\x72\x32\x9c\xd3\x42\x45\x24\xd2\xfe\xc2\xee\x75\xba\x61\xf1\x8c\x2e\xd9\x98\x2e\x58\x66\x23\xd5\x3d\x5e\x4c\x97\x66\x02\xad\x58\x16\x2f\x67\x53\x34\x1a\x81\xc9\x63\xb4\x51\xc7\x46\x21\x1a\x81\x29\x7f\x10\x6c\x94\x0e\x7e\x65\x6d\xf2\xae\x64\xfd\xc3\x8d\x6b\x99\xac\x9d\x2e\x7a\xd7\xac\xcc\x79\x09\x2c\x40\xd3\xe9\xde\xc8\x4a\x2b\xa3\x14\xb6\xee\xf6\x91\x88\x65\xaf\xce\x42\x30\x8b\x72\xe3\x48\x57\xec\xe4\x3f\x21\x1e\x0d\xc9\x09\xbd\xe8\xa3\x75\x2b\xe3\xe4\x2f\xd7\x50\x5f\x5b\xf4\xd4\xe1\xb4\x9a\x17\x25\x0f\xad\xf0\x14\x8d\xc3\x4b\xcc\xd5\x1a\x1c\x95\x7c\xb1\x9d\xf3\x76\x7c\x00\x33\x19\x86\xec\x6b\x3a\xe8\xd6\x0d\xc3\xcb\xf7\x92\xc5\xbe\x90\x7f\xf8\x90\x3d\x0a\xfb\xf2\x3d\x74\x19\xf9\x90\x7d\x15\xf2\x63\xf6\x4d\xc8\x87\x6c\x42\xf9\x9e\xd0\x31\xa1\xb0\x7e\x42\xb1\xdf\xd3\xd3\xbe\x6f\xe4\xd0\x8f\x6b\xa2\x02\x93\x1d\x68\xe4\x08\xbe\xef\xb1\x50\xbf\xd1\x24\xd4\x29\x4f\x4c\xca\xb1\x4c\x82\x9a\x8e\x85\xfa\x05\xf2\x7e\xd9\x5f\xa3\x39\xc4\x3a\xc1\xff\x39\x3b\x19\xd6\x67\x27\xc3\x07\xe4\xe4\x92\x22\x44\xcc\xac\x87\xe1\xb9\x3a\x40\xb3\x87\x58\x44\x28\x42\x43\x08\x2c\xb2\xa7\xb7\x2c\x46\xdb\x32\x45\x14\xc9\xfe\x46\x33\xfa\x94\x29\x63\xc6\x51\x52\x55\xe9\x65\x5e\xd7\x7e\x23\x1c\x5e\xf4\x64\x2a\x1e\xb7\x59\x2d\xc0\x83\xd1\x13\xc9\x3e\x8b\xc5\xcc\x42\x8e\x2a\x1c\x4e\xa2\x2b\x70\x48\xe9\xab\xa4\x7a\x73\x9d\x6b\xf0\xe4\x5b\x03\x97\x0d\xa1\xa7\x40\xe6\xcd\x01\x30\xcf\x9a\xe7\xd1\xeb\xbe\x9e\x79\x0a\x38\x61\x2e\x46\x8e\x36\x72\xe6\xa3\x55\x5a\x89\xa2\x34\xc6\xc0\x9f\xf9\x6d\x3b\x0d\xe2\x91\xfb\x09\xa3\xcf\xfc\x16\x60\x18\x53\x91\x26\x19\x02\x93\xc8\xde\x38\x28\xf1\x8c\x96\xec\x1a\x83\xef\xd8\x60\x42\x53\x9f\x9f\x30\xc8\x5f\xbb\x4b\x2e\x8e\x4c\xab\x1c\x9f\x51\x82\x55\xec\x91\x28\x93\x5c\xc9\xcd\x69\x7e\xe9\x9e\x16\x7b\x7a\x5e\xe4\x1f\xec\x43\xa3\x7f\xf7\xb5\x34\xaa\x4a\x4c\xf6\x34\x83\x28\x42\x0d\xc0\xe6\xdc\x44\x99\x9c\xaa\x38\x08\x3e\xa3\xa3\x5a\x2c\xf0\xce\xb4\x2a\x2c\x69\x02\x4f\x43\xf4\xf6\xcd\x5b\xf9\xbd\xee\x80\xad\x13\x37\x09\x6d\x8a\x0d\xf4\x12\xa2\x05\xf1\xc1\x65\x78\x6f\x60\xa3\x66\xf6\x9c\xe5\xdd\x10\x24\xde\xec\x96\x72\x37\x68\x81\x68\x9e\x5c\xa5\x4d\x5e\x5f\x1c\x92\xdd\x9f\x4c\xbc\x88\xa9\x6e\xe2\x4d\x66\x91\x7f\x23\x77\xfc\x8a\x25\x7a\x1a\xcc\x99\xf5\xaf\xa3\x19\xb3\x6f\xcf\x83\x60\x3e\xad\x18\xcc\xa5\x8a\xee\xe4\x64\x71\x81\x96\x20\xd6\x2c\x18\xd8\x14\x75\x9d\x45\x6e\xd2\xe8\x82\xc0\x64\x07\x57\x46\xca\xf1\xa6\x99\x1c\x8b\xd6\x53\x6d\x81\xb3\x91\xfd\x66\xc6\x21\xce\x22\xa4\xcb\x42\x21\x52\x0b\x10\xcd\x20\x54\xa8\x9d\x65\x63\x18\xd0\x2d\xcb\xf9\xf5\xd1\x5b\xed\xfb\xda\xd7\x95\x29\x93\x04\xdb\x92\xf1\xd1\xb2\x28\x5f\x34\x15\xdb\x5e\xb7\xf7\x4f\x85\x5f\xdf\xff\x88\x54\xd8\xcb\xed\x7e\xbf\xc7\x03\xdc\x0b\x1e\x73\xad\x83\xf0\x0d\xd4\x85\xd5\x3a\x74\x53\x9a\x87\x8c\x24\x52\x8f\xbb\xa6\x12\x5d\xa1\xb8\x77\x7c\xc7\xfe\xf8\x8e\x67\x72\xeb\xd5\xe8\x55\xf1\x4e\x12\x33\x88\xe1\xc2\x69\xc5\x93\x72\xbe\x0a\x11\xda\xcf\x20\xa4\xd1\xfd\xcb\x32\x07\x98\x84\xf6\xa4\x6f\x09\xb6\x26\x42\xfb\xfd\x79\xf4\xe0\x43\xd8\xdb\x23\x9e\x8b\x32\xe5\x95\x57\x91\x5a\xff\x40\xee\x3d\x95\xab\x4a\x85\x39\xea\xd1\x0a\x85\xdd\x60\x26\x91\x5f\x93\xa7\xd2\x4a\x7d\x96\xa8\x02\xf6\x46\x4e\x73\xc9\x12\x99\x19\xce\x18\x9b\x4b\x2e\x65\x2e\x49\x35\xd5\x34\xc2\x75\x56\x65\x3a\x2b\xdb\x13\x5a\x5a\x4c\x50\xea\xcf\xef\xff\x27\x2a\x07\x7d\x48\x6f\xb5\x54\x7e\x2a\xe3\x7b\x39\xdf\x08\x99\xde\x8d\x0c\x19\x98\xe6\xa3\x05\x16\x14\x25\xa8\x11\xd9\x49\x77\xd0\xaf\x00\x6b\xab\x72\x5c\xf4\xe6\xf8\xe4\xe5\x98\xf7\xe6\xf8\x6c\x43\xad\xfd\xbf\x7f\x07\x6c\x39\xff\x99\x2a\x75\x54\x17\x5b\x11\x27\xc2\x4a\x00\x25\x79\xc2\xc6\x75\xfd\x45\x35\x73\x55\x73\x6e\xc2\xed\x38\x32\xe2\xe2\xcd\x7c\x70\xf8\x46\x98\x1f\xa5\x79\x25\x92\x7c\x0e\x0a\x11\xa2\xcd\x09\x25\x85\xfa\x70\xbb\xe1\x2f\x54\x3c\xb7\x67\x49\x6e\xac\x5d\x8e\x92\x23\x88\xb6\x7e\x94\x54\x47\x89\x35\x67\xf5\xa3\xd9\xdc\xb8\xd2\xb9\x57\xdc\x3b\xbe\xe4\x25\xcf\xe7\xa6\x4c\xb1\x4a\xab\xa3\x55\x52\xe5\xff\x4b\x1c\x5d\x70\x9e\x1f\xe9\x2d\x3b\xad\xf8\xe2\xe8\xf8\xa8\xda\x6e\x78\x89\x49\x23\x87\xb1\xb6\x31\xb1\xd5\x45\x23\x88\x9a\x53\xea\x20\xdb\x2c\x2f\x39\xe2\xa1\x70\x8d\xfc\xd9\x36\xb2\x37\xb3\xc5\x62\x11\xfd\x1d\xf2\x5e\xb6\xee\x88\xdf\x80\x4e\x51\x96\xb7\xde\x56\xe2\x88\xa7\x62\xc5\xcb\xa3\x0b\x0e\x71\x1a\x8e\x8a\xd2\xeb\x21\x0a\xf6\x42\x68\x68\x6a\x20\x53\xee\x46\xd2\xcc\x5a\x45\x64\xb1\xc2\x35\x31\x0f\xe9\x6e\x5e\xe4\x95\x28\xb7\x73\x51\x94\xe1\x4e\x87\xbf\xa2\x3c\xdf\xae\x79\x99\x5c\x64\x3c\x1c\x4c\xe8\x75\xa9\xb0\x3f\x74\x18\x95\x65\x7a\xb9\xd5\xcf\x20\x5e\xb8\x08\x02\xac\xeb\xa8\xb8\x78\x6b\x8a\x7e\xb3\x8c\x7a\x53\x15\x66\x17\x1f\x9d\x9f\x43\x2b\xce\xcf\x99\x20\x20\xb0\xbe\xee\x65\xa5\xe6\x98\x60\xe1\xed\x57\xcf\x8a\xbc\x92\x8d\x33\x08\xd4\xa0\x63\xe2\x43\x64\x1f\x20\x9a\x8f\xde\x96\xc5\x55\xba\xe8\xc9\x64\x1e\x20\x9a\xef\xe9\x0b\xf6\x1a\xa3\xd7\x9a\xd4\x23\x42\xdf\xf7\x02\xb8\x82\xd5\x4a\xc9\x73\x1b\x12\x6a\xd4\x8e\xcb\xf0\xc2\xd6\xad\x36\xf1\xde\xad\x34\x02\x70\xe5\xee\xcb\x7f\xda\x8d\x5f\xf2\xf6\x7f\x36\x9a\x60\x67\x94\xc0\x56\xdf\x38\xfd\x60\xbc\x43\xec\x9a\x2e\x3a\x3b\x23\x4d\x99\x89\x9a\x4f\x13\x36\x9e\x26\x8f\x8b\x69\x32\x1c\x92\x34\x4e\x66\x1e\x01\x4a\xec\x81\x74\xce\x4a\x76\xa3\x0f\xaf\x61\xad\x6b\x65\x17\xa7\x3a\x50\xb6\x96\x54\x53\x42\xe4\x0e\x00\xfb\x10\xdb\x99\x98\x3a\xea\x30\x5b\xdd\x60\x42\x4b\xbe\xac\xc2\xdd\x36\xd7\xec\x27\xc8\xf0\x7b\x7a\x83\x4b\x9a\x5b\x5a\xf5\x33\x18\x76\x50\x9f\xe2\xb8\x32\xba\x46\x60\xca\x5f\xa4\x2c\x36\x95\xe1\x9d\xa6\x36\x7a\x9b\xe6\x07\xb9\xdd\x13\xa8\x65\x5a\x1c\x0b\xb5\xdf\x37\xea\x9a\x1b\xcd\xc6\xf3\x74\xf1\x4c\x32\x5c\x5d\x0d\xc3\xe0\x25\xe6\x86\x64\xf1\x29\x1e\xd3\x6e\x1b\x6c\x8d\x04\x0c\x02\x53\xba\xd3\x3b\x22\x04\x81\x3d\x5c\xe3\xaf\x9b\x45\xe2\x23\x3d\x2b\x48\x6e\x13\x9b\xc7\xb6\x59\xe3\xe1\x6a\xd9\xa3\xfd\x54\xc3\x59\x34\x1b\xd4\x2b\x1c\xe0\x7b\x9a\x72\x5a\x6c\xfb\x8c\xee\xd4\x14\xf3\xab\x97\x83\x4a\xf3\xbe\x81\x10\x23\x33\xd4\x2c\x1f\xa9\x8b\xc6\xc9\xb0\xe6\x46\x8d\x2b\x24\x26\x23\xb1\x6a\x65\x29\x95\x93\xc3\x53\xb0\xe9\x49\x8b\xfc\x65\x99\xac\x9b\x90\xea\x7c\xb4\xcd\xd7\xb2\xad\x7c\x01\xa6\xc9\x5c\x28\xbe\xb9\xbb\x61\xdb\x59\xc9\x1b\xb3\x52\x9f\x27\xe9\xff\xf5\xf7\xc7\xef\x69\x96\xfd\xaa\xaa\x39\x30\x05\x5d\x5f\x4c\xe1\xde\x36\x0a\x6c\x73\x6d\x47\xb4\x7b\xbc\xe4\xf9\x82\x97\xf7\x96\xa9\x5b\x6d\x3a\x5d\x75\xf1\x97\xd0\x1e\x43\xd2\xa8\xa1\xde\x7b\xea\xb6\x1d\xef\x3c\x42\x11\x20\x61\x0c\xfd\xa9\xd8\x63\x59\x9c\xd3\x2f\x4e\xff\x34\x9a\x16\xb9\xeb\x57\x6c\x67\x18\xd5\x3b\xe5\x5e\xf4\x4c\x92\xcb\xef\x93\x8a\x23\xba\xbb\x48\x2a\xae\x15\x7a\x54\x5e\x4b\x9e\x4d\xde\xec\x09\xfd\xdc\x27\x84\x77\x1b\xfe\xec\x20\xd1\x14\xf7\xbc\xf5\xbe\x9d\x39\xbf\x27\xf3\xef\xf4\x1c\x02\x61\xd1\x9c\x72\x37\xf2\xbf\x1f\x26\xb1\xba\x24\x4b\x61\xa9\x25\x89\xbd\xe0\xc1\xf7\x11\xb3\x7b\x47\x1c\x06\x97\xca\xcd\xc5\x6a\x25\x72\xe6\xd1\xaf\x92\xf1\x91\xe9\x55\x80\xbd\xd8\x94\xe9\x3a\x29\x6f\x69\xe2\xed\x47\xb4\x62\x58\x65\x93\x94\xc7\x9b\xc5\x84\xce\x1d\x67\x5d\x45\x68\x91\x5e\xa1\xb0\xa2\x19\x93\x3c\x61\x8c\x4c\x95\x88\x22\x53\x21\xa2\xc8\x54\x87\x28\xd2\x95\x01\x6e\x83\xaa\x4a\x3f\x57\xfa\x20\x5b\x0f\x9a\x11\xba\x65\x30\x87\x74\x3e\xd0\x7a\x25\xf4\x27\x5c\x12\x42\x17\x4c\x8c\x0c\x2b\x4f\x57\x6c\x83\xb7\x74\xa1\x02\x82\xa8\xbe\xb8\x60\x2b\x15\x14\xa8\x82\xc0\x64\xf2\x23\x4e\xd9\x4a\x29\xe9\xe9\xa5\xb9\x32\x98\x97\xec\xd4\xaa\x01\xcb\xf0\x14\x0a\x76\x1a\xaf\xb3\x87\x0f\x4e\x00\x6a\x4a\x96\x7b\xc5\x60\xd4\x2f\xe8\x4e\x4e\xd0\xb5\xdb\x0c\x44\x8f\xee\xa0\x11\x66\x0b\x4b\xde\x64\x4d\x74\x94\xee\x5b\xf8\x34\xf0\x3e\x35\x13\xea\x92\x5e\xd1\xcb\xd6\xd2\x8c\xba\xf3\xee\x33\xdd\xe9\x3e\x0c\xd3\x7d\xe7\x05\x73\x28\x4e\xe8\x53\x96\x46\xdf\x87\x73\x7a\xcd\xd2\xe8\x1c\x77\x9b\x6b\x7b\x3a\x9c\xef\x69\x46\xc2\xec\x30\x19\x78\xd6\x21\x03\x76\x89\xae\xdd\x02\x2d\xf7\x7b\xda\x7d\xf7\x29\xbd\xa6\xb7\x6e\x32\x2b\x95\xbb\xa6\x0e\x6f\xb7\x25\xf7\x28\xc4\xef\x2d\x0a\x61\x3e\x73\x30\x56\x24\xe2\xb9\x24\x11\x2f\x8b\xf9\xb6\x42\x84\x7e\xdf\xcb\x4e\xc9\x71\xce\xfd\x99\x5f\x32\x6f\xee\xd2\x54\xcf\x52\x35\xd7\xbc\xb9\xea\x4f\xbb\xc3\xfd\xf0\xfc\x0b\x58\xb1\xee\x5b\x1f\x15\xa1\x48\x25\x37\x6c\xba\xbc\xa4\x7a\x53\x82\xcf\x09\xb9\x3a\x15\x72\xc3\x93\x1b\x7a\xf2\x56\x92\xfe\x77\x6c\x4c\x3f\xfe\x7f\x8a\x77\xdb\xd3\x72\xe4\x7f\x61\x93\x6a\xeb\x4d\xa9\x5a\x15\xdb\x6c\x01\xcf\xe5\xae\x0b\x06\x17\x72\x6f\x3b\xc0\xcb\x5d\x72\xf1\x9c\x97\xe9\x15\x5f\xc0\xe6\xfc\xb2\x2c\xd6\x6a\xa2\x74\x98\x2b\x1d\x45\x4f\xce\x06\x1b\x5a\x07\xef\xbc\xea\xe4\x94\xa2\x9c\xd8\x53\x9d\x6d\x99\x0e\xf4\x0b\xb4\x64\x8e\x0b\xb2\x24\x06\xdc\x35\x3a\xa9\x41\xd0\x93\x08\x06\x5a\xdb\xd2\xda\xdc\xb4\x6a\xce\xeb\xba\xdc\x43\x50\xc7\x2f\x66\x9a\xde\x0d\x87\x8a\x3d\xb4\x3d\xf4\x77\xf8\x0b\x49\xa7\x8f\x8f\xdf\x05\x01\x96\x73\xe9\xef\xf2\x8d\xbc\xc3\x2f\x2a\x7a\xd3\xe2\x13\x3b\x03\xaa\xd3\x7b\x5b\xbc\x6c\xce\x88\x1e\x2e\xdc\x9f\x3a\x53\x1e\x71\x17\xe9\x99\x84\x6f\xa3\xb7\x6c\x30\x09\x6d\x0a\xf0\x36\x49\x9a\x57\xd8\x6a\xfc\x54\x70\x09\xa3\xf1\x53\x76\x0d\x2a\x6f\x6f\x7b\xee\xdb\x4d\x1b\x1c\x13\xcd\x19\x16\x6e\x8b\x14\xca\xcc\x88\xd0\x52\x26\xfb\x6d\xa6\x62\x54\x16\xf2\x49\xea\xf6\xca\x32\x42\x0a\xa9\x29\x2c\x01\xfd\xd7\x51\xa5\xca\x65\x4a\xf4\x86\x9a\xd0\xb9\x2c\x53\xce\x47\xe1\x05\xe0\xc7\x82\xc6\xfe\xbe\x09\xf5\x03\x48\xa7\xab\x1b\x00\x38\x21\xd5\x11\x35\xda\xa6\x78\x33\x72\x0f\x99\xab\x24\xc1\x82\xa2\xc3\x73\xbc\x2b\xb6\x22\x4b\x73\x1e\xa2\xbc\xc8\x39\xda\xd3\x9c\x50\x0b\xe2\x8a\x8e\x27\x88\xca\xda\xc2\x54\xca\x65\x61\x9f\x25\x3c\x74\x3c\x13\xfb\x3d\x9d\x93\x9e\xfd\xe1\x79\x67\x6f\xd1\x18\x84\xee\x8b\xf6\xb4\x87\x69\x25\xbd\x4c\xa6\x0e\x89\x91\x8d\x36\x45\x76\xbb\x4c\xb3\x8c\xe0\x8f\x6a\x99\xff\xd1\x38\x25\xa1\xaf\x60\xff\x5d\x16\xe5\x75\x52\x2e\xde\xf1\xe5\xb4\x57\xcb\xfc\x2a\x08\xf0\xab\xde\x03\x31\x1d\x79\xfb\x57\xf6\xaa\x3f\x8a\xb8\xf6\x11\x7a\xc7\x97\xb4\xd4\x9b\x8e\x49\xb8\x77\x8b\x39\xcc\xb8\x82\xb3\xab\xd9\x6c\xa1\xf2\x94\x59\x0e\xed\x70\x81\x1d\x9e\x96\x1b\xe5\xa9\xb7\x4b\x56\x3e\x7f\x38\x67\xe5\x48\x14\x34\x63\x9a\x4e\xd3\x8d\x03\xb8\xa4\x0b\x65\x52\x0d\x84\x97\xae\xdc\xc4\x5d\x44\x7f\x84\x0b\x7a\xc1\xde\xe0\x92\xc6\x48\x14\x30\x39\x15\xf3\x67\xce\x16\x28\x32\x2f\x4a\xde\x6e\xcd\x96\x78\x4e\x53\x42\x4f\x59\xe2\xd3\xce\x35\xbd\x64\x5b\xec\x92\xe8\xfa\x9e\xde\x42\x09\x92\x73\x55\x4e\x3d\x29\x7a\x50\x94\x94\x69\x72\x3c\xdf\x96\x25\x44\xe9\x39\x8d\xc0\x0a\x17\x59\xb3\xf3\x0b\xba\xc2\xbb\xb4\x7a\xa6\x32\x84\xa7\x34\xad\xde\x26\xa5\x48\x93\x2c\xbb\x35\x89\x97\x74\x25\xcb\xf3\x78\xa5\x64\x4f\xe8\x4e\x27\x16\xf9\xb3\x2c\xf5\x3d\x2d\x39\xd9\x5d\x8c\x74\x6a\x10\xd8\x4b\xcc\x09\xfd\x45\x07\x26\xe9\xe0\xe9\xd0\x0a\xaf\xcd\x49\x61\x66\xf4\xdc\xe1\x46\x19\x22\x3b\x39\xd2\xe9\x5b\x7f\x04\xd7\x54\x10\x09\xcb\x94\x71\x50\x68\xbd\xec\x9d\x97\xbe\x4e\xf4\xc7\x3d\xfd\xed\xff\x8a\x38\xf2\x85\x22\xbf\x27\x99\xd8\xc9\x26\x57\x8a\x28\x24\x05\xe5\xa3\x65\x59\xac\xa9\x3d\x6a\x26\xb4\xf0\x88\x67\x5d\x97\x0a\xa2\x0f\x66\x64\xc2\x00\xd9\xf9\xc3\xaa\x2c\xae\xa9\x5a\x5d\x9e\xb4\x01\xb3\x4f\x16\xd6\x98\x7c\x66\x3a\xea\xd7\x80\x04\x7e\x81\xf2\x40\xe0\x05\xce\x69\x42\x9c\xf6\xa5\xa0\x6a\xe4\xd2\x7d\x57\xd8\xff\x22\xc1\x0c\x7b\xdf\x2f\xbf\x9e\xc8\x7d\xa5\xfd\xf9\xd4\x7c\xab\xfd\x50\x62\x29\xc9\x7f\xf1\xad\x1e\xb8\x9e\x3f\x23\x9c\x8a\x58\x4e\xb1\x3d\x5e\x60\x41\x4b\xed\x50\xd3\x43\x5f\xe9\xa7\x2f\x13\xbf\x3b\x44\xe7\x3e\xa9\xfb\x37\x23\x48\x6b\x31\x9a\xfe\xf0\x77\x4d\x10\xf6\xf4\xa7\x7b\x23\x56\x68\x95\x9b\x68\x60\xce\xa4\x4b\x2c\xf4\x9e\x22\x69\x4d\x5d\x9b\x3b\x2d\x84\x98\x60\xbc\x8c\xb1\x4f\xd6\x86\x89\xaa\xb4\x01\xa4\x99\x17\x64\xf7\x6b\xbd\xf7\xa6\x1a\x89\xa2\x3f\x77\xdf\x2e\xd1\xd3\xe8\x0b\x39\x0e\x53\x2f\xbc\x8f\x39\xb9\xce\xb5\xbd\x87\x67\x0e\xc3\x18\x60\xa2\xdc\x93\x63\x8f\xfd\x46\x52\xd7\x46\xe2\x37\xb2\xf1\xdd\xc6\x19\x5f\x6f\xc6\x54\x27\x5b\x29\x2c\x67\xae\x5f\x22\xbf\xf4\xd0\xef\x4e\x5a\x32\x65\x9f\x94\x47\x3c\xfc\x01\x00\x59\x4e\xd0\xf0\x07\x9c\x9b\x99\xd8\x29\xbf\xd5\x0c\x0a\x32\xa5\x68\xcb\xc3\x3f\xe0\x52\x16\xf5\x10\x49\x71\x73\x4f\x7f\xe9\x0b\x9a\xc3\x9d\x1c\xa9\x71\xc9\x94\x73\x39\x1f\x29\x78\x9e\x20\x18\x60\x3e\x5a\x73\x91\xfc\xc4\x6f\xa5\xe4\x91\x64\x42\x5f\xcd\x45\x99\xe9\x4b\x08\xa4\xf7\x13\xbf\x25\xfb\xae\xcd\x63\x6b\x57\x36\x96\x9a\xde\xb2\xef\x58\x45\x0a\x9a\x3b\x7a\x5e\x7a\x67\xaf\x9a\xdc\xc2\x82\x71\xe4\xd6\x9d\xf7\x14\x87\xc8\x3b\xc8\x71\x75\x8d\x62\x75\x90\xa4\xee\x67\xb2\xcf\x3b\xc7\x6d\xa2\x50\x81\xef\xf5\x41\x9b\x57\x7a\xda\x0a\xd1\x3d\x00\x60\x64\x53\xa4\x2a\xe8\xef\x96\x99\x78\x65\x3a\x5f\x37\xf7\xbc\xf2\x6c\xa1\x3a\xf8\xbc\xdc\xfb\xa2\x9f\xe1\xe1\xdf\xad\x7e\x7e\xa8\xc3\x9e\x27\xc2\x2f\x5d\xde\xfe\xdd\xb2\xb3\x36\x54\x91\x02\xb4\x60\xe3\x69\xfe\x98\x9b\xe3\xd8\xe1\x30\x27\xfa\x1c\x5b\x60\x40\xf5\xc9\x1d\xbb\x5d\xba\xc2\xb6\x0d\x05\xd1\x17\x9e\x91\x0a\xaf\x35\x9b\x96\x9d\xab\xc2\xd5\xd8\x02\xa4\x0a\x9c\xe1\xb6\xf1\x33\xe4\x23\x64\xbe\x0e\x29\xe6\xc4\xdc\x82\xc3\xa4\xba\x24\x14\x32\xc2\x0a\x7d\xb3\xd4\xf9\xf4\x1d\x13\xe6\x8a\x50\x6f\x4c\x97\x1d\x53\xfa\x3f\x2d\x2a\x0a\x1d\x8c\xc9\x68\x2b\xe6\xd8\x6b\xfa\xa2\x8b\xac\x3c\x3a\xdf\x2c\xa1\xa6\xf3\xcd\x92\xed\xf8\x7a\x23\x6e\xc3\xc1\x84\x6e\xf3\x6d\xc5\x17\x1f\x8a\xcf\x3c\xaf\xc2\x78\xa6\xef\x5f\xe5\x9b\xad\x90\xb7\xc5\x15\x2f\x97\x59\x71\x1d\x1e\x3f\xa2\x10\xfe\xe3\x35\x5f\x8a\x37\x57\xbc\x0c\xc7\xb0\x09\xa9\x8c\x83\x09\x4d\x15\xb2\xd7\x69\x91\x8b\x95\x42\xbf\xd4\x29\x2f\x8b\x72\x9d\x40\x96\x6d\xc5\x4b\x0d\x00\xa6\xc0\xf6\x26\x34\xad\x0a\xf9\x03\xd6\xdc\x0b\x39\x63\x24\xbf\x08\xed\x58\xf3\x32\x5d\xa4\x7c\xad\xca\x2a\x97\xf3\x47\xff\x7c\xf4\x08\x0e\x34\x39\xff\xbc\x48\x6e\x4f\xd3\x0a\x02\xb1\x87\x83\xc9\x9e\x50\xf8\x2a\xf7\xf9\x2b\xed\x22\x6a\x3f\x3d\xad\x7e\x93\xd5\x1a\x4d\x96\xec\x1e\x5a\xb2\x5c\x07\x3e\x1b\xb5\xea\x3f\x08\x50\x3d\x00\xfb\x1b\x5a\x30\x63\x87\x3e\x3a\x5f\x48\x7e\xfd\x43\xba\xe6\x98\x10\xb9\x4b\x99\x0e\x7b\x3c\x06\x94\x34\xe8\x67\xb8\xf2\x3b\xc8\x4f\xf8\x5d\x7d\x0f\x24\xb5\xbe\x0d\xd2\x6c\x2f\xfb\x2f\xa9\x4e\x85\x94\x56\xaf\x06\x01\x1e\x88\x91\xe9\x3d\xb9\x8b\x9a\xeb\x20\x28\x89\x0a\x15\x73\xae\x28\xa7\x0a\x9e\xa8\x88\xb7\x94\xbb\xbd\xd1\x35\x89\xfe\xec\xb0\x4e\x55\x96\xe8\x88\xd1\x45\x7a\xf9\x63\xb1\x2d\x8d\xff\xaf\x5e\x64\x69\xf5\xb2\x2c\xee\x78\x1e\x04\xad\x04\xcf\x85\xa2\x98\xba\x61\x61\x85\xb5\x82\xb0\x69\x6e\x30\x2f\x9c\x06\x72\x89\x7f\x4e\x7e\x6e\x61\x53\xf3\x68\x23\xf9\x2a\x42\x39\x09\xe5\x6f\xbb\x43\xd8\x60\x4c\xc5\x3e\xd7\xae\x0f\x6e\xfd\x57\xc5\x9a\x47\x7d\x89\x61\xbf\x69\x88\x96\x7d\x5d\xcc\x3e\x6d\xc7\xf4\xe4\xc9\x18\x10\xe3\xcb\xc7\xb9\x01\xa2\x06\x3b\x0d\x88\xce\xe4\x05\x04\x8c\xcb\x19\x05\xfc\x3f\xbd\x8d\x7a\x40\xf0\xb0\x83\xad\x59\x39\x5a\x17\x72\x7b\xd2\x34\x29\xe5\x15\x50\x40\xd3\x0f\xa7\x3d\xae\x2b\x09\x16\xb2\xc7\x9e\x9e\xc2\x8b\xaa\x89\xca\xbd\xa1\x9d\xca\x7a\x32\x52\xf5\xba\x79\x01\xb2\xe8\xc4\xa5\x4e\x94\x04\xe9\x7c\xa9\x13\x33\x9d\x98\x31\xb8\x51\x89\x6a\x2e\xe9\x27\xea\x86\xb9\x64\x95\x47\xdc\xad\x75\x06\x71\xb7\x66\x3a\x41\xd7\x5e\xfd\xfa\xe1\x99\x6d\xf2\xaf\x1f\x9e\x31\x9b\xa8\x32\x28\x07\x35\x9d\x43\x3b\xf8\xbb\x64\x95\x67\x63\x9a\xbb\x59\x32\x39\x07\x4c\x7b\x8b\x79\x92\x71\xd3\x68\xb8\x61\x2e\x99\xae\xad\x29\x1a\x71\xdb\x8c\x49\x9c\xe6\xc3\x21\x49\x70\xc1\x44\x5c\xb2\x75\x9c\xcf\x66\x50\x0e\x78\x6b\x3a\x44\x36\x10\x15\x2f\xd9\x60\xe2\x86\xe9\x4a\x4e\x9b\x53\x2d\xec\x69\x0c\xfe\xf3\x05\x98\xf6\x49\x02\x83\xf5\xac\x1d\x9d\x2f\xa2\x26\xf9\x08\xe5\xdc\x56\xf9\xf5\x1a\xc0\x16\x94\xde\x2f\x40\x66\xd3\xb1\xfb\x2f\x83\x00\x5f\xca\x09\x5e\x8e\xb6\xa0\x5e\xf4\x1c\xd9\x09\xbd\x84\xe0\x5c\xb6\x61\xb7\x87\x36\xee\x2b\x75\xac\x08\xbc\x89\x6d\x5d\x6b\xae\xb8\x62\x9e\xfa\xc5\x3c\x1e\x47\xe0\x49\x31\xe7\x69\x06\x40\x7e\xe3\x10\xee\x97\x59\x51\x94\x8d\xad\xfd\xda\xad\xe2\xa1\x94\x4b\xcd\xf4\x57\x10\x55\x41\x90\x56\x2f\xd3\x3c\x15\x5c\xc5\x23\xc8\xd9\x53\x18\x46\xcf\x36\xe9\xae\x15\xc2\x41\xbb\x70\xa4\x39\x36\x9c\x81\x73\x58\xa1\xa9\x7a\x9a\x5c\x54\xf6\xe9\xb1\x7b\x9a\xb0\xb1\x46\x92\x97\xcb\xb6\x80\x65\x8b\xf3\x20\x90\xa3\x0b\x80\x59\xe5\xac\xae\x07\x79\x10\x5c\xc3\x80\x13\x05\xc4\x28\xaf\x48\x10\x24\x2e\xb4\x53\x32\x4c\x5d\xfb\xce\xe5\x07\xc2\xa8\x94\xa3\x6a\xbb\x01\x03\xa0\xe7\x7c\x53\x72\xa5\xe6\xf8\x3d\x29\xf3\x34\xbf\xac\x82\xc0\x53\x85\x39\xc3\xa2\x79\x91\x57\x45\xc6\x83\x40\x5f\x8c\xae\x93\x32\x6f\xde\x61\xe4\x15\x77\x74\xad\xca\x53\x28\x9a\xfb\x7e\xd3\x31\x4b\x63\x8e\x9a\xee\xde\x7a\x67\x1c\xb0\x72\xb4\x70\x45\x6a\xd0\xd9\x20\xe8\x4b\x55\x0c\x34\x27\x7e\x2c\xf8\x82\xa6\x2c\x9e\xe9\x73\x8e\x8e\xd5\x5c\x32\x1c\x42\x4d\x05\x43\xa8\x07\xa0\xdb\x3f\x0c\x71\x45\x56\x92\x72\x16\x43\x86\xce\xf2\x18\x0d\x93\x21\x9a\x1d\x21\xea\x1b\x84\x92\x62\xc8\xaa\x21\x92\x9f\xed\x27\xc7\xd5\x6c\x88\xe8\x11\x9a\x16\xac\xb0\x2e\x2a\xc7\x8f\x88\x72\x77\x29\x9a\x47\x2f\xa9\x09\x78\xb4\x3f\xc7\x7c\x88\xce\xf2\xa7\xe6\xa9\x2c\xb6\xb3\x25\xc8\xd2\x14\x21\x4f\x8d\xe8\x87\x88\x7c\x0d\x0d\x01\x52\x15\x2c\xbf\xc8\xa8\x12\xc9\xfc\xb3\xdc\x19\x06\x93\x7d\x4b\xf8\x68\xe9\x7a\xf6\x70\x4a\x29\x3f\xf7\x03\xbd\x01\xfb\xbe\x96\xf1\xd9\xdf\x1e\x1c\xf0\xdd\xbe\x89\xf9\xac\xae\xf1\x39\xd6\xd7\x70\x1c\x61\x8b\x7e\x7d\x68\xf5\x1b\xe7\x3e\x8f\x75\x37\x49\x7f\x97\x7d\x7f\xd1\x64\xdf\x01\xc9\x8a\x13\x1f\x94\xce\x32\xcf\x29\xb0\xcf\x10\x69\x0a\x58\xe8\x08\x97\x92\x9d\xde\xed\xe9\x06\xae\x00\xae\x93\x98\x1b\xc8\xa2\x40\xd5\x07\xc0\x72\x47\xa5\x61\xbe\x43\x8d\x69\x52\x02\x23\xee\x81\x7e\x6e\xc1\x27\x37\x08\x06\xa6\x4e\x5b\xa5\xaa\x0a\x5a\x07\x6f\xf5\x09\x0f\xef\x65\x77\x59\xaa\xa8\xc1\x3e\xc1\xf1\xe5\xde\xd5\xad\x80\x20\xba\x23\xa4\x62\xdd\x7d\x30\x9d\xf9\x99\xdf\x56\x91\x77\xdd\x8d\xe4\x4b\x73\x23\xfd\x08\xf7\x39\x92\x34\x3a\x1f\x00\x6b\xbe\xa9\x40\x2a\x1b\x13\xe9\x59\x53\x59\xde\x00\x04\x98\xfe\x29\x3f\xff\xcf\x38\x1f\xa2\x0a\xc9\x0b\x30\xce\xb5\xaf\x7e\xf6\xc4\xc7\x6e\x30\xb9\xe8\x4f\x98\x65\x7f\x76\x60\xab\x8c\x12\xd8\x96\xf3\xbb\xf7\x2d\xb4\x64\x3e\x38\xa1\x1b\x1c\x2c\xd8\x67\x9c\x13\x35\x28\xb2\x1d\x0d\x38\xc2\xbd\x3a\x96\xf6\x3f\xec\x7b\xf5\x61\xcf\x01\x20\xcb\x55\xf6\xb6\x89\xf8\x8d\xd0\xd0\xd1\x7f\xc9\xaf\x8b\x63\x03\x68\x6b\xdc\x4c\xf9\x13\x36\x8e\xf2\x08\x0d\x51\x88\x50\x88\x8e\x11\x51\xaf\x6c\x8a\x6b\x3c\x19\x3b\xb7\xfa\x31\x2d\x20\xf6\x87\x86\x48\x26\xc6\x3d\x72\x42\x86\xaa\x7d\xef\xd8\x09\x3e\x8b\xe3\xff\x9c\xc5\xb3\x87\x67\x33\x52\xe3\xb3\x33\x12\xe1\xf8\xc7\xd5\x6c\xbd\xc6\x55\x45\xa2\xfa\xb4\xa8\x4f\x4f\x23\xf9\xaf\x7e\x5e\xd4\xcf\x9f\xc3\x9f\x48\xfe\xab\x17\x8b\x45\xb4\x88\xea\x45\x11\xd5\xd7\x71\x51\x5f\xcf\xa2\xfa\xf7\xb8\xa8\x7f\x9f\x45\xf5\x2f\x45\x54\x7f\x82\xff\x6a\xf7\xb7\xfe\xf4\xa9\xbe\xbc\xc4\x97\x97\x97\x11\x89\xea\x1f\x7e\xc0\x3f\xfc\xf0\x83\xbc\xe2\xf5\x8b\x3a\xa9\x9f\xd6\xab\x55\x54\xff\xf8\x63\x54\x7f\xfe\x1c\xd5\xeb\x75\x54\x57\x55\x54\xbf\xdf\x4d\xe8\x77\xfb\xfa\xa6\xfe\x58\xdf\xdd\x45\xf5\xbf\xff\x1d\xd5\x23\x72\x72\x49\x3f\xf6\x36\xfc\xf5\x87\xf7\xf5\xeb\x0f\xf5\xeb\xd7\x91\xfc\x57\x67\xbb\x09\xfd\x7a\x2f\xb3\xff\xc1\xe0\x5c\xc7\x1f\x8c\x5f\xdb\xc0\x9c\xe5\xb4\x3b\x65\x4a\x10\x33\xba\xa6\xd9\x10\x77\xa6\x9c\x61\x49\x0e\x79\x10\xe0\x57\x72\x48\x0b\x65\x91\xfa\x2a\x16\xf1\x78\xd6\x17\x6e\xef\x2d\x2e\xfa\x89\x2a\x15\xf1\x44\x12\x8a\x47\x33\x59\x60\x0e\x85\xe4\x7d\x25\xc0\x5a\x56\x2c\xe0\xf3\x44\x24\x98\x8c\x8a\x72\x91\xe6\x49\x76\xb0\x64\x4e\xf6\x3e\x26\x67\xcb\x11\xcc\xf2\x6a\x11\x16\xec\x25\x20\x5e\xf8\xa5\x13\xfa\x87\x9c\xd8\xf2\x4f\x53\x37\x6c\x97\x06\x2d\x18\xd7\xa0\x62\xef\x14\x05\x53\x0e\x0f\x85\xb5\x3f\x7f\x9c\x83\x0d\xfa\xab\xb8\x88\xc5\x6c\x16\xc9\xbf\x4c\xdf\x84\x70\x83\x4b\x26\x7f\x0d\x36\xd9\xc9\x59\x1c\x9f\x55\x67\xef\x67\x27\x24\x2a\x9d\x62\xf7\x3f\x67\x71\x7d\x36\x7b\xa0\x94\xba\xa1\xf7\xe0\xec\x4c\xa5\x4d\x7b\x34\xbb\x8a\xdb\x4a\x19\x42\x1e\xcb\xa4\x25\x9d\x21\x7b\x8d\x0b\xc9\x16\x45\xf2\xaf\x16\x76\xa4\x1c\x26\x6f\x4d\x61\xe9\x7e\x2f\x77\x24\xd9\x01\x52\xfc\x0b\x9b\xdd\x63\x04\x5a\xe0\x6c\xbd\x5e\x7e\xe9\x13\xb0\x6f\x7c\xd5\x9e\x17\x65\x6c\x94\x15\xf9\xa5\x7c\x53\x89\xc3\x0a\x49\x1a\x7c\x34\x3f\x02\x58\x05\x9c\xa2\x4a\xae\xfe\x09\x1b\x07\xc1\x47\xe3\xbb\xa8\x02\xd6\x98\xaf\xff\x48\x4b\x42\x1b\xf9\x69\x7e\xcc\x26\x4d\x16\xff\x37\x76\x72\xb6\x38\xa1\x9f\xe4\x8f\xbc\xf8\x41\x5e\xec\xbe\xda\x9f\xd0\x9f\xe0\xea\xeb\xfd\x09\xfd\x85\x9d\xc4\xc3\xe3\x59\x74\xb6\xd8\x7d\xbb\x3f\xa1\x0f\x54\xde\xe8\x84\xfe\x4b\x5d\xe9\xbb\x7f\xbb\x3b\x9d\xc2\x39\x94\x31\xa1\xb2\x3c\x61\x6e\x64\x91\x39\x77\x65\x4e\xa8\x2c\xb5\x84\xc7\xc3\x13\x5a\xb8\x47\xc3\x13\x9a\x72\x76\xf2\xef\x5a\xde\xcb\x32\xc3\x08\x5a\x79\x99\xd2\xa4\x91\x8e\xa3\x50\x3d\x22\x91\x7c\x58\xc9\x22\xc6\xc7\xdf\xcd\x76\x63\xfa\xe8\x9b\x6f\xf7\xf1\xff\x4a\x8e\xef\xce\xb6\xe3\xf1\xd3\xf1\xf1\xd9\x76\xfc\xcd\xcb\x97\x67\xdb\xf1\xff\x8c\xe5\xcd\xf3\xff\x91\x37\x2f\xbf\x83\x9b\x97\xcf\x9f\xc9\x9b\xe7\x2f\xe1\xe6\xe5\xf8\x7f\xe4\xdf\x89\xba\x79\xf1\x72\xb6\x9b\x40\x69\x75\x7c\xb6\x1d\x7f\x0b\x2f\x8c\xbf\x7d\xf9\xf2\xec\xc4\x3c\xc0\x67\xd5\xc3\xa8\xf9\xd0\x3c\x22\xf2\x77\x7f\x92\xd2\x39\x6f\x10\x9a\x8c\x1b\xfa\x3e\xe7\x92\x4c\xbc\x06\xa8\x72\xdf\x12\xcc\x29\xc6\xa4\x10\x13\xe5\xa1\xf0\x10\x84\xb7\xbc\xb1\x66\xb7\x78\xce\x29\x27\x11\x94\xe5\x44\x58\xea\x44\xc3\x50\xf9\x25\x5c\xbe\xb8\xd9\x60\x08\x14\x6e\x26\x0b\x3a\x3b\x43\xd4\xc7\x1d\x3c\x39\x3b\xc3\x67\x31\xa9\xe5\xcf\x8c\xd4\x67\x31\x8e\xff\x73\x36\x93\x24\x95\x9c\xcd\x64\x2a\x90\xda\x66\x58\xd7\x26\x8c\x85\xa8\x6b\xe5\x2e\x5d\xec\x09\x21\xbe\xfa\x91\xf7\x9f\xcf\xc4\xc7\x67\x27\x67\x67\xff\x79\xf0\x70\x18\x8d\x30\xa9\xe3\xb3\xd9\x6e\x3f\x93\x0b\xf8\xec\xec\x41\x80\x14\x63\xb9\x6c\xf6\xdf\x82\x37\x39\x33\x01\x6b\xb9\x67\x7b\x87\x30\x5b\x31\x9f\x11\x5a\x29\x41\xac\x6c\x85\x38\x01\x2f\x9f\x6b\x40\x21\xa0\x2d\xbd\xac\x14\x98\x97\x3c\x96\x5b\xf8\x8c\x79\xac\xd4\x4a\x57\x0e\x8d\x68\x44\x21\xd2\xfd\x30\x3a\xbf\x66\xf2\x0f\xe0\x8e\x0a\x39\x98\xa3\xf3\x6b\x78\xb6\xf7\xfb\xe3\xc2\x4e\x02\xcd\x07\x06\xc1\x16\x2f\xe5\x48\x06\xc1\x52\x0d\x25\xcd\x47\xe7\x09\x58\x8c\x42\x2f\xac\x39\x1b\xd3\x53\xce\x26\xf4\x92\xb3\x47\xf4\x8a\xb3\xaf\xe8\x2d\x67\x5f\xd3\xa7\x9c\x7d\x43\xaf\x39\xfb\x96\xde\x71\xf6\x3f\xf4\x9c\xb3\x7f\x7a\xde\x37\x7e\xbf\x7f\x90\x37\xd1\x57\xdf\x7e\x1b\x7e\xf5\xed\x37\x9e\xa3\x4c\x63\x6c\xfe\xf1\x35\x63\x92\xc2\xf0\x7f\x4c\xc6\x52\x9c\x1d\xd7\x35\xff\xc7\xd7\xe3\xb1\x4c\xdd\xff\x8a\xd1\x27\x44\xc7\x74\x4c\x0f\xe0\xb3\xdf\xf2\xa4\x74\x50\xe8\xfc\x31\xfb\xee\xbb\xef\xbe\x8b\x10\x1a\xf2\x10\x0d\xd1\x10\x34\x8e\xbf\xe2\x31\x8d\xd1\xa7\x4f\x88\x3e\x9a\xb5\x4a\xf2\xb7\x35\x55\x94\x6c\x85\xff\x92\x7c\xed\x6b\xf9\x1a\x92\xcf\x91\xff\xe0\x13\xa2\xdf\x1c\x78\xf2\x09\xd1\x6f\xe9\x60\xec\x3f\x7d\x86\xd5\x15\x45\xb7\x88\xd0\xef\xcd\xdd\x84\xd0\x8c\xc3\x57\x16\x5c\x5f\x7e\x42\xf4\x01\xfd\x64\x6e\xe4\xad\xe0\xf4\x27\x77\xff\x09\xd1\x9c\xd3\x5f\xbc\x04\x9b\xb2\xe0\xd8\xb6\xcd\x3c\x9a\xd1\x35\x87\x27\xba\xb0\x96\x4d\x88\x88\xd7\x7c\xc6\x54\x38\x58\x1d\x20\xa6\x54\x3a\xdd\x0f\xd7\xc5\xf3\xf4\x32\x15\x9f\x64\xc7\x70\x12\xaa\x99\x6b\x8a\x3a\x50\x50\xff\xbb\xf6\xb5\x03\x6f\xc1\x3b\xaf\x72\x39\x7f\x27\x63\xc8\xdd\x53\x4e\xdf\x91\xa4\x6c\xd3\x10\xcb\xbf\x4f\xbe\xfd\x67\x34\xf9\x6e\x3c\x0e\x1f\xf1\xaf\x88\x62\xeb\x6f\x38\xfd\x99\xb3\xd7\x1c\xa3\x97\xdb\x2c\xfb\x04\xfd\x3d\x18\x7b\xb6\x0b\xaf\x9b\xb4\xad\xc7\xb6\x5a\xad\x96\x3c\xc2\xef\xb9\x89\x70\x98\x93\x3e\x8d\x91\x41\x61\x25\xe1\x0b\x93\xd3\xc7\x61\x7f\xc1\x0f\x72\x3e\x7c\x74\xbe\x50\x50\x3e\x43\xab\xc7\x8b\xd0\xaf\x1f\x9e\x01\x0a\xe1\x50\xcc\x94\x76\xcb\x13\xaf\xec\x5a\xf6\x8a\xb1\xe1\x5d\x40\x32\x70\x1f\xcc\x40\x41\x24\x97\x9c\x9e\xe0\xc4\xc4\xeb\x5b\x17\xb9\x58\xc9\x17\x1f\x7d\x67\x42\x4e\x73\xdb\x9c\xea\x9e\xe6\xe4\xd4\xbe\x4c\xff\xe4\xfe\x2d\x70\x28\x7f\xf9\xba\x4f\x97\xfe\xe4\xd6\x32\x52\x9f\x0a\x90\xba\x56\x57\x56\xdb\x7b\xf4\x73\xf2\xf3\xd4\x50\x5f\x2c\xfe\x81\x73\x36\x79\x44\x86\x39\xf9\x87\x75\x0f\xe0\xff\x7f\xe6\xde\x85\xb9\x6d\x5b\x69\x18\xfe\x2b\x32\xde\x46\x05\x2c\x48\x96\x9c\xc4\x69\xe9\x20\x1a\x37\xce\xad\x8d\xe2\x34\x76\x9a\x26\x8a\x8e\x87\x16\x21\x8b\x8d\x04\xea\x90\x90\x1d\xc5\xd4\xf9\xed\xdf\x60\x71\x21\x48\x51\x8e\xdb\xf3\x7c\xcf\xfb\x8e\x67\x2c\xe2\xb6\xb8\x03\xbb\x8b\xbd\xb4\x18\x96\xed\x94\xec\xf5\xf6\x29\x70\x91\xfa\xfa\xec\xd9\xff\x39\xd8\xff\x29\xb8\xdf\x6b\xa7\xf7\x1e\xdd\xdb\x5f\x7f\xe5\x1b\x9c\x6c\xa3\x0d\xb8\xc1\xcc\x36\xf1\x35\x4e\x7e\x0c\x92\x79\x28\x1f\x6b\x6c\xd8\x3e\xac\x49\x62\xad\x44\xca\x91\x1a\x50\xdb\x7a\x6b\xd1\xaf\xdd\x5b\xd3\xf7\x18\x0d\x10\x1d\xa2\xc1\x00\x0e\x23\x34\x48\x6a\x35\x2f\x8d\x85\x2a\x18\xd3\x56\x4f\x1f\x47\x68\xa0\x0a\x95\x8f\x42\x7e\x0b\x62\x0e\xc5\xb3\xd3\x29\x38\x0a\x36\xeb\xd1\x01\xfa\x07\x90\x7c\x20\x4f\x31\x82\x48\x44\xd1\x40\x1f\x66\x26\xf8\x93\x3e\x94\x06\x88\xfe\x60\xbe\x06\xde\x61\x06\xf5\xd6\xdb\x84\x90\x7e\x7b\xdf\xf1\x4b\xfe\xd5\x9c\x1a\xa6\xdc\x77\x0b\xfa\x65\xe0\x14\x1c\xa8\xc6\x0d\x36\x6d\xfd\xc9\xe1\x80\xeb\x5b\xb8\xdd\x2b\x32\x0f\x74\xf6\xcd\x02\x3e\x85\x26\x2c\x8e\x63\xea\x7c\xab\x4e\x28\xb0\x87\x28\x1c\xcf\xfe\x50\x9f\x18\x49\x5f\xd7\x93\x04\x11\x16\xa4\xf4\x7e\xa5\xd5\xd0\x41\xaf\x84\xb3\xbd\xe3\x61\x72\x3c\xea\x1b\x5a\xf2\xf3\x48\x51\x93\xf9\xe7\x8c\xb4\x54\x5b\xfa\x7b\xf4\x0b\x67\xe8\xd7\x50\x2c\xc3\x74\x75\xfe\x9c\x5f\xa4\xf0\x31\x08\xd3\xf1\xf4\xfc\x68\x91\xc6\xb3\xf3\x41\xb8\x3a\xff\x75\x29\xf8\xf9\xaf\xcb\xd9\xea\xfc\x68\x79\xb9\xcc\xe4\xf9\x29\x5f\x48\x3e\xbf\xe0\xe9\xf9\xc9\x58\x26\xea\xf7\x4d\x72\xa5\x23\x8e\xf9\x18\x3e\x9c\x81\xb6\x73\x44\xe8\x07\x5d\x8b\xaa\x41\x01\x57\xa0\x2d\x60\x05\x57\x81\x55\x30\x15\x34\x05\x49\x01\xf1\xcb\x17\x07\xea\x31\xaf\xb3\x5f\xad\xd9\x1d\x6a\xe0\x7c\x4e\x0a\x88\xbd\x00\x7f\xde\x1b\x4d\x78\x4c\xd8\x88\x65\xc3\x91\x79\x0b\x50\x44\xcb\xa0\x2e\x21\x53\x0b\xa7\x92\xa2\xe9\xad\xde\xfe\x61\xab\x95\x92\x98\x4d\xf0\x70\x9f\xdf\xa7\xe9\x88\x6c\x29\x33\x4c\x47\xac\xd8\x7a\x66\xef\xc4\x80\xb2\xd6\x74\xa0\xbe\x45\x15\x18\xdb\x8b\x17\xf6\x64\x60\xf5\xa9\x73\xba\xdf\xee\xed\x30\x86\x13\xf6\xd5\x7b\xfc\xda\x6c\x26\x0d\x09\xe9\x27\xc0\xd0\x0b\xea\x4b\x54\xda\xe4\x17\xf8\x87\x95\xfd\xed\x7a\xfe\x4e\x81\xbf\xdd\xed\xe2\xfe\xf8\xc5\x47\xce\x61\x49\x79\x77\x62\x61\x22\xa9\xde\x50\x9d\x3a\xb0\xf7\xfe\xf5\x39\x6a\xfd\xb0\xa7\xc9\x5b\x49\x88\x64\xd7\xce\xef\x24\x78\xdd\xc7\x56\x5b\xa9\x72\x1e\xea\xcd\x2f\x89\x57\x8b\x53\x4b\xf0\x5e\x57\xf4\xad\xaa\xee\x49\x7b\x01\x53\x49\xe0\xcd\xfd\xb6\x6b\x12\x41\xbf\x11\x60\xe5\x25\x59\x86\xb7\x7c\xf3\x55\xbd\x8f\x7f\x71\x28\x47\x2d\x6a\x62\x5d\xc8\x15\xb8\x89\x81\xaf\x31\xfd\x77\x9c\x65\x9c\xfe\xa9\xfe\x17\x3b\xf9\x2f\x8e\x3d\xa1\x4c\x5e\x39\x73\xcd\xab\x90\xc5\x18\xd7\x05\xab\x72\x38\xa2\x89\xfa\x17\x3b\x16\x2c\x5c\x95\xbd\x7d\xe0\xc2\x08\xbb\x09\xe5\xc8\xd9\x53\xd8\xd8\x71\x42\x6d\x19\x42\x93\x8d\x64\x9b\x12\xff\x8d\x14\x1f\xa4\x66\xc2\x68\x41\x34\xae\x2a\xb0\x5f\xb1\xfb\x2a\xb5\x16\xb8\xaa\x0b\x0e\xdc\x55\x42\x13\x13\x02\x66\x91\xd7\xb5\xfd\x07\x90\x39\x36\xc9\x31\x24\xfb\x47\x18\x5c\x4d\xcc\xa3\x8a\xd1\xbf\x30\x6a\xc5\xe6\x39\x24\x57\xd3\x4d\x10\x45\x31\xb2\x47\x4a\xf5\x2a\x64\x1b\xd0\xca\x19\xe1\xe6\xa9\xaf\x25\xb9\x53\x2d\xb7\x41\x48\x6b\x20\x14\xeb\xf1\x15\x2f\xa8\x72\x75\xd6\xeb\x9d\x98\x15\x04\x59\x0f\xbc\x24\x3f\x61\xdd\x3e\xce\x8a\x67\x58\xde\x7a\xd0\xed\x96\xca\x51\xf7\x86\x09\xfe\xa7\x2c\xfe\x0a\xf8\x2a\x3c\x1f\xb8\x18\x4e\x48\xe0\x83\x2a\x83\xc9\x8a\xb6\xbd\xe7\x05\xd2\x16\x4f\xb0\xd7\x16\xcb\x1b\xbb\xe5\xb9\xaa\x60\x61\x1e\x8a\x61\x77\xc4\x4c\x8b\x8b\x7a\xc1\x0a\xce\xfb\xb3\xa7\xbe\x8c\x9c\x20\x5e\x3f\x40\x2b\xe8\xfd\xd9\xd3\x52\x57\xc0\x26\x80\x1f\xc9\xcd\x33\xdb\x77\x20\x7b\xc2\xce\xce\x37\x8e\xc7\x56\x2d\x5f\xbb\xec\x51\x4b\xb6\x2d\x6e\xdc\xc6\x8f\x5a\x6a\x24\x68\x97\xa6\xc4\x34\xe9\x38\x5c\x61\xd2\x96\xe4\xde\xa3\x56\xda\xee\x79\x8c\x43\xee\xf3\x58\x40\x8e\x1f\x9c\xe7\xf4\x5a\x8f\x76\xb1\x6c\xf7\x48\x0b\x3f\x6a\x89\x76\xaa\x0a\xbe\xe4\xc6\x12\xb4\x73\x44\xf1\x98\x75\xfb\x21\x3b\xe1\x38\x66\x5c\xe5\xcd\x82\xec\x09\xf0\x03\xfa\x2a\xa6\xd5\xa3\x21\xcb\xda\x10\x41\x02\x15\xa3\xc2\x84\xde\xa8\x53\x31\x88\x69\x14\xae\x4e\x26\x6a\x48\x82\xd0\xa3\x9b\xfe\xd8\x44\x28\xd8\x4b\xff\x2c\x55\xe7\x63\xc8\xbc\x77\x73\x38\x73\x0d\x28\x4c\xda\x71\xbb\x47\xf6\x1e\x91\x96\xe3\x49\x86\x8f\x7b\xfd\x94\x85\xad\x8f\x1c\x27\xcc\xc2\x69\xf7\x00\x52\x10\x3e\xf9\x58\x01\xde\xc7\x29\x0b\xdb\xd5\x58\x5a\x14\x6d\xf5\x48\xe0\x41\xa2\x29\x0b\x09\xbd\xb9\xe6\xfc\x4b\x90\x52\xe8\x5b\xe2\xf5\xe7\x63\x65\xa6\xdc\xcc\xd1\x04\xbe\x5b\xba\x21\xf6\xa1\x05\x46\xab\x9d\xb6\x12\xb2\xf7\xa8\x00\xf2\xa2\x4a\x4c\xea\x47\x5b\x49\x1f\x11\xab\xf2\x56\xf8\xfe\x90\x84\xac\xdf\x63\x74\xad\xc8\x8e\xeb\x6b\x4d\x76\x5c\x27\x88\x22\xd5\x44\xe0\x5a\xa0\x0f\x2a\xed\xc3\x07\x9d\xf6\x41\xa5\xc5\x59\xf2\x41\x27\x3f\xc5\x3a\x23\x45\xd7\x3a\x64\x93\x28\xfa\xa0\x51\x7f\x9d\xfc\x10\xbe\x5d\xe2\x43\x8d\xb9\x5f\x3b\x42\x40\x55\xed\x08\x81\x0f\x2e\x5a\xd5\x0a\xd1\x53\x85\x86\x5f\xab\x6a\xae\x01\x34\x55\x49\xb5\xb8\xb8\x1c\xa6\x85\x99\xcd\x1e\xb1\x1c\x35\xe8\x49\xa4\xe8\x1a\x14\xa9\x2e\x44\xe1\x4a\xf7\x2e\x8a\xfe\x0e\xb1\x63\xa4\xc8\xb2\x41\x2c\x2a\x64\x53\xf4\xcf\x00\xd5\x51\x60\xd1\x3f\x84\x55\x01\xc3\x35\x0c\x64\x92\x75\x77\x9f\x99\x48\x33\x15\x3a\xfe\x29\x86\xf1\xa0\x28\x2a\xa6\x54\x47\xf0\xd2\xac\xea\xb8\x67\x7a\x62\x21\xd0\xeb\xb9\x49\xf6\xc3\x7e\xfe\x9e\xe1\x61\x45\x6e\x56\xb9\xfb\x7a\xe6\xbe\x54\x8f\xb7\x91\x70\xde\xa0\x57\x69\xbf\xe8\x2e\xe5\x6a\xa9\xc6\xe8\x4e\x45\xfd\x52\xb0\x06\x55\x21\x5d\xab\x86\x70\x27\x7a\xd0\x42\xbb\x9d\x22\xec\x44\x15\x7a\xd0\x0c\xa1\x16\x8c\xd4\xb5\xc3\x94\xa8\x29\xd8\xb6\xf6\xdd\x7a\xd7\x96\x77\x39\x43\xa7\x4b\x11\x85\xab\xf3\x41\x02\x3f\x67\x4b\x9e\xa9\xdf\x0f\x3c\x12\xfa\xeb\x6c\xba\x4c\xe1\xe3\x79\x1a\xab\x9f\xd3\x50\x2e\x53\x35\x73\x3e\x09\xf8\xbb\x06\xa4\xa0\x28\x10\xaa\xb8\x2a\xa8\xca\xa8\x02\xa5\xbc\x3f\x40\xde\xf3\x41\x72\x7e\xb6\x3c\xff\xc0\xcf\xcf\xa6\xe7\xcf\xd3\xf3\xd3\xb0\x9e\x26\xfc\xf5\x1f\xd1\x84\xa5\x11\xf5\xa8\xc2\x52\x7c\x85\xfc\xfb\x50\x9f\x36\x8f\xc5\x46\x8a\x26\x0d\x1f\x95\x29\xc3\xde\x88\xa8\xbb\x03\xa7\x64\x4b\x49\x47\xdc\xf9\xa7\xc4\xf7\x08\xc4\xcd\xa6\x6d\x80\xb9\x1b\xa5\x79\x7d\x2b\x8c\x3b\x51\x9a\xb0\xa2\x6f\xa1\xfe\x4a\x55\x94\xc8\xc6\xef\x14\xdc\xec\xe4\xf7\x89\xc1\xea\xe8\x56\xeb\xfb\xdb\x2d\xfd\x9b\x4d\xfb\x67\xad\xfa\x47\xa3\xf0\xdf\xf6\xe1\xb6\x46\xfd\xad\x12\xff\xbf\x0d\x26\x90\xe5\x6a\x83\x7f\x02\x6a\x92\x4b\xf5\x5f\xca\x12\x4d\x29\xe4\x3f\xa2\x29\xcd\x89\x31\x1c\xd1\x4c\xfd\x1b\xab\x7f\xb3\x32\x79\xf9\xa8\x4c\x5d\xda\x8d\x2c\x89\xf1\xd1\x53\xda\xb0\x40\x0c\xd2\xa4\x6e\x0b\xea\xa4\xb8\xb2\xb3\x74\x6c\xa8\x69\xcb\x94\xd0\xcc\xca\xc0\xd1\xb1\xfe\x8a\x09\x9d\xb9\xd4\x99\x4b\x9d\xd9\x54\xed\x69\xd9\x11\x99\x99\xfb\x1a\xbb\xaf\x59\x85\x04\xd5\x3d\xca\x0c\x51\x99\x01\x05\x3a\x36\xa1\x31\x84\x66\x26\x34\xf3\x08\xce\xd2\xad\xb6\x41\xca\xcd\xb6\x13\x83\x9b\x37\x29\xab\x81\x58\xc9\x6c\xaf\xeb\x3b\x64\xbd\x8d\xc2\x1c\xdf\xb1\x59\xb7\xc1\xc8\xbe\x0f\x63\x10\x8b\xdb\x20\x84\xb7\xd2\xb9\xa9\xac\x70\xe7\xa7\xc9\x32\xcd\x30\xb9\xd7\xdb\xcf\xf3\xde\xbe\xa7\x12\x25\xf5\xb2\x7e\x0f\x14\xd7\xf6\xd7\xc6\x32\x47\xc9\x68\x19\x60\x1f\xb4\x6e\xfe\x3c\x16\x4b\xc9\x21\x58\x7e\xd1\x8d\x65\x65\xff\x9c\x5b\x28\xb0\x2d\x15\xce\xff\x52\xe1\xf5\x2f\x5f\x9a\x77\x4f\xa4\xe0\x6a\x1c\x71\xaa\x12\xa6\x53\x93\x90\x4a\x88\xfc\xa2\x22\xbf\x7c\xf9\xce\x2b\xa9\x69\x5c\x9e\xef\x3f\x30\x58\xe8\x74\x3e\xdf\x7c\xa2\x35\x32\x70\xa8\x95\xfa\x72\x9c\xa4\xf5\x16\x57\x7a\xb5\x4f\x0a\x30\x59\xf6\x5f\x01\xb2\x71\x19\x1f\x27\x22\x2a\x01\x7f\x79\x6b\x1b\xfd\x8e\xdd\xd2\xc2\x97\xdf\x69\xe1\xf7\xc0\x6c\x6b\x5f\xa2\x95\xc5\xc1\x09\x96\xc4\xe8\x08\xd1\x9d\x1e\x20\xe5\x30\x61\x14\x4d\x35\x3a\xae\x43\xbd\xfb\x1a\xbb\x0d\x11\x8d\xa5\xfe\x3c\x2a\x3e\x5f\x3a\x74\x7b\xea\xbe\xbe\xb8\x2f\xb5\x14\x1c\x0d\xa6\xa6\xdf\x05\xd4\xb4\x17\x29\x6a\xb0\x7e\x75\xdf\xaa\xcf\x9f\x0c\x00\x2f\xe5\xa5\x4b\x81\x17\x94\x97\x88\x2a\xf8\x23\x7a\xc5\x4d\x8c\x22\x11\xbf\x7c\xd9\xc4\x63\x2d\xe9\xab\xd0\xd8\x43\x39\xbc\xe2\x23\xb6\xff\x00\xde\xec\xba\x41\xea\x5e\x64\x42\x44\xd1\x51\x5d\x61\xd1\x39\x8f\xb3\xb7\x73\x0f\xf9\x8e\xb3\xb7\xe0\x0d\x41\x14\x5b\x40\x63\xd4\x00\x68\xaa\x46\x70\x5a\x07\x49\xd7\x0d\x66\x84\x01\x29\x37\xfa\x38\x6c\xa7\x6b\x9f\xab\x61\x24\xb6\x34\xdf\x89\xc6\xef\x1f\x3a\x40\x05\x5d\x9a\x12\x42\xe5\x70\x55\x8e\x06\xe3\x50\x5b\x6b\x52\xa3\xf9\xbd\xba\x1e\x00\xe3\xe1\xef\x57\x4c\xf7\x21\xfa\xa8\x1c\x9d\x6c\x6f\xcf\xcb\xff\xf1\x9e\x7b\x90\xff\xaf\xf4\xd4\x52\x4c\xa1\xa4\x99\x04\xa1\x00\xd5\xe5\x4c\xef\xbb\xb1\x64\x37\x6a\x2d\x89\x28\x4c\x83\x9b\x2c\x9c\xf3\xe3\x70\x15\xa0\xe1\x59\x12\x85\xab\x46\x28\x47\x8d\xd7\x67\x88\x0a\xfe\x55\xda\xf8\x79\x92\xa6\xc9\x75\x29\x49\xa1\x45\x1a\x71\x6d\x0c\x6d\xfc\x2c\xcc\x4c\x91\x8f\x3c\x93\x3c\xf5\xc1\xa9\x34\x5d\x66\xf8\x3a\xcc\xe4\xa8\x51\x2e\xaa\x5a\xf1\x6c\x96\xf1\x00\xbd\x46\x6b\x5a\x96\xd6\x0b\x6e\x5e\x9f\x9d\x06\x68\x1a\xcc\xe7\x41\x96\x35\x8e\x10\x7d\x7d\xa6\x83\xf0\x1d\xa0\xc1\x60\xef\xf8\x78\x4f\x0b\x7c\xbc\x86\xf0\x60\xd0\x38\xa6\x0d\x1b\x53\x89\x6a\xb8\xa2\x90\xa4\x1a\x42\x1b\x75\x19\xd6\xd4\x93\x39\x0c\x90\x51\x15\x6b\x44\xda\x9c\xb9\x96\x05\x0d\xd0\xbd\x08\x69\x7e\x1e\x3c\x33\x9c\xe8\x68\xb8\x96\x02\x2d\x9f\xb7\x0f\xd2\x78\xda\xf5\xe7\x59\x3c\xe7\xc1\xcd\x64\x29\x97\x29\x0f\x50\x2c\x1a\xf7\x32\x44\x17\x61\x26\x03\x74\x2f\x6b\x84\x97\x09\xa2\x59\x80\xc2\xc6\x84\x5f\x37\xcc\xd1\x89\x68\x96\xa9\x5a\x8a\xf0\x5c\xe5\xd0\x87\x2d\xa2\xf3\x39\x24\x9a\xb3\x17\xd1\x69\x80\x42\xd1\xd0\xe7\xe7\x74\x0a\x69\x53\x3d\xf7\x91\x2a\x06\x4c\x8c\x28\x82\x78\x85\x28\x20\x3a\x00\x68\xfa\x49\x7b\x30\xd0\xc0\x80\x5b\x8e\xe8\x4a\x25\x69\xd1\x9d\xd5\x0a\x52\x54\x20\x43\x6b\xaa\x73\x04\x5f\x38\xf5\x38\xeb\xc1\x07\x0e\x4a\x97\xc1\x4d\x94\x5c\x07\x5d\x1a\x25\xab\xe0\x60\x6d\xf5\x30\xb3\xe0\x37\x4e\x3d\xfc\x24\xf8\xa1\x08\xea\xe2\xbf\x73\x5a\xba\xd6\x83\xbd\x61\xb8\x18\x7d\xee\xf4\xe7\xfd\xcf\x9d\xfe\x5e\xbc\xa6\x33\xc9\x6e\xd6\x74\x29\x4b\x32\x6b\x0b\x59\xb2\xc0\x5a\x91\x37\x2f\x24\xf2\xce\x11\x45\x6d\x44\x02\x5f\x5b\x56\x62\x27\x3b\x6a\x8d\x11\xec\xcc\xe4\x50\x8e\xb6\x68\xdf\xf0\x66\x13\xac\x4d\x19\x4d\x73\x22\xd3\xd5\x8d\x60\xa1\xec\x9c\x87\x17\x17\xa9\xe7\x8d\xc2\x0a\x6e\x39\xbd\x0f\x67\x02\x79\x12\x0b\x35\xc2\xd1\x72\xc6\x1b\x3f\xba\x3a\x7e\x44\x0a\xad\x05\x2b\xa4\x9d\x71\x12\x71\x86\x06\x27\xc7\xef\x5f\x3f\x3b\x7f\x73\x72\x76\xfe\xfc\xe4\xfd\x9b\x63\x44\xf9\x1a\x13\x1a\x49\x2c\xac\xf9\xf8\x94\xdc\x58\x0d\x12\x68\xb4\xa7\xd6\x2b\xfd\xa7\xc2\x42\xe0\x11\x63\xc1\x42\xf0\x8c\x01\x76\x22\xa7\x3a\x1b\xe9\x87\x92\x89\xe0\x9f\xeb\x1b\x69\x32\xbc\x81\x5a\xbc\x85\xc0\x4a\xf1\x24\x59\x8a\xa8\xd3\x38\x8e\xa3\xc6\x2a\x59\x36\x26\x49\x0a\xee\x0e\x92\x06\x78\xfc\x8f\x65\x1f\x11\x42\xed\xb0\x79\x12\x80\xb2\x64\x3b\x0c\xac\x27\x3b\x59\xc4\xb1\xd4\xb6\x22\x54\x11\xc6\x8d\x22\xe9\x4c\x0e\xf9\x88\xbc\xc1\x48\xb7\x5c\x37\xe4\xe4\x8a\xa7\x69\x1c\x71\x44\x41\xfd\x5f\x2b\x4b\x9a\xb7\x42\x9d\x03\xeb\xeb\xf4\x4d\x38\xe7\xb4\xa1\xad\x1d\x13\xd5\x3c\xe3\x01\x2e\x14\x0d\xfe\x35\xce\x64\x2c\x2e\x1b\xe6\xe2\xb5\x50\xfc\x7a\x6a\xa1\x68\xe3\x5b\x8d\x44\xcc\x56\x8d\x0b\xde\x58\x66\x3c\x52\xfd\x6f\x80\xb1\x0d\x05\x30\x04\x3b\x1f\xba\x68\xe3\x94\xf3\xc6\x54\xca\x45\xb0\xb7\xa7\x2b\xf8\x2b\xeb\x8c\x93\xf9\xde\xe5\x32\x8e\x78\xb6\xf7\x7f\xf6\x8c\xfa\x56\xb6\xa7\x2b\x6e\xeb\x72\x7b\x00\x72\x9e\xa4\xbc\x11\x8b\x49\xd2\x01\x37\x38\x30\x16\x9d\x73\xdd\x10\xf7\xaa\x6b\x1d\xee\x6a\x6f\xa6\xba\xe1\xc4\xc5\xab\x75\x53\x4a\x1a\x91\xb4\x26\xb2\x04\xb5\x50\x98\xc6\x82\xa9\x2d\x54\x86\xed\x1e\x89\x97\x1b\x60\xf2\x1c\x6f\x46\xb2\xe1\x88\xd0\xcd\x68\x63\x9e\xde\xd8\xf1\xd7\xd5\x07\x72\xad\x35\x88\x0f\x53\x85\x13\xe9\x48\x6f\x0b\xf0\x11\x6c\xb8\x53\xfc\x0c\x83\x06\xad\x02\xcb\x47\xcd\x26\xfc\xd4\x3b\x41\x50\x4b\xae\x03\x06\x8e\xc0\x82\x99\x9a\x42\xb8\xbd\x35\xa1\xaa\xca\x59\xf8\x46\x7f\x08\xe2\x68\xf9\x65\x1e\x76\x93\xf7\xfa\xa6\x8e\x08\x83\xb1\x79\x9f\x7a\xb5\x83\xe4\x6c\x25\x8e\xd0\x1d\x27\x42\x15\x02\x88\x9d\x04\x73\xa2\x7d\xf1\xaa\x21\x2e\xd4\xa1\xe5\x21\xc8\xdd\xae\xab\x62\x7c\xbe\x0a\xb2\x65\x24\xb0\xee\x61\x5c\x88\xdd\x12\xe3\x66\x17\x27\x4c\x1d\x99\xc3\x78\xe4\x7c\xc6\xb4\x91\xf3\x8e\x4d\x85\x9a\x55\x9d\xa1\xd5\x1b\x11\xd2\x17\x5e\x2e\x60\x7d\x1c\xca\x27\xdd\x43\x68\x5b\xaa\xda\x96\x78\xcf\x2f\x86\xae\x54\xf0\x9c\x0b\x3c\xd5\x1d\xd1\x6c\x0a\xab\x44\xcb\x64\xb3\xf9\x0d\x27\x54\x28\x6c\xe4\x09\x93\xed\x1e\x01\xaf\x50\x87\xb2\xdd\x5e\xc7\xad\xd6\xda\x0d\xc4\xba\xa4\x34\x36\x97\xbe\xd2\x93\x1a\x39\xc7\xec\x6b\x36\xdb\xfb\x8c\x81\xb6\xbe\xd3\xab\x07\x9d\x21\x31\x1c\xf0\xd1\xe3\x6e\x9e\xc3\xc7\x93\x5e\xaf\x3f\xe0\x81\x18\x5e\xf2\xd1\xe3\x9e\x8a\xbc\xe4\xa3\x27\xff\xe6\x58\x0c\xe7\x6a\x4e\x55\x1e\xd2\xbf\x54\x39\xae\x6c\xb1\x2b\x3e\x7a\xb2\xff\x40\x91\x80\x8c\x31\x08\x36\x9b\xb8\xbb\xa3\xbe\x57\x6a\x41\xeb\xcf\xa3\xe2\xf3\x5a\xc1\xb8\x52\x30\x56\x16\xc6\x8a\x8f\x9e\x3c\xfc\xb9\xbf\x52\x91\x47\x36\xf2\x48\x47\x1e\xa9\xc8\x6b\x1b\x79\xcd\x47\x4f\x7e\xfe\xf9\xe7\xfe\x35\x0f\xda\x3d\x0a\xfd\x39\xb7\x1d\x3a\xb6\x2f\x7d\xaa\x67\x8f\xe7\x3c\xcf\xe5\x93\x4b\xae\x75\xa3\x2e\x01\xaf\xf7\x73\x2b\x64\x2b\x6b\x36\xc1\x13\x98\x84\x3c\xdf\x6a\xf3\x80\x45\x01\x2f\xd7\xb9\xcd\x65\x33\x31\x59\x12\xca\x18\xc8\x8a\xdb\x45\x2b\x98\xc1\xad\xd6\x5d\x5f\x06\x9e\x36\xee\xa5\x3f\x6b\xd6\x9f\x3a\x1b\x8e\x8c\xfc\xca\x79\xa4\x97\x65\x52\x63\x46\xd4\x3d\x12\xa7\xda\x03\x4b\x21\xfa\xdc\x39\x5f\x66\xfc\xfd\xd9\xd3\xfe\x70\xf3\xe1\x99\xda\xa8\x81\x11\xdb\x94\xee\x21\x58\x82\xfe\x99\x2e\x53\x2d\x50\xca\x6d\xb2\xaa\xf5\x47\x79\xe7\xfc\x5a\xab\x3b\x83\x81\x88\x50\xad\x99\x52\x78\xa0\xc2\x5b\x14\x76\xac\xfb\xf8\x43\x77\xe0\x82\x88\xcd\xf9\x35\xe9\xbc\x78\x61\xb5\xa9\x65\xe7\x43\xf1\xf9\x8c\xc4\xac\x47\x43\xf6\x80\x0a\x36\x50\x67\xeb\x8b\x17\x14\xaa\x51\x2b\xf4\x0f\x8e\x9f\x4a\x4c\x68\x8f\x3e\x20\xf0\x06\xab\x8e\x7d\xc8\xf5\x81\xf6\x08\xc5\x38\xd1\xa1\x67\xb4\x47\x88\x5a\xe1\xc9\x93\x47\x6a\x81\x8c\xd9\x4e\xd7\xb8\xda\x8e\xfd\xb3\x47\xe1\x5f\x9d\x28\xb9\x86\x37\x8a\x6a\xec\xea\x50\x3b\x30\xb3\x95\xc6\x34\x24\x87\xa6\x51\x97\x97\x45\xa3\x66\xe5\x96\x5c\xd3\x19\x70\x13\x0b\x57\xef\x51\x5f\x35\x4c\x76\x22\xa2\x16\x79\xf2\xe4\xc0\x35\xc9\x2e\x99\x0e\xef\x43\x0e\xde\x8a\x29\x96\x1d\xae\xf2\xc9\x0e\xf7\x72\x92\x20\x61\xf1\x3a\x55\x7d\x4a\x9f\x7c\xe4\x58\x40\x73\xfa\x35\x6b\x9e\xed\x74\x0d\xd8\x71\x4d\x72\x14\xae\x54\x06\x9c\xb1\xe7\x0a\x88\x13\xa5\xb0\xbd\x61\x5a\x36\x1e\x64\x96\xec\x7e\x63\x59\xf1\xca\x4e\x60\x4d\x14\xaa\xf9\xde\x9e\x0c\x55\xff\xdd\xa8\x24\xea\x3f\xa1\xd8\xcf\xf4\xe4\x84\xe3\x90\xe4\xb9\x36\x82\x54\xc4\xab\x5e\x6e\xd9\xeb\xaa\xef\x54\xb0\xf7\x1c\x87\xb4\x5b\x6a\x95\x69\xf3\x40\xdd\x79\x95\x15\x6f\x97\xa9\x4b\xd0\xeb\xd9\xb2\x5b\xef\x97\x96\xaf\x1c\x81\x3c\xaf\xf9\x66\xc0\x85\x4d\xac\xd7\x12\xc7\x9c\x2d\x25\x97\x4a\xf7\xf7\xe1\x91\xa0\x17\x74\x03\x0b\x0f\xce\x4a\x08\xc0\x71\xd9\xb5\xa1\x55\x29\x74\x54\x0a\x5d\xc3\xc1\xca\x3b\xe7\x86\xf0\xd4\xa6\xd6\x35\x08\xd6\xd5\x42\x64\x0c\x17\x3b\xff\x3d\x0f\x5e\x71\xe2\x8b\x8d\x64\x04\x2c\xd3\xd9\x0c\xd6\x66\x82\x15\x01\x09\x6c\x04\x84\x8a\x29\x94\xdf\xe6\x70\x47\x47\x46\x5a\x65\x60\xb8\x58\x5e\x79\x1b\x45\xda\xdc\x58\xa4\x28\xda\xa9\x1b\x1d\x1a\xd6\x8e\x3d\x2e\xea\x89\x87\xce\xf9\x75\x27\x82\xca\xae\x3b\xd1\x0e\x63\xb1\x9d\xf7\x8a\x39\x17\x50\xc8\x86\x37\x81\x2b\xc9\xf6\xfe\xf5\x39\xdb\xc5\xb8\x1f\x68\xe5\xac\x9b\x83\x75\x0e\x7a\x64\xa4\x8d\xfb\xc1\xe7\xe8\x73\xd4\x56\xff\xf2\x0f\xe6\x53\x7f\xe4\x5a\x67\x0c\x7e\x08\xc1\xfd\x00\x9f\xe5\x0d\x82\xad\x6e\x57\xe5\x77\xd8\xa1\xa3\xcf\x51\x8b\xf4\xe1\x0f\x0f\x3f\xb7\x3e\x6f\xe8\x81\xe5\x9f\xb3\xdd\x4f\x2a\xfd\x87\x3d\xba\xba\xa5\x55\xa6\x51\x45\x9b\xee\xd6\xa4\xf2\xcf\xdf\x6d\xd0\x91\xdc\xa6\xbd\x46\xaf\x25\x1b\x5a\x45\x95\xf6\x60\xd0\x3e\x3e\x46\x74\xcf\x35\xba\xed\x06\x70\x6f\x64\xf4\x59\x5c\x26\xe8\x4f\x25\xc3\x8b\x17\x2f\x5e\xb4\x87\x1f\x46\x1f\x3e\xb4\x9f\xb9\x2c\x76\xe8\x2b\x39\xca\xe9\x7b\x74\xa7\xe7\xaa\x38\x2e\x55\x70\x73\x7f\xed\xd7\x5e\xaa\xda\x2f\xf6\xf1\xe3\x60\xe0\x37\xbf\xd7\x2d\xca\x99\x94\xcf\xd1\xcd\x4f\x6b\xd7\x0e\x68\x86\x6b\xe7\x87\xa2\x26\x97\xe8\xa7\xed\xaf\xfd\xca\x5c\x13\x1f\xad\xf7\x46\x23\xfa\x0d\x86\xf1\xe5\x4b\xcd\x84\xe9\x9c\x9e\x9e\x9e\x42\xf2\xe7\x28\x70\xff\x3e\x77\x3e\x47\x2d\x80\x6f\xf3\xd1\xda\x7c\xb4\x9a\x6d\x23\x47\x91\xea\x27\x99\xd8\xf9\xbc\xdc\x00\xf7\xe7\x55\xaf\xf2\xd0\x9a\x3c\xb4\x9c\xa5\x92\xea\x52\xbc\x78\x13\x67\x62\xd4\x50\x9c\xc3\xea\xdf\xeb\xab\x43\xf5\x33\xc6\x9f\xdb\x7d\xb5\x54\xf7\x62\x4f\x31\x4c\xd6\xa2\x01\x60\x2d\x85\x8e\xd9\x95\xd4\x7e\x36\x33\x92\xe7\x2b\xf7\xad\x50\x84\xb1\x46\x86\xe0\x4c\x88\xb3\x04\x2c\x12\x81\x8a\xef\xb5\xac\xea\xf8\xc6\x13\x7c\xad\x68\xfe\x61\x6f\xa4\x21\x8c\x87\x0a\x5b\xbf\x49\x98\x8e\xee\x8e\x68\xca\x76\x7a\x3b\xcc\x84\xf7\x47\x85\x3f\x59\x7d\x7e\x27\xc4\xb3\x0d\x87\x3d\x23\x4b\x3b\x3d\xdd\x98\xe1\xfd\x91\xa5\x19\x54\x1b\xbe\xd5\xb5\xe1\x5b\xa5\x0d\xf7\x55\x1b\x62\x86\xc7\xc3\xfd\x51\x9e\xa3\x06\x22\xad\x6f\xa6\x3d\xd5\xfa\xe3\x5b\xea\x07\x17\xb3\xa9\xb5\x32\x73\x5b\x4e\xdd\xd2\x07\x23\x6d\x5a\xf2\x48\xda\x86\x3c\x18\x91\xdb\x4a\x85\x0c\x7d\x42\x6b\xb0\x5b\x94\xb4\x70\x9c\xe7\x08\x91\x16\x0e\xe1\x97\x3e\x93\x4e\x54\xb1\x54\x4c\x9b\xe2\x50\xd3\xaf\x8e\xaf\x41\x22\xf2\xb3\x25\xcf\x3f\xf0\x28\x3f\x9b\x2e\xf3\xe7\x69\x9c\x9f\x86\x32\x3f\x5d\x0a\x42\xfb\x9f\x33\xd2\xc7\x86\xff\x47\x3e\x67\xf8\xd7\x50\xe4\xcf\xf9\x45\x3e\x08\xd3\xfc\x68\x91\xe6\x83\x70\x95\xff\xba\x14\xf9\xaf\xcb\x59\x7e\xb4\xbc\xcc\x4f\xf9\x22\x3f\x19\xcb\xfc\x4d\x72\x95\x1f\xf3\xb1\x2a\xa2\xf6\x24\x7d\xb0\xd6\x9f\x9f\x23\x12\xe8\x1f\x75\xbc\xe9\x2f\xd2\xff\x9c\xa9\x96\xbc\x3f\xcb\x5f\x0c\xce\xf2\xe1\xb3\xa7\x83\xb7\xa3\xe1\xe9\xf1\xe8\x8c\xe4\x78\xf8\xe9\xdb\x48\xfd\xe8\xb3\xe2\xc1\x9a\x90\x1f\xf6\x8a\x25\xfa\xb5\x58\xa2\x15\x85\x34\x27\x72\xf9\x98\x3d\xf8\xb9\xbf\xcf\xef\xb7\x64\x20\x41\xd7\x10\x54\xce\x54\x08\xc6\xe1\x8d\x64\x37\xef\xcf\x82\x2e\x7d\x31\x50\xff\x9f\x1d\x9f\x05\xed\xfd\x07\x5d\xfa\xec\xf4\x2c\x68\xdf\xef\x76\xe9\xd3\x63\xfb\x01\x31\x07\x5d\x3a\x38\xb6\x1f\x2a\xe6\xc1\x7e\x97\xbe\x3d\xb6\x1f\x10\xf3\x53\xd7\xe3\xeb\xbd\xf6\x9a\x78\x66\xe6\x55\x4d\x87\xa7\x52\x8b\x87\xff\x22\xa3\xdd\xcf\x24\x1f\x7e\x16\x9f\x25\xe8\xb6\x36\x7c\x9d\x5b\xfc\x39\xfb\x9c\xb5\xc8\x46\xfc\xbf\x54\xfc\xee\x5e\x45\x41\x57\xc5\x69\x17\x13\xb0\xaa\x6a\xac\x83\x16\xe2\xb7\xd6\x78\xf3\x10\x06\x92\x7e\x70\x4a\x54\x58\x12\xea\x06\x54\xa8\x01\x2d\x82\x69\x39\x98\xa8\x60\xa1\xfe\xde\x6c\x9a\x57\x77\x97\x21\x56\x19\x08\x0d\xd7\x58\x0e\x1f\x8c\xa8\x1c\xde\xd7\x86\x0b\xa8\x1c\x3e\x54\xff\x0e\xd4\xbf\x47\x23\x2d\x4a\x54\x7d\x63\xb0\x46\x38\xf3\xfc\xf7\xa2\x71\x9c\x28\x2a\xd6\xd2\x55\x52\x9d\x12\x85\x39\x04\x87\x1c\xe5\x39\x86\xa7\x92\x4d\xb4\x84\x0a\x7f\x3f\x50\xb5\x53\x31\x00\x00\xe7\x2b\xba\xca\x43\x85\x0f\x31\x41\x8d\x11\xaf\x6a\xbb\x62\xd5\x0a\xab\xec\x26\x87\x7c\xa4\xc7\xda\x1a\x79\x32\xae\xcb\x2b\x43\x98\xb0\xf4\x5e\xaf\x6b\xad\x14\xe1\xb4\x9d\x90\xbd\x5e\xb7\xbb\x7b\xd0\x6d\x25\xaa\x05\x3f\xa9\x2e\xfc\x0c\x9d\xe9\x8e\x0c\xb2\xf8\x9e\xfb\xd8\xa1\x6a\x94\x4e\xf8\x3b\x78\x1e\x9c\xc4\xc6\xa6\x20\xdb\xe9\xd6\x9d\x09\x85\xda\xa3\x34\xc6\x04\xd5\xa9\xb2\xc3\x58\xda\x79\x75\x7a\x72\xfe\xd3\x41\xb7\x47\xfc\xc8\x77\xcf\x9f\x9e\x2b\x70\xe4\x06\xc6\x69\x38\xd2\x95\x80\xfd\x3f\xeb\xe0\xd3\x27\x95\x11\x6a\x99\x7b\xc3\xf9\x8e\x98\x19\xb3\x54\x09\x7b\x0e\x70\xa9\x23\xde\x88\xb3\x0f\x91\xe7\xc3\x91\xc1\xf7\x13\xdf\x3f\x61\x0c\xc8\x3d\xc5\x82\xe1\xcc\x64\x5e\x72\x1c\xab\xe9\x53\x45\xc8\xb0\x0b\x96\x6f\x70\xc8\xb2\xe2\xf9\x29\x73\x0b\x48\x10\xc7\x29\x7a\xd2\x6d\x36\xa1\xe9\x9e\x25\x48\xbd\x80\x43\x42\x33\x55\x1c\xd8\x42\x7e\xd9\x96\x70\xa6\xb5\x66\x2d\x56\x04\x5e\x0d\xe3\x51\x1f\x8b\xbe\x3f\x12\xbd\xc0\x03\x6e\x0c\x0b\x5a\x01\x94\x0b\xd5\x62\x58\x72\x81\x67\xa4\x70\x47\x94\x1a\x54\x2e\x73\x08\x29\x25\xdb\x85\x6c\xdc\x9e\xd1\xec\xbb\xbd\xc9\x88\x23\x44\x1e\xb3\xde\x7e\xb3\xb9\xd3\xb5\xbc\x26\xf3\x96\x08\x28\x3d\x64\x50\x50\xb0\x9f\xc4\xac\x1b\x18\x88\xac\x98\x8f\x04\xca\xc7\x72\xcf\x4c\x96\xe2\x55\xb7\x78\xe1\x2d\x08\xa1\xda\x87\xc4\xc3\x92\xfd\x4e\xd1\x97\x81\x25\x6e\x2c\x00\xd5\x92\x7e\x39\x08\xda\x36\x2e\x63\x9c\xbd\x1d\xf4\x31\x4e\xcd\xa7\xb6\xb4\x23\x1f\xab\xde\x62\xd9\x62\xbd\x7d\x42\xd3\x3c\xef\xed\x2b\x62\x26\xcf\x15\x42\x40\xa8\x24\x81\x5c\x17\x06\xf3\x5c\x23\xa9\xd7\x72\x42\x81\xff\x43\xe7\xc5\x8d\x0a\xc7\xba\xe6\x4e\x03\x9e\xe4\xe9\xfa\x4a\xdf\x85\xcc\xb9\xf6\x20\x73\x3e\xf1\xb8\x3e\xc6\x34\x9f\xfb\xca\xf3\x0b\x20\xb9\x67\x9a\x9e\x63\xd0\x3a\x67\x75\x52\x34\x9b\x48\x4b\xb0\x5d\xe0\x1b\xcf\x06\x69\x77\x4d\x82\x3a\x15\x29\x4d\xca\xc5\x4c\x7a\xcc\x90\x45\xca\x17\x56\xf9\x89\xae\xb0\x24\x7d\x75\x7a\x5e\xe1\x39\x28\x50\x05\x78\x0c\xde\xc3\xd5\x71\x23\x83\x04\x0b\xd2\xdf\xca\x08\x52\xc7\x9c\xa1\x76\x27\x76\xe1\x5b\xce\x32\xe0\x7b\xbe\xc1\x4e\x75\xd4\x5a\xb4\xa5\x6a\xd1\xcf\x6c\xfd\xee\x61\xf2\xd8\x83\x75\x98\xc0\xe6\x56\x08\xe3\x40\x9b\xd3\x2a\x48\x5c\x4d\x11\xab\xa9\xb4\xdf\x45\x2c\xa1\x52\x21\x41\x0a\xd2\x30\x19\x29\xd4\x47\x12\x3a\xd5\x36\x1d\xe2\x16\x18\x49\x2c\xef\x1a\x1a\xb7\x58\xaf\xbb\xab\x2d\x68\x6e\x5a\xfd\xa4\x90\x00\xae\xcd\x59\x4c\x0d\xaa\x97\xe6\x79\xfc\x38\xd5\x66\x22\xd4\xb4\x4a\x42\x0e\x17\x98\x53\x91\xe7\x12\x38\x2a\x81\xe8\xc3\xf1\xb9\xa9\x82\x0c\x2b\xe1\x30\x74\xc3\xbc\xc1\x14\x0c\xc6\x9b\x69\xce\x36\xae\x4a\xaf\x99\xe9\xcd\x59\x62\xe7\x1e\x86\xa1\xc5\x98\x61\xe5\x60\x58\xa3\xda\x88\x62\x71\xee\xab\x4d\xae\x5f\x03\x8a\x38\xfa\xfa\xce\x39\x53\x63\x79\xfd\x79\x9a\xcc\x61\x4d\x3e\x0f\x67\xb3\x8b\x10\xbc\x15\x58\xbd\xf2\xa2\x33\x2d\x75\xc1\xea\x51\x4a\x54\x57\x81\xdf\xc0\x66\x58\x16\x27\x47\x9d\x64\xfd\xa6\x99\x01\xd8\x8a\x24\x88\x15\x10\xbf\x40\xc1\x89\xd5\x43\xf1\xc1\x0c\x82\xa9\x67\x28\x35\x4b\xcc\x68\x1f\x53\xd9\x89\xc2\x55\x9e\x4b\x50\xf7\xa3\x12\xa4\x80\x54\x22\x5c\x9e\x54\x1a\x91\x1f\x88\x99\xcd\x62\x1d\x1a\xd5\xbb\xcb\x6c\x36\xb7\xb4\x72\x0d\xdd\xcd\x6a\x66\x96\x04\xb7\x8d\x1e\x70\xe7\xa6\xd8\x9a\xf2\x8c\x80\x55\x45\xc0\xa2\x7d\xa1\x86\x5f\x18\x44\xb6\x2a\x5c\xcc\xf9\x6b\xdf\x01\x26\x7e\xb3\x09\x94\x93\xc8\x73\x9c\x32\x41\x85\x3b\xc5\x71\x0c\xbe\x24\x2a\xa3\x67\x0c\xb4\x5d\x72\xe9\x19\x8a\x7e\x13\xce\x79\xe6\xd0\x9a\xc2\x3e\x5e\x4d\x2e\xb5\xfd\xcd\x2e\xf6\xd4\xee\xb5\x01\x34\x40\x1d\xca\x26\xa8\x0b\x6b\x01\x3b\x3d\xd7\xec\x35\x74\x3a\x81\xe6\x75\x3d\x03\x17\x60\x34\xda\xb5\x3f\xdb\x34\xf7\xba\xa3\xae\x77\x7b\x2c\x64\xd6\xb6\x6a\xa8\x22\x67\x4c\x40\x09\xc6\xd5\xcf\x84\x49\xf5\x63\x2c\xb7\xa6\xb4\x9e\x61\x0f\x47\x23\x9c\xe4\x9e\xf6\x96\xcf\x2d\x93\x9d\x30\x8a\x70\x4f\xab\x67\x14\x29\xae\x89\x72\x8d\x7d\xb3\xeb\x4f\xe5\xad\x16\xad\x7b\x64\xbd\x75\x3d\xb0\x13\xac\x6d\x67\x37\x16\xda\xb5\x4d\xd4\x88\x33\x78\x9e\x8e\x45\x23\x6c\xa4\x7c\x9c\x5c\x8a\xf8\x1b\x8f\x1a\xef\x9e\x3f\x55\x28\x59\x23\x49\x1b\xaf\x4e\x4f\x1a\x13\x38\x83\xed\x93\x6f\xc3\x39\xcf\x05\x91\x81\x70\x36\xcb\x1a\x0a\x7c\x43\x26\x8d\xbf\x32\xbd\x2c\x09\x6d\x5c\x4f\xe3\xf1\xd4\x56\x90\xf2\x59\x1c\x5e\xcc\x78\x23\x1c\xa7\x49\x96\x35\xc2\xd9\xac\x71\x91\x26\xd7\x19\x4f\xb3\x46\x28\xa2\xc6\x15\x4f\xb3\x38\x11\x59\xa7\xf1\x26\x11\xb6\xfe\x3d\x55\xb9\xda\x55\xa6\x05\x59\x23\x4c\x79\x23\x8a\xb3\x71\xb2\x4c\xc3\x4b\x1e\x41\xd1\xeb\x58\x01\xe3\x0d\xed\x85\x3c\x82\xce\x88\xc6\x72\x31\x4e\xe6\xb1\xb8\x6c\xcc\xc3\xbf\x92\x54\x35\x80\x87\x19\xef\x34\xde\xc2\x6f\x23\xe5\x13\x9e\xaa\x16\xdf\xed\xb1\xf9\xaf\xac\xad\xda\xb1\xf1\xcc\x5c\xf5\x83\xe3\x6f\x4d\x75\x68\xb4\x3c\x0e\x2d\x6a\x58\x15\x5f\x63\xe4\xc4\xa2\xc3\x65\x0f\x40\x05\x46\x5c\x8a\x87\x9d\xf0\x45\xaa\x39\xd4\x6d\xc5\x44\x1d\x31\x6a\x80\xad\xd5\x44\x1e\xd1\x86\xf7\xbe\x3f\x0f\xbf\x82\xb9\x4a\x1e\x46\x9d\x3b\x76\x73\x1e\x8b\xf6\x3c\xfc\xba\x87\x6a\x4c\xee\x3c\xdd\xe2\x11\xe0\xd0\x97\x10\xf5\x4c\x92\x94\xcc\x9c\x80\xb9\x8c\xbe\xfa\x17\xf0\xe0\x02\xc3\x00\x7c\xa8\x74\x46\x35\x77\x7b\x67\x54\x57\xff\x1f\xe9\xcc\x93\xcd\xce\x78\x56\x10\x64\xc9\x62\x94\xc2\x72\xe0\x31\xd1\x19\x01\x4f\x80\xcc\xd4\xcf\x94\xf0\x45\x77\x64\x05\xff\x79\x2a\xb1\xb1\xc8\x09\x39\x68\xca\x7a\x87\xe9\x63\x59\x98\x1b\x49\x89\x1c\xa6\xa3\x92\x01\x18\x15\x31\xe4\x23\x2c\xd4\x51\x2f\xc0\x14\xaf\x67\xe9\x52\xb5\xe6\x17\xc9\x86\xd6\x0c\xd1\xbf\x97\x61\x2a\xb9\xfa\xb2\xb6\x3c\x8c\xa2\x9f\x56\x02\x33\xc2\xa7\x56\xa6\x0a\xe9\x4b\x0b\x62\xdc\x15\x86\x3c\x0b\xdb\x6f\x3d\x4c\xf5\x03\x3c\x08\x31\x7d\x49\xe6\x79\x17\x1c\xd7\x99\xfa\x54\x30\x61\xe6\xe2\x54\x81\x98\x69\x6d\x2c\x75\x7d\x1a\xb5\x32\x15\x1d\x32\x73\xa9\x76\x69\xc6\xf4\x8d\xaa\xbe\xc7\xcc\x5e\xab\x2a\x34\x63\xf6\x6e\x55\xa1\x25\x2b\x5d\xb0\x79\xde\x35\x62\xf1\x96\x34\xad\x95\x0c\x70\x77\x0a\xbc\xf8\x5a\x75\x87\x5f\x24\x95\xc4\xd9\x76\x06\xe9\x27\x63\xa0\x66\x28\x47\xde\x5d\xe3\x1c\x1c\x80\xf5\x52\xd0\x2a\xfa\xa5\x34\x4b\xea\xb2\x1a\xfe\xa2\xe6\x42\xf3\xe3\x44\x51\x16\x2e\xfa\xe7\xb3\x24\x94\x45\x16\x30\x97\xec\x42\x60\xcd\x79\xa7\x6b\x1d\x1c\xa9\x2b\x4d\x16\xca\x49\xae\xa7\x19\x6b\x2d\x5b\x3d\x7e\x7f\x77\xd6\x3a\xe0\x0f\x76\xc7\xf0\x9d\xed\x1e\x74\x77\x0f\xba\xd6\x88\x76\xb8\xca\x58\x2b\x6c\x3d\xda\x8d\x4b\xfa\xdf\xac\x95\xb4\xee\xef\xa6\xad\xde\xfe\xae\x70\x59\x65\xc8\x6e\xd6\xce\xbe\x05\xd0\x17\x17\xd2\xe9\x21\x5d\x2c\x2f\x2e\x66\x25\x83\x83\xef\xe4\x36\x03\xb9\x6f\x3d\x2d\xe5\x3f\x65\xc5\xfa\x75\xbb\xb7\x0b\x8a\xbb\x69\xb2\x14\x11\x6e\xf7\x76\x39\x09\xbc\x08\x9f\x0e\xfa\xeb\x16\xb1\x7a\xcf\x1c\xd8\x52\x8e\x8d\xe1\x03\xb5\xfe\x50\x0b\x15\x8a\xe8\x5d\xb8\xf4\xdb\x5c\xc5\xb7\x11\xa1\xa2\xf5\x16\xff\xe7\x3f\x98\xef\x1d\x74\x41\x38\x5b\x42\x98\xdf\x3b\xe8\x6a\xb1\xec\xf5\x5f\x12\xa3\x4f\x88\xa2\x00\x11\x0a\xdf\x9f\xc0\x7a\x1d\x08\x3f\x7f\x42\x34\x34\xe6\xba\x3e\x99\x6f\x10\x36\x56\x59\x3e\x7d\xda\x22\xb6\x6c\xf0\x09\xcd\x31\x92\xdf\xe6\xec\xbd\xc4\x21\xa7\x85\x32\xdf\x2b\xc9\xf6\xcc\xc3\x8e\x7e\x12\xda\xbb\xf4\x38\xe8\xef\xfd\x53\x85\x61\x09\x7c\x59\xc3\xae\xe0\xe4\xd0\xf1\x90\x99\x28\xf9\x12\xd2\xbc\x23\x8c\xc5\xd0\xf2\x16\xda\xbd\x11\xb0\x35\x5a\x45\xf9\x57\x6a\xad\x0f\x51\x1b\xa4\xdb\x47\x34\x61\x07\xdd\xdd\x74\xd8\x1b\xb5\xae\x71\x3a\xdc\x2f\x4e\x11\x85\x45\x25\xfd\x6e\x80\x5a\x8a\x74\x48\x87\xdd\x51\x3f\x09\xda\x89\xa7\x89\x5e\x3a\xfa\x12\x0f\xdb\xd1\x26\x2e\xd4\xb1\xa4\x5d\xcb\x62\x42\x13\x86\x57\x80\xa2\x8d\x31\x57\x48\xad\x23\x50\x02\x85\xe1\x10\x8f\x60\x69\x8b\x22\xa0\x46\x0f\x18\x56\x60\xf9\x1d\x02\x2e\xad\x95\x6c\x58\xc0\x10\x20\x4d\x2f\x2c\x4c\x58\xce\x25\x63\x99\xfe\xaa\xec\x3d\xdc\x6d\xfb\x2b\xd0\xb3\x31\xff\x2d\x11\x16\x24\xd9\xeb\x3d\xf4\x20\xfc\x51\xe8\x86\xec\xec\x54\x6f\x0d\x7b\x00\x01\xb1\x09\x7e\x1f\x20\x42\x5b\xe0\x5f\x97\xdb\xba\x79\xd9\x7f\x04\xc6\xfa\xe7\x76\xfe\xb9\x45\xfa\xb8\x1f\xe0\xcf\xd1\x2e\x19\x76\x1a\x23\x60\xa4\xb7\xc8\xe7\x00\x7e\x70\x3f\xb0\x5f\x9f\x3b\x2a\x8b\x7e\x02\x7c\x01\xa5\x75\xe1\xb7\xaa\xf4\xb0\xdd\x1a\xf5\x87\xdd\xf6\xcf\xb4\x33\xda\x25\x1f\x35\xc8\x72\xe4\xa0\x2e\xf2\x43\x5d\xe4\x31\x44\x9e\x6d\x26\xbc\xbc\x33\xdc\x53\xdd\xd0\x62\x8d\xff\x26\x2b\x7e\x1a\xa8\xb6\x13\xa0\xe5\xdb\xf4\x1c\xc1\x61\xd3\x8f\xd9\xcd\x3c\x53\x54\xa1\x7f\x0c\xd2\x28\xd0\xe2\x00\x19\x1d\x40\x1a\x1c\x71\xeb\x20\x33\x46\x08\xd4\xa1\xd6\x07\x43\x1d\x3c\x88\x3b\xa5\x03\x94\x93\x00\x87\xec\xa3\xa5\x78\x09\x51\x4b\x15\xb5\xd5\x32\x0f\x87\xbd\x51\xbf\xdd\x0b\x7a\x34\x66\x37\xab\xa0\x4b\xa3\xe0\x1a\x83\x30\x01\xd9\x15\x74\x0a\x81\x2b\x1d\x98\x43\x60\xa5\x03\x19\x04\x8e\x4c\x8a\x0a\xfd\x29\xb1\x3a\x99\xe1\x65\x9f\x90\x5d\xb1\x86\x4a\x5f\xdc\xa1\xd2\xdf\x25\x0e\x87\xfb\x23\x2a\x08\x1d\xe8\xc0\x7d\x08\x5c\xeb\xc0\x03\x08\x44\x3a\xf0\x10\x02\x53\x1d\x38\x80\xc0\x5c\x07\x1e\x41\x20\xd3\x81\x9f\x54\x60\xad\xf9\x5d\x8c\xc5\x6a\x44\xd7\xc1\xa6\xad\xf9\xb8\xd9\xc4\xda\x8b\x9b\x42\xbf\xf2\x1c\xc9\x04\xbe\x48\xd9\x34\x71\x8d\x68\x6d\x69\x1b\x94\x4d\xfd\xbe\x94\xda\x53\x9f\xca\xf3\x0b\x9f\x24\x29\x07\x36\x12\xfb\x41\xcf\x7f\x80\x31\x7c\x83\xdf\xb5\xf2\x3c\xb5\x45\x29\x4c\x85\xb1\xf3\x02\x09\xf0\x05\x9b\xfd\xc6\xcf\x14\x74\xad\x70\x76\x77\xbd\xc6\x4f\x25\x8e\xc1\x29\x18\xa1\xf0\x29\x13\xa2\x88\x58\x76\xb3\x26\x9d\x79\xc6\x92\x32\xfc\xb8\x33\x50\x51\x06\x72\x0a\xa8\xfd\x5b\x89\x63\x42\x61\x1d\x36\x9b\x4b\xcc\x29\x32\xb7\x24\xb8\x23\x4a\x37\x79\x72\x84\x7a\x02\xbd\xbf\x97\xce\x71\x4b\xef\x1b\x34\xa0\x10\xcd\xa6\x88\xa2\x0e\x72\x04\x23\xb6\xd6\xfd\xfa\xdd\x40\x90\x5d\xef\x5a\xfd\xa1\x04\xcf\x51\xed\x0d\x37\x32\xd2\x9a\x92\x6b\xf3\xc2\xa8\xdc\xfe\x2e\x96\xd6\xf8\x85\x33\x0d\x48\xb9\x3d\x9b\x81\x20\xb5\x10\xc0\xca\x5b\x27\xce\x8e\x26\x92\xa7\xc0\x06\x6b\xbb\xd1\xa6\xe5\xf9\x60\x2d\xd9\x6e\xdd\x02\xc5\x77\x4a\xf1\xab\xdc\x62\x7d\xd1\x69\xd8\x97\xb9\xb8\xc0\x32\x83\x51\x68\xa5\x0a\xc3\x7d\x83\x25\x2d\x68\x07\xd4\x92\x2d\x84\x17\x3c\x8d\x93\x88\x36\xb4\xef\x2e\x52\xa6\x26\x1c\xe5\x57\x10\x15\xae\xa0\x2e\x40\x1b\x1a\x00\xe9\xfc\x0d\x29\xe4\x30\x8a\xda\xb1\xb8\xe2\xa9\xe4\x51\x1b\x1c\xbb\xd7\x88\x22\x27\xc0\x33\x49\x69\xca\x12\x42\x3f\x19\x83\x10\xbf\x49\xb5\xdf\x37\x78\x71\xa2\xdf\x12\x81\x1a\x05\xeb\x03\xc5\x33\x20\xf2\xc9\x12\xfa\xd6\x40\x0b\x93\x95\x33\x30\x64\x7f\x4a\x2c\xf5\x31\x48\x68\x66\x42\x66\x05\x1f\x96\x76\x25\x4e\x8c\xdc\x52\x92\xe7\x09\xcd\x9a\x4d\x30\xa7\x05\xb6\x2a\xad\x85\xa8\x56\xb6\x2b\x08\x0d\x9b\x4d\xb0\x3a\x89\x8e\x41\xd1\xe3\x59\xf1\x4d\x5a\xa1\xca\x10\x17\xf2\x42\x70\x2d\xf3\xf2\xb5\x1c\xab\x3c\x49\xb3\x59\xb9\x9b\x39\x0d\xf3\x3c\x23\x64\xfd\x9b\xec\x4c\x04\x7b\xeb\x79\x4a\xa0\xbf\x39\x7f\x4d\x35\x76\xc8\x7f\x93\xc0\xf7\xd5\x97\x24\x17\xec\x57\x89\x7b\x14\x85\x11\xf0\x4f\x20\xd8\xee\x51\x94\x2d\x2f\x64\x1a\x8e\xa5\x6f\x8d\x40\x94\x9c\x1c\xd6\x6f\x83\x16\xae\xd9\x32\x44\xfb\x6b\xf7\x17\xb6\xa1\x9c\x32\x67\xfc\xbb\x8d\x45\x0b\xcb\x76\xfa\xb8\xdb\xd7\xe6\x28\x71\xda\xae\x94\x51\xed\xb2\xa5\x48\x60\x72\x55\xf2\xb4\xbc\x3c\xed\x94\x10\x92\xe7\x9e\x6f\x80\xd4\xb3\x45\xe9\xbd\xe6\x6b\x4f\x76\x7d\x1f\x69\xd7\x82\xd4\x41\x21\x65\x09\x32\xd9\x40\x76\xfa\xa8\xbd\xb5\x5c\xba\x4e\xad\x73\x42\xc3\x70\xf7\x64\x7f\xce\xac\x5c\xca\x27\x44\x2b\xd9\xde\xcb\x71\x6d\xce\xe1\xa7\x91\x76\x2f\x98\x88\x12\x91\x3f\x0b\xc5\x25\xde\xd8\x99\xaf\x34\x61\x4f\xcb\x7b\xd3\xd7\x92\x6d\xc8\xa4\x01\x1a\x13\x53\xde\x50\x30\x96\xe1\x25\x37\x1a\x06\xcb\x54\xfb\x39\x6f\xbc\xdf\x2c\x8c\x7d\x25\x06\x5b\x2e\xab\xb2\x6d\xb6\x0c\xa4\x5f\x7f\xe0\xc5\x18\x0b\x1c\x6e\x4e\xc2\xaa\x9a\xac\x19\x5b\x20\xba\x33\xc1\x7a\xfc\x3e\x1d\x0b\x85\x55\x67\x82\xce\xe0\x63\x2c\xe8\x52\xb0\xfb\x0f\xbb\x07\xf7\xf7\x7f\xda\x9d\x79\x1e\x18\x17\x25\x5b\x25\x98\xdf\x93\x2d\x49\xee\x79\x27\xfe\xa4\xf2\xa0\x5d\x32\xb3\xb5\x69\x63\x8b\xb4\x97\x22\x28\xdb\xcb\xf2\x70\x6b\x4f\x41\xe6\x36\xb0\xd6\x28\x55\x05\x6c\x11\x0d\x51\x9e\xda\x8a\xb0\x04\x5b\x97\x0e\x39\xb5\xac\xd7\x11\xed\x96\xdc\x04\x5e\x88\x0d\x8b\x53\xe5\x43\x9f\xf7\xff\x30\x36\xeb\x54\x0e\xd8\xa1\x01\x96\x4f\x70\xcc\x3e\x5a\x03\x54\x9a\x8f\x12\x13\x3a\x17\x9e\xcf\xb0\x02\xac\x2f\x2f\xbf\x59\x1d\x2b\x19\xbd\xa2\x21\x7b\xcf\x71\xac\xb9\xfb\x5d\x1a\x7b\x52\xae\x87\x1b\xc6\xa2\xc3\x4d\x0b\x5f\xd4\x33\xdd\x1a\x96\x45\x50\x4d\x1a\x18\x04\x0c\xab\x42\xa8\xea\x90\xd7\xf6\xa3\x2f\x2f\xbf\xa3\x81\x7d\xcd\xf9\x97\x8f\x35\xb6\xaa\x5f\xbc\xf8\x4e\x41\xc3\x5c\x29\x97\x9d\x0a\x8c\x2e\x2f\x55\xa5\xc8\x02\x46\x45\x6c\x4d\xf4\x8b\x17\xaa\x22\xe4\x01\xf3\x12\x36\x53\x8c\xb1\x21\x6d\x7c\x59\x75\xce\x37\x37\x64\x62\x5f\xbc\x28\x2c\x49\x7d\xb4\x56\xb1\x7f\xa9\xe4\x32\x46\x86\x5e\x14\x86\xb2\x2f\x8b\x4f\x55\xb1\xd3\x5f\x56\xad\x76\x01\xdd\xa8\xc2\x80\xb6\xee\x54\x11\x36\xad\x2e\x0c\x6a\x9b\x6e\xeb\x08\xb0\xc9\x63\xc6\xc1\x8e\x87\xe9\xa6\x2e\xf8\x7d\x0b\x55\xfb\x9e\x85\x2a\x03\x4e\x77\x79\xb3\x68\xa2\x8a\x26\xb7\xd9\xd0\x7e\x8f\xd1\xef\x60\xe2\xea\xf7\xc4\xe3\xe0\xc1\x90\x16\xec\xbc\xdf\xf5\x68\xba\x88\x47\xba\x63\xbf\x23\xfa\x87\x56\xc1\xfd\xbd\xc6\x0a\xf7\x80\x8f\xd8\xfd\x5d\xac\xed\xe2\xda\xba\x8e\x11\x1d\xa2\xe3\x63\x6d\x18\xec\x58\x5b\xd5\x92\xdc\xda\x93\x02\xb6\xe0\xb1\xb5\x15\xa5\x42\x3f\xeb\x9a\x8e\x9d\xc6\xb9\x2a\xeb\xa6\xe2\x38\xd9\x66\x8e\x89\xf7\xa5\x91\xe2\xde\x50\x18\xcd\x73\xd9\x39\x4f\x7c\x0d\xd2\xad\x59\x5f\x73\x11\x73\x21\x9d\xe6\xf7\xb1\x6a\xde\x31\x1a\xd1\x4b\x63\xff\xbc\xa6\x01\x12\x64\xc2\xaf\xb1\x75\x22\xf2\x03\x08\x7b\x58\x86\xcc\x40\x80\xa2\xb0\x46\x7a\x76\xba\xe4\x50\x8d\xc9\xb1\x19\x15\xf5\x7b\x5f\x8d\xcb\xb1\x19\x19\x73\x50\x38\x73\x5b\x26\x08\x39\x9c\x45\x2d\x1b\xf9\xc0\x0e\xd0\x31\xa2\x9c\xbb\xc0\x31\xa2\x2f\x6c\xf3\x8f\x75\x07\xa0\x0b\x75\xfc\xa4\x42\x18\xdf\xb3\x80\x36\x57\x8d\x9b\xcf\xad\xcd\x07\xc3\xbe\xd5\x26\x9b\x2d\x2b\x77\x6e\x6c\x36\x9b\x70\xcf\xb4\x65\xee\xa6\x4d\x95\x87\x69\x83\x86\xcc\x55\x91\x39\x1a\xd1\x15\xd7\xc3\x72\xa9\x87\x65\x60\xf5\x6b\x77\x7a\x30\x32\x99\xaa\x3a\xcb\x6c\xd5\x86\x45\x0c\x55\x3b\xe6\x71\xa6\xab\xb6\xe1\x9e\xb1\x13\x97\xb9\xaa\x55\xf9\xa2\xea\x4c\x15\xc9\xd0\x88\x1e\x99\xaa\xaf\x04\x5d\xe9\xda\x4f\xad\xea\xaf\xaa\x7d\x92\xa4\xf8\x3d\x46\xa7\xdb\xac\x33\xfc\xe7\x3f\xd6\x1c\x83\x43\x94\x31\x48\x4b\x91\xe2\xfc\x3c\x3d\xdd\x7a\x7e\x6e\x2b\x5e\x2a\x7d\x0a\xcb\xa1\x5b\x66\x90\x7b\xc9\xa7\xc6\x91\x40\xcd\xf1\xdc\xeb\xee\x6e\xc2\x2f\xc1\x56\xa5\x1f\x6e\x2d\x7d\x87\xe2\xa7\x88\x1e\x6c\x2b\xcf\xef\xdf\xa1\xfc\x29\xa2\x8f\xb6\x02\x78\x70\x17\x00\xa7\x88\xfe\xb4\x15\xc2\xc3\x3b\x41\x38\x45\xf4\xe7\xad\x20\x0e\xb6\x80\x80\xa5\x5f\x4c\x09\x45\xf3\xcc\x6e\x00\x2f\xb6\x77\xa0\x17\xe0\xa9\xda\x8f\xea\xa4\x84\x80\x0e\x7d\xb4\x21\x1d\x7c\x41\xe8\x95\x60\x7a\x4e\x0f\xaf\x2c\x5b\xf5\x31\xfb\xf9\xf0\x4a\xb4\x18\x3a\x45\x64\xc6\xf1\x95\xa0\x29\xf7\x50\xc4\x23\x77\xe2\x5c\xc3\x89\xa3\x46\x1d\xa3\x6e\x07\xb5\xe0\x25\x3e\x49\x31\xc0\xdc\x02\x30\x02\x80\x47\x42\xef\x82\x6b\xbb\x01\x0b\xb2\xcf\xed\xc2\x6f\xc6\xfe\xdf\xb7\x44\xf0\xa3\x8b\x0b\x63\xf1\xe5\x9b\x1f\xfd\x26\x9c\x73\xa4\x21\x7d\x13\xec\xaa\x20\xba\x8a\xd6\x9e\x97\x64\x12\xd6\xdf\x84\xa2\x4c\x18\x17\xf4\x1b\xe0\x58\x60\x28\xa1\x8e\xf9\xc3\x78\x9e\x83\x66\x54\xc2\x5e\x4a\xac\x5f\x14\xc0\xbd\x5f\x2a\x4f\x26\xd8\x18\x65\x8c\x59\xea\x80\x18\xef\x43\x80\xb2\x25\x24\xcf\x91\x35\x7b\x80\x68\x08\xea\x77\xaf\xb1\x1c\xc6\x23\xd2\x57\xff\x3d\xf4\x4e\x90\x00\xe2\x4b\x58\x99\x7e\x22\xc6\x61\x9e\x6f\xda\xd8\xb1\x15\x62\xfd\xfe\x41\x9f\x4a\x10\xdc\x5b\x43\x8f\x14\xf5\x55\x43\x66\xea\xc7\x7b\x4d\x1c\xa9\x7c\x51\x3c\x99\xd4\xcb\x9b\x59\x69\xa6\x0a\xff\xd7\xf7\x60\xa0\x52\x71\xca\x34\x87\x5c\x81\x24\xf5\xf9\xb2\xeb\x58\xdd\x44\x09\x3b\xe0\x0f\x76\x71\xea\xbf\x69\xb4\xab\x8f\x1c\x84\x4a\xf6\x05\x4b\x42\x6e\xc6\x61\xc6\xf5\xcb\x5e\x10\x33\x61\x6c\x57\x82\x43\x04\x2d\x63\x7e\x08\x19\xf4\x4b\x5f\x29\x87\x9f\x6c\x51\x86\x32\x88\xfb\x7e\x16\xb3\x5d\x82\x98\x41\x3a\xf8\x5c\xe0\xa5\x1c\xe6\x5a\xf1\x73\x1c\xf0\x07\x7e\x0e\x78\x5a\xf4\xd3\xef\x1f\xf0\x87\x7e\x06\xb5\x4c\x8a\xf4\x76\x42\xf6\x7e\x3a\x78\x50\xce\x02\x6f\x95\xe5\x3c\x07\xdd\x07\x3f\xb9\x4c\xd6\x75\xbf\xb6\xe5\xd5\x4e\xd7\xce\x08\x5e\x1c\x1c\xe1\x58\xcf\x27\x17\xd1\xc9\x64\x53\xcb\x52\x4d\x95\xa3\x04\x31\x67\x20\x83\x94\xe7\xa5\xf3\x42\xd1\x88\x79\xbe\x65\xba\x55\xac\xf6\x58\xc1\x3c\xfe\x7f\x3f\x12\xc1\x44\xd8\xf9\xe5\xa5\x39\x93\x4c\x8f\xb7\x33\x2a\x4b\xbb\xb4\x47\xda\xbd\xda\xd9\xa9\x64\xf6\x69\x0e\xb3\x44\x4c\xe0\xde\xfd\xd6\xfd\x0d\x30\x66\x0d\xdc\x06\xa4\xd5\xdb\x28\xa5\xc7\xfb\xb6\x42\x1e\x79\x63\x5a\x61\x64\xa5\x31\x69\x3d\xaa\x40\xb3\x76\x62\xef\x0e\x10\xfb\x24\x0c\x00\x6d\xf7\x36\xe1\xc2\xc2\x31\x5f\x6a\x0d\xde\x15\x7c\xab\xda\x5d\xbd\x44\xa5\x99\x3e\x8f\x95\x45\x65\x8b\xcd\x44\x7b\x21\xb0\x6c\x61\x7f\x72\xbb\x41\x75\x73\xee\x8e\x05\xa1\x33\x51\x1d\x7e\xb3\x3d\xb6\xc0\x1e\x6b\xd8\x74\x5c\x2d\x67\x37\xde\x96\x72\x99\x29\x97\xa9\x72\xeb\x12\x2b\xa2\xe0\xca\xc9\xdb\xed\xc3\xc3\x9e\xd0\x67\x68\x69\x53\xf0\x3c\xc7\xe6\x81\x35\xce\xde\xcb\x31\x26\xfd\x4d\x1e\x50\x50\x89\xd2\xf7\x8b\x64\x2f\xad\xd1\xda\xc3\xad\xe6\xcf\x16\x49\x26\xcd\xd1\x2d\xf5\xc6\x9c\xa4\xc9\x9c\xd5\x5b\x6e\xad\xbc\xaf\xc1\x0b\x62\x49\x38\x03\x2e\x20\xee\x1f\xae\xfd\xdf\x24\xbe\x91\x09\x4c\x10\x55\xa0\x03\xbe\x76\xec\x21\x9f\xab\x43\x48\x67\xba\x9c\x87\x22\xfe\xc6\xf1\x8e\x2c\x71\x7c\x6a\x3d\xee\xd9\xa6\xbe\x49\xae\xeb\x9c\x13\xe9\x3b\x29\x4d\xe6\x5a\x59\x98\xeb\x02\xb2\xfa\x6a\xf2\xdf\xf6\x0c\x7a\x04\x7d\x93\xc9\xff\x64\xcf\x64\x72\x5b\xbf\x64\x52\xea\xd5\x25\x97\x75\x59\x5f\x6b\x8f\x38\xfa\x0c\x55\xb7\x38\x84\x46\x86\x9b\x06\x25\x4d\xc5\x47\xb2\xe6\x02\x8e\xf4\xe5\xeb\x14\xef\x75\x01\xfd\x10\x51\x8b\x7e\xac\xe0\x25\x59\xbf\xf5\x5a\x39\xc0\xea\xa5\x9c\xe7\x3b\xc2\x1b\xc3\x66\x13\x57\x4f\x76\xac\x6f\xd5\xca\x91\xaf\x5b\x5f\x6c\xbb\x27\xde\xa3\x74\xe0\x7d\x6b\xbf\x40\x96\xa3\x6b\x71\x1f\xe9\xbf\x67\x9b\x7e\xe8\xa7\xaf\xff\xeb\x1d\x79\xec\x77\xa4\xd4\x78\xb8\x20\x4b\x4d\xf7\xf3\x16\xdd\x90\xd7\x9c\x6f\x2a\x05\x59\x3b\xc9\x7e\x5f\x68\xcc\x56\xda\x01\xe1\x53\x59\x38\xe2\xdd\xd9\xc1\xd5\xe5\x9f\xf8\x81\xb8\xd2\x4d\x0c\x9d\x4b\x59\x9a\xe7\x08\x13\xa4\x88\xf6\xbe\x01\xa0\x1f\xa9\x12\x85\x20\xda\xe1\x32\x2f\x8c\x2a\x0e\x4a\x13\x2d\xbc\xd0\x73\x65\x4c\x86\xd8\x2f\xa4\xe1\xa8\x28\xdb\xcd\xd3\x70\x5e\x3b\x57\x34\xbd\xeb\x6c\xa5\xff\x13\xb3\x05\x4e\xd2\x8b\xf9\xc2\xc2\x0f\xd2\xef\xae\xbd\xc7\x4c\x34\x9b\xe2\x31\xfb\xce\x3c\x97\x7a\x7d\x92\xd6\xed\xb8\xf2\xb9\xa5\xf2\x41\xbc\x41\xbe\xed\x08\xaa\xa8\x12\xa8\xda\x45\xff\x3d\x58\x66\x86\x3c\x60\x7f\x6c\x79\x1a\x9a\x7a\xf8\xfa\x2c\x14\x97\x2c\x01\xa2\xc5\xbc\x75\xa4\x5e\x40\x1d\x7c\x2c\x84\x88\x79\xf8\x95\x7d\x90\xf0\x15\x0b\xf6\x05\xbe\x16\x61\x9a\xc5\xe2\xf2\xf9\x2c\xbc\xcc\x6a\xea\x01\x17\xd8\xe6\x7c\xd2\xb5\x95\x24\x38\xac\xcd\xa6\xcd\x07\x75\x6d\xcd\xba\xaa\x46\x67\x45\xe7\x8c\x59\x5b\x48\xd6\x92\x69\x46\xe5\xe6\x66\x29\x62\x19\x08\xba\x48\xe3\x24\x8d\xe5\x2a\x38\x1e\x8a\xd1\xda\x93\x27\x06\xfb\xb1\x5b\xf8\x6b\x1d\x5b\xaa\x2d\xdd\xa7\x22\x8d\xe5\x1a\x73\x90\xd6\x23\x46\x76\x4d\x38\x4f\xcf\xad\x16\x81\xc3\x5a\x0c\xd3\x51\x47\xd5\x3d\xc2\xdc\x0b\x14\x2e\x72\x2a\x47\xbc\x8f\x03\x83\x5f\xc9\xd2\xc5\xaf\x07\x4a\x2f\xcb\xff\x17\x11\x6f\x40\xbb\xff\x5b\xa4\xbb\x02\xe2\x0e\x08\x77\xa5\xc4\x7f\x85\x6c\x93\xff\x1f\x10\x6d\xf2\x3f\x81\x64\x93\x3b\x22\xd8\x6d\xf6\x77\xb0\xeb\x3b\xe3\xd6\x1a\xac\x42\xac\xef\x8c\x56\x9b\x22\x99\x20\xff\x0d\x46\x6d\x9f\xa1\x99\x14\x1a\xad\x02\xb7\x33\xac\x56\x82\xd1\xec\x95\xa1\x73\x27\x52\xb8\x5a\x74\xbe\xa4\x38\x08\xc3\xea\x34\xe8\x30\x7c\x5a\x8e\x17\xc4\x7a\x1c\xb0\x91\xc1\xe5\x8c\x6a\xc3\x6d\xb5\x82\x2b\x96\x2c\x70\x75\x1b\xa1\x99\xa2\x09\xaa\x01\x81\x6b\x07\xd8\x50\x0c\xb8\xb3\x57\x6c\xec\x2d\x06\xdc\xb3\x7a\x6b\x25\x70\xb8\x67\xf5\xb6\x24\x9a\x53\x6a\x6d\x86\xc9\xda\x34\x57\xe1\xa1\x5b\x38\x32\x5a\xe9\xa5\x74\x27\x5a\x84\xf5\xd5\xe9\x89\xf6\x35\xcf\xaa\xca\x3c\xf5\xe7\x85\x93\x90\x94\x0c\xb4\x5c\x38\x15\x4c\xf6\x4b\x57\xe3\x52\xd1\x3b\x81\x37\x4a\x0d\x61\xc6\x07\xcc\x53\x99\xef\x27\xe0\x77\xf6\x25\x16\x54\xf6\x4b\x96\x35\x86\x67\x23\xdf\x42\xc4\xf0\xd3\x08\x05\xb7\x65\xf8\x84\x48\xf0\x5a\xbb\x00\x2a\xfc\x12\x79\x1d\x23\x7d\xd3\x3e\x3d\x44\x98\xf8\x89\x98\x04\x5b\x06\xa8\x75\x60\x78\xc4\xfe\x0e\xea\xf1\xfb\x95\xe2\x85\xf8\xd1\x27\x44\x55\x6f\xd0\x27\x44\x48\xe0\xf5\xeb\x3b\xbd\xda\xd6\x27\x83\xe9\x67\x8b\xca\x1a\xdc\x3a\x35\x46\x5e\xc0\x52\x07\x78\x6f\xb7\x61\x2c\x2c\x9f\xc7\x2d\xd4\xd8\xdd\x23\x5a\xb8\x80\x33\x93\x13\x51\xc9\x10\x3a\x34\xc0\x5e\x6b\x31\x4f\x20\x5c\x9d\xd4\xa5\xd7\xf7\xbe\x85\xbf\x94\x63\x14\xd8\x00\x3c\xbb\x7d\x4a\x04\x07\x60\x9f\x0c\x8f\x54\x30\x34\x44\x2d\xde\xfa\x11\xa3\xd1\x8f\xea\x9e\x7c\xec\xfb\x1e\x36\x22\x9e\x66\x49\x18\xff\xc3\x60\x66\x35\x70\xce\x79\x13\x26\x5b\x3f\x0e\x11\x19\xfd\x58\xc7\xae\x14\xad\xb4\x85\x6a\x07\x0e\xb5\x12\xbb\xb2\x7f\x3d\x3d\x79\xb3\xcd\x21\x7f\x21\x5a\x67\x56\x46\x69\x41\x2c\x67\x33\x03\xa3\xba\x35\xca\x50\xec\x82\x37\x14\x23\xe2\x02\x11\xdb\x44\x14\x45\x51\x03\xcc\xc1\x1e\x6b\x73\xb0\xb6\x95\x8d\xe1\x8b\xc1\xd9\xe8\x93\x9d\xe1\xa5\x88\xbf\xd6\xc0\xf7\xdc\x33\x95\x97\xe5\x9e\x5a\x82\x50\xd2\x44\x6d\x6b\x9c\x7f\x2e\xb7\x81\x31\x2a\x3d\x39\xda\x3c\xef\x1a\x46\x2e\x18\x94\x4c\x04\xa0\x76\x1b\xa0\x6e\x62\x50\x76\x35\xab\x88\xea\xbe\x99\xe0\x84\xea\x7e\x9b\xa0\xd1\xdf\x85\xcb\x27\xf0\x2e\x22\xaa\x55\xbd\x4c\x94\x0e\xe8\x23\x4b\x2d\x00\xf6\x86\x6b\xe4\xf4\x35\x0f\x17\x65\x97\xc5\xbe\x53\x6c\x6f\xc1\xe8\x66\xdb\x87\xef\x3a\x0a\xfa\xa2\x22\xd4\x60\xef\x7a\x7b\xb7\xba\x7b\x9f\x6e\xd2\xf4\x85\x31\xb3\xed\x69\x2b\x8b\x50\xbb\xb7\xf6\xbb\xb6\xc2\x14\xb1\x35\xfb\x28\x03\x58\x63\x03\xb8\x06\x7f\x62\xc5\x67\x56\x07\xdf\x0a\x7b\xc0\x4a\x19\xf3\x78\x86\x71\x99\x21\x49\xf6\xee\x1b\xda\x54\x47\xdd\xdf\xc5\xe0\x64\xac\x8c\x79\xe9\x3a\x21\xc8\xde\xc2\x5c\x44\xe1\x2a\x7b\x25\xb4\xe3\xd5\xcd\xc9\xf8\x37\xdf\x8a\xb9\x14\x33\xc3\xcc\x6f\x56\x83\xae\x6f\x8e\x2b\xcc\x0d\x50\x05\x55\x41\x16\xb3\x6a\xc2\x28\xc2\x8f\x54\xeb\x25\x01\x85\x3f\x7f\xf8\x59\xf1\x59\x57\x9b\x15\x85\x01\x5b\x77\xaa\xa2\xbf\x53\x05\x74\xe1\x95\xa8\x2e\x4b\x4f\x7b\x62\x73\x7d\x58\xf8\x1f\xcb\xe3\xc4\x61\x4d\xf1\x8d\xd5\x53\x03\xbe\x1e\x80\x5b\x1e\x0a\x95\x60\x03\x61\x66\x8a\x99\x09\xfb\x1b\xb7\xf7\x8e\x11\xd5\x0a\xac\x93\x68\x59\xc2\xfc\xed\xe1\xe1\x1b\x3d\xf3\xe2\x20\xe2\xb0\x02\x0e\xd7\x13\xa7\x56\x4e\xd3\x33\x5e\xd6\xe7\x81\xf5\x5a\xdd\x47\x5a\x82\xb4\x20\xf4\x30\x67\xb2\xea\x18\x8a\x10\x63\x13\x32\xa8\x28\xf9\x9a\x37\xa1\xd2\x14\x98\xf5\xa8\x26\x93\xb7\x25\x4c\x24\x09\xa4\x9b\xcb\xc8\xc7\x21\xff\xc9\x38\x61\x83\x9b\x03\x83\xbe\x7d\xcb\xe9\x41\xee\x3d\xba\x65\xa1\xd9\xb6\xf9\x0b\xe1\xbf\x68\x9b\xb3\x0a\xe9\x56\xfd\x6d\x93\xe1\x91\xd5\xfd\xcd\xd1\xbe\xf7\x28\xcf\x1f\x15\x53\x04\x03\xcf\xeb\xc7\xba\x74\x31\x83\xef\x18\x37\x38\xf7\x1e\xa9\xee\xb6\x1f\x95\x89\x80\x48\x5b\x85\x79\x64\x96\xb1\x15\xc5\xd8\xdc\xb4\x9e\x3e\x09\xae\xe5\xce\xe8\x57\xd1\x76\x7d\x1a\x50\xa9\xc4\x3c\x80\x79\x6e\x0c\xbf\x37\x11\x0a\x29\x67\xe6\x37\x63\x99\xe5\x6d\x2c\x25\x67\xee\x2b\x63\x97\x42\x33\x2e\x14\xf2\xcd\xdc\x57\xc6\x56\x9a\x2b\x52\x60\xe6\xec\x5b\x45\xce\xfb\x1a\x72\x38\x8c\xaa\xf6\x55\x34\xb1\x9e\x74\x8a\x6b\xfa\x96\x37\xd2\x5b\x57\x42\xad\x03\x5f\x4e\x0a\xb3\xcb\x0c\x73\xa7\x4f\x55\x62\x07\x68\x0b\x1b\x30\x09\xe1\x45\x86\x39\x79\xdc\x3b\xd0\x76\x51\x30\xdf\x65\x07\xce\xb8\xd3\x8e\x77\x6c\x34\x9b\x12\x84\xa3\x9f\x4b\xc3\xdf\xa1\x7e\x37\x98\x59\x3f\x46\x2d\x7c\xa7\x6b\xac\x4a\x24\x06\x15\x54\x73\x91\x68\x29\x9b\x58\xd1\x14\xcd\x26\xde\x91\x86\x93\x75\xae\x05\x51\x5f\x89\xb7\x69\x72\x99\xf2\x2c\xeb\x7b\xb2\xe0\xbc\x1d\xeb\x62\x60\x45\x28\xa8\x2f\x90\xe7\xb8\x3e\x41\x35\xe4\x36\x5a\xb4\xa6\x04\x58\x02\x30\x94\x6a\x09\xdb\xd2\x87\x67\x1c\xd8\x01\x58\x9b\xc9\xde\xfa\x1a\x50\xa0\xd6\x5d\xfb\x22\x00\xdb\x6b\x6b\x01\x3b\xd0\xb8\xa6\x78\x79\x78\x7b\x94\x9b\x81\xb5\x84\x34\xb6\xcd\x82\xd1\xf2\x28\x6d\x87\xbf\x57\x48\x0c\x63\x52\x15\xa0\xca\x6f\x73\x52\xa9\xd3\x25\xd0\x9d\x1e\xb5\x56\x61\x1b\xf5\x3e\xa3\x75\xcb\xec\xb5\xf9\x5e\xe2\xd8\xad\x06\xeb\xe9\xcf\xc8\x0e\x17\xf0\x39\xa9\x72\x2f\xba\xb4\x50\xea\x2c\xf8\x62\xd3\x30\x3b\x9a\xc5\x97\x82\x47\x2f\x93\x65\xba\xb1\xb1\xb6\x2b\x99\x61\xce\x78\x5f\xbf\x0d\x79\x34\x4e\xd0\xa5\xd5\xd1\x25\x6d\x4e\xee\x1d\x28\x82\xa8\x6b\xcf\xeb\xe3\xd3\xb3\x6d\x48\xb7\x57\xee\x49\xe9\x74\xd2\x28\x52\xb7\x54\x9b\x59\xe0\xdf\x29\xf3\xb0\x54\xc6\x34\xe1\x75\x79\xa5\x6c\xef\xa7\xbf\x47\x4d\xd9\xf7\x9b\x27\xd0\x9d\x94\xf1\x8a\xe2\xec\x0f\x69\xbe\xcf\x9e\x9a\x6f\x2b\x3b\xb3\x95\x1a\x29\xfb\xeb\x5e\xdb\x32\x6f\x4a\x2f\x04\xf5\x65\x9e\x26\x5a\x9a\x51\xf2\xa8\xf1\x5e\xc4\x57\x3c\xcd\xc2\x59\xe3\x2c\x9e\x73\x07\x4a\xed\xe0\x8c\x9d\x68\xa9\xca\xac\x11\x8e\xc7\x3c\xcb\x92\xb4\x2a\x32\xff\x3e\xe3\xda\x32\x82\x55\x8a\x47\x74\x20\x88\x43\x80\x33\x2d\x75\xaf\xbe\x6e\x05\x01\x59\x2c\x0c\x44\xdf\x72\x62\xc9\x19\x80\x00\x1f\xb7\x02\x50\x39\x8a\xf2\x6f\x74\x79\x35\x1c\x25\xb1\x7f\x15\xb1\x5d\xb9\x1f\x7b\xeb\xe2\xef\x2a\xf9\x2b\xc8\x7b\xdb\x44\x4b\x1d\x52\x57\x83\xbe\x19\x8d\x60\x73\xde\x78\xfb\x95\x5a\x95\x88\x60\x43\xe2\x66\x4d\x88\xdb\x37\xa7\xd3\x78\x22\x79\xa4\xba\xe9\x87\xab\x63\xf4\x37\xfc\x19\x64\xb2\x9d\x69\x20\x15\x15\x22\x45\xa9\xc6\x89\x28\xdb\x31\x50\x77\x69\xe8\xd8\xa4\x45\x03\x4a\xf7\x5f\x39\xc9\xf0\x4c\x6e\xd6\xea\x76\x1d\x58\x49\x24\x8a\x39\xd3\xf6\x49\x3a\xe7\xa1\x6f\x64\x08\x96\x2c\x18\x6a\x0b\xb5\x02\xad\xfa\x38\xdc\x04\xcb\xaa\x3b\xed\x1b\x64\xa5\xd2\x72\x3b\x31\x21\x4f\x8c\xa9\xb8\x9a\xd2\xce\x66\x4b\x4d\xa2\x95\xc5\x3d\x11\xec\xb4\x4e\x52\xed\x6c\xe3\xb9\x11\x54\xd5\x63\x36\x51\x68\x14\x97\xe0\xf5\xc0\x82\x4f\x86\x62\x04\x86\xdd\x0a\x95\x80\xaf\xbe\x15\xbe\x0c\x1b\xe3\xf1\x9c\x16\x06\x62\x38\xe3\x79\x8e\x90\xb5\xdd\x6d\x07\xd7\x55\x6c\x18\xfc\xba\x99\x29\xb8\xbf\xd7\x9e\xe6\xe1\x45\xa5\xb7\x0f\x6f\x29\xc9\x30\x1d\x31\x28\x92\xfa\x45\x6c\xbb\x8a\xf6\xbc\xf1\xfa\x83\x2e\x92\x64\xc6\x43\x51\x42\x73\x71\xa6\x2d\x51\x09\x26\xa9\x2c\x4c\xc4\x30\xad\x10\x1e\xa8\x78\x68\xfe\x4e\x8f\xde\x9a\xf3\xd0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\xbd\x47\x34\x35\x2e\x96\x01\xcc\xd8\xf6\x59\xdb\xe0\x7a\x04\x96\xb7\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\xfa\x64\x8b\x38\x61\xe1\x11\xca\xa0\x2e\x26\xd3\x90\x8f\x1c\x26\x65\xa2\x3a\x56\x62\xf0\xd0\xc9\x1c\xa4\xa4\x9f\x1a\x7e\x05\x15\x24\x48\xd7\xf4\x44\xe1\x23\xbe\x07\xa5\x6d\xb4\xfc\x79\x39\x1b\xf8\xb5\xd8\x92\xd2\x91\xc9\xfb\xc5\xc2\x3a\xd5\x71\x46\x2b\x65\x9e\xef\x88\xbe\x0c\xf0\x16\x78\x4c\x14\xf6\x35\x07\x83\xc1\x20\x1f\x0c\xf2\xe3\xe3\x3c\x8a\xa2\x68\xef\xb2\xde\x26\x94\xb1\x6a\xa5\xe5\xf2\xb7\x80\x25\xd0\x49\x4f\x8a\x63\xfb\x45\x54\xe4\x81\x32\x46\xba\x7e\x3b\xaa\x66\x32\x14\xcc\xe1\x7b\x11\x02\x2c\xef\x44\x38\x63\x70\xec\x5c\x40\xd0\x89\xf2\x98\x08\xdf\xcb\xd3\x56\x01\x01\x5d\x8d\x9f\x75\x28\x46\xc5\x74\x26\xa4\x9f\xb8\x22\x41\x52\x0c\xdf\xbd\x68\x2f\x76\x0d\x09\x33\xf9\x1c\x9c\x48\xd5\xca\x53\xd4\x54\xc1\x9f\x74\xfb\x48\xfb\x9d\x42\x01\x52\xe5\x91\x57\xa9\x20\x7d\x81\x25\x09\xbc\xd9\xba\x97\xed\xc5\xf0\x00\x7d\x52\x7d\xec\x75\x76\xed\xb4\xc9\x16\xfd\x70\xfb\x5a\x9d\x23\x43\x61\xa5\x5e\xc4\x88\x69\x62\x6d\x88\xce\x51\x4b\x85\xcc\x41\xaa\x75\xd8\x1c\x55\x71\xab\x72\x83\xef\xb6\x12\xdf\x96\xbf\x93\x25\xcb\x74\xcc\xed\x66\x49\x36\x93\x48\x0b\xe5\xa8\xe5\xfc\x71\xd9\x58\xe8\x9d\x41\x20\xb6\x28\x6b\x24\xd6\xc7\xac\xd6\x29\xed\xfb\xa1\xa1\x7b\x2d\x1a\x05\xa5\xf8\x52\x99\x4e\x9c\xe9\x85\x9b\xe7\x4f\x39\xe9\x48\x9e\x49\x2c\x49\x1f\xe9\xa5\x83\x02\x94\xc9\x50\x44\xa1\x42\x1d\xd1\xc8\x07\x79\x5b\xd5\xa5\xfa\x3a\x05\x04\xaf\x47\xe0\x54\xeb\x6e\xdd\x82\xac\xe5\x0a\x20\x6a\x5b\x07\x75\xe2\x53\xfe\x8f\x3b\xb3\xad\xc2\xcd\x5a\xea\xfb\xa6\x7d\x5b\xdf\x2a\x9d\xec\x43\x82\xec\xcf\xbe\x86\x63\x77\xa1\x1d\xf3\xaa\xfa\x9c\x56\xac\xd8\x28\xe5\x48\x50\xbf\x62\xe7\x6e\x5b\x9d\x4c\x83\xba\x04\xf0\x1d\x5c\x4e\xb1\x62\x07\xe6\x92\x54\x57\x70\x62\x9d\xf8\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\x53\x63\xad\x26\x95\x9d\xbb\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x70\x8c\x3a\x60\xd4\xa5\x85\x7e\x28\xf9\x8c\xad\x36\xf5\x76\x98\xda\x77\xf0\xed\x80\x09\x18\x76\xac\x8e\xda\x30\x1d\xe5\x39\x8e\x59\x6d\x23\x5b\x28\xdf\x5a\x0f\xad\x03\xe5\x37\x31\xae\xb6\xc4\xb6\xa2\xd9\x04\xcf\x7f\x48\x7b\xb7\xd9\x36\x82\x7a\x15\xf3\x0d\x8f\x45\xa8\x5a\xb4\x66\xa4\x6a\xcb\xee\x08\x5b\x62\x7e\x7b\xe6\xb5\xb7\xa4\xb5\xa7\xde\xad\xf7\x52\x75\x21\xf7\xf1\x52\x2f\x5e\x74\xee\x95\x47\x24\xcf\xff\xf2\x96\x36\xa1\xbc\xbc\xc9\x0a\xa7\xc0\xa5\xad\x06\x31\x24\xd8\x0a\x13\x6f\x64\x66\x7f\xf2\xf2\xc4\x78\xa0\x9b\xcd\xbf\x53\x6b\xf5\xc8\xfa\xdf\x19\x88\x8a\x93\xe5\xcd\x83\x67\xcb\x90\x14\x69\x1b\xe3\xe2\xb5\xfe\x5d\x75\x70\x2a\xd5\x6d\x8c\xd0\x1d\x9b\x03\x63\x05\xef\x34\x35\xe3\xf3\x07\xb7\xdc\xde\xca\x5b\x58\xf1\xfc\x05\x65\x01\xc8\x24\x4e\xc1\x5b\x67\x95\x95\x5b\x19\x6d\x5b\xb2\x52\xe6\x43\xa9\x09\xf5\x65\xae\x5d\x63\x2b\xcf\x1c\x05\xa2\x92\x54\x7c\xb2\xdb\x1b\xc1\xb9\x8c\x2c\x07\x87\xbc\xd9\xd4\xa2\x0b\x76\x7f\xd9\x14\x77\xc7\x7e\xe7\x46\x72\xe6\x32\x41\xed\xfd\x05\xc7\xa2\x32\x60\x24\xe0\x7d\x31\xe4\x9a\xe3\x3d\x0a\x44\xa9\x0f\x83\x58\xd4\xb1\xa8\x1c\xb0\x72\x9b\x06\x71\x1d\xf0\x8d\x3c\x45\x65\x1b\x49\xa5\xca\xab\xd7\xf9\xf7\xaa\x87\xfc\xdf\x6d\x80\xbd\xe6\x6b\x9b\x00\x89\xa5\x46\xdc\xf9\xde\x2d\x15\x28\xdd\xbc\xbf\xde\x7a\xf3\x96\xca\xb9\xfd\x55\xae\xde\x5d\xb2\x55\xbf\xff\x95\xeb\x77\x4b\xda\x64\x39\x9b\x55\x93\xec\xdd\xfc\x68\xf3\x6a\xb6\xfe\xf5\x53\xff\x86\xde\x80\xe1\xdf\xd1\x75\x89\xb5\x37\xaa\x73\xba\x5f\x73\x9d\x7e\xfe\xdc\xe9\x6f\xb9\xab\xff\x16\xec\xad\xf7\x75\x7d\x05\xd5\x21\xfd\x1e\xf8\x41\x2c\xee\x00\xbc\xea\x9e\xbe\x1e\x1f\x28\x0f\x87\x87\x11\xd4\xf4\xa5\x26\xd5\x35\x65\x4b\x65\x77\xc5\x18\x14\x71\x5a\xba\xf6\xeb\xe6\x73\x2b\xce\x50\x2d\x5c\x3b\x63\xb7\x94\x2e\x15\xae\x99\x8d\xef\x20\x1c\xd5\x4e\x6f\x41\x39\x6c\xb6\xef\xdc\xb5\x9b\xbb\xd8\xbb\x6d\x4b\x30\xd4\x65\x28\x64\xdd\x7d\xeb\x26\x6f\xe3\x76\x2b\x01\xf0\x6f\xda\x0d\xc8\xb8\xa6\x00\xfb\xc4\xab\x33\x5d\x7b\xc1\xde\xb5\xfe\xcd\xc3\xf6\x7f\x73\x70\xea\xef\xff\xcd\xe6\xd4\x0d\x53\x2d\x4a\x52\xd3\x13\x2e\x37\x06\x6c\x2b\x5a\xf2\xf7\x1b\x56\xbd\x29\xff\x17\x47\x6f\x10\x8b\xed\x4d\xb4\x4d\xa9\x1b\x39\x9b\x56\x33\x6e\xae\x07\x72\x63\xd4\xca\xd5\x6d\x8e\xd9\xdd\x9a\xa3\x59\x58\xd9\xdb\x41\xcd\x18\xa1\x05\xa8\x48\x70\xb0\x5a\x59\x76\x67\x3d\x9e\x86\xe9\x91\xc4\x5d\x83\x36\x5b\x6f\x11\xd5\x2b\xd9\x12\xfa\x4f\x7a\xbd\xbe\xe8\xa3\xc5\x1c\x05\xe8\xed\x00\x05\xa2\x8f\x42\xf5\x7d\x34\x40\x6b\x1a\x49\x90\x7c\xa3\x37\xdf\xf1\x5f\x8e\xe5\x34\xcf\x64\x2e\xa2\x3c\x8d\xc8\x9e\x73\x7d\xbe\xc9\x55\xe4\xf7\x7a\x5d\x67\x12\xaf\x05\x86\x80\xaf\xb1\x8a\xec\xee\xf5\xba\xa4\x8f\xe4\x14\x05\x60\x1d\xb8\x8f\x32\x89\x02\xed\x39\x10\x89\x08\x05\xf7\xf5\x67\x1a\xa1\x40\xe5\x22\xeb\x35\xa1\xa9\xd6\x69\x70\x0f\x2b\x10\xac\x7f\xd5\xd1\xc9\xda\xa5\x72\xf1\x42\x14\x49\x0b\x04\x64\xe4\xca\x80\x54\xd4\x77\x81\xe9\x4c\x0e\xe0\x85\xd1\xf4\x7b\x2d\x98\x7d\x64\x2f\x98\xf3\xcf\x36\x58\x7d\xbf\x49\xe0\xc9\x7a\x0e\x2c\x7c\xb1\x82\x16\x4b\x77\x93\x8a\x3d\x33\x63\xd1\xd1\x24\x81\x71\x47\x67\xda\xd1\xe6\xd7\x06\xe6\x78\x9d\x6d\xda\x53\x51\xb1\x3a\xeb\x09\x23\x5a\x7b\xb3\x20\x70\xe6\x3f\x0a\xfc\xdb\x2f\xf4\xe0\xa7\x6e\x77\x97\xef\xf5\x1e\x1c\x74\x7f\x7e\xe4\x59\x61\xf7\xf3\xe8\xc4\x5d\xbe\xa7\x32\x17\x79\xbe\xf8\x79\xb6\xd0\x06\x61\x06\xc6\xfd\xd5\xf0\x7c\x10\xec\x8b\xc0\xda\x3e\xc1\xb1\xfe\x06\x53\x05\x26\x1a\x11\xfa\x56\x7f\x4e\x11\xa1\xef\xf4\x67\x84\x08\xfd\x53\x7f\x5e\x23\x42\xff\xd2\x9f\x03\x44\xe8\x2b\xfd\xf9\x3b\x22\xf4\xbd\xfe\x5c\xf9\x96\xd0\x5e\xde\xa1\x6d\x15\xc9\x52\x30\x0d\x3c\xe4\xa3\xe0\x4d\xf8\x46\xb7\xf8\xb9\x60\x2f\x45\x49\x91\x49\x35\xf8\x0f\x1d\x5b\x44\x7c\xb4\xd9\xb4\xc5\x10\x42\x5f\xe8\x08\xed\x86\x9f\xd0\xdf\x74\x10\xbc\xef\x13\xfa\xbb\xc9\x6d\x4c\xa0\xd1\x1f\x74\x58\x3b\xda\x27\xf4\x57\xe1\xc9\xd4\xd0\x4f\x82\xdd\x64\x59\xf0\xe0\x01\xcd\x82\x07\x0f\xe9\x5c\xfd\x9b\x06\xfb\xfb\x34\x0a\xf6\x0f\xe8\x20\xe8\xf5\x3c\xff\x59\x5a\x1f\xc9\xda\x7f\xb2\x8f\x2f\x25\x26\x35\x96\x79\xde\xa3\x3b\x3b\x82\x72\x9a\x12\xe8\xa4\x4c\x6b\x96\xb6\x48\x8b\xe1\xc3\xfc\x49\x97\xb4\x31\x7f\xdc\x25\x79\xde\xf2\x3c\x03\xa7\xe9\x6d\x32\xce\x35\xaa\xb0\x25\x2d\x4c\xfd\x58\xa7\xda\xcb\xa4\x63\xc3\x79\x23\x0d\xe2\xb3\x34\x2d\x12\xb5\xc9\xbf\xc4\xcb\x6d\xad\xfe\xb1\x23\x2c\xc0\xd2\xb1\x64\x47\xc6\xe6\xb1\xb8\xc7\x0e\xba\x94\xab\xff\x87\xda\x12\xd6\x11\x4e\xf6\x7a\xfb\x84\x86\x2c\xb9\xc7\x7a\xfb\x34\x63\x29\x1d\x33\x49\x67\x8c\xd3\x25\x13\x7d\xd1\x91\xc9\xf3\xf8\x2b\x8f\xf0\x7d\xdf\x47\x58\xa7\xdf\x6d\x69\x1f\x61\x01\x42\x74\xc1\xcc\xaa\x3e\xb5\x22\xfd\x80\x8d\x2d\xac\x5c\xf7\xdb\xee\xb1\x96\xdc\x9e\xb0\xc5\xe3\x6e\x1f\xb5\x91\x2a\x15\x31\x51\x69\xf3\x0e\x53\x51\x0b\x62\x73\x4c\x8b\x1c\xd0\xcd\x6a\xfa\x85\x07\xc1\x1f\xa3\x4a\x3e\x7b\xf0\x4c\x5a\xe8\x2d\x6a\xe1\xb8\x1f\xb5\xe2\x16\xfa\x08\x36\xf9\x5b\x38\xec\x47\xad\xb0\x85\x06\x26\x98\xf5\xa7\xad\xac\x85\x8e\x4d\x70\x9c\xe7\xb3\x3c\x5f\xf6\xd1\x99\x8d\xe8\x5f\xb4\xc6\x2d\xf4\xd2\x04\x67\xfd\x8b\xd6\xac\x28\xbd\xec\x5f\xb4\x96\x2d\x74\x0a\x41\x58\x48\x49\x5a\xb2\x71\xe8\x5e\xff\xd2\x5b\xf4\xd9\x74\x97\x4c\xfa\x9a\x26\xa9\x5a\x86\x5b\x04\x38\x61\x7f\x96\x9f\x52\x4b\x42\x5b\xaf\x45\xdd\x08\xf9\x16\xc2\x5d\x0e\xbd\x94\xfc\x19\xf1\x4a\x1b\x6b\xa8\x65\xdd\x0d\x95\x5e\x8e\x29\xd4\x52\x4c\xa2\x17\x6f\x25\xd0\x4c\x21\x08\x58\xd5\x16\x13\x0b\x9f\x4e\x03\xc6\x66\x75\x75\x6b\x09\x05\x88\x84\x4f\x2b\x07\xa4\x46\x28\x8a\xea\x99\xfc\xcf\x44\x41\x63\xf7\x08\xe4\x75\xda\x39\xdf\x2d\xd0\x36\x25\xc2\xbb\xca\xa7\x3a\x51\x4b\x75\xe0\xb0\xcd\x91\x57\x1b\xc3\xbc\x04\x97\xf5\xdd\xac\xd2\x99\xd6\x75\xd3\x32\x80\xea\x9b\x18\x15\x36\xa7\xac\xa4\xee\xc5\x54\xcb\x06\xba\x67\x4a\x73\x33\xfe\x5b\x60\x49\xa8\x55\x76\x33\x3a\x68\x56\x28\xa2\xa2\xdb\x66\xa3\xf7\xee\x1f\x7a\xaa\x71\x2e\xb6\xb7\xaf\x5f\xee\xeb\x6a\xf7\xa4\x1b\x9f\x56\xd6\x47\x51\xbb\xd6\x67\xb3\xeb\x72\xef\x51\x2b\xb5\xc6\x3a\x0a\x85\x32\x9b\x6a\xfb\xe3\xab\x89\x99\xb4\xfd\x07\xbb\x2a\x19\xac\x85\x94\xf4\xbd\xdc\x25\xfc\xa0\x0b\x39\x0e\xf8\x83\xb2\x76\x97\xc9\xf0\xd3\xc1\x83\xae\xce\xd1\xe3\xf7\x2d\x88\x42\xb5\x30\xd8\x54\x57\x80\xa6\xec\x4a\xd2\x4a\x9d\x45\x11\x39\x4d\x93\x6b\x50\x44\x7a\x96\xa6\x49\x8a\xd1\x7b\xf1\x45\x24\xd7\xa2\xb1\x14\xb1\x6c\xa0\x96\xba\xcc\xf5\x32\xf1\xed\xf3\xb0\x0f\x42\x47\x9a\x63\x91\x1d\x0b\x9b\x49\x6f\x84\x5f\x4c\xf8\x25\x6c\x80\xb7\x26\x74\xac\x36\xe5\x3b\x13\xd0\x62\xe1\x7f\xda\x82\x7a\x57\xfc\x65\x82\xbf\x5b\xe9\xfa\x57\x26\xe2\x23\xec\x8f\xf7\x10\xfa\x8e\x76\x45\xf5\x9a\x2f\xa1\x64\x66\x08\x8a\x29\xf7\x27\xf9\x5e\x6f\x7f\x77\xff\xe1\xcf\xfb\xfc\xa0\x75\xbf\xf7\xf0\xfe\x01\x3f\xd8\xbd\x2e\xad\x02\x75\xa1\x00\xba\xa0\x9a\x61\xd0\xb3\x8d\xd3\xab\xf0\x21\x59\xb3\x4b\x68\xe8\xad\x37\x9a\x95\x56\xb9\xba\x9e\x36\x0e\xbe\xf8\x09\xeb\x36\x9b\x21\xfc\xcf\x9e\xb0\x6e\x9e\xc7\x8f\x21\x06\xfe\x67\x8f\x55\x0c\x8e\x5b\x4c\x77\xec\x54\xa8\x85\x9b\x91\x56\xa8\x2e\xbe\x2e\xcd\x58\x97\xd0\x71\xf9\x64\x8b\xef\xa9\x8b\x56\x5d\xa2\x31\x68\xac\xd0\xb1\x3b\xd7\xc0\x61\x40\x71\xa9\x8e\xdd\xc1\x26\x55\x82\x60\x47\x58\x9a\x04\x7d\xb2\x89\x7b\xfb\x0f\x68\xd8\x82\xfb\x78\xff\x81\xba\xac\x8f\xf0\xbf\x05\x0e\x09\xa1\x59\x8b\x25\x34\x6c\x33\xdd\xa2\x04\x74\x72\x8f\x30\x8c\x20\xcd\xe0\x42\x1e\x6b\xe9\xf8\x50\x55\xa3\x67\x3f\xa3\x63\x73\x10\xa6\xc5\xf1\xb7\xcd\x9c\xd1\x6f\x4e\x9a\x33\x49\xb7\x19\x6c\xd0\x87\x10\xad\x59\x16\x43\xde\x42\x19\x1a\xe1\x62\x3a\x4b\x63\xf4\x1c\x16\x9a\x0d\xfd\x21\x74\x06\x3d\x16\x1f\x21\xa4\x07\xe0\x05\x7c\x43\x3f\x7e\x83\xcf\x8a\x6a\x85\x6b\xc9\x91\x13\xc1\xce\x30\xd9\x7b\xa4\x5b\x6d\xba\xfd\x3b\x94\xd4\x1d\xff\x41\x03\x37\xd6\x2d\xee\x78\x34\xdf\x05\xf3\xaa\xd1\xee\xa0\x55\x23\x07\x56\x4a\xe5\x37\x10\xbe\x0c\x2f\x32\x30\x7d\xf5\xab\xc0\x6a\x07\x02\xf6\x4e\x68\x5c\x84\x41\x5c\x35\x2c\xc2\x53\x15\xce\x8a\x70\xa4\xc2\xe3\x22\x3c\x50\xe1\x59\x11\x5e\xa9\xf0\x92\x25\x8f\xd9\x27\xd1\xc9\xb2\x66\x13\x4c\xe4\x25\xa3\x3c\x4f\x1e\xab\x18\x88\x30\x31\xf1\x63\xd6\x53\xe1\x39\x82\xc0\x27\xd1\x99\x43\x70\x8e\x68\x3c\xca\xf3\xd0\x24\x4f\x11\x04\x3e\x89\xce\x14\x82\x53\x44\xc3\x51\x9e\x67\x26\x39\x42\x10\xf8\x24\x3a\x11\x04\x23\x44\xb3\x51\x9e\x8f\x4d\xf2\x00\x41\xe0\x93\xe8\x0c\x20\x38\x40\x74\x3c\xca\xf3\x99\x49\x5e\xa9\xe4\x21\x5a\xad\x10\x9d\x39\xd9\x8a\xe5\x70\x7f\xc4\x24\x5d\x0e\xef\x8f\x58\x8b\x3f\xe9\xd2\xe5\xf0\xc1\x88\x09\xca\x53\xdf\x21\xcf\x92\xac\x8d\xfc\x32\xf7\x04\xb8\xb8\x16\x67\xf2\xa4\x3d\x30\x9c\x47\x54\x10\x42\xa5\x6f\x49\x46\xe8\x05\xe3\xeb\x84\xa6\xa9\x8e\xa9\x04\x41\xb5\x4e\x07\x0a\x2b\x01\x2e\x60\xad\x04\x68\x58\x99\x2d\x7c\x82\x91\x17\xdc\xb4\x67\xec\x59\x1a\x2f\xe9\xe3\x59\xca\xb9\x81\x45\x22\xe3\x31\x07\x73\xc6\xe3\x70\x11\xcb\x70\x96\x11\x44\xd3\x94\x40\xdd\xc6\x72\xc1\x7b\x8c\xfe\x34\x96\xdb\x96\x22\xfe\xaa\x8d\xb9\x7d\x35\x31\xe6\x54\x37\x3e\x49\xbe\x16\xe6\x50\xff\x34\x0e\xd1\xfb\x9f\xa3\x16\x78\x84\xb8\xe9\xd1\xfb\x6b\xd2\xdf\xd3\x76\x30\xff\x44\xf5\xf6\x24\x0b\xbf\x55\x3d\x7e\x7f\xd7\x37\x4b\x0f\x4e\x77\x8d\x61\x4d\x55\xd1\x77\x8a\x5f\x2b\x3c\x46\x3b\xb8\x32\x4e\xbd\x18\xda\xef\xec\x3f\xe8\x74\x11\x95\xec\xa9\xa4\x69\x67\x22\xd8\x37\x41\xe1\x88\xa8\xd9\xfb\xc7\x12\x23\x6b\xf4\x01\xd1\xe1\x48\x0b\x40\x69\x7e\x97\xf3\xd4\x44\x55\x9b\x14\x88\xb0\x4e\xe7\x50\x83\x00\x1b\x14\xdf\x85\x20\x7c\x3b\x37\x05\x84\x50\x72\x95\xd4\xb7\x1f\x98\x04\x2d\xdb\x47\x55\x0c\x04\xe2\xd5\x6f\x49\xeb\xb1\x38\x4b\x9f\x6a\x77\x0f\x5c\xb7\xf2\x16\x91\x1a\x23\x83\xe8\x28\x5e\x95\x3f\xce\x40\x88\x6b\x4c\xdd\xaa\x8c\xd4\xb8\x59\x9b\xe8\x17\x34\xed\x44\xc6\xee\x35\xfb\x0d\x52\x32\xed\xc3\x8e\xad\x68\x5a\xff\xc4\xe8\x31\xc1\x9c\x94\x21\xb2\x39\x75\xad\xb5\x12\xf4\xae\x3b\xf5\x0e\xb3\x8a\x42\x18\x60\x78\xfb\xe6\x42\x37\xec\xd8\x36\xf4\x9d\x74\x23\x71\x8b\x28\x4e\x79\x38\x20\xa3\x6e\x5d\xfd\xa3\xe3\x77\x3a\x36\x88\x85\x2e\x1d\xf1\x49\x2c\xf8\x6b\x3d\x98\x53\xe9\x94\x25\x4c\xcc\x86\xe9\x0e\x2b\xef\x59\x78\x23\x61\x63\x69\x64\xfc\x71\xca\x26\xd6\x98\x7a\xc2\x52\x2b\xc4\xa5\xe8\xeb\x67\x38\xa1\x92\x50\x2c\x60\x3f\x9c\x62\x49\x60\x84\xb8\x90\xa6\xa2\x19\x48\x15\xce\xb4\x2c\x20\x8d\x0a\x37\xb0\x1a\x34\x24\xa8\x63\xae\x08\x95\xca\xf7\x75\xc9\xcd\x84\xa0\x54\xde\xb8\xd8\x84\x90\x3b\x3e\x21\x54\xcc\x51\xdd\xb5\x7b\x86\x67\xb2\x34\xd8\x9b\x13\x75\xeb\x70\x7b\xd3\x25\xd4\x49\x3c\x8b\xbf\xf1\xf7\x22\x96\x19\xfb\x42\xd3\x12\xa7\xe5\x9d\xa2\x1a\xaa\xba\xfa\x06\xae\x67\x88\xfd\x57\x11\x20\x9b\xc3\x17\x84\x6d\x36\xf1\xaf\x82\x71\xd0\xa4\xa8\x40\x3e\x9b\xa6\x3c\x9b\x26\xb3\x2d\x54\xa0\x06\xbe\xc3\xd8\x27\xa1\x87\xda\xd5\x26\xfb\x10\x15\x60\xf8\x61\x92\xa2\x0c\x08\xaf\x66\x13\xc3\x85\xcb\x64\xbb\x47\x54\x8d\x50\x65\xd9\x86\x65\xbd\x39\x4c\xb0\x19\x89\x25\xd5\xbc\x2d\xd0\x2e\xb1\x74\xd5\xe3\xf6\x41\xbf\x30\x77\x19\x88\xc7\xed\x5e\x1f\xcd\xc2\x4c\x6a\x8b\x1d\xe2\x71\x57\x07\x8f\x15\x79\x24\x1e\xf7\x74\x66\x13\xda\xef\x23\xe3\x25\x52\x85\x1e\xe9\x90\x2e\x58\xc0\x84\x1d\x6d\xb9\x0d\xfa\xbc\x7d\x79\x36\x78\xfd\xf0\xfc\xf9\xe0\x8c\xdd\x1c\x1f\x9d\x3d\x3b\x7b\x35\x78\x76\xfe\xfa\xe4\xe9\xd1\xeb\x60\xc3\x86\x3f\xa2\xe5\x1c\xe7\xa7\xcf\x9e\x9e\xbc\x39\x3e\xdd\xcc\x19\x28\x9c\xa3\x92\x79\x50\x9f\x0f\xd4\xda\x21\xaf\x9f\x8c\xa8\x2a\x19\x20\x53\x2f\x80\x71\xb5\x15\x55\x40\xfc\xc0\x8b\xd2\xd0\x3e\x3c\x7b\xf6\x5b\x00\x06\xb9\xdb\xc3\x0f\xa3\x0f\x1f\x10\x1d\x9c\xbc\x39\x7b\xe9\x2a\x50\xe3\xb0\xc6\x64\x4d\x7c\xfb\xa1\xf8\xfe\xcf\x04\xae\x29\x5a\x5d\xda\x48\x5d\xda\x5a\xb5\x1b\x19\xf7\x59\x02\xdf\x07\x17\x1e\xf8\xa1\x42\xe7\x04\xee\xfd\xa4\xd0\x38\x81\xbb\x0a\x7b\x13\x1d\x85\xbf\xd3\xb1\x8a\x57\xd8\x9a\x0a\x8f\x15\x9a\x26\xf0\x03\x42\x17\x10\x5e\x12\x3a\x51\x50\x7a\x84\x46\x4c\xe0\x7d\x42\xa7\xc6\xf9\x29\x8e\x3b\x21\xc1\x37\x6b\x3a\xe9\x9c\xa5\xa1\xc8\x62\xd5\x14\x35\x6b\x8b\xb3\xd5\x82\x67\xf4\x66\x3c\x8d\x67\x51\xca\x45\x30\xeb\x84\x1d\x70\x42\xa5\x12\xf0\x50\x05\xc3\x34\x0d\x57\x27\x13\xac\xbe\x45\x12\xa9\xeb\xdf\x7c\x8d\x08\x95\xe1\x65\x10\x75\xfe\xa2\x17\x61\xc6\x9f\xce\xc2\x2c\x03\x08\x5a\x0d\xa2\x88\x3c\x1a\xab\x5d\xe3\x27\x8d\x55\xf4\x9b\x70\x5e\x8e\xcc\xb2\x41\x12\x2d\x67\x3a\x52\x1b\x35\xa2\xb1\x10\x3c\x7d\xc7\x27\x75\x4d\x33\x59\x3c\x10\xea\x53\x8d\xf5\x88\xac\x09\xbd\xb8\xb5\xfb\x86\xd6\x7e\x9b\x26\x8b\x8c\xde\xa8\x8e\xa0\x28\xbe\x42\x5e\x57\xd0\x24\x8c\x38\xda\xe8\x06\xca\xa6\xc9\x35\xa2\x32\x9e\xf3\x64\x29\x83\xa8\xc3\x3b\xcf\xc3\x88\xd3\x70\xb1\xe0\x61\x1a\xec\x74\x29\x17\x92\xeb\x8f\xaf\xb1\x54\xbf\xb1\x00\xf7\xd7\x05\x67\x77\xee\x3b\x5a\x96\xe1\x25\xf8\xdc\x76\x15\xd1\xd8\x0f\xe9\x6a\x69\x08\xae\x41\xcc\xb0\xd1\xb1\x0a\xd9\xf1\xa2\x33\x15\x32\x73\x48\x97\x8c\x77\xec\xa8\x15\x4b\x20\x51\x63\xc0\xe9\x10\xc9\xf0\x12\x51\xe4\xa0\xfb\xdf\xba\x26\x44\x91\xab\x47\x7d\xdb\x5a\xd4\xb7\xa9\x03\x51\x64\x6b\x40\x23\x6f\xa0\xa3\x4e\x4c\xf0\x94\x46\x9d\x31\xa1\xf3\x22\x72\x6a\x23\xed\xb9\x94\x75\x42\xe3\x3d\xf6\xd9\x8c\x83\x6e\x8e\x3f\x35\xf4\xa2\x2c\xa2\xae\x5f\x75\x10\x8c\x2a\xd7\xd6\x99\xe8\xa4\x80\x7e\x49\xf0\x02\x13\x1c\x52\x41\x93\x66\x33\x26\xf4\xb6\x7a\x24\x35\xe5\x52\x58\x13\xc5\x3a\x9c\xac\xe9\x9c\xde\xa4\x7c\x12\x2c\xd7\x84\xce\xc0\x3d\xdf\xbc\xd8\x23\x6c\x4a\xe7\xa5\x25\xc3\x2e\xa8\xec\x84\x6c\xbe\xa6\xb4\x7c\x28\x17\xdc\x7b\xec\x49\xd7\xf3\xaf\x8b\x24\x95\x19\x13\xd6\x1f\x71\x98\x65\xf1\xa5\xc8\x73\xbf\xa3\xce\x5f\x24\xeb\x1d\xca\xc7\x0e\xfb\xb1\xf6\xb2\x64\xab\x65\xcf\x7c\x97\x36\x94\x85\x31\xaf\xb4\x11\x8b\x86\x20\xa6\x82\xc2\xb4\x4b\xd9\x8d\xb1\x3e\xa0\x04\x05\xbf\xe0\x5a\x40\x63\x98\x8e\x9c\xa6\x20\x5f\x53\x61\x70\x30\x38\xc4\x0a\x1c\x6c\xed\xf5\xe2\x3b\x27\xda\x4e\xf1\x1a\xa2\x1f\x27\xd0\x52\x68\xd4\x28\xf2\x94\xa3\xce\xcf\xdf\x3d\x3b\x7a\x7a\x76\x7e\xfc\xec\x8f\xb3\x93\x93\xd7\xa7\xe7\x2f\x5e\x9f\xfc\x72\xf4\xfa\xfc\xe5\xc9\xc9\x6f\xe7\xe7\xcd\x66\xdd\x95\x7c\x7b\x99\xce\x78\xca\xc7\x5f\x8e\x9f\x3e\x23\x37\xdd\x43\x99\xae\x6e\xee\x98\x5d\xa1\x47\x63\x30\xce\x2f\xc9\xcd\x38\x11\x59\x32\xe3\x1d\x0e\xac\x37\x49\xd6\xeb\x35\xd8\x23\x70\x9d\xc7\xbd\xee\xfe\xdd\xce\xf4\x0c\x0b\xdc\xeb\x3d\x20\xea\x60\xd7\xdf\x3f\x03\xb1\xae\xbe\x0f\x1e\x00\x9d\x0e\x9f\xfb\xbe\xa3\x97\xac\xec\xaa\x9b\x77\xce\xcf\xb9\xd9\x82\x7d\x1e\xdc\x58\x1e\x21\x5f\x7b\x13\x72\x53\xec\x9e\x20\xb4\xeb\x94\x16\x91\x2f\xd2\x64\xb9\x08\x62\x97\xf2\x4e\xbf\xac\x78\xa5\x12\x97\xf6\xf4\xf4\xd4\x8b\x77\x26\x57\xd7\xdf\xe9\x71\xf1\x20\x55\x7e\x30\x70\x6e\x9c\x35\x43\xe8\x98\xa7\xf1\x15\x8f\x4e\xa5\x71\x1d\x0d\x9b\x49\xb3\x61\x16\x70\x14\xc3\x67\xa6\x92\xad\xb2\xab\xc2\x8d\x1c\x3e\xe5\x14\x75\xb9\x04\x18\xa5\x37\xd5\x44\x0d\x5d\x39\xd9\xb5\xb9\xac\xa6\x71\xa7\x56\xf9\x5c\x01\xd3\x14\xe1\x35\x45\xf4\x85\x36\x7d\xd3\xb9\x88\x85\x33\xd3\xe7\x1a\x13\x1b\x63\xec\xe9\xca\xaf\x58\x77\xd2\xb0\xea\xa1\x9b\x87\x45\xbc\x55\xd0\x80\x78\x66\xc5\x08\xcf\x53\x1e\x8e\xe5\x2b\x75\xfc\x89\x70\x76\x2a\xc2\x45\x36\x4d\xe4\xf3\x59\x78\xc9\x76\xba\xb7\xe6\xd1\xb5\x5c\x72\x69\x23\x34\xb9\xfb\x1e\x68\x12\x38\x03\xd6\x93\x58\x84\xb3\xd9\xea\xc6\x6b\x84\xf0\x1b\x91\x7a\x8e\xc1\x42\xff\xd6\x2a\x9e\x98\x80\x05\x96\xe7\x3b\xb2\x13\x67\xef\x54\x33\x9e\x26\xf3\x45\x22\xb8\x90\x64\x83\x91\xfd\x34\x14\x8d\x44\xcc\x56\x8d\x45\x32\x5b\x4d\xe2\xd9\xac\x01\x47\x70\x63\x6c\x8b\x64\x08\x1e\xf3\x8a\xbd\xef\x29\x53\x6e\x9d\x29\xff\xac\x28\xf2\xcb\x6d\x3d\xb7\x1c\x3a\x6e\x6c\x2f\x69\x62\x53\xff\x68\x8d\xf5\x72\x13\x3c\xdd\xec\x8e\x6b\xe8\x87\x78\x36\x1b\x24\x4b\x21\xfb\x82\xa1\xcd\x58\x54\x4b\x51\xc8\xce\xfb\x37\xa7\x47\xcf\x9f\x9d\x6f\x16\x00\xae\x13\xda\x9a\x8c\x08\xbd\x43\x83\xde\xf1\x31\x8f\xaf\x38\x0c\x4a\x3f\xac\xb4\xcb\x4f\xfc\x3b\xcd\xf3\xcb\x35\x9b\x38\xac\x6f\x65\x09\xfa\x9d\x1a\xab\x27\xa3\x9f\x55\x9a\xa9\xa3\xff\x4e\x03\x75\x89\x66\x13\x67\xf5\x4d\x33\x10\x09\xb5\x9b\xd8\x3a\x5d\x66\xa1\xfb\xca\xf4\xca\x1e\x03\x39\x95\x2d\x66\xe1\x4a\xa1\x05\x79\xce\x3b\x42\xe1\x5b\x33\x56\x4b\x20\x6e\x5d\x91\x7d\xb4\xf5\x54\x21\x28\x40\xdb\xb6\x24\x41\x87\x7a\xcb\xb8\x77\x9f\x2c\x9c\xf0\xc6\x8c\x5f\x86\xe3\x55\x63\x16\x4f\xf8\x78\x35\x9e\xf1\x4c\x7b\xa3\x17\x89\x6c\x5c\xf0\x86\xba\xd0\x79\x04\xca\xbc\xc5\x36\x6a\x2c\xb3\x58\x5c\xc2\xd6\x73\x91\x8d\xa3\xb7\xaf\xb2\xce\x67\xf1\x59\xa0\xd6\xb8\x85\x1a\xcb\x8c\x67\x0d\xd4\x9a\xb5\x50\xe3\x62\x29\x1b\xe1\x2c\x4b\x1a\xe3\x44\xc8\x30\x16\x19\x30\x0d\x27\xc9\x6c\x96\x5c\x2b\x38\x1b\x2d\x08\x50\x0b\xdb\xe1\xec\xa3\xcf\xa2\xd1\x40\x2d\xa1\x1f\xa5\xed\xd8\xda\xe8\xb0\x14\x9d\xd9\xe8\x0c\xa2\x91\x6a\xce\xd9\x94\x37\xc2\x8b\xe4\x8a\xfb\x5d\xcc\xa6\xc9\x72\x16\x79\x2e\xf7\x3b\x8d\xd7\x3c\x4c\x85\xd6\x58\x0e\x2f\x92\xa5\x04\x1e\x7b\xc3\xe8\x36\x37\xa6\x3c\xe5\xc1\x67\x31\x95\x72\x91\x05\x7b\x7b\x93\x8b\xce\x9c\xef\xc1\xb9\xd8\x0e\xb3\x95\x18\xb7\xdd\x40\xb4\x5d\x35\xed\x69\x92\x7c\xc9\x10\x59\x6f\xd9\xf0\xb7\x9d\x39\xb8\xee\x34\x60\x29\xbd\x65\x4f\xb2\x64\xdb\xce\xd8\x76\x54\xdd\x6c\x39\x0c\xbd\x4a\x8e\xe3\xc8\x64\xae\x3b\x6e\xd5\x22\x71\x87\xed\xd6\x75\x57\x5d\x3d\x72\x1a\xca\x46\x94\xc0\x12\xd3\x98\x5b\x63\xb3\x3e\x4c\x1a\x89\x80\x85\xe2\x2e\x03\x44\x0e\x6b\x77\x39\x8b\xe1\xac\x5d\xb2\xba\x76\x1f\xd6\x45\xde\xaa\xab\xbb\xfd\x4a\xec\xdf\x96\x21\x10\x87\xcb\x8a\x18\x7c\x4a\xd6\x05\xea\x2b\x3a\x0a\xe1\xa3\xa2\x13\x61\x49\x91\x1d\x35\x54\xe7\x0b\x26\xd4\xbc\xe7\xf3\xf3\x6c\xb9\x58\xa4\x3c\xcb\x8e\x0d\x67\x3e\x4e\xc4\x07\xbd\x20\xd5\xed\x9c\x7c\x37\x47\xfc\xbd\x1c\xeb\x0a\x81\x51\x60\x7d\xd5\xf8\x82\x0f\x63\x68\x00\x4d\xfb\x60\x8f\x18\x50\x88\x6c\x41\x19\x78\x58\x10\xe3\x54\x61\x9a\x90\x76\x7e\xce\xfe\x0e\xba\xe7\x33\x33\x19\xb3\xb7\xab\x71\x2f\xad\x99\x9a\xb5\x8c\xcf\x2d\x79\x6f\xd6\x34\xb6\x1d\xf8\xc2\x57\x0a\x1d\xf6\x74\xdd\x63\xdf\x7a\xb0\x60\xf1\x30\x1d\x51\xd9\x89\x45\xc4\xbf\x9e\x4c\xb0\x20\xf0\x18\x8b\x93\xa1\x18\x69\xc5\xd8\x42\xfd\x5d\xa3\x73\xf1\x04\x1b\xd8\x97\x5c\x7a\x64\xd1\xe9\x6a\x7e\x91\xcc\x32\xeb\xb1\xef\xb6\x3c\xff\xa0\x41\x1b\x34\xd9\xc2\x80\x7c\x95\x3d\x13\xcb\x39\x4f\xc3\x8b\x99\x79\x39\xe0\x54\x00\xc7\xd7\xf5\x60\xed\x7a\x60\xd6\x65\x58\xbb\x20\xd3\xf5\x77\x19\x4d\xf5\x2b\xc7\xbe\x8b\xd3\x90\x66\xfa\x3d\xd3\x60\x79\xe3\x92\xad\x64\x49\xc6\xcc\x3b\x59\x06\xb1\x88\x27\x31\x8f\x1a\xfc\xeb\x98\x2f\x34\xf6\x3d\x1e\x2f\xd3\x94\x47\x87\xfa\x49\x6a\xca\x1b\x22\x11\xed\xb9\xcd\x18\xf1\xab\x06\x17\x57\x71\x9a\x08\x45\x50\xc2\x89\x03\x97\xcc\x72\x36\x6b\x00\xb1\xd5\x98\xf3\x2c\x0b\x2f\x79\x23\x14\x51\x23\x8c\x22\xa0\x40\xc2\x59\x63\xca\x67\x8b\xc9\x72\x66\x0f\xfa\xac\x83\xb4\xfd\x1c\x68\xe5\x8c\x0d\xbd\x0e\x8c\xe8\x92\x75\x0f\xb1\xdf\x54\x59\xd2\xae\xbe\xac\x1b\xbb\xd9\x70\xd9\x6a\x8d\xd6\x84\x10\x02\xd7\x3d\x43\xaf\xc4\x55\x98\xc6\xa1\x90\x8d\x3f\xe2\x64\xa6\x0d\x63\xac\xf5\xf1\x3a\xee\x4c\xd2\x70\xce\xb3\xb3\xe4\x6d\xb2\x60\x3d\x3a\x5e\x7f\x6f\xaf\xf8\x4f\x59\xa9\xc7\x21\x48\x3c\xf1\xbe\xa4\x16\xc1\xd0\x2b\xae\xd9\x44\x19\x7c\x6c\xa4\x74\x62\xc9\xd3\x50\x26\x69\xbf\x4e\xe2\xdb\x5c\x61\xeb\xa0\xee\x11\xbe\x9e\xbe\xb6\x15\x96\xcf\x06\xc6\x5c\xfc\x8e\xfd\x2e\x16\x73\xdf\xb6\x2e\x70\x35\x92\x12\x59\x66\x28\xa1\xc2\x26\x79\xf7\x50\x3c\x96\x76\xdf\x08\xcb\xd6\x48\x99\x04\x9d\xfc\x0e\x77\x5b\x82\xf9\x81\x3c\xdf\xe9\xd1\xb4\xe3\xfc\xb1\xaa\xf4\x1d\xfb\x46\x89\x62\xd1\x48\xc1\x35\xf6\x75\x1a\x4b\x93\x46\x0c\xb7\xc7\xbc\xcb\xd8\x7d\xac\xa6\x41\x1d\x2d\x70\xf8\xfb\xd4\x4d\xe9\xdd\x41\x82\x8a\x7d\x7f\x1b\x04\x49\x6f\xa0\xe2\x40\xd0\xa2\x89\xc1\x4e\x97\xfa\xed\x53\x61\xdb\x1e\x60\x01\x06\x7c\x28\xe1\x21\x7a\x5d\xa6\xf7\xef\xce\xfa\xd1\x68\x94\xcf\x00\xea\xfb\x81\xe0\x66\x4d\xd3\xd2\xf1\x29\xc8\x61\xdd\x4c\xdf\x76\xc2\xa9\x71\x64\x30\xd2\xe3\x50\xde\x7a\x5e\x62\x41\x3a\x93\x78\x26\x79\x8a\xeb\xcc\x4a\xd4\x16\x3d\xe6\xd9\x38\x8d\x17\x32\x49\xb1\xa0\x9c\x78\x33\x0c\x3b\x90\xa6\x9d\x49\x92\x3e\x0b\xc7\x53\x5c\xa2\xde\xcd\xfc\x0c\x25\x38\x4f\x2c\x2e\x6d\x37\x90\xe3\x7a\x5f\xdf\x1a\x87\x02\x13\x31\x9d\x38\xd3\xa6\x62\x0a\xcd\x1c\xbe\xc6\x9c\xf8\x6c\xb8\xe2\x61\x65\x38\xa2\x29\xdc\xe1\x6c\xa7\x47\x63\x63\xdc\x04\xd8\x4a\x76\xb6\x42\x9a\x31\x3e\xac\x6c\xc5\x11\x26\x87\x3b\x38\x65\x38\x64\x59\x47\xf0\xaf\x12\x13\xd2\x89\x12\x01\x66\x5f\x84\xb6\xb4\x1f\x6a\x71\x29\x42\x15\xe1\x6c\x0d\xe2\x2b\xe4\x8e\x1c\xaa\x2a\xc9\xa1\x61\x47\x8d\xc9\x4d\x02\x48\x02\x1b\x17\x94\x7a\xba\xba\x49\x35\xdd\xc2\x58\xd6\xd1\xfd\xc8\x73\xfb\x85\x0b\x9a\x3e\x9e\xe0\xc4\xe0\x84\xb1\xc3\x72\xc4\xda\xb8\x3d\xf0\x8e\xc1\x02\x6f\x3c\x5b\x2d\xb8\x39\xe1\x5f\xe9\x67\xe0\x46\x28\x25\x9f\x2f\x64\x43\x26\x8d\x88\xeb\x23\x61\x99\xea\xb3\x1d\xba\x7c\x61\x84\xff\x43\x31\xe6\x88\xac\x7d\xc1\xf8\x59\x9d\xf8\xf7\x96\xf9\xf0\xb6\x40\x97\xea\x87\x4d\x93\x66\x86\x87\x1c\xca\xc7\xdc\xdf\x10\x6a\x29\x30\xb5\x9f\x1c\x8f\x66\x5d\x9d\x4c\xa8\xaa\x32\x3f\x6a\x5b\x1b\x26\xb0\xca\x8c\x86\xfa\x19\xa1\x71\x64\x77\xd1\x48\xed\x92\x8d\x1b\xdb\xca\x74\x98\x5b\xda\x2d\x20\xdd\x11\x70\xc1\xc3\x49\xa5\xfe\xbb\x8f\x6c\xb6\x48\x79\x18\xdd\x36\xa8\xe6\xf2\xbf\xa8\xbd\xfc\xdf\x83\x4b\x52\x93\x65\x5c\x9b\xe5\x9d\x9f\xa5\x1e\x85\xf8\xcb\xcf\x12\xd5\x66\x79\x25\xad\xb1\xa4\xa5\xff\xb0\xbb\xa6\x0b\x85\xb7\x4d\xd4\xbf\x48\x33\x52\xa6\xec\x66\x1e\xa6\x5f\x82\x25\x9d\xf3\x30\x5b\xa6\x3c\x58\xae\x61\xf3\xd4\xf2\x82\xaf\x63\x11\x25\xd7\xcd\x26\x5e\x30\xfd\x49\x68\x6d\xbe\x28\x19\xc3\x24\x35\x9b\x78\xc2\x6c\x60\x4b\xde\xc1\x52\xc2\xc5\x7d\x72\x91\xf1\xf4\x8a\xab\xdb\x21\x62\xd5\xc8\x2d\x65\x17\x3c\x05\x21\x1f\x31\xe6\xcd\x26\x9e\x32\x2f\x6c\x59\xc5\x7f\x48\x72\x03\x22\xd7\x17\x0c\x2f\x3a\x22\xbc\x8a\x2f\xd5\xf2\xca\xf3\x9b\x35\xe9\x2c\x33\x9e\x1e\x5d\x72\x21\xe9\x9c\x39\x14\xea\xa2\x8f\x50\x70\x41\x07\x6c\x41\x2f\xd9\x84\x5e\xb1\x88\xae\xd8\x94\x1e\x31\x3c\xe8\xd8\xbe\xd0\x9d\x9d\x4b\x17\x30\xaf\x16\xcd\xa6\x8a\x9c\xf2\x30\xaa\xbf\xb4\x2f\x3b\x61\x14\x3d\xbb\xe2\x42\xbe\x8e\x33\xc9\x85\xea\x6a\x7d\xbe\xd2\x63\x08\xa1\xd7\xec\x3f\x73\x87\xaa\xa2\xc1\xe9\xab\x67\x88\xe4\xb9\x1f\x77\x96\xc6\x11\x17\x72\x0f\x11\xfa\x8d\xf5\x0e\xe8\x39\x43\x93\x10\xd1\x13\x86\xb2\xab\xcb\x76\x2c\x66\xb1\xe0\xed\xb6\x8a\x3a\x63\x28\x0a\x65\xd8\x9e\x84\xed\x78\x3f\xbb\xba\x44\xf4\x6b\x11\xb3\xc8\xf8\x32\x4a\xda\x5c\x57\x8c\xe8\x9b\x6d\x49\xed\x05\x87\x07\x7b\x44\x5f\x9b\x2c\x8b\x94\x4f\xe2\xaf\x88\x3e\x33\xe1\x78\x9c\x08\x44\x4f\x19\x9a\x24\x42\x86\xd7\x3c\x4b\xe6\xdc\xd6\xf8\x6f\x86\x80\xd2\x47\xf4\x29\x1b\xa2\x97\x67\x83\xd7\x88\xa2\x97\xcf\x8e\x8e\x11\x45\xa7\x67\x1f\x5f\x3f\x53\xbf\x4f\xdf\xbd\x7a\x7b\x86\x46\xb4\xa4\x49\x0f\x87\xaa\x51\xec\xf6\xe6\xd7\x44\xf5\xe0\x09\xe0\x03\xbb\x99\x84\x59\x80\xb2\x64\x16\x47\x88\x4e\xc2\x34\x40\x29\xbf\x5c\xce\xc2\x54\x85\x66\x01\x9a\xc5\x97\x53\xa9\xbe\xa3\x00\x45\xcb\x44\x82\x99\xf7\x49\x78\x11\xa0\x8b\x34\x04\x0f\x9a\x93\xd0\x96\x5f\xd3\x63\x76\x03\x9f\x01\x9a\x84\x19\xa2\x06\x94\x0a\xa5\x88\x02\x28\xf5\x3d\x43\xd4\x80\x82\x07\x49\x44\x35\x28\x15\xb8\x40\x6b\xfa\x8b\x9a\x90\xf6\x2c\x5c\xf1\x34\x6b\x4b\xfe\x55\x22\xfa\x96\xed\x3d\x4f\x84\x6c\x1c\xe9\xc1\x69\x3c\x6c\xe0\x53\x55\x4f\xfe\x4e\xd7\x90\xbf\x56\xb0\xf3\x63\x0d\x35\xff\x05\xe0\xe5\xcf\x53\xce\xf3\xb7\x69\x42\xf6\xe8\x3b\x76\xf3\x73\xb7\x6b\x9a\xf5\x40\x7f\xa5\x88\x6a\x59\x0b\x13\xb8\xaf\xa3\x67\x68\x4d\xff\x64\xc3\x1e\xdd\xa7\xf7\xe9\x03\xfa\x90\x1e\xd0\x47\xf4\x27\xfa\x33\xed\x75\x47\xf4\x2f\xf6\xa7\xc5\x21\x86\xbd\x1e\xed\xed\xd3\xde\x7d\xda\x7b\x40\x7b\x0f\x69\xef\x80\xf6\x1e\xd1\xde\x4f\xb4\xf7\x33\xdd\xef\x8e\x08\x7d\xc5\x86\xfa\xd9\x51\x7b\x80\x2e\xe6\xdd\x9f\x75\xb7\x68\x64\x1a\x8a\x4c\x6d\x48\x2f\x6e\x1e\x66\x5f\xd0\x88\xbe\x67\x37\x2f\xde\x9d\xbc\x7f\x1b\xa0\xcb\x34\x59\x2e\x10\x3d\xfd\x70\xf4\xf6\xfc\xe4\xed\xd1\xd3\x57\x67\x1f\x03\x94\x5d\x87\x8b\x76\xb2\x08\xc7\xb1\x5c\x21\xfa\xf6\xdd\xab\xc1\xd1\xbb\x8f\x01\x5a\xa4\xf1\x3c\x4c\x57\x88\x6a\x91\x00\x88\xd3\x82\xa6\x2a\x76\x4d\x5f\xb2\x21\xfa\x0a\xae\x82\x55\x95\xb3\x4b\x44\xd1\xe4\x1a\x51\xb4\x9c\xa9\x60\x8c\x28\xba\x48\xd2\x08\x7c\x63\x2f\x96\xb3\x59\x7b\xc6\x27\xd2\x7e\xa7\x7a\x55\xa0\x6c\x11\x0b\x1d\x97\x71\x44\x51\x9a\xc8\x50\xf2\xf6\xcf\xdd\xe2\xbb\xf7\x93\x17\xd8\x7f\xa4\x02\x93\x59\xbc\x68\x4f\x93\x34\xfe\xa6\x96\xfb\xcc\xc6\x5c\xf1\x54\xc6\xe3\x22\x7c\x91\xc8\xa9\xaa\x42\x86\xe3\x2f\xf6\xb7\xdd\xfb\xea\x3e\xf7\xbf\xc2\x9b\xed\x15\x4f\xa1\x6e\xbd\x5e\xdc\x87\x59\x38\x36\x34\x4e\x96\x02\x64\xda\xde\x77\x60\x28\xe9\xfb\x8e\x3f\x88\xf4\x7d\xc7\x8c\x9b\x4a\xb0\xe3\x35\xb2\x53\xfd\x67\x67\x1e\x2e\xea\xb0\x41\x84\x6c\x16\x4e\xd1\x57\xa4\xb0\x38\x62\x63\xfe\xda\x5a\xe8\xba\x5d\x14\x83\x22\xf4\x39\x1b\x74\xd4\x02\x37\xeb\xfb\x29\xe0\xdb\xea\xd8\x55\xf4\xea\xe5\xb6\xa3\xef\xdf\x4b\x9e\xae\x4e\xf9\x8c\x2b\x8a\x86\xdc\x0c\x87\x76\xe1\xcc\xe3\xd9\xaa\x58\x6d\x3a\xfc\x56\x07\x47\xd4\xe4\x32\x14\x24\x9c\x50\x76\x95\x7a\x71\xfa\x25\xdd\xe5\x0e\x97\x32\xb1\x45\xda\x70\x30\x21\x15\x65\x1e\xdd\x4e\xaf\x2e\x2b\x59\xc3\x28\x6a\x8f\x01\xa6\x0a\x1e\x45\xd1\xd3\x0d\x68\x61\xaf\xb7\xb2\xe9\xea\xd3\xa5\x66\x3c\x4c\xc7\xd3\xca\x29\x0a\x0b\x15\x12\xde\x42\xfc\x33\x1b\xed\x8a\x25\xfa\xfa\x6b\xcf\xcd\x75\xa8\x4a\x98\xb8\x81\x8b\x72\xb9\x21\x17\x6f\x87\x8b\x45\x9a\x84\x63\xb5\xd0\x74\xcc\x91\x8d\x70\x39\xbf\x70\xbe\x68\x27\x69\x7c\xa9\x50\xd0\xb6\xb6\xf7\x85\x28\x52\xd1\x27\x26\xf6\x54\x47\x16\xc0\x35\x7a\xd0\xf6\xae\x58\x55\x81\x8e\x7d\xeb\x45\x16\x7d\x9e\x26\xd7\xed\x79\x9c\x65\xb1\xb8\x84\x93\x01\xfa\x3b\x4d\xae\x07\x3a\xee\x15\x44\x8d\x46\x35\x74\x84\x7b\xc0\x52\xc4\xc2\x3e\xa1\x82\xc9\x61\x57\xe1\xf9\x72\xd8\x1b\x95\x18\x55\xc5\xaa\x35\x2a\x32\x93\x50\xed\x5b\x63\x6d\x19\xc9\x74\xc9\x4d\x8a\x42\xfb\x36\x2b\xa8\xac\x38\x8c\x34\xd1\x03\x6e\x3e\xd0\x48\xbf\x72\x39\xeb\x1c\x40\x22\x1d\x49\x99\xc6\x17\x4b\xfd\xa6\x89\x85\xc2\xb3\xec\x53\x63\xd2\x6c\x1a\xf6\x79\xd2\x6c\xe2\xe7\xc3\x74\xc4\x12\xa0\x82\x54\x5d\x7f\xb0\x0c\xdf\xac\xe9\x8d\xbf\x74\x83\x73\x5a\x5d\x9f\xc1\x09\x2d\xaf\x42\x45\x9c\x16\x0b\xce\x85\x7a\xbd\x95\xfa\xae\x5b\x3f\xc1\x4e\x8f\x56\x57\x89\xca\x5b\x5e\x0d\x81\xbd\x84\x37\x67\x1d\x32\x6f\xcc\xac\x02\x5b\x9d\x3e\x45\x2d\xd3\xe7\xe4\xf0\x8f\x4e\xb9\xd1\x79\x8e\xff\xe8\x54\xdb\xc0\x76\x7a\x1a\x29\xfd\xa8\x87\xe2\x0f\x72\x58\x73\x44\xb0\x8f\x90\xe7\x05\x1b\xc0\x61\xf1\xa2\x73\x7e\x7e\xfe\xfc\xe4\xcd\xd9\xf9\xd1\x87\x67\xa7\x27\x83\x67\xe7\xe7\xe7\x79\x8e\xeb\xa2\xd9\xcd\x9a\xd0\xba\x84\x4e\x26\x57\x33\x9e\x6d\x29\x66\x52\xb7\x97\x86\xc7\x87\x6d\x85\x21\xf1\x96\x9a\xa7\xf1\x7c\x7b\xc5\x2a\x91\x0d\x47\x7a\x54\x7e\x63\x75\x99\xe8\xef\x8a\xc2\xfd\x81\xed\xf4\x0a\x66\xee\xaf\x6a\xfd\x1e\x35\x9b\xf8\x87\xbe\x71\x3f\x95\x2c\xd5\x71\xdd\x25\xc1\xef\x9a\x72\xe5\x84\xac\x55\x06\xfc\x03\xc3\x1b\x88\x6a\x27\x4a\x4e\xc7\x69\x32\x9b\xf5\xf7\xfe\x35\x4b\xc2\x88\x47\xf9\xbf\xc6\x7b\x41\x11\x88\x55\xd8\x18\xe3\xbb\xec\x28\x92\x67\x05\xaf\x2a\x84\xe4\xf9\x26\x16\x8b\xd1\xf1\xc9\xe0\x69\x22\x24\xc8\x9f\x2a\x08\x1e\x4d\x02\xa2\x25\x0a\xc6\x3c\xb9\xe2\xdf\x2d\xc6\x09\xfd\x81\xf5\xe8\xef\xdb\xae\x19\x05\x6d\x0d\x02\xe5\x7a\xc8\x3e\x51\xce\x19\x72\xc8\xa8\xe4\x0c\x65\x5c\xca\x99\x82\x25\x38\x43\x93\xe5\x6c\x12\xcf\x20\x98\x72\x86\x52\xae\xa8\x45\x15\x4a\x78\x99\x2e\x8a\x39\xab\x25\x30\x78\xb3\x59\x1f\xaf\x48\xce\x31\xcf\xb2\xfa\x7b\xcc\x25\x77\xf8\x3c\x96\x34\x2c\x41\x2f\xb2\xa5\xde\xf4\x05\x29\x05\x63\x3b\xc5\x2c\x8f\xd5\xd0\x59\x72\x9b\xb3\xee\x21\x7f\x9c\x39\xca\x9a\xb7\x5a\x24\xe3\x43\x3e\x1a\x76\x47\x58\x7f\xf4\x46\xe4\x50\x9b\xf2\xf9\xc4\x76\x7a\x1e\x79\xaf\xbd\x25\xde\x64\x5c\xaf\x8d\x21\xa7\x72\x44\xe8\xa7\x3c\xc7\x9f\x98\x3a\x4e\x38\x1e\x73\x10\x80\x77\x45\x96\xdc\x97\x21\x48\xae\x05\x4f\xd5\x19\xdc\x39\x07\x69\x03\x75\x0e\x6b\x45\x2b\x9a\x00\xf3\x1b\x24\xe1\xe4\x94\x8b\x6d\x0f\xf2\x09\xb9\x11\x4c\x70\x20\x2c\x53\x96\xe0\xd4\xa7\xce\xa6\x1c\xc7\xf4\x0f\x49\xd6\xeb\x85\xfa\x4a\x49\x9e\x63\xc1\x18\x13\xbc\xd9\x9c\xe8\x18\xaa\xc2\x29\x6f\x36\xa7\x3a\xec\x35\x75\xc1\x3d\x66\x10\x54\x10\x4f\x30\x07\x4e\x78\x2d\x55\x7f\xd4\x58\xa4\xc9\x3c\xce\x78\x06\x2f\xb2\x17\xe1\xf8\x4b\x63\xac\xdf\xdf\x9c\x46\x50\x28\x1b\x59\x38\xe7\x36\x67\xc7\x5c\x03\xea\x42\xa9\x7b\x15\xcc\x73\xcf\xb7\x63\x82\x25\x21\x8e\x53\x7a\xeb\xa8\xa4\xce\xee\x8c\x35\x51\x5b\x2c\xf9\x94\xdc\x08\x18\x87\x9d\x2e\x95\xaa\xf3\xfd\x88\x03\x5f\x3a\x98\xe8\x5f\xb2\x26\xb4\xc4\x78\x73\xd9\xa7\x7a\x44\x40\xed\x62\xa7\xbb\xde\xa0\x93\x1a\x22\xcf\x21\xcf\x1f\x12\x32\x38\xea\xc9\x8d\xe9\xc4\x8c\x29\xdf\x01\x73\x3b\x0b\xeb\x82\x33\x32\x7e\x37\x5d\xc6\xc8\x66\x34\x2b\x43\xdd\xb4\x60\x4c\xdb\x86\x25\xd7\x56\x1b\x64\xc8\x24\x9d\x71\x3c\x07\xaf\x0c\x05\x80\xe9\xdf\x05\x30\xa8\x00\xb8\x80\x95\xca\x3b\xe7\x6a\xa0\x99\xf9\x75\x18\xc5\xd2\xe7\x6f\xcf\x6d\x56\x0d\x59\x70\x7a\x51\x96\x4b\x1a\x70\x35\x8e\x76\x95\xb3\x14\x32\xa8\x31\x92\x9d\xf3\x69\x28\xa2\x19\x8f\x9a\xcd\x18\x84\xbd\xfc\xed\x8d\xd1\x52\x98\xe4\x77\x70\xc0\x80\x79\x6e\xbb\x43\xfc\xe1\xba\x84\x0a\xaa\xa5\x53\x5b\xe8\xa5\x06\x82\x4a\x65\xae\x38\xde\xfe\xbc\xcc\xeb\xd7\xf8\x5b\xbd\x6e\x1b\x29\xcf\x92\xd9\x15\x4f\x1b\x80\xcd\x34\xe2\x0c\x1e\x8a\x43\xc7\xe4\x33\xeb\x7a\x1a\x67\x8e\x8b\x95\x4c\x1a\x57\x6a\x16\x76\x7a\xf5\xa0\x9f\x87\xf1\x8c\x47\x0d\x09\x22\x08\x9a\xcd\xd8\xf8\xd1\xd4\xf7\x63\x50\x52\x76\x9a\xf2\xc6\x8f\x82\x5f\xff\xd8\x48\x16\x9a\xa5\x47\xb5\x20\x80\x61\xe4\x79\x2f\x17\x76\x03\x16\x52\x12\x61\xe6\x35\x53\xed\x3f\xfd\x5e\x0c\x93\x3c\x1c\x6d\x97\xe5\xe4\x70\x9c\x48\xca\xc9\x5a\x1d\x05\xbc\x7c\x89\x4c\x4c\x12\xa1\xc2\x3f\x80\x04\x86\xd3\xc7\xda\x40\x5f\x5f\xf9\x6f\xb4\x37\x5e\x3b\x83\x2b\x4e\xf5\xe2\x08\x38\xa7\xd0\x1a\x10\x2d\xa3\x30\xd5\x81\xc6\x03\xa9\x5d\x2b\x0a\x5f\x82\x2c\x75\x5c\xeb\x1b\x38\x54\x8d\xb3\x6e\x80\xc3\xaf\x1b\x55\x99\x37\x9c\x70\x42\xdd\x1d\x16\x70\x6a\x2f\xb0\x40\xae\x9d\xb3\x92\x66\x73\xc7\x19\xf7\x35\x35\x3b\x7b\x3d\x26\x5c\x08\xa0\xd9\x4d\xa6\xce\x52\xb5\x92\x67\x1c\x5f\x9a\x6e\x93\x4a\x16\xe1\xa0\x16\x85\xfa\x33\x8e\x97\x9c\x0a\xeb\x92\x04\x36\x1b\x5c\x2a\x82\x50\x01\x87\xdd\x9a\xc2\xc0\xd6\x3d\x66\x41\x19\x95\x47\xeb\x0d\x81\x7a\xf4\x15\xef\x84\xb3\xd9\x86\xae\xe6\x06\xdf\xb9\x76\x31\x7e\x4c\x96\x8d\xf9\x32\x93\x8d\x45\x98\x65\x8d\x50\x34\x40\x0a\x5e\x2d\x4e\xb3\x22\x15\x6c\x4c\x3a\x85\x9d\x71\x05\xe0\xca\x5f\x15\x9e\xcc\xc2\x50\x51\x16\xdd\x43\xff\x3d\xac\xb0\x0c\xd2\x6a\x15\x8b\x4e\x90\x9b\x54\xab\xec\xb4\xdb\x49\x9e\x4b\x0c\x0f\x54\xde\x63\x43\xf7\x30\x2b\x78\xe0\x59\xab\x45\x70\xc8\xf8\x30\x1b\x91\x7a\x6c\x21\x84\x41\xe9\xeb\x1f\x1c\xe3\x8c\x80\xad\xf2\x61\x36\x62\xe1\xa1\xad\x80\x10\x18\xac\x34\x1c\x6f\x6a\xb6\xfe\x4f\x8d\x96\x02\x7e\x87\xe1\x72\x92\xcc\x54\x1b\x79\x77\x5d\x4d\x54\x57\x53\xc6\x87\xc9\xb6\xae\xa6\xba\xab\xfa\x47\xdb\x64\x2f\xf5\x4e\x1f\x58\xb5\xea\xc8\xcd\x66\xe9\x96\xd5\x1e\xf1\xcb\xcf\x9f\x57\xbc\xcf\x83\xcd\x36\x93\x1b\xc3\x94\x30\x75\x94\xdd\x9f\xf2\x92\x4b\xd1\xcd\xde\x0a\x53\x16\x10\xce\x15\xaf\x7d\x00\x36\x03\xd8\x37\xbf\xea\x9c\x38\xe2\xec\x1b\xbd\xe6\xec\x26\x8b\xbf\xf1\xa0\x77\x40\xbf\x06\x5d\xba\x0a\xba\x54\xf3\x8d\x82\x2e\x9d\xcc\xe2\xc5\x9f\xea\x90\x50\x1f\x1f\x83\x1d\xdf\x3c\xcd\x37\x7b\xea\xf3\x66\xf3\xa8\xa0\x55\xcb\x52\xf2\x08\x08\x17\x90\xe5\xc9\x7c\xba\x14\x81\x88\x0f\x45\x92\x7f\x95\x7b\xe3\x2c\x43\x04\x44\x1d\x04\x4f\x5f\x9e\x0d\x5e\x33\x5e\xf8\x95\x66\x9a\x5f\xad\xb5\x12\xde\x24\x11\xcf\x68\xaa\xdf\x05\x12\x66\xdf\xbb\xda\xbd\xc3\xe4\x89\xfa\xd7\x6e\x5b\xb1\x0b\x31\x4c\x46\x34\x64\x38\xee\xc8\xf0\x52\x0b\xe0\x69\x5b\x5c\x9e\x15\xfc\xc3\xa1\xe3\xe5\xbe\x7e\xf5\xe6\x37\x34\x72\xdc\xea\x90\x3c\x69\xf7\xe0\xed\x32\x76\xef\x83\xa6\x1d\xb1\xc8\x78\x6a\x64\x9e\xb0\x54\x88\x1f\xd7\xd6\x85\xce\x39\x43\xdd\xde\xfe\xfd\x07\x0f\x0f\x1e\xfd\xf4\x73\x78\x31\x8e\xf8\xe4\x72\x1a\xff\xf5\x65\x36\x17\xc9\xe2\xdf\x69\x26\x97\x57\xd7\x5f\x57\xdf\x8e\x7e\x79\x7a\xfc\xec\xf9\x8b\x97\xaf\x7e\xfd\xed\xf5\xe0\xcd\xc9\xdb\xdf\xdf\x9d\x9e\xbd\xff\xe3\xc3\x9f\x1f\x3f\x79\xb2\x30\x27\x65\xc4\xba\xb7\xaf\x1d\x86\xf2\x76\xbb\xf1\xa4\x7b\x48\x64\x8b\x9d\xf3\xe1\xc1\xfe\xae\xb6\x68\x11\x8a\x28\x99\x63\x92\x77\x0b\xbb\xfe\xc5\xed\x7c\xc6\xcb\xcf\xc2\xc3\x11\x15\x0c\xf3\x3c\x1f\x8e\x88\x19\xbf\x27\x4f\x9e\x74\x0f\x45\xbb\x7d\x48\xa4\x15\x16\xa9\x01\xf4\x95\x97\xcc\xfc\x03\xf7\x4a\x51\x4a\x7d\x55\x43\x11\x24\x01\xe6\x65\x26\x84\x61\xc7\x12\x3d\x05\xd9\x62\xa6\x50\x8a\x06\xba\xf5\xbd\x97\xaf\x7d\x14\xea\x0d\x2f\xbb\xb0\x97\x16\x4a\x1b\x11\x9a\xb0\x74\xd8\x55\x08\x7e\xea\x5c\x0f\x74\xfe\x4a\x62\x01\xa9\x4e\x6a\x67\x47\xf3\x5e\xd4\x8e\x88\x01\x0d\x8d\xe9\x7f\x5e\x7a\xd2\x35\xc6\xe3\x5a\x5c\x54\xfa\x9a\xd7\x72\x1c\x3d\x6b\x42\xcd\xbd\x4b\x8a\x9a\xe1\x7c\x71\xe8\xd9\xcf\xdc\x43\x10\xfb\xef\x65\x22\x4b\xd1\x3f\x42\xf4\xff\xb9\xff\x73\x29\xf6\x31\xc4\xce\xca\x59\x9f\x40\xe4\xa5\x8a\x2c\x9a\xf3\x8c\x6f\x3e\x87\x6b\xa9\x26\xfd\x50\x94\xf2\x68\x39\xde\x38\x1a\x9c\xa5\x92\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\xa2\x8e\x90\xaa\x8a\x50\xe4\x57\x78\x5a\x9e\x6f\x75\x48\xec\x30\x76\xad\xbf\xf2\x9c\x77\xbe\xea\xe0\x57\xf5\xbd\xd2\xdf\x2b\xf5\xad\x8f\x0f\x1d\xa1\xbf\x55\x2c\x9c\x25\xf6\xe3\xa3\x67\xbe\xac\x44\xc8\x39\x7e\x3c\x28\x32\x19\x19\x52\x9e\x7e\x88\x23\x39\xa5\x29\xe3\x9d\x78\x9c\x08\x1d\x4a\xd8\x8d\xcb\x1d\x20\xf8\x9c\x85\x6a\xb9\xb9\x8e\xee\xed\x53\xd4\xd8\x7f\x78\x40\x10\x59\xd3\x98\xd5\xe5\xb9\xbf\xbf\x2b\x3b\x5f\x29\xa2\xde\x88\x40\xdc\x8a\x22\xd2\x40\x84\x86\x0c\x65\xda\xc7\xac\x4d\x96\x30\x00\x7b\xbd\x83\x5d\x2c\x75\xaf\xfa\xed\x5e\xd0\x23\x65\x20\x1b\xb9\x3e\xda\x5c\x00\x36\x63\x86\x3b\xef\xc3\xd5\x31\x14\x35\xba\x8d\x2e\x71\x6b\xf7\x26\x59\x4a\x9e\x06\x89\xd6\x60\x0b\xfc\x4e\xbb\xb2\x31\x45\x5e\xdd\x61\x29\x94\x91\x35\x5d\x84\x72\x1a\x7c\x67\xb8\xd2\xbd\xfd\xdd\x76\x8f\xa2\x46\xdb\x0c\x99\x3e\xd7\x9e\x72\x76\x63\x2f\x86\x6b\x35\xf0\x01\xea\x75\xbb\xf7\x10\x9d\x72\xfd\xb2\x04\x21\xef\x62\xf8\xe2\x4d\xe8\x0e\xae\x4a\xa0\x3c\xe9\x79\x8a\x0f\x85\xbc\x49\x6f\x44\xf2\xdc\x0f\x16\x46\xf7\x42\x7b\x90\x64\x40\x75\x15\x41\x75\x7e\xcc\xf2\x1c\xdc\xc6\x6c\xc4\x33\x74\x31\x0b\xc7\x5f\x10\xf1\x25\x64\x3e\x94\xd6\x1a\x30\x7c\x81\x69\x30\x0f\x63\x7d\xac\xcc\xc3\xec\x0b\x4d\x40\x29\x81\x4f\xe2\xaf\xc0\x35\x50\xd9\x40\x55\x2e\x2c\xad\xcf\x31\xe3\x1d\x2d\xae\x04\x5a\x73\x32\x96\x33\x0e\x2a\x73\xfc\xab\x4c\x43\xba\x60\xbc\x73\xad\xd0\xcc\xf0\x62\xc6\xe9\x84\xb9\x3e\x2f\x9a\xcd\x05\x8d\x58\xda\x99\x24\x4b\x11\xf5\xd3\x40\xd0\x29\x8b\x3a\x30\xb4\xf4\x82\x45\x1d\x3d\xae\x74\x0e\xef\x71\xde\xa3\x45\x61\xfd\x6f\xba\x77\xb1\xdb\x3b\x20\x84\x0e\xd8\xf0\x63\xa7\xca\x9e\xa5\x71\xbf\x58\x18\x1f\x3b\x3e\x33\x97\xaa\x23\xd1\xad\x19\x30\x81\x36\x1f\xdd\x72\x0c\xb7\x7b\x8c\xb1\xa5\x3e\xdb\x79\xe6\x4e\x4b\xc0\x36\x2c\x18\x97\x6c\x4f\x5d\xb5\xbc\x2f\x59\xa1\x0a\x3a\x1c\xd1\x62\x6e\x02\x60\xab\x2e\xbd\xd9\xa2\x37\xa5\x67\xba\x20\xf1\x1f\xea\x82\x58\x6b\x78\x06\x03\x9a\x26\x33\x1e\xf8\x05\x3b\x2a\x26\xcf\x51\x3c\xbf\x44\xf4\xeb\x7c\x26\xb2\x00\x19\xd7\x55\xd7\xd7\xd7\x9d\xeb\xfb\x9d\x24\xbd\xdc\xdb\xef\x76\xbb\x7b\xf0\x74\x72\x15\xf3\xeb\x5f\x92\xaf\x01\xea\x36\xba\x0d\x37\x40\xd3\xd2\x5e\xb9\x20\x6b\xb2\x3e\x9c\x34\x9b\xf8\xd2\xab\x69\x78\x36\x62\x08\x11\x3a\x6b\x36\x2f\x9d\x7a\xa4\x26\x2a\xb4\xbe\x27\x4c\x3e\xf2\xbb\x79\x13\x47\x41\x09\x04\x0a\xd3\x38\x6c\xcf\xc2\x0b\xae\x08\xa5\x0b\x30\x36\xa2\xcb\x15\x33\xac\x6e\x7d\xb2\xa6\xc5\xc8\xcd\x46\x6b\xcd\x45\xbc\xd2\xec\xe8\x4b\x7a\xa3\x87\x49\x9d\x06\x66\x59\x06\x31\x55\xcb\x37\x10\x54\x2d\xde\x20\xa5\xc5\x2e\x0f\xa9\x5e\xa0\xc1\x98\x6a\x06\x72\xb0\x34\x9c\xe4\x35\xa1\x2b\xbb\x04\x9b\x4d\x61\xd6\xe2\xc6\xdb\x83\x3e\x84\xad\x3e\xa8\x3a\x7e\xbd\x79\x53\xdb\x04\x36\x4e\x0c\x1f\xd9\x97\x8d\x0d\x92\x98\x55\x3d\x63\x09\xec\x22\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\xbf\x39\xbe\xf1\xdb\x5c\x3e\xf4\x83\x25\x75\x47\x7e\x30\x5e\x13\x1a\x31\x3d\xe6\xa9\xc2\xb3\x37\x56\xd6\x53\x4e\x6f\xd4\xf6\x0f\xd0\xf5\x34\x96\x1c\xad\xc9\x9a\x4e\xd9\xcc\x75\xa2\xef\xab\x28\xbb\xa9\x9c\x87\x0b\xfc\x85\x93\x75\x70\xb3\xa6\x17\x06\xfe\xe5\x26\xf0\x89\x46\x51\x89\x37\x43\x5f\x38\xce\xf4\x22\x98\x81\xfa\x6d\xb5\xc8\xcc\x1f\xb1\x49\x47\x9d\xc3\xaa\x45\x84\x8c\xd6\x74\x7e\x5b\x4d\x70\xe8\xfb\x35\x5d\x8c\xd6\x74\xc0\x90\x1a\xe8\xca\x8a\xa1\x97\x0c\x8d\x67\xf1\xa2\x1a\x7d\x65\xe0\xc3\x7b\x76\xed\x48\xc5\x51\x30\x80\x65\x03\x46\x0f\x02\xb4\xcc\x78\x7a\xba\x08\xc7\xfc\x44\xbc\xcf\x38\x82\x24\xc3\xff\xae\xcf\xb1\xf6\x5b\x18\xd1\xf9\x68\x4d\x57\xa6\xd6\x88\x4f\x32\xe4\xa5\xea\x58\xd5\xce\xb7\xa1\x9c\x6e\x6e\x16\x6f\xdd\x63\xc9\x16\x14\x69\x57\x96\x6a\x54\xfb\xb2\x53\xc0\x91\x23\x45\x24\x8d\xd6\x8e\x00\xd4\x1b\x71\x45\xb7\x2f\x0b\xbd\x20\x40\xa6\x58\xc8\xa7\xc9\x2c\x49\x41\x35\x39\x5e\xb4\xd5\x7c\xa0\x00\x2d\xd3\x19\xfe\x3f\x6e\xf4\x2e\x29\x22\x88\xe8\xed\x54\x49\x1a\x40\x92\x1a\x3c\x85\x2e\x15\x6b\x49\xf8\x35\xa6\xeb\x35\xbe\x22\x75\xe6\x75\x8b\xbd\x24\xca\x7b\x29\xb5\x7b\x29\x29\x6d\xa1\x98\x29\xac\xcf\xec\x59\xe0\x84\x59\x21\xf1\x27\x5d\x90\x01\x84\x14\x16\x13\x7a\xca\x71\x62\x78\xba\x61\x65\x47\x25\xd5\x1d\x95\x9a\x3d\x58\xec\x2b\x13\xb3\x56\x74\x9a\x77\xac\xd5\x2c\xcc\x70\x73\x61\xde\x92\x77\x63\xbb\x40\xde\x14\x76\x3e\x6c\x17\x97\x62\xe2\xdc\xf8\x54\x61\x99\x74\x6f\xc8\x42\xb3\x99\x46\xeb\xd1\xda\xd8\x24\x31\x8d\xd7\x79\x1d\xfa\xe4\xea\x90\x3e\x54\x01\x93\x44\x8f\xd8\xaa\xa8\xf4\x9a\xad\xbc\x1a\xec\x02\xbb\x72\x19\xd8\x11\xbd\xf2\x32\xb0\x6b\x3a\xde\x3c\x33\x0b\xe4\x41\xf8\xc8\x43\xea\xcf\x7e\x52\x9e\xfd\xd8\xa1\x12\xa6\x4e\x33\xa6\x70\x6d\xf9\xfb\x04\xa6\x3b\x40\x46\xaf\x2c\x68\x88\x44\xf0\x43\xb4\xde\x98\x0c\x23\x46\xbd\x31\x8a\x09\x6c\x79\xf0\x38\xe1\x23\x09\xb2\x84\x17\xdc\x82\x32\x08\x12\xc4\xfe\x96\x4f\x61\xf4\xef\xb4\xd8\x0d\x8a\xc5\x0b\x14\xab\x3a\x00\xb0\xc8\xcb\x77\x88\x5a\xf1\xa7\x1c\x87\xc4\xdd\x51\xcd\xe6\x8e\xb9\xb6\xac\x9a\xdd\xcd\xd7\x40\xe8\xe5\xbb\x27\x0c\xee\xb4\xb7\x4f\x57\x41\xe7\xe1\xfa\x30\x31\x1b\xe4\x19\x9c\xd2\x6b\x1a\xd3\x1b\xe4\x80\x1b\xe9\x02\xe4\xa1\xd1\xe3\xce\xd7\x56\xd8\xf9\xba\xd7\x3b\xa0\x88\xcf\x3d\xbc\x60\xdc\x59\xb5\xc2\xce\xca\x24\x20\x4f\x6e\x78\xcb\x54\x25\xc5\x20\x49\x3d\x44\x05\x16\x7a\x5c\xc2\x42\xc7\xfa\x7c\x85\x41\xba\x76\x64\x8e\x41\x02\xab\xc7\x81\xc5\x33\x43\x87\x67\x8e\x4b\x78\xe6\xac\xc0\x33\xc7\xcd\xe6\x98\x2e\x99\xd9\x89\xfe\x60\xf7\x6f\x00\x48\x10\xc3\x7d\xa7\x4d\x17\x04\xa1\xc3\xf2\x1c\x16\xb7\x26\x87\xb3\x66\x13\x2f\x0d\xfa\x03\x88\xc8\xc2\x02\xb4\x67\x12\x1c\x3c\xcd\x26\x5e\x14\xed\xac\x71\x57\x58\x25\xec\x6c\x47\x9d\x44\xa3\xe8\x7f\x0b\xf4\xbe\x30\x3d\x8f\x8b\xb4\xa4\xff\x2d\x48\xa0\xcb\xe0\x69\xfc\xa9\xb1\xdf\x40\xb3\xa2\xb3\x61\xb3\xa9\x86\xa2\x30\x99\x3b\x6e\xb1\xac\xd9\xbc\xee\xd7\x11\x3a\xb2\xf3\x75\xef\x88\xb7\x53\x45\x1e\xf2\x79\x99\x68\x5b\xa9\x94\x58\xa7\x28\x42\x2d\xc8\x7c\x10\xe3\x70\x36\xc6\xed\x87\xdd\x7b\x8d\x56\xa3\x02\x0e\x0a\xd0\x46\x29\x47\x05\x2e\x64\x01\xa0\xdb\x5b\x55\xdf\x22\xdb\x1a\x3a\x6e\x6d\x23\x47\x8f\xf8\x5d\xc8\xd1\x22\x57\x99\x1c\x55\x70\xb7\xd3\xa3\x11\xbf\x54\xb9\xd6\xe5\x5b\xa5\x34\x19\xa0\x9f\x00\x77\x89\xb0\x84\x61\xba\x26\x74\x31\x44\xed\x6b\x7e\xf1\x25\x96\x9e\xa4\xdd\x88\x79\x8b\x85\x18\xfb\xca\xcf\x38\x5e\x90\xc3\x89\x7f\xbd\x19\x64\x95\x4d\x74\x9e\x88\x0d\x1d\x55\x18\xf9\xd7\x54\xb6\x08\x45\x69\xf3\x2d\xa9\x8f\x2e\xac\x09\x8d\x9b\xcd\xdb\x4b\x98\x4d\x80\xb2\xb4\x9d\x88\xd9\xaa\x74\xa4\xc6\x0a\x42\x54\x6c\xdf\x5f\xb6\x6e\x5f\xbd\x37\x53\xb7\x37\x13\x66\xee\x2e\x6f\xf7\x09\xbb\xfb\x84\xbf\xfb\xd2\xba\xdd\xa7\xaf\xff\xb4\xb8\xfe\xfd\xc1\x49\xdc\xdd\x7f\xa8\x2f\xfd\x62\x70\xc2\x5b\xbb\x9a\x54\x07\x47\x34\x9b\xb7\x97\xb8\x6d\x70\x84\x82\x10\x02\xa3\xe0\x6d\x45\x60\xe1\x1d\x67\x1f\x3b\x9b\x32\x3a\xcd\xe6\xaa\xd9\x5c\x75\xe6\x61\xfa\x05\x7e\x75\x86\xfe\x2a\xd0\x52\xde\x6f\xb9\x13\xf3\x7e\xcb\xd7\xf4\x4f\xce\x7e\x7c\x7e\xd4\x40\x0f\x3b\xbd\x5e\x67\x1f\xfd\x48\xff\x2a\xb3\xde\xdf\x71\x80\x84\x8b\x33\xfc\x4f\x5e\xa2\xe8\x54\x88\x83\x61\x77\x42\x55\x66\x0d\xfb\x96\xfc\x84\xde\x0a\xeb\x82\x5f\xc6\x02\xf4\xd2\xef\x50\xe3\x9a\xbe\xe2\xec\x06\x8a\xd4\xbd\x36\xdd\xa9\xf1\xb6\x42\x42\x6b\xe4\xec\xe1\x75\x78\x4d\xb9\x88\x82\xbf\xf8\x9a\xbe\xdf\xea\xb6\x54\x2b\xb5\x55\xb4\x21\xe9\x98\x59\xb6\x8c\x7f\x73\xf8\x3a\x60\x75\x7a\x30\x46\x4b\xce\xe7\x05\x1b\xf7\xb5\x26\x61\xbd\x06\xce\x78\x20\x35\x1b\xbf\x38\xe3\x71\xc2\x7a\x14\x1e\x9a\x86\xdd\xd1\x88\x04\x38\x61\x5d\x1a\x32\x41\x0e\x93\xc7\x63\x78\x9b\x09\xd9\x0c\x87\x94\x0f\x63\x96\x0d\x93\xd1\x88\xc6\x94\x3b\x1e\x6e\xe8\x31\x99\x5e\x56\xb8\xda\x08\x51\xad\x0d\xc6\x4b\xda\x60\xb2\xc5\x30\xea\x76\xbb\xa8\xc5\xc1\xf3\xc6\xd3\x24\xe2\x47\x0a\x8f\x71\x5a\x18\xb8\x77\x40\x88\x61\x1c\xb7\x1f\x14\x7e\xee\x8b\xfd\xfe\xdc\x67\x3e\xb3\x4d\x86\xd6\x7e\x2d\x43\x6b\xdf\xd7\xa6\xda\x1f\x05\x37\x6b\xd2\xc9\xbe\xc4\x8b\x97\x49\xf2\x25\x73\x37\x9f\x36\x04\xa2\x2e\x3e\x7f\x66\x64\x0d\x37\x97\x7b\x9a\xcb\x05\x7f\x7e\x67\x47\x23\xbb\x7d\x3e\x4c\x1d\xae\x39\x62\xfa\x3b\xe0\x43\x31\x62\x29\xe5\x8a\x54\x59\xfb\xca\x5b\xc5\xf3\xfc\x6f\x5a\x3a\xac\x13\x46\xd1\xdb\x70\xfc\x25\xcf\xd3\xfe\x6f\xe6\xc0\x19\xf2\x91\x3e\xbf\xbc\x88\x3c\x57\x58\x24\x09\x2a\xc5\x30\xa7\xa0\x8f\x1e\x5a\x0b\x74\xcf\x39\x06\xf1\x7e\x69\x04\x0b\x39\xb3\x40\xe8\x47\xf8\x9e\xc6\xf3\x8c\xbe\xe0\x4c\x81\x87\xff\xbf\xc3\xff\x1f\x36\xed\x2d\xd7\x3d\x83\xbd\xe7\xf8\x0f\x4e\x4b\xac\x6e\xb5\xd2\xed\xdc\x0d\xd3\x11\x7b\xcf\xb1\xa0\x5c\xf5\x9b\x4a\xdd\xff\xf5\xe1\x0b\xce\xca\x43\x5a\x62\x91\x0f\xef\x8f\xc0\x90\x91\xfa\x18\x31\x41\xd4\xb8\x11\xd5\xba\x9a\x32\x76\x22\xf6\x0b\x3e\xa5\x1a\x6b\xb1\x4d\xe5\x4c\x2b\xeb\x29\x78\xdc\xaa\xbd\x48\x06\xf2\xef\xb1\x68\xfc\xc1\x0f\x7f\xe7\xaa\xc1\x1f\x39\xad\x9d\x70\x31\xec\x8e\x68\xc2\xc4\xb0\x37\xa2\x31\x13\x45\xad\x00\x61\x87\xb1\x24\xcf\x65\x9e\x83\xea\x67\xa8\xce\x26\xb0\xc6\x54\xc7\x2a\x5a\xdb\xc5\xe0\x6d\xa5\x5f\xb9\xbf\xcd\xf1\x0b\x6e\xe6\x99\xa8\xeb\xe1\x07\x6b\x60\xf8\x93\x37\x85\xbe\x35\x66\x5b\xce\xd6\x06\x4f\x73\xae\x42\x08\xa5\x3c\x93\xc1\x70\xb4\xf6\xea\x94\xb2\xf4\xb6\x50\xb3\xda\xdd\x86\x7b\xc3\xab\x14\x89\x56\xbe\xfe\xa4\xc6\x94\x58\x62\x8b\x49\x50\xe4\x6d\xc4\x13\xfc\x11\x04\x3d\x9f\x73\x39\x9e\x9e\x5e\x5d\xfe\x7f\xe4\xbd\x09\x7b\xdb\x38\xb2\x28\xfa\x57\x64\xde\x19\x36\x11\x81\x34\xa9\xc5\x0b\x65\x58\x37\x5b\x9f\xce\x39\x59\xfa\x26\xe9\x99\xe9\xa7\x68\x72\x68\x0a\xb2\x39\x91\x41\x0d\x09\xc5\x49\x2c\xcd\x6f\x7f\x1f\x0a\x0b\xc1\x45\xb6\xd3\xd3\x73\xce\x79\xf7\xf5\xcc\x17\x8b\x20\x08\x14\x0a\x85\x42\xa1\x50\x8b\xeb\xce\xa4\xfb\x81\xf4\x36\x90\x7e\x10\xd2\xff\x01\x1c\x1f\xc4\xbf\xd6\xcd\x1f\x47\xe7\x7e\xd4\xd5\xaa\x99\x0c\x51\x5f\x10\xb9\xaa\x32\xfd\x3f\x62\xe6\xb7\xdb\xfd\xe3\x17\xfb\xfc\xa4\x3a\x09\x92\x6a\xa1\x6e\xb7\x0c\x9b\xae\x0a\xf5\x63\xbb\xd5\x45\xea\x50\x7b\x40\x48\x5b\xc9\xeb\xba\x82\x77\x54\xee\xe1\x4a\x57\x0c\x37\xce\x02\xdf\x72\x43\xb7\x62\x11\xef\x10\xa6\xdc\xb3\x2f\xd5\x18\xb7\x92\xc9\x53\xd7\x15\xf8\x94\xff\xce\xd8\x1c\xd5\x67\x95\x5b\x43\xc2\x8a\xb7\x40\x3d\xcb\xed\xb5\xe0\x5d\xb1\xe8\x6a\x4a\x0e\x6b\x2b\xb8\xdd\x29\x79\xdf\x9c\x12\x6b\x12\xff\x6c\x1e\xe7\x9a\xc8\x65\x48\xbe\x5a\x5e\x79\xb8\x9b\x8b\x9d\x33\xfb\x08\x6b\xed\x9b\xfb\x1d\x48\x7f\xe3\x8d\xd9\x0f\xc4\xf9\xc1\xb4\x2e\x3a\x17\x28\xc2\x3f\x38\xbd\x1f\xd4\xb5\x59\xc0\x8b\xec\xda\x43\x3b\xaf\x40\xd8\x39\xb7\x94\xec\xa0\x5b\x2c\xb8\x56\x8e\x0b\xc1\xe1\xec\xd0\x92\xcb\xa1\xb6\x4c\xb8\x51\x5b\x55\xd6\x62\xc9\xac\xc5\xd2\x42\x46\xe3\xb2\x75\xda\xb8\x7b\x7d\x8f\x80\x06\x65\x0f\x09\x27\xb7\x8a\x90\xba\x0e\xec\x82\xcb\x30\x42\x67\xd1\x7c\xaf\x71\x6b\xa1\xcc\x14\xd4\x68\x3e\x68\xfb\x2c\x15\xdb\xf5\x75\xbe\xa0\xae\xcb\xa5\x8e\xe8\xa7\xf7\xaf\x5e\x22\xeb\x37\x61\x7d\xef\xd7\xa0\x6d\xca\xed\xba\x70\x7a\x3e\x50\xca\x3e\x41\x64\xf5\x9c\x59\x53\xe7\xc3\x97\x61\x7a\xe0\xfb\xf6\x99\xcb\x34\x8b\x9d\x9e\xef\x7f\xf8\x32\xa4\x90\xd2\x05\x99\x05\x6b\xc3\xa4\xd7\xae\xb6\x32\x6e\x59\x29\x08\x91\x17\x94\x5f\xe6\x13\xbd\xe2\x9e\x0a\xf2\xf4\x0a\x0c\xa9\xa8\xac\xb1\xec\x76\x98\x09\xbe\x76\x27\x1e\x05\x6e\xfe\xf1\x85\x8a\x0d\x5d\x2f\xd4\xf6\x52\x36\x0e\xa0\x49\x15\x60\x80\x22\x1d\xcc\xd3\xca\xdd\xb8\xff\x52\x27\x78\xe4\x20\x34\x51\x51\x74\xc5\x6e\x61\x5f\x93\x00\xd3\xc6\x7b\x5e\x66\x8b\x89\x8c\x8a\xd8\x7c\x01\x32\xbf\x7d\x59\xdf\xcd\xa3\xf5\x6a\x21\x5d\x4c\x6a\xbb\xe5\xc1\x35\xd8\xb0\x15\x68\x0a\x8e\xaf\x9f\x2f\x35\x63\x8a\xc5\x33\x20\x5a\x15\xc8\x9d\x49\x96\xc5\xb3\x39\x86\xda\x62\xdb\x40\x93\x4e\xd8\x48\xae\x1a\x34\x27\x26\x95\x19\x88\x7d\x17\xf5\x36\x0d\x53\x94\x53\x4e\xae\xa1\x33\xad\x23\xdc\xa8\xfa\x5e\xe6\xaa\xb4\xcc\x56\x32\x7b\x8b\x83\xb4\x8d\xb7\xb5\xf4\x5e\x29\xb7\x37\xb6\x4e\x43\xdd\x29\x8f\x73\x2e\xc8\x06\xe2\x09\x6b\x87\x65\xe6\x59\x71\x2a\x0a\x52\xf2\xc9\xaf\x41\xdd\x55\x82\x10\xf2\x77\x30\x58\x79\x15\x14\xf4\xef\x1b\x5a\xf2\xc7\x2c\xbb\x06\xa7\x86\x1f\x0b\xd8\x6a\x4a\x41\xc1\x9e\xd7\x10\xaf\x38\x01\x6d\xe0\xaf\x0d\xe7\x88\x69\x45\x8b\x71\xc2\x67\xcd\xd7\xf3\xed\xb6\xaa\x80\x0b\xf2\x82\x06\x70\x4c\xf1\x94\x3b\x8f\x58\x86\x30\x0b\xd0\x27\xc2\x4c\xda\xc4\x03\x13\x5a\xf1\x9a\xa3\xc0\x86\x7b\xe8\x16\xca\xe0\xed\x9a\xcb\xb0\x69\x95\xa1\x2f\x57\x66\x46\x9f\x5d\xf7\xd7\x96\xbf\x86\xad\x5f\xa2\xf4\xa9\xb2\x96\x86\x8d\x87\xe5\x8b\xaa\x40\x9c\xc9\xd7\x35\x0f\x14\xf3\x4a\xec\x41\xcd\x66\xdf\xe6\x79\x43\x03\x75\x19\xe7\x13\x01\x1b\xbd\xe9\x7d\xae\xd3\xd6\x8a\x6f\xb7\x60\x63\xd3\xed\x24\x94\x2d\x3d\x19\xed\xf4\x65\x56\x72\x29\x38\x88\xb9\x16\xfb\x74\xb2\x58\x50\x69\xd2\x64\x1d\xec\x0f\x04\xb7\xb7\x5e\xcd\xc2\x39\x72\x5d\xef\xd7\xa0\xcb\x8d\xc6\x75\x0b\x4f\x6c\xb5\xc5\x25\xe4\x86\xac\x7e\x23\xec\x54\xeb\xa5\xde\xab\xac\x51\x63\xd8\xf7\x37\x6e\xf3\xd2\x7d\x4d\x67\x56\xff\xae\xfb\x8f\x17\xd5\x75\x71\xb5\x76\x05\x73\x47\x08\x70\x02\xeb\x0c\x3e\xaf\xbf\x55\x51\x5a\x39\xf7\xbe\x50\x7b\x40\x19\xc9\xb5\x62\x3d\x51\xf7\x89\xa2\xfe\x24\xb3\x06\x55\x5f\xca\x35\xef\xcf\x0c\xe1\xe4\xee\x9a\xd2\x33\x34\xd1\xf1\xcd\xab\xbe\xa5\x3b\x07\x7e\xec\xba\x6b\xae\x49\xc5\xcb\xd4\xed\x8f\x98\x56\xf0\x78\xaa\xf4\x25\x07\x21\x16\x67\xcd\x24\xe5\xb4\x78\x96\xf0\x04\x9c\xa0\x36\x17\x82\x42\x21\x74\x87\x25\x33\x2d\xb8\x75\xd7\x0a\x54\x7a\xb9\x77\x08\x08\x48\xb5\xe3\x3d\x00\x8e\x0c\xbd\x1e\x10\x1d\xb7\xf7\x3d\xfd\xc2\xa7\xd6\x6f\x25\xa4\xc4\x8e\x83\x13\x8d\x60\x64\x44\xc4\xc2\x75\x73\xd7\xf5\x12\x23\x90\xe2\xa4\x12\x5a\x73\x84\xf5\x0b\xd7\x35\x8a\xa8\x68\x6a\x55\xf1\x38\x49\x6a\x57\x1f\xba\x5b\xec\xfd\x87\x90\x16\xe5\x99\x82\xcd\x51\x5c\xb5\x14\x11\x42\x74\x6b\xd0\xb7\x69\xed\xdf\xa9\x81\x04\x8b\xc3\x7e\xd5\x1c\x42\x5a\xe3\x74\xc5\x3b\x54\xcd\x2d\x6b\xc6\x96\x11\xa3\xb1\x6f\x34\x77\x88\x74\xda\x10\x39\xee\xdf\xf8\x54\x24\xce\xee\xcf\x7c\x07\xe1\xea\xd8\xd6\x65\x96\x96\x2d\xbd\xc2\x75\x1d\x48\xa6\x95\x9b\x10\x22\x52\x7f\x4b\x0e\x42\x4c\x75\x8d\xcf\x1d\x35\x7e\x35\x35\x72\x62\x65\xbe\xc8\x11\xce\xca\xd7\xc9\x6b\x2f\xaf\x82\x92\x4c\x54\x1e\xac\x42\x65\xb7\xba\x2c\xf2\x1b\x27\x96\x36\x5c\x44\xfe\xe9\xe7\x93\x8b\x82\x26\x9f\x54\x16\xaa\xab\x22\x63\x9f\x1a\x55\xfc\x5a\x15\x70\x49\x8e\x69\xf0\x85\xd0\xe0\x4b\xfd\x95\xf4\x50\xd6\xef\xea\x2d\x6f\xd6\xe2\xc5\x57\x42\x83\xaf\xf5\x8f\x16\xf9\x0d\x33\xaf\xea\xdf\xc8\x99\x12\x2f\xe5\x2f\xa2\x7f\xf4\xf3\x9d\x75\xb2\xe1\x28\xe6\xd6\xd6\x7b\x61\x9d\x44\x60\x85\x81\x91\x8f\x75\x15\xc7\x35\x65\xe5\x84\xc3\x71\x09\x67\x9d\x97\x16\xf5\xc5\xa6\x6c\x59\x31\xb3\x74\xad\x5c\xe5\x78\x51\x13\x3f\xb9\x97\x5e\x54\xc5\xb8\x9b\x42\xec\xb5\x68\x6b\x7b\xe1\x40\x9f\x2b\xfa\x89\xcd\x71\x03\xe9\xe3\x3c\xc2\x6c\x27\xc6\x99\x74\x69\x4b\xae\x78\xcb\x22\xb3\xed\xfe\x8e\x20\xe4\x08\x2e\x1f\x80\x07\xfd\xb1\xba\x65\x6c\x46\xb6\x05\x27\x24\x90\x69\xb6\x5b\x2e\x5b\x4d\x3b\x5a\x05\xab\xd1\x8a\x6b\xde\x2d\x60\xaa\xed\x02\x58\x1b\x4b\xae\xe1\xcc\x00\xb3\x61\x95\x78\x74\xc6\xe1\xe7\x9c\x70\x1d\x15\x47\xa1\x07\xf8\x51\x7d\x10\xd2\x64\xc7\xc0\x2e\x25\x9c\xc7\x51\xf4\x55\x4c\xe8\x94\x77\xd8\xeb\x10\x5b\x00\x6f\x19\x5d\x39\xbe\x32\xe6\x41\x35\x23\x8c\xd8\xd3\x4d\x5d\x65\x8b\x05\x65\xa2\x19\xf0\xf8\xc5\x3c\x58\xe6\xe9\xa6\x84\x00\x53\xca\x25\x58\xc8\x98\x80\xaf\xd5\x77\xcc\x02\x58\x77\x98\x71\xf0\x29\x87\xcb\x9e\x8a\x7d\xed\xf5\x53\xd4\x47\x56\x84\x50\x4c\xb9\x07\x33\xa5\xef\xcc\xad\xd3\xbe\xbc\xad\xd8\x83\x3e\xac\xf4\x03\x9d\x56\x47\xa5\x34\xa1\x58\x61\xb8\x0d\x51\xd7\x08\x70\x03\xa1\xac\x91\x32\x7b\xd7\x4c\x77\xd6\xbe\x78\xcd\x4d\x00\x66\x19\x46\xcd\xf2\xe8\x75\xa4\x17\x88\x0a\xf1\x06\x56\xbd\xa2\xb8\xb7\x61\xc9\xe7\x24\x5b\x09\x84\x3a\x26\xf0\x70\xfa\x89\x78\x26\x82\x1b\x92\x25\xbb\x6b\xbe\x37\xc2\x21\xd4\xb3\xa3\x1c\xda\x75\x6b\xb6\xfc\xd7\x1c\xce\x1b\xaf\x38\xe9\xb2\x2f\xd9\xe1\x4b\x4e\x6e\xcd\xf0\xde\x7f\x5d\xd3\xd8\xf9\xcb\xab\x97\x0e\x2e\xe8\x9a\x26\xfc\x69\xbe\x61\x3c\x76\x32\xe9\x72\x99\x71\xea\xe0\xc5\xa6\x88\x9d\x41\xe9\xec\xf0\x67\xae\x6c\x68\xd6\x4d\x4b\x19\xd0\xc7\xbe\xe2\xf8\x76\x11\x3b\xaf\xa2\xf1\x51\x30\xc6\xa3\xd1\x71\x70\xbc\xf2\xa3\x41\x70\x84\x07\xa7\xc1\x38\xf5\xa3\x93\xe0\xd8\x3f\x0d\xc6\xfe\x70\x1c\x9c\xfa\x83\x28\x18\xf8\xe3\x48\x3c\x8e\x82\xd3\xd5\x60\x10\x1c\xfb\xe2\x9f\xa7\xd1\xe0\x38\x38\xc2\xa3\x61\x18\x8c\x71\x34\x8a\xa0\xa9\x10\x5b\x8d\x7e\xeb\xbd\x1a\x85\xa2\xd5\xe3\xc1\x4f\x27\xc1\xb8\x97\x46\xc1\x08\x8b\xe6\xf0\x38\x18\xe1\x51\x14\x1c\xe3\x48\xfc\x73\x14\x05\xd1\xcb\x71\x88\x87\xe2\xdd\xd3\xd1\x38\x88\xf0\x30\x1c\x8b\x56\xa2\xe0\x04\x0f\x4e\x4e\xb1\x6e\xc6\xb4\x38\x0a\x45\x63\x02\xd2\x13\x3c\x0e\x06\xfe\x10\x9a\x8a\xfc\xf1\x28\x88\x56\xbe\x18\x06\x0c\xa8\xf7\x34\x1a\x89\x5e\x4e\x47\xc1\x10\x47\x21\x1e\x44\x47\xc1\x31\x3e\x09\xc6\xa2\x85\x9f\x44\x53\xdf\x7a\xaf\x8e\xe0\xa5\x00\x3b\x3d\x0e\x4e\xfc\x68\x14\x9c\xe2\xe8\x38\x18\xf8\x83\x13\xe8\x3e\x88\x7c\x31\xba\x97\x47\xa7\xc1\x31\x3e\x1d\x04\xc3\xd4\x8f\x86\xa2\xd5\x71\x70\xe4\x0f\x04\x9c\xc3\x41\x70\x02\xd8\xc1\x02\x4f\xbd\x97\x55\x8b\xdf\x7a\xaf\x86\xa7\xc7\x78\x14\x9d\x06\x47\xf0\xd9\x29\x8e\x06\x02\xbe\x11\x1e\x0c\x82\xa1\x3f\x3a\x82\xc1\x06\xa3\x55\x14\x05\xa7\x02\xff\x27\xe9\x20\x04\xf4\x9f\xe2\xe1\x69\x70\x22\x50\x7d\x84\xc7\x47\xc1\xa9\x3f\x3c\x0e\x8e\x5e\x9a\xd6\xbe\xf5\x5e\x45\xd1\x58\xc0\x33\xea\xa5\xa2\x61\x3f\x1a\x88\xef\x47\xe2\x8b\x21\x16\x0d\xfb\xd0\xb0\x2f\x5a\xf6\xa1\x65\x5f\x34\x8d\x4f\x45\x5b\xa7\x62\x68\x83\xe0\xc8\x1f\x1f\x05\x27\x18\x9a\xd6\xcd\x09\x24\x8b\xe9\xc3\xc3\xf1\x58\x90\xc3\x71\x70\x82\x05\x52\x7c\x81\x14\x81\x8f\x13\x81\x99\x48\xcc\xce\xb8\x07\xf4\x20\x5a\x3a\x16\x40\x1c\xfb\x02\x29\x58\x20\xc5\x1f\x0e\xc4\x10\xc4\x77\x02\x29\x2f\xad\x26\x45\x07\xc7\x40\x0b\xc7\x83\xd4\x17\x3f\xc4\x3c\xfa\xe3\x60\x80\x87\xc7\x02\xdc\x08\xc3\x3c\x8a\x69\xc4\x30\x8d\xe9\x71\x30\x16\x84\x18\x89\xc7\x81\x3f\x1a\x8a\x17\xc3\xe0\xc8\x3f\x3a\x0a\x4e\x7e\x82\xc6\x04\xa6\x81\xb6\x46\x47\xa2\xd1\x71\x70\x8c\x01\x86\x01\x3e\x11\x5f\x9c\x06\x03\x7c\x1a\x8c\x3e\x0f\x07\x41\x94\x02\x49\x47\x8a\x06\x7d\x41\x8c\x82\x04\x45\xcf\xc7\x2f\x4d\x23\xdf\x7a\xaf\x06\xa3\x10\x43\xe3\xb0\x26\x4e\xc4\x27\xfe\x50\x7c\x30\x00\x42\x03\x50\xed\x95\x03\x10\x1e\x0b\xc2\x1d\x4a\xc8\x07\x58\x00\x08\xa0\xfe\x49\x43\x39\x3a\x1a\xe0\xe8\x34\x0c\x4e\xd2\x31\x06\x30\x4f\xc4\xb8\x07\x12\x3e\x2c\x00\xbd\x12\x40\xf6\x00\x33\x6a\xf5\x05\x23\x1f\x40\x15\x10\xfa\xb0\x5c\x4c\x2b\xdf\x7a\xaf\xc4\xa4\xe1\xe1\xe9\x71\xea\x47\x03\xa0\x31\x20\x01\xa0\x32\x20\x01\xa0\x32\x58\x15\x27\x62\x95\x9c\xa6\x82\xb8\x80\x14\x80\xb8\x80\x16\x04\x05\x00\x99\xf5\x5e\xea\xe6\x04\x02\x8e\x07\xb0\xf6\x52\x58\x68\x02\x63\xc3\x23\x41\xe5\x62\x09\x8f\xc4\x6c\x08\x04\x88\xf1\xc3\x92\x7b\x3a\x8c\xc4\x1c\xc3\x92\x1b\x9c\x8e\xd5\x92\x3b\x16\x33\x30\xfe\x93\x5a\x6c\x00\x33\x1e\x87\xbd\x54\x8c\xdd\x87\xb5\x33\xf0\x05\x0a\xc4\xc8\xfd\xd3\x60\xf4\xa7\x13\x41\x74\x30\x0b\x91\x1a\xb7\xe0\x17\x30\x6c\xe0\x17\x2f\x75\x1b\x40\xa8\x82\xd8\xc5\xa2\x7c\x09\xab\x02\x47\xd1\x38\x85\xf0\x3e\x62\x88\xe2\x1d\xac\x35\xe0\x51\x02\x0b\x3d\x41\x54\x27\xb0\x24\x9e\x8e\x8e\x43\x1c\x0d\x04\x33\x18\x8d\x8f\x01\x58\x98\x00\xd3\xa2\x5a\xbb\x02\x1d\x15\xd7\x03\xd2\x3a\x02\x06\xe0\xc3\xb2\x07\x5a\xaf\xd8\x63\x45\x0d\xbd\xa7\xc3\xe3\x30\x18\xe1\xe3\x81\x58\xe2\x27\xa3\x60\x84\x4f\x04\x93\xd4\x6d\x7e\x03\xdb\xd2\xaf\x5c\x59\xe6\x72\x7c\x5b\x3b\xc7\xc6\x8e\x8e\x0d\xb4\x43\xf8\x31\xaf\x4c\x3d\xab\xbb\xf3\xcf\x5c\xd9\x2c\xa6\x59\x91\x36\xec\x87\x0d\xa3\x4f\xbf\xc4\xce\x60\x7c\xe4\xe0\xf4\x6b\xec\x0c\x8f\x46\x0e\x16\xbb\xc4\x49\xdd\xf2\x52\x36\x93\x80\xc6\xa7\xa3\x9d\x0e\xe0\x0a\x07\x83\x88\x54\x8a\xc6\x26\xd1\x68\x32\x38\x99\x98\x1f\x30\xb2\x7b\xda\xfc\xaa\xc3\x56\x96\xb1\x13\x4d\xc2\x49\x34\x91\xff\x8a\x6f\xe7\xfa\xeb\xfd\xfb\x97\x42\x4e\xec\x44\x0e\x16\x7b\xd9\xe0\x48\xb0\xe4\x61\x34\xb8\xf2\xa3\xa3\xd4\x3f\x0a\x8e\x70\x28\x96\x83\xa0\x1c\xb1\x2a\x06\x69\xe8\x1f\x47\xf8\xf8\x58\x50\x92\x20\x0e\xf8\x15\x85\xc7\xc1\x49\x1a\xfa\x83\x50\x30\xb7\x13\x7f\x14\x8a\xd5\x26\xde\x88\x5f\xa9\xa0\xea\x08\x87\xfe\x48\xf0\xf3\x53\xc1\x2c\x4f\x25\x07\x3c\xee\xa5\xbe\x68\x64\x2c\xb9\xd5\x91\x1f\x1d\x89\x17\xc0\x6d\x87\x41\xe4\x9f\x8a\x8f\x05\x9d\x88\xc5\x28\x78\x77\x14\x09\x52\x11\x84\x73\x1c\x0c\x24\xff\x19\x1c\x03\x9f\x11\x7d\x89\x05\x73\x2a\xca\xc4\xaf\x74\x2c\x08\x30\xc4\xa7\xc7\x82\x43\x8a\xb5\x09\xbf\x4e\xc2\x60\xd0\x4b\x43\x7c\x74\x1c\x1c\xf9\x02\x78\x7c\x34\x0c\xc6\xf2\x17\x0c\xe3\xe9\xe0\x58\x70\x93\x61\x78\x04\x7b\x65\x18\x0c\x05\x3a\xb0\x41\xcc\xb7\xef\x9a\xf2\xe6\xf4\xc8\xff\x7d\xff\xf4\x84\x6a\x7a\x86\x03\x60\xd9\xa3\x60\xbc\x3a\xc6\xd1\xd1\x49\x2a\xe0\x3b\x0a\x46\x78\x0c\x8b\x16\xd8\x25\xfc\xbd\x3a\x4d\x45\x71\x08\x4b\xdd\x1f\x03\xcb\x17\xe8\x1b\xaf\x8e\x7d\xf5\x9d\x7f\x24\x77\x0b\xb1\xd6\xc6\x72\x76\x83\xf1\x95\x3f\x18\xf6\x9e\x0e\x86\xc0\x81\x06\x03\x3c\x00\x96\x2a\x64\x94\x63\x6c\xf5\xfe\xdb\xb1\x10\x1a\x22\x0d\x15\x16\xe6\x3b\x7c\xc3\xcd\xad\xa6\xe5\xd9\xc8\x3b\x95\xf9\xb8\x20\xa9\x47\xd5\x51\x6d\x84\x70\x84\x66\xc6\xe1\xee\x16\x4c\x12\x2b\x23\x28\xae\x8d\xa0\xd4\x6d\x59\xdd\xfd\xb5\x40\xd3\x2e\xa3\x59\x6d\x67\xf3\x10\xe7\x0d\x15\x50\x0b\xb5\x6d\x3f\x5b\x93\xfa\x7d\xcd\x9a\x30\x5c\x08\x77\x99\x4d\x2f\xe2\x62\x16\xce\x77\x7b\x29\xe8\xfb\x3a\x53\xd1\xbf\xf6\x77\x15\xcd\x77\xbb\xf9\x2e\xde\xd7\xd9\x9e\xcf\x76\xf6\x51\xe2\x23\xaf\xdd\x54\x88\xc3\xc0\x57\xfb\x94\x69\x6c\x64\x32\xa2\x67\x31\x52\xb3\x38\x8e\x06\x7a\x1e\xc5\x4f\x39\x93\x1c\xa2\x83\x51\xd7\xe5\xae\x7b\xc3\xe1\xce\x14\xfe\xcc\xa8\xbe\x34\xed\x31\xef\x1b\xf7\x4c\x21\x9a\xd4\xbc\x82\x6b\xf1\x84\xfe\x23\xe3\x32\xa4\x10\x82\x13\x6d\xe3\x9e\x53\x06\xb0\xec\xac\x1f\xf0\xfc\x13\x65\xae\xdb\xdd\x9a\x7c\x8b\x25\x90\x07\xbf\x06\xcd\x98\x48\xd3\x02\x0e\x45\xd7\xdc\x93\x47\xa7\xac\xec\xa9\x28\x58\x10\x4c\x5b\x1e\xea\x7a\xb5\xcb\xd5\x9b\x8c\x5f\xf5\x04\x06\x7a\xe2\x40\x56\x33\x98\x42\x28\x66\x5e\x66\xa2\x48\xbd\xe9\x5a\x53\xef\xad\x35\x05\xea\x19\xb5\x70\xfe\xc1\xa5\xad\x5c\xcb\xc7\xe8\x09\x9a\xee\x51\xb8\x29\x23\x3b\x6e\x99\x94\xe6\x44\x35\x83\x33\x3b\x07\x8b\x98\xa8\x1b\xf9\x65\x29\x15\x65\x2f\x18\xf7\x2e\x29\xe4\x95\xd9\x70\xba\x78\x27\xa0\x94\xaa\x7b\xc6\xdf\x65\xdf\x20\x77\x2c\x98\xd4\x5e\x52\xfe\x44\xa5\x7c\x7c\xba\xca\x28\xe3\x6f\x69\xca\x3d\x34\xc9\x48\xaa\x8c\x8d\x4b\x9c\x90\x54\x1b\x1c\x97\xbb\x0e\x3d\xc2\x01\x03\x3b\xbd\x96\x13\x50\x43\x13\x80\xf0\x57\xe3\x56\xee\xcd\x28\x7e\x46\xbd\x5b\x65\x55\x18\xd3\xea\x76\x49\xd1\x64\xa6\x29\x32\xb1\x8e\xdc\x85\x3a\xa5\x33\x75\xd4\xce\xb1\x31\x09\x06\x8d\xf3\x1c\xc9\x58\xbd\x9d\x71\x1e\x1a\x9a\x31\x89\xdf\xbc\xd2\x91\x65\x35\x54\x27\x84\x6b\xb7\xb7\x52\x3b\xcc\xad\x34\xfa\x27\xfb\x16\x19\xc7\x1b\x74\xfb\x55\x06\x3b\x98\x7d\xe4\x1e\xc3\x39\xc2\x1f\xb9\x57\x56\x7d\x97\xaa\x3f\x34\x47\xd2\xf5\xbe\xfa\x5a\x5d\xf3\x6c\x48\xea\x95\x78\x80\xf0\x9a\x6c\x04\x5b\x5e\x92\xcd\x2c\x9a\x4f\xb8\x40\xda\x9f\xa9\x07\x4a\x8b\x32\xbe\x05\x6f\xa8\xb5\xd4\x3d\x2c\x77\xb8\x6d\x05\xc3\x2c\xcc\x65\x5a\x59\x91\xa8\x0f\x14\x26\x0b\x85\xc9\x55\x1b\x93\x70\x1b\xb0\x6b\x84\x99\xf9\x62\xd1\xf7\x83\x5d\x1e\xa7\xf6\x43\xac\x29\xf6\xb1\x9e\x98\x76\x54\x2c\xe3\x64\x8d\x8b\xce\xe8\x00\x41\xb2\x58\x58\xf7\xc4\xef\x6a\xec\x16\xf2\x47\x76\x05\xa6\xeb\x31\x15\xfc\xea\xee\x4f\x33\x52\xb7\xac\x99\xda\x26\x15\x7f\x46\xb1\xfd\xf8\x86\x23\x9c\x90\x99\x13\x98\x06\x9f\x60\x27\x66\x39\xf7\x66\x55\xab\xef\xb1\x33\x47\x0e\x9a\xd7\x6d\x25\xba\x42\x37\x06\x76\xc0\xc7\x3d\xcd\x40\x10\x48\xa9\x20\xc5\x3d\xa9\x61\x07\x7c\xeb\x3b\x54\xc5\x06\x66\x73\x88\xc0\x54\x4a\xfd\x63\x2d\xb2\xde\xe3\xd5\xca\x4b\x50\x2d\x2a\x6f\xb6\xf4\xaa\xcb\x39\x74\x5b\x78\x26\x92\x17\xc2\xb9\x07\xe9\x86\x56\x14\xee\x3b\xa5\x33\x42\x75\x11\x9a\xb3\xf7\x05\x15\x8b\x7b\x05\xa1\xb5\xbb\x54\x9b\x55\x42\xaf\xf7\xdc\xe3\x68\xc2\x20\x6c\x8f\x0c\x55\x62\x01\xf1\x69\xbb\xfd\x13\xb7\xa3\xdf\x5c\x73\xd7\xad\xe7\x96\xfb\x13\x47\xb6\x3a\x7c\x36\x47\x7b\x57\x22\x98\x95\xa9\x95\xb8\x6a\xad\x34\x86\x6e\x53\xb1\x3a\x6b\x01\x9b\x3d\x27\x91\xf9\x1c\x11\x2e\xec\x31\x0b\x0c\x54\xe8\xe8\xbc\xce\x76\x5d\xee\x21\x9c\x7a\x08\x9b\xb0\x68\x81\x1c\x99\xdd\x43\x5a\x5d\x11\x23\x54\xdb\xbc\x5f\xff\x4e\xcb\x0a\xb6\x9f\xe6\x60\x29\xba\xa5\xae\x9b\x0a\xfe\x31\xc7\xf2\x9a\xaf\x72\xfe\xaf\x5f\xd5\x1b\xfa\x7b\x6d\x59\xd4\x6b\x63\x0d\x27\x76\x60\xb5\xec\x47\x7a\x81\x73\x2b\x4b\x73\x53\x95\xcb\xcc\x75\x4d\xe1\x69\x23\x06\x19\x53\x41\x89\x76\x77\x47\x4a\xa8\x37\xf6\x05\x09\xf4\xef\x90\x10\x4e\x71\x42\x5e\x05\xed\xed\x0e\x73\xb1\xc7\x25\xe2\x8d\x8e\xa4\xff\x27\x21\x24\x7b\x10\x09\x59\x05\x32\x05\xcd\xb1\x98\xa8\x9f\x05\x09\xef\xad\x7c\x03\x9b\x91\x5c\x6e\x99\xeb\x1e\xa4\xc8\x32\xea\x13\x3c\x45\xda\xcf\x64\x60\x07\x20\x2a\xa5\x9a\x97\x77\x35\xa9\xb6\x3d\x47\xb0\xf8\x7f\xcc\x9c\x77\x32\x3e\xb2\xf3\x56\xc7\x46\x76\x5e\xaa\x08\xb8\xcf\x74\x4c\x64\x47\x06\x1d\xb6\x2c\xf8\xd2\x59\x34\x47\xd3\x67\x33\xf1\xb7\x7e\x3b\x37\x8f\xdf\xce\x56\x62\xdb\xf8\x89\x7a\x43\x70\x6c\x96\x84\x34\xdd\x04\xe5\xe6\xa2\xe4\x85\x17\xe1\x08\xc5\x1b\x84\x17\xe4\xdf\xa9\xb7\xc6\x4b\x84\xaf\xc8\x02\xd2\xd2\x2d\xb6\xdb\xcc\x75\xb3\x3a\xae\x5f\x0a\x5c\xaf\x5b\xc5\xcf\x45\xf1\x15\x2a\xb4\xd1\x06\xad\xdf\x36\x33\x7c\x05\x1e\x09\x4d\x0c\x4d\x64\x08\xf0\xdb\xba\xf1\xa4\xda\xd8\xc5\x4f\xdb\xc2\xb0\xda\xc1\x6e\xa8\xde\xc2\x0e\x22\xb9\x87\xc9\xd0\x45\x75\x9d\xfb\x6c\xae\x95\xee\xb7\xbb\x9a\x08\xbd\xdb\xed\xf0\x35\xb9\x50\xfb\xf7\xb5\x2d\xad\x7c\x99\x13\x2e\x36\xe9\x05\x5e\xb7\xd6\x4e\xae\x65\xe6\x3f\x2b\xd7\xaa\x0b\x5c\xdb\x7f\x73\x09\x0a\xdc\x2b\x68\xc0\xd7\xd5\x16\x7c\xa5\xe0\xbb\x6e\x6c\xaf\x62\xd7\x68\xc7\x90\xf9\x7c\xe9\xa0\x89\x13\x5f\xc8\x14\xfb\x90\xfa\x9a\xd6\x03\xb1\x24\x98\x06\xcb\xac\x28\x39\x20\x13\xc5\x34\x48\xd6\x82\x35\x49\xdc\x26\x48\xfb\x2d\x4a\x33\x9d\xef\x31\x10\xc2\x7a\x9a\xec\xf5\x2a\x88\xb9\x62\x65\x39\xda\x49\x9b\x01\x59\x6a\x85\xec\xb0\xad\x5c\xb5\xf4\xf3\x52\x6e\x62\x6a\x30\x08\xab\xe7\x04\x92\xff\x0b\xf9\xa2\x0a\xc0\x51\x37\x92\xad\x4c\x30\x0e\x48\x65\xc9\x26\x83\xb9\x1f\xfc\xe3\xa9\x65\x6e\x51\x59\xd1\x59\xd1\x6e\x90\xeb\x1e\xb4\x78\x85\xeb\x7a\x07\x76\xcb\xdb\xad\xb6\xc5\xb3\x4b\x75\x83\x16\x6c\x7f\xd7\x66\x39\x8f\xd1\x7e\x99\xcf\xd8\xcc\x76\xef\xb5\xce\x23\x07\x19\xd6\xf6\x8e\xcb\xab\xaa\xe7\x1c\xe1\xdc\xda\x47\x3b\xa3\x0f\xa3\xc9\x8a\x93\x83\x10\x2b\x9c\x16\x2d\xf2\x44\xb7\xb9\x87\xf0\x46\x6c\x3e\xdc\xdb\xb3\xeb\x98\x1a\xd5\xd6\x03\xf1\x2e\x38\xf9\xa1\xfc\x7c\x09\x52\x46\x5c\xe4\x39\x47\x41\x3d\x42\x7d\xef\xf6\x03\xeb\xf5\xf2\xcf\xb4\x58\xae\xf2\x9b\xb8\xf7\x39\x2b\xb3\x8b\x15\x9d\x7c\x60\xbb\x0f\xec\x03\xeb\xac\x6d\x3c\x36\xd5\x8b\x8b\x55\x9e\x7e\x9a\x88\x37\xc0\x45\xc1\x64\xa1\x97\xb1\x2b\x5a\x64\x1c\x8a\x95\x90\xdf\x8b\xe8\xf5\x64\x5f\x77\xbd\x9e\x0e\xde\xed\x27\xab\xec\x92\xc5\x3d\x3f\x0c\xa2\xc1\x18\x3e\xd9\xb5\x20\x09\x96\x89\xbf\xba\x94\xf0\x74\x7c\x38\xb8\xf3\xc3\x1b\x3f\x92\x5f\xca\x53\x48\x2f\x0c\xc2\xa3\x7b\x3e\x18\x34\x3e\xb8\x1b\xb2\x1b\x7f\xd8\xac\x7f\x72\x7c\xf7\x07\xa3\xc6\x07\xf7\xb4\x3f\x6e\x54\x1f\xde\x07\xd0\x51\xf3\x83\x7b\xe0\x39\x6e\xd4\x1f\xdd\xf7\xc1\x49\xe3\x83\xbb\x6b\x9f\x36\x6b\xdf\x37\x01\x51\xd8\xf8\xe2\xde\x0f\x9a\x73\x7c\x74\xdf\x14\x44\xcd\x49\xbe\xaf\x7e\x73\x92\x4f\xee\x9b\x84\xa8\x39\xcb\xf7\x82\xd4\x9c\xe7\xd3\xfb\xa6\x21\xaa\x4f\x74\x74\x77\xe5\xfa\x2c\x47\xf7\xaf\x83\xe8\xa4\xf1\xc5\xbd\x43\x3e\x6d\x7e\x70\xdf\x98\x07\x61\xe3\x8b\x3b\x7b\x30\x79\x05\xe4\x47\xd7\x49\x71\x99\x31\x99\x5c\x00\xc8\x5c\xb1\x1c\xd5\x98\x38\xf2\xdd\xdd\x14\x7c\x59\x6b\x4b\x34\xfe\xbd\x4d\xc9\xb4\x07\xb2\x19\xc3\xfd\xee\x5c\x12\xab\xac\x36\xea\xc1\x1d\x55\x97\x37\x7b\x11\xf4\x81\x05\x26\xef\x45\xaf\xfc\x7c\xd9\xc9\xbf\x2f\x72\xce\xf3\xeb\xb8\x17\xc2\x70\xd4\xf0\x26\xd5\x88\xcd\xd8\x7a\xbd\x75\xae\x12\x5e\xf7\x92\x8b\x32\x5f\x6d\xb8\x64\xd5\x1a\xbd\xf0\xc0\xf3\xb5\xfc\xd9\xec\xff\x9e\xcd\xa2\xb9\x2b\x54\x7d\x15\x74\x95\x88\x33\x9a\x6c\x9e\x7e\xe1\x9a\xb3\xa7\xe0\xa0\x7b\xdf\x6e\xd1\x41\xfc\xf7\x23\xa5\xe5\xd9\xab\x3c\xea\x75\xa7\x76\xdf\xfa\xbf\xfb\xeb\x36\x50\xa2\x73\x48\xe0\x5e\x50\x4f\x4f\x72\x1f\xae\xf6\xcc\x43\x27\x6e\x9a\x7d\x56\xed\xcb\xa9\x1e\x87\x7f\xac\xe6\x4d\x3f\xb4\x86\x1f\xf7\x2a\xb7\x6e\x7f\x1c\xfe\x11\xf7\xc4\xbf\xa8\x7b\xfc\x77\x55\xfe\x2f\x45\xac\x22\xf0\x24\xfd\x74\x59\xe4\x1b\xb6\xf0\xd3\x7c\x95\x17\x71\xef\x7f\x2d\x97\x83\xf1\x30\x99\x48\xf2\x17\x6b\xd3\x2f\x92\x45\xb6\x29\x2b\xf2\xd3\x70\x5e\xe4\x5f\x84\x08\x93\xb1\xcb\x58\x57\xbd\xc8\xbf\xd4\xc0\xbb\xa3\x4a\xd5\xdf\x72\xd2\xb5\xf8\x7b\x3d\x98\x59\x53\xac\x96\xdd\x17\x5f\x91\xac\xae\x75\x9d\x31\xdf\xac\xef\x71\x4b\x6e\x92\x5a\x57\x49\x1a\xc9\x62\x01\x90\x18\x99\xa1\xb9\x3e\x05\x91\x54\x9f\xd2\xd5\x2a\x5b\x97\x59\x59\x5f\xbb\x9d\x14\x20\x9d\xf3\x45\xbb\x7b\xe7\xbd\x59\x65\xff\x6c\xf3\x7c\x2d\xe1\xba\x67\xa6\xed\x7a\xcd\x59\x96\x9c\xcb\xe6\xd1\x75\x5e\xd6\xe6\x4b\x86\x93\xfd\xab\x87\x27\x01\x79\xd0\x08\x1b\x55\xf7\x0c\xb2\xda\xd3\xf6\xf3\x6b\x35\x5e\x33\xc8\xff\x96\x21\x0b\x80\x1e\x36\x62\x55\xb3\xc5\xa0\xf2\xb5\x3d\xa5\xdd\x9b\xcb\xff\x37\x08\x54\x0c\xa5\x9a\xb8\x7b\xa7\xea\xbf\x6e\x60\x0f\x98\x24\xab\x5a\x35\x2c\x75\xc4\xb2\x0e\x76\x51\x30\x34\xff\x75\xb1\x34\x23\x36\x77\xee\xd1\xe1\xd1\xd1\x71\x5d\x58\xf9\x52\xb6\xba\xb0\x25\x6f\x59\xa9\xbc\xee\xa8\x74\xd2\xac\x15\x7d\x69\x43\x5b\xaf\x31\x68\xd7\x18\xd4\x6b\x0c\xdb\x35\x86\xf5\x1a\xa3\x76\x8d\x51\xbd\xc6\xb8\x5d\xa3\x01\xe9\x51\xbb\xc6\x51\xbd\xc6\x71\xbb\x46\x03\x71\x27\xed\x1a\x27\xf5\x1a\xa7\xed\x1a\xa7\x0d\x8c\x85\x1d\x28\x0b\xeb\x75\xb4\xb8\xb9\x47\x10\xdb\x2b\x85\x6e\x56\x6a\x15\x64\x25\xf7\x41\x5f\xe7\xf3\xaf\x6b\xaa\x02\x3d\xb5\x04\xec\x81\xd9\xe6\xd4\x8e\xe6\x57\xcb\x67\x67\x5a\x3c\xef\x69\x41\xb9\x53\x5c\xac\x08\x37\xb3\x97\xa0\x3f\x68\xc9\x98\xf7\xcb\x51\x0d\x59\xbc\x41\xe6\x95\x7e\xc3\xf4\x69\x0b\xfd\xf2\x77\xdc\x83\x54\x76\xbd\x30\x08\x4f\xe8\x75\xef\x7f\x51\x4a\xbb\x44\x90\x30\x88\xea\x43\x87\xcd\x9c\x5e\xab\x2d\x5d\xbc\x6f\xe0\xb6\x71\xea\x59\xae\xf2\x84\xc7\xad\xd5\xdb\x3c\xd0\xa8\x6a\x4d\xe6\x55\x6b\x10\x43\x51\xd9\x51\x56\x74\x94\xad\x3a\xca\x2e\x1e\x7c\x2c\xdb\xd5\xbb\x87\xb7\xcd\xfe\xad\xc2\xa2\xab\x70\xd5\x55\x78\xf1\xe0\xe3\x5c\xc5\x61\xd6\x19\xab\x9f\x04\x12\xed\x73\x18\xf7\xf4\xfb\x41\xd9\xcb\x98\x34\x71\x06\x6a\x48\xea\x62\xeb\x43\xbf\xb0\x27\xa8\xa4\xf7\xf6\x1a\x59\x6d\x94\x9c\xae\x4b\xef\x04\xdd\xd7\xef\x9e\x6f\xa0\xe7\xff\xad\xfb\xfa\x44\xbf\xca\xa4\xdd\xbd\x1a\x02\xc2\x3f\xca\xbf\x9d\x3b\x93\x0a\xac\x14\x2e\xe8\x65\x1d\x88\xda\xe6\xd4\xaa\xb5\x13\xff\x44\xe1\x43\x9a\x1e\x1e\x3d\xac\x71\xbb\xde\x4e\x0f\xed\xff\xb6\x21\x09\x2a\x31\x29\x11\x15\xa5\x5c\x97\xbe\xd4\x33\xc7\x3d\x67\x5d\xe4\x97\xd9\x22\x7e\xf6\x97\x17\xd7\xc9\x25\x7d\xaf\x5b\x0c\x5e\x65\x69\x91\x97\xf9\x92\x07\x4f\x92\x32\x4b\xe1\xad\x07\x0d\x65\x39\x23\x11\x72\xf6\x49\x1e\x0a\x92\xd3\x36\xc0\x77\x54\x32\x04\x5d\x65\x6c\xfc\xdd\x60\x1d\xdc\x0b\x6b\x74\xf2\x10\x60\xab\x5a\x4d\x68\x07\xc7\xbf\x1f\xb4\xc3\x7b\xa1\x1d\x1c\x3f\x04\xda\xaa\x56\xb5\x0f\xd7\x73\x5e\xfe\x6e\x20\x87\xb8\x77\x9d\x15\x45\x5e\xdc\x45\x16\x52\xda\xf4\x23\xdc\x8b\xee\x91\x48\x4d\x9d\x3a\xe0\x5a\x16\xfc\xfd\xe8\xe2\xe1\x60\x47\xb8\xe7\xdf\x07\xb6\xa9\x53\x07\xfb\x22\xe7\x57\x52\x5b\xd3\x40\xff\xff\x88\x81\xf9\x0f\x19\x99\x5f\x1f\x1a\x5c\x03\xf5\x6a\x7c\x05\x77\x94\x46\x27\x9d\xc5\x83\xe3\x7a\x71\x03\x2b\xed\x77\x1a\x3d\xed\x37\x02\xb5\xf5\xbd\x4f\x23\xce\x08\x88\xfa\xbf\xc6\x8b\x6a\xd3\xe6\x49\xfa\xe9\xa1\x7a\xc6\xb6\x0c\x58\xd3\x33\x6a\x61\x2f\x68\x1e\x3d\x54\xd2\x58\x6c\x3f\xea\x73\xc4\xbf\x56\x95\xda\x56\xfd\x6a\x60\x1a\x9a\xe5\x86\xda\xf3\x6e\x8d\x79\x7d\x04\x4d\xec\xec\x43\x83\xca\x92\x2b\x3f\xaa\x6b\xb9\x14\xb0\x32\xa0\x5e\x5d\xfc\x95\xc3\x4a\x57\xd9\x5a\x60\x3b\xe5\x5e\x88\x7b\xea\xff\xa8\xae\x1f\x5b\x7f\xa9\xa1\xcd\xd7\x05\xf7\xe8\xbc\xee\x42\xad\x46\x07\xb4\x54\x03\xd2\x37\xde\x8a\xb1\xb4\x06\xc2\xbd\x8e\x57\xf0\x4b\x0d\x18\x46\x60\xe6\x52\x43\x6d\x0a\x34\xd8\xe1\x1d\xf7\x9b\x15\x94\xa5\x58\xe9\x69\xf7\x65\x42\xfb\xce\x15\x04\x45\x99\x88\x59\x89\xf1\xd9\x6a\x15\xf7\x3e\x27\x85\xe7\xfb\xd5\x3b\xa9\xea\xc4\x3d\xdb\x80\x58\xe2\x58\xdb\xbf\x2b\x6d\xa3\x79\x6c\xb5\xa0\xde\xd4\xf8\x77\x07\x30\x26\x03\x74\x27\x38\xe6\xed\x03\x00\x0a\x83\xd1\x1e\x90\xaa\x56\x0c\x50\x61\x30\xda\x07\x16\x40\x65\xa5\xb0\x6e\xe3\xec\xbf\xa6\xcb\x06\x66\x7e\x4f\xc4\x5f\x27\xe5\x27\x7b\x58\xf8\x8e\x2a\x9d\x13\x04\x19\x24\xac\x15\xbd\xb8\x6f\x55\xff\x60\x65\xc1\xe0\x26\x80\xdd\x47\xcc\xc9\x1b\xcc\x48\xc3\x14\xbe\xe8\x88\x98\x83\x73\xf2\x14\xc2\xbf\x30\x99\xaf\xa6\x38\x20\x84\x9b\x9c\x46\x56\x2c\xa0\x0f\x1f\x6a\x36\x91\x1f\x3e\xf8\x0e\xc2\xce\x25\x24\x2c\xa9\xd7\xf3\xfd\x3d\x15\xcb\xbd\x0d\x72\x59\x63\x92\x93\xdc\x18\xb9\x65\xd8\xb2\xc2\x64\xd2\xde\xcd\xbc\x4c\xb0\x63\x75\xd3\x7c\x5b\xda\x9f\x16\x26\x72\x72\x2f\xb7\x12\x73\x08\x6c\x29\xdb\x69\x48\x22\xec\xba\x07\x7f\xe1\xae\xeb\x7d\xa3\x9e\xc0\x24\xc2\x7f\xe1\xe4\x20\xb4\x83\x28\xd7\xcd\xfa\x95\xf1\xa9\x4c\x60\xaa\xad\xca\xc4\x80\x93\x8b\x92\x17\x49\xca\x1d\x7c\x7b\x49\x79\xcc\x77\x08\xef\xad\x7b\xc5\xaf\x57\xaa\x5e\x3b\xd6\x26\x0d\x74\x53\xf7\x9a\x0f\xed\xee\xea\x84\xe5\x0b\xda\xee\xa4\xb2\xfb\xed\x48\xa2\xb5\xc8\x3e\x5b\x1e\xde\x76\x9e\xac\x40\x80\x8c\xab\xf0\xf8\x3b\xd1\xb5\x95\xf0\xe4\x09\xef\x8c\x4b\x6e\x02\xdb\xf0\xa9\xb3\x4c\x9c\x98\x9b\xd4\x3a\x32\xa4\xca\xd2\x33\x89\x3f\x19\xf7\xde\xaa\x61\x00\x2b\x2e\x21\xd4\xe2\x76\xcb\xb8\x67\xe2\x01\x8a\x12\x19\x02\x96\xe3\xb7\x10\x24\xc7\xb6\xb3\x31\xc0\x50\x0f\xdd\x1e\xd4\x4d\x60\xb3\xa5\x77\xe0\x51\xdb\xb8\x95\xef\x49\x0d\xf7\x54\xe6\x5f\x4c\x93\xd5\xaa\x97\xf4\xc0\xac\xad\x9e\x82\xd1\x41\x3b\x48\x29\x88\xa9\x4a\x13\x68\xc1\x4c\x6e\x65\xec\x21\x08\xb2\x62\x10\x49\x28\xf6\x18\x99\xdd\x7e\xa2\x5f\x63\x27\x59\x2c\x94\x4b\x9c\x3d\x2d\x55\x0a\x2e\x99\x06\xb1\x65\x84\x8a\x19\xac\x22\xe9\xd7\xc3\x11\x2e\x48\x38\x29\xce\xf8\xa4\xe8\xf7\x11\x9b\x15\x73\xcb\x30\xb5\x98\xeb\x50\x5b\xda\x1e\x58\x66\x28\x5c\x6f\x56\xab\x67\x16\x7e\x6f\x77\x68\x62\xdb\x52\xe7\x5d\x91\x85\x20\x49\xa7\x35\xc2\x19\x57\xc1\x3a\x9b\xa5\x32\x62\xe7\x8c\xcf\x11\xfe\x91\x7a\x5c\xfd\xfc\x83\x32\xc7\xdd\x61\x39\xfa\x82\x96\x94\x77\x8c\xbf\x0b\x91\xfa\x9b\x26\xe0\xad\xcf\x6b\x3e\x06\x3a\xe2\x4b\xe5\x6d\xa0\x7f\x4f\x6f\xc3\x98\xef\x62\x3e\xe9\x88\xd4\xc7\x9a\xf1\x0b\x78\x15\x13\x93\xcf\x71\x6e\xa2\x26\x42\xfa\x2f\x2b\x53\x8f\x7c\x98\xd0\x59\x3e\xdf\x6e\x3d\xf1\x07\x12\x60\x8b\x1f\xb3\x6c\x4e\x12\x19\x8a\x73\x37\x47\xae\x9b\x79\x96\x8b\x3f\x66\x08\x17\x50\x26\x53\xbb\x69\xd6\x13\xe1\xbf\x71\x72\x9b\x0d\xca\xcf\x97\x71\x2b\x42\x69\xcb\x32\x39\xec\xb4\x4c\x0e\x6d\xcb\xe4\x70\x1e\xdf\xee\x94\xb9\xbf\xe0\x7e\x13\xbd\x48\x05\x7f\xa8\x2f\xd1\x4b\xb5\x3e\xd3\x2a\x64\x95\x79\x6b\xc5\xea\x45\xb7\xbb\xb8\xa8\xe2\x59\x74\x87\x74\xfa\x3b\xf7\x18\xc2\x5f\xa4\x07\xc6\xae\x32\x4d\x94\x29\x07\x3d\xe7\x0d\x24\x42\x85\x70\x8e\xf4\xef\x9b\xac\xa0\x62\x89\x3d\x7b\xf3\xaa\x97\x2f\x7b\x65\x7e\x4d\x7b\x9f\x32\xb6\x08\x1c\xb4\xc3\x69\x59\xc6\x9f\x38\x96\x66\x98\x4f\xcb\xd2\x46\xcb\x5f\xf8\x76\xdb\x62\xdd\xd2\xd4\xf3\x77\xc4\x1e\x16\xe8\xaa\x07\x26\x83\xc0\x5d\x6c\x4f\x44\xaf\xc9\x41\xd4\x11\xea\x0c\x82\x6b\xd5\x8b\x04\xb8\xb8\x1d\x6c\x8c\x1c\x84\xf8\xdf\x6b\x26\x84\x3f\x72\xef\xb6\x0d\x00\x6c\x32\x4b\xee\xdd\xda\x31\xc9\xe2\x2f\x1c\xdb\x21\xc9\xe2\xd7\x1c\x77\x47\x24\x8b\xff\xce\x5b\xb9\xf1\xa1\x59\xb6\x53\x6b\xf6\x05\xb7\x53\x9f\xed\x89\xf8\x22\x2a\xfe\xc2\x89\xf7\x73\x57\x90\xa4\xdf\x68\x4b\x7f\xbb\x83\x48\x3a\x95\x37\x50\x2d\xa4\xe7\x0d\x85\x90\x9e\xc6\x3f\xc8\x0a\x48\x95\xbb\x6e\x0e\xae\x43\xe0\x2f\x94\x56\x5f\x25\x32\xed\x5e\x02\x3e\x44\x3a\x87\x96\x79\xbb\x92\x6f\x57\x78\x4d\xb8\xf6\x10\x33\xb9\xb4\x08\x21\xeb\xe9\x6c\x1e\xaf\xf1\x82\x70\x3b\xce\xe8\x55\x55\x61\x31\xbd\xdd\xc5\x0b\x7c\x21\x80\x92\x7b\xd5\x75\xf5\xf2\x42\xbc\xbc\x00\x6f\x3e\x89\x97\x57\xd5\x1e\x79\x69\xe7\xee\xf8\xac\x1e\xf4\xe2\x7a\xc6\x21\xe9\x0f\xc4\xf4\x80\xe0\x5b\x3b\xb1\xe9\x78\x6d\x99\x41\x2c\x6c\x5c\x0b\x2d\xb3\x99\x5e\xfd\x7e\xa1\x65\xae\xf6\x84\x96\xb9\xea\x0c\x2d\xd3\x74\x91\xfa\xc6\xbd\xcf\x2a\xcb\x4d\x3a\xfd\xc6\xbd\x54\xa6\x4d\x89\x9b\x5e\x90\x60\x4e\xae\xdd\x59\x75\x74\x5b\x69\x38\xae\x0c\xbb\x5f\x55\x86\xdd\x97\x96\x65\x3a\xec\x47\x37\x54\x30\x52\x65\xa1\x9e\x29\x73\xf6\x8d\x36\x4f\xb7\x2c\xd1\xaf\xb4\x81\xfa\x35\xd6\x46\xeb\xcb\x9d\xa6\xf8\xdf\x97\x82\x75\x00\x58\x19\x39\x3b\x16\x42\x12\x14\x98\x14\x70\x56\x18\x26\xaf\x20\x5e\x61\x55\x2f\x44\x75\x59\x80\xf0\xcf\x82\x8f\xc2\x30\x39\xbe\x95\xe9\xb7\xc0\x92\x18\xff\xc4\xc9\x2d\xcb\x1f\x6f\x78\x6e\xf3\xbb\x36\x9f\x89\x3a\xd9\x4c\x84\xd7\x1c\x82\xcd\x2d\xb2\x32\xcd\x19\x03\xd7\xc3\x1d\x4e\xc1\xb7\x33\xfe\x15\x2f\xf2\xeb\xf8\x6f\x1c\xaf\xb2\x8b\x22\x29\xbe\xc6\x6f\x39\x06\xe7\xc6\xf8\x05\xc7\xcb\x8c\x2d\x5e\xa4\x39\xab\xf6\xe5\xf8\x89\x0c\xde\x1b\xff\xc2\x31\xa7\x5f\xba\x22\x96\xfe\x6b\xb9\x81\x5c\xd5\xb5\x68\x8a\xb0\xaa\x25\x43\xd0\xab\xba\xc6\x13\x66\xf3\x38\xc1\x9b\xfa\xaa\x5e\x57\x15\x36\x62\xe1\x6e\xf0\xb2\x5a\xd5\x8b\xea\xe5\x52\xbc\x5c\x5a\x4b\x55\x2d\x54\x31\x76\x07\x1b\xc7\xca\xdd\xde\xf5\x5a\xf3\xbf\xec\x26\x67\x95\x3f\xa5\x83\x8a\xd7\x9a\x8a\x17\x86\x8a\x67\x77\x38\x43\x5b\xf6\x66\x96\x23\xdc\xca\x4b\xe1\x10\x01\xf9\x80\x95\x99\xd6\xef\x3f\x6d\xca\x8f\xd6\x9a\x32\x98\x16\x39\x69\x7a\x5a\x5a\x41\x99\x61\xd2\xac\x69\x29\xed\x79\xbb\xdd\xc5\x09\x4e\xab\x69\xb1\x58\x79\x2a\x5e\xa6\xed\x69\x51\xc3\x7b\xd0\xcc\x3c\xa9\x79\xc6\x9a\x08\xfe\xa8\xe1\xb3\x69\xcf\x47\x69\x32\xdf\x7d\xcf\x7c\x68\xa0\xec\x29\xc9\xaa\x29\x81\x5a\xbf\xfb\x84\x68\x94\xd7\xa6\x64\x36\x8f\x59\x1b\x69\x00\x80\x53\x47\x94\x25\x44\x56\xe1\xe9\x1a\xd9\xe5\x9b\x59\xb8\xa7\xb4\x7d\x96\xe5\x02\x14\xa5\x2f\x30\x47\x5e\x31\xee\x78\xef\x1b\x3c\xbb\x3b\x73\xc8\xfd\x18\xaf\x61\xba\x40\x56\x2a\xc9\x5d\x3d\x91\x92\x40\x3f\xcf\x7f\xe2\xd7\xab\xb8\xe0\x3b\xfc\x23\x6f\xe7\x0b\xf8\x17\xc8\x93\x75\x61\x7c\xe2\xd9\x47\x14\x7d\x0a\x36\xc9\x94\xc3\xed\xb6\xee\x28\x8b\x5c\xf7\xb1\xeb\xb6\xe5\xce\x9f\x78\xb0\xc8\xaf\x03\x38\x54\x78\xb7\x42\x38\x04\x11\x6f\x87\x54\x3e\x0d\x71\xe2\x64\x5e\x34\x46\xe2\xdf\x68\x80\x82\x92\xf2\x17\xd7\xd7\x74\x91\x25\x9c\x22\x7b\x53\xc4\x70\x1c\xa4\x5f\xd6\x79\xc1\x4b\x72\xfb\x5e\xb0\x79\xc5\xf0\x9e\x65\x05\x05\x7d\x6d\xec\x2c\xf4\x4f\x07\x3f\xcd\xaf\xc5\xc0\xc5\xf2\x83\x1f\x0e\x7e\x97\x16\xd9\x9a\xc7\x4e\x09\x7f\x1d\xfc\x4e\xa6\x1a\x93\x51\xf6\xf0\x7b\xc8\x72\x99\x5c\x3a\xf8\xe9\xb3\xc7\xef\x1f\xc7\x4e\xba\x48\x78\xe2\xe0\x67\x79\x2a\x29\x72\x21\x7f\x38\x38\x2b\x45\xdd\x0e\x1f\x5e\xf1\xb5\x89\x16\xbb\xdd\xea\x8e\x6a\x45\xd0\x99\x29\xd9\xed\x9a\x63\xe4\xe0\xbf\x54\x5c\x92\x66\x3e\x86\x6c\xe9\xf1\x5e\xc6\x7a\xd4\xb8\x1f\xce\x38\x44\xdf\x1e\x12\xd2\x22\x08\xa3\xda\x98\x54\x9a\x06\xa9\x65\xf8\xc1\xf9\xa1\xcf\xfb\x3f\x38\xbd\x4c\x1c\x7b\xd4\x09\x68\xd1\xd3\x0d\x04\x3f\xa8\x1c\xeb\x8c\x1c\xfe\xd5\x9b\xc6\xde\xec\xc3\x4d\xff\x83\x1f\xcc\xfb\x28\x46\xd3\x0f\x87\x1f\x0e\x45\xe1\x87\x9b\x7e\xfc\xe1\xa6\x8f\xfe\x37\x9a\x8a\x0a\x81\x3f\x7f\x84\xbc\x69\x1c\x7b\x1f\x16\x7d\x84\xa6\x5e\xf0\x08\xfd\xe1\x10\x17\xe4\xf0\xaf\x02\x87\x71\xd0\xff\x80\x83\xfe\x1f\x0e\x2b\xd5\x61\x6e\xeb\x6c\xa4\x13\x26\xb3\x02\xfc\xdd\x96\xe9\x15\xbd\xa6\x31\x9f\x45\x73\x9c\x6c\xf8\x55\xcc\x67\x83\x39\xbe\xca\x4b\x1e\xf3\xd9\x70\x8e\x05\x15\xc4\x7c\x36\x9a\xcb\xb4\xbf\x7c\x36\x9e\xef\x64\x26\x82\x2a\xa4\x7c\xd5\x45\x95\x33\x8b\x06\xb2\x65\xd7\xf5\x78\x9f\xe8\xa7\x3e\xc4\xaa\xe4\x7d\xe2\x1c\x1e\x3a\x18\x16\xc8\x95\xae\x21\x7e\xf7\x9d\xff\x0d\x5e\x72\xa2\x7f\x5d\x2e\x7e\x8b\x32\x01\x89\x2c\x73\x62\xa7\x2f\x9f\xa1\x3c\xa9\xda\x80\x2c\x7e\xd8\xca\xb7\x92\x68\xd8\x18\x11\xfb\x93\xc0\x86\xd4\x48\x81\xb6\xa8\x90\x1f\x98\xf8\xa6\x8c\xc8\x92\x9d\x56\xd5\x24\x10\x97\x20\x2b\x1f\xab\x7b\x0d\x71\xde\x4d\x09\x53\x21\x11\x0f\x3f\x1c\xf6\x0f\x11\x5e\x91\x10\x6f\x48\x5a\xe5\x8f\xdf\x9c\x93\x70\xb2\xf1\x7d\xe4\x04\x82\x00\xbd\x84\xa4\xb3\xcd\x1c\x4d\x53\xf8\x2e\xa5\xde\x06\x47\x28\x76\x02\x78\x9b\x4c\x57\xfd\x7e\xbc\x82\xc8\x9c\x8e\x2c\xf0\xaa\x8a\xfd\x08\xaf\xa0\x07\x14\x5b\xa5\x78\x80\xf0\xca\xf7\x8d\x93\x30\x7c\xe7\x31\x92\x2a\x56\x77\xe8\x20\x04\xb1\x44\xcb\xa9\x73\xe8\xc4\x4e\xe0\x20\x5c\x4c\x3d\x39\x38\xc2\x70\x26\xd8\x62\xcc\x2a\x34\x95\x72\x49\x38\x2a\xe3\x8a\x47\x09\x7c\x23\x23\x6f\x0a\xe4\xc2\xb3\x22\xd7\xdc\xe3\x08\x97\x06\x97\x90\x49\x99\x94\xd0\xf6\x76\x2b\xfa\xc6\xcc\x75\x0f\x98\x9a\x72\x8d\xdd\x52\xe6\x98\x84\x32\x52\xea\x97\x38\x13\xe4\x98\x2d\x3d\x66\xc7\x77\xd7\xdf\x70\xd5\xfe\x41\xa9\x28\xe2\xa0\xac\xcd\x98\x2c\x26\x1c\x67\x5e\xa9\xbd\xe6\x9d\x43\x99\xea\x33\xbd\x4a\x8a\xc7\xdc\x0b\xd1\x94\xc7\x89\x47\xab\x84\xe8\x1f\x0e\xfb\x7f\x38\xc4\x8e\x83\xfa\xce\xa1\xd3\xaf\xb2\x5a\x94\x53\x4f\xb6\x4e\x52\x68\x0f\xc5\xe9\x8e\x07\x9b\x62\xf5\xb3\x90\x87\x49\x8e\xe1\xe1\xdf\x28\xa3\x45\xc2\x29\xc9\x30\x0f\x58\x5e\x5c\x27\xab\xec\x1b\x25\x09\xe6\x80\x7b\x52\x62\x9b\x5e\x3a\x02\x24\x48\xf8\x68\x05\xdf\x76\xcb\x02\x4e\x21\xc2\xfb\x0e\xf3\x40\x5f\x8a\x92\x3a\xb7\x6a\x4e\x0d\x44\xaf\xad\x86\x24\x47\x34\xd1\x74\xcb\x48\x38\xa9\xe7\xf4\xa0\x62\xb4\x68\xa2\x35\x5e\x34\x58\x25\x25\x7f\xa1\x13\x7e\x1c\xaa\x28\xc2\x67\x61\x0d\xf5\x1e\xc4\xec\x05\x9a\x0b\xb1\xd8\x49\xe5\x04\x1d\xfe\xd5\x9b\xfd\xf5\xc3\xe1\xbc\x1f\x7f\x38\x14\xac\xea\xd1\x1f\x0e\xad\x29\xeb\xf7\x99\xd6\x05\x49\xd1\x80\xf5\x4d\xb4\xe2\x20\x38\x74\x50\x9f\x6b\x17\x69\x1d\x93\xbe\x1f\x29\x5e\x98\x92\x03\xcf\xf9\xf8\x11\x34\x68\x1f\x3f\x3a\x99\x51\xe0\xa9\x88\x9a\x90\x7e\x02\x55\xdc\x6d\x55\xcb\xf2\x5f\xc5\x81\x57\xfe\xa4\x07\x9a\xfa\x0e\x22\xa3\x12\x53\x19\x9d\x04\x93\x3f\x3b\xad\x5e\x67\x4b\xef\x74\x7c\xa0\x27\x46\xa5\x76\xe2\x7e\x84\xb6\xdb\xae\xf2\x01\xda\x6e\xa3\x28\x6a\xbf\x18\xc2\x8b\xa3\xf6\x8b\xd1\xbe\x2f\xc6\xf0\x62\xd4\x7e\x71\x04\x2f\x06\xed\x17\xc7\x7b\x80\x3a\xd9\x53\x7e\x8a\xaa\x71\x56\x14\xc2\xfd\x28\x9c\x30\xc1\xaa\x98\xef\x23\xb1\xbd\xb5\xa0\x66\xd6\x87\xea\x47\x58\x61\x79\x5d\xbb\x34\xa1\x20\xd1\x84\xb0\x37\x08\x52\x9d\x46\xfa\x27\x9f\xfa\x51\x4c\xcf\xf9\x34\x8a\xfd\x68\xc7\x85\xac\x4d\xb9\x14\xb7\x49\x3a\x5d\x75\xe9\x9c\xc4\x04\x4e\x9d\x3f\x38\x7d\x2a\x44\x78\x1e\x2c\x8b\xfc\xfa\x61\x1f\x51\x13\xfe\x58\x7e\x99\xe6\xd7\xeb\xa4\xa0\x4f\xbe\xea\x3c\x21\x3f\xab\x6b\xe0\xb2\xb5\xef\xcb\x95\xb1\xf6\x68\x50\x42\x2e\x11\xcc\xd5\x0f\xc3\x22\x64\x42\xb3\x22\x16\x7f\x3d\xb1\x88\x72\xd5\xe8\xcb\x8c\x51\x9f\xd7\x1e\x51\x57\xbd\xa7\xf9\x6a\x73\xcd\xac\x9a\xb2\x40\xf0\x00\xbb\xfa\xa5\x62\x32\x0b\x53\xbf\x51\x82\x3a\x6b\x2b\x28\x6a\xcf\xa2\xa6\x18\x12\x4b\xae\xc5\x80\x18\x78\x5e\xdb\x78\xd1\x0c\x6d\x61\x10\xf3\x8c\x2e\x57\xa2\x60\x0f\x82\xee\xe9\x70\x2f\xae\xee\x1f\x54\x0d\x0b\x5d\xf3\xd0\x89\xd3\x7f\x16\xf7\xdf\x8f\xa0\x17\xac\x03\x41\x46\xcc\x78\x38\x7a\xd8\x94\x49\x30\xd9\xc3\xe6\xdc\xd4\xee\xc6\x8d\xd5\xd8\x9d\xb8\xe9\xa8\xb7\x17\x37\xac\x13\x37\xa0\x21\x92\x09\x77\x5e\x25\xeb\x17\x6c\xbd\xe1\x5d\xa1\x80\xfe\xfd\xdd\x9b\xd7\xb2\xae\xbd\xff\xfe\xf5\x03\x9a\xef\x7e\x98\xfd\xf5\x03\x9b\x3f\xfa\xc0\x60\xdf\x32\x08\xdf\x70\xd5\xec\x2f\x6f\x5f\x76\xca\xe5\x84\x6f\xb7\x8e\x83\xc5\x46\xe8\x1c\x42\x68\x81\x19\x35\x82\xd7\xdc\x75\x65\x21\x9f\x85\x90\x7e\x4d\xc8\x99\x42\xde\x24\xb4\xcf\x51\x45\xc1\xb9\x92\x39\x0e\x0a\xd4\x14\xda\x9d\x52\x8f\xea\x97\xb7\x2f\x7b\x69\xbe\x59\x2d\x7a\x2c\xe7\xbd\x0b\xda\x83\x81\x2c\xd4\x46\x29\xc5\x10\x95\x35\x58\x3e\xb5\x77\xd4\xf4\x9c\x08\xa9\x4e\x89\x5d\xaa\x96\xdc\xfa\x32\x76\xe9\x85\x38\xed\x47\x08\xed\x38\x29\x3d\x21\x91\xe1\x2a\xf0\x4e\xe2\x71\xd4\x3a\xb0\x54\x87\xb2\xce\xc8\x2d\x37\xf4\x62\x9d\xa4\x9f\x7e\xce\x57\x5f\x97\xd9\x6a\xb5\xdd\x7a\x34\x58\xd0\x75\x41\xd3\x84\x37\xb2\x69\x4a\x41\xb9\x24\xb3\x39\xae\x02\xc3\xc0\x07\x26\x3b\xf5\x6c\x7e\xc7\xb5\xf3\x2a\x4f\x16\x74\xe1\xe0\x5b\xca\x36\xd7\xb4\x50\x11\x37\xf0\xbe\xbb\xee\xd5\x9d\x77\xd8\xd9\xc3\x1b\xca\xe0\x46\xba\x39\x52\x12\xc1\xf5\x1b\xee\x66\x57\xcc\x3b\x1a\x23\x9c\x8b\xbf\xc7\x96\xe4\x90\xd5\x12\x74\xa9\x84\x46\x06\xc3\x33\x2e\x30\x53\x3d\x10\x86\xd9\xce\x3a\x14\x83\x48\x58\xc4\x05\x7e\x9f\x7f\xa2\x2c\xfb\x46\x8b\x98\x79\x47\x47\x08\xab\xfb\x17\x08\xd1\xcd\xbc\xe1\x31\xc2\xcf\xf2\xeb\x9f\x12\xb6\x58\xd1\x22\xce\xc5\xc0\x7a\x3f\x52\xba\x50\x25\xd5\xd8\x32\xcf\xb1\xca\x1d\x71\x48\x1f\x0a\xda\x80\x2f\xde\xf1\x82\x26\xd7\xb5\xca\xb2\x08\xea\x8d\xc6\xba\xde\x9f\x8b\x8c\x0b\x14\x76\xd4\xaf\xbf\x12\xdf\x1d\x8f\xf4\x67\x3f\x17\xf9\x97\xaf\x5d\x10\xd9\x2f\xa0\xab\xf1\x40\x7f\xf3\x2c\xbf\xfe\x85\x67\xab\xb2\x56\x5f\x17\x8a\xba\x47\xa7\xba\xea\xd3\x7c\xb5\xa2\x29\xcf\xd8\x65\x57\x1f\xad\xb7\xb2\xa3\xa1\xf8\xfa\x19\x5d\x26\x9b\x15\xaf\xa3\xef\x6d\x59\x76\xb5\x53\x15\xab\x78\xed\x16\x3a\xd1\x4e\xea\xb4\x9f\xbd\x79\xd5\x79\xa1\x2c\x96\x7f\x6e\xe5\xb7\x13\xcf\x85\xc7\x30\x47\x01\x65\x0b\x48\xf9\x10\x2c\xf2\x6b\xd5\x8a\x68\x38\x6e\x07\x26\xc9\xa1\x19\x43\x23\x76\xff\xd6\x89\x5b\x36\x9d\x63\x26\x9b\xe6\x08\xe7\xb2\x69\x29\xe0\x3e\xcb\xaf\xe5\x0c\xc5\x5d\xc4\x9c\x29\x48\x65\x51\xbd\xc9\x4c\x70\x0f\xfc\xfc\x4f\xcf\x5f\xbf\x7f\x67\x29\x2d\xe3\x01\x06\xed\x0a\xe4\x57\x8e\x43\xf9\x40\xd9\x22\x0e\xa5\xfe\x3e\xc2\xeb\x22\x4f\x29\x84\x6b\xcc\x54\x3c\xfa\x2c\x67\xe2\x33\xa5\xd5\x89\xf4\x2f\xf9\x55\xba\xca\x4b\xca\x93\xcb\x38\xc2\xf9\x9a\x32\xf1\x6b\xa0\x7f\x89\xfd\x21\x8e\x30\x84\x11\x13\x7f\xc5\x07\x6d\xbd\x4b\x57\x6c\xaf\x9a\x94\x3f\xed\x62\x74\xa0\xb1\x11\x3c\x3d\x28\x37\x6b\x5a\x7c\x24\x1c\xb2\x1d\x76\x07\xde\xb7\xef\xe0\x6f\xad\x38\xfb\xb1\x0c\xe0\x1a\x53\x6c\xf3\x9b\x08\xdf\xa8\xd5\x01\xd9\x76\xe0\x62\x64\xa3\x79\xd1\x6e\x87\xd0\x2e\xde\x07\x91\xd8\x92\x04\x63\xd6\x30\xa9\x13\x72\x2d\xf5\x1e\xb3\xc0\xb4\x01\xb3\xc1\x17\x73\xc8\xec\x92\x5a\x76\x80\x96\xf2\x4a\x10\x84\xb3\x29\x69\x4f\xec\x24\x29\x77\x26\x5e\x53\x7f\x2c\xf8\x5e\x34\x3a\x95\x8c\x2f\x1a\x87\x08\x67\xf0\x23\xb2\x58\x60\x52\x2d\xa0\x34\x78\xff\xeb\xcf\xcf\x9f\x7d\x7c\xfc\xf6\xed\xe3\x5f\x3f\xbe\xfb\xe5\xe7\x9f\xdf\xbc\x7d\x3f\x1d\x44\xa3\xe3\xd1\xc9\xf0\x68\x74\x1c\x47\xe1\xf1\xf0\x78\x14\x9d\x0c\x86\x2d\xa5\x41\xb6\xf4\x12\x0f\x9d\x71\x6b\x2f\x7d\x9b\xb0\x4b\x6d\x6b\xf3\x82\x7d\x4e\x56\xd9\xa2\x27\x46\xb5\xe8\x25\xe2\x44\xd8\x93\x1b\x76\x65\x86\xd4\xdd\xbd\x27\xf1\xf2\x4b\xc6\xf8\x89\xb6\x89\x41\x81\x39\x1d\x92\xb4\x42\x57\xec\xe9\x63\x07\x9c\x90\xc5\x67\xa9\xa8\x8d\xb5\x70\x40\x78\xcd\x94\x29\xb5\x64\x8a\x83\xce\xde\x5d\xf7\x00\x94\xa6\xb6\x39\x51\x8a\xec\xf8\x44\xba\x0d\x21\x0f\x38\x6c\x73\x7d\x41\x0b\x3b\xad\xa4\xcc\xd6\xd5\x0a\xc3\xca\xdb\x22\xc7\x8b\x65\x8f\xb2\x34\x5f\x64\xec\xb2\x97\x95\xbd\x72\x4d\xd3\x6c\x99\xd1\x45\x8f\x5f\x51\x26\xfe\xe9\x41\x34\x2a\xa3\x39\xec\x5d\x6f\x4a\x90\x48\x92\x9e\x6a\xde\x20\x72\xad\xad\x96\xb4\x20\xa1\x34\xbf\x12\xd2\x9d\x7d\x6e\xd6\x19\x9d\x3b\xa1\xe7\x9d\x76\x53\x3f\x38\xb0\x7c\x9c\x06\x24\x4a\x3e\x4a\x7a\xb2\x99\x1f\x8c\x56\x6a\x23\x13\x52\xd0\x85\x95\x23\x18\x26\xf2\xc9\x66\xb9\xa4\x85\xeb\xd6\x22\x11\x5a\x6f\xa6\x75\x62\x57\x60\xf2\xe0\xe2\x2b\xa7\x2f\x95\xa9\xd4\x59\xb8\xdd\xda\x25\x67\x6c\x0f\x01\xfe\x90\x2f\x97\x25\xe5\x3f\x08\xdc\xe6\x1b\xde\xcb\x97\xbd\x8b\x7c\x03\x39\xb5\x27\x8d\x56\xcf\x58\xdf\x2b\xb6\xdb\x10\xed\x6b\x4a\x12\x53\x67\x53\xdc\xba\x69\xd1\x77\x04\x60\x53\xd3\xa2\xe1\xf8\x8e\x97\x98\xa1\xb8\x5d\x86\x0b\x34\xd9\xbb\x46\xf8\xbe\x35\x41\xc9\x12\x56\x68\x95\xb6\xd5\xa0\x33\xee\x20\xcc\x69\x8b\xc3\xb4\xea\x30\xd7\x75\xc4\x5c\x0a\x59\x91\x11\x67\xc3\x97\x27\x12\x89\x07\x69\x90\x95\xcf\x15\x11\x7b\xac\xdb\xec\xee\x07\x47\x93\xb9\x63\x91\xb0\xe4\x0e\xb2\x2b\xb3\x0e\x7e\xd0\x29\x2b\xc3\xed\x15\x20\x05\xe7\xc4\xa3\x44\x70\x9c\x02\xa1\x40\xf0\x6b\x0a\xe5\x93\x5c\x1c\x33\x61\xd1\x57\x9a\xaa\x1c\xb5\xc6\xdc\x8c\x56\x9b\x2d\x3d\x01\xb2\x24\x37\xc1\x29\x94\x28\x10\x6e\x17\x1e\xd7\xaa\x7d\x73\x56\x23\x44\xf7\xce\x90\xbe\x9a\x99\xd2\xd8\x13\x87\x96\xb5\x10\x62\x43\x1c\x0a\x20\x29\xda\xc9\x1d\x41\x2c\xaa\xfb\xa9\x3f\xb8\x80\x5f\x7b\x16\xc1\x76\xeb\x28\x3e\x99\xb1\x1e\x57\x9c\x47\x2f\xd5\xaa\x49\x0d\xed\x76\xeb\x15\xc4\x80\x0e\x87\x6f\x01\x70\x88\x62\x45\x05\x02\x26\xd9\xb2\x54\x90\xaa\x44\x7b\x1e\x0f\x84\x4c\x60\x58\x1b\xd4\x96\x45\x60\xe6\x58\x4c\x3a\x4d\x28\x7f\xbc\x9b\x25\xe1\x9e\xec\x0a\xdb\x23\x52\x0f\xb8\x97\x17\x72\x23\xf0\x57\xd9\x27\xda\x93\x01\xad\x03\xa7\x15\x07\x57\xab\xf1\xda\x83\xa6\x7b\x08\xac\xcc\xbe\xb5\xd8\x53\x9d\x35\x65\x4b\x8f\x9e\x85\xdd\xeb\xbb\xfb\x7b\xc5\xde\x18\xbd\x04\xbd\xec\x0f\xa8\xa5\x01\xcb\x96\xde\x06\x92\x8e\x02\x89\xf0\xb3\x70\x1a\xc6\x40\x48\x08\xe1\xee\xdd\x05\xd9\x8a\x5a\x76\x06\x4a\x53\x04\x59\xbf\xc3\x49\x5b\x9d\xb9\xac\x5b\x3f\xca\x29\xae\x7a\x31\xe4\xaa\x49\xd4\x28\xf9\xa4\x01\x29\x9b\x14\x7d\x12\x21\x48\xfb\x35\x18\x8f\x5d\x3e\x2b\xe6\x1d\xbd\x2c\x14\xb6\xe9\x39\x49\xbc\x7d\x1c\xf0\x31\xe7\xf4\x7a\xcd\x7b\x3c\xef\x25\xab\x55\x2e\x8e\x96\x6a\xa6\x7b\xab\xa4\xb8\xa4\x45\x8f\x5f\x25\xac\x77\x9d\x7c\xc9\xae\x37\xd7\x3d\x15\x2a\xe0\x8b\xd3\x4f\xbc\x7a\x9a\xfc\xbe\xd3\x13\x7c\xb7\xac\xf6\xae\x70\x6b\x01\x73\xd5\xb5\x4c\x69\x95\x8a\xce\x52\xe3\xde\xbf\xd0\xba\x24\x4e\xab\x42\x90\x95\x7f\xca\xe8\x8d\xeb\x7a\xed\x42\x8f\xa2\xed\x96\xee\x59\xa1\x16\x38\xd5\x1e\x32\xd1\x6c\xd3\xa2\x56\xa9\xb6\x77\xfa\x54\x5f\xa1\xd8\xf0\xc3\x8e\xa1\x5b\x0a\xad\xb9\x3b\x88\x26\x13\xa4\x52\xee\x71\x95\x72\x2f\x29\xd3\x2c\x73\x62\x99\x3a\x2f\xe1\x19\x8b\xd4\xc3\x45\xc6\x92\xe2\xab\x13\x9b\xeb\x48\x99\x26\x4f\x70\xe8\x58\xff\xf4\xd5\xef\x9e\xdc\x80\x74\xdd\xbf\x79\x54\x33\x35\xf5\x55\x5a\x0e\xf4\x57\x69\xe9\x0f\xaa\x16\xa2\xa3\x15\xb5\xda\x93\x8f\xaa\x99\xc1\x23\xd5\xe9\x15\xfd\x52\xc1\x71\x7e\x7e\x1e\xc9\xe2\x8b\xa4\xa4\x47\x23\xf3\xe6\x85\xd5\xeb\x42\x1e\xf4\x62\xdb\x56\xdc\x86\x8a\x13\xcf\x71\xfa\x1c\xd5\x43\xb0\xe2\x82\x08\xf9\xbc\xca\xd4\x57\x3f\xf8\x4b\xa5\xbe\x57\x5d\xb7\x6f\xb7\xfc\x2c\x44\x70\x9b\x15\x22\xcc\xcf\xe1\x98\x58\xbb\xc5\x75\x9c\xfa\x27\x6c\xbb\x65\xb5\x6a\x32\x41\x9f\x55\x80\xd9\x19\x09\xeb\x5f\x8b\x21\x93\x10\x9d\x11\x8f\xcb\x5f\xd5\x6b\x31\xb7\x74\xbb\x15\xc4\xa0\xf6\x4e\x33\xc1\x54\x4d\xb0\x8d\xbc\xe7\x52\x78\x83\x7d\x6e\xcf\x74\xaa\x9a\xef\x9b\x35\x15\x9d\xa8\xd7\xaf\x9b\xaf\xef\x22\x9d\x97\xcd\xca\x8d\x89\x7b\xd3\x82\xea\x37\x91\xcb\x3b\xab\x99\xda\xfc\x77\x6e\x37\xbf\xb0\x4f\x2c\xbf\x61\x46\x40\x88\x7b\xb0\x9a\x28\xf1\x68\x1f\x32\xa6\xdf\x45\x18\xd7\x0d\x05\xf6\x8c\xcf\x27\xe2\x1f\x22\x38\x2e\x06\xb6\x5b\x54\xb5\x5f\x69\x29\x49\xc5\x59\xae\x25\x4f\x96\xc0\xfb\x40\x5a\x1d\xf2\xd1\xd4\x2b\x08\xc3\x8c\x84\x28\x66\xe7\xd5\xf1\x69\xca\x88\x75\x96\x62\x67\xbe\x79\x3a\x01\x8a\xb2\x9e\x11\x66\xa4\xcf\x54\xee\x4d\x26\x09\x2e\x9f\x86\x71\xa5\xe5\x14\x34\x17\x42\xb9\xb9\x3e\x63\x08\xb3\xf3\x0a\x48\x01\x75\x5e\x81\x5a\x55\xf4\xa3\x9d\xce\x68\xce\xce\x42\x79\xfa\xa9\x55\x0c\x77\xdd\x87\x16\x58\x34\x29\x5c\xc3\x80\x31\x3b\xc2\x75\xe9\xc9\x12\x94\xf4\x76\x34\xf5\xa3\xf8\xd2\x42\x65\xf7\x31\x89\x9b\x7b\x43\x57\xec\x4d\x78\xcf\x59\xac\x8b\x83\x57\x22\xb2\x75\x6c\x56\xd7\x9d\xd3\x7c\x7a\xd7\x6b\x69\x13\xa3\x04\xc3\xce\x8a\x96\x2e\xb7\x56\x59\x8c\x68\xc6\xe7\x7a\x4c\x9d\xb4\xfa\x39\x59\x19\xc9\x43\x4b\x43\x72\xe0\x42\xf0\x51\x22\x98\x25\x45\xd8\x58\x92\x7a\x1e\x9c\x90\x08\x97\x66\xda\xc0\x0a\xae\xda\x30\x8c\xfd\x91\x90\x7b\xe5\xea\x23\x70\xd7\xa1\x76\xd7\xa2\xb1\x1c\xd0\x76\xab\x16\xa6\x38\x72\x88\x07\xb5\x32\xab\x47\xdf\x3c\x23\x29\x03\x68\x21\x63\x20\x0e\x59\xfa\x77\x45\x29\x09\x19\xe0\xf2\x90\x0c\x70\x2a\xfe\x61\x87\x64\xd0\x38\x5b\x1a\xcd\x42\x04\x16\x0d\x62\xb5\xc5\x34\x28\x68\xb2\xf8\xe5\x05\xe3\xd1\xd1\x93\xe7\x1e\x7f\x94\x80\xb8\x9c\xeb\x20\xde\xbe\xbc\x9d\xcc\x08\x9b\x64\x67\xe5\x24\xeb\xf7\x51\xb6\xf4\x44\x73\x19\x22\x84\xac\x3c\x8e\xfd\x08\x2c\x36\xc3\x38\xf3\x37\x12\x52\x59\xe2\xba\xde\x86\x64\x08\x67\xfe\xa6\x2f\x0a\x4c\xe4\xf0\xcd\xa3\x04\x48\xde\x8f\x0e\x64\xb5\xcc\x27\xe2\x5b\x2c\xba\x93\x8b\x41\xf4\xc9\xfa\xe9\x79\x29\x2d\x26\xfc\x14\x74\x25\x93\xec\x9c\x84\x93\xcc\xf7\x2b\xbf\x9d\x35\x39\x08\xf1\x92\x84\x93\xe5\x59\x3a\x59\x5a\xd0\xf5\x97\x42\xde\x16\xf0\x2d\x11\xba\x5d\x8b\x9d\x07\xd2\xce\x8a\xd1\xad\x35\x24\xd9\x4e\x63\xaf\x42\xd5\xe7\xea\x7c\xcb\xc8\x6b\x20\x11\x8f\xa1\xed\x36\x54\xce\x3d\x66\xdd\xb2\x49\x21\x58\x8b\xaa\x52\x20\x74\x9e\x83\x35\x71\x8e\xe2\x82\xe4\x2a\xcc\xbb\x4d\x23\xd9\x1f\x07\x07\x84\x84\xdd\xcc\x54\xab\x64\xae\xe8\x17\x4b\x83\x70\x9e\x1d\x0e\xa0\xd1\xec\x70\x50\x89\x90\x09\x09\x27\xc9\x59\x31\xe9\xf7\x93\x56\xf2\x13\x73\x8f\x3f\x78\x94\xe0\x01\xc2\xd1\x91\x0c\xdd\x0e\xbc\xab\x34\x5c\x21\x99\xd0\x19\xeb\x27\x73\x62\x12\x9b\x24\x15\x0a\xbe\x56\x28\x50\x2f\x7f\xf1\xfe\xe6\x71\x5c\x0d\x1d\x61\x2a\x9d\xc2\xcc\x37\x8f\x3b\xbe\xb1\x15\x60\x1a\x76\x4e\x66\x73\x2c\x25\x6c\x23\x70\x09\x41\x9b\xcb\xc4\x08\x42\x16\x6e\x5e\x77\x1b\xcb\xa8\x1d\x08\xf4\x8d\x8e\x6f\x5a\x1d\x57\xa0\x54\xb5\xbe\x75\x80\xf7\xa2\xab\xb9\x8f\x77\x8e\x43\x2c\x22\x73\x4c\x10\xcc\x01\x67\x62\x3c\x72\x42\xa8\xc9\x73\x7d\xe0\x79\xdc\x27\x03\x74\x16\x22\x98\x24\x56\xbf\xc2\x4f\x20\x35\xf0\xf9\xf9\x09\xce\x09\xfb\xe3\x60\x7c\x84\x33\x39\xfa\x1c\xe9\x5f\x85\x19\x75\xb6\xbb\x07\xf3\x6f\xf4\x4e\x6a\x33\x7c\xd7\x65\xd6\x16\x39\x2d\x60\x9b\x78\xf2\x95\x53\x6d\x19\x1a\xb7\x8a\xd4\x51\x5d\x34\x65\xb5\xfe\x5e\xb7\xce\xc8\xab\x84\x5f\x05\xd7\x19\x33\x9c\xa8\x7e\xac\x99\xcd\x71\x4e\xf8\x24\x3f\x63\x13\xc3\x32\x71\x89\x53\xbc\x22\x74\x96\xcf\xf1\x46\x66\xee\x59\x93\xd5\xf9\x60\x78\x3a\x1d\xc5\xab\xf3\xc1\x60\x38\x1d\xc6\xab\xf3\xe8\x34\x9a\x0e\x62\xd8\xc0\xf3\xfe\xfa\x8c\x30\x2d\x81\xad\xa5\x04\xd6\x8b\xe2\xd5\x59\x34\x38\x01\x96\xb2\x42\x56\x02\xe9\xde\x20\x8e\x06\x27\x82\xd5\x46\xa7\x03\xd7\xcb\x44\x57\xfd\x68\x0e\xa6\x56\x29\xf1\x86\x91\xbb\x42\x67\x67\x47\xdb\xa3\xa1\x9b\xa1\xf3\x68\x70\x0c\x4d\xa4\xb5\x26\x86\xb1\xfe\x0c\x27\xf0\x63\x30\xc7\x56\xa3\x19\x72\x5d\xeb\x31\x51\x4d\x47\x63\x68\x3a\x1a\x6c\x3d\x68\x5c\xf5\x92\xa0\xf3\x41\x38\x12\xdd\xa4\x67\xe3\xf1\xe0\xf4\x68\xbb\x4d\xcf\xc7\xc7\xc3\xd1\x10\x75\x74\x3d\xea\xe8\xba\x84\x1f\xc3\xfb\x60\xb0\x1e\xcb\x06\x48\x27\x06\x24\x05\x5d\xa2\xa1\x2b\xd1\xf9\xd1\x78\x3c\x1c\xbb\x6e\x7a\x16\x45\xd1\x28\x8a\x06\x0a\xaa\x9d\x52\xd6\x6e\xa6\xde\x86\x88\x3a\x43\xbc\x26\x11\x8a\x37\xfa\x03\x6f\xe3\x43\xf9\x11\x2e\x24\x89\x6e\xc4\x31\x22\x74\xa3\x70\x30\xdc\xc2\x48\x05\x03\x1f\x1f\x0d\x07\xe1\x56\x94\xb9\x1b\x64\x6a\x22\x9c\xf7\xc9\x5a\x73\x9a\xb6\x5d\x75\xdd\x02\x88\x7c\xd1\x5c\x4a\x6e\x9e\x40\xa8\x4f\xd5\xf2\x09\x92\xf5\x7a\xf5\xd5\x93\x6f\xb0\x39\xbc\x39\x0e\x78\x66\x0a\x6a\x04\xf7\x4c\xc4\xfa\xe4\xfe\xaf\x15\xc9\x17\xb8\xe8\x93\x2f\x56\x7a\x8f\x9d\x57\xa0\x1d\x0f\xa4\x58\x40\x52\xcc\x83\x77\xab\xfc\x46\x3d\xda\xe0\xf7\xe9\x81\x52\x6f\x87\x96\xe2\x1c\x4e\xe1\x5e\x5f\xde\xcb\xbf\x78\xfd\xee\xe7\xe7\x4f\xdf\x7f\x7c\xf5\xf8\x2f\x1f\x9f\xfc\xfa\xfe\xf9\x3b\x32\x0e\xbb\x45\x2a\x3b\xbd\x7f\x97\x5e\xb1\xb3\xb4\xe6\xcc\xa9\xf2\xcd\xb4\x74\xf4\x55\xde\x71\x6a\xe9\x25\x6f\xcd\xcf\x4e\x79\x0b\x2f\xf3\xbc\xe3\xc6\x77\x34\xd8\xed\xf0\x68\x00\xdc\x65\x99\xe7\x1e\xea\x96\x04\xa9\xd8\x87\x40\xa1\xe4\xba\x52\x5a\xd7\xcf\x90\x84\xc3\x3a\x9c\xab\x4c\x38\x46\x3c\x39\x88\x76\x3b\x0f\x61\x1e\x7c\x7a\x95\x7c\x91\x55\x48\xe2\x09\xe9\x76\x9d\xe7\xab\x77\xd9\x37\x4a\x4e\xa2\xd3\x01\x4e\x83\x8f\xc9\xe6\xf2\x9a\xb2\x4e\x3b\x07\xda\xad\x80\xc5\x74\x87\xa5\xcc\xdc\x32\x65\x30\xda\x79\x99\x5e\x43\x6a\xe7\xf7\x09\xbf\x9e\xd5\xa6\xd5\x53\x27\x1e\xd3\xce\x0a\xb8\x53\x47\xf2\x0e\xfc\xa8\x5c\x57\xfe\x0d\xe0\xde\x81\x96\xae\x9b\xce\xea\x25\x73\x21\x50\xb9\x6e\xf7\x05\x7e\x8a\xeb\x95\x55\x8e\x44\xe9\xdc\xd5\xbc\x4b\x83\x73\x03\x50\xec\x3e\x8c\xb4\x15\xff\xc6\xb8\x8b\x23\xcc\xcf\x48\x38\x95\xd7\x4e\xb1\x21\x60\x36\x6d\x1f\x58\x0a\x55\x2b\x58\x66\xab\x15\x64\xe5\x8b\x6b\x05\xfa\x71\xd7\x9c\x00\x00\xee\x17\x56\x26\xcb\x2e\xdb\xcd\xde\x5a\xd5\x6f\xd6\x15\x4b\xf6\xde\xfa\xfa\xc0\xd4\x51\xf1\x40\xdd\x5f\xd1\xed\xf6\x80\x06\x1f\x75\x4d\xf8\x4c\x19\x22\xb5\x6f\x1e\x0f\x6a\xaa\xb1\xed\xf6\xa0\x7e\x26\xeb\x14\xfd\x1e\x6b\xf3\x75\x73\x42\x91\x1f\xa8\xcb\x10\x30\xe2\x6b\xeb\xa2\xaa\x13\x24\xae\x74\xcc\x38\x27\x21\xce\xaa\x9d\x1a\x6e\x29\xf2\xb3\x6c\xd2\xef\xe7\x42\x34\x16\x1b\x31\xd8\xe2\xe4\x73\xb1\xa3\xc3\xbe\x5c\xc0\xa3\x92\x8e\x35\x07\x3c\x2b\xc4\x59\xb1\x38\x63\xd3\x28\x0e\x25\xa2\xf4\x55\x42\x0d\x55\x6a\x9f\x56\xa7\x1c\xda\x3c\xe5\x58\xfa\x93\x3b\x74\x5f\xf7\x6b\xd0\x6a\x3a\x8f\xdf\xae\xe0\x38\x08\x8d\x5a\xa3\xe2\x35\x30\x9d\x2c\x4d\x78\xc7\x6c\x66\x1e\xdd\x77\x6f\xb2\xca\x4a\xde\xa5\xd6\x56\x16\xb6\xbd\x7c\xa9\xa7\x51\x6a\xb8\x3b\x54\x16\x66\xab\x08\xd5\x36\x56\x9d\x24\x61\xce\xc5\x54\x73\x12\x76\x8a\xcb\x7d\x50\x94\xe8\x22\x29\x81\xd5\xc8\x1f\xec\x18\xd4\x96\xd8\xd1\xc0\xad\x3c\x48\x88\x46\x26\x0d\xba\x4d\x7e\x97\x21\x27\xf2\x1e\x46\x1c\xa0\xc5\xee\xaf\xd3\xb4\x69\x0a\x2b\x04\xde\xab\x4d\x80\x5c\xe1\x1a\x47\x35\xeb\xf2\x20\xac\xbd\x28\x6f\x92\x75\x74\xd4\xf6\x09\xb2\xf4\x7f\xb0\x66\x5a\x47\x2d\x5b\x61\xae\x94\xe3\x65\xf6\x8d\x5a\xd7\x11\xd7\x9b\x15\xcf\xd6\x2b\x2a\x86\x11\x1d\xf9\x17\x19\xe4\xa1\xa9\xce\x2d\xe1\x84\x9f\xd1\x09\xef\x93\x01\xba\xd6\x7a\x32\xde\xaf\xb6\x56\x51\xb4\x6b\x01\x3b\x1c\x3c\x00\xd8\xd1\x3f\x05\xec\x70\x70\x07\xb0\x23\x1b\xd8\x21\xc2\xfa\xa9\x1f\x61\xde\x1f\xdc\x03\xfc\xd1\xe8\x01\xc0\x9f\xfc\x53\xc0\x1f\x8d\xee\x00\xfe\xc4\x06\xfe\xb8\x01\xfc\x91\xf5\x3c\xc0\xbc\x3f\xb6\x9e\x87\x98\xf7\x47\x77\x0c\x4e\xdf\x7a\xb4\x87\x17\x6e\xed\x01\x5a\x47\x2a\x3a\x75\x9c\x38\xec\xf0\x36\x9a\x2a\x45\x6f\x88\x29\x8a\x2f\x94\x84\x09\x25\xa6\x26\xaa\xf7\x4e\xff\xbe\x49\x56\x75\x8b\xc1\xd6\xd6\x71\xf7\x56\x61\x21\x53\xeb\xae\xec\xc1\x12\xd8\xb5\xc0\x2b\x53\x6f\x55\xc6\x08\xa1\x06\x49\xc6\x84\x88\xd0\xe1\x63\xe7\x38\xe0\xb2\xd8\x12\x5e\xed\x5e\x2c\xf7\x3b\x4f\xd1\x85\xb9\x4d\x02\x9e\x0f\x17\xb0\xda\x3f\x21\xb8\x1d\xec\x0e\x2f\x2d\xc7\x3f\x6c\xb7\xc1\x94\x69\x68\x2f\x08\x82\x9e\x83\x10\x76\xce\x14\xed\x38\x7d\xda\x77\xce\x9d\x3a\xdc\x5d\xfb\xaf\xa5\x1e\xfe\x67\x51\x59\x63\xc3\xfa\x72\xc2\x36\x25\xf0\x18\xa1\x53\xcd\x4f\x63\xfb\xa5\xf4\x28\xb7\x4b\x72\xd7\xf5\xf2\xfa\x05\x05\x3f\x0b\xb7\x5b\x76\x4e\xcd\x35\x71\x21\x0a\xf2\xda\xb5\x46\xf7\x82\x52\x16\x0e\x85\x28\xea\x81\xe6\x54\x19\xbf\x9e\x8b\x7e\xf8\xb9\x7d\x6b\xa5\x8a\x6b\xfa\x71\xbb\x86\x2c\x50\xe4\xd2\x16\x30\x32\xe2\xe5\xf2\xb2\xc4\xf7\x0a\xf9\x03\x27\x44\x5f\xa5\xf8\xfa\x26\x05\x97\x95\xb8\x91\xe1\x04\xe1\x95\x1c\xab\x3e\x5a\xe5\xe2\x58\x68\x2b\x17\xf0\x9a\x84\x93\xf5\x59\x39\xe9\xf7\xd7\xa0\xae\x9b\xad\x85\x4c\xb2\x99\xad\xe7\xe8\x36\x23\xe2\x11\x27\xf0\x58\x97\x49\xb2\xb3\x44\xc8\x24\xc9\x59\xa6\x65\x12\x9b\x8e\xd3\xd5\x66\x41\xdb\xfe\x03\x7a\xec\x42\xe8\x11\x50\x19\xd7\x1b\x23\x5d\xb6\x14\xd1\xfb\xc4\xe0\x57\x96\xd9\x0e\x86\x78\x27\x69\xb7\x72\xfa\x61\x0d\x44\x8d\x06\xc0\x7e\xa2\x45\xd0\x40\xce\x96\x48\x50\xa8\x5b\x2a\x5c\xbb\xf2\xc2\x82\x67\xea\x5b\x04\x9b\x4e\xbb\x6c\x9d\x0a\xc2\xf7\x7c\x2d\x45\x9e\xf2\x47\x08\x91\x5c\x17\x57\x6b\xfc\x5c\xd9\x7a\x68\x3d\xba\xbe\xff\xc1\x3d\x69\xd5\x33\xc3\xca\x98\x6c\x8e\x7a\x59\xd9\x63\x79\x6f\x95\xb3\x4b\xb1\x0d\x6c\xd6\xeb\xbc\xe0\x60\xb0\xcd\xb7\x42\x52\xd5\x7d\x31\x34\xf5\x98\x28\x69\xac\x23\x75\x25\x87\x62\x75\x87\x23\x5f\x4b\x23\x88\xda\x9a\xf2\x79\xc7\x2d\x61\xae\xae\x6a\x2a\x93\x33\xe0\x55\xd2\x4c\xe9\x2c\x44\xdb\x2d\x7f\xc0\x92\xb3\xae\xd7\x61\xdc\xbd\x7c\xc3\xcb\x6c\x41\x7b\xca\x52\xc4\x58\x1b\x15\x60\xee\xa1\x6f\x11\xab\x65\x64\xdf\x19\x17\x1d\x57\x8a\x9f\x6d\x7b\xb0\x7b\x2e\x15\xbf\xb6\xeb\xd6\xaf\x15\x1f\xb7\x2b\xdc\x75\xb1\x78\xd3\xae\xde\xb8\x5a\xfc\xd6\x01\xdd\x6f\xba\x5c\xfc\x58\x6b\xc8\xba\x5e\xcc\x1e\x7e\xbd\x58\xa0\x49\x01\xf7\xce\xcd\xfb\x14\x9c\xc1\xf5\x62\x63\x93\xff\xf7\x77\x6f\x5e\x93\x96\x0a\x43\xf9\xd8\x2b\x6e\x8f\xc1\x49\xb7\x79\xd7\x04\xec\xaa\x72\xd3\x0e\x3e\x26\x45\xb1\xdd\xca\x7d\x1e\xed\xa4\x63\xdc\x17\x32\x0a\x4f\x8f\x2a\xdb\xcd\xd7\xf5\x2b\x4d\xc7\x99\xdc\xa3\x33\xd5\xea\x52\x71\x38\x2b\x3a\xf5\x55\x5e\x34\x38\x76\xc5\x29\xcd\x6c\xef\xd6\xa5\xe8\xcb\x7f\x41\x7f\xfb\xfa\x7a\xde\xf4\x37\x52\x02\x92\x77\xd0\xb8\xc2\xf7\x0e\xc4\xd2\x93\xfb\x5b\x21\xd7\x5f\x61\x43\xe0\x38\x38\x23\x7c\x92\x01\x18\x19\xca\xfb\xe4\x2f\x1e\x9d\x65\x55\xa7\x56\xd0\xc0\x77\xba\xd3\x4a\xc9\x5c\xdb\x48\x54\x6b\xe1\x24\x3b\x2b\x8c\x48\x2a\xe4\xf3\xbc\x7b\x70\xc5\x2c\x9b\xf7\x07\xe3\xa3\x47\xc5\x2c\xeb\x47\x9d\x5d\xfe\xdd\x32\x42\xa5\x7f\x14\xdb\x46\xb8\xdd\xee\x35\x4e\x72\x24\xc3\x93\x5c\x8e\xf7\x36\x19\x53\x99\x72\x69\x9f\x9f\xef\xb3\x7d\x7c\x5f\x7c\xcd\xd8\x25\x58\xeb\xa4\x29\x2d\xcb\xde\x05\xfd\x9a\xb3\x85\x66\x27\xda\x0e\xb7\x82\xe9\x69\x25\xdd\xe0\xec\xa1\xf2\xcd\x0f\x8e\x6c\xaf\xd3\xf2\xea\x49\xdd\xc6\x4d\x1e\x50\xf9\x79\x2e\xa6\x32\xdb\x67\x87\xd5\xb4\x33\x6d\xda\x5b\xca\x56\x58\xbf\x30\x72\xcd\x5e\xeb\xe3\x05\xfd\xd2\xb3\x25\x19\x7b\xb4\x9f\xaa\xad\x8f\xc3\x9d\x3a\x07\xb5\xf3\xb8\x0f\x67\xad\x8a\x90\x6a\x7a\x8e\xea\x7e\x04\x0f\x2a\x85\x07\x9d\xb1\x7e\x3e\x27\x1e\x77\x07\xe3\xf1\xd9\xd9\xc9\x23\xaf\x98\xe6\x71\xe4\xe7\x08\x9d\x9f\x9f\x5b\x8f\x56\x9c\xca\x76\xef\xa3\xc1\xe9\xe8\xf4\xe8\x78\x70\xfa\x60\x10\x46\x2d\x10\x78\xd5\xdf\xd0\xcf\x91\x80\xc7\x8a\x74\xd9\x9a\xdf\xdf\x88\xc4\x89\xb2\x21\xf8\x2d\x68\x7f\x62\x80\xc8\x2a\x17\x8e\xed\xf6\x19\x18\x52\x8a\x21\xe1\x5c\x6d\xfb\xba\xde\x60\x28\x4a\x59\x7f\x54\x35\xf2\xf3\xdd\x8d\x9c\xb4\x1b\x19\x0f\x44\x29\xeb\x9f\xec\xd2\x26\xf7\xed\xf2\xe4\xc3\x45\xf3\xfc\xe9\x51\xf2\x8f\x7f\x50\x74\x16\x4e\xc5\xf9\xa1\x40\x67\xa1\x52\xc7\xc7\xf4\x5c\xda\xa0\x16\x08\x7b\xdc\x8e\xf0\x51\xc4\xff\xf8\x07\x87\x2f\xb8\xf9\x42\xf0\xae\x98\xc3\x17\x5c\x7c\xc1\xcf\x20\x4a\x02\xa1\xa8\x5b\x03\x8c\xb4\xcd\x91\xd1\x6a\x0b\x20\xf7\x58\xfd\x4a\xe1\x4a\x71\x60\x9f\x4e\x98\x32\x86\xcf\x95\xb8\x63\x0b\x0b\x82\x99\xe5\xc0\x1a\xd9\x2c\x9b\x43\x1f\xb3\xac\x4f\xe7\x46\x33\x57\xdf\xe3\xf4\xed\xfd\xcb\xe7\x2d\xa9\x93\x0a\x79\x0a\xc4\x2c\xb6\xdd\x4a\xbe\x66\x0b\x3b\xd6\xcd\x1d\x74\x42\xe7\x38\x27\x11\xb0\xd3\x7e\x3f\x3b\x13\xc7\x9e\xfc\x11\x19\x8c\x8f\xd0\x44\x6c\x16\xb2\x4e\x3f\x9b\x3f\xca\x27\xb6\x0a\xa7\x0d\xca\x93\x7f\x1e\x94\xbe\xef\x43\xf0\xc7\x68\xc2\x41\x62\xeb\x00\x44\xd4\xb8\x17\x94\x93\x06\x0d\xe9\xc3\xab\x04\x22\xc2\xf5\x43\x99\xc4\x42\x77\x4b\xd1\x51\x03\xc3\xcd\xc6\x06\x9d\x8d\x6d\x15\xb4\xd1\xfc\xec\xec\x64\x5f\xcb\x4f\x7e\x4b\xcb\x67\x67\x27\x55\xe3\xdd\x2d\x0f\x07\xf7\xc0\x3c\xaa\xb7\xec\x75\x01\xad\x1f\x06\xf3\xb3\xb3\xe8\x08\xf5\xa3\xa3\xe3\xe3\xe3\x41\x74\xf4\x48\x95\x0f\xf7\x76\x7e\xcf\xb0\x1a\x9d\x37\xda\x9d\xf7\x3d\x0b\x8a\xe8\xc8\x06\xc3\xc0\x34\x9c\xa3\x76\xe7\xff\x5d\x8b\xe1\x9c\x88\x2a\xd1\xe0\x44\x08\x3d\x85\x2f\x37\x86\x75\x7e\xe3\x0d\xf0\xc9\x23\x8e\x10\xee\xa0\xd1\x7f\x7a\xb5\x28\x28\xcd\x9a\x28\xe6\x93\xa2\xbe\x62\xb2\xbe\xfd\xb6\x82\x37\xab\xc1\x9b\x75\xc0\x9b\x75\xc2\xfb\x5d\x4b\x2a\x1a\x9c\xb8\x0a\x9f\x53\x3f\x7a\xe4\x0d\xc6\x63\x5f\xcf\x6f\x84\xe2\xbd\x2b\xae\x7b\xc1\x75\xae\x07\x75\xff\xdb\x45\xba\x7a\xa8\xc3\xc1\xf1\xd1\x89\xcb\xa6\xb0\x91\x87\xd1\xf1\x51\xb8\x65\x71\x07\x1f\xed\x5e\x8c\xf7\xf7\xda\x8f\x74\xbf\xbf\xb1\xd7\xef\x5d\xa8\xf7\xaf\xd3\x6a\x85\x9c\x9d\x0d\x46\x7b\x3a\xfd\xbe\x05\x6a\x46\x38\x18\x6d\x1f\xb2\x34\xdb\x9d\xfe\xb8\xca\x93\xe6\xda\xbc\xa7\xd3\x1c\x3e\xd4\x07\xc7\x83\x50\x0a\x1d\x7b\x9a\xfe\xbe\xf1\x34\x9a\x8e\xf6\x35\xfd\x2c\xdf\x5c\xac\xe8\x3d\x60\x9f\xdc\x03\x36\x88\x39\xfb\xda\xbe\x07\xee\xbb\xdb\x8e\xba\xda\x06\x19\xab\x53\x2c\x10\x82\xad\x47\x49\x9f\x6a\x06\x43\x42\x88\xf6\xfd\xd4\xd6\x4d\xd5\x58\x01\x43\x7e\x84\xd5\x05\x95\xe6\x89\x70\x31\x25\x26\x9a\x4b\xef\x05\x0a\x5c\x92\xd9\x7c\x47\xbe\xee\x67\x73\x42\x0f\x73\x21\xef\x1a\xcd\x71\x9f\xed\x01\xb6\xc5\x0a\xff\x59\x60\x99\x2f\xc0\x8d\x2c\x70\x85\x2c\x2e\x01\xf6\xfd\x5c\x46\x02\xc8\x1a\x10\xe7\x02\xe2\xec\x61\x10\x9f\xec\x53\xf5\xd9\x40\xdb\xe0\x46\x78\x30\x1e\xe3\x70\x8f\x50\x09\x56\xe8\x30\x9e\xe5\x2a\xcf\xe1\x68\x87\x6b\x68\xc6\xbc\x1f\xed\x01\xa5\xc5\x2f\x1f\x00\xcd\x00\xc3\xc9\x6a\x2f\x3c\x53\xaf\xd1\xbb\xc4\x50\x34\x27\x54\x9c\x67\x50\xfc\xa9\x6a\xeb\x20\x44\x98\xf7\x07\x7b\xa1\xeb\xd8\xe7\x7e\x37\xe8\x00\x1a\x0b\x3a\x80\xb6\x0e\x5d\x74\x17\x74\x2d\xfe\xfb\x00\xe8\x46\xb8\x3a\x17\xde\x0b\x62\x7f\x28\x81\x1c\x8c\x34\x94\x03\x59\x10\x1d\x35\x91\x5a\x9f\x70\x14\xff\xb9\x89\xe2\xd1\xde\x41\x7c\x3f\x8a\xbf\x6b\x10\xcd\x21\x44\xcd\x21\x0c\x1a\x33\x31\xec\x1c\x44\xb4\x6f\x10\xfb\xd8\x15\x98\x40\x68\xf8\x0f\x0a\xed\xd9\x5f\x5f\xf7\x7e\x84\x26\x35\xb6\x90\xfb\x11\x16\x27\x7b\x75\xaa\x52\xd6\xdb\x77\xb1\xae\x44\x33\x02\x2a\x4e\x84\xe2\xa8\x58\xba\x6e\xa8\x2e\x0e\x04\x2b\x83\x60\x26\x5e\x49\x22\xbd\x2a\x05\x77\xf3\xe8\x61\x72\x7e\x1e\x22\xbf\xbc\x9f\x65\xec\xe3\x71\xbf\xc7\x08\x05\xaf\x6b\x8f\x51\x40\xa8\xf9\x5d\x26\xf9\xdd\xbd\xc3\xec\xff\x0e\xc3\xfc\x0d\x8c\x31\x1a\x1c\x63\x5f\x88\xa3\x0f\xe7\x8d\x54\x1d\xf6\x07\xe3\x71\x9f\xf6\xa3\x87\x31\xcb\xdf\xcc\x2b\x85\x40\x77\x8c\x7d\x90\xeb\xfe\xa5\x0c\xf3\x37\xf3\xcb\xef\x82\xf0\x9f\x61\x9a\xbf\x99\x67\x56\x1e\x37\xb8\xe6\x5f\xf3\x5b\xb0\xb9\x97\x95\x1a\x66\xfb\x40\xee\xf9\x9b\x99\xe7\xbe\xd1\x68\xba\xb4\x34\x87\x40\x9e\xff\xad\xec\xb5\x4b\xfa\xb6\x46\xf9\xc4\xc6\x54\xeb\x6a\xb4\x6a\x61\x3f\x9e\xec\x16\xa2\xee\x16\x3a\x65\x69\xab\x89\x9f\xef\x07\xa2\x53\x64\xde\xd3\x44\x1b\x8a\x34\x5f\x7f\xed\x66\xc0\xd2\x7d\x3e\x44\xb8\x90\x86\x13\xf2\x32\xaf\x7e\x02\xaa\xdc\xb9\xa4\x6e\xb0\x7a\xb3\xdd\xca\xdb\x0f\x38\x7c\x17\xb0\x9d\x14\x84\x21\x5c\xd4\xfd\x48\x1b\x66\x60\xb2\x27\xde\x72\x79\x94\x35\xf9\x5e\x4d\x2e\x4f\x8a\x4b\xca\xdf\xf1\xa4\xe0\x5d\xd1\x13\xd4\xed\x4b\xad\xe1\xee\x86\x64\x60\xad\xbd\x0d\x15\x7b\x21\x90\x1f\x3e\x67\x8b\xd6\x67\x85\x7d\xa3\x0a\x68\xa8\xe1\xd0\x68\xc9\xf9\x59\xe1\x4b\x34\x55\x45\x7d\xa6\x24\x77\x9c\x91\xc2\x67\xb6\x79\x82\xeb\xb2\x33\xee\xba\xfc\xac\x00\xab\xb8\x9c\x64\x7e\x34\x11\x12\xbc\x10\xe4\x11\x9d\xe5\x7d\xae\x94\xa5\x79\x9f\xcd\xcd\x5d\x78\x76\x16\xd1\x21\x58\x61\xee\x73\xf8\xce\x49\x68\x29\xeb\xbb\x9a\xe9\xf4\x45\x2b\x29\x37\x3e\x68\x35\x35\x30\xc3\xac\x9f\x21\x2b\xc2\x43\x43\x8d\x02\xc1\xb1\x3a\x29\xb0\x7d\x57\xbf\x37\x5e\xc9\x54\xa0\x15\x4b\xd3\x40\x1b\xbd\x1d\x21\x24\x14\x29\x36\x2a\xe2\xc8\xb6\x46\xbc\xd5\x9e\x4d\x96\x8f\x4a\x88\x26\xf9\xd9\x60\x7c\x04\x8c\x2c\x07\xa7\x30\xdb\xc7\xad\xed\x50\xbd\xc7\x49\xd4\x44\x51\xe9\x08\x90\xd2\x39\xb8\xc2\x75\xeb\x91\x2b\x8a\x3d\x06\x3c\xdd\xf7\xc3\xe0\x3f\xd6\x11\xfa\x45\x8c\x03\xdc\x19\x91\x5a\x5b\x5b\xdb\xd0\xeb\x8c\xd7\x1f\xf7\xdd\xdd\xbd\xd9\x63\x7e\xc3\xce\x2a\x13\x5d\xd1\x8e\xf4\xfe\x92\xb7\x6a\xe7\xe7\x30\x4f\x56\xcc\x77\xab\xa7\x98\x9d\x9f\x9f\x87\x58\x3a\x20\x87\x08\x77\x05\xad\x91\x0e\x78\xd5\x9d\x29\xd0\xa7\x38\x58\x57\xf7\x0a\x09\xa9\xdd\x08\x4e\x69\xfc\x37\x4f\xc7\xc3\x29\x2c\x27\x7f\x84\x70\x69\x4c\x31\x95\x67\x5f\x28\x1a\xf6\xb9\xd5\xb4\x58\x04\xc9\x2c\xfb\x63\x69\x6e\x1d\x44\xb9\xbc\xf4\x7e\x4b\x0e\x67\x7f\xed\x7f\x38\x0c\xfd\xd3\xc7\xfe\xff\x93\xf8\xdf\xfc\x8f\xf3\xc3\xcb\xea\x12\xfc\x2f\xb6\x0d\xfe\x59\x74\x34\x75\x42\xa7\x4f\x6b\x61\x06\xe2\xfa\x63\x75\x7d\xf4\x37\xeb\xa6\x67\x02\x61\x05\xa3\x43\xdb\xf9\x9e\x56\x56\xce\x32\x4f\x49\xe5\x7b\xa5\x9c\xe1\xc0\xd7\xbb\xe9\x6c\x85\xce\xc7\xe3\xc1\xe9\x58\xb0\x90\xf1\xf1\x70\x34\xd2\x3e\xb6\xc0\xf6\xcf\xc7\x47\xc3\xe8\x14\xdd\x7a\xdc\x27\x43\x74\xee\x47\xae\xab\x5c\xb0\x06\xc3\x53\x1c\x9d\x46\x38\x3a\x39\x45\x93\x34\x67\x3c\x63\x1b\x2a\xd6\x41\x02\xee\x8c\xc5\xc3\xbf\xc9\x09\xab\x35\xc0\xce\xc0\x4d\xe6\xbe\x06\x70\xed\x3b\x26\xbd\x6f\xfa\x5e\xee\x83\xb7\xcd\xd9\x59\x14\x6e\x99\x2f\x5b\x92\x5e\x93\xb9\xd8\x96\xee\x04\x29\x5b\x7a\x0a\x77\xec\x4c\xc8\xda\x80\x30\xee\x93\x08\x9d\x85\x48\xfa\x25\xa9\xcf\x18\xb2\xdc\x92\x07\xe1\xa8\xaa\x3b\x68\xd7\x3d\x3f\x3f\xda\x46\xa7\x03\x7c\x34\x74\xd9\x56\xb4\x6b\x7d\x0b\x50\x9b\x8f\x87\x5d\x1f\x47\x83\xed\x60\x30\xc2\xa2\x19\xf7\x68\x28\x1a\x68\xb4\x24\xd3\xc8\x31\xed\xb2\xd4\x61\x98\xa4\xdd\x27\xd3\x7c\x41\x7b\xeb\xdc\x5c\xc4\x8b\x3e\x47\x9d\x7d\x9e\x6c\x07\xa3\x10\x43\xef\xba\xd3\x6e\x00\x8c\xfd\x59\x45\xa8\x2f\xec\x9c\x80\x01\xcf\x2b\x2f\xba\x86\x4d\xa7\xd7\xe9\xb1\x40\x03\x5e\x64\xd7\x53\xf9\xc7\x43\x71\x2d\x10\x67\xd9\xdf\x7e\x28\xfb\x7f\x38\xbc\xc4\x0e\x44\x5f\xa9\xd2\x2c\xbe\x85\xb0\x9c\x4d\xcf\x5f\x15\xc2\x60\xa2\x17\x87\x34\x26\x9e\x20\xda\x27\x0e\x71\xec\x98\x3b\xb6\x5b\xdf\x2f\xd5\xd6\x63\xdd\x67\x4f\xf2\x33\xc1\x7e\xbd\xbc\x2f\xc4\x07\x23\xa5\xe4\x96\x1f\x3b\x6c\x94\x1c\xb6\x47\x70\x1f\xa8\x6c\x28\xda\x69\x0d\xee\x48\x61\xd0\xf6\x01\xd3\xec\x4e\x07\x35\x3e\x80\x78\xa2\x32\x0e\x8d\x03\x91\x22\x6c\x37\xa3\x56\x28\xce\x56\xf8\x35\x16\x2c\x3c\x8e\x9d\xc4\xe9\xca\x36\x92\xef\x90\x8e\x66\xc4\xbc\x10\x56\x5a\xc0\xbc\x02\x05\x89\x0a\x57\xf7\x34\x67\x9c\x7e\xe1\xde\xed\x0e\xdd\xd3\x8f\x8a\xc7\x13\x7c\xfc\x48\xcb\x57\xf9\x62\xb3\xa2\xe4\x20\xc4\xe0\x93\x93\x6c\x56\xfa\xe2\x59\x69\x24\x5b\xc3\xc6\xac\x62\x9d\x85\x67\x98\x9f\x04\x53\xb2\x32\x83\x53\x8e\xe4\x26\x85\x20\x4c\x10\x71\x16\x34\x5d\x39\xd8\x04\xf6\x66\x84\x62\xb8\xbc\xde\x1b\x82\xcf\x8a\x7a\x87\x30\xdf\x13\xd8\x8e\x63\x6e\xdd\x62\x33\x5c\xec\x3c\x4f\x48\x10\xde\xe8\x08\x21\xd7\x2d\xac\x81\x4e\x8b\xf8\xd6\xf8\x53\xec\x90\x1e\x32\x9a\x54\xa3\xcf\xab\x90\x9d\xc4\x94\xde\x83\xd1\x07\xe1\xb2\x20\x89\xc7\xbc\xe3\x31\x12\x93\x07\x3f\x8f\x10\xc2\x19\xfc\x1c\x1d\xa3\x5a\x48\x3d\x6b\xe5\xb9\x2e\xb5\x07\x40\xab\x01\x50\x99\x41\xb2\xb4\xed\xc5\x4c\x1b\xb4\xe6\xc2\xdc\xcb\x58\xcf\x6c\xe7\xd2\xfd\xef\x76\xa7\xec\x99\x8b\xe4\xa6\x24\xb7\x3b\x4c\x91\x39\xd6\xcd\xf8\x7c\x57\x65\xe8\xd4\x36\x01\x7a\x67\x0d\x20\x34\x63\xdb\xf7\xa4\x61\x80\x6c\x3a\x50\xa1\x85\x6f\xab\x1b\xa8\x40\x67\x51\x7e\xf2\xd5\x0a\x98\x69\x55\x0e\x32\xb6\xde\xa8\x8e\x3c\x8a\x59\xb0\xca\x98\xf8\x93\x42\x40\x61\x2b\xc4\x2d\x84\xad\xd4\xd8\x56\xb1\xef\x6f\x92\x82\xed\x89\x3a\x2d\x53\x9a\x48\xd9\xc0\x70\x11\x81\x1c\x86\x8a\x59\x3e\x27\xcc\xe2\x0f\x14\x1a\x82\x40\x15\x32\xa2\xfe\x75\xfe\x99\xb6\x6d\xf3\x24\xd8\xeb\xa4\xa0\x4c\x88\xfb\xd5\x83\xfa\xe2\xe9\x55\xb6\x92\x97\x1f\x0a\x1d\xf2\xad\xa2\x0c\x28\x12\xcd\xb7\xed\xfb\x05\xc6\xea\x53\x96\x19\x7a\xc5\x34\x90\x62\x68\xb6\xfc\xaa\xc3\x96\xe9\x67\x9d\x72\xc7\xca\xa2\x21\x57\x63\x3d\xa7\x4e\x9f\xd0\x1d\x42\x98\x43\xd0\xe4\x55\xce\xe8\x5d\x3d\xdf\xee\x74\xab\x16\x81\xd9\xe1\x71\xe9\x4d\x8f\xdb\x8b\xb2\x8e\x5d\x8e\x20\x44\xde\x55\x52\xbe\xb9\x61\xc6\xe9\x2f\x47\x3a\x20\x29\x9f\xe5\x42\x2c\x52\x0c\x35\x9b\x38\x12\x47\x8e\xb4\x45\xaf\x58\x2a\x49\xa6\x70\x3a\x80\xa9\x12\x67\x07\x20\x16\xa8\x36\x85\xc2\x2c\xce\x5a\x51\x96\xd4\x9b\x76\xd6\xce\x0a\x3b\x62\x8a\x11\x8a\x3d\xbb\x27\xd7\x15\x52\xc7\x01\x21\x99\x0b\x5e\xda\x5e\x86\x10\x96\x4d\xa1\xca\x25\x48\x4e\x6c\xe5\xe2\x26\x33\xbe\xf0\x19\x93\x61\x61\xaa\x40\x00\x1a\xcb\x4f\xe8\x32\x2f\x1e\x88\x6b\x20\x17\xf8\xca\xa3\xf5\x55\xa2\x28\x4c\x66\xba\x94\x4d\x6a\x8e\x6b\xcd\xe8\xe3\x25\x6f\xf8\x09\xfe\xb3\x5d\x41\x8b\xf5\x9e\xd4\x5e\xff\xe7\x8c\x5f\xd9\x8b\x43\x9d\x84\xd5\xe7\x76\xda\xda\x56\xbe\x5a\x6e\xe5\xab\xa5\x48\xfb\x8e\x4d\x58\xbf\x2f\x11\x59\xe5\x44\x62\x73\x3b\x28\x19\x38\xef\x17\x67\xb9\x71\x7d\xe9\xf7\x35\x41\xe5\xb3\x62\x3e\xb9\x1b\x53\x19\xda\x49\xf6\x07\xab\xd4\x43\xb5\x83\x03\xe6\x01\xa3\x5f\xf8\x5d\x03\xb2\x7c\x8b\x4c\x1f\x0b\xfa\x45\x11\x44\x07\x06\x05\xeb\x51\xc6\x2f\x10\xfd\xbc\xa0\x9f\xff\x15\xed\xfb\xaa\xfd\x8b\x36\xa1\x3d\x88\x82\x54\xae\x62\xd1\x44\xd2\xa2\x9f\x87\x10\x86\xd5\x40\xdb\x9e\x59\x8e\xea\xb6\xe2\xbe\xb0\x35\xc1\x98\x34\x02\x1a\x5c\x82\x23\xd7\xd5\xfc\xa0\x4a\x3d\xae\x2c\x19\xf8\x7c\xc2\xda\x0b\x1e\xa2\x32\xb1\x7d\x39\xb1\xad\x45\x5e\x1d\xb5\xb5\xed\xf5\x54\xff\x10\x42\xae\xe0\x09\xed\xda\xcc\x75\x99\xa9\x2d\x7b\xaa\x3e\x81\xe7\x9d\x11\x61\xc5\xfa\x48\x6e\x3a\x2f\xcb\xe1\xb4\x9b\x1b\x8e\x2e\xea\x19\x45\xa0\xdc\x70\xf2\xbc\x46\x80\xf5\xc4\xcf\x13\xaa\x26\x60\x82\x28\x31\xbf\xed\x8e\xd3\x15\x4d\xd8\x5b\xb1\xb9\xdb\x38\x50\x31\xca\xcd\xce\xaf\xe8\x04\xb7\xca\x61\xf2\xc5\x31\xbf\xe3\x0b\x7e\x43\x29\x03\x22\x56\xfb\xf8\x0b\x56\x66\x8b\x3a\xb1\x55\xce\x71\xbc\xe6\x67\x85\xb4\x62\x47\xed\xf4\x10\x53\x5a\x6f\xec\x45\xc7\x2b\xd8\xfa\xa5\xa8\x4f\x27\x79\xbf\x8f\x9c\x0f\xd2\x6d\x7f\x96\xcf\xa7\x1e\x23\x11\x86\xc0\x84\x31\xeb\x13\x9d\x5f\xe4\x56\x7c\x13\x17\x58\xb6\x1a\xb3\x9d\x0d\xeb\x93\xaf\x5d\xb2\x7c\xb3\x5b\xb0\x89\x96\x4b\x0e\xf1\xba\xd0\x22\x07\x6b\xde\x1a\xd5\x1d\x0d\x6e\xf2\x62\x51\x93\x73\xaa\x51\x57\x7e\x3c\xb2\xd6\x04\x3c\x7c\x18\x48\x4a\x5d\xad\xb3\x2a\x29\x3d\xdf\x41\xd6\x67\x4b\x46\x2d\xff\x65\x32\x2a\xce\x09\x88\xce\xc7\xf7\x88\xce\x2a\x58\x50\x9d\xb0\x6b\x14\xed\x71\x54\xc9\x24\x42\x32\xb3\xe0\xcf\x1e\x06\x7f\x3d\x1c\x8f\x16\x3c\x9a\x41\x6d\x48\x88\x2d\x95\x6c\x34\x29\xce\x49\x38\x29\x7c\xdf\x28\x09\xc5\x5e\x20\x73\x68\xe5\x53\xaa\xb3\x5f\x15\x56\xf2\xac\x7c\xea\xd5\xca\xb1\xd8\x7a\x62\x26\xe3\x84\xdb\xc5\xbe\xaf\x42\xb3\xc2\xf9\x95\xf9\xfe\x84\x21\x1a\x6c\x58\x79\x95\x2d\xb9\x27\x5a\x43\x1d\x21\x31\x0b\x23\x21\x83\x32\x95\xd3\xa2\x8a\xf8\x28\x9f\x85\x10\x5c\x8d\x67\x36\x57\x39\xdb\xa9\xbd\xb3\x71\x4f\x0c\x04\x17\x98\x22\xc1\x80\x40\x2b\x20\x4a\xac\x18\x20\x62\x33\x2e\xf3\x55\x5d\x4a\xad\xd6\xa1\xe3\xe0\x9c\x1c\x44\xe2\xc8\xd1\xd8\x82\xfd\x68\x92\x9d\x13\x3f\x72\xdd\x83\x5c\x46\xab\x92\x2a\xba\xec\x9c\x84\x56\x4a\xc2\x6c\x1e\xd3\x20\xbd\x59\x78\x35\x45\x68\xa5\x50\x4d\xee\x8b\x16\xc0\xf3\x1e\x64\xaf\x50\x60\x36\xe2\x9b\x95\x0e\x9a\x24\xb0\x20\x12\x99\x54\x0b\xe7\x2a\x0f\x57\x52\xe5\xb9\xd2\xab\xc2\xcb\x65\x52\x32\x07\xf5\x3d\x4e\x98\x57\x78\x5c\xe5\x53\x83\x64\x1d\x1d\x7c\xff\xe0\x00\x04\xde\x83\x1c\x59\xf9\xcd\xb6\x5b\x27\x70\x76\xb5\x24\x5c\x4d\xe6\x90\xd5\x73\xb7\x51\x84\x13\x05\x56\xee\x51\xec\x1b\x77\x6a\x8f\x02\x18\xf4\x81\x60\x64\x75\x30\x32\x19\xd0\x11\x92\x72\xb9\x6e\x62\xe5\x1d\xf1\x32\x33\x52\xe0\xeb\xdf\x97\x17\x6c\xa7\x53\x8a\xb5\x36\xe1\x3b\x1c\x88\xcc\x94\xe3\x2a\x48\x8c\x85\x22\x31\x4a\xec\xb5\xce\x7f\x1d\x21\x4b\x1f\x4a\x10\x02\xc2\x0e\x6a\x30\x6b\x09\xd9\xc8\xda\x97\xdf\x8c\x59\x4c\xa2\xa8\x6f\x41\xe0\x9f\x6d\xae\x78\x64\x16\x34\x21\x3c\xf0\x7e\x1f\x75\xc4\xa7\xf0\x23\x48\x69\x65\x6a\xb2\x39\x64\xb7\x32\xa8\x38\x87\x2c\xa8\x96\x67\x8f\xcf\xfb\x11\xda\x51\x62\x56\xa0\x47\x91\x0e\x6b\x16\xc1\x8e\x67\x5e\x30\xeb\x85\xe5\x99\x51\x27\x1c\x84\x33\x52\x78\xac\x56\x92\x54\x9e\x1b\x5a\xe4\xc5\x99\xb9\x1e\x29\x49\x82\x53\x12\x4e\xd2\xb3\x64\x92\xca\xa8\x72\xf9\x2c\x9d\x8b\xf3\xcb\x2c\x9d\xa3\xdb\x92\xa4\xca\x39\x55\xf4\xb7\x22\x33\x29\x4a\xa7\xa4\x9c\xa4\x95\x08\x2d\xbe\x5c\x49\xde\x62\x73\x33\x6f\x45\x56\x3a\x19\x6a\xa6\x46\x5d\x22\x7b\x52\xc4\x9c\x94\x74\x2d\x28\x16\x76\x96\x55\x76\x9d\x09\xe1\xd1\x89\xe1\x39\x2b\x58\x72\x4d\x9b\xfe\xe3\x7b\x62\xdc\xf6\x89\xe3\x20\xdc\x11\x7d\xc2\x09\x1c\xcb\xe7\xbe\x71\xf9\x83\x19\x19\x1d\x0b\xb1\x00\x17\xc4\x8f\x04\xa7\x0b\x71\x66\xcf\x68\x76\x4e\xa2\x89\xef\x67\x02\x35\x50\xd3\x6b\xb4\x91\x21\x64\x14\xed\x05\xc9\x14\xba\x94\xa2\x9a\x98\xe4\x65\x10\x2b\xb0\x98\x32\x9d\x14\x51\x6c\x14\xb2\x48\x14\xd8\x99\xee\x40\x0c\x4f\x4a\xda\x18\x7b\x15\x85\xd9\xc6\xc7\x5d\xc8\x98\x28\xcd\x1b\x6c\x75\x6a\x70\xd2\x66\xc6\x1e\x20\x97\x97\x8b\xdc\x0c\xb0\x9e\xc0\xad\x1a\x1c\x23\xbc\x1f\xd9\xc3\x93\x43\x02\xaf\xef\x83\x48\x08\x61\x55\x90\x08\x35\x5a\xa7\x1a\x19\xc4\x72\xb3\x4f\x89\x62\x3b\x52\x24\xed\x47\x8f\x4c\x20\x69\xa5\x08\x62\xc4\xbc\x0d\x31\x33\x37\xa7\xba\x16\xc2\x20\x48\xd2\x2f\xbc\x45\x21\x77\x62\xa4\xa2\x03\x3f\xaa\x23\x06\x4b\xe3\x29\x0b\x31\x89\x44\x8c\x09\x3d\xd8\xb8\x6d\x99\x00\xbe\x0e\x08\x29\x51\x13\x11\x49\x3f\x42\x78\x74\x44\x08\x29\xa7\xf0\x8e\x4f\x39\x49\xe2\xc8\xa8\x05\x22\x14\x4b\x57\x6d\x78\x12\x9b\x81\x96\x06\x25\xa2\x93\x0a\xd1\x16\x3e\xf9\x76\x2b\x7b\x92\xf7\xe9\xd9\x76\x2b\x9e\x32\xd7\xe5\xa2\x50\xec\xc3\xe2\x07\xeb\x47\x36\xde\x41\x4b\xa1\xb4\xb2\xce\x85\x60\x4c\x4e\x72\xe1\x54\x98\x47\xad\xd0\xfb\x46\xca\x50\x75\xc0\x81\xbc\x95\x13\x46\x4f\xa3\xf2\x2a\x32\xe1\x60\xa5\x96\xc9\xfa\xb2\xa1\x2e\x3f\x8a\x9a\xea\xf2\xdf\xaa\x17\xcd\x3c\xe6\x45\xc7\xc7\xa0\x18\x95\xbf\x4f\x51\x2d\xc9\xd2\xf7\xa8\x43\x93\xce\x95\x56\x17\x4d\xc5\x0b\x2c\xf3\xe0\x54\xca\x43\x86\x26\xbc\xf8\x7a\x9b\xa9\x5c\x63\x48\x45\xf9\x4a\xd0\xad\xdc\xc4\x12\x73\xad\x02\x47\x33\x5b\x9e\x4d\x7e\x83\x3c\xfe\xdf\xa7\x85\x37\x09\x96\xff\xef\x53\xc4\xff\xf7\x21\x35\xe1\xc5\x66\x45\x05\x4e\xff\x35\xc8\x54\x30\x17\x6d\x7d\x7c\x1e\x24\xeb\x35\x65\x8b\xa6\x84\xc7\xa5\x02\x0c\xd4\x42\xdb\xad\x57\x3d\x90\xd9\xdc\x16\x7a\x5a\xfa\xb8\xc2\xd2\xc7\x31\xa4\x8e\xde\x0c\x8e\xde\xa0\xff\xac\x0e\x04\x46\x59\xee\xd5\x6e\x0a\x14\x40\x92\x5d\xe8\xf0\x32\x78\x26\x20\x30\x39\xd5\x0b\xc1\x3c\xf2\x60\x5d\xd0\xff\x61\xb0\x2b\x88\xee\x07\xde\x50\xf7\x78\xf0\x3f\xeb\x9a\x49\xb0\xd0\xd1\xd8\x70\xd3\x71\xf8\xdb\x98\xa9\x7d\x1d\xd5\x38\x70\x4f\xd8\x99\x09\x13\xcc\xb4\xd6\xb5\x20\x1c\x34\xde\x41\x95\x15\x8b\xd8\x0f\xdb\xad\xd8\x52\x03\x3b\x9a\x9f\x18\x84\xf2\xd2\xce\x58\x0f\x02\x68\x04\x3a\x8b\x16\x39\x08\xf7\xa7\xfb\x2b\x82\x4f\xf4\xab\xd8\x0f\x9b\x37\x60\x66\x29\x67\xd5\x90\x4b\x3b\xf9\x5f\x67\xb0\x23\xb9\x94\x77\x99\x5c\xb9\xe5\xfe\x95\x9b\x7d\xff\xca\xcd\x64\x4a\x62\xbc\xc2\x1b\xbc\x26\x65\x7b\xfd\xae\x41\xde\xee\xbe\x75\x57\x77\x45\x92\xe3\x98\x45\xa0\x0e\xff\x5a\xcf\xba\x0e\x68\x92\xd6\x1b\x90\xf6\x3a\x49\xc9\x9f\x27\xe9\x95\x5e\x40\xfa\x19\xf2\x16\x98\xd0\x32\xd5\x02\x53\x8f\xd5\xc5\x9d\xfe\xa0\x4f\x22\xfb\x9a\x40\x17\x6b\x6b\x37\xfd\xe1\x8c\xcf\x49\x68\x81\x59\x0b\x3c\x3c\x69\xd4\x3c\xb3\x86\x63\x4c\xef\x18\x69\xd4\xc2\x07\x91\x4a\xc0\x6a\xf1\x80\x19\x9b\x63\x86\x90\x72\x80\xb1\x6a\x57\x0a\xc0\x9e\xad\xb4\xb4\x9a\x2b\x76\x02\x5d\x37\xc9\xea\xd3\x5e\xb5\xb6\xc0\xa5\x7d\x4f\x64\x2e\xb9\x40\x3a\x00\x48\x84\x30\x24\x85\x03\xe9\xfc\x9e\x05\xeb\xbc\xe4\x69\x59\xbe\xce\x17\x94\x70\x9c\x05\x25\x4f\xd2\x4f\xae\xab\xd3\xaa\xba\xee\xe1\x07\xf6\xa1\xbc\x1d\xed\x12\xde\x3b\x94\x79\xba\x55\x25\xa4\xd5\x54\xba\xee\x44\xbd\x20\xea\xaf\x95\x9f\xbb\x6a\x02\x3b\x7f\x70\x9d\x7e\xae\xae\x49\x97\x45\x7e\xdd\x77\x62\x51\x50\xa9\x4c\x6b\x05\x52\x11\xda\x17\x5f\xa1\x9d\x14\x67\x74\x24\x71\xc0\x30\xe4\x11\x12\x68\x91\xf6\x8f\xf0\x13\x0c\xd6\x8b\x9d\x60\x75\x12\x65\xcf\x68\xba\x6a\xa6\xae\xd3\x98\x9b\xd6\xb2\x9b\xbc\xa5\x97\xcf\xbf\xac\xa5\xd5\x18\x34\x55\xe1\xd3\xd8\x0e\x82\x2d\x80\x90\x72\x55\x0a\x21\x2a\xd1\x02\x7b\xe3\xba\x4a\x04\x2e\x8f\x1b\x48\xba\x5e\x3e\xb8\x31\xd9\x8a\x1d\x25\xaa\x6a\x48\xf0\x7b\xdc\xd5\x1a\x55\x51\x34\x4c\x6b\x14\x5a\xab\x5a\x10\x15\x76\xa8\x42\xc8\xdb\xcd\x8a\xfe\x7e\x08\x01\xf9\xa1\x0b\x21\x25\x5d\x51\xc1\x58\xbe\x17\x29\xcd\x06\xab\x96\x7e\x2b\x62\x74\x8b\xf7\x21\xe6\x31\xff\x7d\x51\xa3\x84\xab\x2e\xe4\x40\x36\xe1\xef\x44\x4c\xbb\x39\xd9\xce\x6f\x45\x4b\xd5\xde\x7d\x88\x79\x2a\x45\xef\xce\xdc\xbb\x5d\x5d\xe8\xc0\x2e\x46\x66\x37\x39\xb7\x90\x75\x7b\x0d\x7d\x88\x2e\xda\x82\xe0\x7f\xfd\xb5\x2b\x4e\x88\x62\xd5\x5a\x5b\x98\x55\xbb\x89\xd6\x53\x49\xdd\x63\x56\xca\xde\x4b\x84\x57\xca\x09\xa8\x24\xe9\xb4\x8c\x4b\x1d\x3b\x38\xe3\xb4\x48\x78\x5e\xcc\x3d\x34\x51\x31\xda\x37\x62\xdb\x49\x01\x2b\xab\x73\x62\xec\x83\xa5\xb5\xdc\x86\x94\xb3\x55\xbf\x3f\x37\x36\x78\xde\x8a\x94\x70\x95\xeb\x21\x14\x2c\x72\x46\x4d\xc5\x55\x00\x82\x07\x08\x10\x6b\xb2\x99\x34\xb7\xd7\x75\x65\x47\xa7\xb7\xd9\x0e\x61\xf5\xf7\xc2\xaf\x12\xa0\x40\x4f\xf8\x99\xc2\xf9\x13\xe7\x0d\x34\x15\xc8\xb8\xb2\x16\x24\x9f\x16\x71\x71\x07\x9a\x92\x89\x4c\x8a\x21\xb6\xa7\x73\x52\xd4\xd1\x94\x90\x62\x96\xd5\xd0\x94\x91\xa2\x0b\x4d\x09\xc9\x2c\x34\xc9\xb9\x6b\xcc\xae\x12\x4c\x20\xb9\x24\x76\x14\x8a\x1c\x64\x8d\x63\x45\x52\xbc\x69\x8c\x65\x25\x83\xea\x89\xb1\xac\xc8\x66\xba\x8a\x57\x77\x8c\x65\x29\xc6\xb2\x81\xb1\xac\xcf\xc9\xaa\x3e\x96\x25\x59\xcd\xd6\xb5\xb1\xac\xc9\xaa\x6b\x2c\x4b\xb2\xb6\xc6\xb2\x20\x4b\x7b\xca\xf5\x1d\xce\x02\xed\xf4\x94\x5e\xe9\x9b\x69\x2d\x40\xd4\xc5\x8d\xab\x39\x69\x3c\xf7\xd3\x46\xc4\x58\x4d\x37\x1d\x37\xb1\xfa\x3e\xc8\x92\x20\x75\xa5\xda\x21\xb3\x26\x4e\x59\x17\x8b\x50\x82\x8b\x06\x56\x99\x1d\x40\xb7\x98\xb2\x98\xdd\x81\x55\x30\xf6\x96\x1c\x31\x3f\x27\xac\x8e\xd5\x8c\xb0\x59\x5e\xc3\x2a\x18\x1c\xb6\xb1\x9a\x91\x5c\x61\x35\xab\x86\x00\x79\xc7\xc5\xc8\x6d\xf3\x82\x3d\xd1\x71\x54\x5a\xc4\x0a\x97\x42\xee\x70\x5d\x43\x49\x38\x6f\x52\x1c\xb7\x90\x32\xa3\x73\x5c\xd8\xc4\x96\x91\x1c\x27\x0d\xb4\x64\xc8\x38\x19\x66\x24\x99\x66\x71\x76\x07\x5a\x52\x81\x16\x69\x98\x5d\x9e\x93\xac\x8e\x96\x94\x64\xb3\xb2\x86\x96\x92\x64\x5d\x68\x49\x49\x69\x11\xdb\x8a\xa4\x36\xb1\xa9\x3b\x45\x8a\x43\xbc\xaa\xe8\x6d\xd3\xa2\x37\x7a\x46\x9a\x22\xf1\x66\x0e\x71\xcb\xea\x45\x84\xf5\x73\x63\xed\xda\xa0\x3d\xcb\x3c\xa3\x31\x01\x0d\x9c\x4f\x6a\xe1\x8a\xf6\x62\x1b\xd5\x18\x54\x81\xb3\x06\xae\x73\x04\xf6\xed\xca\xe5\x65\x9a\xc7\xf9\x1d\xb8\x2e\x21\xd1\x8b\x4c\xfe\x7b\x4e\xf2\x3a\xae\x4b\x92\xcf\x92\x1a\xae\x13\x92\x77\xe1\xba\x24\x89\x85\xeb\x94\x94\x5d\xb8\xee\x47\x38\xc4\x69\x85\xed\x55\x07\xb6\x9b\xc8\x5e\xb5\x91\xbd\x12\xc8\x2e\xf6\x21\xdb\xb2\xf8\x6b\x1f\x49\x1b\x46\x62\x75\xec\xd7\x91\xdc\x61\x23\xd8\x24\x9d\xa8\x7e\x86\x43\xda\x8c\x40\x03\xca\xe6\xe8\x1c\xac\xbc\x1a\xa5\x84\xfb\xcd\x00\xd0\x1a\xee\xc7\xb6\x9f\x4f\xcd\x00\x49\x72\x1b\xde\x98\x6a\xb5\xa9\x41\x3a\x3a\xc2\xa7\x34\xa6\x77\x4c\x75\x31\x31\x39\x4d\xed\x24\x63\x72\x06\x0b\x42\x67\xac\x36\xd5\x8c\xd0\xae\xa9\x2e\x08\x53\x53\x5d\xd4\x71\x64\xb3\x5c\xa3\x29\xc2\xd5\xf8\xe0\x08\xf5\x27\xf1\xe5\xbe\x88\xab\x3d\xe9\x4f\xc7\xb1\x65\xb9\x6a\x4e\x3d\x96\x48\x56\xa0\x5b\x38\xf8\xaf\x4b\xd7\x95\xca\x7c\xf9\x64\x0c\x3c\x0a\x79\x82\xd9\x6e\x79\xb0\x4c\x4a\xae\x6a\x15\x12\x6e\x53\x4b\xbe\x44\xdb\xad\xa7\xde\x98\x1a\xfa\xbc\x07\x69\x62\x77\xc8\x3a\xe5\x7f\xa6\xc5\xd7\xbd\x92\xa3\xa4\x0f\xa8\x03\x76\xb0\xeb\xa0\xcc\xaf\xf7\xdb\x7f\x29\x72\xca\xaf\xa9\xaa\x0d\x80\x75\xdd\x28\xb7\xfd\x7b\xa6\xd2\x84\x56\xb5\x61\x0c\x5b\xa0\x99\xae\x7b\x74\xcd\xee\x65\xd8\x9f\x6e\x27\x2a\x8a\x68\xcd\xb6\xb4\x82\x76\xaf\xe1\xa6\x32\x79\x13\x34\xae\xa6\x9c\xea\x5f\x08\x19\x83\x26\x75\xac\xc6\x5c\xc8\xc8\x1e\xf3\x46\xa7\xc8\xa3\x48\x55\x33\xb7\x35\x4d\xca\x36\xd1\xe6\xab\x84\xc0\x62\x13\xa9\x57\x4b\x10\x5c\xb9\x8a\x05\x90\x90\x72\x9a\xc4\xc9\x1d\x0b\x60\x25\xc6\x5d\xca\x64\xa4\xe7\xc6\xa3\x49\xd1\xf5\x8a\x24\xb3\xb4\xb6\x00\x52\x92\x74\x2d\x80\x15\x49\x2d\x5e\xb7\x21\xab\xc9\xc6\xd8\x1e\x6f\xba\x0c\x8f\x37\xd8\xc9\x2e\x59\x5e\x50\x07\xed\x8c\x8f\x8b\x53\xe4\x39\xb7\xce\x2b\xb7\x52\x08\x16\x83\x55\x74\xa1\x87\xbc\x6c\x0c\x79\x8d\xf0\x42\x0d\x79\x4d\x96\xd3\x75\xbc\xbe\x63\xc8\xa0\x21\x5a\xc2\x90\x17\xe7\x64\x5d\x1f\xf2\x15\x59\xcf\x16\xb5\x21\x2f\xc8\xba\x6b\xc8\x57\x64\x61\x0d\xf9\x82\x5c\x4d\x2e\xcc\x90\x2f\xba\x86\x7c\xd1\x35\x64\x35\x52\x4a\x66\x74\x6e\x59\x6c\xc1\x52\x6d\x24\x5a\xb6\x53\xc2\x40\xc7\x6d\xe7\x1d\xe0\x24\xbd\x65\x46\x57\x8b\x5e\x56\xf6\xae\xb3\xb2\xa4\x0b\xb0\x23\xcf\x17\xb4\x07\xca\xc2\x2c\x67\x0e\xea\x4a\xe3\x2a\xdb\x04\xe3\x22\xb9\xf0\x75\x2a\x0a\xd5\x19\xc2\x94\xcc\x9a\x76\xed\x73\x6b\x20\x46\x1f\x70\x2b\x2b\x7a\xcc\x1b\x0f\x11\x6a\xd4\x82\x83\xb1\x55\x23\xb2\x6a\xc0\x45\xb0\x38\x42\x7f\xe9\x48\x24\xaf\xbd\x14\x61\x28\x02\xe8\xae\x71\x29\x10\xf3\x1a\x88\x46\x6d\xb9\xc7\xf2\xd2\x28\x34\xc5\xf9\xbd\x63\xe2\x28\xc2\x7b\xa6\xc1\xb2\x54\x74\x5d\xee\xba\x9d\x99\x68\x78\xbd\x9a\x57\xfb\x8c\xd4\xde\x56\x4a\xb5\xd9\x5f\x3f\x94\x73\xe9\xba\x84\xb0\x51\xb8\x66\x98\xc2\x91\x3a\x25\x25\xf6\x56\x64\x76\xfb\x89\x7e\x8d\x1d\x38\xe3\x38\xf8\x92\xf2\xb8\xc3\x70\x57\x72\x94\x16\x8f\x9d\x85\xf3\xdd\x0e\xcb\x06\xc4\x11\xf8\xbb\xbf\x6f\x29\x4a\xc1\xc2\x57\x88\x26\x89\x9d\xd3\x07\xaf\x10\xde\x40\x19\xde\x20\x5c\xee\x3c\xb8\x06\x38\x42\x9d\xb7\x0f\xff\x3a\x03\x42\x79\xe5\x30\x30\xb7\x0f\x27\xc3\xff\x3f\xde\x3e\x40\x40\x51\x5c\x56\x03\x4f\xbf\xf3\x3a\x51\x5d\x26\x9a\x1b\x30\x56\x5d\x7f\xb5\xae\x6d\xd3\xdf\xfb\xda\x96\xa4\xd8\xcb\x34\xd1\x6b\x6e\x53\xb6\x08\xd7\xdc\x3f\xaa\x69\x0b\xd2\xfc\xfa\x3a\x91\xc4\x6c\x78\xd4\x0e\x97\xf6\x57\x0d\x83\x5b\x55\x6b\x5a\x7b\xd2\xf9\x17\xf0\x87\xf2\xd1\x21\x92\x39\xa0\x18\xe1\x53\x3e\x0b\xe7\xb1\x83\x9d\xbe\x36\x45\xf6\x1c\x65\x8a\xec\x60\x47\xae\xeb\x37\x6b\x2a\xb8\x53\xad\x39\x42\xa5\x99\x12\x43\x7a\xd5\x58\x97\xa8\x58\x9c\x0d\xa1\x0c\x97\x08\xa7\x3b\xaf\xf8\xbd\x96\x8b\x24\x4a\x0b\x5d\xbb\x49\xd5\x48\xd1\xfe\xb8\x7a\xc9\xbc\x28\x8a\xee\x33\xad\xa8\x55\x1f\x0c\xd1\x0e\xdf\x5d\xdf\x6b\x4e\x01\x23\x9d\x4c\xf4\x26\x63\x8b\xfc\x66\x0f\x87\x5d\xe4\x29\xa8\xac\xf6\xbc\x66\xc9\xe7\xec\x52\xc8\x00\xb8\xe8\xd6\x91\xcd\x9c\xe7\x8b\x4b\xea\x60\xe7\x7d\x91\x2d\xc0\x04\xc1\xf9\x31\x2b\xe8\x32\xff\xe2\xcc\x71\xdd\x4a\x6f\xc2\xfb\x24\x42\xe2\xb4\xe0\xba\xa6\xdd\x60\x53\xd2\xe2\xf1\xa5\x71\x86\x10\x52\xe7\x8c\x8b\x93\x4e\x58\xa5\x88\xd0\x11\x29\x76\x9e\x89\xaa\xe6\xba\x72\x58\xc1\xcf\x45\x7e\x9d\x95\x74\xda\xa6\x47\x63\xde\xd5\xb3\x20\x97\x51\x32\x0e\x42\x5c\xff\xdc\xd8\xf2\xa1\x80\x5f\x51\xe6\xd9\xee\x9a\xa2\x25\x4c\x3d\xa9\xf5\xdd\x75\x10\xfe\xdd\x1d\x95\x94\xbf\xcf\xae\x69\xbe\xe1\x7b\x5a\xc5\x85\x68\x77\x2f\x47\x75\x66\xd2\x5f\xa1\xf7\xa3\xaa\x30\x17\xfb\xe8\xed\xce\x58\xa2\xab\x18\x10\xa8\xc5\x60\xb3\xa5\x17\x41\x22\x3f\xc1\x68\xde\x57\x1a\xe6\xd9\xdc\x64\x9b\xcf\x6f\x18\x2d\x9e\x29\x1a\xd0\xcb\xe0\x4f\x19\xbd\x09\x2e\x29\x7f\x9a\x5f\xaf\x37\x9c\x2e\xde\xf1\xaf\x2b\x38\xbc\x6c\x56\xab\xea\xa0\x39\x65\x33\x3e\x8f\xd9\xce\xba\x94\xad\x4e\x18\x3f\xbd\x7f\xf5\x52\x4a\xa3\xa2\xef\xd7\xc9\xb5\xd8\x0c\xf4\x5e\xfc\x3a\x5f\xd0\xed\x96\x06\x57\x79\xc9\x77\x16\x3f\x55\x29\x68\x8c\x22\x5c\xd3\x66\x70\x91\x2f\xbe\x4e\x74\x3e\x74\xd3\xa2\xca\x62\x00\x5d\xc9\x70\xff\x4f\xde\x3c\xfb\xd5\x84\xfa\x6f\x0e\x0e\x1a\x81\x6a\xff\x4b\x37\x6c\xd5\x15\x6f\x95\x83\x64\x22\x8f\xc1\x3c\xc8\x3f\xd3\x62\xb9\xca\x6f\x20\xb7\x99\x7e\xf8\x0b\xce\xad\xa7\x5f\x15\x3a\x0e\xbd\x64\xc3\xf3\x6d\x99\x16\xf9\x6a\xb5\x15\x6f\x57\xc9\x57\xa4\xee\x05\x59\x3f\xef\x17\x68\x4a\xe3\xd4\x2b\xeb\x1e\xd0\xab\xe6\xe6\x59\xd0\x25\x2d\x28\x4b\xa9\xc0\xd1\xb4\xf1\x1c\xeb\x23\x02\x73\xdd\x03\xef\x40\x51\xf0\xab\x77\x2f\xd8\x7a\xc3\x5f\x51\x7e\x95\x2f\x94\xcb\xf0\x76\x7b\x60\x90\xa7\x7f\xbc\xca\x17\x14\xe1\xb5\xf8\xf8\xf0\xd5\xbb\x17\xcf\x7b\x51\xa8\xe1\x6b\x2f\x46\x6b\x83\x5f\x5a\x30\x46\x10\xb2\x63\xba\x89\x23\x99\x8d\x68\x1d\x6f\xb6\xdb\x75\x35\x9e\xc5\xfe\x39\xd4\x3f\x9e\xaf\xa8\xf8\x63\x59\xfb\x2d\xbd\x28\x44\xd3\xda\x64\xeb\x1d\x82\x06\x32\xb8\xfd\xcf\x40\x37\xdb\xad\x28\x9e\x30\x69\x86\x28\xb5\x09\xaa\xb9\x77\xd9\xc5\x2a\x63\x97\x13\xc4\x08\xb8\x4e\xb6\x5f\xa1\x5a\x53\xda\xef\x1a\xee\x89\x14\x3d\x99\x28\xba\xae\x2b\x29\x49\x45\x19\x01\x02\x13\xbf\xa7\x60\x17\x38\x73\xde\xff\x24\xf8\xdd\x33\xf1\xcf\xe3\x27\x2f\x9f\x3b\x73\xc3\xba\xaa\xc6\x10\x84\x27\x49\x78\x96\x82\xb5\xbb\xc7\xb0\xa3\xdd\x41\x1c\x34\x5d\x78\x0c\xc5\x2c\x16\x33\xdc\x58\x81\x75\x2c\xc5\xfb\xd0\x57\xa1\xfc\xca\x9a\x1e\xe5\xde\x68\xaf\xb3\xa9\x58\x31\xd5\x23\x8a\x2d\x2f\x86\x8b\x2a\xc7\x9c\xcc\x2f\xa8\xf9\xc4\x76\x7b\x20\x48\x88\x37\x19\xc7\xfe\xd9\xd4\xfc\x44\xe5\x44\xd2\xe3\xf9\x59\x0d\xd9\xe3\xc8\x15\xdd\x07\xcf\xde\x3c\xfd\xe5\xd5\xf3\xd7\xef\x3f\xfe\xfc\xe6\xdd\x8b\xf7\x2f\xde\xbc\xfe\xf8\xe3\x9b\x97\x2f\xdf\xfc\xf9\xc5\xeb\x7f\xc3\x05\x61\x53\x1a\x73\x9c\x13\x36\xe5\x31\xc5\x19\x31\xdd\x49\xd9\x07\x82\xa0\x78\x68\x92\x05\xa5\x8a\x3c\xe4\x15\x38\x44\x18\x9e\x9f\xb3\x85\x97\xeb\xb0\x9b\x09\xc9\x40\x74\xc9\xd9\x63\x96\xd2\x92\xe7\x85\x58\x18\x49\xc6\x28\x28\xad\xe8\x01\x78\x83\x72\xf1\x67\xbb\x05\x11\x52\xbc\x2c\xbd\xdc\xdc\x3b\xb6\xb9\x3c\x6d\x12\x8a\x21\x12\xee\xba\x9e\xe1\x78\x7c\xbb\x5d\x80\x57\x48\x51\x6a\xec\xc0\x51\x08\xc1\x55\xe4\xce\x4b\xd0\x34\x89\x17\x5e\x22\x01\x2d\xc9\x95\x65\x77\x5b\x02\x4b\x9c\x5e\x78\xf2\x07\xe6\x28\x16\x73\x74\xe5\x71\x04\x05\x16\xe7\xb8\xae\x00\x73\x78\xbe\x86\x44\xef\xcd\xfb\xaa\xf3\xc8\x75\x4d\xbc\x9c\xea\x6e\x2a\x9a\x4f\xed\x87\x18\xbe\x47\x53\x47\x32\xaf\xf7\xf9\xda\x89\xd5\xef\x97\x74\xc9\x1d\x58\x86\x66\xe8\xe2\x5c\x0d\xe3\x96\xf9\x6d\xcc\xb0\xad\xac\x1c\x77\x52\xb4\xf1\xac\x68\x54\x93\x1d\x66\xec\x52\xd5\xdb\x6e\x0b\x34\xe3\xd5\x01\x54\xfc\x36\x83\x7f\x65\xdb\x81\x3a\x5f\x00\xed\x53\x07\xa0\x8d\x1d\x31\x00\x5c\x10\xf9\x08\xa1\x6e\x9c\xb7\xd9\xe5\x95\x78\xf5\x24\xe7\x3c\xbf\x36\x4e\xd4\x60\x15\x0a\x01\xc5\x3c\x3a\x73\x2e\xf2\x62\x41\x0b\xa7\xcf\xfa\xce\x9f\xb3\x05\xbf\x72\xe6\x38\x0a\x51\xbf\xbb\x52\x51\xab\xd4\x91\xb2\xbf\x4a\xb8\x04\x16\xfe\xc9\x17\x8f\xcf\x54\xa6\x0e\xa7\x4f\xe7\x98\xcf\x14\x8e\xe1\x89\xcd\x9c\x74\x95\x89\x1d\x49\x3d\x59\x35\x59\xad\xa6\x64\x96\x26\xd3\x7a\xad\xaa\x02\x56\x94\x17\x33\xe7\x3a\x29\x2e\x33\xe6\xf4\x3d\xe7\x27\x0a\xe3\x97\xf9\xe3\xe4\xfc\x02\x72\xd0\xc3\xbe\x50\x58\x8b\x15\x1a\xd1\x1c\xc5\xf6\x90\x3f\xdb\x4b\x44\x30\x6f\x20\x98\xc6\xb4\x0b\xf1\x51\x40\xee\xba\x2d\xb9\x82\x69\xf2\xbf\xbd\x82\x5e\xe3\x4b\xd3\xbf\x42\x25\xbe\x11\xa8\x16\xe5\x12\xe7\x3a\xb1\x3a\xec\x86\x5f\x3b\x32\x66\x7a\x35\x73\x84\x7d\x29\x4f\x9f\x26\x8c\xe5\xbc\x27\xa4\xa7\x5e\xd2\x4b\x57\x49\x59\xf6\x92\xb2\x97\x98\xb5\xef\xa0\x1d\x7e\xbc\x2f\x14\xc3\xff\xdc\x13\x6c\x93\x83\xd5\xe9\x91\xb9\x2e\xf5\xac\x73\x23\x66\x08\x17\x50\x26\x30\xcd\x21\xed\xf1\xcd\x3e\x85\x3a\xb8\xf6\xd2\xe9\x3e\x18\xb8\x49\xf2\x8b\xab\x41\xc6\x07\x61\x33\xdf\x2f\xd6\x23\x82\xdc\xbf\xca\xc5\x16\xd3\x1d\xfe\xa6\x0f\xbb\x49\x59\x66\x97\x6c\xbb\xed\x76\x3f\x8d\x26\xfc\xac\xc9\xec\xc0\xf1\xe7\xb6\x61\x43\x3a\xe3\x96\x9d\x83\x0c\x0a\xa1\x3a\xa8\xce\xcd\x75\xe7\x64\x29\x4c\x0b\x84\xb9\x2e\x38\xe3\x11\x36\x2b\xe6\xa8\xf2\xff\xad\x04\xa3\x8f\xd6\xce\xfb\xcd\xbb\xdd\x61\x8a\x6f\x0b\xa0\x60\x71\xe2\x59\xf2\x3e\x0d\x80\x70\xf1\x05\x2c\x20\x88\x38\xb5\xee\xd3\x40\x92\xf9\xae\x9e\x3d\x5f\x2f\xa1\xdb\x9d\x34\x59\x5f\x7a\xb0\x5e\xc4\x39\x81\x0a\x59\xfc\x49\xbe\x61\x8b\x8c\x5d\x3e\x05\x36\xf1\x96\xa6\xdc\xd3\x01\xe0\xaf\x3d\x8a\x25\x0f\xc7\x85\x7c\x58\xc1\xea\x9e\x70\xe8\x90\x30\xcc\x25\x3c\xa4\xc0\x42\xbc\x12\xc0\xc8\x52\x80\xb6\x4f\x0a\xa9\x63\xbc\xa3\x27\x65\x1b\xb7\x40\xb7\x2a\xeb\xd9\xad\x68\x30\x96\xed\x62\x9e\xaf\x63\xe8\x4b\x2d\x54\xd5\xb0\xaf\x5e\xab\x65\xad\xbb\xf6\xa1\xea\x0e\x67\xa4\xeb\x94\xf0\xb9\xb9\x33\xa0\xf8\x76\x87\x4b\x92\x49\x5c\x8a\x63\x83\xe4\x94\x7f\x96\x8f\xb9\xc2\x71\x4a\x32\x85\xd8\xaa\xca\x4f\xea\x39\x57\x6f\xf0\xca\x08\x94\xf0\xb5\x5f\x42\x56\x40\x59\x22\x2b\xfb\x70\x57\xbc\xda\x6e\x37\x5a\x83\x2e\x4e\x03\x93\x95\x4f\x5e\x79\x6b\xec\x7c\x71\x10\xde\xa8\xdf\x5f\x1d\xc8\x24\x03\x0d\x91\x15\xd6\x9d\xf8\x64\xa3\x89\xe5\xa3\x67\x67\xf5\x79\x6f\x6f\x5a\xad\xad\x7a\xd0\xb9\x55\x0f\xe6\xae\x6b\x3f\x69\x36\x8a\xf3\x0a\x79\xdc\x20\x0f\x67\x44\x50\x12\x2e\xc9\x1b\x8f\x83\x91\x86\x78\xda\x90\x44\x3c\xad\x89\xb5\x93\x6d\x02\xb9\x91\xbd\xcf\xd7\x80\x09\xb1\x89\xe1\x45\x57\x0d\xb1\x51\x98\x2a\x13\xe6\xba\xb9\xeb\x7a\xa5\x98\x41\x62\x76\x36\x78\x14\x82\x58\x09\x13\x6e\xbf\x00\x02\x08\x55\x9c\xa3\x2b\xf2\xd1\xbb\x15\xc4\x92\x89\x0f\x7c\xf8\xcc\x5f\x63\x20\xa5\x0c\xaa\xfa\xf2\x0b\x7f\xa1\x28\x49\xcd\xba\x26\xa1\xcc\xac\x1d\x31\x4b\xa2\x0f\xb1\x61\xbd\xcf\xd7\x24\xc4\xfa\x49\x00\x0c\x11\x8c\x5d\x37\x97\xd8\xbe\xa8\x8f\xcb\x7c\x04\x83\x7e\xd5\xf5\x52\xb4\x01\xe3\xbd\x02\x10\xc9\xda\xbf\xc0\x57\x9a\x7c\xd5\x13\xc0\x49\x16\xfe\x2b\x7c\xa5\xc8\x5d\x3d\x54\x40\x5d\xd4\x81\x7a\xa5\xfd\x5c\x0b\xd7\x3d\x60\x53\x5e\x89\x9d\x2b\x14\x73\x42\xc8\xca\x3a\x78\xac\xec\x93\x84\x77\xd5\xe9\x01\xf3\xdb\x89\xe8\xda\xe3\x9a\x65\xe4\xf2\x41\xb2\x0c\x9c\x11\x36\xf5\xa3\x38\xaa\x22\xe6\x00\x0b\x29\x1e\x65\x98\x1a\xd6\x21\x9f\x24\x4b\xc9\xe1\xb7\x62\x24\xf0\xb0\xf3\xae\x30\x47\x08\x5f\x55\xa4\xff\xc5\x1c\x0b\xe1\x98\x21\x8f\x23\x46\xd0\x5b\x7a\xe8\x3b\x4e\x8b\x8d\xcf\x27\xdc\x75\x1d\x96\x33\x2a\x8f\x59\x62\x58\x45\xc2\xca\x65\x5e\x5c\x3b\x68\x82\x38\xe1\x8d\xfa\x7a\x27\xdb\x6e\xef\x3f\x5b\xbd\xae\xa4\x39\xc9\xf6\x5a\x18\x1f\x75\x62\x7c\x54\xc3\xf8\x68\x8e\x33\x02\x74\x1f\x4a\x5a\x0f\x77\x78\x43\xf2\xa9\xc0\x0a\xc8\xf7\x2b\x8f\x23\xe9\x7f\xfd\x39\xa3\x37\xeb\xbc\x00\xc9\xab\x40\x59\x47\x54\x83\x07\xcb\xf8\x36\x04\xd1\x1c\x77\x28\x7b\x5a\x12\xda\x7b\xb8\xa0\xc6\x79\xb5\x80\x99\xcd\x6c\xb5\xca\x2c\x63\x8c\x16\x8a\xfd\x8a\xd3\x57\xbb\xba\xe4\xa5\xb5\xfa\x9a\x17\x43\xfe\x56\x3e\x0d\xe3\x6b\x8f\x09\x4e\xa5\x7e\x9a\x3d\xcb\xb0\x4e\x40\x58\xe2\x17\x40\x80\x85\xb5\x6a\x01\x85\xa5\x5f\x48\x02\x2c\xec\x25\x2b\x99\x46\x6e\xd8\xc5\x0e\xed\xbc\x0d\xce\x51\x15\xa3\x72\xad\x6f\x36\x94\x4c\xfd\xb3\x89\x4a\x54\x4c\xcd\xb9\xc6\x5b\x93\xd4\x2b\xc5\xa4\x20\xb3\x0a\x5d\xd7\x5b\xdf\x87\x42\x14\xaf\x89\x23\x07\x2d\x5b\xbc\xef\x74\x5f\x00\x5b\x5c\x92\xf7\xde\x1a\x03\x9c\x82\x06\xb4\xba\x61\x6d\xfa\xae\xc4\x20\x79\x8d\xae\x8c\xc6\x1e\x72\x28\xd3\x06\xe1\x50\x65\x99\x7d\x91\x97\x70\xb0\x4e\x2a\x75\x84\xae\xa5\xef\x7b\xca\x2a\x82\xd7\xc1\x01\xc8\x86\x85\x40\x24\x12\x04\x59\xa1\x72\x41\xda\x7b\x35\xbe\x22\x0b\xbd\xd9\xbe\x22\x0b\xc9\xbd\x27\x99\x64\x22\x4b\x60\xa6\x4b\x6b\x2a\x33\xc5\x52\xc8\x55\x1f\x5e\xe2\x4c\x71\x95\xa5\x64\xaf\x4b\x7b\x72\x33\xc9\x65\xc8\xab\xbe\x7c\x2b\xc5\xff\x4b\xd2\xb2\x66\xf0\x98\x40\x42\xe5\xe6\xae\x1b\xbd\x9c\xb2\x98\xc1\xef\xed\x36\xc4\x0a\x28\x59\xc8\xf3\xb5\x2c\x53\x9c\x5c\x96\x16\x8a\x64\x0d\x9c\xfa\x85\x7c\x82\x37\xad\x4c\x98\x32\xff\xb3\xb4\x8d\x68\x2d\xd6\x71\xe7\x62\x1d\xdb\x07\xf2\xf1\x3c\x86\xc8\xcb\xbe\x8c\x8e\xab\x35\x4b\x4e\xb2\xe1\xb9\x99\xaa\x1e\x55\x6a\x8e\xd7\x9e\xbc\x97\xca\xc5\x5a\x82\x25\x73\x2b\x17\x41\x52\xdf\x39\x41\xe6\xf2\x13\x29\x79\x49\x21\xd5\x54\xd4\xc2\x1a\xfc\xd5\x1f\x24\x7a\xab\xd5\xd2\x6b\x77\xbb\x49\x25\xd4\xc9\x1f\x3b\xb9\x3e\x6f\xb5\x24\x08\xf3\x98\xd4\x04\x41\xd3\xf4\x0e\xa7\x5a\xde\xff\x44\xbf\x96\x5e\x89\xf6\x5e\x33\x7f\xf3\xe0\xea\x8a\xee\x30\xd8\x07\xde\x26\x05\x4d\x62\x8f\x13\x78\xe2\x12\xa6\x47\x5c\x35\x8c\x74\x0c\xac\x1d\x42\x41\x99\x17\xdc\xf3\xba\xcd\xd6\x03\xd1\x8c\x4f\xe1\xcf\x0e\x81\xc4\xa4\xc3\x77\xb4\x2e\x57\xc4\xce\x23\x87\x5e\x10\x2d\xc3\x57\xd1\x03\x48\x8d\x53\xba\x6e\x51\x95\xfc\xa4\x44\x16\x21\x89\xad\x4c\x0a\xe0\xe9\x6a\x16\xce\xc5\xb0\xe3\x54\xfd\xc0\x82\xbf\xa8\xe8\x00\xbe\x83\x66\x91\x09\x35\xb6\xe9\x7b\xeb\xa9\xe3\x3b\xfd\x75\xec\xd8\xe9\x12\x1b\xf9\x50\x5b\xd4\x36\xec\xa4\xb6\xa1\x4d\x6d\xc3\x39\xa8\x5a\x75\x4f\xef\x05\x39\x4d\xbf\x78\xa0\x78\xe2\x78\xe5\x31\x84\xc4\x99\xd2\x74\xf9\xce\x46\xc7\xf7\x5c\x1e\x20\xcc\x6c\x49\x8b\x57\x5c\x40\x2c\xd5\x7e\xc7\xab\x27\x7a\x91\x89\x63\x4d\xc7\xfb\x97\x72\x21\x77\x7e\xfb\x56\x6f\x36\x5a\xb5\x20\xc9\xb1\x26\xfd\xf7\x0b\x4d\x90\xf5\x23\x40\x9f\xed\x6a\xa9\x58\xcd\xc9\x0c\x08\xdb\x29\xa4\x66\x42\xae\x21\xb9\x6b\xe9\x25\x02\x12\x15\x9c\x86\x1c\x59\xe2\xec\x2a\x39\xca\x98\x27\x00\x03\x92\xac\x45\xf1\x11\x9e\xaf\x0f\x2f\xbb\x02\x8b\xf4\xf8\x8c\xce\x77\xa8\x9d\x86\x15\xdd\x82\x0f\x7e\x45\x2c\xa1\xb6\x37\x17\x13\x84\x73\xa2\x06\x5c\xd4\x57\x6b\x61\x16\x75\x46\x94\x2e\x5b\x0d\x47\x0e\xc4\x52\x64\x8b\x6d\x3a\x9b\xc2\x88\xf4\x28\x4b\x51\xb0\x92\x4a\x36\x18\x69\x2a\x0a\x64\x8b\x4e\xec\xdc\x48\xdd\xcc\x4a\x14\xca\xdf\xb1\x7e\x69\xfc\x5a\x67\xc9\x9c\xf0\x59\x32\xef\xf3\x59\x3a\x3f\x1c\xf8\x05\xfc\xc1\xf9\xac\x9c\x13\x06\x2e\xf9\x7c\x56\xce\xfd\x62\xb6\x9a\xc7\x7c\xf6\x77\xaf\x44\x73\x9c\x37\xd2\xb2\x1a\xe4\x34\xa3\x9d\x2c\x33\xb6\x98\xca\x3f\x82\x80\xad\x48\x3c\xb3\x70\xde\xca\xae\x6a\x82\x76\x59\x31\xb1\xa9\x15\xeb\xa1\xa9\x01\x31\x16\x65\xf5\x0e\x21\xa1\xa9\x1d\xfc\x47\x15\x75\x1b\xcb\xcc\xf8\x5c\x74\x54\x05\x7e\xfd\x54\x0f\xbb\xd2\x59\xd3\x34\x6e\xcc\x11\xd1\x4e\x9c\xf2\x59\x72\x4d\x1d\x70\x9b\x0b\x96\x79\xf1\xbc\xee\xe4\x46\xd1\x2d\x0d\xf4\x93\xeb\xa6\x39\x2b\xf3\x95\x8a\x7f\xe9\xfc\xe7\x75\xbe\xc8\x96\x19\x2d\x4c\x8d\xff\xec\x65\x65\x6f\x41\xd7\x05\x4d\x13\x4e\x17\xb8\xb7\x29\x69\xcf\xaa\xc6\xfe\xf3\xc0\x41\x46\xcb\xaf\xbf\x12\x47\xed\x25\x9b\xd0\x80\xb2\xe4\x62\x45\x17\xae\x9b\x79\x0c\x0c\x6c\xd5\x8a\x2a\x83\x75\xbe\x5e\xd3\x82\x7c\x6c\x15\x21\x5c\x95\x98\x5b\xae\x5a\x3d\x53\x8a\x30\x27\xcc\xe3\x98\x2a\xe3\x49\x3b\x6b\xad\x3c\x57\x48\xeb\x00\x9e\x70\x1a\x64\xe5\x33\x5a\xf2\x22\xff\x4a\x17\x26\x36\x9d\x56\x06\x82\x8d\x23\x2e\x05\x47\x2a\xe3\xdb\x1d\x4e\x8a\x22\xbf\x79\x57\x3d\x72\x5e\x64\x17\x1b\x2e\x9f\x96\xab\x6c\xbd\xa6\x8b\xf8\x20\xc2\x0a\xa2\xf8\x76\xb7\x9b\xd0\x0e\xa8\x9f\x7b\x15\x00\x2a\x22\x28\x8c\x51\x45\x63\xd5\xf5\xe4\x63\xbe\x16\xa0\x57\xd1\xc1\x7e\x14\x52\x19\x18\x2a\x09\xfe\x20\x58\x29\x79\xe9\xd5\x6b\xea\x17\xb8\xa3\xf3\x07\xf7\xa7\x27\xb3\x0c\xc4\xc8\x02\x48\x96\x90\x14\x19\x2d\xf5\x01\xe0\xae\xda\xeb\x64\xb1\xc8\xd8\xa5\x00\x33\x2f\xb2\xcb\x8c\x25\xab\x9f\x0d\xb8\xb4\x06\x61\x6d\x5c\x64\xff\x90\xad\xc1\x28\x22\x79\xea\xd9\x63\xe9\x1a\xab\xd5\x13\x6a\x7d\x6f\x9a\xbf\xa3\xd3\xa9\x12\x82\x63\x27\x51\x11\x97\x1c\x4c\x89\xcc\x5d\x52\x8d\x59\x07\x3c\x34\x24\xf5\x14\xee\x9f\x16\xd3\x5a\xc3\x39\xfb\x65\xbd\x48\x20\x7e\x54\xec\x75\x55\x07\x93\xaa\xfa\x17\xf2\x0d\x5c\x02\x37\xd2\x1e\xdb\xb1\x3d\xf2\x6b\xda\x16\x40\xe0\x1a\xc6\xba\xa6\xb4\x56\x1d\xdc\x88\xd6\xf6\x89\x9f\xeb\x0a\xd3\xd9\x41\x84\x9d\xeb\xd2\xc1\xce\x9f\xe9\xc5\xa7\x4c\x30\xfc\x57\xf9\x37\x07\x3b\x6f\x1c\x79\x34\x34\xc1\xa5\x02\x9e\xff\x22\x90\x29\x33\xda\xf7\x35\x3f\x8c\x90\x0a\x60\xc6\x5b\x3e\x62\x39\xe1\xb3\x42\x1c\x71\xf3\xa9\xe3\xf4\xf3\x3e\x8b\xe5\x81\xe4\x2e\x6b\x13\xb8\x27\x08\x60\x21\xce\xb2\xb9\x66\x9f\xd9\xce\xba\xc7\xac\xc6\xf2\xb6\x11\x98\xb7\xb5\xce\x05\x9e\x9f\x34\xa7\xd0\x01\xb7\x70\x58\xdc\x8e\xb1\xf9\x57\x84\xa2\x8c\xe3\xf5\x72\xf7\x9c\x2f\xbe\xa1\x2b\x07\xd9\x2b\x4a\xc2\x58\x51\x96\xe3\x74\xbc\xe5\xf9\xba\xfb\x05\x68\xc3\x3a\xdf\xc8\xa3\x4c\xe7\x2b\x75\x24\xea\x7c\x77\x93\xad\x56\x4f\xaf\x12\x76\x49\x3b\xdf\xcf\x7e\xf6\x6c\xf5\xc7\x1c\xa2\x2e\x41\xad\x45\x56\x0a\x5a\x79\xfe\x99\x32\xfe\x32\x2b\x39\x65\xb4\x28\x3d\x54\x27\x4f\x89\x96\x37\x4c\x21\x56\x87\x3e\x56\x8b\xcb\xdc\x21\xb7\xa2\x20\x57\x1c\xfd\x2a\x2b\xab\x79\xfb\xcb\x5e\x59\xb1\xb2\x21\xa9\x89\x8d\xb1\x3c\x3b\x37\x72\x31\x48\xfd\x0b\x0b\x36\xb0\xd8\x40\x3b\x4d\x0a\x2c\x1a\x0f\x92\xc5\xa2\x36\x22\xcf\x29\x68\x99\x7d\x03\x33\x3b\xab\x3a\xbe\x5d\x27\x65\x99\x7d\x96\xd7\x0d\xca\x82\x28\xb5\xee\x5d\xed\xe3\x75\xfd\x04\x67\x8e\xd5\x96\x96\x55\x08\x46\x7c\xbf\xf0\x1b\xf3\x49\xd2\x86\x4c\xb4\x5a\x03\x03\x67\xdb\x2d\xf5\x52\x2f\xb1\x6f\xe7\x55\xe7\x38\x97\x0e\x8b\x09\xda\x79\x39\xd6\xd7\x7f\x8d\x41\xb1\xc0\x56\x61\x94\xc8\x14\x28\x7e\x4e\x72\xcc\x02\x2a\x80\x28\x9f\x4b\x46\x21\xd6\x09\xb3\x13\x08\xa8\xa8\x02\x72\x41\xd5\xaa\xea\x00\x02\xf0\x8a\xfc\xcd\xbb\x63\x63\xc1\xcd\xbd\xaf\x4c\xaf\xe8\x62\xb3\xa2\x92\x3b\xd6\x03\xfe\xab\x2d\x19\xab\x68\x20\x1d\x3d\xbb\xae\x97\x8a\xbd\x7a\xf5\x98\x65\xd7\x60\x9b\xfc\x63\x91\x5c\xab\x60\x01\x8d\xa6\xad\xae\x8d\xc3\x99\x05\x24\xb1\x20\xfb\x8b\x4c\x62\x20\x08\x77\x0f\xc9\x70\x1b\xbb\x42\x3a\xa9\xa1\x77\x9f\x88\xd5\xd9\xa4\x9e\xb0\x7a\x93\x20\xbb\xd4\xc8\x18\xac\x5c\x1a\x1d\x81\x93\x4b\x63\x26\x55\xbd\xc6\x64\x46\x98\xdb\xc8\xfd\xc9\x32\xbf\x12\x2c\x97\xba\xee\x41\x56\xbe\x4e\x5e\x7b\xf6\x15\x36\x42\xae\x9b\x95\x3f\x66\x0c\x12\xe0\x5b\x9f\xff\x28\x37\x21\xfb\x3c\xce\xbb\x04\x4b\x73\xdc\x74\x9c\x89\x3a\x43\x28\xc9\x5f\x4b\xfb\x52\xb3\x8c\xcd\xd1\x42\x9d\x85\x3a\xce\x18\xae\xfb\x93\xc7\x67\x0c\x7c\xb2\x0a\xe2\xac\xbf\x38\x32\x0c\xba\x60\x65\x6c\x0e\x97\xa7\x7d\x08\x57\x20\x7a\xfc\x13\x58\x2e\x29\xe3\xc2\xc3\xec\x21\xa6\x4b\xbf\xd6\x0f\xc8\x7b\x85\x6d\xed\x2a\x0e\xa7\xf4\x9c\x48\xa5\x57\xc7\x36\xdc\xac\xcf\x44\x35\xb3\x0b\x0b\xd1\x68\x41\x8b\xb3\x42\xfe\xdd\x49\x9d\xee\x41\xc5\x4b\xfe\xd3\xe9\xf3\xbe\xf3\x9f\x0e\x4e\xe0\x37\x13\xbf\x27\x35\xc9\x3c\xe9\x3b\x3d\xbd\x85\x09\x89\xbc\xa0\x7f\xdf\x64\x05\x5d\xf4\x2e\xbe\xf6\x9c\x7e\x56\x7b\xcb\x7a\xd0\x4d\x8f\xe7\xbd\x9b\xbc\xf8\x84\x21\xce\xe2\xa6\xa0\xa2\x20\x63\xe9\x6a\xb3\xa0\xbd\x8c\xf7\xa4\x15\xad\xfc\xfa\xc0\x31\x17\x99\x39\xe0\xf4\xdf\xc8\x0c\x14\x4b\x3e\xc4\x94\x70\xb0\xd4\x32\xc9\x3f\x3e\xb8\x6a\x3a\x70\x53\xa3\xde\xca\x79\x15\x25\xf2\x9d\xd4\x1c\xe9\xb7\x7a\xbe\x65\xa9\xac\xa1\xb4\x43\xf6\x43\x55\xaa\x3f\x04\x1d\x91\xac\x22\x4f\x9a\xb2\x44\xbe\x9e\xe3\xff\x20\xff\xa6\xa4\x90\xa1\x35\xb7\xff\xe7\xf7\xd0\x89\xff\x87\xe5\xea\x84\x0b\xf2\x1f\x3a\x1e\x5e\x3f\x42\x3a\x30\xd0\x7f\x98\x13\x21\x43\x96\xf1\x63\x51\x39\x4d\xc6\x05\xe0\xf2\x0f\xe4\xf6\xc7\x97\x2f\x7e\x8e\x1d\x21\x30\x3b\xf8\xe9\xcb\x37\x4f\xff\xe3\xcf\x2f\xde\x3d\x8f\x9d\x74\x95\xa7\x9f\x6e\xb2\x92\x3a\xf8\xe9\x9b\x5f\x5e\xbf\x7f\xfe\xd6\x7e\x99\x6f\x18\xa7\x45\x55\xc7\xba\x61\xfe\xf7\xe6\xfd\xc3\x2c\xc4\xe1\xfc\xde\xc3\x7b\x81\x20\x58\x9e\x54\x0f\x1c\x7a\x1f\xfa\xdb\x0f\x3e\x3a\xdc\xaf\x5c\xd3\x39\x60\x76\x2a\x33\x93\x6e\xe7\x93\x97\x74\xad\x17\x5f\x1a\x95\x96\x34\x29\xc0\xa6\x7b\xfb\xa1\x3c\x04\xe3\xd8\x49\x32\x2b\xe7\xca\x39\x4e\xfc\xac\x94\x97\x58\x88\x60\xf5\x33\xe8\x1b\x29\xbb\xf7\x4a\xba\x4e\x0a\x21\x2d\x0b\x1a\xbf\xb9\xca\x38\xed\x95\xeb\x04\xa2\x51\xf6\x92\x82\xb6\x0e\xa5\x49\x0f\x6c\xd2\x7b\x1e\x46\x60\xe4\x41\x93\x45\xa0\x8e\xa6\x29\x39\xfc\x50\x3e\xc2\x1f\xca\x47\xdb\x0f\x65\xff\x10\xaf\x24\x9e\xca\xe9\x2c\x31\x93\x58\x9a\x89\x9d\x01\x88\x12\x49\x29\x9a\x85\xf3\x39\xc2\x8d\xb2\x68\x6e\xe2\x43\xe9\x16\xca\x7e\x84\xd0\x3c\x9e\x25\x73\x3b\x90\x66\x03\xb3\xd5\x84\x79\x32\xd6\xe2\x41\x16\x67\xa8\xad\x2b\x49\x2c\xd3\x61\xb1\x95\x2c\x36\x29\xed\xd6\x55\xaa\xa8\xa5\x55\x04\x44\xc0\x33\x10\x41\xdf\xc1\x8e\x6f\xcd\x3e\x47\x53\xaf\x56\x93\x70\xd1\x51\x88\x29\x8a\x93\xc6\xab\xbe\x7c\x17\x89\x77\x54\x0f\x95\xa3\x1d\xc2\xb3\xf9\x7e\x7a\xa9\xab\x46\xaa\xc1\x52\x6d\xe6\xef\x79\xd3\xf8\x83\xbf\xfd\xd0\x47\xd3\x0f\x8b\x47\x1f\x02\xf1\x2f\xf2\x82\x47\xe8\x10\xe1\x8c\xf4\x73\xb1\xf8\x12\x92\xcf\x06\x73\xe0\x90\x59\xa5\xd5\x56\xc9\x09\x2b\x1a\x74\xfe\xe8\x20\x1d\xe4\x51\x5d\xdd\x28\x43\xe0\x44\xd9\xff\xfe\x71\xed\xc4\x25\x61\x13\xe5\xa5\x0d\x45\xca\x1e\xf8\x8f\xc5\xff\x4b\xde\x9f\xb7\xc7\x8d\xe3\x8a\xa3\xf0\x57\xb1\x35\xf3\xf3\x48\x63\xd9\x5d\x8b\xd7\x72\xab\xfd\xa6\x63\xa7\x93\x9e\x6c\x93\x38\xe9\xc5\xf1\x2f\xa3\x92\x58\x55\xea\xa8\xa4\x32\x25\x79\x89\x5d\xdf\xfd\x7d\x08\x70\x01\x29\x95\x9d\xee\x73\xce\xbd\xe7\x79\xee\x1f\x71\x8a\x20\xc4\x05\x04\x41\x10\x04\x41\x6f\xa4\x2e\xa0\x54\x11\x37\xe7\xf2\x55\x70\x5e\x5f\x7c\xd7\xef\xf5\xfe\x99\x2d\xe1\xdc\x6d\x06\xc7\x22\xf7\xf7\xde\x15\x1c\xdd\xc4\xda\x3a\xa4\xb2\x8e\xf5\x21\xd7\xaa\x63\xc3\x6f\x39\xfb\x1a\x7d\x6b\x29\x0f\x1c\xb8\x05\xb2\xdd\x7a\xd3\xe4\xb3\xb0\x0c\x55\xc8\x90\x15\xd6\x20\x7c\xf8\xa8\x63\x35\x17\xa3\xf7\x1c\x8d\x36\x25\xc4\x5b\x2a\xfe\xe9\x7b\x5b\xc8\x6d\x7c\xab\x7f\x01\xa7\xc1\x81\x2c\x3a\xc4\x55\xe3\xf7\xe8\x4e\x6f\x97\xb4\xa9\x33\xb4\xf6\xd9\x23\xc1\x53\x54\x5d\x19\xad\xf7\x42\x67\x7f\x01\x96\x15\xb9\x23\xa6\x97\x50\x96\xa1\xda\x59\xdb\x50\xbd\xb7\x1b\xdd\x41\x64\x87\xd1\x1d\x2c\x80\xa3\x7e\xaf\x17\x32\x53\xcb\xa4\xe8\x70\xd1\xa7\x26\x8a\x22\xaa\x6d\xd3\x29\xf8\x77\xdb\x96\x77\x8c\xa3\xa0\xd8\x5a\xda\x19\xc4\x1e\x97\xe8\x97\x71\x54\x2a\x5b\x45\xa5\x24\xb2\x5e\xe2\xc4\x52\x69\x99\x53\x93\xa8\xb2\xad\xa7\xb9\x00\x38\x86\xd2\xb0\x89\xee\x60\xd9\x1b\x5d\xfb\x77\xcb\x30\x09\x21\xd2\x6f\xc8\x8a\x94\x02\x36\xb3\xf3\xfc\x62\x2b\x3e\xcf\x2f\x02\x6a\x8f\x92\x56\x14\x70\x45\x8a\xc3\xc6\x76\x5b\x5a\x4a\x23\x96\x22\xda\xe0\x01\xa2\x85\xe4\x8c\x11\xbf\x82\x33\x0f\x43\x41\x97\x26\x92\x0a\xb1\x45\x9e\x2a\xe2\x0e\x99\x13\x35\x83\x65\xab\x92\xe8\xb9\xbf\x59\x04\xc7\xe7\x9b\x45\xd8\xbb\x18\xfd\xec\x17\x61\x16\xc6\x61\x15\xc8\x15\x0d\x0c\xc2\xbe\x3c\xa8\x4b\x44\x09\xd2\x4b\x24\x4a\xce\xfb\x17\x81\xb2\xc5\xaf\x42\xdb\x54\x68\xd2\x3f\x16\x90\x54\x06\x60\x81\x73\x87\x44\x92\x23\x87\x4f\x51\x77\x20\xca\xd2\xc0\xc0\x05\x74\xce\x42\xa6\x89\xda\x5b\x86\x0b\x0e\xfc\xfe\x46\x5e\x0c\x50\x74\x1e\x7e\x23\x9d\x5b\xe6\x38\x74\x23\x56\x96\x4b\xb5\xc5\x3e\x22\x20\x63\x7f\xc4\x57\x07\x8a\x28\xf5\x0b\x6d\x59\xb6\x4d\x01\x30\x64\x4e\x61\xa8\x68\xc3\x00\xd6\xe5\x02\x46\x0f\x8e\xe9\x2a\x7c\x6b\xa5\x54\x76\x8d\x52\xdb\x31\x04\x5c\xe8\xfd\xb8\xd8\xbe\x6e\xb7\x2f\xec\x6a\x5e\x58\x2b\xf3\x61\x58\xb8\xf6\xc1\x40\x56\x93\xa9\x5a\x62\xac\xa4\x0a\x29\x49\xa2\xe4\x08\x63\x6e\xd4\xdb\x0b\x9e\x95\x3c\xab\x6f\x89\xe7\x96\xb6\x18\x2e\xa2\xbb\x05\xcf\xe6\x31\xbf\x6d\x49\x80\x22\x6a\xce\x99\x39\x50\x3b\x67\x17\xdf\x27\xe7\xec\x62\x63\x63\xbd\xde\x66\x55\x12\x2f\xe0\xb5\x9b\x77\xaa\xc9\x40\x4d\x2d\xab\x05\x7a\x28\xd0\x83\x20\xbc\x46\x47\xbf\x02\x6e\xc1\x25\xa5\x68\x60\x57\x6d\x86\x35\x99\x3d\xeb\x79\xd4\x90\x47\x84\x44\xc9\x3f\x3c\xd2\x10\x6e\x82\x84\x8b\x4f\xa1\x21\x5b\x3e\xad\xa0\xc1\x53\x9e\x51\xa3\xce\x3f\x55\x3b\xd1\x4b\x56\x55\x96\x77\xef\x61\xaf\x64\xc8\x65\x90\x5f\x52\xff\xb6\xa5\x17\x0b\x8e\x3d\x49\x58\x6f\xe4\xe9\x6e\x7b\x47\x0d\x0a\x9b\x26\x5c\x9c\xd7\x17\xbe\x34\xcf\xb7\x04\x52\x23\x26\x8a\x1a\xb7\x91\xae\x83\x5b\x9b\x45\x39\xfd\x2e\x42\xc9\x2a\xa3\xdd\xb0\x35\x25\x46\xb6\xd3\xc6\x32\xfc\xc2\xd8\xe2\xac\x9c\xb2\x7a\xc6\xb8\x9a\x70\x3b\xdf\xb4\x1a\x28\xe9\x25\xa6\x9e\xe4\x1e\x0e\x91\x9a\x14\xcf\x96\x54\xe0\x39\x72\x2c\x23\x6f\xc0\x87\xb1\x22\x9d\xdd\x0f\x4d\x3c\x38\x99\x8f\x8f\x65\x77\xcd\x72\x99\x08\xa0\xbd\x1e\xc4\x2b\x0f\xce\x8a\xf3\xea\xe2\xfb\xcc\xe7\x62\x35\x80\x6b\xd0\x36\x89\xcf\x93\x8b\x48\xe6\x6e\x15\x62\x59\x08\x8b\xf3\xe4\xe2\x07\x01\xaa\x1e\xfc\xa0\x12\x2c\x2d\x16\x07\x38\x09\x51\x24\xdc\xfd\x16\x99\x05\x9a\xdb\x6f\x54\x04\x50\xdb\xab\x28\xce\x0b\x3d\x3a\x40\xae\xf3\x82\xa0\x37\x93\x4e\x59\xdd\x8f\xf0\x4a\x67\x6e\xde\x21\xba\x2e\x1b\xc6\x6f\xdf\xcb\xeb\xa0\x3e\x0f\x4c\xd9\xfa\xbe\xfc\x7a\xfb\x2b\xed\x70\x67\x02\xef\xd9\x9b\x92\x5f\x9e\xbc\x7b\xfd\xe2\xf5\x4f\xa3\xb5\xff\x40\x0f\x54\xfb\xfe\xa3\x1f\x32\x48\x66\x59\x9e\xae\x95\x93\xb5\xac\xae\xd6\xb0\xd4\x35\x89\xb4\xee\x05\x21\x3b\x52\x2a\xc3\x6a\xde\x31\xcc\x57\x45\x99\x62\xbe\x24\xca\x08\xf3\xe5\xce\x74\x44\xde\xb1\x78\xaa\x89\xf2\xf6\x7e\x62\x21\x80\xc4\xc1\x3f\x9c\x44\x8b\xed\xba\x7c\x59\x5e\x2b\x83\x7e\x98\x0a\x14\xca\x76\x33\x01\x18\x2b\x17\x7f\x39\x29\xc7\xd1\x7b\x9f\x07\xe7\xcd\xc5\x51\x72\x3e\xbb\xd8\x1a\x7f\x5f\x9d\x4f\x2e\xba\xf8\x68\x72\xb1\x15\x89\xbc\x2d\x1f\x11\x83\x20\x4c\xce\x27\x17\x9b\xe3\x1f\xaa\xf3\xd9\x8a\x2f\xc4\x4a\x2a\x50\xb6\x04\x4a\x87\xbc\xf8\xdc\xfa\x08\xd7\xb4\x39\x7e\x97\x9c\x37\x17\xdf\x0d\xb6\xc6\xdf\x0d\xc2\x57\x51\xdc\xb1\x46\x86\x53\xea\x2e\xf0\xca\xdc\x6b\x58\xc0\x65\x8d\xf0\xca\xc9\x56\x77\x3a\x16\xd6\x9d\x8e\xf0\x36\x9a\x6f\x75\xf5\x77\xba\x75\xa5\xa6\xe5\xad\x59\x23\xb4\x8c\xae\xce\x9b\x8b\xad\x71\x78\x1b\x84\x3d\xd1\x37\xe0\x23\x65\xc7\xa3\x87\x5a\x90\x11\xf9\xd7\x7e\x11\xdd\x2d\xc3\x49\x08\x05\x70\x21\xf2\xfc\x5b\x90\xdf\x45\x98\x86\x9e\x17\x84\x85\x98\xa1\x21\x53\x22\xf0\xfc\x66\x0b\x3e\xbd\xf0\xf0\x88\x52\x4d\xda\xbd\x47\x26\x6d\x36\xf1\x7f\x5c\x31\x5b\x61\x7f\x41\xa7\x27\xbe\x6b\x83\xe7\x9f\x10\xd8\x41\x1f\xf5\x89\x8d\x7f\xeb\x00\xd0\x9e\xd7\xc5\x5f\x51\x0c\x3a\x14\xa0\x96\xaa\x60\x2b\xa1\xce\xbc\x2a\xa3\x4b\x8c\xa6\xb7\x02\xa5\x7f\x71\x7f\xef\x89\x1d\xf7\xf9\x85\xda\x40\xd6\xdb\x63\x36\x8b\xaf\xb2\x92\xe3\x4e\x72\xed\xef\xdb\x60\xc0\x89\xa3\x73\x1e\x96\x17\x64\x43\xb9\xf6\xf7\x6d\x63\xb1\x89\xa3\x7f\xfb\x3c\x70\x72\x5d\xb3\x0e\x20\x85\xeb\x3d\x85\xa7\x76\xa1\x71\x64\x6a\x55\xca\x79\xdc\xb1\x2e\x57\x21\xc6\x43\xe4\xeb\x51\x54\xdd\xdf\xab\xd8\x32\x51\x14\x25\x9b\x7d\x43\xef\xc7\x29\x22\x15\xa7\x96\xae\x44\xd5\x27\x33\x20\x0b\xba\xb2\x4d\x22\xad\x86\xf3\x8d\x8d\x85\x9f\xe3\xa9\x55\xf0\xc3\xc2\x6f\x40\x59\x0b\xee\xef\x8d\x1a\x22\x51\x00\xfe\xbd\xc0\x40\xe4\xfb\x7b\xa5\x7e\x4b\x04\x14\x35\x58\x48\x0d\x41\x95\x88\xea\x2d\x71\x04\x1c\xca\x90\xc8\x61\x1a\xd1\xb2\xd1\x89\x2f\x08\x67\x91\xd5\x28\xe9\xb0\x17\x84\xe3\x88\x14\x02\xce\x7d\x41\x38\x8f\xec\xca\x0b\x5d\xf6\x2b\xab\x9b\xa9\xd3\xa7\x99\xd5\x81\xb1\xdb\xda\x79\x38\x7d\x64\xfd\xe7\x42\xe0\xac\xaf\xd7\x30\x9f\x3e\xc6\x3c\x83\x33\x0d\xb1\xc7\x98\xe2\x15\x51\xf4\xf6\xcd\xa0\x6a\x01\x62\x45\x2a\x01\xb3\xfb\xfb\x75\x17\x69\x2c\x61\x06\x6b\x2e\x44\x55\xbb\x82\x1f\x6f\xe1\x2e\x70\x51\x77\xd4\x34\x73\x6b\x4a\x3b\x6a\x9a\xb7\x6a\x1a\x07\xe1\x93\xe8\xea\xfe\xfe\xf6\xc8\x9f\xdc\xdf\xbf\xba\xbf\x7f\x82\xba\x85\x94\x14\xd1\x7a\x2f\x84\x0c\x34\xe7\xc7\xe7\xc9\xa6\xd8\x30\x3d\x81\x77\x34\x3a\xa2\x50\xc9\x82\xd9\xb1\xac\x76\x64\xaa\x67\xc7\x90\x3b\x62\x4b\x78\xa3\x93\x4a\x20\xbe\xe9\x67\xe0\x0c\x97\x8d\x3c\xaf\x63\xf5\xc0\x9b\x38\x2e\xbb\x3f\xed\x14\x49\x0f\x3b\x18\x04\xe0\x19\xd0\x29\x32\x59\x88\x56\x5e\xa9\xf1\x2e\x43\x35\xa7\x95\xf5\xf7\x41\x2d\x56\x7b\x79\x87\xf6\x90\x8d\xd6\xfb\xe1\x8a\x41\x1c\xad\xf7\x97\x21\xc8\x69\x25\xef\xf7\xa9\xbc\xef\xff\x35\xab\x87\x51\x45\xe0\x19\x02\x24\x4b\x16\x71\xcb\xc8\xf1\xb0\x2a\x02\x4e\xdc\x60\xf1\x55\x33\xa0\x75\xca\x43\xbc\xbf\x2c\xd5\xe3\x22\xca\xce\x8b\x8b\x2d\xbf\x3a\x86\x1c\x47\xf5\xbd\x18\xf5\xec\x81\xbf\xf4\x3b\x7c\x3e\xa2\xcf\x42\x19\x12\x1a\xec\x2c\x4b\x99\xa2\xcd\xc1\x83\x7b\x80\x87\x14\x57\x51\x8a\x07\x31\x4f\xe9\x66\xde\x55\x5d\xeb\x4e\xe1\x59\x44\x5f\xba\x4b\xed\x7a\xb1\xd2\xad\x01\x6f\x41\xc5\x73\x78\x18\xcb\xf0\x0c\x84\xd8\x93\xa2\xea\x7b\xe9\xa7\x8c\x4e\xb5\x3f\x68\xff\x64\xf0\xed\xfd\xc1\x78\x25\x4b\x4f\xde\xef\xa5\x98\x84\xfe\xe2\xd3\x4b\xa2\x77\xa6\x27\x98\x06\xcb\xf0\xb6\x71\x7d\x3a\xf7\x6e\xb6\xca\xa6\xde\x2a\x27\x5b\xa6\x19\x9e\xd8\xf6\x9b\x38\x53\xfd\x07\x4a\xeb\x7f\x53\x69\xeb\x7d\x6a\x9a\x4a\xd0\x57\x14\x9c\x35\xf4\x18\xee\x7e\x9b\xe1\xe4\x06\x36\x6e\xb7\xd4\x26\x65\x38\xf9\x4f\x0c\x08\x71\x17\xb1\xc6\x62\xba\x68\x9e\x24\x09\xcb\x19\x87\x29\x79\xa4\x0f\x96\x32\xf7\x44\xc3\x6c\x1e\x9c\x6f\xfe\xb3\x86\x47\xe5\x6b\xf3\xf2\x8a\xa5\x6b\x75\xb9\xf6\x1f\xda\xe3\xff\x98\x43\xbd\xb8\x48\xd7\xae\xb3\x3c\x5f\x2b\x4a\x7c\x37\xad\x59\x08\x41\x81\x81\xc8\x26\x4d\xdd\x70\xb6\x76\xc5\x78\x25\x64\x83\xd8\x85\xbc\xc5\x7d\xcd\x1f\x95\xf2\xce\x8b\x23\xd3\xbe\xe3\x6c\x54\xbb\xcd\x0f\xab\xa8\xcb\xac\x14\x26\xd1\x1b\x8c\xd9\x7c\xa7\x74\xae\x51\xa9\xd5\xaf\x65\xd8\x74\xde\x3f\x32\xe2\x83\x47\x85\x22\x7a\x19\x15\x64\x4e\xc8\xad\x32\xe8\xb5\xea\xb9\x33\xd4\x2e\x3a\x03\x66\xb3\xa5\xd8\x09\xf9\xf2\x5a\x9d\x68\x4f\xe6\x73\x95\x68\x1e\x11\x45\x96\x73\xd8\x22\x92\xc7\x54\x46\x3d\xd2\x47\x0a\x5b\x5e\x10\x4e\xa2\xfa\xb8\xb9\xbf\x5f\xdc\xdf\x27\xff\x67\x10\x45\x51\xfe\x7f\x06\xc7\xd9\x28\x1e\x55\x61\x1a\xd5\xc7\xd9\xa8\xd2\xef\x8e\xb2\x49\x3d\x9a\xf8\x88\xd5\xdf\xd8\xc8\xd5\x8f\xf5\xc5\xc6\x46\x7d\x8c\xd7\x50\xb6\xfa\x23\x2e\x95\x92\xba\x5c\x8c\x52\x9f\xa3\xd6\x21\x1d\x83\x45\x5a\xa9\x1b\xe8\x38\x3c\xf1\xb9\xd4\x56\x96\x4b\x9f\x29\x43\x7f\xca\xae\xb2\x84\xbd\xcd\x6e\x58\xfe\x4e\x0c\xd7\xf7\x83\xfb\xfb\xf5\x8f\xa2\x33\x44\xeb\x28\x94\x57\xae\xb2\x24\x4c\x88\xb5\x89\x6b\x09\x2b\x77\x72\x33\xd7\x10\x38\x56\x21\x48\xe7\xca\x1a\x9b\x4d\xfc\x39\xad\x60\x71\xac\x2f\x90\x54\xe6\x62\xe6\x56\x65\x1d\x70\x6c\x2a\xe5\x6c\xb4\x95\x48\xb3\x93\x01\x81\x66\x17\x8e\x49\xbb\x26\x0f\x97\x89\x0e\xd9\x52\x67\x14\x25\x5e\x5b\x00\x54\x37\xc3\x78\x63\x63\x16\xe4\xe7\xb3\x8b\x08\x7b\x94\xc7\x35\x1b\xa6\xbe\xb7\x39\xde\xf4\x16\x37\xe1\x9a\xb7\x39\xc7\x1f\xbd\xc0\x0b\xf3\xf3\xc5\x45\xd4\x0b\xf3\xf3\x09\xfc\x67\xb9\x4e\x19\x7a\x98\xeb\x2c\xaf\x6c\x12\x6c\xf5\x47\xfd\x70\x6a\xf5\x00\xee\xc5\x41\xb1\xf3\x7f\xbe\xc2\x82\xc7\xff\x9c\xda\x45\x2f\x36\x3d\xd1\x8e\x09\x9c\x93\x5c\x45\x77\x96\x67\xd9\x88\x70\x23\xf1\x0c\x37\xd2\x12\x95\x97\x2b\x4b\x82\x6a\x8f\x08\x99\x9b\xeb\xb4\xde\x5e\xbe\x27\xd9\xce\x06\xd3\x46\x01\x55\xc5\x91\x08\x42\xb8\xde\x18\x66\xba\x55\x9c\xb3\x0c\x8d\x44\x54\x32\xf9\xf0\x71\xdb\x5a\xa8\xa2\xa1\xad\x3d\xeb\x54\xb9\x54\xd3\xeb\xb6\x51\x07\x1c\x11\x4d\xc7\x43\xea\x8a\x52\xac\xf0\x71\x86\xa7\x2e\x8a\x73\x76\x71\x5c\x6f\x57\xac\x36\x2e\x7d\x2c\x14\xd0\x60\x54\xb7\x9c\xfd\x98\xb4\x52\xd2\x9d\xf9\xc6\x06\xad\xcc\xa6\x99\x7e\xcb\xe4\x99\x6f\x7f\xd4\x41\xdb\xb2\x78\x59\xc6\xe9\xc8\x3d\x20\x35\xfe\x64\xa7\x7e\x19\xd6\x21\x0b\x0b\x77\x6f\x1b\x47\x2f\xfd\x82\xa8\x6b\x99\x44\x7b\xd4\x6b\xb7\x85\xa2\x5c\x75\xcd\x2b\x9f\x16\x61\x2c\x8e\x0c\xe3\x20\x7c\xe6\xd7\xa1\x91\xfa\xc5\xa3\xfe\xb2\x4b\x78\xdf\xcf\xe5\x22\x19\xb3\x77\xb9\x0c\x19\x5b\x11\x32\x81\x78\xe2\x80\x1f\x76\xfc\xed\x17\x58\x8f\x69\x62\x74\xb7\x3c\xba\xb5\x1e\x26\x77\xfc\xc2\xa2\x76\x44\x3b\xce\x2e\x1b\x56\xd5\x8e\x4f\x19\x97\xde\x58\xc1\x12\x8b\xc1\x54\x54\xfa\x24\xb5\x3d\x86\xfb\x04\xb3\xac\x0a\x6c\x77\x49\x35\xdf\x4e\x70\x6b\x5f\x09\x5a\x12\x7f\xb4\x3b\xe2\xa0\x2a\x14\x74\xed\x15\x2c\x12\x96\xc7\xd7\xe8\xfc\x62\xe9\x78\x6e\x47\xf5\xc6\x46\xbd\xfd\x07\x58\x39\x31\x48\x5e\x4d\xbd\x3d\x31\x6e\x91\xcc\x2e\x44\x76\xb1\xc2\x7b\x3b\xba\x5b\x5a\xf3\xc8\x69\x33\xd1\x89\x62\xf3\xbb\xf3\x08\xb9\x0e\xee\x78\xbb\xfc\xf3\xfa\xc2\xa5\x83\x95\x79\x7f\x7f\xb7\xa4\x45\x1f\xc7\x56\xf6\xe8\x6e\xa9\xe3\x21\x93\x46\x5b\x4e\x68\x9d\xfd\x7a\xf0\xa6\x98\x50\xdd\x46\x6c\x19\x76\xb5\x97\x5d\x04\x8f\xdc\x0a\x93\x6e\x5c\x5b\xb5\x76\xe3\x72\x9a\xb7\xca\x15\x90\x5c\x82\x60\xdb\x28\x09\x02\xf0\x0a\x83\x9f\x3e\xdd\x55\xe9\xcd\x96\x6e\x62\x28\x80\xc0\x39\x86\x20\xc8\x80\xbe\x8a\x14\x64\x51\xc2\x3a\x5c\x3f\xaa\xa4\xaf\x2e\x36\xa1\xdb\xcb\xb7\xc3\xd7\x32\xaa\x94\x16\xfe\xc4\x67\xa1\x8c\x0e\x89\xb5\x7a\x21\x46\xf2\x68\x4f\xa5\x13\x13\xe3\x32\xd0\x61\x50\x53\x64\xf5\xd5\x5f\xbd\xeb\xfa\xaa\xab\xb9\xab\x8b\x78\xd1\x59\x71\x97\x63\xf3\xea\x32\x3e\x58\x65\x5c\x04\xf8\x0c\x3b\x63\xdb\x1f\xea\x2c\xaf\xa2\x6e\xaf\x75\xd4\xce\x8e\xf1\xbf\x11\x0b\xb6\x51\xed\x86\x4f\x42\x46\x16\xf5\x2a\xfa\x49\xa4\xd5\x4c\x88\x7e\x0f\xeb\xed\x38\x62\xcc\x79\x66\xb3\xbf\xfb\xe8\x33\x9b\x28\x26\xe5\x3c\x98\xb2\x9a\x44\x28\xc1\xe0\xcc\x62\xcb\xfe\x48\x28\x93\x30\x6b\x63\x2c\x64\xde\x8b\xea\x54\x07\x68\x39\xa2\x71\x03\x31\x9c\x7b\x93\xe7\x62\x13\x74\x7f\xaf\x2f\x47\xad\x78\xf7\xd9\x0a\xd7\xb2\x96\x60\x44\x9d\x31\x83\xa0\x3a\x4c\xec\x65\xea\x19\x78\xf3\xaf\x95\x7c\xcd\x90\x56\xaf\x4d\xf8\xb9\x58\x92\x4d\xf0\x4b\x1a\x23\x11\x23\xa1\xac\x5b\xb5\x98\x3b\xcd\x78\xbb\x47\xb4\x48\xc6\x5b\xf6\xe2\x71\xe2\x81\xd7\x25\x3b\xdf\xbd\x88\x3c\xd8\xcb\xef\x0a\xed\xad\x93\x92\x42\x07\xad\x7c\x16\x9c\xf7\x2e\x4c\xa1\xe6\xd2\xc4\xdd\x52\xbe\xf0\xd2\xef\xc9\x27\x5e\xbc\xcf\xde\xa6\x8c\xb9\x38\xe1\xe5\xfc\xa9\x7c\x72\xd6\x2f\x82\x8b\x08\x0e\xc4\xbc\x5e\x7f\x30\xdc\xd9\xdd\xdb\x3f\x38\x14\xfc\xf3\x40\xad\xf5\x6a\x09\x26\x2f\xfd\xc9\x97\x98\xcd\xf5\xec\xbe\xe4\x8a\x3b\xa5\x3b\x8a\xee\xa6\x6c\x32\x9d\x65\x7f\x7c\xc9\xe7\x45\xb9\xb8\xe4\x55\xed\x29\x2b\x8f\xb7\x42\x65\xe2\xe7\xec\x22\x82\x07\xcb\xbb\xbf\x37\xd4\x02\xf9\x6b\xd1\x5e\x48\x7a\x4e\x9a\x26\xe3\xc2\x94\xfa\x25\xf4\xfe\x72\xe9\x07\xc7\xd6\x37\xce\xbe\xdd\x3c\x20\x57\x85\x09\xc6\x5a\xcc\xa3\xfe\x51\xde\x0e\xe8\x93\x6f\x6e\x1a\x74\x78\x4a\xa3\x90\x2d\x33\x91\xce\xce\xf3\x8b\x20\x28\x55\xd0\x9e\x26\xd8\xd8\xf0\x13\x78\x3e\xe3\xbc\xb9\x08\xa4\x17\x4f\x15\x71\xbf\x30\x4f\x4c\x2e\xa2\xde\xd1\xe2\x7b\x5d\xcb\x62\x73\x33\xc8\x54\x01\xd5\xf9\xe2\x02\xcb\x10\xbf\x44\x31\xf0\xbf\x09\xaa\x94\x2c\x1f\x99\xb8\xd6\x82\x29\x7d\x01\x3e\x7f\x9e\xe6\xe5\x38\xce\x3f\x37\x45\x76\xd9\xb0\xcf\x59\xfa\xf9\x33\x0d\xf7\xda\x16\x53\xf0\x9a\x10\xb8\x46\xc3\x0d\xd7\xbe\xfb\x50\x6f\x5b\x82\xe8\xd7\x57\xc0\x10\xa2\x4a\xbe\xb3\xc2\x8a\xaa\x67\x6f\x49\x64\x70\x13\x9c\x74\x6d\x16\x57\xd2\xec\xc0\x8a\x35\x3d\x53\x69\x50\xd1\x8e\xef\x93\x9c\xc5\xfc\x5b\x4b\xa8\x94\x78\x11\xbb\x40\x5d\xb1\x32\x21\x91\x38\xa9\x2c\xec\xc1\xe0\x01\x66\x76\x7f\xbf\x5e\x04\x1b\x1b\xed\x2f\x0a\x52\x4a\xe8\x7e\x0e\x4f\xfb\x49\x3c\x80\x48\x5e\xad\x51\xac\xa8\x2c\x39\xf2\x4d\x9e\x87\x36\x92\x8d\x80\xda\xa6\x40\x58\x2e\xd7\x1d\x09\x55\x44\x9e\x8e\x18\x66\x4e\xaf\x4d\x7b\x8e\xcd\xcf\x51\x26\x2b\x60\xc1\x5d\x11\x65\x4b\x7c\x7f\xb0\xeb\x73\x4a\xd8\x63\x9a\x18\xc5\xa6\x08\x1e\xc5\x4b\x15\x13\x37\x09\xf3\xe8\xfc\x22\x6c\xa2\xf5\x3e\x18\x3f\x68\x00\xcf\xe0\xae\xd9\xd8\x48\x36\x36\x7c\xc8\x55\x6f\x1a\x1d\xe7\x51\xa2\x7c\x3e\xf3\x60\x24\x3e\x0a\x73\xbd\xdb\x49\x7d\x7a\xb9\x20\x95\x17\x2d\x1b\x75\xa7\xb2\xf2\x27\xc1\x51\xa3\x1e\x2d\x47\x81\x99\xeb\x50\x5c\x47\x38\x71\x93\x28\x87\x56\x1d\x6d\x6e\x2e\xbe\xaf\x8f\x82\x64\x63\x23\x39\x5f\x5c\x6c\xf3\xa6\xf0\x83\x23\xa8\xd0\x7c\xb5\x4c\xf0\x9e\x03\xb4\xd1\xb1\xd7\xf2\x28\x8a\x28\x11\xf4\xe9\x3d\x81\xf9\x0c\x79\x86\xa3\x27\xe7\x3a\x0f\x36\x36\xba\xbe\xe1\x56\x49\xa1\x5b\x04\x0c\x89\x58\x91\xba\xd8\x85\x53\x76\x69\x33\x0b\xa7\xcc\x22\x58\x45\x94\x63\x85\xea\x14\x13\x15\x1f\xd7\x6a\x0a\xf5\x06\x5d\xcc\x79\x7c\x1b\xd5\x34\x2e\x67\x70\xb7\xc4\x77\x71\xce\xb2\xe4\x4b\x47\x14\x18\xf3\x0c\x99\x2b\x35\xb7\xfa\x40\x85\xb6\x4b\x7c\x60\x82\xd5\xf5\x8f\x8a\xb6\xb4\x95\x8f\x98\x6d\xf5\x9d\x67\xcc\x72\xbc\x8a\x24\x6a\xc4\xf6\x07\x61\x1f\xe2\x13\xe1\x77\xf7\xf7\xcd\xfd\x7d\xe5\xa7\xc1\x32\x9c\x11\x3d\x83\x37\x85\xb5\x90\xcb\x2e\xcb\xb7\x5a\xf1\x3e\x8b\xee\x3b\x3c\x1b\x5c\x67\x75\xce\x22\x6f\xcc\xcb\xeb\x8a\x71\x2f\x2c\xb7\xe5\xcf\x68\xbd\x17\x96\xdb\xac\xb8\x12\x0b\x72\xb9\x1d\xf3\xe9\x95\x60\xf4\x72\x5b\x1a\x42\xd1\x45\x4d\x59\x45\x11\xa9\x2c\xa2\xb1\xc0\x4d\x53\xa5\x13\x42\xba\x14\x5b\x2b\xf8\x31\x99\xc0\xff\x68\x1b\xb0\x70\xf4\xc3\x39\x5a\x9b\x04\x30\x9b\x67\x35\xfc\x90\x8f\x58\x59\xdf\x48\xd8\x9b\x22\xb1\xcb\xca\x75\x11\xed\x65\x5e\x6c\xfa\x4a\xd8\x5c\x66\xc5\xd4\x79\xe9\xd5\x11\xb2\x0b\x5e\x26\xac\xaa\x14\xf2\x5a\x86\x62\x56\x1b\x87\x3d\x20\x60\x72\x9d\xb6\x57\x12\xef\x3b\x0f\xf2\x66\x69\xc6\xbf\xad\x12\x40\x5d\x51\x45\x33\x8f\xab\x2f\x1d\xcb\x55\xef\xb1\x55\x71\xf5\x43\x03\xf5\xf6\xe9\xaf\x2f\xce\x5e\xbc\xfe\x49\xfc\x7a\x7d\x76\xfa\xee\xf4\x44\xfd\x92\xc0\x5f\x5f\x9c\x01\xec\xc3\xeb\x57\x70\xca\x7e\x62\x3f\x4e\xe0\x48\x0a\xe7\x09\x02\xf7\xdc\xe6\x6e\x79\x24\xf5\xdb\xf5\x88\x05\xf6\xf3\x4d\x41\x36\xf1\xbf\x29\x3a\x20\x3c\xe3\x73\x67\xa9\xe8\x76\x28\x44\x6d\x4e\xb2\x35\xbf\x13\x56\x25\x3c\x5b\xd4\x25\x3f\x7e\x24\x1f\xaa\x18\x09\x45\x4f\xa0\xdc\xdf\xf3\xed\x8a\xd5\x2b\xc2\x2e\xa2\x0b\xfe\x08\x54\x06\x76\x5e\xe8\x90\xa9\x86\xc6\x2c\xac\x97\x7e\xe1\xf7\xe1\x72\x53\xe5\x17\x7e\x2f\x08\xc2\x0c\x7e\x0d\xc5\xcf\x38\x2a\xfc\xe1\x20\x38\x2a\xfc\x3d\x7a\xc3\xa6\xfa\x53\x8f\xf4\x27\x91\xd7\x14\x73\xb8\xcc\x92\x8a\x01\x37\xc3\xa5\x9c\x37\x3d\x76\x93\xc9\x4c\x39\xa8\xf9\x11\xc6\xb3\xf6\x58\x51\x33\xf0\xfe\x3a\x22\x63\xdf\x1c\xa1\xba\x86\xb9\xf2\x43\xc9\x22\x8b\x23\xc3\x38\x50\x2e\x7c\x8c\xd1\x94\xba\x6c\x92\xba\x53\x9c\x3e\xff\xcb\xed\x07\x1b\xc2\x42\x3e\xd9\x80\x5e\x5c\x61\x16\x15\xdb\x60\x2a\x06\x7b\xd8\x4f\xbc\x6c\x16\x61\x1c\x65\x1b\x1b\xeb\xd9\x76\x56\xbd\x12\x7d\xcd\x8a\xe9\x71\xbd\x0d\x0d\x1c\xd5\xf0\x58\x67\xcc\x75\x1c\x69\x99\x7e\x5f\xc7\x75\x53\xa9\x4b\x7c\x59\x71\x1c\x1f\xfb\x65\x94\x87\x4e\x7e\x13\x8c\xca\x68\x31\x2a\xa3\x7a\x5b\x12\xf2\x4d\x71\x7a\x93\xc1\x01\x9f\x4a\x8a\x7a\x8e\x93\x51\xae\x6c\x05\xe0\x2d\x5e\x37\xd5\xa8\x5c\x86\xf8\xda\xe3\xd3\x38\xcf\xc7\x71\xf2\x05\xab\xe3\xff\x93\x4f\xd7\xc7\x5d\x4f\xd7\xc7\x10\xfb\x65\x96\xe5\x2a\x14\x79\x5b\x5c\xdc\x39\x34\x85\x08\x34\x4b\xd1\x81\x29\xab\x4f\x18\xcf\xae\x58\x2a\x68\xc2\x9e\xf1\x72\x2e\xd8\x7c\xc5\xab\xb3\x6c\x3b\x2b\xe0\x41\x66\xa4\x5f\x14\x25\xc7\x8a\x1c\xf9\x12\x0b\x0d\x63\x88\x48\x5d\x16\xac\xa8\x4f\xb2\x14\x86\xac\xb5\x2e\xa1\xc1\x03\x47\xc1\x57\x57\xf6\xe9\xd0\x04\x6e\x39\xae\x99\xd1\xac\xcb\x4d\x9e\xab\x00\xd3\x68\xaf\x13\xcd\xb7\x9e\x79\x44\x33\x0c\xb6\xf3\xc8\xe0\x08\xbe\x28\xd6\xa3\xa8\xd9\xd8\x10\xff\x2d\x36\x36\xfc\x5a\xb0\x04\x85\xc1\x8b\x02\x9a\xdb\x83\x65\x47\xeb\xfb\x61\x6d\xb7\xf6\x97\x2c\xcf\x3f\x20\x3b\xb5\x3a\x8e\xf7\x6c\x5f\x13\xae\xf1\xe1\xe3\xa9\xd6\x57\xab\xd6\xeb\x71\x68\xd0\x26\x9d\xdb\xae\x11\x55\x9f\x67\x44\x75\x54\x44\x3c\x44\x19\xcb\x37\x36\x54\x7c\x2e\x63\x4f\xe1\x1b\x1b\x3e\x04\xc2\xbd\xc9\xea\xb0\x86\x88\xb8\x35\x98\xff\xb5\xed\x57\x4d\x8d\x63\xf5\x63\x54\x07\xe1\x9d\xc0\x1f\xb1\x50\xce\xb6\x50\xe6\x14\x4b\xd1\x66\x4a\x86\x76\x44\x60\x63\xc6\x80\xaa\xd7\xfb\x81\x6c\x5f\x54\x3f\x40\x0b\xe9\xce\x96\xe9\xd7\x50\x26\x59\x91\x9e\xbc\x79\xf5\x5a\xec\xf9\xc1\x84\x74\x54\x47\x51\xd4\x60\x58\x88\x05\xe3\x93\x92\xcf\x61\x8e\xfa\x45\xc8\xe4\x8b\xc5\x0a\x7c\x93\xd5\x7e\x11\xc8\x48\xab\x86\x7a\xd6\x54\x97\x56\x3c\xca\x22\x18\x16\x52\xbe\x7e\x52\xc3\xb4\xf0\x15\x97\x27\x4b\x18\x2e\x5a\x71\xe7\x39\x2d\x48\x37\x6b\xcc\x90\xe0\xf2\x19\xce\x04\x27\xaa\x2b\xea\x8e\x1f\xca\x24\xf2\x6f\x54\x87\xf8\x0a\x1c\xe5\x1b\x5f\xac\x2a\xe5\x71\xa6\x86\x2f\xc3\x2a\x8f\xc4\x5a\x76\xec\x93\x96\x94\x28\xd4\x7c\x16\x96\xca\x4e\x19\x4f\xd8\x7b\xb7\xab\xcd\x32\xa4\x8f\x67\x14\xf6\xd7\xf0\xd6\x96\x28\xa0\xd8\x2e\x8b\x33\xdd\xd2\xd3\x22\xf5\x59\x18\x3b\x5f\x76\x96\xbf\x78\xb0\x7c\x96\x42\xf1\x4b\x75\x0f\x4a\x0e\xed\x5f\x2c\x09\x9f\x76\x8e\x29\x67\x74\x88\x12\xdc\xe9\x5b\x83\x26\xa6\x0b\xef\x20\xf5\x51\xe1\x92\x54\x30\x1b\x7b\x88\x9e\x5a\x8a\xd8\xad\xad\xad\x22\x80\xac\x10\xa7\xa7\x45\x54\x39\x79\xed\x6f\x3b\x6b\xca\x1f\xaa\x41\x93\xe3\x51\xb2\x7e\x5b\x31\x42\xf2\xb5\x26\x32\x95\x61\x6a\xd6\xc3\x03\x5c\x04\x47\x05\x08\xa1\x30\x59\x94\xb2\x9f\xb7\x56\x57\xa8\x8e\x36\xd6\x99\x7c\xfa\x45\xa4\xda\x12\x2b\xea\x05\x60\x3d\x9d\x99\x94\xd9\x0e\xe2\x6a\x9e\x58\xef\xd1\xd7\x3e\xed\x86\xe9\x8f\x78\x70\x87\x97\x82\xc4\x9a\xd0\xa1\x1a\x30\x9f\x07\xea\xdc\xab\xa3\xd7\x16\xd1\xa2\xf5\x7e\x07\xa6\x68\xb3\xc3\x19\xad\xb8\xe1\x9d\x14\x28\xd4\x1d\x25\xb4\x33\xd7\x1b\x1b\xeb\x84\x7d\xe3\x34\x3d\x35\xfb\xab\x23\xb6\xb1\xb1\x6e\x8b\x0c\x1b\x41\x45\x29\xe9\xc8\xf2\x59\xbb\xd1\x4a\xf0\xd7\xd4\xa0\xd4\x1e\x7b\xb1\xcf\x1d\x3d\x88\xd0\x83\x31\xe3\xac\x48\x19\x5f\xf1\xc6\xaa\xb5\xd4\x0b\xad\x40\xe8\x28\x01\x89\x71\x73\x64\x86\x15\x3b\x00\x5e\x7a\x70\xc7\x80\xb3\x22\x74\xa5\xb9\xb6\xcc\xab\x6d\xcd\xdd\xf2\xc8\x58\xfd\xee\x96\xc6\xe0\x8f\xc7\xd8\x81\x7c\x58\xbc\x77\xc4\xbf\xcf\x68\xdc\x9e\x22\xca\xce\xf9\x45\x58\x13\x27\xbd\x1f\xa2\xde\xfd\xbd\x5f\xaa\x4d\x84\x71\xda\x5b\xfa\x75\x78\xee\xa9\x36\x79\x68\x55\x95\x2f\x71\xf2\xed\xac\x08\xf5\x6f\xaa\xa4\x1a\xa8\xb5\xc0\x19\x30\xae\x0b\x26\xcd\xec\xaf\x98\x85\x2c\x55\x0c\xf2\xb5\x35\xce\x06\x5e\xba\xb5\x9b\x05\xa2\x05\x63\xa9\x05\xb2\x2a\xd4\xf2\xcf\x05\xb1\x34\xec\xb2\xd6\x15\x01\x31\x35\x4a\xa7\xeb\x2c\x32\xcf\xa8\x3d\x95\xe4\xdb\x2e\x8b\xfc\x96\xba\x44\x9a\x87\xd6\xf2\xb2\x60\xf2\x4c\xdf\xcf\x42\x1e\x2c\x43\xbe\xf4\x49\x09\x4a\xa1\x23\x1b\xb4\xd4\x0f\xee\x96\x13\xb5\x44\x9f\xdd\x2e\x58\x15\xb5\x94\x6b\xbe\x8d\xcf\x47\x2d\xc3\x09\x72\xd6\xd3\x07\xd1\xe9\x8d\x5b\xf1\x89\x60\x4b\x89\x2a\x92\xb2\x39\xa8\x95\xdf\x65\xc5\x68\xbd\x1f\xd2\x71\x17\x69\x6b\xc4\x05\x40\xea\x00\xeb\x7d\xa9\xba\xad\xf7\x42\x50\xe5\xd6\x7b\xa1\x1c\x8b\x51\x1a\x9a\x91\x32\x09\x96\xe2\x6f\x81\xac\x7e\x68\x04\x18\x8d\x51\x2a\x5a\x65\xf6\x9a\xbd\x70\xa2\x36\x97\x7d\xf1\x53\xed\x25\x07\x2a\x71\x7a\x12\x0d\x25\x8e\x80\xef\xc8\xc0\xe4\x7e\x4f\x2c\xc8\x65\x7e\x3b\xc9\xf2\x3c\xf0\x27\xf4\xa9\xb8\xd9\x9f\x36\x6e\xc0\x5b\x12\x70\xce\xf3\x7e\x16\x2f\x58\x54\x2b\x0e\x96\x69\x6a\xc0\x38\xf2\x79\x04\x7b\xf3\x8d\x0d\x4e\x0a\x3a\x72\xbf\x01\x79\xd1\x2e\x1a\xb7\x39\x7f\xd1\xf8\x62\x19\x52\xaa\x0e\x13\x01\xd8\x05\xc0\x3e\xd0\x1f\xf4\xfe\x92\x69\x40\x7f\x92\xe8\xfd\x9f\x9f\xfc\xef\x7f\xe5\x21\x90\x96\x4a\x74\x54\x51\x15\xb9\x2f\x77\x59\x3b\x0b\x72\x40\xaa\xaf\x6f\x4a\xdb\x9a\x28\x65\x6d\x16\x57\xc5\x3f\xe4\xe1\x48\x56\x64\x75\x16\xe7\x59\xc5\xd2\xb5\xad\xb5\xaa\x59\x30\xee\x07\x16\x06\x1e\xa0\x9a\x93\x52\xf5\xf4\x97\xec\x18\x9c\x6f\x57\x36\xe5\xac\x33\x55\xb5\x04\xac\x7c\x6a\x19\x5e\xd4\x11\x1a\xc0\xe2\xdb\x0d\x26\x61\x19\xf9\xab\x6c\x26\xc1\xf6\x2c\x2e\xd2\x9c\xe1\xbc\x44\xaf\x99\xdc\xcf\xe1\x6e\x9e\xb1\x88\x48\xab\x05\x45\x1d\x95\x21\x3c\x96\xf4\x0e\x96\xd2\xd1\x7a\x6f\xf9\x3f\x6b\xb6\xc8\xba\xcc\x16\xd9\x5f\x30\x5b\xdc\x91\x3d\xd0\x3a\x31\x1a\xb0\x74\xb9\x5c\x86\xd9\x37\x58\x1e\x14\xbe\x0e\x14\x28\xed\x67\x91\x20\x42\xf6\x6d\x9b\x78\xfd\x49\xff\x4f\x58\x50\x94\xf3\x34\x51\x35\x6a\x6b\xfc\x94\xf7\xab\x42\x18\xd5\xdb\x64\x90\x8e\x41\x5c\x4e\x59\xfd\x02\xf9\x18\x08\xf7\x2a\x5e\x2c\xb2\x62\x1a\xc0\x0a\x38\x52\x18\xa0\xf8\x39\xd9\xf0\xa6\x8f\x35\xe6\x7d\x20\x18\x6d\x40\x67\x83\x55\xa1\x76\x81\x44\xff\x53\xcd\x0d\x8e\x98\x98\x00\x20\x0b\xee\xef\xe5\xa3\xd0\x66\xb7\x00\x77\xda\xec\xfd\x43\x1d\x58\x23\xe0\x6e\xb9\x3b\x8e\x75\x13\xff\x6e\x19\xd6\xa4\x4a\xf5\x86\x01\x6a\x0c\xc5\x39\x34\xe1\x22\x34\x34\x2c\x96\xf0\x84\x64\x98\x3d\xac\x36\xa2\x26\x58\xcb\xd7\xd4\x80\x01\x64\x8c\xc6\x2c\x4f\x9f\xc5\x82\xb1\x6f\xff\xb7\xe8\x86\x4c\xe8\x86\xaa\x95\x5e\xe8\xd1\x36\x7a\x17\x62\x09\x69\x68\x68\x4c\x4d\x2c\x10\x4b\x2d\x9a\x7d\x9b\x5a\x28\xbd\x53\xea\xe3\x6c\x44\xf4\x27\x90\x0a\x4a\x81\xaa\x43\x1e\x66\x0f\xa8\x50\x8b\x6f\x51\x85\xf4\xbb\xb1\x52\x83\xda\xce\xaa\x77\x32\x1e\xd7\x32\x5c\xd8\x9a\xd1\xc2\xd1\x8c\x34\x4d\x46\x5e\x9a\x5d\x79\x21\xa5\xcb\xa8\xd3\xf1\x7d\x29\xad\xd7\x7e\x2f\xcc\x88\x26\xb2\xa0\x9a\xc8\xe4\xdb\x1e\xad\x95\x9b\x2b\x7f\x6f\x0f\x42\x41\x67\xc5\xa2\x41\x65\x6b\xa1\x1c\x7e\xcb\x45\x3d\x85\x3e\xc2\xfb\xa4\x39\x4b\x20\x7f\xdc\xd4\x35\xe6\xa7\x71\x2d\x56\x27\x80\x0a\x0a\x41\xb8\x75\x10\x4a\x82\x4c\x23\xf1\x0f\x44\x16\xfc\x4d\x21\xa7\x9e\x8d\xee\x00\xb0\x14\x90\xbb\x7a\xc6\xe2\xb4\x85\x04\x6f\x3b\xde\xa9\xac\x3c\x2b\xbe\x40\x0b\xe0\xd4\x03\x10\xf2\x6c\x74\x97\x67\xf0\x73\x31\xba\x5b\xc0\x8f\x59\x5f\xff\x1a\xe8\x5f\x43\xfd\x6b\x47\xff\xda\xd5\xbf\xf6\xd4\x2f\xd9\xb9\x32\x44\x22\x94\x61\xd9\xd4\xf8\x43\x76\xb6\x34\x7d\x2d\x4d\x57\x4b\x45\xab\x3b\x4d\xb3\xa5\x21\xda\x1d\x21\xdf\x72\x19\xc6\xd1\x9d\x5e\x63\xf0\xe1\x4a\x49\xae\x70\x1c\x57\x4c\xfd\x3f\x29\x0b\x24\x32\xc7\x07\xb1\x72\xfc\x6f\x3e\x8f\x0b\x20\x06\x9b\x8f\xa5\x57\x35\x8f\xe7\xf0\xd5\x0c\x30\xb3\xf9\x14\xfe\x53\x83\x98\x55\x30\x31\xc5\xcf\x2f\xec\x76\xca\x0a\x4a\xc9\x39\xab\xa1\xe2\x45\xcc\xe3\x39\x90\xb6\x6c\x78\x02\xa5\xd5\x3c\x4e\x00\xe7\x7a\x8c\x8b\x6c\xd5\x6a\xf6\x3c\xc6\xc1\xaa\xae\xa6\x80\x91\xb4\x31\x32\xa8\xa5\x84\xbf\x50\xf3\xbc\x82\xbf\x82\x72\xe2\x87\x07\x1e\x60\xe0\x62\xbb\x75\x33\xcf\x3d\xe8\x50\xc9\x59\x36\x2d\x50\xfc\x00\x77\xb1\x2a\x81\x26\x65\x35\x3e\x01\x16\xe6\xd1\x77\x9f\xaa\xfb\x4f\xdf\x7d\x67\xf4\x8e\x86\x1c\x96\x7f\x56\x2e\xb7\x35\xf8\x93\x22\x2c\x19\x57\x11\x23\xe9\x3a\x9e\x42\x58\x3e\x15\x18\xf5\x33\xba\x92\x77\xc1\xf0\x91\x7e\x07\xa8\x4e\x68\x00\x54\xd5\x71\xf2\x05\x42\x31\x42\x52\x76\x41\xe9\x06\x0a\x0e\xf7\x15\x21\xdc\x77\x24\x17\x70\x26\xc3\x7f\xd3\xb2\x72\x75\xfd\xfe\x2c\x9e\x82\xe6\x1e\x79\x14\x54\x79\x99\x34\xe4\xa8\x6e\x1e\xaf\xaf\x5b\xe9\x6d\x0b\x7d\xe4\x64\xde\xcc\xf3\x57\x65\xca\xdc\xca\xb4\xc7\xb7\x5b\xa5\x9d\xf1\x27\x2a\xb7\x3f\x7c\xb8\x19\x0a\x7a\x56\x7e\x61\x45\xf6\x95\xc1\x43\x76\xd1\x8a\xbc\x40\x8d\xa0\x02\x80\x7f\x03\xf7\x2d\x74\xc0\x09\xcc\xd8\x6f\x97\x05\x5c\xe3\xe7\x42\x97\x96\xcb\x75\x0b\x2e\x1d\x3d\x0b\x7f\xa7\x1f\xf8\x4d\x28\xb6\x31\x87\xc1\x36\x38\x8b\x9e\xce\xb3\xba\x16\x75\x37\x44\x77\xfc\x8c\xc7\x08\xea\xd9\x52\x4b\x33\x56\xcb\x0e\x1d\xe6\x63\xa7\xe1\xdb\x9f\x2b\x06\x1f\xc0\xeb\xa4\xdf\x47\xec\xb8\xc5\x27\x23\x17\xf2\x60\x11\x5b\xac\x1b\x5f\x35\x60\xb3\xef\xf0\x9d\x5b\xda\x94\xd5\x4f\xa4\xe7\x3e\xc6\xa5\x0f\x96\x56\x8f\x5d\x6d\x97\xa9\x29\x67\x53\xc2\xef\x07\x76\x45\x5b\x5b\xd6\x50\x88\x42\xec\x41\x10\x10\x9f\xb5\x6a\x2b\x17\xac\x50\x33\xd5\x39\xba\x5f\x31\x5b\xe0\xc4\x86\xd9\x61\x2c\x02\x67\xce\xb3\xb0\x9b\x1b\x37\x36\x98\xd0\x01\x33\x7d\xd2\x5f\x1f\xf9\xd2\xde\x86\x53\xfc\x9c\xfc\x36\x61\xf1\x02\xf1\xcd\x39\xbb\xc0\xf3\xb9\xb2\x48\xf2\xb2\x62\x75\x3c\x85\x77\x9a\x1e\xac\x29\x56\x81\x73\x65\x91\xe0\x3b\xc3\x82\x10\x32\xab\xe3\x2e\x69\x82\x38\xeb\xbd\x60\x04\x48\x89\x22\x63\x27\x56\x3f\xb0\xa7\x00\x21\xa7\x4d\x7e\x92\xa1\x4f\x02\xec\x2c\x65\xf2\xd6\xe2\xef\x6e\xb9\x6a\xb4\x58\x91\xb6\xf6\x1d\xab\x18\x44\x15\xa7\x8b\x77\x2a\xed\x00\xfa\xd6\x60\xda\xc5\x04\x1d\x32\x3a\x58\x39\xda\xb4\x70\x35\x68\x0a\x2a\x8b\x87\x51\xea\xc6\xb4\xdb\xe1\xf2\x98\xe7\xb9\xd4\x51\xdf\x75\x33\xf2\x2a\xfa\x7c\x23\x83\xfb\xc8\x32\xf7\xf7\xc8\x15\xc1\x2a\xb6\x28\x17\xbe\xa6\x07\x65\x63\xf9\x61\xac\x8c\xeb\x2e\xb1\x82\x4e\xe8\xfd\xbd\x37\xe6\x32\x7a\xb0\xb7\x80\x1f\x8a\xa3\x57\xf1\x94\x20\xc2\xd3\x86\x73\x56\xd4\x67\xf1\xd4\x0f\xc8\x6b\x5b\xd6\x54\xdb\xce\xe3\x0a\x45\x18\x84\x94\xc2\x37\x8e\xe0\x04\x56\x93\xcc\x1e\x0e\x98\xb4\x4e\x11\x38\x43\xeb\xa3\x7a\x6b\xeb\x28\x78\x60\x0c\xe5\xec\x13\xc4\xc1\xf6\xac\xb5\x8b\x89\x6a\xc8\xd1\xdd\x5c\x41\x90\x3f\xd9\xfb\xa5\xcb\x25\x15\xcb\x27\x02\x2d\x2b\xa6\x16\xaf\x38\xba\x8d\xa9\xd0\x06\x73\x96\x94\x53\x21\xcb\xdf\xb3\x7c\xf2\x14\xcb\x51\x38\x36\x2f\x9c\x77\x32\x88\x16\x6a\xc7\x2b\x5a\x3c\xb2\xfb\xc7\x8a\xd4\x5d\x23\xdc\x6f\x56\xec\x5b\xd5\x4c\x39\xea\x28\x30\x7c\x54\xe6\xca\xc3\xf9\x87\x66\xb0\x33\xd2\xcc\x2a\x55\x0e\xb6\x4b\x7d\xa2\x04\xb6\xd7\xb8\x15\xaa\xcd\x43\x2b\x0e\x29\x8f\x75\xd7\x25\xf6\x13\x1d\x75\x11\xcd\x73\x73\xd5\xa7\x9d\x72\x16\x7b\xad\xef\x45\xda\xc4\xd0\x60\xdf\x6d\x5e\x5b\xe1\x6d\x09\xe8\xf5\x6f\xb2\x92\x5a\x1f\xb5\xa8\x10\xb8\xcb\xc8\xb9\x8b\x71\x11\x3d\xd2\x92\x87\x34\x74\x87\x11\xc1\xe4\x84\xd6\xbd\xac\x2c\x5e\xbb\xa3\xaa\x62\x33\xc8\xd0\xc4\x79\x10\x16\x51\xfd\x7d\x0f\xdf\xf5\x69\xc6\x55\xcd\xfd\x5e\x58\x07\xd6\xe9\x69\xa7\x3c\x2e\xa2\xc2\x1d\xfe\xc2\x1d\xb2\x94\x25\x79\x8c\xb7\x1f\xbb\x17\x00\xa9\x8c\xa2\x5f\x65\x56\x4c\x33\xd3\xf2\xc0\x12\x8f\xed\x5e\x81\x23\xf2\x63\x85\xf8\xde\xba\xb7\x59\x87\xe2\x2f\x6b\x8b\x9d\xce\x4f\xfe\xdf\x6a\xe8\x31\x34\xf4\xb8\xb3\xa1\x62\x0f\xcc\x8a\x6f\x50\x41\x77\x6c\x35\x46\x7e\xe7\x08\x07\x04\xba\x2a\x8f\x04\xb3\x22\xed\x44\xef\x90\x79\x65\x91\xac\x98\xc8\xab\xd6\xf5\x6f\x95\xe3\x4f\x4f\x9e\x9c\x3d\x39\xb6\x05\x9d\xa8\x0a\x54\x7c\xa7\x79\x1a\xee\x07\xdf\xa6\x6e\x87\xad\xcf\xdb\x7d\x96\x50\x3f\xd0\xa2\x5f\x51\xcd\x3b\x87\xc6\x9d\x7b\x9b\x6c\xd3\xbb\xb8\xf0\x5a\x34\x61\x9c\x97\xae\x1f\xb1\x29\x19\x72\xed\xca\x00\xd4\xb1\x0d\x70\x24\xdd\x43\x1a\x00\x5d\x61\xe8\x9a\x71\xc4\x7e\xe8\x1d\x3d\xa6\x02\x9c\x6f\x6d\xb1\x8b\xc0\xe6\xd1\x16\x45\x3a\x86\x9f\xb3\x8a\xb5\x6d\xed\x12\x1f\x32\xed\x22\x00\xe4\xb7\x36\xb2\xdb\x0e\xfc\xdb\x4d\x14\x0f\x59\x23\xfe\xe4\xee\xd7\xea\x18\xe4\x3e\x2d\xe7\x8b\x9c\xd5\x1d\x4b\xa2\xd5\x5e\x41\x17\x77\xe8\xae\x79\xd6\xf5\x1d\xe9\x32\x60\xb4\xbe\xb3\x06\xbc\xe3\xab\xae\xba\x16\x71\x53\xb1\xf6\x20\x98\x8f\x00\xa1\x63\xe8\x9a\xf9\x83\x9f\x21\x86\xfb\x1d\x52\x66\xd6\x14\x5f\xa2\x56\x87\x2d\xc4\xb4\x2c\x58\xe4\xf4\x8d\x18\x66\x9b\xb6\x41\xd6\x64\xce\x55\xec\xcb\xc2\xef\x0f\x76\x82\xb0\x84\x1f\x7b\x78\xd6\xda\x1f\xec\xab\xc3\xd6\x83\x20\xac\xa2\x5e\x98\x44\xd5\xe6\x66\x98\xc3\xdf\x06\xfe\x2e\xe0\xef\x04\xfe\xa6\xf0\x77\x06\x7f\xc7\xf0\x77\x0e\x7f\x5f\xc1\xdf\x29\xfc\xbd\x82\xbf\xb7\xf0\xf7\x09\xfc\xbd\x86\xbf\x5f\xe1\xef\x67\xf8\xfb\x06\xfe\x9e\xc1\xdf\x1b\xf8\xfb\x1a\xfe\xbe\x84\xbf\xa7\xf0\xf7\x3d\xfc\xbd\x84\xbf\x4f\xe1\xef\x17\xf8\xfb\x0b\xfc\x3d\x81\xbf\x3f\xc2\xdf\xb7\xf0\xf7\x1d\xfc\xfd\x15\xfe\xfe\x01\x7f\x5f\xc0\xdf\x0f\xf0\xf7\x39\xfc\x7d\x06\x7f\x3f\xc2\xdf\xdf\xe0\xef\x4f\xf0\xf7\x5f\xf0\xf7\xdf\xf0\xf7\xef\xf0\xf7\x67\xf8\xfb\x3b\xfc\x65\x0c\xfe\xab\xf1\xbf\x02\xff\xe3\xf8\x5f\x89\xff\x65\xf8\x5f\x8c\xff\x55\xf8\x5f\x82\xff\xe5\x2c\xea\x85\x0d\x8b\x72\x26\xa8\x29\xff\x9f\xe0\xff\xc4\xb5\x82\x91\xd0\x40\x6b\x1e\x5e\x86\xf5\x3e\x15\xfa\x57\xad\x7f\x4d\xf4\x2f\x78\x83\x96\x91\xfb\x3e\xcc\xb6\xc8\x3b\x2a\xa5\xf1\x98\x8d\x22\x7e\x6c\xdd\x25\x07\x88\x9e\xfb\x35\x8b\xea\x91\x4f\x93\xf2\xba\xff\xe7\x0c\x4d\x31\xc1\xd2\x9c\x29\x94\xc1\x5d\x29\x3e\xbf\xbf\x2f\x21\x90\xda\x9f\x29\x85\x5c\x41\x62\x76\xa0\x9f\xce\x86\x53\x5f\x33\x8e\x4f\x0f\xf3\xc7\xea\x6c\x56\xd7\x39\x67\xd4\xe4\x8b\xe8\x89\x44\x1f\x37\x93\x09\xe3\x46\x48\x52\x1b\x99\xb2\xbd\x62\x99\x3a\x85\x9f\xe0\x33\x13\x06\x18\x57\xec\xbd\x55\x72\xb5\x60\x49\x16\xe7\x51\xc3\x88\x5d\x59\x46\x5b\xf8\xcc\x9b\xa2\xc8\x8a\xa9\x3e\x9f\xfd\xcc\x8a\x54\x3e\xbd\x03\x49\xb9\xd6\x47\xeb\xea\x69\x73\xb5\xb9\x96\xf9\x29\x4b\xca\x94\x9d\x16\x75\x56\x67\xac\x32\x68\x36\x3c\x58\xce\x19\xd5\x72\xa1\xeb\x67\xae\x59\xce\xfb\x1e\x23\xe3\xf9\xa4\xb3\x3f\xb4\xa9\xd1\xa1\x16\x68\xe5\xed\x3d\x93\x22\x91\xec\x9c\x6a\x16\xe5\x5d\x44\x25\xb5\x48\x3d\xc1\xe9\x8d\xaa\x48\x11\x30\x8a\x1a\xb6\xb1\xe1\x6d\x78\xd6\x4e\xee\xbf\xa5\x99\x1d\xa3\x06\xa9\x92\x3d\xd6\xf2\x65\xd8\x41\xda\x1f\xe1\x49\x1c\xa9\xee\xdb\x34\xfe\xce\x6b\x31\xf0\x64\xe4\x50\xfe\xdb\x28\xbb\x92\x96\xde\x0f\x52\x60\x58\xe4\x5b\x17\xe4\xbb\xbf\x07\xb9\x63\x55\x9f\x8c\xbc\x75\xab\x7a\x04\x5f\x3f\x52\xcf\x66\x3f\x18\x79\xc7\x1d\x1f\x7e\xfe\x86\x0f\xad\x0f\x2c\x4e\xbf\xbf\xf7\x2a\x65\x1e\x7a\x0f\x3f\x8e\x9b\xd1\xdb\xbf\x34\x0a\x2f\x8a\xae\x11\xf0\xe5\x10\xdc\xdf\x6b\x3a\x01\x4d\xcc\x3e\x93\xcd\xb3\x1a\x8e\x0e\x7c\xcf\x32\xca\x78\x36\x53\x8f\x5d\x41\xb3\x9a\x13\x9e\x0a\xc5\x31\x2b\xa6\x5d\xed\x81\xca\xef\xef\x7d\xd9\x1a\x67\x68\xda\x43\x78\xec\x55\xaa\xfd\xef\xdb\x5f\xbc\xb3\x49\x9b\x38\x6d\xb4\x73\xd3\xc7\xc8\xba\x8a\xae\x0f\xf5\xc7\xff\x26\xb2\x2a\x55\xda\xa1\xe9\xec\x5b\x68\xfa\x64\x52\x33\xfe\x50\x13\x64\x0b\x74\xcd\x36\x2d\x1e\xe0\xcb\x07\x86\xd0\x32\xe0\x74\xd5\x76\xdc\x65\x8d\x76\x4c\x53\xdf\xd6\x8a\x51\x97\x90\x58\x8c\x14\xa3\x50\xe8\xfc\x2f\x4e\x0c\x62\xea\x3b\x73\xcc\xcb\x9d\xdd\xb1\x4d\x8c\x7f\xa1\x4b\x5d\x8d\xff\xa6\x09\xf4\xa2\x58\x4d\x79\xdf\x8b\xd4\x54\x78\x6c\x4e\x53\x63\x56\xa1\x5f\xfb\x7b\x5c\xb0\x6e\xf5\xad\xae\xbe\xfa\x66\xfe\x7c\x80\x5f\xa2\xf6\xe8\x4e\x47\x6e\x0f\x8e\x3b\x1a\xde\xe6\x26\x97\x84\x0e\x9d\x1f\xfe\xf8\xaf\x31\x8f\x33\x1d\x3e\x82\x1d\x8d\xf6\xef\x1f\xde\x3f\xda\x8b\xc2\xd5\xb7\xb0\xfd\x3f\x3a\x56\x93\xdb\xbf\xc8\x5c\x4f\x1e\xf9\xee\x4f\xf2\x1e\x74\xf3\xa4\x6c\xc6\x39\xfb\x77\x53\xd6\xac\x7a\xa8\xcb\x96\xa4\x33\x36\x5b\xcf\x36\x9e\xac\x1c\xd3\x55\xda\x90\xab\xf9\x3c\x56\x8d\x51\x6a\x48\xf1\xff\x1d\xea\x8d\x4b\x97\xf7\x59\x31\xed\xa4\x8b\x33\xa2\xff\x5f\xa3\xcb\xeb\xb2\x83\x26\x92\x59\x9d\x69\xfe\x5f\x24\x8d\x2b\x06\xfe\x97\x13\x0a\x65\xc8\xc9\x0a\xfb\x36\xad\xc0\x3b\x47\x32\xbd\x1c\xc9\x37\xc3\x8e\xdf\x8c\xbe\xae\x20\xfe\xaa\xf2\x5c\x75\x00\x69\x49\xac\xeb\x8f\xee\x5f\xfe\xaa\xea\xf0\xa2\x78\xab\xcd\xd5\x2f\x56\x18\xc9\xbb\x5b\xd7\x6d\xe6\xfe\x9f\x6a\xa7\xd4\x52\x3b\xec\xe4\x8a\xea\x96\x6c\x3d\xfb\x06\x99\x4c\xf1\x57\x0d\xd8\x03\x15\x3a\xba\xdb\x0a\x3e\x42\x4d\x10\x4b\xe9\xaf\xe6\x21\xd9\x87\xd7\xa3\xb3\x47\x4b\x19\x3c\xae\x0b\x29\x5b\xb6\x9c\x23\x60\x04\x90\x87\x3f\x59\xa1\x6d\xc3\x84\x34\xd6\xe4\x1c\xfc\xf9\x21\x13\xac\xbf\xde\xa6\xc9\xd9\x83\x63\x29\x26\x72\x3f\x9a\x31\xdf\x7b\xea\x85\xa7\xe1\xd7\xe0\x11\xdc\x01\xe0\x9e\x78\xe1\xfb\xc7\x71\x87\x80\xfb\xc4\x0b\x2f\x1f\xc7\xdd\x01\xdc\x33\x2f\x7c\xfa\x38\xee\xae\x2a\xf7\xcb\xe3\xb8\x7b\xf6\x40\x9d\x77\xb0\xe9\x2f\x7f\x76\x23\xfa\xf5\xdb\x94\x82\xa7\xad\x73\x1b\xef\xa2\x8b\x69\x4f\x1e\x62\x5a\x1c\x9f\x95\x2c\x8b\x05\x1e\xff\x38\xfa\xe5\x91\x32\xbe\x85\x61\x05\xde\xff\x93\xec\x7a\xd1\xc5\xae\xbf\x3c\xc4\xae\xef\xa5\x89\xc7\xea\x4b\xa2\x34\xe2\xa7\x6d\x85\xf9\xd7\x91\xa7\x0d\xa4\x67\xed\xec\x7f\x3f\x62\x13\x7c\xb4\x25\xa7\x9d\xa7\x09\x66\x1f\xbe\x10\x15\x27\xca\x50\xf1\x14\x0d\x15\x2e\xd2\x44\x20\xd5\x0a\xe9\xcc\x42\xb2\xf7\xf7\x90\x62\xcc\x4a\x3e\x7b\xa8\x95\xe0\xd0\xdc\x8f\xc6\xcc\xf7\xde\x79\xe1\x1f\x0f\xcc\x16\x44\x1d\x00\xea\x0b\x2f\x7c\xf1\x28\xea\x10\x50\xdf\x7a\xe1\x87\x47\x51\x77\x00\xf5\xcc\x0b\x9f\x3f\x8a\xba\xfb\x27\x8d\x30\xca\xe8\xb7\x60\x36\x03\x3a\x43\xb9\x7a\x76\x28\x12\xcd\x90\x44\x1f\xc3\xa4\xb3\x8d\x04\x17\x45\xe0\x0b\x2f\xfc\xed\x71\x5c\x14\x81\x6f\xbd\xf0\xa7\xc7\x71\xb5\x08\xfc\xd7\xe3\xb8\xbb\x5d\xd3\x59\x59\xed\x1c\xd2\x34\xb6\x2e\xf6\x98\x35\x67\x6b\xaf\x5b\x4b\x94\xac\xf8\x10\xb7\xd5\xb7\x39\x43\x66\xfb\xcd\x0b\xff\xfe\xd0\x58\x0b\x4c\xe4\xb5\x97\x5e\xf8\xf3\x63\x98\xc8\x6a\xa7\x5e\xf8\xfb\x63\x98\x3b\x7f\x91\x7d\x26\x7f\x99\x7d\xb0\xcf\x33\xec\x73\xcd\x1e\x1c\x3a\xec\xf5\x0c\x7b\x5d\x3c\x8e\x8b\xdc\x73\xea\x85\xfc\x71\xdc\x9d\xff\x41\x8e\xd8\xfd\xab\x1c\x01\x7b\x8a\x5b\xe8\xc5\xdf\xbc\x30\x63\x61\xcc\x1e\x18\xc1\xd7\xcd\x9c\xf1\x2c\x21\x1f\xfd\xea\x85\x09\x0b\xab\xd6\x47\x70\x44\xfa\x3a\x9e\xb3\x14\x91\xdf\xc3\x0d\xd3\xce\x83\x7c\xda\xa9\xcd\xfe\xf7\x74\xcf\x61\xf9\x8c\x7d\xc3\x8a\xa7\x7c\x9c\xe5\xe7\x61\x6d\x9b\xa4\x8f\xe3\x51\x79\x54\x3b\xae\x4b\x3e\xb3\x2d\x9b\x6f\x63\x5e\x67\x71\xee\xd7\xe7\xec\xe2\x31\x13\xbd\x50\xc3\x5d\xe2\x42\xcf\x5f\xb2\x69\x9c\xdc\x4a\x3a\xad\xf0\x81\x73\x1b\x6e\x0d\x28\x83\x4b\x57\xf5\x0f\x7b\x10\xdd\x67\x2f\x38\xaa\x7f\x88\x06\x47\x56\x78\x20\x9b\x20\x70\x20\x76\x94\x4d\xfc\xcc\xed\x5f\xa1\x9f\xa4\x69\x77\x32\x3b\x2f\x2e\x82\xf0\xaa\xcc\xd2\x2e\x6a\x46\xf5\x66\x3f\x38\xaa\xb7\xb6\x5a\x9d\x94\x0a\x14\x19\x60\x9b\xb9\x8f\x2c\xed\xa5\x9b\x19\xfc\x2e\xea\xda\x0c\xa0\x3d\x52\x1d\xb7\xdd\x16\x8d\x9d\x6d\xb4\xb3\xeb\x0d\x46\x3e\xfb\xde\x8b\xbd\xfb\x7b\xf6\x83\xf7\xd5\x83\x9b\xbc\xdf\x7b\x4f\x30\xfd\xbb\x4a\xf7\x30\x7d\xe8\x19\x7e\x70\x1c\x74\xec\x86\x2a\x0f\x7f\x6c\xaa\xb6\x5a\xe9\x5a\xd7\xa3\x28\x39\xf6\x22\xa9\x35\x3c\x4c\x89\xd1\xca\x7e\x3d\xd8\xb1\x47\xb4\x21\x34\x1b\xd8\x93\x76\x55\xd4\x1f\xa7\x77\xf0\xb2\x5f\xb1\x6e\x75\x51\xbd\x72\xbd\x62\x3a\x16\xf6\xdc\xcb\xf0\xed\xc4\x17\x45\xed\x97\x82\x35\xdb\xcc\xc7\xe1\xc5\xae\x87\x67\xd8\x92\x7a\xe4\xd2\xdb\x0e\x5b\x47\x0f\xd0\x65\x15\xbb\xae\xa0\x44\x8b\x61\x3b\x08\xe7\x0f\xe0\xa9\xc7\x0e\x52\x6d\x22\x7b\xad\x66\x9f\xe3\x07\x5a\x3a\xfa\xb6\x0a\x1f\xd9\xc8\x3c\x67\x37\x7f\xad\x53\xc3\xb0\xbf\xf7\x50\xa7\xe4\x9c\x99\x38\x73\xe6\xd9\xe3\x73\xe6\x2f\x76\x9a\x36\x68\x55\xa7\x93\x9c\xc5\x45\xb3\x68\xfb\xed\x58\x37\x6a\x7a\xc7\xd6\x4e\xc9\x38\x04\xd0\xd3\xfe\xcd\x55\x96\xe4\xa8\xa7\xe6\xa4\x3c\xd8\x77\x36\x41\x62\x6e\x77\x88\x4c\x7b\xc2\xac\x3c\xb9\xb6\x25\x77\xbb\x18\x73\x9c\xfd\x5f\x6b\xbb\x35\xab\xac\xa6\xfd\x97\x89\x63\x7f\xff\x8d\xdd\xb2\x06\xb6\x43\xec\x3c\xd0\x88\xae\x72\x6c\xd7\x0e\x97\x4f\x56\xf9\x9f\x81\x63\x46\x97\xef\xa1\x0c\xc1\x20\xdd\xd2\x82\xb5\x58\xa8\x6e\x6b\x69\x59\xb0\x75\xcf\x19\x91\x4d\x15\x91\x17\x45\xb6\xdf\xe2\x51\x00\x5b\xaf\x9b\x94\xdc\x3f\x22\xdd\xff\xde\x22\x99\x0a\xa5\x6c\xb1\xdc\x51\xa7\xfe\x93\xcc\x62\xfe\xa4\xa6\x3e\x13\xc1\x91\xcb\x99\x24\x7d\x86\xde\x9e\x23\x1b\x25\xa7\x28\x96\x93\x43\x1b\xb7\xa1\xb8\xfa\x28\xbe\x8d\x37\x69\x97\xe9\x9c\xed\xb6\xbf\x49\xed\xb2\x1f\xc5\x9f\x51\xfc\xae\xe3\xe3\xf6\x27\x0b\xbb\x0a\xfb\xc0\xb4\x8d\x3e\x6e\xf7\xc2\x3a\x01\x6c\x7f\x31\xb7\x2b\x78\x04\xfb\x55\xab\x07\x8f\x7c\x30\x7d\xa0\x41\x70\x38\xd1\xfe\xe4\x6a\x45\x8b\x5a\x67\x5f\xed\x4f\x6f\x1f\xfa\x94\x1e\x0f\xb5\x3f\x7d\xf2\xd0\xa7\xea\x04\xa5\xfd\xd9\x75\xbb\x7f\xc4\xfe\xdf\xc6\xff\x6a\x57\xf3\x20\xee\x67\x1b\xb7\xd3\x86\xdf\xfe\xea\x4d\x07\x23\x6b\x67\x71\x07\xf7\xcc\x61\xe0\x55\x78\x37\x6d\xc6\x95\xd6\xee\x36\xee\xeb\x55\xb8\x83\x36\xee\xcb\x8e\xb6\x82\x45\xb2\x8d\x7a\xba\x02\xb5\xa3\xd4\xf7\x2b\x50\x87\x6d\xd4\xcb\x15\xa8\x3b\x6d\xd4\xa7\x2b\x50\x77\xdb\xa8\x5f\x56\xa0\xee\xb5\x51\x7f\x71\x46\x00\x6c\xa4\x2d\xac\x93\x36\x4d\x57\x90\xe9\xc7\x6e\xcc\x0e\x2a\xbd\x6d\x37\x52\x1a\x1d\xdb\xb8\xef\x56\xe2\x42\x94\x44\x17\xfd\xd7\x0e\x74\x34\x83\xb5\x71\xff\x58\x85\xdb\xd1\xe4\x17\xab\x70\x3b\x46\xf6\xc3\x2a\xdc\x8e\xa1\x7d\xbe\x0a\xb7\x63\x6c\x9f\xb5\x08\xbc\xb2\x6b\x1f\x57\xa0\x76\xf4\xec\xb7\x15\xa8\x1d\x1d\xfb\x69\x05\x6a\x47\xbf\xfe\xb5\x02\xb5\xa3\x5b\xff\xee\x20\x01\x98\x9e\xda\xa8\x7f\x5f\x81\xda\xd1\xad\x9f\x57\xa0\x76\x74\xeb\xf7\x15\xa8\x1d\xdd\x62\xac\xdd\xaf\x15\x6d\xad\x57\xa0\x76\xb4\xb5\x58\x81\xda\xd1\x56\xbe\x02\xb5\xa3\xad\x25\x6b\xf7\x4b\x6e\x16\x5a\xb8\x59\x07\xae\xbd\xbf\x68\x7d\x12\x33\x5b\x7e\x90\xcd\x79\x1b\xb9\x72\x91\x1f\x2e\x3b\x71\xd0\xf5\x36\xcd\xa0\x76\xe8\x9f\x4d\xf1\xa5\x28\xaf\x8b\x35\xfc\xca\xf6\xab\xb3\x34\xe8\xcd\xcd\xa5\x2c\x04\x37\x44\x2d\x2d\x74\xc5\xad\x08\xed\xaa\xdc\x77\xf0\x57\xdd\x87\x68\xf9\x36\x3f\xaa\xc1\x4a\xad\x38\xec\xd0\xb8\x27\x59\x91\x55\xb3\x56\x5b\xbb\x6f\x7d\x3c\xaa\xab\x83\x0b\x85\xab\xa9\x2b\x73\x8b\xba\x5f\x62\x7b\x64\xf7\x6c\x8f\xed\x47\xda\x25\xe1\x8f\x6c\x36\x09\x59\x54\x79\x18\xa2\xea\x8c\xc7\x59\x9e\x15\xd3\x13\xb1\x2a\xd9\x3e\x20\xf2\x2e\x91\x5d\x5b\xfb\xab\x55\xe6\xc3\x47\x37\x5b\xce\xae\xe0\x17\x6d\xc5\x52\x4b\xa2\x0b\x50\x2b\x1f\x3d\x6c\x6c\x2b\x3c\xee\x57\x37\x2e\xe0\xb5\x5d\x4c\xa7\x46\xb4\x2e\x26\x9e\xfa\xb0\xc3\x62\xb0\x2e\xe6\xda\xc3\xf9\xc9\x23\xf9\x8d\xf6\x3a\x97\x80\xb1\x0b\x98\xba\x80\x57\x2e\x60\xee\x02\x6e\x5d\xc0\x95\x0b\x78\xe2\x02\xd2\xce\xdb\x77\xa3\xbf\x60\x94\xb1\xb9\xac\xc3\xf3\xda\xb5\x0b\x76\xb1\x60\xf0\x60\xd5\xab\x8c\x5c\xff\xcd\x55\x3f\x60\xbf\xfd\xef\xaf\xb4\x2d\xe4\xec\xfb\x7a\x73\x1a\xa5\xf0\x4e\x32\xd3\xc8\x62\xad\xd0\x76\xc0\xea\xf4\xca\x22\xc1\x86\xdc\x2a\xdd\xc8\x2a\x5d\xcf\x78\x91\x39\x2d\x0d\x1f\xa4\xf7\xae\x94\x30\x8e\x43\x8f\x14\xf5\xcd\xfe\x01\x2d\x41\xa4\x5d\xca\xba\xef\x70\x9e\xb3\x8b\x6f\xf7\xbc\xed\x2a\x5b\x1a\x81\x3b\x4a\xb7\x0d\xe8\x74\xee\x18\xcf\x36\x77\x01\x55\x21\x64\x56\x47\x38\x1b\xee\x07\x61\x19\x7d\xf7\xa9\xda\xfc\x6e\x0a\x57\xe8\xf6\x0e\xe4\x0d\xba\xa1\x13\xae\x54\xc6\x45\xc5\x48\x6e\x24\x72\x2f\x3b\xf6\x8b\xa8\x0e\xeb\x88\x85\x18\x4c\x35\x18\x75\x05\xf8\xad\xe1\x52\xb8\xc0\x4b\xb4\xbc\x57\xe1\xb4\x9d\x98\x47\x51\x7d\x7f\xaf\xfc\x30\x18\xc6\xa3\x7b\xfa\xa3\xba\x6b\x95\x96\x73\x73\x8f\x13\x2e\x12\xea\xbb\x44\x75\x3c\x7d\x6f\xdf\xf3\xc4\x9b\x9c\x11\x4d\xdc\xdf\x43\xc0\x57\x7c\x70\xe5\xae\x28\xf9\x3c\xce\xb3\xaf\xec\x97\x59\x56\xb3\x6a\x11\x27\x6c\xb4\xde\x0f\xaf\xb3\x7a\xf6\x5e\x06\x0c\xca\x12\x56\x29\xd8\x29\xc4\xee\x91\x90\xe5\x51\x65\xdf\x17\xd7\xd7\x46\x3b\x46\x4f\xb6\x84\x2d\x43\xfb\xa3\xd6\xb4\xab\x68\x6c\x50\x8b\x4c\x36\x91\x5c\xfa\x04\x6e\xc9\x9d\xa1\x10\x04\xc1\xf4\x91\x0c\x52\xaf\x67\xd3\x8a\x5c\x9a\x45\xb9\x61\x82\x8e\x8b\xb1\x75\xaa\x71\x70\xa2\xea\x91\xcb\xce\xd9\xc4\xef\x64\x0e\xab\xa3\x81\x9d\x54\x41\xc8\xd3\x72\x2e\x23\x91\x64\x13\x5f\x05\x8b\x6d\x11\xb4\x1d\x52\xa6\x15\x62\xe3\xbd\x89\x76\x71\x64\xd1\x74\xdb\x1e\xe3\x8d\x0d\x78\xec\xc2\x0d\x0d\x85\x84\xd2\xd0\xc0\x1d\x09\xb5\xb0\x69\x00\x5c\xcb\xb5\xa8\x86\xb1\x16\x4f\xca\xb9\x0c\xb7\xe8\xd2\x68\xbd\xdd\xac\x93\x72\xfe\xf2\x2a\xef\x3b\xcf\x31\x1d\x59\x0f\x30\xd5\x91\x57\xc7\x53\x38\xdd\xd8\x16\x15\x1d\xdb\x01\x5f\xe3\x60\x64\x03\xb2\x20\x64\x81\x1b\xb3\xc2\x2f\xe0\xd0\xa2\x15\xab\xb2\x76\xfa\x10\xa7\xe9\x8a\x0e\xd0\x80\x07\x8a\xdc\xe7\x0e\xf5\x75\xd4\x92\xb0\x88\xea\x63\x13\x04\x74\xa4\x86\x3a\xe4\x51\x71\x5e\x18\xbc\x23\x06\xd1\xe3\x29\x7f\x52\xf2\xd0\xd9\x0a\x83\xd6\x8a\x0f\x26\x87\xcd\xc0\xdd\xb0\x03\xee\xe0\x7f\xc3\xc8\xf3\x63\x88\x8c\xca\xae\x22\x2e\x5f\x0f\x8a\x58\x30\x92\x20\x68\x69\x61\x02\x58\x6d\x2f\xe0\xb5\x6a\x21\xdd\x30\xe6\x74\xd5\x15\x29\xaa\xf3\x24\xf2\x4e\xe0\x8c\x3c\x0c\xf3\x88\xa7\x57\x7c\x1b\xb7\xdc\x23\x0f\x1e\x84\xd7\x40\x78\x6d\x9e\x6f\x9f\xc5\xd3\x10\x5f\x71\x0e\xe5\x75\xf8\x51\x1d\x6a\x22\xc3\xd3\x69\xb2\x53\x2e\x2f\xfa\x85\x9a\x15\xd6\x08\xfb\x65\x10\xba\x33\x48\xf4\xac\x6c\x09\x9e\x56\x38\x34\x19\x11\xd9\x09\x5e\xd7\x21\x7a\xdd\x88\x0f\xd9\xb4\x28\x39\xc9\x3f\x32\x53\xc3\x61\x24\x39\xe7\xd2\x72\xae\x01\x2a\xf0\x51\x5a\xce\xcf\x9d\xcc\xad\xfe\x45\x00\x13\x44\x6c\xb9\xb7\xcf\xd8\x4d\x1d\x14\xc7\xf5\x36\xb8\x3d\xfa\xf8\xff\x26\x0b\xb6\x39\x83\x77\x89\xfd\x32\xf4\xd6\xbc\x60\x24\x33\x22\xa6\x85\xd0\x8a\xa6\xf8\xdf\xcc\xfc\x01\x22\x6b\xee\x3f\x37\x3f\x2d\xa4\xfa\xbf\xda\x5a\x78\xc9\x82\x45\xcc\xc1\x52\x71\xf6\x57\x70\xc2\x9d\x28\x62\xc4\x42\xe0\x3e\xac\x7a\xd9\xcd\x1c\x99\xd0\x31\xaa\x47\xa3\x92\xfc\x29\xc9\x20\x46\xbb\xb6\xfa\x2e\xed\xbd\x81\xd3\x37\x39\x47\xec\xc6\x4a\xdc\xff\x4e\x3e\x6f\xf5\x50\x07\x17\x69\x2f\x36\x26\x66\xf1\x39\x36\xcc\xf3\x2c\x32\x5e\xe8\x76\x9e\x3c\x39\x7b\xb2\xd4\x6e\x2e\xad\x56\xb2\xee\x56\xd6\xdd\xad\xac\x5b\xb3\xd1\x04\x68\x89\x3a\x5a\xdf\xa9\x24\xd8\x4b\xa4\x5b\xe0\x63\x61\x71\x5c\xff\x89\x36\x57\x49\xb9\x04\x64\xa9\x15\x1d\x4e\x32\x2e\xb4\xe3\x2b\xb6\x82\xc3\x8a\x60\x49\x42\x44\x54\x9d\x6f\xf7\xd2\x77\x7b\xa7\xac\x5e\x83\x08\xd9\x10\xea\xda\x56\x02\xd4\xd8\x1c\x91\x00\xfc\xe7\xbd\x0b\x25\x97\xc5\xa7\x79\xfc\xed\x5f\x32\xc3\xb3\xb4\x88\xa2\x4c\xd9\xd9\xed\x82\x99\x2d\x48\x89\xbc\x2e\x7a\x7c\x71\x7f\x5f\x6e\x4b\x0d\x61\xb9\x0c\x79\x74\x57\xe3\x49\xdd\xc8\x83\xab\xb8\x28\xab\x5f\x97\x29\xab\x46\xe6\xed\x90\x10\x97\x10\x01\x1e\x79\xf8\xdb\x0b\xc5\x62\x93\x95\x4d\xf5\x3e\x1b\x8b\xfd\xdd\xc8\x13\x00\x2f\x14\xab\x91\x06\x89\x84\x17\x8a\x16\xc1\xb1\xd3\xc8\x83\x7b\x30\x62\x72\xdc\xc9\x46\x8c\xfa\x10\xbc\x77\x34\x0c\x81\x31\x46\x3b\xa1\xe4\x9c\xd1\xc1\xf2\x88\x06\xbe\xe6\x2b\x5e\xc5\xc6\xb9\xcd\xcf\xd9\xc5\x51\xf7\x33\x8b\x45\xc8\x42\x31\x2c\x1d\x8f\xca\x0b\xb2\x9c\xd7\x9a\x7a\x15\x45\x62\x2e\x96\xd8\x68\x2c\x97\xf8\x5a\x51\xf7\xb6\x46\xb3\xc1\xd1\xb9\xd8\xc8\x0c\x82\xb0\xf0\xfb\x3b\x3d\xfc\xaf\x8f\xff\x49\xe0\x10\xff\xdb\x09\x2e\xba\x7b\xe5\xbc\x05\xd0\xc6\xa9\x83\x3b\x0e\x8d\x3a\xaf\x2f\x30\x66\x3f\x57\xef\x31\x7d\xcb\x03\xf5\xa2\x4f\x4a\x61\xfc\x9c\xcd\x45\xab\xe5\xe3\xf7\x9d\x4f\x13\x3c\xfc\x54\xc4\x0a\xc2\xd7\xa1\x67\x3e\xf1\xc2\x3b\x7c\xda\x7f\xbd\xb7\x44\xf1\x5f\x46\xdc\x2f\xfc\xfd\x3e\xbc\x57\x21\x7e\xf6\x87\x7b\xf0\xa6\x25\x80\x07\x41\x10\x56\x12\xbc\x1f\x90\x2d\x61\x62\x06\xdd\x21\x12\xbe\x6d\x7e\xef\x05\x61\x11\x35\x42\xf5\xc1\x70\xb4\xef\xd8\xf4\xf4\x66\xe1\x7b\x1b\xfe\xf1\xc8\xdb\xf4\xeb\xcd\xc8\xbb\xff\xdb\xf9\xcd\xaf\x17\xe7\x9f\x3e\xa5\xf1\xd6\xe4\xc9\xd6\xb3\x8b\xcd\xfb\xbf\x7d\xfa\x94\x6e\x7a\xc1\xa6\x17\x1c\x79\xa1\x37\xf5\xda\xb1\x32\x0c\x35\xe4\xa3\xf5\x64\xf1\xe3\x61\x11\x2c\x97\xb5\x0c\x0f\xf1\xeb\xab\x97\x51\xe2\xc7\x2a\xce\x77\x10\xaa\x8c\xe7\x67\xaf\x5e\x4a\xd7\xcb\xc4\xc4\x37\x0f\xe4\x33\x9b\xb6\x64\x51\x94\xff\xbe\x3e\xee\x8f\xb6\xfa\x4b\x2b\xc0\xb2\xce\x6e\xbf\x0f\xe1\xfd\x0d\x36\x38\xca\x31\xa1\x1f\x1c\x7b\xbf\x5a\x90\x41\x70\x7f\xef\xdd\x38\xa0\xe3\x4a\xb5\xc6\xd7\x7e\x62\xb5\xb2\x66\x0e\x83\xb0\xbf\x17\x04\xa3\x87\x70\x06\x41\xd8\xef\x05\xc1\x88\x9d\xd7\xdb\x55\x9e\x25\xcc\xef\x87\x5b\xfd\xe0\xc2\x50\x45\x74\xde\x75\xc1\x40\x11\x47\xc7\x51\xbf\xd9\x17\x6c\x57\x25\xaf\xfd\x3c\x08\xed\x81\x2e\xdb\x08\x45\xd4\x0b\x39\x3c\xf8\x5f\xd3\x47\x91\xe1\x79\x90\x28\x12\x5b\x8a\x63\xd8\x58\x6c\x46\xde\xd1\xb1\x17\xf2\xcd\x4d\x7c\x75\x55\xa4\x3d\xf9\x22\x66\x9b\x53\x6a\xc3\x50\x9b\x1d\x1c\x73\x74\x8c\x3c\x73\x74\x1c\x20\xc3\x84\x55\xd4\xd0\x41\xb5\x39\x56\x0e\xce\x11\xf8\x1f\x2a\xa2\x6d\xf5\xc1\x71\x0b\xda\x11\x84\x82\x89\x97\x7f\x86\xeb\xe2\x30\x09\x96\x4b\xdf\x9a\xf1\x34\x66\xd1\xcf\xef\xdf\xbc\xc6\xe8\x48\xfe\x3f\xee\xbc\x27\x71\xd2\xd4\xcc\x1b\x79\x9f\x6e\x92\xbe\x17\x7a\xb1\x49\x33\x91\x7e\x32\xe6\xec\x0a\xd2\x4d\xaf\xdf\x1b\x08\x0c\x0b\x32\x14\x90\x04\x52\x83\xc1\x90\x41\x2a\x55\xc9\x09\x24\x4f\x75\xee\xa7\xa6\x37\x1c\x8a\x2f\x9e\x24\x19\x4f\xb0\x52\x28\x52\x27\x19\x26\x55\x13\xc6\x3b\x80\x7c\x8b\xb5\xed\xf4\x7b\x90\xab\x92\x43\x91\x7c\x72\x9a\x67\x53\x2c\x6a\x4f\xe4\x32\x95\x64\x90\x9c\x60\xe5\xbd\x3d\xe8\xcc\x84\x43\x32\x3d\x18\xee\x7e\x6a\xd2\xb4\xb7\x03\x28\x36\xb0\x2f\x3a\xf1\x64\xca\xe3\x2b\x49\x16\xa8\xd4\xa4\x19\xa4\x73\x36\xa9\x6e\xe7\x58\x78\x7f\xb8\x8b\xa0\xc5\x8c\x02\x9e\xe4\x8b\x59\x8c\x4d\x1d\x1e\x02\x6d\x09\x60\x0c\xed\x99\xc7\x09\x57\x94\x84\x62\x29\xa0\x8f\x80\x7c\x8a\x85\xc6\x48\xce\xf9\xc2\x1b\x79\x1b\xe2\xe3\x57\x6f\xe5\xaf\xb8\x48\xe3\x42\x12\x3d\xde\x85\xaa\x4d\x72\x88\x08\x72\x0c\x06\xfb\x98\xd4\xd9\x09\xa6\xab\xbc\x5c\x30\x05\x3b\x40\xd8\x95\x4a\xc7\x90\x9e\xaa\x22\x7a\x98\x94\xe8\x87\xf1\x0e\xa6\x73\xe6\x20\xcc\xab\x34\x8e\x15\xd2\x81\x81\x8d\x15\xec\xd0\xc0\x12\x05\x8b\x0d\x2c\x55\xb0\xb1\x81\xe9\x4a\x13\x03\x9b\x28\x58\x6a\x60\x53\x05\x63\x06\x36\x53\xb0\x89\x86\xa9\x16\xf7\x11\xc2\x6b\x09\xe8\x4f\x14\xe0\x4a\xb6\x76\x30\x66\x06\xa4\x5a\x76\x28\x6b\xac\xd4\xc0\x0f\x06\x03\x09\xa9\x91\x77\x76\x31\xf9\x35\xe6\x38\xac\x83\xe1\xbe\x68\xf9\x93\x72\x5a\x16\x6a\x9c\x81\x7e\x14\x00\x23\x58\x2e\x26\x16\x5b\x0e\x81\x82\x2e\x74\x17\xea\x5b\x88\x09\x24\x47\x6b\x0f\x9a\xbe\x90\xed\xd9\x81\xaf\x16\x72\x0a\xc6\xfb\x30\x34\x6a\xa4\x07\x3b\x40\xed\x45\xa6\xe8\xb0\x03\x94\x5e\x94\x95\x48\xff\x43\xb4\x62\xb1\xc8\x6f\x9f\x29\x13\x19\x99\x49\xf1\x62\xc1\xcb\x1b\xbb\x12\x01\x61\x97\xb4\xe8\x27\xf0\x08\xb4\x21\x84\x4e\x32\xe8\x62\x95\x58\x33\x2f\x39\x84\x41\x75\xa1\xe3\x3d\xc0\xad\xb2\xa9\x6c\xc1\x60\x17\x28\x06\x24\xfe\x27\xfc\xba\x9d\xdb\xfd\x15\x00\xd3\x12\x31\x48\x4f\xea\x2c\x4f\xe5\x7c\x86\x19\x61\xd2\x0c\x04\x52\x33\xcf\x31\x17\xca\x56\x29\x06\xa9\xeb\xa4\x2c\xb2\x42\xf1\x06\x08\xb0\xf8\x5a\x03\xe2\xbe\x20\xc8\x38\x4e\xbe\x24\xa5\x9e\x24\x3b\x89\x84\xb1\x45\x95\xe5\x6a\x68\x87\x93\x3d\x09\x5e\xf0\x6c\x2e\x47\xa1\x07\xc2\x42\x00\xab\x6c\xae\xea\x48\x0d\x48\x77\x24\x11\xc0\x1f\x05\x30\x8f\x2b\xc5\x70\xfd\x3d\x00\x72\x35\x59\xd9\x3e\x7c\xc9\xaf\x98\x1a\xe4\x31\x96\xc5\xaf\x99\x1c\xe6\x21\x30\xd8\x8f\x16\x64\x4f\xe3\xa8\x79\x8d\x58\xe3\x31\xff\x22\xd3\x63\x95\xae\x09\x0c\xbe\x73\xfb\xfd\xa3\x11\xd8\x40\x1a\x23\xb0\x21\x99\x5e\x36\xa5\xec\x3a\xc8\xda\x31\x4b\xe2\xa6\x52\x3d\xdf\xd5\x10\x46\x41\x3f\xb6\x41\x63\x36\x5f\xd4\xb7\xb2\xe3\x87\xe3\x1e\x80\x16\x55\x66\xd1\x9a\xf1\xa2\x6c\xa4\x54\x1e\x40\xe3\x00\x92\xe7\x59\x65\x43\x6b\x2d\xaa\x07\xf0\x9d\x4e\x8f\x65\x5a\xcb\x76\x2c\xb7\xbe\x66\x4c\x31\xe4\x1e\x14\xe1\x2e\x2e\xd0\x46\x77\x71\x11\xb3\x73\x9c\x4d\x13\x3d\x43\x61\x01\x14\x10\xb9\x04\x36\x83\x5d\xa6\x90\x1a\x8d\x34\x44\x48\x99\x96\x8a\xeb\x60\xbd\x10\xa0\x45\xae\x88\x17\xc3\x92\x21\x60\x75\x36\x67\x1a\x28\x2b\xa8\x2e\x75\x79\x31\x8e\x77\x36\xad\xea\x58\xca\x8d\x3d\x6c\x6e\x36\xad\x79\x06\xc2\x3c\x2d\xaf\x65\xf7\x76\x91\x83\x4c\x96\x2a\x66\x77\x2c\x9b\xd5\xd0\x36\xec\x20\xcc\x30\x60\x22\x5b\x45\x98\x6b\x00\x8b\xea\xf8\x4b\xcc\xcb\x6b\x39\x7e\x3d\xa8\x24\x8f\x93\x2f\x79\xf9\x95\x99\xe5\x85\x8d\x15\xbc\xba\x6c\x62\x2e\xc1\xbb\xb0\x50\x00\x58\xb5\x4a\xb5\x69\xc7\xcd\xa0\x3d\x61\x6e\x66\xce\x26\x92\xa2\xbb\x38\x12\x34\x93\x67\xd3\x99\xca\x1d\x1f\x60\x6e\x21\x79\x7f\x67\x00\x9d\xcf\xbf\xf4\x07\x12\x03\x19\x27\xff\xd2\xdf\x51\x80\x3e\x02\x86\x1a\x80\x9f\x94\x89\x2c\x63\xf7\x00\x0a\x2d\x44\xdb\x23\x31\x1f\x40\x2e\x8e\x0b\x76\xd9\x64\x57\x8a\xb7\xfa\x26\xe3\xb5\x1e\x7d\x06\xd4\x2a\x54\x7a\x08\x9a\xd1\x8f\xad\x35\x43\xac\xb0\xe3\xd6\x9a\x01\xad\x50\x9f\x0e\xe2\x5d\x4c\xd6\xe5\xdc\x86\x5c\xd7\x99\x1e\x2e\x68\x67\x79\x33\x56\x32\xff\x30\xc1\xa2\x6f\xd2\x5c\x76\x05\x5a\x20\x00\x2f\x25\x60\x17\x4b\xb9\x39\x51\x18\xbb\x7b\x12\xa0\x31\xf6\xe5\x27\x92\x07\x77\x7b\x89\x04\xbc\x53\x18\x03\xf9\x89\xc2\x90\x6d\xbf\x39\xd1\x18\x3b\x08\x98\xa9\x22\x64\x33\x9e\xab\x7c\x99\x9e\x49\x51\xb7\x3b\x90\x75\x3c\x57\x80\x3d\x55\xc2\x89\x02\xc8\x86\x3f\xd7\x00\xd9\xf0\x99\x14\x24\xbb\x43\xf9\xc9\x73\x05\xd8\x93\x3d\x99\x7d\x50\x00\x49\xb0\xe7\x1a\x20\xe9\x35\xcf\x0a\x2d\xeb\x0e\x27\x08\x33\xb3\x67\x70\xc8\x10\x44\x26\xf0\x20\x96\x5d\x68\x34\xa9\x65\xe1\x8d\x26\xe4\x18\x01\x1f\x34\xa9\x65\x27\x3f\x68\x8c\x54\x7e\xa2\x08\xd9\x97\x5d\x68\x34\x21\x65\xa1\x1f\x34\xa9\x65\x8b\x3f\x68\x8c\x18\x01\x57\x8a\xd4\x72\x70\x3e\xaa\xfc\xbe\xcc\x57\x63\x31\x94\xad\xb8\x52\x83\xb1\x27\x4b\xf8\xa8\x30\xf6\x64\xc3\x3f\x6a\x0c\xf5\x89\xea\xc9\x40\xb6\xf3\x4a\xf5\x64\x4f\xd6\xf2\x51\x61\xec\xa9\x66\x68\x0c\xc9\x23\x57\xba\xaf\xaa\x50\xdd\x13\x49\xe5\x8f\xba\xaf\x72\x24\x3e\x2a\x8c\x3d\xa0\x79\x7b\x95\x36\x5b\x9f\x41\x2a\x08\xf6\xa3\x0b\x18\xf3\xab\x31\xca\xd4\x9b\x18\xd8\xa6\xa5\xce\x08\x56\xf9\x51\x41\xe5\xf2\x33\xae\xd8\x3c\x93\x15\xed\x40\x5b\x5c\x5d\xa0\xd2\x2d\x41\x3d\x60\x5c\x95\xb9\x52\xa4\x41\xb9\x12\x00\x91\xfe\xf4\xe9\x93\x4c\xcd\xaa\x46\x62\xec\xe3\xfc\x6d\x72\x49\xb3\x1e\xa8\xa9\x22\xcd\x6a\x1b\x62\x14\x29\x26\xd3\x4a\x75\x8c\x15\x40\x2b\x8f\xa2\x9d\x3f\x36\x54\xd3\xd2\x28\x97\x14\xe7\xa9\xde\xcf\x09\xe5\x56\x10\x25\xb1\x20\xfb\x00\x59\x98\x2d\xcc\xce\x0e\x42\xc6\xdc\xac\x58\x3b\x87\x08\xd3\x0b\x67\x0c\xca\xaa\x59\x47\x07\x87\x50\x95\x4a\xa6\x03\x89\x6f\x4a\x90\xf5\x98\x25\x74\xa7\x87\x9f\x64\x75\x9c\x9f\x64\x13\x78\xe4\xb3\xce\xe2\x5c\xce\xfb\xfe\xce\x2e\x7e\x51\xe9\x2a\x3e\x35\x13\x06\x12\x26\x89\xb9\x26\xdd\x4e\x1f\x01\x4a\xcb\x1b\x24\xfb\x50\xee\x6d\xce\x6e\xb5\x92\x21\xc6\x2c\x31\x65\xc5\xa0\x95\x3e\x25\x5f\xf5\x41\xf8\x25\x16\x04\x71\x58\x9a\x49\xdd\x14\x7a\x60\xd2\xa0\xeb\x3d\xd5\x8a\x43\xaf\xdf\x3b\x00\x04\x02\x00\xa2\xd8\xea\x2b\x34\x3f\x69\x4c\x4b\x12\x05\xa8\x24\xcb\xc5\x20\x34\x9f\x2a\x42\xf5\xfa\x3d\x31\x6f\x13\x92\x06\xd2\xeb\x76\xc0\xd2\xf8\x54\x24\xf3\xd8\x00\x12\x5b\x3d\x83\xf1\x60\xd8\x8c\x9b\x58\xa5\x18\x97\xa5\xde\xc0\xbc\x78\x0a\xa0\x13\x0a\x4a\x1c\x0d\x0a\x76\x97\x4f\x27\x9c\x12\xf6\xe9\x73\xad\x62\xc2\x06\x37\x99\xe9\x34\x8e\xfa\x8c\xa9\x25\x77\xbf\x3f\x54\x80\x79\xcc\x2d\xe0\xd3\x99\x52\x1d\x63\xfc\x48\x25\x91\xee\x9a\xaa\x03\x30\x34\x88\xb4\xe6\xf3\x5d\x85\x91\xb3\x98\xf3\xf2\xda\x68\x15\xfd\x71\x6c\x67\x11\x9d\xa2\x3f\x1e\xeb\xbc\x14\xf7\x33\xb0\x06\x10\xa8\xd1\x0a\x07\x87\xa6\xa0\x34\x35\x1b\x00\xd8\x83\x3e\x05\xf0\x89\x5e\xd3\x0f\x0f\x0d\xee\x3b\xa4\x38\x33\x90\xf7\x52\x83\x01\xa9\x80\x9f\xbe\xa2\xcb\xd2\x9e\x06\xbf\x25\x2b\xd3\xae\x86\x9e\x91\xc5\xe9\x50\xf6\x5c\xca\xcd\x44\xb6\xfd\x54\x89\xa6\x21\xa6\x99\x43\xa8\x49\x41\xf6\x4f\x3d\x84\xcd\xd5\x3e\x34\x06\x05\x38\xc9\x78\xa5\x0b\x3e\x04\xe5\xec\xa9\x50\x9d\xae\xb3\x8a\x3d\x2d\x8b\xba\x6c\xf8\x8b\xa2\x66\x53\x1e\xe7\x8a\xb5\x25\x0e\x3c\x6e\x92\xdf\x92\x4b\x34\x72\xa6\xf6\x53\x0b\xc1\xca\x02\x8a\xe5\xcd\x58\x76\x6c\x0f\x56\x11\x00\x34\x59\x6d\xc1\x4a\xdc\xcf\x8d\x44\x59\xa5\xda\xdb\x0d\x06\xc3\x7d\x05\x50\x86\x94\xfd\x1d\x85\xae\xbb\x6f\x20\x97\x36\x68\x3e\x8f\xa1\x44\xf9\x5b\xd4\xf8\xff\xc3\x84\x92\x68\xa0\xdc\x8b\xf4\x44\xd5\x08\x7a\x40\x02\xc1\xdf\xe7\x4c\x4f\x70\x8d\x97\xb3\x1b\x35\x4c\x68\xb9\xa3\xfb\xb4\x5d\x99\x36\xd2\x70\x0f\x88\x53\x16\x53\xde\x98\xc2\xf6\xb0\x30\x22\x3f\x06\x0c\xd1\x08\x64\x82\x90\x8e\x11\x01\xe4\xa4\xa5\x80\xee\xc0\x07\x12\xaa\x1b\xb7\xe0\xa5\x32\x44\x00\x4b\x3c\x05\x48\x93\xd4\x14\x98\x94\x8b\x5b\x64\x68\x10\x6d\x6f\xde\xfe\x66\x52\x22\xaf\x52\x82\xa1\x8f\xc3\xd1\x14\x78\xff\xec\x41\xbe\x81\x61\xe5\xda\x46\xd3\x87\xad\x6e\xc2\xcb\xaa\x52\xf2\x01\x0a\x33\x80\x18\xfb\xdc\x32\x60\x40\x77\x5b\x2b\x3e\x0c\x93\x5e\x8c\xe3\x64\x22\xd3\x8a\x4f\xd2\x3e\x02\xd4\x4a\x95\xf6\x64\x5a\x23\x00\x81\x6a\x3d\x56\x03\x9c\x20\x4d\x1a\x73\x2e\x3b\x71\x08\xf6\x21\x04\xa9\x39\x03\x2a\x4b\xd2\xb0\x05\x57\x8b\x22\x43\x40\xa5\x64\x4a\x8a\xe5\xe4\xa4\xeb\x7b\x1a\xb2\x50\xc5\xc0\xda\xd5\x88\xe5\xd8\x2c\xbe\x58\x1b\x5d\x8e\x41\x6a\x34\x0b\xb3\x04\xef\xc8\xef\x14\x2f\xc4\x88\xa0\xaa\x1e\xca\x12\xcc\x02\x1d\x23\xc4\x74\xf3\x40\x96\x50\x2a\xe3\x16\xb2\x6d\x63\x56\xe4\xd8\xac\xc8\x0d\x1d\xc0\x7d\x0d\x99\xab\x5e\x24\x08\xca\x6f\xd9\xe5\x82\xb3\xc4\x26\x09\x80\xab\x26\x71\x08\xc3\xf3\x5b\xb2\x8f\xd5\xa8\xd6\x4e\x56\x62\x72\xb4\x06\xdc\x80\x39\x34\x69\xf8\x55\x7b\x25\xd8\xb3\x72\xac\x85\x00\xdb\xdb\xaa\x4b\x5b\x68\x64\x35\x8e\x25\x0a\xd8\xe2\x9a\x00\x80\x91\x6e\xf3\xa4\xc6\xe5\x6f\x30\x84\xe5\x31\x8d\xa7\x53\x26\x49\xd3\x83\xf5\xf3\xc4\x82\xf4\x01\x27\x27\x26\x8e\x03\x80\x68\x72\xc2\xbe\xf5\xc4\xa4\x63\xf8\xe2\x89\x4e\xc3\x58\x9a\x35\xa9\xd7\xc7\x3a\xaa\x99\xb6\x4a\xed\x48\x04\xb5\xab\x8d\xe1\x0b\xdb\x00\x30\x01\x50\x1e\xab\x65\x36\x15\x6d\x3f\xb1\x14\x22\x41\x95\xd4\x82\x4c\x00\x47\xdb\x9b\xa0\x1e\x63\x6f\x82\x64\xda\xee\x2c\xe9\x5b\x22\xb8\xee\xc4\x52\xf9\x94\x75\xbc\x0f\x3c\x7d\x72\x52\xd6\x3c\x56\xfb\xc7\xc3\x3e\x16\x50\xd6\x95\x12\xe1\xf1\xbe\x18\xbd\x94\xa1\x69\x13\xec\x50\x27\x4c\xc9\x16\xd0\x6e\x4f\x58\x6e\xcc\x4b\xd0\x26\x02\x18\x23\xc0\x52\x96\xa0\x8e\x49\x56\x29\x06\x39\xdc\x87\x7e\xba\x16\x26\xa8\xd7\xd5\x8f\xe0\xdb\xe7\xca\xae\x73\x08\xbb\xd9\x74\x16\x2b\x41\xd1\x87\x25\x59\x00\x34\x05\x04\x1b\x9d\x64\x71\xc2\xb3\x3a\x4b\xe2\xfc\x89\x7d\xfc\x42\x72\x94\x82\xd1\x1b\xa4\x87\x6e\x8e\x58\x6b\x9f\x18\xb5\x5e\x8e\x9e\xc1\xf8\x49\x1e\xa0\xfc\xc7\x06\x9f\x29\x3b\xac\xf8\x44\x4c\xd1\x34\x8b\xd5\xce\x07\x6c\xb1\x22\x5d\xea\xf3\x8b\x44\xb6\xc8\x05\x49\x2c\xba\x56\xef\x49\x70\x65\x03\xb0\x67\x70\x1e\xd1\xa9\xf3\x23\xd6\x34\xc6\x05\x59\x0c\x10\xf4\x24\xcd\xaa\x4c\xad\xbb\x93\x01\x00\x60\xb4\x6e\x26\xfb\x98\xc8\xa4\x39\x99\xa4\xcb\x82\x6e\xe3\x13\x99\x51\x16\x37\x14\x72\xf2\xb3\x66\x57\x58\x07\xd3\x3f\x74\x1a\xac\x1f\x69\x9e\x94\x5c\xd6\x3c\x04\x7b\x69\x9a\x27\xbc\x94\x42\x73\x08\x7b\x84\xb4\xcc\x73\x18\xf0\xbf\x8b\x02\x5b\x56\xa0\x31\xa0\xb8\x8b\xf0\x2e\xe0\xd6\x86\x1c\xa9\x33\xba\x65\xad\x15\xca\x1e\x0e\x4d\x59\x1b\xb5\xa5\xa7\x00\x46\x5c\x83\x01\xe0\xa4\xac\x4f\x2f\x1b\xbd\xb6\x2a\x3c\x6a\xf7\x18\xca\xda\x88\xdd\x03\x27\x6e\x59\x53\x1b\xdf\x00\xc5\x0c\x70\x96\x6b\x9b\x86\x89\x09\x39\x2b\x14\x8f\x89\x46\xb0\xfa\xa8\x40\xd7\xc5\x13\xae\x45\x0f\xca\x2f\xcc\x7a\xc9\x26\xb5\x95\xd5\xb3\xb2\xde\x09\xa1\x6d\xe5\xef\x58\xf9\x67\x4a\x82\xa3\xc8\x93\x19\x65\x31\x75\xca\xdd\x9f\x1c\xb4\xb2\xdd\xb2\xf7\x27\xb1\x85\xd3\xce\x3f\xd4\xf9\xed\x76\x0d\xec\x3c\xdd\xb0\x01\xa1\xc3\x87\x85\xf5\x49\x9f\x64\xb4\x48\xb4\xab\x33\x3f\x32\x0e\x53\xf7\x47\x25\x63\x06\x03\xcc\x94\x5f\x68\xf8\x21\x6c\xab\xd2\xf2\xba\x88\x49\x49\xb8\x98\x38\xc5\x6b\x60\xdc\x1e\x16\x89\x69\x37\x76\xa2\xaa\x24\x16\x98\x21\xca\xe6\xf2\xba\xd0\x75\x56\x54\xca\x0b\xe8\x2c\xe6\x8b\xb2\x2c\xc8\xb2\x9c\x0c\xed\x2c\xba\x2e\xa3\x68\x2c\xaf\x0b\x3d\x3e\x1f\x59\x52\x2b\x75\xe4\x70\xb7\x47\xb2\xcf\x18\xb3\x33\x19\xc9\xc4\x1c\x43\x99\xdd\xbd\x56\xa6\x52\x05\x52\x99\xa3\x86\xcd\x2e\x74\x42\x73\x5b\xa5\xee\xb7\x73\x55\x4f\xfa\x32\xeb\x8c\x31\x4a\xc7\x78\xdf\xc0\x15\x83\xc0\x5c\xe4\xd6\xe2\x0c\x2b\x7a\xca\xa9\x28\x9a\x20\x84\x88\x22\x21\x23\x4e\x5a\x3a\x31\xe0\xb5\x74\x62\x60\xdd\xf7\x46\xf4\xed\x22\x96\x16\x7d\x98\x2e\x95\x76\x0b\x87\x39\x27\x55\xcd\xcb\x2f\x72\xe5\xc7\x16\x59\x10\x18\x7d\xa2\x25\x4f\x10\xc0\xa5\x65\x6d\x77\x3c\x91\xe9\x89\x02\x80\x38\x6d\xcc\x52\x08\x5c\x95\x36\x33\xb3\x7a\xc2\x27\xd7\xe4\x80\xe1\x10\xcc\x7a\x27\xbf\x9b\xa6\x03\xca\x57\xd3\x74\x4c\x67\x53\xa3\x8f\xee\x4f\x04\xec\x94\xb8\x5a\x88\xee\x33\xe2\x6a\x81\xe9\xaa\x66\xfa\x18\x57\x34\xed\x94\xaa\x3a\x7d\xc1\xc2\xcc\x82\x8c\x01\x47\xbb\x52\x20\x82\x76\xa5\x50\x49\x25\x89\xf7\x20\x4d\x76\xac\x40\xe4\x53\x63\x3a\x49\x01\x41\x5b\x4e\x20\x79\xa2\xd7\x00\x54\x73\x4e\x8d\x15\x08\x8e\x1e\x19\x49\xef\xc3\x07\xf6\x72\xa0\xb8\xaa\x0f\x86\x18\x36\x21\xd9\x62\x6e\x9d\xba\x2a\xcd\x01\x60\x39\x2a\x8d\xc0\x64\xca\x0d\x02\xec\x20\xa7\xc4\x3f\x03\x3e\x21\xfe\x19\x98\x56\x3b\x35\xb0\x66\xb0\x69\x65\x36\xba\x87\x80\x90\xab\x94\x20\xfd\xa9\xbd\x83\x46\x84\x4c\x6c\x1d\x65\x31\x43\xb0\xb5\x31\x65\x40\xed\x83\x64\x63\xb9\xae\x64\x17\x93\xa4\x12\x20\x16\x71\xe7\xe8\x43\x27\x28\x00\x8a\x10\x6a\x9f\xaa\x76\x57\x01\x2a\x56\x53\xd8\xa9\x80\xbd\x9f\xc7\x79\xfe\x9e\x1e\x81\x4d\xc6\x0a\xff\xaa\x85\xfd\x91\xf1\x8e\x2f\x62\xfc\xa2\x5a\xf4\x87\x72\x5d\x87\xd3\x3a\x80\xec\x28\xc8\xae\x84\xa8\xb4\x68\xe6\xe9\xeb\x9f\x64\xab\x61\x93\xc6\xa4\x1d\xa1\xd7\x07\x23\x2c\x2b\x0c\x36\x0c\x2a\x71\x66\x00\x1b\x05\xa3\x00\xa0\x77\x4b\x47\x49\x00\xcd\xd5\x51\x60\xec\x16\x7a\x9d\x81\x45\x48\xa4\x2b\x25\x17\xe0\xf0\x9e\x91\xe3\xc7\x7d\x60\x3a\x73\x0a\x0c\x5b\xf9\x53\xeb\x10\x1e\x07\xcb\x02\x8d\x15\xe8\x4a\x02\x40\x10\xb0\x4b\x62\x7e\xc3\xb6\x5c\xb6\xe6\x0f\xbb\x34\xa6\xfa\x9d\x01\x02\xf2\xb8\xa8\xa7\x35\xb7\x38\x10\xa1\x39\xab\x2c\x9e\x21\xaa\x52\xbc\x8f\xc5\x35\x31\xb0\x55\xa4\x72\x8d\x86\xac\x2b\x68\x98\x36\x16\x82\xb4\x39\xbd\x6c\xb2\x3c\x1b\xf3\xac\x51\x1e\x49\x49\x82\x88\xe4\x18\x51\x01\xd4\x5e\x27\xde\x87\xa1\xb9\xbc\xb2\xe8\x09\x6d\x30\x92\xeb\x10\xe9\xc9\xc9\xb4\x05\x8a\x93\xf3\x0b\x68\x80\x49\x83\x7d\x99\x55\x44\x2b\xec\x01\x82\x22\x52\xbc\x8f\x05\xd8\x44\x3b\x35\xfb\x23\x98\x68\x66\x77\x04\xf3\xe8\x0c\xce\x87\x6e\x40\x19\x93\xdb\xd4\x9b\x09\x94\xab\xfd\x36\x80\x11\xb5\xdf\x06\xa6\xb8\xf2\x33\x00\x77\x21\x76\x93\x88\xdc\x75\xf8\x99\x69\x0a\x22\x83\x0b\x40\x45\x21\xec\x66\xc1\x92\x3a\x36\x8e\x2f\xb2\x67\x37\x8b\xb2\xc0\x2d\x83\x25\xd9\x4e\x0d\xfc\x94\xc2\x27\x71\x9e\x67\x60\x66\xab\x8c\xee\x2c\x7a\xfc\xcc\xc8\x5d\x31\x07\x27\x46\xee\x42\x92\xcd\x75\x05\x7b\x70\x4e\x31\x99\x64\xd2\xb3\xad\x99\x8c\xa1\x85\x93\x09\x01\x20\x4a\x4e\x20\xa2\x98\x67\xae\x78\x3d\x04\x34\x47\xbc\x42\x61\xb4\x74\x31\xe6\xcf\xb2\x3c\x67\x69\x87\xd4\x49\x74\xe6\x0a\x21\x23\x24\xc4\xe4\x0f\x2c\x6e\xf2\x87\x48\xe4\xb1\xde\x95\xa5\x90\x26\x75\x0d\x00\x50\x17\x95\x5a\x93\x45\xe5\x93\xa2\x9c\x48\x79\x01\xa7\xea\xcf\x5a\xf2\x02\xca\x69\xc9\x0b\xa0\x78\xc9\xe3\x5c\x6f\xbf\x7b\xf0\x35\x7f\x62\x43\x26\xa5\x32\xfd\x0f\x40\x81\x17\x69\x65\xab\x80\xcd\xcf\xb3\xb2\xe1\x19\xe3\x35\x57\x36\x4a\x30\xad\x4c\x16\x31\xaf\x8d\xe1\x1a\xf6\x5e\x13\x1e\x27\xe8\x02\x70\x33\xd6\x69\x29\x5e\xfb\x30\x59\x00\xb2\x83\x18\x89\x4a\xef\x2a\x8c\x5d\x05\xd9\x53\x90\x43\x05\x39\x50\x90\xb1\x84\x0c\x74\xb9\x3b\x0a\xa2\xcb\xd9\x93\x90\xa1\xac\x89\xa9\xb4\xc6\xd8\x57\x10\x5d\xae\x6a\xcd\x8e\xc6\x39\x90\x90\x5d\xdd\x9a\x58\x41\xf4\x57\xaa\x97\xfb\x1a\x22\xeb\x52\x52\xa4\x87\x2c\xcc\xb5\xdf\xc5\x10\x56\xf0\x49\x4b\x09\x14\xfd\x7a\x46\x44\x87\xa0\xf1\x94\x9e\x0d\x82\x18\xfe\x89\xec\xc5\x61\x9f\x40\x37\xe7\xe0\x82\x02\x18\xa9\x84\xc0\x56\x75\x6a\x41\x52\x80\x28\x3b\xe3\x81\x20\xd5\x4f\xd4\x8b\x15\xb6\xd5\x53\x0b\x22\xa4\xda\x4f\xfa\x88\xab\xe9\xf5\xa1\x0b\x3f\x91\xb3\x35\x38\x55\x9e\x52\x40\x0a\x18\xda\x16\x05\x4d\x35\xb6\x28\x68\xa8\xd1\x96\xc0\x0e\x37\x25\x69\xe8\xbc\x12\xf4\x60\xb5\x99\x2a\xcf\x59\x70\x2f\x98\x9e\xaa\x85\xe2\x00\x6a\xd6\x26\xa6\x74\x0c\xc9\x4b\xeb\x53\x76\x79\x69\x7d\x2c\xd7\x1f\x25\x83\xa1\xc3\xac\x52\xf6\xce\x18\xec\xe7\x53\xed\x33\xa4\xf2\x8d\x3e\x73\xd0\xd3\x90\x52\x81\x06\x06\xa4\x9b\xb6\x83\x30\xd3\x36\x6d\xa0\x15\x50\x5d\x01\x58\xc1\x7e\x72\xa5\x93\xe0\xb5\xa9\x2b\x9d\xa0\x44\x75\x6e\x01\x0e\x03\x3f\xa9\x14\x4c\xd5\xe9\xd4\x4e\x66\x73\x45\x99\x3e\x1c\xc9\xfc\x44\x0c\x2c\x30\x24\xc4\xc0\x02\xe9\x3c\x56\x44\x00\xca\xa9\xa6\x83\xba\x3b\x55\xd2\x3c\x06\x39\x34\xcd\xff\x50\xb8\xd0\xac\xc2\x30\x55\x2c\xd3\xc6\x2f\x52\xc1\x94\x45\x00\x9c\x7d\xa6\x85\x1e\xd4\x43\xcc\xbd\xb4\xb3\xc9\xc0\x21\x82\x59\x29\x41\x07\xfd\xa9\x25\x0a\x61\xac\x5a\xa2\x10\x4a\x23\x36\xb7\x9f\xe0\xe6\x13\xa7\xb6\x19\xe0\x14\x0a\x7f\xa9\xb5\x13\x64\x2a\x99\xf7\xac\xc9\x73\xeb\xbb\x7d\x93\x27\xff\x53\x54\x19\x98\x1c\x52\xd8\x3e\xf9\xe0\xbd\x60\x43\x4b\xed\x61\x26\x93\xea\x3a\xa0\x27\xfc\xe4\xca\x0c\xa8\x61\x6a\x64\x06\xf2\x8c\xa1\x11\x7c\x35\x35\xde\x12\xf1\x01\x93\x00\xad\xf0\x03\x33\xd6\x86\xf5\xf7\x31\xad\x3d\x68\xf7\xa1\x48\xc1\xf8\x3f\x88\x16\x9c\xa9\x1f\x35\xe5\xc1\x29\xd9\x67\xa6\x58\x42\xfe\x56\x6f\x1b\x41\xb7\x9b\xd6\x44\x51\x8b\xc1\xef\x77\x5a\x73\x9b\x43\xf6\x24\xd0\xe8\x5b\x07\x08\x69\x95\xce\xd9\x65\xee\x0c\x0f\x00\x09\x54\x0a\x86\x9a\xe7\x0e\xe9\xa7\x35\x77\x29\x74\xc5\x78\x6d\xf1\x9a\x99\xa7\x57\x84\x45\x35\xf4\x79\x9c\x30\xb9\xd1\x46\xbb\xe5\x2c\xce\xb8\x51\xfb\x63\x80\xe4\x13\xb3\x0e\xce\xe2\x79\x96\x2b\x3b\x0a\x38\x0c\x3c\x7f\xf2\xce\x58\xea\x07\xf8\x05\x37\xc6\xfa\x1d\x09\xe1\xe6\xd0\x17\x4e\x99\x88\xa5\x1a\xa4\xc6\x8c\x9c\x3b\xec\xc8\x7c\x6d\xcd\x48\xa1\xa9\xa2\xda\xff\x2b\xb2\xc6\xb1\xe6\x13\x21\xd0\x9f\x13\x69\x0d\x72\x65\x46\x01\x62\xcc\x66\x2c\xe6\xb5\xb6\x18\x1b\x08\xb1\x2b\x23\x30\xcf\x33\xd5\xf9\xc1\x1e\x40\x78\xa2\x37\x06\x60\xdd\x98\xb9\x82\x4c\x7c\xf8\x5c\x3b\x2e\x80\xb5\xe4\x79\x96\x8f\x19\xaf\xdf\x2f\xe2\x84\x51\x52\xcd\xbe\x54\x8c\x58\x5f\xb0\x69\x5f\xaa\x6b\x0a\x83\x5a\x4b\x62\xbb\x98\x00\x60\x5e\xcf\xf4\x71\x10\x14\x55\x96\x5f\x72\x36\xa9\xa9\x61\x0d\xa4\xbd\xc8\x00\x5b\x97\x95\x03\x83\xd0\x12\x26\x02\xff\x39\x39\xb0\x85\x01\x2e\xb9\x26\x6f\xaf\x0f\x9d\x2b\x79\xf6\xb5\x2c\xea\x38\x7f\x99\x29\xa9\x87\x0e\x79\xb3\xd6\xd2\x0f\x03\x45\xa6\x31\x34\x95\x38\x36\xcb\x01\xa3\xf6\x1d\xec\xb1\x05\x11\x8c\xf8\xbc\x99\x83\xb5\xf2\xb9\xe3\xbc\x24\xd2\x54\x6a\x81\x2f\xd2\xec\x96\x78\x41\xed\x0c\x01\xb2\x98\x29\x47\x5e\x3c\xb8\x7a\x41\xec\x34\xa2\x99\x19\xb1\xd3\x40\x5a\x4a\x8e\x1e\xb8\x03\xbc\x30\xf6\x17\x06\x99\xda\xfe\xc2\x20\x57\xab\x03\x07\x90\xab\xd5\x01\x91\x7c\x61\x96\x7f\xd8\x5c\xbc\x30\xc6\x18\x20\x68\x66\xac\x31\x43\x4c\xe3\x16\xe6\xd3\x0d\x98\xc6\xb3\xc9\x84\x4e\x84\xcc\x65\x38\x41\xaf\x17\x9a\xe1\xc0\x3c\xf6\x82\xd8\x4d\x04\x03\x66\xc4\x6e\x02\x69\x69\x2b\xeb\xc3\xd4\xcb\xb2\x8c\x68\xbb\x98\x4f\xce\xfd\x81\x18\x59\x31\x51\x07\x23\x87\x29\xa2\x94\x72\xf7\x36\xe8\x83\x53\xd6\x8b\x9f\x95\xba\xdf\xeb\xc3\x91\x65\xf6\x07\x01\x00\x0d\x89\x59\x04\x04\x43\x46\x01\x63\x04\x28\xdd\x48\x76\x64\x1e\x4f\xb3\x22\xe6\xb7\x2f\xac\x06\xcf\xe3\x69\xae\x79\x0f\x6d\x84\x02\x26\xf4\x76\xfa\x75\x36\x8f\xe5\x61\x67\x0f\xb5\xce\x17\x73\x3b\x5b\x6e\x3f\x06\x03\xd8\x7f\x66\xf3\x85\x3c\x88\xed\xa1\x6f\xc0\x8b\xf9\x22\xcf\xb4\x73\x05\xd8\xda\xb3\x22\xd1\x7b\x20\xbc\xc2\xa1\xcf\x8b\xc0\x9e\x44\xe8\x34\x00\x7d\x13\x00\xda\xc5\xf6\x10\x94\xd4\xac\x28\x09\x4b\x40\x53\x8a\x3a\xd1\x2c\x0c\xbe\x44\x64\x00\x04\x65\x5e\x98\x64\x82\xb9\x6c\xaa\xcd\x56\x28\xe5\xdc\xb3\x91\xb1\xc4\xe3\x4e\xc9\x2f\xc0\xe0\xc5\xc8\x65\x0f\xf4\x4e\xcf\x8a\x3a\x8f\xf9\x4c\xee\x98\x62\xb0\xf3\x65\x45\x6d\xfc\x35\x62\x30\xdf\xbc\x28\xae\xb2\x2a\x83\x23\x19\xa5\x9f\xab\x39\xa2\x72\x88\xe7\x50\x0f\xfc\x36\x5f\xbc\x31\xca\x19\x74\xb7\x34\xca\x19\x8c\x0b\xb1\x1c\x81\x33\x49\x46\x01\x13\xc0\x70\x84\x15\xec\x96\xb3\x96\x08\x83\x0e\x96\xc6\xcc\x70\x08\x58\xc6\xce\x00\x69\xb7\x4b\x99\x5e\xc1\x6f\xc0\x78\x9c\xb5\xe4\x18\x4c\x72\x23\xc7\x90\xe3\x2a\x67\xe8\xab\xac\x20\x56\xe9\x5d\x09\x52\xab\x2c\x1c\xe3\x08\x80\x5a\xb3\x27\x3b\x0a\xa0\xac\x37\x93\xa1\x84\x5c\x59\xe5\xd6\x16\x29\x6b\x73\x94\xda\x1f\x60\x3e\x85\xc0\x54\x6c\xbe\x18\x7a\x0b\xf1\x90\x11\x00\x6c\x21\x5f\x68\x83\x0a\xf4\x57\x1b\x54\x44\xea\x67\xb2\x5a\xc2\xd1\xfa\x1f\x14\xb0\x0b\x18\x5a\x7e\x1d\x42\xbe\x16\x5f\x22\xf9\xb3\xab\xef\x0b\x96\xff\xc3\x95\x5a\x82\xbb\xfe\x30\xf3\x13\xfd\xaa\x7e\x6e\x8d\xb2\xe0\x8e\x3f\x5a\xa3\x2c\x58\xfb\xe7\x96\xce\x28\x9a\xf6\x47\x6b\xe8\xa0\x4b\x15\xe3\x86\x22\x07\x80\x47\x20\xa0\x45\xff\x4c\x89\x06\xdd\xa6\x44\x13\x80\x7f\xc5\x8b\x85\x66\x2c\xc1\x68\x5f\x08\x60\xac\x01\xda\xb8\x28\x98\xe4\x5f\x74\x73\x09\x77\x4a\xbe\x58\x90\x7d\xc0\xd1\xe4\x84\x42\x0c\x39\x45\xf2\x5f\x2e\x39\x05\x2f\x7e\x71\xc9\x29\x7a\xf0\x65\xca\xd5\x65\x95\x1e\x3a\x77\xfc\x8b\x78\x4c\x0a\xea\x7c\x21\x1e\x93\x22\xfd\x2f\xb2\x69\x12\x13\xe1\x0b\xd9\x34\x89\xf4\xbf\x5a\xe3\x21\x58\xf0\x4b\x6b\x3c\x00\xb7\x35\x1e\xd0\x5b\x17\x0a\x57\x42\xf2\x27\x46\xa1\x49\x45\x27\x5f\x52\x73\x00\x70\x51\x6e\x41\x62\x80\xd8\xde\x13\x3b\x00\x9b\xf2\x58\x59\xee\xc0\xf6\xfe\x32\x9e\x8f\x53\x3d\x4a\x63\xc0\x21\x90\x31\x42\x94\x87\xdc\x3e\x1c\x23\xbc\x24\xe9\x58\xe6\xeb\xcb\x7f\x7d\x09\x50\x76\x3a\xfc\x24\x37\x5b\xc2\x5d\x28\x01\x6e\xe5\x1a\x43\x12\xb4\x25\x8f\xe5\x1d\xa8\x9b\x18\xab\xe5\x5c\x7a\x87\xf5\xd9\x8e\x02\x4c\xa4\x3c\x38\x04\x63\x04\xf1\xd1\x82\x1d\xcc\x4b\x92\x66\x40\x39\x43\xb8\x9e\xc4\x37\x25\xa4\x12\xa2\x84\x38\xaa\x80\x02\x92\x2f\x14\x44\xb5\x64\xa1\x5d\xca\x14\x8e\xde\x3c\x1c\xc2\xe6\x41\x80\x6a\xb5\xc7\x8e\xb1\x3f\x75\x9c\xa9\xcf\x60\xea\xe7\x4f\x28\x04\x8b\x56\x9a\x84\xac\x49\xf9\x5e\xc6\x71\x2a\xd3\x95\x06\xe8\x7d\x47\x3e\x36\x7b\x23\xe0\xc4\xfc\x47\x02\x80\x8e\x9b\x3b\x6a\xfb\xfb\xd0\x98\x31\x47\x75\xfa\x4e\x25\x44\xf6\x39\x26\xbe\xa8\xf5\xf6\x60\x2c\x01\x55\xae\x46\xf4\x60\xa2\x41\x8d\x02\x89\xa6\xbd\xa4\x87\x6e\x60\x79\xcc\x2d\x08\x03\x1c\x3a\x79\xa1\x6c\x0b\x92\x20\x44\x91\x64\x08\xb2\x26\x4f\xc0\x29\xf0\x0e\xbe\xd7\x53\x1d\x3f\xd6\x53\x1d\x92\x69\xa2\x6e\xd2\x82\xa8\xc8\xe9\x1d\xba\x44\x01\xb4\x32\x0e\x64\x49\x79\x4a\xce\x31\xf7\x11\xd4\x54\x06\xb6\x83\x25\x6b\x8d\x1b\x5c\xb4\xf5\x2d\x5e\xb8\x16\x93\xeb\x9d\xa0\xa8\x15\x7c\x18\x04\xbf\xff\x28\x68\xaa\xce\xa8\xe4\x4c\x51\xfe\x0d\xfa\x34\x5a\x72\xb2\xb3\xf5\x40\xde\x75\x9c\x2c\x34\x30\x76\x3d\x2f\x34\x66\xcb\xc1\x01\x9c\xb0\x75\xe9\x86\xd9\x90\x21\xc5\x77\x4f\x19\x84\x98\xa4\x04\x17\x60\x74\x62\x70\xba\xb0\xa7\x33\xe1\x24\xdc\x3a\x73\x87\xa3\x13\x95\xd9\x3a\x72\x3f\x6c\x65\xaa\x06\x0e\x65\xce\xb3\xbc\x54\xc0\x21\x6c\x94\x45\xab\xa5\xb3\x81\xb9\x9b\x86\x07\xff\x24\x4b\xf9\x45\xf6\xc1\x68\x2c\x32\x74\x6f\xb5\x57\xc3\xbe\xcc\x69\xed\xe3\x60\xa7\xdc\xe9\xb0\xa2\x73\x5a\xdf\xa4\x3b\xad\xd2\x2a\x97\xd8\x90\x25\x1b\xa8\x33\xc7\x34\xb3\xba\x6c\xb2\xa9\xb5\xa5\x4c\x69\x53\x2c\xca\xc2\x3e\x4d\xfa\x4e\x58\x4e\x09\x3b\x06\x2e\x19\x30\x1e\x1a\x90\xed\x11\xa1\x28\x5a\xcf\x38\x63\x96\xc3\xd5\x58\x7d\x22\xaf\xf3\x99\x51\x03\xe5\x86\x66\xc9\x4f\xc6\x03\x07\x4e\x37\x90\x63\xd5\x2a\xf4\x8e\xb1\x5b\xd1\xd7\x79\x2d\xf6\xe9\xe9\xac\x16\xf3\x1c\x38\x59\x6a\xc4\x55\xf3\x5a\x1f\x0c\xac\x0c\x8b\x41\x4e\xd5\x01\x39\x4a\x36\xa6\xad\xa2\x48\xa0\x4b\x6b\x5e\x13\xcb\x0f\x0e\xad\x6d\x1e\x46\x56\x24\xe6\xe1\x03\x04\x38\xf9\xc6\x3c\x0c\xfe\x89\xb9\x6d\x1e\xee\x1b\x90\x32\xad\x1d\x0c\x11\x66\xda\x66\x04\x3d\xab\x8c\xfd\xf9\x50\xe2\x55\xb6\xb5\x6c\x57\x42\x89\x71\x6c\x4f\x82\xd8\xa5\x3e\x70\x55\x3d\x16\x40\x03\x45\xb2\xbc\x64\x55\x05\x63\x6a\xd9\x2d\xf1\x0b\x91\xd7\x32\x75\xee\xc9\x0c\x1b\x7f\x5f\x55\x6b\x2a\xdd\x57\x98\xc6\xee\x19\xc7\x92\x04\x15\xb1\xbe\x0d\x24\x5a\xdb\x0e\x9a\xca\x1c\xcb\x08\x0a\x32\xd9\xf2\x04\x85\xc1\x9e\xb8\x32\xe5\xa5\xab\x0c\xc2\x80\xb8\xca\x20\xac\xcc\x53\xab\x13\x53\x6d\xe0\x86\xc6\x12\xc7\x51\xa8\x7a\x16\xf3\xd4\x12\x50\xb3\x98\x37\x16\xdf\x09\x80\x5a\xe8\xe1\x82\x5f\x3e\x1b\xe7\xfa\x82\x2b\xcc\x19\xa2\x4c\x42\x0b\x88\x32\x09\x69\xa2\xdb\xa0\x48\xd3\xe4\x87\xae\xe9\xc3\x04\xe0\x42\xf0\x87\x54\x23\x81\x1e\x91\x2f\xdd\x55\x06\x39\x80\x34\xfe\x10\x8c\xb6\x79\x6e\x9c\x81\xc0\xb9\xee\xe5\x3c\x23\xfb\x6d\x20\x19\x85\xc0\x56\x32\x9f\x97\x4d\x55\xc7\xc9\x4c\x39\x1f\x8e\x0d\xd4\x82\x90\xc3\x80\x43\x99\xa6\xcc\x8b\x30\x6d\x96\x86\x7e\x1a\x4b\xeb\x01\xe6\x5e\xda\xd9\x64\x9a\x22\x02\x39\x0c\x80\xd1\x2b\x89\x82\x9a\x20\xc0\x18\x04\x61\xbc\x4a\xa3\x1d\xc9\x4f\x84\x5c\xb3\xc8\xb5\x0f\x5b\xd2\x4e\x2f\x45\x95\xd1\xfa\xe2\x80\x14\xe5\xae\x24\xfb\xe0\x03\xbb\xda\xad\x71\x9f\x14\xda\xfe\x36\x96\x25\xcf\xe3\x45\xa5\x84\xc9\xfe\x24\x91\xd0\x36\xfe\x9e\x2c\xad\x5d\x8f\xca\x69\x7f\x03\x63\x51\x96\x0b\xd7\x45\x1f\x35\x53\x95\x41\x3d\x01\x63\x6c\x80\xf6\x45\x39\x44\xed\xbe\xb5\x0d\x1a\x22\x9a\xb3\x0d\xc2\x91\x20\x6e\x2a\x03\x84\xd0\x7b\xfa\xb0\xa3\xce\xcb\x6b\x73\x11\x0c\x0c\x2d\x79\x79\x8d\x66\xd6\xcf\x50\xdf\x35\xe3\x2d\xed\xe9\x50\xe5\xb4\x17\x7b\x1c\xa6\xaf\x92\xe7\x13\xa4\x2d\xb9\x5e\xaf\x41\x2a\x88\x0a\x78\x4e\xe4\xd8\x4d\x5f\xfe\x54\x66\xfc\x43\x14\xcb\xe4\x9e\x05\xea\x05\xdc\x9e\x91\x30\x8d\xb8\xd6\x33\xa5\x7e\xc0\xe9\x64\x84\xde\xab\xab\x19\x3d\x54\xe3\xb9\x9e\x9b\x03\x58\xff\xf2\x2a\x36\x4a\x2e\x6e\x45\x5a\x5b\x46\x58\x75\x89\xf5\x05\x44\x96\x51\x68\x61\xe5\xb5\x93\xb9\x23\x8a\x73\x7a\x54\x94\x4a\x80\x5e\x49\xb1\x1d\x97\x63\xb5\x7f\xa8\x88\xda\x7d\xa0\x00\x5a\xed\x06\x89\x42\xed\xd3\x60\xa4\xc8\x2d\x08\xd4\x49\x0e\x9f\xf6\x30\x6d\x0e\x9f\xa0\xa3\x82\xe0\xdf\x8b\xd2\xce\xd4\x8f\x9a\x4a\xc4\xbc\x76\x57\x40\x50\x7e\xa8\xde\x93\x5b\x9a\x10\x16\x9a\x93\x63\x26\xfc\xca\x3a\xa0\xc2\xcf\xb4\x80\x04\xfd\x55\xa4\x19\xd5\x7f\x72\xe2\x3e\x99\x60\x67\x38\x39\xf7\x82\x62\x1b\x9e\xd2\x6d\x46\x8c\x30\xea\x55\x09\x68\xee\x11\xd4\x81\xd1\x05\xc8\x11\x94\x81\x2a\x9b\xf0\x0d\x04\xf0\xa1\xfe\x31\x03\x4c\x2b\x6d\x7e\xd0\x93\x69\xa6\x02\x86\x20\xe8\x95\x12\xd0\x87\x60\x9f\x9d\xc7\x7a\xeb\xbb\x87\x49\x2d\x6f\x28\x84\xa8\xe8\x70\x54\x88\x50\x2a\x34\x76\x34\x54\xeb\xec\x31\x56\xc0\xbf\xa8\x69\xb1\x0b\x17\x30\xe7\x89\x31\x8d\xc6\xb0\x1a\xbf\x32\xfb\xbe\x04\x10\xf4\xbe\x0f\x92\xf4\x52\x0d\x54\x63\xfc\x31\x07\x60\xfb\x98\xb3\xb8\x6a\x38\x4b\xad\x00\x4c\x82\xed\x5e\xb1\x34\x6b\xe6\xe4\x64\xa9\x07\xae\x62\xaf\x58\x9e\x67\x05\xf1\x6b\x11\xa3\xfc\xca\x8d\x52\x02\x04\x74\x95\x07\xa8\x6e\xa6\x28\x04\x76\xba\x79\x96\xa0\x8f\xd5\x0d\x98\xc5\xe7\x59\x6a\xc2\xf2\xcc\xb3\xd4\xb0\x35\x98\xbc\xf4\x05\xcf\x01\xb8\x1c\xcd\xb3\xd4\xba\xfc\x0b\x57\x04\x54\xb8\x25\x70\x1b\xa6\x97\x06\x60\x6e\x03\x40\x87\x17\x3b\xd0\x90\x46\x91\x54\xb4\x11\xee\xb2\x92\x9b\xab\xe0\x88\x31\xcf\x13\x7d\xbd\x6e\x0c\xe9\x54\x5f\x09\x82\xb1\x2e\x16\xee\x17\x65\xaa\x1d\x3c\x07\x30\xf2\xaf\x5a\xd2\x1e\x86\xa4\x25\xed\x61\xa4\x17\x56\x59\x2d\xc9\x25\x7a\xf3\x8a\xb8\xbe\x20\x56\x2d\x63\x2f\xa9\x58\x6a\xaf\xb0\x63\xbd\x21\x84\x46\x9a\xab\xd4\x18\x53\x62\x8e\xeb\xdb\x76\x70\xcb\x70\xde\x38\x80\x22\x1e\x2b\xf7\x06\xbc\x8a\xf4\x9a\x5a\xcf\x60\xb5\x2a\x2c\xc8\x0e\x40\x48\xb0\x2f\xb8\xfd\x31\x00\xa8\x3e\x5e\x3b\xc4\xa4\x89\x2a\x05\x81\xdd\xb0\x3e\x1a\x4d\x8a\x82\x65\xc7\x7a\x7d\xf5\x35\x0d\x20\x85\xa0\xba\xd1\x87\x14\x7b\xe0\xff\x2c\x41\x6a\xa3\x09\x67\x62\x00\xb3\x90\xc6\x78\x0c\x7d\x03\x71\x32\x0a\x2b\x86\x81\x69\x80\x1d\xb9\xc0\xc0\xc9\x05\x46\x41\x8c\xd7\xd4\xb0\x03\x0e\x7c\x85\x05\x39\x00\x1c\x62\xd8\x01\x6b\x69\x61\x41\xf6\x00\x42\xee\xda\xee\x2b\x00\xbd\x6c\x4b\x9a\x60\x6e\x40\x0e\xa0\x78\x2d\x11\x52\xc8\xd6\x12\x01\x92\x54\x22\xc0\xf0\x31\x73\x34\x73\x08\xc7\x3d\x02\xa2\x4d\x83\x50\x37\x23\xb6\xc1\x7d\x85\x61\x94\x04\x04\x29\x81\x0b\x54\x64\xd4\x7f\x53\x37\xf5\x35\x9b\xc6\x75\x76\xc5\xda\xb2\x05\xce\x6f\x55\xf6\xd9\x2c\x4b\xbe\x3c\x94\x5b\xac\xcc\xfc\xc8\xf8\x6d\x27\x82\x1d\x13\x07\xf8\x91\x55\x4c\xaf\x28\x60\xe6\x2e\x2c\xaf\x52\xd2\xea\xaa\x66\x69\x97\xbf\x0a\xba\x72\x60\xbe\xbd\x75\xc3\x75\xf6\x35\xbb\x56\x27\xd9\x9f\x0a\xa8\x80\xfa\x8d\xee\x68\x48\x45\x41\xaf\x5d\x61\x2a\xa4\x71\xe1\x0a\x53\xe8\x13\x71\xf0\x32\xec\xa0\x7d\xc0\xc0\xf5\xb6\x30\x8e\x5d\x3a\x7d\xd9\xf9\x95\xe3\xe0\x45\xb3\xaa\x0e\x28\x71\xa2\x22\xa8\x44\x3b\x02\xc6\x26\x4e\x2f\x46\x10\x4c\x35\x70\x82\x49\x6e\xa5\x7f\xaa\xaf\xc8\x47\xaa\x68\xe2\xc6\x01\x4b\x61\x41\xfc\x38\x12\x04\x68\xe5\x3a\x86\x1b\x76\x85\x52\x07\x91\x01\x32\x7d\x3c\x96\x60\x52\xc9\x19\xd8\x31\x14\x9a\x39\x90\x9f\xc8\x96\x13\xb2\xc9\x96\x13\xd2\xd4\x9c\x8e\x00\xd2\x1c\x98\x68\x64\x81\x00\x52\x10\x5b\xa8\xe9\x95\x5e\x73\x21\xb2\x5e\xd1\xb2\x76\x42\xd1\xae\x65\x53\x96\xdf\x65\x83\x43\xd2\x74\x9a\xe7\x90\x48\xc6\x90\xa3\x6a\x24\x96\x1c\xda\x2e\xc7\xa0\x43\xb3\xaa\x6e\xa8\x66\x7d\x6c\x83\xd9\x75\x13\x2c\xc2\x1f\xc0\xfe\x44\x2f\x35\xfc\x91\xd7\x56\x49\x46\xa7\x1c\xb0\x58\x01\x14\xdd\x60\xd7\x5a\xbc\x34\x2c\x13\x9b\xda\x88\xbe\x00\x13\xab\xfc\x91\xb3\x58\x8a\xba\x1e\xc8\xa9\xd7\x65\x01\xb0\xac\x98\x6a\x89\x21\xd7\x81\xd6\xaa\x3c\x01\x7c\xed\xc3\x02\x8b\x09\x09\xa8\x05\xed\x50\x57\x05\x13\xcc\x6b\x45\x43\x18\x48\x38\xbd\xe6\x0e\x9b\x99\xd7\x65\xbd\xf2\x72\xdc\x1e\xe6\x3b\x77\x4c\x0e\x25\x94\x1a\x9b\x7a\x04\x66\xbb\xfd\x1b\x61\x56\xd6\xa7\x6d\x91\x53\xd6\x8e\x5c\x9b\x58\x50\x5a\x09\x48\x11\x93\xd5\xf6\xed\xa3\x55\xad\x10\x9a\x1d\x28\xd4\xdb\xef\xd0\xca\xe9\x70\xf8\xeb\xf8\xde\x32\x7a\xc9\xa1\xe9\xf4\xec\xa1\xdf\xb6\x5d\x7c\x0c\xf3\x94\xb5\x39\x84\x3f\x54\x00\x7a\x0a\x6f\xa3\x9a\xc3\x78\x1b\x7e\x15\xb7\x0a\xd1\x21\x41\xc1\x90\x81\x20\x75\x4b\x64\x22\x07\x7b\x95\xd9\x99\xb6\xbe\xc3\xfe\x0c\xf3\xc3\xc9\xa2\x1d\x64\x89\xca\xb7\x67\xab\x04\x59\xe3\xdc\x33\x70\xc7\x78\x79\x60\x72\xac\x15\xcf\x6e\x5c\xa7\x89\xd2\x45\xb1\x86\x4d\xb2\xe2\xea\xf5\x36\x8e\x2d\x46\xee\x5a\x78\xe3\xb8\x4f\x07\xc0\xac\x01\x89\x02\x98\x11\x31\x20\x3d\x22\x4c\x83\xf4\x88\xc8\xe9\xf9\x96\xb3\x84\xa5\x7a\x4b\x7c\xd0\xb3\xc1\xb4\x9b\xb1\x35\x4c\x0a\xc3\xa5\xc6\x80\xc9\x22\xde\xb1\x2b\xc6\x2b\xe6\xcc\x6f\x39\x52\x78\x8b\xb3\xc5\x09\x69\x8f\x56\x61\x21\xa9\xd2\xc7\x1d\x79\x56\xf5\xb2\x63\x78\xf9\xe2\x7d\x33\x36\xb7\xc6\x0e\xac\x0e\x50\x04\xab\x80\x81\x9d\xbf\x10\xbd\xd0\x11\x84\x7a\x5d\x45\x20\x8a\x55\xc8\x50\x62\x58\xf5\x0f\xf4\x62\xa0\xb3\xe8\x47\x07\xaa\xd8\x26\x49\x18\x4b\xf5\x98\xf4\x6d\x30\x1d\x93\xb1\xdd\x1e\x89\xd1\x1e\x13\xa7\x08\x8b\x3f\x6d\xaa\xd8\xfd\x3d\x18\xda\x4d\x6e\xf7\xf4\x40\x8a\x35\x4b\x30\xf7\x09\xcc\x92\x44\x3b\x24\xc3\x95\xb1\xb0\x21\x50\x99\x56\x71\xb2\x8a\x8e\x45\x04\x56\xdb\x45\xcc\xe3\x3c\xd7\x8e\xff\xb0\xb2\x14\x0b\x7b\xa5\x29\xc8\x75\xae\x78\x92\xea\xe0\x91\x85\xf1\x81\x1b\xf4\xcc\x34\x2c\x16\x65\x4e\x42\x31\x61\x35\x9c\x4e\x92\x62\xc1\x93\x86\x51\x9e\x2f\x48\xfc\x94\x03\x0d\xd0\xb6\x6b\x32\x7d\x44\x46\x07\x94\xc7\x5c\xdd\xab\x3b\x1c\x0e\x6d\xb8\xd2\x9c\x40\xe7\xe3\x44\x29\x9b\x28\x0c\xad\x5c\x11\xf5\xa5\x7d\x00\x0a\xdf\xbf\x6b\x29\x51\x58\x0a\xd1\x48\xc6\x0a\xc0\xe8\xbc\x2a\x74\x88\x1c\x60\xca\xa2\x4a\x08\x0d\x24\x84\x75\xb0\x66\xcb\xd5\xe5\x10\x71\x9d\xdd\x3f\x6c\xdc\xaa\x59\xc9\x6b\x47\xc7\x41\x60\xe7\x38\x93\xbd\x4d\x5f\xa6\x19\xe5\xb6\x82\xc6\x0a\x96\x90\x56\xe9\x2e\xb3\x54\x97\x26\x0e\x11\x0a\x04\x00\xe9\xad\x32\xc3\x96\xaa\xd8\x45\x83\x83\x1d\x99\x56\x7b\xff\x84\xac\xa3\xa4\xa8\x03\x05\xe8\x14\x0a\x32\x43\xb7\x96\x62\x6b\x7d\xd6\x29\x3a\x71\x06\x44\x4c\xf0\xcb\xf6\x08\x14\x3a\x8c\xd2\x00\x2c\xf4\x22\xad\xdb\xba\x67\xa1\x31\x3a\xb1\x05\xa0\x53\x1a\xc8\x0c\xd3\xd6\x43\x0a\xbc\xec\x28\xba\x36\x57\x48\x60\x3e\x9b\x50\xd3\x10\x61\xa1\x30\xe9\x09\xa6\xcd\x89\x1c\x7e\xdf\x0a\x4d\x2b\xf5\x66\x9a\xa1\xdb\x83\x8a\x6b\x47\xc4\x5a\xc9\xda\x56\x8e\xf9\x0a\x16\x0f\x6d\x5d\x02\x96\xd7\xd6\x25\x4c\x09\x6e\xfb\x1b\xfe\x62\xea\x22\x25\xde\xf9\x2e\x1a\x72\x3d\x18\x74\xa0\x2b\x12\xf4\xc9\x50\xee\x8a\x84\xa9\x03\x95\xba\xb8\x3a\x21\x10\xa8\xe6\x23\xc5\x81\xd5\xfb\x23\xc5\x81\xe9\x7a\x45\xae\x45\x91\xd2\xf1\x8a\x06\x01\x3c\x27\x9e\x41\xc0\xa7\x57\x96\x73\x32\x94\x7e\x65\xf6\x79\x87\x3d\xfc\x8c\xb8\xbc\x90\xc2\xd0\x06\x6f\x01\xa8\x29\x9c\x64\x70\x52\xe2\x10\x21\x14\x95\x36\x99\x44\xf5\x4c\x0c\xf8\x9a\x5a\x70\x86\x12\xa2\x05\x21\x50\xfc\x9a\x58\x70\xf6\x14\x86\x11\x76\x08\x2a\x88\x3d\x44\x0c\xcb\x1b\xe3\xb8\x0e\xa1\x34\x4a\x93\x9e\x60\xda\x8e\x39\xf8\x46\xfb\xae\x83\x2b\x48\xa9\x93\x13\x95\x54\xd8\x31\x60\x6b\x3b\x15\x83\x6c\x6d\xa7\x82\xa4\x1b\xa2\xf0\x0d\x09\xed\xd4\x87\x3b\xc1\xa5\x05\xe9\x03\x44\xed\xe2\x63\x98\x4a\x26\xdc\x35\x46\x34\x2c\xd3\xaa\xd4\xde\x5a\x60\x04\x7d\x73\x6a\x5c\xc9\xc1\x39\xa2\x64\x04\x00\x9d\x9c\x98\xfb\x24\x70\xae\xf4\xc6\xb5\xcf\xc0\x67\xae\x7d\x46\x14\x6e\x5c\x8d\xf1\xbe\xcd\x1b\xe3\x2c\x0f\x03\x57\x9a\xf4\x04\xd3\xea\xa0\x0c\x0e\xa6\x4a\x73\xfd\xe4\x10\xcc\xe3\xe5\x6c\x2e\xa7\x18\x2c\x0b\xa5\x13\x54\xaf\xa4\x61\xd8\x62\x00\x90\xa6\x23\x06\x09\x4a\x77\x08\x1e\x8b\xa5\x71\x77\xef\x21\xe1\xf5\x69\x1d\x38\x54\xbe\x21\x9e\xf4\x10\xe9\xb3\xa4\x00\x18\x98\x39\x9b\xc6\x56\xbb\x08\x00\x4e\x8e\xde\x80\x99\x5f\x5f\x9f\x9f\x00\x0e\x05\x8d\x25\x48\x0f\xcd\x1e\xa6\x9d\x98\x92\x6f\x5a\xf6\x73\xc0\x73\xa1\xb0\x0d\x26\x27\xad\x70\x38\xf0\x66\xc1\x8a\x55\x51\x1d\x13\x9a\x6f\xe5\x00\x13\x2d\x98\x0e\x65\x07\x5e\xde\xe5\xc2\x89\x6a\x59\xd2\xc8\x71\x30\xd0\x6a\xbf\x02\xde\xbd\xa5\x5e\x32\xa1\x38\xae\xdf\xce\x48\x31\xc9\xb4\x11\x7f\x47\x01\xca\x89\x03\xc2\x8b\x51\x70\xbb\xa6\xe4\x29\xb0\xc1\x0d\x8e\x31\xcf\xa6\xe6\xb2\x01\xd0\x83\x6b\x77\x99\x5d\x4c\x5b\x8f\x73\xec\x03\x48\xbf\xcd\x01\x3c\x60\x05\xf4\x7c\xd3\xd2\x41\xa0\x1e\x72\xd6\xb0\x03\x58\xea\xae\xcd\x0d\xb8\x55\x94\x26\x3d\xc1\xb4\xba\xd3\x39\x80\x43\xe4\x37\x64\x15\x03\x9a\x91\x55\x4c\xa6\xe7\xac\x8a\xf5\x61\xf6\x1e\x7e\x43\x8e\xb7\xf7\x35\x96\x2a\x17\xc6\x55\x79\x98\x83\x58\x2b\x55\x0a\xf6\xd1\xe5\x95\x9e\x40\x43\x30\x7e\xbf\xb9\x62\xc6\x19\x0a\xd9\x1d\x40\x5c\x1b\x8b\x87\x29\x05\x6a\x07\x3f\x0c\xb2\x26\xc0\x6f\xe1\x9d\xb2\x19\xab\x94\x39\x11\xef\x0b\x0b\x8d\x0b\x07\x65\x4f\xa6\xa8\xfe\xb5\x8b\x30\x27\x69\x42\x1a\x80\x34\xb5\xf5\x6e\x04\x18\x85\xdb\x0b\x3d\xf9\x9a\xf2\x89\x05\x33\x42\x54\xcc\xa1\x85\x11\xa2\x90\x64\x3c\x01\x19\xf1\x7f\x30\x91\xc1\xed\x84\x6d\x4c\xcc\x95\xc7\x63\x0f\xee\x0e\x19\x2e\xc7\xf8\xed\x0b\xc6\x6b\xa6\x82\xd5\xf7\xe0\x2e\xc9\x5b\x57\xf2\x41\xb3\x5d\xc9\x27\x9a\xfe\xd6\x84\xc2\x05\x7a\x98\x50\xb8\x32\xa9\x5c\xd9\x81\x17\x16\x33\x19\xb1\x54\x9f\x64\x2d\x66\x3a\xe6\xe9\x1e\x9c\xee\xbf\xd5\xe5\x41\x5b\x75\x71\x98\xaa\x93\x99\x7b\x23\x7f\x61\xaa\x80\x2a\xf3\xb8\x50\x21\x7c\xf1\x6a\x18\x42\xf4\x6d\x31\x26\x41\xea\x1a\xbf\x42\x6a\x2a\xf2\x36\x0a\x2c\xae\x02\xa6\x4f\x19\x99\x04\x10\x9c\x81\x04\x79\x23\x6f\x53\xfe\x4c\xa5\xfa\x83\x61\xca\x00\xa2\x4f\x1c\x77\x25\x44\x07\x7d\x85\x61\xcd\x9b\x4a\x87\xd4\xbd\x81\x90\x06\x02\x67\x5e\xd8\x69\xc3\x41\x83\x3d\x09\xaa\xaf\x95\xff\x1c\x2c\xe1\x8b\xb9\xf9\xe2\x6d\x89\x77\x8c\x44\x37\xf5\x45\x23\x60\x5e\xb1\x92\x90\x4d\x1c\x34\xa9\x25\x55\xb1\x08\x63\xff\x3c\x04\xac\x06\xe3\xe8\xdd\x80\x7f\xe5\x82\xeb\xd3\x30\x10\xba\x6f\x15\x51\x40\x2a\xea\x6d\x21\x5c\x90\xa5\xbb\x42\xf0\x49\x13\x7b\x40\xcb\xe3\x09\x8a\x20\x5b\x45\xf9\x19\x4b\x64\xb8\x4d\xfa\xb1\x63\x9d\x01\xd4\x6e\xd3\x0c\xc9\x68\xed\xfe\xad\xa2\xac\xad\x3f\x93\x55\x93\x4d\xaa\x84\xd8\x5e\x5a\xb0\x40\x00\xd8\xe8\xf6\xb0\x76\x03\x8c\x78\x5f\x1d\x20\xcc\x2e\x4d\x6d\x34\xc6\x43\xf9\x05\x31\x97\x63\x0b\x48\x3c\x79\xe0\x13\x0a\x18\x2a\x8c\xca\x1a\x22\x6e\xfc\xca\x64\xeb\x8a\x53\xbb\x65\xed\x76\xe9\x40\xba\x3d\xa4\x17\x0d\xa3\x8b\x13\x83\x97\x93\x38\xd7\xd2\x75\xc0\x24\xcc\x68\x13\x43\xd0\x8b\x04\xac\x6a\x94\xb7\xc0\x10\x25\x86\x0e\xf9\x35\x80\x13\xca\xb7\xbc\x5c\x94\xbc\xce\xca\x42\x0f\x84\x03\x97\xd0\xe1\xbe\xfc\xba\x2e\x29\xde\x82\xb7\xc8\xd4\x70\x2d\x7c\xc1\x6b\xe7\x6d\x6b\x4d\x03\x86\x6c\xed\xab\x77\x01\x57\xcb\x1a\x20\x86\x4e\xc2\xea\xb8\x68\x8a\xc4\x6c\x5e\x04\xe4\xdf\xae\x54\x14\x73\xfc\xd2\x95\x8a\xa2\x5d\x97\xce\x65\xc8\xcb\xd6\x1c\x13\x24\xfb\x37\x99\x63\x82\x8d\x2f\xe9\xa8\xc3\xf2\xfd\xef\x56\x6f\xa0\xb4\x56\x6f\x84\x4c\xb8\x6c\xe2\x9a\xf1\x22\x33\xee\xd6\x70\x6b\x4a\x80\xc9\x8c\x47\x4c\xf4\xe5\x39\x56\xbf\x4d\xbc\x99\x09\x80\x50\x97\xfe\xe4\x89\x16\x7c\x78\x73\xa6\x13\x9c\xde\xb9\x11\x74\x35\xcb\xe9\x60\x88\x36\x16\x21\x3b\xde\x51\x3f\x01\x50\x8c\xb8\x05\xd9\x05\x48\xaa\x6e\xc7\x0e\xa0\xf3\xdc\xb9\x9a\x33\x04\x98\xf1\x59\x3c\x84\x82\x4d\x7a\x2c\xf3\xf5\x25\x9b\x81\x04\xe8\xe8\x6b\xbb\x12\x60\x6e\xdd\x1c\x02\x44\x5d\xa8\x19\x63\x11\x5c\x8b\xb2\xc3\xfd\x5d\x09\xd1\x57\x6c\x34\x40\x5f\x90\x01\xff\x20\xdb\x2c\x25\x01\xf2\x1b\x68\xc8\x3b\x72\x86\x09\x1f\x90\x5d\xd9\x40\xe2\x9b\x3b\x37\x4c\x42\xcc\x9d\x9b\x58\x42\xcc\x9d\x9b\x44\x42\xf4\x9d\x9b\x1d\xd5\x36\x72\xe7\x66\x47\x56\x5d\xeb\xfb\x34\x7b\x12\xc9\xdc\xc2\x51\xcd\x35\xc6\x31\x00\xd0\x4b\x38\x50\xbb\x75\x2d\x07\x6b\xaf\x33\x35\x1d\x87\x7b\x0a\x50\x10\xaf\x0b\xf8\x8e\x5e\xc3\x81\xa2\xe9\x35\x1c\xc1\x5f\xef\x08\x00\xfc\x87\x38\xbd\x97\x03\xcd\x53\xf7\x72\x96\x2a\x21\xb2\x2f\x30\x61\xee\xe5\x24\x12\x40\xee\xe5\x30\x0d\x52\xf7\x72\xe0\xc6\xc8\x3b\xea\x9a\x01\xbe\xf4\xdc\x82\x00\x73\x51\xd7\x0c\xd0\xa7\xb9\x05\xd9\x47\x88\xb9\x97\x03\xdc\x84\xf7\x72\x96\xf0\xbd\xbe\x27\x07\x9d\x32\xd7\xe4\x20\x49\xee\xe5\x40\x49\x69\x4e\x2f\xdd\x40\x59\xf4\xaa\x4e\xaa\x00\xdc\x86\x18\x1f\x45\x20\x14\x8b\x75\x9c\xb9\x44\xa6\xc9\xa5\xe6\xb1\x04\xd1\x4b\xcd\x0a\x4d\x0f\x9a\x28\xf7\x1d\xb3\xb3\xd5\x12\xb0\x0b\xa6\x17\x2e\x03\x16\x83\xd5\xe5\xdd\xe9\x4f\x24\xd1\x79\xa0\x31\x26\x39\xed\x78\x63\x24\xf7\xc3\xa2\x95\x8f\x71\x14\xb9\xe5\xc7\x0e\x6d\xb0\xfc\xd8\xa1\x63\xae\xe0\x05\xde\x32\x97\xd8\xa1\x27\xc4\x49\x1d\xe4\x10\x71\x52\x87\x9d\x37\x27\x4e\xea\xa0\x62\x72\xcb\x49\x5d\x94\xf1\x4e\x3a\xb2\xf5\x86\x31\x7e\xa1\x92\xb2\x80\x52\x5f\xd6\x04\xd9\x07\x8e\xb5\x1d\x57\x9f\x0e\x75\xa6\x73\xf7\x09\xa6\x71\xcb\x28\x3d\xb0\xd0\x5b\xd0\xd8\x0d\xe0\x6a\x70\x5d\xa7\x5f\x88\x7a\x6c\x2a\xa0\xf7\x9f\x86\xea\x43\xe7\x02\x94\x6e\x6b\xe7\x0d\xa8\x7d\x93\xdb\xbe\x02\x05\x5b\x5d\x9d\xdb\xba\x95\xb2\xdb\xce\x55\xcd\xd4\xbd\x78\xd6\x1a\x69\x72\x95\x88\xf8\x58\x22\xfd\x49\x9e\xf6\xa9\xc4\x91\x14\x39\xed\x8b\x50\x3b\x34\xcb\xbd\x9f\x94\xa8\xcc\x8e\x8b\x4d\x87\x2a\xaf\x75\x6f\xe9\x50\xf7\xd9\xbd\x9d\xb4\x47\x32\xe4\xec\x88\x07\x04\x66\x93\x4e\xf7\xb5\x7d\x41\x29\xd1\x1f\x75\x1c\x10\xba\x79\x4a\x1f\x1a\xba\x19\xd6\x1d\x25\x3d\x14\x1d\x97\x94\x20\x02\x86\xcc\x6c\x35\x33\x31\x79\xad\xf1\xdd\x71\xf3\x94\xb4\x62\x2a\xa3\xf5\xc9\xd0\xce\xb1\x87\x50\x85\x8f\xc4\x7b\x37\x3c\xab\x5a\x11\xf2\x40\x0c\xd2\x6b\x21\x30\xc0\x39\x71\x2a\x87\x41\xcd\xb5\x0b\x39\xc8\x97\xd6\x4d\x8d\xbe\x86\x5a\x90\x82\x3c\x35\x02\x6b\x0b\xbd\x46\x91\x22\xc0\x5c\xa3\x40\x0c\x72\x8d\x02\x24\x3d\xbd\x0a\xb0\x87\x00\x47\x19\x04\x12\x10\x65\x10\x0b\xa6\x97\x00\xb0\x64\xcb\x4a\x02\xe3\x27\x76\x65\x56\x88\x89\x43\x38\xcd\xe7\x58\x65\x20\x7f\x6a\x6b\x23\x5c\xe9\xe3\x0b\xfb\x24\x0f\xf4\x11\xea\xaa\x0f\xd3\xbf\x7d\xe9\x0f\xd8\xd3\x72\xb5\x87\x31\x69\x29\xa3\x20\x1f\x88\xab\x3d\x7e\xa7\xd7\x2d\x90\x92\x76\x92\xa3\xe3\xfc\x05\xfe\x34\x8b\xe0\xa1\x02\x70\x0b\x62\xb9\xb0\xc3\xe8\x5a\x73\x05\x5a\x45\x62\xf9\x1e\xca\x34\xa3\x9c\xcf\x69\x70\xdf\x03\x09\x30\xfe\x47\x87\xe0\x43\xf5\xae\xc9\xd9\x09\xcb\xe3\x5b\xf5\xb8\xc2\x21\xd8\xb7\x79\x93\x53\x17\x75\xf8\xfa\x46\xf5\x56\x7c\xf7\xde\x52\x77\x45\x7b\x2a\x0b\x22\x28\x52\x8d\x49\x47\x01\xc5\x38\x98\x42\x83\xde\x53\x0d\x05\x2c\x9d\x95\x05\xe9\x03\x8e\xfa\x22\x81\x7c\xd9\x43\x70\xd0\xa7\x07\x91\xb0\x84\xd2\x73\x48\x48\xea\xcd\xe1\x0e\x14\x45\x95\x1d\x86\xf8\x04\x32\x01\x1c\x13\xc5\x61\x17\x6b\x24\x00\xac\x83\xec\x41\xb1\x57\x66\x0f\xba\x87\x69\xb2\x07\x3d\x04\x88\xcd\x8e\x43\x80\x91\x8d\x1e\xd6\xac\x95\xab\x3e\xe4\x6b\xe5\x0a\x92\x69\x59\x2b\x43\x4d\xac\x00\x8a\x1d\x76\x65\x5a\x75\x1e\xae\x14\x54\x96\x2f\xec\xae\x84\x68\x15\xfe\x00\x00\x44\x67\x3f\x50\x18\xf6\x85\x99\x4a\x6a\x4a\x37\xe0\xf5\x2d\x9f\x66\x3b\x82\x9f\xd5\xb5\x39\x62\x81\x6e\x32\x2b\xb2\x7d\x7f\x4f\xc2\x0a\x1b\x70\xa3\x96\x59\xd0\xb0\xdf\xbb\x3b\x4e\x40\x72\x80\x60\xd4\xab\x5a\x41\x14\x2b\xb1\xb8\x21\x60\x0f\x94\xaa\xf7\xcf\xe9\xeb\x57\xd0\xa6\x19\x7d\xff\xea\x10\x70\x0c\xc6\x01\x62\xe8\x7c\x60\xca\x59\xc9\xeb\xce\x90\xec\x90\xd3\x79\x5d\xdb\x3d\xbd\x1e\x2a\x58\x97\xf1\x14\x8a\xe9\x56\x7c\x20\xcb\x8e\xed\x0e\x37\x11\xab\x99\x7c\xe7\x47\x30\xe0\xfb\x6c\xaa\x23\x3e\x82\x7e\x53\x11\x40\xa2\x01\x13\x05\x19\x28\xc8\x95\x0d\x31\xa7\x6f\x98\x24\x0e\xd9\x31\x42\xf4\x91\xfa\x50\xa6\x2f\x1d\x80\x0e\x43\xcd\x64\x5a\x3f\x90\xd7\x43\x80\x8e\x33\x97\xca\xb4\xbe\x60\x39\x41\x80\x76\xb5\x86\xe3\x8f\x2a\x9b\xd3\x25\x61\x07\x41\x34\x22\x1c\x34\xdd\x0d\xff\x00\x71\x57\xf1\x39\x2e\xc5\x6a\x30\xb2\x02\xdc\xc9\x94\xf3\xb8\x9a\xa9\x39\x0c\x9b\xdb\x6a\x6e\x47\x52\x86\x9a\xdd\x01\x9d\x67\xaa\xfc\xa1\x04\xe8\x20\x0e\x31\x26\xb5\x09\x2c\x91\x69\xed\xc8\x95\xe8\x9b\x3b\xef\xdf\x3c\x3b\x33\x1c\x08\x88\xe5\xa4\x36\x3c\x88\x90\x9c\x58\xfb\x27\x12\xa2\xe4\xf6\x0e\xa6\xbd\x91\xf7\x9d\x28\xaf\x75\x90\x04\x8d\x69\xad\xc0\xf0\xd5\x22\xd6\x76\xc5\x3d\x14\xb8\x00\x21\x11\xdd\x24\xd0\xb2\xef\x57\x97\xe6\x69\x41\x98\x09\x00\xd0\x47\x17\x43\xdd\x37\xf2\xac\xee\x00\x16\x62\x00\x68\xc4\x1d\x43\x84\x4b\xf3\xbc\x38\x34\xf7\x92\xb8\x55\x4c\x14\x40\x8d\x26\xce\x81\x4b\xdb\x83\x62\x42\x60\x9a\x31\x35\xa6\x6e\x45\x4f\x01\x74\x61\x03\x05\xa1\x0e\x5e\x04\x66\x0a\x43\x4c\x1a\xce\x17\x56\xa4\x15\x90\x8e\x88\x51\x28\x36\xba\x7c\xd2\x1c\x38\x55\x5b\x0f\xfb\x24\xd3\xf1\x43\x6b\xe5\x58\x1f\x0e\x74\xf6\x87\x82\x34\x62\x47\x75\x43\x69\x03\xc8\xae\x97\x0d\xed\x43\x75\xd9\xd8\xd9\xae\xbd\xe7\x7d\xcb\x50\x07\x93\xbe\xa5\x1b\xc1\xcc\x6b\x8b\xfd\xf6\xec\xa9\x6a\xdd\x22\x7c\x45\xf0\xbd\x7e\x80\x19\xd3\xf4\x41\x66\x95\x9e\x28\x00\xf0\x65\xcd\x63\xf0\xe4\xb0\xdf\x15\xa7\x59\xe6\xb4\x26\x95\x60\xdc\x0a\xe1\xbd\x39\xc2\x74\xd0\x45\x9d\x84\x1d\x47\xd5\x8c\x8d\x4c\x04\x47\x10\xcb\xd7\x07\xd3\xda\x71\x66\x4f\xa6\xcd\x27\x28\x8b\x9b\xf1\xbc\xc9\x35\xa8\x8f\x20\xad\x31\x80\xad\x40\x00\x74\x39\x31\x02\x88\x1c\x1c\xcb\xa6\x52\x39\x78\x88\x20\xea\x51\x84\x1d\x30\x10\xd5\x07\xcb\x61\x67\x8f\xc0\x2e\x69\x57\x3a\x1c\x13\x0d\xae\x79\xa1\x4f\x35\x0f\x81\x97\x4e\x2f\xcc\x19\x0e\xa8\xc8\x02\xa2\x5f\x7a\x4b\x77\x15\x44\xdf\x3d\x43\xfa\x24\xce\x49\xc9\x81\x84\x2a\xe5\x68\x2c\xd3\xce\x49\x09\x2c\x85\xb6\xcf\x24\xa0\x76\x3b\x4c\x92\x8c\xf6\x49\x09\x2d\xca\x76\x92\x94\x55\x13\xe7\x2a\x09\x71\x4e\x4a\x62\x05\x26\x27\x25\x7b\x0a\xe6\x6a\x83\x4d\xd2\xd2\xfd\x9a\x64\x76\x36\x8b\x2d\xf3\x52\xa5\xec\x45\x03\xb8\x34\xf3\xde\x4e\x56\x8d\xda\xa4\xed\xe1\x6a\xdd\x2c\xfa\xc0\xd7\x63\xac\x62\x21\xa3\x70\x0f\x30\x35\xc4\x14\x12\x5c\xfb\x84\x81\x74\x32\x8f\xd0\x61\xb9\xe4\x4d\x58\xd8\xd2\x0a\x08\x19\x45\x1c\x1d\xe2\x46\x86\x69\xcd\xbe\xfb\x32\x4d\xa6\xc1\x0e\x56\x63\x7b\x98\x12\x98\xc5\x74\xf2\xfb\x99\x3e\x72\xdf\x4f\x0e\x15\xc8\xb4\x42\x62\xd1\x4b\xbc\x48\xb3\x05\x9d\x6c\xb2\xf3\x66\xb2\x25\x12\xa0\x5b\x2b\x3f\x22\x93\x2d\xc1\x11\x5e\xb4\xdb\x4a\x66\x56\x5f\xe3\x98\x89\xb1\x4f\x60\x97\x0e\x75\xec\x29\x34\xa6\xc0\x4b\xa7\x6d\x64\x0a\x49\x52\x93\x6e\xef\x28\x88\x9e\x42\x50\x81\xe5\x33\xa5\x20\x5a\x78\x03\xf9\xa8\xcf\xd4\xa1\xc2\xb0\x6f\xcd\x57\xd7\x05\x51\xe8\x81\xa9\xbe\x4a\xff\xa1\x1b\x78\x02\xf0\x2c\x86\x86\x7c\xaa\xbd\xd0\xab\x63\x3e\xd5\x0e\x05\x20\xe1\xcf\x62\xe5\x33\x07\x77\x80\x6b\x9d\x84\xf1\xaf\xb5\xc9\x00\xdd\x0f\xce\xac\x8d\x1e\x60\x58\x90\x5d\xc0\x21\xbb\x33\x38\x4e\xaa\x2d\xc8\x10\x70\xb4\x2a\x85\x08\x5a\x8f\x82\x64\x6a\x1e\xed\x12\x54\xaf\x59\xae\x8f\x60\x87\x70\x34\x7c\xe6\x6e\x3f\xc4\x30\xd6\xee\xf6\x43\x8c\x77\x3d\x63\x9c\xc9\x87\x41\x06\xe0\x36\x02\x90\x49\xa9\x9f\xe8\x02\xe0\xd9\x0a\xa0\x09\xb6\x78\x80\x9f\x9a\x68\x8b\x1a\x50\xdd\x2a\x9f\xa8\xb4\xaf\x60\x57\x36\x24\x4b\xbe\xd8\xb7\x45\x0f\x14\xd8\x51\xe8\x5b\xf7\x0e\x77\x27\x3a\x38\x71\xeb\x52\xe1\x21\x16\x42\x9e\x2e\x41\xc8\x17\xe3\xca\x88\xf5\xb4\x6a\x79\xfe\xe6\xdd\x6b\xe4\x10\x06\x08\xf2\x4d\xa4\x1b\x30\x14\xd5\xee\x7b\x76\x54\xb8\x0e\x35\xc0\x72\x07\x1f\x2a\x68\xcb\x51\x7c\x57\xe5\x58\x5e\xe2\xd0\xae\x6c\xce\x2a\xad\x30\xc7\x38\x5c\x00\x93\x58\xb0\x1d\xd1\x16\x94\x1b\x10\x1f\x90\xd4\x01\x2e\x11\xc1\x0e\xe7\x5a\x97\x4c\x1d\x68\xc0\x4e\xb1\x2e\x17\x63\xc5\x4f\x43\xd8\xbc\xd6\xe5\x82\x5c\xeb\xee\x23\x44\xd5\x09\x03\xdf\x52\xce\xc7\x88\xe4\x28\xe7\xbb\x12\xaa\x1d\x3f\x62\xb0\x06\xd6\x65\xa5\x5b\x00\x23\x62\x1d\x9a\x03\x0f\xf2\x58\xd1\x02\xa3\xf2\x9f\xbd\x7b\x72\x72\x4a\x01\xb5\x65\x32\xdd\x05\xd3\x90\x82\x19\x53\x33\xbe\x07\xd5\xf6\xb6\xc5\xc8\x07\x9d\xce\xb6\xe3\x1d\x92\xa3\x8d\x95\x09\x01\x12\x07\x5c\xb4\x51\x75\xfb\xdf\xaa\x26\xe9\xc9\xba\xcb\x64\x29\xcc\x29\x95\xec\xe4\x62\x30\xcd\x9d\xf1\x6c\x41\xde\x7a\x96\xb3\x5c\x00\x0d\x9e\xac\xb8\xd2\xfb\xa7\x14\x01\xb5\x09\x76\x31\xc4\xcf\x16\xec\xab\x3e\xa5\x19\x82\x03\xf8\x59\x4b\xe9\x05\x32\xb5\x94\x5e\x51\xc7\x19\xb1\xe0\xec\x21\x96\x16\x46\x20\x20\x89\xe5\x01\x56\xf8\x9a\x98\x1e\xc0\x60\x76\x46\xa3\x63\xec\x61\x19\x14\x02\x6c\x7b\x9d\xdd\xe8\x2b\x78\x40\x96\xeb\x72\xc6\xe2\xb4\x75\xdb\x92\x99\xbc\xf6\xcd\x4a\xc1\xee\x1f\x88\x47\xac\xa0\x65\x43\x3c\x62\x31\x6d\xd6\x90\x3e\xe0\x9b\xb4\xa0\x42\x43\x96\x14\x95\x5f\x92\x78\xe5\x82\x26\x1f\xc6\x24\xa2\xa8\x68\x51\x43\x00\x60\x82\xfb\x40\x5f\x9a\x80\x0e\x35\x16\x44\x0c\xd6\x07\xe3\x8b\x2b\xc8\xd4\x18\x5f\xdc\x31\xe4\x6a\xb2\x0f\x21\x57\x53\x1d\x92\xf4\x79\x53\xc1\x68\x1f\xa8\xa7\x2d\x98\x92\x1b\x0b\xd2\x07\x08\x31\x7e\x42\xb3\xad\xd3\x3a\x68\xb7\xbb\x70\x1c\x00\x9a\xb3\x70\x08\x1e\xfa\x40\x3c\x65\x05\x4d\x1a\xe2\x29\x0b\x69\x72\x82\x07\x2d\x26\xef\x93\xc2\xac\x6c\xc8\x75\x61\x50\xc9\x1a\x1a\x54\x0a\x7a\x60\xbd\x8b\x99\x68\x88\x89\x43\x23\x61\xe4\x81\x3a\x28\x99\xc6\x80\x12\x1d\xf8\x40\x1c\x62\x41\xaf\x6c\x28\x00\x88\x2f\x9d\x12\xc1\x9f\xe4\x43\x91\x2a\x27\xc4\xcf\x3a\x49\x1d\x10\x27\x14\x4a\x3c\x10\x77\x15\xbc\xc3\x05\x11\x46\x9c\xec\x5f\x41\x02\x01\x80\xc4\xb1\x80\x63\xf0\x0f\x24\xfe\x31\x58\x86\x1a\x0a\x80\xcf\x5a\xf2\x17\x08\xd1\x92\xbf\x62\xae\x49\xbb\x1b\x79\xb1\x11\x8a\x5c\xc4\xae\x35\xae\xc3\x40\xf7\xc1\xc2\x4a\x09\x96\x6b\x49\x04\x1e\x14\x4a\xb6\xf3\x10\x24\x50\xa4\xf5\xd2\xa4\x04\xbb\xd8\x29\x82\x3b\x8e\x96\x81\x3d\x16\xed\x87\x1d\x91\x91\x16\x1d\xcf\x3a\x22\x47\x2d\x5c\xd2\x2e\x16\x1d\xc1\x95\xf6\x54\x4e\xdb\x7c\xb9\x0f\xa5\x18\xff\x22\x6c\xa1\x4e\xa7\x03\x99\x3f\xa3\x80\x0f\xd6\xc6\x3d\xde\x95\x38\x06\x24\x8b\x71\x0f\x1d\x35\x54\xad\xb5\xf8\xa5\x1c\x2b\x7d\x9e\x09\x53\xd2\x7a\xa7\x31\xd5\x10\x33\x35\x24\x8c\x4c\x0d\x20\x80\x39\x99\xeb\x23\x55\x29\x00\xa8\x49\x4e\x60\x60\x22\x7f\x68\x45\x55\x86\xb9\xd9\x5a\x2c\x60\x5e\xd1\xa7\x19\x41\x1a\xd3\xf8\xd4\x70\xe0\xd2\x58\x10\x90\x14\xe4\xc8\x67\x57\xa6\xf5\x09\x8f\x58\x8d\x1b\x22\xb3\xa1\xf7\x1f\xb4\x47\x31\xf0\xbd\xf6\x28\x86\x94\xfd\x92\xa3\x18\xc0\xab\xb8\x98\x72\x7d\x92\x96\x00\x84\x77\x58\x57\xae\x62\x4e\xa3\x3a\x43\x07\xae\x62\x5e\x94\x42\x89\x54\x17\x78\x7a\x12\xd3\x31\xc1\x08\x88\x06\xec\x49\x40\xcb\x0f\xee\x8a\x2c\x36\xf0\x15\x59\x6c\x64\x29\xc6\x4d\x01\x34\xaf\xab\x98\x5b\x86\xf0\x81\x84\xb5\x0c\x18\xda\x08\x49\x73\x8d\x25\xc3\xce\x76\xb7\x6e\x9d\xb9\x66\x0f\x47\xb3\xa9\x8e\x9f\xca\x16\x76\x5c\x67\x1a\x0f\xec\x2c\x7a\x6b\x09\x36\xec\x57\x5a\x22\xc5\xe0\xd1\xf8\xd1\x68\xba\xe0\x22\x26\xf2\xf5\xdb\xe2\x82\x4d\x3e\x1a\x3f\x6a\x28\xdb\xf8\x51\x43\x92\x5e\x32\x02\x00\xbd\x63\x04\x15\x50\x0c\x28\x90\x62\x8c\x15\x86\x32\xae\x40\x24\xbd\x2b\xc6\x74\xb3\x06\xe0\x76\x66\xde\x6f\x07\xe5\xf9\xa3\x39\xcf\xec\x63\xae\xd1\x19\x63\x00\x98\x57\x44\x06\x70\x10\x7d\xc5\xe4\x9b\x1a\xf7\xf0\x39\x7d\x60\x03\x6b\x04\x4e\x95\x99\x35\xcd\xea\xb8\x32\x3a\x24\x60\x19\xc6\xe4\x9e\x80\xde\xb3\x45\xcc\x63\x7d\x36\xbf\xbf\x7b\x40\x32\xad\xfd\x46\x0f\x33\xda\x81\x59\x44\x27\x3e\xba\x4a\x81\xa0\xde\x95\xab\x14\xc0\xa0\x92\x40\x10\xc8\x01\xf4\x62\xa1\xb9\x1d\x78\x45\xef\xf0\x99\x8b\x78\x1f\x5b\xeb\x1a\x4c\x9a\xd6\xba\x06\x93\xda\xf5\x51\xbd\xa2\xd1\xe5\x80\x30\x2d\xc1\x05\x43\xd4\x12\x5c\x30\xac\xb6\xf5\xd2\x30\xbc\x6d\xc4\xa4\x70\x6a\x80\xb1\xe1\xac\x3d\xaf\x3e\x5a\xfc\x09\x9c\xf1\x35\x9b\x7e\x8d\xa7\x4a\x2a\x09\xd0\x2f\xe4\x50\x16\x3c\x02\xaf\x29\x40\xc8\x87\x6b\x96\x9a\x69\x02\x27\xbb\xe4\xc9\xec\x01\xb8\x93\xff\x42\x00\x60\xf5\x01\x0c\xcd\x94\x87\x00\xc9\xf4\x4d\x02\x7c\xbd\xf3\x17\x77\x84\x45\x73\xae\xdd\x11\x16\x4d\xfa\xa5\x35\x44\x82\xa9\xaf\x5b\x43\x24\x4a\xbd\xb6\xea\xb8\xe6\x94\xd9\xae\x39\x53\xf1\xff\x25\xe4\x97\xd6\x70\x09\x96\xb8\x6e\x0d\x97\x90\xdf\x37\xe6\xe4\x06\x24\xe2\x8d\x79\xc5\x73\x17\xde\x31\xb8\x31\x27\x36\xa0\x68\xdd\xd0\x37\x82\x05\xb7\xfc\xea\xf6\x58\x70\xc1\x8d\xdb\x63\x41\xf3\x9b\x19\x79\xe4\x77\x1f\x00\x4f\x0c\x40\x10\xea\x57\x25\xf8\x61\x77\x72\xa3\xdf\x25\x85\x54\x4e\xbe\x86\xe2\x72\xf2\xb5\xa0\xcb\x8d\x8e\xe7\x85\x21\x30\x6f\x48\x18\x1c\x68\x94\xb9\x22\x17\x03\x2f\xfd\xda\x1a\x02\xe8\x71\x6b\x08\x0e\x11\x6a\xf6\x8c\xf0\xfc\xc6\x4d\x49\x76\x88\x70\x41\xe5\x86\xbe\x62\xbc\x07\x00\xd2\x44\x51\xca\xaf\xad\xa1\x01\x9a\xb6\x86\x26\x05\xa8\x39\x2d\x8b\xe1\x80\xe3\xa6\xa1\x6d\xd8\x01\x08\x19\x0d\x28\xea\xca\x96\xa3\x37\xd7\x2e\x17\xff\x46\xb6\x75\xa2\x9a\x5b\xb2\xad\x13\xe9\xdf\x9e\x98\xfd\xd2\x04\xf3\xf5\x86\x49\xa4\x7f\xa3\x53\x49\xb4\xea\x96\x02\xf6\x01\x43\x17\x30\x86\x7c\xfd\x3d\x24\xf1\x71\x85\x1b\xd0\xc9\x7e\x73\x99\x47\x8c\xdb\xad\xcb\x3c\xa2\x96\xdf\xcc\xeb\x40\x70\x8d\xf6\xd6\x3c\x0f\x04\x7e\xa9\xbf\xb5\x62\xd8\x88\xce\xde\xb6\xc6\x52\xb0\xd9\x6f\xad\x51\x10\xb4\xbc\x6d\x8d\x82\x60\xbb\xdf\xc8\xf6\x51\xa4\x6f\xc9\xfe\x11\xd3\x4a\x67\x02\xe2\xc8\x94\x20\x85\x60\xc9\xdf\xa9\xd3\x0b\x1c\xca\x7c\xb5\x20\xa2\x35\xbf\x53\xc3\x26\x9c\x35\x7c\xb5\x20\x0c\x70\xf4\x92\xbd\x0f\x08\x7a\xc9\x16\xc9\xdf\x4d\x14\x5e\x30\x73\x7f\x25\x69\x41\xd0\xaf\x8c\xbc\xa9\x00\xab\xed\xef\x8c\x97\xbf\x64\x69\x3d\x6b\xc5\x0e\xfb\x9d\x58\x22\xf7\xe0\x5b\x63\x88\x84\xb4\x3b\x38\xd0\x00\xed\x73\x8a\xa5\x1b\x43\x06\xac\xb7\x5f\x8d\x1d\x03\xc6\xd2\x7a\xef\xbb\x0f\x5c\xf8\xb5\x35\x50\xd0\x18\xe3\x11\x06\x87\xfd\xbf\xb7\x06\x4e\x30\xd1\xd7\xd6\xc0\x89\xa1\xf8\x7a\xfd\x87\xea\x17\x54\x70\x5d\xe8\x74\xe2\x2d\xff\x11\x2c\xc3\x49\x53\xc0\x61\xac\xcf\x82\x3b\xb6\xcd\x6e\x16\x25\xaf\xab\xe8\xe7\xf7\x6f\x5e\x6f\x2f\x62\x5e\x31\xff\x1f\x77\x5e\x0c\xd1\x74\x36\xbc\xd0\x53\x51\xf9\xfe\x41\x1f\xbc\xd3\xc1\x47\xc9\x8d\x01\xa7\xec\xb0\x0e\x8b\xe0\xce\x6b\x2a\xb6\x56\xd5\x3c\x4b\x6a\xef\xe8\x2a\xe6\x6b\x3c\xaa\x67\x59\xb5\xb1\x21\xfe\x6e\x7f\xfe\x9c\xcd\x45\xed\x27\x6c\x12\x37\x79\x7d\x7f\x4f\x9b\xc6\x59\xdd\xf0\x62\x8d\x6d\x6c\xb0\xed\xcf\x9f\x59\xf5\xaa\x4c\x9b\x9c\x1d\xb3\xd1\x5d\x8a\xe8\x23\xb6\x5c\x1e\xbd\x19\xff\xc1\x92\x7a\x3b\x65\x93\xac\x60\x6f\x79\xb9\x60\xbc\xbe\xf5\xeb\xd0\x33\x9f\x78\xe1\xdd\x55\x9c\x37\x6c\xb4\xde\x5b\x06\xd0\x88\x32\x4a\x7c\xee\x17\xfe\xfe\x20\x08\xb6\x65\x69\x41\x98\x45\xb9\x5f\x06\x47\xf5\x36\x2b\x92\x32\x65\xbf\xbe\x7a\x19\xcd\xfc\x32\xcc\xf0\x9b\x58\x7d\xd3\xa7\xdf\x54\x51\xee\xc7\xc1\x91\x6a\xf7\x5a\x42\x5a\x2e\x9b\xf6\x85\xdd\x56\x3e\x0b\xb6\xab\x92\xd7\x7e\xb0\xcd\x59\xda\x24\xcc\xf7\x75\x57\x81\x4e\xf2\x93\xfa\x9c\x9d\x17\x17\x17\x91\xb7\xe1\x6d\x16\x9b\xde\x91\x17\xd6\xcb\x20\xbc\x5b\x06\x4b\x5d\x43\x2e\x6a\x10\x0d\xaa\xa3\xf3\x8b\xb0\x88\xce\x2f\x8e\xba\xeb\x9b\x94\xfc\x34\x4e\x66\xa4\x26\xd3\xb4\x7e\x14\x45\x6c\x3b\x67\xc5\xb4\x9e\x1d\xd7\xdb\x8b\xa6\x9a\xf9\x62\x10\x37\x59\x30\x2a\x30\xc9\x82\x65\x10\x84\xc5\x76\x53\x54\xb3\x6c\x52\xfb\xde\xb9\xb7\x59\x6f\xff\x51\x66\x85\xef\x79\xc1\xa6\x77\xe1\x05\x61\xc1\xae\xd7\xde\xb1\xe9\xe9\xcd\xc2\x2f\x64\xd6\xbd\x17\x84\xde\xd4\x0b\x96\x8a\x8c\xcf\xcf\x80\x8e\x71\x58\x21\x1d\x9b\xe8\xbb\xf3\xff\xfb\xa9\xb7\xf5\xe9\x66\xff\xd9\xc5\x77\xd3\x70\x11\x7d\x77\xfe\xa9\x39\x39\xe8\xf5\xb6\x3e\x35\x27\x3f\x3e\x7b\x76\x21\x92\x4f\x31\xf9\xec\x99\xc0\x31\xe4\x9d\x98\x3e\x78\x1b\x7f\xbb\xf1\x36\xd9\x76\x32\x8b\xf9\xd3\x32\x65\x4f\x6a\xbf\x17\x6c\xd7\xe5\xfb\x5a\x6c\x48\xfd\xfe\x9e\x48\xc0\xa6\xfc\x69\x5c\x31\x3f\x10\xd4\x34\x54\x4c\x05\x83\xda\x45\xf9\xfd\xde\x60\xe7\x9f\xbe\x53\xe2\xd6\xee\xee\xe0\x70\x2f\xb0\x2b\xea\x07\x5b\xbb\x7b\xc3\x41\x6f\x73\x6f\x77\x77\xb8\xf7\xed\xb5\xce\x68\xad\x6b\x7a\x5c\xcc\xf8\x17\xdb\x70\x75\x2f\x61\x7e\x1d\x12\x0e\x31\x93\xe1\xbc\xbe\x58\x06\x81\xc6\x5a\x84\xa9\x49\x34\xe1\x24\x58\x2e\x05\x8d\xc7\x9a\x93\xab\x24\x5e\xb0\xa8\x6b\x5a\xe9\xcf\xc6\xe1\xe4\xc1\x02\x5b\x73\xda\xc8\x8c\x4a\x4e\xe9\xc2\xdf\xdb\x0d\xc2\x32\x2a\xfc\xfe\xce\x5e\xb0\xfd\x0b\xcf\xea\x78\x9c\xb3\x30\x03\xc8\x7e\xb0\x8d\xe4\x39\x61\x82\x21\x78\x18\x47\x85\xbf\x33\x08\xb6\x7f\x6c\x26\x13\xc6\xcd\xe8\x56\x48\x1e\x51\x66\x11\xa1\x80\x00\x81\xc4\x23\xc1\x68\x1c\x72\xc3\x58\xe6\xa4\x58\x18\x64\x65\x47\xe5\x76\x12\xe7\xb9\x2f\xb2\xc2\x3b\xcc\xc2\x3a\xab\xd1\x7a\x7f\x19\x84\xf0\x4d\x59\x24\xcc\xf7\x26\x59\x91\x55\x33\x8f\xd0\x37\xb8\x2b\xb6\x59\x91\xfa\x31\xfc\x0d\x04\xe3\x2f\x0b\x7f\xa7\x1f\xf8\x55\x58\x06\x61\xb5\xbd\xe0\x65\x5d\xd6\xb7\x0b\xb6\xfd\xf9\x9a\x67\x35\x25\xa8\x24\xc9\x5a\x56\x54\x75\x5c\x24\xac\x9c\xac\xc5\x1b\x1b\x3e\xb3\x5b\xb9\x0d\x9f\xf9\x2c\x90\x2d\x91\xfd\xd2\xe0\xb0\xf0\xbb\x28\x6d\x49\xcf\x9a\x48\xc1\x68\xbd\x17\xd6\x4a\x0a\x45\x57\x65\x96\xae\xf5\xe4\x58\xc4\x7e\xe1\xf7\xf7\x76\x02\x31\x1e\xf8\x7b\x37\x10\xb2\x0d\x7f\xef\x05\x44\x58\xc5\xdf\x2c\x66\xe9\x10\x29\xe9\xe3\x29\xa0\x17\x45\x91\x20\x4e\x39\x59\x7b\x15\x2f\x8e\xc5\x80\xbc\x8a\x17\x23\xd9\x2a\x2c\xdf\xaf\x2c\x26\xcc\x26\x7e\xd1\xe4\xb9\x90\x42\xf7\xf7\x7e\x11\xb1\x70\x4b\x88\xa4\x67\x12\x45\x4f\x28\x1c\xd5\x22\xd8\xce\x8a\x94\xdd\xbc\x99\xf8\xde\x79\x01\x31\x40\xd7\x04\x59\x2f\xbc\x20\x08\x54\xfb\xa1\xfb\xc5\x51\x36\xf1\x4d\xc3\xd6\x75\xc3\x58\x50\xcf\x78\x79\xbd\x26\x1a\x77\x76\xbb\x60\xa7\x9c\x97\xdc\xc7\xa3\xf6\x35\x76\xb3\xe0\xac\xaa\x44\xff\xe6\x4d\x55\xaf\xb1\xac\x9e\x31\xbe\x36\x66\x6b\xa2\x91\x6b\x25\x5f\x8b\xf5\x64\xf5\x02\xa8\xa2\x29\x70\xc5\x49\x49\x1d\x35\xf4\xab\xde\x9e\xc5\x82\x4a\xaa\x61\xf5\xf6\x94\xd5\x3e\x13\xb3\xb1\x12\x3f\x42\x4e\x84\x39\xf7\xf5\x00\x24\x3e\x0b\x63\x3e\x6d\xe6\xac\xa8\xab\xb0\x01\x56\x0e\xb6\x93\xb2\xa8\x6a\xde\x24\x75\xc9\x83\xa5\xc4\xe4\x86\x1f\x23\x29\xf3\x13\x88\xa0\xe6\x33\x93\x13\xde\x91\x4f\x47\x72\x01\xe4\x21\x83\x48\x2d\x62\x72\x8e\xd6\xfb\xe1\xb5\x9c\xa8\xa3\xf5\x5e\x98\x94\xc5\x24\x9b\x36\x32\xaf\xb7\x5c\x06\x61\xee\xf3\x50\x2c\x03\x62\x2d\xa0\x2b\x5c\x48\x96\x2c\x3f\x89\xc8\x3c\xb2\x49\x63\xf8\xe2\x1d\x9b\xe4\x2c\xa9\xef\xef\xd7\xe5\x2f\xd3\x31\x49\xa7\xf5\xbe\xa0\x6b\x2b\x77\xbb\x9a\xc5\x73\x0b\xa5\x8b\xed\xde\xf2\xf2\xe6\x56\x61\xf5\x8e\x6a\x7e\xab\xa8\x7a\x12\xd7\x84\x28\x0e\x5f\xb5\x6a\xf3\x05\x7a\x78\x7e\x61\xc9\x86\x65\x10\x04\xe1\x7a\x6f\x99\xc4\x75\x32\x33\x33\x66\xbd\xbf\x5c\xfa\xc1\x71\xab\x8c\x91\x3b\x89\x71\x5a\x9e\x0b\x56\xba\x38\xe2\xb0\xb8\x6e\xc7\x8b\x45\x7e\xeb\xf3\xb0\x56\xfa\x48\xc1\xae\x7d\xcd\xfd\xe3\xac\x48\x25\x8a\x60\x97\x40\x2d\xf0\xc5\xc6\x46\xee\x97\x61\x61\x3a\x14\x84\xe5\x32\x90\xa8\xa2\x02\xc3\x41\xb6\xc6\x60\x56\x1d\x3f\x57\x3c\x53\xb1\xfa\xad\x2a\xe7\xcd\x84\xea\x5e\x64\x8d\x12\x32\x01\x6a\xfb\xfc\x39\xaa\x43\x26\x78\x21\xac\x49\xd9\x8d\x21\x88\xdf\x74\x97\x7c\x2c\xa1\x53\x0b\x3a\xea\x5c\x93\x74\x65\xf7\xf7\x9d\x5f\xf9\x8a\x1d\x05\xd5\x16\x96\x48\x01\xa1\x14\x16\x54\xba\xd5\x61\x11\xf2\xb0\x0c\xb3\xb0\xc2\xfc\xe4\x48\x33\x2d\x23\x0b\x46\x1d\xdc\xdf\xe3\x74\x2b\xe2\x39\x8b\xbc\xa7\x55\xf5\xfe\xb6\xa8\xe3\x1b\x90\x12\x5e\x98\x6c\x73\x16\x57\x65\x11\xd5\x61\xb6\xb1\xe1\x27\xdb\x93\x2c\x67\x51\x16\x84\x25\xa4\xaa\xb2\xe1\x09\x8b\xc4\x4a\x01\xe9\x45\xde\x4c\xb3\x22\xaa\x82\xb0\x53\x4c\x14\x1b\x1b\x9d\x70\x0e\x1f\xe7\x59\xc1\xa2\x22\x4c\xb6\x93\x32\x6f\xe6\x45\xc4\x83\x30\x11\x04\x7d\xc5\xaa\x2a\x9e\x32\x3f\x08\xa1\x51\xdb\x49\xbc\xa8\x1b\xce\xde\xd7\x71\xf2\xe5\x8c\xc7\x09\xdb\xd8\x58\x91\xe1\x3b\x82\x17\xe5\xb2\x10\xbd\x44\x26\xbe\x63\x13\xc6\x59\x91\x28\xc1\x28\xc8\xb1\x36\x8b\xab\xe2\x1f\xf5\xda\x98\xb1\x62\x2d\x2b\xb2\x3a\x8b\xf3\xac\x62\xe9\xda\xd6\x5a\x25\xe4\xa6\x1f\x58\x18\x82\x9e\x2c\xf5\x34\xb7\xb2\xa5\x9f\x04\x61\x1c\x84\xc9\x52\x08\x78\xbf\x8e\xe2\x60\xa5\xe4\xb2\x78\xba\x26\x33\x96\x48\xb1\xa8\x0e\x6b\xc2\x8e\x05\x4c\x9d\x2a\x8a\x0d\xb6\xaa\xba\x22\x14\xa3\xe2\x09\xd6\xde\xf9\xff\x9f\xbd\x77\xe1\x72\x1a\xc7\x16\x46\xff\x4a\xe2\x6f\x96\x5b\x9a\x28\x21\x81\xa6\x1f\x0e\x22\x17\x0a\x7a\x9a\x33\x14\x70\xa0\xe8\xc7\x84\x0c\xcb\xe5\x28\x89\x1b\x47\x0e\xb6\x52\x0f\x2a\x3e\xbf\xfd\x2e\x6d\x3d\x2c\xd9\x4e\x01\x7d\x66\xbe\xef\x9e\x7b\xef\xea\xd5\x54\xac\xb7\xb6\xa4\xfd\xd2\xde\x5b\x3a\x1d\x3e\xd4\x5a\xcd\x9c\xdf\x83\x20\xea\x05\x51\x10\x10\xb7\xf0\x40\x95\x96\xeb\x3e\xb3\xbf\xa2\xe0\x41\x52\x96\xbd\x94\xef\xf6\x42\x0a\x45\x9d\x34\x41\x16\x96\x6b\x1a\x86\xc8\x6f\x30\x88\x82\x81\xcd\x1d\xd8\x2f\xb5\xec\x98\x34\x0b\xf7\x74\xbe\xda\x89\x15\x29\x47\xe5\x26\xbf\x7c\x03\x5b\x4f\x72\xa5\xed\xb3\x00\x43\x96\x18\xb3\x0f\x15\xd5\x2e\xd5\x48\x32\x50\xc2\x98\xe6\xb2\x54\xd6\x34\x35\x0c\x45\x18\x76\x63\x71\x06\x8c\x4d\x61\x8a\x8d\x4a\xb1\xcc\xf7\x02\x13\x99\xce\x29\x1a\x13\xdb\x02\x46\x1c\x63\x23\x37\xf1\x51\xb9\xcb\x52\x81\xee\xbc\x2b\x66\xef\xf8\x1d\x29\x34\x9d\xc6\x62\x33\xda\xc6\x57\xc8\x42\x60\x78\x8f\x8c\x31\x49\x74\x4e\xca\xeb\x9c\xc1\x5d\x12\x6b\x51\x05\x93\x8c\x6a\x4e\x3b\xc1\x3a\x6d\xea\xe0\x22\xe1\xb2\x33\xb9\x1d\x67\xc1\x96\x33\xef\x6b\x74\x9e\x67\x4b\x24\x70\x24\x6a\x4c\xb6\x3b\x56\x7b\x5d\xc4\xd7\x33\xff\x53\x55\xd5\x85\xe3\x51\x99\xa5\x09\x43\x25\x49\xf0\x68\x1b\xef\x5c\x81\xab\xc6\xff\xe5\x60\x32\xe0\x24\xa7\x41\x2f\x18\x20\xf9\x4f\x81\x75\xbd\x61\x86\x07\x41\xef\xd0\x0b\xe4\x5a\x15\x12\xda\x30\x6d\x55\x31\xa5\x3b\x94\x5b\x86\xfc\xce\xbb\xe5\x9d\x35\x09\x7a\x01\x96\x02\x89\xaa\x2e\x19\x41\xb5\x69\x86\x93\x9a\x75\x97\x32\x96\x58\xe8\xc2\xe6\x58\xec\x51\xf0\x30\xc0\x83\x1d\xca\xf1\x80\x0d\x82\x77\xbc\x17\x0c\xd2\xc1\x1e\x05\xff\x0c\x0c\x73\x21\x47\xa6\xf2\xa5\x98\xa1\x44\xba\x77\x3c\xc0\x72\xc3\x19\xe2\xe9\x9e\x28\x39\x46\x7d\x94\xfc\xfd\x88\x6a\x3c\x00\xbb\x26\x78\xc7\xdf\xf1\x40\x75\x1b\xe8\xed\x2d\xb1\xed\xa0\xde\xda\x66\xb7\xb3\x8a\xc4\x15\x2a\x11\xa0\x22\x2c\x19\x27\xc3\xe8\xee\x48\x2d\x7b\xd8\xd4\x7f\x0d\xdb\x7c\x93\xe4\x59\xce\x23\x39\x1a\x22\x99\x4d\x2e\xa2\xa0\xd7\xeb\xf5\x02\x72\x0e\x66\x6b\x4f\x58\x92\x45\x72\xec\xfa\xfb\xf5\x5e\x22\x80\xfa\xfb\xe5\x8e\xf1\x28\xb0\xc5\x4f\xb2\xbc\xf4\xf2\x4f\xf2\xed\x16\x1a\x95\x49\xf1\x4a\xb0\x42\xfd\x84\xd0\x07\x8f\xf3\xe5\xb5\x44\x39\x89\x2a\xf4\x9c\xad\x04\xb4\xa5\xbf\xe1\x56\x19\x12\x4a\xb6\x4d\xd5\x40\xfb\x93\x4a\xb3\x0e\xce\x6a\xd8\xcd\x2c\x65\x0a\x85\xed\xce\xf7\x69\x26\xc5\x24\x56\x29\xa4\xc0\xda\xd8\x52\x1e\x64\xb9\xae\xe9\xea\x9a\xfa\x4c\x80\x6c\x61\xce\x46\xb2\xf0\x42\x11\x7e\x22\x46\x45\x9e\x0b\x0f\xdb\xa8\x7e\xf2\xe5\xb5\x14\x64\xd8\xa8\x88\x2f\xcb\x11\xcc\x50\x6b\x79\xf4\x10\x90\x9b\x05\x2d\xe9\xe9\x1d\x41\x5d\xb2\x34\x62\xea\xdd\xbe\x80\x04\x0e\x6c\x02\x4c\xb8\x57\x44\xdd\x0d\xda\x32\x00\xaf\x00\x4f\xbd\xde\x83\x3b\x7f\x0d\x06\x62\xc0\x46\x82\x5d\x89\x01\x1f\x04\x7f\xbd\x13\x48\xee\x16\x36\x44\x92\x35\x66\xee\x60\x47\xdd\xc7\x39\x13\x97\x8c\x71\xe8\x25\x93\x72\x00\x29\x14\x30\x77\x03\x3e\x30\x05\x7f\x91\x6c\xb6\x2c\x0d\xfc\x76\x80\xa7\x6c\xa4\x34\x5c\x31\x97\x58\xb5\x18\x50\x0d\x04\x9b\x7a\x38\x04\xbd\xbe\xfd\x92\x27\x43\x95\x0b\xa6\xe6\x94\x98\x09\x14\x7a\xb4\x85\xdc\xc8\x6d\xf8\x67\x79\xf2\x41\x8e\xbd\x39\x92\x92\x65\xca\xbb\x16\xdb\xc5\xc9\x2f\xf9\x1b\xb3\x91\xba\xd7\xc8\x2d\x41\x18\x09\x18\x5f\x06\xd0\x79\x2c\x1a\xdd\xd7\xc0\x0a\xfe\xaf\x60\xc0\xe0\x4c\x2b\xc8\xc4\x45\xbc\x2d\x67\xad\xf1\xa8\xf4\x00\x47\x41\x70\x54\x92\x72\x77\xca\x8b\x78\xcb\x66\xdc\x02\xce\xa6\x45\x92\x5f\xe2\x03\x89\x50\xe5\xc4\x78\xbe\x64\x25\xf6\x40\xc1\x07\x05\x9e\xb2\xac\x64\x37\xea\xa0\x98\xc9\xe9\x95\x3c\x1c\x82\x00\x0f\x90\x98\x05\x53\x49\xef\x1b\xdb\x85\x0f\x8a\x41\x2e\x21\x2e\x67\x2d\x37\xb7\x07\xf2\x55\x5e\x20\x73\x9e\xa0\x67\x4d\x8c\x86\x93\xa9\x78\x38\x0e\x43\xb3\x13\x03\xd0\xb3\x41\x89\xb9\x58\xc0\x41\x9a\x62\x31\xa4\x93\xa9\x69\xc1\xdf\x64\xf6\x7c\xc3\xf6\x1a\x4f\x8b\x07\x7e\xfb\xd3\x62\x30\xc0\x7a\x3a\xa6\xdd\x62\x41\xd2\xba\x91\x5c\xee\x54\xb0\xb3\xc5\xd3\xb4\xb1\xb8\xa9\xde\x51\xf6\xb8\xa3\x9c\x88\x3e\xa5\xc5\xe1\xc0\xf5\x44\x25\xe8\xba\x56\x97\x14\x47\x0e\x43\x8d\xfd\x9a\x10\x14\x83\x62\x10\xdc\x04\x72\xfb\x94\x22\x2e\x44\xbd\x4c\x61\xe8\xcf\x6a\x86\x3c\x14\xe2\x83\x04\x16\x3c\xc0\x38\xea\x4a\x26\x81\xc5\x9f\x12\x29\x34\xe6\xcb\x1b\x27\x28\xa8\x02\x6f\x33\x17\xf1\x65\x4b\x93\x03\xb0\x95\x1b\x93\x83\x62\x42\xc0\x81\xec\xda\xa4\x28\xd7\x5b\x72\x2e\x16\x56\xd8\xcf\xa7\x8a\x68\xc3\xf6\x67\x5c\xc0\x0e\xd7\xeb\x41\x29\xe5\x61\x88\xfa\xe9\xe1\x10\x48\x1c\x2a\x13\x52\xd8\x12\x61\x98\x8e\x56\x69\x51\x0a\x60\xca\x6b\x16\x4d\xf2\x6e\xa9\x69\xba\x98\xf3\x85\x66\xa8\x18\xe0\x60\x04\x9a\x88\x58\x8e\xe1\x24\x4e\x36\xec\x70\x70\x3e\xe8\x4d\x75\x44\xfc\xa8\xcb\xcc\xf9\x02\x5b\x1e\xc6\x49\x6c\x0e\xfa\x70\xd0\xd0\x96\x1f\x56\xad\x01\x80\x85\x42\x8f\x64\x26\xf0\x3a\x8a\x23\x27\x09\x0d\x8a\xf8\x32\x18\x20\x54\x52\x8e\xe7\xe3\x45\x43\x27\x5a\x6a\xd6\x65\x52\x8b\xb6\x40\x69\x92\xc5\x2c\xa7\xfa\x17\x8a\x09\xc3\x51\x3c\xba\x8c\xb3\x0f\xa8\x29\xc2\x7c\xe9\x7a\xf4\x27\x15\xf6\xc0\x50\xf3\xb2\x52\x74\xcb\xa9\x04\x2a\x26\xde\xec\x69\x4e\x72\xbd\x39\x2c\x0a\x6c\x53\x28\xcb\xdc\x74\x0f\xf0\xc8\x46\x0f\xc3\x40\xd2\x1a\x85\x15\xb2\xb8\x14\x7a\xf9\x3b\xe7\x23\x0c\xca\xb3\x48\xc1\x9f\x96\xd0\xa3\x7c\x6a\x4e\xc0\x9f\x1f\xe5\xb8\x46\x53\xf5\x48\x6f\x1d\x93\x22\xe2\x9d\xe3\x79\x06\xdc\xd3\x11\x9d\x33\xd0\x3e\x28\x30\xf3\xbe\x22\xd4\x1a\xa3\x65\x9d\xb9\x73\x98\x8a\x30\x2c\xfa\x94\xb2\x30\x2c\x74\x6a\xfd\x8b\x42\x7a\xb7\xcc\x6d\x30\xbf\xdc\xaf\x06\x81\x7a\x89\x5a\x46\x01\xee\xd4\x6e\x4a\x8a\x04\xcd\xe7\xb9\x45\xee\x0b\x9f\xc1\x2e\x81\xc1\x0e\x30\xe9\x4f\x2a\x80\x80\x3a\x00\x06\x10\x8f\x5d\xc6\xaf\x0b\xa9\xfa\xcb\xa3\x0b\x96\x5f\xb4\xdb\x7b\xcc\x9b\x91\x6a\x68\x38\xe9\x53\x8a\x38\xf5\xf3\x6a\xdd\xa9\x9c\x1b\x88\x6a\xdc\x9b\x06\x5f\x0c\xfe\x72\x47\xce\x03\x26\x72\xec\xc0\xf0\x99\x83\x80\x05\x01\x6d\x53\x50\xf3\xc6\x01\x8e\x78\x47\xdb\x06\x44\x98\x70\x0f\x2a\x4f\x8e\xb0\x5c\x3e\x48\x64\xa9\xff\x81\xf0\x90\xb2\xc1\x57\xc2\xe3\x75\x93\xa9\xbb\xfd\xfc\x72\xa5\x42\x37\xe7\x17\x99\x23\xd2\x07\x85\x3a\x53\xd4\xa4\x2f\xd1\xf5\x17\x1d\x08\x17\x5c\xc2\x3f\x17\x6d\x70\x09\x2a\x6e\x07\x97\xe8\x28\x54\xcf\xbb\x71\x3a\xa4\x9c\xf4\xaf\x42\xaf\xc0\x79\x7d\x8e\x9f\x6c\x4c\xd6\xcb\xfa\xf7\xce\x55\x32\x49\x5f\x3d\x55\x45\x30\xe4\xba\x7e\x11\xad\xd0\x8c\x59\x37\x66\x3e\xf9\x12\x5a\xf6\x67\xce\x9c\xea\xd3\x62\x4d\x3f\xdd\x87\x4d\xe4\xe0\x4c\x33\x34\x87\x8d\xe8\xc4\x09\x9c\x3a\x64\x53\xf6\x3d\x73\x38\xc1\x0e\x44\xe4\x73\xdf\xb7\x55\xd0\x38\x57\xd6\xa9\x19\x1e\x71\xac\xb4\x3e\xd7\xc7\xda\x92\x5b\x39\xc0\x96\xb3\x2f\x2c\x17\x48\x72\xc9\xca\x87\xa1\x62\xfb\x24\xc3\xad\x25\x81\x7c\x40\x27\xa4\xa0\x85\x43\xe0\x60\x5f\x72\x7f\x23\x1a\x55\x50\xab\x63\x45\x3b\xd5\x95\x54\x6a\x74\x64\xa6\xff\x98\x8e\xa7\xf1\x83\x7c\x1a\x0f\x06\x98\x0f\x68\x6a\xf4\x55\x06\xf1\x80\x44\xd6\x29\xc9\xb1\xb9\x58\x80\x0c\xa7\xd9\x29\xb3\x41\x24\xf1\x1d\x81\x64\x2b\x39\xc1\x59\x21\xf3\x23\x5e\x11\x56\x21\x57\x4b\x93\xff\xdb\xb4\x34\x24\xa7\xa8\xa0\x1c\x7d\xff\x03\xc6\x72\x2c\xce\x7d\x65\x51\xdf\x57\x16\x95\xe6\xc2\x8f\x6a\x46\x6a\x15\x38\xe8\xa6\xe6\x0b\x2d\x28\x5c\xb0\xa2\x4c\x73\x4e\x83\xef\x47\xe3\xd1\xe4\x07\xad\x03\x56\x7a\xe1\x52\x81\x9f\xe7\xc5\x36\xce\xd2\x4f\xcc\xdc\x42\x1c\x51\xa9\xec\xcb\xce\x6b\xf7\x76\x83\xfa\x63\x94\xe4\x3c\x89\x05\x6a\x74\x32\x67\x0b\x7d\x67\x5c\x29\xb5\x78\xc2\x4a\xff\x2a\xd5\xce\x4c\xb8\x0a\x4c\x7d\x27\x04\xd7\x1b\xce\x9d\x90\x1d\x5e\x97\x2e\xcf\xd6\xb5\xe6\x0c\x52\x4a\xaa\x3c\x7d\x66\xdd\x85\x85\xa1\x42\x81\x52\xde\x80\x2f\x77\x4e\x86\x97\x44\x42\x59\x16\x15\xa4\xd6\x35\xa5\xac\x50\x06\x24\x56\xb5\xaa\x46\x0b\x6a\x26\x39\xe7\x1a\x0a\x1d\x0a\x22\x30\x7d\x61\xa4\xa0\x8f\x8a\x22\xbe\x1e\xa5\x25\xfc\x95\x12\x9f\x3c\x6b\xf2\x08\x70\x5a\xcc\x78\xc4\xe7\x6f\xae\xb7\xe7\x79\x36\x4a\x05\x03\x43\xe6\x05\xc2\xd3\xa9\x3e\x50\xc0\x50\x02\x7a\xcb\x1f\x52\x6e\xce\xcf\x79\xc1\xe2\x0f\xd3\x94\xf2\x79\x3e\x18\x2c\x2a\x50\x20\xa4\x2b\x84\x24\xc3\xc8\xd9\x95\x40\x18\x8f\x96\x39\x67\xb6\x60\xae\xce\x44\xa5\x0e\x5d\xaa\xa4\xb2\x5d\x5e\x8a\xa4\x94\xb4\x39\xa6\xf6\x0b\x93\x20\x87\x6b\x0f\x87\x8f\x88\xc3\xd0\x9f\x43\x6c\xc0\x87\xb1\xa4\x2c\x7a\x5f\xd4\xa9\xa0\xd2\xe8\x1d\xb9\x09\x8d\xb1\xb6\xe6\x89\xb5\xea\x43\x96\xd3\x7d\x3a\x32\xe0\xe1\xd0\x8f\xd5\x92\x84\x61\x3f\xae\x15\x02\xce\x8d\x90\xba\x08\x8a\x07\x41\x2f\x2d\x7b\x3c\x17\xbd\xb8\xf7\x2a\x2f\xc5\xc9\x9b\x37\x3d\x35\x92\x00\x57\x76\x3f\xb5\x70\x40\xfa\xef\xd3\xd4\x96\x60\xc8\xf0\x3d\x18\x38\xc8\xdf\xdf\x7e\x0f\xf6\x0d\x08\xd2\xbf\xff\x16\x63\xa2\x7e\xdd\xc7\x18\x93\x58\x15\xf9\xd1\x35\x7b\x28\xbf\xde\xec\x21\x51\x5b\xbf\x56\xda\x8c\xa7\xfc\x81\x30\x4a\x19\x6e\x94\x32\x05\x15\x52\x7e\x2e\x46\xf5\x35\x3b\x75\x3f\x0e\x87\xfe\x84\x14\x23\xf7\xaa\x5d\x4e\x54\x6b\x0b\x53\xc0\xb0\x48\x59\x85\xe8\x3c\x4c\xba\x0d\xdc\x18\x29\x46\x1f\xd8\x35\x29\x70\xd5\x30\x0d\xd3\xda\x83\xd6\x3e\x93\xac\x43\xc7\x86\x61\x23\xb1\x61\xbc\x52\x96\x59\xdd\x08\x13\xae\x51\x1d\xcd\x88\xa7\x43\x4a\xd9\x92\xf6\x27\x1a\x51\x2a\xf4\xa4\x52\xda\x23\xe0\x61\x28\xc9\x56\x1f\xf4\x20\x56\x05\xc2\x81\x16\xe2\x9c\x72\xbb\xb1\xb9\x6b\x4d\xc3\x0e\x07\xef\xbb\xbe\x63\x02\x09\x2e\xcf\x05\xe1\xa3\x6d\xbc\x3b\x76\x69\x55\xe8\x4c\xf8\x0b\x68\x0a\x7e\x8d\x52\x9e\xa5\x9c\x1d\x0e\xc8\xfd\xa4\xfd\x89\xc9\xdf\x15\xec\x82\x42\xcb\x8e\x12\xb1\xa4\xb1\xe9\x7e\x5a\x8c\x4a\xb8\x24\x0e\x43\x54\x52\xf3\xa1\x0e\x95\x6c\x43\x21\x3c\x9d\xa9\x3e\xc0\x94\x48\x1d\x3a\x54\x52\xfd\x1b\x83\xb9\x02\x6c\x65\xb9\x9a\xca\xca\x20\xd1\x5a\x5d\x26\x0f\x21\x4d\xaa\x4a\xdf\xfd\x95\xf2\x34\x80\xc5\x53\x8d\x34\x49\x2e\xeb\xe9\xeb\x6f\x52\x92\x7d\x17\x41\xda\x8f\x2e\xe3\x82\xa7\x7c\x5d\x76\x60\x7c\xb5\xa0\xd7\x3c\x41\xd8\x16\x93\xb8\x7f\x7f\x1b\x99\x50\xb7\x95\x65\x09\xc5\x36\x1e\x67\xeb\x50\x09\x28\x15\xeb\xb6\x65\x31\x7d\x8d\xb0\x1f\xc1\x44\x8f\x92\x48\x53\xc5\x18\x5d\xc8\x1a\xab\x94\xc7\x59\x76\xfd\xd9\x3a\xba\x1b\x55\x69\x13\xf3\x65\xa6\x6e\xb5\x9b\x97\x1b\xc5\xf5\x8d\xd9\xcd\x0a\xce\x8c\x34\xaf\xfe\x81\xef\xe6\xf1\x16\x84\x2a\x85\xf6\xb4\x91\x8f\xc6\xe8\xbf\x28\x8e\x01\x4f\x81\x4e\xf4\x4c\x21\x6a\x0b\xbc\x82\x6f\xc2\xbc\x3b\x7c\xbd\xca\x1c\x83\x91\x4e\x9e\xb1\x30\xd4\x3f\xd4\x48\x1a\x9f\x08\xb4\xb3\x7b\x35\xc1\xb3\xb4\x5b\x43\x6b\xaf\x7b\x1d\x0a\xfc\x90\xba\xe7\x32\x2f\x1a\x84\xd9\xd3\xe5\x39\x87\x77\x4c\x18\x52\xdb\xb2\xb6\xd8\x6d\x37\x32\x77\x3a\x5a\x90\x5c\x73\xa7\x7b\x8e\x0a\xad\x08\xd6\xf7\xe9\x74\x42\x32\x94\xe3\x59\xae\x16\xc6\x37\xbb\xb3\x53\x42\x9a\xee\xeb\x15\xf7\xe4\x0f\xee\xae\x22\x98\xc4\x28\x1b\x98\x7a\xbc\x42\x99\xab\x46\xf5\x3e\xa8\xdb\x54\x0d\xa6\xfa\x44\x35\xaa\xa5\x0e\x64\xbb\xef\x35\xa7\x9d\x40\x02\x2b\xb7\x57\x45\xbe\x4d\xcb\x96\x2d\xaf\x5e\xb5\x19\x47\xfa\x17\x8e\x04\x62\x8e\xd6\x1d\xd7\x63\xd5\x0d\xa6\x7c\x3d\x6b\x7c\x47\xa8\x91\x40\x6f\xe9\x12\x64\x62\xd5\x97\xe1\xf2\x6d\xc2\xd4\x6e\xca\x31\x61\x0e\x70\x64\x45\x09\xf0\xd6\xaa\x58\x3e\xd0\xdf\x12\xee\x04\x2a\x63\xc8\x58\x0f\x0f\x4e\x5b\x13\x8c\x76\x3b\x9a\x96\xbc\x2d\xa7\xf0\xd9\xb4\x55\x08\x96\xa6\xd1\x7a\x93\x31\x09\xde\x96\xac\xa7\xf3\x91\x64\xad\xd4\x3c\x92\x73\xdc\x13\x79\xef\x32\x2f\x3e\xf4\x2e\x53\xb1\xe9\xc1\x7c\x35\xc7\x52\x2a\x49\xa9\x3e\xf1\xba\xd5\x3a\x61\xea\xdc\x67\xab\xd1\xb5\xf7\x3d\x11\x0d\xa6\x13\xae\x2c\x14\xd3\xc9\xa8\x98\xb1\x88\xdd\xc2\x74\x16\x30\x02\xa5\xbe\x79\x68\x6d\xb0\x35\x2f\x59\x50\x36\xe7\x1e\xd3\xc9\x25\xfe\x69\x33\x9d\x05\xe5\x0e\xd3\x99\x53\x68\x55\x59\x33\xc1\x11\xcc\x31\xfe\x57\x41\xac\x6a\xaf\x98\x5c\xe9\x62\xcf\xdb\x97\x90\x1a\x64\x59\x5c\x0a\x85\xf7\x28\x73\x8d\xf1\x18\x72\x4b\x01\xe9\x76\x12\xcc\x49\x85\x7b\x67\xbb\x2c\xee\xc9\x17\x84\x61\x22\xe0\xc0\x76\xdc\x58\xd7\xbb\xcd\xe1\x4d\xba\xf6\x5b\x9b\x7f\xd1\xdb\x4d\xd1\x8f\x8e\x3d\x90\xef\x84\x5c\x76\x2b\xa9\x4c\x59\x4d\xfb\xa5\xfc\xa7\x69\x7f\xcd\x46\x3b\xa7\x25\x05\x26\x00\x4a\xb9\x92\x8f\x73\xe9\xae\x55\x48\x75\x6d\x6d\x9b\x03\x46\xcf\x0e\x9d\xbf\x0d\x78\x30\x44\x3c\x5a\x33\x2e\x77\x9c\x63\x7d\xe1\x96\x49\xca\x92\xf2\xf9\x78\xe1\x55\x94\x5c\x11\x9f\x4f\xbc\xc4\x8a\x08\xca\x08\xe2\x74\x7e\xf3\x81\x5d\x47\x81\x3d\x03\x01\x59\x33\xc7\xc2\xd1\xa7\xbf\xcd\x03\x53\x55\x44\x55\x97\x63\xfb\x92\x9a\xb2\x9c\xad\x94\x94\xb7\xd7\x71\xb0\x11\xb0\x21\xb6\x5e\xce\x05\xe3\xe2\xcb\xeb\xaa\xf2\xb6\xfe\x36\xde\x7d\x71\xdd\x6d\xbc\xb3\xf5\x80\x9f\xbd\xb5\xa2\xe2\x4e\x64\xb9\xba\x33\xc5\x11\x7c\x66\xa6\xaa\xa2\x29\x5b\x55\x0b\x1c\x86\x09\x72\xac\xe4\x08\x07\xdb\xc3\x04\x09\x52\xe2\xa6\x28\xb6\xff\x32\x51\x4c\x8c\x94\xf1\xce\x69\xbc\xfb\x9b\xda\x45\x79\x41\x39\xfa\x61\x8c\x3b\x32\x88\x53\xfa\x24\xe7\xa5\x14\x70\xa8\x14\xba\xdc\xd2\x26\xc3\x16\x7e\x91\x2f\x19\x94\xba\x87\x9d\x94\xf6\x50\x8c\x53\xc1\x0f\x13\xe5\x54\x70\xef\x07\x0c\xae\x04\x3f\xdc\xc5\x23\x40\xb9\x6f\x98\x00\x27\x82\xc9\x77\x3f\xe2\xd1\x69\xbc\xdb\xa5\x7c\xfd\x3c\x2d\x45\x43\xc6\x93\xdc\xbd\xba\x09\x55\x46\xf7\x60\xb6\x99\x8f\xd6\x4c\x3c\x2a\xd6\x88\x91\x40\x26\x04\xa0\x4b\x33\x45\x94\x29\xdc\xeb\x3c\x17\x5e\xc1\x3a\xb9\x51\xfc\x43\xba\xfb\x25\xce\xd2\x25\xbc\x87\xe1\x57\xf1\xb2\x02\x22\x25\x0b\xb7\x8f\x52\xf1\xf1\x3a\x4d\xf2\x98\x7e\xca\x56\x4d\x4b\x25\xc6\x7e\xd5\x13\xb5\x67\x4b\x2a\xc7\x52\x79\xfe\x09\x46\x85\x75\x8f\x94\xa3\x55\x91\x6f\xed\x6a\x74\x28\x51\xd8\xa8\x9e\x17\x51\xf8\xa6\x44\x37\x60\xda\xc8\xc0\xc2\x91\xd4\xf9\x91\xa8\x6a\x8b\xae\x11\x8b\x93\x8d\x86\xbb\xcf\xaa\x69\x63\x2a\x83\x87\x96\xd1\x8d\x14\xab\x22\x66\x31\xd3\xf2\x79\xca\x19\x51\x06\x6b\x6e\xf2\x09\xa4\x54\xd5\x54\x89\x88\x66\x68\x20\xb8\x69\x03\x5b\x93\x46\x54\x11\xe1\xe6\xe5\xa3\x82\x65\xe0\x19\x80\x04\x31\xa9\x58\xca\x61\x79\x91\xae\xa5\xe0\x40\xcd\x48\x4c\x82\x3f\x10\x93\xaa\xc7\x41\xcc\x30\xe4\xc2\x40\x47\x60\x1a\xac\xbe\xc1\x2f\x2a\x5e\x2e\x0d\x04\x0a\xe0\x87\xcc\xf0\xca\x0e\xcf\xab\xc2\xa8\x70\x0b\x3d\x3f\x18\x7d\xda\x18\x36\xb4\x6b\xd6\x18\xdc\x08\x52\x7c\x38\x38\x49\xf1\x72\x89\xac\x3b\x9a\xe9\x4f\x6f\x86\x9f\xf2\x42\x72\xde\xaa\xf9\x38\x0c\xb9\x94\x38\xde\xb8\x25\x50\x41\x62\xe5\xd4\x55\x79\x3e\x2d\xf5\x4c\x3a\xf6\x88\xbb\xa5\xed\x62\x81\x01\x96\x9b\x63\xa0\x67\x4e\x47\xd1\x71\x7a\x4c\x5e\xea\xe5\x49\x78\xea\x9c\x69\xd7\x99\x52\x96\xd9\xa3\xf7\x17\x2a\x85\x19\x98\x2b\xdb\xee\x14\xeb\x85\x02\xc5\x89\xb1\x0d\x2d\x1a\x27\x0d\x40\x59\x60\xd3\x94\x0b\x4d\x80\x39\xb4\x90\xc2\x82\xe8\x16\x8c\xa5\x8c\x3a\x97\x76\x29\xdc\x34\xb5\x16\xb8\x71\x5a\x21\xf9\xc6\xdb\xec\x91\xb2\xe7\x24\x8d\xad\x1e\x19\xb3\x4d\xe2\x6e\xc8\x48\x0d\x86\xcb\xf5\x83\x5a\xfe\xbe\x74\xb3\x75\x6d\x35\x9b\xa8\x20\x72\x58\x51\x5a\x61\x7f\x71\x9b\x9b\xa0\x5b\xe1\xaf\xb7\x4d\x13\x07\xc2\x05\xa6\xbb\x47\x1b\xf9\x84\x5b\xf0\x89\x19\xea\x44\x51\x87\x43\x77\x7a\xd3\xfe\x5b\x6e\x00\xdc\x8d\xe5\xe6\xf9\x48\xe4\x6f\x98\xd0\x6b\xc3\xf1\x82\x0a\x2d\x3e\x35\x8b\x86\x21\x5a\xb2\x8c\x09\xd6\xfb\xc2\x96\x40\x67\xed\x3a\x4e\x76\xd6\xc3\x8e\x26\xfb\x28\x1e\xc6\x0d\xc8\x83\x06\xbe\x0b\xfd\xba\x44\x0e\xa4\x1f\xe5\x0a\x25\x1c\xb7\x28\x85\x7e\x5b\x2c\xfc\x37\x6d\x4a\x7c\xb4\xc3\x5e\xc1\x3e\xee\xd3\x82\x95\xc6\x9d\x29\xe6\x3d\x76\xb5\xcb\xd2\x24\x15\x3d\x35\xfe\x1e\xe0\xf8\x5e\x5e\xf4\xc4\x86\x99\xb4\x6d\xbc\x7b\xf7\x4d\xd9\x53\xb4\x51\xca\x0b\xa0\x70\x1c\xf5\x1e\xe7\x62\xd3\xbb\x64\x05\xeb\xe5\xdb\x54\x08\xb6\x1c\x7d\x83\xa5\xc0\x02\x23\xd5\xba\xef\xe6\xfe\xa8\xb1\x11\x2a\xdc\x7d\x14\x83\x57\x8b\x52\xa8\x29\x9a\x97\x68\x3f\xbe\xc6\x69\xda\xf3\x32\x2f\x04\x5b\xfe\xd4\xc2\xa8\xc6\xd9\x4a\xe3\x7f\x2a\x31\x80\xde\x89\x1e\x86\x37\x88\xb7\xc6\xf0\xaf\xf2\x32\x95\x4d\x48\x84\xa9\x68\x82\xe8\xa4\x09\xa2\x49\x13\x0c\x72\x4d\x6b\xda\x64\xfb\x4f\x7d\xda\xc4\xdd\xbc\x5c\xd9\x51\x73\x22\x6a\xba\x54\x03\x46\x74\x90\xb0\xd8\x2d\xea\x8f\x8e\xa6\x0a\x2f\x34\x47\x47\x53\x83\x10\xcc\x20\x35\xe5\x12\x8a\x72\xa5\x9a\x72\xc1\x4a\x65\xd4\xb4\x3f\x55\xfb\x2d\x3b\x1c\x14\x96\xcb\xb0\xfc\x25\x91\x58\x66\xdc\x75\x55\x03\xba\xe0\xfe\x70\x48\xa0\xe0\x1e\xcb\x5f\xb2\xe0\x1e\x6b\x06\xab\xc9\xdf\x94\x1e\x6f\x93\xdc\x4a\x20\x85\x39\x10\x1d\x54\x4d\x18\xc0\x83\xc5\x67\x0d\x5f\x07\xb0\x3e\x44\x1b\xa0\x34\x78\xa5\x45\x0f\x81\xe4\x9a\xc1\xfb\x87\xb7\x49\x6f\x1a\xc7\x97\xa8\x6b\x23\x11\x86\x01\xdf\x6f\xcf\x59\xe1\xba\x7c\x68\x7f\x8f\xae\x1c\xed\xdd\xd1\x12\xcd\xcd\x5a\x42\xd5\x5e\xcc\x97\x3d\x9b\xa2\xaa\xf4\xe2\x82\xc1\x2d\x8c\x6a\xb4\xec\x0d\x87\xbd\xeb\x7c\x2f\xcf\xe7\x79\x7c\x9e\x5d\xf7\xb6\x2c\xe6\x42\x0a\xf2\xf2\x74\xc2\x79\x36\x2d\xf4\xf4\x69\xea\x31\x2e\xd2\x82\x65\xd7\xaa\x7d\x2e\x2b\xc5\x3b\x28\x6a\x49\x53\x6f\xa7\x0f\xc7\xa8\xf7\x6c\xd5\x2b\x73\xd2\xdb\xc5\x65\xa9\xdc\x20\x57\x1a\x4f\xb4\xda\x4d\x79\x29\x58\xbc\xec\xe5\x2b\x89\x63\x94\xda\x5f\xa9\x12\xc0\x38\x53\xe2\x17\x68\x00\x14\x16\xe5\x48\x29\x61\x50\x1f\x49\x18\xc1\x9b\x65\x29\xdc\xc3\x04\x6a\xa6\xfa\x8b\x01\x28\x1e\x8e\xe5\x2f\x95\xf1\x90\x8e\x25\x09\x3e\x1c\xf8\xe1\x50\xe0\x30\xfc\x4c\x03\xc2\xc9\x14\x5e\xa6\x38\xd2\x7a\x18\x0a\x9b\x2c\xdc\x64\xde\xa1\x4c\x79\xc6\x61\x87\x18\x20\x44\xbd\x60\x00\x11\x14\x6a\xf1\xd0\x61\x82\x0d\x23\x1d\xd5\xc4\x3e\x12\x8a\x60\x17\x55\x93\x6e\xbc\x2f\x59\x91\xc2\xbd\xe7\xa9\x11\x01\xdc\x7b\x19\x7d\x05\xa5\xb6\x61\x4a\x62\x3a\x26\x25\x9d\x90\x84\x8e\x49\x46\xc7\x64\x4f\xc7\x64\x47\xc7\x64\x45\x83\x80\x2c\x69\x03\x9f\x8a\x5c\xa9\xac\x30\xd9\xd0\x31\x39\xa7\x4b\x73\x85\xb5\x79\x70\x3e\xdd\x0c\x06\x4a\x93\x28\xab\x22\x41\x97\xf3\xcd\x02\xfb\x8c\x7b\x9f\xd2\x12\x0c\x0c\x62\x3a\x9e\x8a\x76\xde\x14\x33\x30\x5d\x27\xe5\x60\x60\xaf\x73\x36\x0f\xc7\xd0\x6e\x3f\x1f\x25\xf9\x76\x17\x17\xec\xf1\xf5\xdf\x4c\x4d\x83\x8d\xcb\x67\x7c\x95\xc9\x04\x24\xc8\x72\x0e\xb6\x76\x58\x8a\xe6\x29\xdf\xb3\xa9\x6c\x94\x04\x15\x1b\xc0\x6d\x5a\x92\x2f\x19\x12\x4d\xd1\x61\x18\x83\x6f\x78\x33\xd9\xb0\x27\x35\xce\x4e\xa9\xcf\x06\x1a\x53\x0b\x8b\x72\x89\xdb\x4f\x3a\xdc\x61\xb2\xa3\x29\xf1\x3b\x77\x51\xf2\x70\x32\xcc\x30\xc9\x68\x33\xf5\x48\x15\x3d\xdc\x04\x93\x84\x36\x53\xed\x68\x35\xf2\x36\x6e\xf0\x8a\xe5\xac\x47\x0a\xb8\xdc\x6b\x9f\x0f\xf7\x98\xec\xa9\x64\xc8\x56\x03\xca\x8c\xd6\x6e\xd5\xd8\x5b\x06\x3a\x6f\x3c\x06\xa6\xfb\xee\x86\x35\xbd\x99\xd4\x2a\x76\x73\x48\x46\xed\xbc\xcf\xb2\x69\x2d\x9f\x35\x04\x33\x86\x8d\x6e\xcb\x67\xc4\x18\x6e\xc4\xb0\xa8\x47\xbc\x89\xcb\x97\x97\xdc\xdc\x7b\xd6\x4e\x9b\xad\x11\x10\x8e\x67\xdd\x4c\x1f\x5f\x00\xdb\xdc\x8d\xe8\x45\x2e\x8f\x6d\x5b\xf5\x7f\xa3\x05\x69\xcd\x67\xea\x2f\x7d\x8e\x4b\x9f\xfb\x74\x8e\x15\x2c\x54\xe4\x2e\x5a\x9d\x67\x4e\xa1\xa9\xdc\x3c\xe6\x08\x57\x53\x07\x8c\x86\x1d\x97\xfc\x95\x04\xa5\xf2\x3a\xad\xd3\x2c\xe7\xdd\x66\xda\x5d\xc1\xbe\x95\x7f\x84\xcb\x76\xaa\xd9\x6d\xa1\x0a\x76\xef\x99\xba\x34\x71\xbb\x93\x82\x70\x13\xc2\x47\xef\x10\x1b\x18\x13\xba\x53\x0b\x82\x30\x58\xe8\x77\xa8\xa4\xca\xe3\xfa\xa2\xc9\x77\x3f\xd4\xe1\x5b\xba\x9c\x83\x25\x62\xcb\x3b\x2d\x93\x1f\x8c\x67\x93\x01\x1a\xb2\x07\x0f\x26\x38\x1a\x0f\x10\xfc\xa8\xe4\xc6\x5c\xe6\x37\x82\xde\x9b\x84\x39\x41\xf9\xc3\x87\x0f\xe9\x7d\x2c\xe9\x03\x12\x07\x7a\xef\x2e\x26\xdc\x3d\xe2\xb8\xba\xdc\xa4\x19\x43\xf9\xc3\x71\xed\xb3\xad\x1d\x8c\xfc\x11\x39\xbe\x06\x80\xc3\xcd\x3d\x00\x29\xe9\x58\xa2\x72\xd9\xab\xe4\x2f\x1e\xd2\xb8\x4d\x7a\x9e\x5e\xed\x58\x22\x89\xf5\x36\x2f\x58\x6f\x99\xae\x53\x51\xf6\x52\xde\x3b\x8f\x4b\xd6\xfb\xee\xdb\xde\x2f\xcf\xff\x53\xd1\x5a\x4d\x6a\x21\xb4\x02\x4a\xc1\x71\x13\x06\xea\xc5\x32\x11\x83\x01\xee\xba\x2d\x30\x04\x4e\xb6\xfa\xdd\xb7\xaa\x1b\x49\xe5\x54\x65\x59\x71\x38\xc1\x78\x9a\xd3\x7e\x1f\xdd\xbb\x1b\xa6\x98\x94\x03\x8a\xd2\x90\xde\x9b\xe0\x07\x0f\x12\x92\x0c\xe8\x7d\x03\x0f\x3c\xd5\xd7\x15\x5d\x4a\xa8\x87\x0f\x27\x53\x27\x2c\x0d\x9a\x84\x0c\xcf\x86\x22\x12\x15\x2a\x31\xe1\xa3\x82\x95\x82\x8a\x8e\xe8\x18\x66\xd9\xef\xfd\x80\x49\x4e\x3f\x83\x39\x48\x4a\x3b\x6d\x18\x4f\xe3\x9d\xeb\x32\xae\x2f\x32\xde\xc7\xf2\xcc\xd2\xf9\xc2\x9c\x15\x26\x68\x6a\x23\x5b\x74\x88\xae\x55\x0c\xda\x36\x38\xea\x0d\x6c\x5a\x1b\x8d\x28\x4d\x5e\x41\xc7\x24\xb7\x2b\x3e\x2d\x1e\xe4\xe0\xd5\x03\x1a\x25\xc4\xe6\xc5\x82\x08\x77\xf7\xc4\xae\x30\xef\x19\x43\xd9\xdd\x9b\xce\xec\x28\xa1\x48\x54\xfb\xce\x3b\x10\x78\x21\xd1\x11\xb2\x25\x8d\x4c\xeb\xf7\x10\x2f\x97\x9d\x1a\x82\x74\xc6\xa2\xa2\x81\xb3\x49\x4c\x75\xcf\x2a\xe2\x45\x94\x7b\xe8\x99\x09\x50\x4b\x53\x07\xa0\x66\xce\x71\x18\xf6\x85\x51\xa7\xa8\x1c\x1d\x73\x88\xc4\x87\x03\xf2\xe6\x03\x31\x33\x4a\x2b\xef\x33\x31\xe7\x0b\x2a\xb1\x78\xec\xaf\x75\x33\xbe\x48\xea\x5d\xfd\x40\x5b\x6a\x98\xca\x46\x9f\x36\x67\x63\x40\xde\x9a\x84\x68\xf4\xa5\xa9\x70\xbb\x3f\xd7\x77\x11\xfa\xd3\x81\x3f\xd4\x41\x1e\xdb\xf1\x54\xd6\x9c\x84\xb7\x47\x91\xae\x50\x07\x18\x5b\x73\x99\xf3\x45\xd5\xd2\x0e\x04\xdf\x0c\xd8\xe0\x1b\x6b\xb0\x25\x59\x5d\x29\xd7\x33\x31\xfa\xa6\x31\x87\x58\x34\x87\xcf\x80\xd3\x65\x0f\xda\xab\xe5\xf7\x0d\x39\x73\xb6\x98\xb6\x10\xc6\x8b\xbc\xc7\xd4\x6b\xc0\x3d\x00\x11\x5b\xf6\xce\xaf\x25\xc2\x68\xf4\xad\x09\xe2\x31\x93\x12\xdd\xb7\xf2\x10\x02\x22\x60\x54\xfe\x34\xfe\x17\xb9\xfa\x82\xab\x47\x2b\x4e\x47\x6d\xb7\x3b\x5f\x90\x5c\x92\x8a\x94\xf6\x27\x9a\xc1\xee\x4b\x0e\xbb\x3f\x91\x2c\xf6\x34\x7b\x60\x0f\x6f\x66\x2c\xbf\xf6\x94\xcd\xb3\xc5\xb4\x9c\x25\x33\x59\x0e\x22\xa2\x51\x4a\xf7\xf2\x6b\x1c\xed\x29\xa5\x25\x18\xfd\xf4\x27\x38\xfa\x26\xf8\x86\x82\x24\x1d\x7c\xa3\xca\x94\x74\x1f\x05\x48\xfd\x8e\x07\x74\x12\x05\x58\x7f\x00\xa9\x89\x87\x54\x12\x25\x4a\xa5\x74\x0b\xf6\xc1\xc2\xb2\x82\x7b\x0c\x1c\x6d\x7f\x8c\x49\x3a\x43\x81\x44\x6c\x39\x78\xc4\xc8\xe3\x94\x8f\x44\x91\x6e\x11\x58\xca\xe9\xe9\xe0\x28\x1f\xd0\xbd\xe6\x0e\x11\xf8\x40\xca\x2a\xb8\xa3\x4e\x51\x91\x72\x17\x27\xac\x2b\x52\x47\xa1\xdd\x65\x18\x99\x07\xbd\x80\x80\x27\x73\xf0\x4e\x04\x0b\x5c\x81\xd3\x72\xfc\xb9\x4a\x24\x58\x90\xfe\x18\x57\x15\xc9\x69\xf1\xdf\xb4\x1d\x56\xd7\xea\x5f\xb4\xf8\x79\x07\x57\xe0\x04\xa0\xca\x51\xc3\x0f\x05\xee\xdf\xbb\x02\x85\x40\x08\x0b\x7d\xe7\xa7\xdd\x30\x0e\x07\xe3\x90\x01\x06\xc5\xbc\x2a\x54\xd4\x8b\xfc\x78\xd4\x8b\xe2\xeb\xa3\x5e\x14\xda\xb6\x39\x6f\xdb\x78\xa5\xa3\x82\x6d\xf3\x0b\x76\xb2\x49\x33\x07\x8b\xbb\xda\x46\x79\xc0\x60\xeb\x20\x4b\x63\xfa\x5c\xf9\x7f\x19\x6f\x6d\xcf\xa1\x62\x62\x34\x9e\xca\xd5\x74\xb2\x70\x5d\x43\xa8\x93\x53\x78\x39\x98\xb8\x41\x77\x9c\x51\x79\xb0\xac\x48\xda\x65\xe3\xeb\x9a\x1b\xba\xa6\x6c\x75\x59\xaf\x15\x50\xa0\xe2\x74\x85\x82\x5d\xc1\x76\x8c\x83\xed\x5f\x81\x3b\xe6\x32\xe3\xc7\x46\xef\xcf\x2b\xd2\x2a\x64\xaf\xb8\x95\x66\xa1\x5a\xed\x5f\xa3\xd5\x8b\x39\x89\x1b\x56\x21\x92\x21\xd2\x56\x21\x29\x8d\x67\x69\x94\xde\x62\x15\x92\x80\xd1\x30\x20\xe2\xf2\x21\x4d\x7d\xab\x90\x84\xa6\xf3\xd2\xb3\x0a\x29\x69\xda\x65\x15\x92\xd0\x52\x5b\x85\x24\xde\x4c\xbd\x89\x58\xa3\xdd\x5c\xc2\x5f\xe4\xaf\x95\x51\x61\xc7\x79\x6d\x58\xc9\xdf\x54\x60\xaf\x8d\x94\xf9\x3d\xd2\x3f\xbf\xd7\xda\x35\xc2\xb0\x67\x20\x44\xf2\x0a\x21\x30\xd6\xbf\x7f\xf7\x76\x63\xfd\x3a\x9a\xe2\xbf\xd6\x87\x40\x63\xfb\x14\x71\x34\x06\x14\x28\x7f\x4d\xc6\x3f\xb8\xa6\xc0\xe9\x17\x9b\x02\xd7\x43\xab\xe3\x9f\xa8\x53\x0c\xf2\xd0\x95\x38\x1c\xac\x79\xc8\x9f\x18\xbb\x1d\x51\x61\x14\x8c\x10\xb7\x28\x56\x66\x8a\x4a\x53\xce\xe6\xe9\x02\xc5\x98\x38\xcb\x0c\x06\x33\x99\xbf\x62\x1c\x65\xb8\x2a\x61\x5f\xcc\x04\x4a\x70\xa4\x6d\xc6\x24\x23\x9d\x67\x17\x0c\x25\xda\xf2\xa7\x20\xb9\x13\xc9\x29\x77\x40\xd1\x90\x86\x15\x4f\x43\x38\xb5\x9e\x04\x96\x3f\xed\x34\x49\xcb\x89\x66\x86\xa4\x60\xa3\x1d\x11\x08\x6f\x59\x60\xa3\x58\xc5\x66\x22\x09\x09\xe4\x6e\x86\x70\x0c\xae\xc9\x75\xa3\x0c\x70\x1c\x50\xa8\xd4\x41\x8c\x20\x52\x5f\xc5\x47\x4b\x24\x48\x10\xfb\x21\xfd\xec\x2e\xc7\x1d\x61\x49\x5b\x8a\x67\x4e\x83\xb9\xd6\x5c\x3e\x2a\xaf\x79\x62\x62\x71\x2d\x02\x52\xd4\x59\x4e\x6a\x5e\xa7\x5a\xd9\xd4\xc9\x4e\xeb\xec\x17\xfb\x2c\x5b\x04\x24\xae\x53\x20\x5c\xd9\x22\x20\x65\x9d\xf4\xd6\x88\x26\x8b\x80\x24\xb4\xb6\x9d\x36\x9a\x63\xd0\x67\x8a\x91\x22\x1f\xf6\xca\x2a\x0c\x05\xc9\xda\xa5\x4b\x96\xad\xc2\xb0\xfe\xb7\x5d\x4d\xa6\x92\x3d\x4d\x0e\x87\xec\x70\x30\xc3\x46\x81\xc3\x87\x05\x18\x61\xb2\x6b\x49\x55\x64\x45\x77\x4d\xc9\x6a\x49\x77\x56\xc8\x27\x1b\xba\x1f\x29\x3c\x47\xce\xe9\x66\xb6\xb1\x39\x67\xf1\xda\x84\x04\xb4\x6b\xbc\x75\xf6\x9c\xbe\xf8\x9a\xd5\x58\x67\x56\x46\x69\x74\x1e\x86\xe7\x92\x93\x55\x03\x41\x0c\xcf\xda\x22\xe4\x4a\x11\x04\x46\xce\x31\xe1\x94\xcd\xcf\x17\x60\x75\x26\x7f\xf8\x9c\x9f\x8d\xe2\x96\xe2\x1b\x6d\x39\xa7\x49\x92\xe4\xff\x25\xad\x9b\x41\x25\x6e\x48\x80\xfc\xaa\x25\x83\x4a\x0a\x39\x1d\x88\xd2\xb6\x21\x0b\x54\xf5\xe1\x6f\x6a\xce\x3a\xe2\x9c\x68\x23\x7c\x5f\xef\x23\xf1\xad\xb3\xa8\x87\x83\x6b\xb8\x2f\xa0\x97\x3a\x24\x9e\x6a\x68\xeb\x48\x30\x02\x22\x3a\x08\x4a\x73\xf8\x97\xc3\xbf\x71\x55\x61\x87\x6e\x72\x34\xb9\xdf\x75\x30\xfa\xad\xa3\x7f\x53\x4d\x1d\x74\x46\xa4\x84\xb9\xdd\x65\xec\xa7\x34\x6b\xb8\xeb\xb9\x51\x4c\x57\x90\xeb\x3b\xac\xd6\xbe\x47\xac\x14\x50\xbe\x52\x4a\x1e\xf9\x7d\xa4\x21\x6d\x2b\x31\xda\x2a\x33\x70\x59\x87\xe8\xaf\x96\x36\x85\xcb\x99\xde\x54\xd6\x53\x6c\x4c\x52\xc9\xc9\xc7\x54\x34\x94\x2b\x24\xa3\x7c\xb4\x2b\x98\x64\x7e\xc9\x5e\xfe\xce\x4b\x01\x1f\x3b\xca\x47\x49\x5c\xb2\x37\x8c\x97\xa9\x48\x2f\x58\x18\x4a\x31\x75\x24\xf2\xe7\xf9\xa5\x09\x5f\x30\x65\xed\x52\x60\x1f\xee\x97\x32\xe2\xc4\x4a\x32\x01\x0f\xe2\xe9\x6a\x30\xc0\x05\x15\xf3\xd5\x82\xec\xe6\xab\x85\xdc\xe0\xf3\x7c\x31\x43\x05\xcd\x06\xc5\x60\x4f\xc0\x17\x30\x19\xd0\xc9\x20\xc1\x91\x1c\x65\x39\xa0\x09\x49\xe7\x86\x19\x58\xd0\xc2\x6e\x44\x37\x7a\x2f\x2a\xe9\x0e\x4e\xcb\xe4\xce\x38\x2a\xc9\x4d\xc1\xf8\x92\x15\x6c\x19\xa5\x36\x58\x2f\x29\x13\xc9\xd6\x94\x15\x56\x8a\x50\x22\xf4\x02\x79\x50\x97\x4c\x57\x1d\x68\x70\x0c\x6e\x88\xba\x8f\x40\x51\x76\xd7\xf5\x73\xc6\x23\x54\xc8\x7d\x76\x53\x81\x8e\xa6\x11\xd4\x98\x1b\xf2\xa5\x48\x57\x3e\x2d\x46\xec\x4a\x14\xb1\x44\x3e\xe0\x11\xa1\xbf\x50\xae\x55\xc2\x89\xb3\xca\x25\x29\xb0\x7f\x22\x92\x30\x44\x7c\xce\x2d\x28\x6e\xd4\x80\xa2\x64\x64\xa6\xab\xe7\x98\x8c\xe0\x2f\x84\x70\xba\x8a\xd2\xfa\xba\x25\x97\xdc\x4b\x85\xc9\x7c\xa1\x23\x31\xa3\x4e\x1b\x7a\x55\x7d\xc8\xd4\x5f\x3b\x08\xb9\xbc\xd0\xe4\x50\x8b\x5e\x15\xc6\x38\x9a\x2f\xaa\x0a\x7d\x59\xd0\x6b\x8e\xbe\x1d\xeb\x08\xb9\xf7\xbf\x55\xd6\x6c\x93\xfb\xf7\xb1\xb2\x62\xbb\xff\x9d\xe4\x15\xe5\x8f\xef\x25\x75\x97\x3f\x7e\xc0\x72\x97\xa2\xc9\xfd\x1f\x41\xab\x8f\x26\xdf\x8d\x25\x3a\x96\x3f\xee\x61\xb2\x92\x3f\x7e\xb8\xe7\x50\x54\x1d\xcf\x98\x85\xe1\x67\xa3\x40\x73\x7c\x23\x10\x9b\xf3\x85\x3e\x81\xb6\x0d\x2f\x3a\xf1\x4d\xd5\xa9\x7a\xf7\xa3\x3f\x9e\xbb\xb0\xab\x03\x51\xcb\xc1\x78\xd7\x06\x12\x6f\x87\xa1\x1f\x58\xda\xc1\x93\xa7\x00\xa4\x2d\xbd\xf3\xcf\xf9\x3f\xdf\x8d\xdf\x89\x77\xfc\xdd\xea\x5d\xd1\xbb\xf3\x80\x3e\x5c\x0c\xfe\x72\xa7\x9e\xe5\xa9\xab\xfa\xbb\xa0\x81\xc3\x37\x5d\xb7\x5c\x21\x94\x36\x39\x5e\x53\x1d\x14\x29\x16\xa2\x48\xcf\x4b\x89\x4f\x6f\x2a\x62\x72\xcd\xfd\x13\xbd\x30\x58\x42\xe5\xb0\x2b\x41\x4d\x10\xc0\xfd\x6e\x19\x0b\xa6\x9e\xe4\x7a\x91\x2f\xd9\x99\xcc\x74\x10\xe5\x8b\xda\x3c\xe4\xc5\xfc\x45\x1d\x2d\x42\x85\x9a\xa2\x1c\xfe\xe2\xaa\x12\x33\x29\x0e\xa2\x53\xc3\x13\x4a\xf1\x05\x6b\xdf\xa0\x99\x71\x91\xa4\x39\x5a\x13\xf3\x81\x23\x9b\xbc\x8e\x90\xa0\x75\x55\x6c\xd3\x01\x78\x8f\xc8\x25\xf9\x44\xc5\x88\xe7\x5c\x8e\xee\x2c\x5e\x97\x87\xc3\x3c\x28\x93\x22\xdd\x09\x78\xe0\xf9\x3a\x83\x97\xef\xd8\x95\x88\x0b\x16\x07\x8b\xa9\x18\xc5\x59\x96\x5f\xb2\xe5\x23\x00\xcc\x5e\x40\x24\x81\x47\xf4\xa6\x22\x97\xf2\x9f\x25\xea\x28\x41\x1a\xc7\xe6\xd1\x5c\x2c\xe4\xca\xdb\x2d\xc0\xba\xe3\x8e\x27\xb0\x03\x58\xed\xd7\xfc\xd7\x00\x3f\xa4\xe3\x99\xde\x13\x92\x0f\x77\xa2\xdc\xbd\x7b\xf7\xd7\x3b\x6b\x12\x8c\xfe\x1a\x60\x1c\xc9\x2e\xdc\x9d\x73\x29\xbb\x74\x22\x8f\x07\xff\x44\xc1\xc0\x09\x3f\x3e\x08\xf0\x5f\x02\x59\x52\x21\x96\xf7\x92\x82\x39\x73\x39\xc9\xe2\xb2\xec\x98\x48\x18\xa2\x0d\x7a\x04\x22\x3e\xd2\xb3\xc2\xa4\xee\x3b\x48\x64\xbd\x00\x63\xf2\x5e\x66\xb2\x4a\x37\xff\x92\x9c\x99\x0e\x44\x11\xf3\x72\x95\x17\x5b\x09\xfd\x66\xfb\x4a\xab\xd0\xe9\x81\x37\xe3\x94\x45\x06\xc5\xfa\xd1\x16\x39\x3d\xd5\xf4\xf6\xcc\x34\x0e\x41\xa4\x83\xbf\x2a\x47\xf5\x97\x94\x47\x67\x00\x0f\x33\x9e\x2b\x3a\x26\x2f\x24\xdd\x7b\x2e\xd7\xf0\xa9\xfc\xe7\x0d\xed\x4f\xc8\x47\x3a\x26\x27\xda\xa4\xfc\x15\xec\x1c\x74\x93\xf3\x7c\xc7\xb8\x88\xd7\x91\x4f\x7d\xd3\x15\x7a\x83\x3f\xea\x1b\x5c\xa3\x66\x67\x97\x70\xc6\x38\x9e\xbe\x50\x10\x29\x74\xec\x5a\xa5\x26\x4b\x68\xbf\x5f\xc0\x46\x9f\x6e\xd0\x19\x91\xab\x8d\x72\x7a\x36\x87\xc0\x71\x1c\x93\xc2\x9e\x3f\x4e\x73\xf3\x9b\x28\xee\xac\x4f\x69\x0e\x55\xc1\xd0\x32\xe5\x9c\x15\x70\xc4\x54\x22\x26\x4c\x15\x88\xd7\x2f\x7c\x63\xcc\x3a\x91\x3c\x9d\x5f\x2d\xea\x4f\x8c\xc9\x4b\xe8\xff\xe5\x6d\x9d\xff\x99\x66\xed\x36\x92\x6b\x1c\x86\x70\xb5\xe2\xa5\xd9\x1d\xce\x8c\x66\x8e\x80\xca\xee\x93\x9f\xf1\x46\x66\x7c\xa4\x13\x4c\x9e\xcb\x2e\xfa\x63\x4c\xae\x06\x03\x92\x1e\x0e\xe8\x62\x40\x83\x07\xc1\x80\x11\xd4\x7f\x74\x38\xc8\x3d\xc9\xf0\xe1\xf0\x68\x1e\xfc\x35\x58\xe0\x30\x5c\x22\x4e\x3c\x3a\x0b\xeb\xb5\x55\x5c\x55\x6e\x62\x05\x80\xb6\x12\x02\x48\xd9\x36\xb4\xee\xf0\xd1\x9c\x2d\xec\x58\x72\xdb\xb2\xcd\x95\x1f\x5e\xfe\x06\x5d\x42\xed\x4b\x59\x51\xf7\x72\x38\x5c\xea\x5a\xea\xaf\xed\x3d\x91\x82\xb7\x51\x95\x3c\x0a\x43\xd9\x9b\x1a\xd2\xa9\x9c\xf1\x5a\x6e\x95\x6b\xc3\x94\x4b\x26\xdd\xb0\x49\x9f\xc8\x4b\x18\x5a\x97\x92\xa4\x8f\x4e\x29\xfa\x44\x5f\xfa\x3a\x8f\xa9\x6c\x51\xb5\x7d\x46\x3f\x29\x89\x58\xb9\xc1\x9c\xe1\x30\x3c\xd3\x57\xe8\xea\x2f\xa5\x34\xc7\x37\x89\xd1\x0a\x5c\x51\x1d\x5d\x4b\xca\x19\x67\xa3\xed\x3e\x13\xe9\x2e\xd3\x5c\xf9\x0b\x1b\xb0\x14\x42\xcb\x3d\x97\xe3\x7e\x2a\xc7\xfd\xa6\x6b\xdc\x1f\xc9\x09\x7d\xd1\x3d\xe8\xe7\x14\x7d\xa4\x27\x8d\x41\x3f\xb7\x83\x7e\x42\x3f\xea\x41\x03\xe4\xcf\x46\xda\x3e\xc6\xc0\xfe\x89\xdc\x27\x81\x3c\xe7\x57\xb3\x2b\xfa\x24\xba\x82\x58\x77\x83\x27\xb8\xd2\x42\xcc\x2b\x7c\xf3\x54\x0e\xee\x0d\x7d\x55\x69\xdf\x48\xd0\x16\xf4\x9f\x87\xe1\xc9\x48\xd1\xe2\xfa\x17\xc2\xb6\x50\xba\x42\x4f\xf5\x85\xdf\x9b\xaa\x52\x9e\x8b\xad\xee\x39\x86\x1b\x01\x74\x45\x39\x9e\x72\x7a\x55\x39\xdd\xae\x65\xb7\xd7\xcd\x6e\x4f\xc3\xf0\xa5\xed\xf6\x65\x67\xb7\xc6\x8f\xeb\xba\xaa\xaa\x74\x85\x12\xd8\xbb\x5a\xa5\xad\x0f\xd1\x9b\x64\xc3\xb6\xac\x7c\xb4\xdb\x65\x29\x5b\x9e\xe5\x35\xed\x71\x76\x65\x18\xfe\x0a\x27\x1b\xbb\x8a\x0f\x2d\xb3\xd9\xc3\x3e\xcf\x55\x28\xb3\x74\x55\xc4\x5b\x88\xec\xc1\xc2\x30\x28\x8b\x24\x50\xdb\x41\x2e\xc2\x63\xaa\xe3\x85\xa3\x94\xae\xf4\xf3\x27\x9c\xf4\x27\xa4\x3f\xc6\x58\x59\x14\x42\x98\xb6\x4d\x5e\x0a\xe7\x13\xe4\xe1\x24\xcf\x66\x8f\xe9\x06\x74\x0f\x72\xec\xcf\xa0\x9f\xd7\xda\xdc\xe1\x6d\x91\x95\x01\x9e\xe9\x79\xb5\xf3\xa2\xbe\x9d\xb2\xca\xfc\x39\x2f\x85\x36\x1f\x38\x92\x11\x86\xe8\x31\x3d\x96\x39\x5a\xa5\x7c\xd9\xf9\xd8\x07\xb3\x33\x90\x05\x25\x61\xd4\x2b\xf9\x1a\xdf\x3c\xa6\xfd\x89\x5c\x89\xfe\xe3\xcf\x81\x52\x96\x92\xc0\x2b\x99\x50\xf0\xd3\xfe\xb3\x4b\x94\xd2\xbd\x81\x1c\xf6\xf9\xbe\x5f\x6d\x0d\xc2\x46\xfb\x22\xc3\x60\x64\xc0\x2e\xd2\x4c\x9e\x02\x49\xcc\xfb\x28\xa5\xe7\x28\x25\x1d\xe3\xee\xab\x92\x72\xbc\x8d\x9b\xa8\xa3\xab\xcd\xa9\xe3\x19\x86\x3e\xdf\x2e\x71\x6b\x53\x5e\x83\xe5\x4b\x60\xa1\x18\x02\x0a\x17\x2e\x7d\xd4\xf4\x7f\x06\x4b\x99\xfa\x71\x02\x7d\x18\xc0\x89\x41\x07\x43\x2e\x07\x77\x30\x6e\x4b\xca\x76\x9c\x8d\x9b\x1e\x60\x7e\x34\x97\xd3\x0b\x70\x85\x38\x79\x0f\xd1\x41\xbe\x14\x38\xb0\x7e\xc0\x06\xba\xcb\x27\x31\x20\xe2\xdd\xd1\xda\x94\x72\x7c\xbc\xd0\x7a\xf4\x96\x90\xe7\x1b\x0b\x01\x53\x20\x54\x44\x54\x08\x67\xad\x30\x0a\x26\x4c\x8b\x5d\x6a\xec\x53\x39\xf6\x5b\x61\x65\x02\x4e\xc6\x88\x61\x52\xc7\xb9\x1c\xcb\xf5\x15\xf3\x7c\x64\x22\x9a\x2e\xc2\x50\x00\xf5\x99\x95\x28\x46\x5e\x0e\x26\x2a\xa7\xc9\x85\x49\xa2\xd4\xf0\xdd\xb4\xfd\xda\x08\x2c\xca\x3b\xd7\x6d\xee\x70\x50\xcd\x4d\xb9\x62\x13\x3c\xb8\xd0\xdc\x87\x4f\x07\x28\x9b\xfe\xc1\xbe\x64\xa5\x82\x9f\xef\xe0\x70\xcc\xd5\xef\xc5\xa8\xcc\xb7\xac\xfb\x34\x2b\x5a\xab\x0d\x2a\xe4\x58\xc3\x50\xc7\xfc\xe0\x4e\x3c\xc5\xaa\x92\xa7\x71\xbe\xa8\x93\x8a\x0a\xed\xf4\x39\x65\x83\xa0\x77\x03\x2f\x0c\x55\x81\xc3\xd3\xbc\x91\xbb\xa3\xfc\xf2\xf3\xf6\xe5\xe7\xe5\x42\xd1\xae\x9c\xf0\x5a\x54\xba\x18\xd0\x6f\x68\xf0\xcd\xe0\x83\x44\xb8\x63\x3c\xf8\x26\xf8\x06\x2b\x5a\xd4\xd5\xc2\xd1\x0c\x8c\x89\x3e\x29\x25\xcb\x56\x27\x59\x5e\xa6\x7c\xed\x9c\x9a\x19\xf4\x7d\xe7\x61\x10\x01\x67\xf5\x30\x20\x7d\x87\xc7\x3c\x1c\x12\x50\xf0\xb0\x2b\xa1\x34\x5a\x8a\x01\x73\x4a\x48\x74\x59\x11\xa5\xe3\x8f\x9a\x1a\xbd\x37\x75\x78\x54\x4f\xf2\xd3\xa1\x0a\x11\x5c\xf0\xc7\x6b\xc2\xa8\xe5\x74\x9d\xa6\x67\xce\xef\x88\x61\x62\xc4\x35\x1d\x74\xd3\x1e\x56\x8e\x2f\x06\x94\xb9\xa1\x6c\x3f\x20\x46\xfa\x13\x3c\x75\x47\x2e\x27\xea\x7e\xa3\x1c\x47\x17\x03\x9a\x4b\x64\x65\x86\x86\xbb\xe4\x53\x06\xf3\x4b\xb2\xbc\x64\xbe\x2c\xa0\x25\x01\xa0\xd1\xc3\x8f\x7a\x37\x4c\xa5\x38\x51\x29\x79\xef\xc5\x68\x97\xef\x90\xbe\x82\x83\xc2\x92\x4f\x7a\x3e\x1f\x0e\xaf\x6c\x68\x51\xbd\x66\x92\xcd\x55\xec\x3e\xef\x94\xa7\x11\x9e\x4a\x66\x1b\x6e\x9a\xe4\x0f\xa2\xeb\xc9\xdf\x72\x8b\xb2\xab\x24\xdb\x97\xe9\x85\x56\x3c\xca\x3d\xdf\x48\x42\x1c\xcf\x2e\xe8\xc5\xa8\xdc\x9f\x97\xa2\x40\x63\xc2\x5d\xf9\x1e\x47\xe8\x58\xc7\x44\x73\xf1\xdd\xfb\x47\xed\xd4\xe0\xc1\x1d\x08\x5e\xfe\x30\x90\xdb\xa1\xaa\x05\x74\x73\xba\x4e\xea\xb7\x7c\x4e\xd4\x33\x42\xe4\xa2\xd6\x4e\x7c\x70\xd5\x9a\x1d\xda\x34\x39\xed\x01\x0d\xe0\x30\xea\xa7\x81\x94\xad\xd6\x53\x2e\x52\x91\x02\xe9\x97\xb4\xc3\x8a\xc8\xa1\x94\x8f\xc3\x78\xbb\x9b\x06\x8e\xe0\xfc\x00\x52\x33\xe1\x25\xbe\x7b\x08\xa9\x6b\x99\x4a\x78\xb3\xa1\x77\x01\xe4\x7e\xdc\xe7\x32\x1f\x63\xe2\x77\x83\x66\xfd\x79\x3c\xfc\xf4\x68\xf8\x8f\xf1\xf0\xc7\xff\xb5\xb8\x99\x90\xbb\xe3\x6a\x8a\xff\x4d\xbd\x13\x56\xeb\x96\x7e\x75\xa3\xe7\x23\x4e\x1b\xa1\x14\xdf\x5d\x8d\xc7\xc3\x77\x57\x77\xc7\x8b\x81\x8e\xb6\xe7\x0c\xe4\x5d\xff\xdd\xf0\xdd\x70\xf4\xd7\x99\xfc\xa3\x46\x20\x0b\x28\xfd\xe2\x9d\x7f\x22\x3d\xa5\xc5\x00\xbf\x8b\xee\xc0\xf6\xed\x9b\xc0\x09\xfd\x3e\xb7\xe5\xe6\xef\xee\xbc\x7b\xb7\xb8\xb9\x5b\xdd\xc1\x61\x68\xd8\xb5\x57\x9a\xf5\x33\xbc\x9c\xb6\x2b\x28\xe6\xf2\x3c\x79\x1a\x60\xbd\x33\x36\xa8\xc9\xdb\x3e\xbe\x3e\x93\x38\x01\xcf\x7c\xf1\xd1\xcd\xf5\x85\x34\x87\x57\xd4\x85\x0e\x87\xce\xba\x4e\x1d\xf5\x12\xd8\x9a\xde\xf8\x1b\x29\xea\x8f\xab\x69\xad\x46\xa2\x37\x8e\xec\x1a\xcd\x83\xcd\xbd\x80\x04\x9b\x6f\xe5\x3f\xf7\xe5\x3f\xdf\x05\x24\x80\xa0\xd0\x72\x89\x58\x40\x82\x5d\x00\x37\x6d\xc1\x3e\x0b\x48\x90\xcb\x7f\xb8\xfc\x27\x4b\x65\xc1\x80\x04\x29\x28\x9b\x8a\x9c\xaf\x21\x38\xb3\xfa\x4a\x3f\x30\x88\x9b\xbe\x94\x7f\x36\x85\x2c\x2a\xff\x59\xa6\x17\x01\x09\x20\xd4\x91\xfc\xbb\x61\xf1\x52\x16\x8b\x77\xca\x63\x36\x10\xe7\xf9\xf2\x5a\xfe\x2d\x20\x5b\xfe\x23\x0b\xec\x0a\x59\x5c\x73\xf5\x0b\xd2\xd2\x51\x45\x37\xb1\x9c\x49\x01\xef\xb8\x2a\xff\xc2\x40\xc4\xc5\x9a\x89\x60\x41\xd2\xed\x3a\x9a\x83\x10\xb0\xa8\x88\x73\xe2\xa3\x79\x90\x6e\xd7\x66\x64\x30\x46\xd0\x93\x91\xe0\x3c\x2e\x99\xfe\xb3\xca\xb9\x90\x5d\xf3\xdd\x5e\xc0\xa4\xf9\x87\x80\x04\x5b\x26\xe2\x7a\x1c\x7a\x25\xe4\x08\x84\x90\xd0\x92\x7f\xca\x80\x04\x2b\xf8\xda\xc6\x69\x26\xf2\x56\x71\x58\xf4\xe8\xa6\x22\x9f\x95\x82\xea\xa9\xc9\x49\x90\x20\x49\x85\x85\x42\x73\x6f\xca\xc5\x26\x2d\x0d\x52\xeb\xe6\xc4\x68\xb9\xa9\xbd\x7b\xe3\x87\x03\x27\x42\xab\x4a\x6b\x2f\x56\x92\x3b\x91\xd3\x38\x38\x02\xa4\x60\x66\x86\xf3\x79\xba\xa0\x62\x9e\x2e\x94\xf0\x9f\x53\x13\x55\xf2\x46\xeb\x4e\x22\x46\x34\xd1\x8e\xf2\xaa\xfa\xdc\x5b\x67\xd6\xb4\x53\xe9\xcc\xef\x2b\x8d\xf9\x18\xf4\xe5\x23\xae\x6c\x2b\x38\x9a\x80\xb6\x7c\xc4\x51\xa9\xb4\xe5\xdf\x82\xae\x7c\xc4\x51\xa6\x74\xe5\x77\x31\x59\x51\x39\x80\x68\x37\xfa\x83\x00\xbf\x0e\x43\x49\x46\x26\xe4\x19\x49\x4a\x7d\xdd\x0f\x89\xea\xce\xad\x22\xcb\x4e\x67\x69\xdb\x00\x01\xab\x20\x53\x93\xa4\x94\x01\x91\x37\x3e\x8d\x28\x1f\xc5\x18\xac\x9c\x6c\x0d\xb9\x4e\xa5\x7d\x8e\x32\x10\xf1\x3a\x58\xc8\xc1\xeb\x0a\xbb\xd1\x1a\xa3\x3d\xc2\x52\x94\x84\xcd\x35\x5c\x17\xf9\x7e\x37\x94\xf4\x59\xa2\x4d\x8b\x4b\xe2\x51\xac\xad\x0e\x9e\x2a\x53\x3b\x94\xea\x00\x61\xa8\x90\x9d\xde\x54\xa4\x24\x37\xce\x4c\x2b\x8c\xab\xe9\x12\x78\xca\xb3\xeb\x1d\x2b\xe9\x8a\x2c\xcd\xe1\x97\xfc\x67\xa9\xe0\x13\x94\xbb\x98\x07\x10\xe0\x9f\x2e\x3f\xb3\x36\x2d\x7f\x6f\x7e\xfc\x05\x30\xcf\xce\xd6\x70\x04\x9e\xc9\x2d\x73\xf5\xf6\xc3\x49\xed\x62\xde\x64\x80\x9d\xeb\x29\x36\x1f\x2f\x74\xe0\x41\x4e\x0b\xa2\x45\x49\x5e\xb5\xad\x17\x6c\x37\xc2\x5a\xf6\xbe\x67\x5c\x14\x29\x2b\xdf\xbf\xa7\xf3\x45\xe5\xbb\x1d\x34\x5f\x11\x75\xee\xbd\x83\x32\xfd\xc4\x02\x72\x73\x4b\x9c\x06\xa7\x69\x6b\x5b\xeb\xbe\xb7\xd6\x7e\x63\xcd\x37\xfa\x5a\x33\xe7\x56\xa1\xf6\xcd\x45\xcd\xc6\x89\xc0\x26\x1c\xbf\x93\x0a\x81\xe7\xea\x38\x9d\xf3\xc9\xa2\xf2\x5a\x2f\xbd\xd6\x6b\xd2\xda\xd9\xfe\xf4\xbf\x8a\x59\xab\x83\x62\x31\x9f\x2c\xa8\xf1\x88\x70\x26\x0b\xc2\xc7\x5c\x10\xbe\xc0\x7e\x9f\x8a\x87\xeb\x98\x54\xab\x4b\x39\x0e\xae\x3a\x06\xd7\xf5\x1d\x98\x7f\x16\x64\xd2\x68\xd1\x33\xf4\xb5\xd2\x67\xbf\xff\x5f\x9d\xd3\xf0\xeb\x26\x19\x8b\x8b\xd6\x73\x50\xee\x44\x74\xb7\xe3\x46\x45\x7d\xa3\xd1\x34\x8c\xf6\x03\x60\x2a\x17\x76\x27\x42\x60\xc7\x1a\x4d\xf9\x83\xa2\x15\x34\x50\x45\xa1\x9f\x1a\xab\x36\x92\xcf\x27\x0b\x92\xcf\xc7\x0b\x78\x92\xa1\x42\xb8\x42\x72\xbd\x3b\x4f\xd5\x65\xca\x97\xf9\xe5\x91\xa8\xc7\xcb\x3c\x01\x6b\x9d\x30\x54\xc5\x46\x26\x81\x52\x6a\x7e\x92\xbc\xbb\x61\x30\x86\x3a\x8d\xc5\x86\x52\x78\x92\x69\xc6\xa2\xce\x72\x8e\x91\x89\x5b\x5a\x26\x74\x57\x30\x23\xd6\x43\x72\x2b\xa9\xa4\xe8\xb8\x39\x4a\xda\xf9\xe6\x64\xc1\x3e\xee\x59\x29\x1e\xf1\x74\x0b\x11\x03\x7e\x92\x7c\xc1\xac\x33\x15\x5e\xd6\x93\xfc\x54\x87\x5c\x5d\x32\x71\x96\x6e\x59\xbe\x17\x9d\xc1\xb0\xe0\x69\xc0\x11\xcf\x2f\x21\x7a\x17\x99\xb0\x7b\x77\xbe\x93\xfb\x24\xa6\x77\xb5\x23\xf3\xdd\x31\x49\xe8\x3c\x10\xb9\x24\xf3\xe6\x45\x9a\xf3\x5c\x88\x5c\x72\x41\xfa\x15\x9b\xcb\x74\x09\x8c\xcc\x86\xe9\x02\x0a\xad\x04\x97\xea\x7b\x41\xb2\x23\x6e\x0a\x7b\x01\xd3\x78\x79\x5e\xb2\xe2\x82\x15\xe4\x58\xb0\x46\xbd\xab\x93\x9c\x73\x70\x12\x79\x6f\xa3\x33\x6e\x75\x13\x4f\x2f\x18\x17\xe5\xa3\xe5\xb2\x2b\xb3\x34\x1d\xbc\x87\x0d\xad\xdf\x4d\xd5\x69\xe5\x7b\xeb\x11\x91\x73\x60\x27\x40\xb4\x7a\xca\x97\xef\x69\x67\xaa\x82\xb7\xe3\x1b\x5c\xb0\x55\xc1\xca\xd6\x49\x82\x03\xd3\x9f\x90\x42\xfe\x03\x01\x5c\x6b\x4b\x31\x7c\xa3\xe2\xa8\xf7\x27\x84\x81\x59\x72\x18\x66\xc8\xb3\x13\xc3\x37\x29\xf2\xdf\x3b\x34\x4e\x5c\xf5\x9a\xd5\x22\x2a\x1b\xe6\x0f\x62\x23\xcb\x82\x49\x10\x70\x2c\x9c\xf6\xc7\xaa\x7f\x67\x23\x24\x12\x23\xe5\xb5\x37\x5d\x56\x21\x77\x1a\xee\xf4\xea\xe0\xba\xcc\x77\xa7\x30\x00\xf5\x58\x8a\xff\x6a\xc0\xd5\x91\x37\xb5\x5b\x84\x93\x67\x5c\x23\x1a\x0b\xab\x0b\xea\x84\xf7\x08\x57\x1d\x56\xb7\x9d\xbd\x3b\x7e\x0a\x75\x37\x84\x7b\xca\xc6\xe9\x7f\x71\x29\x63\x6b\x8c\xc8\xc9\x04\x93\xbe\xb0\xca\x9b\xc6\x50\x74\xc2\x32\x2d\x8f\x8f\xa6\xb1\xf0\x7a\x9f\x2a\x89\xfc\xa5\x1d\x05\xc2\xba\x2d\x5d\xa1\xd9\x4e\xb3\xfc\x91\xb7\xc8\x1c\xe8\x1d\x57\xb0\xf6\xd8\x68\x1d\x8b\x0d\x2b\x1e\x25\xe0\x9f\x88\x09\xd0\x17\xf3\x55\x61\x27\xe0\xcd\x6d\x8f\x69\xb3\xd1\x79\x91\xc7\xcb\x24\x2e\x85\x53\x97\x30\x1b\x95\xde\x9f\x82\x01\x91\xe7\x00\x21\xe5\xcb\x26\x4c\x91\x41\xd2\x72\x1b\xc1\xa9\x7d\x9e\x96\x82\x71\x56\xa0\x40\xd8\x73\xc6\xf8\x32\xe8\x3e\x93\x98\x68\x24\xdb\xae\x5e\x30\x85\x77\x5c\x50\x63\x92\xe9\x18\x1e\x5d\xc8\x80\x5d\xb6\x70\x10\xf2\x6b\x1f\xa9\x6a\xd6\xc2\xce\x86\xdc\xc4\xb5\x30\x23\x99\xa2\x4d\x9a\x2d\xe5\xd0\xd4\x47\x5c\xc4\x89\x60\xc5\x93\x58\xc4\x32\xa1\xdc\x9f\x8b\x82\x29\x6e\x09\x47\xb7\x81\xe4\xc9\xcb\xd3\x37\xaa\xf0\x69\xbe\x84\xc0\x6e\xcd\xf9\xdd\x82\x06\xc7\xad\xe3\x05\x37\x14\xde\xc2\x39\xdb\xbb\xb1\x76\xb7\x2c\x9d\x3a\x86\xff\x9d\xd5\xeb\x6c\xa1\x7b\x01\x8f\x2c\x81\x1e\x60\xc7\xda\xd4\x53\x42\xb7\x80\x27\x0c\x6f\x9f\xce\x57\x42\xbe\x93\xc6\xdc\x4a\x9d\x3c\x6a\xd6\x58\x95\x16\x25\xea\x12\xdd\x76\x8e\x0f\x1c\x71\xe4\x5c\x31\x0b\x82\x48\x4c\x93\xa3\xea\xf6\x7e\xff\xbf\xb8\x7f\x05\xd3\x85\x9f\xd6\x4c\x3c\xd3\x11\x8a\x8f\xb9\x35\x99\x08\xc6\xef\x4d\x40\x1c\x9b\x00\x67\xcb\xa0\x77\x9b\x2a\x9b\x75\x8a\x48\x38\xb1\x0a\x4c\x72\x8f\x79\x17\x4a\xf2\xe5\x45\xb2\xc1\xb7\xb1\x9b\xc7\xc2\x4a\xe7\x44\xbf\x15\x2d\xe6\xf9\xe2\xe8\x73\xd1\x93\xb6\x28\x63\xc9\x5f\x45\x56\x9d\xd7\x49\x92\xa3\xcc\x2f\x39\x2b\x9e\x58\xbe\xb4\x91\x60\x04\xd3\x5f\x52\x76\x79\x38\xe4\x52\x0e\xbf\x40\x63\x02\xff\x39\xb6\x6e\xce\x23\xcc\x3d\x50\x96\xfe\x94\xe5\xb1\x00\xd2\x39\xf6\x6c\xd3\xdc\x77\xda\x20\x60\xfc\x64\xca\x1f\x58\x1b\x76\x17\x32\x62\xce\x87\x93\x45\x6d\xdf\xee\x08\x53\xa2\x7d\xef\xe5\x2a\x4d\xc4\x60\x83\xd8\x3c\x38\xcf\x8b\x25\x2b\x86\x70\xa7\x32\x54\x4c\xde\x42\xf2\x89\x63\x87\x2f\xd9\xfa\xca\x84\x94\x71\xf1\xab\x2c\xa9\xd4\x09\xf0\xfd\x33\xb0\x81\xea\xd1\xd6\x30\xec\xdb\x37\x35\x96\x5a\x23\x22\xf7\xa0\xdc\x6d\x27\xf9\x76\xb7\x17\xfa\xc6\x46\x5d\x93\xb9\x20\xaf\xa7\x7d\x53\x11\xb5\x33\x6e\x67\x4c\x17\xb7\x6c\x15\x92\x52\x36\x0f\x76\xf1\x72\x99\xf2\xf5\x30\x18\xe4\x8b\xa9\xdc\x1b\x74\x83\xd2\x3a\x38\x68\x85\x0a\x15\xd9\x4b\x36\x37\xc8\x47\xd0\x0d\x89\xc1\xcf\x7f\x37\xc8\x47\xaa\x3b\x52\xd2\x0d\x2a\x46\x00\x1f\x4c\x12\xf8\x50\x9c\xb0\x7a\x55\x5d\x43\xf1\x3c\xbf\x02\x27\x9e\xd1\x79\x7e\xf5\x26\xfd\x94\xf2\x75\x18\x22\x78\x18\xb6\xc8\xf7\x7c\x89\xca\x41\x8a\x75\x08\xb5\x72\x48\xcf\x51\x61\xd9\x6b\x35\x3b\x3c\x48\x31\x71\xca\x27\x83\x18\xab\xa8\xe3\x28\xd1\xe5\x15\x30\x34\x10\xf0\x20\xc6\x98\xf4\x8f\x5c\x9d\x03\xcc\x2d\x02\x34\x3f\xb4\xfe\x05\x6c\xb1\x6f\x54\x4c\x9d\xc6\x08\x87\x82\xec\x69\x63\x14\x43\x3e\x9d\xf4\x95\xb8\x33\x8a\xcf\x4b\x04\x37\xe2\xe5\x90\x66\x98\x78\xe9\xe0\xd6\x97\x0c\xe9\xde\x42\xf8\x02\x29\xd8\x12\x80\x28\x29\x49\xa2\x42\xf9\x9c\x76\xcb\x0b\x6f\x7e\xf9\xdb\xdf\x8a\x78\xb7\x49\x93\x52\x8f\x74\xd6\x35\x3d\x37\xb0\x3a\xcc\xb3\x5d\xaf\xea\x7c\xa9\xbb\xab\xa2\xae\x70\x2c\xce\xfc\x9a\x89\xc7\x8f\xf3\xab\xaa\x3e\xc8\x6b\xd7\x39\x70\x76\xda\x6d\xdc\x6f\x2b\xd6\x1a\x75\x85\x14\x84\xda\x47\x44\x98\x2d\x04\xe6\xf9\xf2\x90\x45\xcb\xfa\xd0\x5d\xd4\x01\x7b\xb4\x42\xf2\x2a\x62\xe4\x3a\x12\x04\x6a\x47\x9c\xa8\xda\x51\xa1\x14\xe6\xd7\x9f\x7b\x4f\xd5\xb0\x7a\x70\x74\xa9\x8e\x1c\x6b\x53\xd5\x01\x36\xc9\x3a\xb6\xe8\x6b\x60\x19\x6a\x54\x66\x8c\x4f\x8b\x35\x13\xb5\x70\xe1\x12\xb5\x54\x73\xa1\x6d\xf6\x76\x8d\x9c\xca\x7e\x94\x57\xaf\x37\x46\x98\x82\x4f\x5f\xbf\xc9\xe1\x0f\xfc\x70\x60\x1a\x6c\xad\x7c\x35\x05\x9f\xc8\xda\x4c\xd9\xf8\x11\x9e\xdb\xed\xde\x1b\x57\x03\x64\xcc\xac\x5b\x17\xe0\xcc\xa8\x08\x53\x4f\x4a\x90\x47\x9d\xb2\x62\xd7\x36\xb9\x02\x3c\x7a\x0d\x0f\xd7\xa8\x1e\xf2\xba\xb9\x23\xde\xff\x4f\x5e\x9e\xca\xf1\xbe\x66\xf1\xf2\x25\xcf\xae\x67\x8d\x6f\xed\x48\x4f\xe2\x86\xdf\x66\xea\xf8\x6d\x9a\xa9\xee\x50\x4c\x6e\xae\x22\x41\xae\x23\xae\xf7\x56\x61\xf6\x56\x4e\x44\xbe\x8b\x38\x01\xf4\x14\x89\x41\x41\x14\xe6\x89\xf2\x01\x27\xf2\x54\x47\xa2\xc2\x24\xae\x24\xcd\xde\x29\x07\x8d\x1b\xb5\xc2\x11\x23\x0e\x5c\x23\x5e\xe1\x8a\x5c\x1e\xdb\xa2\x44\x98\xb8\x54\x60\xef\x0c\x3b\x48\xf1\x5a\x8a\xef\x72\xc4\x77\x2f\x55\x32\x20\x9c\xd4\xa7\xd6\x51\x03\x39\x71\x21\xce\xae\x77\xe6\x75\xf8\xb3\x0d\x83\xe7\xde\xcf\xe3\xe4\x43\x6f\x57\xe4\x17\xe9\x92\x2d\x7b\x71\xd9\x83\xc7\x5d\x99\x60\x45\x6f\x52\x3f\x1b\x62\xda\x1d\x99\x17\x42\x4d\xd5\xf7\xc6\x34\x5b\x4e\xb1\xc8\xb3\x4c\xb2\x84\x3a\xac\xb1\x29\x73\x22\xae\xde\xd3\xa2\xeb\x8c\x68\xb9\xa2\xe5\x65\xd3\x24\xf0\xdd\x53\x98\xf4\x4c\x39\x13\x28\x6f\x49\x7a\xe7\x7b\xa1\x02\x63\x8d\x7b\xbb\x82\x95\x12\xdf\xab\x10\x1a\x9d\x9b\xc7\xe2\xbb\xa7\xd6\xed\xdd\xe2\x44\xb5\x5f\xd4\x80\x50\x1b\x5b\xea\x1a\xb8\x73\x6c\xdf\x74\x40\x31\x5f\xf5\x64\xaf\xbd\x40\xd7\x0c\x46\xdf\x98\x40\x06\xed\x05\x9d\x9a\x50\x07\x92\xd7\xd4\x11\x14\xb4\xfd\x2e\xc6\x2d\x88\xbb\x4a\x0a\x57\x57\xe3\x16\xb1\xdc\x2e\xae\x1a\xf2\x38\xff\xff\x97\xe1\xb3\xcb\x00\x51\xf8\x94\x2e\x1c\xf4\x38\x10\xa4\xa3\x56\xdf\x38\x50\x76\x55\x36\x6a\x2d\x9a\x00\xaf\x25\xb6\x96\x2e\x05\xf4\xdb\x56\x97\xd1\x1e\x8f\x2a\x80\x3a\x97\xb7\xdd\xb1\xdf\xad\xab\x28\x39\xf2\x4e\xc2\x97\x8d\xa1\x33\xf4\x9f\xb0\x04\x0f\x81\x97\x40\x07\xea\xd2\xe6\x65\xca\x67\xac\x93\x34\xb5\x07\x67\x30\xa1\xa3\xd4\xf1\x29\x96\x83\x63\x88\x5e\xc1\xae\xae\x5b\x61\xb0\x1c\xef\xd7\x47\x88\x69\x62\x4c\x1a\x64\x52\x3d\xf3\xd0\xc0\x78\xd6\x8b\x86\x58\x85\x9e\x0b\xb1\xc6\x62\x3b\x79\xad\xd5\xee\x1a\xa8\x73\x7f\xc1\xfc\x4b\x93\x76\x23\x2e\x85\xee\x6a\xcb\x51\x5e\x49\x3a\xfc\xa9\x9b\x80\xfe\xca\xe2\x0f\xa7\xf1\x0e\x42\xe3\xe8\xdf\x91\x22\x27\xb5\x20\xde\x63\xc8\x1c\x41\xd9\x9b\xf7\xb8\x4f\xf7\xd1\x0b\x4e\x62\x2e\x8f\x9b\x04\x56\x2f\xee\xc1\x7d\xa6\x24\x2f\x3e\x2d\xf9\xb7\x60\x19\xc5\x5f\xec\x5d\x91\x1e\xae\x5f\x64\x8b\xf0\xce\xa7\x0a\x22\x36\xfd\x04\x78\x15\x48\x75\x81\xab\xe9\x3c\xd0\x78\x30\x20\x81\xc5\x89\x60\xe2\x60\x8e\x6b\xb0\xe8\x56\x22\xbe\xaf\x17\x6a\xce\x16\xcd\xb3\x65\xae\xd1\x91\xa0\x9f\x20\x9e\x8c\x42\x0a\x73\xb6\xb0\x8e\xd5\xce\xf3\x6e\xd6\x29\xa5\x7b\xb1\xf2\xd1\x6b\x50\x1b\x99\x83\x3e\x6b\x26\x44\x12\x67\xc5\xf4\xe5\x17\xb9\x8a\x7e\xee\x52\xb8\xe5\x96\xcc\xc2\x10\x94\x00\x2d\x6f\x64\x06\xbd\xf2\xaf\xef\xd5\x06\xfe\xfa\xf1\x07\x3c\x3a\xc9\x77\xd7\x67\xf9\x49\x96\xee\xce\xf3\xb8\x58\x4e\x8b\x66\x0a\x2d\x1c\xc7\xfc\xa2\x22\xc4\xe7\x2c\xbb\xfc\x76\x89\x17\x94\x17\x1b\xd7\x38\x63\xa2\x4a\x72\x29\x60\xa7\xd4\xf7\xb9\x83\x4b\x40\xf5\x7a\x7b\xea\xbe\xdb\xce\x69\x0a\xd1\x9d\x7c\x13\xfb\xc3\x01\xe5\x73\xbe\xa0\xf0\x1c\x77\xed\x6a\xfc\x2f\x88\x75\x70\x77\x7c\xef\xff\x91\xb1\x0e\xcc\xaa\x29\x87\xc8\x11\x57\xaa\x03\x8e\xee\x29\xfb\x0e\xf4\xe3\x04\x93\xf2\xd8\x9b\x7f\xa0\x09\x2b\xba\x22\x62\x16\xb4\x89\x0c\x64\xf3\x12\x45\x83\xa5\x2f\x74\x32\x9e\xa6\x0f\x8a\x69\x3a\x18\x28\x83\x95\x5a\xdf\x93\x2e\xa6\x82\xe6\x44\x3d\xfa\xde\x79\x77\xe8\x3f\x5c\xa4\x35\x72\xfa\x10\x2a\x7d\xa2\x7a\xc0\xa8\x0e\xe2\x57\x8c\x12\x89\x3e\x32\x77\xb0\xa0\x83\x80\xd4\x46\xeb\x1c\xeb\xc9\xe1\x8a\x14\x95\xf2\x02\x55\x87\x39\xeb\xba\xbb\xf9\x53\x7e\xe3\xe0\x49\xfa\xe3\x5d\x4c\x76\x7f\x3a\x66\xc0\x8a\xee\x47\xf1\xe1\xb0\xbb\x2d\x6a\xc0\xb2\x83\xcc\xac\x46\xf5\x5d\x5c\x45\x36\x74\x55\x07\x09\x68\x85\x18\xd8\xd2\xf3\x66\x88\x81\x53\x7a\x5e\x87\x18\x58\x1f\x8b\x2b\xa0\xbc\x42\xdb\xd0\xda\x1a\xaa\xbb\x56\xf1\x01\xd6\x26\x3e\xc0\xfa\xf3\xf1\x01\x4e\xeb\xf8\x00\xd6\xb8\x02\xc2\x04\xac\xbd\x30\x01\xeb\x05\x26\x79\x45\xae\xdb\x61\xe8\xcc\x38\x95\x9b\x66\x97\x66\xf4\xda\x86\x0f\x20\x97\xad\xb0\x11\x9f\xba\x63\x44\xbc\xbf\x0d\x06\x2f\xbb\x7a\xe9\x88\xaf\xf0\x29\xba\x8c\xde\x87\xe1\x7b\x3f\xbe\xc2\x05\x62\x38\x7a\x24\x87\x33\x55\xbe\x55\x47\x1a\x83\xfd\xd6\x46\xf2\x15\xb9\xaa\x87\xac\x16\x79\xa1\xce\xfc\x8b\x8e\x96\x82\x12\x4a\x38\xf5\x0f\x87\x33\x60\x99\x5f\x22\x86\x29\xbd\xaa\xc8\x73\xfa\x22\x7e\x41\x9e\xd2\x3b\xff\x7c\x57\x0e\x0e\xef\xca\xc1\x5f\xee\xac\xc9\x1b\x7a\xe7\x9f\xf3\xe1\x60\x31\xbe\x9a\x8f\x87\x3f\xc6\xc3\xd5\x62\xf0\x97\x3b\x29\xf9\x48\xef\xfc\x73\x7c\x3e\x1f\x4f\xd4\xe7\x89\xfc\xcc\xe7\xe3\xe1\xf7\xea\xfb\x03\x05\x7d\xf1\x33\x2e\x60\x40\xbf\x36\x85\x16\x13\xb2\xd9\x91\x7f\xad\x57\x42\xba\x42\x2f\x1c\x77\x81\xe7\xca\xd5\xcc\x68\xff\x84\x67\x9a\x60\x75\x5e\xa0\x4a\x7f\xb9\x9a\xd9\x5f\x08\x47\x6c\xca\x68\x86\x04\x9e\x89\x41\x10\x44\x42\xf9\xd5\x18\x8b\xe0\x66\xbf\x6a\xa1\x58\x34\x90\xb5\x6a\xc3\xd9\xa7\x24\xb0\xbc\xca\x47\x1d\x50\x01\x3b\xde\xea\x27\x26\x6d\xf6\x01\x31\x1d\x4b\xed\x2e\x26\x7c\x76\x37\xfa\x01\x47\x6f\x6c\xee\xf3\x68\xc0\x2a\xf2\x84\xd6\x31\x25\x6b\x16\x2b\x20\x8f\x95\x42\x72\x1b\x5f\x91\x57\xfa\x67\xca\xa1\xd7\xd7\xdd\xe1\xec\x95\xd3\x3f\x44\x6b\x51\x71\x88\xfb\x13\xb2\x92\xff\x6c\x24\x8d\xf2\x9e\x2c\xed\xdf\xae\x62\x78\xe2\x10\xae\xf3\xda\x6e\xa8\x20\x29\xcd\xed\x49\xa4\xb9\x3e\xbe\x64\x4f\x05\xa9\x83\xcd\xa4\x84\x77\xa9\xdd\x39\x65\xc3\x64\xda\x0c\x6e\x94\x1c\x0e\xfc\xa1\x44\x96\xfc\xc1\xf8\x70\x58\x85\x21\x1b\xee\x1f\xd2\xb4\xae\x7f\x6a\xc5\x9c\xa5\xb2\x23\xd8\x3a\xdb\x00\x62\xf6\x95\xd4\xb1\x19\x38\x25\x6d\x56\x48\x0c\x11\x1b\x26\x76\x81\x56\xb3\x57\x88\x93\x54\x26\xee\x31\x8e\x38\x28\x91\xab\x4e\xb5\x68\x69\x66\xb8\x09\xc3\x62\x76\x2e\x8f\x26\x72\xe6\x1d\x63\x57\xd3\xe9\x8c\x93\x70\x15\x12\x24\x5d\x21\x87\x2e\xea\x57\xfa\x48\x42\x8d\x9f\xaf\x05\x83\x8d\xe0\xdb\x71\xda\xf7\x94\x91\xc6\x1c\x05\x26\x3b\x35\x9c\xb8\x42\x09\xf4\xb3\x32\x2d\x80\xd4\x62\x8a\x96\xb8\xa3\xea\x39\x4a\x6a\xc5\xb6\x1d\x81\x7a\x15\xd3\x2f\x8a\x49\x6c\xef\x18\xe8\xaf\x48\xe0\xc3\x61\x4c\x32\xc4\xa5\x4c\xbd\xa3\xfd\x3e\x1f\x65\x2c\x5e\x4a\xaa\x90\x52\xb4\xa2\xc1\x36\xbe\xfa\x35\x4e\x45\x90\xf2\x1e\xc7\xb3\xc7\xe8\x57\xc4\x47\x3a\x0d\xaa\x0a\x1c\xa5\x64\x43\x03\x51\xc4\x69\x26\x8f\x9c\x2c\x38\x93\xed\x98\x94\x68\x83\xc9\x45\x07\xe5\xb6\x0e\x1c\x65\x18\x36\x67\xb8\x87\x2b\x96\x84\xe6\xd4\xac\x57\x45\x2e\x46\xab\x6c\xef\x5b\x3c\xb4\x66\x3c\x8b\xa3\x35\x5a\x42\xac\xdb\x8b\x8a\xfc\xd6\x7d\x0c\xe1\xc0\xfd\x71\xe4\xfd\x88\xfe\x98\xe4\x5f\x7b\xb6\x7e\xb3\x1b\x51\x03\xb2\xa0\x81\x86\x62\x0d\x0e\x9d\x10\x49\x1e\xf7\x36\x68\xe5\x98\xbc\x86\x21\xdd\xd4\x35\x34\xc0\x23\x41\xea\x62\x15\xae\xc8\x33\x7a\xb3\x64\xe7\xf9\x9e\x27\x2c\x7a\x4d\xe4\xd0\x84\xc8\x58\xf4\x47\x45\xde\x76\x11\x99\x67\x73\xb6\xa8\xc8\xcf\x5d\x54\xa3\xeb\x82\xa1\x22\x3f\xb5\x81\xdd\xf9\x24\xac\xba\x58\xaf\xc8\x2f\x9d\xf7\x94\xae\x7c\xaa\xd5\x3c\x87\x83\x97\xfa\xf3\xd9\xe9\x73\x73\x67\xe9\x5c\x67\xfc\x5e\xb7\x82\x7e\xef\x34\x55\x53\xe4\x30\x0c\x6b\xaa\xe7\xe7\x58\x07\xe2\xae\xcb\x1a\x3b\xcf\xce\x0b\x99\xee\x5b\x17\xd3\xa1\x1f\x51\x90\x52\x9b\xde\x37\xbf\x6b\x8e\x65\x66\x46\x17\xd9\x1e\x31\x72\x23\x73\xfd\xed\x7f\xc4\x63\xc8\x7f\x77\xdd\x13\xfb\x92\x19\xae\x9f\xc1\xfe\x1d\x09\xec\x02\xcc\x79\xa2\x61\xd6\x60\x09\x6a\x76\xc9\x39\x4b\xaf\xd9\x8a\x15\x8c\x27\x46\xbf\x00\x6a\x8d\x4d\x5c\xf2\x6f\x44\xef\x9c\x31\xde\x4b\x79\x2a\xd2\x38\x4b\x4b\xb6\xec\x0d\x7b\xe5\x7e\xc7\x0a\x84\xbd\x12\x92\xe5\x63\xcb\xa0\x36\x31\x82\xdb\x2b\x51\x8f\xff\x3f\x9d\xdd\xf4\x9f\x86\xad\x2c\x99\x78\x65\xd6\xe9\xe5\x6a\x56\xc7\xf9\x75\x52\x3b\xb7\x47\x1d\x41\xf2\x70\xe8\xac\x05\xc6\x0d\xde\x32\xff\xc5\x05\x20\xfa\x4b\xf7\x10\x0e\x07\x5f\x58\x6e\xf7\x47\x05\x81\x0d\x24\xa5\x23\xb9\x2d\xfe\xe3\xd8\xeb\xf5\x6d\x6f\x49\xeb\x1c\xea\xab\x6e\x8f\xe8\x6b\x3f\xaf\x34\x0a\x70\x65\xa2\x46\x92\xbf\xab\x5f\xff\x89\x04\xee\x7e\x2b\x5f\x8d\x16\x84\xfc\xe9\xb1\x81\x75\xee\x20\xfb\xca\xb5\xe8\x1e\xe6\x1b\xb9\x1b\x7a\xec\x6a\x57\xb0\xb2\x04\x06\x65\x5f\x0a\xf3\x48\xcf\x39\x53\x6f\x65\xe4\x85\x37\xee\x29\x3b\x1a\x43\x14\xe2\xc2\xd5\xc2\xd3\x8d\x73\xd0\x23\x6d\xca\xc1\x1c\xcb\x8d\xb6\x11\x7a\x85\x89\x08\x43\xb5\xda\x95\x7a\x63\x93\x53\x41\x50\x61\x5e\x7f\x54\x21\x96\x02\xa2\x1a\x3b\xa2\x42\xdc\x15\xf9\xae\x1c\x81\x2d\x57\xc1\xb8\x7a\xa3\xf0\x6f\xca\xb3\x55\x8f\xac\xc0\x24\x87\x34\x92\x63\x22\x2a\x54\x8c\x5e\xed\x0b\x76\x92\x6f\x77\x39\x67\x5c\x38\x0c\xdf\x3f\x9c\xad\xff\x8f\xff\x17\x23\x52\xc6\xfe\x47\x60\x52\xb8\xb5\x30\xeb\x21\xd8\xff\x09\x5c\xc4\xd9\xff\x76\x74\x6c\xfb\x2e\x98\x87\x08\x8b\x23\x00\xf8\x3a\x4c\x68\x5b\xcf\x59\xc3\x0b\x0b\xe2\x76\xb3\xd9\xb1\xf5\x11\xc6\x3e\x8b\xdf\xee\x5b\xe2\x1e\xf9\x0a\x47\x0c\x82\x04\x11\xf5\x50\x57\xca\x8e\xe1\x60\x23\xb1\x4c\xfb\xff\x5b\x90\x70\xf7\xa3\xf1\x0d\x62\xfd\x8f\x5b\x88\x35\xec\x8b\x48\x98\x16\x99\xc4\xe6\xb5\x0e\x99\x61\x4c\x72\x86\x38\x68\xd7\x02\xc5\xd2\xff\x0c\xef\x09\x17\x7e\xac\x50\x78\x64\x20\xfd\xc4\x74\x66\x18\x36\x12\xb4\x38\x10\x86\xa8\x3b\x03\xe9\x77\x0a\xea\x0c\xad\xca\xf3\x06\x50\xc4\xab\x93\x8c\xc5\xbc\xd5\x77\xbc\x82\x1e\xe3\x95\xd7\x8f\xfd\x54\xad\xc7\xab\xae\x36\x45\xbe\x5e\x67\x56\x7f\x1f\x90\x96\x1e\x5e\x50\x2e\x4f\x97\x71\x17\xc3\x53\x51\xcf\xce\x54\x9b\xb3\x45\x67\xa2\xba\x6e\x73\x7a\xab\x1b\xf2\xe7\xa0\xc4\x4e\x15\xba\xa0\x24\x82\xb2\xd1\xc7\x3d\x2b\xae\xdf\xe8\xf8\x09\x60\x92\xa1\x2e\xc9\x9e\xe4\xdb\xa7\x19\xdc\xdc\xfc\x84\xb0\xba\xa1\xb3\x36\x6e\xc6\xc4\xca\xab\x8b\x94\x69\x58\x11\x86\xbf\xa0\xc2\x8a\xdd\x85\xf6\xba\xe5\x23\x66\x6e\x7f\xb5\x02\x2b\x85\x38\x28\x4f\x5e\x9e\xbe\xc8\x97\x0c\x23\x5b\x40\x45\xd6\x37\xf5\xf3\xd1\x0e\x9c\xc0\x8d\x8d\x93\x3f\x4d\x45\x59\xdf\x82\xa9\x79\xd1\x19\x55\x16\xd6\x03\x16\xd3\x2e\x4e\xd9\x7e\x08\x55\x58\x4b\x94\xa2\xb6\x44\xc9\x0d\x9c\x46\x39\x57\xb7\x2f\xd3\x9f\x21\xa2\x4d\x0e\xef\x91\x11\xf5\x6e\xa7\x90\xa4\xfd\x46\x99\x91\x88\xda\x44\x49\x39\xba\xc9\xfe\xba\x46\xfc\xda\xdd\x81\x47\xf6\x42\x29\x5b\x26\x05\x15\xd6\x46\x46\xd4\x36\x32\x66\x05\x63\x9a\xea\x87\xb7\x95\x81\x62\x69\xbf\x6b\x03\xc5\xf8\x70\x28\x75\xf0\x6a\xca\x47\x1e\xc8\x10\x3e\x16\x06\x4e\x43\x45\xd3\x51\x63\xd6\x02\x5e\xa6\xa9\x1d\x52\x56\x0f\x69\x4f\xe3\x30\x2c\xfa\x94\xa6\x87\x43\x19\x86\x79\x9f\xd2\x6c\xda\xe7\xa3\xf2\x43\xba\x7b\xc9\x4f\xf3\xbd\x5c\xf9\x7d\x18\xca\xdd\x14\x86\x89\x81\x58\x6a\x20\x96\x55\x00\xd0\xba\x34\xed\x4f\x20\x66\xb0\x07\x3d\xb9\x10\xab\x06\xbc\xec\xc6\x81\x50\x6f\xfe\x19\x78\x0d\x0c\x91\x44\x7a\x9f\x3b\x06\x8a\x75\x02\x43\x24\xc3\x1a\x19\x0a\xf3\x33\x12\x78\xa6\x79\x2b\x89\xdf\x83\x48\x6e\x83\x59\x00\xe5\x8c\x72\x3d\x88\xac\x77\x67\x5a\xc2\xa3\xa8\xc6\x64\xa1\x2e\x1b\x44\x7e\x48\x13\x9b\x01\x9f\x41\x14\xa8\xad\x1e\xb4\xa6\x71\x06\x27\xd2\x32\x60\x7f\x62\x2e\xe0\xfa\xca\xf3\x25\x93\xb0\x00\xdf\x5c\xb5\xbd\x4a\xaa\x17\x22\xd6\x4b\xaa\x97\x23\xd6\xeb\x5a\x4d\xcb\xcb\x54\x24\x1b\x04\xb8\xa9\x06\xa7\x44\x09\x49\x5c\x32\x0f\x2c\x9e\x8b\x26\x2a\x46\x49\x96\x73\x66\xc1\x00\xfa\x17\xc3\xa7\xca\xed\x3f\x5c\x32\x01\x98\x23\xa8\xf0\x14\x1a\x6b\x40\xf4\xf6\xf6\x72\x54\x62\xb7\xde\x67\xcb\x93\xd2\x2d\xae\x61\x6e\xd1\xcc\x11\xd3\x81\x7e\xdf\x46\xea\x6c\xb5\xc8\x48\x09\x86\x03\x36\x42\x7a\xb3\x7f\xd7\xff\x17\xa3\xb4\xbe\xf6\x95\x4b\xe3\xec\x75\x92\x50\xeb\x78\x73\x9a\x2f\x19\xc9\xea\xef\xd7\x72\x99\xf6\xf5\xf7\x4b\xf0\xb9\x2f\xa7\x7a\x05\xcd\xfa\x19\xe5\xa3\x5a\x3e\xa3\xda\xf2\x4f\x54\xee\x50\x27\x52\x1f\x1b\xfd\xb9\xe7\x5b\x59\x8a\x2d\xa9\x8e\x55\xbc\xa3\x6f\x51\xad\x0a\x6d\x92\xcd\xdd\x6c\x87\x0c\x36\xf1\xd0\x19\xc9\xc8\x1e\x47\xdd\x59\x4d\xd2\xa5\x1e\xda\x19\xc5\x4d\x6a\x8d\x09\xd7\x42\x5d\x42\xb2\xff\x2f\x08\x75\x9a\x75\x75\xa5\xba\xc4\x48\x75\x89\x39\xf7\x4f\xd2\x25\x2c\x64\x87\x80\xa7\x4c\x4d\x3d\x16\x03\x59\x43\x07\xec\x3c\xb9\xaf\x9b\xfa\x35\xcd\xb2\xb7\x6a\xc1\xbf\xb4\xb5\xda\x58\xc2\xb8\x08\xd6\x84\x55\x9b\xce\x38\x6c\x9b\x49\x74\x76\xd5\xb8\x7e\x81\xff\x33\x72\x6a\xde\x72\x9e\xff\x0f\x72\x53\xb0\x55\xa4\xfd\x6f\x5e\xb3\x95\x8e\x0b\xdb\x46\x8e\x60\xf9\x26\x65\x5a\xc6\x3c\xa1\x36\xc1\x24\x53\x89\x24\xeb\x96\x6a\x53\xe6\x78\xdf\xdf\x38\x54\x35\x4a\x46\xe7\x79\x9e\x11\x97\xb0\x9a\x34\xe7\x7c\x99\x24\xe7\xe0\x46\xc9\x48\x5d\x54\x11\xe7\x74\x47\x89\x89\x69\xe0\x1f\x69\x43\x41\x92\x51\xb9\x89\x77\x0c\x23\xab\xa8\xd5\x0d\x5b\x1d\xad\xfa\xae\x30\xf1\x18\xb0\xba\x5d\x87\x83\x8b\x92\x51\xcc\xaf\x89\xe1\x60\xa2\x64\x24\xc1\x4d\xd4\x0a\x98\x2f\x43\x25\x74\x61\x43\x27\xe4\xe8\xe1\xd9\xff\x94\x35\x22\x11\xb8\xc0\xe9\x4f\x7c\xc0\xf4\x27\x1e\x50\xa4\xc0\xeb\x00\x64\xc2\xee\x79\xb0\xd0\x78\xab\x01\x09\x9d\xea\x4f\x4f\xb9\x20\x39\x53\x83\x04\x3b\x33\x65\x6f\xa0\xe6\xa5\xeb\xdb\x79\x29\x14\x67\xa6\x05\xe1\x4c\xd4\x9d\x69\xcc\x68\xaa\x8c\x5a\x62\xf6\x85\xc6\x10\xf7\x55\xa4\x8b\x7b\xca\x14\xe2\x7b\x1d\x19\xfa\x6e\x77\xa0\x8b\x71\x1d\xe8\x62\xca\xd1\xfd\xef\x1c\xdd\xc9\xee\xf6\x5b\x5a\xc7\x16\x67\x02\x51\xc4\xcd\xf0\x6b\x89\x74\xe5\x89\xbb\x20\x8c\x6d\xd2\xe5\x92\x01\x3e\x04\x63\xc6\xe0\x22\x2d\xd3\xf3\x8c\x41\x42\x18\x06\x49\x96\xee\x54\x66\xdd\xca\xd2\xe2\x53\xdf\xb7\xe5\x01\x1b\x95\x49\x91\x67\x99\xfa\x3c\x1c\x3c\x57\x18\x9b\x0b\x5f\xe6\xfa\xac\xed\xf0\xa2\x1f\x8c\x37\x28\x1c\xf1\x51\x7e\xc1\x8a\x55\x96\x5f\xfe\x0e\x11\x7c\xdd\x94\xdf\x24\x06\xd4\x64\x77\xd2\x88\x76\x5d\x3f\xb4\x41\xca\xfa\x39\xb5\x07\x2c\x0c\xe3\x87\xe2\x70\x48\x1f\xca\x5f\x0f\xc4\x6c\x1c\xa5\x0f\xe4\x54\xcb\x07\x94\x1f\x0e\xf1\x43\x2a\xc2\xb0\x7c\x48\xf9\x2c\x1d\xb2\x61\x11\xc5\x0f\xe5\xf7\x03\x7e\x38\x40\xdd\xf2\x21\x9f\xc5\x43\x31\xc8\xa3\x31\xd0\x9b\xf3\x4e\x1b\x76\xa1\xa7\x0a\xa4\x59\x32\xe4\x10\x67\x07\x18\xf2\x94\xc3\x1b\xcf\x92\x25\x3e\xcf\xf7\x7c\x19\x17\xd7\x10\xc7\x1e\x4e\x80\x9e\xd6\xcf\xb0\x26\x1a\x93\x95\xa4\xec\xd4\x93\xa5\xb3\xb4\x53\x05\x23\x39\xea\x0a\xc4\x30\xb9\x5f\xba\x49\x9a\x79\x00\x50\x87\xce\xa9\x63\x1b\x24\x36\x7a\x80\x9e\x41\xca\xd7\xf6\xa2\xe4\x98\xa3\x0c\xc9\xe8\x7c\x21\x39\x8e\xe9\x0e\xbc\x5b\x4a\xb4\xc7\x53\xd8\x1f\x68\xaf\xe2\x47\xea\x98\x5c\x98\x52\x9a\xe0\x9b\x4c\x19\x7c\xee\xf1\x14\xde\xb6\xa9\xf6\x4e\xd0\x82\xd1\x79\xbe\xbc\x0e\xc3\x25\x34\xd4\x5f\xa2\x63\x7d\xe2\xc3\x61\x89\xf6\x24\xc6\x61\x68\x9b\xab\xea\xb8\xfc\xda\xbf\xf2\x22\x2d\xf7\x71\xf6\x4b\xca\x2e\x77\x79\x21\x66\xfe\xe7\x48\x0b\x14\x9c\xb3\x42\xc9\x42\xe7\x5f\x56\x4f\xb3\x4c\x50\x51\x6d\x75\xb2\x35\x35\x15\xd4\x7e\x3b\x1c\x76\xf1\x9a\xfd\xf6\x72\xb5\x2a\x99\x20\xa7\x7e\xee\xef\x2a\xf7\x77\x9d\xbb\xd6\x7e\x30\x72\x37\xa4\x7c\x7d\x02\x47\x46\x59\x99\x92\x0b\xba\x36\xf2\xd2\x35\x5d\x6b\x8e\xfb\x11\x5d\x83\xa3\xd0\x25\x5d\x6b\x67\xac\x4f\x74\x6d\xdc\xb0\xde\xd3\xb5\x72\x26\x7a\x49\x83\x52\xc4\x05\x60\x86\xe2\x70\x08\x38\x8b\x0b\x56\xaa\xcf\xd9\xa3\x28\x30\xcf\x29\xcd\x3e\x45\x8f\x06\x17\x77\xee\x92\x33\x1a\x24\x8c\x0b\xb0\x91\xa0\xf9\xec\xfd\xe0\xfa\xce\x5d\x5b\x2c\x9f\x5d\x46\xef\xc9\x95\x5c\xe8\x17\x74\x3c\x7d\xf1\x20\x33\xaa\xcc\x17\x46\x95\xf9\x9c\x66\xf3\x17\x0b\xf2\x94\x3e\x3f\x3a\x9d\x37\xf4\xa9\x99\xce\x47\xfa\x54\x4f\xe7\x84\x3e\x85\xe9\x7c\xa0\x4f\xf5\x74\x7e\xa5\x4f\xcd\x74\x9e\xd0\xa7\x30\x1d\x1d\xed\x75\xc8\x19\x5b\xaa\x0b\x3f\x1e\x86\x8f\x20\x8c\xed\x7b\xf8\xf7\xd3\x03\x7a\x1e\x86\x97\x0f\xe8\x0a\xd2\x4f\x20\xe5\x57\xc8\x7d\x02\xe9\x1f\x8c\x82\xe0\x6a\xaa\xa2\xc3\xb6\x50\xcf\x73\x4c\x5e\x59\x2b\x12\xf4\x78\xa4\x5c\xd6\x9e\xb3\x95\xf6\xe5\x9b\x8c\x31\x79\xdd\x2e\x70\x96\xef\xea\xfc\xdf\xda\xf9\xaf\xe5\x9c\xea\x12\x7f\xb4\x4b\x3c\x86\xb9\xd6\x45\x9e\xd1\x31\x79\x4b\xc7\xe4\x67\x1a\xe4\xb0\x47\x20\x2b\x48\x79\xef\xf9\xec\xf9\xc8\x49\x1a\x3e\x77\x31\xec\xf0\xd5\xf0\xb7\x68\x4c\x7e\x32\xb5\xd4\xde\xf4\xab\xa9\x34\x5b\x4f\x7f\xbe\x1e\xfe\x11\xc1\x45\x73\x42\x29\x7d\x8e\x9f\xb9\x5b\x67\xf6\xd2\xd9\x2b\x2f\x87\xe7\x91\xbf\x93\x36\xe8\x94\x9c\x0e\xce\xc9\x39\x79\x4d\xfe\x20\xa7\x83\x97\xf2\xff\xc1\x05\xb9\xc0\xd1\xcb\xe1\xf9\x9d\xbb\xe4\xad\xd3\x58\x3e\x3b\x8b\xbc\x4d\x76\x36\x5c\x79\x9b\xec\x6c\xb8\x8a\x36\x68\x4b\xb6\x83\x15\x59\x91\x57\xe4\x37\xb2\x1d\x9c\xc9\xff\x07\xd7\xe4\x5a\x02\xc6\x58\xad\xa0\x31\x79\x36\x38\xc5\xe4\xad\x9b\xf2\x76\xb0\xc5\x2a\x94\x62\x63\x06\xc3\x93\xe1\x6b\x6f\x16\xbf\x0e\xfe\x18\xfc\xd4\x9a\xc9\x09\xf9\x95\xbc\x91\xf3\x18\xfc\x44\x5e\x12\x3b\x0b\x74\x32\x78\x73\xe7\x2e\x1e\xfc\xd4\x9e\xcd\xf0\xc9\xf0\x55\x73\x46\xe8\xc9\xe0\xa3\x2c\xfe\x73\x63\x66\x1f\x06\xbf\x0d\x7e\x8e\x36\xe8\x09\xf9\x40\x3e\xca\xb9\x0d\x7e\x26\x67\x44\xcd\x0c\xb6\xe4\x2f\xf4\xb9\xc6\x10\x72\xcf\x91\xdf\xed\xe7\x59\xbe\x9b\xbe\x1c\xd0\xdf\x87\xc8\x03\x80\x31\xdb\x41\xbf\x0f\x9e\x91\xe7\x1e\xed\x1d\xbe\x19\xfc\x84\x31\x26\x67\x03\xfa\xcb\x10\xbd\xed\xac\xf5\xcb\xe0\xad\xad\xa5\xf6\xcf\xc7\xc1\xcf\x18\xe3\xea\x4a\x21\xd4\x1b\x96\x45\xcf\xc1\xbb\xe9\x99\x72\x64\x7a\x5b\x7b\x02\x5f\x55\x64\x4b\xc7\xe4\xb4\xed\x2f\xa0\x59\xd2\x6c\xb4\x2f\x19\xa8\xba\xb0\x7a\x45\x95\x08\xca\xe6\xe3\x05\x18\xe9\x4d\x16\xfe\x9b\xd0\xaa\xf4\xd3\xd5\x8a\x25\x02\x77\x85\x68\xe1\x68\x30\xd8\x62\x15\x6b\x96\x88\x8a\xac\xdd\x38\x22\x17\x9f\x31\x1e\x98\xb1\xe8\xba\xe6\x0d\xae\x11\xbe\xa9\xbf\x1e\x29\xaa\xad\x05\x40\x16\x86\xe7\x88\x91\x1b\x43\x98\x23\x41\x80\x70\xd7\x1b\x85\xd4\x74\x3d\x72\xd0\x51\xd5\xf5\x18\x87\xa3\x29\x64\x19\x38\xb0\x49\x2c\x57\xc0\xf3\x2e\x2b\x31\x15\xf5\xe2\x52\x4e\x84\xb3\xf2\xb4\xf0\xde\xee\xb8\xf4\x2f\x1d\x28\x98\x7f\x2a\x25\x5b\x9c\xf2\xd2\x28\xdc\xe4\x6f\xe4\x5e\x3f\x7c\x72\x5f\x27\xa8\xaf\x3c\x94\xa5\xaa\x67\xe6\xc2\xbd\xb7\xc2\xea\x4b\xab\xbc\x6d\x76\x9b\x3a\x66\xb7\xb9\xe4\x64\xc7\xd3\xf8\x41\x3e\x8d\x07\x03\x9c\xce\x63\xd7\xec\x36\x5e\x4c\x0b\x30\x56\x3a\x12\x7d\xa7\xdb\xce\x36\x95\xab\x6c\x99\x3a\x78\xb1\x15\xac\x75\x0a\x92\xd7\x63\x7c\xef\x3e\x96\xdf\x1e\xa3\x70\xc6\x08\xb2\xf1\x78\xca\x1f\x30\xe3\x0c\xde\xed\x0a\xee\x5d\x9a\xd8\x3b\xbb\x56\xd3\x85\xd3\x34\x7f\x38\x99\xf1\xe1\x24\x02\x5b\xe7\xc9\x34\x7f\xc0\xa7\xf9\x60\x80\x8b\x79\xee\xfb\x9b\xe7\x8e\xbf\x79\x23\x16\x41\xbd\xac\xa0\x15\xf0\x20\x31\x67\x0b\x13\xb6\xb8\xc0\xea\xd5\x45\x76\x21\x65\xfa\xfc\x92\x97\x9b\x74\x25\x9e\x28\x01\x0b\xdc\x3d\xfd\xa0\xc3\x01\x87\x10\x81\x10\x6f\x21\x00\xaf\x1b\x27\xe1\x58\x3b\xa0\x3b\xb5\x20\x7e\xf9\x6f\x04\xf1\xad\x2d\x73\xbf\x65\x65\x6b\xcf\x94\x91\xfd\xbc\x70\x5b\x2e\x16\x53\xd1\x7d\xec\x40\x09\xed\x01\x53\x3d\x87\x53\x4f\xef\xcc\xbb\x94\x42\x8c\x36\x43\x47\xcf\x24\xb2\x8a\xa4\x48\x24\x66\x22\x72\x44\xa8\x2b\xd7\xc0\xb5\xf5\xae\x07\x3c\x1e\x5a\x17\x7e\xe1\xdd\x8d\x82\xbe\xb5\x52\xac\xd2\x3c\xd8\xa4\xeb\x4d\x26\x71\x35\x5b\x3e\xe3\x4b\x76\x65\x82\x4f\xfe\x02\x37\xbb\x24\x48\xcb\x97\x3b\xc6\x03\x12\xa8\x50\xd5\x6c\xf9\x4c\x40\xcc\x4d\xd9\x43\xb0\xa8\x0f\xf4\x53\x40\x34\xad\xf7\x1c\xa7\x26\x48\x80\x01\xff\xf3\xee\xf7\x82\xda\x11\xab\xc1\xa7\xcd\xba\x2d\x54\x58\x62\x5c\xdb\xdb\x1b\x17\xad\x7d\x60\xd7\x80\xd7\x3e\xb0\xeb\x93\x7c\x59\x5b\xac\x3f\xa4\xf7\xbe\x0f\x43\xfe\x80\x7e\x3b\x56\xaf\x4d\xd5\x7e\x11\xc1\xa3\xa2\xc8\x2f\x03\x3c\xd3\x3f\x06\xc2\x35\x8c\xf9\xd8\x78\xff\x7b\x38\x99\x5a\xc3\x5d\x47\x63\x77\x38\x88\x07\xe3\xc3\x41\x3c\xa4\x6a\xb0\x94\x3d\x1c\xcf\x86\x93\xa8\x18\x4c\x8c\xb6\x54\x0c\xec\x70\xf2\x07\xe3\x59\x4e\x8b\x28\x7f\x58\xc0\xc3\x21\xf2\xbc\xc2\x2a\x9c\xd0\x4f\x1e\x46\xfa\x15\x61\x08\x9b\x6c\x9e\xc8\x0f\x82\x0a\x93\xfb\x63\x37\x3e\xc5\x07\x57\xca\xfb\x15\x09\x3c\x85\xa7\x5c\xbc\x6a\x8c\x9c\x20\x17\x7f\xff\xda\xb1\x40\x46\x9a\x31\xcb\xc4\x9c\x8b\xbc\xc7\xd7\xcf\x96\x28\x88\x27\x93\xeb\x61\x29\x62\xb1\x2f\x87\x5b\x56\x96\xf1\x9a\xd5\x57\xd8\xe2\x70\x40\x08\x42\x4d\x78\x3a\x2f\x50\x53\x60\x3c\x2a\x99\xb0\x41\x45\x51\x90\x2e\x03\xd2\xdd\x1c\x11\x8d\xa2\x45\x0e\x31\x2c\x55\xb9\x8e\xfc\xb8\x48\xe3\x61\x96\x82\xfb\xd3\x2e\xcf\x52\xd1\xd5\x08\x14\x2a\x58\xc6\x2e\x62\x08\xa9\x1a\x2f\x97\x10\xc1\xa5\xec\xe9\x98\x97\x5a\x1f\x1a\x97\x65\xba\xe6\x48\x8c\x20\x18\xb6\xa4\xba\x92\x17\x8e\x82\x71\x40\x92\x2c\xdd\x45\x41\x21\x59\x83\x71\x0f\xfe\xc3\x81\xd1\x54\x07\x93\xdd\x55\x40\xb6\x71\xb1\x4e\x79\x14\x0c\xe1\xcb\xe8\x03\x22\xa3\xce\x20\x3a\xa6\x05\xb4\xb6\xd3\x71\xa2\xa3\x20\x3e\x2f\xf3\x6c\x2f\x58\xa0\xbd\xb8\xa1\xad\x4a\x22\x57\x29\x76\x4a\x94\xc1\xf8\x12\x5e\xb3\x45\x02\x1b\xab\xa6\x27\x74\x4c\x1e\xd3\xbb\xe4\x15\xbd\x47\x5e\xd3\x6f\xc9\x6f\xf4\x3e\xf9\x83\x7e\x47\x9e\xd1\xef\xc9\x5b\xfa\x03\xf9\x99\xfe\x48\x7e\xa2\x93\x31\xf9\x85\x4e\x26\xe4\x77\x3a\xb9\x4b\xfe\x46\x27\xf7\xc8\xdf\xe9\xe4\x5b\x62\xcd\xbb\x56\x05\x63\x9f\x18\xba\xd9\xf3\x0f\x3c\xbf\xe4\xd1\x13\xb2\xcd\xf7\x25\x7b\xbb\x8b\x26\x24\x15\x6c\x7b\x2a\xbf\x9e\x4a\x3e\x32\x7a\x4c\x3e\xb0\x6b\x89\x9e\xe1\x88\xbc\xdd\x45\xaf\xbc\x04\xf9\x23\x7a\x6d\x92\x9e\x96\x49\xbc\x63\xd1\x6f\xf6\x1b\x9a\xf8\xc3\x7c\xfe\x9c\x6f\x59\xf4\xac\xce\x5c\x46\x6f\x25\x74\x93\x0f\x12\x9b\x44\x3f\x93\xf3\x6c\x5f\x3c\x93\x68\x27\xfa\x89\x24\x9b\x98\xaf\x99\xfa\xfa\xc5\x54\x79\xb3\x8b\x13\xf6\x78\x2f\x44\xce\xa3\xdf\x55\x55\xfd\xf5\x37\xa8\xac\x3f\xfe\x4e\xac\xd3\xe9\x52\xa2\x12\x75\x5d\xb8\x7c\xe3\xe0\xae\x68\x72\x9f\x88\x7c\x9f\x6c\xe4\x28\x26\xdf\x55\x98\xfc\xe5\x98\xad\x42\x1d\x21\xb3\xe3\x85\xe6\x29\x1f\xa5\x4b\x7b\xd3\x9a\x2e\x0f\x87\x60\x69\x68\xd9\x30\x18\xe8\xf7\xd6\xd7\x83\x01\x26\x7c\xb4\x65\x7c\xff\xac\x2e\xad\x3e\x0f\x07\xd9\xc4\x20\x18\xca\xcf\x80\xf0\x51\x16\x9f\xb3\xcc\x29\xa6\xbf\x6d\x39\xf8\x96\x05\x01\x43\x3b\x05\xf5\xb7\x2d\xa8\xc3\x07\xc3\xdd\x97\x9c\xb3\x53\xd4\xa6\xb8\xd6\x24\xce\xad\xb3\xaa\x2f\xd8\x76\x18\x0c\x58\x65\xfa\x32\x77\x2d\x32\xa3\x04\x37\x29\xf8\x79\x02\xd7\x33\x3a\x4f\x12\xf4\x34\xdf\x97\xea\xb9\x5f\x95\x05\x21\xd2\x15\xd7\xf5\x6c\x69\x2a\xca\xad\xc1\xe3\xec\x8d\x65\xc8\x3a\x94\x57\xc5\x51\x7e\xcd\x6d\xcf\xfd\xb8\x35\x0c\x5b\x9f\x02\x37\x4b\x20\x70\x1a\x11\x78\xea\xd5\xd4\x8f\x4d\x55\xea\x66\xfc\x99\x9d\x98\x7f\x5b\x5b\x4f\x18\xe0\xb2\xe7\xdd\x65\xfd\xa2\xea\x35\x44\x68\xf7\xe7\x06\xa5\x3d\x16\xec\x53\xa1\x66\xb3\x5e\x5a\x7f\xdd\xac\x8c\x49\x23\x38\xe8\x8d\x9c\x17\x7d\x2a\x11\x86\x07\x62\x75\xcf\xef\x86\x0d\xbe\x69\x92\xfc\x88\x55\x44\x60\x98\x3e\xf0\xe3\xea\xb4\xa4\x39\x6f\x02\xa0\xd9\xea\x8d\xcb\x13\x28\x5d\x75\xcd\x3b\x44\x41\x40\x5a\x3d\x7d\x66\x56\x44\x71\x1b\xcd\x62\xcf\x20\xb5\x22\x4c\x2f\x91\xec\x54\x76\xe9\x5b\xac\x17\xf8\xe6\x0b\x01\x70\x5b\x2f\x5f\x3f\x66\x0f\x08\xcc\x85\x80\x3d\x9e\x82\x6d\xcf\xb4\x23\x15\x38\x61\x09\x4c\x8a\xc6\x5c\x1e\x89\xf6\xa6\xa8\x1f\x29\xd7\x27\x6f\xce\x16\x53\x25\x24\xe6\x10\xc3\xd6\xd6\x46\x39\x94\xae\x9b\x74\x47\xd9\x84\x94\x73\xda\x5b\xfd\xab\xfb\x72\x05\x33\x3c\x6a\xc2\x82\xc0\x5d\x5f\x07\x7c\xbb\x4e\x30\x49\x49\x4c\x6f\xaa\x23\x7a\x63\xc3\x17\xf5\x41\x72\x6c\x4a\x0e\x0e\x0b\xaa\x9e\x75\xd4\xe6\x2c\xcf\x6c\xfa\x09\x50\x09\xc4\x46\x75\x51\xe2\x2d\x72\x45\xea\xa9\x3c\xe2\xcb\x9f\x59\xb6\x63\x45\x89\x30\xb9\xa9\xc0\x6c\xcb\xb1\x82\xf1\x23\x05\x50\x07\x04\xc2\x3c\x1d\x5a\xce\xe4\x47\xc4\xa6\x89\x3d\x99\x70\x8d\xfd\x1a\x22\x77\x15\x48\x90\x44\x4a\x09\x49\x6b\x26\x1e\xdb\x6c\xdc\x2d\x6f\x2a\xb2\x77\x78\xe2\x22\x0c\x93\x91\x5b\xd0\x3c\x36\x62\x13\xe0\xa1\x37\xbf\x0c\x26\x09\xb0\xf9\x54\xfd\x39\x1c\x9e\x10\xd7\x49\x38\x39\xa2\x0b\x10\x73\xb6\xe8\x53\x9a\x80\x45\x16\x8a\xe7\x6c\x01\xbf\xb1\xe6\xe8\x95\xfa\x01\xed\x4d\xba\x5c\xeb\xf2\xc4\xa3\xa9\x2a\xea\x47\x66\x6b\x02\x6f\x5e\xca\x29\xfc\xe9\x55\x4c\xfe\xd4\x2a\x26\x18\x93\xac\xc2\xbe\x51\x09\x12\x18\x61\x0f\x12\x31\xb6\xef\xf3\xbb\x83\x80\x26\x75\xff\xf1\x91\x5e\x20\x16\xac\x53\x05\xc0\x8f\x98\xb7\x0e\x47\xab\x5a\x77\x9e\xd4\x6d\x43\xf7\x98\x1e\xad\x56\x17\x7d\x5b\xaa\x78\x18\x39\x3f\x3e\xc0\x4a\xe1\xed\x22\xcf\xc5\x6b\xd6\x19\x15\x8f\x8f\xde\xcb\xdc\x17\xf9\x92\x29\xc2\xb5\x66\xe2\x75\x9e\xeb\x1b\xd1\xf6\xb9\x95\xa7\xd6\xf1\xe0\xbc\xa9\x22\x46\x4a\x1a\x8f\x0a\xb6\xfa\x3b\xbb\x26\x09\x75\x9c\x8b\x82\x82\xad\x82\xa8\x24\x99\xca\x27\x7b\xea\x86\x8a\x8f\xc9\x3c\x50\xb5\x02\x02\x25\x17\x98\xec\x28\x72\x42\x23\xde\x54\x91\xc0\xa3\x72\xbf\x03\xa3\x86\xd7\x6c\x05\x17\x43\x64\x55\xbf\x65\xb3\x0b\xc3\xdd\xd4\x1f\xf3\x48\x59\xd2\xd2\xfe\xb8\x31\x19\x3d\x44\x9a\x34\xd3\x9b\x1d\xd0\x15\x9c\xc3\x25\xf5\x90\x9d\xa2\x0a\x0d\x95\x20\xec\x42\x84\x52\x49\x5f\xe7\xc9\x82\xbe\x44\x59\x0d\x6e\x4c\xd2\x91\x94\x55\x68\x90\xe4\xdb\xf3\xfc\x3c\xbf\x0a\x48\x3a\x57\x92\x07\xbb\xda\xc5\x7c\xc9\x96\xc1\x82\x2e\x6d\xe2\x26\x2e\x77\xf9\x6e\xbf\x0b\x16\x34\xc8\xd2\x52\x78\x35\x24\xf3\x28\x4b\xcf\x0c\xbb\xa8\x29\xaa\xce\x06\xe6\x2f\x63\xcb\xf3\xeb\x60\x41\x2d\xaf\x48\x52\x4c\xf6\xb0\x05\x0c\xa7\xad\xcc\x18\x4a\x7a\x53\x73\xe9\x6d\x5d\x20\x30\xb0\x70\x73\x6a\xd4\x30\x8a\xb8\x19\xeb\x87\x16\x58\x6a\x4e\x18\x18\xdc\xbf\xb3\xeb\xd9\xfd\x68\xa2\x42\x8f\x6c\xf3\x0b\xd6\xa4\x8a\x88\x93\x1b\x89\x50\xa2\xd7\x95\x7e\x72\x49\x07\x9f\x6c\xb2\x10\x9a\x16\xf7\xc7\x44\x17\xef\xb0\x11\x13\x86\x6b\x05\x9e\x0a\xe1\x29\x7b\x38\x86\xd0\xc1\x6d\xa6\x0a\x7d\x44\x13\x22\x6e\xa7\x61\xd8\x19\x9a\x3c\x3e\x46\xbe\xf9\xf7\x80\x69\x78\x3f\x1a\x7e\x09\xa0\x5e\x7d\x1d\xa0\x5e\xfd\xf7\x01\x35\xfc\x6a\x48\x29\xa9\xae\x1b\x4e\x4e\x4b\x2a\xd0\xb3\x62\xa7\x0a\x2a\x5a\x0d\x43\xa8\x6c\x63\xef\x54\xe0\x9b\x36\x78\x8d\xfa\x04\x40\x01\x9c\x4f\xb1\x20\xa9\xed\x47\x4e\x51\x22\xb4\x9f\x8a\x7c\xab\x66\x53\xa8\xf8\xdb\xe0\x81\x9e\x1f\x0e\x69\x18\xa6\x10\x94\xa6\xd6\x07\x2c\xd3\x32\x3e\x07\x0b\x7c\x13\x9a\x1b\x5a\xeb\x64\x97\x90\x9a\xf6\x1f\x15\xae\x2a\xa2\x45\x5b\x4f\xb3\x77\x64\x3f\x14\xac\x64\x42\x57\xfe\x8d\x7c\x86\x3b\x86\xc6\xf9\xe8\x1c\x24\xd7\xbf\x37\x4e\x6f\x8b\x08\x36\x8e\x37\xb9\x09\x7a\xc1\x17\x8d\x49\x99\x43\x9d\x32\xbe\xd7\x03\xfb\x5d\x76\x8c\x8d\x64\xf7\xf5\x1d\x83\x2c\xef\xb1\x14\x10\x01\xc9\x40\xf0\xa7\xb4\x28\xc5\xcb\xe2\x79\x5c\x6a\x8e\x92\x91\xfe\x58\xef\xa3\x67\x15\x6c\xa2\xe5\x57\x56\x9f\xe8\xea\x6f\xcd\xc8\xd7\x4c\x9c\xc1\xb4\x94\xd8\xdf\x24\x65\x66\x5b\x36\xc9\x58\x4a\x85\xa4\xc0\x59\x9a\x7c\x20\x31\x45\xf2\xe3\x95\xa4\x0b\x44\xfe\xd2\x80\xc0\xa4\xa4\xfa\xf3\xed\x8e\x24\xf0\xfb\x71\xb6\x2f\x48\xe6\xd1\x36\x41\xe6\x81\x6e\x2a\x20\x81\x6e\x07\x7e\xe9\x76\xcc\xef\xb7\x3b\xf8\x25\x9b\x90\xf4\x6f\xdf\x45\x73\xc8\x8e\xde\xe8\xc6\xa2\xf7\xc0\x1a\xa8\x4d\xa1\x60\x0e\xe9\x98\xd8\x96\xa3\xf7\xc0\x0e\xb8\x45\xec\xd8\x75\x97\xd1\x7b\x54\xb6\x8b\xbc\xdd\xc9\x02\x72\x24\xd1\x7b\x94\x34\xf2\x65\x32\xae\xc8\x8a\x66\x23\x73\x52\x24\xd0\x76\x5d\xf4\x50\xad\x46\xa0\xaa\x07\x44\x92\xc0\xfa\xcb\xa1\x56\x41\xb4\x9f\x05\xf0\xea\x5b\x0f\x54\x1c\x51\x90\xef\x18\x57\xbf\x49\x83\x22\x4a\xc4\x16\x2c\x63\x11\x0f\xd5\x86\x0d\xe0\x65\xa1\x95\xe4\xf3\x32\x5c\x75\x4d\x86\xde\xbe\xfb\x3b\xea\x48\x18\x75\x6c\x93\x37\x88\xe1\xe9\x91\x83\x38\x17\xe0\xb8\x70\x2c\x4f\xe9\x85\xac\x63\x40\x8c\x11\xc7\x5a\x4c\x6d\x2d\xe1\x67\xc6\x6b\x19\x3f\xc6\x2f\xd2\x22\xe7\x9e\xb9\x89\x8e\x9f\xa5\x35\xac\x94\xd2\x5b\x0b\x2b\xe3\x15\xe3\x10\x31\x5a\xe5\xc9\xbe\x44\xb8\x53\xf5\xd2\x79\xcd\xd9\xc6\x19\x7f\xab\x0c\xa7\xd9\xdc\x33\x9d\x81\x32\x55\xc7\xd3\xcf\x76\x28\x85\x0b\xd0\x38\x4a\xb0\x1e\x0e\x8a\x20\x7c\x39\x1c\x6a\xbe\xfa\xf3\x65\x47\xe9\x12\xc0\xe6\xa8\xca\xbe\x02\xdc\x42\x96\x77\xb1\xfb\xdf\x2d\x40\xd6\x4c\x3c\x97\x9b\xbd\x8d\x84\xba\x4e\xce\x46\x6c\xb3\x9f\xf2\x22\xb2\x03\x21\xe9\x32\xb2\xdc\x9c\x51\x71\x40\x68\xb0\xdd\xbe\xc5\xa3\xdf\x8e\xd8\xf4\xf6\x04\x3b\x2e\x8d\xb4\x14\x2e\x53\x32\x87\x46\x66\xd0\x30\xc9\x14\xfa\x53\x39\x67\xec\x4a\x90\x36\x76\x73\x31\x19\xe0\x2f\xf9\x43\xd5\x80\x9f\xcf\xf4\x23\x65\x6e\x33\xc1\x02\x63\x25\xdb\x82\x25\x36\x59\x79\xf8\x8e\x2c\xe9\xca\x15\xf5\x36\xf2\x53\xa1\xc0\x73\xba\x6a\xf3\x09\x35\x2e\x3a\x1c\x10\xda\x49\x26\xdc\x0e\x9a\x4a\x1c\x97\x18\x32\xa6\xcf\x19\xe4\x60\xb2\xab\xa1\x41\x15\x42\x75\x0a\x59\x64\xb9\xd3\x50\xa2\x0a\xa1\x3a\x45\x00\x19\x92\x3d\xdd\xe1\x4e\xf4\xa7\x50\x57\xbc\x17\x79\x92\x6f\x77\x19\x13\x2c\x88\x80\x9f\x37\x58\x4d\x6d\x9f\x25\x2b\x13\xc6\x97\x31\x17\x41\xb4\x09\xc3\x3a\xf4\x8b\xd1\x81\x9c\x87\xe1\xf9\x43\x3a\x9e\x39\x7a\x5a\x74\x8e\x15\xab\xa0\x1a\xd2\xda\xec\x32\x88\x36\x0d\xb1\xa0\x25\x14\xd4\xbb\x88\xc8\x91\x9d\xe8\x91\x45\x41\xbe\x5a\x19\x8b\x65\xbd\xdb\xf4\xd6\xab\xc8\xbe\x46\xaf\x6d\x00\x1d\xc3\x94\x70\xec\xba\x78\x07\x8d\x2b\x8f\x64\xdd\x82\x2a\x5b\x2b\xf8\x59\xc5\x23\x9c\xc1\x5f\x48\xcd\x13\x3b\x9c\x95\xc5\x7b\x17\x6a\x8f\x7d\xa5\x3e\xaf\x6a\x0e\xc9\xc7\x72\x8d\xf1\x74\x61\x35\xcf\xb1\xa5\x13\xbf\x84\x61\xbf\xff\x35\x68\xee\x6b\x4a\x8f\x24\x11\x2d\xd9\xd7\x21\x47\x5d\x47\x23\x7e\x59\xd5\x2a\x0d\xbc\x8f\xda\xc4\xe3\xcb\x1b\x97\xb4\xd5\x43\xf3\xac\x89\x4c\x7f\xb2\xc8\x54\xee\xf0\xa6\x1e\x83\x8f\xde\xcb\x64\x4f\x81\x21\x49\xd3\xff\x20\x05\x86\x25\xac\xee\xd0\x9b\x7a\x8c\x3a\xc3\xd7\x63\xd4\xe9\x6d\x3d\x06\xb9\x55\x4d\xa1\xa1\x59\xab\x29\x5a\x3a\x07\x4f\xa9\xb0\x0f\xc3\xbd\x9b\x1e\x2c\x66\x12\xd5\x38\x88\x25\x55\x57\x5e\x0a\x0f\xd5\xaa\x07\x8d\xbd\x8e\x50\x2b\x92\xb6\x96\x23\xa6\xe9\x28\xe7\xb0\x25\x4e\xf3\x0b\x06\xde\x7f\xfa\x1b\x28\x58\x02\xdf\x8a\x51\xcf\x28\x4a\x2d\xa3\x9e\xaa\x1b\x7c\x89\x9b\x53\x10\x0c\xc9\xae\x6e\x7c\xaf\x23\x8f\x45\x7b\xb2\xf2\xd6\x31\x05\x72\x66\xbb\x03\x92\x65\x3b\x53\x04\xac\xc5\xc8\xa7\xc6\x18\x42\xb0\x6d\xb0\xc0\x53\xdb\x4b\x36\x43\x5a\x1b\xaf\xee\x8d\x76\x60\x30\xaf\x53\x8c\x7d\xc1\x0e\xe3\xc8\xe8\xec\xb3\x05\xdd\x69\x7d\x53\x42\x36\x14\x21\x21\xb9\x7d\x3b\x1a\x60\xe7\x5d\xf4\x91\xf5\x29\xbd\x55\x0b\x0f\x57\xfd\x5d\x22\x7d\xa6\xe5\xa4\xc7\x20\x24\xc5\x72\xc8\x6f\x8c\xf9\xb4\xda\x66\x5f\xca\x00\x36\xeb\x4e\x2a\x4c\xee\xde\x1f\x2b\x5d\xaf\x03\x3c\x10\x34\xd0\x67\x18\x71\x59\xcb\x2c\x27\x7d\x8f\x96\x0d\xe7\xe4\xf6\x1d\x84\x99\xc7\xcf\xca\x1b\x55\x60\xe0\x0e\x6a\xb1\xc4\x1d\xc0\xc6\xdd\x38\x55\xb4\xe9\x24\xd8\x40\xf5\x6a\x1a\x9b\x61\x2d\xb3\xe4\xe6\x1d\x58\xd8\xf4\x46\x5e\x0f\xa2\x5b\xc1\x2f\xf7\x40\x45\xce\x25\xe9\x5c\xd5\x97\x66\xcf\xe0\x66\xb4\x75\x0b\x58\xd2\xf9\xa2\x22\x1a\xdd\xdd\x7e\xe3\x77\x53\x61\xc2\xe8\x53\x30\x64\x6a\x93\x3c\xef\x8e\x42\x87\x6c\xf0\xf4\xd0\xdd\x13\xff\x97\xde\x74\x7d\xee\x6a\x4b\x0a\x90\x4c\x5b\xce\x11\x57\x8a\xf8\x97\x4f\xfc\xb8\xae\xd6\xea\xc9\x8a\x8a\x14\x61\xd8\xbe\xec\xfc\x1c\xf9\x57\xf7\x43\xcd\x6b\x05\x65\x08\xe4\xb2\xb2\x39\x2d\x0c\xef\x9a\xd2\xa2\xcd\xbb\xc2\x0d\x9d\xaf\x8e\x7b\x38\xee\xe2\x02\x53\x75\x95\xd7\x3e\xce\x29\x61\x98\xa8\x0b\x0d\x4d\x1e\xa5\xf8\xdc\x80\x67\x37\x7f\x64\x19\x23\x23\x51\x80\x14\xfe\x55\x55\x27\xa6\xaa\x7a\x10\xed\x0d\x18\xe3\x34\x4c\x95\x0c\xa7\xe3\x80\x45\xd4\x77\x95\x2d\x98\x2c\x88\x86\xa1\x03\x93\xda\x27\x5c\x66\x3c\x9a\x4c\xae\x55\x4f\xa7\xca\x3a\xa8\x71\x71\xeb\xec\xb6\xce\x2d\x48\x3a\x8c\x10\xa2\x4e\xd3\x04\x52\x38\x25\x0a\xef\x2c\x08\xb6\x8d\x04\x5c\x12\x4e\xbb\xad\x1a\x0a\xf2\x01\x84\x8a\xe3\x1c\x90\xdc\x3f\x77\xc7\x63\xa5\xc7\x8c\xad\x93\xb3\x64\x43\x8e\x1d\xae\x84\xc6\x23\x1d\x45\xa4\x95\x97\xd5\x44\x2e\x99\x95\x51\x42\xf6\x75\x43\xcf\x8c\x0a\xc9\x56\xd7\x29\xab\xba\xd2\x6e\xb6\x8f\x76\x64\xe9\x14\x71\x65\x30\x5b\x6c\x39\x0b\x82\x68\x49\xce\xeb\x72\xae\xe1\x0c\xd9\xd6\x25\xcf\x15\x67\x70\x4e\x4e\xdd\xd5\x6f\x1f\xb6\xcc\xb0\xe8\x2b\x17\x79\x6c\x7c\xd5\xe8\xb6\xc2\x7e\x94\xd9\xd3\xc6\xdd\x67\xfd\x68\xb4\xb5\x77\x69\xcc\x22\x0c\xd1\xa9\x23\x58\xd2\x4e\xf4\xe4\x37\xab\xae\x80\xe1\xf2\xfa\x94\xf0\x4a\xef\xb3\x58\x89\xbf\xcc\x84\xbe\x74\x7c\x64\x6b\x2e\xce\x1c\x9a\x13\xc7\x7a\xb9\x6c\x85\x4f\x77\x4d\x53\xba\x6e\x62\x3d\xdb\x67\xa6\x28\x9d\x5f\x4f\xd3\x8e\x75\xfb\x92\xdd\xbb\xa0\x68\x06\xfd\x53\x58\x55\x69\xb7\xc1\xf4\x9d\xf8\xd1\xa3\xdb\xcf\x4d\x39\x8f\xd7\xf4\xc0\xbc\x55\xb4\x6f\x7d\x0b\x3c\x13\x0a\xaa\xf3\x62\x11\xb1\x79\xb1\x20\xbc\xc2\xe4\x46\xcb\x4b\x8d\xe2\x5d\x8a\x10\xcb\x13\xd7\xe1\x9c\x20\xfe\x9e\x8f\x12\x8e\xbc\xfd\xa2\xf8\x2b\x13\xeb\xda\xdd\x2d\x36\x1b\xaa\xcf\x58\x23\x21\xea\xe8\xb6\xce\xad\x41\xd5\xc8\xc0\x84\x39\x23\xf3\x2e\x1b\xba\xe6\xe6\x34\xd1\x29\x11\x35\xec\x2a\xdd\x8b\x8c\x67\x4b\x08\xce\x29\x77\xa3\x72\x9d\xf0\x51\xd1\x33\x2e\xf2\x5f\x52\x76\x79\x04\x2e\x9d\xb7\x21\xcd\xcb\xa9\xe6\xb9\xd4\x6f\x06\x68\x3b\x06\xe8\xd5\x74\x83\xf4\x83\x29\x56\xe6\x52\x72\x59\xc7\xcd\x55\xb7\xcb\xa1\x33\x26\x73\x09\x95\xae\x10\x7f\x38\x36\x44\xf4\xa3\xe9\xe1\xb6\x9b\x27\x8e\xcd\xed\x4c\x9b\x2c\x16\x92\xbd\x90\x83\x3a\x7a\x67\x70\x24\x92\x65\xc7\xd8\x86\x93\x69\xf1\x60\x7c\x38\xf4\xbb\xaf\xf3\x0e\x87\xa3\x57\x7f\x5d\x23\x13\xb3\x71\x54\x10\x6e\xf5\x82\x8d\xeb\xfa\xe3\x2b\x58\x13\xcf\x36\xd1\x04\xd3\x66\x47\x67\x56\xd0\x86\xfd\x41\x2e\xf3\x0d\x23\xd2\xd8\xca\x96\x2e\xc6\xfa\x54\x2c\x49\x69\x7b\xb5\x17\xe4\x24\xb1\x69\xad\x6b\x15\x92\xd9\xbc\x5a\xcd\x49\xf6\x36\xd1\x4a\xa7\x64\x57\x03\xd8\xea\x2e\xc9\xca\x83\xba\x4a\x5b\xea\x97\x4c\x34\x33\x43\x36\xfa\xad\x0c\xc3\xa2\x90\x73\xda\xb8\xb9\x22\x5b\xea\x5c\xd6\xc1\xac\x4f\x9b\x29\x5a\x78\x20\x6b\x7a\xfc\x5e\x8f\x5c\xd0\x63\x8b\x47\xae\x69\xfd\x58\x86\xb5\x80\x23\x8f\x9c\x54\x60\xf1\x35\xee\xb9\x71\xe1\x17\x95\xa4\x0b\x74\x51\x42\x3c\xa8\x45\x19\x71\x01\x16\xed\x89\x07\xab\x68\x47\x5c\x30\x45\x2b\x02\x42\x43\x54\xdf\x2c\x12\x03\xb2\x68\x49\x2c\xb4\xa2\x0d\xa9\x01\x15\x9d\x93\x1a\x22\xd1\x96\xb4\xc0\x13\x9d\x92\x4e\xc8\x44\x6b\xd2\x01\x94\xe8\x82\xf8\xf0\x88\xae\x49\x0d\x8a\xe8\x11\x71\x4d\x20\x23\x03\x5a\x9b\x42\x7c\x1b\xc9\x48\x07\x56\xf0\x8a\x18\x23\xac\xa8\xf3\xda\x9b\x78\x1c\x5f\x4a\xd2\x65\x14\xb7\xe5\x16\xe1\x49\x26\x86\xe5\xc8\x7d\x2e\xa3\x00\x9c\xd1\x8a\x49\x71\xe4\xa9\x19\x45\x5e\x6b\xd1\x03\xb0\x88\x65\x43\xd4\x73\xd1\x9a\xbd\x2b\xf4\xeb\x9f\xdd\x98\x5f\xef\x97\x39\xab\x95\x68\x84\xd5\xd8\x75\x71\xf4\x5d\xd0\x9e\x24\xe3\xca\xe9\xea\x70\xe0\x61\x78\x09\xa1\xf3\x7c\xcd\x9a\x96\x0b\xdc\x39\x30\x57\xd7\x46\xa5\x00\xe0\x28\x2f\x79\x2b\x7f\x42\xfa\x02\x71\xf3\xd8\x5b\x18\xb2\x36\x12\x94\x89\xae\xb6\x6e\x52\x75\xc5\xab\x62\xd6\x6c\xe9\xe5\x5e\xb0\x02\x84\x7d\xc4\x6e\x31\x5a\xca\x9b\xa3\x3e\xcb\xf7\xc9\xe6\x34\xbf\x60\x54\xca\x1e\xe9\x2d\xd9\xe3\x8a\xc4\xde\xa4\x34\x7e\xb7\x13\x21\xfd\x09\x9e\x7a\x95\x0e\x87\xe2\x70\xe8\x77\xcc\xee\x70\x68\xcc\xee\xbb\x7f\xcd\xf4\x4a\xda\xcd\x12\x4c\xcb\x8e\x87\x85\xc1\x06\x7f\x09\xca\x28\x8e\xc9\xd1\x12\xfb\x5d\x40\x8a\xee\x7c\xb0\x68\x57\x2e\xa1\x24\xbf\xa5\xc8\x16\xf4\x5f\xe9\x2d\x25\xe0\xbd\xe0\xd8\x79\x3a\x88\xef\x77\x8d\xb5\xe8\x62\x7f\xe1\x6d\x6b\x57\x54\xac\x43\xcb\x95\xdd\x6f\xfa\x36\x27\x7d\xbc\x90\x9d\x77\xf7\x53\xc7\xcd\xa9\x1f\x2f\xe5\xcc\xfe\x78\x21\x0d\x00\x40\x17\xe5\x26\xdf\x67\x5a\x11\xd6\xc9\xef\x38\xca\xe0\x7a\xb9\x9b\x08\x6a\xd6\xa0\xf3\x51\x5d\xb6\x83\xf7\x29\xdc\x46\xdb\x6d\xb1\x48\xb4\x2b\x59\x8e\x58\xbf\x1d\xdc\x71\x88\xfb\xcc\xee\x78\x0e\xe6\xf0\x0d\x6c\xa8\x5c\x25\x1a\x93\x54\x48\xb9\x29\x0a\x34\x8c\x5a\x75\x9f\x9a\x9b\x74\xb2\xd4\x65\xce\xb2\x69\x30\x79\xa4\xb4\x69\xe7\xc8\x6d\xcf\xe4\xbe\x8b\xe5\x8f\xf0\x39\xe8\x58\xdb\x15\x26\x8a\xc7\xf3\x35\x9b\xba\x4b\x77\x99\x41\xfa\x33\xe9\xb7\x31\xe4\x36\x52\x90\xb3\xe9\x95\xd9\x41\x57\xb4\xa2\xce\xb7\xd4\xf8\x7e\xa7\x6a\xa8\xf0\x2f\x6d\x5a\x74\x86\x3a\x42\xdf\x92\x6b\x3c\x6d\x70\x25\x8e\x41\x5a\xdb\x4e\x72\xd2\x91\xa7\xaf\x18\xcc\xb3\x32\xad\xfc\xd6\x55\x43\xa3\x64\xfb\x16\x63\xd2\x91\xd7\xdd\xcb\x2d\x17\x1a\x8d\x92\x35\xef\xd4\xd1\x4d\xcd\x39\xd5\x99\x9a\x6e\x9f\x21\xe6\xcb\x40\x1e\x7e\xae\xfd\xd7\x66\xc7\x80\xa6\x9f\xce\xdb\x75\x8e\x72\x26\xa2\x2b\x24\xf0\x6c\x3f\x8a\xbd\xc0\x6a\x48\xb4\x01\x89\x5e\x20\x81\x31\xd6\x42\x68\xa4\xdc\x41\x44\x85\xb2\x51\x57\x58\xe2\xff\xa8\x9f\x92\x4d\x57\x68\x38\x91\x18\xc0\xbe\x0f\xf2\x70\x3c\x1b\x47\x7c\x38\xe9\x76\x2d\x2c\x94\x13\x70\x94\x3f\xa4\x7c\x56\xa8\x92\x91\xe3\xac\xfc\x8f\xba\x69\xa8\x0f\x7a\xb7\x63\xcf\xce\x15\x88\xe1\x91\xc8\x9f\xe7\x97\xac\x38\x89\x4b\xf0\x9a\xc1\x52\x86\x18\x4c\xcc\x6b\x61\x39\x4d\xf5\xab\x1f\x31\x86\x80\x98\x4a\x04\xea\x74\x2a\x1e\x01\x76\x2e\x7f\x4d\xc5\x46\x29\x3a\xf0\xc3\xe1\x64\x96\x0f\xe2\xc8\xb4\x31\x26\x7f\xa2\x95\x76\x98\x63\x4f\x1f\xfc\x15\xea\x8e\xa2\x97\xc2\x6e\x68\x69\x36\x6a\x67\x30\x27\x42\xf1\x9d\x7f\xbe\x7b\x73\x33\xa9\xfe\x72\xc7\x3c\x72\xd2\x8c\x22\xac\xfd\x72\x83\x01\xb3\xd3\x9b\x48\x78\xbe\xdd\xed\x0c\x3c\x6d\xd6\x04\x37\xe3\x00\x4b\x56\xd3\x7f\x65\xbd\x43\x7f\x54\xe0\x9b\xbe\x2f\xe5\xd6\xce\x22\x41\xce\x83\x01\x8c\x64\x10\x68\x73\x0d\x78\x4f\xdb\x28\xd2\x24\xf6\x07\xf3\xff\x42\xf9\x02\x70\xf8\x90\x25\x50\x81\x2b\x54\x10\x35\x08\xf0\x97\xf2\x0d\xe5\x9d\x16\x80\x2d\xf4\xad\xe8\x39\xae\xfe\xd2\x88\xb7\x75\x44\xd9\xa9\x4c\x18\x3c\x05\x66\xd4\x9f\x90\x2e\x05\x70\x87\xb5\xa9\x15\x77\x79\x53\x14\x2e\x20\xdc\x60\xad\xe3\xcd\x29\xeb\xd4\xfd\xa6\xb2\x0d\x87\x6c\xd4\x08\xa1\x98\x15\x7d\x4a\xf3\x59\x31\x08\x7a\xaa\xa5\x60\x80\x26\x10\x98\x23\xe8\xa5\x65\x10\x05\x65\x2f\x2e\x58\x80\x07\x41\x2f\xbe\x88\xd3\x2c\x3e\xcf\x18\xe9\xed\x4b\xd6\xdb\xef\x7a\x31\x5f\xf6\x24\x47\xd3\x8b\x8b\x22\xbf\xec\xc9\xe5\xeb\x89\xbc\xc7\xe3\x8b\x74\x1d\x0b\x36\xea\xc1\xed\x62\x0f\xcc\x68\x65\xae\xcc\x54\x13\x18\x05\x51\x10\x44\xc1\x8b\x5c\xf7\x0a\xbd\xd4\x3d\x8c\x82\x88\xcf\x52\xc4\x71\x14\x04\x95\x2f\x14\x75\x99\xfc\xeb\x87\x98\x82\x20\x72\x9c\x8e\xbc\xc5\x8a\xae\x49\xdb\x0f\x03\x12\x6b\xaf\x03\xf8\x74\x72\x94\x14\x08\x3f\x6b\x26\x38\xba\x26\x1d\x24\x3f\xea\xf4\x37\x62\x7d\x4a\x45\x45\x1c\x6e\x38\xba\xe5\xf5\x8c\xd9\x4d\x15\xa9\x5f\xc4\x75\xb5\xe9\x6e\x5a\x54\xa4\x89\xa6\x21\xa0\x9b\xa7\xdb\x8a\x1e\x55\xe4\x2f\x4a\x27\xaa\x2d\x96\x20\x64\xde\x7f\x2a\x8c\xca\x68\x5b\x7f\x3d\x9c\x58\x1b\x93\x49\xdb\x9e\xd7\x79\x99\x23\x65\xbe\xae\x49\xed\xaf\x52\x29\x67\x8e\x68\xf5\xe5\x2e\x3c\x76\x1b\x10\x37\x6e\xf7\xc0\x92\xeb\x18\xd7\x67\x0f\x65\x1e\x86\x25\xa0\xd6\x5a\xe9\x99\xce\xd2\x28\x9e\x81\xd4\x3a\x2b\xec\xfd\x74\x8c\xa3\xff\x90\x68\xd0\x49\x20\xe6\x75\x7e\x29\x3c\x45\xaa\xc2\x70\x12\x71\x49\x5b\x74\x8e\x24\x30\x35\xb6\x8a\x99\xcb\x08\x07\x7a\x26\x80\x79\xea\x67\xc3\xb9\x8a\x35\xce\xe6\x7c\x11\xe5\x6c\x2e\x16\x75\xfd\x92\xd9\x00\x6e\x2a\x22\xb9\xa5\x74\x73\xb1\xd0\xea\xf7\x40\xc3\xee\x96\x56\xf5\x30\xc0\x47\x3a\x61\x14\xee\x88\xca\x28\x19\xc5\xa3\x58\x07\x53\x78\x6d\x1e\xe4\xf4\xce\x8d\x2c\x21\xc7\xd2\x8d\x75\x5a\xb9\x46\x03\xd2\x2a\x90\xa4\x45\xb2\xcf\xe2\xe2\x85\x3a\xe4\xf2\xdc\xc8\x3c\x15\x78\xb1\xb9\x9f\x64\x8e\x0e\xac\x78\x0c\x35\x3a\x45\x8e\x6c\x1c\xaf\x88\xda\x9d\xb6\x47\x1f\xa7\xda\x64\xef\x66\xa8\x4e\xf6\x76\x34\x80\x8c\x5f\x93\x8e\xab\x1f\x9b\xa7\x9b\xef\xcc\x4b\x97\xf0\x53\x87\x72\xd4\x26\x23\x6e\x92\x36\x5f\x73\x52\xac\x06\xbc\x06\xa7\x70\xb4\x68\x7e\x61\x0f\x09\xd8\xf2\x06\x2d\xb9\xe8\xc7\xcd\x6d\x02\xaf\x5d\xc2\xc5\x8a\x4e\xb2\x82\x55\x33\xdd\xc5\x5d\x30\xb6\x4d\xbc\x63\xe8\xa6\x29\x4b\xd7\x15\x3a\xe4\xcc\x3a\xd3\x28\x89\xdc\xa6\xfc\x9b\x82\xba\xac\xa7\xf9\xb1\x40\x3f\xcf\x97\xd7\xe6\xa3\xc2\x15\xae\x48\xc6\xe8\x98\xec\x19\x9d\x90\x1d\xa3\x77\xc9\x8a\xd1\x7b\x64\xc9\xe8\xb7\x64\xc3\xe8\x7d\x72\xce\xe8\x77\x64\xcb\xe8\xf7\xe4\x94\xd1\x1f\xc8\x9a\xd1\x1f\xc9\x05\xa3\x93\x31\xb9\x66\x74\x32\x21\x8f\x18\x9d\xdc\x25\x97\x8c\x4e\xee\x91\x4f\x8c\x4e\xbe\x25\xef\x19\x9d\xdc\x27\x2f\x19\x9d\x7c\x47\xce\x18\x9d\x7c\x4f\xae\x18\x9d\xfc\x40\x5e\x30\x3a\xf9\x91\x3c\x67\xf4\xee\x98\x3c\x65\xcd\xf8\x02\x92\xc7\xff\x7b\x33\x5a\x40\xc6\x48\x33\xfd\xed\x2e\xda\x7b\xa9\xda\xdb\x62\xe7\x25\x2a\x97\x03\xbf\x1c\x5f\x46\xcb\x46\x8a\x60\x45\xb4\xf1\xd2\x4e\x36\x71\x11\x27\x32\xfd\x5c\xa5\x83\xf5\xfb\x96\x91\x67\x26\xd6\x01\x98\xe0\x9c\xaa\x04\x45\xd0\xd6\x8c\xb8\xaa\xdc\x56\x4b\x17\x9d\xf9\xf5\x2c\xaf\x8f\xe7\xbf\xdd\x45\x8f\xfc\x5c\xd5\xe5\x25\x23\x26\x7a\xf4\x59\xad\xcb\xfd\x54\xa7\xbe\x34\x8a\xdf\xf7\x75\xda\x89\xd5\x00\xbf\xac\x13\xdf\x74\x28\x71\xcf\xdc\x6c\xab\x1c\xbe\x72\x5b\x62\x71\xf1\x77\x76\x5d\xbe\xc9\x7f\x8a\x8b\xe8\x45\x9d\xf3\x1a\x34\xd0\xcf\x59\xe5\x08\x29\x6f\x5c\xbc\x0f\xfe\x3d\x10\xa7\x36\xa5\xc2\xc6\x76\x17\xd6\xfd\xc9\x84\xe1\x2e\x54\xd8\xed\xde\x29\x8b\x78\x07\x9d\xd5\x91\x59\x2a\x15\x8a\x11\xa2\x5d\xf7\xd6\x50\x54\x23\xb8\x98\xa1\xd4\x06\xa3\xc1\x6d\xc4\xaa\xf2\x5b\xc1\x6c\xb0\x8f\xe2\x52\x6d\x9a\xa0\xbb\x5b\x78\xfd\x6d\x65\x7f\x9d\xa6\x24\x93\x76\x7f\xc3\x49\x45\xda\x77\x35\x10\x02\xf0\xa6\xb3\xcb\x0e\x6b\x88\x0a\xbb\xdd\x67\xdd\x90\xf9\x0f\x14\xcf\xee\x47\x93\x8e\xce\x48\xea\x5d\x8a\x92\x74\xd4\x26\x45\xd8\x9b\xe1\xfe\x78\x17\xe0\xa5\xf6\x2f\xe9\x64\xd5\xdd\xc9\xd8\x2b\xb4\xec\x2e\xe4\x77\x36\x9c\x78\x75\x76\xee\x7e\x38\xb2\x26\x6e\xf9\xcd\xb1\xf5\xfc\xb3\x7b\xe9\x5f\xbd\xe2\xe7\x2c\x92\x67\x48\x72\x76\x1f\xc0\x30\x15\x24\xc6\x0f\xe6\x1c\x0e\x4a\x92\xd1\x7f\xa0\xe4\x96\x55\xd1\x7f\x0d\x4f\x83\xa7\x8d\x09\xdb\xb6\xa2\xa4\x22\x99\x1a\x6b\xdb\x46\xc3\x1f\xd5\x85\x1a\xd5\x5e\x8f\x6a\xd7\x1c\xd5\x9e\xac\xe8\x3f\xd0\x8e\xf8\xa2\xd7\x2c\x6d\x58\x40\xfa\xd9\x18\x38\xe9\xaf\x1d\xf4\xae\x22\xab\x5b\x00\xbc\x6a\xc0\xf3\xda\xdb\x20\xe3\xf6\xc2\xa6\x72\x61\x19\x99\xf8\x1b\xf6\xd1\x17\x56\x1b\x36\xea\x5d\xb2\x08\xfe\x7e\xf2\xea\x5b\xe1\xb4\x1d\x65\x43\xe7\x48\xae\x5a\x37\x39\xf6\x5b\x7c\xff\x85\x23\x69\x54\x7b\xe9\x1f\x0c\x2f\xef\xec\x18\xbe\x6d\x26\x79\xb5\xae\xa0\x96\x07\x74\x5f\x1c\xf1\x4a\xbf\x80\xd2\xf5\xb2\x05\x81\x97\xfd\xbc\x7b\x08\x47\x31\x76\xf7\x29\xf5\x06\xa3\xf2\x7c\x2d\xb4\xe9\xd3\x3c\x6a\x50\x47\x1c\xd6\xd1\x86\x35\xeb\xa8\x1f\x62\xea\x5d\xa6\x62\x93\xef\x45\x6f\x07\xe1\x0a\x7a\xb1\xd6\xf3\x5c\xef\xd8\x28\xb0\x81\xff\x1a\xde\x90\x8c\xdc\x54\x84\x2b\x59\xe3\x23\x23\x27\x8c\x7c\x60\x14\x7d\x64\xf4\x89\xfc\xa0\x09\xf3\x5f\x66\x6d\x9b\x39\x6a\x2e\x89\x71\x51\xa4\xac\x44\x27\xac\x4b\xb7\x53\x1b\x53\xcc\xc7\x8b\xa9\x64\xee\x92\x0d\x4b\x3e\xbc\x32\x31\xde\xd1\x09\x23\x8c\x70\xf2\x91\x8d\x78\xbc\x55\xaa\x30\x4c\x7e\xd5\xb2\xcf\x6d\x8a\x01\x36\xb3\xfa\x00\x50\x24\x7c\x81\x5c\x3d\x52\xe1\x98\xca\xea\x4f\x69\x67\xe0\xa0\x42\x14\x68\x8e\x8d\x56\xcc\x04\x24\x6f\x18\xf3\x08\x10\x52\x8b\xd9\x51\x1d\x48\x10\xfd\x1f\x51\xca\x54\x47\x45\xc0\xae\xb9\x77\x58\xe4\xa2\x31\xf1\xb5\x4d\x18\x09\x39\xd2\x4d\x5c\xaa\x97\xc1\x4c\x9d\x91\x5c\x91\x86\xc2\xe2\xeb\x95\x25\x8e\x52\xe2\x09\x3b\xb2\x0d\x3f\xc8\x0c\xad\x2b\x6f\x6c\xf1\x5f\x99\x32\x80\x55\x3e\xdc\x0a\x5f\xeb\x5f\xae\x31\x49\xa7\xb1\x26\x28\x29\x8e\x40\x0b\xbc\xcf\x7c\x03\xc5\x5d\xfd\x9e\xbf\x35\x59\x14\x0d\x73\x24\xb2\xa4\xc2\xbd\x3e\x25\x9b\x23\xc6\x3d\xfb\x51\x3c\xda\x97\xec\x24\xce\xb2\xf3\x38\xf9\xe0\x1e\x27\x59\x48\x50\xc6\xe4\x2f\x7d\xeb\x66\xf7\x60\x3b\x94\x0b\x49\x29\x94\xc4\x24\xa6\x05\x12\xad\x70\x24\xe4\x46\x9f\x88\x28\xad\xea\xab\x84\x82\x21\xfb\x92\x0d\x89\x31\x89\x2b\x4c\x20\xac\x4a\x6a\x46\x66\x22\xc5\x14\x44\xc8\xa6\xd3\xf9\x78\x41\x4a\x9a\xd6\x51\x68\xe7\x0c\x02\x91\x60\x52\x2e\x2a\xf4\x86\xb5\x1e\x79\x16\x14\x34\x26\x0d\xb4\x07\x91\x4d\x65\x72\x07\x26\x2d\x74\x96\x41\xa2\xc6\x76\xa5\x6d\x13\xfd\x60\x1c\x86\x62\xc6\x1a\x34\x5c\xe0\xda\x9a\xa2\xf0\x31\xb0\x20\x1e\xbe\xaf\x54\xa0\x3a\x72\x4e\x37\x72\x5e\x5b\x7a\x6e\xb0\xc0\x9a\x9e\xb7\xd9\x97\x0b\x7a\xee\x6b\xb7\xae\xe9\x79\xcd\x62\x90\x47\x74\x33\x9f\x2c\xc8\x65\x97\xa1\xdd\x23\xdf\x22\x18\x40\xae\xad\x75\x2b\x72\xd6\x79\x47\xdb\xf0\xd7\x01\x23\xe4\x74\x09\xcf\x64\x59\xc7\x96\xda\xab\x25\xa6\x8e\xab\x00\x81\x18\x63\x9e\x4a\xc2\x75\x20\x2a\x66\x5e\xcc\x37\x86\x70\x54\x18\x20\x1b\x05\x48\x7e\x38\x24\x75\xec\x36\xad\x03\x49\x55\xa2\xf2\x84\xae\xb5\x20\x71\x67\x50\xb6\xc4\x8b\xc8\xd6\x50\x90\x94\xaa\x25\x95\x3a\xd4\x4e\xd8\x55\xa5\x5e\xc1\xbe\xa2\x67\x76\x8a\x2f\xe8\x99\x33\xaf\xe7\xf4\xcc\x4c\xf8\x29\x3d\x6b\x4e\xf1\xa3\x17\x3f\xf9\x35\x5b\x99\xe8\xc9\x27\xc7\x32\x7e\x6d\x67\xe0\xe9\xaf\xa3\x64\x5f\x14\x8c\x0b\x3a\x57\x0a\xbd\x27\xed\x52\xfd\x31\x26\x8f\xbb\x93\x5f\x1d\xe9\x6c\xfa\xb9\x70\xcd\x4f\x4c\xbf\x87\xc3\x07\x14\x5b\xbe\x7f\x4b\x94\x6e\x90\xfb\x5b\xf9\xa2\x61\x64\x54\x61\xb2\xf4\x0c\xb9\xe7\xdb\x85\xa1\xdc\x5f\xd8\x67\xf9\xdf\xef\xf3\xe2\x6b\xfa\x0c\x43\xf4\xca\xc2\xda\x37\xd1\xbf\xd4\xd7\xe7\x2f\x58\x85\x75\x1c\x51\x4c\xae\xc3\xd0\x96\x87\x88\x78\xf3\xeb\xaf\xe9\x6e\x86\x92\xc3\x61\x77\x38\x6c\x71\x18\x9e\x98\x44\xe3\x66\x1e\x6d\x67\xed\xb4\xe5\x71\xd7\xea\x93\x7a\x12\x1f\x9b\xf5\xbe\x14\xf8\x6b\xb0\xe1\xdc\x1e\x0e\x7d\xbb\xe5\x34\x77\x71\x38\xa0\xbe\xe4\x14\x1e\xdb\xb1\xdb\x5f\xb4\x3f\x8e\x56\xc8\x56\x98\xaf\x17\xc4\x8e\x05\x38\xaa\xf9\xfa\x6b\x80\xa2\x9c\xa4\xe6\x0b\x45\x5b\x5e\x1f\x8b\xbf\xd3\x61\x4f\x6a\x96\x28\x63\xc4\xa8\x4d\xa2\x3a\x80\x4c\x75\x24\x42\xcd\x2d\x0d\xed\x8f\x36\xd4\x8a\xdd\x71\x4b\x2b\x2b\xd6\x15\xad\xe3\x96\x0a\x4b\x55\xa1\x11\x2e\xa5\xde\x82\x3b\xdd\x60\x33\x86\xcc\x2d\x4d\x6e\xa0\xca\x59\x7c\xde\xa8\x60\xe6\x14\x86\xa6\xe4\x96\x41\x3c\x95\xdf\xfe\x04\xdc\xaf\xd9\x9f\x80\xf1\x23\xd5\xdf\x1f\xb7\x78\x49\xbf\x9e\x8b\xc5\x4c\xfe\x03\x2f\x88\x32\x78\x64\xd4\x54\x3f\x97\xa2\xc3\x75\x24\xd4\xa3\xf5\x7e\x9f\x05\xcb\x62\xc1\x96\xea\x7d\xa8\x3e\xa5\x1f\xeb\x13\xe2\xcd\xd6\x7d\xd3\xbe\x86\xf2\x25\x64\xfd\x7c\xcb\xb8\x7e\x93\xe3\xfa\xad\x7b\x5c\x17\xf5\xb8\x1c\x4b\xd7\xb6\x69\x6b\xdb\xcb\x93\x77\x44\x25\xe0\x4e\xb8\x15\xee\x44\x28\x90\x54\xf5\x76\x77\x5c\xde\xe1\x8e\xcb\x1b\x31\x57\xea\xf8\x04\x0d\x27\xdd\xee\x18\x5e\xc2\x75\x8e\xf5\xac\x1e\x2c\x80\xd5\x4b\x8c\x10\x2b\xe2\x29\x11\xb7\x05\xed\x12\xed\x30\x5f\x5b\x9b\xe8\x79\xd5\x5e\x0d\x82\x5e\x30\x78\x4a\x84\xe3\x02\x99\x92\xb7\xd8\x0d\x3a\x03\x11\x08\x7e\x06\x0e\x6a\x8f\xab\x86\xd5\xf0\xe7\x42\x4a\xa4\xcb\xe8\x4a\xf9\x6a\x79\xd6\xc5\x5f\xbe\x42\x75\xdc\x08\x5e\xc7\x8d\xf8\xf3\x0b\xd4\x11\x36\xe2\xbf\xb9\x3e\x27\x1d\xeb\xf3\x9c\x88\xa6\x53\x73\x37\xf8\x89\x18\x89\xf8\x5c\xf9\x05\x0c\x27\x12\xc4\xeb\x87\xc3\x49\x18\xde\x1c\x0b\xd5\xf0\x02\xad\x71\x45\x6e\xdc\x78\x3b\x29\xf9\xc3\x09\x9d\x13\x93\x67\xb8\x32\x0b\xe5\xd8\x6b\x7f\xa1\xe3\x73\xaa\xae\x73\xb5\x2b\x33\xf8\x3a\x6b\x50\x7b\x6e\x5e\x0a\xd4\x09\x78\x3a\x4b\x50\xef\x1a\x3e\xd3\x2b\xc7\x47\x7a\xd9\x72\x77\x4e\x55\x94\x76\xe3\xc5\xec\x2d\x00\x69\x39\x43\xab\x33\xb5\xc0\x1d\xd2\x55\xf3\x8a\x99\xcd\x98\xba\x1c\xd6\x04\x16\xee\x88\x1d\x89\xa1\x42\x25\x91\x52\x8c\x14\xfa\x37\x0f\xc6\xb8\xa5\x86\x79\x15\x97\xa5\x79\xb6\x50\x8e\xb2\x97\xeb\xbf\xd0\x46\x2f\xe5\x3d\x17\xaa\xfd\xe0\xd6\xdd\x92\xc9\xdd\xb2\x27\xcd\xb0\xfb\x35\x17\x00\x2e\xda\xda\xb9\x4a\xef\x17\xe3\xf4\x2b\xe4\x74\x29\x5d\xdb\xad\x50\xfb\xff\xf6\xc7\x15\x91\xe7\xea\x05\xda\x58\x77\x67\xed\xab\xbd\xeb\xb2\x0e\xf6\xba\xef\x43\x9b\xc8\xe1\x33\x26\x96\x6a\x9c\x32\x92\xea\x90\xbb\x18\x57\x68\xa3\xfd\xa9\x4d\xe8\xa7\xd5\xe7\x1a\x37\xed\xac\x9d\x76\x74\x33\x15\x59\xe2\xca\x75\x05\xe8\xa0\x0d\x9f\x80\x36\x58\x2f\x82\x8e\x12\xef\xa1\x44\xed\x5c\xd0\x51\xe4\x25\x14\xe9\xf2\x16\xe8\x1a\xe9\x59\x47\x04\x0e\xdd\x80\xbd\x8a\xea\xaa\x77\xc5\x1a\x81\x75\x65\x1d\xe5\x10\xd1\x31\xa6\xe7\x90\xdd\xea\x68\x4d\x2c\x1b\xee\xb3\xdf\x55\xf5\x84\xb5\x0d\x41\x9e\xaa\x17\xf5\xfe\x52\x11\xf2\x85\x4f\xea\xfd\x88\x49\xde\x19\xde\xd6\xbc\xda\xaf\x5f\xec\x5f\xe5\x05\x49\x69\x3e\xab\x3f\x51\x50\xb0\x38\x11\xe6\x31\xd3\x00\x47\xdf\x8d\x27\xe3\x7b\x24\xee\x2c\xb5\xcb\x0b\x11\x67\xba\xd0\x77\xa4\xec\x2c\xb4\x2a\xe2\xb5\xd3\xd6\xf7\x24\xe9\x2c\xa6\x26\xf1\x7e\x9b\x2f\x99\x2e\xf9\x03\xc9\xba\x7b\x2d\xf2\x55\x9a\xb1\x42\x15\x9b\x7c\x4b\xf6\xc7\x8a\x5d\xa4\x4b\x53\x6c\xfc\x23\xd9\x75\x16\x83\xe7\x98\xaf\xf4\xe8\x26\x63\xb2\xea\x9e\x44\x5e\x5c\xc6\xc5\xf2\xbd\x44\x54\xaa\xe4\x5d\xb2\xec\x9e\xc7\xbe\xdc\x31\x5e\xea\x49\x4c\xee\x91\xcd\xad\xc5\xde\x43\x80\x1e\x28\x7b\x77\x4c\xce\x3b\xcb\x6e\xd9\x36\xd7\xcd\xdd\x27\xdb\xce\x22\x59\xfc\xe9\x5a\x17\xf9\x6e\x9a\xbb\x0b\x6c\x67\xb0\xe7\xcb\x58\xae\x83\x5c\x30\xd2\x59\xa4\x60\xe5\x2e\x87\xa7\x44\x8f\x14\x28\x93\x7c\xc7\x74\xb8\xe0\xd3\x2f\xd9\x60\xa9\x60\x45\x2c\xf2\xa2\x56\xfe\xad\xdd\x37\x64\x04\x65\x23\xfd\xde\x02\xe1\x34\xd8\x08\xb1\x2b\xa3\x3b\x77\xa0\xb3\x3f\xca\x51\x5e\xac\xef\x2c\xf3\xa4\xbc\xc3\x24\x8e\x1e\x2e\x59\x92\x2f\x59\x31\xda\x88\x6d\x36\x4b\xf9\x85\xc4\x8e\x5c\xd0\x60\x20\x48\x41\x27\xd3\xe2\x41\xf3\xb9\x14\xf5\x2e\xca\x80\x06\x61\x5c\xac\xcb\xf9\x82\x06\x03\xc6\x65\x1b\x6f\x5f\x3f\xab\x1f\x38\x75\xdf\x4c\xb1\x58\xdd\x8e\x8b\x06\xa7\x29\x4f\x57\x29\x5b\xf6\x5e\xcb\x61\xf5\x60\x2c\xbd\xff\x15\x0c\xc4\x20\x98\xf6\x2e\xd2\x32\x15\xbd\x60\xc0\x07\x41\x6f\x95\x17\x3d\xb1\x61\xbd\xd5\x3e\xcb\x7a\xba\xba\x24\x23\x7b\x88\x9e\xc9\x7a\x3c\xe7\xc3\xad\x69\x6c\xc9\x2e\x7a\x8e\x02\x11\x2a\x43\x45\x68\xbf\x04\xf5\xb0\x79\x1b\x22\xce\x7a\x1b\x96\xed\x56\xfb\xac\x77\x19\x17\x3c\xe5\xeb\x72\xd4\x0b\x08\x03\x85\xff\x05\xbd\x01\xd7\x19\x2e\x5c\xfb\x36\xfb\x7a\xcb\xa4\x22\x8c\x7f\xdc\xb3\x3d\xfb\x29\x2f\x12\xfd\x50\xb9\x5b\xce\xe6\xbf\x66\xbb\x2c\x4e\xd4\xb3\x54\x9d\x05\x8c\xe5\xbb\x97\x59\x91\x6b\x7a\xe3\x28\x77\x1f\x19\xcc\x54\x5b\x2a\x53\xed\x59\xa9\x4f\x1a\x15\x26\x2a\xe5\xaa\xa4\xd7\xae\xb1\x7a\x41\xf9\xe1\x70\xe1\xbe\xed\xe4\xbe\x46\xf5\xe9\xbf\xdf\xf2\xa3\xda\x6d\x1a\x0c\xb0\xe2\xa4\x7e\xe8\x96\xde\x54\xc4\xcd\x2f\xbb\x63\x88\xa7\x2b\x64\x1e\x15\xed\xbb\x8f\x8a\x76\x3d\x9e\xcc\x4c\x30\x51\xa6\xf9\x8d\x35\x52\xdc\xc6\x0f\xf7\xb1\xb6\x95\xd7\xc3\x1b\x35\x40\xac\xde\x74\x90\xf3\x0d\xcc\x38\x02\xec\x8f\x6f\x55\x2f\xa7\x27\x54\x75\x35\xeb\x2c\xbd\x69\x39\x70\xea\xcb\xa6\x2f\x9d\x27\x99\x9d\x6e\xe0\xa8\xbf\xa7\x9f\x9c\x5c\xc9\x34\x5d\x4e\xdf\x8f\x9c\xa7\x99\xe9\x27\x52\xa0\xf7\xee\xf0\x30\x79\x3f\x4a\xcb\x57\xfb\x82\x35\xa0\xdc\x1f\x43\x93\x2f\xe9\x8d\xe6\x43\xb4\xf1\xf9\x19\xbd\x31\x28\x51\xa7\x5c\x35\x8b\xbc\x30\xd6\x3c\x35\x10\xfc\xd0\xde\xe4\x39\xdc\xf7\x45\x7d\x78\x00\x57\xfe\x79\xff\xbe\x64\x99\xf9\x95\xef\x8b\x04\xde\x88\xf6\x9e\x07\x72\xb4\xf5\x24\x97\x9b\x20\x56\x2f\x47\x94\xf0\xc7\x84\x6f\xed\x53\x81\x25\xd6\x02\x93\xec\xda\x75\x5b\x6e\xb5\x30\x44\xa5\xfa\xe5\x04\xd7\x86\x5b\xea\x30\x44\x31\x0d\x82\x01\x7c\x48\x31\xea\x85\x7e\xb0\x83\x14\x38\x0c\xfb\xcf\x9b\x91\xc9\x65\x2a\xca\xc1\xd1\x1d\x70\x91\x8a\xf1\xde\xc4\x6a\xc3\xbb\x72\x50\x13\x78\x2d\x34\xb7\xde\x17\x94\xc3\xdb\x7e\x3d\x99\xf5\x20\xf9\xbf\xd9\xfb\xf7\xe6\xb6\x6d\x2e\x40\x1c\xfe\x2a\x16\x27\xc3\x21\xd6\xb0\x2a\xd9\x69\xda\x50\x41\xb5\xb9\xb9\x4d\x1b\xe7\xe6\xa4\x69\xea\x7a\x33\xb4\x04\xcb\x68\x28\x40\x05\x21\x3b\x8e\xa5\xf7\xb3\xbf\x83\x73\x00\x10\xa4\x28\x27\x7d\x9e\xdd\x9d\xfd\xe3\x37\xe3\xb1\x40\x00\x04\x0f\x0e\x6e\x07\xe7\x5a\x6f\xb1\x25\x06\x6f\xca\x26\x84\x2e\xd9\x60\xb4\x7c\x30\x19\x2d\x77\x77\x49\x79\xb2\x8c\xa3\x45\x2d\x77\xf7\x4f\x47\x51\x63\xe5\x5a\x9c\x67\x10\x28\x2a\x56\x9c\xae\x31\x30\x61\xad\x92\x70\x43\xb0\xe0\xfb\x5e\x4c\xa2\x1d\xf5\xe6\xce\x1d\x5c\x15\xb9\x40\x4f\xc1\x78\xa3\x2f\x60\xa4\x2a\x8a\x0c\x73\x45\x3f\xaa\x2b\xc9\x75\xfe\xd9\x53\xa9\xeb\x56\x70\x25\x27\xad\xeb\x0a\xeb\x5b\x87\xa9\xe3\x7d\xff\x31\xc6\x98\x40\xb1\x28\xfb\xee\xaf\xef\x76\xbf\x9b\xd1\xc7\xec\xe4\xb4\x15\xb1\x28\x58\x36\x3c\x76\x18\xf6\x1a\xeb\x8f\xfb\x0b\xb5\xc8\xc2\x99\xa0\x9c\x12\x37\xe3\x54\xd9\x11\x7d\xa5\xf9\xb9\xf8\xcc\x0c\x55\xa0\x0a\xc7\x24\x55\x61\x27\xd2\x90\xc6\x58\x23\xca\x89\x6d\x6f\xf0\x75\xec\x39\xbe\x9c\x1b\xa0\xe8\x72\x49\xdd\x8b\xb9\xa6\xf0\x5a\x3e\x58\xb7\x62\x24\x79\x15\x72\x1f\x18\xae\x06\xc0\x65\x20\x0c\x98\xf6\x60\x84\x47\x84\x64\x38\xf8\xc9\xf7\x31\x4d\x1f\x87\x5b\x48\x2d\x99\x6b\x5d\xaf\xbc\xc6\xf6\x20\xaf\x6d\x1a\x32\x17\x3b\x18\x91\x54\x85\xb0\x53\xa3\x48\x0c\xd8\x63\xac\x4a\xd3\xe4\x4c\xa9\x92\x17\xb0\x23\x56\xab\x55\x86\xe0\xf8\x69\xdd\x1b\xd6\xae\x91\x99\x21\x13\xbb\x33\xc0\x0c\x76\xaa\x59\x15\xaa\x66\xf9\x30\x62\xa0\xd4\xe0\xbd\xd4\xe4\x50\xbb\x16\xe6\xfb\xf9\x90\xbb\x77\x4d\x98\x00\x4e\xbf\x4b\xa0\x4e\x44\x01\x2f\xae\xed\xe4\x9e\x90\x60\x54\xa2\xec\x36\x0b\x41\x53\xc7\x49\x3f\xd9\x7d\x94\x19\x3a\x20\xb9\x24\x74\x88\x41\x3f\x07\x96\x36\x09\xe5\xb9\xdc\x4d\xf2\x84\x36\x43\xa2\x19\x42\xea\x05\x37\x18\x95\x0f\x3c\xa3\x77\x54\xfa\x00\xb0\x4b\x26\x77\x1f\xd9\x9d\xe2\xa4\x3c\xa5\x25\x19\x4d\x76\x19\xcf\x2a\xba\x04\x5c\xae\xfd\xda\xf5\xf8\x58\xad\x36\x4f\x19\x33\x5e\x02\x06\xf3\x65\x17\xe9\x95\x2d\xd9\x51\x9a\x9a\x93\xa3\xd3\xd5\xca\x9c\x24\xff\xf3\x7f\x7a\xda\x2b\x39\x25\xe3\xa5\xf3\xce\xd8\x41\xb1\x2d\x01\x72\xc3\x96\x6e\x6f\x22\xd4\xf6\xa0\x07\x7b\x9a\xe4\x9f\x4d\x46\x48\x7f\xaa\x24\x1f\x11\x84\x98\x55\xce\x83\xa1\xeb\x10\xb5\x3d\x84\x4e\x84\x0d\x28\x5a\x9e\x95\x3b\xf9\x34\xec\x83\xd4\x1f\x80\x07\x43\x42\x93\x13\xac\xe6\x6e\xd0\xa7\x18\x67\xd4\xbd\x0b\x7a\x10\x28\x14\xbf\x49\x76\x5b\x76\x27\x7f\x2b\x21\xb3\x84\xee\x24\x64\x37\x59\x27\xb9\xa6\x49\x7d\x1d\x9f\xac\x33\x4e\x93\x04\x4d\x45\xc2\xac\x7d\x14\x6b\x0f\x7c\x65\xf7\x70\x47\xb6\xfd\xda\x78\x93\x5b\x79\x93\xb0\x24\x4f\xd8\x20\xa1\x49\x6e\x13\xfb\x89\xe7\x48\x26\x77\x92\xdd\x2c\x49\x76\xc1\xb4\x07\x48\xa9\xec\xbb\x13\x96\x9f\x7e\x37\xa3\x5d\xc6\x4c\xe6\x84\x9f\xc2\x6d\x1b\xbe\x44\x72\xd3\x37\xde\x5a\xf0\xe0\x5e\x04\xfa\x2b\x04\x1d\xd7\x37\x8e\x51\x58\xdf\xd4\xf8\xc5\xbd\xbb\x1b\xbd\xf2\xa6\xad\xf4\x8f\x3b\x07\x68\xfd\x87\x6d\x63\xc4\xd9\xd7\xdb\xa4\x1b\x91\xff\xfe\xc8\x38\xd5\x54\x76\x76\x89\xaf\x09\xba\x09\x85\xd8\xeb\x99\xdd\xb0\x41\xb6\xdf\xa5\xc2\xb1\x79\x1e\xa0\xbe\x26\xb0\x79\xe1\x50\xe0\xc8\x5f\x82\x83\xc1\xd9\x39\xfb\xe3\x81\xf7\x31\xb1\xb6\x83\xad\x76\xb3\x1e\xf4\x6b\xb5\x82\x38\x91\x9f\xf8\x35\x04\x78\xb7\xe3\x97\x24\x79\xe6\x15\xc5\xea\x61\xf9\x87\x26\x77\xd2\xef\xec\xec\xb1\xff\x24\x21\x54\xfb\xbd\x30\xc2\xe2\x1f\x75\x9c\x74\xe7\xc1\x91\x25\x89\x8b\x73\x23\x21\xf2\x89\x6d\x5a\x6e\x69\x96\xda\xbd\xf4\x0d\x35\xec\x53\x66\xa8\x80\x46\x08\x7d\xdf\x08\x41\xfa\x77\x1d\x16\xd6\x1f\x77\xd1\x96\xd8\xa6\x19\x0f\xf6\x87\xb5\x5c\x1f\x49\xff\x67\xec\xe6\xb1\x0f\xc9\x7f\x33\x2f\x16\x79\x9b\x3b\x10\x5a\xab\x8d\x18\x1c\x93\xe0\x24\x04\x9e\x74\x03\x6a\xb7\x07\x50\x2f\xd0\x6b\xea\x74\x7f\xbe\xa9\x39\xdb\xcd\x57\xd0\x4d\x8c\xb7\xe5\xdb\x71\x9d\x75\xa7\x59\xc7\x64\xb1\x2f\x76\x39\xf9\xb3\xa4\x1e\xc1\x30\xf7\x6b\x6a\x14\x4c\xbc\x0e\x9d\x96\x66\x07\x0c\x7e\x78\xdb\xa4\xa4\x66\x4d\x95\x2c\x9b\xed\x88\xf3\xac\x77\x5c\x07\x81\xf7\x78\x1e\xde\x3d\x88\xf1\xbc\xa6\x18\x45\xf0\x0d\x3f\xdf\xbc\x5d\x35\x09\xd4\x35\x0d\x64\x6e\xfe\x90\x5a\xda\xb7\x7e\xfe\xe2\x9a\x79\xec\x8e\xf9\x4e\xad\xa6\x56\xec\x2c\x14\x61\x67\x9c\xd5\x6b\x65\x41\x3f\x4e\x8a\x72\xb2\x2c\x03\x8b\x68\xfa\x48\x98\x2a\x37\xf4\xa3\x03\xc5\x39\x9b\x6d\x3e\xef\xdb\x0c\x73\xa1\x79\x31\x45\x97\x17\x03\xfa\xca\x71\x47\xf0\x60\x78\xac\x64\xb5\x9c\xbb\xa7\x35\xe9\xfb\xd2\xe8\xd3\x4b\xfa\xd1\xd3\x28\x7c\x4d\x79\xdf\xbf\xc2\x38\x4c\x98\xab\x42\x4f\x1b\x38\xe2\x9b\x2b\xfd\x9c\xa2\x41\x71\x6e\xd1\x5a\x16\x5f\xae\x6f\xad\x3d\xa7\x1f\xed\xdd\xc2\x82\x8e\x21\x17\xf3\xbd\x21\xfd\xe8\x68\x28\x87\xf0\x39\x9f\xab\x4e\x5c\xd6\xcd\x9c\x79\x72\x73\xa2\xe6\x8b\x42\xf3\x3c\xd2\xbb\x80\xd3\xd4\xac\xd7\x34\x52\xd1\xe9\x1e\x9a\xbf\x33\xd2\xd0\xe3\xc1\x88\x53\x36\xe7\xb6\x01\xf5\x6f\x61\x9d\xfa\x25\x94\xd8\xde\xfa\x0e\x56\xa9\x5f\x79\x36\x5f\xd8\xe3\x5c\x5c\x72\x74\xff\xbb\xb1\x38\x9b\xaf\xb7\xab\xbb\x5a\xd0\xd4\x13\x7e\xb6\x9c\xe1\x3c\x69\x5c\xf3\x97\x15\x7f\x5e\x5c\xab\xa5\xf9\x06\xf0\xe2\x8a\x35\x90\x47\xdb\x86\xc3\xbf\x66\x2b\xd4\xd5\xbb\x54\xfc\x36\xbb\xe2\x35\x94\xa2\x1e\x74\x4f\xb4\xfa\x85\x73\xb0\x2c\xf4\x31\xb6\x6f\xa9\x8a\x97\x6d\x5b\xf9\xd0\x71\x29\xf3\xca\x2e\x0d\xe0\x2f\xe6\x25\x3d\x06\xa6\x24\x04\xb4\x9e\xd0\x63\x7f\x3f\x9d\xd2\xa5\xac\x4c\x71\x56\xf2\x8f\x3e\xef\xb9\xa8\x4c\x7e\x41\x1b\x11\x47\xf3\xa7\x34\xb6\xc3\xde\xbe\x9d\x32\xbe\x5a\xd5\x22\x99\xd6\x7e\xb4\x7f\xef\x07\xe2\x1d\xbf\x29\xa6\x41\xdf\xd3\xa9\x8b\xd1\xc2\x85\x99\xad\x18\x1e\x96\xf6\x5a\x86\x27\x63\x7c\x6f\xb5\x1f\xda\x76\x65\xa5\x13\x16\xee\x5a\x5f\xb9\xbe\xe2\x01\x0d\x0e\xfc\xed\xd5\xbb\x79\xfd\x03\xc2\xb7\xa3\x64\x64\x89\xcb\x25\xd8\x31\xd7\xb7\xdf\x65\xe7\xed\x77\x89\xb7\xdf\xe5\x69\xa4\x19\x75\xb2\x8c\xcd\x83\xcb\xb1\xbd\xb6\xe6\x36\x17\x95\x5d\x97\xb7\x5c\x8e\x97\xdb\x2e\xc7\x4b\x72\xe3\x2f\xc5\x4b\x32\xf2\x64\xfb\x82\x0d\x46\x8b\x07\xcb\xd1\x02\x2e\xc7\x8b\xf8\x72\xbc\xd8\xb8\x1c\x7f\x9d\x84\xd9\x72\xaf\x9d\x84\xf3\xe4\xb0\xb0\x9b\x5b\xd7\xc9\xf6\xb4\x7f\x26\xe4\x14\x8f\x53\x5e\x3b\x05\xc0\xa8\x6a\xdc\x1e\x65\xa2\xfa\xbd\x28\xc5\xd4\xcf\xab\x63\x7a\xc9\x75\x05\x21\x5c\x87\xf7\xfa\xc3\x41\x7f\x3f\xa9\x27\xa8\xa5\xa3\xfd\x24\x7d\xac\xe4\xb9\x98\xe5\x5d\xca\x68\x6f\x03\x43\x7a\x54\x27\xd9\xc6\x56\x39\x32\xfa\xfa\x86\x67\x64\x7d\x2e\x64\x51\x96\xd7\x37\x51\x65\xb9\x5e\xd3\x8f\x1f\x8f\x9f\x3e\x7e\xf3\xf4\xed\xc7\x67\x2f\xde\x3e\x7d\xf3\xe2\xe1\xf3\xe3\x8f\x4f\x5e\x7e\x7c\xf1\xf2\xed\xc7\x77\xc7\x4f\x3f\xbe\x7c\xf3\xf1\xc3\xcb\x77\x1f\xdf\x3f\x7b\xfe\xfc\xe3\xa3\xa7\x1f\x0f\x9f\xbd\x79\xfa\x24\xbf\x41\x06\x11\x4e\xc1\x27\xa2\x5a\x14\x66\x72\xc1\x75\xfe\x92\xc6\x05\x8f\x6c\xae\x83\xff\x6d\xa3\xe4\x25\x32\x0c\xe8\xb3\xea\x58\xcd\xf9\x1b\x38\x60\xd0\x54\x58\xce\xf2\x70\x40\xf7\x86\x6b\x8a\x21\x75\xc1\xe3\xd2\xbb\x60\x03\x9e\x3f\x5b\xd3\x5f\xd8\xbb\x34\x7d\xb6\x5a\xbd\x1b\xf1\x3e\xff\xbc\x50\xda\x54\xec\x17\x3f\x8d\x57\xab\x5f\xd6\xdf\x26\x76\x81\x50\xe7\x28\x7d\x11\x4c\x66\xc3\xc1\x41\x64\x9e\x54\xfc\x7f\x7c\xef\xff\x7d\x7c\x6f\x4b\xba\x69\xb7\x4f\x16\x7e\x9f\xdc\xff\x81\xe0\x2e\x89\x9c\x3b\x3a\x69\xf0\xa5\xcb\x0c\xf6\xc1\x2a\xdc\xd3\x39\xf0\xb1\xfc\xa2\xc3\xa0\x82\x2c\x32\x14\x01\x51\x71\x2f\xdb\x1b\x3e\x90\xa4\xf5\xa9\xfb\xf7\x60\x47\xb6\xe5\x8b\x13\x79\x8a\xa4\xa4\xe9\xf3\xcf\x46\x17\x13\x03\x46\x95\x55\xfb\x15\xdc\xc4\xfd\xc7\x81\x89\x66\xdf\x65\x06\x34\x9a\x41\x9b\x07\xa4\x7d\x9e\xf7\xe4\x23\xfe\x33\x79\xa2\x4f\x69\xc9\x0c\x9d\x32\xd8\xd5\xcf\xdb\xfb\xe6\x74\x03\xbc\xfb\x84\x4e\xc9\xe8\xfc\x64\x7a\xca\x04\x60\xe4\x82\x89\xfe\xe2\xa2\xa8\xf8\xf4\x0d\x9f\x89\xca\x68\x30\x90\x7a\x51\xcc\x39\x68\xc1\x5f\xe0\xcc\x54\x16\xa8\x0b\x72\xd1\xfe\x80\x22\x69\xba\xcc\x2e\x4e\xd4\x29\x2d\x6d\xc3\x8a\xf5\x06\x8e\x61\xd1\xd7\xad\xf6\xc6\xd9\x32\xdb\xcc\x85\xf7\xa8\x7d\x8f\xe4\xca\x71\x7e\x7a\xaa\x0d\xf6\x8f\x84\x6a\xca\xc9\x7a\x1d\xb1\xbe\x96\xd1\x61\x39\x3d\xe1\xa7\xad\x77\x86\x83\x01\xe0\xd5\x16\x31\x43\x2f\xe0\x27\xc2\xe6\x89\x3c\xed\x4f\xf9\xc2\x6e\x0a\x72\x22\x38\xc6\x97\x5f\xb0\x93\x53\x7a\xce\x6e\xd6\x74\x6a\xff\x5d\x34\xe6\xc9\x59\x7d\xeb\xa3\x82\x16\xb4\xa2\x6e\x8e\xb8\x33\x23\x96\x10\x94\x62\xe2\x42\x30\x87\xb5\x44\x0f\x08\xec\x91\xc6\x45\xd8\x97\xb4\x24\xeb\x89\xdd\xbc\xb2\xa5\xe3\xcd\x2b\x89\xb0\x2f\xc9\x1a\xc0\x99\xb3\xde\x90\x1e\xe1\x9c\x9d\xd9\xf4\x25\xa6\xaf\xd9\x8d\xab\xda\x38\x24\xe6\xac\x37\xa0\x47\x8c\xaf\x37\x85\x2e\x4d\xa0\xe3\x76\xcf\x1c\x38\xd7\x34\x40\x8a\x27\xe8\x15\x96\x7f\xc1\x9f\x8f\xc8\xf3\x0e\xed\xbe\x6c\x33\x12\x30\xa4\x67\xe2\xc2\x74\xef\x01\xa2\x93\x11\xf7\x14\x04\xea\x86\xb1\x8f\x99\x24\xad\x2d\xd3\x81\x56\xd1\x09\x2d\x61\x30\x1f\x3a\x88\x40\x1c\x51\x03\x45\xe7\xb8\x9a\xe6\xed\x81\xbe\xff\xa3\x5b\xdd\x4b\x76\x34\x6a\xa0\x6c\xb5\xca\xc0\x8d\xfc\x25\xb3\x18\xcd\x34\x35\x8e\x8e\xa1\xdc\x12\x2d\x4d\xd0\xe0\xde\x10\xfa\xf7\x36\xc8\x74\x90\x10\x33\xad\xaf\x1e\x0c\x48\xc3\x07\x30\x63\x7c\x6c\xf2\x0d\x9e\x48\x9b\x17\x38\xce\x38\xf0\x13\x5c\x17\xed\x37\x28\x27\xb9\xcb\xcd\xf0\x69\xe3\xa5\x13\x7e\xda\x9f\x28\x39\x29\x4c\x66\x48\x7e\xc2\x69\xec\x95\xe0\xb3\x1f\x89\x8d\x8f\xf3\x60\xaa\x63\xcb\x73\x9e\xa6\x06\xe7\xa4\xb4\x6b\xc9\x62\xec\x45\x6b\x54\x9f\xbb\xdb\x6f\x64\x1f\xf2\x71\xea\x0e\x5e\x6f\x0c\x5e\x81\x9d\x4c\xc8\x7e\x66\xc9\x09\x39\xc1\xed\x62\x2b\xeb\x53\xb3\xc1\x48\x07\xd6\xa7\xf3\xed\x65\xb7\x91\x02\x2d\x32\x8f\x8d\x5a\x2c\xf8\x34\x23\x70\x40\xc1\xe4\x02\xaf\x36\x70\x00\x61\x90\xc1\x34\xf5\x73\x6e\xd4\x05\x95\x67\x68\x6f\x02\xe6\x4b\x44\xf5\xca\x12\x43\xb6\xbe\xc9\xc8\x6a\xc5\x63\x39\x55\x5f\xf3\x92\x17\x15\x50\xfc\xeb\x58\x08\x14\xe6\x80\x0b\x34\xfb\x82\xbd\xcd\x5e\x40\x3c\x5e\xce\x5e\xd0\x17\xae\x71\xa8\x65\x47\xe2\x39\xa1\x2f\xda\xbb\xd7\xf7\x04\x4e\x84\x99\xcb\xe7\xec\xb2\xb1\x9a\x39\x2e\xf6\x63\x76\x23\xe4\xdf\xdc\x9d\x12\xaf\xca\xe5\x4c\xc8\x97\x10\xd9\xbf\xc5\x9a\x68\x1f\x20\xc3\xc1\x90\x90\x51\x75\xdb\x26\xc4\x09\x2d\x33\xb2\xa6\x1b\x1f\xa8\x1e\x5d\xdb\x5d\xb8\x53\xf7\xae\x37\x84\x43\xc9\xb9\xba\x80\xa0\x92\xad\xed\xdf\x90\xb0\xfe\x4f\xcc\x29\x6c\xdd\x1b\x31\x75\x0d\x59\xad\x26\x27\xe6\xb4\xc7\x18\x8a\x52\xec\xc3\x46\x0f\xf6\x21\xc6\xb9\x2d\x62\x9a\x82\x17\xc8\xb5\x4c\x53\x0b\x73\xb4\x97\xfd\x13\x93\xa5\x4e\x1b\xe6\x85\x9a\xf2\x86\xb9\x16\xac\x46\x47\x78\x5d\x65\xa8\xd6\xd5\xd3\x8d\x42\xc9\xb4\x05\x97\x07\x99\x80\x93\x27\x78\xb5\xb2\x3c\x7e\x7a\x5c\x2c\xcc\x52\xf3\x90\xf9\x44\x2d\xcf\x5c\x7c\xb4\xae\xbc\x76\xf5\x3a\x6a\xc7\x46\x4e\x67\x55\xd0\x70\xdb\xc8\xe9\xac\xfa\x6e\xd1\x7e\x0e\xd5\x32\xcd\x7a\x3a\xc4\x9f\x20\xab\x95\xcd\xc8\x7c\xc4\x3b\xc6\x58\xc6\xdd\x96\x4d\x56\x2b\x8c\x7a\x9c\xe0\x65\xd3\x19\xeb\xf8\x27\xc3\x3f\x9b\x42\xf3\x02\x9e\x61\xce\xf7\x34\x4a\x57\x76\x78\x30\x5c\x04\xff\x97\xb0\x6b\xc4\x58\xc6\x90\x99\x5d\xc2\x6f\xd9\xa6\xcf\x0e\x86\x84\x1a\x1a\x4a\xc3\xbe\x0a\xeb\xe2\x31\xd3\xfd\x7f\x7f\x79\x18\x3d\xde\x08\xee\xdc\x7d\x9b\x48\x2c\x76\x1e\xf7\xbb\x0b\x5b\x72\x66\x42\x6f\x6f\x35\xba\x8a\x74\x34\x1b\x95\xb6\x25\xda\x78\x7e\x7d\x62\xdf\xfd\xaf\xac\xff\x3f\xc8\xc9\x5f\x7f\xfd\xf5\xdd\xe9\x77\xf4\xfd\xb7\x2a\x6a\x3d\x61\xef\xbf\x41\x51\xeb\x51\x67\xad\x96\xa2\xd6\xab\xce\x4a\x1b\x8a\x5a\x6f\x3a\xab\x75\x29\x6a\xfd\xd1\xfd\xd5\xb6\xa2\xd6\xdf\xdb\xaa\x35\x15\xb5\x9e\x75\x56\x6b\x2b\x6a\xbd\xdb\x56\xcb\x8d\x66\x04\xe1\x70\x48\x7f\xe9\xee\x72\x87\x5a\xd7\x61\x77\xaf\xdb\x6a\x5d\xbf\xdf\x5a\xad\xa9\xd6\xf5\xa1\xb3\x6e\x43\xad\xeb\xe7\xce\x2a\x0d\xb5\xae\xf7\x5f\x57\xeb\xea\xac\x12\xab\x75\x75\x56\x88\xd5\xba\x7e\xfb\xcf\xd4\xba\x5e\x6f\xf8\xf9\x82\x9d\x65\x53\x53\x06\x19\x09\x5d\xf2\x4b\xce\x7e\x4b\x53\x7e\xf2\xdb\xe9\x6a\xc5\xdb\xf2\x4b\xb7\x82\xc2\xe7\xee\x44\x47\x76\x24\x8e\xf0\x5b\x52\x67\x64\xff\x20\xb3\xb0\x5b\xe6\xa2\x2c\xe0\x4c\xb4\x04\x82\x84\xdf\xf0\xae\x13\x38\x77\xbd\xe9\xdd\x86\x70\x27\x56\x7e\x95\x3b\xd1\x9f\xe7\x1e\x26\x68\x5b\xfe\xc8\xe7\xbf\xc2\x75\x87\xb9\x7f\x84\x5c\xbf\x2e\x30\xff\x8d\xcf\xaf\xb9\x8d\xae\xe4\x30\x94\xf8\xd9\x87\xf9\xbf\xb7\xf3\x2d\x81\x94\xac\x9b\xa2\xd7\x00\xbd\x07\xba\x2d\x14\x7f\xe6\x5b\x71\xfc\xe9\xc0\xd2\x77\x5f\xf9\xbb\x5d\xee\xa5\x02\xae\xfc\x97\xdc\x93\x8f\xc8\xd6\x0f\xac\x2a\x66\x9a\x28\x36\x0e\xc5\x49\x42\x5b\xc8\xcf\x12\x98\x1b\xe3\xe4\x30\x48\x10\x32\xe0\x30\x90\x24\x8f\xf2\x12\x82\x5f\xfc\xe0\x20\xb2\xe3\x8f\x07\x1b\xe6\xff\x9c\xdb\x83\x89\x0d\x41\xee\xe7\xa4\x05\x63\xde\x8f\x85\x05\xa4\x7e\x33\x98\xd1\x37\xe7\xd4\xaf\x35\x41\x9c\x24\xa3\xa9\xba\x09\xa4\x03\xef\x9b\x62\xe6\x90\x76\x80\x9a\x04\x77\xf1\xe7\x1e\xfe\xfc\x80\x3f\xc3\x01\xfe\xde\xcf\x9d\x9b\xb0\x64\xe3\x14\xf5\x17\xa9\x8f\x53\x7e\xb6\x9c\x01\xef\x0a\xc4\xb2\xf8\x7c\x0c\x2a\x4a\x54\xb0\xba\x7f\x12\xc9\x47\x0d\xbe\xbd\xef\x64\x1a\xb3\x09\xd5\x4c\x50\xc1\x92\x84\xaa\xb1\x60\xc9\x4e\x56\x98\x9d\x64\x57\xf5\xed\xbc\xb2\xa8\x0d\x42\xc9\x4f\x34\x49\xc8\x6e\x92\xdb\xc2\x52\x48\xfe\x02\x34\x28\x00\xc1\x28\xc4\x4c\x76\x32\xe4\x48\x4e\x77\xce\xae\x91\xa3\x43\xc0\x7e\x37\xf9\x4b\xee\xec\xec\x58\xba\x30\xd9\xcd\xf4\x6a\x95\xbc\xc3\x5b\x5f\x42\x76\xc5\xda\xec\x32\x49\x39\x0c\xbd\x45\xe5\xfa\xea\x42\x94\x60\xbd\x1d\x1c\xdf\xd9\x9e\xfe\x69\xe9\x91\xed\xd6\xe1\x70\x93\xdc\x56\x18\x4c\xf3\xbe\xad\x56\xbf\xc1\x7a\x27\x94\x73\x44\x9c\x71\xbf\x92\xb7\x6e\x41\x9a\xfb\x6b\x10\xfb\x92\x71\x82\x9a\x7d\x5d\x4a\x7c\xbc\x4d\xc8\xfc\x38\x20\xde\x4a\xfd\x2a\x8b\x28\x54\x32\xe2\x3c\x7e\x76\x1c\x73\x88\x0b\x11\x3e\xab\xe0\xb3\x86\x8f\xa5\xfd\xf3\x62\xe7\x5c\x72\x76\xc2\x4f\x73\xc3\x19\xaf\xeb\x0a\x8e\x4c\x2b\xc3\x83\x13\x78\x4e\x0d\x93\x40\x0b\x4b\xfb\xe4\x26\x87\x6d\x93\xa2\x82\x1a\x67\x83\x11\xaf\xd5\x4f\xf8\xee\x2e\xd1\x3c\x33\x27\xfc\x34\x86\xa2\x68\x7a\x26\xe5\x0d\xb9\x74\xc5\x6b\xad\xa8\xba\x02\x3c\xd7\x95\x26\x16\x36\x18\xe4\x92\xb3\x82\xd3\xa5\xa5\x0f\xe9\x82\xc3\x85\xc2\x57\x3a\xb7\x95\xbc\x4a\x8b\x53\xad\x60\x8c\x49\xbb\xf2\x6d\x03\xd4\xf6\x90\xac\x25\xbf\xda\x39\x2a\x16\xb4\xf5\x8b\xd1\xe9\x38\xfb\xee\x7f\x9d\xe4\x0f\xf7\xfe\xfc\x58\xec\x7d\xf9\x6b\x39\x18\x3c\x1e\xec\xd9\x9f\x27\xf7\xe0\xff\x8f\xf0\x70\x08\x0f\x87\xf0\xb0\x7f\x78\xf8\xd7\x72\x70\xf0\x03\x54\x3b\xf8\xe1\x09\xfc\x3f\xdc\xfb\x6b\x39\x3c\xb4\x25\xfb\x83\xc1\xe3\x3d\xf8\x79\x62\xff\x43\xb5\xfd\xe1\x8f\xb6\xe4\xf1\x00\x1e\x0e\x9f\x1e\xfe\xb5\x3c\x18\x0c\x86\x7b\x7f\x2d\x9f\xfc\x60\xdf\x39\xbc\x0f\x25\x87\x4f\x1e\xdb\x87\x27\x87\xf0\x70\x78\xf8\xe4\xf4\xff\x55\xc0\xfe\xda\xeb\x0f\xf6\xee\xdb\x4f\x3f\xfa\xc1\x7e\x66\x80\xdf\xbc\x07\x9f\x39\x38\x84\xcf\xdc\x1d\x9c\xfe\x8f\x3b\xdf\xd1\x0b\xfe\x55\xb5\xca\x33\xce\x6e\xd6\x74\xce\x1b\x8c\xb2\x23\x1e\x73\x76\x1c\x6f\xab\x98\x4c\xf8\xc2\x54\x8f\x50\xf1\xab\x62\xfb\xa8\xcb\x74\x80\x3f\x77\xed\x0f\xaa\xe5\x16\x3e\x02\xbe\xdd\xac\x98\xee\xc8\xac\x16\xc5\x84\x33\x85\x25\xf3\x65\x65\xde\x55\xdc\x43\xc4\x64\xed\xad\xdb\x3e\x43\x23\x4e\x17\x18\xc4\x24\xee\x2b\x55\x21\x85\x11\x5f\xf8\xbb\x37\xcf\x9d\x1e\xe0\x0c\x3a\x91\x78\x59\xce\xce\xb4\x90\x33\xae\xd5\xb2\x2a\xaf\x8f\xb9\x79\x26\x25\xd7\xbf\xbc\x3d\x7a\xbe\xe3\xf6\x6b\x90\x92\xfa\x87\xc7\x17\x7c\xf2\x89\x4f\x77\x44\xa8\xe5\x7d\x7b\xc2\x01\x29\xcd\xd3\xa9\x00\xa1\xcb\x7b\x64\x56\x87\xe2\x5f\xae\xa7\xc8\x0b\x0d\x05\xe6\xba\xe4\x49\xbf\x5a\x94\xc2\x64\xc9\x4e\xd2\xe5\x6e\x85\x93\x9b\x19\x3f\xe1\xa7\xa0\x6f\x0b\xc8\x1e\xd0\xde\x90\x72\xd4\x74\xe8\x0d\xc1\x46\xe7\xe4\x24\x41\x94\x3f\xbe\x28\x74\xc5\x21\xd2\x2f\x3c\xef\x4d\x5c\xc6\x29\x3d\x49\x26\x65\x51\x55\x16\x47\x09\xc5\x34\xe4\xba\x98\xcf\x09\xa8\x02\xbb\x1c\xb3\x78\xfa\xcf\x52\x5c\x26\x14\xd2\x7b\x1c\x1e\x4e\x4f\xbb\xc1\x73\xa7\xff\xc9\xe0\x74\x34\xe3\xf6\x52\xef\x20\x35\x74\x08\x90\x9e\x0c\x4f\x9b\xc0\x26\x93\x26\x9e\x12\x9a\x4c\x75\x31\x9b\xb9\x74\xb5\xe0\x65\x09\x48\x4e\x68\x02\x3a\x66\xc9\x96\x2f\xb7\x10\xb3\x0f\x9f\x6b\x7a\x86\x6e\x7d\xb9\x58\x1a\xf5\x86\x5f\x72\x5d\xd9\x2f\xf1\xcf\xe8\xcb\xfd\x0d\x47\xa5\xe0\xe0\x8b\x13\x90\x31\x59\x56\x0e\x22\x3b\x7a\x5c\x5f\xf2\x87\xe5\xe2\xa2\xf8\x57\xc0\x34\x3e\x9f\x14\x65\xa9\xae\x0e\x97\x65\x79\x3c\xd1\x9c\xcb\x9d\xa2\xba\x96\x93\x1d\x0b\xd3\xa1\xfd\x1a\xa4\x5e\x95\xc5\xf5\x8e\x0f\xac\xec\xa7\x9c\xfd\xe5\x7a\xc7\xdf\xf1\x7d\xe2\x95\x98\x98\xa5\xe6\xcf\xa4\x4b\xec\x9c\x2b\x3d\x7f\xa1\x40\x2a\x58\x18\xbe\x73\x21\xa6\x53\x2e\x77\x4a\xa5\x16\x3b\x52\x1d\xa9\xe9\xb2\xe4\x3b\xb2\x2e\x87\x78\xf7\x96\x0a\xab\x9e\x49\x4b\x14\xec\x68\x5e\x4c\x5f\xca\xf2\x7a\x47\x3b\x44\xec\x68\x44\xd6\x74\x07\x2e\x07\xd3\x9d\x8a\x17\xf3\x92\x57\x15\x18\xc5\x1d\xc3\x85\xe1\xdf\xce\xdf\x83\xaf\x0f\xd3\x04\x97\x58\x42\x93\xf9\xb2\x34\x62\x01\xa3\x30\x5f\x1a\xc8\x0a\x86\x70\xdf\x36\x10\x07\xb4\x37\x68\x2f\x97\x64\xe2\x98\x27\x14\x3c\x64\x94\xaa\xf8\xd6\xd6\xee\x76\x2c\xbe\x64\xa2\xca\x2a\xa1\x89\x56\x57\xf6\xa7\x12\x5f\x70\x1a\x17\xf2\x1b\x1b\xbd\xd7\xd5\xa8\x56\x57\xc7\xb6\x09\x9a\x60\xf4\x88\x6f\x6b\xea\xfb\xaf\x20\x17\x0e\xd3\x4b\xce\xbe\x3b\xf9\x6b\x2f\x3f\xcd\x4e\x8a\xbd\x2f\xa7\xe4\xbb\x59\xbd\x9f\x5f\xf3\x58\x69\xea\x64\x78\xda\xf4\x0c\x5e\x9f\xfc\x0f\xa1\xa2\xe7\xaa\xf9\x4b\x06\x32\xd7\xbc\xc6\x6f\x4b\x5b\x37\x56\xd1\xdd\x54\xea\xad\xa9\xbb\x3c\x5c\xb4\x3c\xbd\xec\xbd\x33\x45\xb4\xcb\x15\x6f\x7b\x16\x9f\x75\xf0\x2c\xc7\xb0\x25\x01\xe9\x3f\xf2\x9c\x5d\x05\xbe\x9c\x14\x1c\x11\x79\xcf\x92\xd4\xfb\x11\xb7\x3a\x4b\x14\x90\x97\x27\x83\xd3\xd5\x2a\x79\xe9\xd3\xc4\x96\xe0\x45\xf2\x64\x68\x4b\x5e\xf8\x34\x21\x64\xb5\xca\xda\x72\x8e\x58\xaf\x63\x1b\xed\x6a\x62\x87\x2a\xad\xd7\xd0\x89\x39\xda\xb2\x02\xad\xef\x0d\x79\x46\x4d\x94\x7b\x7e\x66\x20\x59\x1d\x66\xe1\x86\xee\x31\xd9\x1b\x8c\x9a\xe3\xe2\xb2\xe1\x3a\xe1\x3e\x36\xee\xc9\xf6\xb9\x9d\x27\xd3\xc2\x14\x7b\x96\x0a\x46\x1e\x62\x3c\xab\x82\xf3\xf8\xef\x09\x49\x53\xb4\x51\xb5\x35\x39\x69\x8d\x5a\x6f\x08\xfa\x99\xd8\x3d\x12\x00\x12\xe7\x99\xae\x3b\x15\xf5\xda\x5f\x54\x5d\xbf\xfd\x7d\xcb\x55\x35\x23\x77\xf1\xf2\xaf\x5a\x74\x62\xde\xf7\x7e\xde\x88\xea\x45\xf1\x22\x33\xee\x56\x78\xaf\x9d\xbd\x5a\x0d\x7f\x32\xeb\x00\x1c\xd0\xb4\x0a\x6c\x31\x32\xe9\xb4\xed\x34\x32\x02\xec\x34\x19\x6f\xaa\x0d\xf5\x7a\x17\x8e\xd7\x3e\xe7\x94\x93\xd5\x2a\x3c\x9f\x71\x08\xcf\x91\x4d\xb9\xf7\xbe\x3f\x9e\xc3\x02\xed\x0d\xf2\xec\xcc\xa5\xec\x52\x24\x6b\x70\x6c\xe0\x67\x88\x1c\x73\x17\xf3\xe5\xa1\x27\x7e\x32\x43\x72\x30\x3f\x8a\x72\x28\x68\x9a\x92\x5c\xb5\x29\xa1\x31\x3f\x51\x0d\x32\xe8\x94\x85\x96\x0f\x7a\x7e\xb2\xa7\x69\x92\xe4\x32\xcf\x0c\x53\x4d\x22\x8b\xea\x76\x0e\x90\x5d\xf4\x76\xe8\x32\xc9\x2c\x45\x97\x29\xd7\x3c\x41\xd2\x4e\xa5\x69\x0f\x1d\x74\x27\x49\x6e\x01\xa6\x7a\xdc\xec\xc8\x8b\x63\x10\xcf\xc9\x8e\x0e\x4a\x42\x62\xe5\xdb\x2f\x3c\x16\x4f\x45\x71\x2e\x61\x3e\x4a\x35\x05\x60\xed\xfc\xab\xf9\xda\xcd\x69\x6a\x97\x2d\x1c\x27\x67\xea\x73\xe2\xd6\xa2\x2e\xa6\x02\x17\x79\xf4\xa9\x8f\x1c\xcd\x2b\x3e\x02\xc9\xf1\x56\x17\x93\x4f\x5c\x43\x88\xbd\x46\x4e\x87\xe7\x0a\x00\x72\x1c\x0e\xad\xdc\x11\x2d\xd4\x7b\x8e\xec\xcf\xb8\x89\x76\xa5\x27\xbc\x9a\x68\xb1\x30\xf6\x96\xd6\x90\x4a\x05\xc2\x9b\x1a\x7b\xb1\x4f\x92\xdd\x20\x69\xe9\xd8\xd9\xd2\xb4\x69\x69\xe1\x39\xea\x31\x1b\xbe\xde\x6a\xc0\x6b\xd4\xb6\xa2\x8a\x1b\xbf\x87\x42\x3d\xf0\xbc\x50\x71\xd3\xb4\x6d\xef\xe3\xc7\x02\x08\x76\x49\xdf\x4c\x80\xc5\xbd\xd4\x96\x1c\xc9\x7b\x03\x3a\x6b\x5a\x40\x07\x93\x19\x54\xf9\xba\x10\x15\x1a\x67\x37\x75\xf1\xa0\xab\x54\xd4\x95\x40\xfc\x1f\xfc\x11\x76\x7d\x97\xcb\xe5\x9c\xe3\x57\x65\xbf\x7e\x58\x13\x7a\x33\xe3\x66\x43\xab\xd1\x1b\x79\xc0\xc7\x5b\xa5\x01\x82\x35\xad\x8c\x5a\xc0\x38\x37\x3c\x14\x6e\xcc\x0a\xe6\x02\x44\x94\xdc\x70\xf0\x07\xbf\x5e\xdb\x2d\x2e\x9e\xb8\x2f\x3d\x5b\xa1\x17\xed\xdc\x41\xcc\x1a\x37\x06\xe3\x6b\xea\x7d\xd1\x47\x76\xf5\xdd\xc8\x70\x2e\x04\xcd\x9c\x34\xcd\xb4\x9b\x72\xbc\xef\xe6\xdc\x38\x31\x7a\xc9\x93\x3c\x39\x2f\xca\x8a\x27\x39\x47\xdb\x0c\xd0\x1a\xd6\x04\x8f\x92\xcc\xf4\x7d\xdf\x33\x4e\x68\x6f\x10\x41\xfb\xb6\xe1\x2c\xdf\xf8\x66\x83\xc5\x53\x76\xb3\xb6\x48\x6f\x5e\x80\x9c\x06\x2d\x8d\xef\x48\x3e\xef\x32\x7e\x70\xad\x39\x93\x00\x39\x96\x39\xef\x7f\xbc\xd2\x85\xa5\x2a\x40\xf3\xd2\x7b\xde\x73\x0d\xc7\x91\x4d\x3e\x37\x20\x73\xe2\xf9\x7e\xfc\x49\xbb\xcb\x34\x73\x28\x0e\x50\xaf\xee\xc8\x38\xa4\xea\xaa\xee\x63\x23\xc9\x1e\x72\xaf\x23\x89\x68\x1b\xbb\xdf\x5c\x12\xda\x82\x94\xdd\x34\x41\xcd\x83\x1b\x7c\x1f\xde\x6f\x12\x82\x51\xe5\xcd\x7d\xc7\x2b\x4d\xd4\x9b\x0f\xe4\x8c\x5b\xa0\xe6\x0d\x50\x22\x7a\xe7\x85\xc3\x04\x96\x67\xa6\x7e\x85\xa4\x29\x10\x43\x35\xd9\x0c\x21\xe6\xea\x57\x9f\xbb\x57\x5d\x13\x6e\x8a\x3d\xe4\x99\xf1\xf3\xc4\xfb\xc9\xae\xcf\x61\x49\xa2\x58\xe0\x7a\x9c\xb9\xc8\x82\x09\x6e\xb1\xf0\xda\x6a\xe5\x12\xb6\x76\x9a\x66\xee\x89\xc1\x21\x95\x87\x32\x78\x6e\x17\xd7\x46\x42\xd5\xf2\x6c\x2e\x60\xe7\xd6\x16\x3b\xdc\xde\x56\xed\x03\x89\xb5\xe1\x37\xcf\x1f\xb7\xc9\x92\x91\xd9\x90\xd2\xb9\x92\x31\xba\x02\x47\xe6\x9b\x24\xf9\x66\xc5\x78\xd2\x24\x24\x4d\xe3\x17\x00\x3b\x71\x05\x42\xa8\x9f\x7e\x0e\xcf\xde\x46\xa8\x3d\xa5\xa0\xaf\xcd\x2c\xd6\xeb\xb5\x6b\x45\xe3\xf3\x94\x47\xea\x4d\x5b\xfb\xb3\x5a\x7d\xad\x07\x75\x04\x7a\x3f\x96\xbd\x80\xdf\x1e\x63\x3a\x4d\x1d\x7e\x7b\x80\xec\x48\xcd\xf7\x12\xc3\x54\x3b\x12\xcc\x4f\x0b\x37\x04\x23\x83\x5e\x96\x3b\xd7\x2c\xae\x38\xb9\x5a\x99\x78\x62\x84\xc1\x36\x76\x09\xc5\x50\x32\xb3\x06\x66\x7f\x26\x99\x73\x10\x0b\xe8\xb2\x29\x96\x24\x51\xed\x80\xb9\x76\x4e\x47\x95\xde\xed\x1b\x0a\x85\x2f\xca\xfa\x43\xb1\x4d\xd8\x71\x40\x7e\x1c\xfc\x1e\xe2\x07\x5d\x49\xae\x9f\x6c\xf3\x0c\x67\x7b\x89\x13\xc2\x92\x47\x8d\x2e\x7e\x05\x5b\x79\xb3\x7a\xbc\x42\xda\xcd\xc8\xf8\x4c\xf9\xa7\xc5\xad\x65\x2a\xbb\xf1\x1c\x2c\xb7\xd7\xae\x2d\xe9\x90\x99\x0e\x22\xa5\x3e\x41\x74\xdf\x5b\x0b\x85\x1b\x25\x6f\x9a\xcc\xd4\xb6\x5b\x66\x97\x39\xf7\x34\xeb\xcc\x04\xd5\x67\x82\x63\x16\x34\xa1\x21\x1c\x75\x00\xf3\x31\x6f\x5c\x66\x2c\xa1\x86\x4e\x6d\x2a\x88\xd9\x07\xdc\x43\xa7\x29\xa4\xd8\x60\xa4\x1e\x04\x5f\xbb\x6a\x77\x97\x98\x93\xe4\x4e\xb2\x2b\x4f\xd4\xa9\x25\x95\xa1\xa6\x64\x83\x91\x7c\xc0\x7d\x2d\xb9\xbb\x4b\x14\xdb\x5c\x0b\x77\x2c\xbd\x24\x4f\xfd\x96\x06\x69\xcf\x2b\xc0\xe8\x33\x59\x23\x8f\x29\x70\x6f\xa1\x7d\x7e\x2b\x7a\x08\xb3\x27\xa4\xdd\xa5\x6e\x10\x86\x24\xd9\xb5\x07\x05\xa1\xce\x9c\x16\x61\xe7\x31\xec\xd0\xdd\x13\xe5\x40\xb0\x1b\x66\x1d\x34\x46\x45\x1f\xee\x0d\x40\x35\x2d\xc3\x4f\xab\xce\x4f\x93\x91\x5f\x8c\xab\x15\xd6\x71\xcc\x1f\xb0\xa0\xb5\x39\x64\xed\x6b\xb8\xc3\x3d\x82\xbb\x1e\x8d\x4f\xbc\xa1\xdc\x06\xbb\x55\x37\xb3\xb3\xad\xc9\x14\xd9\x99\x79\x02\xa0\x71\xac\x77\x9d\xfb\x61\x3a\x7e\x65\x09\xc4\x47\xfc\xfb\x16\xf1\x01\x1f\xa9\x2d\xe0\x9c\x85\x44\xeb\xd4\xa7\x8d\x63\xd0\x4f\xcb\x9b\xe8\xf8\x6a\xf5\x66\x1f\xf5\xb2\x36\x94\xd6\x80\x46\xcb\x86\x3f\x31\xcf\x01\xd8\x50\xa3\x3d\x20\x64\x64\x80\x07\xb0\x96\xcc\xac\x1d\x54\x70\x59\x4c\x12\xb2\xde\x46\x21\x20\x5e\x60\xca\x44\xc3\xf1\xa4\xd1\xd9\xe6\x11\xbc\x79\xe4\x44\x66\x86\x38\x03\xa5\x25\xe6\xb8\xdf\xae\xc3\x2e\x2b\xeb\xb3\x29\x7e\x3f\x32\xdc\xf7\x3b\x4d\xc7\x36\x23\xdd\xc9\xd6\x63\xba\x73\x0f\x8a\xc5\x3d\x8f\x9a\xf7\x31\xfe\xd9\x38\x9e\xf7\x08\xb7\xff\xed\x23\x6e\x49\x07\x9c\xab\xd1\xac\xad\x4f\x89\x35\x30\xac\xa5\xd9\xbb\xe0\x62\x76\x61\x76\x8a\x52\xcc\x40\x33\x7c\xef\xac\xa8\x38\x30\x27\x0b\x5d\x9c\x89\xc9\xde\xb9\xd2\xf3\x1d\x9f\xb9\x07\xae\x16\x77\x26\xc5\xc2\xbf\x38\x29\xc5\x62\x6f\x51\x98\x0b\x4c\xe9\x65\xc9\x77\x26\xaa\x54\x7a\x0f\x22\x77\x2e\x54\x59\xa0\xe0\x6a\x33\x6f\xef\x5c\x94\x86\xeb\xca\x95\x39\xb5\x15\xf7\x84\xb2\x6d\x21\x67\x3b\x53\x35\x17\xb2\x88\x21\xe3\xd2\xae\xcc\xbd\xb3\x62\xf2\x69\xa6\xd5\x52\x4e\x77\xce\x45\x59\xee\xa9\x45\x31\x11\xe6\x1a\x1f\x00\x90\xf3\x52\xa9\xe9\x1e\x34\xe8\xd2\xa1\x8e\x92\x66\xef\xbc\x98\x8b\xd2\xa5\x2b\xf1\x85\xd7\xa9\xbd\x62\xfa\xf7\xb2\x32\x2e\xc3\x68\x6e\x26\x17\xfe\xe1\xba\x74\x15\x9d\x45\x00\x3e\x5c\x21\x3a\x66\xe5\xf5\xe2\x62\xcf\x1e\x7a\x2e\xa9\xb4\xe0\xd2\x60\x7f\x2f\x94\x16\x5f\x94\x34\x45\xd9\x51\x78\xc9\xb5\x11\x93\xa2\xdc\x81\x5a\x7b\xc5\xf4\x72\xef\xb3\x4b\x2b\x2d\x66\x42\xee\x7d\xde\x11\xf3\x62\xc6\x23\xd4\x94\xdc\x18\xae\xf7\x2a\xdb\x29\xfb\x68\x41\x10\x72\xe6\x7a\x3c\x2f\xf4\x27\xae\xf7\xb8\x9c\xfa\xe4\x5c\x84\x24\x30\x39\x77\xd4\x25\xd7\x30\xae\x0b\x55\x09\x14\x94\xfa\x1c\x73\x21\x26\x9f\x24\xaf\xaa\x9d\x45\x21\xa4\xd9\x53\x7a\xca\xf5\xce\xa2\x90\xaa\xe2\x7b\xc3\x9d\x85\x82\xb1\x44\x5d\xe4\x6a\x27\xc0\x04\x43\x2c\xcd\x0e\xc4\x2f\x8a\x40\xb5\x57\x3d\x07\x17\x24\xfd\x40\x54\x46\x8b\x4f\xdc\x6e\x01\xcb\xd9\x45\x0d\x46\x33\xbb\x86\xa5\x32\x5a\x7d\xe2\x7b\xd3\xa2\xba\x80\x80\x5e\x71\x86\x3a\x3f\xaf\xb8\xf1\x39\xb6\x13\x93\x62\x11\x3f\xfe\xad\x84\xf4\xcf\x73\x61\x6c\x47\xe7\x22\xbc\x10\x41\x64\x1f\xaf\xc4\xd4\x5c\xec\xd8\x25\xb7\x57\xc8\xc9\x85\xd2\x98\x9e\xf2\x89\x42\xa9\x12\x3e\xd7\x3d\x5c\xda\x44\x13\x99\x75\x56\xdd\x83\xa5\x14\x13\x35\xe5\x7b\x67\x62\x2a\xc2\x83\xb6\x47\x84\x7d\x32\xd5\xde\xc2\x62\x75\xbe\x73\xb9\x57\x94\x8b\x8b\xe2\x8c\x1b\x31\xd9\xb9\xdc\xbb\x28\xe4\xcc\x7e\xe5\x72\x4f\x4c\xb9\x9a\xe9\x62\x71\x01\xf9\xf3\xc2\x5c\xf0\x79\x81\x53\xe7\x92\x4f\x8c\xd2\x7b\x1c\xec\x03\x77\xec\x8c\x82\x79\x74\x8d\xc9\x30\x8d\xe2\xa7\xeb\x9d\x2b\xa5\xa7\x61\x0a\x5d\x69\x01\x33\x68\xae\xa6\x7c\xe7\xf3\xbc\x94\x55\xfe\xb9\x14\xf2\xd3\xce\x67\xb7\xe0\xbf\x2e\x7e\xa8\xb5\x53\x50\x15\xe2\x92\xd3\x6b\x4e\xba\x65\x55\x4d\x79\x0d\x7c\x29\x2f\x26\x66\x59\x18\xbe\xe3\x9e\xf4\x44\xab\xd2\x3f\x45\xc9\xea\x42\x5d\xb9\xa4\x11\x26\x64\x5b\x4a\xfc\x7f\x33\x8c\x20\x94\xcb\xbf\xfb\xee\xea\xea\xaa\x7f\x75\x00\x66\x42\xc3\xfb\xf7\xef\x7f\x07\x1f\x4c\x6a\x09\xc2\xe7\x79\x99\xdb\x3d\x2a\xa1\x90\x2c\x0b\x39\x73\x49\xe0\xee\x6d\x93\x28\xfc\xb7\xb0\xfc\x71\xf4\xdc\xc2\xf3\xe3\x77\xd2\xf3\x11\x23\x98\xbc\xb3\xcb\x84\x26\x13\xad\xaa\xea\x25\x8c\xfa\x37\x0a\x37\x86\x5f\x93\x1c\xcd\x78\x1f\x90\xf0\x8b\xe6\xe7\xfe\xb5\x24\xe4\x24\xd8\x80\x1b\xd6\x0b\x74\x36\xf9\x15\x5c\x0e\x2c\xd0\x95\x9e\xd8\x9a\xf8\x02\x86\xe2\x40\x71\xe9\x1c\x43\x51\xfe\xf7\xe0\x0f\x82\x6c\xe6\x15\x67\x37\x17\x66\x5e\xe6\x5b\x21\xb3\xa5\x09\xb5\xeb\x6c\x6b\xad\x1f\xbf\x3b\x2a\xcc\x05\xfc\x3b\x7a\x9e\xd0\xea\x72\xd6\x55\x71\x7f\x30\x18\x7c\x57\x5d\xce\x92\x48\x9c\xff\x26\x96\xea\x78\x71\x8e\xad\xe3\x45\x30\xb7\x34\x83\x32\x06\x0b\xd8\x2d\xb5\x37\xa0\x6b\xcb\x78\x6e\xed\x76\x44\x49\xfd\xd1\xbc\x0d\x39\x15\xc0\xd5\xea\xf6\x06\xc0\xd9\xe9\x1b\x60\x5f\xdf\xd6\x15\x8c\x47\x61\x87\x98\x8b\x99\x7c\x59\x2b\xd3\x8d\x6f\x6f\x3e\x47\x8f\x0c\x7f\x73\xfa\x8c\x77\xc4\x07\xe8\xe4\xd8\x1e\x1d\x3f\x5c\x2c\xd2\x14\x7e\xfa\xfc\x33\x9f\xbc\x93\x55\x71\xce\x9f\xab\x49\x51\xfa\x48\x67\xb5\x10\x22\xb8\xa2\xb8\xb5\x7e\xd6\xe1\x52\x01\xd9\xeb\x6b\x42\xd6\x39\x5f\x67\x59\xd3\xfc\x13\x34\xfe\xc3\x82\x7d\xf7\xe6\x59\x8f\xb1\x57\xbc\x5f\x5d\xce\x40\x67\xdc\x5d\x11\x12\xb0\x0e\xb0\x84\x9d\xcb\x60\x66\x14\xae\x48\xd9\xdf\x9c\xfd\xcd\x57\xab\x6e\x55\xac\x2c\x99\x8a\xcb\x84\x90\xe8\xdd\xe4\x41\x75\x39\xfb\x29\xd9\x75\x24\xf0\xcb\xf3\x8c\xd4\xce\x4f\xc8\x6e\xf2\xe0\x3b\x28\xa7\x86\xfd\xcd\xfb\xe7\x42\x57\x06\x2e\xae\xa3\xc6\x03\xf1\xac\x21\x78\xcc\xe2\x32\xb4\xb3\x1b\x99\x56\x75\x4b\xa0\xca\x29\x56\x8f\xcb\xc8\xda\xae\xc1\x30\xbf\xde\x45\x01\x40\x6b\x3b\x84\xa8\x29\xd4\x79\x97\x40\xf7\x96\x85\xcb\x4d\xd3\x03\x10\xd9\x49\x35\x05\xb7\x9d\x31\x17\x2b\xc3\xec\xdf\x3d\xc9\xdb\x20\xa0\x99\xa9\xa7\xf6\x2f\x8d\x4b\xc2\xcd\x3a\xe8\xc8\x9f\xb4\x76\x8f\x53\x66\xda\xdb\xc9\x49\xf2\x9e\x9f\x7d\x12\x26\xd9\xe5\xa7\x2c\xb9\x72\x69\x63\x0b\x8e\xd4\x17\xcc\x9d\xdb\x84\xa1\xa8\x72\x7f\xc8\xd9\x4d\x21\xc5\x1c\x68\x08\x2e\xa7\xf9\x2f\x3c\x4b\x1e\xfa\x8c\x84\xd6\xe9\xa7\x72\x9a\x10\x1a\xea\xa2\x62\xae\x50\x72\xfb\x1b\xcf\x7c\x95\xf8\x3d\xa0\xf4\xb6\xbf\x73\x0c\xd2\x6e\x42\x8d\x2e\x24\x92\x2d\x1e\xa8\xb7\x21\x27\xa1\xd1\x03\x80\xb5\xa6\xbf\x83\x76\xd2\x87\xa6\x76\xd2\xcf\x9e\x0d\xff\xbb\xdd\x8a\xfd\x60\xc0\x03\xb0\xc7\x0e\xe3\x6c\x74\x8a\x62\xa8\x64\x90\x5d\x1b\xc4\x48\x62\xc7\xba\x4b\x04\x03\xc5\x1f\x78\xa3\x61\x26\x4f\xcc\x69\xed\x39\xe4\xcf\x34\xcd\x3e\x70\x76\xeb\xaa\xe8\x03\x15\x1f\xa3\x1a\x2c\xea\x84\x0c\x1a\x92\x99\x93\x36\x1c\xf2\x7e\x3c\x58\xf5\x03\xed\xa8\x10\x46\xe8\xf6\x6a\x30\x20\xf5\x23\x69\x20\xb7\x0d\x48\xfd\x7e\x63\x80\xa2\x27\xa7\x40\xce\xd9\xcf\x3c\x4b\x62\x60\x13\x42\x5f\xb7\x72\x45\x34\x41\xee\xb4\xca\x2a\x37\x11\x7e\xc5\xfc\xc6\xe7\x12\x42\xff\xe4\x2c\x29\xce\x94\xb6\xb7\x3f\xb9\x00\xad\x19\xfc\x75\x44\xfa\xce\x74\x89\x4d\x63\x40\x9c\x1d\x3e\x5f\x18\xc1\xa7\x3b\x5c\x4e\xf4\xf5\xc2\x40\x6a\x6a\xff\x83\x41\x73\xa9\x8a\x29\x9f\x4e\x0b\x53\xb8\xe4\x9c\x9b\x22\x3c\xe2\xe5\x64\x51\x2c\x2b\x0e\xfa\x32\xf0\xcf\x92\xa7\x0b\xad\x66\x10\x9f\x49\x17\x86\xbb\x0f\x55\x9c\x7f\x02\x4d\x19\xfe\x09\x2f\x1a\x18\xd1\x0b\x4d\x02\xa6\x3b\x46\xcc\x39\xfa\x65\xdc\xb9\x54\xe5\x72\xee\x5f\xbb\x2a\x80\xd2\x8d\x69\x45\xca\xc1\x3d\xb3\x31\xec\xe4\x94\x4a\xc7\x77\xd2\x9e\xff\xe4\x7e\x85\x61\x5e\x61\xb2\xa8\x93\x95\xb1\xcb\x7c\x59\x71\x88\x2d\x05\xa9\xe5\x62\xc7\xa8\xe5\xe4\x62\x52\xc8\x09\x2f\x31\x0d\x00\xd9\x04\xf6\xb0\x58\x7e\x9e\x94\x62\xf2\x69\x67\x7a\x56\x62\xc2\x5d\xab\xdc\x3b\xee\x09\xda\x74\xe9\xe5\x62\x67\xaa\x8b\x99\x6d\xc8\xfe\x62\x3b\x53\xad\x16\x3b\x13\x35\xf7\x17\x0f\x5b\x1a\x3d\x62\xa5\x4f\xfc\x1a\x1a\xfa\xc4\xaf\x41\x3d\xce\x26\x96\x8b\x1d\x10\xe4\xc2\x5d\x06\x02\x80\xef\x80\xb7\xe7\x1d\x07\xc0\x44\x2d\xae\x77\x26\x4b\x3b\x16\x95\xe1\x3b\x08\xa3\x43\xa0\x33\x0c\x99\x73\xb9\xdc\x01\x36\xf7\x8e\x63\x7d\xc7\x18\x9d\x18\x86\xaa\x5d\x3b\x67\xe5\x52\x3b\xd0\x0d\xc7\x54\xc9\x8b\x4b\x8e\xc8\xb2\xd7\x4e\x97\xb2\x5f\xc3\xbe\x42\xa6\x4f\x2f\xcd\xce\x4c\x99\x80\x1f\xd0\x27\xda\x29\x55\xd5\xca\x8a\xbf\x1e\x99\xa1\x9b\xb6\x6e\xed\xcd\x59\xa9\x26\x9f\xf8\xf4\xa5\xcc\x39\x35\x6a\xf1\x9c\x5f\xf2\xd2\x9e\x20\xb9\xa1\x70\xa7\x3d\xbe\xae\x0c\x9f\x1f\x96\xc5\xac\xca\x0f\xf6\x57\x92\x4a\xf0\xeb\x02\x0b\x34\xd7\xb1\xad\x34\x7a\x62\x69\x13\x71\xd0\x6b\xa7\x1d\x62\xfb\x9e\xe4\x6e\x46\xc5\x0e\xf4\x02\x3e\x5c\xc5\x80\x95\x24\xd7\x9b\xb5\x03\xa6\x5c\x6d\x8f\xaf\x24\x57\x9b\x95\x23\x1c\xba\xea\x35\x26\x93\x5c\x98\x3e\xee\x2c\x99\xe9\xbb\xfc\x67\xd3\x38\x7e\x62\xb2\x81\x6c\xd7\x4a\x07\xca\xf3\xa2\xb3\xb5\x08\x47\x0b\x13\x7b\xf5\xda\x30\x58\xb1\xa4\x50\x40\x2e\x68\x0c\x95\x26\x50\x5e\x79\xc6\xfb\xed\x11\x59\x31\x30\x59\xaf\x35\x9e\x4d\xcb\x98\xb4\x1f\x86\xb7\x2d\x0e\x7e\x2b\x33\x7b\xaa\xd7\x03\x4e\x37\x9b\xa7\x0d\x80\x5a\xb6\xc8\xcc\x80\xbc\x25\x7c\x80\xb5\xa4\x7f\x53\xe3\x05\x1c\x00\x55\x9a\xca\x80\x9c\xa8\xd6\x85\xc9\xd0\xfc\x1f\xf6\x9c\xd1\xe0\x81\x09\xca\xe3\x41\xeb\x1c\x22\xfe\x75\x77\x0a\x07\xea\x3f\xef\x91\x67\x0a\x8e\x1b\x1d\xc9\x8d\x8b\xd5\x9b\x05\x66\xb7\x34\x69\x7a\x6e\x32\x89\xda\x33\xde\x3b\x96\x2b\xd4\x58\xa8\xa1\x50\xb7\x0a\x15\x16\x2a\x28\x54\xbe\x50\x98\x70\x77\x9b\x1a\x42\x8b\xc6\x63\x8d\x9e\x33\xe3\xfd\xef\xd5\xe0\x79\x1e\x66\x9d\x83\x26\xbe\x30\x1e\x86\xf5\x06\x54\xf4\x83\x03\x96\x6a\x72\xc1\xa7\xcb\xb2\x76\x1d\x15\x95\xbd\x50\x7a\x5e\x94\xaf\xb4\x50\x5a\x98\x6b\x7a\x61\x1a\x3a\x30\x73\x98\x4b\xe1\xd1\x64\xf5\xa5\xe7\xcc\xce\x4a\x4e\xd6\xe2\x3c\x8b\x06\x8c\xdc\xd8\x7c\x3b\x58\xb1\xaf\x09\xc9\x86\x23\x19\x8d\xaa\xf4\x1e\x29\xb5\x1d\x58\x79\x3a\xd2\x8d\xae\x81\x9e\x41\xab\x6b\x64\x1d\x8f\xc2\x99\x1d\x05\x88\xc5\x57\x23\xff\xcc\x22\x3f\xca\x53\x98\xa7\x20\x2f\x42\x75\x13\xd3\x2e\x3e\xfe\x91\x61\x03\x3a\x33\x6c\x9f\x5e\x1a\x36\x1c\xec\xdf\x8d\xb4\x12\x4d\xc4\x99\xa0\x92\x81\x7c\x80\xf7\x8b\x12\x14\x78\x0d\x27\x8e\xd2\x77\x02\x4b\x62\x58\x48\xc3\xfd\x84\x33\x33\x9a\xaa\x9b\x2c\x33\x8c\x93\x3e\xf2\xa3\xde\x16\xb3\x34\x9b\x99\xd5\xa5\x21\xa4\xc7\xd8\x91\x01\x96\xbe\x7f\x8f\x50\x1e\xd2\xc1\xac\xc5\x5b\x0c\x1d\xa0\xf8\xbe\x98\x8d\x65\xcb\x22\xed\xa1\x5f\xf8\x00\x71\xaf\xf6\xe3\x14\xcc\x9f\x7f\xfc\x31\x1e\xdc\x2b\x5f\xbf\x97\xf1\x0e\xa9\x5d\xd4\x45\xa7\x27\x12\xa9\x15\x66\x86\xc1\x57\xda\x12\x0b\xf8\x44\xb0\xc0\x81\xa8\x18\x60\x6d\xc7\xd7\xf5\x5c\xe0\x54\x33\x33\x1a\xd5\x6a\x3f\x0e\x5b\x75\xeb\x2a\x5a\xd3\x82\xa9\x26\x20\xae\x8e\x88\xf7\xb8\x4c\x33\xe5\x91\x47\x6e\x24\xd3\x23\x7b\x22\x0b\xb9\xe4\x6b\x68\xc9\xce\x52\xe7\x3e\xc9\xbe\x8a\x29\xdc\x73\x6c\xfb\x13\xbc\x54\x8d\xa0\x49\x11\x0b\xcf\x1e\x9a\x4c\x11\x0a\xdf\x15\xb1\x66\x00\xe6\x9b\x91\x60\xa2\x5f\x89\xb3\x52\xc8\xd9\xba\x0b\xd9\x40\xbc\xbb\x5d\x97\x31\xed\x61\x94\x4c\x51\xcd\x44\x7d\x81\x45\xa7\x31\xbd\x21\x9d\x04\x70\x26\x08\xce\x04\xc0\xb9\xa9\xec\x9a\xf6\xaf\x85\x3e\x4d\x00\x26\x2c\xd4\x4c\x51\x19\x0a\x27\x6c\x12\x00\xb3\xa3\x57\x61\x6f\x27\xbe\xf3\xdd\xcd\x0b\xdb\xca\xb6\xe6\x85\xfd\xfe\xd6\xe6\xdb\xbd\xbf\x4f\xc8\x1a\xbb\x1f\x46\x0f\x4c\xf3\xdb\x4e\x35\x06\x88\xa5\x83\x1e\x68\x9b\x16\xb3\xdb\x26\x94\xac\x2d\x9b\x42\x0c\x11\x90\x81\xe7\x06\x74\xa0\x1a\x46\x98\x91\xa7\xa3\x11\xf6\xf5\x7b\xbf\x74\x56\xab\x7b\x3e\xe9\x5f\x01\xbf\x97\x4e\x9e\x47\xdc\xaf\x1b\x2d\x66\x68\x10\xf5\xe1\x88\xd9\xaa\x60\xa8\x8e\xd3\x14\x36\x80\x9e\xf1\x08\x19\x79\x6f\x3c\xf8\xfa\x6a\xe5\x53\xac\x6d\x27\x5a\x6f\x15\xeb\xf0\x76\xf8\xa8\x4b\xc0\xb7\x3d\xaa\xbb\xcd\x06\xbf\x98\x9a\xcd\x83\xca\xb2\xe0\x69\xc4\xd2\x12\x95\x9e\xb8\xeb\xde\x6a\x85\xd7\x28\xd2\x9f\x28\xed\xec\x71\x85\x9c\xbd\xab\xfc\x7d\x10\xfc\xa4\xf2\x6d\xa5\x84\x1e\x00\xb7\xc1\x33\x17\xc6\xbc\xbf\x28\xec\x00\xd8\xc1\xc8\x23\x11\xfc\x47\x00\x66\xaa\x6e\x36\x4d\xf3\xd2\xf4\x7b\x38\xba\x2d\xda\xc3\x25\x15\xb5\x5d\x23\xed\xb5\x40\x32\x64\x86\xfd\x93\x71\x2a\xfb\xde\xd3\x06\xda\xb4\x6f\x73\x23\x74\x62\x4e\x41\x39\x40\x76\x39\xed\x78\xdb\x99\x4d\x0d\xa1\xb2\xcb\x93\x47\xa3\x7a\xc8\xa6\x0d\x35\xbb\xb7\x7e\xfb\x44\x59\xe7\x37\xc1\xd8\xf4\xbf\xf5\x11\xc7\xc9\xb6\x4f\x25\x3b\x39\x1d\x99\x11\x91\xc1\x41\x8b\x61\x1f\xed\x79\x8b\xac\x80\x3a\x28\xf0\xe0\x81\xd9\xdb\x1b\x91\x97\x26\xb3\x77\x7d\xea\xcd\x09\xa6\x89\x3f\x70\x0d\x1b\x8c\x4c\xad\xd8\x60\x76\x77\xeb\xca\x67\xcb\xb3\xb3\x12\xeb\x46\x14\xe9\xe7\x80\x72\x9e\xa6\x12\x88\xb4\x66\x6f\xda\xce\x94\xc0\x37\x68\xe7\xd8\xb4\x6b\xfe\x5f\x1d\x91\x17\xc6\x45\x39\xda\x18\x8e\xcd\x0e\xd8\x3e\x37\x07\x00\xfd\xab\x44\x9a\x6b\xd0\xda\xe7\x8c\xd3\xb7\x31\x35\xf6\xd4\xd4\x91\x2d\x06\x91\x2a\x8f\x89\x03\x5e\xd4\x7a\x33\xd1\x65\x2b\x68\x9e\x80\x2f\xc2\x0b\x51\xb5\xa0\xf4\xe6\x63\x11\x54\xde\x8a\x2c\xa2\x57\xc1\xe8\xd5\x87\x9c\x08\xfa\xbb\xcf\xec\x3d\xe3\xbc\x98\x70\xb2\xa1\xae\xab\xec\x10\x78\xbd\x8d\xb1\x7d\xf3\x44\x9d\x32\x93\x49\x92\x27\xf8\xa5\x04\x74\xcd\xd1\x74\x0d\x7d\x14\xe9\xdc\xd7\x93\xf6\xad\x70\xa0\xdb\x2a\xa2\x7a\xe2\xbd\x2b\x02\x65\xcd\xa7\xcc\x2b\x3e\xd4\x7e\x17\x5d\xc9\x78\x33\x2b\x07\xb5\x79\x7f\x28\xa2\xae\xc1\xf8\xa9\xc9\x8f\x5d\x57\xbb\xdc\xf5\x30\x57\x18\x29\xfa\x98\x86\xa2\x0f\xbc\x09\x1f\x78\xa5\x54\xd9\xf2\xa1\xdf\x2a\x6c\x38\xd4\x47\x44\x16\x65\x99\x29\xea\x1b\x0c\xde\xf2\x21\x38\x97\xad\x11\xbe\x15\xe9\xb6\x44\xc4\xd3\x8e\x70\xf3\x51\x9d\x43\xf5\x36\x51\xb4\xff\xc3\x7d\x42\x46\xbc\x3f\xe5\x7e\xbc\x32\x42\x87\x83\x9f\x3a\xa1\x4e\xd3\x36\xbc\x6d\x17\xf9\xef\x71\x9a\xd7\x55\xd8\xc9\x29\xe5\xfd\x19\x87\x07\x3e\x65\x8f\x0d\xe5\xde\xcf\x10\xfb\x64\xd6\x2a\xfb\x27\x32\xad\xa4\x37\xcd\xd0\x8d\xb1\xb2\x31\xce\xca\xf6\xf0\x3a\xcd\x60\x37\xed\xa2\xb9\x38\x42\x45\x90\x66\x7b\xe3\xcd\xd8\x90\xb9\x77\xd7\x15\x1b\x35\xc7\x33\x00\x9a\x89\x9e\x59\x6f\x48\xe8\xb6\xd9\xf6\xd4\x10\x54\x97\x8e\x26\x4a\xdc\x89\x5b\x61\x6d\xbd\x37\xde\xc8\xd9\x06\x2d\x72\x81\x1e\xc1\x06\x8a\x2a\x68\x51\x06\xeb\x0d\xc8\x2d\xd3\x17\x20\x5e\xa0\x53\xa8\x0d\x74\xc7\xee\xa2\xd8\x53\xf0\xad\x59\x67\xd8\x65\x51\x4f\x9b\x8d\x5e\x5a\xe2\x60\xeb\x56\x00\xa7\x01\x47\xc7\xa7\xb0\x9c\x9d\x65\xc6\x68\x63\x4b\xd9\xdc\x76\x3a\x76\x27\xb4\x65\xdf\xda\xc7\x6d\xa3\xe5\xd7\x75\xc7\x9e\xde\xcc\x6f\x7a\xd8\x5a\xaf\x09\xfd\xc7\xd4\x9d\x61\x18\xce\x0c\x81\x00\x40\x31\xdd\xf0\xad\xd6\xa1\x76\x0f\x6d\x21\x17\xeb\x95\x3d\x93\xf1\x2d\x3c\x07\x2b\xd7\x04\x0c\x24\xea\xf3\x43\xf3\x62\xce\x8f\x4d\x31\x5f\x74\x79\xed\xe5\xfd\x50\xbc\x5a\x3d\x29\x8c\xa5\x88\xae\x32\xb2\xa6\x1b\xfb\x1c\x72\x48\xab\xb7\x7a\x59\xf9\xc7\xb5\xed\x12\xff\x6c\xb8\x9c\x36\x2e\x5c\xd1\x05\x3b\x0e\x37\x14\x5b\x0f\x74\xfb\xaa\x5b\xbb\x4b\xf4\x85\xa8\x46\xd1\x12\x67\xba\x15\x3e\x47\x00\x73\xd6\xd4\x3a\x75\x02\x03\xbe\xfb\x48\x39\xd1\x03\x6b\x14\x35\x42\xec\x48\x2a\xa3\x01\x01\xc5\xbc\x68\xba\xc1\xd5\xdb\xf7\x4e\xbb\x04\x7d\x6f\x0f\x1a\x2a\xd7\x36\xf1\x8f\xd3\xff\x7e\x62\x58\xc0\x43\x56\x0b\x80\xc0\x41\x18\x1e\xc3\x65\xb1\xa8\xf8\xf4\xad\xf0\x19\x8b\x8a\x2f\xa7\xca\x7b\x9b\x75\x3e\x92\x1e\x35\x9a\x99\x94\x62\x71\xa6\x0a\x3d\x7d\x52\x98\xa2\x63\xe4\x92\x46\x05\x90\x26\x8e\x79\xbf\xf9\x96\x73\xe8\xd0\xc8\xb4\x13\xf1\x55\xe3\x4b\x97\x82\x5f\xe5\xce\x0c\xc3\x14\xa2\xf4\xf0\xbc\x31\xec\x55\x5d\xab\x11\xab\xd6\x7b\x5f\xaa\x25\xc8\x31\x53\xa1\xff\x89\x5f\x3f\x56\x53\x6f\x5f\x94\x4c\x2e\x0a\x6d\x9f\x11\xc8\x81\x77\xa3\xe5\xb3\x49\x9a\x0e\x0f\x3c\x07\x88\x0d\x0f\x48\xce\x99\xa1\xc3\x81\xe3\x9c\x40\x16\x3d\xd8\x7f\xc0\xf8\x6a\x05\x15\x21\x32\x25\x0a\x87\x0d\xbb\x79\x5a\x4d\xf2\x04\x63\x11\x27\xf4\x78\x51\x4c\xf8\x59\xa1\xf3\x64\x27\xa1\xcf\xf9\xb9\xc9\x13\x08\xf7\x6b\x93\x09\x7d\xb7\x70\x8f\xef\x16\x09\x7d\x23\x66\x17\xbe\x18\xd2\x09\x85\x20\xa0\x49\x08\x2b\x9c\xd0\x27\xbc\xcc\x93\x27\xc0\xe1\x4b\xe8\x7b\x21\xf3\xe4\xe5\x71\x42\x21\x5e\xa2\x77\xe1\x72\x04\x91\xdd\x1f\x2e\x16\x55\x2b\xeb\x78\xa2\x55\x59\xe6\x09\xfe\x3e\x57\x93\x4f\x09\x3d\x52\x5f\x5e\x69\x21\x81\x55\xf5\x1b\xbf\xce\x93\x77\x52\x4c\xb9\x34\xe0\xc8\x35\x59\xd3\x67\x86\xdd\xfc\x98\x27\x8f\x8a\xc9\x27\xa7\xed\x71\x3f\x4f\xde\x16\x67\x09\x1d\xee\xe7\xc9\xe3\x92\x17\x3a\xa1\xc3\x83\x3c\x81\xd8\xca\x09\x1d\xde\xcb\x93\xe3\x0b\x61\xfb\x36\xfc\x01\xbf\xaf\x55\x99\xd0\xe1\x8f\x79\xf2\xb0\xb4\xb9\xf7\xf3\xe4\x55\xb1\xac\x78\x42\xf7\x07\x79\xf2\xb8\x58\x54\x08\xc9\xfe\x0f\x35\xd2\x0e\xf6\x01\x5d\x07\x07\xb6\xee\x8c\x5b\xe4\x1c\xdc\xc5\x34\xa2\xe1\xe0\x7b\xfb\xc5\x69\x42\x0f\xee\xe5\xc9\x2f\x6a\x6e\xdf\xf9\xa1\x81\xd9\x83\x1f\x23\xcc\x1e\xdc\x6f\xa2\xf5\xee\xa0\x81\xd4\xbb\xdf\xe7\xc9\x33\x59\x71\x6d\x8b\xee\xd5\xf8\x1d\xda\x3e\x1e\x0e\x6d\xe2\x20\x4f\x0e\xf7\x6d\xe2\x6e\x9e\x1c\x1e\xd8\xc4\xf7\x79\x72\x78\xd7\x26\xee\xe5\xc9\xe1\xf7\x36\xf1\x43\x9e\x1c\xde\xb3\x89\x1f\xf3\xe4\xf0\x07\x9b\xb8\x9f\x27\x87\x3f\x5a\x54\x0d\xf2\xe4\xf0\xbe\x4d\x0c\x6d\x83\x03\x9b\x82\xa6\x6d\xdb\xfb\xb6\xed\xa1\x6d\xfc\xee\xdd\x3c\x79\xb1\x9c\x23\x3e\x86\x16\xaa\x78\xa8\xf6\xf7\xef\xe6\xc9\x11\x37\x45\xb2\xa6\xef\x0c\xbb\x79\x58\x9a\x3c\x29\x4a\x03\xd1\x55\x1d\xa2\xf3\x64\x62\x74\x09\x39\xb6\x66\x9e\xcc\xb9\x29\xe0\x11\x06\x25\x4f\x7c\xf4\xea\x58\x2d\xe4\x97\x68\xa9\x6c\x1c\xea\xc1\x35\xf5\x8c\x9b\x23\x35\xb5\xf3\x02\x15\x40\xc7\x9b\x59\x19\x27\x79\xaf\x97\x71\xf6\x0e\x7c\x91\xa4\x69\xaf\x07\x11\x50\xc2\x97\x0e\x6b\x1a\x7e\xe7\x17\x13\x38\x56\xbf\x37\xd6\xf5\x27\xbe\x11\xc3\x01\x63\x7b\x38\x10\xff\x36\x27\xf0\x7c\x6a\xaf\xdf\x9f\xf8\x35\x38\x74\x6a\x4c\x5b\x4b\x55\x04\xb6\x83\x23\x35\x13\x2f\x89\x72\x66\x84\xf6\x86\x0d\x6b\x37\xe3\x0c\xf6\x0a\x32\x76\x73\x38\x47\x25\x85\xfe\xb9\x56\xf3\xc7\x6e\x47\xb0\x3d\x4b\x9c\x4c\xab\x6e\x60\xb5\x4a\x40\xac\x15\x35\xf9\xcc\x01\x67\x5f\x3a\x05\x7f\x3a\x11\x5c\x79\x92\xac\x69\xa9\x26\x48\x50\xe1\xd1\x88\xc3\x85\x0f\x21\x72\x3a\x3c\xe1\xd0\x62\xda\x0d\x63\xee\x5c\xc1\x2c\x78\xe1\x4e\x67\xdb\x9a\x3f\x56\xdb\xc3\x91\x1f\x1a\xea\xb7\xb4\xae\xfd\xba\x03\x23\x80\x89\x7c\xb0\xa6\xae\x0b\x5b\x5e\xfb\x2a\x1a\x02\x0e\x6c\x5b\x57\x17\xa2\x11\x68\xe4\xeb\x00\xfc\xeb\x6f\xac\x09\xfd\x60\xd8\x80\xfe\x6c\xff\xfd\x06\x82\xd5\xd7\xf0\xff\x4e\x63\x6a\x55\xe0\x9a\xe1\x0f\x87\x6d\x78\xf8\xe0\xc6\xa1\x14\x5c\x9a\x3f\xe2\x07\x57\xb2\x28\x66\xfc\x8f\x3a\xf9\xe1\x3f\x1f\xb7\xae\xf1\x41\x47\x8e\x9e\x66\xb2\xe9\xca\x0f\x72\x7c\xba\x75\xd2\x49\x8d\x2a\x20\x26\xb2\x53\x36\x32\x62\x89\x98\x53\x63\xde\x37\xe1\x78\x6f\x54\x24\x6b\x3a\x57\x97\x90\xfc\xa3\xbd\xee\x92\x50\x82\xca\x41\xb5\x03\x71\x9f\xef\xa4\x42\x1f\xc2\x46\xf1\xc1\x1e\xb7\x0e\xcf\xf4\x37\x33\x46\xb9\xa1\xad\xdf\x18\x3a\x57\x63\xcf\xe4\x83\x3c\xfb\x0d\xe4\x29\x83\x08\x92\x0f\x5b\x21\xf9\xb0\x05\x92\x0f\x0e\x92\x9f\x03\x24\x3f\xd7\x90\x7c\xa0\xaf\xbf\x02\xc9\x07\x84\xe4\xb5\x87\x64\x4d\xe8\xaf\x86\xdd\xa9\xa7\x4e\x90\x34\xe2\xf0\x80\xc2\x2e\x26\x51\x55\xd5\xcd\x10\x3b\x9d\x97\x3a\x90\xd1\x72\x66\x17\x7f\x51\xbe\x6a\xe6\x8b\xd2\x4f\x35\x9b\x74\x53\xca\x5c\xd9\xcb\x0b\x36\x83\x1f\x7b\x1b\x08\x72\x7b\x21\x10\xf3\x42\x5f\x7b\x52\xe8\xcf\x06\x70\xd3\xc2\x14\xa0\xd6\x71\x1e\xc2\xbb\x50\x2e\xe3\x99\x8f\x0a\x01\x55\x4c\xde\xbf\x8d\xb3\x50\xcc\x3e\x6d\xe4\x6d\x9d\xc8\xb7\x4c\xfe\x8e\x39\xbe\x26\xd4\xc8\x98\xbc\x8b\x4d\xd9\xff\x0d\x39\x2a\x65\xa3\xcf\xbc\x34\xc5\x1f\x5d\xdb\x0a\x96\x78\x02\xd4\xd5\x4b\xae\x2e\x38\x2f\x9f\x44\x45\x7b\xbc\x1f\xe5\xd9\x8d\x0a\xaa\x7e\xd8\xda\xe4\x87\x46\x93\x1f\xe2\x26\x3f\x74\x34\xd9\xa8\xd0\x51\x1e\xbe\xf8\xa7\xa7\x75\x4b\x53\x40\x18\x12\xd7\x5f\x2d\xd9\xc9\x09\x8a\xf3\xa9\xfb\x19\x80\xab\x1f\xb8\x4e\x25\x34\x24\x30\x17\x1c\xd9\x52\xff\xeb\xf2\x54\x85\x0e\x81\xe0\x17\xf3\x6a\x4d\x0a\x5b\x12\x13\x88\xae\x7c\x71\x0d\x05\xf6\x07\x73\x96\xc6\x66\xd8\xff\xf0\xec\x15\x49\x12\x6a\x93\x8f\xa3\xef\x79\xcd\x12\x70\xbd\x52\x7b\xd7\x75\x85\xa8\x49\xe2\x1c\x02\x01\xf5\x16\xf2\x51\x1d\x08\x4b\x50\x47\xcc\x97\xa9\x05\x64\xdb\x1f\xc8\x41\x4d\x07\xea\x7f\x21\x0f\xdd\x03\x50\xff\xeb\xf2\x2e\x8b\x52\x4c\x21\xd7\xa5\x20\xdf\x9f\x2c\xd4\xa6\x90\xfc\xf3\xf9\x78\x16\x41\xc1\x2b\x4c\xfa\x92\xe5\x02\xb3\xdf\x79\x28\x82\xf6\x4d\x42\x31\x1d\xb5\xe4\xf4\x71\x7c\x49\x78\x07\xb4\x5a\x12\xea\x7f\x5d\x1e\x50\xc2\xfe\x17\xf3\xca\xc2\x0e\x00\xfe\x60\x4e\xac\xa7\x63\x8b\xf0\xf9\x71\x3c\xfc\x91\xf6\x4e\x5d\x23\x82\x2a\x68\xf4\xd4\xa5\x01\xb2\x5a\xbf\x29\xa1\xf0\xf0\xd8\x3d\x60\x29\x47\xa7\x53\xee\x17\xf2\x50\x0d\x0a\xfc\xf5\x60\x02\x73\x51\x25\x87\x86\x04\xe4\x46\x7a\x49\x09\xc5\xa7\x06\xe4\x5e\x57\xc9\x17\xd6\x33\xa3\x56\x5e\xf2\x65\xf1\xdc\x88\x15\xac\x12\xea\x1e\x1b\x90\xdb\xd9\xe4\x26\x55\x42\x87\xf5\x1c\x84\x9b\x8a\x9b\x85\x78\x6b\x09\x65\x9f\x85\x9f\x86\x4f\x21\x19\x4a\x50\x51\x06\x8b\x9e\x63\x3a\x94\x81\xda\x0b\x16\xbd\xbc\x0c\xed\xd5\xc7\x8d\x9b\x09\xe0\x11\x3a\x2a\x53\x30\x69\x21\xf9\x72\x69\x1a\x25\xd8\x20\x16\xd5\x2d\xba\x71\x73\x6d\xba\xa7\xa8\xd5\x48\xe7\x26\x14\xd7\x2d\xc7\x3a\x3a\x75\x71\xdd\x7a\x05\x77\x0d\x3b\x7a\x2e\x31\xc4\x31\x98\xcd\xc0\x43\x93\x4f\x0c\xc3\xc8\x38\x38\x20\x1d\x41\x01\x3b\x5c\x42\xfd\x2f\xe4\x81\x2e\x9f\xdd\x2f\xf0\x77\xff\x94\x9e\xfc\xc6\x69\xad\x0e\x08\x63\x6e\x73\x5f\xc7\xb9\xb5\x86\x29\x94\xdd\x89\xcb\xdc\x4c\xd8\x77\x1b\xa2\x5b\x34\x93\x42\xbe\x82\x54\x9c\xef\x74\x06\xeb\xe2\xb7\x3e\x03\x6a\x35\x55\x09\xed\x38\xba\x0c\x3f\x97\xa0\x96\xd3\x30\x4c\x68\x9d\xc2\x7c\xaf\x71\x68\x4b\xea\xb4\x2b\x9b\xba\xfc\x69\x9d\xa7\x35\xf8\x63\x73\xbf\x90\xb7\xa9\xfd\x44\x6d\xde\x2b\xbf\xcc\x5d\x1e\xd4\x05\x77\x56\xd4\xfd\x84\x1c\xd4\x6e\x74\xf9\x1c\x19\x30\x71\xa9\x57\x78\x0c\x35\x8e\x42\x46\xa8\xe5\x17\x9a\x4d\xc7\xd8\xed\xd0\xc1\xa2\x90\xd9\x09\x9f\x53\x9e\x74\x1b\x18\xa4\x30\xdf\x29\x53\x82\xc7\x35\x9f\xdc\xf7\x7b\x09\xbe\x11\x52\x98\x8f\xba\x95\xe8\x23\x0b\x53\x98\x8f\xba\x96\xb0\xcd\xb8\x14\xe4\xd7\xba\x97\x76\x52\x8a\xb9\x0f\x7c\x0d\xa5\xbf\x72\x1a\x29\x99\x86\xe9\x96\x78\xc5\x4c\x5a\xa7\xf6\x4f\x4f\xa9\x92\x10\x25\x1a\xfe\x57\x92\x0d\x46\x95\x7c\xa0\x83\xc4\xaf\x0a\xea\x35\x13\xc9\xb4\x3c\xa9\xe4\x29\x2d\x25\x9b\xc8\x93\xc1\x29\x5d\x42\x62\x78\x4a\x17\x90\xd8\x3f\xa5\xe7\x92\x25\x4a\x26\xbb\xd9\xd2\x56\x68\xba\xdc\xda\x5d\x4a\xe7\x6b\x69\x48\x08\x9d\x4a\x76\xb3\x45\xb0\x99\xdf\x38\xd1\x62\x7e\x2e\xa9\x17\x49\xe6\xe7\x72\x37\xf1\xf8\xb7\xd4\x44\x1d\x05\x25\x3f\x29\xe5\xa9\x63\xcb\x3a\xdd\xa3\x7c\x21\xd7\x23\x25\x4f\x96\xf2\x94\x4d\x25\x2d\xa4\xad\xc2\xa6\xa8\x29\x7e\x21\xd9\x4d\x1d\x53\x25\x57\xd2\x92\x72\x4f\x1b\xaf\x77\x5c\x42\x82\x97\x81\x8c\xb3\x42\xda\x4b\xff\xd8\x8b\x4d\xfc\x5b\xfb\x6b\xda\x08\x9a\x93\x6f\x7a\xc5\x42\x29\x12\xbc\xef\xa2\xc6\xc4\x32\xfc\x96\xaa\x63\x38\xa8\x73\x71\x0e\x8e\x2b\xfe\x30\x99\x6c\x2a\x26\xf8\x7a\xd3\xda\x5b\x3f\x1e\xe2\x39\x67\xbf\x9b\x58\xef\x10\x75\x25\x63\x15\x4a\xce\xde\x34\x6a\x20\x3d\x63\xbf\xb5\x0f\x52\x35\xbc\xa4\x6d\x7e\x2e\x10\x45\x4e\xb7\xd2\x53\x42\x91\xf2\x64\x04\x4e\x7d\x36\x44\xcf\xcb\xc5\x86\xaa\x65\xa7\x26\x66\x4c\xc1\xe5\x9c\xdd\x31\x6d\x25\xcf\x48\xbf\xd3\x2e\x8f\x7c\xab\xf6\x27\x1c\x77\x1b\xca\xa0\xe1\x39\xfa\x66\x4d\xa4\xf9\x67\x05\xe8\xfc\xb3\xf1\xf1\xf8\xa8\xcf\xeb\x9c\x1a\x88\xfa\xdc\x88\x9e\x5d\xbb\x9c\x71\x19\x35\xb6\xf3\x1b\x47\x4f\xcb\xaf\xdd\xef\x1d\x9e\x73\xf6\x24\xfe\xde\xce\xaf\x36\xcb\xc4\x6f\xf9\xc3\x2b\xe7\xec\x55\x03\x34\x3c\x8d\x72\xce\x64\xa3\x3a\x90\xb9\x0e\xad\x01\xe1\x48\xa1\xe5\x9c\x3d\x32\xff\xa9\x92\x6a\xac\x03\xdb\x40\x48\x4c\xa7\x35\x72\x22\xac\xc4\xba\xb3\xb7\xab\xd7\xe2\x9c\xfe\xd5\x83\x59\xc7\x71\xf8\xc7\xf3\xbd\x76\x9e\x9b\xcc\x5e\x84\x83\xf0\x12\x42\x61\x83\xb7\x36\x6a\xd6\x6b\x7a\x26\xd9\x05\xf8\x85\x6a\xac\x75\x3a\x97\x6c\x38\xa0\x47\xb2\x11\x49\x7d\xd6\x50\x5e\x6b\xe8\x56\x80\x06\x1e\x46\xef\xb8\xe1\x7d\x90\x3e\x19\xa5\x2b\x94\xad\x4a\xa7\xeb\xeb\x84\x29\xa0\x88\x76\xc0\x18\xd3\xa8\x1f\xc4\x74\xac\x75\xa4\xa4\x29\x84\xe4\xfa\x99\x3c\x57\xb5\xfa\xd6\x48\x07\xf5\x3f\x1d\xb4\xbc\x46\x9a\x1d\xf4\x5c\x33\xa8\x05\xb7\xb5\x25\x17\x4e\x0c\xd1\xf4\x7d\x0f\xf4\xeb\x50\x1b\x2a\x4d\xef\x39\x47\x0c\x9b\x60\x53\xc9\x2a\x9d\x69\xe2\xf4\x6b\x24\x69\xb8\xac\xa8\xab\xc7\x5a\x97\xa0\xd7\xe7\x4b\x4e\xe4\xa9\x0b\xea\xf8\xc5\x64\x6d\x3d\x5f\xd6\x54\xa4\x0d\xfa\x54\x82\x35\x6a\x42\x04\xc8\x0d\x15\xdb\x10\x00\x6d\x30\x9a\x3c\x58\x78\x08\x26\xfe\x60\x2a\xd9\xe2\x64\x72\x3a\x2a\xd3\x34\x2b\x59\xd9\x0c\x5b\x06\xfe\xd9\x04\x55\xb4\x00\xe5\x91\x8a\xbd\xcd\x2a\x5a\x12\xb2\x7e\x9a\x55\x2e\x5e\xd5\xa5\x04\xff\x1c\x41\x43\xd3\x19\x92\x3d\x94\x99\xa1\xbc\xa9\x81\xfc\x30\x04\xcc\x73\x1b\xf5\x99\x04\xd7\x0b\xb0\x40\x07\xce\x19\xfa\x95\x8c\x02\x1e\x1a\x3a\x8c\x95\xbf\x77\x86\xb9\x66\x5f\xb6\x54\x08\xf6\x83\xec\x65\xbb\xc6\x5a\x8e\x79\xbf\x98\x4e\xa1\x53\x5e\xb6\x99\x19\xaa\x69\x6f\x40\xf2\x6d\x45\x31\xe8\x57\x01\xf4\x25\x5f\xad\x26\x3c\x23\x2e\xdc\xcc\x4b\x49\x15\x5b\xf2\xd1\x92\x5b\x34\x18\x7d\x7d\x53\xf1\x4c\x53\x17\x9d\xd4\xc7\x45\xcc\x96\x9c\x29\xb2\x5a\x9d\xf3\x2c\x56\xf6\xf9\x12\x5a\x7d\xe9\x53\x91\xf2\x56\xd3\x19\xe4\x91\x6c\xa9\x52\x1c\x49\xa7\x3e\xa1\x1a\x73\x83\x71\xaa\x36\xe6\x00\x33\x54\xb5\x14\x57\x54\xb4\x2a\x99\xa6\x9c\x29\x0c\xe2\xc6\xd9\x4d\xc3\xec\x80\x6f\x9a\x1d\x98\x86\xcd\x81\xa4\x75\x43\xb9\xa6\x61\x42\xe7\x27\xa7\x6b\x40\x08\x68\xe8\xcd\x24\x95\x8c\xd3\x05\x27\x26\x93\x2e\x22\x17\x7a\x7f\xba\x59\x04\xd4\x95\xe8\x58\xdc\x95\x06\xec\x81\x1b\x71\x8a\xb8\x0b\x99\xcd\x15\xe1\xe3\x3d\x35\xfa\x88\x59\x51\x37\x5d\x4e\x7b\x35\x32\xbb\x7d\xb9\xf4\x83\xb9\x4c\xd3\x23\x19\x34\x3d\x22\x65\xb8\x38\x52\xeb\x25\xd8\x82\x45\xca\xd6\x69\xba\x37\x7c\x50\x99\x28\x60\x20\xe1\xac\x34\x2e\x6e\x27\xc6\xd2\x36\xc6\x37\x8b\x1d\xc7\x19\xf4\xd6\xb7\x3b\x72\xda\xb4\x7a\x0c\xa6\x1b\x92\xe4\xed\x26\xc7\x19\xb4\xa9\x37\x1b\x24\x1d\xb4\x52\x2b\xd2\x91\xa3\x5a\x3c\x39\x62\xd8\x02\x15\xb7\xbd\xa6\x8d\x77\x0e\x1a\x9d\xfe\x5e\xe0\x0d\x75\x75\x47\xdd\x88\xde\xf0\xe2\x6c\xa8\xab\x3a\xea\x36\x4e\x26\x17\xbe\xb6\xb6\xca\xf0\xac\x58\x01\xee\xe9\x32\x45\x17\x26\x13\x20\x37\xca\xec\xc2\xa9\xd1\x08\xc7\x91\x6f\xb3\xe3\x9c\xf5\x70\xc4\x8d\xd3\x22\x6a\xb5\xb8\xa5\xd5\xc8\x1b\xa8\x47\xf2\x6a\x95\xb9\xe1\xa0\x61\x45\x82\x12\x7c\x3c\x37\xc2\x18\xba\x31\xfd\x02\x92\x76\x85\x47\x42\x64\x2a\xa1\x48\xa4\xb6\xad\xd9\xb5\x05\x83\x10\x85\xaa\x20\x61\x4e\x08\x3c\xa7\x20\x74\xed\x41\x87\x7a\xf5\x30\x1c\x65\xc1\xf7\x14\xcb\x6c\x87\xe7\x7c\xae\xc4\x17\x3e\x05\x7e\x2a\xa9\x9d\xba\x66\xf6\x20\xac\x95\xe4\xd3\xb4\xa3\xb6\x77\x1d\xc3\x14\xc1\x03\x52\xf5\xa7\xfc\x02\x5c\x95\xf3\x69\x20\x9a\xf5\x08\x81\x5d\x7b\xbf\x6d\x35\x7c\xf1\x81\xea\xde\x23\x91\x9e\x3c\x1e\xbd\x5b\x4f\x5d\x74\xcd\x1b\x37\xae\x9d\xb3\x26\xe5\x6c\x0e\x5c\x5b\x61\x10\x14\x42\x1c\xa9\x4e\x86\x38\xee\x7f\xb6\x8d\x6b\x32\x8e\xf7\x2a\x4e\x84\xdc\xf1\x26\x98\x41\x60\xb9\x5a\x65\x99\xb9\xdd\x32\x93\x34\x1d\x94\x72\x9a\x38\xba\x22\x21\xd4\x74\xc6\xc8\x01\xb9\x26\xc5\xc0\x17\x2f\x24\x93\xfc\xaa\x33\x0e\xcd\x7b\x5e\x7c\x3a\x2a\x16\x63\xf7\x9b\x1f\x15\x8b\x48\x35\xe1\x79\x44\x46\xbd\x00\xda\x2b\x0a\xaa\xd1\x8e\x0f\xcf\xaf\x76\x8e\xb9\xa1\x2f\xc0\x67\x27\x9c\xc2\xf6\xfb\xb5\xb2\x64\xbc\x7f\xf5\xc0\x8c\x15\x02\x5d\xb4\x8d\xfc\x1d\x55\x0c\x07\x78\x60\xf0\xf4\x06\x0d\x23\xac\x4d\x23\x32\xac\xee\x58\xad\xbd\x01\xa1\x98\x81\xbc\x68\xfb\x2c\xed\x29\x9b\x61\x46\x78\xc2\xfa\x8d\xa6\x1b\x24\x30\x72\xa3\x73\x18\xd9\x34\xf5\x34\x45\x13\x16\xcf\xb4\x75\x0e\x8f\x91\x9f\x88\x0f\xc8\x87\xcc\x9b\xf4\xc1\xde\x90\x31\xf6\x27\x8f\xb6\xd5\x34\x75\x54\xcb\x1a\xc1\xe2\x8e\xb4\x39\x96\x91\x49\x74\xe0\x30\x61\xc8\xfc\xde\x80\x9e\x81\xeb\x99\x67\xf3\x62\xc6\x5f\x2e\x4d\xc5\xdb\x99\xc7\xf6\xb2\xde\xca\x7b\x0f\xc2\x20\xc8\xfb\x7c\x58\xf2\xcf\x51\xf2\x67\xad\x96\x0b\xf7\xfc\x52\x4f\xed\x31\x17\xb2\x26\xaa\x5c\xce\xeb\x2f\xe3\x63\x65\x93\xe7\xae\x91\x73\x6c\xe1\xca\xa7\x5f\x81\x8d\xe5\x25\xf7\xcf\xc7\x17\x5a\xc8\x4f\xfe\xe9\x05\x9f\x15\x71\x29\xc6\x1c\xec\x0d\xe8\x4c\x8b\xe9\x43\xcd\x0b\x9f\x7e\x83\x2d\xba\xe4\x53\x39\x8d\x9e\x8e\x17\x85\x8c\x1f\xc1\x9e\xdb\x3d\x3f\x06\x08\x9b\x4f\xd1\xdb\x98\x11\x37\xe0\x72\x7c\x1b\xe7\x4a\x9a\xf7\x28\x2d\xeb\x0d\x68\x29\x24\x7f\x5c\x16\xf3\x85\x7f\xf8\x25\x14\x39\xef\x38\x90\xf4\x9d\x50\x7a\x71\x51\x20\x7a\x4c\x71\x76\x2c\xbe\x40\x3f\xaf\xc4\x54\x5d\x41\xe6\x17\x70\x3d\x02\x29\xa5\xe6\xf0\x39\x51\x96\x2f\xeb\x96\xc0\x27\x53\xf4\x5c\x19\xb5\x68\x3c\x6a\xf5\x89\x3f\xf1\xbe\x7e\x9a\x59\xe8\xed\xa7\xce\x3b\x0a\x0e\x7d\xea\xbc\x8d\xb6\xfc\xb4\x58\xd3\x7f\x24\x0b\xa6\xfb\x34\x99\x57\x09\x05\x7b\x7d\x9a\xbc\x4c\xa2\xeb\xd5\xe3\x76\x70\x7c\xdc\xbb\xcd\x6a\x15\x7c\x7b\x37\xdc\x8b\x27\xce\x69\x45\x92\xcb\xd5\xca\xfb\x37\xec\xc5\x35\x06\x68\x40\x78\xbc\x61\xde\x6e\x97\xc7\xb1\x3c\xe1\xa7\xe3\x2c\x49\x76\x0d\xe9\x1b\x2d\xe6\x19\xc9\xcd\x6e\xb2\xf8\x9c\x44\x4a\xb8\x8e\xf0\x0f\xb6\x45\x10\x42\x12\x42\x36\x5e\x97\xb6\xa4\xcb\xa7\xa5\x0c\xbe\x2a\xd1\xc3\xb9\x5f\x93\xc9\xde\x5e\x62\xcf\xcf\xc7\x32\x93\xd4\x9c\xc8\x53\xaa\xc9\x28\x39\x2f\x55\x01\x0a\xd2\xce\xeb\xda\xa4\xaa\x0e\x21\x8b\x78\xd7\xd2\x75\xc3\x54\x91\x9c\x9f\xc8\x53\xa6\xd6\x6b\xe7\x3f\xf8\x13\xbf\xae\xb2\x63\xb9\xc5\xf5\xce\x3f\xb2\x23\x1f\x1c\x15\x9a\x5d\xd4\xf7\x7a\x68\xb2\x01\x69\xf1\xe4\x78\xbf\x5a\x9e\xa1\xfb\xfa\x6c\x48\xe8\xb1\x3c\x31\xa7\x0c\xd0\xb5\x26\xc1\x97\xcb\x7b\xc9\x54\x76\x33\xe7\x72\x29\x0c\x9f\xc3\x30\xdf\x14\x6e\x91\x9d\x15\x15\xee\x11\xda\x2d\x6c\xfb\xc3\xe7\x67\x1c\xd6\xca\x05\xe4\x8a\xf9\x0c\x7e\xe4\x62\x09\x93\xe8\x13\xbf\x9e\x71\xe9\xd6\x02\xac\xe9\x39\x37\xd0\xda\xa2\xd0\x05\x4c\x68\x0c\x64\x01\x2b\x40\x17\x13\xa8\x73\x05\x9f\x88\x15\xdf\x9e\xc8\xd8\xb5\x85\x38\xcf\xde\x5b\xc0\x03\xd9\x50\x7b\xd4\x43\x4a\xe9\x36\x9f\x81\x6d\x4b\xa1\x83\x1f\x08\xe5\x34\x49\x22\xe2\x67\xfb\xcb\xb1\x53\xc2\xe0\xc4\xaf\xd9\xe0\xbd\x01\x71\x11\xb8\x37\x43\x9a\x6d\x6d\x38\x4d\x93\x8f\x1f\xc1\x1f\x8b\x90\xdb\x6b\xb5\x61\xbf\x37\x74\xb6\x62\x0e\x22\x98\xbf\x69\xba\x19\xbc\xce\x15\xb5\x5f\xdf\x27\xb6\xdf\x11\x71\xf8\xa8\x46\xf3\x1e\xc6\x24\xab\xa7\x79\xe2\x29\xab\xcd\x38\x73\xa6\x2f\xaa\x36\x47\xb3\x90\x52\x39\xbf\x6c\x9f\xe7\xe1\x90\x8c\xdd\xd4\x05\x16\x25\xf8\x91\x9b\x6c\x3c\xef\x55\x7a\xb2\x91\xb7\xd4\x62\x23\xef\x5c\xe9\x79\x61\x36\xb2\x65\x31\x0f\x9c\x48\x51\x55\x42\xce\xf6\xc0\x67\x5c\x88\x25\x30\x6c\xbb\xfd\x1f\x44\xa8\x78\x25\x63\x8f\x26\x96\xba\x61\xf7\x1b\xa6\x4c\xab\xd5\x70\xd8\xb2\x6d\xca\x5b\x1e\x58\xc9\xc8\xb0\x8b\x13\x73\x3a\xea\x8e\x33\x0c\xc1\x84\x9f\xca\x0c\x62\x09\xf3\xc6\x8d\xfa\x8d\x6c\xa8\xf4\xfe\x11\x34\x46\x3a\x82\x32\x64\x1c\x3c\xbb\x76\x7a\xea\xf1\x94\xe2\xd8\x27\x9c\xdb\xcb\x96\xd1\x9b\xbd\xd1\x06\xe5\x93\x86\xdb\xd8\xd5\x8a\xf7\xcf\xd4\xf4\xda\x85\x02\x8f\x7c\xb9\x62\x76\x0d\xe3\xdf\xa8\x93\xac\x74\x36\x02\x5b\x9a\x86\x0b\x9b\xa6\x1f\x9a\xe0\x69\x24\xbc\xfc\x2c\xc6\x36\xd5\x0c\x1a\x1b\xf9\xb0\x60\x1a\x6d\xe3\x90\x36\x0f\x7e\x6a\xd0\xc9\x26\xdf\xd5\xb1\x53\x1a\x87\x5a\xca\x1f\x80\xe3\xc6\x9f\x82\xce\xdc\x8d\x7d\x2f\xd7\xd4\x1d\x7a\x66\x8f\xaf\x47\x9c\xc9\x35\xcf\x1d\x2b\x6e\xe4\xae\x06\x92\x7f\x36\xc7\x68\x38\x47\x6e\xec\x6d\x24\xca\xf0\x51\xf1\xd6\x36\xbf\x36\x64\x5b\x6b\x17\xf5\x7e\x0d\x90\xeb\x78\x49\xbd\x93\x59\x7d\xd2\x70\x86\xba\xc2\xd4\xb0\x3f\x64\x46\x46\x26\xb6\x01\xe1\x7d\xbb\xc6\x9f\x1d\xea\x62\xee\xb1\x3f\x22\x37\x76\x68\x5c\x50\xbe\x8e\x75\xe7\xe2\x12\xbd\x47\x0d\x64\xaf\x85\xd7\xbf\xd0\xfc\xdc\x8d\x98\x26\x37\xd2\x05\xc0\xed\x79\xa3\x77\xf8\x7a\xc6\x59\xeb\x7d\x12\x62\xd2\x85\x2b\x4c\xec\xe2\x27\xe6\x93\xda\x01\xf6\xb1\x0c\xe2\x74\xd3\xb7\x4f\xb8\xb6\xa4\x69\x56\x87\x3b\x80\x27\x08\x88\x1a\x2b\xc2\x55\xbc\xd0\x93\x8b\x46\x96\xe1\x65\xe3\x79\xa9\x9b\xcf\x8b\xa2\xaa\xae\x94\x9e\xd6\x99\xa4\x15\x13\xd8\xd2\x13\xe0\x67\x1e\x6a\xb4\x82\x38\xa1\x1a\xfc\xa1\x64\xc9\x9d\x84\xfe\x2e\x59\xf2\xdd\x9d\x84\x7e\xb0\x8f\xe3\x84\xfe\x6c\x7f\x7b\x09\xfd\xcd\x99\xc8\xbf\x96\xad\x28\x7c\x77\x64\xa7\xcf\x0a\x17\xc3\x38\x77\xf4\xfe\x22\x70\xbb\x5d\xe0\x62\x27\x21\xf0\x30\xfa\x9d\xa7\x67\xfa\x21\xa8\xd2\x7a\xd3\x1e\xec\x57\x19\x7b\x0e\x6b\x86\x3d\x5e\xad\x12\x74\x56\xec\x9f\xa4\xc2\x68\x0d\x21\x64\x72\xc7\xb4\x09\xa7\x65\xec\x41\xba\xa3\xf4\xdf\x9c\x60\xde\x21\xc2\xd7\x6a\x6c\xad\xd0\xc7\x23\x10\x03\x30\xca\xce\xab\x6a\xc5\xcd\x5b\x31\xe7\x6a\x69\xc6\x75\xd2\xbb\xf2\xe5\xba\xf3\x9d\x49\xc9\x0b\xed\xdf\x8a\x1f\xdc\x7b\xf5\x98\x1a\x1d\xb6\x30\x04\x95\x8f\x20\x68\x47\xbc\x23\x78\x41\x81\xdf\x86\x80\xf5\x11\x05\x8b\xc3\x25\xb6\xde\xdc\xe2\x24\x34\x6e\xdb\x5b\x68\x7e\x29\xd4\xb2\xf2\x9b\x4a\x6d\xdc\x39\x18\x71\xdc\x86\x7e\x6c\x9c\x2c\xb5\x33\xaf\x69\x61\x0a\xa0\x53\x18\x63\x87\x96\xd8\x61\x8c\xfd\xec\x7e\x3f\xe0\x7d\x19\xc8\xe3\xda\x41\x94\xd9\xdb\x43\x26\x85\xad\xf2\xbb\x4c\x53\xb3\xbb\xbb\xee\x80\xa2\x61\x23\x0c\x67\x95\x66\x47\x85\xb9\xe8\xeb\x42\x4e\xd5\x3c\x76\x74\x76\x70\xcf\x87\xd2\xd9\x27\x54\x69\x96\x7c\xfc\x08\xe1\x78\xc1\xa6\x43\x16\xa5\x37\xd5\xb9\x93\xec\x6a\x4d\x45\x5d\x01\x98\x9d\xbf\x14\x72\x5a\x72\x5d\x61\x69\x51\x97\x3e\xf6\x4c\x16\x7c\xb1\x1e\x96\x4a\xc7\x41\xdb\x94\x06\x79\x6a\xad\x0b\x1d\xf9\x8b\x88\xad\x8b\x47\x12\x51\x69\x98\x3c\x29\xf4\xe9\x6a\x25\xed\xab\xc1\x35\x73\xe0\x31\xd1\x30\x6f\x61\xde\x7b\x02\xd2\x52\xee\x3e\xe5\xec\xbb\xf1\x38\x82\x71\xf4\xde\x3f\xdc\x70\x49\x84\x2b\x9c\xa9\x23\x57\xad\xde\x46\x25\xb3\xaf\x92\xc6\xa1\xd1\x65\x94\x3d\xd1\x51\xd0\x1e\x7b\xb2\xdb\x76\x57\x2b\x6e\xbb\x40\x56\xab\x60\x09\x8d\x02\x1e\x97\x04\x2e\x9b\x4b\x87\x64\xf0\xa0\x10\x3c\xf8\x68\x47\x44\x7c\xcf\x5c\x15\x34\x68\xe7\xb1\x41\x7b\x1c\xb7\xbe\x49\x2d\x1e\x1c\xc4\x46\xb3\x4b\xdd\x08\xba\x25\x00\xc1\x7e\xea\x2c\x5c\xbc\x91\x73\x1f\x77\x44\xb7\x36\xcf\x0b\x8d\xf1\x41\xa7\xc1\x33\xc2\x54\x8f\x9c\x69\x1a\x95\xec\x5c\x53\x1d\x4c\x97\xa9\x62\x2e\x9e\x80\x90\x3b\x0b\x3d\x5e\x68\x17\xeb\x62\xd1\x38\xf8\xa9\x60\xca\xd3\x55\x75\x38\x51\x9d\xa6\xf6\xa2\xc0\x18\x53\x27\xfc\x14\x82\x8a\xc2\x77\x0a\xa6\xf7\xb8\xb3\x7b\x1e\x8e\xcc\x03\x56\xd8\x8a\x7a\xcf\x60\x55\xb1\x67\x4e\xc1\x04\x7a\x14\xc0\x63\xca\xcd\x79\x4e\x87\x0f\xcc\x78\xb8\x17\x48\x29\xe8\xf2\x99\x8e\x95\x41\xed\x32\xf5\x0a\x8f\xf3\xad\x25\x47\x9a\x9d\xdc\xa7\xc3\x03\xba\xff\x03\x3d\xd8\x3f\xa5\x33\xcd\xfe\x4c\xd3\xe4\x71\xed\x76\xaa\xe5\xcb\x8c\x5e\x3a\x44\xda\x6a\xfe\xac\x3e\x72\x26\x3f\xfe\x39\x4d\xb3\x4b\x5d\xb3\x08\xe3\x6a\xd8\xf7\x6b\xfc\xcc\x5b\xfe\xd9\xb4\xda\x4f\xd3\xde\xa5\xa6\x0f\xa1\x3c\xeb\xcd\xf4\x6a\x75\xa9\xd3\xf4\xc7\x07\xf6\xff\x70\xf8\x13\xbb\xd4\x84\x5e\x69\xd6\x65\x4a\x70\xb0\x4f\xe8\x17\xcd\x6e\xce\xf8\xb9\xd2\x1c\xfc\x60\xe5\x5f\xd7\xfa\x48\x94\x7c\x54\xbf\x90\xd4\x2a\x20\xcd\x82\x6d\xca\x20\x49\xd3\x61\x17\xaa\x33\x7a\x85\xc7\xe0\x8f\x2b\x68\x27\x9e\xae\x69\xf4\xc2\x53\x39\xfd\x36\x08\x1f\x37\xde\x69\x02\xd9\x2c\xdb\x02\x27\x70\x12\xdb\xce\xc5\xb6\xf8\x12\xab\x75\x2a\x22\x2f\x5c\x0d\xb8\x91\xf1\xf4\x6f\x21\x77\xba\x4f\x5b\x60\x87\xd2\x6f\x85\xfe\x56\x5f\x68\x5f\x87\x1f\x15\x98\xfe\x75\x07\xbc\xde\xd3\x96\x1e\x60\xf1\xb7\x76\xc1\x79\xb3\xfb\x57\x7d\x58\xd3\x8f\xba\x11\x23\xf8\xa5\xee\xa4\x00\x9d\x52\x0e\x6e\x1c\x7b\xc3\x1e\x63\x47\x3a\x5c\xa3\x8d\x37\xef\x20\x2d\x7d\x1e\xb7\xcf\xec\xef\xdf\x87\xa3\xc8\x9b\xf6\xb5\x94\x83\x3a\xd5\x6e\x90\xab\x1d\xa2\x31\x6d\x86\xb2\xab\x65\x3f\xd1\xa6\xbd\x41\xda\x81\xb1\x20\x9a\x26\x12\xbb\xbd\x44\xe6\x8e\xf5\xa6\x65\xf7\x8f\xcf\x80\x06\x10\x16\xe8\x86\x7a\xd5\x17\xfd\x6d\x4a\x51\xf6\xf8\x9e\x69\xc2\xf3\x36\xea\xda\x93\x0c\x85\x6f\x82\x7d\xd1\xfd\xf6\x02\x08\xf1\xc9\xdb\x2f\x82\x5a\x4e\xfb\x95\xa7\x72\xba\xf5\x05\xa7\x5d\xb7\xf1\x0e\xce\xa8\x70\xe3\x13\xfe\x8a\x07\xc4\xd4\x67\x3d\x86\xe1\x87\x28\x42\x1d\x5f\x6b\x59\xfb\xa4\xe9\xfe\xfe\x7d\x60\x1b\xba\x81\xed\x78\x0b\xba\x15\x0e\x1c\x31\xce\x1e\xea\x34\x4d\x3e\x29\x08\x04\xd3\x47\x93\xa8\x34\xcd\x3e\xeb\xd5\x4a\xf4\x58\xd7\xcb\x63\xc1\xda\xf9\x4f\xe5\x34\x4d\x3f\x6b\x90\x4d\xd9\x43\x97\xe4\xd9\xb9\xae\xcf\xd3\x6c\xa1\x99\x26\x5b\x8f\x54\x3b\xd2\x03\x42\xa8\x60\x67\x3a\xd2\xb5\x11\xc1\xe3\xc1\x58\xc0\xdc\x60\x2a\xf7\xe2\x3b\xc5\xde\xea\x0c\xc3\xad\xf8\x32\x42\x9f\x9b\x4c\x10\xaa\x98\x20\x39\x8a\xc8\x68\xc6\xd9\xb5\x1e\x37\x1d\xfa\x6e\x9f\x0c\x30\xa6\x0e\x31\x6f\xb5\x0f\x93\x18\xad\x0b\x2f\xbc\xdb\x87\xc5\x03\xa6\x59\x48\xfe\x64\x76\xcd\x0e\xe8\x95\x76\xaf\xd4\x87\x42\x1e\x1c\xdf\x18\x80\x93\x30\xc6\xae\x74\x9a\x7e\xd4\x8e\x70\x6a\x2d\x24\xa4\xd3\xd6\x28\xed\xde\xf0\x44\xfc\xd9\x13\x32\x6d\xb0\xf1\x0e\xd6\x9b\xe9\x34\x75\xfb\xc5\x38\xe3\x30\x14\x96\x2a\x3a\xd7\xcc\xd3\x4a\xb0\xaa\x28\x27\x79\x97\x7a\xa0\xd3\xdd\xea\x52\x07\xac\xd5\x06\x7b\x99\xe9\x3b\x23\x96\xd5\x0a\x08\x5c\x97\x72\x66\x2e\x10\x8e\xc9\x55\x48\x53\x5f\xc1\x45\x70\x9a\x5c\x14\xf6\x90\x7f\x80\x29\xaf\xbf\x11\xec\x24\x6d\x26\xba\x3a\x02\xe4\xfa\x82\x2e\x4a\xc0\x57\x59\x6f\x40\xbb\x65\x44\xa3\x79\x6e\xdc\x3c\xc7\x21\xc0\x81\xb9\x65\x1c\xc8\x38\xcb\x0c\x9b\xc7\x73\xf3\x8b\xee\x47\x24\x88\x97\x97\xe3\x4c\xe4\x76\x22\x1a\x42\x72\xa7\x5e\xe1\xa5\xc8\x63\x34\xc6\x01\xb9\x83\xca\x4f\x14\x35\xa7\xeb\x35\x7d\xae\xd9\x0d\xf0\x2b\xf3\xde\x80\xc2\x91\xe5\x7e\x8d\x98\x43\x3a\xf1\x0f\x7b\x00\x74\x82\xec\xf0\x42\x00\x5f\x7c\xae\x24\x4a\xcf\xf0\x7e\x8d\x1c\x6f\x64\x57\xd8\x34\x44\x2b\x00\xee\x37\xb0\x3d\x80\xfb\xcd\x4b\xfc\xf9\x0c\x9c\x73\xff\x95\xa5\x86\xec\x2b\xce\x3f\xe5\xbd\x41\x64\xe0\xfa\x54\xff\xa7\xfc\x98\x88\x15\x33\xee\xf5\x9e\xeb\x13\x64\x9e\x9c\xe6\x4d\xde\x09\x0a\x16\x2d\x16\x40\x65\xfc\x1b\x4f\x6c\xa7\x5e\xde\x38\xa6\x21\xef\xf6\xb3\xd9\x39\x44\x05\xef\xa8\xe8\xed\x14\xbd\xaa\x46\x47\xf4\x72\xb1\x83\x4c\x94\x5a\xad\xbd\x71\x3e\xd7\xa8\xf9\x47\x37\x65\x4e\x19\xb7\x24\x78\x3d\x49\x8e\x75\x1f\x1b\x70\x8a\x13\x04\x63\xaf\x27\x5e\x59\x5e\x41\xd4\x24\xf0\xe4\x43\xd1\x3d\xfa\x63\xb7\x4a\x3f\xb5\x6f\x32\xef\x61\x14\x9e\x36\x3c\xad\x3c\xf1\x17\xad\x97\x3c\x83\x4b\x57\x60\xb6\x46\xb7\xb1\x47\x3a\x6c\x1e\xfe\xbb\xb1\xa3\x2f\xc4\xfe\xab\x26\xc5\xf1\xc6\x5e\x9b\x1e\xdb\xdd\xfc\xb1\x86\xa3\x7a\x72\x01\x27\x6d\x96\x28\xe9\xed\xcf\x7c\x1f\xfe\xd0\xc4\x42\xeb\x00\x8f\xa0\xfb\xc3\x43\xe7\x4e\x01\xb8\x01\xc6\xd6\x6b\x69\xfa\x44\x67\x9f\x34\x21\x10\x0a\xeb\x1f\x9b\xa6\x9c\x82\xb7\x30\x42\x97\x9c\x3c\x0d\x5a\x41\xb5\x26\x59\xc1\xb3\xf7\xe8\x4f\xd4\xe9\x3c\x2d\x1b\x8a\x50\x81\x47\x1c\x06\xc6\xc9\xd3\xc1\xcd\x40\x66\xfb\x05\xa8\xa5\xd9\x63\xcd\x0c\xe9\x17\xe6\x6b\x7d\x23\x38\x71\xdc\xe9\x6a\x1b\x88\x98\xc9\xa1\x87\xed\xf9\xe2\x38\x62\xb5\xd1\x2d\x3e\x84\x73\xda\x63\x1f\x11\x10\x31\x71\xe3\xc1\x02\x0d\xe8\x56\xed\xd8\xd5\xd3\x2f\x51\xe5\x3a\xc6\xeb\x6a\xd5\x35\xcc\xf8\xaa\xbd\x6e\xbd\xd2\xec\xb3\xf4\x2f\xd8\xe3\xb3\xd7\x79\x85\x5b\xad\xee\x3f\xe8\xbe\xdb\xe1\xe5\xee\xb0\x49\x92\x1d\x6b\xfa\x51\x54\xb0\x17\x02\x36\x8f\x97\x8b\x85\xd2\x86\x4f\xf3\x57\xdf\x48\xac\x31\x33\x2e\x2d\x90\xce\xcb\x05\x5c\xb3\xeb\x9d\x46\x6d\xdb\x69\x6a\xec\xdb\xfe\x0a\x70\xc9\xef\x50\x21\xd2\x34\x01\xf9\x4f\x08\x69\x4d\xf0\x4a\xfe\x48\x87\x18\x8b\x4f\x75\xa6\x60\x02\xbe\xd2\xa4\x60\xbf\x60\xc1\x4d\xc1\x9e\x21\x9b\xa0\x62\x7f\x6b\x20\xc4\xb2\x18\x9c\x46\x50\x5d\x71\x7b\x50\x5d\xb5\x11\xdc\xd2\x81\x92\xa6\x59\xc1\xde\xa1\x2a\x54\x01\x0f\x05\x2a\xa8\xf8\x21\xfb\x47\x67\x05\xe0\x67\x54\xa5\x69\x95\x71\xaa\xa8\x21\x34\x9e\x8d\x19\x67\xaa\x19\x57\x8a\xd8\x3d\xb9\x8e\xb3\x99\xa6\x11\xdb\xd5\x07\x3a\x3e\xe6\x99\xa2\x3e\x9f\x2a\x17\x64\x6b\xbd\xa6\xbf\x6b\x76\x03\x34\x3f\xd8\x75\xe5\x37\x6d\xaf\x64\x76\x8b\x3d\x0a\xe5\x49\xfb\x8e\xdc\xb6\xca\x02\xad\xb6\xd3\x35\x85\x07\x30\xfa\xba\xa5\x49\x67\x14\xf6\x8d\x4d\x3a\x2d\xb6\x5b\xe0\x7c\x15\xd5\xd8\x68\xb6\xcb\xd2\xab\xd5\xf4\x2d\xf0\xbe\x8a\x6a\xfc\x9b\xa6\xd7\xf4\x43\x73\xcd\xfc\xfe\xb5\x95\x41\x15\x71\xca\x6f\x51\xf7\xdd\x1a\x8f\xdb\xb6\x59\xb4\x60\x35\xba\x5a\x75\x5c\x0e\x78\x09\xc5\xc0\xe9\xd9\xc1\x7e\xaa\xd0\xf7\x5d\xcb\x0e\x5e\x36\xac\xdb\x57\xab\x5e\x91\xa6\x3d\xd1\x10\xe2\x89\x73\xd0\x95\xc3\x75\x0a\xca\x99\x3a\x87\x9c\xa6\x4c\x72\xac\x42\xbc\x34\xc1\xaf\x56\x2b\xe5\x78\x92\x28\x03\xf2\xcb\xbc\x18\x67\x05\x33\x9e\x37\x9a\x19\x54\x2d\xdf\x00\x2a\x98\xdf\x93\x71\x05\xbb\x04\x1c\x36\x69\x9a\x19\xfb\x96\x60\xd7\x40\x70\x21\xdf\xd2\xd4\x7c\x4b\xe3\x94\xd4\x33\xe7\xd3\x98\xe4\x05\x9e\xaf\x45\xcc\xbc\xf6\xbd\xda\x40\x60\x13\xeb\x04\x77\x84\x3b\x86\x4e\xd8\xef\xba\x5f\xcf\x6b\x5a\x86\x67\x98\x70\x74\xe9\xc6\x22\x81\xed\x24\x1e\x87\x1e\x46\x4f\x89\x47\xaf\x87\x01\x33\x2b\xf6\xab\x6b\x38\x9e\x82\xd8\x74\x3c\xdf\x6d\xe3\xee\x19\x55\x09\xb8\x8b\xfd\x5b\x8c\x55\x5e\xea\xac\xb0\x17\x20\xa7\xfb\x82\x39\x86\xd0\x6c\xc2\xaa\x88\x2e\x99\xd0\xc2\xd1\xab\x40\x8f\x2c\x77\x13\x67\xa0\x39\xf1\x1e\xf6\x38\x9d\x34\x07\x81\x29\x9a\xc9\x46\x23\x65\x20\x7a\x7d\x23\xce\x36\x54\xfa\x46\x14\x6d\x8d\x24\xe3\x74\xc9\x0c\xcd\x34\x2b\x48\x9a\x2e\x89\x93\x89\x96\x6c\x49\x39\x1b\xd0\x82\x55\x4c\x8f\x8a\x51\xc1\x3e\x9a\xac\x20\x84\xef\xee\x02\xeb\xb4\x60\x03\x6a\x58\x39\x32\x23\xe7\x74\x92\x14\xae\x64\x34\x78\xc0\xf7\x8a\x11\xa9\x6c\x7e\x45\x28\xdf\xdb\xf3\xf9\xc5\x1e\x1f\x91\xd2\xe6\x97\x84\x16\x3e\xdf\x56\x80\x13\xb3\x62\x8c\x95\xab\x15\xfc\x44\x7a\xa0\xfe\xf2\xee\x1b\x74\x0d\xac\xab\x48\x0b\xb3\x72\xa4\x19\x40\x5e\xd1\x8a\x9d\x9c\x8e\x74\x9a\xea\x1e\x63\x65\x1d\xb7\x3e\xe3\x0d\x05\xd3\xd5\x8a\xdb\x72\x32\x22\xce\x3e\x42\x13\xaa\x6d\xe3\x1a\xc5\xcf\xda\xb6\xb2\x4c\xd3\xe5\x46\x2b\xcb\xce\x56\x34\xb6\xb2\x24\x74\x69\x5b\x59\x62\x2b\x4b\x36\x18\x2d\x1f\x04\x93\x8a\xe5\xee\x2e\xf9\x6c\xb2\xea\x64\x19\x3b\xd7\x9c\xf8\xba\xba\x76\xda\xb9\xb4\x78\xf9\x6c\x32\x0d\x55\x6b\xa7\x9d\xd2\xd3\xf2\x27\x13\x2a\x4f\xd7\x6b\x38\x15\x7f\xee\x96\x7f\x39\x9d\x22\x51\x8d\x43\xaa\x75\x81\xf5\xd4\xa9\x13\xce\x0e\x70\xea\x0f\xbf\xb3\x19\xc3\xef\x8c\xeb\x1e\x4f\x53\xbb\xaa\xcd\x9a\xfe\xa6\x7d\x9c\xf8\xda\xe3\x57\x53\x5d\xaa\xa6\x59\x5f\xd7\xd4\xd0\xcf\x98\xac\x03\x87\xdb\xb5\xbd\xa1\xab\xe2\x5c\xbb\x7a\xd1\xe6\x86\x2a\x4b\x28\x36\x4d\xd5\xd9\x10\xbb\x1e\x94\xa7\x20\x3c\x65\x9c\x61\x50\xbf\xc7\xa1\x16\xb4\x92\x1b\x97\x5c\x4b\x67\xc3\x78\x0f\x46\xba\x76\x83\xaa\x77\x77\x2d\x15\xd2\xfb\x4d\xbb\x50\xef\x54\x9e\x80\x20\xa6\x67\x3b\x73\x62\x1f\x4e\xa9\xc1\x5f\x52\xb7\x14\xf4\x49\x2c\x60\x77\x90\xdf\xbe\x9d\x5f\x3f\x1c\xfe\xd4\xcd\xaf\xa7\xbf\x6a\x76\x83\x54\xd4\xb7\xdd\xbe\x30\x1c\x6b\xf3\xf6\x85\x79\x5f\xe1\x8c\xd6\x71\x28\x7c\x68\x0c\xbc\x84\x35\xaf\x5f\x9b\xe1\x39\x6e\xbd\x90\xd1\x3f\xdd\xad\x89\x3b\xae\x8f\x71\xbf\x52\x35\xae\x35\x5a\x35\xc3\xa9\x86\x13\xcc\x8c\x6b\x7c\xe4\xf7\xc1\xf7\x72\x50\xb6\x31\xb9\x69\x1e\x6c\xc1\xdb\xb3\xf2\x33\xe4\x4f\xbd\x5a\xfd\x69\x97\xff\x1f\x32\x93\x4e\x55\x3c\xba\x13\x20\x4b\x5c\xc8\x4c\xb2\x3f\x35\x49\xd3\x5f\xb0\x16\xbb\xc1\x70\x3f\xb2\xdf\xac\x49\xb9\x9c\xc6\x99\x4f\xe5\x74\x9d\x83\xda\xed\xe4\x42\x69\xf0\x67\x9c\x49\x96\xc9\x26\x54\x69\xda\xca\x68\x1e\xbe\xde\xb9\xf2\x8c\xbb\x50\xba\xe0\x85\x90\xf4\xeb\x46\x29\x26\x5f\xa2\xda\x8a\xec\xc7\x8f\x14\x06\x09\x3e\x2d\xfb\x21\x8d\xb9\xe1\x85\xe8\x69\x4d\x8d\x4a\xd3\xd7\x3a\x33\x8a\x06\x84\xd8\x41\xa1\xed\x1b\xf2\xaf\xda\x75\x94\x72\xf0\x70\x1a\xae\xc8\x8e\xa6\x0f\xc6\x2a\xec\x4f\xed\x2f\xca\x04\x25\x61\x4a\x35\xa8\xa9\x5f\xbf\xf1\x9e\x41\x45\x8b\x76\x69\x8e\x7c\xad\xf7\x33\xd6\x79\x8b\xa4\x41\x6d\x3b\xc5\x7a\x82\x90\x1b\x9e\xdf\x08\xf6\x5c\x22\xc3\xf1\xa2\xef\xe7\x7f\x10\x12\x17\x6c\x30\x2a\x1e\x04\x51\x61\xe1\x16\xb8\x00\x25\x73\x75\x52\x9c\x12\x72\x23\xec\xf4\xac\x19\xbf\xbd\xc1\xda\x36\x0e\xde\xe0\xbb\x8c\x78\x45\xfb\x8e\xd4\x0a\x60\x62\x6f\x33\x82\x44\xaa\x28\x62\x43\x15\x25\x4d\xb3\x3f\x35\x13\x76\xa5\x18\xbf\x4c\xc8\xa6\x4d\xaf\x51\x8c\x2b\xe6\x96\xd5\x46\x5c\x13\x94\x09\xd8\xc5\x35\x68\x5a\x83\x46\x96\xb5\x1d\x86\xb9\xc1\xa2\x36\x2c\x20\x7b\x75\xd7\x2a\x83\x4b\x4e\xa4\xbc\x52\x2f\xf3\x5c\x9c\x67\x77\xbc\xe1\xe1\x76\xc3\x64\x6f\x89\x81\x4d\x35\x04\xde\xeb\xd1\x71\x5f\x48\xbb\x3d\xa3\x89\x66\xb9\x9c\x09\x09\xba\xdd\x59\xf2\x06\x1d\x89\x73\x1d\x15\xed\x1c\x8b\xf9\xa2\xe4\x71\xce\xd3\x40\x8d\xc5\xb9\xc8\x6c\x6a\xbc\x09\xc0\xc7\x39\x91\x68\x31\xca\x8e\x37\x2f\x42\xaf\xd8\x52\xd3\x2f\x6c\xa2\xe9\x47\x56\x6a\xda\x01\x6d\xf5\x08\xd8\x25\xd9\xcd\x06\x68\xf9\x85\xa4\x9d\xd0\xe5\x1f\x34\xdd\x00\x30\x3f\xd4\x74\x03\xc6\x5c\x29\xda\x0d\x66\xfe\x42\xaf\x09\x75\x26\x14\xe8\xa6\x53\xb1\x93\x53\x5a\x28\xb6\x17\x6d\xaa\x95\xca\x38\xb9\x19\xfc\x54\x28\x70\xa2\xe5\xfd\xde\x0b\x75\x52\xa8\x53\x8a\x3f\x8e\xe6\x56\x7b\x7b\x11\xfb\x62\xe2\x76\x63\xa1\x4e\x76\x77\x6d\xa5\xf0\x32\xad\x9b\x41\xf6\x54\xa9\xd8\xcd\x9a\x2e\x15\xbb\x71\xf9\x79\xa9\xec\x55\xad\x7e\xee\x0d\xd7\xf4\x5c\xb1\x52\x45\xb2\xff\xc6\x6e\x8f\xac\xc7\xbe\x9b\xa3\xb0\x65\x8c\x50\x55\xcd\xcd\x96\x52\x39\xf3\xc5\x58\x33\x41\x9c\x67\x96\xb2\xeb\xb7\x14\x4f\x8e\x9c\x99\xd0\x3b\x39\x2f\xaa\x4f\x1c\x23\xe6\x39\x6f\x91\xf1\xc5\x62\xeb\x8b\x47\x1b\xaf\x8d\xfc\xe6\xe4\x62\xc0\x2b\x17\x5d\x0d\x9c\x61\x9f\xa8\x10\x35\x4d\xa7\x69\x96\xf1\x18\x48\xf2\xaf\xa0\xb3\xc8\xfd\x66\xa0\x98\x20\x54\x44\x91\x5e\x54\xa4\x8b\xe1\x6f\x6c\xe8\xfa\xb3\x7e\x07\x50\x4b\xd2\x34\x38\x37\x88\x78\x91\x73\x68\xa0\x52\xd9\x42\x11\x5a\xa9\x6c\xa9\xa2\xf9\x70\x74\x5b\xe1\x4c\x45\x96\x3a\x4b\xe5\xe7\x87\x25\x86\x55\x5b\xd1\xfa\xde\x8f\x84\x8c\x26\xb6\x01\x6a\x08\x9d\xd8\x06\x1b\x3a\xaf\x97\xaa\x69\x99\xd6\x1a\x70\xee\x35\x74\xe2\x0e\xd1\x9a\xe0\xad\x49\x44\x90\x07\xc4\xf8\xaa\xf5\x72\x82\x35\xb2\x1d\x46\xcd\x36\x6a\x66\xc0\x74\xea\x65\x50\xce\x37\x74\xc5\x07\x3f\x12\x7a\x27\xb3\x04\x71\xf2\xce\x39\x7b\xa6\xa2\x19\x73\x5e\xd2\x9b\x75\xc3\xe5\xf7\xb5\x8a\xed\xcb\xeb\x2e\x79\x46\xaf\x25\xb9\xcd\xd6\xb1\xe7\x7a\xd6\x1c\xfb\xd5\xaa\x54\x76\x49\xd5\xc8\xa6\x2d\x9c\x2e\x42\x09\xd8\x09\xd6\x36\xcd\xb7\xe3\xb7\xb7\x11\x64\xe3\xde\x7d\x42\x46\x72\x9c\x19\xe6\x86\xe6\x5c\x11\xba\x7d\xed\x6c\x80\xca\x0c\x6d\x4c\x9b\x00\x28\xc9\x5d\x7e\x98\x04\x16\xa2\x2b\xc5\xa2\x08\x43\x7a\x29\xdf\x0b\x73\x11\x6c\xf7\xbf\x34\x4a\xdb\xb1\x89\xe8\xc7\x46\x31\x5a\x66\x85\xc2\x97\xcd\x77\x2f\xd4\xb2\x9c\x7e\x10\xbc\x9c\xd2\xb7\xcd\x6f\xf2\x7f\x96\xbc\x32\xaf\x0a\x21\x0d\xfd\xdc\x28\x92\xea\x8a\xbe\x68\xe4\xd8\x99\x83\x68\xf6\x30\x82\x89\x2f\x7d\xde\xa8\xf5\x6c\x3e\xe7\x53\x51\x18\x1e\x3a\xf2\xb4\x51\xfe\xae\xe2\xfa\x51\xa9\x26\x9f\x84\x9c\x85\x2a\xc7\x8d\x2a\xad\x58\x4b\xff\x34\x0a\x9f\xab\xab\x50\xf2\xb8\xf9\xe5\x69\x59\x7f\xf4\x13\xec\xd4\xef\x15\x0b\xcb\xff\xad\x1a\xbf\x55\xb1\xe7\xeb\x35\x7d\xe2\xc8\xf3\x47\xee\xf7\x15\x10\x02\x6f\x14\xfb\xac\x32\x42\xff\x50\x6c\xc8\xef\xfe\xf4\x46\x8d\x3f\xab\x0e\x8f\xd9\xb6\xce\xde\x1b\x15\x49\x61\xfe\x56\x59\x10\xea\xbe\x50\x99\xb7\x9e\x7f\xae\x3c\x5d\x70\xff\x3e\x9a\xca\x3f\xad\x73\x7e\xc4\x9c\xe3\x3a\xe7\x07\xcc\xf9\xa7\xce\xb9\x87\x39\x8f\xeb\x9c\xef\x83\x8c\xb0\xad\xb2\xb6\xdf\xb0\x7d\x7d\xa6\x36\x43\x05\xef\xdc\xbf\xef\xdb\x79\xae\xb0\xe5\xfb\x3f\xfa\x9c\xa7\x3e\xe7\x07\x9f\x73\xec\x73\xee\xf9\x9c\x7f\x7c\xce\xf7\x3e\xe7\xb1\xfa\x46\x78\xde\xa9\xd6\xfd\x1b\x00\xa4\x57\x98\x1d\x49\x14\x54\xcb\x86\xca\xd7\xfc\xa2\x36\x6c\xf1\x0f\xdb\x87\x01\x63\xec\x89\x1a\x67\x4f\x14\x3b\xe1\xa7\x76\x6c\xbf\xa8\xec\xb9\xa2\x1f\x14\x21\xf9\x13\xe5\xad\xb2\xe9\x27\x55\xb7\xf1\xbb\xca\x62\x3b\xde\x47\xca\x7b\xc7\x7f\xa4\x46\x7e\x72\x7c\xb4\xdf\x59\x7f\x50\xb1\xe0\xe5\x83\x7b\xaf\xf7\x4a\x05\xe5\xc9\x27\x8a\xdc\xbc\x52\x75\x30\x00\x94\x17\xe1\x76\xf8\x44\x8d\xde\xa9\xec\xfe\x7d\x1a\xc7\xfe\x45\x7e\x50\x6d\x24\xc1\xbd\xf7\x07\xc9\xcc\x09\x3f\x1d\x4d\xd5\x8d\x64\x32\xeb\x0d\x82\x03\x0b\xa7\xa5\x09\xd1\x70\xfd\x24\x76\xda\xef\x92\xdc\xe0\x10\x04\x68\xd2\xd4\xa2\xe2\x49\xd0\xe6\xdb\x1d\x12\xc0\xe3\x73\x45\x7f\x57\x84\xca\x20\xc1\x82\xd9\x1f\x0b\xaf\x7e\x56\x75\xe0\x61\x08\x16\xe2\x5d\xb7\xab\x45\x45\x1a\xb6\x64\x06\xbd\x9c\x1b\x42\x51\xa7\x26\xaa\x57\x5b\xc2\x9e\xc8\xd3\x34\xcd\xec\x0f\xe3\x27\x32\x8a\x96\x01\x9b\xe1\x6f\x11\x11\x05\xfd\xa1\xaf\x1d\xe2\xef\xb8\xdf\x5f\x55\x4b\x14\xf9\xa7\xc5\xfe\xaf\x8a\xdd\x51\xcc\xd5\xad\x61\xe7\xa2\x83\xe8\xfa\xe8\xa8\x2e\x7b\x28\xff\xa6\xa8\xec\x7f\x74\x5f\xc4\xf0\x1a\xed\x8c\x38\xde\xaf\x11\xf5\xa1\xf6\x5b\x38\x6f\x46\x95\x6d\x88\xd0\x56\xfb\xdb\x9b\x91\xa2\xb6\xc4\x8b\x55\x6a\x3d\x98\x8d\x08\x5e\x8e\x9e\x79\xfa\x79\x21\x90\xff\xf1\x56\xcc\xf9\x03\x43\x3a\xf3\x6b\xde\x35\x44\xa6\xe9\x7c\x13\xf8\xec\x9d\xef\x92\x10\xb0\xa9\x97\x7d\xb5\x19\xe2\xee\x41\x5b\xda\x5a\x47\x11\x8d\xea\x9e\x6b\xd7\xf3\xd7\x8a\x71\x8a\x83\x16\x74\x12\x3c\xf9\x16\x73\x6a\x48\x58\x50\xde\x92\x06\x71\x0b\x31\x25\x78\xe3\x93\x3f\x01\x13\xef\x69\x01\xd1\x25\x9a\xb5\xdb\xb2\x60\x25\xc2\x94\xfe\x55\x21\x8b\xaf\x37\xec\x01\x17\x70\x00\xfe\xa6\xc5\x79\xd6\x61\x21\x90\xa6\xc3\xc1\x0f\x07\x3f\xdc\x1d\xfe\xb8\x7f\x80\x6e\x66\xb2\x5f\x6d\x3f\x0c\xab\xf3\x09\x35\xec\xc6\x4d\x80\x9c\x53\x75\x56\x71\x7d\xc9\xa7\x8f\x84\x01\xaf\x1c\x36\x17\xe7\xb5\xdb\xa3\xee\xa8\x38\x50\xdc\xeb\x36\xf5\x78\x30\xb0\xd4\xe3\x1d\x7b\x3d\x7e\xad\x1a\x98\x61\x37\xcd\xee\xe7\x03\x1a\x77\x39\x37\x54\xfb\xfb\x24\xba\x80\x5d\x23\xbb\xf8\x8e\x45\x3a\xe8\xf6\xb3\xc0\x3b\xe2\xcd\xa9\x0a\x2b\x51\x88\x06\xb3\xaa\x10\xf5\xfe\x7a\x73\x56\x54\x1c\x3d\xc2\x72\xfc\xa8\x53\x6e\x84\xa1\x2c\x8b\xe6\x33\x42\xe5\x38\x73\xed\x8a\x5d\xf9\xf0\xc2\x53\x88\xfc\x57\x57\x8c\x9f\x1b\x2d\xb6\x2b\x76\xe4\x47\xf3\xaf\xda\xd2\x8d\x7e\x48\x37\x3a\xe4\xa6\x11\x3e\xc5\x3d\xc3\x40\xe2\x2e\xff\xff\xa9\x1e\x4e\x44\x7c\xb8\xb6\x27\x09\xa7\xe8\x67\xaf\xe2\x18\xa7\x24\x37\xd4\x14\xb3\x7c\x40\x17\xc5\x75\xa9\x8a\xa9\x8f\xf1\x81\x14\x24\x3e\x85\x49\x0b\xa9\xee\xaf\x96\xee\xab\x9e\x85\x1d\xa1\x67\xdc\x40\x62\xa3\x88\x99\x3c\x8b\x9f\xdd\xb4\xa4\xcd\x3a\xb1\xfa\x7d\x6b\x3f\xef\x0a\x75\x18\x11\xfa\xa8\xe3\xf8\x7a\xc9\x97\xdc\x49\xa1\x82\x07\x97\x34\xcd\x5a\x35\x98\x9d\xe2\x6d\x97\x1b\xce\xd1\xc5\x66\x5b\x8d\x67\xdf\xe8\x38\xa8\x56\x7d\x4b\xe3\xed\x66\x6c\x1d\xd9\x06\x20\x6f\x37\x54\x89\x4c\x11\xaf\xb8\xe5\xbc\x6f\xb4\x2b\x68\x12\x5c\xd5\xa8\xd5\x4a\x03\x44\xa5\xc8\x34\x35\xe1\x4d\x1d\xa1\x38\x88\x16\x54\x3c\x6c\x99\x7b\x83\x96\x22\xc3\xdb\x4b\xc8\x51\xdb\xc6\x67\xd1\x1a\x9f\x08\x2e\x0f\x50\x26\x99\x1f\xa8\xf1\x57\x51\x94\x9f\x0b\xd4\x78\xeb\x6f\x2e\xa5\xb1\xec\x77\x2c\x3c\x26\x3b\xaa\xda\x79\xd6\x95\xef\xe7\x5b\xf7\x3b\x71\x94\xe0\xad\xf3\xae\xc9\x7e\x90\x69\x0a\x31\x16\xe3\x7e\x81\xb8\x77\x63\x0c\x5b\xae\x3f\xa6\x22\x48\xd9\x05\x2d\x02\xb1\x8e\x5e\xcd\x6e\xbc\x67\x2d\x54\x63\xdb\x94\x75\x65\xb6\xdb\x6e\x05\x93\x31\x47\x99\x4d\x61\xdb\x22\x39\x6a\xfe\xee\x1c\xe4\xbc\x8e\xa6\xca\xf6\xee\x0e\xee\xff\x90\x46\x39\xab\x7b\x77\x47\xce\xc9\x57\xe4\xff\x46\x74\x09\xd6\x6e\xfd\x18\x59\xad\x02\xa9\x27\x1c\x81\x10\xb3\x09\x6c\x2d\xfc\xd0\x7e\x2e\x80\xc5\xec\x19\x49\x51\x80\x63\x11\x6b\x1c\xb8\x73\x28\xb8\x53\xcb\x0c\x73\xa3\x41\xa2\x4d\xdb\xc9\xd1\x2b\x36\xa0\x13\x66\x9a\xbb\x36\x13\x9e\xc6\x9a\x38\x1a\x6b\xc9\x26\x2d\xe2\x61\xb4\x7c\xa0\xc6\xbe\xdf\xa8\xff\x32\xa1\x82\x95\x84\x56\x0f\x96\xe0\x57\x6d\x69\x17\xc0\x7c\x92\x2d\xe9\xa4\xdf\xdc\x43\x09\x2d\x19\x8c\xdf\x80\x4e\x68\x89\x2a\xc2\xfe\x83\x7d\xbf\x95\x22\xc1\x12\xd0\xcd\x0e\xf6\xe9\xa4\x5f\xef\xa7\x0d\xcd\x4c\xd3\xaf\xcf\x83\xb1\xeb\x8c\xab\x16\x17\xb1\x49\x9e\xc5\xcf\x71\x73\x13\xda\xac\x49\x08\xa1\x13\x86\x5f\x5c\xa3\xb8\x15\x77\x7a\x8f\xac\xe6\xe4\x6f\x23\x6c\xb1\x89\xb0\x45\x84\x30\x8b\xa1\x25\x9b\xd0\x08\x7f\x16\x77\x16\x79\x0b\x40\xde\x02\x76\x8f\xff\x13\x58\x6a\x1e\x86\xe3\x56\x6f\x1a\x58\x6b\x65\x06\xec\x35\xf3\xbb\xb0\xd8\x7e\xb3\x81\xcd\xa8\xd3\x26\xde\x17\x65\x08\x69\x6d\x31\x34\x36\x5d\x7b\x0c\xaa\x5c\xb7\x7a\x5c\x37\x18\xa1\x17\xe6\xa2\xa9\x67\x3c\x13\xb4\x31\xcd\x59\x41\x3b\x47\x92\x2d\xe9\xd1\x04\x74\x11\x5a\x03\xc8\x2a\xda\xda\x6d\x59\x74\x71\x3a\x13\xfe\xea\x2d\xbd\x99\x60\x47\xe3\xb5\xff\xaa\xb8\xe7\x2d\x44\xb8\x4d\xb6\xeb\x7d\xda\x40\x58\x17\x86\xc8\x96\x5e\x6d\xc5\x26\xa1\x73\x91\x35\xd6\x0c\xb8\x61\xdb\xbe\x88\x60\x4a\xd5\xef\x34\x87\x3a\x7a\xf7\x5b\xa6\x54\xf3\xf2\x39\xff\xca\x2d\xcf\x4f\xfa\xc8\xfb\x18\x38\xdc\xf4\xf9\x48\xb0\xb8\x98\x65\xa0\x34\xd0\xc1\xf4\x6d\xbb\xe1\x18\xde\x1f\x12\xf0\x54\x87\xfb\xb2\x26\x6b\x6f\xca\x8b\x30\xa2\xdf\xa4\x23\xc1\x1e\xf7\xdf\x80\xf5\x29\xd2\xfd\x8f\xea\xd0\x75\x74\x26\x58\x26\xf9\xd5\x8e\xee\x83\xa1\x91\xe4\xd2\x90\xbe\xe6\xe7\x55\x7d\x1b\xb8\x14\xb5\x18\x33\x9c\xe7\xf6\x64\xb7\xf4\x01\xdb\xa0\xa2\xa2\x43\x41\x8e\x4d\x8e\x5c\x02\x8b\xdb\xf6\x0c\x94\xe1\x22\xd8\x22\x7b\x08\x2a\x8a\xb5\x27\x31\x86\x3e\x0f\x6b\xc2\x71\x54\xaf\x05\xbb\x11\xd5\x91\x5a\x42\x64\xb9\x4d\x4f\xc7\x10\xd6\x88\xf7\x9b\xfc\xdc\x43\x71\xc6\x35\x49\x53\x08\xd4\x6d\x3f\xb5\xa6\x5c\xfe\x63\xbf\x7d\xcc\x0d\xde\x12\x9a\x22\x5c\x34\x6a\xee\x68\xc4\x0d\xd9\xaf\x55\x66\x49\xbc\x23\x11\x8e\x8b\x51\xa6\xd8\x44\x64\x9a\xfd\x59\x81\xf3\x3a\x45\xa8\x22\xc4\x9f\xa5\xcc\xd0\xc0\xa5\x8c\x8c\x70\x2d\x85\x17\x4d\x09\x42\x81\x06\x56\x84\xca\x49\xc6\xa9\x26\x01\xcc\x37\x7c\x51\x16\x13\xfe\x7f\x14\x54\x53\xcc\xd8\x90\xaa\xff\x5d\x20\x1f\x2a\x3d\x71\x9e\xbd\x5b\xaa\x39\xb7\xc1\x2b\x11\x5e\xdd\x84\x57\x5b\x78\xa5\x85\x57\x52\xfb\x11\x54\x05\x2b\x66\x6c\xbf\x86\xd1\xd4\xd6\xfa\x30\x73\x02\x8c\xc6\xc1\xa8\x1d\x8c\xb2\xa1\x57\xff\x30\x22\x48\x90\x3c\xbb\x8d\x12\x6b\xc8\xc2\x90\xe9\x1e\xd6\x51\xb8\x11\x75\xe6\x67\x48\xfc\xe5\xbd\x48\xc1\x68\xb5\x8a\x9f\xfa\xa2\x7a\xb5\xd4\x1c\x57\xae\x7f\x79\xb5\xca\x7a\xaf\x35\xc8\x9a\x57\x2b\x9b\x52\x54\x34\x22\xd7\x8b\xa6\x00\xa4\x37\xa4\x8a\x95\x8a\x0a\xef\x08\x03\x85\x4a\xa3\x2d\x06\x72\x3b\x22\x60\x4d\x8c\x05\x53\x22\x13\x24\xcf\x14\x3b\x53\x99\x21\xe3\x73\x95\x47\x22\x19\x61\x17\x6e\xbd\x84\x1b\xed\x37\xa4\x70\x9a\x8c\x41\x20\xaa\x48\x5e\x2a\x42\xd1\x37\x9e\xc9\x24\x15\x1d\x9b\x82\x3f\x62\x00\xaf\x51\x23\x2e\x67\xec\x7e\x5d\x3c\x1c\xb7\x6d\x68\x76\x2d\x68\x34\x16\xcc\x50\xd3\x35\xa5\x18\xa7\xff\xad\x10\x53\xfd\x5b\x21\x66\x44\xf8\x7f\x89\x76\x52\xee\x7b\x44\x3b\xdd\x15\xa2\x81\x9b\x04\x9d\xd5\xb2\x7c\xc3\x27\x5c\x5c\x72\x60\xaf\xa6\xe9\x2d\x85\x30\x31\xb6\xb4\xf8\xee\xc5\xf1\xc3\xc3\xa7\x1f\x6f\x6d\xf8\x6b\x75\xb0\x7d\x07\x39\x32\xd3\xae\x45\xbf\x63\x53\xca\x8c\xaf\x45\x5b\xfc\xb8\x8f\xa2\xad\x7d\x1f\x0b\xe9\x14\x98\x69\x54\xe0\x11\x17\x72\xdb\x07\x0c\x55\x70\x3c\xb1\x99\x70\xe1\x3b\x9b\xf3\xfa\xf6\x19\xad\x7c\x5d\x3f\xb3\x45\xe7\xcc\xae\xab\xc1\xbc\x15\x24\x50\xaf\x99\xd8\x38\xaa\x32\xb8\xc2\x08\x2a\xa9\x02\x7b\xc1\x6e\xb0\x3b\x07\x25\xb3\xd0\xcf\xb8\x79\xc2\xb5\xb8\x74\x15\x0f\xb5\x9a\x23\x1b\x3d\x4d\x33\x77\xf4\x0a\x7b\x7c\xfe\x9b\x86\x77\xb6\x37\xbb\x5a\x75\xd5\x57\xa0\x9d\x25\x8b\x45\x75\xa1\x0c\xea\x64\x78\x76\x41\x17\x21\xa2\x3a\x27\x0a\x1c\xc2\x69\xda\xfd\xc2\x66\xcd\xd5\x2a\x33\x4c\xdd\xb2\x08\xba\x5e\x4a\xd3\xae\xdc\xac\x1b\x0b\xb7\x82\x79\x4b\x61\x46\xa8\xe9\x31\x0f\xdb\xd6\x29\xae\xfc\x98\xd0\x9a\xfc\xff\xaf\xe6\xc8\xb6\x5e\x04\x08\x9f\x88\xa9\x83\xbe\x79\x75\xba\x8b\xb4\xd0\x4b\xc1\x1e\x6a\x5d\x5c\xf7\x45\x05\xbf\xf5\xa9\xf6\x56\x44\x3a\x0c\x35\xff\x5d\xda\xb5\x44\xba\x87\xac\xd3\xc9\x9a\xf3\x48\xd5\xff\x08\xca\x69\xce\x2f\x48\xe3\x71\x08\xa6\xbc\xa6\x98\x6d\x30\xb7\xef\x13\xef\xa5\x5b\xd6\x0b\x7e\xdd\x29\x95\xbf\xfb\x03\xa1\xce\x93\x83\x62\x49\xb2\xdb\x66\xbd\x44\x67\xbb\xed\x41\xdc\x81\x78\x0d\x40\x11\xfc\xf4\x3f\xa2\x87\xa0\x37\xfc\x1c\xad\x21\x6d\x66\x9e\x65\xa6\x11\x6c\x18\x65\x3d\x1a\xe9\x5f\xc3\x18\x9b\x09\x60\xe8\x60\x0e\xbb\x59\x87\x2b\x1e\x1f\x4f\x21\xd4\xe8\x8e\x39\x51\xa7\xb9\xfd\xc7\xf8\x9a\xc4\x5f\x51\xd4\x80\xdf\x3a\xef\x9a\x28\xc6\x61\x2b\x06\xfa\x8f\x77\x9d\x37\xbd\x80\xc8\x56\x85\xfb\x03\x8b\x8e\x0e\x7f\x3b\x9f\x6b\xd9\x46\x6d\xd7\xd8\x0b\x9e\xa2\x5a\x23\x30\x24\x34\x39\xc1\x21\x75\x0a\xd3\xa7\x16\x5d\x1b\x6a\xce\xde\x09\x8e\x53\x07\x26\x63\x37\x0f\x76\xae\x84\xb9\xd8\xf9\xc4\xaf\xab\x9d\x9b\x64\xb7\xa9\x78\xdc\xff\x5b\x09\x99\x25\x74\x27\x21\xbb\xc9\x3a\xc9\x0d\x78\xdd\x0b\x80\xbe\x10\xad\x60\xce\x7e\x2e\x72\x4f\xa8\xc4\xf7\x34\x7f\x81\xd2\x63\xe7\xab\xcc\x5f\xb9\x9a\x8c\x0e\x49\xf2\xdb\xee\x7a\x54\x6e\x72\x13\x22\xb6\xd8\x8f\xeb\x38\x9c\xb4\xf7\xeb\xde\xe3\x0d\xed\xc7\xf8\x3a\xa7\x47\xe0\x2c\x1d\x94\xe7\x75\xbf\x72\x8e\x8d\x3a\x3d\xdc\xe8\xfa\x32\xc8\x81\xda\x39\x2a\x16\xbe\x19\x33\x22\x61\xee\x7e\xe2\xd7\xe8\x29\x13\x9d\x26\x50\x43\x72\xff\x08\xde\x14\xa8\xb1\xe4\x92\x69\x7f\x2c\x9a\x01\x6a\xc3\x0a\xf4\xd1\xc4\x31\xcc\xa0\x05\x36\xb0\x74\x11\xbe\xee\x14\x95\xeb\x97\x45\xe6\xce\xe1\x60\x03\x8d\xef\x68\x8a\xd6\xc9\x9e\xb0\xab\x8d\x00\xc6\xe0\xbb\x1a\x6a\x91\x07\x72\x9c\x99\x08\xa1\x33\x0b\x47\xae\xf3\x8e\x4c\x19\x09\x65\x62\xff\x7a\x81\xeb\x11\x7d\x03\x38\x0a\x71\x03\x0d\x12\x6a\x52\x13\x0f\x4d\xf9\xbf\x59\xad\x82\xd5\x0d\x98\x4c\xff\x31\xb1\x97\x83\xfe\x5c\x4d\x39\x5c\x0f\xb0\x3a\xb3\xb8\x81\x85\xaf\x32\x34\x8b\x8d\xf2\x23\x11\x47\xe7\x67\x70\xe7\x31\x7d\x8e\xf6\x40\xe0\xe9\x1e\x76\xbb\xeb\x05\x1f\x67\x99\xc6\x36\x91\x82\x81\x96\xcf\x59\xd8\x78\xa9\xae\xbf\xa4\x2d\x04\x9a\xbd\x9a\x64\xf8\x2e\x05\x9f\x09\xfe\x4d\x8a\xc3\x14\x43\xbe\xb5\x9d\x48\x5a\x72\x0b\x62\xee\x7a\xc4\xac\x56\x66\x9b\xc7\x6f\xf4\x01\x15\xe7\x34\x2b\x83\xfe\xa7\xed\x35\xdc\xc7\xa1\x76\x33\x0b\x90\xfe\xf7\xb7\x20\x3d\x72\xbe\x76\x72\xba\x6d\x04\x16\x35\x8f\xbc\xa3\x47\x3f\x34\x86\xfa\x4d\xfc\x55\x4b\xae\xfd\xbb\xc1\x3e\x8f\xce\xc6\x0e\x4f\x72\x9d\x0e\xe4\xdc\x2e\x81\xf3\x2c\x49\x76\x8d\xff\x7e\xf3\x2b\xb1\xf9\x47\x43\xb8\xec\xa7\x53\x1d\x17\xa0\x7f\xe7\x0e\x16\x3b\x11\xc0\x13\xef\xbd\x41\xda\x89\x62\x70\xa2\xb8\x6d\xa2\x63\xa2\xc8\x78\xa2\xe0\xe5\x88\x80\x0d\x94\x03\x45\x22\x27\xfe\x51\x1e\x00\xff\x7b\x92\x6d\x81\xda\x9e\x5b\x2f\x05\xe8\x00\xbe\xce\x82\x31\x0b\x22\xba\x7e\xc5\xf9\xdd\x8f\x7b\xeb\xce\xa3\x6e\xb7\x5f\xd3\x36\xdd\xef\x71\x30\x86\x5e\xa1\x53\x88\xce\x21\xe8\xf4\xe1\xd7\x08\xe5\x64\xa9\x35\xd4\xf5\xc7\x0d\x22\x49\x76\x41\xb3\xbb\x13\xfd\x11\xf7\x22\x12\xbe\x6c\x41\xff\x0e\xac\x4d\x20\x1a\x70\xb1\x32\xc6\x5e\x8d\xdd\xec\xc4\x71\x08\xf3\x19\x84\x18\x79\xbd\x77\x60\x97\x1a\x78\x8f\x9a\x5b\x36\xeb\x39\xa4\x4b\x40\x7a\x33\x2e\x56\xdd\xbb\x7a\x55\x00\xf2\x11\xe1\x72\x0b\xc2\x2f\x1a\xa2\x95\x2e\xc4\xea\x2e\xc4\x06\x7f\x65\x30\xd8\x18\x81\x08\xc0\x82\x59\x95\x24\xbb\xb6\xbd\x6e\xcc\xea\x80\xd9\x3a\xe0\x85\xde\x8a\xd9\xd0\xb6\x97\x52\xda\xe3\x50\xe6\xf0\xeb\x3f\xa7\x63\x9c\x1b\xca\xa9\x6e\xe3\x5c\x51\x7c\x21\x2f\xb1\xdc\x02\xd7\x44\xf9\x32\xee\xc7\x6d\xdf\xa2\x8a\xb8\x51\xd0\x30\x0a\x3a\x8c\xc2\xa2\x0b\x15\x9a\xaa\x7a\x18\x4c\x5b\xfb\xbf\x66\xaf\x67\x8a\x16\xb4\xa2\x93\xda\x47\x6a\x89\x47\xb1\x93\xcb\x2c\x58\x41\xcf\x58\xc1\x06\x74\x5e\xcb\xad\x7b\x8c\x2d\xd2\xf4\xac\x36\xa8\x3b\xdb\xdd\x25\x37\x0b\x3c\x7b\x7f\x3a\x1b\x67\x73\xb6\xa0\x0b\x64\x83\xe7\x73\xb6\x08\x34\x02\xb0\x7c\xd9\x34\x53\x74\x41\xab\x93\xb3\x53\x3a\x21\x91\xc0\xfc\x28\x88\xed\x17\x69\x9a\x2d\xd8\xdc\x47\x78\xe2\x69\xba\x08\xc7\xf1\x51\x7c\x1c\x43\xa0\x0e\x42\x0b\x26\xb2\x23\x5a\xd0\xb3\x48\xce\x51\xb2\xa3\x7c\x19\xc8\x8b\x23\xba\x64\x47\x74\xc1\xe6\x16\x89\x67\x8c\xb1\xaa\xe5\x63\x45\x62\x4b\x65\x04\xcf\xc2\xb1\xcc\x5b\x1d\xf5\xd4\xc7\x82\x9d\x67\xca\x77\x03\xed\xd6\x45\xb6\xd8\x80\x62\x11\x41\xb1\xa0\x4b\xb6\x08\x9a\x66\x25\x08\xc0\x16\x4c\xc3\xa7\xb7\x7d\x66\xce\x2e\xb2\x05\x55\xf4\x2c\xfe\x14\x0f\x93\x79\x1e\xa3\x63\xd1\x47\xd2\xdf\xf7\x60\x0e\x53\xe9\x2c\x87\x5f\x44\xd3\x7c\x03\xc0\x79\x04\xe0\x9c\x2e\x2d\xda\x6b\x1a\x68\xd1\xed\x02\xdd\x13\x65\x99\xb2\xc4\x3f\x21\x34\x16\x37\x58\xac\xd0\x09\x2d\xbd\x8c\xf3\x75\x86\xc3\xdc\x75\x93\x5b\xb6\xaf\x57\xdf\x3b\xf7\xdd\x08\x60\x36\x61\x4b\x24\xf5\x27\x64\x43\x1b\xfc\xfb\x21\x21\x41\x20\xbb\x60\x6e\xc6\x9e\xb1\x8a\xce\x59\xc5\x06\xf4\x08\x33\x66\x4e\x40\x96\x05\xaf\x91\x67\x69\xda\x9b\xf5\xa7\x4a\xf2\xd1\x7c\x77\x37\xaa\x40\x6e\xce\xdc\x24\x9e\x8f\xb3\x23\x76\x46\xcf\xdc\x24\x3e\x62\x67\x8d\x49\x7c\x09\x93\xf8\x8c\xce\xd0\x4d\x00\x2d\xe3\x79\x7c\x19\xe6\xf1\x59\x9a\x66\x67\xec\x28\x9a\xc7\x67\x61\x1e\x5f\xb6\xe7\xf1\x19\xa1\x15\x13\xd9\x25\xad\xe8\x3c\x0c\xd0\x62\xbc\x64\x97\x79\x58\x41\xec\x92\x2e\xd8\x25\x3d\x63\x47\x76\x1e\x63\x1f\xe2\x19\x7c\x46\xe8\x32\x82\xe4\xcc\xcd\xe0\x2d\xbd\xf5\x53\x6c\x06\x33\xb9\xee\x0b\x06\xf0\x12\xd9\x6c\x03\x94\x59\x04\xca\x8c\x2e\xd8\x2c\xcc\x95\x25\x4c\xe6\x33\x98\xcc\x67\xe4\xeb\x5f\xbc\xc8\xce\xa8\xa2\xf3\xd6\x57\xeb\x79\x3d\x8b\xd1\x73\xd6\x9a\xd7\x33\x98\xd7\xf3\x7c\x86\xf3\xfa\xdf\xc2\x0a\x2d\x7e\xdb\xbc\x5e\xfa\x7d\x33\x12\x0b\x68\x2a\xec\x86\x89\x9b\xe5\xad\x4c\xbd\x34\x15\xe1\x8c\x08\x03\x2f\x2c\xd0\x10\x44\x4d\x30\xd1\x3a\x31\x90\xaf\xb0\xbc\xbd\x55\x3b\xc0\x4b\xe2\x8d\xdf\x36\x8f\x30\x67\x3e\xbe\xc4\x2f\xd1\x92\x69\x3f\xf1\x4b\x34\xf2\x2e\xdd\x39\xbf\x84\xa7\x1f\xc0\xd6\xdb\xd2\xab\x35\xb0\x79\xd9\xba\x48\x60\x11\xb9\xb1\xfd\x2f\x3d\x5a\x09\x85\x7b\x45\x49\xeb\x17\xc7\xed\x1e\xe5\x62\xf3\xce\x51\x52\xd1\xb8\x2b\x70\xa6\x83\xb9\x1f\x7c\xc0\x2f\x18\x03\x0f\xb4\x64\xe1\x93\xeb\xe8\x53\xf6\x9e\xf2\x66\x92\xb5\xbf\xe8\x89\xc0\x09\x85\xfe\xc7\x54\x20\x67\x70\xbd\x99\x58\xaa\x15\x1b\xc2\x3a\x54\x74\x50\xad\x93\x18\x64\x4b\xba\x83\xed\x7f\x68\x69\x12\x8e\xd4\x2a\xe3\xe1\x58\x0f\xa6\xfb\x38\xca\xf5\xf5\x1c\x9d\x9b\x23\xde\x4b\x78\xba\xeb\x43\x1d\xa5\xe9\xd6\x58\x47\xc1\x58\x31\xe4\x34\x2b\x37\xaf\x39\x50\xbb\x99\x85\x23\xa6\x5b\x23\xa6\xa9\xd8\x7a\xd1\x69\x0f\x86\x8e\x07\xa3\xc9\x60\x58\x67\xda\x52\xea\xa2\x89\xb1\xba\x9d\x18\x41\xeb\x4e\x22\x4f\x74\x11\x79\xc1\xad\x86\x60\x49\xb2\x2b\x3c\xef\x52\xa7\xe9\xbd\x10\x1d\x2a\xdb\xd2\xad\xcd\xd1\xc6\x3e\xd8\x0a\x7f\xdc\x02\x2a\xa1\x30\x8a\x48\x61\x89\x40\x5b\x9d\x85\xe5\x6e\x8b\x5e\x47\x25\xf3\x46\xc9\x32\x4d\x81\xdc\x15\x84\x76\x85\x08\xb0\xab\xb7\x57\xfa\x25\xcb\x1b\xca\x54\x4e\xdb\x09\xcf\x36\xee\xd8\x63\xb4\x3e\xe4\xf6\x09\xe5\xfd\xa9\xa8\x16\x65\x01\xf6\x8e\xab\x15\xef\x4b\xf8\x4d\x82\xe4\x2d\xa9\xc9\x3b\x14\x6c\x02\xcb\xf5\xb9\x60\x2f\x44\xd6\x1b\x10\xfa\x14\x53\x43\x42\x8f\x05\xbb\x59\xd3\x7f\x44\xad\xdd\x7e\x2c\xd6\xf4\x71\xeb\xf9\x53\xf3\x39\x72\xb7\x25\x9c\x6b\x27\xbb\x02\x8f\x45\xfb\x44\xfe\xe1\x2e\x21\x1d\x8c\xa0\x27\x8e\x15\x38\x51\xd9\x27\xe1\x0c\xa5\x1e\x0b\xca\x21\xf1\x8f\xa0\xc7\x82\x8c\xbc\xf1\x79\xf0\xeb\xed\x2f\x3f\xde\x4c\x04\x11\x35\x1c\xe6\xe0\x0b\xa5\x36\x4c\x0f\x0e\x50\x0c\xa0\xa5\x5a\x14\x13\xfe\xee\xcd\xb3\xfc\x0f\x3c\x2d\x20\xb2\x48\x33\xac\x93\x61\x7f\xf0\xcc\xb0\x4c\xb2\x1f\x51\x11\x20\xf2\x0a\x9d\x1b\xd2\x68\xc6\x91\xd3\x12\xf9\xc6\xe0\xe5\x68\x5d\x59\xa0\x3d\xec\xf1\x65\xfd\x91\x70\xa6\x7a\xb6\xb8\xb2\x7d\x84\x9f\x4f\x22\xaa\xf3\x0a\xea\xbc\x17\xd9\x27\x11\xcc\xc4\x5c\xe8\xb1\xf7\x22\xfb\xa7\xce\xa4\x12\xc0\x74\xca\xfc\x64\x64\x9c\x44\xbb\x85\x3b\x19\x4b\x58\xdf\x40\xe3\x8f\x43\x23\xce\x1f\x52\x03\x22\x64\xc7\xff\x11\x8d\x70\xec\xd5\xee\x6f\xe1\x5d\xb0\x3b\x8b\xb9\x88\x35\x78\xe3\xa3\xcc\xa1\xfb\x98\xe0\x2f\xa0\x21\x28\x88\x95\x48\x22\x7f\x1d\x16\x81\x51\x90\xb8\xd5\x4a\xa2\x4f\x40\xc6\x3e\xc8\xe8\xe1\xe7\xfa\x72\x69\x42\xe0\xb8\xe1\x7d\x16\xbc\xd7\x44\x32\x57\xff\x59\x10\x1d\xf5\x35\xbf\xe4\x45\x09\x16\xcc\x00\x68\x76\xef\x6e\x1a\xf1\xea\x48\x8f\xb1\x23\xb3\xd9\xb6\x6c\x38\x1f\x27\x37\x2e\xe1\xf7\x06\x03\x2c\x4e\xc8\x1a\xd9\x6d\x58\xc8\x25\x88\x05\x00\xb3\x4e\xad\x30\xf0\x61\x01\x4a\x4f\x25\xc6\xda\xf4\xc6\x35\xb7\x5a\xf9\x54\xec\x83\x0c\xae\x55\x26\x54\x5a\x87\x36\x02\x10\x2e\x11\xb3\x5b\xbb\xaf\x73\xcf\x9a\x3a\xd7\x41\xf1\x3e\xe7\x14\xce\xb7\xdc\xa9\xdd\xbc\x6b\xab\xdd\x3c\x11\xd5\xa2\x30\x93\x0b\xae\xe9\x2f\x82\x0d\xe8\xa1\x40\xda\xf9\x77\xf7\xfb\xc1\xfd\xfe\xec\x7e\x7f\x73\xbf\xaf\xdd\xef\x1d\xfb\xd2\xaf\xee\xe1\x4f\xfb\xc0\x0b\xd6\x1b\x52\xe3\xf4\x21\x65\xc1\x22\x3f\xff\xba\xc8\xbc\x5d\x50\x10\x00\xec\x0f\xe3\x89\xac\x8a\x20\x3c\x90\x1b\xde\x46\x6a\x7f\xf3\x83\x91\x7c\x50\x87\xd5\x94\x0f\x78\x1c\x34\x57\x9c\x67\xce\x4b\x08\xb8\x08\xe9\xf4\x0f\x52\xb3\x9b\x8b\x58\xb5\x02\x3e\xfc\x8b\x60\xc2\x22\xc2\xf8\xde\xf7\x18\xe3\xe3\x96\x5c\x0c\x65\xfd\xef\xea\x15\xe7\xc0\xfd\x20\xc6\xb3\x22\xbf\x2c\xa8\x01\x5d\x24\x45\x28\x2f\xc8\xcd\x54\xdd\x20\x5e\x64\xb1\xcb\x86\x5f\x6f\xf7\xb5\x60\x3f\x0b\x8b\xd7\xdf\x04\xf3\x43\x11\x7d\x2b\x6a\xde\xd9\x62\xf1\x82\x8c\x62\x9c\xdb\xb9\x1a\xbd\x70\x54\xd0\x8c\xb3\x43\x41\x5a\x9a\x0d\x3f\x8b\x4d\xb5\xbc\x3b\x36\x2f\x56\x16\xfe\x15\x2a\xd5\x82\xbd\x3f\x05\x0d\x3a\x11\xbf\xd7\xe4\xe9\xef\x02\x88\x7d\x9c\x47\xaf\x01\xf4\x9f\x05\xfb\x00\x1d\x38\xdc\x3e\x5d\x36\x44\x72\x03\x12\x99\x64\xd5\xe6\x1f\x76\xea\x34\x7b\xf4\x2f\x3f\xb4\x31\x2f\x23\xfe\xbf\x6d\x1c\xcd\xe4\x6e\x3a\x46\xa3\x36\xd3\x80\x47\x10\xba\xd6\x25\xb1\x5d\x45\x6d\x5e\x33\x6a\xb2\x87\x7f\x13\xe3\x9f\x01\x52\x9e\xff\x66\x7f\x51\x27\x91\xd3\xdf\x22\x73\xf2\x49\xd1\xb0\xfe\x7b\x2d\xc8\x6b\xc1\xb2\xdf\x84\x4d\x21\x6a\xeb\x79\x93\xfd\x6e\x7b\x4c\xc6\x0e\xe9\xc8\xd4\xf3\xb6\x53\x61\x2a\x6e\x08\xdb\x06\x4e\xdc\xb9\xd1\x4f\xd7\x5e\x4b\xad\xa1\xee\xf8\xef\x22\xd2\x75\x46\x04\xfc\x2e\xfa\x90\x88\x91\xe0\xaa\x39\xe5\xca\x08\x1b\x6e\xdf\x08\x98\xb0\x68\xf0\x38\x80\x91\x43\x55\x56\x87\xb4\x18\x2b\x65\xd1\x08\xc1\xd2\x25\x53\x1d\x9b\x8c\x93\x3c\x9a\x2c\xcb\xa2\x96\x9c\x5a\xac\x52\xbb\x97\x02\xb0\x0d\x33\x8d\x36\x76\x86\xc4\xfb\x2a\x2a\x2a\xf3\x86\xdb\x0d\x94\x4f\xdf\xf0\xe9\x72\x02\x5a\x3a\x83\x07\xb2\xf0\x92\x41\x09\x94\x99\xdd\x39\xa3\x73\xcf\x14\xc1\x77\x63\xe1\xb8\x72\xb6\x34\x1c\x5d\x8a\xdc\x98\x22\xdc\x68\x49\xd0\x15\x69\x9e\xa3\x53\x75\x23\x18\xcf\x04\x55\x10\x11\x4a\x41\x94\x58\x34\x98\x6a\x1a\x5e\xaa\xb0\x4e\x7e\xd6\x99\xa0\xad\x76\xc8\x6a\xe5\x6d\xd1\x5a\x25\xa0\xb9\x5b\x0f\x13\x48\x8b\x6c\x8f\x41\xc8\x15\xe9\xf7\x12\xda\xc4\x84\x7f\xf9\x44\x50\x7d\xba\x76\x63\x75\xd2\x6a\xdc\x16\x69\xd7\xa0\x73\x19\x19\x7f\x0c\x7c\xee\xb1\xe8\x33\x9e\xc8\xaf\xc6\x59\x4d\xee\x3b\x09\xab\xd3\xa7\xd5\xac\x82\x47\x92\x07\xd5\x2e\x3d\xd6\xfd\xc8\x2a\x28\xb0\x77\xed\x07\x27\xcc\x99\xf4\x95\x4c\xd3\x25\xeb\x0d\x2d\x46\x91\x53\x54\x6e\xea\x90\xff\x22\xc6\xd9\x72\xb5\xca\x96\xac\x37\xa0\x13\x56\x81\xb7\x6c\xba\xf8\xe9\x8e\x48\xd3\xa3\x49\x76\x47\xa0\xea\xf8\x7c\x92\x2d\xec\xfd\xb7\xa5\x77\x2f\x6c\x93\xc5\x8c\x6b\x3f\x4b\xec\x8e\xee\xb2\x9c\x61\x57\x26\x68\xe9\x07\x92\xd0\x8a\x95\x70\xab\xdd\x1c\xcd\x32\x4d\xb1\x13\x23\x0b\x4e\x80\xe4\xbf\x1b\xda\x49\x43\x63\x5b\x75\x0f\xe8\xb6\x91\xac\xe7\xf8\x69\x24\x02\x2b\x36\x64\x7a\x9c\xdd\x98\x62\x96\x73\x8a\x51\x71\x73\x43\xa7\xbc\x32\x5a\x5d\xe7\x92\x4e\xf9\xa2\xca\x75\x87\xd9\xe1\xaf\x62\x9c\xfd\x2a\xd8\x4d\xcb\xf0\x6c\x4d\x62\x71\xb9\x53\xdd\xe6\xde\x66\x28\x33\xec\x57\x11\x55\x20\xe3\xc6\x63\x5d\x1f\x22\xcd\xc0\x96\x69\xfc\x2e\xe3\xca\x24\x6d\xbd\x42\x62\xe1\xf3\x79\xd1\x96\x07\xd9\xa3\x61\xf4\xa7\x58\x41\xcc\xf4\x26\xae\x17\x45\x14\x8a\x9c\x06\x05\x63\xe7\xc7\x3c\x96\x83\x4e\x37\x9a\xb5\xbb\xd2\xc8\x47\x2f\x8b\x5e\x72\x7b\x82\x0b\x90\x54\x6f\x2d\xbf\x0b\x7c\xb3\xb0\x5b\xe5\x06\xdd\x2d\x98\xdd\x56\x00\xe7\xd1\xa5\x59\x15\x99\xa6\xb6\x60\x51\x05\xe2\x1a\x1a\x5e\x14\xd9\x80\x4a\x2a\xec\x85\xf1\xd6\xae\x89\x86\x34\xf7\xe2\x1b\x76\xe2\x8c\x33\x9e\x11\x0a\x8e\xa9\x22\xdb\x72\x94\x71\x90\x35\xf1\xfe\xea\x4d\x4c\xd1\x87\xb7\xc2\xe9\xce\x1b\x2f\x37\x68\xac\x35\x71\xf1\x5f\x22\x61\x46\xd1\x08\xda\x37\x2f\xe2\x28\xc6\xd9\xfe\xf7\x3f\xc9\xa2\xcd\x43\x3e\x18\x0c\x83\xe6\x4f\xdb\xdc\x99\x31\x76\x28\x42\x38\x22\x9d\xa6\x1a\x72\xc0\x2d\xb3\x5d\x75\x94\x6f\x98\xbe\xfe\x22\xda\x66\x8d\xb0\x03\xe1\xb2\xcf\x25\x8d\xf7\x08\x2c\x8a\xb6\x88\x16\xe5\x10\xcc\x4b\xc0\xa0\xa3\xf0\xaa\x1a\xa4\x9e\x61\x76\x76\xe3\x01\x63\x08\x21\xa6\x40\xed\x0c\xea\xbd\x43\x63\x74\x1d\x19\x2e\x70\x30\xf1\x47\xc4\xf8\x94\x5f\x12\xeb\x10\x4d\x5c\xa1\x42\xb3\x68\x28\x34\x8b\x8d\x5e\x2a\xf6\x67\x95\x29\x0a\xdc\x8e\x56\x77\xc5\x7f\xd6\xd7\x70\x42\xc0\x71\x51\x9f\xcd\x15\x71\xd4\x81\xa8\x43\x9e\x4f\xdc\x31\x10\x4c\x83\x20\xd4\x01\xd4\x9a\x10\x5a\xb9\xfa\x70\x49\x83\xe6\x98\xa0\x5b\x34\xf6\xbd\xbc\x0d\x43\xda\xea\x56\x85\xda\xe2\x3b\xf3\x1a\x40\x2d\x5a\x80\x10\xef\x4a\xa1\x6c\x55\xc0\x8d\x73\xc9\x74\x56\x52\x3c\xfc\x45\xf3\x7c\xd0\x54\x44\xa7\x03\x5b\xda\xfd\x7d\x49\x4b\xbf\x3e\x9d\xf7\x84\x05\xb9\x59\x83\x1a\xb8\x72\x1c\x9d\xa3\x82\xdd\x68\x5e\x78\x15\xde\x5c\x09\xba\xac\x82\x13\x96\x5c\x17\xf0\xe8\x0a\xf1\xc9\x6d\xaa\xf8\xf0\x6c\xbe\x80\xd0\xd4\x97\x1c\xa3\x80\xb9\xec\xe7\xc5\xb5\x5a\x9a\x46\xcd\x23\x3e\x57\x2e\xe9\xc7\xd0\x3f\x9d\xbb\x14\x8e\x24\xa6\x9f\xf0\xb3\xe5\x0c\x6c\xb6\x43\x35\x7f\xf5\xd4\xc5\x9a\xce\x6e\x87\xbb\xd3\x1b\xa6\xdd\x71\x5b\xdb\xd1\x09\xaf\x27\xbf\x71\x31\x0a\x4e\x29\x5f\xc7\xbd\xc6\xa6\x5d\x5f\x3a\x1b\x3e\x2f\xb2\xef\x87\xf7\xe8\xf0\xfe\x3e\x78\xd6\x5b\x77\x22\xa6\x6d\xb7\xe0\xc9\x78\x56\xf3\x36\x6a\x8b\x83\x31\x68\xa7\x4c\x0a\x93\x9d\xf0\x53\xe2\x2c\xa7\x8b\xec\x2e\x3d\xb8\x47\x2f\x8a\xfe\x99\x90\x53\xe4\x45\xd9\xc5\x49\x25\x7e\xb2\x81\xf4\x6d\x80\x42\x13\x01\x4a\x18\x94\x66\x55\xbc\x07\xc3\xe9\x14\x1c\x1a\x6d\xe0\x88\xe2\xbe\x2a\x37\xd1\x19\xd0\xe7\x07\xb9\xdd\x6f\xdc\x1a\xbb\xda\xc7\x8e\x67\x86\xe4\x86\xea\x56\xcb\xb1\x2d\x8c\xfd\x3a\x38\x7d\x05\xc2\x1b\x4f\x7a\x44\x91\x27\x2b\x6a\x8b\xf2\xd6\x02\xcb\x39\xdd\x58\x55\xb9\x59\x93\x40\x90\xb0\x79\x8c\xdd\x43\x60\x8b\x9d\xb4\x80\xa1\xfc\x74\xed\x27\x6e\x87\xa8\x87\xd7\x7c\x30\xbe\xa6\x1d\x93\x0e\xf1\xd3\xb6\x66\xf1\xd7\x8a\x08\x33\x5d\x27\x21\x7a\x23\xe7\x19\xd9\x24\xd1\x62\x8a\x8c\x23\x8e\xcc\x7f\x82\xa3\xb2\xe8\x40\x12\xff\x1a\x92\xda\x44\x9e\x43\x52\xb4\x8e\xcf\x5a\xeb\xf8\x99\x58\xd3\xcb\x7f\xb3\x8e\x71\x6a\x02\x85\xd3\x31\x27\x83\xba\x6d\x93\x8a\x69\x6a\x96\xe8\xd8\x4e\x46\x59\x62\x44\x9f\x0c\x4f\xc9\x58\x9f\x0c\x4e\xf3\xb6\x8d\xba\x9f\xcf\xe4\x5f\xee\x07\xd3\xff\x2b\xfb\xc1\xf4\xbf\xdf\x0f\xa6\xdf\xbc\x1f\xfc\x1f\x44\xfa\xad\x5b\x09\x69\xec\x25\xcb\x62\x63\xdd\x85\xbe\x4c\x36\x16\xda\x96\x65\xe6\xc5\xcb\x45\x56\x16\xe4\x5b\xe6\xe8\xb5\x63\xed\x3c\x74\xbf\x57\x45\xc3\x7f\xc8\x97\x22\x46\xd4\xfb\x49\xf6\x3d\x0d\x97\x47\x3a\x20\x23\xd9\x10\x7c\x26\x4f\x9e\x3e\x7f\xfa\xf6\xe9\x13\xf0\xde\xdd\xce\x88\x4d\x7a\x62\x6d\xb6\x58\x91\xd7\xd3\xe1\x3c\x36\xa5\xce\xf8\x16\x6b\x69\x49\x79\x4b\x89\x98\x37\x94\x88\x9b\xa5\x91\xdd\x4a\xd1\x0c\xe1\x14\x09\x98\xbe\xcf\x63\x9f\x43\xad\xa1\xce\x0c\x1b\xf6\x62\xb7\xbe\xe8\x53\x3e\x8a\xdb\x10\x4a\x37\x63\x4c\xb8\x39\x05\x62\xfb\x06\x2e\x7a\x03\x27\x0e\xbd\x97\x6f\x7c\x2e\x71\xf1\x4e\xb8\x9c\x82\xc7\x35\xb0\xfa\x38\x68\xc0\xf0\xf5\x76\x87\x07\xf9\x2d\x51\xd6\x5e\x16\x4e\x46\x75\x55\xf8\x5d\xfa\x61\x81\x21\x4b\xbd\xc8\x02\x34\xda\x1d\xd2\xdc\xf5\xc0\x30\xa3\x33\xd9\x88\x35\x4b\x56\xab\x50\x29\x38\xa8\xa9\xc7\x36\x4a\xa7\xff\xbf\x4b\xb3\x9a\x19\x9c\x6b\x40\xa3\x64\xd7\x05\xe3\x64\xf4\xa5\xc8\xae\x0b\xbb\xc2\xed\xa3\x9d\x92\x46\x07\x03\x5f\x10\x38\xa0\x20\xe2\x9b\x9a\xb5\x4d\xc4\xc1\xe4\x0a\x2f\xa9\xa9\x1d\x1c\x05\xeb\xde\x34\xfd\xbe\x23\x24\x69\x1c\xa9\x14\x83\x82\xbb\xd7\xa0\xe9\x5a\x73\xdf\x23\x90\xf7\x18\xbb\x2e\x6a\xb6\xb9\x45\xd4\x95\x7f\x46\x00\x00\xb6\x01\x75\x3e\xc0\x8d\x9f\x66\xe2\x3c\x0b\x00\xac\x56\xc9\x05\x2f\x30\x2a\x7a\x9a\x26\x67\x6a\x7a\xed\xd2\xbd\x5f\x25\xea\x6c\xc6\x92\x1c\x42\xf0\xe2\xf2\xb0\x18\x99\x11\x71\xcb\x95\x1a\xc4\x5c\x3c\x3c\xf6\x23\x08\x03\x08\xa5\x70\xd2\x47\x4e\x23\x02\x73\x3a\xdb\xb4\x66\x19\xf3\x48\x1a\x85\x41\x13\x08\xb7\x9f\xc4\xe1\xc8\x03\x5e\xa3\x0f\xd2\x7f\x19\x1f\xf8\xf7\x38\x1e\xf0\x0d\xb7\x1d\x68\xc6\x32\x0e\x62\xf6\x3a\x46\x70\x8f\xb1\x43\x99\xa6\xf6\xf7\x67\xf7\xfb\x41\xae\x56\x3e\x66\x70\xf4\xf6\x9a\x47\xae\xf7\x39\xbb\x2e\xc6\xd0\x7e\xad\x1a\x10\x7f\x09\xf9\xc2\x6e\xdc\x1e\xda\xa9\x18\xcb\x3e\x5e\xd8\x7b\xf3\xc3\x82\x5d\xc7\x3b\x26\x4a\x90\x8b\x96\x9c\xe8\xe5\x95\xe4\x9a\x3e\x6d\x6e\xa9\xc7\x11\x5b\xc3\x09\xcb\x3c\x97\x97\x8f\x9f\x82\x22\x3f\xec\xb0\x54\x93\xfc\xb9\x80\x11\x87\x4a\x90\x53\x83\xf1\x4f\x11\xeb\x84\x4a\x30\x00\xb2\xbb\x7a\xe0\x8f\x6a\x7e\x1e\xdc\xbd\xda\x66\x14\xa1\x9a\x45\x82\x9b\xff\x3f\x77\xef\xc2\xdc\x36\x8e\xec\x8b\x7f\x15\x49\x35\xc5\x03\x1c\xc3\x1a\xc9\x4e\x32\x09\x15\x44\xd7\x49\x3c\x33\xd9\xcd\x6b\x93\xcc\x63\xd7\xeb\xeb\x4b\x53\xb0\xcd\x31\x0d\x6a\x00\x28\x8e\xc7\xd2\xfd\xec\xff\x42\xe3\x41\x00\xa4\x9c\x64\x76\xcf\x39\xb7\xfe\x55\xa9\x98\x02\x41\xbc\xd1\xe8\x6e\x74\xff\xba\x02\xd7\x5e\x8f\x5d\x7f\x58\x44\x3e\x00\x6b\x3a\x25\xb6\xa5\x70\x1f\xe3\xae\xfc\x72\xa4\xa2\x6b\x8e\x18\x61\x27\x28\x20\xa3\xbb\xf7\xa7\xdf\x75\x2e\x4a\x1e\x03\xf8\x4d\xe7\xfa\x64\x82\xc9\x0f\xa6\xb6\x26\xbc\xd8\x7a\xd6\xbd\x67\x72\x2d\x76\x9a\x1d\x1e\x52\xea\x3e\x9b\xb9\x62\xbd\x7e\x5e\xa2\xc2\x7b\xb3\x0f\x29\xe8\x7d\x5a\x94\xbb\x36\x86\x32\xb8\x67\x15\x82\x05\x59\x79\x94\x75\x8e\x10\x0b\x8d\xfd\x8d\xed\xa8\x61\x4e\x8c\xa5\x44\x65\xcd\x60\x60\xfc\x09\x0b\x6e\x46\xed\x54\x33\x18\x42\xf0\xc8\xbe\x4f\x8c\x2d\x38\x2d\xc8\xa5\xe9\x68\x61\x3b\xea\x0d\x14\x0a\x87\x8b\x4b\x9a\xc7\x15\xa0\x06\x15\xf1\xfe\x27\xc8\x33\x55\x70\x6b\x6c\x7b\x80\xe7\x3c\xff\x9b\xc0\xa8\x21\x02\xa2\xf9\x08\xf0\x96\x82\x46\xe1\xb9\x1d\xe9\x0a\xe7\xe9\x8c\x1b\xa7\x93\xc2\xfb\x2a\xdc\xd1\x8b\x76\x92\x2e\x93\x49\x8a\x4f\x31\x06\x10\xee\x09\xd5\xea\xb6\xca\x62\xc0\x4d\x75\x3f\xc3\x16\x3e\x0f\x16\x6c\x50\xe7\x2f\x45\x0c\xc2\xaf\x17\xbb\x5f\x1a\xad\x51\xb8\x9f\x5a\x66\xab\x03\x4b\xf1\xd8\x2f\x65\x4d\xa7\x7b\x0f\xc3\x78\x68\x45\x37\x72\xce\x69\x83\x78\xe2\x5a\xea\x43\x5f\xd2\x8b\x06\x29\x30\xd1\xb2\xbb\x8c\xff\xa9\x5d\xc6\xff\xe7\x76\xd9\xd3\x22\x31\x2f\x87\xee\xba\xbe\x0f\x27\xb3\x9b\x06\x29\x7b\xf6\x02\xac\x4f\x75\x86\x7c\x67\xfd\x4d\xbe\x77\xc2\x6e\x87\x1c\x05\x4a\x42\x1b\x53\xa1\x9b\x10\x0c\xc6\xb9\xc2\xe4\xda\xb9\x32\x91\x13\xfb\x64\x28\xd7\x70\x32\x0b\xad\x10\x42\x12\x10\x54\x4e\x64\x6a\xea\x30\x2b\xac\x1f\xb2\x9c\x19\x7d\x58\xe1\x5c\x82\x49\x6d\xfd\x64\xb6\x7b\x1c\xd7\x7e\x29\xd5\xf3\x9a\x36\x15\xaa\x71\x5e\x9b\x09\xaf\xfb\x16\x85\x33\x48\xe4\x5b\x9d\x76\xc9\xb2\x37\xea\xc9\xaa\xdf\x99\xb7\xd8\xe6\xcc\x3b\x5b\xf6\xbb\xf3\x16\x5f\xe0\x1b\xde\xff\xdd\xd6\x0f\xd6\x6b\x24\x87\xa0\xf7\x2b\x21\x6a\x4c\x96\xfd\xa1\x27\x46\x93\xaa\x1a\x13\x83\xf3\xa4\x7b\x7d\xd6\xb9\x93\xd3\x63\x6d\xdc\x63\xcf\x20\xc7\x82\xaa\x0e\xb4\xd8\x90\xd2\x85\xf1\xaa\x55\x64\x41\x04\x29\xf4\x6c\x97\x69\x51\x98\xd8\x26\xe8\x0d\x5c\xae\xd7\x2d\x68\xf4\x7a\x5d\x55\x73\xd4\x3b\xa4\xc6\xeb\x5a\x2f\xa1\x95\x5e\x4e\x3d\x85\x22\x49\xab\x6a\xbd\x3e\x30\xb9\x24\x11\xe4\x0c\x2c\xb1\xf1\x1c\x7d\xd5\xf8\xde\xe1\x2e\x5d\xf4\xbb\x4b\xf7\x4f\x76\x5f\xa1\x7d\xa9\x5b\x9c\xa4\xef\x6c\xdc\x1d\x2f\xd1\x16\x77\xe5\xa2\xd7\x5d\x59\xc5\xee\xca\x38\xff\x5c\x67\xb6\x7f\x4b\x92\xbd\x4a\x45\x47\xef\x53\x62\xe2\x36\xb0\x20\x6e\x39\x95\xc4\x6f\x62\x5a\x13\x41\xe5\xbf\xd4\x08\x41\x87\x53\x4b\xdd\x3e\x43\x4b\x7c\x53\x94\x33\xab\x8d\x3c\x08\xe7\x32\xff\xa1\x71\xfe\x5d\x52\xaf\xb8\x96\xd6\x74\x03\x58\x27\xd4\x07\x7f\x2d\xa9\x21\xa8\x97\x94\xa0\xbb\xa8\x0f\xfe\x4a\x32\x83\xff\x5f\xa2\x32\xdd\x1d\x4c\xce\x68\xbb\x24\x1c\x17\x94\x50\x19\xdc\xa1\x2e\x1d\x42\xe5\xa9\x8b\xae\xfa\xec\xcf\x51\x97\x9e\x42\xd1\x2a\xa5\x2e\x25\x39\xfb\x13\xd4\xc5\xc1\x73\x7d\xc1\x88\x3a\xa4\x87\x2f\xa1\x2f\xae\xd8\xde\x64\x24\xa0\xa9\x5f\x41\x66\xda\xe2\xb6\xbf\xb5\xa5\x7e\x09\xb5\x09\x30\xc9\xe2\xdd\xfa\x55\xeb\x37\xfd\x7e\xef\xfe\x83\x98\x60\xf5\x8e\xa4\xaf\xde\x44\x76\x4b\x78\xd7\x2c\x2b\xa3\x44\x98\xed\xf5\xfa\x8e\x86\x0e\x3f\xdf\xd0\x3f\x5f\x93\xee\xd2\x17\xd0\xd1\xb3\x3e\x3a\x7a\x96\xd0\xd1\xd5\xff\x1f\xc7\x06\xc8\xbb\xe3\xd6\xdf\xc6\x9c\x79\x60\x68\x9c\x08\x31\x56\xc0\x98\x19\x0e\xb3\xd7\x3c\xd6\x84\xa1\xc8\xb2\xa1\xd7\xf1\x34\x59\x76\x00\xfe\xc9\x64\x38\xf5\xac\x76\x85\x67\x22\x3a\x56\x5e\x16\x6d\x60\x1a\x7b\x95\x5b\xf4\xef\xee\x5e\x42\x0e\x57\xf1\xd6\xf0\xc1\xca\xfc\xc1\x75\x53\x2c\x5b\xb4\xac\x38\xc8\x1d\x46\x76\x8b\x95\x0a\x9a\x09\xaf\xbc\xe4\x61\x5e\x42\xa2\xd4\x72\x68\x6e\xa5\x13\x69\xf2\xa4\xf7\x56\x06\x33\x25\xe8\xf6\xc4\x97\x14\x98\x59\x17\xfd\x21\x45\x94\xd3\x6b\xda\xcb\x87\xf9\x79\x83\x26\x24\x4d\xed\x24\x18\xfb\x63\x1b\x2a\x25\xf7\x8f\x59\x66\x3f\x77\x27\xae\x9e\x02\x63\x4a\x1f\xbb\x84\x58\x8b\xee\x82\xfc\x56\x90\x17\x05\xf9\xa9\x20\x3f\x16\xf4\x36\xd1\x6f\x11\xc1\x94\xb8\x81\xfb\xfb\x69\x60\xef\xfd\x7d\x11\xdd\xf4\x91\x86\x3a\xb1\x9f\xaa\x48\x4b\x4b\x0a\xfa\xab\x37\xbb\x24\xd2\x0a\x4d\x48\xf4\xaf\x24\xbc\x5e\x23\x41\x27\xfa\xf4\xda\xcb\x0a\xdc\x5e\xb6\xb3\x56\x80\xed\x00\xcc\x88\x39\x92\x74\x38\x49\xa4\xc1\x07\xf7\xbd\xb5\x48\x8b\xc9\xd0\xd9\x26\x2d\xd8\xeb\xf8\xcc\x5e\x47\xad\xd7\x43\x93\xe0\x43\x72\x14\x3a\xd7\x87\x8b\x4a\x7e\xef\xb3\xa0\x62\x4d\xa7\x60\x4b\xff\x6b\x45\xa6\x59\xd1\x8a\xb6\x26\x1c\xa6\x0d\x8a\xd9\x96\x4a\x50\x05\x3e\xfd\x7a\x48\x1b\x32\x49\x1c\xcd\x15\xd8\x1a\xa0\xbd\xcc\x8c\xa2\xd1\x65\x06\xc8\x61\x51\xab\xe7\xce\xd8\x1c\xfe\xcf\xed\x2f\xe7\x9a\xd3\x9a\xde\xb3\x19\xf6\x0a\x8b\x0a\x5c\x7d\x63\xcc\x0d\xc4\x75\x8b\x24\x69\x3a\x7e\xef\x8a\x54\x2d\xc0\x46\x67\xb5\xff\x58\xf8\x4d\x52\x11\xee\x14\x34\x0d\x6d\x7d\x83\x3a\x9f\x58\x09\xd7\x7c\xd4\xaa\xf6\x20\x86\x4c\x6b\xa5\x94\x4e\xed\x2d\x84\xc6\x6d\x43\x22\x61\xd7\x28\x62\xc6\xb7\x8a\xc6\x97\x1b\x98\x90\xf8\x92\x60\xfb\x10\x83\xaf\xe2\xd7\x0c\x30\x86\x16\x9a\x47\x3d\x3d\x16\xf3\x81\x4a\x37\xde\x72\x86\xa5\xab\x8d\x13\x49\x65\x3a\xde\x8d\x6e\x61\xa3\xe9\x6d\x6a\x33\x12\xb4\x92\xfb\x91\x6f\x48\x7f\x68\x82\xc9\x5d\x33\xc2\x49\xe3\x6d\xfc\x63\x02\x17\x4c\x0f\xef\x92\xb0\x68\x86\xf8\xa6\x3a\x6b\x87\x9d\x7c\xfd\x6a\xf6\x6b\x91\x44\x3a\x10\xb7\x18\xf1\xff\xcb\xcb\x9d\xc7\x8a\x18\x57\xd1\xd7\x4c\x42\xb0\x2d\xee\x1c\x67\x33\x3f\xf1\xcc\x04\xe1\x5c\x7a\xf4\x6f\xc9\x16\x71\xfe\x23\x55\xea\x07\x40\x6f\x2b\xf9\xb4\x28\x2f\xaf\x0b\xb1\x90\x10\x4b\x41\x1f\x8f\x15\x3f\x6f\x0d\x02\x72\x41\x54\x51\xd5\x39\x87\x3f\x6d\xf7\xf2\x09\x24\xbc\x6a\x16\x2c\x6f\x36\x39\xaa\xc6\x41\x51\x30\x56\xbe\x30\xd3\x1b\x63\x10\x09\xb6\x49\xfa\x43\xca\xed\x43\x5b\x24\x9d\xd8\x24\x5d\x28\x0d\xb9\x8d\xbf\xc7\xe7\x48\x7a\x78\x34\x80\x53\xe5\x3d\x74\x20\xd8\xa4\x2e\x47\x9f\x21\x4e\x29\x1f\x2d\x6b\x7b\x74\x20\x11\x9c\x3a\x18\x63\x41\xa7\x99\x58\xef\xc5\x4a\xb6\x07\xf7\x22\x93\x77\xbb\x4a\x1f\xdc\x0b\x71\xc5\xed\xb1\xc4\x72\xb3\x42\x9d\x4f\x4f\xbb\xe4\xbc\x73\x93\xbd\x3c\xbd\x83\x9a\x75\x74\x93\xbc\x4f\x35\xc9\x1d\xab\x15\xda\x15\xda\x22\x0b\x2d\x55\xf4\x14\x92\x26\x52\x8e\x09\xaf\xfc\x86\x03\x38\xd0\xc4\x73\xc9\x51\xb2\x5b\x16\x7b\x2e\x31\xe2\xf7\x7d\xe4\xb9\x04\x32\xbe\x8f\xe7\x1c\xfa\x2e\xb1\x5e\xdf\x25\xe6\x7d\x97\x58\xeb\xbb\xd4\x16\x10\x04\x57\x61\xa9\xdf\x92\x6f\x76\xb0\x87\x37\x22\xa3\x53\xdd\x0e\x73\xe2\x8a\x0e\x05\xe9\xdb\x67\x46\x4f\x6a\x2f\xb7\x1b\x1f\xdc\x53\xc0\x4a\x1e\xc1\x94\x72\x37\xa5\x61\x7c\x85\x21\xa5\xdc\x23\x5a\x21\x41\x79\x80\x16\xe5\x59\x89\xdf\x2a\x24\xb0\x09\x5f\x80\xc1\xcf\xcf\x8d\x02\xf7\xae\x6b\x0d\x9e\xa3\xc6\x57\x10\x5e\x71\x01\x00\xa9\xff\x24\xa0\xf9\xf0\x92\xfc\x5c\x20\xcd\xb6\x01\xa9\xaa\xe2\x78\xa2\x6e\x23\xba\xe6\x1b\x12\xdc\x5b\x89\xeb\x4b\x33\x8b\x20\xf2\x04\x6d\xb6\xf6\xa7\xbd\x88\x6b\xac\xf7\xae\xce\xed\x9a\xd9\x84\x54\x92\x36\x7a\x77\x6e\x4c\x53\x27\x96\xa6\x26\xad\x55\xcd\x39\x53\x17\x4c\x8c\x72\xd7\xa3\xd6\x66\xc2\x70\x5e\x1d\x1f\xcb\x9e\x69\x6c\x49\x69\xc2\x4f\xff\x50\x24\x20\xdf\x46\xcc\x8d\xa2\xcc\x24\xe1\x78\x1c\x1c\x75\x6a\xc9\x5f\x9d\x41\xf8\x6c\x01\x56\xfb\xc2\xf3\xee\x49\xcc\x20\x9e\x86\xb8\x6f\xeb\xb5\x1f\x04\x3b\x2b\x45\x9d\xd8\x6f\x01\x2a\x42\xcf\x41\x33\x8d\x9a\x75\xf1\x93\x18\xb3\x30\x9d\x3b\x0d\x1c\x1c\xf6\xde\x7e\xc4\xdb\xb5\x06\xdb\x31\xd8\x3f\x70\x3b\xe6\xa7\xaf\x87\x51\xea\xd6\x82\x83\xa2\xa3\xf5\xb9\x75\x3e\xfe\x0a\xf2\x4d\x8c\xe2\xd8\xbe\xfd\x5b\xd7\xd8\xc4\x1c\x08\x76\x63\x5e\x54\x8b\x05\xe3\xa3\x1c\x8c\x01\x34\x8d\x6f\xfd\xf5\xc2\xd5\x1c\x62\xcd\x85\x00\x6b\x9c\x26\xc0\x72\xbc\x8d\xd2\x61\x8e\x25\x2d\x28\xc6\x3d\x89\xc3\xed\xd6\x75\xb1\x94\x6c\x31\xca\x79\xda\x02\xb1\x85\x36\xf0\xa8\x05\x62\x0b\x25\x10\xf3\x36\xf8\xb9\x29\x38\x6a\x92\x79\x8e\xda\x95\x8b\x78\xc0\xdb\x41\xfc\xa6\x08\x43\xe1\x45\x0e\xe1\xa7\x0d\xb2\x3e\xbf\x59\x76\xd5\x20\xec\x2d\x2b\xfc\x74\x38\xd9\xf8\xde\xe4\xd1\x83\x0c\xcc\x89\xd2\x88\x1a\x6a\xfd\xe0\x1e\x61\x21\xc8\xd3\x7e\x5e\x9d\xa1\xa7\x15\xc2\xe4\x55\x83\x30\xd1\xc7\x23\x8a\x0a\xc5\xf6\x88\x4c\x01\x20\xef\x07\x2e\xdd\x5b\xea\x99\x59\x4b\x23\x9b\x0d\xbc\x90\x49\x5b\xf5\x74\xdf\xbd\x91\x9a\xe8\x63\x02\xed\x4e\x6a\xff\xb2\x5e\x4c\x1f\x25\x45\xb5\xaf\xee\xb9\x37\xd0\xc9\xe0\x93\x89\x7b\xa1\xda\x76\xc5\xe6\x43\x83\x64\x72\xfe\x12\x79\x38\xdc\x02\x40\x49\xce\x88\x6c\x56\xa2\x64\xb9\x22\x52\x15\xe5\x65\xfe\x17\xa4\xf0\x66\xf3\x6b\x41\x63\x0b\xbc\x76\xb5\x27\x4c\x06\x37\xe4\xfb\x3e\xb5\x20\xa4\xeb\xf5\x03\xf7\x88\xd9\xb8\x58\xea\x5d\x0c\x46\x41\x28\x30\x2d\xc3\xfe\x8e\xf0\x9e\x03\x2f\x6d\x2f\x83\x1d\xe9\xe1\xf1\xd1\xcf\x61\xf1\x76\x8f\xfe\xe0\xe4\x8e\x0e\x7e\xde\x7b\xf0\x73\x7f\xf0\xf3\xf0\xe0\x77\x86\x46\xfe\xfd\x86\xa7\xe7\x3e\xf7\xec\x4a\x5b\xf4\x66\x43\x7e\x0b\x46\x0a\xdf\x6e\xc8\x8b\x78\xe4\x1c\x9e\x9e\x63\x9a\xe2\x3b\xcf\xea\x0c\x15\xad\x6f\x17\xc0\x0b\x85\x2a\x28\x87\x16\x90\xb8\xd0\x5b\x36\xdd\x62\x08\x8c\x2a\xbe\x5c\xa9\x51\x5e\xd0\x0f\x0c\xd5\xa4\xc0\x44\x98\x27\xa1\x73\x1e\x1d\x87\x54\xa4\x59\x82\xe6\x2a\x2f\xe8\xef\x3e\xef\xef\x5b\xf2\xda\x98\xec\x79\x61\xc2\x0e\x16\xc4\xae\x18\xeb\x9f\xa2\x3f\xb5\x31\x67\xd2\x17\x69\x49\x1e\x27\x35\x2f\xe8\xa5\xaf\xf7\xb2\x5b\xaf\x5b\xbf\xfd\x6a\xc7\x86\x3f\xab\xab\xf2\xb2\x1f\x7a\x56\xb4\xaf\x51\x3d\x6e\x78\xa9\x9f\xe9\x3b\x2d\xb0\x34\x02\xc9\x41\xc5\x07\xcf\x0d\xe6\x28\xb1\x5c\x49\x01\xae\xd4\x62\x7c\x51\xc8\x37\xd7\x5c\xcf\x07\x13\xea\x06\x49\xac\xb9\xd8\x9e\x44\xb3\x3c\x8b\x23\x79\x8c\x0d\xe8\xc7\x4d\x0d\x61\xd7\x4d\x94\xc6\x52\xd7\x50\x9b\xd7\x75\xfa\x79\x09\xaa\xa2\xf5\x1a\x71\x83\x68\x7b\x54\x1e\xd3\xd1\xc8\x6c\x82\xd1\xa2\xe0\xe7\x4c\x34\x2b\x59\xdf\xbc\x67\xea\x05\xe7\x4c\xfc\xf8\xe1\xd5\x4b\xdd\x75\x99\x65\x23\x27\x3e\xb8\xdf\x72\xb5\x5c\x0a\x26\xe5\xb3\x38\xd6\xfb\x2f\x85\xe0\x16\xf4\x36\xcc\xf5\x23\x28\xcb\xaa\x86\x27\xef\x8b\x95\x6a\xbe\x87\x38\xf2\x26\x01\x2d\xba\x5d\x9e\xb3\xf5\x1a\xe9\xd9\xc1\x60\x1f\x0b\x88\x2a\x26\xb0\xa7\xb4\x12\xea\xcc\x8f\xad\x70\xa8\x58\xe2\x48\x1e\xeb\x65\x5d\x5b\x71\xb9\x98\xeb\x21\xb1\x6b\x83\xf4\x8e\xf6\xca\xf8\x07\x5a\xd6\x63\xe5\x54\x69\x35\x4e\xc7\x59\x17\x6b\x28\x91\x19\x6d\x3c\xec\x19\xe9\xf5\x7a\x95\x65\xab\xbe\xf4\xbe\x19\xf0\x85\xad\x70\xcf\x37\x59\x56\x1f\x95\xc7\x43\x4a\x57\x47\xe5\x71\x77\x0a\x75\xaa\xbd\x90\xd4\x6f\xfc\x70\x69\xde\xc5\x0e\x13\xd6\xcb\x6d\x75\xf7\x44\x53\xf0\x0f\x5d\xd1\xd5\x7c\x35\x3e\x39\xb9\x50\x57\xb5\x1b\xae\x9a\xd6\xf3\x3a\x49\xb3\xa3\x64\xfc\x29\x57\xc6\x10\x3f\x9a\x9a\xd1\x68\x67\x85\x71\xde\x2e\x1c\x28\x1f\x60\xd1\xd6\xeb\x2e\x36\xf2\x2a\xcb\x1c\x56\xcd\x30\x34\x73\xe8\x2f\x37\xff\xf7\xac\xbf\xde\xe5\x86\x7c\xd7\xde\x72\x54\x11\x89\x09\x5b\xaf\x6d\xbb\xcd\xc0\xf6\x2c\xc4\x15\xc6\x1b\xde\x19\x05\xbb\x6a\xb4\xc8\x5d\x51\x46\x12\x2b\x9d\x0a\x67\xd9\x5f\x0b\x38\xe7\xc8\x4f\x5d\x72\x8d\x6f\xb9\xe1\xb5\x4d\x1e\x60\x54\xfe\x51\xf4\x9a\x83\xfc\xc2\x8a\xcb\xf7\x4c\xcd\xed\xdf\xfc\x3d\x53\xad\x12\x9a\xc9\xd8\xf6\xc9\x1c\xb4\xc4\x5e\x32\x94\x97\x41\xb0\x3c\xde\x42\x8b\x08\xfa\x17\xc4\x5b\xf8\x7b\x9e\x65\xdf\x58\x33\x36\xc3\x3f\x1a\x5c\xb1\x96\xb3\x9f\x52\x6f\x06\xfb\x0d\xf2\xa8\x2a\xe2\xe6\xb6\x6c\xb8\x6c\x6a\x36\x66\xc0\xf1\x28\x6c\xbd\xaf\x1a\x7c\x2b\x99\xd2\x2c\x74\xb3\x52\x28\x0c\x91\x6b\x58\xa4\x66\x13\x05\x13\x56\x32\xbc\x14\x10\xec\x2c\x14\x12\x70\x04\x7f\x17\x62\xb5\xea\x06\x38\xb7\x48\x1f\x33\xf7\xa5\x8d\xfd\x01\x3b\x26\xf1\x7b\x6c\x81\xa1\x65\xc4\x87\xab\x80\x89\x9c\x78\xb0\x1c\xf3\xf7\x7e\x2e\x24\xda\x23\x13\xa2\x42\xb1\x6e\x30\xd5\x3c\xe1\xde\xfd\x07\xa1\xfe\xbe\x8d\x73\xda\x5a\xb5\x26\x96\x6e\x1d\xe5\x95\x32\xce\x2b\x41\xd4\x8a\x2d\x17\x5f\x28\xc5\x27\x36\xa6\x05\x73\x1e\x98\x19\x70\x0c\x67\x5d\x1a\xc8\xa2\xaf\x38\xaa\x36\x41\x6f\xf6\x73\xcb\x86\x5a\xdb\x73\xcb\x15\x9a\x9e\x7e\x97\x27\xf2\x69\x12\x6a\x7d\x3f\x9a\x4b\x21\x7b\x20\xe9\x63\xb3\xc4\xf0\x42\x7e\xce\xc7\x89\xff\x32\xf6\x00\x01\xd4\xd8\x94\x83\x3b\xbf\x91\x4d\x91\x01\xfd\x62\xd8\x39\x01\x0b\xe7\xb4\x3b\xf3\x4f\x34\xf2\x26\x1e\x42\x80\xc5\x06\xe1\x4d\xf0\xbd\x32\x4a\x0b\x31\x36\xee\xd6\xa4\xfd\xb6\x41\xd8\xc0\x74\x05\xde\xe5\xc2\x46\x68\x6e\x11\x56\x7c\x17\xed\xfa\xe9\x5b\x9e\xcf\xca\x2c\x7b\x56\x22\x2d\x90\xdd\xb1\xba\xee\xf9\x55\x16\x01\xf8\xa7\x46\x0b\x3c\xb0\xc6\x0e\x7c\xb7\xdb\x28\x99\x30\x4e\x3f\x35\xe8\xd1\x77\x8f\xf9\xfc\xd1\x77\x39\x8f\xe2\x52\x1b\xbc\x0a\xe1\xbc\xf8\xc1\xda\xda\x0e\x5b\x08\xae\xc0\x3d\xf6\x02\xec\x6d\x8e\xdc\xb6\xaa\x60\x5b\x35\xa4\xc2\x1b\x6f\x4b\xed\x50\x53\x80\xb3\xd4\xdb\x39\xda\x1c\x4a\xea\x9e\xf7\x59\xa4\xf0\x78\xb5\xc7\x86\x01\xfc\xca\x98\xe5\xc4\x62\x01\xec\x73\x7b\x5f\x9d\xee\x28\xb5\x25\x9c\x88\xea\x2d\x19\xf5\x10\x8a\x0d\x60\x48\x87\x7b\xfb\xbe\x69\x7e\x98\x74\x2f\x2f\xdd\xa4\x07\x0b\xa1\x8a\xe8\x56\xab\xaa\xf4\xea\x3e\x6e\x30\xf1\x5a\x7d\x54\x6f\x60\x9c\x04\x2c\xc6\x26\x45\x2a\x1c\x9b\x96\xd8\x4b\xc6\x1e\x2e\x36\x29\x8d\x8b\x16\xeb\x38\xd2\x56\x04\x89\xdc\x7b\x2e\x55\xba\xfb\x01\x70\x8c\x0c\xbc\x89\xee\x53\xef\x9b\xb0\xdf\x3e\xde\x73\x8f\x01\x22\x0c\x7c\x65\xfd\x01\x5a\xda\x1e\xfa\x5a\x58\x60\xac\x42\x57\xd7\x3a\x98\x78\xd3\xfe\x00\xd7\x29\x21\x39\x13\x8c\x37\x8e\x76\x87\x61\x27\x08\xef\xb8\xef\x08\x3a\x9c\xce\xba\xa4\xee\x5e\xae\x68\x72\x17\x6c\xec\x4a\xef\xa6\x75\x53\x8c\x37\xd3\x07\x19\x0f\x89\x3e\xfa\x89\x21\x88\x8b\x10\x5e\x9b\x64\x74\x77\xfa\x1d\x9e\xb1\x5c\x59\x25\x25\x9b\xcd\x82\x30\x72\x5f\x20\x3a\x16\x12\xb9\x1f\xd8\x45\x68\x6b\xd1\x05\x5b\x19\xd2\xdc\xc3\x7d\x81\x1c\x39\xbb\xdf\x8a\xc1\x0f\xda\xc7\xe9\x43\xf7\x6c\x1b\x12\x74\xe2\x5c\x61\x27\x05\x0f\x42\xe7\x72\x2b\x22\x9b\x79\x37\x63\x1e\xe4\xdb\x2e\x53\x6f\x4c\x58\xf2\xb8\x06\xe3\xb0\xd0\xca\xa3\xae\x8f\x1b\xb7\x70\x1a\x33\x78\xe6\xf6\xe7\x3e\xc4\xb8\xf5\x3a\x00\x78\x04\x2f\x71\x2b\xde\x42\x38\x20\x5f\x58\xde\x84\x88\x8f\x5c\xaa\x82\x97\x06\xc1\x46\xb3\x15\x1e\xee\x44\xce\x24\xe5\xe4\xa1\x89\x97\xaa\x70\xeb\x4f\x55\x05\xf8\x76\xfa\x7b\x26\xec\x29\x8a\x4a\x22\x71\x5e\x75\xd3\x1c\xe3\x11\xbd\xd0\x4c\xba\xd1\x46\x88\x39\x38\xc0\xa0\x32\xaa\x06\x55\xb4\x0c\x6a\xc2\xe9\xd7\x25\xc4\x34\x2a\x71\xa4\xea\x90\x6d\x68\x9a\x92\x96\x36\x2e\xd6\xbb\xa6\x81\xf0\xe1\xb0\xaa\xc3\x68\x5d\xa5\xb7\x1e\xa8\x9c\xe4\xba\x5e\xa3\x2a\x94\x62\x71\xae\x92\x0a\x36\xa1\x06\xa5\x89\x34\x28\x8d\xd3\xa0\x34\xf1\x6c\x37\x00\xb5\xd3\xd5\xa0\x34\x5b\x60\xdf\x9a\xde\x6d\xd0\xf8\x6d\xd0\x74\x61\xdf\x66\x8d\x7f\xbf\x69\xd2\x95\xef\xde\x40\x33\xbc\x06\xa5\x45\x88\xf2\x67\xb7\x57\x6c\x12\x08\xa3\x66\xec\x32\x4c\x23\x86\x12\xdf\x4a\x5a\x39\x6a\x65\x6e\xbe\x66\x51\x03\x65\xaa\xdb\xd6\x34\xc9\xa9\x52\x04\x95\xa1\xe5\x68\x44\x93\x1a\x4f\x8f\x06\x2c\xa1\x48\x9a\xef\x88\x29\x52\xe3\x29\xd2\x80\x6d\x24\x75\x57\xeb\x1b\x49\x87\x80\x4f\x76\xdf\xc0\xcb\xba\xcd\x50\x99\x9a\x4c\x7b\xcd\xca\x86\xd8\xb9\x64\x45\x39\x59\xd2\x7a\x36\xd3\xab\xbe\x91\xa8\x24\x4b\xb2\xf2\xcb\x67\x69\xa6\x2b\xcb\xee\xc1\x0f\x5d\xc6\x32\x9e\xd4\x25\x59\xba\x5c\xfe\xbe\x70\x09\x68\xac\xdd\x09\x5d\xf6\x4e\xe8\xd2\x4f\xe8\xb2\x9d\xd0\xda\xdf\x85\x2d\x7d\x86\xcd\x32\x9d\x51\xf7\x06\xda\xe0\x66\xb4\x99\xa3\x92\x0a\xdd\xb9\x60\xa4\xf5\xce\x2a\xdb\x5d\x15\x6e\xa9\xb1\x60\x57\xcd\x47\x66\x16\x76\x8d\xf3\x32\x49\xc0\x60\x3f\xd5\xa6\x04\xc5\x06\xbb\xa0\x1d\xe3\x96\x5d\xab\xdc\x46\x10\x61\x5b\x7a\x26\xd2\xdd\x71\xb7\x17\xf4\x95\xfb\xb8\xdd\x29\xbe\x2e\x60\x32\x21\x42\x58\x5a\xcf\x97\x14\x03\x96\x21\xfd\x2a\xcb\xaa\x77\x7e\x2a\x3f\x3f\x55\x8f\xca\xf2\x9e\xa1\x8c\xee\x15\x36\x94\x00\x49\x30\x96\xae\xd2\x09\x73\xd9\xa0\x61\xdd\x2d\x58\x7f\xb9\xf0\x75\x2f\x14\xc2\xee\x91\x87\x1d\x21\x2c\xe2\xda\xbc\x0c\xec\x8f\x12\x3f\x4b\xc1\xe5\x7a\xcc\x3f\x36\x7d\x30\x82\xf0\x2a\x17\x33\x66\x85\x2c\xef\x46\x17\x3a\x2c\x00\x4a\x4a\x87\x6f\x73\x93\x65\x2f\xb5\x8e\x2a\x71\x4c\x05\xb1\xea\x53\xe3\x8f\x34\x12\xc5\xa2\x6a\x46\x06\x8f\xf7\x66\xe9\x3d\x94\x04\xa0\xa7\x66\xd9\x6b\x66\x54\x88\x4f\xb9\x89\xb8\xa9\xe8\x53\x0b\xc4\xdb\xd0\xc9\xac\x79\x5c\x39\xa4\xc6\x66\x87\xee\xf9\x53\xef\xa8\x39\x26\xa5\xfe\xb3\x33\x3d\x9e\x05\x0a\xad\xf9\x25\x47\x5c\x1f\x20\x77\xab\x86\x5e\x30\x9b\x2b\xd6\xe8\xfc\x64\x93\xaf\xf5\x5f\x49\x4a\xa2\x3c\xe3\xc5\x62\xcd\xf0\x4b\xd3\xea\x7e\x95\xec\xf3\xee\x4b\xa7\xf9\xd5\xfc\xdb\xc9\xb5\xd0\xe7\x8e\x41\x74\x19\x5f\x17\xf2\xd5\xaa\x56\xd5\xb2\xd6\xfc\xdc\xd6\x77\x74\x38\x14\xe3\x2b\x9f\x11\x86\x10\xc0\x32\x40\x79\x81\xe7\xcf\x74\x9d\x51\x1e\x46\x86\x53\x9c\xab\x21\x8d\x3e\xf5\x4a\x41\xe1\xbc\xfb\xc0\x41\xbe\xe7\xfb\x38\x03\x19\x4e\x70\xde\x97\xc9\x3d\xce\x8f\x8e\xf3\xd1\x48\xd7\x89\x37\x9b\x50\x3c\x7a\x90\x87\xf8\xa6\x2d\x9d\x49\x4f\x94\x3d\x8c\x67\x61\xac\x1e\x4d\xd8\xa0\xea\x8e\x5b\x53\xc4\xdf\x02\xc4\x6f\x20\x62\x59\x5b\x46\xb8\x17\xb6\xcf\x74\x38\x25\x57\x0a\xa5\xc6\x90\xf1\xe6\xda\x0b\x77\xd7\x14\x2e\xc1\xc0\x38\xcb\x35\x3c\xb6\x50\xd2\x7c\x76\x8e\x34\x0b\x4d\x5a\x83\x82\x77\x92\xfe\x0a\x22\xb5\x53\x34\x79\x2b\x12\x3e\x6b\xaf\x74\xac\xfb\x71\x68\x0f\x4a\xc4\xbc\x3f\xb0\xa2\x26\xb1\x37\x35\xc3\x63\xc9\x94\xd3\xeb\xcd\xab\xf0\x17\x1a\x59\xc4\xe7\x11\x19\xf1\x86\xb3\x11\x19\x55\x57\xcb\x46\xa8\x82\xab\x91\x66\xd9\xec\x6b\x6a\xde\xe6\x28\xae\xb8\x69\x31\x5a\x50\x93\x8a\x9b\xb6\xf2\x96\x09\xca\xb2\x26\x55\x32\xfa\xea\xf1\xbc\x71\x75\xe5\xd6\x48\x08\x3e\xf7\x0d\x78\xc6\x83\xb6\xea\xd1\x77\xb4\xff\x81\x1f\x14\xd6\x3b\xfd\x62\x3e\x1a\xe5\xe9\x35\x8f\x3b\x97\x5b\x4b\x9c\x56\x1f\x15\xcf\xd5\x36\x53\xd0\x10\x65\xf8\x16\x86\xc5\x1c\x34\x0e\x29\x3c\xb4\x8f\xa9\xe2\xeb\xb1\x3f\x61\x50\xe3\x2c\x6a\xf8\xbf\x6a\x51\xc3\xff\xbc\x45\xcd\x2a\x95\xf3\xa7\x8f\xf2\x6e\xda\x77\xe6\x14\xda\xb3\xa7\xd3\xde\xf4\xab\x14\x62\xab\x48\x49\x90\x9c\x20\x5e\xc9\x79\xdb\xd5\x01\xcc\x9c\xae\xa6\x3d\xcf\x9c\xf8\x05\x77\xfd\x21\xc2\x03\x67\xd7\x83\x7f\x14\x10\xe8\xbc\x13\x9b\x41\xb9\xb3\xef\x7d\x19\xe0\xa7\x80\x41\x3b\xd7\x8b\x17\x02\x42\x21\x3e\x2e\x16\x0b\xab\xae\xba\x60\x1c\x09\x22\x30\xe8\x75\xc0\x42\x7a\x29\xb7\xaa\xa6\x5f\x15\xcb\xb9\xfd\x9b\xbf\x2a\x96\xad\x6a\xfa\xcc\xb3\xda\x88\x43\x60\x67\x67\x72\xa8\x8a\x73\xba\x4f\xb8\x8f\x40\x7d\x6b\x15\x9b\x01\xa0\x99\x70\x4a\x68\x8f\xba\xd1\x06\x7a\x0e\x14\x5b\x2f\xe4\x7a\x8d\x5e\x80\xe5\xf3\x4f\x92\x0a\x4c\xac\x3a\x7c\x43\x02\x84\x8f\xc5\x9d\xed\xf0\x08\x76\x10\x23\x71\x9b\x89\xfd\x6c\x8b\x12\xda\xa3\x11\xba\xe6\xb6\xbd\xea\x02\xb7\xd8\xc6\x11\x81\x1c\x28\x59\x44\x7a\x12\x80\x91\xaa\xff\x0e\xb2\x8a\xdc\x2f\x9e\x15\xaa\xbc\xd0\xab\xa1\x77\x78\xfa\xae\x38\x45\x6b\x50\xfe\xa3\x9c\xff\x28\x61\xe9\xbc\x67\x0a\x1d\xa9\x8b\x4a\x1e\xe3\xfc\x47\x69\x56\xc2\x45\x25\xfd\x78\xb6\x18\xf3\xe6\x52\x41\xbf\xec\xb6\x03\xb9\x8b\x83\x5b\xff\xea\x3d\x5c\xf7\x3b\xea\x3f\xe7\xf9\x68\xb4\xc1\x1b\x4c\x38\x74\xff\x42\xd2\x57\x85\xba\x18\x97\xac\xaa\xc9\xa9\xdc\x0e\xac\x7d\x95\xbe\x33\x60\x0a\xaf\x24\x9d\x90\x73\x49\x1f\x92\x8f\x92\x4e\x1f\x90\x1b\x49\xf7\xf7\xc8\x81\x4e\xbd\x96\x74\x4a\xfe\x90\x74\x8f\x9c\x48\xba\x4f\xde\x48\x7a\x8f\x7c\x90\xf4\x3e\xf9\x24\xe9\x03\xf2\x5a\xd2\x57\x92\xbc\xb4\x8a\xaf\x43\xfb\xf7\xbd\xfe\xf0\x77\x49\x0f\x24\x79\x66\x93\x2e\x25\x9d\x4e\xbe\xdb\xff\xee\xde\xf4\xe1\xde\x3e\xf9\x25\xfa\xf5\xdc\xe6\x79\xaa\x3f\x7b\xab\x79\x61\x7d\xde\x4d\xc8\xaf\x92\xde\x9f\x4c\xc8\x6f\xf6\xf5\x0b\x78\xf3\x93\xfd\xf5\xa3\xfd\xfb\x3d\xa4\xfe\x6c\x7f\xfd\x5d\xd2\x47\x13\xf2\x83\xfd\xf5\x57\x5d\xca\xdf\xec\x8f\x6f\x64\x08\xff\xfd\x17\xe9\x97\x13\x7a\x2d\x33\xf4\x51\xae\x6f\xa4\x31\x3f\x91\x73\xdf\xb6\xe9\x2e\xd2\xc7\xee\xb7\xd3\xc9\x7a\x82\x73\x7d\x94\x7d\x23\xe7\xdf\xc8\xfc\x9b\xa0\xfd\x51\x9e\x76\xb3\xfc\x23\x54\xdf\x5b\xfb\x42\x60\x28\x8c\x89\xa1\x33\xfe\x6a\x87\xc1\xee\x9f\xdf\x1a\x04\xa6\x5d\xf0\xc9\xbd\xac\x85\x7d\x79\xf4\x08\xcc\x7f\xda\x0f\x72\xff\xb8\x07\x6e\x10\xaf\x65\xf6\x51\x9a\x1e\xb8\x6f\xde\xcb\x10\x0a\x1f\xb3\xb0\xd5\x7b\xf7\xff\x13\x4d\x77\x10\x0a\x92\xd8\x0e\x9a\xac\xf9\x58\x99\xeb\xa6\x57\x72\xbd\xbe\xcf\xf6\x75\xcf\xf0\xb7\x7b\xf7\xd7\x13\x77\xb0\x3a\xe1\xdc\x45\x45\x78\x94\x07\x05\xef\x87\x14\xff\xd1\xc3\x3c\xaa\x73\x3a\xe9\xa9\x73\x7a\xdf\x0e\x5e\x74\x58\x3c\xb2\x87\xc5\xa3\x07\xf9\xe7\x9b\x7d\x7f\xd2\x36\x31\x2c\xe3\x7e\xce\xe8\xde\x9d\x9a\xc8\xfd\xbd\x07\x38\x8a\x4b\x36\xa4\xf4\xa5\xcc\x32\x88\x2d\x21\xb3\x6c\x77\x97\x11\x06\x7b\x8c\x95\x44\x95\xe1\x12\xe2\xa5\xc7\x87\xbf\x3f\x79\xfc\x57\xa7\xc8\x88\x16\x9d\x3f\xcb\xc0\x84\x29\xba\x9a\x10\x36\x0e\xa9\xd3\xd7\xc2\xc4\xb7\xc3\x08\x88\x59\x7a\x4e\xcf\xed\x9c\x66\x59\xb8\x50\x29\x2c\x54\x59\x22\x86\x73\x54\xe9\x3f\x7a\x2f\x9a\x7c\x3f\x6b\x4e\x31\x37\x89\xe8\x5e\xf6\x5a\x9a\xdc\xeb\xf5\xa3\x87\xe6\x8e\xf2\xd1\x23\x03\xe3\xe0\xe8\xd7\x0f\x72\xfe\x83\x74\xe0\x9e\xe8\x08\x80\xb4\x8e\x71\x8e\x42\x94\xcf\x1f\x24\xa0\x7c\x32\x8c\xd7\x6b\xfe\x44\xe1\x2c\xfb\x41\x02\xd8\x27\x74\x22\xbc\xb7\xb2\xc3\xd2\xb1\x50\x56\x7d\x16\xca\x0a\xfb\xd3\xb9\x63\xa1\xcc\xb3\x8c\xf7\x15\x92\x26\xba\x42\x44\xcb\x9b\x58\x03\xdc\x96\xe1\x11\x59\xd6\x1a\x56\xc7\x21\xd5\x61\x4d\x27\x81\x6c\x4d\xe0\x66\xd1\xb6\xc9\x99\x86\x1f\x76\x9b\xd3\xfb\x86\xaa\xf0\x52\xb8\xd7\xf7\xc2\xf6\xe5\x8e\x8f\x41\xb2\x35\x3d\x32\xcd\x17\x46\xc4\x6f\xa8\x48\xd5\xbc\x1b\xe1\xb3\x26\xab\xb9\xc9\x32\xf4\x52\x2f\x0d\xfd\xf0\x0a\x2e\xd2\x7e\xd7\x3f\xdf\xc8\x2c\xfb\xb1\x44\x0d\x79\x2f\x31\x26\xdf\xeb\x27\x85\x31\x69\x82\xeb\xb9\x32\x64\xb8\xe0\x3a\x44\x37\x93\x2d\xc0\xca\xd5\xd6\x62\x50\x73\x55\xfe\x13\x4c\x3b\xb5\x37\x29\x6f\xcd\x4d\x09\xd8\x7e\xce\x91\xfb\xfc\x6d\xc5\xcf\xcd\xd7\xf8\x89\x47\x36\xfa\x2b\x6f\xae\xb9\xcd\xff\x92\x7d\x64\x35\x9e\xab\x9c\x85\x10\xea\xb0\x92\xdd\xcd\x65\xa7\x21\x98\xf9\x23\x3b\x19\xc5\xe0\x88\x69\xf3\xbc\x15\x55\x23\x2a\x75\x43\x1f\x3d\x0a\x52\x81\xf7\xfb\xbe\x41\x32\xe2\xec\x2c\xc1\xb3\x43\x00\xc3\x41\xf4\x4a\x0d\xbf\x9a\x79\x78\xa5\xc0\x2c\x20\x29\xd8\xdd\x5e\xf5\x37\x73\xd2\xdb\xba\x49\x50\xb7\x00\x4c\x5c\x5d\x53\x42\x1f\x04\x7d\xf4\x28\x9f\x9a\x90\xaf\x7b\x2e\xe5\x7e\x2e\xe8\xe4\x09\x45\x82\x02\xb9\x6d\xe9\xa4\xc2\xbb\x49\x8a\xc0\x78\xfe\xe8\x51\xbe\x77\x7f\xf2\x84\x8a\xf9\xa3\x87\xf9\x7d\xf7\xf8\x5d\xfe\xe8\x7e\x2b\x6c\x5a\xde\xac\xdb\x4e\x00\x29\xde\xd6\x31\x03\xde\xf7\x84\x0a\x6f\xb0\x37\xa4\xf4\xb2\xc9\xb2\x93\x06\x71\xbc\xd9\xfa\x9d\xea\x1b\x10\x41\x14\x4d\x7a\xdf\x33\x5f\xf9\x8f\x0d\x12\xa4\x88\x53\xc9\xad\x3d\xd1\xf2\xee\x80\xe8\xa3\x7b\x83\xd3\x95\xa0\x36\x01\x41\x2b\x5a\x3a\xaf\x79\x08\xe2\x23\xb8\xfc\x6c\x96\xbc\x9e\x1b\x4c\x0c\xb9\x0d\xc4\x0d\x58\x2e\xce\x16\xdc\xb0\x01\x2a\x59\x3b\xa4\xc3\x7a\xa4\xd0\xd0\x7b\xdf\x99\x63\xe3\x43\x89\x30\xd1\x23\xaa\xcf\x26\x0e\x67\xd3\x7a\xbd\x30\x17\xaf\x6e\x9a\x0e\xa5\x93\x4f\x5e\xcb\xd9\x6b\xb9\xa6\x1f\xe5\xac\xbd\xf9\x39\x2d\x11\x9e\xcd\x0c\x5a\xb0\x7e\x34\x54\xc3\x5c\xe2\x96\xf8\xf6\x42\x97\x55\x82\x03\xdd\x3f\x1a\x04\x87\x89\x20\xa7\xd2\x9b\x7d\x34\x86\x68\x5c\xbb\x16\x2a\xfa\x4c\x12\xd7\x80\x1f\xed\x5f\x33\x06\xe1\xfd\xd6\xa1\x74\x01\xa7\x1a\x20\x0d\xbc\x92\x17\x6c\xf1\x4b\x23\x2e\xf5\x50\x98\xb2\x03\x22\xdb\x66\x49\x96\x04\x27\xb5\xad\x43\xd0\xdf\x5b\x86\xd3\xb1\x20\x07\xd2\x30\x0b\xd7\x32\x3d\xde\xef\xe9\x73\x17\xde\xfd\x21\xc1\xd2\xc4\x4c\x06\x4c\xdd\x9e\x1b\x85\x3f\x60\xaa\x02\xc6\xe1\x04\xf2\xba\x6e\xe9\xf1\x46\xc2\x52\x9e\xf7\x00\x36\xbd\xb0\xb4\x07\xf6\x7a\x2f\x15\xa3\xd7\x25\x6a\x30\x26\xd1\x9a\xbd\x94\x59\x36\x9d\x3c\x46\x0d\x7d\x27\x77\x7e\x95\xb0\xfa\x0c\xf8\xdf\x5b\xd9\x7a\x65\xc5\xa4\xd2\x11\x98\x6a\xbd\xae\x9e\xe8\xb6\xa7\x19\x28\x77\x13\x61\xbb\xb3\x71\x46\x1e\x95\x59\x84\x38\xcb\xaa\xa1\x17\xef\x03\xf7\x04\x63\x90\xd1\x2d\x50\xb8\x58\x91\x8e\x15\x34\x00\xa4\xf4\x1f\x1c\xfd\x91\x6c\xad\x66\xeb\x18\xbe\xf9\xf7\x8d\xe1\x5b\xcd\xfc\x00\x1f\xd2\x74\x4f\x92\xf5\xba\xd1\xc3\xf2\x05\xe3\xe2\x86\xa5\xf1\xc3\xd2\xfc\xa9\x61\x89\xe8\xf0\x90\xd2\x5f\xe4\xbc\x43\x6b\x7f\x91\x86\xb6\xe4\xc9\xfc\xcf\x05\x9d\xe4\x5d\xd2\x7c\x29\xf1\xee\x7d\xb6\x4f\x26\x4f\x90\xd0\x0d\x84\x85\xb1\x0b\x3e\x41\x82\x4e\x30\x41\x3c\xfd\x82\xe3\xdd\x06\x3f\xd6\xb9\xa7\x7b\x93\x27\x62\x3e\xdd\x9b\xe4\xf7\x1e\xea\xa7\x7b\x0f\x27\xf9\x74\x02\x8f\xfa\x4f\x3e\x7d\x64\x32\x3c\xda\x9b\xe4\xfb\x6c\xff\x89\x98\xef\xb3\xfd\xfc\xde\x3e\xa4\xea\x3f\xf9\xf4\xd1\x83\xc9\x7f\x5e\x48\x24\xbe\xd5\x4f\x6d\xc5\x1c\xd6\xef\x63\xa1\xc7\xe2\xb3\x2b\x41\x6c\x5d\x09\x1f\x60\x25\x44\x43\xa6\x37\x82\x25\x5b\xcf\x25\xbe\xad\xe8\xa5\xb4\x4e\xfb\xcf\x41\x64\x31\xe7\xd7\x64\x2d\xc7\xa7\x2b\x79\xf3\xaa\xe2\xcf\x57\x86\x1a\xbc\x92\xd8\x0c\x61\xe3\xdf\x3e\x67\x75\x71\xf3\x4a\x12\xa1\x17\xbc\x1e\xb8\x5d\x94\x8c\x55\x85\x77\x91\xce\x9d\x08\x36\x18\x3f\xa6\xcd\x7c\x92\x37\x3b\x62\xb7\x72\x3d\x75\x0b\xf6\x6b\x7a\xdc\xed\xf2\x27\x99\xff\x18\xae\xbd\xad\xd2\xc7\x23\x0c\x34\xd7\x50\xce\xe4\x14\x6a\xef\x8d\x06\xc9\x89\xb6\xe9\x0f\xbd\x25\xef\x64\xd8\xe0\x00\x72\xec\x5a\xc4\x1b\x6d\x21\xba\xba\x7e\xd3\x33\xa7\x12\xfd\x73\xe7\x95\x0a\xcf\x2b\xd5\x39\xaf\x78\xcf\x79\x25\xc2\xf3\xea\x3c\x3d\xaf\x1a\x7b\x5e\x35\xd1\x79\xc5\xc3\xf3\x4a\x24\xe7\x15\xf7\xe7\x95\xb2\xe7\x95\xf2\x67\x76\x20\x97\x1d\xa6\x3d\xda\x7b\x30\xd5\x5c\xe0\xbf\x70\x74\x29\x73\x74\x39\xb6\xfb\x93\x9c\xdb\xea\x73\xe4\x8e\x31\x18\x64\xdb\x9c\x2d\x53\x5b\x96\x08\xdf\xc2\xf0\x4f\xd7\xa1\x08\x98\x65\xa1\x7d\x5a\xdb\x91\x1f\xa4\xb3\x56\xfb\x41\xce\x7e\xf0\xd6\x4a\x3d\x01\x67\x35\x6b\xf3\x33\x84\x32\x87\x16\x28\x08\x39\xab\x45\xc8\xcd\x06\x61\xa2\x27\x32\xd0\x6a\xd8\xae\x78\xeb\x37\x60\xf6\x9f\x42\xec\xa1\x50\xda\x39\x59\xb0\x33\x26\xe0\x29\x16\xd5\x9e\x68\x96\x10\xfd\xd8\xa0\x47\xdf\x45\x86\x75\x5e\x39\x79\xd2\xf0\x67\xcd\xd5\x12\xc2\x12\x99\x95\xa2\x9b\xf3\xbb\xa4\x9f\x64\xd0\x8c\x55\xd4\x0c\xbb\x7c\xa6\x60\x6c\xe7\x54\x84\x60\x78\x55\xf1\xa2\xae\x6f\xf4\xb8\x51\x8e\x03\xe9\x38\xe0\xee\x96\x65\x1a\x0f\xc5\x16\x77\x2f\x2c\xee\xa7\x06\x3d\x7a\x48\x58\x04\x9b\xcd\x41\xb1\x1b\xd6\xd1\x6c\xa9\xe3\xac\xdb\xdc\x8c\xee\xee\x11\x5d\xcd\xb9\xfc\x53\xcd\x5e\x78\x29\x3b\x5a\x99\xde\x9a\xad\x77\x29\x4e\xbc\xac\x1d\xd1\x36\xbd\xfe\x77\xa7\x5e\x74\x89\xe9\xde\xee\x94\x30\x11\xda\x38\x1f\x1a\x17\x0a\x4e\x0f\x65\x62\x85\xc6\x67\xde\xe2\xd4\x1b\x70\x44\x5e\x65\xce\xd4\x14\x34\xc4\x20\xf7\x3e\x6b\xa1\xba\x3c\xf4\x41\x13\x18\xdb\x34\xd6\xfd\x2c\xba\x97\xf3\x1e\x64\xb1\xad\xe1\xbb\x0a\x89\xc4\xd6\x50\xe7\x9c\xc5\x97\x6f\xee\x76\xc2\xf8\x6e\x45\x2f\x27\xb9\xd2\x45\x84\x36\x61\x2f\x25\x65\xe4\x50\x82\x93\xa3\x07\x1e\x01\xad\x37\x79\x2f\xa9\x4a\x94\x9c\xbf\x48\x7a\xf9\x19\xcd\x66\x10\xc2\xa6\x6c\x7d\xb5\x66\x33\x63\x9c\xe9\xa8\x59\x51\x20\xaf\x01\x38\x94\xde\xe1\xcf\x8f\xb8\x3b\x16\x7e\x97\xf4\x1a\xaa\x37\x8d\x9a\xb1\xdc\xed\x4c\x22\xda\xdc\xa4\xa1\x87\x92\x54\x06\x72\x5a\xd1\xf7\x92\x34\x11\x9e\xcf\xe4\xde\x43\xd2\x44\x16\x90\x4d\xc7\xf8\x31\xd0\xa5\xf7\x85\x85\xee\x57\xb0\xab\x0b\xc6\x9d\x33\x55\x45\xa4\xc1\x62\x99\x66\x81\x37\x3d\x29\x5b\x6b\xda\xda\x78\xa2\xc0\xb5\x5b\xd9\x46\xf7\x5c\xd1\x72\x6b\x74\xcf\x15\x76\x9e\x2b\x74\x15\x5c\xba\xb5\x92\xf3\x32\xf8\xd8\xdc\xee\xd5\xed\xb5\xe4\xd2\x43\x50\x64\x19\x1a\x9a\x94\xbb\x70\x5a\x86\x12\x03\x6f\x6d\x83\xca\x9f\xd1\xb2\xef\x16\x8a\x52\x7a\x66\x32\x2c\xdc\x95\xc0\x6c\x01\x37\x01\x05\x26\xd1\x17\x74\x61\x8c\x54\xce\xec\xdb\x59\xab\x29\x2e\xad\x9a\x58\xaf\x88\x32\xc6\x19\x08\x27\x4f\x53\x91\x47\x0f\xa7\x64\xea\x0c\xf8\x70\x68\xf9\xd5\x3a\x66\x37\x06\x1a\xf7\xbb\x76\x60\x2e\x68\x59\x05\x2c\x99\x59\xd3\xb3\x0b\xc8\xb7\x47\x56\x15\x6a\xc8\x05\xde\xa4\xd8\x22\x1d\x35\xef\x80\x6d\x5c\x84\x28\xd2\x58\xe0\xa5\x53\xca\xc7\xcb\x8a\x9f\x3f\x2b\xca\x8b\x70\x54\x4e\xe7\x28\x7a\x05\xa3\xb3\xd4\x0b\xd3\x0e\x13\x39\x05\x85\x62\x01\x10\x49\xad\xee\xb1\xa2\xa7\xa0\x7a\x2c\x20\x3a\x7b\x6f\x6e\x32\xac\xe0\x02\xae\xd1\x23\x06\xa3\xd9\x18\x95\xe0\x15\x3d\x0c\x39\x27\x0e\x58\x75\xb3\xc2\xdc\xcc\x5d\x91\x2b\xbc\x89\x46\xf7\xde\xe4\xd1\x03\x52\x76\xd4\x8b\xbe\xaf\x25\x75\xe1\xb7\xe3\x80\x69\x25\x9e\x55\xd4\x30\x0c\xe8\x1b\xd4\x18\xbf\x8e\xf5\x7a\x74\x30\x80\xbb\x96\x41\xd9\x06\x49\xde\x19\x0d\xa4\x13\x7f\x06\x50\xc8\xc0\x43\x60\x90\xc1\xe9\x4a\x0d\x78\x33\x70\xeb\x72\xf0\xd3\x8b\xc1\x75\x21\x07\x72\xc9\xca\xea\xac\x62\x8b\xf1\x3f\xf9\x3f\xf9\xc1\x62\x31\x28\x06\x8f\xdf\xdb\xb0\x47\x3e\x37\x1d\x8f\xc7\x4f\xda\xba\x06\x17\xd5\xf9\x05\x13\x83\x8a\x0f\xd4\x05\x1b\x28\xc1\xd8\x40\x35\x83\xa5\x68\x3e\x56\x0b\x36\x28\x06\x75\x53\x68\x51\x6b\x50\xf1\x45\x55\x16\xaa\x11\x83\x46\x0c\x96\x75\x51\xb2\x8b\xa6\x5e\x30\xa1\x73\xdb\x6b\xf5\xf1\x68\xe7\x2f\x7a\x74\x37\xbf\xcb\x21\xa5\x1f\x34\xdb\xf1\xbb\xa4\x7f\x48\x4c\x2a\xfa\x97\x02\x55\x06\x5f\x14\xb6\xb2\xa5\xfc\x65\x40\xf9\xf7\x73\xbd\xff\xbf\x64\xa4\xc9\xb2\x42\x25\x39\x93\xa8\x24\x05\x5c\x97\x45\x06\x7e\x53\x5d\x0e\xcc\xeb\x2b\x4d\x21\x6e\x96\x0c\xe2\xfa\x47\x66\x4a\xe8\xc1\xbd\x2c\xa8\x09\x8e\x4f\xcd\x73\xf4\x51\xa8\x57\x5b\xaf\x29\xbd\x8d\xe7\x79\x3f\x6d\x3b\xef\xbf\x3c\x74\xd7\x81\xeb\xf5\xf0\x47\x09\x2b\xf2\x1c\x6b\x01\xff\xcb\xbb\xbe\xe8\x74\x7d\x73\xc7\xaa\xdb\x1c\x4a\x7a\x50\xa2\x43\xe9\xcc\xf1\x3f\xe2\x5b\x45\x3f\xb6\xb6\x01\x56\x3e\x69\xc3\x93\x95\xde\x8b\xa1\x65\x96\x9d\x2a\x37\x60\x9f\x5f\x15\x1e\x83\x6a\xfe\xaa\xc8\x03\x60\xfe\x2b\xc7\x78\x3c\xd6\x32\xdc\xde\x63\x96\x65\xe8\x52\x52\x86\x03\xb3\x77\xf6\xf8\x17\xff\xee\x17\x7d\x82\x3e\x97\x34\xb4\x83\x7f\x05\x72\x0a\x7b\xf2\x54\xaf\xa3\xa7\x32\xc2\xbd\xd6\xcc\xfe\x6d\xa8\x8d\x3f\x94\x33\x7c\x28\xe9\x8d\xe9\xa6\xcf\xf7\xb1\x9b\x2f\xcb\x86\x6f\x34\x57\xd0\x97\xfd\x26\x14\x8d\xca\x10\x42\x99\x30\xf2\x5e\x06\xee\xe5\xb1\x41\x7f\x02\x6c\xe0\x6c\x76\xb2\x0c\x29\x3d\xf2\x9a\x6d\xbf\x92\x91\x73\x14\x09\x34\xd7\x90\xe3\xf6\x50\x52\xe6\x0e\x39\xa5\x8f\xe5\x24\xc6\x5b\x7b\x50\x23\x7d\x16\x67\x87\x32\x5d\xbf\x60\xfe\x6f\x6f\x8e\x89\xd0\x27\x78\x45\x91\x2e\x0a\x47\xcd\x9b\xf5\x58\x02\xee\x59\x8e\xe7\x41\x64\x84\x74\xdf\x85\x7c\x8f\x8d\x00\x9d\x03\x14\xbe\x93\xed\x22\x48\xc4\x86\x51\x31\x94\x9c\xb9\x12\xb1\x00\x88\x22\x05\x9e\x4b\x13\x2c\x4a\x89\x37\x88\xf7\xcc\x8e\xf3\x2c\xcf\xb2\x4f\x05\x52\xce\x09\x90\xfc\x56\x24\x56\x25\xc0\xf8\x29\x4c\x04\xed\x09\x68\xee\x40\x65\xe3\x88\xe0\xe6\x29\xec\xc2\x8b\x02\x71\x03\xc8\x07\x3e\xc7\x16\xd4\xdc\x61\xa8\x77\x70\xcd\xbd\x81\x51\xe5\x0c\xdf\x63\xa7\x6f\x5d\x1d\xb4\x1a\xdf\x4a\x77\x3c\x72\x6b\x12\xdf\x52\x2b\x13\xb5\xad\x32\x84\x6c\x45\xab\x84\x53\x71\xc1\xe7\x8f\x1a\x71\x4c\x2b\x62\x4c\x20\x57\xa4\x76\xe6\x82\x67\xa2\xb8\x62\xa3\xdc\xb8\x8a\x1b\x9e\xcc\xfc\x60\x57\xa7\x6c\x31\xca\x6f\x38\x1a\x69\x12\x3f\x8a\xbd\x72\x46\x9a\xfa\x37\x36\x6b\xb1\x5a\x54\xcd\xc8\x9b\x39\x2f\xe9\x64\xb6\x7c\xfc\x0f\x1f\xc2\x7a\xb9\xb3\x83\x6f\x38\xfa\x07\x3b\x5a\x1e\x27\xa5\x18\xff\x48\x53\x0b\x38\x2d\xa6\xd5\x54\x57\xe7\xb6\x92\xea\xaa\x38\x77\x0d\xad\x2b\x7e\x99\x7c\x44\xb6\x35\xf4\xac\x11\x57\x26\xaf\x60\x92\x29\x9f\x57\xae\x4e\xaf\x2a\x95\xe6\x5e\x30\x55\x54\xb5\x34\x1f\xa8\xe6\xfc\xdc\xb8\x94\x46\x4d\x32\x16\x96\x9f\x18\xe2\x64\x65\xca\xaa\xf8\xc7\xa2\xae\xa0\x6a\xf2\x96\x23\x41\x46\x0d\x7f\x76\x51\xf0\x73\x36\xea\xb5\xb2\x4c\xec\x28\xe9\x6d\x60\x48\x99\x0f\x87\x2b\x6f\xb4\xb8\xf9\xaa\xe2\x5b\x0b\xcf\x5f\xbe\xb0\x71\x91\xa7\x7c\xad\xbf\x58\x1a\xf2\xd3\xe3\x1b\x2d\x35\xe3\x54\xd2\xd5\x91\x3c\x26\x89\x5d\xaa\x73\x31\x6e\x8f\xb6\x72\xce\xc7\xba\x39\xd6\x65\xd8\x46\x37\x5c\xd2\xa3\xf6\x4b\x52\x1e\xe3\xdc\xf9\x21\x07\x5f\x6a\x81\x3f\xfe\x74\x34\xda\xe9\x7e\xad\x13\x8f\x71\xde\xe3\x55\xec\xb6\x66\x09\x5e\xc5\x82\xc8\xd6\x15\xa0\x8e\xad\x64\x4f\x18\xe2\x98\x1c\xc2\x60\x41\x50\x9e\xde\xc1\x34\xb9\x9e\x42\x84\xe3\x9e\xc9\x8c\x50\x16\xb6\x81\x1a\x04\xe8\xc4\x01\x6a\x01\x8f\x50\x0b\x04\x5d\x92\x2a\x62\xed\x45\x10\xfc\xd4\x78\x26\x03\xeb\xbd\xa2\x92\x70\x5a\x91\x5a\x9f\xf7\x14\x2c\x3a\x5a\x33\x7b\x91\x8b\x71\x73\xcd\x99\x78\xde\x94\xab\x2b\x2d\x69\x96\x94\xd2\xb7\x6c\x7c\xa1\xae\x6a\x98\xc1\x77\x0c\xad\x30\x0e\x93\xe7\x23\x59\x8a\x6a\x09\xe2\xd8\x6a\x8e\xd0\x8a\x2e\xad\x33\xe6\xa1\xb1\x05\x43\xa3\x45\xf5\x71\x84\xf1\xb8\x72\x76\xca\x74\xf4\xd8\x7c\xf3\xe4\xf1\x3f\xbf\xb5\x4f\x23\xb2\xa4\xab\xc8\x6e\x7f\x15\x46\x08\xc2\x79\x77\x9d\xf0\x71\x25\xe7\xcb\x4e\x75\x2b\x72\x5b\xc9\x5c\xbf\xdc\xe0\x1c\xf5\xbc\xc7\xc4\x8d\x3f\x35\x2e\xf1\x2b\xba\x24\xbc\x35\xf6\x6d\xb7\x10\x1d\x4e\x00\x63\xe7\x0f\xcd\x47\xac\xe0\x81\x9a\xdf\x18\xe3\xbc\x53\xf4\xeb\xf7\xa8\xd4\xfb\x40\x17\x88\x81\x68\xd6\x64\x05\x44\x93\x93\x5f\x0b\xc4\xe9\x8a\x00\x6c\xd4\x70\x8a\x89\x0a\x4d\xfe\x80\x73\x35\x12\xdd\x53\x8e\x24\xa9\xfc\xa2\x93\x7f\x86\xd6\x12\x41\xab\x2f\xa0\xb7\x82\x4e\x66\x22\xa0\xb5\xc2\xd3\x5a\x01\xb4\x36\x29\xa5\x97\xde\xa6\x55\xfd\x39\x9a\x9b\x96\xf2\x79\xba\x9b\x7e\xb1\x85\xf6\x76\x9a\x17\xd0\xdf\xca\x22\x9f\xc0\x53\x0f\xb1\x2b\xb7\x91\x4a\xb7\x5f\x01\x0b\x25\x85\x34\xfb\x42\x32\x5d\x05\x64\xda\x02\xa3\x54\x1d\x60\x94\xaf\x69\x54\x42\xbf\x2b\x0b\x99\xf2\x35\x9d\xf3\x70\x40\xb4\xda\x3c\xd7\xcb\x50\x60\xe2\x94\x15\x44\xd3\x8d\x25\xe5\x33\x23\xba\x0b\xd0\x93\xd7\x9a\xf8\x5f\x68\x89\xff\x22\xa5\xa4\xce\xf7\xfb\x94\x5e\x1c\xd5\xa1\x17\x43\x3d\xbf\xe4\x68\x49\x4e\xef\xf6\x62\xa8\xe7\xd6\x0b\xe0\x94\x9e\xce\x4f\x63\x48\x0b\x9c\x65\x2f\x98\x2d\x22\x3c\x4a\xea\x9e\xa3\xe4\x74\x8e\xda\x91\x19\x1a\x48\x0b\xfd\xf7\x14\x67\xd9\x4f\xae\x90\xce\x31\x72\x6a\x5f\x8e\x46\x3b\xa7\x5f\x04\x61\x51\x7f\x06\xc2\xa2\x4e\x21\x54\xea\x3e\x4c\x8b\x1a\xdb\x5e\x9f\xc2\xe1\x53\x92\xda\x61\xfe\x9e\x66\xd9\xb5\x6e\x50\x4d\x4e\xc9\x59\xeb\x30\x2b\xb7\x9e\x48\x95\xa6\x31\x5f\x75\x22\xb9\x45\x6d\x2a\xac\x8c\xf9\xa7\x3e\x4e\x25\x53\x07\x4a\x89\xea\x74\xa5\x18\x1a\x41\x32\x1c\xa0\x07\x0c\xd9\x5c\xb8\x77\x03\x08\xf0\x16\xad\x02\x2f\x0a\x3a\x1c\xf2\x8e\x9b\x47\x4d\x79\xe0\xe6\x21\x48\x94\xa7\x06\x37\x0f\xeb\xf7\x13\xb9\x6c\x64\x59\x37\x37\xef\x38\x75\x6c\xc5\x09\xea\x07\x02\x8a\x8f\xd4\x6f\x0c\x25\x76\xa7\xa7\x13\x2e\xb7\x71\xe4\x9b\x24\x8c\xcd\x5d\xee\x20\x0f\x62\x2b\x41\xe3\x45\xd2\x27\x15\xfc\x64\xa4\x02\x9e\xb8\x3a\x55\xed\x85\x58\x17\xa1\xa5\xf2\x4e\x01\x9f\x6b\x82\x4c\x04\x16\x92\x00\x47\x81\x00\x31\x8f\x65\x2d\x80\xc4\x4e\xa0\x30\xe0\xa8\xd3\x82\x95\xf7\x6b\x30\x8a\x5a\x18\x38\x9c\xeb\x02\x08\xaa\x28\xd2\xdc\x86\x6c\xb9\x0d\x99\xcb\x98\xdb\xc0\xf6\x38\xfd\xc0\x3e\x81\xa7\x1f\xaa\x30\xf6\x65\xb7\xc7\x65\x15\x23\x14\x4c\xbb\xce\x2d\x16\x16\xad\xea\x04\x96\xe8\x87\xe9\xbe\x4d\x01\x14\xdd\x45\xfb\x80\x6d\x84\x53\xef\x56\x04\x82\x55\x38\xd9\x70\x0e\x83\x93\xa3\xca\xe3\x61\xc8\x34\xa2\x28\x26\xc2\xcb\x92\x6d\x34\x32\xc8\x17\x7b\x63\x78\xbf\x25\xbd\x1d\x54\xa8\x07\xc7\x73\x14\xfd\xa6\xd2\xc6\xf6\xb6\x3f\x6b\x08\x29\x15\x66\x50\xa1\xe2\x3c\xc9\x6d\x04\x5d\x19\x46\xe6\xc4\x98\x88\x2c\x1b\x56\x59\x66\xb1\x66\x5b\x3c\xe9\xd6\x43\x01\x34\xd3\xc9\xac\xdf\xa9\xa7\xee\xaa\xd9\xe7\x70\xf5\x78\x60\xd5\x76\x27\x12\xe7\x08\x14\x79\x3a\x05\x1e\x4e\xe4\x7a\xad\x5f\xbd\x91\x06\xf6\xf6\x69\x7b\x3f\xff\x52\x7f\xf5\x63\x89\x5e\x4a\xf2\x5e\x82\xa1\xe0\x4b\x49\x9e\x4a\x8c\x31\x26\x48\xac\xd7\x55\x27\xf2\xd7\xbd\x68\x7b\x59\x3b\xde\x87\x79\x8f\x33\x94\xb9\xa1\xe9\xca\xf4\xe6\x2a\x26\x4e\x7b\xe4\x5d\x19\x63\x97\x92\xbb\x94\x16\xd3\x47\xc1\x7a\xb4\x23\x8a\x3a\xeb\x12\xb7\x16\x20\xb2\x1f\x4a\xde\x7f\x5b\xd3\x00\xb1\x18\x5b\x78\xf6\xbf\x15\xc8\x50\x7c\x47\x83\xec\xd8\xb6\x21\xf0\x0c\x14\x30\xef\x2c\xfd\x08\x35\x36\xc1\xe8\x6b\xd7\xe4\x6f\x15\xe2\x18\x1b\x6d\x57\x02\x3a\x4c\x5c\xdd\xde\x83\xbd\xa2\x75\x1a\xa8\x25\xc1\x53\x22\xdd\x78\x41\x5b\x97\xb0\x71\xb7\x4a\x5b\x58\xcd\x30\xa7\x02\x02\x3d\xe1\xf0\x32\xe2\x5c\x75\x57\x3c\x91\x5d\x6c\x0d\xd9\x7b\xbd\x64\xc6\x37\xd0\x8e\xe1\x39\x92\x5b\xf0\xb2\x65\x07\xa4\x98\xc8\x10\x1d\x44\xf6\xe1\x72\xc8\x3e\xc8\x10\xd9\x75\x3d\x95\x5d\xc8\x10\x9c\x6f\x69\x4a\xdd\x97\xda\x6d\x5e\x9d\x24\xf8\xd6\xd6\x0e\x16\x3d\x69\x70\x9d\x50\xf9\xb4\xed\x75\x42\x5a\xe3\x6e\x44\x4b\x80\x70\x5a\x47\x3d\xea\xeb\x20\x10\x55\xfd\x90\xdf\xc6\x2d\xcd\x53\x6b\x6b\x62\xe4\x42\x1b\xda\x9a\x8f\xc3\x9f\x44\xb8\x30\xc8\x5a\x04\x6c\x7f\x6c\x70\xe8\xc2\x3c\x73\x91\x0e\x5a\x0a\xb5\xde\x33\x78\x59\x66\x99\x85\xe0\x1c\xde\xed\xd9\x1d\xb9\x43\x89\x23\x40\xa4\xdf\x2a\xcd\xee\x1a\xfb\xca\x64\x73\x80\x3f\x93\xd9\x21\x13\xbf\xff\x0d\x78\x78\x96\x39\x8c\x58\x9f\x64\xe0\x63\x79\x80\xd4\x7c\xe7\x3e\x12\x9d\x7d\xe4\x3e\x4d\xf6\x50\x15\x22\x0d\x41\x31\xe9\xa1\xe0\xcc\x88\x80\x7e\xfc\xda\x20\xfc\x24\x05\x3d\xcf\xb2\xe9\x63\x91\xd2\xd9\xb8\x87\x20\xd5\xa6\x97\x0a\xbd\x6b\x56\xec\x4e\xf1\x2c\x42\x62\x9f\xa3\x16\x33\x36\x45\x7f\xd6\x6b\xbf\x1d\x14\xd3\x19\x3c\x6f\x41\x65\xeb\xdc\xe7\x74\xe8\xed\x75\x18\x88\xc1\x74\x05\xdf\x4e\xfc\x40\x87\xdd\x42\x1d\x78\x77\xdd\x7f\x70\xe8\xd0\xd2\x23\xbc\x8c\x50\xe2\x3d\x32\xbc\x6f\x01\x09\x07\x38\x1a\x7a\x12\x43\xdf\x92\x2a\x0c\x1f\x62\x16\x61\x45\xe5\x7c\x9a\x55\xeb\xbd\x7c\x9a\x55\x7a\x0d\xb6\xbc\x47\x70\x8e\x7c\xa9\xc7\xa2\x89\x1a\xa4\x8a\x73\xbc\xb1\x48\x69\xd5\x19\x12\xf4\x50\xc2\x0d\xed\x7b\xb9\x5e\x4f\x87\x94\xf6\x3a\x0c\x18\xf2\x5e\x69\xda\xe6\x32\x04\xb1\x20\x10\xa7\x29\x4d\xc1\x4f\x2a\x73\x1d\x8a\x09\x90\xcd\xbe\x32\x6d\x16\xcd\x76\x84\x11\x24\x7a\x57\x45\xb5\x09\xdd\x28\x1d\x5c\x6d\x10\xcd\xd9\x5c\x4e\xb0\x9e\xbb\x35\x77\x55\x14\x52\x7a\x30\x25\x09\x29\xff\x61\x74\x10\x04\xe6\x24\xc1\x84\xb5\xac\x18\x8b\x53\xb7\x05\x2b\x4f\x0b\x8d\x50\x9b\xa2\xa2\x31\x99\x3e\x0e\x2f\x56\xfa\xab\x9a\x6f\xaf\x28\x4f\xbb\x93\x56\x86\xf1\x26\x09\x01\x80\x14\xfd\xa6\x40\xfa\x0d\xee\x46\x12\xca\xe8\xde\xe4\xde\x77\x24\x1a\xe1\xbb\x22\xad\x1b\xcb\x9e\xc4\x6e\x23\xdc\x68\x70\x21\xe4\xb9\xda\x76\x06\x0f\x25\x65\xf1\xc5\xe1\x61\x7b\xdf\x15\x31\x86\x1f\x2c\x12\x4e\x7b\x81\x75\x1d\x59\x14\x26\x38\xe7\xae\x86\x27\x6d\x78\x8f\x64\xfd\xcd\x55\x78\x75\xf8\x47\x50\x18\x78\x3b\x05\xc6\x55\x8f\xc8\x49\xea\x54\x9b\xb6\xe5\xa4\xb5\xc3\x07\xf3\xc2\x2f\x33\x46\x6c\x2d\xd5\x5a\x33\x29\x80\x0f\xec\xb7\x91\x0a\xb1\x99\x52\x80\xf6\xaf\xb3\xb5\x02\x93\x67\x6f\x34\x94\x4a\x80\xdf\x7d\x07\x66\x85\xff\xba\x9b\x08\xd9\x66\x3b\x6d\x8c\xbd\x1a\x7a\x5d\x22\x8e\x5d\xf3\x63\xd7\x1c\xda\x10\xf1\xb8\xcf\x26\x7b\x6e\xf3\x46\x89\x7d\x19\xb7\xf9\xf0\xd0\x49\x0e\x25\x77\x4b\x69\x57\x79\x5c\x90\x3e\x94\xda\xd6\xb4\x56\xd7\x7e\xf3\x07\x86\xd8\x93\x20\x67\x60\xe1\xda\xd2\x89\x36\x4d\xe7\x75\x76\xa8\xe8\x50\xd2\x97\x81\x8b\xaa\x26\x09\x01\x4f\x3e\x77\xfc\x77\x48\x0f\x10\xdf\x42\x10\xc0\xc7\x2c\x22\x3e\x79\x43\x79\x9e\x24\x3a\x2a\xe7\x63\xae\x58\xe3\xc2\x1b\xd9\xb9\x36\xfe\x2b\xa7\x1f\xb9\xbd\xb4\xfc\x89\x1b\x77\x9f\x1f\x39\x92\x86\xb5\xb1\x8a\x9d\xaa\xe1\xef\x55\x21\xd4\xa8\xe2\x03\x89\xcd\xd5\xe3\xad\xd4\x29\xb9\x1c\xc7\x59\x08\xe3\x8b\x30\xf1\x90\x2f\x36\x3e\xb4\xbc\xb9\x7a\x44\xa5\xfe\x97\xaa\x01\xb2\xac\xf4\xaa\x9c\x8a\x5d\xaf\xd7\xd7\x15\x5f\x34\xd7\x06\x50\xd3\x95\xa6\x33\x85\xbf\x4d\x7b\x6b\x23\xc8\xd6\x63\x51\xf0\x73\xf6\xac\x59\x71\x85\x6f\x4b\x5a\x8f\x0b\x5e\x5e\x34\xc2\xdf\x7a\xae\x7c\xd2\x9b\xb3\x33\xc9\x14\x59\xd2\x7a\x7c\xd6\x94\x2b\x09\x59\x6a\xf7\xcb\xbc\x35\x00\xa9\x5e\x73\x41\x96\xfe\xd1\x5a\x3d\x3c\xd7\x95\xf0\x10\xd6\xcd\x68\xf3\x27\x64\x41\x77\xa7\xe4\x42\xff\x77\x4a\x27\xe4\x8a\x4e\xc8\x2b\x2a\x89\x05\xec\x57\x1e\x8e\xca\xdd\x7f\x7e\x9c\xbd\x32\x08\x5f\x13\x03\xd7\xbb\xaf\xe9\x8a\xaf\x6d\xbd\x46\x0b\x7a\xb6\xb3\xc2\x44\xe7\x5a\x9a\x5c\x75\x4f\xae\x0b\x7a\xb6\x53\x63\xb2\x4f\xc3\xf4\x2c\x43\x67\x3b\xf6\x37\x68\x69\xac\xe2\xbf\xe5\x1b\x3f\xd2\x57\xe1\xa5\xcb\x0c\x9f\xd3\x57\xe4\x15\xfd\x38\x0b\x50\xb3\x5e\x01\x64\x96\xe9\x26\xd8\xf3\x9d\x53\xb8\xa0\xdb\xd9\x39\xb5\xd7\x29\x0b\x7a\x86\x89\x4e\x5d\xea\xd4\x2b\x6a\xd4\x9d\x17\x3a\x35\xac\x28\x0c\xcd\x6f\xe5\xdf\x73\x8a\x5e\xd1\x73\x1c\x80\x3d\x6d\x5e\xd1\x8f\x9b\x92\xee\x6a\xee\x65\xb1\x5e\xc3\xdf\x0b\x2b\x26\x98\x55\xb7\x80\x65\x76\x61\x79\x57\x33\x0b\x9b\x52\x0f\xa1\xcd\x30\x81\x0c\x93\x28\xc3\xec\x6f\x9c\xde\xc2\x04\xb3\xc5\x61\xcd\xae\x72\x49\xfc\x32\x7d\xa7\x57\x4e\x5e\x6e\xc8\x47\x4e\x87\x53\xf2\x9b\xa4\xcd\x6c\xd1\x80\x75\xe4\x9b\xd2\xc3\x4e\x3e\x0f\xc1\x2c\x7e\xeb\x50\xfe\xfd\x09\xc6\xb3\x97\x25\xfa\x4d\x92\xe7\x58\x97\xf1\x5b\x28\x97\x6e\xe2\xd3\xf0\x37\x89\x67\x61\x35\x70\xb1\x4a\x19\x29\xdb\x38\x18\xbf\x49\x6b\xda\x7a\xa3\x4b\x6a\x63\x20\x54\x67\x68\xfa\x20\xbb\x01\x85\xf5\x6f\x21\x54\xd9\x68\x84\xc9\x74\xef\x61\x76\x63\x3e\x3b\xd0\x9f\x45\x56\x1f\xb6\xe0\x03\xf3\xfe\x9a\x1e\x00\x5a\xaf\x4d\xbd\xde\x62\xaf\x74\x3d\xbf\x36\x28\xbd\xf9\x75\x44\x3b\xf0\xc6\xe9\xa4\x6f\x32\x34\xdd\x5b\x9f\xab\xf5\x47\x85\xad\x01\xc8\xb9\xca\xa5\x44\xbf\x49\x3d\x0e\x21\xf7\xf1\x7f\xcf\x55\xac\x05\xdd\x96\x8b\xd4\xfa\x45\x60\x30\xa3\x07\x2c\xf8\xf2\xa3\xca\x93\x6f\x3e\xaa\x58\x99\xb3\xf7\xb0\x9b\xe3\x73\xa5\xde\xcb\x3f\x93\xe1\x61\x5e\x4a\x24\xc9\x8a\xfe\x26\x49\x89\x49\x25\xd1\x0a\x6f\xba\x53\xfd\x5f\xb3\x5e\xaa\x33\x74\x4d\xff\xc6\xc9\x01\x90\x6a\x72\x43\xaf\xc7\xc1\x7a\x26\x25\xbd\x1e\xc7\x2b\x9a\x1c\x0c\x29\xbd\xc9\xf4\x5a\xb9\x89\xe9\x6d\x0b\xd2\x3a\x60\x80\xa0\x6a\x6d\xc1\x87\x68\xa8\xd6\xeb\xa1\x09\xac\x6f\x2c\x63\x20\x65\x1f\xb4\x81\x8e\xaa\x80\xaa\xd0\x38\x07\xf3\x56\xb7\x0b\x05\x85\x38\x88\xf9\xc8\x02\x14\x49\x7d\x72\xa8\xb9\x07\x2c\x92\x88\xe3\x7c\x38\x34\x28\xaf\x85\x60\xae\x55\x6f\x1b\x59\x19\x3a\x3f\x1c\xea\x35\xbe\x35\x03\xa8\xa6\xf0\x06\x25\xbd\x1a\x2f\xec\x83\xbd\x9c\x25\x37\xd8\xcb\xd6\x65\x96\xfd\xc8\xd1\x8d\x6e\xfa\x81\x31\xdf\x13\x8a\xb4\xf6\x9e\xd7\xb4\x1c\x33\xbe\xd0\xaf\xaf\xe9\x81\xbf\x2e\x0e\x8f\xbe\x9b\x39\xba\x49\x8e\x3b\x7a\x40\x6e\xa2\xc3\xce\x20\x62\x5c\x55\x1c\x5d\x93\x1b\x73\xc9\xe1\x28\x2e\xce\xd1\x35\x45\x07\x34\x69\xf3\x7a\xbd\x68\xcf\xc0\x83\x2f\x39\x03\xd1\x35\xbd\x4e\x8e\x41\xb2\xa2\x37\xa1\x11\x84\xad\x93\xc8\xb6\x3d\xae\xcb\x2b\x4c\x4a\xea\xfb\x0d\x9d\x9e\xcb\x3c\xc8\xc6\xf8\x42\x67\x1a\x5e\x8f\xd9\x27\xc5\xf8\x22\xcb\xe4\x93\x12\x6e\xcc\x4b\x52\x52\x49\x24\x5d\xe9\xfa\x5e\x70\x74\x43\x24\x26\x4b\xf3\x54\x62\xb2\xca\xb2\x65\x96\x21\x2d\x6c\x5e\x07\x67\xf1\x7a\x7d\x1d\x9c\xc4\x60\x34\xad\x97\x4c\x9b\x6c\xce\x5b\x78\xd1\xc0\xa3\x7e\xe5\xcf\x65\x30\x90\x76\x1f\x04\xe7\x33\xa4\x9b\xfc\x7a\xd2\xd0\x01\x3d\xb0\x57\x09\xb0\xf4\x11\x06\x90\x29\x98\x25\x64\x6a\x24\xae\x7c\x4c\xae\xad\xd5\xc1\x41\x5d\x43\x6e\x89\x30\x91\x4f\xca\x39\xba\x1e\x17\x8b\x85\x29\xe0\x40\x67\x33\x43\x80\x4c\x0b\x88\xaf\x10\xe7\xe8\x40\x17\x7f\xd8\xf3\x8e\x44\x65\x80\xc6\xfa\x80\x1e\x1d\xc3\x79\x7a\x4d\x6f\x66\x7a\xf6\xda\x4d\x32\xc3\xfa\x78\xbb\x0e\x0e\xec\x03\x83\x4f\xef\x61\x75\xae\x49\xcd\xce\x54\x7e\x3d\x96\xa5\x68\xea\xfa\x25\x3b\x53\x44\x35\x4b\x9f\xf0\xa1\x59\x6e\x4c\x94\x82\x3e\xea\x7d\x63\xc6\x4c\x13\x00\x78\x00\xba\x31\x99\xdd\x3c\x3e\x70\x26\x00\x37\x3b\x3b\x58\xaf\xf9\xa3\x9b\x63\xec\x40\xca\x83\xba\xe8\xf5\x58\xd7\xaf\xc7\x22\x7a\xf7\xa1\x59\xd2\xeb\xb1\x6a\x96\x9b\xbf\x59\xa4\x64\x7d\x76\x0e\xff\xca\x35\x4f\xe9\x84\x0a\x77\x5c\x90\xf4\xa8\xbb\xa1\xa2\x73\xcc\xfd\xd1\x39\xe6\xf6\x1f\x64\x7f\x98\x77\x27\xf1\x59\x66\x0f\x9e\x6b\x7a\x43\x90\x3e\xe6\xf0\xe7\x20\xe0\xa7\x0f\xc8\xfe\x1e\x39\x48\xf0\x07\x75\xc9\x6f\xe8\x41\x6c\xcb\x7b\x2f\x3b\x08\xb4\x0d\x2d\x01\x3f\xc1\x6f\xba\x31\xe8\x51\xe0\x30\xff\x81\x1e\x24\x20\xef\x07\x06\xe4\xfd\x24\x81\x26\xfc\xa1\x41\xe6\x0d\x49\xde\xe0\xd9\x9b\x9e\xf0\xcc\xe8\x43\x90\xcf\x28\x5e\xdf\x7c\x09\x48\xbc\x89\x8e\xfb\x89\x1e\x44\x0e\x03\x76\xd4\x3f\x65\xd9\x69\x85\x26\xe4\x13\x79\x93\x58\x5c\xea\x8f\x5e\x27\x1f\xb5\xbc\xc3\x6b\x1b\x49\x33\xf4\xcf\x38\xb0\x46\x93\x76\x56\xec\xcf\x08\x37\x55\xba\x4c\x29\x84\x84\x9b\x8a\x9e\x0c\x1b\x68\xe0\x6b\x22\xa3\xbb\x3f\x03\x14\xf9\x32\x9a\x35\x37\x43\x59\x16\x4d\x1e\x90\xca\x97\xe4\x1b\xee\x86\xfb\x20\x19\xee\x2c\xbb\x76\xbb\x22\xb9\x9c\x8d\x20\xf4\xfb\xa0\xf4\x4c\x8d\x07\x69\x84\x44\xdd\xb6\x43\x7a\xd0\xcb\x76\x1d\x9a\xd7\xef\xe9\xe1\x56\xd7\x92\xf7\x26\xcb\xef\xf4\x7d\xe8\x58\x62\x5f\xfe\x9e\x65\x57\x0a\xfd\x9e\xc0\x11\x4e\x1f\xe5\xff\x02\xce\x99\xe6\x25\xf7\x1e\xba\x5d\xf6\x8c\xda\xdd\x14\x07\x71\x78\x66\xde\x5e\x46\x63\xee\x27\x3b\x85\xec\xfe\x85\x5e\x26\x77\xf0\xbf\xd0\xcb\x4d\x2f\xc8\xfe\xfc\x19\xfa\x05\xe7\xcf\x3c\x9d\xf8\x65\xf3\xdf\xc6\x4b\x39\x7c\xa7\x5f\xac\x1f\x67\x65\x44\x85\x80\x66\xe9\x01\xf8\x5e\x62\x0f\xf5\xc4\xc8\xdf\x25\x55\x2d\x70\x0b\x90\xb4\x80\x86\xa9\xb8\x4e\xf2\x5b\xf7\x56\xea\x37\x69\xdc\xa1\x80\xe3\xe8\x85\x2d\xc9\x32\x64\x31\xa6\x12\x27\x7e\x35\xd7\x04\xe5\x6f\x72\xfe\x57\xb9\xb3\x93\x23\x87\xf7\xc3\x70\x0e\x8f\x7d\xc3\xfb\x7b\x99\x65\xbf\x97\x61\x4c\x2d\x22\x9c\xfb\xe9\x0b\x37\x82\x06\xdf\x8a\xd1\x9f\xa4\x07\xb9\x72\x3a\xb6\x10\x07\xc8\x88\x5f\xe8\xe7\xc6\xba\x88\x05\x46\xee\x6f\x52\x9b\x78\x4f\xd0\x59\x4c\xd0\x21\xe0\x06\x33\x97\x90\x59\xc6\xbb\x8c\x36\x41\xf7\xa7\x7b\x19\x33\x1a\xde\xf5\xfa\x7b\xb9\x5e\xa3\xef\xe1\xb2\x61\xab\xef\x26\xe8\xe4\xb8\x71\xd8\xec\x9b\x77\xdf\x4a\x9d\x51\xaf\xa0\x47\x5a\x7c\xfe\xbb\xf7\x53\x7d\xf4\xdd\xe3\xbf\xcb\xf9\xa3\xef\xf2\xbf\x4b\xa7\x18\x34\x68\x5e\x3f\x35\x88\x91\x4f\x65\xe8\xfd\xf8\xa9\x44\xe1\x22\xfc\xd9\x01\x5e\x0d\xa7\x33\x53\xd8\xcf\xe0\x45\xee\x50\xc1\x3e\xab\x29\xdc\x9f\x62\x17\xe2\xee\xb5\x71\x42\xb6\x4a\x1a\x16\xf8\xfa\x06\x6a\x9d\x30\x66\x2b\x20\x6a\x18\x25\x23\xf8\x9f\xe8\x81\xeb\xde\xf4\x3a\x63\xee\xcf\x9e\x8e\x7b\x0f\xc9\x04\x4c\xe7\x24\x9a\x90\x07\xf7\x20\x4e\x82\xd9\x77\x22\x02\x70\xdc\xb6\xed\xf4\xca\xda\x70\xab\x97\xb3\xeb\x9f\x75\x96\x3f\xa3\x1e\x26\xe8\xb5\xa4\x0a\xfc\x7d\xc9\x70\xd2\x8e\xf0\xeb\xd2\xc1\x97\xad\x20\xda\x3b\x35\x20\x84\xf4\x2f\x60\x12\x13\xee\x88\xd6\x33\xd4\x81\x5a\x85\xef\xb2\xcc\x78\x35\xfb\x82\x5f\xb6\x5a\xdc\x16\x90\x09\x6a\x03\x20\x45\xbf\xa7\x9d\xde\xb6\xeb\x62\x6a\xbf\xb4\x43\xf9\xba\x44\xdc\x7c\xda\x82\x33\xb4\x6f\xad\x3b\x6a\xcc\x56\xf4\xed\x50\x7e\x37\x6c\xe1\x7a\xdd\x6f\xbd\xf4\x85\x5e\x40\x02\x63\x18\x48\x4e\x18\x5d\x48\xf8\xf3\x97\xc2\xb8\x5c\xf7\x0e\x24\xd7\x03\xc9\xbb\x03\xd9\x42\x7c\x04\x3e\xaa\xed\xd8\x1e\x96\x71\x00\x64\x16\xf8\xe1\xb5\xe6\xc8\x62\xbc\x60\xe0\x5f\xad\x30\x01\x60\x28\x96\x65\xef\x25\x5c\x00\x5b\x60\xa8\xf5\x1a\x1e\x4e\x00\xad\x24\x81\x2f\x01\x80\x85\x77\xf2\xf1\xaf\x72\x0e\x3e\xc8\xef\x25\xce\xdf\x6a\xca\x60\x10\xa0\x40\x5c\x9d\x0c\x2d\x51\x4d\xa0\x3a\xb2\x4c\x3d\x86\xd8\x5b\x5d\xa4\x8e\x3b\x40\x08\xb8\x55\x19\x6f\x51\xb3\xf7\x68\xe5\x2d\x69\x0d\x1d\xd7\xdf\x27\x8e\xeb\x31\xc7\xe2\xfc\xd6\xdb\x81\x99\x9a\x73\x61\x6a\xa4\xef\x7f\x48\x64\x70\x7e\x08\xb3\x98\x97\xe9\x9a\x57\xed\x52\x67\x65\x12\xa4\xaa\x85\xcc\xee\x06\x8a\xe5\x51\xa0\xa3\x26\x89\x59\x6d\xd4\xf6\x11\xa7\x34\xa4\xb4\x59\xaf\x97\x8d\xbf\x58\x38\x2c\xe8\x70\xe2\x0d\xd2\xc4\xe3\x36\x9a\x8e\x7e\x33\x8d\xa2\xe6\xec\xe7\xef\xc0\x89\xe6\x75\x91\x3a\x4f\x57\x67\xe8\x2d\xb8\xd1\xdc\xb3\x36\x48\x59\x66\x3d\xc2\x9b\xb1\xb9\x28\x0f\xae\xb0\xbe\xe4\x92\xd9\xd8\x6a\xcd\xb6\xfa\x17\xdd\x34\x9d\xc8\x30\xcf\x2b\xa4\x42\xcb\xec\x04\x54\x39\x31\x10\x62\x26\x77\x6c\x16\x65\x6c\x19\x67\xbd\x4c\x62\x37\x1a\x3c\x0e\x30\xcc\xc0\xce\x2e\x88\x0d\x9f\xdc\x64\x65\x99\x78\x42\xf9\xfc\x7b\x17\x25\x38\x47\x5d\x23\x86\xd0\x02\xc0\x87\x13\xc6\x73\x1f\x45\xd6\x44\x65\xea\xb1\x7e\xe8\xb1\x59\x12\xfd\xc3\xfa\x84\x72\xd2\x1f\x55\x1c\x26\xdf\x75\xc8\x47\x42\x9f\x25\x06\x03\xe1\x75\x61\xd3\x19\x8e\x2c\x43\x4d\x1a\x90\xbd\x69\xa3\xcb\x62\x7b\x67\x1e\xf6\x78\x28\xc2\x5b\x32\x77\xa6\xf8\xde\x6f\x60\x0d\x5a\xe5\x2f\x3c\xb7\x3e\x6a\xac\x1b\x04\x3f\x74\x5b\xb3\x83\x60\xe2\x71\x85\x57\xa4\x49\xec\x1e\xd5\x4d\x88\x62\xee\x63\xc2\xba\x91\xe0\x2f\x1a\xa4\xc8\xaa\xdd\x44\x44\x54\xa0\x7b\x23\x0d\xad\x0a\x07\xf0\x20\x08\x23\x8d\x4e\x8c\xad\x4d\x49\xd7\x03\xbe\x09\x81\xac\xfb\x4e\x0a\x37\xac\x0e\xda\x00\xfc\xb3\xbf\xf9\xc6\xbc\xb5\xb6\x2b\xe0\xa2\x6d\x5c\xff\x4f\x1b\x88\x9f\x6d\xae\x8c\x86\x93\x19\x6c\x16\x6b\xe2\xaa\xc7\xb0\x2f\xb2\x35\x84\x12\x91\x06\x96\xba\xc5\x4f\x30\x29\x2e\x92\x8b\x89\x62\x6b\xee\x98\x44\xdf\x61\x67\xa8\x4e\x5f\x0f\x64\x96\x7d\xd4\x63\x24\x88\x04\xdc\x27\x2b\x94\x0a\x7a\x53\x45\xde\x14\x0d\x69\xc6\xb1\x40\xfc\x7d\x75\xca\x04\x55\xe4\xc4\x7c\x0e\xe8\x3a\x8a\xbe\x0d\x86\x79\x38\x81\x00\x0d\x2e\xe2\x8b\x1e\x88\x09\x79\xef\x33\x98\x39\xf0\xd6\x41\xfe\x62\xdb\x39\x36\x42\x50\x94\x28\xaa\xdb\xbf\x7b\xc1\xb4\xf4\x1c\xe6\x6a\xd7\x84\xf1\x3b\xd1\xbd\x5e\x49\x7c\xeb\x1f\xed\xa5\xab\x3e\xfa\x4e\x4a\xd5\x88\x99\xa2\x0a\x41\x20\x39\xc1\xe4\xaa\x56\x54\x39\x54\xe8\x08\x55\x7a\x12\x16\x97\x19\x98\x58\x2b\xb1\x91\xb6\xec\x69\x58\x0e\xde\x60\x72\x67\x19\xed\x77\x7b\xc9\x77\x78\xb3\x41\x0d\x26\x53\x58\x1e\xae\x0f\x36\x9c\xa0\xcb\x38\xf3\xa8\x6d\x3e\x89\x98\xbd\x48\x21\xc8\x0b\xcc\x51\x32\x2a\x7d\xab\xc6\x93\xd8\xe7\xfa\x68\x9c\x4f\xf3\x49\x14\x28\x8d\x85\x91\xfe\x34\xf3\xac\xf9\x6d\xbf\x2d\x34\x13\xe5\x71\x72\xa7\x33\x0b\x73\xfe\x77\x9f\x74\xcf\x91\x9b\x3d\xe8\x10\xa3\x3f\x34\xa8\x01\x18\x1b\xcf\x61\x2b\xfa\x3c\x58\x46\x2c\x89\x4f\x36\xcd\x15\x7d\x7a\xd7\x7b\x9d\xe1\xf7\xbb\x32\xdc\xcb\x15\x7d\x16\x64\xd0\x2d\x30\x24\x8b\x61\x22\x3e\x0b\xff\x34\x79\x80\x49\x43\x46\x23\x8f\x40\x6b\x17\xb5\x0f\x17\xed\x29\x60\xca\x19\x90\xe7\x86\xc4\x0a\x92\x2c\x7d\x00\x09\x6e\xf2\x1f\x1a\x24\x48\x83\x75\x0b\x6c\x57\x3f\x5b\xe2\xd3\xaf\x2b\x11\xce\x55\xc3\x4e\x38\xeb\x4d\x91\xc4\xdb\xeb\xc4\xf1\xde\x33\xe8\x50\x3e\x56\x48\xcf\x19\x34\x6f\xc6\x21\x8a\x39\xb9\x30\x54\x43\x75\xfd\xb0\x35\x55\x40\x22\x2d\xc0\x7d\xad\x57\x4f\x83\x35\xa3\x43\x82\xd3\xb8\x45\xb2\x6a\x42\xb3\x7a\x17\xce\x01\xae\x24\x0a\xaa\x04\xda\xca\x86\x84\x37\xb4\xe4\xa6\xa0\x8a\x34\xf4\x5a\xb3\x60\x98\x34\x0e\x18\x07\xce\x12\xc0\x27\x34\xa7\x87\x35\x4c\x9d\xf1\x19\x0e\x24\x43\x1a\x86\xef\xfa\xbf\x70\x67\x17\x45\x19\x03\x6a\xf8\xde\x4d\x0a\xb7\x5c\x9b\xa7\x83\xc9\x92\xf1\x91\xcf\x0d\x1b\xe7\xc4\xc4\x2c\x7b\x53\x18\xef\xe8\x6d\xd3\x5e\x6d\x0f\xdc\x62\xac\x61\x5d\x14\x2a\xc1\x38\xf9\x0b\x87\x45\x30\x97\x36\x02\xbe\x47\x85\x81\x17\x5d\x53\xf0\xe9\x03\x4c\x7e\x31\x91\xcc\xb7\x73\x96\xf3\x2e\x33\xb0\x8d\xa7\x54\xce\x1a\xd7\x8e\x8b\x8c\x8e\x06\x4c\x94\xd3\x1a\x06\x4c\x49\x38\x0c\xbc\x27\x20\xbc\xe7\xe9\x92\x18\xee\x9f\x61\x47\x61\x48\xfb\xc0\x01\xd8\xdc\xcd\xf8\xcb\x68\x21\xe4\xe1\x5c\xba\xc3\xcc\xd1\x99\xcf\xee\xce\xdf\xbf\x6e\x77\x7e\xe7\x4a\xb4\x95\xa6\x4d\x4d\x5a\xd0\x5a\xe7\xdf\xf5\x59\xbb\x0e\x3a\x3d\x98\xe4\x2c\xbf\x0d\x58\xb6\xf1\x89\x45\x00\xe8\xf6\x44\x76\x5c\x58\x80\x95\xaf\x68\x63\xd9\x77\x77\x7a\x4b\x1f\x55\xce\xc6\x04\x70\xfa\xba\x8a\xfe\x20\x50\x49\x2a\x3c\x9f\xe4\x93\x75\x7f\x3c\x81\xf1\x49\x59\xd4\xe5\xaa\x2e\x14\x33\x8e\x76\x8b\xa7\x95\x92\xf3\x2d\xe9\x50\x5a\x1e\xca\xdb\x46\xb9\xee\x7b\x4c\x69\xb0\x0d\xb2\x6c\x18\x08\x60\xb7\x21\x7d\xf1\xa0\x1d\x5e\x91\xc1\x7d\x68\x39\xe5\x11\x0d\x90\x03\xf4\xa0\x0a\x3b\x01\xb4\xb4\xaa\xba\x9a\x96\x91\x79\x76\x20\x25\xd6\xf8\x56\xd2\xd2\x8e\xbb\x53\x92\xac\x68\x1d\xd9\x60\xbb\xf2\x56\x46\x55\xb2\xf2\x50\x0c\x20\xfc\x83\xa8\xb3\x1a\x37\xa7\x92\x89\x8f\xa6\xef\x59\x85\xf1\xed\xd4\x81\x2e\x65\x19\x42\xab\x4e\x74\x07\x80\x04\x2a\x09\x38\x1f\xa7\x90\xdc\x1c\xfa\x93\xda\xe3\xb7\xc2\xd0\x8a\x96\x81\x4d\x7f\x96\xad\xfa\x0a\x48\x13\xa1\x80\xca\x8f\x93\x5e\x70\xa9\x0d\x3d\x7c\x97\x26\x52\xaf\x22\x59\xd1\x95\x89\xaf\x6a\xa6\x42\xd2\xe9\xa4\xed\xa3\x41\x8f\x09\x82\xff\x6a\x6a\xe6\x46\xb6\x1d\x70\x89\x1d\x34\x07\x2d\x5b\xd5\x94\xa4\x65\x60\x9a\x6b\x2e\x61\x20\xf4\x88\x0c\x8c\x90\x42\x49\xab\xa4\x81\x5d\xe6\xad\x9f\x7b\x0f\xfb\xa1\x0b\x34\x1f\x05\xa1\xe9\x4a\x2a\x37\x1b\xbb\x0d\x9b\x78\xe7\x6d\x39\x02\x1e\xb9\xcd\xdb\x38\x2a\x22\x8c\xb7\x4b\xb8\xfd\x70\x5b\x94\x93\x79\x04\x15\x9a\xd1\xab\x50\x43\xaa\xd6\xb1\x28\x5c\x22\xb8\x23\x03\x6d\xa7\x65\x9e\x7e\x56\xc0\x8f\xb9\xa6\x24\xad\x20\xcf\x6c\xcf\x88\xc9\x66\x32\x55\x96\x69\xf2\x0a\x51\x53\xd2\xa5\x23\x46\x3d\x25\x85\x1f\x7c\xf7\x79\x32\xfa\x19\xea\xf9\x2f\x89\x0d\x4e\x84\x03\xe9\x6d\x8e\x18\x1d\x4e\x08\x48\x6e\x38\x87\x40\x51\x6e\xbc\xaf\x0d\x4b\xd3\x60\x27\x12\x81\x80\x93\x08\x44\xac\xed\x96\x9f\x57\x2f\xd6\xa7\x71\x5c\x03\xbb\x73\x10\x40\x7e\x37\x76\x56\xe4\x99\xb5\xb7\xf2\x6a\xb0\xcb\x00\xed\x10\x62\x8f\xe8\x16\x33\x02\x8f\x97\xec\x86\x72\xf3\xe8\x7d\x01\x20\x3c\x09\x9c\x65\xf0\xe8\x88\x16\xe4\xf1\x22\x9f\x29\x48\x8f\x26\x3c\x85\xc3\x6b\x7a\xa4\x53\x2b\xbe\x60\x9f\xb4\x90\x6f\xca\x39\x0b\x5e\x45\x61\x75\x95\x49\x8b\x1c\x54\x20\x25\x96\x78\x21\x29\x74\xc7\x88\xf2\x04\x4e\x3f\x26\x5d\x37\x53\x98\xe7\x96\xff\x7a\x65\xeb\x0a\xbd\x07\xf4\xef\xc8\x1b\x4a\x27\xa4\xda\xf3\x76\x58\x52\xac\x4f\xa8\xa0\xa3\xd7\xd0\xa9\xf1\xe2\x69\x15\x93\xbf\x04\x33\xe2\x98\x16\x76\x1d\x4e\x54\x9b\x17\x84\xa8\xd6\x3c\x08\xa4\xa5\xa5\x68\x54\x63\xf1\xc6\x86\x6c\x5c\x49\x13\xdd\xc5\xe9\xa5\x83\xaf\x9f\x26\x2a\xd0\xf6\x62\x34\x66\x96\xf8\x1c\x21\x4e\x75\xbb\xf4\xea\x20\x5a\x04\xbd\x64\x37\x84\x59\x48\xba\x68\x7e\x59\x2c\x75\x9b\x55\xc0\xac\xd2\x26\x58\x22\x2c\x0a\x2d\xdc\x8e\x05\x8b\x63\x31\xe3\x1c\xf1\x74\x39\xf0\x78\xc6\x78\x67\x36\x78\xd7\xc1\x8c\xa7\x96\xf3\x98\xf4\x07\x5a\xe8\x35\x5b\x27\x9d\x00\x13\xa9\xe9\xbb\x2b\xcd\x7d\x9f\xba\x08\x77\xa2\x6b\x27\xbe\xa9\x9d\x28\xdb\x91\xaf\x51\x1c\xdd\x0a\x82\x2a\x44\xee\x5b\xbc\xd7\x7d\x4b\xf5\xbb\x6f\xa5\xac\x75\xec\xbe\xa5\xb6\xba\x6f\xa9\xd0\x7d\x8b\x78\xa9\xa4\x8d\xf9\x45\xb8\xdd\xd3\xcc\xfc\x35\xa8\x49\x70\x63\x73\x16\x46\x8d\x7a\xeb\x57\xb2\x26\xf6\x2e\xcc\x22\x84\xac\x11\x94\xf5\x5e\x97\x32\x0c\x2b\x1d\x02\x63\x06\x6e\x95\x5d\x80\x01\x86\x25\xbd\xef\x8c\x9a\xe3\x70\x8a\x83\xb7\x8e\x6a\xbe\x2b\x5d\x94\x0d\x7d\xe8\x35\xa4\x22\xca\x52\xd6\x9f\x72\x49\x1f\x92\x66\x4d\xbf\x0b\x85\xfa\x77\x2e\x35\x0a\x77\xfd\xab\x2d\x0e\x31\xbd\x35\xa6\x7b\x84\x13\x45\x1e\xae\x9b\x64\x43\xfc\x4a\xcc\xea\x87\x87\x64\x15\x55\xc4\xe2\xd8\x7d\x1f\x97\xb5\x0f\x65\xe9\x92\xe0\xcb\xef\x49\xb4\xab\xcc\xef\x2d\x25\xfd\x1c\x97\xf4\xc8\x97\x14\x16\xf0\x73\x7f\x01\x4e\x27\xa1\x47\xb6\xa3\xd1\x0c\x35\x33\x6e\x60\x03\x85\x25\x54\xfe\x5b\xae\x99\xaa\x18\xa2\xef\x45\x2e\xe9\xa3\x38\xe9\x47\x9d\x2d\x09\xd5\xfb\x77\x9d\x76\x2f\x4e\xfb\x21\x87\xd8\x53\x22\xb6\xe4\x4e\x4e\xba\x7d\xef\xc8\xc7\xe6\x2c\x77\x8d\x0d\x54\x28\x48\xe9\x91\x90\xbd\x03\xc1\x9c\x0e\x4b\x74\x5d\xe5\xaa\x10\xb7\xed\x5d\x87\x28\x9b\x01\xfe\x8e\x30\x22\x88\xd2\xc5\xa6\xee\xa7\x81\x9f\xcb\xaf\xfe\x1a\x2e\xfc\xf6\x81\xbd\x3b\xfa\xec\xe7\xbf\xa5\x9f\x43\x8f\xee\x79\xe6\xc4\xaf\xe5\x79\xfb\x98\x1f\x1d\x5b\x32\xdd\x5b\x7a\xa8\xa0\xbd\x8d\xc4\xd8\x3c\x0d\xb0\xeb\xd0\xd9\x5c\xc1\xd0\xe4\xea\x6a\x69\x86\x11\x0a\xcd\xd9\x38\x4e\xd8\x84\x63\xf7\xc2\x37\xdf\x33\x18\xf6\x9c\x8d\x51\xf2\x4c\xe4\xb3\xa0\x6a\xc7\x87\xb4\x00\xa1\x21\x77\xe0\x1a\x14\x7c\xbd\xf5\x4a\x30\x7a\xdb\xfa\xea\x98\xf6\xa4\xe8\xc6\x51\x25\x56\x54\xf2\x8d\x73\x00\x75\x26\x97\x0b\xfa\x69\xb9\xa4\x38\x64\x88\xe7\x1c\x00\x0e\x3b\xec\x64\x8f\xd3\x4e\xcb\x77\x04\xae\x2a\x3e\x31\xb8\x19\xf5\xfc\x47\xd7\xc5\xc6\x67\x8f\x1d\x69\xda\x86\x6c\x4b\x0f\x3d\x80\x82\x2b\xff\x9f\xfa\xb0\xbd\xa3\x32\x3c\x48\x62\x9f\x2b\x10\xe0\x06\xf0\x2c\xe3\x4f\x0c\x04\x24\x0d\xd6\xc4\x8f\x9f\x2d\x9a\xf4\xc6\x86\x98\xf1\xc7\x6a\x9b\xc3\x90\xc2\x04\x89\x27\x6a\xbd\x9e\x80\xaf\x96\x77\xfe\xe9\xe4\x52\x5f\xec\x54\xa4\xbe\xdc\xa9\xa8\xed\xdb\xf7\xb6\x6f\xea\x49\xd7\x88\xa8\x6d\x7b\x38\xe6\x2a\xf4\x4a\xeb\x8c\xb1\x1d\x46\xa4\x9e\x50\xfe\xef\xf0\xc3\x52\x4f\xfa\x3e\xd8\x36\x5c\x3b\x53\x4c\x74\x4f\x7a\x4b\xbb\x23\x52\x87\x0a\x2f\xdb\x7f\x4e\xa6\x3b\x8d\x44\x00\x5a\x1c\xee\xe2\x88\xf5\x8c\x6f\xc8\xb6\xfe\xbd\x97\x7f\x50\x1e\xbc\x94\xc1\xfd\x2e\xbe\x55\xa0\x7f\xba\x51\x88\x53\xde\x77\x03\x85\x4d\xcc\x33\xd0\x3d\x82\xa8\x94\x7a\xe4\x4d\xac\x0d\x50\x49\xf9\x56\x1c\xdb\x32\x84\x9b\x75\x14\x62\xe6\xdc\x71\xac\xa6\xbd\x3a\x43\xa7\x0d\x32\x2a\x06\x2d\xef\x47\xdf\x24\xd6\xa2\xaf\x2c\x1b\xf8\x8a\x89\x73\xb6\x78\x16\x60\xa2\xbb\x52\xef\xc2\x7f\x9d\xa5\x7d\x98\x9a\x70\x12\x89\x05\x4c\x4d\xb9\x47\xc1\x3c\x6d\x00\x1d\x8a\xd3\x8f\x0d\xe2\xa4\x26\x65\xa0\xb3\xe2\xb4\x34\xca\x12\x4e\xeb\x26\x91\x0a\x94\xeb\xed\x5c\xb5\x94\x31\x57\x1d\x34\x4f\xa2\x68\x45\x50\x43\xcb\x0a\x44\x6a\xdc\x0d\x4e\xca\x36\xc1\x3d\xb9\xbf\x0e\xb5\xec\xab\x32\x97\xd0\x3e\x08\xa7\xc2\x64\x55\x21\x09\xc2\x79\x69\x40\xb1\x44\xbb\x36\x7e\xe8\x80\xf7\xfb\x75\x41\x2a\x63\xb0\x51\xd0\x57\xd5\x58\x5a\xa8\x64\x6f\x58\xe6\xbe\x6b\xe8\x3f\x24\xaa\x48\x43\x0a\x4c\x8a\x48\xd6\xfa\xab\x0b\x3a\x66\xc4\x2c\xa7\xec\xb3\x2a\xbc\xd0\x33\xd4\xb3\x47\x5d\x5b\x5b\x8f\xe9\xe5\xc0\x65\x53\xbb\xda\xb6\xbe\xbf\x05\xce\xb1\x77\x87\x3b\xd4\xdd\x8a\x22\x1e\xaa\xc7\x54\x95\x59\xb6\xbb\x6b\xcf\xd9\x93\x54\x99\x5e\xba\x13\xf8\x44\x34\x8d\x72\xe7\xec\x89\x1b\x64\x2b\x60\x9f\xf0\xf8\xb4\x3b\xb9\x28\xa4\x3f\x75\x4d\xca\xa2\x5a\xb8\xe8\x0c\x60\x5a\x62\x8a\xe9\x9e\xcc\x26\xfe\x03\x0d\x0d\xca\xbe\x29\x91\xe5\x08\x82\x7a\xc3\x2f\xa0\xe8\xab\x4a\xb5\x05\x43\x28\x08\x9d\x12\xff\x34\x6e\xc2\x10\x56\xb5\x2d\xfe\x2f\x89\xe9\x93\x96\xa1\x1d\x27\x62\x2f\x38\x00\x4a\x07\x36\x86\xbb\xed\x21\x8d\xe6\xac\xf6\x89\xb7\xa0\x26\x26\x88\xda\x77\x26\xa6\xda\x7c\x3f\x9f\x78\x27\x65\x11\x84\xc2\x6a\x02\x76\x4a\x10\x76\x54\x88\x63\x2a\xda\xf0\x00\x46\xcb\x1a\x38\xf6\xb4\x33\xfb\x52\x3f\xcf\x64\x5f\x74\x61\x8e\x6f\x0f\xb9\xb5\x65\xdb\x60\x4c\xca\x2f\xc8\xb4\x01\x50\x27\x16\x38\xfe\xe4\x2c\xf1\xe6\x0c\xb7\xcb\x3f\x62\xd6\xec\xa4\xb2\x44\xe8\x9d\x5e\x15\x7e\x04\xdb\xfc\xac\xb6\x47\xdb\x96\xdc\x7b\x24\x24\xd4\xaa\x8e\xb4\x13\xcc\xd0\x5a\x16\xf8\x53\x3c\x4a\x7e\x4f\xd3\x0c\xe8\x61\x94\xb0\x5e\x8f\x06\x40\x2d\x77\xaf\x9a\x15\x57\xbb\xcb\xa6\xe2\x6a\xd7\x69\x28\x07\x23\x9f\xf9\x67\x03\x84\xd6\xb6\x85\xd7\xed\xa1\xe1\xec\x28\xdc\xa9\xa0\xdb\xff\xcc\x31\x9e\xb3\x16\xc4\xb7\xa0\x55\xdc\xc9\x6d\xb6\x82\x8d\x3b\x84\x9a\x59\x13\x46\x09\x36\xa6\xa7\x7f\x2d\x51\x81\x67\x86\xed\x83\x78\x2e\x3f\x94\x48\x91\x82\x40\xb8\x1a\x77\xfd\xb8\xa5\x35\x34\x0e\xcb\x52\x9d\x21\xb5\x5e\x23\x45\x87\x68\x88\x14\x65\xf3\x74\xb6\x53\x2f\x2b\x87\x51\x00\xdb\xd6\x98\x1b\x99\x59\x50\xc1\x98\x0e\xd5\xf8\xa2\x90\x01\xaa\xdc\xa2\x50\xc5\x2e\x34\x46\x93\x87\x11\xc6\x98\x0c\x0d\x36\x11\x1c\xe0\x33\x77\x84\x43\xa9\x33\xcc\x22\x9c\x50\xee\x77\x08\x84\xce\xd6\xcb\x62\x42\xd4\xfc\xd6\xee\xb1\x7c\x38\xd9\x38\xe4\xc0\x0d\xd2\x84\x9a\x74\xc6\xb9\x57\x07\xd0\xb8\xcb\x9f\x3b\x06\xb9\x6c\x07\xf9\xac\x44\xa1\x4d\x72\x38\xe6\x6d\x7c\x57\xf8\x2a\x88\x54\x5a\x87\x6c\xca\xde\xe3\x42\x9c\xc3\x60\x4a\xeb\x8f\x13\xd8\xd1\xf8\x57\x47\x7b\xc7\xf3\xf0\x87\xb1\xa8\xd1\xc7\x84\xaa\x91\xea\xdc\x78\x4f\x34\x7d\xb6\xb5\xf7\x1b\x05\xee\x7f\x59\xb5\xfb\x61\xb5\xfb\xb6\x5a\x53\xf0\xad\x13\xcb\xf3\xa7\xe4\x92\x99\x10\xf9\x94\x0a\x73\x9e\x8e\x46\x3b\x82\x78\x29\x91\x91\x58\xf8\x53\xa9\x64\xc7\x37\x1b\xd3\x3c\x73\xbf\xbe\x61\xac\x63\xcb\xe8\xec\xb7\x62\xf4\xc3\xea\x0c\xbd\x64\xc8\xda\xf6\xf0\x31\x2f\xae\x18\x19\x89\x62\x51\x35\x23\xc3\x8b\xc0\xfe\x36\x84\xd8\x06\x3d\xe1\xd4\x44\xf9\x6e\xfd\xaf\x34\xe7\x16\xfc\x36\x99\xf8\xf8\xf7\x15\x13\x37\xc6\xc5\xae\x11\x07\x75\x8d\x4c\xa5\x47\xba\x12\x3a\xda\xf9\xcb\xfb\x37\xaf\xc7\x46\x35\x54\x9d\xdd\xa0\xd1\x68\x47\xe1\x9d\xff\x38\x3e\x02\x49\xdf\xb6\xe1\xf8\x3f\x74\xbb\x26\x33\xf5\x98\x3b\x67\x2b\xb5\xb3\xe3\x0f\x8b\x23\x75\x0c\xfa\x28\xa3\xfb\x17\x9a\xf0\x5e\x19\x40\x93\x46\x5c\x39\xd6\x62\x25\x90\x00\xf3\x85\x61\x93\x4c\xf3\x23\x3d\xcb\x6f\x18\x12\x98\xbc\x64\xc0\xf6\x44\x8e\x21\x01\xfc\xe3\x73\x86\x58\x0a\xa4\xed\x20\x4b\x0d\x22\xa3\xf2\x88\x8c\x00\xb2\xc8\x62\x90\x45\x45\x86\x53\xbc\xd9\x90\xbf\x95\xad\xe2\xd7\x9a\x96\xa5\xe6\x38\xc3\xe0\x24\x4e\x97\xe5\x7d\x60\x1b\x3a\x87\xfc\x70\x92\x1e\xe9\xcc\xda\x33\xb5\xdc\x43\xb2\x75\x1d\x67\x90\x28\x19\xcd\x01\xfc\x4d\x99\x32\x5c\x26\x08\x87\xb9\x12\x6f\x4f\x74\x7d\x48\xc5\x5d\x52\x17\x8c\xa7\x1d\xea\xb0\x20\x98\xa1\x28\x40\x6b\xc2\x5d\x38\x5f\x24\x03\xd6\x9f\xb2\x1e\x47\xc7\x98\x28\xe3\xdf\xc7\x3a\x23\x5a\x1a\xbe\xa3\x43\x76\xb6\x0e\x83\x8a\x63\x61\x25\xc3\xef\x71\x08\x53\x18\x90\xbd\xfb\x53\x63\x11\xd3\x99\x0b\x47\x95\xfa\x46\x17\x3e\xd0\x44\x5d\xb3\x40\xb7\x9d\x4f\xb3\x0c\xf5\x7f\x47\x55\x67\x9e\xec\x6d\x8c\x5e\x3f\x28\x9e\x7a\x8c\x83\x60\x6c\xc6\x12\x94\xaa\x59\x63\xab\x9d\x61\xa1\xf9\x20\xda\x18\xae\x31\x0c\xb4\xdc\xdb\x45\x61\xb9\x4b\x9b\x9f\x04\x0c\xa7\x22\xe1\xd0\x41\xe9\x9b\x76\xb6\x0d\x1f\x09\x86\x1f\x9f\x75\xe3\xd8\xbb\xbf\x8f\xf1\xec\xe7\x28\xb8\x1b\x38\x36\xa8\x80\xc1\x25\x29\xaf\xdb\xca\x22\x71\x3b\x70\x96\xa9\x64\x5c\x95\x1f\xaa\x60\x9c\xac\xd5\x62\x2f\x07\xed\x9a\x9f\x2c\xaf\x20\xc8\x19\x8d\xa3\xb7\x0d\xbb\x8b\xfc\xb6\x87\xf5\x9e\xcc\xc2\xf5\xd8\xae\xf8\xd0\xa0\xdc\xcd\x9e\x21\x7b\x2c\x24\x7b\x68\x42\xd8\x91\x3a\xc6\x48\x2f\xfc\x6f\xbe\x66\xdf\xe9\xcd\xfa\xef\xdc\x75\xdf\x74\x87\x25\xd9\x78\xe9\xa0\xe8\x16\xdc\x76\x44\x86\x7f\x71\x40\x9c\xa6\xc2\x9e\x03\x2d\x3f\xd2\xe2\xba\xf2\x54\x5f\xf0\x68\x0a\xd6\x36\x5c\x0f\xe2\x86\xb0\xba\x4b\x90\xff\x71\x27\x91\x6e\x39\x8f\x2e\x7b\xdd\xa1\x9f\x77\x0b\xcc\xc2\xd8\x94\x2a\x4c\x40\x20\xde\x42\x60\xa3\x26\xae\x38\xb0\xd4\x71\x1b\x5d\x62\x57\x6e\xe9\x69\x22\xdf\xd2\x44\xd6\x36\xd1\xda\x55\xe8\xa3\x8c\x9b\x26\x32\x68\xa2\xbd\xe7\xb6\x57\x75\x41\x2b\x79\xd2\x4a\xe3\x45\x6e\x36\x64\x87\x18\xeb\xea\xff\x56\x1a\x41\x10\x08\x70\x4a\xdc\xb6\x8d\x6c\x42\xa9\x3d\xe1\x0a\x5f\xc0\xcd\x64\xbb\x9f\xcd\x82\xb7\x0c\x89\xfe\x1d\xba\xd3\x74\x63\x1c\x1a\x7c\x4c\x41\x2d\xd9\x9b\xb9\xa2\x44\x10\x13\x1e\x71\x9b\xc8\x3c\x7f\xca\x36\xa4\x60\x74\x55\x12\xc9\xe8\xb2\x24\x25\xa3\x65\x49\x6a\xd6\xbb\x68\x2c\x90\xd0\xde\xd7\x44\x0f\x34\x88\x50\x35\xbd\x35\xe3\xfa\xb6\x11\xaa\xa8\x73\x51\x93\xb3\x8a\x2f\x9e\xbf\x79\xa5\xb9\xae\x3c\xd9\xfd\xf6\xb2\x05\xb3\x76\x1c\x06\xd5\x19\x8a\x25\xb7\x16\x22\xac\x47\xf1\xd6\x5a\xfc\x1a\x2b\x99\x6d\xa6\xc2\x76\x8b\xa4\xfb\xec\xe1\x43\x9c\xea\xb9\xf6\x1e\x3c\xc4\xe4\x0d\x5c\x59\x8d\x2f\xd9\x8d\x44\x5a\xf6\x63\xee\x22\x14\x31\x7a\xad\x34\x2f\x6e\x57\x5f\xa0\x6e\x69\xc7\xd9\x89\x27\x29\x77\xfb\x45\x9c\x3c\xaf\x3d\x4a\x19\x19\x4e\x34\x9f\x4c\x4c\xdb\xff\x0d\xc5\x4d\xa1\x38\x6f\x85\x63\xca\x7d\xbf\x3a\x55\x82\xb1\x17\x5c\x35\x5e\x56\x4c\xea\x22\xc2\xd7\xc6\xfb\x6b\x6b\x27\x73\xbd\x6e\xb7\x68\xaf\xaa\x34\x31\x53\x7e\x18\xb5\xd5\x54\x37\x9c\x12\x01\x0d\x05\x92\xe1\xed\x0d\x0e\x54\xdf\x22\x1a\x82\x6e\x20\x29\xf6\x5e\x3b\x04\xc3\x21\xeb\x13\x87\xb3\x0c\x25\x72\x9d\x1b\x2a\x3b\x5e\xc3\x69\xe4\x89\xda\x5b\x88\xb1\xb7\xc0\xa0\x53\x19\x4e\xc2\xb1\x8d\x76\x41\xd7\xa1\x55\xd4\xe3\x62\xb9\xac\x6f\xec\xe2\x25\x5e\xfe\x0a\xcb\x38\xd5\xc4\x82\x59\x78\x00\x99\xaf\xca\xf6\x15\x90\x9d\xa2\x54\xd5\x47\xe6\x5e\x77\xa7\xcc\xd6\x55\x96\x08\x93\x20\x14\x69\x50\xc3\xa2\x92\xa5\x60\xca\x97\xb1\x0c\xaa\x38\xab\x57\xf2\xe2\x79\x92\xa1\x2c\x09\xa4\xbf\xbf\xe1\x65\xde\x51\x28\x7c\x8e\x89\x9a\x3e\x6c\x51\xf3\xfa\x02\xab\x1a\xb0\xbe\x28\x12\x6a\x10\x05\x15\xc2\xf0\x1a\x62\x93\x8e\xb3\x9e\x94\x6e\x73\x7a\x57\xc6\xde\xa3\x47\x98\x8c\x7a\xbe\x1f\x45\xca\x06\xab\x9e\xea\xd4\xa4\x3b\xfe\xef\xaf\x0d\x54\x1b\xd3\xb8\x3e\x18\x67\xbd\xd2\x44\x53\xd7\x6c\x91\x77\x0f\xce\x68\x08\xed\xd8\xc5\x34\x5a\xc5\x34\x9a\x9c\x9c\xbc\x3f\x7c\xf6\xee\xf0\xc3\xc9\x8b\xd7\x1f\x0e\xdf\xbd\x3e\x78\xf9\xfe\xe4\xf9\x9b\x93\xd7\x6f\x3e\x9c\xfc\xf4\xfe\xf0\xe4\xcd\xbb\x93\xbf\xbf\xf9\xe9\xe4\x97\x17\x2f\x5f\x9e\x3c\x3d\x3c\xf9\xfe\xc5\xbb\xc3\xe7\xf9\xed\xe1\x47\xbd\x2e\xf3\xa3\x52\x90\x5a\x90\x95\x20\xef\xc7\x15\xd7\xe4\x11\x5e\xbc\xad\x57\xe7\x15\x97\x4f\x6f\x5e\x6b\xa9\xfc\x8c\xbc\x54\x91\x43\xcb\x27\xc4\xc8\x6b\xdd\xad\x86\x91\x8a\x91\x37\x9c\x1c\x92\x0f\x25\xb9\xb5\xfa\xcc\x7c\x38\xdd\x1c\x6f\x36\xb3\x61\xb7\x73\xe0\x7a\xb9\x00\x92\xf1\xf4\xe6\xc7\x46\xaa\x17\x7a\x60\x78\xc9\x66\x28\xf5\x0d\x59\xf1\x05\x3b\xab\x38\x5b\x04\x14\xff\xe4\xe4\xdd\xe1\xc1\xb3\x0f\x27\xcf\x0f\x7f\xfe\xf0\xe6\xcd\xcb\xf7\x27\x3f\xbc\x7c\xf3\xf4\xe0\xe5\xc9\x8f\x6f\xde\xfc\xf5\xe4\x24\x76\xe9\x56\xf4\xee\xdc\x20\x13\x8d\x2b\xf9\xbc\x92\x7a\x66\x16\xa0\xe6\x92\xab\xe5\xb2\x11\x4a\x1a\xa2\x66\xcb\x9b\xcc\x5a\x8f\x6d\x65\x87\x09\x31\x3c\xfb\xbd\x8c\xf8\x1e\x9d\x49\x8d\x1d\x6b\x02\x25\xe8\x35\x01\xba\x57\x4b\x10\x1e\xdc\xd3\xa7\x0d\x78\xe3\x39\x1f\xf1\xd6\x2b\x0f\xb7\x5e\xdb\x9b\x0d\x79\xf6\xd9\xc2\x7f\x32\x84\x54\x97\x1f\x7d\x1a\x3e\x63\x04\xa1\x4a\x18\xb9\x6d\x3e\x32\x21\xaa\x05\xfb\xb1\x69\x2e\xdf\x7b\xcf\x2e\xe2\x92\x43\xf3\x7d\xa6\x5c\xa0\x48\x73\xe7\x2d\x6c\xba\x26\x5b\xab\xda\x52\x0d\x93\x66\x7b\xf1\xbc\x92\x4b\x20\x6b\xe2\x1d\x3b\xcb\x9f\x8d\x8d\x45\x59\xfa\x0e\x98\x86\x70\xd2\x9f\xde\x40\x47\xa2\x4d\x10\xdf\x21\x99\x93\x99\xf5\x9d\xcc\x64\xcb\x4a\xea\x2b\x4d\xcd\x75\x21\xd0\xe4\x4d\xa7\x15\xf2\xfb\x46\x37\x5b\x30\x79\x11\x77\xb4\x3f\x51\x93\x09\x37\x4e\x36\x47\x34\x4c\xe7\xcc\xf5\xdc\x74\xce\x1d\x26\xe8\x76\x5b\x83\xa5\x20\xa7\x2b\x5d\x82\x66\x8c\xf2\x09\xf9\xc8\x84\xac\x1a\x9e\x8f\xa6\x0f\xc6\xd3\xc9\x78\x6f\x64\x79\x05\x26\xde\x16\xe5\x65\x71\xce\xf4\xae\xcc\x47\x46\xcf\xbd\x68\xae\x46\x1b\x43\x7e\xab\x9a\xde\xba\xfb\xa3\xa6\xde\x90\xa2\xa6\x55\x9d\x65\x4d\xbd\x5e\x57\xf5\x0c\x2c\x7a\xf4\xda\xa6\x45\xed\x7c\xc5\xd6\xeb\x42\x0f\x48\xc2\x82\x8c\x56\x92\x0d\xa4\x12\x55\xa9\x46\xc1\x67\x1c\x4d\x27\xf7\xf0\x67\xb2\x83\xf4\x0f\x26\x53\x05\x01\x61\xca\x32\x5d\x66\x2f\xfb\xd0\x29\x8a\x8c\x4e\x4e\x98\x7c\xd5\xe8\x21\x1d\xb9\x40\x3a\xc3\xc9\x06\xe8\x6a\x77\xe3\x1b\x30\xad\xd0\xa7\xbe\x95\xb3\x5e\x31\x29\x8b\x73\xb0\xcd\xe7\xac\x76\x4a\x60\x98\x8b\xda\x06\x38\xa3\x01\x60\x5a\x08\x95\x5f\xe2\x70\x67\x7b\x22\xcd\x9b\x6b\x84\x67\x25\x02\x4e\x8d\x38\x88\x42\xb7\xab\xcc\x59\x20\x99\xfa\x60\x0c\x43\x10\x23\x13\x2d\x2e\x6d\xc8\x92\x3e\x2f\x94\xe6\x71\xf5\xe7\x71\x79\xb4\xcb\x2d\xb4\x79\x77\x97\x1b\x12\x6b\xe3\x5c\xfb\xe6\x41\x35\x82\x4c\x08\xc3\x39\x2a\x29\x23\x41\xf2\x8a\x4c\xb0\x26\xc5\x09\xcf\x5f\xd3\xa8\x85\x9a\x5a\x57\x61\x23\xca\x9a\x15\xc2\xbd\xaf\xf1\x86\x14\xdd\x26\x0e\xa7\x1b\xf0\xbd\x68\x4f\xaf\x46\x94\xec\x7b\x51\x5c\xb1\x77\x45\xac\x89\xb0\x68\xeb\x06\x45\xd3\xcc\xd6\x78\xc9\xc4\x59\x23\xae\xf4\x1a\x27\x0b\x97\xa8\x7b\x4d\x2e\xdc\xaf\xb6\x8d\xe4\xd4\xa5\x85\x2d\x23\x57\x2e\x55\xb0\xdf\x57\x4c\xaa\x03\x5e\x5d\x81\xdc\x04\xad\x20\xaf\xfc\x47\xba\x96\x3a\x7e\x3b\x8b\x8f\x91\x76\xc5\x94\x0d\x97\x4d\xcd\x22\xcc\xc4\xf6\xed\x55\x96\xd9\x0c\x63\x88\x7e\x85\x46\x1f\x2e\x2a\x39\x38\x15\xcd\xb5\x64\x62\xb0\x68\x98\xe4\xff\xa1\x06\xf6\xa8\x18\xf4\x36\x6c\x3c\x78\x55\x5c\xb2\x81\x5c\x09\x36\x50\x17\x85\x1a\xdc\x34\x2b\x88\x9e\x3b\x28\x06\xcb\xa6\xbe\x39\xab\x6a\x08\xc6\x64\xa2\xe6\xda\xa2\xe5\x78\x70\xa1\xd4\x52\xe6\xdf\x7e\x7b\x76\x3a\xbe\x62\xdf\x9a\x1d\xee\xf2\xcb\x11\x26\xbd\xeb\xff\xeb\xda\xdb\x37\x52\xff\x45\xcd\xc5\x3d\x8e\xcf\x67\xfd\xee\xce\x67\x7a\x27\xe0\xcf\xee\x99\x33\xb3\x61\x36\xad\x3a\xe9\x9c\x2e\xbe\x74\xc3\xd9\x8c\xbb\xe7\x1b\x00\xd7\xfa\x48\x87\x53\x72\x63\x28\xc4\x01\xdd\x9d\x92\x6b\x7a\x9f\xfc\x41\x27\xb3\x9e\x9d\x30\x48\xa9\xc3\x13\xfa\x87\xde\x1b\xe1\x0e\x20\x5f\xb0\x51\x18\xbe\x9d\x3c\x61\xeb\xf5\x74\xef\xfe\x63\x36\x4f\xa6\x2d\xfe\x68\xa0\x8a\x4b\x26\x61\x02\x64\xa5\x45\x82\x41\xc5\xd5\xe0\x94\xa9\x6b\xc6\xf8\x60\x32\x28\xf8\x62\x30\xdd\xbb\x4f\x06\xfa\xb3\x8a\x9f\x0f\x20\xe2\x9c\x16\x51\xa5\x8b\xe3\xac\x2e\x0a\xae\xf3\x0c\xce\x96\x72\x50\xc9\x01\x6f\xd4\x60\xc5\xed\x42\x60\x8b\x11\xce\xaf\xe9\xe4\x31\x9b\x03\x80\xe0\x59\xdd\x68\x66\x9e\xed\x7f\xcb\x70\xbe\xbf\x3f\xde\xdf\x37\xd2\xff\x09\xa8\x4d\x62\x22\x4b\xde\xd0\x93\xb1\x2e\x64\x6f\x66\xfe\x4e\xc7\x0d\xbf\x32\x59\x12\x55\x9c\xa5\x64\x37\x5e\x21\x9e\x92\xd9\x3f\x28\xdb\xb9\x06\x0e\xeb\x46\x13\x5c\x86\xe7\x6f\xc6\xcb\x46\x2a\x5b\xa3\x85\x2f\x45\xc1\x6c\x39\x6e\x87\x3b\x5a\xdc\xf3\x01\xe1\xd6\x8b\xe7\x23\x28\x53\x63\xea\x7a\x43\x19\xf9\xb8\x5e\xeb\x32\x27\xa4\xe7\xe3\x94\x9c\x72\x7c\x7b\x40\x2f\x22\xb1\x92\xa1\xb4\x23\x78\x83\x41\x10\x8f\xa8\xec\x29\x3a\xc0\xb0\xb8\x42\x34\xa3\xc4\xd4\xc9\x28\x15\x99\xd1\x71\x2a\x3c\x63\x1e\x64\xd8\xa8\xd2\x83\xd9\x41\x7c\x77\x8a\xbf\xdd\xc3\xa4\xa1\xec\x48\x80\xe6\x71\xd8\xfa\x46\x37\x59\x36\x79\xfc\x12\x35\x5a\xbe\xc2\xce\x50\x56\xe7\xa3\x8a\xb0\x23\x7e\x4c\x1b\xc2\xa9\x08\x41\x91\x02\x16\xa9\x45\xd3\x64\x94\x1d\x4d\x8e\x1d\xc7\x15\x00\xfc\x04\x6c\xfc\xd1\xe4\x38\x72\xcb\x0e\xfa\xb3\x6c\x96\x06\xda\x99\x9b\x74\x9d\x97\x72\xdb\x2b\xd3\xa3\x89\x6e\xbf\x8f\x62\xf8\xb8\x99\xb9\x0b\xf7\xbd\xff\x44\x62\x67\x8a\x77\xa7\xa4\xa0\xec\xa8\x3a\x26\x92\x56\x3b\x53\x52\x52\x76\x24\xe3\x0a\x8b\x2c\x9b\x3c\x79\x89\x0a\xc2\x31\xf6\x89\xa5\x49\x2c\x49\x81\xe7\x08\x3a\x5e\x12\xfd\x25\xe5\x44\x50\x89\x73\x93\x56\x10\x5d\x34\xa4\x05\x71\xb9\x82\x71\xf4\xc5\xf0\x74\x1c\xc3\xe2\x36\x1b\xef\x4c\xb5\x09\x01\x2d\x5a\xdc\xa2\x04\x3f\xa6\x11\xea\x05\x5f\xb0\x4f\xbb\xaa\x7d\x9e\x05\x78\x22\x7c\x0e\x76\xb2\x8b\x5d\x35\xae\x16\x1b\x03\x46\x77\x74\x4c\xde\xeb\xff\x7e\xa7\x53\xf2\xcc\x90\xaa\x4b\xba\x4f\x7e\xd1\x9b\xe1\xb9\xfe\xef\x29\x1d\x4e\x5b\x67\x9d\xb7\x88\xb5\xd0\xd4\x8a\x7e\x42\xef\xbd\xb3\xa0\x9a\x85\x60\x50\xca\xdb\x4b\xe1\xd7\x3a\x53\x3b\x0a\xca\x40\x8d\x82\xbb\x1c\xf5\x81\x8e\x74\x26\x12\xb4\xbb\x83\x4c\x43\x3e\xa0\x43\xcd\x64\x98\x4a\x83\x35\xf6\xce\xca\x73\xba\xa1\x44\xb7\x8f\x0c\x9f\x07\xe1\x58\x3e\xa1\x43\x8c\x9f\xeb\x7d\x28\xd0\xaf\xd1\x2d\x41\xd4\xf8\x2c\x6b\xd0\x3b\x12\xb4\x6d\x97\x85\x95\xfc\x6a\x36\xa9\x19\x91\x2c\x33\x95\x55\x08\x63\x3d\x52\x46\xd3\x2f\xe8\xe5\xcc\x01\x58\xbe\x45\x1c\x93\x67\x50\xb7\xab\xe1\x59\x96\xa1\x21\x7a\x96\xf4\xea\x09\xc7\xeb\x35\xcb\xb2\x61\x81\x30\x9e\x39\x23\x8e\x67\x7e\xf0\x22\xc7\xbf\xdb\x36\xdd\xcd\xd4\xb3\xf1\xd2\x9a\xf0\x82\xcd\xa3\x35\x16\x94\x9d\x7a\x1e\x53\x8e\x67\x5d\x16\xb4\xd7\xcc\xa1\x9c\x07\xf5\x94\xf9\x33\x6a\x06\x31\xcb\x5e\xa3\x43\x4c\x74\xd7\x0c\xe1\xd3\x3f\x67\xa6\x93\x9b\x10\x0e\xd0\x98\xf7\x39\x00\x20\xe3\x0f\x1a\x8e\xf5\xca\x8c\xf5\x2a\x18\x6b\x8e\x49\xad\xc9\xa8\x5d\xac\xb5\xd7\x46\xf8\x25\x29\x60\x49\x06\x33\xf2\x9b\x9e\xf6\xc4\xbf\xc2\xf9\x2c\xef\x4e\x6d\x8c\x14\x67\xe5\xb6\x77\x7f\x92\xb8\xa4\xb7\x7e\xb5\x89\x8b\xf5\x94\xdd\x9b\x25\x36\x72\xf7\xd9\xbe\x39\xd0\x5f\x50\x19\x32\x01\x2f\xae\xae\xd8\xa2\x2a\x14\xf3\x66\xd4\xd3\xf0\x88\xfe\x49\x32\xf1\xb4\x6e\xca\x4b\xf0\x1c\xb2\x39\xf6\xc2\x1c\xaf\x35\xf3\x5a\xfb\x77\xfb\xe1\xbb\x17\x8b\xba\x2d\xf7\x7e\xf8\xe6\x65\x73\xed\x5f\xdc\x0b\x5f\x88\x15\xff\xa5\x52\x17\xfe\x65\xcc\xaf\x77\xc6\xaa\x0c\x62\xb1\xef\x47\x98\x96\xf7\x13\x70\x48\x46\xf7\x37\x86\xca\x5c\xce\x2e\x29\x0b\x75\x6f\x0a\xb5\xaa\xa3\x4b\xca\x37\x11\x93\x02\x77\x09\xe1\xb9\x68\xdb\x70\xb9\xa5\x0d\x66\x5f\xee\xa7\x00\x15\xf4\x32\xa8\x5d\xc5\xb7\x0b\x77\xd4\xee\x04\xea\x67\x6e\x2d\x87\x07\x2e\x29\x5a\xb3\xdd\x84\x5f\xe8\x75\x3e\x29\xbc\xf3\x49\xe1\x04\xc0\x62\xbc\x60\x75\x71\x33\x2b\x69\x6f\xdc\xe9\xc9\xe3\x72\x2e\x77\xca\x5c\x92\xa2\x27\x43\xe1\xac\xfe\xe7\xfe\x29\xff\x0d\xa0\xba\xf4\xd6\x2a\xa8\x7e\x26\x25\x95\xad\x7d\xfb\x6d\xb5\xc8\x7f\xdf\xd9\x21\x6e\x6b\xe6\x9c\x44\x7b\x3f\x67\xc4\x6f\xa8\xbc\x24\x89\xcf\x55\x41\xcb\x9d\x82\x78\xf2\x9a\xef\x4e\x37\xa4\x7c\x22\xe7\x28\x38\x37\x68\x49\x3e\xa0\xf7\x84\x79\xa8\x06\xb3\xed\x19\x3c\xbd\xc7\x9a\xec\xcd\x2b\x84\xf3\xa7\x9a\x9a\xea\x2d\x5c\xee\x4a\x8c\xf5\xa9\x17\x94\x51\x00\xa1\x66\x98\x3c\x5f\xaf\x7f\x59\xaf\x91\x27\xbd\x18\x13\x16\xcd\x8f\x91\x13\x7a\x66\x07\xdf\xb2\x98\xd0\x45\x9f\x5d\x8b\x62\xd9\xfb\x91\x59\x3d\x97\x1d\xdb\x26\x77\x42\x76\x57\x8f\x55\xa6\xab\x8b\x4a\x86\xaa\xf4\x68\x45\x45\x75\xb7\xaa\x97\xb7\xe1\xd0\xf7\xb0\xf3\x97\xf1\x52\xbc\x68\x56\xf5\xe2\xef\x15\xab\x17\x3d\x16\x1c\xe9\x02\xd4\x87\x98\x55\x77\xc3\x09\xe2\x0e\x7f\x73\x8a\xb4\xe7\x49\x7b\x71\xe7\x9e\xfc\xb0\x41\x9c\xd6\xe0\x98\xd5\xbf\x93\x13\x21\x3d\x22\xd6\xeb\x02\xe1\xa8\xd5\x56\xf0\x7c\x5b\x54\x5c\xd1\x17\xd1\xd4\x35\x5c\x55\x7c\xc5\x0e\x3f\xb1\x72\xa5\x0b\x08\x7b\xd5\x99\xf8\xa8\xd0\x65\xb1\x92\xfd\xdf\xa5\x23\xfd\x3d\x98\x0d\x86\x0e\x2d\xdd\x61\x86\xc3\x27\xfc\xee\xad\x68\xce\x2a\x1f\x5e\xeb\x8b\x55\x4f\x91\xa2\xe1\x0b\x14\x50\xa0\xab\xfa\x0e\xb7\x8c\x51\xa3\xbf\xf4\xbf\x2a\xfd\xab\x1a\x43\xac\x6a\x1b\xf5\xd7\xb8\x0f\x35\xa4\xb7\xce\x40\x7b\x64\x8d\xc0\x49\xa5\x29\x54\x75\x86\x8a\x21\xa5\xc2\xd1\x2a\x2d\x28\x99\x1b\x82\x91\x1e\x18\x2d\x94\xbd\x15\xcd\xf2\xc3\xcd\x92\xc9\x01\x84\x73\x2e\x54\x23\xe4\x60\x51\x09\x56\xaa\xfa\xc6\xc9\x64\x5e\x22\x1b\x9c\xde\x0c\xd4\x05\x1b\xfc\x9f\xa5\x68\x96\xbb\x9a\x16\xc9\xff\x33\x58\x1a\xa5\xdf\x78\xf0\x93\x64\x6d\x79\xe3\xf2\x82\x95\x97\xfe\x27\xc2\x03\xd5\x0c\xf4\xfa\xd2\x05\x5c\x8d\x07\xef\x58\xb1\x18\x5c\x35\x82\x0d\x0a\x05\x72\xba\x17\xd3\x57\x92\xed\xc2\xc7\xbb\x6d\x2d\x23\x77\x61\x2a\xc7\xc6\x46\xee\x05\xff\x58\x88\xaa\xe0\x6a\xf0\x73\xd5\xd4\xb0\x0a\x47\x44\x06\x07\xbc\x6a\x67\x99\x6d\x8c\x17\xf1\xef\xab\x4a\xb0\x85\xb5\x00\xe3\xf4\xb6\x10\xa2\xb8\xc9\x19\x39\x6d\x1a\x4d\xfe\xf4\xa7\x39\x23\x86\xd6\xe6\x8c\x18\x22\x0e\x74\x51\x54\xfc\x5c\x3f\xdc\x5c\x9d\x42\xd6\x82\xeb\xef\xe0\xfb\x37\x67\xb9\x22\xde\x11\x80\x04\xce\x79\x39\x23\x95\x55\xa1\x42\x26\xde\x2c\x98\x2f\x16\x52\x1a\xce\xda\xbf\xf0\x89\x22\xf2\xa2\x80\xbf\xec\x53\x51\xaa\x5c\x91\x78\x18\xf3\x8a\x74\x56\x45\xde\x6c\xfc\x1e\x1f\xfb\x9c\x94\x6b\x11\xf3\x4b\x17\xf0\xc8\xde\xd0\xd8\x7b\x99\xb7\x07\xef\xdf\x9f\x7c\xf8\xf1\xc5\xfb\xde\xdb\x99\xd1\x67\x8a\x55\xe3\x56\x77\xda\xb2\xb7\x1c\x4d\xb4\x5c\x88\x0a\x24\x30\x29\x10\x47\x53\x4d\xd3\x2b\xaa\x1f\x1f\x4c\x30\x9e\x41\xda\xe4\x11\x0e\xb6\x45\x11\x08\x80\x2c\xcb\x58\x50\xf0\x9c\xe5\x5e\x99\x1c\x7a\x1d\xc8\xf6\x6a\x0c\xb1\x81\x9b\x80\xe6\x6c\xe0\x6f\xac\xf5\x2e\xd0\x43\xe4\x77\x02\xd7\x6b\x1c\x96\x66\x31\x28\xeb\x42\xca\x41\x21\x07\x85\x3f\x01\x46\x81\x81\x6d\x0b\xf5\x3a\x64\x41\x71\xef\xd8\x19\x13\x8c\x97\xae\x4c\x7d\x24\x0c\x2e\x0a\xd0\x6b\x9d\x32\xc6\x07\x15\xaf\x54\x55\xd4\x95\x64\x8b\xc1\xae\xde\x4f\x4c\x20\x1c\xe5\xd0\xf5\xb3\x85\xbf\xa0\x1b\xaa\xf5\xda\xb1\x11\xad\x2a\x4d\x85\xca\xa9\x20\x79\xce\xf2\xc0\x37\xad\xf6\x8d\xec\xcd\xec\xe9\xbd\xea\x1f\x90\xf7\xba\x75\x03\xf6\x09\xa2\x8f\xeb\xf2\xae\x56\x52\x0d\x58\xa5\x2e\x98\x18\x9c\x32\x90\x22\x07\x8d\x08\x46\x88\x00\x95\x18\xed\xb8\x1a\xf0\x2c\xf0\xe2\xa7\x56\xc3\x6e\x6e\x21\x91\xca\x32\xd5\xbe\x24\xb7\x65\xc3\xa5\x12\xab\x52\x35\x22\xb7\x6a\x76\x46\x18\x5f\x5d\x31\xa1\x29\x72\x3e\x9c\x92\x6b\x61\x02\xa4\xe7\xc3\x09\x29\x1b\x7e\x56\x9d\xaf\xec\xbb\xc9\x66\x83\x89\xca\x32\xa7\xc5\x97\x4c\xbd\x75\x45\xbf\x39\x9b\xf7\xa6\xc2\xe0\xe4\x7a\x29\x41\x2b\x4e\x4e\xa8\x32\x60\xf6\x2b\x1a\x70\xf5\x1e\xae\xae\xcf\x54\x85\x14\x64\x49\x47\x27\xf6\x62\xd5\x18\x9a\xef\x5a\x17\xa2\xdd\xd1\x0e\x9a\x90\xca\x7d\x8e\x11\xde\x19\x9d\x9c\x8c\xc8\x59\xc4\x6c\xb4\x66\xfd\xf6\x1c\x57\x44\xcc\xa4\x61\x25\x78\x6b\xa7\xd8\xd0\xd4\x94\x9a\x54\xf4\x40\x93\x1d\xd4\x60\x52\xd0\xc9\xac\x78\xdc\xcc\x8a\x9d\x1d\x5c\x1d\x15\xc7\x81\x71\x75\x71\xec\x41\x05\xa9\xa0\xc6\xa4\xc8\x46\x5b\xb3\x5c\x0b\x23\x47\x3a\xf1\x78\x5c\x36\xbc\x2c\x14\xaa\xf4\x6e\x14\x63\x76\x55\x29\x95\x98\xde\x1a\xce\xe8\xc8\x15\x79\xdb\xf0\xe8\x0e\xab\xb5\x7e\x23\xcd\xd9\x59\xfc\x0a\xa2\x4f\xd7\x8a\x89\x18\x1e\xd0\xb5\x6d\x48\x29\xdb\xe8\x13\xfe\x9c\xa9\x1e\x7b\x05\xb6\x21\x32\x7c\x01\xf6\x05\xc6\xfb\xb7\xeb\x48\x12\x14\x6b\x20\xa3\x31\xde\x6c\x36\x48\xe8\xc5\xe6\x71\x54\x49\x89\x04\x51\xde\x3c\xa9\x86\xcb\x49\xc2\x03\x03\x2d\xcd\xa3\x05\x3e\x6b\x1d\x7e\x6b\xe6\x3d\xa0\x6f\x37\xf8\x68\x79\x6c\x11\x32\xcc\xb0\x69\x16\x95\xc7\x56\xb7\xc6\x88\xe4\x97\xaa\xae\xdf\xb1\x92\x55\x1f\xcd\x4d\x66\xaf\x45\x62\xd0\x50\xb0\x45\x32\x4d\x0e\x4d\xea\x82\x1c\xe0\x5e\x6a\x9e\x1a\x6b\x9f\x36\x43\x10\x3c\x93\x52\x8a\x0a\x2a\xf0\x7c\x32\xa4\xb4\x5a\xaf\xa7\xdf\x56\x94\xd2\xe9\xb7\x45\x5e\x19\x64\xb3\x02\xc4\x90\x79\x43\x27\x39\x6a\x68\x9f\x0c\xaf\xe6\x0a\x06\x3b\x5f\x81\x0f\x2c\x6a\xd6\x74\x82\xb3\x2c\xec\xaa\xde\x55\xc8\xb7\x00\x9b\x2d\x54\x91\x22\x1e\x80\xd4\x46\xb0\x9d\xa3\xb6\x3b\xce\xee\x74\x43\xb8\x9e\xae\x16\xe8\x63\x76\x66\xde\xd9\xa9\x30\xc7\x1a\x42\xdc\x8d\x7c\xe3\x36\xd9\xd8\x10\xca\xe0\x90\xd7\x9b\x48\x37\x28\xe0\x97\x55\xcf\xae\x63\xff\x55\xbb\x8e\xb5\xbb\x4e\x85\xbb\x4e\xf5\xef\x3a\xb8\x35\xa6\x96\xfc\x01\x8c\x29\xf8\xff\x68\x86\x5a\x8c\x1b\x6e\x6e\xb4\x13\x4a\x04\x13\x83\x26\x6b\x11\x41\x5f\xe1\xcc\x98\x4f\x9a\xf0\x34\x8a\xa1\xbe\x42\xf1\x06\xf6\x01\x8b\xf6\x81\xc2\x7f\x62\xe9\x3a\xab\x89\xb0\x09\xc6\x0c\x3f\x4c\x09\x4c\x3c\x5b\xc3\xf1\xf9\x2a\x57\x5b\x76\x8b\x0b\x80\x12\xae\x9b\xd0\x81\xfd\x68\x79\x6c\x17\x63\x9b\x30\xd6\x53\x0c\x15\xdb\xe1\xc2\xa1\x01\xad\x59\x69\x5f\xda\x4a\xe6\x5b\xc9\xe6\xab\xfc\xae\x3d\xfd\x53\x6a\x5f\xfa\x25\x0d\x3d\x3b\x4b\x5a\xba\x49\x29\x10\x4c\xd4\xb6\x5d\xd3\x16\x35\x4f\x8b\x3e\x67\x0a\xe1\xb4\xc1\xdb\xf6\x20\x8a\xc6\xc6\xc3\x89\xc0\x42\x1f\x57\xd2\x2c\x78\x86\xe7\xec\x68\x72\x9c\x33\x8c\x5a\x8c\x24\x07\x4a\x0d\x03\xdc\xdd\xb6\xfe\x3a\xab\x8c\x37\x6e\xb1\x6d\xe3\x92\x02\x93\xdb\xb7\xa2\xf9\x58\x81\xc5\x21\x79\xd6\x70\xa9\x19\x80\x7c\xb1\xd9\x04\x12\x8f\x3f\x93\xbf\x54\xc4\x9a\x4e\x70\xc0\xe3\x8a\xcf\x7c\xd6\x7a\x51\x05\x5c\x67\xdf\xa1\xb4\x31\x44\x22\x14\xfa\x66\xcd\x58\x5d\x14\xea\x1d\x64\x91\x54\x90\xe8\xf7\xf7\x45\x2d\x19\x15\x68\x38\xc5\xf1\x8b\x0f\x62\x05\xe9\x93\x24\xfd\xb5\x5e\x7d\xc2\xde\x14\xc5\x5f\x5c\x54\x72\xcb\xc2\xd8\xc4\x39\x0f\x2c\x59\xa2\x3d\xf6\x26\x2c\x1c\xd6\xa6\x3b\x2e\x66\x04\xc3\x0f\x3b\x03\xac\x08\x77\x9c\x5d\xcb\xcd\x09\xca\xc7\x17\x85\x7c\x73\xcd\x9d\x25\x05\xe9\x3f\x60\xde\x83\x24\x35\x37\x7f\xf2\xdb\x0d\x60\x25\x56\x8a\x09\x2d\x80\xae\xd7\xa3\xff\xf5\xbf\xdc\x8f\x11\x29\x68\x33\x2e\xe4\x0d\x2f\x5f\x84\xef\xa3\x94\x11\x60\x7a\xaa\xe6\x3d\x48\x6a\x1f\x8a\x73\xc8\x12\xfc\x0e\x66\xb7\xeb\x60\x1d\x71\xa4\xa1\xc8\x70\x3a\x57\xf9\x29\xa9\x12\x0e\xb6\x09\x10\xaa\x48\x01\x42\xf5\x27\x24\xd6\xeb\xa3\x63\xbf\xf4\xc1\x1d\xf0\x63\x73\xd9\xf5\x35\x33\x23\xbb\xea\x68\x99\x00\x08\x00\x00\x84\x28\x3d\x0b\xf8\x72\xcb\x93\xff\xc0\xb8\xe9\xa9\x16\xc9\x8b\x5a\xb0\x62\x71\x33\x10\x2b\xae\x85\xc0\x11\x9e\xd9\x0f\x17\x86\xe9\x87\xaf\x47\x80\x16\x6b\x0a\xaa\x5c\x75\x2f\x11\xde\x80\xc9\xf7\xf8\x8a\xa9\x8b\x66\x41\x1b\xc2\xc7\x85\x38\xa7\x95\xbb\xce\x2b\xa8\x89\x19\x70\x6e\x63\x07\x79\x3d\xe7\x09\xdc\x65\xe9\x24\xe9\x01\x02\x2f\xb0\xd3\xe4\xb8\x0a\x24\x44\xfd\x19\x71\xf6\x49\x19\x2f\x39\x53\x0f\xe6\x63\x09\x38\x29\xe3\x13\xfb\xb7\x10\xe7\x2d\x0a\x92\x6f\xb0\xcf\xef\x86\x62\x65\x7b\x20\xe8\xc2\xb4\x74\xc6\xc7\x0b\x6b\xb0\x75\xf8\xa9\x64\x4b\xc3\x17\xea\x37\x46\xf7\x39\x32\x0d\x09\x0b\xcb\x32\x3e\x2e\x4e\xc5\x6a\xa9\x90\x7b\x6b\xca\xc2\x33\x41\xcf\xec\x9d\x47\xed\xe0\x2e\xa1\xf9\xa0\x58\x1f\x19\x70\x45\x30\x06\x87\xe6\xf0\xf1\xa2\xe1\x6c\xbe\xc8\x97\xa4\x84\x51\xeb\x19\x01\x7b\xdc\xc2\x7b\xa2\xb3\xe7\xe6\xab\xcd\xa6\xed\x65\x69\x7d\x07\x91\xe9\x95\x9d\x0a\xfb\xde\x4e\x48\x69\xba\x04\xce\x8b\x5c\xd3\xc7\x2a\x91\xef\xc0\xe7\xd9\x2b\x23\x6f\x75\x89\xb9\x6b\x38\x29\xc4\x79\x6e\xb8\x7d\xc0\xe7\x0b\x4c\xee\xa2\xec\xb6\x46\x9d\x5b\x6c\x36\x1b\x36\xbe\x16\xc5\x92\x96\x36\xa0\xed\x48\x3a\x20\x0d\x13\xa5\x50\xcb\x3c\x3e\x09\x94\x91\x5a\xaa\x19\x31\xa3\x8c\xe3\xe7\x23\xb2\xa0\xa3\xd2\x7a\xf4\x2c\x46\xe4\x82\xde\x6e\xda\x6d\x77\x1a\x69\xb8\xae\xa2\x5f\xaf\xf4\x2f\x63\x2c\x71\xbb\x99\x9d\x1f\x55\xc7\xdb\x48\xdc\xcc\x18\x46\xd8\x0d\x79\x1e\x09\x76\xe4\x86\x7e\xcc\xb2\x8f\xe8\x23\x7a\x8d\x8e\x8e\x31\xc6\xb3\x9b\x2c\xbb\x31\x1a\x4e\x61\x06\xe3\xc6\x00\xfa\x9e\xd3\x1b\x73\x78\x1d\xd0\x57\x81\xa0\x7a\xba\x55\x68\x3d\x0f\x74\x12\xd7\x9a\x1c\x1e\x99\x25\x4e\xdc\x10\xba\x85\x75\xdc\x2f\x98\xb0\x23\x75\xdc\x47\x87\x9d\x37\x87\x26\x15\x10\x3c\x65\xb3\x09\x7d\xbe\xff\xf0\x2c\xd6\x2c\xcc\x49\x03\x81\xa8\x09\xb8\xda\x0a\x45\x80\x7b\x6f\x45\x73\x55\x49\x16\xb6\x44\x13\x99\x61\xa0\x22\xf3\x9a\x42\xb3\xc7\x6b\xc4\x8e\xf8\x31\xf8\x18\xcf\xda\x7d\x39\xa4\x54\xda\x6d\xe0\xc0\x6b\xf5\xe2\x5e\xd1\xd2\x82\xd8\xda\x3a\x57\x59\xd6\xbd\xf8\x58\xf9\xb1\x5f\x91\xd1\xc9\x49\x71\x5d\x54\x6a\x84\xe7\xb6\x6d\x63\xc1\x64\x53\x7f\x64\x68\x35\xb6\xef\x70\x0a\x26\xaf\xa5\x48\x4b\x50\x08\x83\xc6\x46\x38\xf1\xe6\xb5\x9d\x05\xf7\x1e\xe7\x9d\xf2\xfb\xca\xb5\xed\xa7\x8c\x54\xa8\xec\x14\xeb\x85\xc9\x4e\xe9\x9b\x02\x49\xb3\x3d\x61\x00\xf5\xa8\x06\x2e\xd9\x8a\xaa\xb9\x85\xc4\xaf\x48\x85\xf3\x0a\x85\x37\xc1\x27\xe6\x26\xd8\x45\xb3\x71\xa7\xdc\x91\x23\x03\xc7\x8e\x96\x1b\x05\x4e\x4b\x8c\xcd\x4d\xe6\x16\x52\xd9\x16\x64\x61\x55\xc0\x19\xc7\x11\x96\x88\xe8\x51\x45\x4c\x1b\xfa\xca\x72\x28\x20\x17\xb3\x2d\x64\x29\x51\x15\x7d\xb8\x60\x03\x57\x33\x18\x72\x81\x22\x68\x69\x38\xb9\x41\x31\xf8\x0f\xf8\xf8\x3f\x06\xa6\xac\x16\x14\xfe\xc2\xb2\x50\xb5\x96\x42\x7c\xdb\x1d\x55\x8e\xcf\x30\xb3\xf4\xbc\x82\xb3\xb7\x59\x0d\xac\xc8\x74\xb0\x2e\x8c\xd5\xa9\x79\xeb\x8f\xe6\x79\x65\xc8\x38\xe2\x47\xb0\x3e\x56\xb5\x7a\x5d\x5c\xb1\x63\x5a\x59\x61\xd6\xe0\x31\x5a\xfc\xa1\x97\x4d\xe9\x37\xf7\x30\x3c\x53\x82\xf1\x35\x8b\xd3\x8e\x2e\xee\x36\x03\xe7\x55\x8e\xbe\x6c\x40\xfd\x60\x9a\x86\x39\x05\x7c\xc1\x07\x76\x67\xf5\x15\x1f\x84\x4b\x6b\x65\x32\x7d\x38\xbc\x6c\xca\x5c\x73\xef\x9b\xd9\x74\x50\x81\x06\x15\x69\x69\x54\x95\x17\x2f\x9b\x92\xb2\xa3\xe9\x31\x26\x7b\xed\x1b\x7b\x71\x65\xde\xed\x1d\x13\x35\x2e\xce\x14\x13\xe6\xf7\xfe\x31\xb6\x70\x63\xe2\xe6\x90\x2b\x51\x31\xe9\x2c\x82\x22\xd3\xa1\x56\x26\xb4\x47\x41\xd5\xf0\xf5\xfa\x76\x33\xb3\x40\x75\xfe\x8c\x32\x91\x89\x06\x0a\xa6\x2e\xcc\x1d\xc2\x6c\x81\x05\x50\x52\x2d\x3d\x72\x7d\x1b\x01\xba\xc3\xe6\x98\x30\x4f\x76\xdf\x10\xeb\x3d\x67\xdc\x80\x25\x53\x9a\xbb\x4e\x8c\x84\xf4\x8e\x69\x3d\x24\x2b\xd8\x73\xbc\x5d\x62\x16\x82\x61\x1b\x58\x86\x59\x18\x2e\x3b\x70\x49\xc3\x4a\xbe\x2e\x5e\xa3\x36\x1c\xaf\x65\x2d\xc1\x50\x28\xd2\x3a\x80\xe9\xd4\xce\x4e\xd3\x7a\x6b\x62\xbd\xe1\x6d\x9d\xa4\xc1\x6d\x33\x2c\x71\x3a\x6a\x8e\x89\xe1\x21\xe8\x70\x4a\xf8\x2c\x79\xaf\xfc\xcb\x09\xe1\xfe\x22\xa0\x30\x6b\xb8\x70\x36\x40\xb7\xfa\x67\xfe\x72\x13\x5a\xff\x78\x66\xc0\xb0\x2c\xca\xb0\x2b\xc3\x89\xb7\x1b\xba\x0a\xce\xc3\x83\x71\xa0\xa8\xa5\xaf\xc8\xab\xe8\xf7\x15\x79\x75\x24\x8f\xe9\x15\xf0\x66\x75\x01\x6e\x19\xb4\x65\x5a\xbf\x77\x83\xa8\x37\xbb\xec\x24\xf7\x68\x14\x7a\xc7\x3d\xcb\x58\x58\xab\xf7\xb4\x52\x36\x9e\xf4\xd5\x7a\xdd\x53\x27\x84\xbd\x0a\x1b\xb6\x5e\x2b\xb8\x44\xc2\x58\x4b\x41\x57\x85\xb8\xec\x3b\x9a\xbf\x4e\xa3\xfc\x0a\xae\xb1\x5b\x95\xf2\x2b\x22\x61\x5f\xad\xd7\x08\x2c\xb2\x7a\xda\x85\x31\xd9\xae\x25\x3f\x80\xdb\x6e\x36\x2e\x80\x23\xeb\x36\xef\xd6\x1e\x97\x39\xdb\x6c\xc8\x35\xfa\x23\x14\x49\x82\x1f\x47\xc5\x56\x4e\x8a\xb0\xf1\x41\x28\x42\xd1\x3f\x74\x75\x3a\x25\x50\x99\x25\x70\x33\xec\x7a\xf0\x07\x2a\x7d\xb2\x17\x77\x7a\x67\x15\x71\x3c\xaf\xf2\x0a\x16\x22\xea\x3b\x7e\xfd\xc7\x40\x8e\xad\x52\xc1\x7f\x00\x6a\xe1\x6b\x30\x4f\x8c\x07\x70\x44\x0e\xee\x60\x10\xc9\x81\x17\x03\xbb\x59\x46\x47\x86\x8a\x0e\x7c\x61\xc7\xa3\x8d\x41\x99\xec\x53\x6b\xd9\xb8\xca\x40\x27\x60\x36\xb1\x55\x75\xb7\x08\x31\x6a\x2c\xd8\x47\x26\x24\x43\x98\x74\xf7\xb9\xf2\x7b\xdc\xc7\x4b\xf3\xd6\x87\xc2\x94\x98\xec\x66\x11\x6e\x75\x6f\xb6\x17\x6c\x70\xdd\x5c\xc8\x2a\xe9\x6b\xf2\x29\x58\x3f\xd1\x45\xca\x27\x73\x4b\x98\x3a\x2d\x5a\x75\x0f\xfb\xe8\x10\x25\x81\x48\xd8\x67\x10\xcc\x0c\x9b\x69\x1e\x2d\x6c\xb5\x6d\x8d\xc5\xb0\x0e\x4f\x1e\x0b\x50\x1d\x1e\x82\x06\x18\x5a\x78\x80\xcc\xe0\xb0\x70\x14\xfa\x03\x26\xc3\xd6\x75\x1d\x06\x16\x48\xf6\xc8\x4a\x8c\xe5\x45\x21\x0e\x14\x9a\x60\xcf\x39\x5a\xfd\x6c\x96\x59\x32\xbb\xc3\xc7\xb2\xae\x4a\x86\xa6\x18\xc2\x73\x5c\x54\xf2\x88\x1f\x53\x85\x37\x44\xaa\x66\x99\xa7\xca\x38\x3b\x7a\xa1\x3e\xb0\x6d\xd7\xd1\xe4\x38\x38\x7b\x62\xde\xc3\x00\xdf\x5a\x11\x94\x85\x5c\x84\x39\x5e\x3e\x16\xf5\x86\x74\xc4\xd1\xde\x51\xd7\x6d\x70\x05\xcd\x5a\x8d\x7e\x68\x01\x00\x3b\xcd\xc9\xd1\xf6\xb0\xb4\xbc\x82\x19\x53\xcf\x9a\x08\xd2\xdc\xc5\x80\x0c\x87\xcd\xc6\x8d\x6f\x95\xf6\xd7\x2e\xc9\xdd\xe9\xac\x7a\x42\x27\xb3\xdd\x5d\x8f\x15\x95\x0e\x0c\x98\xb7\x16\xe9\xe0\xc0\x91\x4b\x29\x2d\xc6\xe6\x10\x76\x2b\xb8\x41\x23\xc6\x17\x46\x17\xe1\xde\x3d\xa6\x7e\xc5\x39\xd9\xc1\x4e\x69\x41\x46\x8e\x0f\x19\x61\x52\x07\xc9\x2d\x13\x62\xca\x2a\xb3\xac\x8e\x17\xef\xe3\xc2\xf3\x30\x6d\xe5\x6d\x1a\x19\x4e\x5a\x00\x12\x9b\xbf\x2d\x34\xfc\x22\x48\xdd\x38\x5d\x44\xf9\xd5\x75\x79\x04\xac\x61\xdd\xd5\xdb\x28\x71\x33\x00\x95\xe9\x15\xe3\x6a\x70\x5d\xa9\x8b\x66\xa5\x06\xf0\xf9\xa0\x11\x03\xdb\x82\xd1\x9f\x68\xf0\x66\xb3\x21\x46\xab\x91\x38\x85\xb6\xa1\x46\xb7\xce\x3c\x37\x33\xcf\xbd\x06\x2c\x99\x79\x0e\x1c\x51\xd3\x9d\x45\xbf\x25\x9b\x78\xa2\xac\x92\x1b\x1a\xdf\x84\xcd\xb4\x27\x47\xe3\x82\x7c\x56\x59\x86\x46\xf0\x3c\x32\x7a\xf6\x91\xd3\x9f\xc0\x6f\x9c\x65\x55\x5b\x6b\x96\xa9\xc7\xb4\x0a\x8a\xcb\x32\x64\x62\xfb\x18\xe9\xbd\xa0\x9a\x99\x6f\xd7\x67\x7e\x1b\xf0\x3f\x06\xb7\x9d\x14\x96\x1a\x55\x73\xb4\x8d\x5c\xc1\x96\x0a\xab\xd1\x1c\xbb\xd5\xac\x1b\x65\x06\x2a\xf0\x86\xb8\x1f\x5d\x1f\xdc\x2f\x20\x18\x41\x9f\x21\x4b\xda\x71\x13\xb3\xa3\x6d\x0e\x7c\x9b\x07\xca\x2c\x9b\x03\x79\xc2\x43\x3d\xa9\x85\xbc\x31\x31\x76\x12\x5f\x5b\xa0\xd9\x9c\x79\xa0\xda\x62\x56\x0b\xa5\x2c\x09\x35\xf9\x14\x26\x17\xe0\x82\x58\xc9\x8b\x88\x90\xb5\x56\xdb\x5b\x97\x95\x32\xcb\x2a\x46\x01\x09\x96\x95\x81\x22\xe1\xa1\x9c\xa1\xe7\x3c\xbe\xdb\xb0\x23\xce\x83\x79\xd5\x94\xcd\x0a\x22\x98\x7c\x40\x5c\x37\x71\x43\x60\x13\xfd\x57\x35\xd1\xac\x41\xea\xc3\x98\x0a\xca\xb7\x9e\x12\x22\x50\x8e\x34\x54\xc0\xac\xeb\x56\xba\xe3\xbb\xd9\x6c\x3a\x74\xa1\xaa\xf5\x41\x5a\x5b\x4a\x50\x28\xc5\xae\x96\x6a\x84\x37\xc4\x9d\xb0\xa0\x5f\xcb\x23\x93\x53\x11\xab\x8d\xfc\x59\x7c\xeb\x84\xc6\x5c\x0b\x37\xa4\x15\x69\x73\x4e\xac\x08\x9b\x8b\x0d\xf1\x4a\xd9\x60\xa5\xb8\xa9\xb7\x07\x87\x1e\x56\xb6\x41\xfe\x6a\x00\x5b\x73\xc7\x73\xc7\x2e\xbd\x5b\x71\x55\x5d\x31\x2a\xac\x42\xb1\xc1\xb7\x9e\xdd\x1b\x09\x50\x83\xa5\x79\x07\x74\x20\x46\x18\x09\xdc\x63\x8c\x84\x52\x9e\x4b\xd0\x5e\x7f\x38\xcd\xf9\xaf\xd7\xbd\xaf\x24\xab\xcf\xb2\x4c\xff\xbf\x5e\x1b\x57\x3b\xd2\x50\xd7\xa6\xe0\x12\x0c\xae\x5f\x67\x81\xaa\x2c\x84\x81\x5c\xb4\x00\xa2\x35\x2b\xc4\xf7\x5a\x04\x55\x81\xef\x5f\x0f\xb3\xa9\xe7\xb2\xb2\xb0\xae\x28\xf0\x12\x14\x81\x25\x28\x09\x3d\x05\xc1\xce\x50\x32\x03\x4b\xa1\xf7\xef\xe7\xcb\x74\x59\x7b\x0a\x75\xaf\xa0\xd4\xb0\x1a\x6a\x7f\x76\xab\x61\xf8\xd6\x48\x50\x75\x23\xe1\x66\xb9\x8a\x70\x72\x04\x3b\xa3\x55\x74\x6b\x78\x16\x5b\x57\x86\x2f\xa1\x8c\xce\xa5\xa7\x1b\x3d\xd3\x01\x1b\x9c\xe4\xa4\x5a\x40\x23\x19\x17\x4d\x5d\x27\x77\xd8\x91\x93\x27\xd3\x79\x6b\x66\x7f\xbe\x58\x40\x94\xc9\x20\x85\x2a\x63\xaa\xd9\x29\xe9\x6b\xcb\xd9\x9d\xea\x82\x4e\xa0\xcf\x07\x80\x66\x41\xd5\xd8\xc0\x5a\x7c\x45\xa9\x6d\x5c\xcc\x20\x1d\x08\x8c\x89\x55\x19\xe5\x0e\x9d\x5d\x13\x7c\x0f\x63\x3e\xdb\xac\x14\xd8\xb7\xf9\x5f\x5a\x02\x02\x20\x0a\xc2\xd1\x74\xba\x8f\xed\xea\x71\x3e\x03\xfd\x1b\xa5\xdd\x0d\x51\xe6\x2d\x7b\x07\x96\x43\x9c\x4f\x4f\x99\x3d\xcc\xc3\x17\x6e\x91\x7d\x79\xf5\x71\xf6\xbb\x1a\x90\xe6\x0c\x9a\x10\xbf\xda\xe0\x50\x1c\x40\xd3\xfb\xb8\xc7\xd9\x1b\xc5\x0b\x6c\x18\x52\xd0\xe4\x16\x13\x8c\xf8\xa2\x6e\x5a\x22\x44\x1a\x3a\x25\x15\xbd\xdd\x10\x08\x37\x2d\x69\x8b\x4a\x4a\xca\xfe\xbb\x87\x2c\xeb\x4d\x46\x0c\xcf\x4a\x5a\x66\x59\x19\x50\x93\x79\x99\x33\xe2\x45\xd1\xa5\x68\x4a\x26\xe5\xb1\xa6\xcc\xb7\x1b\x2f\xbc\x5a\x85\xd0\xd8\xbe\xc6\xf3\xf8\x3a\x56\xc1\x69\xfd\xa1\x2a\x2f\xa3\xe5\xb4\x42\x0c\x04\xe7\x50\x04\x02\xf5\x70\xe0\x42\x98\x65\x43\x88\x76\xd0\x08\xf5\xbe\x14\xd5\x52\x49\x27\xef\x6a\x01\x93\xb2\xd6\x53\xb2\x15\xef\x7b\x9d\x27\x15\x78\x2e\x46\x65\xa3\xd1\x88\x8c\xfe\x73\xa4\x77\x5c\xfb\x09\x27\x6a\xb3\x41\x78\x9e\x58\x52\x29\x3a\x0a\xc7\xfe\x9b\xd1\x0e\x38\x12\x8a\x82\x2f\x9a\x2b\x84\x77\x46\xdf\x8c\x48\xa0\x1a\xe2\xf8\x96\x8f\x65\xb3\x12\x25\x33\xe1\x0f\xbb\xb1\x53\xf8\x78\x51\xa8\x22\xcb\x0c\x24\xb2\x7e\x36\x71\x5c\xde\x9c\x21\x85\xb3\x6c\xa5\x05\x47\x48\x35\xd2\xa3\xf2\xda\xba\xcd\x8c\x8d\x8b\xc5\x02\xa0\x45\x5e\x56\x52\xe9\x23\x6c\xde\x4d\x42\x23\xdb\xa5\x11\xa0\x05\xe1\x9c\x8d\x0b\xa5\x8a\xf2\x02\x72\xa1\x91\xef\xf2\xc8\xc4\x20\x0b\xdb\x1e\x0f\x93\xda\xe1\x30\x4e\x7a\x5c\x72\x36\x8e\x9d\x57\xd3\x81\x62\x3d\x0e\xae\x33\xb6\xdd\xad\x95\xc1\x3a\x80\x9e\xe2\xc8\xb3\x54\x99\x66\x08\xb5\x17\x37\xc6\x34\x43\x66\xd9\xa8\xe1\x70\xb3\x0c\x12\x4b\x09\xb1\x04\x47\x95\x16\x46\x8d\x56\xca\x42\xf2\xa2\x91\x84\x75\x33\xea\x4c\x29\xa3\x32\xc5\xef\x9d\xc5\xf5\x1b\xae\x6b\x6b\x81\x33\x3e\xee\x36\x81\x46\x0b\x1c\x14\xec\x3d\x99\x0c\x7e\x52\x02\xe4\x6b\x91\xb2\x41\x93\xb6\x5c\x32\xbe\x70\x2f\xa0\xc7\xf1\x96\x8a\x21\x0b\x08\xd3\x2c\x7f\x4c\x72\x23\x7b\x88\x1e\xcb\x5a\x08\x41\x00\x93\xd5\x32\x45\xa3\x1d\x16\xe0\x4e\x2a\x78\x6b\x2c\x6b\x52\x1b\xb3\xdd\xa9\x6e\xee\x64\xc6\x1f\x7b\xb5\x11\xdf\xd9\xc1\xea\x88\x87\x26\x66\x7c\x67\x7a\x6c\x85\x9f\x5b\xef\xca\xc3\x34\x7f\x20\x73\xe5\xc5\x9f\xea\xa8\x39\xa6\x05\x11\xa8\xc1\xa4\xd9\xd9\xd1\x3d\x49\xe8\x77\x1d\x5d\x27\xe3\x5b\xab\x8d\xaf\x8e\xd8\x71\xfb\x66\x65\x35\x18\x05\xee\x0c\x4e\xe8\x09\xa9\x3f\x02\x01\x16\xdf\x42\xe4\x7e\xcd\x34\xf6\x62\xeb\xb8\x06\x83\xed\xa2\x6e\xb2\x43\x9a\x17\x6e\x2b\xfa\x28\xc7\x28\x0d\x6b\x8c\xc4\xd1\xe4\x38\x4a\xdc\xb3\x89\x44\x1c\x4d\xe3\x37\xfb\xe1\x1b\x22\x8e\xf6\x8e\x3b\x51\x8b\xad\x3d\x1e\x20\x53\x6d\x42\x90\x39\x3d\x1a\xc4\x84\x78\xdf\x6c\x36\xfd\x30\x3f\xfa\x84\x9b\xf7\xbe\x31\x32\x5c\xce\x72\x9d\x05\x77\x4f\x2c\xc2\xd1\x83\x69\xdf\xb9\x75\x97\x01\x3d\x69\x8d\x91\xad\xa1\xe7\x30\x51\x31\x25\xb6\xf1\xed\xdd\x84\xbd\x0b\xda\xb4\x8e\xa0\x89\xea\x8d\xe1\x16\x03\xa5\xe5\xef\x62\x1b\x1e\x77\x39\xc1\xb1\xe3\xd2\x7b\x41\x53\xc2\x33\x30\xf8\xfa\x39\x33\xbb\xbb\x11\xf3\xcf\xbc\x87\x2a\x40\x88\xd7\x59\xd6\x6b\xb0\x62\x9c\x6f\x03\x68\x01\xfb\x54\xd8\x1d\xec\x88\x1f\x6f\xda\x31\x62\x1b\xe3\x5c\x60\xed\xc0\xa4\xfe\xa5\x99\x05\xd2\xd8\xe7\x87\xe0\x77\xa0\x9f\x27\x58\xcf\xb5\x7e\x7a\xb0\x87\xf1\x8c\xa3\x07\xfb\xc1\x4d\xbf\xfc\x7a\xef\x83\xb2\xb5\xae\xf3\x9c\x42\x21\x65\x75\xce\xd7\xeb\x7e\x51\x75\x3a\x53\x1d\xbc\xec\x10\xc1\xb3\xdd\xfa\xaa\x55\x47\x83\xf2\x98\xe3\x2f\x9a\x37\x3d\x4e\x9a\x30\x1d\x89\x63\xca\x8f\xc4\x71\x80\xcd\x88\xb7\x78\xb0\x19\x17\xdc\x98\x93\x6a\xc7\x01\xec\xa5\xe4\xb2\xae\x14\x1a\x0d\x46\xf8\x2e\x53\x6c\x34\x21\xa2\xb5\x84\x77\x10\xff\x01\xde\xcd\xbf\x56\x76\xd3\x53\xf6\xb2\xab\xc8\x27\x3c\xb4\xed\x0b\x06\x9f\xf0\xae\xa5\xaf\x08\x48\x34\xd7\x6b\x66\x32\x6b\x1e\xf3\x59\xb3\xb3\x83\x05\x50\x55\x3f\x1f\x8d\xb3\xf6\x45\x8e\xb6\x6d\x31\xad\x17\x18\x1b\xb6\x16\x8f\x1b\x7e\xc8\x63\xf3\xfa\xd6\x1a\x00\x36\xc6\xb3\xba\x90\x52\x0b\xef\x12\xf1\xf9\x48\x1f\x5a\x85\x18\xe5\x23\xa6\xbf\x1a\xe1\x71\xe9\x5e\xcf\x94\x3b\xea\x74\x0a\x93\x88\x91\x11\xfb\x54\xa9\x11\x26\x35\x98\xbf\x13\xe5\x8c\x5e\x4d\x95\xd6\xc8\xad\x4d\x80\xaa\xb5\x20\x64\x7f\x47\x37\x26\x5f\xd9\x2c\x23\x3c\x3d\x8b\x1a\x77\x56\x37\xd7\x07\x7c\x71\xb0\x58\x40\x7a\x6f\xa3\x2a\x7e\xde\x69\x57\xc5\xcf\xd3\xa6\xb1\xc5\x17\xb5\xcc\xb5\x0b\x83\xb6\xdd\xbf\x80\x08\xa9\x49\x4e\xd7\xf0\x38\x63\x45\xf9\x5c\xec\x8c\x06\xa3\x9d\x26\x6f\x7a\x46\xb8\xa7\xeb\x30\xda\x55\xa7\x63\x6c\xd1\xe9\x17\x5b\x84\xdd\xfa\x54\x75\x41\x69\x79\x4f\x3b\x61\x4a\xef\x9e\x76\xd7\x6b\xd2\xb7\x24\x82\x56\xf2\xa8\x95\x9f\x2a\x15\x35\xf1\x53\xa5\xc0\x85\xc3\xb5\x2e\x5e\x0e\x9f\x6b\xe0\x97\x2d\x80\x4e\x0b\xd2\xf9\x37\x49\x51\x3b\xa2\xb9\xff\x5c\x33\xa2\xe9\xfc\xcc\x16\xe9\x34\x26\x99\x33\x48\xb1\x4d\x89\x6a\xeb\x6d\x8f\x35\xa2\xf6\x99\x88\xa0\x3d\x02\x0a\x69\xa8\x98\x23\x91\x65\x7c\xce\x77\x46\xbb\xa3\x7c\x34\xc2\x3b\x2c\xe7\x9a\x81\xb2\x17\xbb\xbe\x88\xbc\x21\xc9\xa8\xe6\x62\xde\xec\x8c\x76\x4d\xea\x48\x7f\xb5\x33\x32\xfa\x8b\xd1\x31\x89\xba\x6e\x73\xea\x34\x9b\xef\xb9\x7e\x3c\xde\x6c\x88\xda\x70\xca\x08\x52\x54\xe0\xad\xb7\xcf\x3c\xbc\x4e\x56\x91\xed\x7b\x7b\xe7\xaf\x88\x0a\x2e\xbc\xf9\xcc\xa9\x3f\x7d\x6e\xc7\x8c\x36\xf1\x34\x6c\x07\x8c\x8e\xe7\x14\x42\xfc\xf3\x76\x48\x49\x43\x79\xba\xce\xf4\x8e\x4d\x26\x5d\x68\x41\x0f\x68\x4d\x63\x9e\x1a\x4c\x2a\xf3\x54\xe1\x0d\x69\xba\x0b\x33\x69\x10\x84\x67\x03\xcd\x48\x29\x9a\xba\xfe\xd0\x2c\x89\x71\xa8\xb3\x5f\xa7\xc6\xf4\x46\xf0\x29\xd1\xed\x86\xb4\xe6\xf4\xad\x11\xbc\xe1\xab\x59\xb8\x34\xbc\x73\x58\x22\x06\x15\x2e\x9d\x94\x0e\x14\xd1\x90\x8e\xdc\xba\x0b\xc0\x0f\xe2\xe9\x49\x94\xcc\x16\xa4\x25\xa0\xd1\x9b\x8a\x9f\x13\xb3\x9e\x7d\xf2\xa7\x4a\x11\xbf\xdd\xc2\xd4\x36\x6f\x50\x3c\xfc\x82\xc3\x55\x6c\x50\xdb\xf8\xc0\xe2\x7f\xe9\x12\x8d\x87\x48\xbb\x88\x65\x3e\x1a\x6d\xc8\x12\x06\xc5\xb8\x01\xdc\x1a\x1b\xce\x33\xba\x0c\x7d\xec\xfe\x25\x2b\xff\x07\xf8\x0e\x8e\x39\x9e\x5c\x3b\x0f\x5a\xa2\x9f\x07\xcf\x5a\xd4\x47\x0a\xe7\x5d\x9e\x62\xbd\xee\x0b\xd2\xda\xce\xe6\x3c\x78\xa6\xc1\x33\x9c\x22\x2a\x07\xfd\x52\x10\x98\x06\xde\x8f\x08\x0a\x72\x1a\x1d\x98\xfd\x31\x3e\x2d\x24\xfb\xb9\xa8\xd7\x6b\x4d\x19\xa0\x0c\x6c\x23\x60\x37\x54\x00\xf7\xfa\x1d\x0e\x9d\x1a\xb6\x8c\x96\xee\x69\xc7\x51\xfc\x4b\xb9\xd9\x3f\x2d\x9d\xf4\x73\x75\xc1\x90\x83\xad\x4e\x38\xee\x36\x78\x8b\xde\xed\xf9\xee\x74\x48\xa9\x66\xfb\x76\x50\xef\x88\x04\x89\x30\x34\xd8\x6b\x77\x60\x9c\x20\xe9\xcf\xb8\x8b\x84\x7e\x1f\x51\xbb\x05\x5b\xd6\x45\xc9\x90\xf1\xf0\x3d\x3f\xfc\xb4\x44\x23\xf4\xbf\xd7\xff\xfc\xa7\xc4\x50\x1f\x9a\xe7\xff\xfc\xa7\x5c\x7f\x83\x47\x64\x74\x3e\xc2\x64\xf4\xcd\x74\x84\xfd\x57\xdf\xfe\x53\xee\x7c\x7b\x4e\xa0\xa1\x3e\xed\x7f\xff\x53\xfe\xe7\xfa\x9f\xf2\x3f\xbf\xd1\x6f\x46\x78\xd3\x37\x4b\x77\xad\x53\x43\x49\xf5\x68\x7d\xf9\xaa\x14\xe1\x70\x1a\xdf\xd7\xde\x45\x29\xbe\x68\x55\x02\x21\xfc\x57\xe5\xd7\x22\x92\xd0\x0a\x2b\x89\x35\x94\xa3\xfd\x89\xf7\x09\xbf\xf7\xe7\x3c\xc1\x8d\x29\xf3\x9d\x42\x40\xf1\x3f\x2b\x04\x5c\x00\x1c\x6b\x22\x08\xb4\x2d\x62\xdd\xf6\xf0\xa0\x3d\x4c\x9f\x8b\x93\x99\x78\xcc\x66\x62\x67\x07\x73\x80\x0c\xf3\xed\x11\xad\xe3\xaf\xad\xe7\x65\x75\xc6\xca\x9b\xb2\x66\x68\x64\x0f\x84\x11\x99\x58\x46\x34\x68\x49\x62\x30\xf5\xdf\xd6\x18\x70\x1c\xe8\x69\x0f\x5b\xfc\x8f\x34\x87\x2d\x3a\xad\xf9\x14\x87\xef\xf8\x6f\x69\x8a\x66\x53\xc9\xb4\xd3\x8e\xff\x89\x49\x32\xd5\xf6\xb5\xe6\x7f\x60\x8a\xa0\x56\xdf\x16\xc7\xca\x16\xff\x05\xac\xac\xa4\x45\x97\x95\x95\x69\xa3\x7a\xfd\xbb\x2a\x52\xf4\x7a\x56\x4a\x2a\x5a\xe6\xc9\x26\x8e\x55\x63\xd5\xc1\xf8\x48\x1d\xcf\xec\x37\x47\xec\x18\x6c\x5d\x1c\x37\x79\xc4\x8e\x2d\x59\xa9\x40\x6e\xf1\x85\x43\xc6\xe8\x27\x02\x1e\x26\x08\x7f\x61\x1c\x37\x35\xf7\x26\xb7\x72\xaf\x6d\x09\x10\x76\xc4\xb7\x98\x43\x28\xfc\x0e\x76\x6f\x10\x44\xc3\x4a\x2d\x86\x45\x01\xb3\x50\x0a\xde\x7c\x71\x2c\x0b\x50\x5c\x99\x69\xaf\x3c\xae\xa2\x9e\x7d\x5a\x1d\x89\x63\xa2\xfc\x49\xce\xf1\x13\x3a\x59\xaf\x51\xe3\xf4\x7a\x9e\x91\x6e\x36\x9a\xa4\x8e\x5c\xd3\x46\x64\x54\xf1\xd1\x31\x26\xc5\x5d\x83\xaa\x30\x91\xb4\x38\x9a\x1c\x93\x92\x16\x47\xd3\xe3\x84\x2b\x6f\x3c\x4f\x9d\x26\x68\x3e\x38\x4d\x63\x8b\x28\x49\xf3\xd0\xc9\xef\xf4\x2b\x58\xad\xad\x06\x2c\x61\xf7\x3d\x27\x4d\x1a\xc2\xe7\x41\xae\xba\xe1\x3e\x93\x24\xb7\x97\xec\x26\x1f\x41\x1c\x97\x11\x89\x04\x82\x80\x5a\x76\x78\xff\x98\xb2\xa7\x32\x43\x44\x67\x37\x38\xdf\x52\x79\x69\x2b\x97\xac\x6c\xf8\xa2\xbf\x76\x2b\x4a\xf4\x55\xde\xca\x13\x3d\x75\xb7\x42\x45\xb1\x41\xa2\x4f\xa8\x90\x5d\xa9\xa1\x04\x04\x3d\xc7\x4c\x94\x7f\x82\xd9\xeb\xb2\x26\x0e\xf0\xe1\x55\xb1\x5c\x6a\xfa\xda\x10\x35\xbe\x62\xe2\x9c\x85\xa9\x92\x56\x26\xeb\x0b\x03\xe4\x12\x7d\xd1\xcb\xf6\x36\x28\xd8\x47\x51\xb8\xd3\x40\x35\x1a\x8e\x36\x46\x1c\x04\x3e\x2b\x7b\x05\xe1\x28\x38\x26\x15\xcf\x87\x13\x62\x34\x3d\x79\x81\xb8\xd7\xfa\x10\x86\x09\x28\x79\x4c\xaa\xd1\xf7\x40\xa2\x96\xf7\x4c\x1a\x1c\x26\x0c\x6f\x8c\x82\x14\xba\xf1\x9a\x7d\x52\x5b\xfb\xe0\xe8\x98\xa4\x61\x27\x30\x29\x69\x85\x14\x69\x65\xdb\x70\x8f\x97\x7d\xba\x5a\x6f\x39\x5e\x6a\x3e\xa9\x3a\x43\xd0\xe9\x4a\xfe\x5c\xd4\xd5\xc2\x77\xbb\xc2\x2e\xa6\x73\x03\xc6\xc0\x64\x65\x1e\x24\xf9\xff\xd8\xfb\x13\xae\xc4\x95\x75\x71\x1c\xfe\x2a\xb5\xfb\x5d\x6b\x5f\xbd\x6d\xd2\x55\x49\x98\xf6\x39\x9e\xbd\x98\xda\x09\x70\x00\x85\x7d\xfb\xd7\xaf\xab\x48\x22\x46\x20\xc1\x90\xa8\x70\xaa\xbf\xfb\x7f\x3d\x95\x99\x49\xb0\x45\xb1\x9b\x15\x25\x45\x52\x95\x84\x54\x3d\xf3\x34\xd8\x77\xbe\x59\xdf\xf7\x6e\xf6\x67\x8e\x1b\xec\xfe\xf9\xe7\x1f\x03\x1f\xc9\x1a\xe6\xbf\xfe\x70\x19\xeb\xfd\xf9\xe7\x1f\x37\x7f\xbb\x8c\xfd\xd1\x63\xec\xe6\x6f\xf7\xcf\x3f\x7b\x7f\xfe\x39\x77\xf4\x0e\x3c\xd7\xfe\x8c\x99\x30\x62\x33\x61\xc6\x66\xc2\xe0\x33\x11\xdd\x33\x78\xcb\x46\xf4\x96\xc3\xd9\x30\x62\xb3\xf1\x63\x77\xf7\xaf\x05\xf7\x82\xd9\x25\x3f\x16\x76\x59\xf0\x38\x7f\xe0\xe5\x1f\xe3\x07\xaf\xc3\xfb\x23\x96\x92\x29\xee\x81\x1c\x53\xc8\x4c\x50\x51\xee\x73\x19\xb1\xdf\x76\x84\x6a\xfb\x74\xb0\xa3\xcf\x8c\x9c\xd3\x7f\xec\xce\x5a\x14\xfa\xee\x7f\xcd\x6f\xdc\xe7\x7e\x76\x48\xe4\x9c\xf9\xd2\x77\xbd\x1a\x09\xfa\x0f\xcf\xc7\x61\xcf\xfc\x31\xe9\xcd\x15\x73\xc0\x37\x23\xa7\x2a\xbe\xa6\xfe\x76\xbe\x99\xdf\xff\xe2\x86\x22\x7d\x5f\x67\xec\xbf\x3f\xf6\x9c\x7d\x87\xc7\x25\x05\x2e\x1f\x33\x7e\xf1\x9e\x11\x8f\x01\xa0\x9e\xbd\x8c\x7a\x17\x34\xc2\xda\xa6\x3b\xd6\x37\xfa\x7d\xdf\xe0\x9d\x77\xff\x32\xbc\x10\x01\xba\xeb\x73\x11\xff\xfd\x11\x5e\x40\xe5\x23\x39\xf9\xb4\xbe\xa9\xdf\x77\x23\xa2\x08\x5f\xe3\x74\x31\x80\x87\x6f\xea\x77\x60\x89\x86\xdf\xfc\xd6\xf7\x7d\x73\xa7\xb7\xfb\x63\xf8\x4d\x85\x96\xea\x05\x73\xcf\xa0\xab\xc3\x6f\x86\xdf\x1b\xf6\xbb\x51\x74\x76\x5c\x9e\xf2\x00\x3d\x78\x4d\x5e\x41\xe9\x6f\xce\xf7\xbf\xe1\xe3\x2f\xdd\x67\x28\x9c\xef\x33\x84\xbd\x87\xa0\x88\x42\xcc\x10\x49\xf7\x86\xf3\xb2\x8b\xfd\x1d\xa1\xe9\xe1\x8e\xb9\x23\xa5\x77\x77\xff\xda\xb1\xf6\xbf\xf1\xe6\xf7\xbd\x28\xb3\xb3\x31\x2b\xee\x67\xc7\xde\x1f\xee\xfe\x6d\x87\x09\x54\xac\xdd\xbf\xec\x5d\xc6\x22\x2f\xc5\x7d\x63\x77\xf7\xc7\x0e\x4e\xae\xc1\x99\xf9\x0a\xfe\xfb\x63\xcf\x86\x0f\x9f\x47\xf9\xef\x8f\x7f\xcd\xf4\x23\xd1\x45\xbf\xc2\x05\x63\x4f\x3b\x9f\xaa\x16\xf7\xdd\x6e\x18\x7d\x7d\x6c\x99\x3a\xcf\xa7\x6f\xd8\xfa\x10\x79\x27\xc4\xbb\xa1\x88\xea\xba\x1e\xe6\x9a\xef\xf3\xc3\x77\xdc\x97\xf5\x8b\xe3\x8f\xfa\xa2\x59\xea\xf0\xcb\xff\x8f\xe7\xb6\x33\x9c\x2f\x7e\x86\xfa\x2f\x9f\x02\x47\xe6\xf0\x96\x81\xf1\x4b\xfc\x04\xac\xcb\x67\x9f\x77\xf9\xcc\x99\x97\xa4\xc5\x3e\x80\xb2\xff\xe4\xd2\x7f\xeb\x42\x36\xf3\x97\xfe\x9f\xb4\xf2\xb7\x2e\x48\xb9\xbf\x74\x41\xc9\x4e\x58\xf1\x3d\x63\xa3\xe7\xe0\x13\xbb\x85\xbd\x6f\xc2\x1d\xac\x7d\xf3\x1b\xf9\xce\xc5\x7b\x63\x9f\xec\xd1\x7d\xbc\x37\xdc\x27\x7c\xe1\x2a\x29\xee\x2b\xac\xde\x52\xbb\x68\x69\xba\x1f\x99\xb1\xe3\xec\x93\xbd\xe1\xbe\x40\x76\xff\xe5\xfc\xdb\x8e\x9b\x2d\xe9\x7e\x1a\xff\x2f\xfd\xdc\xdb\xb1\xe3\x63\x1c\xdf\x09\xc2\xab\x54\x68\xc5\x07\x18\x5f\xf6\xd3\x78\x8f\x7e\xde\xef\xed\x58\x13\x43\xfe\x37\x4c\x5c\x40\xff\x37\xb6\x76\x07\x49\x0b\xea\x54\xed\x43\x1e\x6d\xed\xee\xf0\x82\x90\xd1\xa8\x9b\x78\x02\x2f\x3b\x00\xec\x19\x1e\x17\xb6\xc7\x7b\x02\xc6\x08\x19\xc6\x58\xc9\x71\x2d\xee\xd1\xe0\xbf\x4a\xf6\x69\x77\xcf\xdc\x77\xbe\x49\xdf\x63\xc6\xcb\x3d\x7b\xdf\xf9\x26\x87\x47\x3e\xed\xee\x59\xfb\xce\x37\x25\xde\x25\xb8\xfc\x60\xc7\xdc\xdd\x1b\xec\xd8\xf0\x61\xed\xee\xcd\x73\xe8\xe7\x8f\xca\x9f\x91\xa7\x4b\xf7\xfc\xa5\x2c\xd7\xd4\x76\x76\xf4\x6f\xa6\x00\x33\x88\x77\x3f\xa7\x75\xe5\x7f\x3d\xd6\x59\xff\xe6\x08\xe4\xfb\x3e\xf9\x82\x7f\xec\x58\x7b\xa1\x93\xc5\xde\x7f\x4d\xda\xd7\xff\x72\x60\xe6\x69\xbb\x6d\x0f\xff\xba\xd9\x71\xbe\x91\xe4\xb3\xef\xee\x59\x37\x37\x43\xdd\x81\x93\xbc\xc8\xb5\x6b\x3a\x46\x6f\xf8\x97\xb5\x37\xb0\x06\xae\x97\x71\xf1\x2f\xcc\x9c\x6f\xa9\xef\x31\xfb\xf7\xad\xef\x66\x1a\xc4\x11\x39\x3b\xda\x4e\xa2\x8c\x79\x3b\xfe\xf6\x1c\x0b\xa0\xca\x73\x78\xdb\xe1\x6f\x50\xec\x73\xbf\xe2\x2f\xff\x6f\xe7\x1b\x15\xc6\xe8\xfb\xe7\xff\xb7\xfb\xc5\xd8\xfd\xd7\xa7\x83\x6a\x83\x07\xf2\x99\x3c\x5d\xe9\x37\xfc\xfd\x6f\x68\x7e\xc3\xdf\x83\x01\xdf\xf2\xc2\xff\x7d\xff\xd2\xd9\xdd\xfd\xdb\x14\xef\x2c\xc3\x84\xf7\xed\x57\xe9\xfe\x6b\x27\x76\x61\xde\xef\xbf\xf2\x5e\xea\x87\xd7\xf9\x1b\xfe\x1e\x14\xf3\xe6\x55\x66\xfd\xb6\x1f\xc8\xe4\xec\x7f\xf6\x3d\x83\xe1\x3d\xed\x9b\x5e\xdb\x7b\x31\xfb\x3c\x53\x4f\x80\x16\x4e\xf9\xb1\x9d\xdd\x78\x8a\x83\x20\x74\x15\xce\x07\x1e\xc6\xde\xd8\xba\x6a\xd9\x7a\x10\x78\x05\x97\xf6\x0f\xc4\x53\x22\x24\xe7\x7e\xcf\xfe\x97\xbd\x0f\x33\xbb\xb3\xe3\x88\xd4\x11\x74\x91\x3a\xbb\x5f\x88\xa4\x2b\x0c\xef\xfe\x6b\x77\xc7\x13\xb1\xdb\x5c\x57\x59\x02\x02\x06\x1d\x3e\xdb\xbb\xbb\xbb\xc1\xe3\x02\x14\x7b\xcd\xbf\xf5\x7d\xf3\x2f\x67\x3f\x0c\x25\x8d\xe5\xd0\xef\x4c\xa8\x40\x63\x8f\xcb\x6b\xae\xc7\xbe\xff\x9d\x38\x2b\x24\xce\xfd\xa5\x47\xbf\x8a\x8f\x0b\xbf\xfd\x1d\x3b\x23\xc4\x8e\xff\xa5\xf3\xd7\x24\x46\x8b\x8b\x8f\x9b\x38\xf6\xf7\xd4\x11\x61\x6a\xdc\x5f\x7e\x1f\x58\xe3\x62\xcf\x52\x69\x4f\x07\xa1\x82\xda\xf0\x4e\xc2\x33\xb1\x89\x7a\x48\x20\x06\x8e\x15\x06\xdc\xcd\x6c\x06\x6a\xd8\x07\xac\xb0\x07\x44\x95\x4b\xae\x9c\x91\x80\xc6\x37\xfd\xfb\xfe\x1f\xb1\xe9\x1b\xc5\xf4\x8e\x7b\xf6\x1e\x0d\xcb\x09\xec\x01\x47\xb0\xa7\x06\xe8\xc7\xc3\x5e\x94\xa3\x2d\x8e\x8e\x80\x45\xb0\xf7\x8d\x6f\x80\xbc\xfc\x37\xca\xef\xb2\x6b\x4f\x38\x77\xec\x98\xb0\x60\x79\xe0\xdb\x1f\xd8\x47\xae\x9c\x6b\xde\x1d\x4e\xf6\x74\x76\xff\xfc\x53\xf5\xd8\x12\x0b\x70\x62\x30\xef\x6a\xf4\xbc\xf9\x1d\x2f\x9b\x88\xa7\x0e\x38\x32\x9d\x1e\x2f\x84\x03\xab\xfb\xab\x65\xf7\xa9\xb3\xb3\x1b\xe4\x52\xd0\x4e\x79\x94\xdb\x70\x67\x97\x67\x9e\xfe\x3f\xcb\xe4\x21\xd0\x5c\x29\xeb\xfd\xc6\xff\xc8\x01\x88\x5b\xdf\x1e\x77\xf4\x5d\xdf\x39\x2c\x60\xf0\xfe\x35\x83\xa8\xde\x00\x16\x43\x9f\x3e\xeb\x9f\x3f\xa1\x1b\xdb\xea\xf3\x2c\xb3\xf0\x18\x88\x0e\x8c\x3d\xd4\x76\x1d\xa4\x19\x1a\x8f\x85\xbf\xa5\x0f\x7e\x11\x18\x8d\x3a\x94\x57\x81\xd1\x35\xf1\x53\x98\xe4\xc4\xf5\x73\x89\xc0\x7b\x37\x92\x55\x83\xbc\x94\x6f\x7c\x4a\xf6\x43\x48\xd9\x05\x30\xfe\xea\xf6\x7a\xff\xe8\xd4\xde\xd9\x15\x24\xa0\x86\x49\x58\xb2\xf7\xf0\x1e\xe1\x4e\x43\x20\xc7\x78\x64\x83\xfc\xcb\xfc\xb7\x92\xe5\xab\x62\xc7\x99\x1e\x60\xc2\x80\x00\xf6\xfe\xd8\xdf\xb7\xfc\x26\x77\x11\xac\xf2\x1a\x18\x7b\x46\x90\x38\x31\x68\xcd\x02\xe1\xb4\xae\xec\xee\x72\xe5\xb8\x13\x23\x58\x0a\xbf\xf1\xec\x61\xf6\x67\xd3\x7b\xde\x79\xd7\x85\x0e\x69\xde\x21\xf4\x17\xfc\xb1\xc3\x35\x25\xc1\x22\x55\xf7\x47\x3b\x74\x77\xaf\x17\x2c\x53\x8f\xc5\x54\x13\x2c\xaa\x5f\x3a\x56\x7f\x44\xfd\x9d\xeb\x1d\x15\xf8\xcc\xbd\x21\xbc\x23\xfc\x2f\xe3\xdf\xc3\x7f\x19\x9f\x3f\xef\x9a\xe2\x10\x60\xdb\xc3\x8d\x79\x67\x87\x7e\x33\xbe\xef\xfe\xab\x17\x04\xd1\x86\xd9\xe7\x78\xfe\xef\x9d\xce\xee\x5e\x2f\x58\x41\xf8\xef\x1e\x20\xf7\x10\x5c\x7d\x1c\x1d\x2d\xd8\xc7\x88\x05\xda\xd1\xb9\xb5\x4c\x74\xac\x8a\xf5\xa8\xdb\x45\x3a\xd4\x77\xe2\x66\x98\x2f\x5f\x3a\x7b\x9f\xae\x3f\xcd\xcc\xab\xe2\xad\x11\xfe\x1b\x67\xf0\x81\x7c\xb2\xbe\xe9\xdf\x83\x4a\xfb\x7a\x92\xd1\x79\xdc\xb1\x81\x67\xe5\xa0\x1a\x31\x02\xbb\xdf\xf0\xf7\xdd\x3d\x13\x64\x02\x38\xb3\xc7\xa5\x03\x7b\xef\x61\x87\xee\x19\x49\x06\x61\x37\x99\x16\xc4\xd9\xfd\xaf\xbe\xff\x18\x24\xef\x86\xa5\x1b\xf3\x0b\xe0\xd2\x47\x98\x98\xea\xf6\x6f\x3a\xc3\x00\x44\xff\xde\xf1\xd2\x51\x81\xf8\xb1\x07\x83\xf7\xe9\x1e\xdd\xfd\xcb\xf6\xb4\x84\x7f\xec\xef\x5f\x73\xad\xe2\xf5\x0e\x1c\xd9\xbb\xde\xdd\xfd\x7b\x67\xc7\xbb\x8b\x37\x6c\xd7\x23\xd9\xc6\xee\x1e\xf5\xd2\x2c\x5b\xd0\x8f\xfa\x85\xe9\xc2\x87\x3d\x8d\x23\xb7\x97\xbe\x3e\x63\xff\x71\x67\xc7\x9c\xfd\xf2\xe0\xd5\x9a\x3c\x3b\x85\xfd\xcd\x80\x1f\x61\xf1\x82\x28\x9e\x47\x27\x97\xb5\xf8\x4b\x85\x2e\x33\x73\x4f\x7c\x6a\x79\x01\x6e\xd7\x37\x8c\x7d\x7a\x0a\xda\x41\xbe\x80\x9d\x3f\x74\xf1\x9a\x06\x15\x63\x79\xa6\xcd\x6b\x67\xdc\x67\x2c\x9e\xc9\xe2\xc9\x13\x22\x16\x15\xe7\x9a\x59\xfc\x22\x5e\x31\x69\xb2\xee\x95\x9e\xc8\x43\x11\x8a\xda\x5e\xc2\xbd\x48\x33\xcd\xbd\xd3\xfd\x78\xd8\x40\x31\xbe\x87\xf7\x04\x02\x1c\x65\x2c\xd9\xe4\x94\xff\x30\xf0\xf1\xd7\xc0\x44\x1a\xfb\xba\xe8\x3a\x6a\xe0\xe3\xea\xe9\x90\x42\x45\xaa\x17\x00\x30\xf4\x50\x30\x27\x0e\x8d\x1d\x83\x47\x5e\x52\x4d\xdb\xb1\xc4\x01\xb5\x87\x3a\x2c\x82\x4f\x7d\xc3\x74\x1d\x7d\xf8\x09\x10\x89\x33\xe6\x57\xfe\xb1\x33\xfc\xb7\xc4\x98\xb4\xbf\xbf\x3f\xfc\xf3\x4f\xf5\xdf\xe9\xdd\x3f\xff\x5c\x4a\x48\x42\xff\xd9\x47\x92\x98\x16\xb1\x88\xfe\xb1\x5c\x44\x6d\x1d\xb9\x43\xc3\xec\xc4\x7a\x7c\xfa\x1c\x8a\x41\x9f\x3f\x79\x42\x55\x5c\x98\xfa\xb4\xbb\x77\x1b\x0f\x78\xbf\x9e\x8c\x70\xf7\xa2\x18\x3d\x43\xbc\xc9\x6d\x9d\x01\x7b\x35\xdc\xf7\xd8\x8e\xa1\x77\xc8\x63\x65\xe1\x25\xf1\x46\x9c\x33\x1b\x86\x5c\x92\x7f\x38\x62\x2c\xf6\xe3\x5c\xc6\x8f\xbd\x6b\xae\xb3\x9e\x2e\x90\xba\x67\x02\xd3\x68\xef\xc7\xee\x14\x23\xf5\x09\x59\xc9\xb8\xd9\x31\xff\x6d\x03\x49\x0e\x68\xe3\x8f\x3d\xfe\xf6\x67\x5d\x75\x8f\x4b\xdc\x70\x6d\xdf\xba\x10\x3c\xe6\x30\x7e\xab\x3d\x75\x3f\x16\xee\x08\xf7\xf5\x8c\x97\x2a\x37\x5e\x02\x1d\xde\xa7\x3c\xa3\x08\xec\x3e\x93\xef\xb0\xa4\xbe\x59\x7f\x5b\x02\xf9\xcb\xfa\xbe\xe7\xfc\xdb\xfc\xf3\xcf\x9a\xd8\xb7\x1e\xf4\x7c\xbf\x6d\x74\x5c\xcb\x1d\x7e\xb5\xec\x47\x6a\x6b\x7f\x3b\xc0\x34\xfe\xc7\x0e\xce\x1f\x99\x3c\x61\xbc\x7f\x96\x4b\x84\xb0\x3e\xfe\x3d\xfc\x66\x7d\x17\x80\x51\x0d\x09\x3e\x8d\x8c\xa4\x88\x7e\x53\xbf\xff\xe0\x42\xc7\xcc\x32\x98\xe1\x7c\x7d\x0b\xf2\x5d\x69\x3a\x40\xe2\xf7\x1f\xbe\x34\x32\x6b\xd4\xd3\xce\x27\x4e\x27\xbc\x1e\xe8\x96\x0e\xbd\x8c\xda\x9a\x3e\xb0\x75\x95\x3a\xba\x06\x7c\xd1\x0d\x7d\xb0\x6c\x64\xdd\x20\xde\xd7\x75\x54\x8f\x2a\x7d\xda\x4d\xcc\xfe\xf4\x7d\xc3\x9e\x73\x1f\x78\xde\xd0\x1f\x7b\xfd\x38\x54\xc7\x29\xe1\xfe\xd4\xb2\x8d\x31\xcf\x9f\x3d\xc1\x8e\xb6\xbd\xcc\xb4\x62\xf2\x81\x39\x57\xb0\x2b\x04\x3f\xd7\x7f\x7c\xde\x07\xde\x9c\x77\x3a\xa2\x7e\xdf\xfe\xff\x9e\x60\xb4\xf7\xe9\xd3\x2e\x47\x75\xd0\xc9\x97\xcf\x42\xe6\xfb\xf3\xe7\x1f\x7b\xb5\x00\xf4\xf6\x3f\x61\x31\x25\x4a\x99\x4f\x7b\x35\x1e\x43\x72\x15\x1c\x86\x03\xd7\x70\xa3\xe1\xbe\x09\xcd\x9e\x61\x76\x87\xfb\x36\x34\x4d\xee\x17\x67\xed\xd5\x00\x85\xec\x8f\xf7\x6a\x22\x9c\xdc\x3f\x85\x86\x45\x93\x1e\x7c\x63\x9f\x0d\x1f\xee\xee\x9d\xee\xe8\xbc\xe3\x70\x77\xe2\x5e\x21\x1e\x80\xe7\xe2\xe2\xd3\xb5\xdf\x28\x3f\x19\xc3\x98\xb7\x04\x2f\x10\x1f\xcb\x24\x62\x68\xf5\x5b\xeb\x91\x07\xd9\x72\x15\x51\xfc\xc0\xfe\x1f\x78\xef\x69\xe7\x93\x87\x52\x44\x67\x1c\xbb\xde\xce\xff\x70\x87\x8e\xff\xd9\x7d\x76\xf5\xfc\x91\x1c\x1e\x0e\xfc\xb4\xbb\xbb\xf7\xc7\x1f\xd7\x3b\xce\x2e\x3c\x72\xc7\xd5\x87\x33\x1d\x6f\x1c\x40\xbe\x8c\xed\x38\xfb\xf9\x9d\xdd\xdd\x3d\x07\x3a\x9b\x49\xa7\xc2\x90\x4d\x0d\x98\x2f\x9d\x57\x36\xdc\xb5\x26\xd9\x7a\x9d\x4b\xac\xdf\xf4\xef\x8c\x99\xdf\x80\xa2\x7f\xdf\xfd\xf3\x4f\xcb\xa3\xf5\x01\xb7\xaf\x7f\x8f\xa5\x2a\xe1\x5c\x16\x7f\x3e\x60\xda\xf7\x6f\xf7\x6a\xa2\x6b\x0e\xa8\xda\xdd\xd7\xc2\x66\x81\x0e\xf5\x34\xde\x77\xe1\xb9\x74\x5d\x1b\x7a\x8b\x6e\xbf\xb1\x37\x0b\xea\xe1\x8d\xce\xc6\x16\xfb\x7e\x91\xe3\xca\x5e\x79\x5f\x17\x6f\x62\xbe\x17\xf5\x85\xc9\x55\x3d\x18\x1a\xff\xed\xef\xbd\x25\xcd\xed\x97\x61\x3e\x43\xf8\x12\xd3\x38\xdc\x2f\x73\xbd\x20\x3a\x68\xb6\xbb\xfb\x0f\x5d\x74\xc6\xfb\xb5\x3d\x3d\xb0\x21\xf1\xd7\xe3\x0f\x71\x79\x8a\x5e\xff\x35\x44\x5e\xe8\x31\x35\xe8\x7e\x62\x5c\x54\x05\x8e\x97\x31\xbb\x1e\xff\xf9\xe7\x8e\x05\x24\x16\x08\xed\x1f\x8e\x78\x6d\x0c\x2f\x1b\x45\x9e\x6f\xeb\x5a\xf3\xe8\x34\x34\xe9\xae\x78\xad\xed\x39\xfc\xeb\x6e\x82\x10\x3b\x71\x42\xbc\xbb\x07\x97\xdc\xb7\xbc\x3d\x4f\x1d\xc5\x6f\x12\xc3\x0f\xce\xee\x5e\x88\x3f\xec\xdd\x7f\x93\xf4\x9f\x7f\xee\xd8\x5f\xf6\xd3\x78\x77\x2f\x2a\x87\x17\xf5\x0f\x4c\x34\x70\x95\x7f\xc5\x8e\xef\x08\xb6\xe7\x22\x7b\x3d\xde\x37\xbc\xf4\x18\x9e\x60\x0d\xc2\xcd\xee\x8f\xbd\x32\xbc\xb3\xe4\xfb\xf0\x42\x80\x8c\x9b\x90\x17\x8c\x15\x1d\x98\x4e\x8d\x01\xbc\x02\x47\xc6\x08\x00\xc0\x2b\x32\xd0\xd6\x11\x45\xde\xe0\x3d\xd4\xf1\x6a\x0a\x7c\xfe\x84\xbe\x45\xa5\x05\x3e\x7f\xfa\x1e\xa9\xcd\x82\xd9\x05\xb0\xdb\x0b\x96\x4e\x72\xca\x82\xe4\x31\x7f\xcd\x60\x52\x00\xd6\x4d\xcb\x13\x23\x6f\x2c\xdb\xbb\x59\xa4\xcc\x7d\x4e\x97\x0b\xe3\x04\x40\x6f\x86\xd9\xf9\x22\xfa\x84\xe4\x47\x90\xc8\xe3\x7a\xbc\x9b\x7c\x4a\x0e\xe7\xf0\xde\xe0\x1a\xdc\x31\xab\xbe\x13\x7d\xd9\xf5\x4f\xe4\xdb\x6d\x3b\x3c\x01\x5f\xe0\x84\xeb\xa8\xfb\xf7\x3b\x7c\x0f\x5f\xb9\x52\x83\x1f\xe0\x2d\xbf\x87\xbf\x44\x77\x2a\xfb\xb1\xaf\x7b\xd3\x20\x31\xc9\x37\xfe\x07\x07\x59\x00\x7c\x38\xd9\xdd\xab\xcc\x01\x94\xdd\x3d\x80\x14\x71\xa8\x3b\xa5\x49\x8f\xbf\x28\x2c\x23\xc9\x1f\xe6\x66\xf3\x87\xd1\x25\x76\x76\xe7\x32\x8b\xb9\xe5\x99\x45\x1e\x72\x1a\x87\x5e\xe7\x6f\x58\x14\x5e\xc5\x6b\xdd\x33\xf2\x14\xf7\x75\xd1\x9b\x50\x1f\x85\x1a\x7a\x50\x1f\x2b\x8c\xc6\xe5\xbc\x38\x8f\xc5\x9d\x8a\xad\x49\x46\xe6\x16\x77\xff\xde\x29\x7a\x58\xf6\xd3\xf5\xf8\xd3\xee\x5e\xf8\x85\x7e\xda\xdd\xfd\x0b\x00\xbc\x18\xbd\x50\xaf\xc8\x41\x9c\x1e\x44\xd6\x8b\xe3\xfa\x69\xcd\x07\xf5\xff\xf9\xef\x27\xff\x27\x7d\xfa\xeb\x93\x84\x49\x4e\xfd\xb4\xc7\x79\x9b\xe1\xa7\xbf\xbe\x7d\xca\xdf\xd8\x86\x4a\xbf\xe4\xdb\x86\x76\x47\x4d\x56\xa9\x36\xd0\x41\xb5\xc1\x3a\x62\x16\x61\x86\x09\x13\xa4\x9e\xd6\x3a\x14\xcf\x99\x92\xd5\x53\x9f\xf6\xc2\xfe\xaa\x6a\xd3\xa0\x37\xfa\x8c\xb1\x84\x99\x78\x8e\x30\x12\xba\x0c\x13\x69\xa5\x8d\x09\x52\xba\xd0\x6e\x89\x59\x94\x76\xc6\xb0\xab\x9a\x65\x44\x0a\xf9\xee\xbc\x46\x11\xcf\x3d\xb5\x59\x7d\x98\x42\xe2\x2f\xad\x46\x0d\xdb\x6a\x1b\xfc\xb5\x95\xf3\xf0\xda\x24\x19\xc3\xa7\x92\x62\x82\x64\x8b\x1d\x24\xc8\x18\x09\x92\x8b\x04\xe9\x18\x5e\xa3\x4c\x98\x40\xbe\xca\x45\x38\x25\x97\xc6\xb0\xb3\xba\x55\x17\x55\xbf\xb6\x8e\x99\x92\x49\x4c\x48\xaf\x63\xe8\xf6\x90\x9d\x55\x1b\xa8\x59\x86\xff\x7a\x03\x15\xcb\xf0\x5f\x6f\x30\x21\x27\xf6\x60\x72\x88\xff\x2f\xe1\xa9\x59\x92\x15\x59\x91\x89\x0c\x6d\x68\x48\x44\x66\x82\x64\xaa\x16\x8c\x54\x6b\x6d\xd8\x1d\xe6\x31\x22\x39\xf8\x30\xaa\x18\x11\xa2\x62\x44\x2c\x0b\xa3\xa6\x85\x11\xb1\x55\x8c\xce\xe1\x70\xb9\x8a\xd1\x65\x15\xa3\x52\x1e\xa3\xa3\xbe\x85\x91\xad\x61\x54\xd2\x31\xca\xb5\xc6\x18\x91\x9b\x36\x46\x84\x0e\x30\x22\xe9\x13\x8c\xa4\x91\x85\x51\xbf\x3c\xc0\xe8\xf6\xb1\x82\xd1\xdd\x13\x5c\x9d\xe4\x31\xd2\x4a\x1a\x46\x24\x03\x9d\x49\x01\x23\xa2\xd6\x30\x92\x4a\x23\xbf\x45\x6e\xf8\xb1\x0a\x66\x52\x3a\xfe\x16\x2a\xb4\x63\x0d\xf9\xfb\x6d\xe6\x1b\x4c\xd0\xc4\x3c\xfc\x5e\x6f\x1d\x4b\x23\xac\x89\x79\x46\x32\x7a\x3a\x1a\x50\x30\x86\x43\xea\xf2\x11\x02\x26\x7c\xe9\x13\x49\xec\x22\x82\xf9\xf2\x97\xbc\xf5\x8f\x91\xf4\x64\x59\x98\xc9\x39\x5d\x89\xc6\x56\xe9\xc0\x75\x2c\x3e\xb6\x08\x77\x93\xa8\xd8\xf5\x5f\x2d\x13\xa4\x83\x63\x9d\x8a\xdd\x89\xe7\x2b\xc2\x0a\x60\xe5\x72\x03\x95\xf9\xb4\x48\x18\xa6\x9c\x61\xf2\xae\x1b\x13\x48\xfb\xe8\x14\xa3\x07\x78\xdb\x06\x4c\x0d\x81\x99\x32\xe0\x45\x9b\xd0\x92\xe0\xd8\x00\x5a\xb8\x16\xb4\xd2\x70\xec\x6e\x8c\xd1\x50\xd6\x30\xba\x82\x43\x16\x9c\x24\x70\x11\xeb\x34\xd1\xd7\x6b\xb5\x17\xb6\xe6\xf5\x23\xb0\x0e\xac\x4a\xd0\x9a\x75\x6c\x56\xeb\x2d\xfa\x35\x2b\xde\xe2\x26\x17\x63\x8c\x1e\x07\x2f\xba\xda\x7d\x05\xa3\xd6\xcb\x1e\xce\x1c\x05\x33\x65\x91\x45\xad\xfb\xda\x72\xfd\x9e\x1f\x01\x3f\x98\x9f\xbc\x80\x07\x83\x5f\x7c\x6a\x62\x44\xc6\x1a\x46\x15\xe8\x53\xae\x61\xf4\xb5\x8d\x91\x4a\x30\xca\x9a\x18\x65\x6b\x1a\x46\x9d\x0a\x46\x3a\xc1\xa8\x6f\x62\x46\x52\x71\xe0\x2b\xd2\x21\x6d\xf7\xa8\xa9\x7a\x94\xe4\x33\x06\x64\x48\x98\x2b\x76\x3d\x5c\xb5\x32\x25\x59\x71\x63\x82\xd4\xa9\x9a\x8e\x58\x46\x44\xc6\x15\xd8\xdb\x6d\x8c\x00\xf1\x68\x57\x6d\x8c\xda\xb0\xc4\x1b\x2d\x8c\xca\x56\x01\xa3\x4a\x05\xa3\x8e\xa9\x61\x64\x8f\x31\x52\x60\xcd\xe7\xe1\x6d\xc0\x2f\x6c\xb5\x30\x22\xc5\x01\x46\xb0\x88\x35\x40\x66\x4a\xdf\xc4\xa8\x3e\xaa\xc5\x3a\x3d\xc2\x9b\xfa\x5a\xc0\xa8\xd4\x8e\xbf\xb2\xda\x0d\x46\x8f\x55\x8c\x54\x0b\xa3\x0e\xe0\x51\x0b\x63\x34\xc4\x18\x69\x79\x8c\x1e\x54\x1f\x1b\xe6\x31\x46\x3a\xc6\x68\x84\xfd\x03\x6e\xd5\x3b\x50\x0a\x7a\x0c\xfd\x1e\x47\x55\x8c\x9a\x55\x8c\x00\xf1\x76\xaa\x18\x55\xf2\xde\xf7\xbb\xbc\x77\x5e\xca\xfa\x23\xa5\x34\x9e\x75\x04\xc6\xac\x7e\xea\x27\xae\xf3\x7c\x67\x26\x4b\x09\x1c\xaa\xbb\x0e\x65\xd3\x34\x6e\x92\xbc\xcd\xd8\x24\xf9\x8d\x36\x26\x48\xa9\x93\x00\x88\x34\x8e\x23\xb2\x03\x8c\xe4\x43\x58\x29\x19\xf8\x7a\x03\x93\x4f\x01\xba\x0c\x98\x75\x0a\x13\x3b\xca\x58\xab\xae\xb3\x2b\x4e\x07\xab\xcb\x7d\xdc\xe4\x57\xe8\x3c\x31\xcc\x0a\x56\xde\xcc\xd6\xbd\xbf\xea\x92\x8d\x55\xfb\xbf\x78\xe0\xfc\xfe\xaf\xfd\x88\x6f\x77\xa7\x45\x03\x59\x36\xa5\xcb\x11\x44\x94\x7b\xd7\x79\x6a\xb8\x66\xc8\xc6\x04\x98\xf4\x5c\xac\x72\x4e\x26\x40\xa6\xaf\xbe\xd0\x99\x40\xec\xd2\x38\x23\xaa\x88\x1c\x5c\xe5\x61\x9f\xae\xcc\x5b\xb0\x44\x2d\x14\xb6\xf8\xf0\x35\xf0\xa1\x84\xe3\x6c\xe8\xb1\xc5\xb3\xf7\x0c\xdb\xae\xdd\x61\xf5\x7c\xbd\x81\xc2\x0f\x26\x10\x90\x25\x02\x26\xd3\x17\xb6\x0e\x8e\x35\x17\x91\xfc\x1d\x7c\xaa\x95\x80\xa3\x06\x66\x3a\xab\xc4\x11\xed\xb1\xdb\xa6\x01\x77\x8b\x8a\x70\xcd\x32\x67\x73\xd3\xe2\x30\xb8\x68\xec\xc2\x8b\x36\x58\x27\xa3\x26\x1f\x48\xc6\x27\x98\xef\x61\xa1\x78\x2c\x26\x67\xf2\xef\x42\x76\x9f\x33\xa0\x19\xce\x80\x02\x7a\xcc\xc0\x1a\xba\x05\x34\x07\x1c\x05\xb9\x85\x7e\x39\xe8\xd7\x81\x7e\xb9\x71\xe2\x2a\x13\x63\xa3\x11\x59\xb8\x5b\xa7\x36\x6f\x6c\xe2\x6e\xa3\x03\x0d\x47\x6f\xe1\xe4\x96\xda\x8e\xe5\xf6\x67\xbd\x09\x2a\x66\x57\x7d\x13\xc4\x7b\x15\x30\x12\x5e\x05\xdf\x6f\xf6\xab\x40\x87\x77\x15\xcc\x52\x09\x49\xb6\x6a\x99\xb6\xf5\x60\x50\x56\xad\x36\x50\xd5\xd7\x19\x1c\x8a\x59\x74\x24\xba\xa1\xe0\x24\x57\xc6\x1d\xf1\x1c\x49\xd9\x03\x4c\xc4\x3e\x23\x49\x59\x58\xbb\xa3\x7d\xdd\xa4\x81\xb0\x86\x9a\xde\x7a\xc5\xa2\x9a\x10\x51\x41\x00\xd3\xf9\x51\xe9\x58\x56\x61\xdf\x04\x3e\x52\x8e\x5f\xab\x4e\xad\xeb\x86\xd5\xd7\x43\x7d\x04\x08\x7f\x79\xf1\x38\xc6\x45\xf2\xcb\x60\x8c\x14\x23\x0d\x82\xe4\x3d\x8e\xcd\x70\xc3\x36\x06\x56\xcf\x13\xcb\x03\x6e\x02\x95\xcb\x0d\x26\x9c\x8b\x47\xc1\xc3\x24\x64\x66\x79\xc6\xbc\x4a\xf0\xc7\x04\x89\x1c\xab\x30\x8c\xdc\x9a\x05\xd8\x3f\x3c\xc1\x4d\xcf\x30\x7a\x82\x86\x5e\xc3\xa8\xd0\xc6\x28\x03\xb3\x73\x89\x4d\x8c\xf2\xf0\xaa\xb5\x76\x00\x85\xbc\xa5\x69\x41\x0b\xfa\x93\x36\x6f\x11\x1c\x40\x2b\x99\xee\x17\x8d\xbd\x27\x18\xdd\xe4\x61\xb2\xf5\x81\x7f\x2c\x7f\x72\x8f\x51\x23\x20\x1d\xc9\x69\x68\xb8\xa6\xe1\x29\x0d\x92\xba\x82\x79\x5a\x82\x99\xda\x1b\x5f\x4b\x40\xb2\x03\xca\xf7\xf7\xbe\xf4\x2f\x37\xd4\x40\x7c\x1f\xeb\x1e\xda\x85\xe5\x05\x3c\x0d\x51\x42\xc4\x73\x93\x03\xfe\xc7\x06\x91\xf2\x18\xd6\x63\xab\xe0\x13\x3f\x3b\xef\x2b\x19\xcc\x47\x0b\xa3\x13\x2b\xc1\x94\xf0\x93\xb8\x8a\xd1\x18\x50\xbf\x27\x2f\xd2\xda\x5c\xda\x09\x38\x33\xf6\xb3\x9b\x86\xa9\xdd\x5a\x7a\x97\x7d\xc6\x44\xc6\x11\xc2\xe4\x00\xce\x55\x07\x11\xe2\xf4\xf6\xfe\x3a\xe2\x5a\x92\x55\xb6\x59\xf8\xb6\x0e\x42\x5f\xee\x08\x7e\x50\xfa\x0c\x04\xb9\x56\xf0\x9a\xe0\x44\xb3\xe6\x37\xbc\x43\xd1\xc9\xc5\xad\x9f\x1c\xba\xd6\x9b\x01\x07\xcf\x29\x56\x5f\xf7\x94\x55\x1a\xed\xb2\x5a\xbd\x81\x6a\xcd\x06\xaa\x9d\x35\x50\xa1\xde\x40\x85\x52\x03\xe5\x0f\xeb\x0d\xc4\xff\x4b\x0d\xd6\xc6\x88\xf2\xbf\xb0\x41\x31\xca\xf1\x79\xc0\x8b\xdf\x7a\x2a\x9d\x79\xc3\x8d\x09\x24\x53\x6f\x61\x94\x7d\x6c\x62\x64\x14\x30\x3a\xef\xb5\x31\x4a\x49\xa7\x78\x82\xbe\x06\x0b\x7e\x3c\x7d\x0c\x5a\x43\x00\xec\xab\x31\x46\x15\x78\x77\x85\x56\xa2\x3f\x17\x15\xe6\x8d\x9c\xdf\x4a\x8e\x55\xfb\x00\x2a\xf7\x8b\x46\x29\x80\x35\xe0\xf9\xbd\xd6\xdc\x59\x9d\xe8\xf7\x33\x23\xd6\x71\xb7\x0b\xc0\x31\xe3\x36\x46\xa7\x83\xc9\xc6\x82\x53\x0b\x1a\x2b\x8d\xda\xd4\x5b\x30\x59\x4a\xc7\xc1\xd0\x54\x6f\x2d\x9b\x76\x74\x06\xa8\x2f\xdf\x6c\xa0\xfc\x99\x0f\x83\xf9\xc3\x52\x03\xfd\x03\x8d\x13\xfe\x51\x6a\x30\x0e\x7c\xf0\x17\x36\x72\x18\x65\x37\x13\x1c\x1b\x18\xc0\xb1\x85\x91\x91\xdf\x82\xe3\x16\x1c\x37\xf4\x16\x4c\xc6\x09\xb2\x78\x66\xd9\xce\xb5\x75\x73\x5d\x1f\x50\xc3\x13\xe6\x81\x27\x56\xd2\xa2\x82\x14\xdf\xaa\xd0\xad\x3d\x5c\x88\x97\x4c\x91\x3d\xf9\x3f\x00\x64\x9b\x76\x5c\x6a\xf8\xdc\xb4\x80\x65\x24\x60\x89\xc9\xaa\x58\x45\x32\x46\x4b\xb1\x71\x33\x19\xbb\x4e\xef\xb1\x22\xaa\xe8\x50\x3b\x81\x1d\x51\xd5\x80\x11\x6d\xb7\x30\x2a\x83\xcc\x5e\x07\x26\xe6\x21\x8f\x51\x15\x58\x4e\x10\xf0\xab\x15\xbf\x31\x6e\x61\x74\x0f\xbd\x9f\xda\x18\x49\xc0\x8d\x72\x5b\x42\x91\x78\xa7\x78\xa3\x12\x34\x60\xf8\xa1\x44\x7c\xcd\xb2\x53\xc0\xe8\x08\xae\xf3\x55\xc3\xe8\x6b\x2b\xd0\x2c\x43\xe3\xb0\xe0\x29\x0a\xb4\x6a\xcd\xd7\x18\xc0\x63\x78\xfa\xe8\x1a\x06\xe1\xc0\x1b\x1e\x5e\x87\xeb\xac\xc3\x23\xd0\x99\xeb\xac\xe1\x3a\x70\x41\x73\x44\xf8\x75\x18\x51\x92\x2c\x8a\xdd\xd1\x4d\xc7\x30\xe9\x97\x82\xab\x9b\xd6\xf0\x3a\x6f\xd8\xfa\x90\x15\xf9\xfb\x55\xc2\x77\xac\x74\xc4\x2a\x52\xf0\xea\xaf\x79\x86\xc6\x10\x5f\x1e\x1e\x8a\x2a\x1a\x9c\x98\xb0\xe3\x2f\x14\x44\xb2\x46\x7b\xf2\x65\x4d\x37\x78\xe7\x25\xfa\xc0\x4b\x93\xee\xc6\x5e\x43\xe9\xb5\x30\x72\x09\x46\xa9\x0a\xdc\x62\x00\x6f\x04\xa6\x08\x0e\xb9\xf0\xd6\x1e\x60\x82\xa7\x1a\x9e\x88\x38\x0f\x75\xd2\xa1\xe9\xa9\x74\xc6\xd0\xb7\x30\xf6\x5f\x7e\xa3\xe5\x1b\x0c\x42\xcb\x41\xd8\x80\x53\x79\xc0\x1e\x6e\x60\x5d\x68\x56\xf0\xcc\x99\x28\x52\x87\xf6\xa9\xad\xd2\x57\x9f\x06\x02\x9f\xe4\xb7\x9b\x86\x7b\x8c\x2e\x68\x6c\x1a\xec\x5e\x01\xa3\x4c\x01\xa3\x2c\xa0\x29\x77\xde\x34\x58\xb6\x66\xb5\xd7\x34\x09\xbf\x1f\x2c\x4c\x4e\xc2\x72\xb0\x70\xec\xde\xb9\xa3\x57\x9e\x02\x90\x6f\x7f\x9b\x09\x18\xeb\x7e\xa3\xa7\x61\xd4\x3c\x99\x31\x01\x33\xdf\x7b\x85\x5e\x5f\x18\xd6\xdd\x1a\x56\xbf\xf4\xbb\xe1\xa0\x73\x13\xa3\x7b\xe0\xca\xd3\xe6\x04\x39\x58\x0e\x0f\x55\x75\x53\xb3\xc6\xaf\x3d\x13\xbc\xf9\xfb\x4c\x84\x2b\xc5\x2e\xd3\x08\x27\xa1\x89\x91\x6d\x10\x8f\x55\xcd\x40\xc7\x79\x93\x70\x61\x58\xd7\x07\xb4\xd7\xd3\x3b\xd6\x9a\xb8\xa3\xdf\x65\x26\xe6\x73\x47\xcb\x81\x43\x9d\xf6\x9c\xb5\x11\xe5\xdf\x6b\x02\xe6\x91\xe4\x39\xef\xdd\xbc\x3e\x76\xa9\xb9\xa5\x08\x6b\xa5\x08\x1a\x46\x7d\x82\x51\xb6\xb7\x10\x04\xcc\xeb\x8a\x6b\xbc\x36\x22\x0a\x9a\xc4\xf3\x19\xfa\x95\xa7\x82\x5b\xec\xef\x7d\x9a\x90\xaf\x61\xf4\x00\x7d\xc2\x17\x9f\xad\x60\xc4\xcd\x93\x3e\x6b\xca\x1b\x33\xa7\xa2\xe1\xaa\x6e\x7f\x1d\x40\x11\xc0\xc4\xef\x03\x15\x0b\x64\x35\xa5\x86\x51\xb6\xd0\x5a\x42\x5e\xb8\x1c\xde\xba\xd4\x78\x7d\xfa\xf0\xdb\xe1\xa8\x39\x24\xba\x0b\x33\x31\x98\x49\xa2\x8b\xae\x4d\x55\x6a\xf9\xba\x39\x45\xc6\x9e\x5a\x6f\x2c\x56\x90\xe2\x7a\x9a\x3d\x78\x7b\xdd\xab\x8c\x25\x6a\x48\xca\x9e\x54\xea\xa2\xc6\x48\x2a\xa9\x8f\x1a\xba\xa6\x6a\x58\x26\xcb\x47\x13\xc8\xe4\x53\xb1\xec\x4d\xde\xba\x5d\x25\x9f\xdf\x98\x40\x9e\x52\xd9\x9c\xd8\x45\xa4\x74\x52\x85\xbd\x5c\xac\x60\x24\x73\x3f\x6e\x5c\xf1\xe7\x87\x60\x73\xba\xc5\xdf\x7d\x64\xcc\xe6\xad\xe8\xd8\xac\xd6\x0b\xfb\x01\xc8\x10\xc5\x4c\x1c\xbb\xd1\x7c\x4c\xc6\xbd\xf4\x28\x1f\x0a\x88\x90\xfb\xc1\x0e\x30\x6a\xb5\x03\x87\x58\xfe\x23\xec\x60\x2d\x84\xba\xc5\xc5\xee\xb5\xf7\xc1\xe2\x9a\x65\x2e\x35\x06\xb1\x6b\x24\x1b\x4e\xfc\x3e\x61\x83\xe4\x5a\x09\xe3\xc3\x84\x19\x22\xe6\xf8\x31\xa3\xc5\xc7\xde\x14\xa6\x5b\xab\x8f\xf8\x99\xb1\x6b\xb8\x1b\x93\xfc\xe0\x94\x00\x58\x1c\xa3\x6b\x75\x81\xfa\xd4\x1b\xa8\x58\x6a\xa0\x62\xb3\x81\x8a\x67\x0d\x54\xae\x37\x58\x1a\xa3\x54\xf4\xc7\x1d\x45\x25\x59\x61\x82\x94\x6a\x9c\xc3\xe5\x80\xf5\x30\xdb\x18\xc9\x77\x3a\x46\xd9\x27\x19\x23\xe3\x91\xdf\x41\x8a\xdd\xa1\x40\x6f\x0d\x7a\x5d\xa0\xa6\xa6\xdb\xd4\x8b\x38\xa8\xc2\xbd\xea\x0d\x74\x56\x6f\xa0\x6a\x89\xdf\x97\x65\x08\xca\x60\x94\xc6\x28\xcb\x3f\x53\x71\x17\x12\x65\xc1\x96\x92\x5e\xb6\x31\x81\x5c\x9e\x7f\xc5\x48\xd3\x2b\x40\xb1\x55\x78\x47\xaa\xef\x28\xc1\xd7\xbc\xe5\xb4\x30\xea\xf4\x6b\x18\x9d\x49\xb0\x62\xe4\x2b\x6d\x55\x33\xd0\x4d\xb0\xf0\xf9\xb4\xac\x64\x37\x5a\xc6\x82\xd4\xdc\x04\x7b\xd5\x1b\xdf\x6d\xd1\x58\x96\x55\x12\xb6\x1e\xbe\xf2\x12\x76\x1e\x69\x24\x2a\x3f\x61\xe7\x89\x36\x6e\xf1\x79\x1a\x88\x97\xe8\x50\xab\xc0\x6e\xa3\x2c\x3e\xfc\x48\x25\xb8\x20\xef\x7c\x18\xb8\x8f\x42\x23\x0c\x45\x48\xc6\x24\xfc\x9c\x79\xa8\x97\xf2\x4e\x31\x29\x93\xc0\x30\x05\x6a\xb7\xa9\xe6\xc7\x1a\x15\x3c\x4b\x1d\xca\x97\x1a\x4c\x6e\x8a\x0e\xe2\x1f\x21\x5d\x8e\xd4\xda\xe4\x1c\x1f\x11\xf1\x01\xdd\x0d\x01\x1e\x4f\x4b\x45\xf8\xc2\x7f\xc9\x2c\xc4\x06\x22\x0f\x91\xdb\x1c\xf7\xc4\x59\x81\x82\xde\xd3\xfb\x49\x4b\x9f\x26\x5e\x2e\xb5\x02\x3c\x9b\xde\x89\xa8\xa0\x43\xed\x04\x76\xef\x37\xc3\xa1\x47\x56\xf4\xab\x8c\xb1\xe7\xc2\x07\x58\x54\xc0\x29\x19\x73\x1c\x9a\x3a\x17\xab\x1c\x79\xba\x71\xfc\xb9\xca\x26\x73\xb7\x4b\xa9\x5b\x70\x33\xa2\x8a\x6e\xce\xb8\xa3\xf2\xa9\xe9\x22\x32\x56\x5d\x74\xd1\x76\x11\x79\xb4\x26\x1b\x70\x2a\xec\xf3\x5c\xe7\x97\x8d\x9a\xdd\xf9\x35\x1e\xec\x06\x57\x5d\x74\x6f\x62\xd4\x7b\x2a\x78\x91\x37\xa9\x4c\x12\x8b\xf4\xa8\xa9\x0a\x75\xda\xee\x01\x4b\xe9\xad\xdd\xc0\x03\x84\x79\xe2\x80\xec\xaf\x5f\x2c\xc9\x98\x53\xc7\xba\x4f\x1d\x2f\x0f\x80\xcf\x7d\x4a\x61\x64\xb8\xdc\x9f\x30\x41\x18\x2d\x7a\x7d\x65\x0c\x9d\x00\x45\x79\x8c\xaa\x22\xad\xc0\xa8\xf2\x45\xfa\x70\x25\x76\x61\x91\xc2\xee\x1d\xd1\xd0\xb0\x3f\x88\xe1\x08\xa9\x82\x59\x5a\x9a\xf8\xbd\x1d\xcb\xa1\xac\xc0\x7f\x6c\x0a\x7e\x30\x53\x2e\xc5\x0e\x30\x17\x4a\xe8\x7a\xaa\xb7\x33\xb2\x78\x84\xe4\xec\xc8\x82\xbd\xa4\x9b\x98\xe5\x26\x96\xbf\x65\x0c\x75\x06\xbc\xc3\x59\xc9\xe3\x25\xaa\xcd\x06\xaa\x9e\x71\x5e\x82\x65\x31\xf0\x11\x1e\x2b\xc1\xff\x98\x1f\xcf\xa2\xbc\x90\x51\x58\xd7\xc6\x04\x29\x4d\xee\xa7\xe8\x5a\x16\x5e\xf5\x31\xc8\x03\xd9\x27\x09\x23\xe3\x09\xa3\xf3\xc7\x95\x1d\x67\x66\x9c\xe5\xd2\xc5\x89\xb9\x46\x27\x9d\x67\x46\xfc\x22\x2c\xc8\xd6\x41\x67\xa6\x83\x8e\x44\x12\x94\xb7\x48\xfb\x6d\xdb\xd0\x3a\xfa\x75\x81\x8e\x98\x80\xf1\x04\xa0\x96\x7c\xce\xdf\x97\x3a\xbc\xa8\xb4\x10\x6a\x53\xb1\x86\x47\xc9\x40\x08\x48\x2d\xb7\xa5\x33\xd9\xf4\x92\x5d\x97\xd8\x3c\x3f\x75\x8c\x2e\x4e\x73\x31\x90\xac\x14\x2b\x7e\xb8\xd7\xb8\xb3\xd0\x5b\xee\x03\x01\x47\xde\x6f\x49\x27\x18\x35\xcf\xb7\xf0\xf1\xba\xf0\x41\x52\x09\x62\x58\xa4\xfd\x81\x75\x7d\x60\x83\x58\x9c\xa0\xff\x72\x51\x1c\xbe\x81\xa2\xca\x63\x6f\x7b\xe2\x23\x08\x30\xb0\xdb\x0a\x30\xde\x33\xc3\x75\x8e\x06\x18\xf1\xf8\xd3\x44\x1f\xfe\x18\x61\x24\x77\xd8\x19\x1a\xd3\xcf\x13\xde\x22\xec\xb3\xa0\x73\xb2\xe1\x3f\x0f\xcb\x64\x26\x30\xaa\xa9\xfa\x81\x8b\x80\x35\x79\xe4\x8d\xaf\x3b\x49\x55\x44\xc5\xc7\x96\x4a\x88\x30\x61\x5b\xa4\x38\xf1\x36\x4f\x0f\x72\x80\x91\x74\x2f\x59\x18\x8d\x2a\x73\x34\x15\xf0\xf4\x4f\x85\xf7\xd1\x73\xac\x30\xa2\xa4\x61\x96\x96\x27\xde\x9b\x4d\x55\x1a\x1a\xba\x64\xec\x71\x9e\x36\xb0\xd9\x81\x4e\x39\xd0\x2a\x3f\x8a\x5d\x24\x65\x4f\xaa\x3c\xaf\xc5\xd1\xe3\xa9\x8b\xba\xf7\x16\x66\x52\x2e\xc1\x80\x16\xe9\x48\x37\xcd\x09\xb0\x75\xc4\x6e\x04\xb6\x4c\x90\xfa\xf6\xa3\x2b\x96\x91\xd4\x69\x5a\xae\x58\x66\xa9\x6c\x42\xa8\x38\xa3\x26\xed\x7b\x26\x06\x20\x7d\xa9\x3b\x31\xef\xcd\x1b\x13\x24\x57\x73\xcb\xa2\x05\x08\x23\x71\xd3\x5b\x43\xa5\x1d\x8b\xc5\x28\x66\xa0\xab\x9b\xa5\xa7\x7b\x76\x93\x62\x6d\x59\x79\xe7\xb4\x1a\x3f\x93\x90\x43\x4a\x93\xe1\xf4\xda\x08\xac\x0d\x91\x2e\x59\xad\x2d\xa5\x85\x7e\xbd\xb4\x10\x73\x6f\xc6\x9f\xf2\x70\x1c\xac\xdb\x15\x86\x5e\x14\x22\x3d\xeb\x2b\x3d\xcc\xdc\xd6\x0b\xa5\x81\xf5\xc9\x0f\x1b\x13\x8c\xb0\xf9\xac\xdc\x56\xce\x59\x1b\x1f\x97\x93\x26\xd1\xf2\xad\x4b\x6f\x5d\x9a\x30\x6c\x14\x3d\xf1\x86\x65\x14\xb1\xeb\x4b\x35\x29\x5f\x17\xc1\xd9\x2f\x20\xce\xcf\xd3\xe6\xd5\xb6\x67\x0d\x1a\xd2\xf8\xbc\x36\x63\x0d\xdc\xbf\xa3\x05\x63\x23\x16\xfa\x46\x59\x30\x26\xa4\x68\x6b\xe8\xd0\xeb\x0b\x43\xa5\xac\x7e\x5c\x0d\xd7\x16\x4b\xe5\x45\x6d\xc2\x4a\x06\x2c\x3d\x69\x69\x69\x53\xac\x20\xa9\xe7\x62\xd8\x73\x7e\xf9\x64\xe0\x31\xce\x03\x20\x1e\x24\x05\x87\xba\x03\x8c\xfa\x15\xcc\xc8\xc4\x5a\xb6\xf5\xa1\x63\x99\xac\xea\x99\xe6\x58\xc6\x0f\x5a\x03\x22\x9b\x2b\x5d\x60\xa4\xc8\x05\xcc\x52\x72\x52\x90\x71\x0d\xda\x4e\xaa\x30\xe5\xa3\x38\x2f\xb4\x56\x01\xe6\x46\x2c\x83\x00\x03\xbb\xad\x00\xa3\x00\x85\x7a\x7f\xb9\x25\x95\x0c\x0f\x2a\x51\xb3\x4f\xed\xee\xf0\x96\x3e\x98\x71\x53\x8c\x97\x41\x4e\x17\xcb\x9e\x39\x06\x2d\x99\x1d\x43\xa2\xa9\xe6\x31\xb0\xe9\xe3\xd4\x0d\xec\x49\xee\x12\xaf\x33\xa5\xcf\x4f\x8c\x2d\x15\x31\xcb\x26\xde\xc4\xe3\xd0\x32\xaf\x8b\xb6\xae\x77\x43\xfd\xf5\x59\xb3\x81\xce\xce\x38\xe9\x88\x74\xd7\xfc\xcf\x37\x28\xbc\x80\x2b\xf6\x4c\xf4\xa7\x49\x23\x04\xc1\xc8\x18\x61\x24\xd7\x0a\xaf\xcf\x2b\xbe\x0a\x97\xfc\x06\xac\x62\xd5\x43\x7a\xf2\xd4\xa4\xb0\x7f\xea\x0d\xf4\x4f\xa9\x81\xfe\x69\x36\xd0\x3f\x67\xd0\x2e\x79\xfe\x09\x67\xa5\x06\xe3\xd1\xbb\xfe\x5f\xc6\xff\x0c\xcc\x0a\x58\xc1\xa9\xf4\x3b\x6c\x7c\x8a\x6b\xfe\x14\x7b\xef\x54\xbe\xc2\xa8\xae\xdb\x30\xd9\x18\x23\x63\x1c\x57\x53\xde\xd9\x79\x8c\x6e\x6a\xda\x96\xc1\xdd\x32\xb8\xcf\x28\x2a\x93\xf4\xbd\xa4\x9b\x0f\xba\xcd\x79\x82\x6a\x29\xd4\xe0\xb3\x29\x03\x1b\x79\x31\xb6\x7a\x0b\x0d\x81\x3d\x67\x1d\x04\xd9\x39\xfa\x26\x46\xa7\xb6\x96\xd0\xf0\x6f\x05\xd4\x2d\xfc\x7e\x40\xf8\x0d\xd2\xe8\x86\xf0\xeb\xd8\x96\xe1\x24\xf5\xc6\xcd\x06\x2a\x9f\x71\xfd\x31\x4b\x3d\x8a\xed\x48\x77\xac\x04\xb6\xf8\x0d\x32\x97\x33\x41\x2a\x76\x0c\x5b\xac\xa1\x81\x7e\x0f\x3b\x92\x4a\x73\xf3\xb8\x82\x91\xf1\x80\x51\xfa\x46\xf3\x19\x8a\xe3\xa7\x16\x41\xf5\x6a\x2b\xb6\xd8\x69\x93\x4c\x82\xdd\xab\x73\x16\x5b\xb8\xdb\x74\xa0\x78\x93\x0c\x15\x49\xb7\xb7\xb2\xd6\xb7\x4c\x90\xa6\x03\xbd\x50\x82\x7a\x3e\x89\xe7\x13\x3e\x2a\x09\x31\x47\x59\xa3\xe5\x6f\x45\x21\x7b\xa4\x29\xf7\x62\x16\x0d\x6f\x35\xd8\x79\xdc\x66\x46\xc3\xe8\x76\x8c\x91\xa4\x15\x12\x30\x30\x47\x82\x38\x3a\xa8\xc5\x08\x6b\x24\x80\xb4\xce\x07\xeb\x02\xb5\x2d\x98\x6e\xc1\x74\x0e\x7b\x9b\x74\x26\x2b\x1b\xb6\x6b\xea\x83\xc0\x98\xe7\xbb\xa5\x95\xc4\x61\xcc\x2d\x6d\x09\x45\xd4\x43\xd7\xb3\xa4\x77\xdf\xd7\x92\xae\x9d\xf9\xba\xa5\x51\x43\xc3\x48\x4b\xb5\x30\x93\x49\x42\xdc\x2d\xf7\xae\xeb\xb4\xf7\x40\x35\xcb\x0e\x59\x02\xae\x51\xbc\xf4\x5d\x47\xa3\xec\xa7\xa4\x65\x1c\xc8\xa2\x8a\xa4\xaf\x0f\x2a\xec\xe3\x51\x17\x61\x6e\x44\xff\xb2\x0d\xe3\xce\xa5\x66\xa4\x04\x9f\xd0\x6e\xb0\x4c\x55\x54\x42\xd1\x39\x54\x6f\x70\x4d\xb8\x92\x7a\xfd\x64\xbb\x3f\xb1\x71\x35\x7a\x19\x23\xe5\xac\x85\x51\xb6\x5f\xf5\x75\xe9\xf5\x00\x3d\x0c\x0e\x0b\x18\x65\x65\x1b\xa3\xf1\x11\x46\xa9\x53\xe2\x27\xb5\x57\x4f\x4f\xf1\xcc\x7c\xc5\xcb\xe4\x41\x0e\x5b\x85\xcb\xc1\x16\xd5\xbd\xae\x4e\x1d\x5d\x92\xcd\x44\x45\x6f\x22\x0c\x24\xb1\xdd\x57\xcb\x76\xae\x6b\x7a\x6f\x68\x99\x6b\x55\x40\xae\x65\xdb\x6a\x35\xdf\xdd\xdc\xfe\x9b\xe1\x95\x57\x64\xa1\x98\x9c\x4b\xa8\xd5\x38\x24\x36\xe9\xc8\xd4\x67\x45\xde\x71\xc9\x3c\xe9\xd5\xe3\x31\x23\x7c\x9b\x09\x93\x0a\x56\x52\xaf\xb0\xcd\xf1\xa7\x39\x3f\x22\x9e\xf5\xea\x0d\x3d\x50\x52\x8d\xa0\x75\xcf\x83\x96\x27\xd6\xd8\x3d\x4f\xd1\xbd\xe5\x74\xe7\x35\x26\x16\x1b\xed\xe9\xe3\xc9\x60\xb8\x15\x43\xe1\xbc\xa0\xb7\x7b\xe0\x73\xef\x37\xcb\xdc\x6a\x0e\xe3\xb1\x27\x29\x10\x4d\xfb\x35\xce\x09\x33\x59\x49\x50\xc0\x83\x1e\x55\x3d\x9f\xf4\x4a\x14\x8a\x16\x86\xf3\xc8\xad\x30\xc4\x5f\x0e\xed\xd7\x9b\x24\x8d\x1f\x0d\x8f\xb0\xa8\xa2\xe2\xe3\x29\xec\xa6\x63\x8c\x90\x71\x1f\xc0\xd0\x71\x87\x6c\x49\xc3\x47\x20\x0d\xbf\x10\xce\x61\x24\x97\x90\x36\x0f\x2c\xcd\xb9\xa5\xed\x64\x04\xe6\xfd\x92\x11\x98\x6b\x04\x23\x9a\xba\x7c\x12\x15\x24\x8d\x53\x1a\xec\x37\xd8\x87\x60\x5b\x52\x68\xf3\x4a\x0a\x91\xcc\xc4\x22\xb7\x86\x1e\x49\xe1\x79\xfa\x4b\x0d\x14\xee\xfd\x9c\xfd\x21\x99\x29\x95\x1a\x4c\x76\xc5\x73\x24\xc1\x87\xec\x22\x29\xf8\x8b\xe5\x95\x49\xd6\xde\x5a\x41\x3d\xb2\x52\xee\xef\xec\x9b\xe4\x17\x97\x52\x8d\xba\x13\xe8\x8d\x4b\x2d\xa0\xfd\x87\xbc\x7e\xe9\x32\xb9\x3c\xa6\xfb\x64\x2e\x0f\x5d\x64\x38\xee\xbc\xf3\xd3\x17\xe3\x8d\x9e\xb6\x56\xa9\xef\x65\x14\xb3\x4e\x30\xea\x60\xf7\x57\x93\xfc\x4c\x32\x9d\xa3\xa2\xf8\x0b\x93\x77\xb5\xb5\x21\xb4\xf7\x2d\xc8\x7b\x26\x9d\x10\x62\x79\xf8\xda\x75\xc3\xb5\xbb\xec\xa4\x1a\x85\x24\xe5\xeb\x0d\x96\xca\x88\x34\xb4\x29\xbf\x26\xa1\x97\x57\x20\xf3\x3d\xe2\x9e\x8b\xa7\x48\x3a\x3c\x2c\xc0\x7e\xcb\xc6\xae\x9f\x8d\x4d\x1d\x7d\xc0\x65\x2d\x67\x92\xcb\xda\xa5\x8e\xde\xa7\x3d\x9a\xb0\x90\xa4\xa5\x20\xc8\x2e\xe1\x73\x2d\x29\x27\xb7\x57\xe2\x25\x92\xf4\x9b\x16\xec\xf3\x26\x46\x7d\x47\xc3\xa8\x36\xc6\xc8\xe0\x6e\xf3\x99\x36\x46\xe3\x92\xaf\xa0\x0c\x0b\x72\x45\x37\x1b\xd1\x7b\xd7\xe8\xb1\xf3\x98\x05\x2a\xa5\x27\xd2\x22\x90\xd1\x55\xfd\x04\x49\xee\x51\xe5\x04\xd9\xe3\xa9\x14\x2b\x07\xee\x88\x46\x15\x0d\x94\x94\xcf\x6b\x2b\x4c\x3e\x17\xcb\x48\x3e\x06\xd6\xc2\x77\xeb\x60\x82\xa4\x3d\x5c\x66\xc4\x2e\x92\xec\x74\xe5\x5c\xec\xa2\xc2\x53\xfb\x86\x65\x93\xe5\x15\x0e\x69\xcf\xb8\xa1\x4f\x33\x65\x64\x45\x17\xad\x29\x19\x79\xb5\x6d\x63\x24\xea\xe5\x37\x2e\x7b\x1f\x1e\x8b\x79\xf4\x34\x1e\xc3\x8e\x27\x4c\x93\x8f\x64\x5f\x1d\xcd\xeb\x95\x72\x2d\x45\x99\xf8\x6a\x8f\x51\x0d\xa3\x33\x80\xc0\x82\x16\x68\x44\x34\x8c\x2e\x00\xb7\x3c\x12\x3f\x5b\xda\x63\xa0\xf6\x48\x1e\x09\x54\x23\xc7\x63\xff\x82\xa7\xc1\x05\x2f\xcd\x44\xb2\x35\x58\xc1\xa4\x15\x1f\xc6\x55\x22\x81\x22\xe5\x6b\xe2\xd2\xe1\xb0\x42\xd0\x07\xd6\x69\xe2\xd4\xc5\x4d\x4c\x97\xb0\x2c\xb7\x24\x73\x3b\xfe\xeb\xf5\x4b\x1b\xcf\x6b\x2e\xb6\x8a\xf3\xdf\x8a\xac\xfc\x1a\xec\x53\x50\x14\x3f\xc4\xb2\x0f\x80\xb6\x0f\xe3\x66\x78\x87\x07\x02\xbf\x32\xcf\xb4\x06\x6c\x48\xaa\xba\xeb\x8a\x16\xca\x48\x63\xd8\x01\xc2\x1b\x82\x98\xc5\xeb\x29\xd6\x34\x3f\xd4\xa5\xe6\x1f\x49\x97\x07\xb1\x53\xd0\x38\x2e\x05\x48\x31\x1f\x44\xa6\x78\x6e\x7c\xad\xb8\x04\xc7\x2b\xc5\x2f\x06\x61\x9e\xa3\xb2\x17\xd6\x49\xec\xd6\xe2\x41\x4e\xf3\xc1\xf0\x26\xb4\x17\xce\x5a\xc8\x4b\x20\xbe\xd8\x7d\xcd\x15\xc0\xc6\xab\x63\x6d\x86\xcf\x92\x0f\x2a\x5a\x2f\xd1\x9a\xa5\x19\xe2\x21\x7e\x4b\x38\x1c\x28\x16\x3c\x81\x9a\x68\xc1\xd9\xb4\x81\x31\xba\x80\x6f\x8f\x16\x46\x97\xd0\xd5\xc9\x4f\x1e\x09\x1b\x63\xd5\x6f\xc0\x7d\x4e\x2d\xff\xc8\x74\x83\x0f\x9f\x7d\xea\x27\x3b\xbf\xe1\x2d\x98\x94\xf4\x71\x39\xd4\xed\xbe\x35\x34\x7a\x3d\x6b\x56\x12\x4b\x96\x31\x43\x9f\xbe\x6c\xc2\xa7\x4f\x5e\x36\x40\x73\xa5\x8c\x93\x2c\x9d\x0c\xb3\x3a\x32\x35\x83\x9a\xf4\xcb\x89\x69\x3d\x2d\x9b\xcc\xf3\x79\xeb\xfe\x0b\x12\x03\x28\x3f\x6b\xe7\x9f\x63\x82\xac\x77\x6a\x31\xd3\xe3\x5a\x0c\xfe\xb3\x08\xf4\xac\x7e\x0b\x59\x09\xb9\x68\x62\x94\x9d\x8b\xb9\x7e\xed\x48\x81\x71\x36\x28\x44\xbe\x65\x01\x9e\x31\xca\x06\x00\x5b\xa5\xb6\x6e\xc6\x12\x7b\x2c\xe9\x06\x30\x03\x74\x63\x66\x7c\xb2\x3e\x57\x80\x24\x1c\x6a\xa3\x00\x48\x22\x37\xfc\x9f\xf6\x9e\xb9\xb3\xc7\x2f\x82\x94\xbc\x57\xb4\xde\x83\x14\x3d\x3d\xd8\x72\xa3\xab\x2d\xc5\x33\xdd\xd1\x6d\xaf\x3a\xfe\xcf\xaf\xc6\x05\xe4\x03\x48\xc4\xfa\x97\xa6\x79\x17\xe6\x7f\x79\x99\xd7\xd7\x92\x28\x55\xfe\xda\x7e\x2d\x09\x74\x49\x84\x9f\x53\xa7\xb1\xac\xf5\x51\xd6\xdd\xfb\x2c\xed\x86\xde\xeb\x5d\x17\x0d\x67\xf4\x2a\x2b\x1b\xd6\x35\x47\xb3\x6f\xc1\xea\xac\x77\x1d\x67\x1f\xcd\x19\x67\x4f\xf0\xb4\xab\xd5\x96\xaa\xaf\xb0\xde\xae\xf4\x07\xfa\x92\xb5\xf6\x2a\x4e\x7c\x4b\xa3\xc8\xee\x59\x01\xa3\xbc\xb7\x02\x9e\x47\x53\x3d\x73\xeb\x71\xb7\xea\x32\x30\x4c\x55\x37\x4d\x7d\xf8\x4a\x04\x35\x64\xf3\xde\x84\x82\x46\x88\xa4\x83\x07\x33\x90\x4b\xe5\x25\x78\x29\x5c\x54\x0b\x7d\xa4\x55\x5e\x5e\x64\xa6\xcb\xe7\x96\xee\xad\xb0\x00\x9b\x86\x49\xfb\x54\x7d\xc5\xe5\x97\x58\x84\x6f\x80\xa3\xde\x21\xcd\xdd\xcf\x88\x29\x93\x6b\x94\x7e\xa4\x05\xf4\xd6\x6b\xd4\x7d\x30\xba\x3c\x39\xb4\x17\x8c\x52\x0a\x23\x65\x59\x50\x07\x26\x13\xaa\xd2\x64\xe5\x1d\x36\x26\x7c\x35\xf3\x18\x39\xcd\x4b\x5f\xe1\xfa\x78\xa6\x63\x24\x0d\x16\xca\xa7\x5b\x63\xcf\xa6\x2f\xc2\x37\x31\xf6\x24\x13\x3e\x1f\xdd\xd3\x9e\x6b\x38\x7c\xb5\x87\xf9\x17\x38\x12\x2e\xf9\x89\x7c\x7d\x13\x50\x90\x87\x21\x85\x3d\xb3\x7d\xe4\x73\x20\x2b\x72\x6a\xb9\x2d\x9d\x59\xb6\xe7\x12\x1b\x13\x48\xfa\x04\x63\x94\x81\xc9\x36\x1e\x7e\xcd\xe4\xe7\x91\x8b\x5a\x7e\x0b\x08\xaf\x0b\x08\xe9\xa4\x77\xcd\x31\xed\x53\x43\xa5\x71\x8f\xb1\x98\xb7\xd8\x1c\xb3\x67\xcc\x99\xcb\xad\x12\xee\xcc\xb5\x4e\xbd\x38\xcb\x25\x8d\x2b\xc7\xae\xa9\x53\xd7\x0b\x99\xf4\xc3\x25\xcf\x4a\x7e\xc2\xb0\x7a\x03\xe5\x4f\xf8\x47\x29\x19\x40\x99\xc5\x28\xc7\xff\x78\x12\x45\x09\xcb\x33\x37\xc5\xdb\xa7\xde\xc0\x1d\x37\xee\x98\x4b\x32\x0d\x29\x16\x3f\x79\x65\xcd\x73\xb9\x58\x9b\x6d\x22\x32\x66\xce\x41\x1a\x5c\xc9\x85\xef\x37\x1c\x71\x6c\x29\xe8\xfa\x28\xa8\x9c\xf0\xb3\x3f\xd1\x4d\xc7\x55\xbb\xa3\x2f\x15\xcb\x35\x86\x0f\x46\xaf\xf7\x82\xd8\xc9\xc5\xa2\x4d\x42\x3a\x79\x0d\x1b\xca\x1a\xa4\x23\xf9\xab\x86\x51\xad\x8d\x51\xe5\x2c\x30\xb8\x24\x83\x32\xcd\x16\x41\x3a\x6e\xa1\xdc\x83\xf6\x73\x51\xcf\x2b\x6b\xb3\x9f\xc6\x18\x75\x86\xd6\x4f\xaa\xbf\x13\x56\x9c\x0d\xb7\x77\x6e\xf1\xc9\xc7\xb9\xc5\x2c\x54\x52\xb5\x4c\xc7\x50\xf5\x5e\xef\x35\xec\xaf\x2b\x6f\xeb\x47\x16\x49\x55\x4a\xbd\x39\xf8\x49\xd8\xfc\x48\xbe\x08\xeb\x84\xcd\xad\x90\xb0\x36\xd8\xac\xd0\xeb\x33\x3a\xe6\xa5\x51\x0a\xbc\xba\xa5\xc2\x94\x47\x31\x8f\x64\xf8\x08\x4a\x80\x93\x27\x39\x63\x8b\x96\x57\xf4\x93\x24\xcb\xb3\x54\x8c\x3e\x4d\xa4\x73\x4a\x65\xe7\x3a\x55\x32\x41\x72\x46\x07\x67\x70\xa5\x76\x69\x0c\x7b\x1e\x8d\x4e\x67\xac\xbf\x33\xdb\x0f\x63\x27\xa7\x7e\xd0\x7a\xfa\x60\xe0\x35\x72\x59\xaf\xc1\x08\xd1\xd3\xf1\x27\xb1\x86\xd7\x79\xb3\xa3\xf7\xf4\xe1\x64\xba\x15\x96\xcc\x84\xb4\x59\x99\x56\x96\xdf\xe6\x14\x31\xf4\xd1\x8e\x2f\x5c\xa4\x9a\x03\x82\xc8\x15\x6d\x21\x59\xcb\xaf\x18\xce\xf9\x13\xb9\x94\x26\x02\x39\x97\x08\xb3\x8d\xb9\x5a\xbe\xa1\x35\xff\x37\x41\x99\x5b\x76\xe6\x95\xc5\x23\x92\x4a\x20\x9b\x2a\x55\x75\xc3\x4a\x66\xf8\xe8\x8b\xe7\x2b\x87\xda\x7b\x59\x3e\x0a\x62\x16\x1d\x6a\x15\xd8\x6d\x54\xa6\x0f\xad\xea\x17\x56\xc8\x9e\x93\x79\x29\x3f\x72\xc9\x02\x60\x55\x6a\xd2\x8e\x4b\x59\x35\x96\x01\x97\xfb\xda\x1f\x8b\x6a\xa2\xc6\x24\xaf\x7e\x2c\x85\x55\x90\xc9\xbd\x6b\xe8\x62\x15\x91\x51\xbe\x0a\x7b\xa5\x6f\x62\x94\xbb\x1c\x60\x54\x82\x1f\x74\x42\xbc\xc6\x50\xfe\x0a\xdf\x0e\x31\x2a\x15\x30\xca\x1d\x99\x18\x75\x81\x1e\x78\x65\xf8\x2d\x19\x56\xf2\x08\x33\x29\x59\x6b\x03\x1e\xca\x1d\x26\x2b\xff\x62\x51\x59\xb2\x6c\x86\x97\x73\xb0\xc5\xcb\x8f\x9f\xb4\xde\xb7\xfc\x78\x90\x73\x70\x92\x0c\x57\xa9\xed\x18\xa6\x71\xef\xea\xec\xeb\xd7\x58\xd9\x6f\x45\x49\x54\x07\x61\x82\xd4\x3f\x6b\x34\xc4\x32\x92\x2a\x67\x6d\xd8\xc3\x8b\x9b\x0c\x95\xa8\x52\x87\xf6\x2d\xdb\xaf\x22\x1e\x86\xe4\x95\xa7\x02\xf2\x5e\x3d\xce\xc1\x2b\x8e\xf7\xf5\x2e\x50\x10\x1b\xe9\x95\x51\xdf\xba\x8a\xe8\xfc\xce\x89\xed\x94\xd4\xc4\xfa\x18\x53\xa7\x47\xcd\xd9\x9e\xf9\x29\xb1\xbc\xd0\x33\xff\x8d\x0b\x31\xad\xe4\xe7\xff\xb6\x4b\x6a\x93\xc8\xfe\x1b\xdf\x6d\xd1\x58\xa6\x24\xed\x01\x55\xdd\xb4\xfa\x86\xa9\xcf\x54\x40\x2e\x8a\xb4\xf8\x69\x8f\xc1\x57\x62\xd9\x97\x77\xba\x88\xea\x20\xa4\x15\x82\x51\xee\xb8\xed\xb3\xcc\x5b\xee\x76\xcb\xdd\xae\x11\xc1\x67\x93\xe6\xf3\xaa\x6e\x1b\x1a\x4d\x54\x31\xe0\x3c\x5c\x53\x1c\x4e\xf3\x70\xaf\xbd\x25\x6b\xe4\x4a\xb7\x63\x8c\x1e\x5d\x79\x8b\xb3\xdf\xfd\x6e\x0b\x71\xf6\x44\x8a\xea\xaa\xee\xf4\x68\x17\xb8\x84\x29\x3b\xee\x6c\xfb\xed\x73\x96\xdb\xd0\x82\xcb\x35\xb0\xcb\x7a\xee\x6e\x82\xe9\xf5\x79\xcc\x7b\x0b\xbc\xe5\x02\xc0\x75\xab\x18\xdd\x15\x3e\x0c\x32\x21\xca\x04\x32\x79\x32\x54\xcb\x0b\x07\x98\x2c\xdb\x59\x6c\x36\x58\x3a\x2f\xe6\xa3\xb2\x9d\xa9\x64\xd9\xce\x75\xe6\x1d\x5f\xc4\x35\x76\xca\xa6\x97\x1b\x4b\x7e\xd2\x30\x02\x32\x9c\x1e\x17\x30\xaa\x57\x30\xd2\x53\x9a\x9f\x66\x84\x9c\xdd\xdc\x6c\xf1\xd2\xbb\xdf\x6d\x21\x5e\x92\x70\x52\x6f\x03\x22\x72\xcf\x2f\x14\x92\xaf\xc7\x12\x25\x1e\x89\xe5\x78\x5e\xb8\x37\x4b\x80\x2f\xf5\x4f\xba\x37\x62\x17\x49\x95\x46\x1e\xf6\x9d\x73\xf2\x4b\x4c\xcb\x96\xd3\x9a\x89\x1c\xd3\x24\x89\x1c\x2d\x53\x75\x2c\x93\x01\x8b\x35\x99\xfb\xc7\x4b\xe8\xf5\x4c\xe6\x9f\x0f\x98\xdd\x27\xd0\xf6\x48\x47\xc3\x43\x8c\x8a\x8f\x35\x3f\x49\xc3\x38\x6f\x4d\xe4\xad\x58\xaa\x71\x12\x24\xe3\x01\x04\x5d\x83\x35\xe8\x12\xaf\x9e\x6b\x5d\x7a\x41\x7e\x9d\x57\x4c\x5f\xff\x32\x43\xc6\x2b\x09\x6c\x0b\xef\x26\x17\x07\xeb\xba\xc7\x9b\x08\x94\x26\xd9\x18\x34\xa7\xb7\x3e\x1a\x0e\x7a\x13\x34\xa7\x24\xbc\xc9\xaa\x96\xe9\xe8\xb6\xad\x8f\x92\x1a\xe5\xaf\x62\xe7\xb7\xd6\x29\x6f\x12\xbd\xde\x24\xa6\x4d\x99\x10\x26\x61\xf5\x3c\x18\x9a\xee\xe7\x82\x89\xcc\x38\xf0\x2f\x63\x60\xe0\xbc\x4f\x24\x60\x22\x63\x60\xe6\xce\x10\xff\xf0\x09\xa8\x97\xf8\x17\x48\x83\xef\xda\x3f\x6b\x4b\xc9\x29\x39\x2d\xa7\xfd\xcf\x8c\xb7\x5b\x76\x63\x82\xe4\x5c\x5c\xde\x88\x39\x34\xbc\x52\x31\xca\xde\xa9\xd0\xe6\x79\xeb\x88\xa6\xba\x80\xf4\xdc\x58\xcb\xb0\xa1\x45\xc6\x2e\x22\x16\x5e\xd4\xba\xaf\xba\xa8\x59\x89\x37\x6e\xf2\xc1\xd5\xc2\x5e\xb5\xbc\x8b\xe4\xbb\x96\x8b\xc6\x2d\x17\x95\xee\xe1\x70\xae\xe5\xa2\x81\xea\xa2\xbb\x31\x46\x6a\x9f\xf8\x16\xb2\xb4\x03\xaf\xfd\xa6\xed\x22\x19\x06\xdf\xb5\x30\x52\x1e\x0a\x9e\x2f\x21\xa7\x09\xfd\xbe\xeb\xa1\xf0\xa3\xaa\xcb\xb3\x4a\x29\x2a\xc1\xc8\xad\xc4\x09\x6e\xbd\xe6\x1d\xe9\x0f\x30\x92\xb2\x15\x8c\x8c\xb3\x02\x46\x6e\x70\xea\x89\xd3\xe2\xa9\x22\xeb\x61\xe5\xf2\xc7\x81\x77\x64\xc8\xed\x76\x1c\xa2\x8c\x41\x40\x37\xa3\x1c\x4f\xcb\xe6\x82\x5a\x62\x04\x4f\x04\x99\x4c\xe2\xd8\xb0\x6c\xcb\x74\x2c\x16\x64\x51\xf5\x83\x44\x58\xb2\x30\xe7\x2a\xdb\x87\xf4\x28\x09\x95\xd4\xa9\xc6\x45\x90\x2a\x8b\x34\x5d\x44\x4c\x58\x7b\x37\x25\x8c\x9a\xc7\x30\x65\xb6\xe7\x04\x1b\xa5\x0f\x4b\xcc\x66\x98\x43\x7a\xba\xb1\x12\x23\xf5\x13\x9c\xd7\x9c\x8b\x28\xdd\x6a\xac\x76\x69\xac\x97\x87\x83\x66\x5c\xe3\x1e\x86\x92\x52\x02\x4d\xfd\x9a\x3c\xe0\x9b\xdc\x6d\x6b\x5e\xd8\x74\x56\xed\x4d\xb8\xc1\x54\x02\xf9\xd6\xe8\x70\x48\x5d\x4e\xcb\xc3\x98\xa4\x9c\xe8\x6e\x74\x2a\x46\x26\x48\xdd\x9a\x7b\x2a\xba\x48\x4a\xb7\x34\xd8\x6f\x81\x72\x0b\x94\x1f\x19\x28\xa5\xa4\x95\xbd\xa6\x3f\x5e\xff\x63\xd9\xdd\x57\x64\x89\x3e\xaa\x9f\x6d\xc8\x15\xa5\x89\x33\x67\x5d\x71\x36\x61\x51\x19\xe6\x37\x2b\x79\xf8\x6a\x43\xbd\xb8\xa6\x69\x56\xe9\xad\xf2\x40\x6c\x1c\x9a\xdc\x3a\x19\x6f\x51\xf2\x1b\xa3\xe4\x64\x44\x43\xcd\x18\x18\x1d\xdf\x38\xb0\x08\x23\x6f\x00\x92\x4d\x88\x90\x17\x66\x1b\x23\xf9\x4e\x8f\xe3\x93\xdc\x68\xcb\xce\x6c\x61\x67\x8d\xb0\x43\x92\xd5\x72\x6a\x56\x5f\xf7\x4a\x84\xf9\x65\xc1\x0a\xf5\x06\x2a\x4c\xa5\x10\x68\x63\x44\xf9\x9f\xd7\x48\xa6\x10\x58\x98\xad\xe6\xed\x73\x08\xd4\x5b\x18\x65\x1f\x9b\x18\x19\x05\x8c\xce\x61\xa1\xa4\xa4\x85\x19\x41\xde\x85\x80\xa9\xbd\x6d\x22\x81\x8d\x85\x92\x37\x49\x24\x90\x9d\x00\x44\xdb\x32\x6f\x83\x18\x41\xae\xa1\x67\x52\x4e\x2c\x73\x75\xfc\xaa\xe5\x70\x4f\xc5\x2e\x3a\xd4\x4e\x60\xb7\x51\x81\x32\xc9\x92\xb8\x52\x05\x23\x69\xe0\x07\x6a\xc8\x78\xf2\x75\x38\xb7\xd7\x25\xda\xb5\x1c\xfa\xa5\xa0\xbb\x3d\x7a\xcb\xfc\x34\x5c\xa8\xda\x6c\xa0\xea\x59\x64\x1f\xf3\x9c\xa2\xc2\xbf\xa5\xf3\xc8\xbf\x78\xfb\x99\x70\x68\x7b\x0a\x3e\x7c\x27\x67\x09\x23\xe3\x09\xa3\xf3\xc7\x2d\x03\xfe\xc1\x70\xd7\x54\xb6\xc7\x5f\x1d\x77\xcd\x83\xd3\xa2\x6e\x3a\xba\xfd\x36\x70\xba\xee\x1c\x27\x5b\x38\x7d\x1e\x72\xac\x8f\x05\xa7\x9b\x05\x44\xef\x08\xa7\x35\xfd\xf1\xba\x4e\x7b\x7a\xff\x3d\x49\xea\x16\x54\x7f\x5d\x92\xba\x08\x31\x6c\x41\xf5\x19\x50\x3d\xbd\x33\x4c\xda\xa1\x53\x41\x00\xd5\x52\x83\xa5\xaf\xc2\xa8\xd1\x54\x3c\x6a\x94\x07\x01\xbc\x75\xc8\xa8\x34\x3e\xaf\xcd\x98\xfc\xfb\xf7\x70\x11\xfb\x9d\xc3\x8e\xa5\x64\x4a\xba\x33\x6a\x76\x4c\xc3\x76\x5c\xb3\xc3\x13\xbb\x72\x7f\x69\xcf\x57\x9a\x17\x7b\xe7\xce\xd3\x5c\x4f\x5a\x9f\x48\xf0\x2a\xfb\x7e\xfd\x7e\x8e\xd7\x54\x3c\xcd\x2b\x51\x48\x6a\xe1\x16\xea\x60\xb2\xb9\x57\xd4\xe8\x30\x81\xb4\x8c\x2a\x46\x67\xe6\x41\xcc\x49\xf9\x63\x24\x7b\xf5\x6a\xdc\x2d\x8b\x5b\xb7\xc9\x5e\xd7\x06\x20\x13\x91\x56\x67\xd4\xa6\x7d\x6a\x1b\x6d\xcf\x4f\xf2\xcc\xff\x0f\x7c\x24\x65\x26\x97\xc5\x32\x92\xcb\xe2\x39\x7c\xe4\x91\xec\xfa\x71\x05\x32\xf0\x1b\x66\xe9\xf2\x4e\xec\xa2\xe6\xbd\x85\x45\x15\xdd\x53\xb3\x25\x1e\x21\x32\xba\x6a\xd5\x44\x6b\xd2\x58\x7c\x76\x6b\xe9\xa6\xf1\x14\x67\xb3\x42\xd6\xca\xe7\xa8\xb0\x14\xd8\x50\xe7\xb0\x31\x4a\xbe\x47\x50\x1e\x7e\x8a\xd6\xc6\xa8\xde\xbc\x6f\xf1\x35\xcb\x94\x64\xee\x8e\x33\xcb\x76\x04\xea\x0a\x67\xb6\x61\xaa\x3a\x3b\x3b\x8b\x79\x8d\x28\xb5\xb5\xfa\x8c\x30\x41\xca\x5e\x1c\xb6\x91\xf4\xd5\xac\xb6\xfd\x14\x23\xcb\xb2\x41\x9c\x5a\xcc\xcd\x98\x34\xab\x40\xa4\x62\xad\x38\xc2\x48\x9b\x53\x6f\x56\x53\xe4\xe7\xd7\x8f\x6c\xd4\x3e\xf0\xa2\x97\x92\x25\xbd\x2f\x0c\xeb\xba\x60\x53\x53\xb5\x12\x69\xc8\x94\x07\x51\x5d\x72\x71\x78\xf9\x5d\x86\x62\x15\x1d\x6a\x15\xd8\xbd\xa3\x6a\xb1\x56\xd0\x30\xd2\x52\x2d\xcc\x64\x92\x84\x38\xcb\x76\xac\xeb\x2b\xbd\x77\x6b\x25\xf3\xd8\xdc\xf0\x44\x6d\xcf\xe7\xb1\xf1\x7e\xe5\x91\x68\xa1\x43\xed\x04\x76\xef\xf7\x2b\x99\x9c\x49\xfe\x36\x57\x87\x1f\x77\x61\xa8\x16\x8b\x11\x75\xa6\xc4\x42\x9f\x30\x13\x48\xa6\x77\x89\x51\xa6\xd5\xe0\xb4\x12\x50\x52\x02\x4f\xb8\xa6\x43\xaf\xf3\xb6\x6e\xd2\x21\xab\x47\x2b\xc1\x7b\x4b\x07\xe2\x09\x0a\xe2\xa9\x98\x87\x9e\x92\xef\x67\xcd\x81\x7e\x4c\x90\xee\xa5\xbb\x5b\x51\x47\x37\xc7\x79\xd8\xa5\xba\x26\x3c\x13\xb9\x1a\xc3\xb7\xbb\x8b\x3c\xff\x36\x68\xc3\x37\x42\x00\x30\x2c\x78\x63\x73\x5b\x83\xb6\xdf\x32\x0f\x5b\x18\x59\x03\x8c\xda\xbd\x31\x46\x5d\x0b\xa3\x73\xdd\xf2\x79\xd1\xd0\x4b\x37\x72\xb0\x9e\xe1\xb9\x11\x79\x50\x2f\xe9\xcc\x91\xe8\xf6\x72\x0f\xdf\x59\x25\x69\xe6\xf5\xe7\x5c\x35\x47\xc0\x2f\x73\x26\xe6\xe1\xba\xd1\x5b\xe0\xad\x89\xd2\xc4\xb3\x9f\x6d\xd5\xd7\x31\x79\x27\x2b\x70\xbd\xf7\xee\x04\x38\xfa\x00\x0e\x95\x2b\x93\x88\xf0\xd1\xf4\x1a\x0a\xa0\xf5\xfc\x20\x2e\x39\x5d\x50\xc3\x1c\x5d\x5f\x18\x0f\xba\x3d\x99\x03\x25\x9e\xff\x64\xa3\x9c\x01\xce\x67\x38\x03\x04\xf9\x4e\xb6\xce\x00\x5b\xfd\xe0\x5a\x79\x84\xac\x22\x25\xc0\xc7\xec\x1a\xe6\xf5\x91\xd9\xd3\xbd\x92\x20\x1e\x0c\x95\x3c\x40\x2a\xd7\x41\x4a\x4c\x07\x92\xe1\xaa\x99\x4d\x94\xd7\xcc\x7c\xf2\x50\x52\x31\xea\xea\xee\x07\x10\x02\xb7\x6b\x7d\x33\x6e\xc1\xa4\xa4\xe3\xcb\x85\xae\x1a\x37\x7a\x32\x33\xe5\x1d\x08\x7b\x2b\x65\xa6\xf4\xcc\xed\x65\xce\x2d\x56\xca\xef\xca\x2d\xae\x68\x6e\x9f\x90\x0e\xf4\x8e\x61\x46\x2a\xc7\x09\x93\x00\x4b\x37\xc3\xdc\x23\xe9\x48\x7c\x9d\xfd\x4a\x16\x46\xda\xa7\x98\x20\xe5\x4b\x29\x22\x5a\xc8\x3d\xd4\x61\xc7\x89\xdf\x50\xaa\xac\xe6\x3c\x9b\x4e\x27\xe1\x37\xe2\x1c\xd4\x4a\xa2\x15\x42\x77\x55\x8e\x59\x04\x3c\xc6\x83\x77\x98\xc5\xf2\xad\x23\xc8\x1d\x5a\x5e\x7d\xf8\xe0\xb9\x18\x49\xa6\x93\xbc\xd0\x87\x56\xcf\x75\xf4\xb5\xa2\xde\x9f\x44\xc3\x4c\xa8\x9b\x79\x8c\x0e\x9a\xf5\x2d\xea\xdd\xa2\xde\xa5\x51\xaf\x94\x8b\xad\xf3\x3a\x35\x1d\x6a\xeb\xfd\x84\x7c\x2e\x17\xc5\xea\x72\x79\x66\x39\xca\x7d\xec\x89\x2a\xa0\x5c\xd8\xbd\xb3\x1a\x82\x49\x49\x0d\x04\xfc\x3c\x83\x76\xac\x95\x85\x6b\x79\xfd\xe2\xf5\x46\x09\xe2\xb9\xc2\x18\xa3\x3b\x38\x6c\xd5\xb6\x12\xf9\x2f\x24\x91\x23\x52\x6b\x4f\x36\xc6\xed\x67\xad\x7a\xb3\x42\x87\x56\x1e\xe1\x95\xfe\x7d\xcd\xa1\x2c\x9d\x54\xb4\x03\x7c\x5b\xd7\x25\xab\x6f\x98\x00\xe4\xa5\x48\xcf\x0e\x90\x2e\x73\x7b\x1b\x53\xca\x3e\xa4\x2b\x6e\xa0\x5a\x8d\x88\xa8\x42\x14\x26\x10\xc7\xb9\xeb\x22\xd2\x3b\xae\x76\x39\x96\x49\x03\xaf\x56\x69\xbb\x88\x14\x2d\x17\x8d\x2a\x2e\x22\x17\x79\x17\x3d\x42\xe3\xbc\xea\xa2\xa7\x31\x34\xb0\x8b\x9e\x5a\x2e\x22\x67\x79\x17\x11\xf9\xae\x80\x91\x8e\x31\x93\x72\x13\x4f\x68\x5d\x9f\x51\xb7\x97\xcc\xbb\x2e\xa7\xc5\xe1\xca\x79\xd7\x57\xdf\x3c\xf4\x7c\x21\x3e\xa2\x43\xed\x04\x76\x2f\x40\xcf\x83\x86\x86\xd1\x59\x6b\x0d\x1c\x31\x3f\x52\x09\x2e\xc8\x3b\xc3\xa9\x52\xdb\x6f\x24\x83\xf6\xa7\xb3\x33\x3c\xd6\xbc\x94\x49\xfc\x5e\xe1\x4d\x43\x16\x3b\x99\xc1\x01\x2e\xf8\x35\x7c\x66\xb8\xce\xd1\x00\x23\x40\x7f\xc9\x3e\xfc\x31\x1e\x83\x94\x01\x61\x67\x68\x4c\x3f\x4f\x78\x8b\xb0\xcf\x82\xce\xc9\x86\xff\x3c\x93\xb9\xde\xea\xaa\x65\xeb\xc3\xf6\x68\xe8\x9a\x5a\xdc\xfd\x18\x7d\xc6\x98\x11\x5b\x3c\xf7\x5c\x90\x91\xbf\x8c\xdf\x9c\x16\x31\x41\xa2\xa9\xe6\xa3\x98\x45\xd2\x38\xa5\xc3\xde\xab\x89\xa1\x9e\x84\x08\x78\x61\x01\x8d\xc5\x35\x36\x5e\x7b\xec\xcd\x8a\x25\x40\x96\x28\x3c\x32\xbb\xff\x8b\x07\xae\x5c\xa5\xe4\x03\xdc\x69\xd1\x40\xa6\xa4\xe2\x82\x7f\xdd\x70\xba\xd3\xd9\x56\xe7\x57\xcc\x5c\xa2\x5c\xa6\xbf\x29\xa9\xf4\x1b\x6e\x1f\x22\x67\xeb\xb6\x5c\xe6\x06\xcb\x65\x6f\x21\xfa\xe5\x92\x61\x1d\x75\xe7\xfa\xd8\xba\x35\x87\x5e\xc8\x59\xa9\x81\xc2\xbd\x1f\x7e\x56\x2b\x95\x1a\x4c\x76\x81\xe8\xc0\x87\x9f\x91\x8a\xff\xf1\xa4\x54\x4b\x6c\x13\xe4\x43\x49\xad\x85\x2a\xa5\xdf\x86\xf2\x65\x2d\xc3\x01\x8a\xa7\x00\xa8\x98\x85\x20\xf9\x50\xa7\xef\x17\x7c\x39\x9e\xd6\x74\xc5\x44\x8e\x25\x5a\x3f\x3d\x76\xd6\x59\x7c\x8a\x91\x7e\xd2\x82\x07\xe7\xdf\x8d\xfb\xb9\x12\xca\xec\x34\x48\x61\x23\x73\x79\xe8\x22\xc3\x71\xe7\x9d\x9f\xbe\x58\x24\x19\xae\x2f\xbf\xc0\x66\x44\xd9\xaf\xf1\x6e\x4b\xeb\xed\x4c\x92\x40\x8e\x4d\x9c\xf0\x64\xfb\xf5\x90\xb7\xda\xda\x10\xcc\xfa\x26\x7e\x73\x13\x9a\xad\x47\xe3\xc6\xb9\x2e\xba\xb6\xad\x9b\xce\x5c\x5b\x41\xa6\x2d\x76\x67\xd9\x0a\x66\xd8\x05\x3c\x6b\x80\x52\x15\xcb\xc8\x3d\xd4\x60\xc7\xb1\xdb\xe5\xc1\x20\xae\xab\xe7\x10\x37\x4b\x39\x91\x6c\x19\xc3\x60\x55\x4e\x66\x6d\x4d\xe8\x3a\x06\xd5\x01\x0f\x82\x8e\x7b\xcc\x36\xf4\x8e\xab\x1a\x1d\xda\x1b\xd0\x44\xe2\xcd\x54\x55\x3c\x9f\x48\xbc\xc9\x04\xd2\x3c\x38\x68\x83\x30\x52\x6e\xa8\xb0\x4f\x60\xa0\x03\x78\xd1\xf9\xca\x54\x9e\xff\xc6\xad\xdb\xd3\xc3\x64\xda\xbc\xe2\xd4\x58\xcc\x2e\x59\x58\xeb\x15\x44\x72\x9a\x6a\x58\x40\x4e\x49\xad\x00\xfb\x99\x58\xff\xa3\x81\xe2\xc6\xc0\xc9\xdb\xa4\x06\x4b\x27\x97\x93\xa9\xe9\xf6\x75\x81\x8e\x58\x50\x79\xc4\xcf\x7a\x11\x2b\x0f\x1c\x4b\x7e\x21\xad\xa7\xaa\xd4\x4b\x82\x0a\xa4\xfb\x54\x1d\x60\x99\xd6\x62\x79\x2f\x5a\xb5\xc2\x02\x92\xf7\xd1\xd3\x30\x7f\x44\x42\xb7\x31\x4b\xff\x1d\x08\xdd\x15\x35\x55\xcb\x7d\xd0\xed\xe7\x0a\xe4\x6e\x80\x13\xd9\x4f\x39\x9f\x9d\xe2\x04\xc5\xf5\x15\x09\xef\x90\x02\x7e\xe5\x9b\xfd\x9e\xdc\xf6\x16\x09\xfd\xc2\x48\x68\xc2\x61\xbf\x79\x6b\x38\xfa\xad\x65\x0f\x75\xf6\x4f\xbd\x81\xfe\x29\x35\xd0\x3f\xcd\x06\xfa\xe7\x0c\xda\x25\xaf\x90\xe4\x59\xa9\xc1\xb8\x72\xd2\xff\xcb\xf8\x9f\x61\xb4\xae\x82\xdf\x54\x27\x19\xe9\x26\xa5\x54\xa3\x16\x28\x2b\x38\x0c\xcb\x57\x18\xd5\x75\x1b\xd0\x0c\xc6\xc8\x18\xc7\x83\xb8\xe4\x5a\x1e\xa3\x07\x5b\xdb\xc2\xc8\x16\x46\x9e\x85\x91\xb8\xe0\xd6\x34\x4c\xd3\x18\xe8\x9d\x67\xbd\xbd\x3f\x26\xad\x06\xc1\xed\xc8\xf0\xc8\x9e\x5c\x2b\xf9\xf0\x74\x4c\xfd\xcc\xf0\xb4\x98\xa8\x8e\xe9\x14\x12\x4e\x02\x73\x09\x29\x87\x33\x0c\xb0\x62\x2d\xec\xf7\x42\xb2\x9d\x94\xbb\xd3\x86\x5f\x11\x9b\x37\x5e\x60\x54\x7b\xe1\x88\x58\xd5\xfc\xb5\x8d\xfd\x89\x98\xb4\x97\x8e\x78\xed\xbb\x6d\x51\xcd\x7c\x89\x3b\x9d\x90\x09\xfe\xa1\x5d\xd7\xa1\x8e\x47\x8b\x43\x3a\x1c\x37\x1a\xc6\x09\xf1\x6a\x65\x1a\xdf\x68\xe3\x16\x43\x12\xa3\xc0\x1b\x69\x31\x34\xb7\x16\xc3\x8d\x05\x8a\x37\x81\xbb\x44\x4c\xca\x3f\x7a\xaf\x67\x3d\x76\x4d\xe3\xc6\xf3\x8b\xe6\x1a\x67\x5f\xdb\x5c\x2d\xf9\x59\x31\x70\xa4\x6f\x0e\xb3\x62\x3c\x9f\xb0\x60\x3d\x1b\x13\xc8\x40\xcb\x63\x74\x6b\x3c\xc5\x94\xd8\x1f\x23\x61\xc1\x16\x06\x36\xe3\x16\x8c\xe4\x3c\x36\xd7\x74\xa8\xad\x3a\x00\x07\x45\x3a\xd4\x47\x1c\x02\x3e\xe3\x2c\xfa\x4c\x08\xc3\x48\xc8\x62\x24\xb4\xe3\xb6\x09\xe9\x1e\x28\x7b\xe9\xae\x8e\x51\x23\x87\x91\x82\xcf\x30\x3a\xa9\xf8\x31\xaf\x72\x9f\x60\x46\x70\xf2\xba\x25\xfa\x60\x0c\xfd\xeb\x66\xd0\x67\x9c\x82\xeb\x66\x30\x12\x82\x30\x49\x7e\xdd\x87\x91\x85\x91\xd1\x72\x30\xa2\xbd\x3b\xb8\x43\xe6\x01\xa3\xab\x02\x46\x72\xd3\xc4\xe8\xa4\x86\x59\x66\xf2\xba\x6e\xdf\x32\x9d\xd2\xa5\xfd\x60\xf4\x7a\x1e\xe8\x7e\x26\x18\x2e\x4e\xbd\x0b\x33\xe1\x12\x5b\x18\xa9\x37\xf7\x18\xb5\xbf\xf6\x31\xcb\x4e\x5c\xa1\x4a\xd5\x7b\x97\xda\x86\xce\xf2\xbc\xea\xa3\xe7\x60\x89\xf9\x6f\x17\x28\xff\xe5\x28\xf8\xfd\x3c\x89\xc2\x1a\x36\x99\x09\x52\xae\x9c\xf5\xcd\xda\x4a\x1d\x20\x8f\x8e\x46\x18\x55\x1e\x86\x01\x17\x08\xcc\xd4\x05\x30\x59\x8f\x56\xac\x71\x89\xfd\x46\x05\xd8\xac\x22\x0e\xd2\x04\xaa\xb3\x1a\x7c\xd4\xec\x53\x0b\x1a\x33\xfc\xa1\xe6\xf4\x86\xe7\xe0\x7d\x9c\x7c\xac\xc1\x1f\x31\xd1\xf0\xae\x38\xc1\x03\x2f\x6e\xcd\xe2\x9a\xe7\xb6\x22\xe6\xd3\xb0\x56\xbd\x07\xff\xa0\xe1\xd8\x39\x4c\x39\x23\x93\x8b\xe8\x71\x68\x99\xfe\xfa\x4e\x07\xeb\x3b\x1d\xac\x6f\x89\x09\xc5\xb2\x85\x91\x74\x33\xea\x62\x96\x86\x15\x78\x46\x55\xe3\xc6\x50\xbf\xe4\x5d\xb5\xdb\xa3\xa6\xc6\x6a\xff\x57\x6d\xa0\xda\xff\xd5\xc3\x8f\x52\x83\x09\x6d\x17\x09\x2a\xfc\x63\x24\x68\x81\x33\xff\xec\x6d\xfd\x6e\x22\x0b\x37\x26\x90\x83\xe2\x95\xeb\x79\x89\xfa\x22\xe2\xa2\x6a\x6a\x8a\xe9\x82\xd0\x90\x68\xf5\xda\xd0\x25\xef\x02\xce\x5e\xae\x75\x5f\x71\x51\xb3\xea\x37\xfc\x93\xa4\xed\xa2\xa3\xaa\x0f\x0d\x2f\x5b\xf2\xaf\x31\xea\x7e\x86\xe8\x36\xd1\xe2\x69\xae\xf8\x32\x9b\xdb\x5a\x7d\xec\xcf\xdc\x8d\xb7\xd6\x07\x97\xaf\x33\x76\x25\x98\x5e\xeb\x93\x32\xe2\xe7\xbc\x88\x10\xc1\x19\xed\xf5\x75\x9b\x23\x02\xcf\x21\x5e\xe1\x4e\xf1\x41\xaa\xab\x09\xa7\x78\xf9\x95\xec\xee\x2a\xb5\x30\x32\x4b\x18\x91\x07\xcd\xab\x8a\xce\x1b\x24\x33\x5e\x20\x68\xd1\xa1\xe9\x79\xa4\xdf\x71\x8f\x06\x65\x51\x74\xc9\x36\x1a\xe5\xd9\x68\x14\xa6\x4c\x30\x16\x17\x96\x73\xab\xdb\x34\x58\x0b\xcc\xf7\xc1\x60\x9d\x53\x0b\x33\x22\x4f\xf4\xae\x8f\xac\x47\xea\x13\x10\xe8\x2b\x78\x9d\x85\x87\x21\xc6\x4c\x9a\xe8\xdc\xb0\xad\x5e\xcf\xef\x0c\xff\xb0\xc0\x30\x12\x5e\x29\xe4\x82\x91\x81\x6b\x61\x74\xab\x7d\x40\x07\xed\x4d\x71\x05\x9f\x98\xb0\x2b\x6b\xe8\x58\xdd\x80\x3f\xf0\x78\x03\x3e\xbd\xce\x5d\x1e\x33\x09\x90\x48\xd9\xb5\xad\x81\xfe\xe5\x74\xd8\xb3\x58\xb1\xdc\x40\xc5\x72\xbd\xc1\x04\x12\x4c\xeb\x06\x6d\x4c\x90\xe8\x63\x15\xa3\xf3\x3e\x46\xcd\xb4\x85\x51\x6a\x70\xe3\xbf\x8f\x79\xda\xcc\xc7\x63\xf5\xe5\x7a\xd2\xe0\x6d\x8f\x07\x6a\x80\x81\xd7\x17\x57\xb1\x8d\xc9\xf8\x68\x77\x5a\x08\x88\x69\xc9\xd3\xae\x0e\x0d\xfa\xe5\xc2\x18\x51\xed\x96\x7b\xc7\x01\x8e\x15\xe4\xb4\x78\x1e\xe2\xd9\xc6\x43\x29\x2d\x9e\xb3\x94\x5f\x97\x16\xfa\xe7\x7b\x7d\xea\x8c\xfc\xfe\x29\x9f\xb1\xcf\x30\x21\x95\x11\xab\xc0\xd8\x7b\x0c\x7e\xc6\x53\x03\xcd\xd8\x16\x85\xd9\x32\x81\x9c\xa9\xfc\x42\xfa\xa5\x05\x3b\x49\xe6\xaa\x1b\x5e\xa0\x98\x93\xd6\x89\x96\xc6\xad\x96\xa7\x3f\xb7\xa6\x79\x5a\x06\xe0\x8d\xed\xd6\x7b\xae\x68\x46\x52\xb1\xb7\xdc\xef\x53\xd3\x2b\x3e\x59\x86\x7f\xc0\x7a\x92\x29\x1e\x01\xde\xf3\x67\x67\xbd\x6e\x8b\xf3\x98\x2a\x32\x6a\xf2\xe7\x20\x87\x46\x15\xf6\x27\x15\x3f\x84\x98\x90\x76\xa2\x35\x80\xa9\xd1\x38\x83\x35\x08\xcf\x06\xad\x9b\x53\x12\x4c\xa1\xbe\x50\x0b\xce\xaf\x82\x93\x25\x94\x6f\x81\x07\x49\x85\x1c\xca\xac\x8c\x87\x9c\x7f\xf1\x46\x3c\xcf\xe9\xd7\x2d\x8c\x46\x9c\x83\x55\x79\x1d\x6c\xb8\x88\x15\xb6\x92\x53\x1f\xcd\x58\x74\xcd\x59\x67\x57\x5c\x09\x4a\xbb\x85\x51\x69\x8a\xb5\x58\x06\x5d\xcc\xb9\xd3\x3a\x30\xcd\x2b\xdd\x8a\x49\xf1\x85\x6e\x52\x6d\x64\x7b\xe8\x84\x48\xe8\x33\x91\xd1\x67\xa2\x78\x7a\xa6\x76\x4d\xbc\x0c\xa4\x7c\x24\xe8\xa1\xbe\x4d\x9e\x5e\x98\x8b\xd2\x9e\xc4\x7b\x71\x0c\xc3\xaf\xab\x5f\x9a\xb0\x8b\x61\x18\xe9\x9e\xfc\xb2\xc8\x65\x55\x72\x29\xf1\xe4\x35\x80\x94\x7c\x9b\x3f\x9f\xab\x7b\xc7\xaf\x88\xfb\x19\x2b\x01\xf6\x67\x82\xdc\x13\x15\x24\x28\x38\xc0\xfe\xb3\x31\xbf\x7f\x6c\xd6\xbc\xf0\x49\xe1\x57\xd1\x2f\x4d\xd8\x49\x0a\x8f\x3f\x1e\xb4\xde\x6f\x3e\x6a\x6b\x9b\x0f\xc0\xf3\x4a\xec\x95\x5a\x6d\x7d\xc6\x3b\xad\x8a\xe5\xa5\xdf\xe9\x7c\x5a\xca\x2f\xa3\x5f\x9a\xb0\xf3\x56\xba\x5c\xfa\x85\x29\xa8\x94\x89\xbd\xd9\xe1\x6d\x87\xb6\xa9\x33\xe3\xdd\x5e\x88\x8f\xcf\xbf\x5b\x39\x5c\x98\xd0\x5d\xbf\x34\x61\xf7\xa6\xfc\x08\x53\x48\xec\xe7\x38\x23\x3b\x04\x3e\x39\xc6\x7a\x29\x4c\x90\x6d\x60\x0c\x64\x1c\xb1\x5f\xca\x9c\x1f\xa5\x4c\x7d\x0f\x36\xef\xa7\xc2\x85\xf4\x4b\x0b\x76\x92\x72\xd6\x7c\x67\x18\x5c\x6e\xb9\x04\xa8\x6a\xc9\x95\x12\xbc\xd0\x02\xed\xdc\x6a\x54\x63\x85\xf0\x8d\x2a\x4c\x90\xae\xc4\xbc\xf7\x26\x5f\x9c\xaf\x99\x09\x52\xba\xa0\xc3\x75\xa4\x7c\xd1\x84\xbd\xc7\xfb\x70\x2e\x88\xf3\x43\xfc\x1d\x46\x0b\x87\x9f\x58\x5d\xa2\xd2\xf4\x80\x45\x89\x3e\xf8\xd9\xb9\xad\xf7\xe9\xc7\xd2\xe9\x88\xda\x9f\x53\x87\xda\x31\x88\x04\x79\xe3\x5e\xcc\x7a\xd0\x28\xfb\x46\x01\x89\x1c\xdf\xc0\x41\x29\x53\x68\xdd\x8b\x59\x96\x4b\x47\x60\x50\xa0\xdd\x38\x10\x70\xa8\x66\x82\x7c\x27\x5a\xc1\xb4\x05\xc6\x85\x55\x65\x8f\x59\xd8\x13\x2e\x4b\xee\x2e\x2d\xd8\x37\xdf\x0a\xf2\xf9\xd7\xdc\xb1\x1e\xae\xd9\xf1\x07\x94\x9a\x01\x15\xa7\xa2\x49\x33\x3b\x5d\xab\xeb\x83\x5a\x86\x09\xe9\x03\xe0\x18\x32\x9e\x8c\x29\x91\x6c\xfd\x40\x54\x80\x2c\xa6\xa3\x11\xb6\x49\xdd\x9e\x3f\xd3\x69\xdf\x3c\x9a\x65\x42\x6a\x1c\xc8\x97\x48\xc8\x2e\x31\xcf\xcf\x03\x2c\x3c\x40\x3d\x35\x46\x83\xa2\x39\xde\x38\x79\x73\x90\xc3\xa8\x52\xde\x18\xae\x30\x39\x30\x7b\x38\xc6\x48\xb6\xb5\x08\xa5\xea\x86\xed\x3a\x2c\x26\xb1\x06\x50\xbd\x41\x1b\xcc\x37\xe5\x79\xef\x41\x96\x54\x42\x39\x34\x17\x86\x77\x1b\x41\xde\xc6\xde\xf9\x60\x5a\xae\x9d\x90\x70\x93\xc7\xee\xd3\x35\x8c\xca\xe6\x9c\x01\x0b\x87\x46\xc2\xb1\x96\x8f\x62\x2e\x6b\x8b\x5a\x0f\x05\xdf\xac\xd1\x87\xa1\xf2\x78\x4e\xb7\x3b\xb8\x99\x64\x06\xfe\x2d\x73\xbd\x5a\x66\x45\xa4\x4f\xb4\x12\x99\x9a\x96\xc8\xf6\x34\xbb\xff\x8b\x07\xae\x9c\x4c\xea\x03\xdc\x69\xd1\x40\x26\x49\x31\x2c\x6a\x0c\x6f\xbb\x7a\x77\x5a\xf3\xa6\x34\x81\xfa\x2d\xa3\x79\x5b\x84\x05\xc9\x99\xca\x2f\xa4\x5f\x9a\xb0\x7b\x1b\x4c\xa8\x03\x52\x71\x5a\x09\x8b\xd3\xe2\x96\xa7\xed\x39\x73\x5f\x75\x4a\x58\x36\x26\x38\x14\x6c\xd7\xd4\x0d\xff\x35\x67\x64\xec\x11\x9e\x4c\x09\x04\xb2\x8c\x1b\x90\x1d\x26\x90\x93\xa3\x06\x1c\xec\x94\xd4\x9c\x58\x66\x4a\x4c\xa7\x7a\x62\xf5\xba\xd4\xa1\xac\x5a\x6d\xa0\xa3\x3a\x27\x61\x32\x66\x42\xaa\x27\x52\x24\xa4\x5c\x24\xa4\x5d\x16\x78\xf7\x48\xe3\x53\x07\x8e\x13\x5b\xaa\x9c\xc1\xde\x35\x31\x3a\x2c\x60\x94\x19\xb7\x70\x82\x28\x16\x6f\x0d\x87\xfa\xcf\x95\x45\x9f\x71\x8e\x3b\xf5\x08\x99\x27\xf1\xdc\xf3\x46\xca\x05\x0e\x3e\x3f\xc7\xfc\x78\x34\xf1\x9c\x5f\x77\x90\x37\x61\xb7\x69\x74\x71\x9d\x52\xe4\xab\x10\x45\x9d\x27\xf9\x55\xa2\xa9\xb3\x8c\x36\xed\x0d\x7d\x9d\xae\xcf\xce\xc0\xfc\xc1\x3c\x32\x21\x53\x0c\x58\x1a\xc4\xbd\xab\x72\x7e\xc5\x9b\xe5\x37\x5f\x88\x93\xf2\x67\x87\x45\x24\x5d\x76\xad\x22\x52\x4f\x00\xe7\x6b\x34\x9c\x9f\x25\x5d\x82\x5f\x27\x2e\xef\x79\x92\x92\xbe\x2d\x05\xec\xed\xca\xcf\xc2\xd5\x18\xb7\xe4\x06\x8e\x1d\x73\x8c\xe0\xb5\x98\x9c\x8d\xf4\x55\xf5\x5b\x6a\x76\x6e\xa9\x11\x04\xa8\x30\x1f\x4a\x16\x31\x24\x4c\x20\xaa\xf4\x88\xd1\x05\x3c\x16\xcf\x9d\xf9\x58\xc1\x08\x28\x72\x96\xe7\x8e\x3b\x20\x18\x35\x42\xeb\xfb\x5d\x28\x1d\x87\xc4\x9c\xc2\x73\x3a\x97\xb2\x9f\x2c\x6e\xc5\x78\x4d\x26\xc9\x31\x80\xb7\x7a\x56\xbf\x6d\x71\x34\xf2\x19\xa7\xe4\xc0\x8d\xca\x43\x26\x77\xe2\xa3\x8f\x4c\x70\x80\x50\x64\x22\x07\x28\x05\xce\x12\xfb\x6b\xbb\x06\xfb\xf1\xd8\x45\x99\xfc\xc0\x45\x92\xcc\x25\x50\x32\x76\x91\x29\xab\x6e\x82\xbe\x94\x6e\x69\x97\xb2\xc3\xaa\x8f\xae\x12\x77\xcc\x30\x21\x75\x21\x76\xe1\x3e\xd1\x3d\x33\x41\x6a\x09\x99\x09\x24\x5b\xf9\x0a\x1d\x88\x6b\x9a\x62\x97\xe3\xaf\x7e\xda\xc4\x48\xea\x3e\xb5\x5d\x44\x0c\xcc\xd3\x3e\x84\xbf\xac\x44\xfb\x74\xa8\xba\xc3\x49\x0b\xc7\x40\x54\xdf\xd9\xc2\xb1\x94\x80\x4f\x8e\x75\x78\xd2\x43\xfe\xb9\x0c\xc1\x7a\xba\xe0\x1e\x1a\xad\x80\xe1\xe3\x01\x40\x5c\xd8\x8b\x98\x40\x1c\x71\x72\xad\xe7\x99\xc5\x65\x99\xca\x67\xfb\xd5\xa0\x91\xf7\x1b\x6d\x35\x7c\xe4\x4e\xd0\x92\xb9\x1d\xe5\xa9\x85\xd1\x15\x34\x0a\x63\x8c\xea\x70\xee\x81\xe7\x1a\x0a\xb5\x1a\x11\x90\x7a\x14\x01\x3e\x3a\xb0\xaa\x29\xe7\x3c\x07\xc1\xb1\x1b\x6d\x0e\xf9\xd0\x92\x5a\x12\x95\x73\xe6\x33\xb4\x4f\x73\x89\xd0\x12\xfd\x72\xa1\xb7\x4c\xc4\x17\x80\x1c\xd0\x1c\xac\xc0\xf7\x6d\x0e\xef\xb8\xee\x3b\x31\x29\xa6\xbb\x29\x19\x3d\x23\xce\x7d\x30\x21\xdb\x07\x94\x10\xe2\x54\x4f\x98\xee\xe9\xfc\x30\xd1\xcc\x16\xdf\x9b\x40\xa5\x5b\x3d\x2d\xca\xb8\xce\x2f\xe6\xb6\x69\x70\x35\x85\x09\xf2\x57\x00\x7c\x25\x50\x08\x1c\xdf\x7c\x15\x55\x26\xe7\x62\x37\x77\x87\xb7\xd4\x0c\x35\xe5\x71\xee\x77\x0c\x43\x97\xe0\x7e\x3d\x16\x17\x7a\xeb\x97\x26\xec\xde\x86\xa9\xb9\x2d\x60\x96\x89\x69\xb0\xbe\xd2\x3e\xed\xb8\x43\x9f\x93\x0b\x70\x9f\xa7\x0b\x93\x6e\xc4\x6a\x80\xff\xd6\x87\x03\x97\xf7\xaf\x63\x02\xb9\x52\xf9\x43\x49\x54\x56\x6f\x78\xd5\x31\x4e\xc1\x06\x18\xb5\xc6\x81\xd0\x1c\x39\x86\x45\x20\x3c\x91\x9c\x6c\x7d\x1c\xc6\x5a\xb8\x13\x4b\xfe\x08\x3a\x36\xbf\x95\xba\xc4\x48\x3a\x19\x7e\x78\xaf\x94\x00\x40\x0e\xe8\x98\x86\x3a\x24\x2e\x3e\x1d\x95\x42\x5d\x12\x5a\x56\xa7\xf4\x8c\x90\xb3\x26\xd5\x12\x51\xa5\x7b\x8c\x52\x9c\xf3\xc3\x36\xd0\xda\x27\x68\xc1\x9a\x1a\xc0\x1a\x4d\x73\xa6\xb1\x10\xb6\x9e\x30\x1a\x14\x34\x8c\xae\xc6\x49\x5a\x7d\x9a\x18\xe5\xb5\xda\x0b\x5b\xf3\xfa\x85\x89\xe0\xb5\x26\x46\xb7\x37\x41\xba\xe5\x1b\x3f\x5f\x72\xbb\xa5\x61\xd4\x01\xb9\xe5\x1c\x7b\xc2\x17\x79\xac\x06\x4c\x69\x98\xa5\x99\x07\x1e\xe2\x20\x9b\x40\x32\x47\xfc\x44\xb2\x3f\xc5\x4c\xb4\xcc\x50\xf7\x04\x2d\x8e\x33\xb8\x95\x1d\x0e\x55\x09\x46\x45\xbc\xc8\x33\x83\xaf\x8f\x65\x75\x53\x31\xef\x8f\xf0\x2a\x59\xf8\xda\x1e\x07\x94\x9f\xf3\x34\x69\xb8\xbf\x51\x49\x3e\x35\xf7\x12\xc9\x13\x54\x3f\x69\x21\xf2\xa4\x11\x54\x85\x06\xb0\x45\x71\x87\xe7\xf0\x0e\x9c\x5c\x4a\x30\x92\xe7\xc7\x96\xa4\x05\x84\x96\xff\x10\x2b\x68\xd9\x2a\x46\x4d\x6b\xb2\x31\xd9\x6b\x56\x6b\xe5\x01\x3f\x31\xd4\x56\x31\x23\xd9\x88\xfc\x1e\xea\x6d\xdb\x32\x3f\x26\x54\x6e\xe1\xf2\xa3\xc1\x25\xaf\x47\xd4\xaf\xc5\xbd\xb7\x1a\xf0\x72\x02\xb8\x6c\x17\xfc\x48\x65\xf5\x77\x86\x4f\x29\xe6\x46\x72\x68\x5d\x17\x6f\x8d\xeb\xaa\x61\x7a\x9e\x9c\x67\x09\x2d\x13\xd7\x30\xa5\xb9\xfe\x32\x2d\xba\x91\xa6\x29\xd0\x32\xf9\x16\x4f\x69\x54\xe4\xbd\xda\x27\x18\x8b\x14\x91\xdb\x4c\x1b\xba\xa7\x7a\xf0\x0a\xb3\x16\x46\xf2\xe9\x3d\x46\xdd\x54\x1b\x23\xda\xc4\x18\x15\xf2\x55\x9e\x62\x38\xc2\x12\x96\xd9\xb9\x3e\xb1\xcc\x0e\x7f\x86\xc3\x13\xf8\xaf\xc3\x47\xb3\x81\x8e\x41\xbe\xcf\xe4\xc5\x83\x48\x55\x99\x75\xa3\x47\x78\x0d\xa9\xbc\xf8\xf5\x10\x23\xe2\xd0\x53\x8c\x0e\x55\x8c\x9e\x2e\x5d\x94\x73\x0a\xae\x0f\x05\x4e\xc9\x8d\x02\x04\x3d\xa6\x43\x7d\x9e\xf7\x99\xc8\xdd\x00\xeb\x8a\x17\xbb\x77\xc6\x7e\x23\x08\x78\xe0\x8d\xe4\xa9\xe9\x46\xa2\xf3\x82\x51\x24\xb3\x30\x1b\xcf\x4f\xf0\xc6\x61\x0a\x81\x99\x0a\xb9\x1b\xdf\xc7\x92\x65\xe4\xf8\xac\x3e\x68\xd3\x86\xd8\x74\x5a\xcc\x2f\x63\x8a\x5d\x6c\x64\x97\xf2\x67\x07\x70\x21\xe9\xb2\x6b\xc1\xde\x57\x59\xb6\x7f\x45\x95\x65\xb7\xcc\x05\xa3\x84\xb6\x32\x4b\x22\x6d\xe5\x91\xdd\x75\x9d\x61\x97\x1d\x4d\x82\x6e\xfa\x4a\x4c\x4d\x01\xed\xcf\x28\xf8\xb9\x7e\x7f\x7c\x00\x97\x1d\xdc\xb5\x60\xb7\xd5\xef\xaf\xa2\xdf\x67\x69\xcc\x51\xaf\x1f\x9c\x72\x34\x74\xa8\xd9\x76\x7b\x7c\xe6\xe2\x02\xbd\xa7\xdb\x20\x97\xe2\x65\x5c\xa8\x7f\x89\x6f\x91\xac\xfc\x74\x50\x9c\xcc\x04\xc9\xea\xd4\xe0\x61\xb4\xf1\x18\x76\x9c\xa7\xc9\x3a\x85\x05\xb6\x70\x19\x90\xd4\x65\xc2\x9e\x3d\xae\xd7\x30\x82\xd5\xc2\x55\x95\x1c\x95\x74\x6a\x18\x65\x47\xd0\x6b\x34\xf0\x8b\xc9\x74\x67\xa8\x43\x23\x75\x40\xa4\x18\x0d\xcf\xde\x6b\x05\x8c\xe4\x6c\xc5\xb7\x57\x37\xc6\x18\xf5\xd2\xa7\xfe\xdb\x0f\xa9\x75\xa3\xe0\xdb\x0b\x23\x54\x49\x42\xbb\x3d\x20\xcd\x71\x0e\x58\x03\x1d\x23\x60\xb2\x24\x9e\xb9\x34\x1b\xe2\xf1\x59\x0e\xdd\x8b\x17\xdf\xe2\x2e\xb3\x82\xa4\xdf\x6e\xcd\x9e\x2e\x35\xb0\x05\xbf\xf9\xde\x9a\x7d\x23\x09\x3e\xcc\x7c\x70\x2c\x0c\x47\x4f\x3d\x72\xc7\xdf\x50\x5d\x7f\x4c\xbb\xd4\x76\x68\xe0\xc0\x23\xe1\xd0\x32\x9a\xe3\x68\xaa\x79\x54\x60\x42\x26\x23\xaa\x48\xc8\x74\x3d\x2b\x69\xce\x47\x57\x81\x42\x4e\x91\x52\x4c\x20\xe7\xb8\xd1\x45\x3d\xb7\x8a\x51\xff\x6c\x7c\x8a\xb2\x0f\x4d\x17\xa5\xbb\x03\x17\x29\x67\x2d\x17\x3d\xdd\xaa\x2e\x93\x49\xfc\xbe\x23\x3a\x70\xed\xc0\xe8\x09\x37\xcb\xc9\x18\x35\x8f\x1a\x4c\xc8\xf5\xc5\xaa\x77\x9b\x5c\xc4\x47\x30\x81\xb8\x2e\x3f\x33\xac\x56\x61\x57\x51\x4c\x97\x49\x31\xf5\xdb\xb1\x6e\xbb\x43\xda\xd3\xfb\xec\xb8\x1a\xca\x31\xe8\xa8\xc4\x85\x99\x2e\xf0\x48\xd2\x6c\x28\x5d\xc6\x97\xe8\x0d\x36\xcf\xbd\x10\x1e\xb4\x3e\xaa\xc2\x6e\x25\xa1\x46\xae\x14\x30\x2a\xf7\x31\xb2\xa0\x3f\xe7\xa1\x35\xde\xc1\xf4\xeb\x06\x90\x3b\x0a\x0b\xa1\x18\x80\x4c\xb4\xce\xf9\x0a\xa9\x51\x8c\xf2\xd0\xb7\x7a\x86\x51\x1e\x48\xd9\xc9\x00\xa3\x4a\xd1\x67\x4e\x9b\x3d\x8c\xca\xe7\xb5\x0d\x92\x65\xbc\x60\x11\x6e\x46\xd0\xe1\x25\x70\xeb\x9c\xce\x85\x11\x38\x66\xde\x04\x17\xe6\x68\x30\xd7\x0c\x02\x52\x38\xc2\xe2\x23\x3a\x95\x40\x5e\xe1\x0c\x85\x37\x96\x1b\x37\xee\xe1\x03\xee\x91\xd3\x12\x46\x0b\x7e\x65\x7e\xdf\xb9\x67\xbb\x49\x33\x47\xf4\x54\xbc\x64\x1f\x9e\xd7\xb2\xc7\x18\x35\xc9\x64\xe3\xf5\xfa\xbf\xf6\x9d\x16\x0d\x04\xde\x27\x72\x98\xa0\x40\x3f\x3d\x7f\x4e\x45\xc6\x8c\xfb\x71\x2a\x2e\x37\x07\x10\x7c\x3e\xc4\x4c\x89\x59\x22\x4e\x68\x5f\xbd\xa5\x4e\xd7\xc7\x0b\x84\x04\xa1\x23\x4c\xa0\x23\x60\x4b\xdb\x38\x96\x1c\xe2\x27\x78\x25\xee\xe6\x51\xaf\x9c\xc0\x45\x8d\x87\x16\xec\xb6\x9c\xd2\x32\x41\x23\xd9\xf8\xd4\xda\x54\xbd\x0d\x6c\x3d\xbe\x49\xd9\x33\x2f\xa3\xb3\x93\x06\x3a\x3b\x01\xc9\x50\x19\x72\x2b\x8e\xeb\x5b\x98\x13\xbe\xf9\x44\x0e\x53\xa8\x49\x4f\xd6\x10\x7a\x92\xfb\xd3\x93\xa6\xa8\x72\x1f\x19\xa4\xbb\x80\x83\xee\xab\x2e\x22\x37\xa3\x40\x33\xa1\x9d\x90\x40\x6b\xc3\x15\x0b\x77\x2d\xcc\x24\x25\x22\x2d\x97\xb6\xdb\xbf\x0f\x9e\x2a\xcd\x84\xd4\x29\x37\x6f\x7b\x16\x28\x72\xd0\x71\x4e\xc5\x2e\x93\xa5\xf8\xa2\x73\x6e\xfb\xd4\xd4\xdc\xc4\x2f\x49\x29\x29\x26\xa4\xbe\x8a\x1d\xef\xe1\x53\xc7\xa1\x0b\xf3\x2d\x1c\x94\xca\x07\xd5\xb6\xd8\x61\x24\x7e\xa1\x5b\x6a\x6a\xa3\xce\x94\x27\x8f\x17\xf3\x94\x93\x44\x2d\xee\xcd\x13\xc5\x3c\xad\xb4\x88\x27\xfd\x43\x3c\x97\x1e\x7e\xf1\x41\x7e\x00\xbb\xdf\x60\x21\xdf\x9f\x60\x34\xaa\xbd\x8a\x55\x26\x73\x85\x51\x66\x5c\xe2\xde\xec\x52\x38\x93\x36\x1d\x9a\xd6\x88\xda\xc3\xee\x0c\x01\xb9\x2d\xde\xaf\xe6\xab\xbc\x8c\xd4\x76\x68\xc0\x65\x07\x76\x1e\x76\xbf\xc1\x14\xbe\xa6\xd4\x46\x62\xaa\xaa\x13\x97\xf6\xe8\x75\xc5\xed\x0f\x5c\x9b\xd7\x0a\xf6\xe6\x6d\x8a\xb5\x65\x42\xba\x21\x0e\xbc\x39\x4c\xb2\xb6\xbe\x83\x56\x8a\x09\x52\xa1\xc3\x3b\x91\x0c\x35\x61\xdf\x4b\xb5\xca\xc0\x23\x9c\xa2\xec\xd7\x91\x8b\xc8\xd0\x22\x2e\xcb\x90\xf8\xcd\xd5\x5b\xc3\xd7\x92\x85\x2e\x86\xf0\x2f\x05\xee\x60\x3d\xb1\x1b\x38\x1b\x22\x21\xdb\x9d\x2d\xf5\x2b\xbe\x13\x22\x74\xee\x94\xda\x67\x62\x17\xa5\x47\xa6\x8b\xf2\x66\x19\x91\x53\xdc\xf5\x1a\xb5\xfc\xdc\xc6\x54\x9f\x41\xbe\x8b\xb2\x5f\xc7\x9c\xf9\x0f\x11\x78\x95\xaa\x7e\xe0\x51\xb1\xde\x08\x91\x15\x77\xa7\xca\x8c\x44\x9a\x44\x56\xd1\x73\xbe\x46\xb1\x8a\xe2\xd7\xc3\x11\x77\x89\xbc\x3f\x81\xfd\x19\x67\x9d\x80\xa7\x4a\x05\xae\x33\xca\x39\x77\xe5\xae\x06\x8a\xd1\x2e\x30\xad\x2e\x4e\x6a\xf8\xd4\x79\x0b\x12\x3a\x2b\x78\xea\x6c\x32\x37\x57\x94\x59\xcc\x76\x5f\x5b\xc3\x77\x12\x02\x68\xd8\x7a\x23\x0d\x5f\x2a\x13\x9f\xe1\x0e\xd5\x02\xd7\x44\x8f\x10\x01\x47\xc5\x04\x2a\x03\x55\xf6\xd3\xbd\x09\xea\xeb\xb8\x96\x92\x33\x95\x5f\x57\xbf\xb4\xe4\x37\xf3\xc2\xf8\x55\x90\x18\x92\x8b\xf7\x98\xe5\x52\x91\xda\xb0\x4a\xbb\x74\x38\xf4\xa3\xaa\xaa\x31\x96\xa2\x79\xd4\xc8\x33\x21\xc3\x23\xda\xbc\xcf\x50\xf1\xee\x23\x2f\xce\xa7\xdc\xc1\xa9\x87\x1b\x15\xa3\xfe\xa8\x02\xed\x6c\xb5\x92\xcc\x45\x50\xa5\xa6\xd1\xa3\x61\x35\x0e\xae\xc9\x0f\x2e\x95\x8b\x25\x00\x64\x02\xe9\x1e\x1f\xf1\x0a\x4c\x48\x05\xf6\x2b\x9d\x6a\x61\xd4\x6f\x15\x30\x7a\x68\x61\x74\x75\xe2\xeb\x97\x12\x7c\x58\xcd\x50\xad\xa1\x41\x27\x1d\x01\x35\x71\xb8\x31\x8e\x80\x9e\x17\x0c\x3c\x91\x44\x65\x15\xf6\x5b\x2f\x98\x8d\xf3\x82\xf9\x68\x77\x5a\x98\x9f\x45\x8e\xc5\x12\xd4\xac\x07\xab\xeb\x8e\x4d\xdd\x99\xc5\x65\xa6\xaa\x62\xf5\xf5\xb8\x4c\x1f\x3d\x3b\x55\x9e\x81\xa5\x52\xfd\xcd\x32\xb0\xbc\x58\xde\x4d\xa5\x92\xf3\x35\x34\xda\xc6\x4c\xa1\x20\xf5\x20\x96\x97\x9f\xae\xe5\xf0\x13\x97\xec\x4c\xb8\xf0\x20\xff\xf5\x21\x0c\xf4\x7f\x9f\x29\xeb\xf7\x30\x3a\x1d\x6e\xf4\xac\xcd\x20\xaa\x8a\x5e\x4b\x92\xbc\xd3\xfe\x70\x56\xa0\xd5\x85\xe8\xfe\x6c\x8a\xa3\x29\x91\x4e\x52\x86\x70\xd9\x41\xb5\x02\xbb\x2d\xb8\xad\x26\xd2\xc5\xf4\x2a\xa7\x36\xed\xcd\xc9\x8f\x30\x08\xc2\xc3\x17\xe5\x47\x50\x16\x6e\x5e\x40\xf8\x80\x07\xc8\x59\x03\x2f\x40\xee\xe4\x15\xd2\x69\x44\x21\xdf\x13\x96\x24\xae\x27\x2f\xbf\xc3\xdc\x24\xb2\x68\x9c\x59\xa6\x63\x50\x93\x7a\xd0\x70\x16\x13\x58\x03\xcb\x4f\x23\xef\x9b\x7f\x6e\xb9\xcc\x7a\x2b\x4e\x18\x80\x26\x8c\x40\x69\x26\x48\x2e\xe5\xdd\x5a\x65\x8c\x51\xdf\x35\x2b\x62\x17\x65\x2f\xe8\xa4\x25\x08\x35\xef\x4d\x97\x49\x31\x49\xf4\x6c\x64\x99\x9d\x11\xf5\x25\xe7\x93\x3a\xe7\x45\x11\xd7\x1f\x66\xcd\xc0\x9f\x24\x94\x41\x79\xfe\x68\xb7\x9f\x35\x51\x2e\xd3\xba\x40\xa4\xd7\x18\xbb\x48\x3a\x35\x55\x8c\xd2\x05\xf8\x99\x31\xf7\xf2\x73\x6b\xe8\x50\x93\x8e\xa6\x93\x85\x28\x3a\x70\xa2\x3f\x91\x88\xc5\x73\x3b\x87\xab\xe8\x97\x16\xec\x7e\xe9\x3c\x2c\xe1\x0b\x1d\x8d\x47\x3d\xcb\xd6\xe8\x8c\x37\xda\x13\xcf\x97\x49\xbf\x32\x1f\x67\xc2\x0b\x85\x8b\xe8\x97\x56\x2f\x0c\x4e\x5c\xcb\x0b\x95\xa9\xf5\x4e\x50\x88\xc6\xe7\x3d\xee\x87\x13\x25\xea\xa3\x66\xc7\xb2\x4c\x76\x11\x8b\xd0\xca\x31\x21\x6d\x89\x15\x4f\x6b\xee\x07\x61\x70\xa9\xce\x80\xa3\xf5\xbe\x59\x17\x2b\x28\x73\x97\x73\x99\x12\xf3\xe6\xac\xd3\xee\x2d\xed\x19\x66\x64\x56\x0d\x4d\x28\x98\x09\x39\x37\x30\xac\x06\x66\x94\xf9\x31\xa5\xca\x0a\xf8\x53\xca\x1f\x5c\xc1\xa5\x49\xc1\xaa\xf2\xfd\xfd\x57\xba\xc1\xa4\xce\x43\xcc\x9b\x40\xe5\x78\x8e\x05\x96\x8a\xd9\x54\xea\xb4\x4f\xed\x2e\x35\xb5\x19\xd0\x65\x8b\x17\xcb\x40\x97\x07\x45\xd0\x99\xe7\xfb\xb9\x58\x27\x14\x85\x5f\x99\x1c\xb3\xc4\xd7\x75\xcb\xcf\xf0\x11\xc3\xe4\xe8\xa4\xc4\xff\x99\x90\xb5\x79\x58\x73\x88\xd3\x7d\xfd\xa2\x9b\x08\x8c\x4d\x14\xff\xe0\x47\x3c\x9c\x0f\x63\x73\x99\xd6\x95\x78\x8e\x48\x9f\x8c\x5d\x94\x2e\x56\x31\xfa\x0a\x02\x72\xb7\x16\xd8\x8d\xbd\x56\xdc\xd0\x9c\x06\x49\x5e\x3a\xc2\x2e\x3a\x85\xc3\x5f\x7d\x03\x36\x8f\xd8\x0c\xcb\xe4\xcf\x6e\x48\x3c\xc2\x4d\xfa\xca\xfd\x0d\x93\xe4\x34\xe6\x48\x51\xb7\x75\xcd\xd4\xbb\x56\x6f\x14\x32\x98\x09\x7d\x9b\x0e\xbf\xf9\x15\xf5\x6d\xbe\xba\x4d\xf7\x90\xa5\xbe\x8d\xe4\x5e\x95\xc1\x94\x53\x91\xb9\xa7\x41\x8d\x81\xee\x05\x13\x1f\x27\x03\x8a\x23\x3d\xd8\x32\x1b\x13\x88\xf1\x98\xc5\xe8\x8e\xab\xad\x47\xd6\x33\x01\xc5\xf3\x5b\xdc\x94\x5e\x08\xc3\x30\x3d\x5f\xf3\x64\x6b\xa5\xb0\xc9\x42\xc1\xf7\xde\x2a\x68\x5e\xc3\xbd\x27\x53\xbd\x72\x99\x82\x57\x64\x3d\xa3\x44\x14\xa5\x41\x87\xb7\xdd\xa0\x2e\x7d\x52\x66\x2a\x88\xed\x15\xc2\xf3\xa0\xb7\x7e\x69\xc2\xee\xcd\x56\x6a\x58\xfb\x93\xff\x92\xb6\xd1\x33\x86\x06\x6b\x14\x26\x93\x4c\x49\x2d\xf8\x25\xcb\x24\x99\x22\x33\x01\xd4\x57\xae\xf0\xcb\x90\xbb\x4b\x13\xf6\x6f\x98\x54\x8a\x1b\x18\xa6\xb5\x7c\x12\x5f\x2b\xa1\x22\x50\xae\x85\x3e\x75\x2f\x0e\x21\xcd\x9b\x9e\x0e\x80\x7b\x02\xc4\xcc\x5e\x0d\xfd\xd6\xf6\xad\x0c\x0d\xef\xe5\x72\x1e\x26\x20\x5e\xdc\xef\x43\x1e\xf0\x54\x76\xde\xa7\x1b\x11\x32\x25\xc0\xfb\x52\x6a\xad\x1b\x13\xa4\xb6\x53\x82\xdb\x13\x4d\x56\x31\x22\xb7\x6e\xa5\x21\x1e\xa1\x46\xcb\xf5\xc0\x6a\x58\xc3\xe8\x21\xef\x06\xa1\xce\xf0\xc3\x75\x13\xa3\x41\xad\x80\xd1\x65\xf8\x7a\xa3\xbc\xb7\xcb\xb4\x96\x1d\xb1\x6a\xbf\xb4\xb2\xfe\x7b\xbc\x75\xbf\x35\x5d\x99\x91\x98\x4d\xa2\x71\x6b\xf4\x07\xb7\x49\x47\x8f\x34\x13\x52\x4d\x31\x1f\x64\x3f\xf0\xdc\x3c\xea\x2e\x3f\x46\x0a\x07\xd5\xa1\x98\x67\x99\x5c\x64\x96\x69\x58\xdd\x91\xc5\x80\x4e\x1c\x03\x9d\xc8\x45\xb5\x97\x7c\x5b\xc9\xf9\xf1\xb1\x6f\x57\x8c\x2a\x92\x4c\x56\x50\x61\x72\x36\xf6\x54\x56\x7f\xa6\x4a\xb1\x24\x9e\xfd\x8c\x06\x78\x9e\x4a\xb1\x76\x0b\x17\x1e\x3c\x8d\x61\xf7\x2b\x72\x0d\x3c\xc7\x73\x7b\x69\x26\x7f\x65\xa6\xfd\x7c\x90\x74\x39\xb8\xec\x51\x6a\xb6\x69\x2c\x03\x62\x3c\x3c\x27\x23\x3e\x2e\xe3\xe3\xbf\x98\xd7\x93\xf2\x67\x87\x70\x21\xe9\xb2\x6b\xc1\xfe\x77\x0b\xa7\x88\xab\x03\x2f\x87\x8e\x50\xd3\xed\x49\x37\x2b\xc9\xe7\xb6\x41\xd0\x7d\x14\xeb\x91\x51\x54\xf5\xb9\x6e\x3a\x37\xf5\x4e\x6a\xe9\x64\x3c\x29\xcf\xdb\x0a\xae\x3f\xc8\x0f\x60\x17\x00\x50\xee\x17\x02\xa0\x35\x99\xfe\x22\x57\xab\x18\xef\x7d\xd5\xa3\x9a\xf1\xe0\xd5\x0b\x89\xb4\x16\xbe\xcf\x5c\xb6\x22\x3e\xfc\xa4\xbf\xdc\xb4\xd8\x54\x3f\x3e\x82\xcb\x1a\x4e\x0b\x76\xbf\x22\x02\x5c\x7f\x80\x0c\x9f\x3a\x5e\xbb\x37\xa4\x5c\xb1\xc4\x65\xd9\xa2\xd8\x7c\xd5\xc4\x65\x9e\x29\x8c\x5f\x76\x90\xb7\x60\xb7\x9d\xb6\x95\xa6\x4d\x8a\xe9\x98\xfe\xd1\xbb\xd4\xd1\x6d\xc3\x6c\xbb\x76\x27\xa6\xfd\x8f\xeb\x9a\x24\xf1\x09\x09\xf2\xb1\x98\x9a\xd2\x38\xcd\x42\x8b\xcb\xe7\x33\x63\x82\x44\x3b\xfc\xea\x99\xfe\xf9\xad\x38\x44\xf7\x85\x87\xe3\x6d\x98\xda\xca\xd6\xb1\x98\x84\xfe\x8f\x6e\xeb\x0f\x61\xfa\xb9\xb8\x58\xdb\x5c\x5e\xa8\x7d\x0e\x12\x3d\x01\xb7\xc9\xc5\xdb\xe6\x1b\x67\x4c\x5e\xfc\xa1\x5c\xb4\x36\x65\x6a\xc8\xbd\x57\x56\x81\x4f\x8d\xd3\xa3\xa6\x63\xa8\x5f\xf2\x63\xcb\xd6\x87\x3c\xfb\x9a\x80\x25\x24\x60\xc2\x8b\x98\x35\xcb\x0d\x46\xea\xc0\xd1\x61\x44\x30\xc2\x68\x45\x6f\x28\x79\xe2\x7f\xd9\x51\x0b\x37\x65\x55\xc6\x74\xf9\x8d\x09\x52\x4f\x6b\x62\x44\xcf\x5a\x5e\x96\xb1\x0a\x4c\xdb\x83\x8a\x51\x03\x84\x24\xb7\x8a\x51\xbd\x1a\x3f\x02\x8d\xf0\x48\x3a\x0d\x2f\x1b\xf8\x7a\xb9\x8c\x83\x7c\x03\xb3\x4a\x24\x86\x99\x0c\xe4\x23\x3c\x55\xc5\x45\xfe\x1a\x7e\x8d\x02\xfc\xa2\xdc\x07\xd1\xba\x9a\x38\x0b\xf3\x5b\x52\x83\x62\xae\xbc\x07\x0f\x38\x54\x30\x46\x9d\x8a\x87\x52\x86\xc4\x73\x2a\xd5\x5a\x9e\xec\x37\xd0\xbc\x3d\x9c\x07\xc1\x6f\xd6\xf7\x58\x20\x96\xc7\xe8\xce\x59\xe2\x72\xd1\x7a\x79\x35\xb1\x9f\x00\xc1\x25\xfa\xdd\x1f\xf5\xe6\x8d\x98\x60\xf1\x67\x5d\x20\xea\xb2\xbe\xc7\xad\x7c\x34\x04\xff\x9b\x7b\xc8\x05\xc9\x2f\x02\xfc\x59\xd0\xed\xbe\xeb\x5b\x9b\xf3\xf5\x06\xca\x97\x1a\x4c\xb9\x13\x0d\xa4\xf8\x05\x26\xdf\xc3\x71\x34\xbe\x31\x81\x14\xcc\x8b\xb2\x78\x80\x48\xa5\xd1\xe6\xfb\xb9\x52\xf6\xb2\x65\xe8\x7f\x66\xec\xb6\x84\xfd\xaf\x5c\xc2\x3e\xed\x3b\x88\x07\xe0\x51\xa4\x26\xb5\x3d\xef\x16\x60\x2d\x9a\xe5\x06\x6a\x96\xeb\x0d\x46\x88\x98\xf7\x18\x0b\x81\xbc\x48\xe7\xf4\x3a\x44\x9f\x5c\x3a\xb4\x29\x5a\xa8\x75\x96\x87\x1d\xe9\xe5\x4f\xc2\x6c\xf5\x1b\x41\xc0\xb6\x14\x61\x13\xee\xb4\x90\x22\xa4\x94\x24\x45\x28\xd2\x81\x7e\x7d\xa5\xdb\x9a\xee\x2f\x7b\xce\x55\x33\x32\x12\x15\x8f\x9b\x8e\x32\x96\x6a\x3c\xec\xbb\x6c\x79\x39\xd7\x11\xd1\xee\x6e\x30\x4b\xe1\xe4\xf5\xbe\x52\xdb\xf2\x2e\x15\x42\x8f\x2d\x2a\x11\xe4\xbc\x03\x45\x91\xdc\xba\xf9\x28\x5e\x22\xa9\xd9\xb1\x60\xbf\x85\x93\x4d\x5e\xbd\x1b\x02\x27\x4a\x2e\x49\x1a\xaa\x54\xd3\x0d\x9b\xb2\xaf\x3e\x6d\xf0\x6a\x67\xc7\x69\x44\x26\x46\x23\x5e\xb2\xde\x5f\x24\x84\xfa\x21\xdf\xef\xb1\x71\x94\xd0\xda\x0a\xa1\x5b\x21\xf4\x8d\x85\xd0\x2d\x2a\xdd\xb8\x3b\x2d\x16\x42\x33\x49\x16\xe1\x42\x1f\x75\xef\xe8\x83\xd1\x0d\x19\x6d\x40\xa6\x07\xd5\x06\x23\xc3\x17\xa9\xef\xe6\x6c\xdc\xc9\xb1\xd9\x7f\x44\xfd\x1b\xfa\x18\x79\x6b\x91\x4a\x01\xa3\xa2\xe9\x37\xe4\x9b\x16\x46\x45\x82\xd1\xa1\xa7\xc7\x3e\xc5\x08\x0e\x93\x72\x05\xa3\x0a\xfc\x82\x22\xf6\x9d\x0d\xa2\x00\xe7\xa9\x46\xc2\x21\x21\x56\x4b\x79\xa2\x15\xbd\x96\x89\x63\x73\x47\xcc\xbd\xca\x4a\x23\x5e\xe3\x6e\x8c\x48\xc9\x59\xac\x5b\xae\x73\x7b\x7d\xa0\x5b\x76\xc7\xa0\x4c\xc0\x12\x93\x30\xc3\x8c\xc9\x38\xd1\xcb\xa1\x66\x4f\x1f\xf1\xdc\x01\x02\x56\x90\x80\x65\xe0\x31\x99\x7c\x26\x5a\x9e\xd2\x01\x49\x53\xb3\x2d\xaf\xa0\x84\x8d\x36\x26\x48\xdd\xe3\xc7\x2c\x50\x61\xa9\x9d\xe7\xfb\x28\xd8\x74\x22\x9f\xda\x4d\x61\x76\x8b\x2f\x8b\xa2\x1a\x64\x56\xba\xaf\xc4\x62\xd1\xa5\x7e\x6d\x61\x61\x2a\xde\x48\x44\xaf\x3f\xd7\x39\x31\x6a\xe9\xce\xf7\xb5\x97\xe4\xd4\x4c\x84\xde\xcf\x3c\xc5\x24\xe2\x19\x92\xdd\xa1\x63\xd3\x9e\x41\xbf\xd4\x47\x9a\xa9\x8f\x58\xbe\x5c\x6f\xa0\x7c\xb9\xd4\x60\x91\xe1\x78\x93\x36\x26\x48\x39\xb9\xd7\x42\x4f\x6a\x0b\x11\x7c\xa7\x61\x34\x9a\xe1\x5c\xc1\xe7\x38\x03\x53\x9b\x04\xeb\x49\x67\x22\xaf\x31\x0d\xd6\xcb\x34\x22\x90\x59\xd0\x89\x67\x4b\x08\x91\x26\x30\x20\x61\x23\xcc\xa8\xf0\xb2\x27\x5b\x09\xdf\x47\xc7\x57\x40\xf8\xd1\xc9\xe8\x50\x8c\xe5\xd9\x08\x06\xe6\x7d\x87\x2d\x1a\xcb\x14\xdf\xcf\x29\x84\xb0\xbc\xa6\xf7\xa8\xa1\xe9\x2c\x5f\x04\x18\xe3\xbe\xd2\x39\x17\x09\xd4\xdd\x48\x18\x73\x36\x00\xc6\x96\x19\xb5\x0c\x88\x4d\xc3\x5a\xb8\xa4\xc3\x5b\x84\x7d\xde\x8e\xa5\xda\x42\xd8\x4f\x41\x58\xe0\x48\x1d\x42\x58\xc1\x36\x86\x6d\x6a\xea\xcb\x50\xb1\x97\x10\x92\x43\x32\x0f\x5d\x33\x69\x12\xda\x0b\xb6\xd5\xd5\xcd\xeb\x43\xa3\xd7\xdb\x02\xfc\x2f\x49\x54\xb7\x10\xff\xf6\x10\xef\x57\x32\x0c\xa1\xac\xe8\xda\xb6\xb1\x14\xbc\xbf\x3b\x80\x95\xb3\x01\x0c\xbd\x2f\x84\x4d\x2f\xca\x39\xbd\x1f\xad\xe5\x68\xaa\x77\xc5\x48\x9d\xb7\x44\x2b\x9a\xe4\x25\x46\x44\xf0\x14\x29\x0a\x97\xbd\x07\xff\x88\x54\x8b\xef\xbd\x80\x37\x6b\xd8\x42\x50\xcb\x28\xe9\x04\xa4\x95\xa8\xfd\x68\x98\x8b\x48\xd9\xd2\x54\x24\x54\x2f\x84\x17\x2f\xbb\x6a\x8f\xb2\xcf\x38\xab\xa4\xd0\x67\x9c\x53\x52\x4c\xc8\x1e\x23\x21\x77\x3c\x0b\x8e\xf9\x7d\xba\x47\xf3\xef\xd3\xa9\x0f\xbc\x25\xdc\x4b\xf9\x94\xc0\x38\xce\x63\x74\x80\x31\x1a\x5f\x06\xe9\x96\xa7\x91\x36\x93\xd3\xd9\xc4\x53\x1d\x5a\x6d\x6a\x3b\x1b\x8f\x5c\x5e\x80\x64\xae\x6e\x42\x17\x41\xf8\xf5\xd3\x9a\xae\x30\xcb\xdf\x16\x11\x6d\x11\xd1\xfb\x22\x22\x89\x4c\x20\x8b\x8a\x65\x6b\xd7\x87\xd6\xa3\x4f\xf6\x3f\x13\x2c\xf3\xa0\x07\xd9\x0f\x7d\x00\x20\xa5\x2e\x12\xda\x6e\x10\xf8\x10\xe8\x88\xdf\x6a\x63\x36\x2d\xf2\x10\x7a\xd7\x8b\x95\x0f\x93\xb6\xcf\x6e\xf0\x40\xca\xfb\xaa\x8b\x9a\x15\x17\x56\x72\xac\xc1\x4f\x41\xe3\xd4\x74\x01\x22\x66\x35\x2e\xda\x73\x4f\xf1\xaa\xc6\xc4\xc2\x8b\x5a\xe1\x8d\x49\x9e\x57\x90\xf7\x0f\x2d\x31\x20\xd9\x2d\x3a\xa4\xc0\xed\xd5\x2a\x0f\x08\x7d\xb6\x75\x93\x5f\xae\xdf\x2b\x8e\xbd\x19\xbf\xe5\xdd\x16\x8d\x65\xb2\x92\x49\xae\x6d\xc3\xd4\xf4\x3e\x35\x97\x25\x3a\xaf\x2b\xc5\x4e\xa3\x73\x46\x70\xe2\xf9\xaa\x7a\xaf\x6d\xb9\xf6\x72\x22\xf6\xbb\x53\xc3\xcd\x50\x14\xaf\xae\xc4\x8a\x78\x93\x67\xb4\x58\x0b\xee\xf1\x32\x2d\xd6\x56\x51\xfc\xf6\x04\x2e\xa8\xe9\x1c\x02\xd9\x99\x6e\x3b\xb7\x2c\xdf\x04\x00\x6b\x2e\x2e\xd1\xcf\x57\xf9\xdd\x82\x55\xfe\x52\x5e\xd8\xaf\x74\x59\x2c\x37\x58\xb1\xdc\x40\x45\x9e\x82\x96\xf0\xaa\x96\x9b\x03\xe8\x4c\x90\xe8\x57\x1d\xfb\x95\x23\x8d\xd3\xa9\x75\x7a\x6e\xab\x18\xa5\x8d\x60\x65\xce\x9a\x81\x34\x7c\x74\xaa\xd5\x39\x2c\xdb\x04\x83\xb8\xc1\x8b\xf9\xbd\x4d\xff\x1b\xe2\x9d\xb0\x19\x7e\x10\x9f\xf6\x3e\x9d\x51\xd5\xb8\x31\xd4\x2f\x65\x3a\x74\x74\x9b\x95\xb9\x51\x3c\x83\x04\x9c\x46\x02\x4e\xb1\xcc\xad\x38\x44\x19\x8c\xd2\x18\xa5\x9e\x71\x81\x78\x53\xd7\x63\x26\x10\xb7\xde\x39\x10\x1f\x11\x19\x2a\x47\xb0\x4f\xd6\x1d\xe2\x76\xf5\xa8\xee\x10\x6f\xdd\xd7\x7c\x1b\x7a\x4f\x0b\x12\x49\x85\x87\xee\x6b\xd3\xfd\x67\x8c\x9c\xd3\x5f\x1a\xe4\x97\x1e\x14\x79\x2b\xcd\xeb\x1f\x91\xfc\xc5\x4f\x35\xe7\x56\xb1\xe2\x6d\x24\xcc\x4e\xc4\xe3\x0a\xf8\x85\x17\x3c\xdb\xaa\x6f\x62\xf2\x4e\xbc\x5b\xe4\xc2\x60\xb6\x30\x3a\x20\xbe\xe3\x4a\xd2\x2d\x3e\xf0\x13\x50\xd2\x26\x46\x79\x38\x55\x6b\x4f\x36\xc6\xbc\xd8\xee\x9c\x4c\x35\x33\x5b\x0b\x73\xdb\xcc\x1d\xf1\x7c\x5a\x9c\x55\x87\x32\x19\x73\xb7\x85\x62\xbd\x91\x2e\x96\x1a\x3c\xef\x54\xb1\xd4\x40\xc5\x66\x03\x15\xcf\x1a\x8c\x03\x93\xf7\xe7\x51\x29\x49\x7e\x77\x22\x35\x45\xb2\xd2\x64\x38\xf5\xcb\xeb\xbc\x5e\xe0\x93\x8c\x91\xf1\x88\xd1\xf9\xe3\x6b\x64\xa1\x08\xab\x1e\x70\x1f\xa7\x42\x0b\x6f\xe3\x69\xb6\xf1\x34\xaf\x76\x8b\x4f\x7b\x9f\xca\xe5\x06\x8b\xd5\x27\x58\xae\xdc\xf9\x3a\x61\xeb\xb6\x54\xd8\xb2\x71\x5b\x36\xee\x55\xd9\x38\xbf\xa0\x6d\xc9\x6d\xf7\x0c\x93\x95\xfc\x02\x99\x07\xd5\x06\x2a\x78\x45\xff\xd9\x40\xec\x21\x61\x24\x96\xfc\x68\x80\xa9\xa8\xb1\xc5\x49\x60\x3f\xea\x06\xb2\xd7\x53\x0e\x7e\x36\xd7\x3d\xdc\x8c\xa1\x49\x14\xbe\x8e\xe1\x40\x87\xc3\x99\x15\x38\xdb\xf3\x56\x54\x5c\x88\x1f\xcb\xe5\x03\x75\xb8\x11\x68\xf8\x23\x9f\x55\xde\x9a\xa8\xb1\x1f\x01\x30\xf7\x59\x9d\x7b\x76\x56\x7d\xfe\x08\x26\x57\x1a\x11\x9d\x0d\xc2\x08\x3a\xe9\xf0\x19\x1f\x93\xa3\xa2\xf5\x33\x31\x7e\x96\xa9\x61\xee\x03\x44\x3f\x6d\xd9\xc7\xa3\x73\x94\x47\x09\x8d\xcc\x9c\x86\x93\xf7\x74\x00\x39\x6c\xcd\xd2\x34\x4d\x37\x16\x5c\x67\x96\x45\x66\xbc\x14\x14\x2f\x03\xed\xcf\x2a\x9f\x96\x6e\x4d\xf8\x67\x6f\xf1\xec\xbb\xbf\x8c\x20\x4b\x19\x30\x12\xf0\x0f\xec\x3b\xf3\xbe\xa7\xca\x25\x7e\x0c\x95\x4b\x0d\x54\x6e\x36\x50\xf9\x0c\xce\x23\xc5\xff\xdb\x64\x3e\xdf\x99\xc7\xe7\x2b\x18\x19\x0f\x5b\x3e\x7f\xcb\xe7\x6f\xfe\x2d\x00\x0a\x1d\xf5\xcb\x41\xb5\x21\x60\x76\x50\x6d\xb0\x00\x34\xfd\x83\x84\x7d\xf6\x2a\x12\x7b\x87\x03\xad\xd7\x99\x65\x3b\xd7\x55\xcb\xd6\x87\xed\x11\xe3\xa9\xcd\x28\x8f\x18\xf1\x93\x54\x84\xa3\x09\xe3\x36\xdb\xf6\xc4\xf0\x06\xb5\xe9\x23\x65\x3c\x03\xb8\xea\x0d\xf4\x62\x34\xc3\x81\x32\xe3\xc5\x8d\xb5\xc9\xc7\x51\xd8\x67\xa2\x30\x41\x9f\x38\x2e\xb1\xcf\x18\x78\x96\x89\xc3\x32\xfb\x8c\x65\xc6\xe5\x96\xf8\x61\x85\xf1\x22\x29\xca\xc4\xe1\x14\xe3\xe9\xa1\x52\x13\x87\xd3\x8c\xa7\xfe\x4a\xfb\x87\x8f\x4c\xcd\xa0\xe6\x97\xe2\xad\x6d\x0c\x9d\x3e\x1d\x32\x9e\xf4\x39\xe3\xfd\x0a\x2f\xec\x22\x18\x99\x65\x3c\x5f\x69\x76\xf2\xe5\xd1\x1e\x75\x19\x4f\x82\x99\x0b\x86\xc5\x7e\xfc\x67\xc2\x78\xd8\x76\xf2\x31\xf8\x4b\x26\x98\xd1\xc9\xc3\x30\x3b\x84\xb5\x27\x0f\x4b\x4c\x20\x12\x53\x27\x0e\xcb\x4c\xc0\x32\x9b\x78\x1f\x9f\x15\x26\x60\x85\x4d\xbc\x8e\xcf\x29\x26\xe0\x14\x9b\x78\x1b\x9f\xd3\x4c\xc0\x69\x96\x9e\x38\x9a\x61\x02\xce\xb0\xcc\xc4\xd1\x2c\x13\x70\x96\x65\x27\x8e\xe6\x98\x80\x73\x2c\x17\x3b\x7a\xd9\x28\x32\xf8\x0f\x0e\x79\x3c\x79\xbe\x3f\x74\x74\x5b\xa3\x7d\x96\xaf\x36\x50\x8d\x57\xe2\x24\xbc\x5e\x28\x96\x30\x37\x59\xa0\x62\xb9\xc1\x84\x3b\xf1\x11\x09\xc4\xfb\xec\x22\xa1\xeb\x55\xd1\x23\xab\xc9\xaa\x1e\x33\xff\x8e\x21\xb8\xfe\xc6\x6d\x1e\x2a\xfc\x18\x2f\xe1\xb9\x71\x16\xd0\xd1\xc8\xb1\x64\xb1\x53\x8a\x1a\x70\xdc\x3c\xcf\xfa\x99\x9a\xe8\x51\x50\x31\xaa\xc2\x39\x47\xc5\xe8\xd2\x8a\x33\x74\x2e\x30\xe9\xd0\x18\x62\x8c\xae\xa0\xf3\xd0\xc2\xe8\x0a\xc6\x0f\xab\x18\x5d\x56\xe3\x4e\x44\x2e\xf0\x9e\x30\xdc\xce\x4f\x8d\x0a\x3b\x63\x8c\x6e\xae\x30\x2a\x14\x5b\xf0\x73\xa2\x1b\x05\x63\x87\x7d\x8c\xd2\x98\x74\xb7\xd6\x9b\x2d\x3b\xfa\xb6\xec\xa8\x57\x59\x3f\xc0\x33\xa6\x66\xd9\x36\x65\x4d\x6e\x08\xf5\x8d\xa1\xbe\xb0\x3f\x1d\xd0\xb8\xd6\x8d\x09\x97\x05\x78\xc8\xa7\xa3\xb9\x51\xd9\xdb\x25\xfa\x5b\x2c\x51\x3f\xb1\x7a\xb0\x44\x87\x8e\x4d\xbb\xb7\xb3\x92\x59\xca\xaa\xa8\x3e\x97\xce\x72\xb5\xd0\x5b\x72\xa6\xda\x2a\xaf\x56\x5c\x55\xd7\x51\xad\x78\x56\xfd\x37\x2f\x89\xc2\xc7\x5b\xa5\x51\xb1\x22\x3f\xef\x79\x30\x61\xce\xad\x6e\x0e\x39\xe3\x12\xa8\xd0\x63\x1c\x0b\x19\x89\xe7\x41\xad\xdf\x18\xb7\x22\x79\x59\x64\xdf\x10\xdf\xcc\xc3\x42\x12\x4d\x93\x27\xf1\x1c\x15\x6b\x6d\xd8\xf5\x4d\x8c\xba\x97\x04\xa3\x5c\x1b\x23\xb9\x3c\xc4\xa8\x45\x61\x42\x82\xe9\xef\xca\x2d\x8c\x6a\x63\x8c\xea\xc5\x41\x90\x1c\x24\x5c\x10\x9e\x0e\xcb\x0a\x14\x87\x9e\xd4\x79\x00\x67\x3b\x30\x1c\x64\xb4\x36\x17\x6a\xcf\xb7\xd4\x7b\xb3\x11\xd6\x86\xa0\x46\x39\x15\x87\xb4\x8a\x65\x6a\x96\xc9\x02\x8d\x7d\xa1\x34\x41\xbc\x57\xdd\x22\x30\xf0\xbe\xbd\xbb\xaa\x69\xb5\x8d\xeb\xed\xa9\xcf\xa5\xf3\xc5\xfb\x1b\xe8\xec\xa5\x8b\xb1\x9f\x03\x68\xda\x6b\x32\xa6\xc4\xaf\x62\xf4\x35\x8f\xd1\x53\x21\x71\x25\xf8\x69\xed\xb6\xe7\x21\x0a\xa7\xa2\x51\x5b\x85\xff\x56\xe1\xff\xd1\x30\xe7\x86\xe0\x68\x82\x79\x15\x1f\x1f\x47\x17\xf4\x5e\xc7\xa6\x9a\xbe\x31\xbe\xa6\x4c\x20\xb9\x8b\x22\x46\xf2\xd1\x19\x9e\xa9\x7d\xb0\x55\x8c\xce\x61\x59\x3d\xf4\xad\x2d\x0b\xb2\x39\x8b\x6e\x53\x96\xb7\x14\x67\x41\x0a\xba\xdd\x33\xcc\x70\x71\xa3\x62\xb9\x1a\xae\xf0\x19\x4e\x33\xef\xce\x59\xbc\x82\x5f\x75\xb7\x82\x51\x4d\xc5\xa8\x4f\xfc\x3e\x9c\xc1\x57\x07\x5e\x8a\xbd\x3b\x20\xc7\xda\x1c\xea\xa6\xdf\xe6\xb7\x0a\xbb\x8f\x02\x05\x1b\x02\x6f\x0a\x89\xc3\xdb\x99\x4d\x3b\x6e\x44\x4c\x78\xba\xb9\x00\xdc\x66\x90\x14\xe9\xdd\x00\xed\x95\x80\xcd\xfb\xf0\xde\x0d\xc0\xdc\x00\xa3\xa7\x3c\xe6\x52\xf9\x14\x13\xa9\x06\xb0\xd8\xae\xa9\xd3\x4c\xea\x16\xe0\x36\x1d\x0c\x36\x04\xe0\xfc\x62\x2d\x01\x81\xb3\xdd\xe1\x50\xef\x0d\x13\x2a\x72\x2f\x55\x6e\x28\x6a\x27\x92\xe4\x62\x79\xf9\xed\xbd\xb5\x5d\xbe\xc6\x4b\xbf\x55\x31\x92\x79\x32\x6c\xa2\xce\x86\xd4\xfe\x08\xa3\x23\xd5\x7f\x6b\x5c\x4c\x2c\x07\xb6\x2e\x17\xfa\x60\x2b\x2e\x3c\x7b\x00\x39\xcb\x6c\x35\x57\x9e\xa5\xf2\xb3\xb2\x70\x74\x95\x59\xd1\xe6\x2f\x4a\x9c\x3b\xc2\x18\xa5\x9a\xe6\x14\xfe\xe1\xc6\x37\x23\x6c\x15\xb1\x6f\x31\xd4\x75\x6b\x6b\x8f\xdb\x62\x9b\x57\xc4\x36\x52\x82\xbc\x17\x5c\xf5\x96\xda\xfa\xd0\x61\x85\x98\xfa\x9c\x09\xe4\x48\xb4\x62\x2c\xf5\x7b\xe3\x8c\x00\x73\x90\xa7\xfc\x00\x9e\x4c\xc2\x15\xd8\x5d\xe4\x5f\x6d\x81\xe7\x9f\x54\x3f\x2a\xcb\x83\x29\x5e\x1c\xe2\x79\x43\xcb\xcf\xc3\xd4\xc9\xf3\x9d\x67\x04\x5b\x7b\xee\x56\xe5\x2d\x4c\x6d\x04\x4c\x91\x5c\x12\xa6\x34\x3a\x00\x90\xda\x14\x0d\xcc\x4b\xd9\x66\x1e\x34\xc7\xc3\xe7\x2c\x68\x39\x6d\x8c\xce\xa5\x3e\x46\x72\x4d\x9f\xcd\x40\x5b\xc7\x81\x6e\x1b\xcb\x8b\x80\x23\x46\x6c\x83\xaf\xd9\x43\x8a\xbd\x0c\x1f\x8f\x35\xbf\x51\x28\x60\x54\x19\x03\x35\x94\x3c\x87\xcc\x7a\xad\xb5\xad\xdb\xf2\x51\x00\x66\x53\x40\x33\x13\x07\xcd\xff\x73\x6d\x43\xbd\xdd\x18\xc0\x64\x02\xc9\x55\x66\xe4\x4a\x7c\x3a\x78\x7e\x8d\x6f\x97\xf7\x76\x79\xf3\x0a\xfe\x4a\xb4\xbc\x8b\xb7\xc6\xd0\x30\xa9\xcb\x8a\xd5\x06\x2a\xcc\xf2\x87\x40\xd5\xfa\x09\xaa\xd6\x4b\x4c\x20\x0d\x94\xe0\xf2\x02\xb9\x32\xf0\x6f\x99\x59\xae\x8b\xfb\x4d\xa6\x33\xd3\xdb\xfa\x8b\x78\x49\xe9\x3b\xad\x81\x1e\x0f\xaa\x54\xcc\xbf\x3e\xff\x27\x65\xf2\x18\x49\xba\x89\x91\x9c\xeb\x4c\x12\xb7\xab\x1c\x50\xbf\xcc\x78\x9d\xe5\x66\x3b\x15\x8c\x9a\x13\xc3\x4f\xa6\x99\xbf\xb9\x35\xf0\x3d\x86\xb0\xb4\x05\xcb\x8d\x00\xcb\x74\x26\x01\x96\xd6\x40\x37\x6f\x69\x47\x37\x37\x86\xf2\x4c\x33\x80\xe3\x22\x46\x8d\x31\x46\x57\xee\x29\x46\x69\x7c\x3f\x5f\x45\x5a\x87\x9f\x7a\x98\xf7\x8c\x12\x5c\x55\xc1\xdd\x01\xe0\x5b\xde\xc2\x88\xdc\xa6\xf2\x5b\xad\xc4\x47\x59\xc6\x1b\x02\x30\x49\x23\xdf\x81\xd1\xb6\x69\xcf\xa1\x76\xc2\xd5\x68\x86\xc3\xf0\x7a\x7d\x8f\x96\x2e\x28\xff\x5a\xdb\xd6\xa1\x68\xc3\x1d\x8a\xf0\xf1\x78\x8b\xc6\x36\x11\xb9\x6c\x08\x1a\x93\x71\xdc\x93\xfc\x50\xef\x0d\x0d\xb3\x6b\xf0\xba\xfb\x31\xdd\x6a\x49\xac\xbd\xb3\x6e\x95\x09\xa4\xe9\xd6\xe0\x39\x4e\x2f\x2b\xb0\x23\x9a\x27\x77\xde\xcf\x58\x6b\xb5\xed\x42\xdf\x9c\xe5\xb7\x21\x0b\x3d\x49\xaf\x4f\x68\xcf\x30\x0d\xb3\x63\x53\x2d\xf2\x14\x08\x65\x4f\x5f\xe4\x44\x3c\x3c\x34\xa0\xdb\x81\xd0\x19\x04\x53\x4c\x7b\xee\xc8\xd2\x54\xc4\xde\x2a\x12\x63\x5a\x7a\x05\x6f\x00\x39\x87\x11\x48\x86\x04\x24\x43\x22\x01\x24\x0c\xda\xed\x75\xc8\x81\xb5\x5f\x10\x46\xb2\x87\x63\xcc\x14\x25\x2e\x0a\x9d\x18\xfa\x03\x3b\xf1\xd1\x21\x2c\x8c\x98\x62\xa2\x14\x64\x3f\x92\x44\x65\x5a\x2b\x11\x2e\x12\x1e\xb7\x21\xa5\xa6\xb7\x34\x59\xe7\xc6\x63\x75\xf8\xa3\xe9\x97\x16\xec\x6c\x73\x8c\x91\x74\x18\xd7\x16\x68\x14\x23\xf2\xa0\xf4\xd7\xa9\x28\x28\xb5\x31\x92\x25\x09\x3f\xab\x1f\x38\xdf\xe4\xa5\xf1\x9b\xa3\x4f\x59\x49\xa0\x4f\xc3\xb6\x1e\x66\x44\x9b\x19\x62\xf5\x15\xa3\xcd\x00\xb0\xe0\xa1\xee\x0f\x73\x78\x1b\x68\xf6\x3c\xde\x4a\x68\x56\x2b\xc6\xb0\x6d\x99\x89\xfa\xec\xa8\x59\xae\xc6\x64\xd2\xbc\x78\x8c\x66\xc9\xa5\x2b\x4c\xd1\xcb\x2a\x59\x3f\xd7\xc3\xa7\x9d\xeb\x61\x23\xa5\x9e\x8e\xb7\xa5\xac\x7f\xb1\x52\xd6\x83\x87\xd1\xc2\x61\xdb\x7a\xd6\x1f\x8b\x14\x6d\x08\xd1\x93\x12\xa6\xd8\x8a\xfb\xa4\xf7\xdb\x96\x6b\x77\x38\x56\x8d\x79\x3a\x86\xe8\xd5\xfb\xc6\x04\x4b\xcc\x87\x88\x75\xb6\x0f\xe4\x2a\x5a\xb6\x54\x3a\x95\x4e\xad\x01\x19\xae\x88\x38\x4b\x07\x18\x7e\x97\x93\xee\xc3\xae\x11\xd8\x70\x2e\x07\xf0\xb6\x24\xff\xbd\xd9\x4d\x8c\x8a\xfc\x9d\x9e\x61\x74\x91\xc3\x88\x94\x4f\x31\xba\x04\xc6\xcf\x85\x3e\xb8\x1f\xb8\x69\x18\xdc\x41\x19\xa4\x9d\x5c\x33\xb0\x09\x79\x34\x3d\x3a\xab\x25\xb2\x51\xf1\x63\x51\x2b\x73\xf3\x76\x5e\x90\x0f\x79\x8c\xd2\xb8\x32\x25\x77\x45\x0a\xc3\xad\x17\xe4\x16\x17\xad\x13\x17\xa5\x12\x52\x69\x95\x6a\xb6\xa1\xb1\x39\x9c\xdd\x32\xd6\x06\xe9\x1d\xac\x05\xcf\x58\x12\x52\x0d\x80\xf7\x5c\x21\xa0\xc4\xc0\xd2\xb7\x79\x4c\x69\x76\x80\x91\x7c\xd8\x9a\x81\x12\x22\x96\x2b\x40\x18\xc6\x91\x89\xd1\xa1\xe6\x5f\x84\xeb\x3e\x24\x8c\x91\x34\x94\xfc\xf4\xf4\x29\x5a\xc1\xa8\xca\x53\x11\x8c\x83\x2b\x46\xe8\x66\x46\x2b\x7d\x1b\xa4\x8a\x6b\x1d\xb6\x12\xa9\xf1\x68\x98\x9a\x7d\x32\x71\x5e\x71\x0b\xf4\x5b\xa0\xff\x69\xa0\x4f\x27\x94\x96\x55\xda\x73\xe8\x86\x1a\xe4\x97\x35\xda\xdb\x81\x8b\x64\x24\xb9\x2b\x00\x30\x96\x89\x51\x13\x60\x92\xe7\xfd\xcf\x04\xe0\x5b\x95\x0b\x18\xa5\xaa\x52\x82\xf0\x26\x4c\x6c\x24\xcd\x95\x57\x7a\x60\xfa\xe2\xba\x2c\x68\x71\xdf\x14\x78\xb1\x07\x8d\xa6\xef\x28\x5d\x8c\x97\x7a\xe2\x8d\x72\x75\xf2\x48\x68\xd2\x0b\xcb\x41\xa9\x21\xff\xd0\xcb\x63\xd4\xe2\x21\x1e\xf7\x78\xa9\x0a\x12\x51\xcb\x80\x9f\x9b\x0b\xcb\x45\x6c\x81\x7f\x83\x41\x72\x43\x80\x5f\x91\x12\x14\xdf\x30\x87\x5d\x56\x5d\xa4\x88\xf6\xed\x15\xa7\xf3\x54\xd1\x71\x75\xb4\x3c\x43\x1f\xbd\xac\x62\x39\xc3\x35\xcb\xe4\x14\xe9\x97\xe6\x29\xba\xaf\xb5\x30\x92\x3b\xe7\x93\xbc\x71\xbe\x87\x11\x71\x86\xe6\x9a\x54\xcb\xbe\x16\x65\x95\x4c\x68\x1b\xb8\xc6\x27\x1c\xf1\xab\x96\x49\x55\x8b\x9d\xcd\x57\xda\x09\x39\xb1\xf7\xb3\x5a\x3b\x6f\x4b\xba\x48\xbe\xd7\xc6\x04\xc9\x54\x2d\xf8\x51\x6a\xad\x0d\xbb\xc3\x7c\xe8\x17\xc2\x5f\x20\xcc\xb2\x65\x05\xf9\x24\x55\x8c\xce\xab\x0b\x42\xeb\xc2\x14\x94\xab\x45\xd6\xe1\x37\x8f\xac\xbb\xc1\x48\xba\xb8\x0a\xa8\x03\x4f\x43\x3c\x9e\x8e\x51\xb8\xa1\x30\xfc\x3e\x10\x2f\xf5\xae\x19\xf0\xc6\x9c\xc1\xdc\xca\x97\x5b\x6a\xf3\x6a\x06\x9e\x6c\xdc\x11\xa4\x6a\x0d\x55\xeb\x91\x93\x1b\xfe\x5f\x6f\xa0\x6a\xa9\xee\x91\x1a\xa0\x3d\x9f\x71\x2a\x61\x2e\x67\x82\xe4\x8a\xb7\x48\x90\x1e\xc4\x3b\x24\xc8\xfc\x53\xf1\x3e\x7d\xd2\x93\x8a\x99\xd0\x3d\x5f\x6d\xe2\xe1\x9e\xb4\x92\xca\xcc\xc4\x0d\xd9\xd9\x87\xa7\xb7\x1c\xcf\x8b\xdb\xe1\x4f\x20\x0d\x46\x4d\xb1\x89\x48\x1b\x7e\x17\x69\x61\x74\x00\x14\xe2\xb0\x8d\x91\xca\x9f\xc7\xe8\x62\x24\x97\xf2\x18\x69\x00\x77\xa9\x3c\x46\x2a\xc1\x48\xba\x27\x18\x19\x55\xb2\x06\x33\xd3\x02\x88\xa9\x79\x3a\x7b\xbb\xf5\x71\x81\x86\x1b\x9e\x48\x3a\x9e\xce\xe7\x8c\xda\xc6\x30\x49\xc2\x42\x4e\xa5\xc9\x73\x9f\xbc\x1e\x09\x03\x46\x26\x25\xa5\xde\x55\x73\xe1\x51\xb0\xac\x47\xc1\xb2\xbf\x15\x05\x3b\xea\x82\x70\x26\x4f\x92\xad\xab\x27\x8c\x6e\x0b\x5b\xca\xb5\xa5\x5c\x6f\x42\xb9\x08\x89\xa3\x9f\x0b\xa3\x43\xd9\x45\xb5\x81\x2a\xf5\x85\x3e\x3b\x24\x2f\x8e\x90\x20\x79\x9f\xf3\x3c\x77\x78\x71\x11\x8f\xc8\xc8\xe9\x89\x2d\x23\xad\x77\xe3\x0a\xd1\x31\x3c\x9f\xf7\x53\x01\x99\x74\x2d\x8c\x3a\xcd\x3e\x46\xa3\x52\x0b\xce\x48\x6d\x90\xbd\x6e\xca\x53\x8c\x23\x7c\x70\x4d\xc8\xb0\x32\xda\x58\xe7\xaf\xe8\x52\xf3\x56\x82\x6c\x59\x5b\xf0\x59\xb7\x8e\x31\x61\x58\xb8\xb0\xfa\x9b\x93\x88\xef\xfd\x54\x8c\xd5\x64\x86\x93\x75\xab\x18\x67\x9f\x7a\x6e\x54\x78\x24\x22\xa9\x5b\xa2\xb9\xe9\xb0\xb8\x21\x50\x2f\x27\xf4\x4e\x75\xda\xa7\x36\x9d\xe1\xd0\xd7\x15\xbb\xcb\x38\xf4\x2d\xe3\xde\x4c\xa4\x37\xf5\xe7\x93\x46\x24\x00\xd5\x0f\xb3\x42\xa5\xe1\xc0\xd7\x0a\x4a\xc9\xd9\xb1\xa9\x33\xd3\xdf\x52\x11\x8d\xc5\xd3\xb3\x9a\x3c\xb5\x8e\x09\x8a\x4d\xcb\x0c\x3c\xf2\x91\x1d\x2e\x51\x2a\x4b\x62\x45\x42\xeb\x46\xff\x46\xb7\xad\x81\xd5\x63\xf5\x85\x5a\x7a\x4f\x5d\xd2\x99\xaf\xa5\x57\x16\x6a\xe9\x3d\x25\xfc\xb2\x1a\xfb\x8c\x57\xb2\x41\xea\x20\xfd\xd2\xea\x20\xbb\x6c\x62\x24\xdd\x0f\x27\x89\x9d\x7c\xc5\x25\xd1\xb5\xa9\x3e\xce\x31\x46\x8a\x5e\xc1\x33\xdd\xbf\xb5\x96\x5f\xfd\x7c\x22\x42\xdc\x92\x03\xd5\xe8\x46\xcc\xf9\xfc\xfe\xc0\x6c\x98\x4d\xcc\x64\x39\xce\x4a\xd5\xad\x1b\x83\xf2\x1a\xc9\xb1\x08\x93\xa0\x58\x72\x22\xff\xab\xb4\x62\x52\xbc\x57\xdc\x98\x40\xd2\xd9\x69\xbf\xa6\x88\x35\xef\x9f\x1c\x06\x73\xcf\x2b\x3a\xd0\x41\xd8\x92\xa0\x35\x0a\x32\xd3\xbd\x3a\x9b\xb1\x64\x32\x81\x6d\x9e\xa9\x0d\x66\x33\x26\x08\x99\x63\xa9\xdd\x5b\xab\xd7\xdf\x18\x09\x23\xcc\x23\x50\x00\x8e\xa1\xa4\x6f\xf9\xe8\x8f\xb2\xec\x36\x65\x81\x27\xca\x8d\x34\x68\xaf\x67\x98\x26\x6b\x54\x13\x48\x3f\x8a\x28\x0c\xe2\x69\xd1\x54\x58\x61\x14\x2d\x46\xb0\xec\xc5\x3e\x4c\x59\x3a\x26\x55\x50\xaf\xbb\x31\x41\x4a\x5b\xb5\x12\x72\xf4\x92\xff\x03\x1b\x14\x23\xc5\x6e\xf5\xd0\x49\xbd\x52\x42\xd2\xd7\x16\x46\xd2\xf1\x54\xb2\x19\x92\x3d\xc6\x88\x0c\x1b\xad\x8d\x55\x34\xcd\x5c\x25\x24\x3e\xeb\x29\xae\x93\xdf\x02\xc8\xeb\x03\x88\x42\xe2\x3c\x51\xc3\xb0\xa9\xa9\x27\xfc\xe7\x99\x40\xee\x40\xca\x7c\x87\x82\x7a\xf3\x37\x60\xd0\x7b\x05\x78\x2e\xa2\x0c\x54\xd8\xa7\x2a\x45\xef\x97\x7a\x09\x2e\x8a\xc0\x9d\x60\x13\xfb\x99\x06\x39\x0b\xc8\x83\x69\x78\xeb\xbe\xe6\x73\xb4\xf7\x03\x8c\x5a\xed\xc9\x86\xd7\xa9\x57\x88\x77\x8f\xb9\x89\xa5\xcd\x57\x36\x34\x6e\x69\xcc\xa6\xdf\x69\x31\x08\x25\x1c\xc1\x2e\x7b\x23\x6a\x5a\x0f\xc3\xee\xa4\x3e\x00\xf1\x22\xc7\xb2\x26\xe6\xe3\x3a\x81\x00\xa8\x66\xa8\x6d\x56\xa8\x25\xf7\xb6\xaa\x1b\xf8\xfa\x2b\x58\xc6\xfd\xda\x7f\x89\x6c\xe9\x97\xe3\xdb\x8e\x65\x5b\xb1\xb4\x03\x11\x6f\x10\xe6\xdb\x98\xe0\x0b\x92\x85\x42\x66\xe8\xd6\xf0\x9a\x7d\xb4\x88\x7a\x5f\x99\x9d\x78\xa0\xdf\xc3\x88\xf0\xba\x7e\xb6\xdc\x5c\xa7\xf6\x80\xd4\x6e\x60\x65\x3c\x2e\x14\x05\xb7\x11\xe4\x9b\x8b\xc5\x48\x82\x11\xb8\x32\x74\xd3\xdc\x6c\x67\xf6\x67\xb3\x71\xc8\x27\x55\x3f\x7a\xb6\x92\xff\xff\xd8\xfb\x17\xee\xb6\x71\x64\x0f\x10\xff\x2a\x8a\xfe\xf7\xef\x96\xd6\xb2\x9a\xd4\x5b\x76\xab\xb3\x8e\xed\x3c\xed\xd8\x1d\xdb\x49\x77\xa7\xb3\x5e\x88\x04\x25\xc4\x14\x20\x83\xa4\x6d\x25\xf2\x77\xdf\x83\xc2\x9b\x94\x93\xcc\xdc\xb9\x73\x67\xcf\xf6\xe9\x99\x58\xf8\xa1\xf0\x2e\x14\x0a\x85\x02\x18\x7c\xe7\x5d\x8e\x5e\x10\xd4\x3a\xd0\x35\xc8\xf7\x29\xb7\xee\x16\xb3\x97\xc8\xdc\x26\xf9\xd6\x3d\xdc\xbf\xb7\x9f\xff\x01\xac\xfe\x9f\x32\xa9\x46\xee\xda\xf2\x9e\xa4\x94\x14\xd9\xfa\xc3\xc9\x45\xed\x8d\x52\xb1\x3d\x3b\xb4\xb3\x05\x65\xb5\x9d\xf0\x8b\x73\x4d\xd5\x58\xa2\x9d\x67\x4b\x3a\x3d\x30\x33\xf7\x06\xa5\xff\x86\xdd\xf2\x7f\xfd\x4e\xbf\x82\xfd\x73\xff\xad\x77\x3a\xe3\x6e\xcc\x6a\x83\x57\xc7\x27\x6d\x56\x0b\x4f\x99\xa8\xe5\x97\x2f\x41\xed\x24\x89\x83\x5a\x67\xfc\x21\xa8\x75\x49\xc5\x80\x7d\xfc\x3e\xa8\x85\xf9\xec\x7f\xc4\x80\xfd\x3f\xb2\x07\x7d\x56\x19\xfa\x11\x61\x7f\xcf\x8d\x7f\xe1\xdc\xf0\x6f\x4c\xbe\x67\xe9\x8c\xc1\x7b\x4f\x95\x63\xb4\xce\xfb\xf6\xd1\xbf\xf8\x18\x2d\x7c\x75\x23\x32\x5d\x66\xc7\xe2\xcf\xdf\x47\x69\xdf\x53\x94\xc7\xaf\x2b\x1f\xc9\xfe\x80\x78\x86\xee\x40\x96\x55\x5e\xe8\x52\xf2\xcb\x33\xa1\x69\xcb\x41\xb7\xd7\xfd\x5f\x37\x1f\x7c\xd3\xb0\x10\xe5\x31\xab\x85\xc7\xbf\xb3\xc7\x35\x0b\xf0\x55\x81\x5f\x83\x2f\xab\xa0\xf6\xf2\xc3\x59\x50\xeb\xbf\x3a\xa9\xa8\x17\xe0\xc4\xbc\x38\xd6\xcf\x7d\xf5\x8d\xd3\x25\xdd\xd7\x39\x6d\x70\x0a\x25\x87\xbf\x2b\x9f\x12\xcb\x19\xf6\xb6\x9b\x81\xbc\xc7\x2d\xfd\x1f\xda\x29\xa5\xc8\xfe\xbd\xd7\xdc\x1f\xbb\xed\xf3\xb7\x42\xf3\xff\xa2\x92\xbe\xad\xd0\xf8\x5f\x3f\x40\x4b\xc6\xd9\x97\xf9\x0a\xaf\xb7\x83\x4e\x27\xf8\xe6\x23\x6c\xd7\xff\xcc\x13\x6c\x3f\x7c\xe9\xed\xbf\xf3\x06\xdb\x75\x0d\x5f\xb2\xeb\x1a\x17\xc2\xbe\xf3\xce\xf5\xd6\x1c\x2d\x82\x5a\x78\x3b\x46\xff\xae\x2b\x07\x6f\x82\xef\x1e\xa7\xfe\xbd\x87\xfe\xcf\x9d\x1d\x43\xf9\x4a\xfb\xcb\xf3\x8b\xb5\xf8\x3f\x0a\xd6\xc1\xba\xde\xaa\xbf\xa2\x31\x41\xf4\xe7\x83\x39\x9a\xb1\x4c\xe9\x37\xfd\xda\x76\x30\x58\xef\xf4\xde\x0a\xdd\xa6\x1f\xd4\x76\x06\x30\x0f\xd6\x3b\x9d\x7b\x96\x09\xb0\xbb\xff\xe2\xf8\x6d\xfb\x68\xdd\x0d\x70\xc7\xc9\x83\x45\x2c\x5b\x6f\x07\x83\x6e\xb0\xde\x19\x14\xeb\x60\xbd\xee\x8f\x07\x36\xfe\x0d\xe6\xb3\x02\xa7\x98\xae\x77\x82\x00\xd4\x27\xad\x32\xad\x77\x4e\x5e\xc0\xb7\x01\x03\x4b\x7d\x82\xe6\x58\xd5\xa7\xb7\xde\xe9\x3e\x6f\x9f\x28\xef\x96\xf5\x4e\x67\x75\x2a\xc2\xeb\xe1\x18\xee\x1d\x99\x04\x69\x4c\x6e\x71\x06\x37\x8f\x40\x39\xeb\x9d\x9b\xfc\x59\x3a\x3b\x5f\x77\xfb\xd0\x05\x86\xbe\xe0\x24\x17\x7b\x1e\x55\x8a\x72\x8c\x3a\x75\x75\x39\xb9\xec\xde\x33\x7e\x5a\xeb\xf6\x0a\x7a\x5a\x0b\x7b\x82\xd3\x3b\xd7\x3c\x00\xb3\xfb\x3a\xf4\xf2\x7c\x87\x0b\x4a\xd4\xd3\x69\xba\xde\xbf\xd9\x7a\x2f\x0e\x0f\x9f\xb7\x7f\x5b\x8f\xa4\x76\x79\x86\x22\x92\x90\xe8\xe7\x37\x77\xe8\x33\x4a\x31\xa1\xeb\xed\x30\xac\x6d\x87\xa2\x6f\xc6\xb5\x9d\xb0\x53\xdb\x16\x9d\x3e\x0d\x6a\x3b\x28\xa8\xed\x8c\x83\x5a\x14\xd4\x76\x22\xa8\x57\xd0\xed\xad\x77\xc2\xeb\x94\x06\x35\x74\xbd\x0c\x6a\x03\x78\x4a\xa7\xc3\x57\x41\xed\x03\xa2\xc1\x3a\xec\x41\xd7\x9c\x1c\x5d\xac\x4f\x84\xa8\xfb\x8f\xb4\x93\xfc\x2b\xbe\x60\x0a\x9e\xb6\xb3\x93\x93\xbf\x2f\x86\xfc\x2d\x2d\xff\x75\x9d\x21\xa6\xce\xf9\xc5\x5a\xfc\x7f\xa8\x04\xe5\xc9\xf9\xc5\xf0\xe4\x10\xb0\xda\xc9\xe1\x45\xed\xe4\xc3\x45\xed\xe4\x4c\xc4\xd7\x06\xea\x7f\xfa\xd6\xc7\xff\xfa\xc4\xaa\x4c\xb3\x41\xc8\x8d\x7f\x93\xf6\x74\x3a\x9f\xbd\x0d\x6a\xa3\xfb\x4e\x50\x23\xf7\x41\xed\xb7\xbb\x1f\xf4\x94\xb2\xaf\xd5\x6c\x88\xcd\xc2\xa0\x16\xbe\xff\x22\xbf\x60\x16\x3e\xdb\xf4\xba\xcd\x23\x29\xbf\x53\xd6\x8f\xa6\xed\x09\x31\x98\x4e\xf5\x2f\xbf\xc5\xce\xaf\x12\xdd\x7f\x27\xc5\xff\x44\x69\xef\x84\x40\xfc\x32\x0d\x6a\xa7\xcb\xf2\x8f\x6f\x44\x7d\xe3\xc7\x3f\x94\xea\x3f\xb5\x08\x67\xcd\x3c\x98\xa3\x7c\x8e\x16\xeb\xed\xb0\x13\xf6\xc5\x3a\xd9\x13\xff\x76\x7b\xfd\xf5\x4e\x94\xd4\x76\xa2\xd7\xb5\x9d\xf8\xf5\xff\xbe\x43\xc0\x7a\xe7\xc3\xcd\x7e\x52\x0b\x51\x8c\x13\x38\x96\x84\xed\xef\xbb\xca\xf7\x1f\x7e\xe4\xc7\xbf\x22\x15\x88\x3b\x78\xb3\x53\xde\x46\xd9\xf0\xab\xf4\x1d\x8b\x4d\xbf\xfe\xf1\xb4\xff\x9d\xd2\x08\x0b\x2a\x5f\xb4\xf8\xf6\xaf\xd2\xa2\xff\xef\x48\x4b\xd8\xbf\xb3\xb4\x6f\xa5\x5d\x0f\x02\x77\xa2\xec\x2f\x89\xbc\x9c\xb1\x13\x86\x62\x7b\x1b\x86\xb0\xbd\xdd\x0e\x7b\x62\xbe\xac\xa7\x37\xed\xcb\xda\xb4\xa8\x4d\x83\x9a\xd0\x31\x71\x50\xdb\x89\xb5\x11\xf3\x9f\x7e\x94\xe3\xf0\xe4\xbe\xdd\xab\x85\xab\x0f\x41\xb7\xdd\xab\x75\xf8\xbb\x69\x51\x0b\x93\x44\xd5\xf4\xe0\x55\x50\xdb\xff\xed\xff\xf3\xc3\xd4\x1d\x82\x86\xae\xc7\xe9\x19\x2b\x66\x88\xd0\x5b\x92\xa6\x78\xad\xf7\x00\xdb\x61\xb8\xd6\xba\xff\xce\x14\xf4\x8b\xce\x7a\x27\x1c\x7c\x58\x05\xb5\xe1\xc1\xdb\xa0\xd6\x39\xf9\x6d\x09\x27\x39\x3d\x4f\x36\x16\xc5\xb5\xce\x43\xa7\x5f\x6b\x55\x00\xdf\xad\x82\x1a\x82\xcf\xc7\xbc\xff\x5d\xfc\x8a\x83\x75\x6f\xec\xd5\xe5\x28\x41\xb9\xda\x7b\xc1\x86\x44\x6c\x42\xe2\xf6\xac\x06\x5b\x91\xe8\x31\x3f\xab\xf5\x4e\x27\x1d\x53\x41\xd7\x39\xff\x12\x89\xbf\x72\x49\x66\x62\x71\x0e\x8c\x93\x35\x1c\x52\x26\xcf\xfe\x01\x05\xc0\x38\x68\xc3\xcd\xbc\xb7\x71\x50\xdb\xa7\xc1\x7a\x30\xf0\xeb\x4c\x63\xcc\xa7\x05\x5f\xad\xc5\xc6\x69\x07\xea\xdd\x5d\x47\x81\xe0\x6c\xc5\xd2\x6b\xfa\x2a\x0a\x6a\xcf\x86\xbf\x07\xeb\xd0\x49\xf9\x1c\x5d\x23\x96\xb0\xb5\x4e\x63\x12\xac\xc3\x17\x09\x0d\xd6\xbd\x91\x5b\xce\x73\xf2\x99\xa8\xae\xe9\x00\xf9\xce\xf4\xa2\xfd\x4a\x74\x8b\x2e\xe6\xbf\x6b\xe3\x9d\x5e\x7e\x11\x39\x76\x17\xa3\xb7\xe2\xaf\xb9\x08\x28\x96\x0f\xfa\x3a\x52\xe6\x57\x16\x38\xdf\xff\x81\x2f\x91\x99\x4f\x92\xfd\x16\x04\xb5\x7b\xd1\x55\xe7\x6f\x83\x5a\x21\xd8\xef\xfc\x44\xfd\x78\xbf\x1f\xd4\xb2\x60\xd3\x8f\x4e\xc0\x82\xda\x32\x52\x3f\xaa\xc8\x37\x7e\x7c\x23\x9f\xef\xa4\xfa\xa7\x8a\x58\x8f\x7c\x76\x7f\x81\x52\xb4\x34\xd6\x8b\x9d\xa0\x5f\xdb\x09\x06\xeb\xfe\x87\x36\xab\xf5\x95\x56\x0e\x2b\x71\xb8\x7a\x7f\x1e\xb6\xf7\x6b\x9d\xf8\xe2\x8b\xf8\x3b\x13\x9c\xc4\xbf\x04\xeb\x4e\xdf\xe3\xa4\x17\x68\x31\x25\x98\xab\xdc\xc6\xeb\xd1\xef\xed\x93\xda\x58\xed\xe0\x3f\xb3\x24\x68\x47\xeb\xb0\xd3\x77\x53\x14\x28\x46\x69\x84\x28\x4a\xf5\xac\x59\xef\xa0\xc3\xf6\x89\x9a\xb4\x90\x6e\x75\xd8\x3e\xd1\x8e\x0c\x4e\xc2\xc5\xfa\x05\xbc\xbe\x35\xae\xbd\x38\xbc\xa8\x1d\xcc\xc5\x3e\xdd\xce\x78\xb1\xf3\x87\x59\x5f\xfa\xaf\xbb\xde\x09\x47\x9f\xdf\x04\xb5\xc1\xf2\x59\x50\xdb\x9f\x3f\x0b\x6a\xdd\xdf\x8e\x83\xda\xac\xb3\x0c\x6a\xdd\xe5\x38\xac\x7d\x38\xfd\x5d\xfa\x40\x7d\x89\xf5\xa7\x86\x97\xf2\x47\xff\x3e\x96\xee\x51\xfd\xec\x6d\x50\xfb\x32\x0d\x85\x52\xf2\x3b\x5c\x41\xbd\x3c\x9e\x82\x19\xd5\xad\xe3\x4b\x46\x59\x5a\xa4\xc5\xfa\xe5\xf9\x45\xed\xe5\xe1\x45\xed\xe5\x87\x8b\xda\xcb\xb3\x8b\x1a\x58\x91\x8a\xda\x58\xff\x4f\xd5\xb4\x1b\xf4\xd6\x3b\x61\x3e\x3f\x2e\x6a\xa3\xfb\xa0\x96\xe2\x24\xa8\x8d\xee\x3e\x14\x35\xb2\x5f\xd4\x7a\x83\x25\x48\x3e\xcf\xfc\x41\x38\xc9\xc9\x02\xe5\x64\xbd\x13\x06\xbd\x40\xaf\x4f\x6b\x74\xa4\xd6\x24\x35\x79\xd1\x91\x98\xbc\xd7\xeb\x7e\x08\x56\x27\x93\x9e\x65\x1c\x61\x69\x3b\x01\x99\x19\x58\xbb\xc9\x58\xd9\x4e\x22\x59\xb7\x10\x6e\xad\x74\xf0\xdd\x17\x21\xf8\x0e\x82\xda\xcb\x67\x2b\x65\x40\x11\x72\xb0\xf6\xe1\xf4\x4d\x50\x0b\xa7\xf1\x17\x10\x2f\x6e\x21\x27\xe8\x73\xc1\xd9\x8f\x16\xf2\x48\x19\x83\x77\x42\xec\x75\x8a\x45\xb0\xee\x8c\x3c\x9e\x3b\x41\xfc\xa6\xc0\x19\xd2\x3c\x3c\xee\x06\xeb\x31\xa9\x8d\x0b\xcd\x3d\xf8\xc5\x7a\xe4\xd7\xe8\x0c\xcd\xd8\x95\xf8\x07\x92\x9c\x9f\x5f\xac\xa7\x8b\xf6\x49\x4d\x33\x1c\x3d\x3c\x79\xd6\x8e\x44\x5f\xbb\x89\xde\xa2\x82\x17\x9a\x47\xbb\x7a\x91\x11\xed\x18\xb6\x8f\x6a\x3b\xd3\x42\xb6\x46\xc9\x78\xc1\x65\xbf\xc7\x54\x44\xfd\x76\x40\x9f\xb5\x8f\x6a\xc3\xc5\x4d\x51\x0b\x53\x3a\x2d\xd6\x61\xe0\xb5\xe0\x2d\x29\xb0\x10\xa1\x60\x3e\x57\x9a\xc6\x7a\x7a\x2d\x75\x0b\x69\x3d\x7c\x93\x9c\x1c\xd5\xc2\xe1\x2a\x40\xeb\xb0\xe3\x57\x8b\xf1\x84\xa5\x62\xcd\x0a\x41\xaa\x42\xd5\xc2\x0e\xfc\xab\x17\xa0\x48\x56\x2f\x2a\xbc\x65\xe8\x47\xdf\x59\x79\x33\x9b\x46\xb5\x0f\x41\xf8\x42\x1d\x42\x89\x7f\xc7\xaf\xa3\xe2\xdf\x63\xdb\xf9\xd7\x9a\x93\x84\xc0\xea\x79\xbd\x57\x2c\x30\x2a\xad\xd7\x7d\x29\x7d\xbc\xf5\x5a\xae\xd0\x22\xa6\x73\x74\x73\x22\xfe\xde\x0b\x09\x71\xf6\x2c\xa8\xad\x68\x50\x7b\x89\xcf\x60\x05\x59\x8f\x7d\xe6\x3c\x23\x79\x84\x08\xa7\xeb\x9d\x60\x24\x06\x36\x18\xad\x47\x45\x6d\x24\x97\xc8\xd1\xfb\xeb\x62\xdd\x1f\xb8\xe4\x6c\x4e\x97\x98\xb8\x73\xc5\x9d\x27\x6a\x8e\x7c\x63\x1a\xae\xbb\x3d\xaf\xfc\x77\x88\xb3\x9c\xd1\x19\x12\xf2\x01\x2a\x30\xee\xca\x17\xd1\x91\x15\x3c\x8f\x6f\xc1\xd2\xd5\x87\xa2\xf6\xea\x18\xb6\x41\x45\xed\x94\x16\xa5\x1f\xa0\x9d\x6e\x8e\xfa\xc6\x8f\x6f\xa7\x5a\x87\x5d\xaf\x09\x17\x68\x4e\x72\xa2\xf4\xf0\x60\x3d\xfe\xd0\x9e\xc9\x6a\xcb\xc9\x1d\xb6\x5f\x95\x95\xb8\x0b\xd1\xe0\x1c\x2d\x0b\xb1\xc5\xed\x88\x89\xd0\x05\xa1\xb8\x13\x5d\x0b\x45\x43\x8b\x45\x33\xb2\x21\x7a\x16\x5c\xd7\x3a\xb4\x1f\x5f\xcb\xb7\xa9\x40\x31\x00\x35\xe0\xb7\x50\xfe\xf8\xf2\xe1\xad\x5c\x40\x87\x6a\xc1\x3b\xbf\x18\x9d\x1d\x5e\xac\xcf\xce\x2f\x6a\x67\x87\x17\xb5\xb3\x0f\x17\xb5\xb3\xb3\x8b\xf5\x28\xa8\x0d\xd5\xff\xfe\x93\x2d\x5a\x37\x8f\x59\xb4\xc2\xa0\x46\x56\x7f\x5b\xb4\xfe\xb6\x68\xfd\xe7\x17\x51\x6f\xd5\x3f\x1c\x5d\x98\xb7\xd8\xd7\xfa\x43\x0f\xff\x7b\x33\x6b\x7e\xf8\xec\xef\xa3\x94\xbf\x8f\x52\xfe\x85\x47\x29\x9f\x5a\xf5\x94\xd0\xeb\xac\xbe\xfb\xb1\xbe\x9f\x70\x12\xa1\x9f\xf7\xa7\x24\xfe\x8c\xe8\x5a\x05\x9f\xa1\x05\xba\x66\xf5\xd6\xa3\xd1\xf4\x73\x91\x3e\x1a\x7d\xc0\x28\xba\xe6\xab\x47\xe3\x0f\xd1\x35\xe2\x8f\xc6\x3e\xe7\x18\xe7\xec\x8e\x3e\x4a\x70\xcc\x16\xf8\xd1\xc8\xb7\xac\x40\xd7\xd1\x9c\xe5\xf9\xa3\x24\xa7\x05\x9a\xa1\x98\x15\x33\x56\x3c\x4a\x73\x41\x16\xd3\xe2\x3a\xdf\x44\x90\xa7\x88\xe6\x24\xfa\xf9\x3c\xbf\x7a\x89\x53\x4c\x91\xa5\x39\x40\x84\xb3\xf5\xd1\x6c\xb5\x74\x4a\x7f\xcd\xe6\x88\x52\x9c\x4d\x0b\x3e\xd3\xd9\x9f\xa0\x0c\xf3\xe2\x3b\x34\x53\x34\x45\xd4\x69\xe9\x31\x6c\xa9\xed\x10\xcc\x0a\xf2\x58\x24\x47\x5f\xbe\x20\xb0\x5c\x3d\x42\x71\xc8\x0a\x94\xa2\x47\x22\xdf\x10\x9a\xcd\x51\xf6\x58\xf4\x31\x99\x72\xfc\xad\xcc\x8f\x0b\x44\xe3\xc7\x52\x9f\xa0\x14\x4d\xd9\x23\x91\x6f\x09\x5a\xe0\xd5\x23\x91\x67\x8c\xe7\x6c\xe7\x2d\xbb\x75\x52\x9f\xa0\x65\x91\x33\xd3\x6e\x31\x34\x2b\x8e\x1f\x8d\x2f\x3e\x17\x8b\x69\xc1\xd1\x63\x04\x2f\xd0\x94\x71\x46\x1f\xcd\xe0\x25\xe2\xe8\xf1\xec\xdf\x90\x19\x4a\xc9\x63\xb1\xc7\xc5\xb4\x58\x4c\x51\x36\xff\x06\x45\x86\xae\x9d\xba\xbd\x15\xec\x34\x25\x3a\x7a\x3f\x8e\x49\x76\xb5\x2f\xd8\xe2\x71\x9a\x6c\x81\xf8\x37\xa3\xf1\x37\xa2\x0f\x11\xbf\xc2\xd9\xd5\x39\x4a\x11\x5a\x3c\x4e\xf5\x99\x4c\x59\x91\x93\x47\x09\xde\xa0\xc5\xd2\xe3\xae\x52\xfc\x09\x9b\xa1\x98\x64\xf3\xa2\x4a\xa1\xbc\x36\xf6\x69\x8e\x28\xa2\x88\x13\x77\xb0\x4b\x44\x07\x6c\xc1\xf8\xe3\xd1\x27\x68\xc5\xf2\xdc\x19\xac\x0b\x4e\x96\x2c\x25\xeb\x63\x32\x5d\x41\xe5\x16\x58\xf5\x2b\xba\x5e\x9b\x40\x7e\x5d\x89\xbb\x3c\xff\x79\x3f\xc5\x45\x4e\x10\x75\xa3\x68\x34\x67\x1c\xcd\xb0\x8c\x47\x99\x9f\x90\xcf\x30\xcd\x09\x15\x4c\x87\x29\xcb\xae\xf6\x09\xc7\x99\x29\xc6\x05\x37\xa6\x3a\x40\x39\x5a\x20\x1e\xa1\xf5\x86\x38\xb6\x60\xf1\x3b\x72\x8b\x62\x74\x4b\x36\x17\x5a\x4d\x6e\x90\xcd\xf4\x8c\xc7\x6c\xea\x50\xcb\xf0\x0f\xd1\xbe\x63\x19\xe2\x84\x6d\xa4\x7d\x5d\x7c\x2e\x56\x86\x12\x42\x1b\xe9\x4e\x30\x8d\xd9\x17\x9b\xa7\x0a\xbb\xb4\x39\xb9\x66\xd7\x42\x00\xdb\x2a\xa2\xf4\xea\x25\xe2\x53\x56\x70\x87\xf0\x60\x4e\x22\x34\x63\x62\x54\x0e\x30\xcd\x39\x4a\xdd\xc8\x82\xa3\x08\x31\xa7\x53\x0b\xaf\x95\xe5\xf8\x37\x1c\xa5\x98\xc6\xe4\xf3\xf5\x37\x88\x8e\xd9\x1d\xe6\x57\x67\x9c\xd0\xc8\x1b\xcd\x43\x4c\x6f\x31\x37\x64\xe7\x73\xb2\xe4\x2c\xba\xae\x52\xbc\x45\xb7\xe8\x33\xab\xe2\x97\xe7\x3f\x9f\xb0\x82\xe6\x88\x50\x2f\x32\xe7\x8c\xe4\x10\x4b\xa2\x39\x99\x79\x6c\x79\x14\x2f\x18\xcd\x19\x5d\x1f\x20\x8a\x62\xb4\x29\x83\xe7\x8c\xe7\x57\x1f\xd0\x8a\x62\x53\x37\x39\x67\xcc\x5f\x31\x4f\xb2\x1f\x4a\xf1\x0d\xca\xcb\xf3\x9f\x8f\x50\x96\xef\x28\x4a\x87\xe8\x25\x4a\x49\x82\xee\x75\x15\xf5\x92\xea\x51\xdc\x22\x8a\xd6\x07\xfe\xe8\xe8\x5a\xbe\xa1\xec\xde\x0e\x11\x65\xf7\x57\xaf\xde\x3e\x46\x76\x79\xae\xc3\x3b\xe7\x39\xe2\xd7\xd8\x21\x7c\x8d\x16\x88\x44\x68\xad\xfe\x3a\x31\x6f\x30\xcd\x8b\xe8\x7a\xf5\xf3\x31\x2b\x48\x26\xcf\x80\xec\x70\x6b\xc8\x49\x70\x2c\x66\x33\x9d\xe1\x14\x67\xa2\x48\x65\x34\xf8\x2e\xc1\xce\x5b\x7c\xe7\x10\x9d\x20\x8a\x8a\x6c\x2d\xd6\x6f\x92\xfe\xfc\x01\x67\xb9\x17\xf9\x05\x89\x9e\x5a\x9f\xe0\x7b\x12\xb1\x9f\x9f\xa1\xcf\xe8\xdc\x63\x7d\x19\x71\x75\x40\xf2\x95\x26\x7a\x81\x29\xf6\xa7\xc0\x5b\x7c\x77\xf5\x07\xe3\xd7\x7a\x7c\x30\x77\x79\xe3\xad\x58\xff\xe6\x48\x57\xe1\x10\x2b\xc0\x21\x39\x43\x14\x2d\x5c\xc1\xb2\x5a\x78\x1c\x78\x36\x67\x98\x12\xe8\xf9\x7d\x4e\xbe\x30\x6f\xe8\xc5\x22\x7e\xc5\x92\xab\xf3\x25\x22\x76\x2e\xef\x0b\x65\x26\x4d\x7f\x84\x30\x27\xb3\xe2\xfb\x74\x87\x6c\x41\xa8\x3f\xa4\x9b\x09\x5f\x70\x2c\x78\xf0\xfb\x74\x05\x8a\x71\xca\x8a\x25\xfe\x2e\xe9\x09\xe2\x64\xc6\xf2\xef\xd3\x31\x9a\x67\x98\x73\xf4\x7d\xd2\xf3\xfc\xea\x19\xe2\xf9\x1c\xa7\x78\xb1\xfa\x11\xea\x37\x24\xcf\xb3\x1f\x21\x3c\x2e\x22\xf2\xfd\xd6\x9f\xe7\x57\x17\x73\xb6\x40\x3f\x94\xe5\x7b\x21\x07\xe9\xf7\x1b\x75\x21\xf4\xb9\x1f\x18\xf3\xf7\x84\xcf\x3c\xf9\xf5\x0e\xcf\x88\x10\x0e\x52\x7a\x9c\x8b\x95\x37\x8f\xe6\xf8\xce\xe3\xc2\x77\x84\x5d\x3d\xe3\x88\x46\x56\x4e\x83\x02\x79\xb5\x1f\x71\xbc\x99\x4e\xf1\x7c\x89\xe0\x5c\xc8\x26\xb1\xa0\x1c\xcc\x49\x8a\xc5\xe6\x26\x27\x14\xd3\xdc\x9b\x54\xe7\x88\x5d\x9d\xa1\x22\x35\x99\x88\x99\xe5\xc6\xe7\x57\xaf\xd9\x9c\x66\xba\xd2\x6f\xf1\x5d\xc2\x0a\x1a\xa7\x88\xc6\x0e\xd9\x05\xf9\x5c\x08\xb9\x67\x84\x39\xcd\xca\xec\x59\x26\x11\xd5\x43\x57\xaf\x32\x34\xc5\xe9\x06\x32\x47\x56\xbc\x65\x3c\x77\x1b\x76\x21\x66\x76\xce\x3c\x7e\xe4\xd8\x6b\x96\x26\x51\xb5\xae\x8a\x8b\xf7\xa2\xe3\x0a\xb1\x56\x29\x92\xaa\xe0\xfb\x30\x27\x39\x9e\x33\x9e\x61\x4d\xf3\x47\x71\xcd\xdc\x4c\x3e\x10\x4a\xc9\x12\xcf\x74\xbc\xb3\x6c\x67\x44\x28\xad\xf3\x19\x9a\xa2\x7c\xad\x43\xd7\x73\x34\x45\xb1\x8e\x16\x3b\xa1\x6b\x76\x2d\x63\xcf\xe6\x94\x2d\xae\xce\x30\x9d\x6f\x8c\x7e\x4f\x84\xbe\xa1\x76\x55\x02\x38\x9c\xa3\x6b\x24\xe3\x0e\x51\x24\xe5\x05\x04\x8a\x29\x22\x12\x3f\x29\xb2\x48\x4e\x51\x11\x7a\xc9\xae\x0e\xe6\xe4\xea\x84\xd0\xb9\x8c\x3e\x47\x64\x26\x5b\x23\xa3\xe9\xec\xea\x0d\xa3\xb3\xb5\xf8\x75\xcd\xe8\x4c\xc7\xbc\xc6\xbc\xc8\x50\x8a\x17\x32\xd9\x05\x4e\xaf\xf6\x6f\xc9\x6d\x35\xfa\x55\xc6\x11\x36\x8d\x7f\x83\xf2\xf9\x02\xd1\xb8\x58\xeb\x20\x84\x4c\x34\x4b\xaf\x51\xae\x5a\x70\x80\xd2\xa8\xc8\x73\xd3\x88\x37\x62\x8f\x77\x75\x5c\x2c\x96\x05\x57\x95\x25\x74\x86\x96\x8c\xe3\x8d\x24\x95\xd8\x13\x14\x21\x55\xb0\xf8\xc9\x2c\x7e\x8d\xb2\x0c\xa9\x4c\x2f\x3f\x17\x74\x76\x75\x26\xf6\x7c\xb6\xb9\x6f\x49\xc4\x32\x82\xd6\xea\xee\x87\x0a\xea\xd8\xdf\x50\xae\x53\x3f\x43\x73\xae\xd4\x13\x11\x7c\x87\xe8\x8c\x31\x2a\xe3\xfe\x10\x01\x1b\x45\x56\x28\x56\xbd\xbe\x1f\xe3\x8d\xf8\x9b\xe2\x0e\x11\x33\x58\xe7\x98\x15\xe9\xfa\xdd\xe9\x1b\x03\xcc\x11\x9d\xcd\xf5\xc8\x1e\xcc\x19\x9d\xdd\x10\x5b\xe9\x72\x74\x41\x67\xd7\x8f\x46\x0b\xcd\xd3\xd6\xdb\xc4\x9d\xbd\x3b\xd0\xd8\x05\x22\x4b\x4c\xd6\xef\x4e\x2d\x82\xe7\x1c\xd1\xf5\x2b\x8e\x4c\xc2\x8b\x39\x59\x2c\xe7\xaa\x97\x45\x60\x6a\x06\xf7\x82\x5d\xaf\xd8\xfa\x35\x5a\x5a\xea\xcb\x14\x21\x3a\x45\xb6\xfb\x2e\x53\x44\xaf\x9e\xa1\x9c\x71\x43\xc2\x8b\xc5\x0d\xd1\xec\x22\xe6\x0e\x44\x69\xb3\xc5\x73\xc4\x19\x5e\x3b\x41\xcc\x19\x76\x09\xde\xe1\xd5\xf5\x67\x74\x4b\xae\xd7\xaf\x22\xac\xe5\x93\x31\x7a\xb0\x22\x9f\x5f\xbd\xc0\x8c\xcf\xc4\xe0\xe6\xd1\xcf\x2f\x4e\x2e\xb6\x3b\x82\xa4\xc8\xc4\xa4\x95\x63\x93\x22\x12\xe3\xb5\x85\x20\x99\x47\xf4\x8c\x93\x6c\x8a\xa8\x4b\xf4\x5b\x81\x31\xcd\x74\x89\x0e\x25\xbb\xc6\xf4\xea\x25\x49\x53\x87\xf8\x0f\x21\x78\xee\x08\x95\xca\x85\x81\x0f\x11\xbf\x13\x4b\x87\x01\x84\xd0\xf3\x4b\x7e\xc9\xa6\x88\xe7\x0e\xc9\x05\xca\x16\x88\x12\x3f\xa3\x63\xc6\xe3\xab\x97\xec\xce\xad\xe0\xf1\xcb\x57\x1e\xcd\x09\x4e\xc5\xde\xc3\x6b\xc4\x7b\x12\xe5\x8c\x97\x32\x3b\xc3\x3c\x9f\x3b\x44\x5a\xb1\xb3\xfd\xb3\x8a\x29\x5e\x39\x14\xfb\x07\x17\xdf\x26\x38\x40\x74\x2a\x74\x87\x6f\x53\xbd\x3d\xff\x50\x6f\xd5\xd5\x30\xed\x04\x7a\xc0\x36\x61\xdb\xc1\x26\x74\x03\xc8\x31\xa6\x77\x24\x9a\x7b\x31\xe5\x4c\xab\x19\xc2\xbf\x65\xa4\x04\x94\xb2\xbe\xbc\x38\x80\x22\x2f\x0f\x2e\xca\x08\x25\xb7\x98\x67\xb0\x46\xb8\xf8\x9f\x45\x5a\x38\x90\x9f\xf0\xf2\xe2\xc0\x0d\x6d\xc8\x42\x27\x97\x32\xeb\x19\x4e\x67\x1c\xc5\x58\xcb\xb0\xe3\xcf\xc5\x34\xfd\x2c\x77\x32\x8f\x90\x9c\xb1\x78\xc6\xb8\xd4\x3b\x1f\x21\x39\x47\x1c\x7d\xc6\x60\xd6\x78\x8c\xe2\x9a\x2d\x3f\xe3\xc7\xe3\xff\x44\x33\x8e\xa7\x36\xfe\x60\x4e\x32\x42\x51\xb1\x76\x9e\xe5\xca\x96\x2c\xb5\x14\x87\xc5\x34\x25\x74\x7d\x44\xb8\x93\xed\x4b\x9c\x66\x84\x5e\x93\xb5\xf9\x20\x25\x27\x78\x8e\x16\xd4\x92\xbc\xca\x72\x44\xa7\x45\x2a\x85\x89\x0e\x6d\x88\xbf\x28\xf8\x35\xd8\xed\x74\x57\x91\x6c\xca\xe8\x5a\x28\x5c\xc5\x0c\x39\x29\x8e\x19\x8d\x19\x5d\xdb\x96\x25\x52\x4f\xda\x18\xfd\xa2\xc0\x9c\x66\x5e\xbe\x5e\xfc\xab\x2c\xc5\x42\x5d\x3c\x41\xf4\x31\x92\xd7\x98\x6f\xca\xe0\xc5\xb3\x0d\xd0\x8e\xdf\x3f\xea\xab\x49\x1f\x76\xce\x2f\x2d\x78\x9a\xa5\x6c\xbd\xcf\x23\x21\x0b\x8f\x19\x9d\xad\x30\xe2\xd3\x15\xa6\x65\x0a\x2d\x2f\x5f\x23\x7a\x75\x82\x3c\x82\x33\x8e\x66\x85\x19\xcc\x67\x1c\xe5\x24\x4b\xd1\x2d\x2a\x3d\xdb\x6f\xd8\x45\x64\xc0\x09\x65\x9b\xe3\xdf\xa3\x9c\x44\x6e\xfb\xd5\x4d\xeb\x33\xa6\x04\xa9\x66\x9a\x82\x93\x68\x6e\x4a\x2d\x32\x42\x67\x6e\xad\xfc\xf8\xf7\x28\x2e\xbe\xb8\x77\xd1\x38\xc9\xf2\x05\xca\xb4\x58\xd8\x19\xba\x0e\xad\x45\x74\x2d\x0a\x5b\xef\xd3\x1c\x41\xd7\xa0\x9f\x4f\xa2\x93\x82\xc7\xec\x3b\x54\x72\x35\x39\x63\xb0\x93\xae\x10\xbe\xfd\x73\x83\x7b\xf9\xdb\x3f\x77\x0e\x5e\xee\x5f\x54\x9c\x2b\xcd\x29\x3d\x2f\xae\x1f\x8d\xfc\x03\x2d\x5d\x07\x45\xd0\x66\x95\x5a\x2f\x03\xaf\xf4\xf2\xe3\xf9\x83\xe9\xc0\x39\x22\x72\x29\xae\x78\x62\x69\x00\x74\xfc\x9c\x6d\xa4\xb9\x3c\xff\xf9\x25\xba\x43\x84\x6c\xbc\x68\x66\x7e\x6d\x74\x28\x32\x5e\x49\x24\xbe\x43\xab\x6f\x92\x9c\xa3\x05\x43\x1b\x29\x2e\xcf\x37\x44\xa6\x42\x6e\xa8\x41\x1d\x6f\xf0\x19\xb1\x61\x8a\x96\xd8\x23\xe0\xf9\xd5\x09\xe3\x38\x9b\xae\x4c\x0e\x61\xe0\xb9\x58\x70\x74\x87\x6c\x5c\xa7\x1a\x67\x7c\x38\x0b\x8a\x12\x69\x52\x7e\x84\xe2\x03\xba\xc6\xdf\x8a\x4d\x53\x92\xd5\x3f\x3d\xfc\xd4\x7c\x68\x25\x05\x8d\x72\xc2\x68\x03\xb7\xf2\x16\x6d\x7e\xad\x17\x19\xae\x65\x39\x27\x51\x5e\xdf\x3b\x9d\x7e\xc6\x51\xde\x8e\x71\x42\x28\x3e\x13\xcc\xce\xf3\x55\x23\x6f\xd5\xaf\xae\x70\x76\xc2\xe2\x42\xf0\xe2\xd7\x5b\x94\x16\x78\xf7\x49\xf0\xd0\xdc\xbb\x45\xbc\xc6\x27\x75\x9d\x69\x7d\x32\x99\xe4\xab\x25\x66\x49\xed\x7c\xb5\x98\xb2\x74\x6b\x4b\xfe\x6d\x27\x8c\xb7\xd8\x84\x3f\xb5\xc1\x46\x9d\x63\x14\xe5\x6d\xb1\x6b\x17\x1b\xe2\xe6\xee\x20\x08\x83\x6e\x8b\x6c\xa4\x5a\x32\x2e\xf6\x94\x92\x68\xd0\x42\x1b\x89\x12\x8e\x66\x4e\x5e\xc3\x56\xb6\x91\x4c\xb6\xf6\x6a\xc1\x62\xac\x28\x47\xad\x68\x73\xa9\x9c\x25\x24\xc5\x5c\x92\x85\xbd\x56\xfa\x18\xd9\x2d\x89\x35\x59\x30\x6e\x15\x1b\xc9\x22\x46\x73\x7c\xaf\x6a\x17\x06\xad\xe5\x46\x2a\x94\xad\x68\xe4\x54\x2e\x0c\x5b\xc9\x63\xd9\x45\x05\xe7\x98\xe6\x3e\x75\xbc\xb9\x6f\x18\xbf\x43\x3c\xbe\xe2\x38\x51\x94\x9d\xd6\x7c\x73\xf7\x14\xd9\x12\xd3\x4c\x67\xd8\x6d\x4d\xbf\x49\x76\x95\x92\x4c\xb5\xa9\x13\xb4\x16\x1b\x69\x17\x78\xc1\x54\x76\xfd\xd6\xc9\x46\x92\x14\x7d\x59\x29\x92\x41\x6b\xb6\xb9\x09\x05\x8d\xd1\x42\x1a\x17\x24\xe5\xb0\x75\xbb\x91\x92\xe3\x6c\xc9\xa8\x19\x91\x70\xd4\x5a\x6d\x6e\x43\xc4\x96\xba\x9d\xe3\x3d\xcd\xc5\xb5\xfd\x06\x6e\x7e\x25\x49\xa3\xce\x60\x3e\x38\x5c\x8d\xb7\xb6\x68\x91\xa6\x4f\x26\x13\xdc\xfc\x2a\x98\x3f\x9f\xe0\xf6\x7f\xfd\x97\x8c\xdd\xcb\xee\x48\x1e\xcd\x1b\x79\xf3\x6b\x84\x32\x5c\x63\xbb\x0a\xc0\x13\xdc\x16\x24\x0a\x5f\xee\xc2\x9f\x44\xfe\x41\xf2\x4f\x24\xff\x64\xf2\xcf\x7c\x97\xe3\xbc\xe0\xb4\x86\xf7\x62\x9c\xa0\x22\xcd\x9d\xbc\xb6\xb6\x6c\x99\x2a\xcb\x42\x26\x8b\xe5\x9f\xb4\x9a\x5a\x01\xf9\xc3\x03\x50\x9c\x48\xc2\x85\xfc\x43\x9c\xe8\x07\xd3\x0b\x77\xa2\x17\x54\x84\xe8\x91\xc9\x64\x92\x3c\xe4\xd0\x90\xd3\x64\xb2\xdf\xca\xdb\xfb\x82\x55\x4f\x58\x8c\x27\xcb\x56\xde\x3e\x30\xfc\x08\x50\x22\x21\xc1\xf1\x07\x8c\x66\xc5\x02\xf3\x49\x61\xb1\x33\x35\x67\x26\x69\x2b\x6f\x1f\x49\x19\x30\x61\xad\xbc\xfd\x5c\x32\xea\x3b\x9c\x4c\x62\x11\x54\x73\x7a\x82\x5a\x79\xfb\x18\x7d\x59\x4d\x4e\x5a\x79\xfb\x04\x2f\xd8\x64\xd1\xca\xdb\x67\x20\x17\x26\x44\xfc\x54\x93\x75\x12\xb5\xf2\xf6\x39\xcc\x71\xa8\x48\x26\x82\x8a\x59\x27\xf3\x56\xde\x26\xd9\x7b\x94\x92\x58\x15\x7a\xb1\x5a\xe2\x89\x95\x8a\xba\xc9\x75\x21\x25\xe8\xcc\x1d\xfb\xf5\x7a\x93\xa0\xc3\xeb\x35\x9e\x4c\x26\x48\xfe\x49\xe4\x9f\x48\xfe\xc9\xe4\x9f\xb9\xfc\x33\x5d\xaf\xbf\xc9\x51\x5b\x5b\x0d\x3b\xb0\x93\xc9\xe4\x64\xbd\xf6\xc2\x8b\x52\x38\x2d\x85\x8b\x52\x38\x2e\x85\x67\xa5\xf0\x6d\x29\xbc\x6a\x3e\x40\xef\xd8\x61\xad\x76\x0b\x70\xc5\x7a\xad\xf8\x61\x29\x13\x94\x46\xfe\x4e\x83\xde\xd8\x6f\xc8\x4b\xe5\x52\x3c\xb8\x09\x0c\x63\x3c\x9e\x20\x95\x09\x34\xd7\x6c\x18\xbc\x6f\x77\xb3\xd7\x6a\x26\x33\x73\xd8\xee\xf1\x82\x63\x45\xab\x79\xf2\x71\x4a\x24\x29\x81\x61\x1f\xa7\x3a\x91\x54\xc0\xcd\x8f\x53\x2d\x24\x95\x62\xf5\xc7\xe9\x88\xa2\xd3\xf3\xe0\x71\xca\x48\x52\x3a\x93\xe4\x71\xda\x4c\xd1\xea\x19\xf4\x38\xe5\xfc\xa1\xaa\x5e\x48\x05\x81\x36\xc2\x4e\xbf\xb9\x87\xdb\xf8\x5e\x2c\xe4\x99\x97\x09\x49\x1a\xf8\xd7\x49\xbf\xdf\x19\x0f\xb6\xb6\xf0\x2f\x93\xfe\xb0\xdb\xeb\xae\xd7\xf8\xd7\x30\x0c\x7b\x61\x18\x36\xd5\x98\xfe\x55\x24\x49\x12\xd7\xf7\x70\x8d\xd0\x1a\x17\x93\x65\xc2\x3f\xe2\x4f\x52\x09\xc9\x27\xf5\xfa\x1e\xfe\x75\xd0\xef\x77\xfb\x22\x6a\x67\x22\x7e\x0e\x5a\xf9\xf6\xe4\x1c\x26\x72\x3b\xe1\x6c\x71\x30\x47\xfc\x80\xc5\xb8\x81\x7f\xfd\xf5\xd7\x30\xd8\x0a\x83\x4e\x77\x0d\x25\x37\x5b\x78\xd2\x1f\x74\x3b\xc1\x5a\x60\x5b\xb8\xb9\xa7\x45\xe2\x23\x19\x34\xbd\xc6\x36\xbf\xda\xb6\xbd\x3e\x3f\x7d\xdb\x5e\x22\x9e\xe1\xc6\x4f\x5f\xeb\x41\x7d\x57\xd4\xa4\xdb\xaa\x87\x9d\x51\x7d\x77\xd4\x1d\xf4\x5a\xf5\xb0\x1b\xd4\x77\x47\x9d\x70\x24\x7e\x86\xf5\xdd\x5e\xd0\x11\xbf\x3a\x02\xec\xc0\xcf\xae\xf8\xd9\x0d\xc4\xcf\x1e\xa0\x90\xaa\x0f\x3f\xfb\xe2\xe7\xa0\xbe\x3b\x0c\x21\x7e\x28\xc0\x1e\xfc\x1c\xd5\x77\xbb\x7d\x48\x3f\x06\x70\xdc\xaa\x87\xbd\xa0\xbe\xdb\xed\x8a\x92\x7a\x9d\xfa\x6e\x77\x14\x8a\x5f\x90\x51\x38\x10\x3f\x07\xf0\x73\x28\x7e\x42\x4e\x1d\x91\x53\x6f\x04\x3f\x81\x16\xb2\xea\x08\xda\xbe\xac\xb5\x40\xfb\x21\xfc\x14\x65\xf5\x3b\xf5\xdd\x61\x17\x7e\x89\x5a\xf7\x46\xf0\xb3\x27\xaa\x22\x5a\xdd\x87\xb2\xfa\x22\xd7\xfe\x40\x54\x45\x54\xaa\x2f\x6a\x2a\x09\xc7\xf5\xdd\xee\x70\x50\xd2\x4d\x1f\xef\xcf\x7d\x14\x15\x39\xae\xef\xd6\xff\xba\x8f\xc2\x7a\xab\x8e\x6c\x18\x8b\xf0\xfe\x94\xe3\x5b\x08\x17\x41\x18\x08\xad\x1a\x79\x48\x57\x20\x11\x84\x3a\x9d\x2e\x86\x50\xac\x83\x09\x04\x8f\x4c\xec\x5f\x45\xd0\xed\x8a\x14\xfb\x11\xe1\x91\x2c\x14\xb2\x34\x41\x2c\x83\xba\x0a\xd3\x1e\x10\xaf\x64\x69\x3d\xd0\xf8\x91\x09\xc2\x7b\x21\xfb\x47\x29\x99\xc9\xac\x06\x22\x16\xeb\x20\x7c\xda\x11\x25\xb2\xf0\x60\x10\x4a\xdf\x0c\x08\xc6\xa3\x6e\xff\xaf\x22\x8e\x83\x1e\x90\xf8\x60\x08\x06\xca\x19\x47\xb7\xaa\x5b\xa0\x50\x1b\xc6\x10\x4e\x71\x92\xad\x16\x32\x73\xc1\x48\x00\x2d\xe7\x2e\xb0\x9f\x2e\xe7\x48\x56\xb5\x3b\x86\xbe\x75\x80\x29\xd4\x67\x81\x22\xae\x7b\x12\xb2\x75\x81\x50\x02\xe9\x4c\x66\x8a\x64\x77\x2e\x96\xf5\xdd\xfa\x96\x48\x7c\x72\xa6\x7e\x81\x31\x5c\x75\x3a\xea\x43\xd1\x36\xd8\x95\x04\x6a\x0c\x3a\x43\x19\x34\xd1\x91\x0c\x67\xa9\xd0\xdc\x14\x36\x92\xd8\xad\x0e\x23\x08\xcf\x74\x16\x81\x0c\x2a\xf2\x31\xea\xc9\x70\x8a\x4b\x04\x8b\x2c\x46\x48\x13\x8d\x2c\x36\xd5\xd8\xd8\x62\x91\xc6\x90\xc5\x62\x8d\x4d\x2d\x66\x0a\x8d\x2c\x96\x68\x2c\xb6\xd8\x4c\x63\xd8\x62\x73\x8d\x25\x06\xd3\x35\x0e\x25\xc2\x73\x05\x84\x89\x06\x6e\x55\x6d\x3b\x53\x6c\x21\x5d\xb3\xb1\x2a\x31\xd3\x03\xdf\xe9\x74\x14\x92\x4b\xde\xe9\xcb\xe0\x17\xc4\xe5\xb0\x76\xba\x43\x38\xae\x62\x33\x46\xf5\x38\x43\xff\xb9\x00\x8c\x20\x5b\x26\x1e\x5b\x76\xa1\x07\xcb\x68\x1f\xca\x5b\x8a\x09\xa4\x46\x6b\x00\x55\x5f\xaa\xfa\xf4\x20\xd5\x52\x4d\x41\x34\x84\xa1\xd1\x23\xdd\xe9\x41\x6f\x2f\x89\xee\x87\x1e\xf4\xf4\x92\x65\x22\xfc\x93\xa8\xc5\x72\x99\xae\x9e\x6b\x25\xcd\x99\x49\x68\xb9\xe4\xec\xde\x2f\x44\x20\xf8\xc6\xcd\x7a\x1f\x54\x3e\xdb\x11\x26\x08\x2f\x75\xed\x67\x91\x37\xf3\xa2\x31\x0c\x6a\x19\x9d\x0e\x80\x36\x23\x33\x55\x83\x4e\x1f\x7a\x0c\xba\xf8\xff\x80\x5f\xab\x85\xdf\x5e\x01\xd8\x9a\xc8\x33\x05\x92\xc6\x6a\x3e\xc3\x8c\xb0\x61\xb8\x0c\xb1\x5f\x2c\x52\x19\x0b\x79\xeb\x10\xdc\xc9\x40\x77\x11\xa3\x84\x6a\xde\x00\x01\x86\xee\x0c\x80\x42\xd1\x21\x53\x14\x5d\x47\xcc\x4c\x92\x5e\xa4\x30\xbc\xcc\x48\xaa\x87\xb6\x9b\x0c\x14\xbc\xe4\x64\xa1\x46\x21\x00\x61\x21\xc0\x8c\x2c\x74\x19\xb1\x85\x4c\x43\x22\x01\x3e\x13\x60\x8a\x32\xcd\x70\xe1\x00\x40\xae\x27\x2b\x1e\x42\x4a\x7e\x8b\xf5\x20\x4f\x65\x5e\xfc\x0e\xab\x61\xee\x02\x83\x3d\xf3\x90\x81\xa1\xd1\xf3\x5a\x52\x4d\xa7\xfc\x5a\x85\xa7\x3a\x9c\x3b\x18\xa4\x2b\xb7\xfb\x99\x15\xd8\xd0\x35\x56\x60\x43\x30\xbe\x29\x98\x6a\x3a\xc8\xda\x29\x8e\x50\x91\xe9\x96\xf7\x0d\x82\x5d\xe8\x59\x15\x9a\xe2\xc5\x32\x5f\xa9\x86\x8f\xc1\x9b\x7e\x2a\xba\xdb\xeb\x6b\xcc\x29\x2b\x94\x54\xee\x40\xe5\x00\x01\x0b\x8e\x87\xe6\x46\x54\x77\x20\x9d\x09\x4f\x55\xd8\xc8\x76\x99\x6f\x7e\x87\xb1\x66\xc8\x01\x64\x51\x5e\x5c\xa0\x8e\xe5\xc5\x45\xcc\xce\x29\x99\x45\x66\x86\xc2\x02\x28\x10\xb5\x04\x16\x9d\x3e\xd6\x44\x85\x21\xea\x4a\x84\xc5\x4c\x73\x1d\xac\x17\x02\x5a\xa6\xba\xf3\x10\x2c\x19\x02\xcb\xc9\x02\x1b\x50\x15\x90\xdd\x98\xfc\x90\x1c\x6f\x32\xcb\x72\xa4\xe4\xc6\x40\x56\x97\xcc\x72\x4e\x40\x98\xc7\xec\x4e\x35\xaf\x2f\x39\xc8\x46\xe9\x6c\xfa\x53\x55\xad\xc2\xad\x43\x4f\x62\x96\x01\x23\x55\x2b\x87\xb9\x3a\xb0\xa8\x4e\xaf\x11\x67\x77\x6a\xfc\x02\x28\x24\x45\xd1\x75\xca\xbe\x60\xbb\xbc\xc0\xe1\x03\xe0\xd9\x4d\x81\xb8\x82\xfb\xb0\x50\x00\xac\x6b\xa5\xeb\xd4\x2b\x47\xb8\x2d\xc1\xe5\xc8\x14\x27\xaa\x47\xfb\x72\x24\xdc\x48\x4e\x66\x73\x1d\x3b\x1d\xc9\x58\xaa\x78\xbf\xd7\x81\xc6\xa7\xd7\x61\x47\x51\x48\xc6\x49\xaf\xc3\x9e\x06\x42\x09\x74\x0d\x20\x93\xb0\x48\xe5\xd1\x1f\x41\xa6\x54\xd4\x7d\x22\xe6\x03\xc8\xc5\x29\xc5\x37\x05\xb9\xd5\xbc\x15\xda\x88\xb7\x66\xf4\x31\xf4\x16\xd5\xe1\x2e\x68\x46\xcf\x2a\x6b\x86\x58\x61\xa7\x95\x35\x03\x6a\xa1\x93\x76\x50\x5f\x06\x73\xb6\xf0\x91\xbb\x9c\x98\xe1\x82\x7a\xb2\xfb\xa9\x96\xf9\xe3\x48\x66\x7d\x1f\xa7\xaa\x29\x50\x03\x01\x1c\x2b\xa0\x2f\x73\xb9\x3f\xd4\x14\x70\x4d\x50\x00\x86\x62\xa8\x92\x28\x1e\xec\x07\x91\x02\xde\x69\x8a\x8e\x4a\xa2\x29\x54\xdd\xef\x0f\x0d\x45\x4f\x02\x73\x9d\x85\xaa\xc6\x4b\x1d\xaf\xc2\x73\x25\xea\xfa\x1d\x55\xc6\x4b\x0d\x0c\x74\x0e\x87\x1a\x50\x15\x7f\x69\x00\x55\xf1\xb9\x12\x24\xfd\xae\x4a\xf2\x52\x03\x03\xd5\x92\xf9\xa5\x06\x54\x87\xbd\x34\x80\xea\xaf\x05\xa1\x46\xd6\x8d\x13\x89\xd9\xd9\xd3\x19\x63\x09\x39\x13\xb8\x83\x54\x13\x0a\xd3\xd5\x2a\xf3\xc2\x74\xe4\x54\x02\x97\xa6\xab\x55\x23\x2f\x0d\x45\xac\x92\xe8\x8e\x0c\x55\x13\x0a\xd3\x91\x2a\xd3\x4b\xd3\xd5\xaa\xc6\x97\x86\x02\x49\xe0\x56\x77\xb5\x1a\x9c\xf7\x3a\x3e\x54\xf1\x7a\x2c\xba\xaa\x16\xb7\x7a\x30\x06\x2a\x87\xf7\x9a\x62\xa0\x2a\xfe\xde\x50\xe8\x24\xba\x25\x1d\x55\xcf\x5b\xdd\x92\x81\x2a\xe5\xbd\xa6\x18\xe8\x6a\x18\x0a\xc5\x23\xb7\xa6\xad\x3a\x53\xd3\x12\xd5\xcb\xef\x4d\x5b\xd5\x48\xbc\xd7\x14\x03\xe8\xf3\xea\x2a\x6d\xb7\x3e\x9d\x58\x74\xd8\xb3\x32\x30\xe5\xb7\x53\x29\x53\xef\x11\xb0\x4d\x45\x9d\x11\xac\xf2\x4c\xa3\x6a\xf9\x99\x66\x78\x41\x54\x41\x3d\xa8\x4b\x59\x17\xc8\x4c\x4d\xa4\x1e\x30\xcd\x58\xaa\x15\x69\x50\xae\x04\x20\xc2\x7f\xfd\xf5\x97\x0a\xcd\xb3\x42\x51\x0c\xe5\xfc\x2d\x52\xd5\x67\x01\xa8\xa9\x22\x8c\x73\x1f\xb1\x8a\x14\x56\x61\xad\x3a\x22\x0d\x18\xe5\x51\xd4\xf3\x59\xe1\x6a\x5a\x86\xe4\xc6\xa5\x39\x30\xfb\x39\xa1\xdc\x8a\x4e\x89\x3c\x64\x08\xc8\xd2\x6e\x61\x7a\x3d\x89\x4c\xb9\x5d\xb1\x7a\x63\x89\x99\x85\x13\x81\xb2\x6a\xd7\xd1\xce\x18\x8a\xd2\xc1\xb8\xa3\xe8\x6d\x0e\xaa\x1c\xbb\x84\xf6\x02\x99\x84\xe4\x28\x3d\x24\x49\x82\x39\x38\x6c\xa5\x6a\xde\x8b\x6d\x3d\xa4\xc8\x4c\x11\x7f\x15\x09\x06\x09\x13\x21\x6e\xba\xae\x17\x4a\x40\x6b\x79\x9d\x68\x08\xf9\xae\x52\xbc\x32\x4a\x86\x18\xb3\xc8\xe6\x85\x40\x2b\x3d\x70\x52\x85\x20\xfc\x22\x0f\x91\x34\x38\x26\x4a\x37\x85\x16\xd8\x30\xe8\x7a\x07\x46\x71\x08\xc2\x60\x04\x04\x0e\x00\x9d\xe2\xab\xaf\x50\xfd\xa8\xb0\x35\x89\x34\x90\x29\x96\x43\x20\x34\x0f\x74\x47\x05\x61\x20\xe6\x6d\xe4\x84\xa1\xeb\x4d\x3d\x60\x69\x3c\x10\xc1\x14\x59\x20\xf2\xd5\x33\x18\x0f\x2c\xab\x71\x8f\x74\x08\x73\x95\xeb\x3d\xcc\x8b\x03\x80\x0e\x5d\x28\x2a\x69\x50\xb0\xbb\x3c\x48\xb8\xdb\xb1\x07\x2f\x8d\x8a\x09\x1b\xdc\x68\x6e\xc2\x72\xd4\xe7\x58\x2f\xb9\xc3\xb0\xab\x81\x05\xe2\x1e\x78\x30\xd7\xaa\x23\x92\x89\x74\x50\xf6\xbb\xe9\xd5\x0e\x18\x1a\x44\xd8\xf0\x79\x5f\x53\xa4\x18\x71\xce\xee\xac\x56\x11\x82\x4f\xb9\x13\xe5\xe8\x14\xe1\x74\x6a\xe2\x62\xb9\x9f\x81\x35\xc0\x41\xad\x56\xd8\x19\xdb\x8c\xe2\xd8\x6e\x00\x60\x0f\x7a\x00\xf0\xa1\x59\xd3\xc7\x63\x4b\xfb\x4e\xf6\x38\xb6\xc8\xb9\xd2\x60\x40\x2a\xc8\xa4\x27\xee\xb2\x34\x30\xf0\x99\xb3\x32\xf5\x0d\x7a\xe1\x2c\x4e\x63\xd5\x72\x25\x37\x23\x55\xf7\x23\x2d\x9a\xba\x32\x8c\x4b\x1d\x95\x50\x67\xff\x14\x48\x6c\xa1\xf7\xa1\x08\x14\xe0\x88\xf0\xcc\x64\x3c\x06\xe5\xec\x40\xa8\x4e\x77\x24\xc3\x07\x8c\xe6\xac\xe0\xaf\x68\x8e\x67\x1c\xa5\x9a\xb5\x15\x4d\x86\x0f\x0a\x9e\xae\x0e\x59\x31\x4d\xf1\x6f\x05\xcb\xb5\x0c\x0f\x63\x8f\xc0\x8b\x82\x1e\x4b\x8b\xa9\x6a\xd8\x00\x56\x11\x00\x0a\x92\x7b\x18\x93\xfb\xb9\x5d\x91\x17\xd3\x7b\xbb\x4e\xa7\x3b\xd4\x80\x36\xa4\x0c\x7b\x9a\xdc\x34\xdf\x22\x37\x3e\xb4\x58\x20\xc8\x51\xfd\x16\x25\xfe\x9f\x32\xa0\x25\x1a\x28\xf7\x22\x9c\xe8\x12\x41\x0f\x10\x88\x3a\xf2\x2d\xd1\xa5\xf8\x5e\x0f\x93\xb4\xdc\xb9\xfb\xb4\xbe\x0a\x5b\x69\x38\x80\xce\x61\x74\xc6\x0b\x9b\xd9\x40\x66\xe6\xc8\x8f\x0e\x96\x64\x0e\x92\x48\x64\xc3\x88\x00\x71\x54\x51\x40\x7b\x90\x40\xa1\xa6\x72\x4b\xce\xb4\x21\x02\x58\xe2\x00\x90\x22\xca\x5d\x30\x62\xcb\x95\x64\x68\x10\x6d\xa7\x67\x7f\xd8\x90\x88\xcb\xb4\x60\x08\xe5\x70\x14\x42\xa0\x7c\x8f\x6f\x60\x58\xb9\xb1\xd1\x84\xb0\xd5\x8d\x38\xcb\x32\x2d\x1f\x20\x33\x0b\x20\xd9\xe6\x8a\x01\x03\x9a\x5b\x59\xf1\x61\x98\xcc\x62\x8c\xa2\x44\x85\x35\x9f\xc4\xa1\x04\xf4\x4a\x15\x07\x2a\x6c\x08\xa0\x83\x72\x33\x56\x1d\x39\x41\x8a\x18\x71\xae\x1a\x31\x06\xfb\x90\x84\xf4\x9c\x01\x95\x25\x2a\xf0\x92\xeb\x45\x11\x4b\x20\xd3\x32\x25\x96\xf9\xa4\x4e\xd3\x07\x06\x59\xea\x6c\x60\xed\x2a\xc4\x72\x6c\x17\x5f\x59\x9a\xbb\x1c\x83\xd4\x28\x96\x76\x09\xee\xa9\x74\x9a\x17\x90\x24\xd0\x45\x77\x55\x0e\x76\x81\x46\x12\xb1\xcd\x1c\xa9\x1c\x98\x36\x6e\x49\xb6\x2d\xec\x8a\x8c\xec\x8a\x5c\xb8\x03\x38\x34\xc8\x42\xb7\x22\x92\x50\xba\xc2\x37\x4b\x8e\x23\xbf\x4b\x00\xce\x8a\xa8\xd4\x31\x3c\x5d\x39\xfb\x58\x43\xea\xed\x64\x15\x25\x97\xd6\x80\x7b\x30\x87\x46\x05\xbf\xad\xae\x04\x03\x2f\xc6\x5b\x08\x64\x7d\x2b\x65\x19\x0b\x8d\x2a\xa6\x64\x89\x02\xb6\xb8\x73\x00\x60\xa4\x55\x1a\xe5\x72\xf9\xeb\x74\x61\x79\x8c\xd1\x6c\x86\x55\xd7\x04\xb0\x7e\x1e\x7a\x48\x08\x34\xa9\x63\xe2\x18\x01\x62\xba\x13\xf6\xad\x87\x36\x8c\x20\xc5\xbe\x09\xc3\x58\xda\x35\x29\x08\x65\x19\xd9\xdc\x58\xa5\x7a\x8a\x40\xef\x6a\x11\xa4\xf0\x0d\x00\x09\x40\x29\xd2\xcb\x6c\x2c\xea\x7e\xe8\x29\x44\xa2\x57\x62\x0f\x49\x80\xc6\xd8\x9b\xa0\x1c\x6b\x6f\x82\x60\x5c\x6d\xac\xd3\x36\x70\x9f\x3c\xf4\x54\x3e\x6d\x1d\x0f\x81\xa7\x0f\x0f\x59\xce\x91\xde\x3f\x8e\x43\x99\x01\xcb\x33\x2d\xc2\xd1\x50\x8c\x5e\x8c\xa5\x69\x13\xec\x50\x87\x58\xcb\x16\xd0\x6e\x0f\x71\x6a\xcd\x4b\x50\x27\x07\x98\x4a\xc0\x53\x96\xa0\x8c\x84\x64\x9a\x41\xc6\x43\x68\x67\xd9\xc2\x04\xe5\x96\xf5\x23\x48\xfb\x52\xdb\x75\xc6\xb0\x9b\x8d\xe7\x48\x0b\x8a\x10\x96\x64\x01\x98\x1e\x10\x6c\x74\x48\x50\xc4\x49\x4e\x22\x94\xee\xfb\xc7\x2f\x4e\x8c\x56\x30\x82\x4e\x3c\x2e\xc7\x88\xb5\x76\xdf\xaa\xf5\x6a\xf4\x2c\xc5\x0b\x75\x80\xf2\x7f\xfb\xf0\x85\xb6\xc3\x8a\x24\x62\x8a\xc6\x04\xe9\x9d\x0f\xd8\x62\x45\x98\x99\xf3\x8b\x48\xd5\xa8\x0c\x29\x2a\x77\xad\x1e\x28\x38\xf3\x01\xd9\x32\x38\x8f\xd8\xa8\xf3\x4b\xaa\x19\x92\x0b\xb2\x18\x20\x68\x49\x4c\x32\xa2\xd7\xdd\xa4\x03\x00\x8c\xd6\x7d\x32\x94\x01\xa2\xcc\xc9\x4e\x98\x51\x77\x1b\x1f\xa9\x08\x46\xef\x5d\xe4\xf0\xb5\x61\x57\x58\x07\xe3\xcf\x26\x0c\xd6\x8f\x38\x8d\x18\x57\x25\x77\xc1\x5e\x1a\xa7\x11\x67\x4a\x68\x76\x61\x8f\x10\xb3\x34\x85\x01\xff\x2f\x91\x61\xc5\x0a\x34\x05\x92\xf2\x22\xdc\x07\xda\xdc\x76\x47\x5c\x1a\x5d\x96\x1b\x85\x32\x90\x43\xc3\x72\xab\xb6\x04\x1a\xb0\xe2\x1a\x0c\x00\x87\x2c\x3f\xba\x29\xcc\xda\xaa\xe9\x5c\xbb\x47\x57\x95\xe6\xd8\x3d\xe4\xc4\x65\xb9\x6b\xe3\xeb\x48\x31\x03\x9c\x55\xb6\x4d\xc3\xc4\x84\x98\x47\x14\x8f\xc4\x10\x78\x6d\xd4\xd0\x1d\xdd\xe7\x46\xf4\x48\xf9\x25\xa3\x8e\x71\x92\x7b\x51\x81\x17\xf5\x4e\x08\x6d\x2f\xbe\xe7\xc5\x5f\x68\x09\x2e\x45\x9e\x8a\x60\x74\x56\xca\x77\x98\x8c\x2a\xd1\xe5\xbc\x87\x09\xf2\x68\xaa\xf1\x63\x13\x5f\xad\x57\xc7\x8f\x33\x15\xeb\x38\xfd\x70\xb9\xf4\x92\x84\x4e\x44\xa5\x8b\xfa\x26\xf2\x3d\xe6\x30\x75\x9f\x69\x19\xd3\xe9\xc8\x48\x95\xc2\xe0\x63\xd8\x56\xc5\xec\x8e\x22\x27\x27\xb9\x98\x94\xb2\x37\x20\xaa\x0e\x8b\xa2\xf4\x2b\x9b\xe8\x22\x1d\x0b\x4c\x57\xca\x66\x76\x47\x4d\x99\x99\x2b\xe5\x05\x3a\x47\x7c\xc9\x18\x75\x96\xe5\xa8\xeb\x47\xb9\xeb\xb2\x14\x8d\xec\x8e\x9a\xf1\x79\x8f\xa3\x5c\xab\x23\xe3\x7e\xe0\x44\x5f\x60\xec\x47\x62\x27\x52\xc6\xd8\x9e\xe9\x0f\x2a\x91\x5a\x15\x88\x55\x8c\x1e\x36\x3f\xd3\xc4\x8d\xad\xe4\x3a\xac\xc6\xea\x96\x84\x2a\xea\x02\x63\xb7\x1f\xd1\xd0\xe2\x9a\x41\x60\x2e\x72\x6f\x71\x86\x15\x3d\xe6\xae\x28\x4a\x24\xe2\x88\x22\x21\x23\x0e\x2b\x3a\x31\xd0\x55\x74\x62\x60\xdd\x73\x2b\xfa\xfa\x92\xca\x88\x3e\x19\x66\x5a\xbb\x85\xc3\x9c\xc3\x2c\xe7\xec\x5a\xad\xfc\xb2\x46\x1e\x02\xa3\xef\x68\xc9\x89\x04\xb8\xb2\xac\xf5\xa7\x89\x0a\x27\x1a\x00\x71\x5a\xd8\xa5\x10\xb8\x2a\x2e\xe6\x76\xf5\x84\x24\x77\xce\x01\xc3\x18\xcc\x7a\x87\x7f\xda\xaa\x03\xc9\x17\x5b\x75\x19\x26\x33\xab\x8f\x0e\x13\x81\x1d\x39\xae\x16\xa2\xf9\xd8\x71\xb5\x90\xe1\x2c\xc7\xe6\x18\x17\x2e\x07\xb8\xaa\x4e\x28\x58\x18\x7b\x08\xdc\xcb\xb0\xae\x14\x92\xc0\xb8\x52\xe8\xa0\x96\xc4\x03\x08\x3b\x3b\x56\xe8\xe4\x23\x6b\x3a\x89\x81\xc0\x58\x4e\x20\x78\x68\xd6\x00\xa9\xe6\x1c\x59\x2b\x10\x1c\x3d\x62\x27\x3c\x84\x04\xfe\x72\xa0\xb9\x2a\x04\x43\x0c\x4e\x9c\x68\x31\xb7\x8e\xca\x2a\xcd\x08\xa8\x4a\x2a\x8d\xa0\xc4\xda\x0d\x02\xec\x20\x47\x8e\x7f\x06\x24\x71\xfc\x33\x64\x58\xef\xd4\xc0\x9a\x81\x67\x99\xdd\xe8\x8e\x81\x20\xd5\x21\xd1\xf5\x47\xfe\x0e\x5a\x12\x10\xb1\x75\x54\xd9\x74\xc1\xd6\x86\xb5\x01\x35\x04\xc9\x86\x53\x53\x48\x5f\x06\x9d\x42\xa0\xb3\x1c\x77\x0e\xf0\x48\xc7\x2e\x00\x59\x08\xb5\x4f\x17\xdb\xd7\x40\x86\x73\x17\x3b\x12\xd8\xf9\x02\xa5\xe9\xb9\x7b\x04\x96\x4c\x35\xfd\x6d\x85\xfa\x3d\xe6\x1b\x52\x20\x99\x22\x5b\x86\x5d\xb5\xae\xc3\x69\x1d\x20\x3d\x8d\xf4\x15\xa2\xc3\xa2\x9a\x47\x6f\x5f\xa8\x5a\xc3\x26\x0d\x2b\x3b\x42\x10\x82\x11\x16\x53\x4b\x0d\x83\xea\x38\x33\x80\x8d\x02\xbb\x00\xf4\x77\x45\x47\x89\x80\xac\xac\xa3\xc0\xd8\x2d\xcd\x3a\x03\x8b\x90\x08\x67\x5a\x2e\xc0\xe1\x3d\x76\x8e\x1f\x87\xc0\x74\xf6\x14\x18\xb6\xf2\x47\xde\x21\xbc\x1c\x2c\x0f\x9a\x6a\xe8\x56\x01\x20\x08\xf0\x8d\x63\x7e\x93\x75\xb9\xa9\xcc\x1f\x7c\x63\x4d\xf5\xbd\x8e\x04\x52\x44\xf3\x59\xce\x3d\x0e\x94\x68\x8a\x33\x8f\x67\x1c\x55\x09\x0d\x65\x76\x05\x02\xb6\x9a\xe8\x58\xab\x21\x9b\x02\x0a\x6c\x8c\x85\x20\x6d\x8e\x6e\x0a\x92\x92\x29\x27\x85\xf6\x48\x8a\x22\x49\xe8\x1c\x23\x6a\x40\xef\x75\xd0\x10\x86\xe6\xe6\xd6\xeb\x4f\xa8\x83\x95\x5c\x63\xd9\x9f\xdc\x99\xb6\xd0\xe3\xce\xf9\x05\x54\xc0\x86\xc1\xbe\x8c\x33\x47\x2b\x84\x7b\x77\xa6\x93\xd0\x50\x66\xe0\x77\xda\x91\xdd\x1f\xc1\x44\xb3\xbb\x23\x98\x47\x17\x70\x3e\x74\x0f\xca\x98\xda\xa6\xde\x27\x90\xaf\xf1\xdb\x00\x46\x34\x7e\x1b\x32\xc4\xb5\x9f\x01\xb8\x0b\xe1\xfb\x48\xc4\x3e\x81\x9f\xc4\xf4\xa0\x64\x70\x01\x64\x2e\x82\xef\x97\x38\xca\x91\x75\x7c\x51\x2d\xbb\x5f\x32\x2a\xb7\x0c\x9e\x64\x3b\xb2\xf8\x91\x8b\x27\x28\x4d\x09\x98\xd9\x32\xab\x3b\x8b\x16\x3f\xb7\x72\x57\xcc\xc1\xc4\xca\x5d\x08\xe2\x85\x29\x60\x00\xe7\x14\x49\x42\x94\x67\x5b\x91\x4c\xa1\x86\x49\xe2\x00\x92\x24\x75\x10\x91\xcd\xf3\xb2\x78\x1d\x03\x59\x49\xbc\x42\x66\x6e\xee\x62\xcc\x9f\x93\x34\xc5\xf1\x06\xa9\x13\x99\xc8\x47\x84\x8c\x90\x10\xc9\x67\x99\x5d\xf2\x59\x04\x52\x64\x76\x65\x31\x84\x9d\xb2\x3a\x00\xe4\x34\xd3\x6b\xb2\x28\x3c\xa1\x2c\x51\xf2\x02\x4e\xd5\x9f\x57\xe4\x05\xe4\x53\x91\x17\xd0\xe3\x8c\xa3\xd4\x6c\xbf\x03\x48\xcd\xf7\x7d\x24\x61\xda\xf4\xdf\x01\x05\x5e\x84\xb5\xad\x02\x36\x3f\xcf\x59\xc1\x09\xe6\x39\xd7\x36\x4a\x30\xad\x24\x4b\xc4\x73\x6b\xb8\x86\xbd\x57\xc2\x51\x24\x5d\x00\xee\xa7\x26\xac\xc4\x6b\x08\x93\x05\x90\x9e\xa4\x88\x74\xb8\xaf\x29\xfa\x1a\x19\x68\x64\xac\x91\x91\x46\xa6\x0a\xe9\x98\x7c\x7b\x1a\x31\xf9\x0c\x14\xd2\x55\x25\x61\x1d\x36\x14\x43\x8d\x98\x7c\x75\x6d\x7a\x86\x66\xa4\x90\xbe\xa9\x0d\xd2\x88\x49\xa5\x5b\x39\x34\x88\x2a\x4b\x4b\x91\x40\xb2\x30\x37\x7e\x17\x5d\x58\xc1\x93\x8a\x12\x28\xda\xf5\xdc\x11\x1d\xa2\x8f\x67\xee\xd9\x20\x88\xe1\x17\xce\x5e\x1c\xf6\x09\xee\xe6\x1c\x5c\x50\x80\x22\x56\x08\x6c\x55\x67\x1e\x12\x03\xa2\xed\x8c\x23\xd1\x55\x2f\x5c\x2f\x56\xd8\x56\xcf\x3c\x44\x48\xb5\x17\xe6\x88\xab\x08\x42\x68\xc2\x0b\xe7\x6c\x0d\x4e\x95\x67\x2e\x10\x03\x85\xb1\x45\x41\x55\xad\x2d\x0a\x2a\x6a\xb5\x25\xb0\xc3\xcd\x9c\x30\x34\x5e\x0b\x7a\xb0\xda\xcc\xb4\xe7\x2c\xb8\x17\xcc\x8e\xf4\x42\x31\x82\x92\x8d\x89\x29\x9e\x42\xf0\xc6\x4b\x8a\x6f\x6e\xbc\xc4\x6a\xfd\xd1\x32\x18\x1a\x8c\x33\x6d\xef\x44\x60\x3f\x9f\x19\x9f\x21\x1d\x6f\xf5\x99\x51\x60\x10\xa6\xa1\x8e\x85\x4c\xd5\x7a\x12\xb3\x75\x33\x06\x5a\x81\x9a\x02\xc0\x0a\xf6\xa2\x2c\x9d\x04\xaf\xcd\xca\xd2\x09\x72\xd4\xe7\x16\xe0\x30\xf0\x42\x87\x60\xaa\xce\x66\x7e\x90\x2c\x74\xcf\x84\x70\x24\xf3\xc2\x31\xb0\xc0\x90\x38\x06\x16\x08\xa7\x48\x77\x02\xf4\x9c\xae\x3a\xa8\xbb\x33\x2d\xcd\x11\xc8\xa1\x59\xfa\x59\xd3\x42\xb5\xa8\x65\x2a\xa4\xc2\xd6\x2f\x52\x63\xda\x22\x00\xce\x3e\x33\x6a\x06\x75\x2c\x63\x6f\xfc\x68\x67\xe0\x24\x81\x5d\x29\x41\x07\x7d\x51\x11\x85\x30\x56\x15\x51\x08\xb9\x39\x36\xb7\x17\x1c\xa3\x1c\x73\xd7\x36\x03\x9c\xe2\xe2\xc7\x46\x3b\x91\x4c\xa5\xe2\x9e\x17\x69\xea\xa5\x1b\xda\x38\xf5\x47\xf7\x4a\xc7\xc6\x38\x99\x0d\x9d\x04\xe7\x82\x0d\x3d\xb5\x07\xdb\x48\x57\xd7\x01\x3d\xe1\x45\x59\x66\x40\x09\x33\x2b\x33\x24\xcf\xd8\x3e\x82\x54\x33\xeb\x2d\x81\x46\x58\x01\x46\xe1\x07\x66\xcc\x2d\xeb\x0f\x65\xd8\x78\xd0\x0e\x21\x4b\xc1\xf8\xbf\x8a\x1a\x5c\xe8\x1f\xb9\xcb\x83\x33\x67\x9f\x19\xcb\x1c\xd2\x33\xb3\x6d\x04\xdd\x6e\x96\x3b\x8a\x1a\x02\xbf\xdf\x59\xce\x7d\x0e\x19\x28\xd0\xea\x5b\x23\x89\x54\x72\xe7\xf8\x26\x2d\x0d\x0f\x80\x0e\xaa\x04\x43\xce\xd3\x52\xd7\xcf\x72\x5e\xee\xa1\x5b\xcc\x73\x8f\xd7\xec\x3c\xbd\x75\x58\xd4\xa0\x2f\x51\x84\xd5\x46\x5b\xda\x2d\xe7\x88\x70\xab\xf6\x23\x40\xd2\xc4\xae\x83\x73\xb4\x20\xa9\xb6\xa3\x80\xc3\xc0\xcb\xfd\x77\xd6\x52\xdf\x91\x29\xb8\x35\xd6\xf7\x14\xc2\xed\xa1\x2f\x9c\x32\x39\x96\x6a\x90\x1a\x73\xe7\xdc\xa1\xa7\xe2\x8d\x35\x23\x86\xaa\x8a\x62\xff\x2f\x11\x35\x45\x86\x4f\x84\x40\x7f\xe9\x48\x6b\x90\x2b\x73\x17\x10\x63\x36\xc7\x88\xe7\xc6\x62\x6c\x11\xc7\xae\x2c\xc1\x34\x25\xba\xf1\x9d\x01\x20\x3c\x32\x1b\x03\xb0\x6e\xcc\xcb\x82\x4c\x24\x7c\x69\x1c\x17\xc0\x5a\xf2\x92\xa4\x53\xcc\xf3\xf3\x25\x8a\xb0\xdb\x55\xf3\xeb\x0c\x3b\xd6\x17\x59\xb5\xeb\xec\xce\xc5\xa0\x54\xe6\xd8\x2e\x12\x00\x16\xf9\xdc\x1c\x07\x41\x56\x8c\x5d\xa7\x38\xc9\x5d\xc3\x1a\x48\x7b\x11\x01\xb6\x2e\x2f\x06\x06\xa1\x22\x4c\x04\xfd\x4b\xe7\xc0\x16\x06\x98\x71\xd3\xbd\x41\x08\x8d\x63\xf0\x02\x5b\x8e\xd2\x63\xa2\xa5\x9e\x74\xc8\x9b\x57\x96\x7e\x18\x28\x67\x1a\x43\x55\x1d\xc7\x66\x35\x60\xae\x7d\x47\xb6\xd8\x43\x04\x23\xbe\x2c\x16\x60\xad\x7c\x59\x72\x5e\x12\x61\x57\x6a\x81\x2f\xd2\x7c\xe5\x78\x41\xf5\xba\x80\x2c\xe7\xda\x91\x57\x1e\x5c\xbd\x72\xec\x34\xa2\x9a\xc4\xb1\xd3\x40\x58\x49\x8e\x00\xdc\x01\x5e\x59\xfb\x0b\x86\x48\x63\x7f\xc1\x10\x6b\xd4\x81\x11\xc4\x1a\x75\x40\x04\x5f\xd9\xe5\x5f\x7e\xfb\xd6\x1a\x63\xa0\x43\x89\xb5\xc6\x74\x65\x58\x6e\x61\xfe\xba\x07\xd3\x38\x49\x12\x77\x22\x90\x32\xc3\xc1\xc7\x77\x0d\xc3\x81\x79\xec\x95\x63\x37\x11\x0c\x48\x1c\xbb\x09\x84\x95\xad\x2c\x84\xa9\x47\x08\x71\xb4\x5d\x19\xef\x9c\xfb\x43\x67\x10\x9a\xe8\x83\x91\x71\x2c\x49\x98\xda\xbd\x75\x42\x70\xca\x7a\xf5\x5a\xab\xfb\x41\x08\x47\x96\xe4\xb3\x03\x40\x1f\x3a\x66\x11\x10\x0c\xc4\x05\xa6\x12\xd0\xba\x91\x6a\xc8\x02\xcd\x08\x45\x7c\xf5\xca\xab\xf0\x02\xcd\x52\xc3\x7b\xd2\x46\x28\x30\xa1\xb7\xbb\xa9\xc9\x02\xa9\xc3\xce\x40\x6a\x9d\xaf\x16\x7e\xb4\xda\x7e\x74\x3a\xb0\xff\x24\x8b\xa5\x3a\x88\x0d\xa4\x6f\xc0\xab\xc5\x32\x25\xc6\xb9\x02\x6c\xed\x84\x46\x66\x0f\x24\xaf\x70\x98\xf3\x22\xb0\x27\x39\xfd\xd4\x01\x7d\x13\x00\xe3\x62\x3b\x06\x25\x95\x50\xe6\xb0\x04\x54\x85\xe6\x91\x61\x61\xf0\x25\x72\x06\x60\x0a\xaf\x66\x98\x60\x24\x63\xf1\xcc\x98\xad\xa4\x94\x2b\x9f\x8d\x4c\x15\x1d\x2f\xe5\xfc\x0a\x0c\x5e\xd8\xb9\xec\x21\xbd\xd3\x09\xcd\x53\xc4\xe7\x6a\xc7\x84\xc0\xce\x47\x68\x6e\xfd\x35\x10\x98\x6f\x5e\xd1\x5b\x92\x11\x38\x92\xd1\xfa\xb9\x9e\x23\x3a\xc6\xf1\x1c\x0a\xc0\x6f\xf3\xd5\xa9\x55\xce\xa0\xb9\xcc\x2a\x67\x30\x2e\x8e\xe5\x08\x9c\x49\x88\x0b\x24\x40\x51\x12\x56\xb0\x5b\x26\x15\x11\x06\x0d\x64\xd6\xcc\x30\x06\x2a\x6b\x67\x80\x70\xb9\x49\xc4\xac\xe0\xf7\x60\x3c\x26\x15\x39\x06\x93\xdc\xca\x31\xc9\x71\x59\x69\xe8\x33\x42\x1d\xab\x74\x5f\x41\x7a\x95\x85\x63\x1c\x01\xe8\x35\x3b\xe9\x69\x40\x5b\x6f\x92\xae\x42\x6e\xbd\x7c\x73\xaf\x2b\x73\x7b\x94\x1a\x76\x64\xbc\x8b\xc0\x54\x2c\xae\x6d\x7f\x0b\xf1\x40\x1c\x00\xb6\x90\xaf\x8c\x41\x05\xda\x6b\x0c\x2a\x22\xf4\xda\x59\x2d\xe1\x68\xfd\xb3\x0b\xf4\x81\xc2\xc8\xaf\x31\xc4\x1b\xf1\x25\x82\xaf\xcb\xfa\xbe\x60\xf9\xcf\x65\xa9\x25\xb8\xeb\xb3\x9d\x9f\xd2\xaf\xea\x75\x65\x94\x05\x77\x7c\xae\x8c\xb2\x60\xed\xd7\x15\x9d\x51\x54\xed\x73\x65\xe8\xa0\x49\x19\xe6\xb6\x47\x46\x40\xe7\x20\xa0\x45\xbf\x76\x3b\x0d\x9a\xed\x76\x9a\x00\xde\xa0\xe5\xd2\x30\x96\x60\xb4\x6b\x07\x98\x1a\xc0\x18\x17\x05\x93\xbc\x71\x37\x97\x70\xa7\xe4\xda\x43\x86\x40\x63\xba\x13\x32\xb1\xdd\x29\x82\x6f\xca\xdd\x29\x78\xf1\xba\xdc\x9d\xa2\x05\xd7\x33\xae\x2f\xab\x04\xd2\xb9\xe3\x8d\xe3\x31\x29\x7a\xe7\xda\xf1\x98\x14\xe1\x37\xce\xa6\x49\x4c\x84\x6b\x67\xd3\x24\xc2\x6f\x2a\xe3\x21\x58\xf0\xba\x32\x1e\x40\x5b\x19\x0f\x68\x6d\x19\x85\x2b\x21\xe9\xbe\x55\x68\xe0\x25\xca\x63\xd7\x1c\x00\x5c\x94\x7a\x08\x02\xc4\xf7\x9e\xe8\x01\x36\xe3\x48\x5b\xee\xc0\xf6\x7e\x8c\x16\xd3\xd8\x8c\xd2\x14\x68\x1c\x64\x2a\x11\xed\x21\x37\x84\x63\x84\x63\x27\x8c\x54\xbc\xb9\xfc\x17\x2a\x40\xdb\xe9\x64\x92\xd4\x6e\x09\xfb\x90\xc3\x32\x45\x11\xb6\x86\x24\xa8\x4b\x8a\xd4\x1d\xa8\x7b\x24\x8b\xe5\x5c\x79\x87\xc9\x2f\xc4\x01\x90\x28\x79\x30\x06\x63\x84\xe3\xa3\x05\x3b\x98\x63\x27\x8c\xa1\xe7\x6c\xc7\x05\x8a\xde\xe6\x10\x2b\x44\x0b\x71\xa9\x02\x0a\x24\x5d\x6a\x44\xd7\x64\x69\x5c\xca\x34\x8d\xd9\x3c\x8c\x61\xf3\x20\xa0\x5c\xef\xb1\x91\x6c\x4f\x8e\x88\x4e\x06\x53\x3f\xdd\x77\x11\x99\xb5\xd6\x24\x54\x49\xda\xf7\x12\xa1\x58\x85\x33\x03\x98\x7d\x47\x3a\xb5\x7b\x23\xe0\xc4\xf4\x99\x03\x40\xc3\xed\x1d\xb5\xe1\x10\x2a\x33\xe5\x52\x9d\xfe\xaa\x03\x22\xfa\xa3\x0c\x5c\xeb\xf5\x76\x34\x55\x40\x96\xea\x11\x1d\x25\x06\x2a\x34\x24\xaa\x76\xec\x1e\xba\x81\xe5\x31\xf5\x10\x0c\x34\xee\xe4\x85\xbc\x3d\x24\x92\x88\xee\x92\x2e\xc8\x9a\x34\x02\xa7\xc0\xaf\x90\xde\x4c\x75\x99\xd8\x4c\x75\x08\xc6\x91\xbe\x49\x0b\xa2\x22\x75\xef\xd0\x45\x1a\x30\xca\x38\x74\x4b\xcc\x63\xe7\x1c\x73\x28\xa1\x22\xb3\x58\x4f\xe6\x6c\x34\x6e\x70\xd1\x36\xb7\x78\xe1\x5a\x4c\x6a\x76\x82\xa2\x54\xf0\x61\x10\xfc\xfe\x4c\xf4\xa9\x3e\xa3\x52\x33\x45\xfb\x37\x98\xd3\x68\xc5\xc9\xa5\xad\x87\xe4\xdd\x92\x93\x85\x01\x51\xd9\xf3\xc2\x50\x56\x1c\x1c\xc0\x09\xdb\xe4\x6e\x99\x4d\x32\xa4\x48\x77\x80\x49\x4a\xf4\xfc\x95\x1d\x2e\x60\xe9\xc4\x50\x6a\xc2\xc0\x44\xc2\x49\xb8\x77\xe6\x0e\x47\x27\x3a\xb2\x72\xe4\x3e\xae\x44\xea\x0a\x76\x55\xcc\xf3\x94\x69\xb0\x0b\x1b\x65\x51\x6b\xe5\x6c\x60\xef\xa6\xc9\x83\x7f\x27\x4a\xfb\x45\x86\x60\x34\x16\x11\xa6\xb5\xc6\xab\x61\xa8\x62\x2a\xfb\x38\xd8\x29\x6f\x74\x58\x31\x31\x95\x34\x71\xaf\x92\x5b\x56\xee\x6c\x88\x52\x15\x34\x91\x53\x37\x32\xbb\x29\xc8\xcc\xdb\x52\xc6\x6e\x55\xbc\x9e\x85\x7d\x9a\xf2\x9d\xf0\x9c\x12\x7a\x16\x57\x0c\x88\xba\x16\xf2\x3d\x22\x74\x8f\xe6\x73\x8e\xb1\xe7\x70\x35\xd5\x49\xd4\x75\x3e\x3b\x6a\xa0\xdc\xb8\x51\x2a\xc9\xb4\x53\xc2\xdd\x0d\xe4\x54\xd7\x4a\x7a\xc7\xf8\xb5\x08\x4d\x5c\x85\x7d\x02\x13\x55\x61\x9e\x51\x29\x4a\x8f\xb8\xae\x5e\x25\x41\xc7\x8b\xf0\x18\xe4\x48\x1f\x90\x4b\xc9\x86\x8d\x55\x54\x76\xd0\x8d\x37\xaf\x1d\xcb\x8f\x1c\x5a\xdf\x3c\x2c\x59\xd1\x31\x0f\x8f\x24\x50\x8a\xb7\xe6\x61\xf0\x4f\x4c\x7d\xf3\x70\x68\x21\x6d\x5a\x83\x6f\xe9\xa6\x38\xb3\x75\xb3\x82\x1e\x67\xd6\xfe\x3c\x56\x74\x99\x6f\x2d\xeb\x2b\xd4\x31\x8e\x0d\x14\x84\x6f\xcc\x81\xab\x6e\xb1\x00\x2d\x2a\xbb\xe5\x18\x67\x19\x8c\xa9\x67\xb7\x94\x29\x44\x5c\xc5\xd4\x39\x50\x11\x3e\xfd\x50\x17\x6b\x0b\x1d\x6a\x4a\x6b\xf7\x44\x48\x75\x41\xe6\x58\xdf\x3a\x8a\xac\x6a\x07\x8d\x55\x8c\x67\x04\x05\x99\xec\x79\x82\xc2\x60\x27\x65\x99\x72\x5c\x56\x06\x61\x40\xca\xca\x20\xac\xcc\x33\xaf\x11\x33\x63\xe0\x86\xca\x3a\x8e\xa3\x50\xf4\x1c\xf1\xd8\x13\x50\x73\xc4\x0b\x8f\xef\x04\xa0\x17\x7a\xb8\xe0\x97\xce\xa7\xa9\xb9\xe0\x0a\x73\xc6\x51\x26\xa1\x06\x8e\x32\x09\x61\x47\xb7\x91\x22\xcd\x74\x3f\x34\xcd\x1c\x26\x00\x17\x82\x3f\xa4\x1e\x09\xe9\x11\x79\x5c\x5e\x65\x24\x07\x38\x95\x1f\x83\xd1\x36\x4d\xad\x33\x10\x38\xd7\x1d\x2f\x88\xb3\xdf\x86\x2e\x73\x11\xd8\x4a\xa6\x0b\x56\x64\x39\x8a\xe6\xda\xf9\x70\x6a\x51\x0f\x71\x0e\x03\xc6\x2a\xec\x32\xaf\xc4\x8c\x59\x1a\xda\x69\x2d\xad\x23\x19\x7b\xe3\x47\x3b\xd3\x54\x12\x38\x87\x01\x30\x7a\xcc\x51\x50\x23\x09\x58\x83\x20\x8c\x17\xb3\xda\x91\x4a\x22\xe4\x9a\xd7\x5d\x43\xd8\x92\x6e\xf4\x52\xd4\x11\x95\x14\x23\x27\xab\xf2\x4a\x32\x04\x1f\xd8\xc7\xdd\x1a\x87\x4e\xa6\xd5\xb4\x48\xe5\xbc\x40\xcb\x4c\x0b\x93\x61\x12\x29\xb4\x4a\x3f\x50\xb9\x55\xcb\xd1\x31\xd5\x34\x30\x16\x8c\x2d\xcb\x2e\xfa\x52\x33\xd5\x11\xae\x27\x20\x92\x15\x30\xbe\x28\x63\xa9\xdd\x57\xb6\x41\x5d\x49\x56\xda\x06\xc9\x91\x70\xdc\x54\x3a\x12\x71\xef\xe9\xc3\x8e\x3a\x65\x77\xf6\x22\x18\x18\x5a\x52\x76\x27\xcd\xac\x57\x50\xde\x1d\xe6\x15\xed\x69\xac\x63\xaa\x8b\xbd\x1c\xa6\x2f\x8a\xe7\x23\xd9\xb7\xce\xf5\x7a\x03\xe9\x47\x54\xc0\x73\x22\x95\xcd\x6c\xa8\x9f\xda\x8c\x3f\x96\x62\xd9\xb9\x67\x21\xf5\x02\xee\xcf\x48\x98\x46\xdc\xe8\x99\x4a\x3f\xe0\xee\x64\x84\xd6\xeb\xab\x19\x81\x54\xe3\xb9\x99\x9b\x1d\x58\xff\xd2\x0c\x59\x25\x57\x6e\x45\x2a\x5b\x46\x58\x75\x1d\xeb\x0b\x88\x2c\xab\xd0\xc2\xca\xeb\x07\xd3\x92\x28\x4e\xdd\xa3\xa2\x58\x01\x66\x25\x95\xf5\xb8\x99\xea\xfd\x43\xe6\xa8\xdd\x23\x0d\x18\xb5\x1b\x24\x8a\x6b\x9f\x06\x23\x45\xea\x21\x50\xa6\x73\xf8\x34\x90\x61\x7b\xf8\x04\x0d\x15\x1d\xfe\x8b\xc8\xed\x42\xff\xc8\x5d\x89\x98\xe6\xe5\x15\x10\x94\x1f\x57\xef\x49\x3d\x4d\x48\x66\x9a\x3a\xc7\x4c\x32\x95\x77\x40\x25\x93\x19\x01\x09\xfa\xab\x08\x63\x57\xff\x49\x1d\xf7\xc9\x48\x36\x86\x3b\xe7\x5e\x90\x6d\xc1\x63\x77\x9b\x81\x24\xe6\x7a\x55\x02\x59\xf9\x08\x6a\x64\x75\x01\xe7\x08\xca\xa2\xda\x26\x7c\x0f\x0f\xf8\xb8\xfe\x31\x1d\x19\xd6\xda\x7c\x27\x50\x61\xac\x1f\x0c\x91\xd0\x89\x16\xd0\x63\xb0\xcf\x2e\x90\xd9\xfa\x0e\x64\xd0\xc8\x1b\x17\x71\x54\x74\x38\x2a\x94\xa8\x2b\x34\x7a\x06\x35\x3a\x3b\x92\x05\xf0\x6b\x3d\x2d\xfa\x70\x01\x73\x11\x59\xd3\x28\x82\xd5\xf8\xc4\xee\xfb\x22\x20\x30\xfb\x3e\x08\xba\x97\x6a\xa0\x18\xeb\x8f\xd9\x01\xdb\xc7\x02\xa3\xac\xe0\x38\xf6\x1e\x60\x12\x6c\x77\x82\x63\x52\x2c\x9c\x93\xa5\x00\x5c\xc5\x4e\x70\x9a\x12\xea\xf8\xb5\x88\x51\x3e\x29\xbf\x52\x02\x1d\x58\x56\x1e\xa0\xb8\xb9\xee\x21\xb0\xd3\x2d\x48\x24\x7d\xac\xee\xc1\x2c\xbe\x20\xb1\x7d\x96\x67\x41\x62\xcb\xd6\x60\xf2\x32\x17\x3c\x3b\xe0\x72\xb4\x20\xb1\x77\xf9\x17\xae\x08\xe8\xe7\x96\xc0\x6d\xd8\xbd\x34\x00\x73\x1b\x00\xf3\xbc\xd8\xc8\x20\x85\xee\x52\x51\x47\xb8\xcb\xea\xdc\x5c\x05\x47\x8c\x45\x1a\x99\xeb\x75\x53\x08\xc7\xe6\x4a\x10\x8c\x35\x5d\x96\x53\xb0\xd8\x38\x78\x76\x60\xe4\x4f\x2a\xd2\x1e\x86\xa4\x22\xed\x61\xa4\x97\x5e\x5e\x15\xc9\x25\x5a\x73\xe2\xb8\xbe\x48\xaa\x5c\xbd\xbd\xa4\xdf\x52\x3b\x91\x0d\x0b\xba\xf0\x34\xd2\x42\x87\xa6\x32\x24\xe6\xb8\xb9\x6d\x07\xb7\x0c\x17\x45\x09\xa0\x68\xaa\xdd\x1b\xe4\x55\xa4\xb7\xae\xf5\x0c\x56\x2b\xea\x21\x3d\x40\x9c\xc7\xbe\xe0\xf6\x47\x07\x50\x73\xbc\x36\x96\x41\xfb\xaa\x14\x3c\xec\x26\xcb\x73\x5f\x93\x72\x61\xd5\xb0\x20\xd4\xa9\xdd\x07\xa4\x24\x94\x17\xe6\x90\x62\x00\xfe\xcf\x0a\xd2\x1b\x4d\x38\x13\x03\xcc\x23\x9a\xca\x63\xe8\x7b\x78\x27\x83\x7a\x6f\x18\xd8\x0a\xf8\x2f\x17\x58\xdc\xb9\xc0\x28\x3a\xe3\xad\x6b\xd8\x01\x07\x3e\xea\x21\x23\xa0\x71\x0c\x3b\x60\x2d\xa5\x1e\x32\x00\xc4\xb9\x6b\x3b\xd4\x80\x7b\xd9\xd6\xa9\x82\xbd\x01\xd9\x81\xec\x8d\x44\x88\x21\xda\x48\x04\x08\xba\x12\x01\x86\x0f\xdb\xa3\x99\x31\x1c\xf7\x08\xc4\x98\x06\xa1\x6c\xec\xd8\x06\x87\x9a\xc2\x2a\x09\x12\xd2\x02\x17\x7a\x11\xbb\xfe\x9b\xa6\xaa\x6f\xf1\x0c\xe5\xe4\x16\x57\x65\x0b\x9c\xdf\xea\xe8\x8b\x39\x89\xae\xbf\x15\x4b\x1f\x8d\x7c\x8f\xf9\x6a\x23\x81\xff\x26\x0e\xf0\x23\xce\xb0\x59\x51\xc0\xcc\x4d\x3d\xaf\x52\xa7\xd6\x59\x8e\xe3\x4d\xfe\x2a\xd2\x95\x43\xc6\xfb\x5b\x37\xb9\xce\xbe\xc5\x77\xfa\x24\xfb\x2f\x0a\x05\xb8\x7e\xa3\x3d\x83\x64\x2e\xf4\xb6\x2c\x4c\x85\x34\xa6\x65\x61\x0a\x6d\x72\x1c\xbc\x2c\x3b\x18\x1f\x30\x70\xbd\xa5\xd6\xb1\xcb\x84\x6f\x36\xa6\x2a\x39\x78\xb9\x51\xd9\x06\xd4\x71\xa2\x72\x48\x1d\xed\x08\x18\xdb\x71\x7a\xb1\x82\x60\x66\xc0\x44\x06\xb9\x17\x7e\x91\xdf\x3a\x89\x74\xd6\x8e\x1b\x07\x2c\x85\xd4\xf1\xe3\x88\x24\x60\x94\x6b\x04\x37\xec\xa8\x56\x07\x25\x03\x10\x73\x3c\x16\xc9\xa0\x96\x33\xb0\x63\xa0\x86\x39\x24\x3f\x39\x5b\x4e\x88\x76\xb6\x9c\x10\x76\xcd\xe9\x12\x70\xaa\x03\x13\xcd\x59\x20\xa0\x2b\x1c\x5b\xa8\x6d\x95\x59\x73\xe1\x65\x3d\x5a\xb1\x76\x42\xd6\x65\xcb\xa6\xca\x7f\x93\x0d\x4e\x76\xcd\x46\xf3\x9c\xec\x24\x6b\xc8\xd1\x25\x3a\x96\x1c\xb7\x5e\x25\x83\x8e\x1b\x95\x6d\x46\x0d\xeb\xcb\x3a\xd8\x5d\xb7\x43\xe5\xf0\x07\xb0\xbf\xa3\x97\x5a\xfe\x48\x73\x2f\x27\xab\x53\x76\x30\xd2\x80\xee\x37\xd8\xb5\xd2\x63\xcb\x32\xc8\x96\xe6\xe8\x0b\x30\xb1\xd8\x33\x8e\x91\x12\x75\x01\xc8\xa9\xb7\x8c\x02\x46\xe8\xcc\x48\x0c\xb5\x0e\x54\x56\xe5\x04\xe8\x8d\x0f\x0b\x2c\x26\xce\x83\x5a\x50\x0f\x7d\x55\x30\x92\x71\x95\xd7\x10\x3a\x0a\x77\xaf\xb9\xc3\x66\xe6\x2d\xcb\x1f\xbd\x1c\x37\x90\xf1\xa5\x3b\x26\x63\x85\xba\xc6\xa6\xc0\xc1\x7c\xb7\x7f\x2b\xcc\x58\x7e\x54\x15\x39\x2c\x2f\xc9\xb5\xc4\x43\xdd\x42\x40\x8a\xd8\xa8\xaa\x6f\x9f\x5b\xd4\x23\x42\x73\x03\x89\xeb\xed\x37\xf6\x62\x36\x38\xfc\x6d\x48\xef\x19\xbd\xd4\xd0\x6c\xf4\xec\x71\xd3\x56\x5d\x7c\x2c\xf3\xb0\xdc\x1e\xc2\x8f\x35\xe0\x9e\xc2\xfb\xa4\xf6\x30\xde\xc7\x6f\x51\x25\x13\xf3\x24\x28\x18\x32\x24\xa4\x6f\x89\x24\x6a\xb0\x1f\x33\x3b\xbb\xb5\xdf\x60\x7f\x86\xf9\x51\x8a\x72\x1b\x88\x23\x1d\xef\xcf\x56\x05\x79\xe3\x1c\x58\xbc\x64\xbc\x1c\xd9\x18\x6f\xc5\xf3\x2b\xb7\xd1\x44\x59\x26\xf1\x86\x4d\xb1\xe2\xe3\xeb\x2d\x42\x1e\x23\x6f\x5a\x78\x11\x0a\xdd\x01\xb0\x6b\x40\xa4\x01\x3b\x22\x16\x32\x23\x82\x0d\x64\x46\x44\x4d\xcf\x33\x8e\x23\x1c\x9b\x2d\xf1\x28\xf0\x61\xb7\x99\xc8\x1b\x26\x4d\x51\xee\x8d\x0e\x56\x59\xbc\xc3\xb7\x98\x67\xb8\x34\xbf\xd5\x48\xc9\x5b\x9c\x15\x4e\x88\x03\xb7\x08\x8f\x48\xe7\x3e\xdd\x10\xe7\x15\xaf\x1a\x26\x2f\x5f\x9c\x17\x53\x7b\x6b\x6c\xe4\x35\xc0\x25\xf0\x32\xe8\xf8\xf1\x4b\xd1\x0a\xf3\x82\x50\xb0\x29\x0b\x49\xe2\x65\xd2\x55\x14\x5e\xf9\x1d\xb3\x18\x98\x28\x37\xd1\x48\x67\x5b\x44\x11\xc6\xb1\x19\x93\xd0\x87\xdd\x31\x99\xfa\xf5\x51\x14\xd5\x31\x29\x65\xe1\xf1\xa7\xdf\x2b\x7e\x7b\x47\x5d\xbf\xca\xd5\x96\x8e\x94\x58\xf3\x04\x73\xe8\x60\x9e\x24\xea\x39\x11\x65\x19\x0b\x1b\x02\x1d\xe9\x65\xa7\x8a\xd8\xb0\x88\xc0\x6a\xbb\x44\x1c\xa5\xa9\x71\xfc\x87\x95\x85\x2e\xfd\x95\x86\x3a\xd7\xb9\x50\x12\x9b\xc7\x23\xa9\xf5\x81\xeb\x04\x76\x1a\xd2\x25\x4b\x9d\xa7\x98\x64\x31\xdc\x9d\x24\x74\xc9\xa3\x02\xbb\x3c\x4f\x9d\xf7\x53\x46\x06\x30\xb6\x6b\x67\xfa\x88\x88\x0d\x28\x47\x5c\xdf\xab\x1b\x77\xbb\x3e\xae\x35\x27\xd0\xf9\xb8\xa3\x94\x25\x9a\xc2\x28\x57\x8e\xfa\x52\x3d\x00\x85\xf4\xef\x2a\x4a\x94\xcc\xc5\xd1\x48\xa6\x1a\xc0\xee\xbc\xa2\xe6\x89\x1c\x60\x4a\x9a\x45\x4e\x1f\x28\x04\x6f\x60\xcd\x8a\xab\xcb\x58\xd2\x96\x76\xff\xb0\x71\xcb\xe6\x8c\xe7\x25\x1d\x47\x82\x1b\xc7\xd9\xd9\xdb\x84\x2a\x8c\x5d\x6e\xa3\xee\x5b\xc1\x0a\xa9\xe4\x5e\x66\x96\xec\xc6\xbe\x43\x24\x05\x02\x40\x66\xab\x8c\x65\x4d\xf5\xdb\x45\x9d\x51\x4f\x85\xf5\xde\x3f\x72\xd6\x51\x27\xab\x91\x06\x36\x0a\x05\x15\x61\x6a\xeb\x52\x1b\x7d\xb6\x94\x75\x54\x1a\x10\x31\xc1\x6f\xaa\x23\x40\xcd\x33\x4a\x1d\xb0\xd0\x8b\xb0\xa9\xeb\xc0\x23\xc3\xee\xc4\x16\xc0\x46\x69\xa0\x22\x6c\x5d\xc7\x2e\x78\xb3\x21\xeb\xdc\x5e\x21\x81\xf9\x6c\x9f\x9a\x86\x17\x16\xa8\x0d\x27\x32\x6c\x4f\xe4\x64\xfa\xca\xd3\xb4\x4a\x6f\x76\x23\x4c\x7d\xa4\xe2\xba\xe1\xc5\x5a\xc5\xda\x5e\x8c\x4d\x05\x8b\x87\xb1\x2e\x01\xcb\x1b\xeb\x92\x0c\x09\x6e\xfb\xff\xc9\x5f\x58\x5f\xa4\x94\x77\xbe\x69\xe1\x5c\x0f\x06\x1d\xe8\xd6\x79\xf4\xc9\xf6\xdc\xad\xf3\x4c\x1d\xa8\xd4\xf4\xf6\xd0\x41\xa0\x98\xf7\x2e\x0d\xac\xde\xef\x5d\x1a\x98\xae\xb7\xce\xb5\x28\x27\x77\x79\x45\xc3\x01\x5e\x3a\x9e\x41\xc0\xa7\xb7\x9e\x73\x32\xe4\x7e\x6b\xf7\x79\xe3\x40\x26\x73\x5c\x5e\x9c\xcc\xa4\x0d\xde\x03\x5c\x53\xb8\x13\xc1\x9d\x1c\xbb\x12\x71\x49\xdd\x2a\x3b\xaf\x7a\x46\x16\xbe\x73\x2d\x38\x5d\x85\x18\x41\x08\x3d\x7e\xe7\x58\x70\x06\x9a\xc2\x0a\x3b\x09\x51\xc7\x1e\x22\x86\xe5\xd4\x3a\xae\xc3\x53\x1a\xcc\x86\x13\x19\xf6\xdf\x1c\x3c\x35\xbe\xeb\xe0\x0a\xc2\x4c\x30\xd1\x41\x4d\x8d\x80\xda\xd8\xa9\x30\x44\x1b\x3b\x15\x04\xcb\x4f\x14\x9e\x3a\x4f\x3b\x85\x70\x27\x98\x79\x48\x08\x88\xde\xc5\x23\x98\x4a\xf6\xb9\x6b\xf9\xa2\x21\x8b\x33\x66\xbc\xb5\xc0\x08\x7a\x7a\x64\x5d\xc9\xc1\x39\x82\x61\x07\x80\x46\x26\xf6\x3e\x09\x9c\x2b\x9d\x96\xed\x33\x90\xac\x6c\x9f\x11\x99\x5b\x57\x63\x79\xdf\xe6\xd4\x3a\xcb\xc3\xc0\x31\x1b\x4e\x64\x58\x1f\x94\xc1\xc1\x14\xb3\xd7\x4f\xc6\x60\x1e\x67\xf3\x85\x9a\x62\xb0\x2c\xb0\xd2\xa3\x7a\xcc\x7d\x86\x0d\x01\xe0\x54\x5d\x52\x38\x8f\xd2\x8d\xc1\x63\x91\x59\x77\xf7\x40\x76\xbc\x39\xad\x03\x87\xca\x53\xc7\x93\x1e\x5e\xfa\x64\x2e\x00\x03\xb3\xc0\x33\xe4\xd5\xcb\x01\xe0\xe4\xe8\x14\xcc\xfc\xe6\xfa\x7c\x02\x34\x2e\x34\x55\x90\x19\x9a\x81\x0c\x97\xde\x94\x3c\xad\xd8\xcf\x81\xae\x8c\xc2\x36\xd8\x39\x69\x85\xc3\x81\xd3\x25\xa6\x8f\xbd\xea\x18\xb9\xf1\x5e\x0c\x30\xd1\x12\x9b\xa7\xec\xc0\xcb\x9b\x2d\x4b\xaf\x5a\x32\xf7\xe5\x38\x18\x68\xbd\x5f\x01\xef\x5e\x66\x96\x4c\xc8\x8e\x9b\x6f\x67\xc4\x32\x88\x8d\x11\xbf\xa7\x01\x96\x94\x20\x79\x31\x0a\x6e\xd7\x30\x1e\x03\x1b\xdc\xcb\x31\xe6\x64\x66\x2f\x1b\x40\x7f\x70\xe3\x2e\xd3\x97\x61\xef\xe3\x1c\x43\x80\xcc\xb7\x39\x80\x07\xbc\x07\x3d\x4f\x2b\x3a\x08\x94\xe3\x9c\x35\xf4\x80\x4a\xdf\xb5\xb9\x07\xb7\x0a\x66\xc3\x89\x0c\xeb\x3b\x9d\x1d\x38\x44\x3e\x75\x56\x31\xe8\x33\x67\x15\x53\xe1\x05\xce\x90\x39\xcc\x1e\xc8\x34\xce\xf1\xf6\xd0\x50\xe9\x7c\x61\x5c\xb5\x87\x39\x88\x35\xa6\x43\xb0\x8f\x66\xb7\x66\x02\x75\xc1\xf8\x7d\x7a\x8b\xad\x33\x94\x64\x77\x80\xb8\x31\x16\x77\x63\x17\x34\x0e\x7e\xf2\x91\x35\x01\x9f\x21\x8e\x69\x3e\xc7\x99\x36\x27\xca\xfb\xc2\x42\xe3\x92\x83\x32\x50\x21\x57\xff\xea\x4b\xac\x14\xb4\x4f\x1a\x80\x34\xf5\xf5\x6e\x09\x58\x85\x1b\x3e\x27\xc9\x9d\x97\xc6\x14\x66\x85\xa8\x98\x43\x4b\x2b\x44\x21\x88\x79\x04\x32\xe2\xff\x2f\x03\x04\x6e\x27\xb4\x65\x60\xa1\x3d\x1e\x03\xb8\x3b\x64\xb9\x5c\xbe\xdf\xbe\xc4\x3c\xc7\xfa\xb1\xfa\x00\xee\x92\x9c\x95\x25\x1f\x54\xbb\x2c\xf9\xe0\x8b\xa4\xf6\x29\x5c\xe8\x0f\xfb\x14\xae\x0a\x6a\x57\x76\xe0\x85\xe5\x5c\xbd\x58\x6a\x4e\xb2\x96\x73\xf3\xe6\xe9\x00\x4e\xf7\xcf\x4c\x7e\x50\x57\x93\x9d\x0c\xe5\xd1\xbc\x7c\x23\x7f\x69\x8b\x80\x22\x53\x44\xf5\x13\xbe\xf2\x6a\x98\x44\xcc\x6d\x31\xac\x20\x7d\x8d\x5f\x13\x15\x99\xf3\x6d\x14\x58\x5c\x05\x66\x4e\x19\xb1\x02\x1c\x9a\x8e\x82\xea\xbb\xf5\x6d\xf5\x33\x56\xea\x8f\x7c\xa6\x0c\x10\x73\xe2\xd8\x57\x88\x79\xf4\x15\x86\x35\x2d\x32\xf3\xa4\xee\x3d\x3c\x69\x20\x68\x16\xd4\x0f\x5b\x0e\xea\x0c\x14\x94\xdf\x69\xff\x39\x58\xc2\x97\x0b\x9b\xe2\x8c\xc9\x3b\x46\xa2\x99\xe6\xa2\x11\x30\xaf\x58\x49\x9c\x4d\x1c\x54\xa9\x22\x55\x65\x16\xd6\xfe\x39\x06\xaa\x42\xbe\xa3\x77\x0f\xfe\x95\x4b\x6e\x4e\xc3\x40\xe8\x9e\xe9\x4e\x01\xa9\x68\xb6\x85\x70\x41\xd6\xdd\x15\x82\x4f\x9a\xd8\x03\x7a\x1e\x4f\x90\x85\xb3\x55\x54\xc9\x70\xa4\x9e\xdb\x74\x13\x97\xac\x33\x40\xba\xd9\x34\xe3\x44\x54\x76\xff\x5e\x56\xde\xd6\x1f\xab\xa2\x9d\x4d\xaa\x42\x7c\x2f\x2d\x58\x20\x00\xb6\xba\x3d\xac\xdd\x80\x39\xde\x57\x23\x89\xf9\xb9\xe9\x8d\xc6\xb4\xab\x52\x38\xe6\x72\x59\x03\xe7\x3d\x79\xe0\x13\x17\xe8\x6a\x8a\xcc\x1b\x22\x6e\xfd\xca\x54\xed\xe8\x91\x5f\xb3\x6a\xbd\xcc\x43\xba\x81\xec\x2f\xf7\x19\x5d\x39\x31\x38\x4b\x50\x6a\xa4\x6b\x07\x2b\xcc\x6a\x13\x5d\xd0\x8b\x04\x96\x15\xda\x5b\xa0\x2b\x25\x86\x79\xf2\xab\x03\x27\x94\x67\x9c\x2d\x19\xcf\x09\xa3\x66\x20\x4a\xb8\x42\xbb\x43\x95\x3a\x67\x2e\xdd\x92\x57\xba\xa9\xe0\x46\xf8\x82\xd7\xce\x59\x65\x4d\x03\x86\xac\xec\xab\xfb\x40\x6b\x64\x0d\x74\x86\x09\xc2\xea\xb8\x2c\x68\x64\x37\x2f\x02\xf9\xad\x2c\x15\xc5\x1c\xbf\x29\x4b\x45\x51\xaf\x9b\xd2\x65\xc8\x9b\xca\x1c\x13\x5d\xf6\x9b\x33\xc7\x04\x1b\xdf\xb8\xa3\x0e\xcb\xf7\x6f\x95\xd6\x40\x6e\x95\xd6\x08\x99\x70\x53\xa0\x1c\x73\x4a\xac\xbb\x35\xdc\x9a\x12\xb0\x33\xe3\x25\xa5\xf4\xe5\x79\xaa\x7f\xdb\xf7\x66\x12\x80\xa4\x2e\xfd\x57\x5d\xd4\xe0\xf2\xf4\xc2\x04\xb8\x7b\xe7\x46\xf4\xab\x5d\x4e\x3b\x5d\x69\x63\x11\xb2\xe3\x9d\xeb\x27\x00\x8a\x11\xf7\x90\x3e\x20\xb1\xbe\x1d\xdb\x81\xc6\xf3\xd2\xd5\x9c\x2e\x60\xd6\x67\x71\x0c\x19\xdb\xf0\x54\xc5\x9b\x4b\x36\x1d\x05\x98\xd7\xd7\xfa\x0a\xb0\xb7\x6e\xc6\x80\xe8\x0b\x35\x53\x99\x05\x37\xa2\x6c\x3c\xec\x2b\xc4\x5c\xb1\x31\x80\xb9\x20\x03\xfe\x41\xbe\x59\x4a\x01\x2a\x0d\x54\xe4\x9d\x73\x86\x09\x09\x9c\x5d\x59\x47\xd1\xdb\x3b\x37\x58\x21\xf6\xce\x0d\x52\x88\xbd\x73\x13\x29\xc4\xdc\xb9\xe9\xe9\xba\x39\x77\x6e\x7a\xaa\xe8\xdc\xdc\xa7\x19\x28\x22\x7b\x0b\x47\x57\xd7\x1a\xc7\x00\x70\x2f\xe1\x40\xe9\xde\xb5\x1c\x59\x7a\x4e\xf4\x74\xec\x0e\x34\x40\x1d\xaf\x0b\x48\xe7\x5e\xc3\x81\xac\xdd\x6b\x38\x82\xbf\xde\x39\x00\xf8\x0f\x71\xf7\x5e\x0e\x54\x4f\xdf\xcb\x79\xd0\x01\x11\xfd\x49\x06\xec\xbd\x9c\x48\x01\xce\xbd\x1c\x6c\x20\x7d\x2f\x07\x6e\x8c\xbc\x73\x5d\x33\xc0\x97\x9e\x7b\x08\x30\x97\xeb\x9a\x01\xfa\x34\xf7\x90\xa1\x44\xec\xbd\x1c\xe0\x26\x79\x2f\xe7\x01\xd2\x9b\x7b\x72\xd0\x28\x7b\x4d\x0e\x82\xce\xbd\x1c\xc8\x29\x4e\xdd\x4b\x37\x90\x97\x7b\x55\x27\xd6\x00\xf7\x11\xeb\xa3\x08\x1d\x85\x91\x79\x67\x2e\x52\x61\xe7\x52\xf3\x54\x41\xee\xa5\x66\x4d\x66\x06\x4d\xe4\xfb\x0e\xfb\xd1\x7a\x09\xe8\x83\xe9\x85\xab\x07\x8b\xc1\xea\xf2\xee\xe8\x85\x13\xd8\x78\xa0\x31\x75\x62\xaa\xef\x8d\x39\xb1\x97\xcb\x4a\xbc\x7c\x47\x91\x7b\x7e\xec\x50\x07\xcf\x8f\x1d\x1a\x56\x16\xbc\xc0\x5b\xf6\x12\x3b\xb4\xc4\x71\x52\x07\x39\xe4\x38\xa9\xc3\xce\x9b\x3b\x4e\xea\xa0\x62\x72\xcf\x49\x5d\xe4\xf1\x4e\x39\xb2\x05\x5d\x24\x53\xe8\xa0\xca\x80\x99\xcb\x9a\x20\xfb\xc0\xb1\x76\xc3\xd5\xa7\xb1\x89\x2c\xdd\x7d\x82\x69\x5c\x31\x4a\x77\x3c\xf2\x0a\x8a\xca\x0f\xb8\x5a\xda\xb2\xd3\x2f\xbc\x7a\x6c\x0b\x70\xef\x3f\x75\x75\xc2\xd2\x05\x28\x53\xd7\x8d\x37\xa0\x86\x36\xb6\x7a\x05\x0a\xb6\xba\x26\xb6\x72\x2b\xa5\x5f\x8d\xd5\xd5\x34\xad\x78\x5e\x19\x69\xe7\x2a\x91\xe3\x63\x29\xfb\xdf\x89\x33\x3e\x95\x72\x24\x45\x4c\xf5\x22\x54\xcf\x8d\x2a\xdf\x4f\x8a\x74\xe4\x86\x8b\x4d\x63\x1d\x57\xb9\xb7\x34\x36\x6d\x2e\xdf\x4e\x1a\x38\x11\x6a\x76\xa0\x8e\x83\xf9\x5d\x67\xda\x5a\xbd\xa0\x14\x99\x44\x1b\x0e\x08\xcb\x71\x5a\x1f\xea\x96\x23\xbc\x3b\x4a\x66\x28\x36\x5c\x52\x82\x17\x30\x54\x64\xa5\x9a\x91\x8d\xab\x8c\x6f\xaf\x1c\xa7\xa5\x15\xd6\x11\x95\x24\x5d\x3f\xc6\x1f\x42\xfd\x7c\xa4\xbc\x77\xc3\x49\x56\x79\x21\x0f\xc4\xa0\x7b\x2d\x04\x06\x38\x75\x9c\xca\x61\x50\x53\xe3\x42\x0e\xf2\xa5\x72\x53\x23\x34\xa8\x87\x50\xe7\x53\x23\xb0\xb6\xb8\xd7\x28\x62\x09\xd8\x6b\x14\x92\xc2\xb9\x46\x01\x92\xde\xbd\x0a\x30\x90\x40\x49\x19\x84\x2e\x70\x94\x41\x99\xb1\x7b\x09\x40\xe6\xec\x59\x49\x60\xfc\xc4\xae\xcc\x7b\x62\x62\x0c\xa7\xf9\x5c\x16\xd9\x54\x3f\x8d\xb5\x11\xae\xf4\xf1\xa5\x7f\x92\x07\xfa\x88\xeb\xaa\x0f\xd3\xbf\x7a\xe9\x0f\xd8\xd3\x73\xb5\x87\x31\xa9\x28\xa3\x20\x1f\x1c\x57\x7b\x99\xce\xac\x5b\x20\x25\xfd\x20\x97\x8e\xf3\x9f\xe4\x4f\xbb\x08\x8e\x35\xc0\x3d\xc4\x73\x61\x87\xd1\xf5\xe6\x0a\xd4\xca\x79\xcb\x77\xac\xc2\xd8\xe5\x7c\xee\x3e\xee\x3b\x52\x80\xf5\x3f\x1a\x83\x0f\xd5\xbb\x22\xc5\x87\x38\x45\x2b\xfd\x71\x85\x31\xd8\xb7\x79\x91\xba\x2e\xea\x90\xfa\x5e\xb7\x56\xa4\x3b\xf7\xd4\x5d\x51\x9f\xcc\x43\x44\x8f\x64\x53\xa7\xa1\x40\x62\x1d\x4c\xa1\x42\xe7\xae\x86\x02\x96\xce\xcc\x43\x42\xa0\xd1\x29\x22\x88\x57\x2d\x04\x07\x7d\xf7\x20\x12\x96\x50\xf7\x1c\x12\x82\x66\x73\xd8\x83\xac\x5c\x65\x07\x4b\x7a\x07\x49\x80\xc6\xbe\xe2\xd0\x97\x25\x3a\x80\x2c\xc3\xd9\x83\xca\x56\xd9\x3d\xe8\x40\x86\x9d\x3d\xe8\x18\x10\x9f\x1d\xbb\x80\x39\x1b\x3d\x59\xb2\x51\xae\x42\x88\x37\xca\x15\x04\x63\x96\x6b\x43\x0d\xd2\x80\x66\x87\xbe\x0a\xeb\xc6\xc3\x95\x82\xcc\xf3\x85\xed\x2b\xc4\xa8\xf0\x23\x00\x1c\x9d\x7d\xa4\x29\xfc\x0b\x33\x99\xd2\x94\xee\xc1\xeb\x5b\x7d\x9a\x6d\x0f\x7e\x66\x77\xf6\x88\x05\x9a\x89\xbd\x97\xed\xc3\x81\xc2\xa8\x0f\xdc\xeb\x65\x16\x34\xec\xf3\xf2\x8e\x13\x88\x4a\x20\x18\xf5\xb2\xca\x23\x8a\x99\x58\xdc\x24\x30\x00\xa5\xea\xfc\xa5\xfb\xf5\x2b\xa8\xd3\xdc\xfd\xfe\xd5\x18\x68\x2c\xc5\x48\x52\x98\x78\x60\xca\x39\xe3\xf9\xc6\x27\xd9\x21\x66\xe3\x75\xed\xf2\xe9\x75\x57\x63\x9b\x8c\xa7\x90\xcd\x66\xc5\x07\xa2\xfc\xb7\xdd\xe1\x26\x62\x36\x57\xdf\xf9\x11\x0c\x78\x4e\x66\xe6\xc5\x47\xd0\x6f\x32\x07\x88\x0c\x90\x68\xa4\xa3\x91\x5b\x1f\xb1\xa7\x6f\x32\xe8\x38\x64\x23\x89\x98\x23\xf5\xae\x0a\xdf\x94\x00\xf3\x0c\x35\x56\x61\xf3\x81\xbc\x40\x02\xe6\x9d\xb9\x58\x85\xcd\x05\xcb\x44\x02\xc6\xd5\x1a\x8e\x3f\x32\xb2\x70\x97\x84\x9e\x84\xdc\x17\xe1\xa0\xea\xe5\xe7\x1f\xe0\xdd\x55\xf9\x39\x2e\xcd\x6a\x30\xb2\x02\xde\xc8\x94\x0b\x94\xcd\xf5\x1c\x86\xcd\x6d\xb6\xf0\x5f\x52\x86\x92\xcb\x03\xba\x20\x3a\xff\xae\x02\xcc\x23\x0e\x48\x06\x8d\x09\x2c\x52\x61\xe3\xc8\x15\x99\x9b\x3b\xe7\xa7\xcf\x2f\x2c\x07\x02\x21\x4b\x72\xcb\x83\x12\x49\x1d\x6b\x7f\xa2\x10\x2d\xb7\x7b\x32\x5c\xdf\xad\xff\x2c\xf2\xab\x1c\x24\x41\x65\x2a\x2b\x30\xa4\x5a\x22\x63\x57\x1c\x48\x81\x0b\x88\xf3\xa2\x9b\x02\x3d\xfb\x7e\x76\x63\x3f\x2d\x08\x33\x01\x00\x73\x74\xd1\x35\x6d\x73\x3e\xab\xdb\x81\x85\x18\x00\x43\xd8\xb3\x9d\x70\x63\x3f\x2f\x0e\xd5\xbd\x71\xdc\x2a\x12\x0d\xe8\xd1\x94\x73\xe0\xc6\xf7\xa0\x48\x1c\xcc\x30\xa6\xa1\x34\xb5\x08\x34\x60\x32\xeb\x68\xc4\x75\xf0\x72\x30\x9b\x99\xa4\x74\x9f\xf3\x85\x15\xe9\x11\x64\xc3\x8b\x51\x52\x6c\x6c\xf2\x49\x2b\xe1\xae\xda\x3a\x0e\x9d\xc8\x92\x1f\x5a\x25\xc6\x4b\xd8\x31\xd1\x97\xd4\xa9\x44\x4f\x37\x43\x6b\x03\x92\x5d\x6f\x0a\xb7\x0d\xd9\x4d\xe1\x47\x97\xed\x3d\xe7\x15\x43\x1d\x4c\xfa\x8a\x6e\x04\x33\xaf\x2a\xf6\xab\xb3\x27\xcb\x4d\x8d\xe4\x57\x04\xcf\xcd\x07\x98\x65\xd8\xfd\x20\xb3\x0e\x27\x1a\x00\xbe\xcc\x39\x02\x4f\x0e\xff\xbb\xe2\x6e\x94\x3d\xad\x89\x15\x2c\xb7\x42\xf2\xde\x9c\xc3\x74\xd0\x44\x13\x84\x1d\x47\x56\x4c\xad\x4c\x04\x47\x10\xcf\xd7\x47\x86\x8d\xe3\xcc\x40\x85\x6d\x12\x29\x8b\x8b\xe9\xa2\x48\x0d\x14\x4a\xc8\x68\x0c\x60\x2b\x10\x80\xc9\x07\x49\xc0\x91\x83\x53\x55\x55\x57\x0e\x8e\x25\xe4\x7a\x14\xc9\x06\x58\x44\xb7\xc1\x73\xd8\x19\x38\xd8\x8d\xdb\x94\x0d\x8e\x89\x96\xd6\x7e\xa1\x4f\x57\x4f\x82\x37\xa5\x56\xd8\x33\x1c\x50\x91\x05\x62\xbe\xf4\x16\xf7\x35\x62\xee\x9e\xc9\xfe\x89\x4a\x27\x25\x23\x85\x6a\xe5\x68\xaa\xc2\xa5\x93\x12\x58\x0a\x7d\x9f\x49\x20\xdd\xec\x30\xe9\x44\x54\x4f\x4a\xdc\xac\x7c\x27\x49\x55\xb4\xe3\x5c\xa5\x90\xd2\x49\x09\xd2\xb0\x73\x52\x32\xd0\x58\x59\x1b\x2c\xa2\x8a\xee\x57\x44\xf3\x8b\x39\xf2\xcc\x4b\x99\xb6\x17\x75\xe0\xd2\xcc\xb9\x1f\xcc\x0a\xbd\x49\x1b\xc8\xd5\xba\x58\x86\xc0\xd7\x53\x59\xc4\x52\xbd\xc2\xdd\x91\xa1\xae\x0c\xc9\x0e\x37\x3e\x61\x20\x9d\xec\x47\xe8\x64\xbe\xce\x37\x61\x61\x4b\x2b\x10\x67\x14\xe5\xe8\x38\x6e\x64\x32\x6c\xd8\x77\xa8\xc2\xce\x34\xe8\xc9\x62\x7c\x0f\x53\x07\xf3\x98\x4e\xa5\x9f\x9b\x23\xf7\x61\x34\xd6\x90\xad\x85\xa2\x72\x2f\xf1\xca\x3e\x5b\xba\x93\x4d\x35\xde\x4e\xb6\x48\x01\xa6\xb6\x2a\x91\x33\xd9\x22\x39\xc2\xcb\x6a\x5d\x9d\x99\x15\x1a\x1a\x3b\x31\x86\x0e\x76\x53\xea\x1d\x7f\x0a\x4d\x5d\xf0\xa6\x54\x37\x67\x0a\xa9\xae\x76\x9a\xdd\xd3\x88\x99\x42\x50\x80\xe7\x33\xa5\x11\x23\xbc\xa1\xfb\x5c\x9f\xa9\xb1\xa6\xf0\x6f\xcd\x67\x77\xd4\x51\xe8\x81\xa9\xbe\x28\xff\xa1\x7b\xf8\x04\xe0\x05\x82\x8a\xfc\x95\xd7\x5b\xf5\x1c\xf1\x99\x71\x28\x00\x09\x7f\x81\xb4\xcf\x1c\xdc\x01\xce\x4d\x10\xc6\x3f\x37\x26\x03\xe9\x7e\x70\xe1\x6d\xf4\x80\xc2\x43\xfa\x40\xe3\xec\xce\xe0\x38\x29\xf7\x90\x2e\xd0\x18\x55\x4a\x12\x18\x3d\x0a\x82\xb1\xfd\x68\x97\xe8\xf5\x1c\xa7\xe6\x08\xb6\x0b\x47\xc3\x17\xe5\xed\x87\x18\xc6\xbc\xbc\xfd\x10\xe3\x9d\xcf\x31\xc7\xea\xc3\x20\x1d\x70\x1b\x01\x24\x61\xe6\x13\x5d\x00\x5e\x3c\x02\xda\xc7\x16\x47\x32\xa9\x7d\x6d\xd1\x00\xd9\x4a\xfb\x44\xc5\xa1\xc6\x6e\x7d\x84\x44\xd7\xfe\x6d\xd1\x91\x86\x4b\x0a\x7d\xe5\xde\x61\x3f\x31\x8f\x13\x57\x2e\x15\x8e\x65\x26\xce\xa7\x4b\x24\x72\x6d\x5d\x19\x65\x39\x95\x52\x5e\x9e\xbe\x7b\x2b\x39\x04\x03\x81\xfa\x26\xd2\x3d\x18\x8a\xf2\xf2\xf7\xec\x5c\xe1\xda\x35\x80\xe7\x0e\xde\xd5\x68\xc5\x51\xbc\xaf\x63\x3c\x2f\x71\xa8\x17\x59\xe0\xcc\x28\xcc\x48\x0e\x17\x60\x8a\x0a\xb6\x23\xc6\x82\x72\x0f\xe2\x03\x82\xe6\x81\x4b\x49\xe0\x3f\xe7\x9a\x33\xac\x0f\x34\x60\xa7\x98\xb3\xe5\x54\xf3\x53\x17\x36\xaf\x39\x5b\x3a\xd7\xba\x43\x89\xe8\x32\x61\xe0\x2b\xca\xf9\x54\x12\x95\x94\xf3\xbe\x42\x8d\xe3\x07\x02\x6b\x60\xce\x32\x53\x03\x18\x11\xef\xd0\x1c\x78\x90\x23\xdd\x17\xf2\x55\xfe\x8b\x77\xfb\x87\x47\x2e\x90\x7b\x26\xd3\x3e\x98\x86\x34\x66\x4d\xcd\xf2\x7b\x50\x55\x6f\x5b\xf9\xf2\xc1\x46\x67\xdb\x69\xcf\x89\x31\xc6\xca\xc8\x01\x1d\x07\x5c\x69\xa3\xda\xec\x7f\xab\xab\x64\x26\x6b\x1f\xab\x5c\x70\x29\x57\x67\x27\x87\xc0\x34\x77\xc1\xc9\xd2\xf9\xd6\xb3\x9a\xe5\x02\xb4\x74\xaa\xe0\xcc\xec\x9f\x62\x09\xe4\xf6\xb1\x8b\xae\x4c\xb6\xc4\x5f\xcc\x29\x4d\x17\x1c\xc0\x2f\x2a\x4a\x2f\x74\x53\x45\xe9\x15\x65\x5c\x38\x16\x9c\x81\xa4\x32\xc2\x08\x04\xa4\x63\x79\x80\x15\x3e\x77\x4c\x0f\x60\x30\xbb\x70\x5f\xc7\x18\xc8\x3c\x5c\x04\xd8\xf6\x8e\xdc\x9b\x2b\x78\xd0\x2d\x77\x6c\x8e\x51\x5c\xb9\x6d\x89\x6d\x5c\xf5\x66\xa5\x60\xf7\x4b\xc7\x23\x56\xf4\x65\xe1\x78\xc4\xca\xb0\x5d\x43\x42\xa0\xb7\x61\xd1\x0b\x85\xb3\xa4\xe8\x78\xe6\xbc\x57\x2e\xfa\xe4\x72\xea\xbc\x28\x2a\x6a\x54\x38\x00\x98\xe0\x2e\xdd\x2f\x4d\x40\x83\x0a\x0f\x11\x83\x75\x69\x7d\x71\x45\x37\x15\xd6\x17\x77\x0a\xb1\xa6\xdb\xbb\x10\x6b\x7a\x1d\x82\xee\xe7\x4d\x05\xa3\x5d\xba\x9e\xb6\x60\x4a\x2e\x3c\x24\x04\xc4\x31\x7e\x42\xb5\xbd\xd3\x3a\xa8\x77\x79\xe1\x18\x01\x59\x69\xe1\x10\x3c\x74\xe9\x78\xca\x8a\x3e\x29\x1c\x4f\x59\x08\x3b\x27\x78\x50\x63\xe7\xfb\xa4\x30\x2b\x0b\xe7\xba\x30\xa8\x64\x85\xfb\xa8\x14\xb4\xc0\xfb\x2e\x66\x64\x10\xfb\x0e\x8d\xc2\x9c\x0f\xd4\x41\xce\xee\x1b\x50\xa2\x01\x97\x8e\x43\x2c\xe8\x95\x85\x0b\x40\xe7\x2b\xa7\x44\xf0\x27\xb9\xa4\xb1\x76\x42\xbc\x32\x41\xd7\x01\x31\x71\x51\xc7\x03\xb1\xaf\xf1\x0d\x2e\x88\x30\xe2\xce\xfe\x15\x24\x10\x00\xce\x3b\x16\x70\x0c\x7e\xe9\xbc\x7f\x0c\x96\xa1\xc2\x05\x20\x59\x45\xfe\x42\x47\x54\xe4\xaf\x98\x6b\xca\xee\xe6\x7c\xb1\x11\xb2\x5c\xa2\xb2\x35\x6e\x83\x81\xee\xd2\xa3\x8a\x1d\xaa\xb2\x25\x11\x78\x50\x28\xd9\xa5\x0f\x41\x42\x8f\x54\xbe\x34\xa9\xe0\x32\x75\x2c\xe1\x0d\x47\xcb\xc0\x1e\xcb\xea\x87\x1d\x25\x23\x2d\x37\x7c\xd6\x51\x72\xd4\xb2\xdc\xb5\xcb\xe5\x86\xc7\x95\x06\x3a\xa6\x6a\xbe\x1c\x42\x2e\xd6\xbf\x48\xd6\xd0\x84\xe3\x8e\x8a\x9f\xbb\xc0\xa5\xb7\x71\x47\x7d\x45\x63\x21\x95\x4d\xf9\xd0\xd1\xa0\x7a\xad\x95\x29\xd5\x58\x99\xf3\x4c\x98\x92\xde\x77\x1a\x63\x83\xd8\xa9\xa1\x30\x67\x6a\x40\x07\xd8\x93\xb9\x50\xf6\xaa\x0b\x40\x6f\x3a\x27\x30\x30\x91\x2f\x2b\xaf\x2a\xc3\xdc\xac\x2c\x16\x30\xaf\xdc\x4f\x33\x82\x34\x76\xdf\xa7\x86\x03\x97\xc2\x43\x40\x52\x38\x47\x3e\x7d\x15\x36\x27\x3c\x62\x35\x2e\x1c\x99\x0d\xad\xbf\x34\x1e\xc5\xc0\xf7\xc6\xa3\x18\x42\xfe\x97\x1c\xc5\x00\xde\x22\x3a\xe3\xe6\x24\x2d\x02\x84\x6f\xb0\xae\xdc\x22\xee\xbe\xea\x0c\x0d\xb8\x45\x9c\x32\xa1\x44\xea\x0b\x3c\x81\xa2\x2c\x99\x60\x04\x62\x80\x81\x02\x2a\x7e\x70\xb7\xce\x62\x03\xa9\x9c\xc5\x46\xe5\x62\xdd\x14\x40\xf3\xba\x45\xdc\x33\x84\x77\x14\x56\x31\x60\x18\x23\xa4\x1b\x6b\x2d\x19\x7e\x74\x79\xeb\xb6\x31\xd6\xee\xe1\xdc\x68\x57\xc7\x8f\x55\x0d\x37\x5c\x67\x9a\x76\xfc\x28\xf7\xd6\x12\x6c\xd8\x6f\x8d\x44\x42\xe0\xd1\xf8\xde\x6a\xba\xe0\x22\x26\xe2\xcd\xb7\xc5\x05\x9b\xbc\xb7\x7e\xd4\x90\xb7\xf5\xa3\x86\xa0\x7b\xc9\x08\x00\xf7\x8e\x11\x14\xe0\x52\x40\x86\x2e\xc5\x54\x53\x68\xe3\x0a\xbc\xa4\x77\x8b\xb1\xa9\x56\x07\xdc\xce\xec\xf7\xdb\x41\x79\x7e\x6f\xcf\x33\x43\x19\x6b\x75\x46\x04\x80\xfd\x8a\x48\x07\x0e\xa2\x6f\xb1\xfa\xa6\xc6\x1a\x92\xbb\x1f\xd8\x90\x25\x02\xa7\xaa\xc8\xdc\x8d\xda\x70\x65\xb4\xeb\xc0\xea\x19\x93\xb5\x03\x9d\xe3\x25\xe2\xc8\x9c\xcd\x0f\xfb\x23\x27\xd2\xdb\x6f\x04\x32\xa2\xfa\x30\x8b\x68\xc4\xfb\xb2\x52\x20\x7a\xef\xb6\xac\x14\xc0\xa0\x3a\x0f\x41\x48\x0e\x70\x2f\x16\xda\xdb\x81\xb7\xee\x1d\x3e\x7b\x11\xef\x7d\x65\x5d\x83\x49\x53\x59\xd7\x60\x52\x97\x7d\x54\x6f\xdd\xd7\xe5\xa0\x63\x2a\x82\x0b\x86\xa8\x22\xb8\x60\x58\x7d\xeb\xa5\x65\x78\xdf\x88\xe9\xe2\xae\x01\xc6\xc7\x71\x75\x5e\xbd\xf7\xf8\x13\x38\xe3\x0b\x99\x7d\x41\x33\x2d\x95\x04\xf4\xc1\x39\x94\x05\x8f\xc0\x3b\x17\x10\xf2\xe1\x0e\xc7\x76\x9a\xc0\xc9\xae\xf3\xc9\xec\x0e\xb8\x93\x7f\x70\x00\xb0\xfa\x00\x85\x61\xca\x31\x20\xc4\xdc\x24\x90\x5f\xef\xfc\x50\x1e\x61\x51\x9d\xbb\xf2\x08\x8b\x2a\x7d\xa8\x0c\x91\x60\xea\xbb\xca\x10\x89\x5c\xef\xbc\x32\xee\xb8\xcb\x6c\x77\x1c\xeb\xf7\xff\x15\xf2\xa1\x32\x5c\x82\x25\xee\x2a\xc3\x25\xe4\xf7\xbd\x3d\xb9\x01\x89\x78\x6f\xbf\xe2\xd9\x87\xef\x18\xdc\xdb\x13\x1b\x50\xb4\xee\xdd\x6f\x04\x0b\x6e\xf9\xbd\xdc\x62\xc1\x05\xf7\xe5\x16\x8b\x3e\xbf\x9f\x3b\x1f\xf9\x1d\x02\xb0\x6f\x01\xd1\x51\xbf\x6b\xc1\x0f\xbb\x93\x7b\xf3\x5d\x52\x08\xa5\x4e\x6a\xc8\x2e\x75\x52\x8b\x7e\xb9\x37\xef\x79\xc9\x27\x30\xef\x9d\x67\x70\xa0\x52\xf6\x8a\x1c\x02\x5e\xfa\xbd\x32\x04\xd0\xe2\xca\x10\x8c\x25\x6a\xf7\x8c\xf0\xf9\x8d\x7b\xe6\xec\x10\xe1\x82\xca\xbd\xfb\x15\xe3\x01\x00\x4e\x15\x45\x2e\xbf\x57\x86\x06\xfa\xb4\x32\x34\x31\xa0\xf6\xb4\x0c\xc1\x01\xc7\x7d\xe1\xd6\xa1\x07\x88\x33\x1a\x90\xd5\xad\x2f\x47\xef\xef\xca\x5c\xfc\x87\xb3\xad\x13\xc5\xac\x9c\x6d\x9d\x08\xff\xb1\x6f\xf7\x4b\x89\x8c\x37\x1b\x26\x11\xfe\xc3\x9d\x4a\xa2\x56\x2b\x17\x18\x02\x85\xc9\x60\x0a\xf1\x26\x3d\x04\xe5\xc7\x15\xee\x41\x27\xfb\xa3\xcc\x3c\x62\xdc\x56\x65\xe6\x11\xa5\xfc\x61\xbf\x0e\x04\xd7\x68\x57\xf6\xf3\x40\xe0\x97\xfa\x47\xe5\x0d\x1b\xd1\xd8\x55\x65\x2c\x05\x9b\xfd\x51\x19\x05\xd1\x97\xab\xca\x28\x08\xb6\xfb\xc3\xd9\x3e\x8a\xf0\xca\xd9\x3f\xca\xb0\xd6\x99\xa0\x73\x54\x48\x74\x85\x60\xc9\x3f\x5d\xa7\x17\x38\x94\xf9\xe2\x21\xa2\x36\x7f\xba\x86\x4d\x38\x6b\xf8\xe2\x21\x18\x68\xcc\x92\x3d\x04\x02\xb3\x64\x8b\xe0\x9f\xf6\x15\x5e\x30\x73\x7f\x71\xc2\xa2\x43\xbf\x60\xe7\x9b\x0a\xb0\xda\xfe\x89\x39\xfb\x40\xe2\x7c\x5e\x79\x3b\xec\x4f\xc7\x12\x39\x80\xb4\xd6\x10\x09\xe1\xf2\xe0\x40\x05\x8c\xcf\xa9\xcc\xdd\x1a\x32\x60\xbd\xfd\x62\xed\x18\x30\x96\xde\xf7\xbe\x43\xe0\xc2\x2f\x95\x81\x82\xca\x58\x8f\x30\x38\xec\xff\xb3\x32\x70\x82\x89\xbe\x54\x06\x4e\x0c\xc5\x97\xbb\xcf\xba\x5d\x50\xc0\x1d\x35\xe1\xa8\xfe\xf0\x53\xf3\xa1\x95\x14\x14\x0e\x63\x1b\xb8\xf9\x15\xb7\xf1\xfd\x92\xf1\x3c\x9b\xbc\x3e\x3f\x7d\xdb\x5e\x22\x9e\xe1\xc6\x4f\x5f\xeb\xfb\xce\xf7\xad\xc4\x7c\x42\xce\xf7\xad\x44\x78\xdf\x7e\xd1\x4a\x48\x00\x64\xbf\x68\x25\x83\x9a\x18\x38\x6c\x5f\x5f\xc0\xbd\x07\xc3\x3f\xd2\xd7\x6f\xef\x41\x45\xda\x77\x3e\x37\x25\x78\x17\x39\x9f\x9b\x82\x30\x3c\xec\xb3\x25\x28\x4f\xce\xf4\x2f\xbd\xe9\xb8\x87\x9d\x10\x32\x41\xf0\xa9\xdd\xb7\xf7\x0e\x41\x76\x23\x1b\x86\xb7\x0a\xf6\xcd\xf7\x6b\x44\xed\x90\xf9\x7e\x8d\x08\x4d\xb9\xbe\x50\x78\x0f\x3e\x9c\x07\xc6\xb4\x7e\x0f\x67\x77\x91\x0d\x83\x8f\x9f\x0d\x82\xbd\x3a\x52\xce\xd0\xf7\xa0\x42\x46\x6c\xa9\x1c\x54\xc4\x14\x38\x38\x3d\xfb\xc3\x86\xa2\x82\x73\x2d\x12\xe0\x63\xfa\xca\xd5\x1a\x36\x47\x31\xb9\x25\xfa\xe6\xe4\xf0\x07\x3e\x0b\xff\xed\x0f\xbc\x7f\xef\x43\xe8\xff\xdc\xa7\x93\x37\x7e\xd4\xb6\xf4\x09\x5b\xf7\x43\xb3\xd5\xaf\x25\x7e\xef\x23\x6a\xdf\xfe\x6c\x5a\xe9\x43\x67\xdf\xfd\x6a\x59\xe9\x33\x4d\xdf\xfa\x88\x51\xf9\xd3\x2b\x95\xa7\x76\x4b\xcf\xcc\x56\x5e\x38\xf5\xde\x2c\x2d\x3d\x3e\xe9\xbd\x1f\xf6\x9d\x77\x1f\xbe\x77\x3b\xff\xdb\xb7\xf1\xbf\x7b\x17\xfd\x1b\x77\x8e\xbf\x77\xf7\xf7\x7b\x77\x7d\xbf\x75\x67\xb7\x74\x91\xb6\x7c\xe9\xd1\xbf\x6f\xf8\x8d\x3b\x49\xa5\xfb\x3c\x8f\xde\x55\x28\xf9\xea\xb9\x4e\x63\xff\xc0\xf9\x70\xe9\xd0\xef\x3b\x27\x3c\xde\x99\xca\xf7\x4c\xca\xdf\x31\xe4\x7e\xcf\x50\xea\x99\x1e\xbf\x61\xd9\xf8\x9e\x0a\xe4\xa9\x28\xee\x02\xff\xc3\xcb\x86\x95\xd5\xfa\x31\xd7\x9f\xdc\x99\x6f\x26\x92\x33\xa8\xa5\xbc\x5b\x79\x8b\x36\xbf\xd6\x8b\x0c\xd7\xb2\x9c\x93\x28\xaf\xef\xdd\x22\x5e\xe3\x2d\x36\xa9\xb3\xe9\x67\x31\x92\x93\xc9\x24\x5f\x2d\x31\x4b\x6a\xef\x70\x92\xe2\x28\x7f\xaa\xfe\xee\xd2\x22\x4d\x5b\x64\xc2\xb6\xb6\xea\x3a\x47\x87\x9a\xb5\xd1\x72\x99\xae\x9e\xaa\xbf\xbb\xe5\x42\x39\xce\x0b\x4e\x6b\xcf\x15\xdc\x5e\x72\x96\x33\x91\x56\xd2\xb7\x23\x94\xa6\x8a\xf6\x61\x8f\x3f\x5e\x0a\xbb\xa3\x6f\xf0\x2a\x7b\x6a\x7e\xed\x9e\x42\xc5\xdb\x33\x9c\x9f\xde\xd1\x33\xce\x96\x98\xe7\xab\xf3\xd5\x62\xca\xd2\xec\xa9\xdb\xaf\xaa\x0a\x1b\xe9\xdf\xa2\x05\xce\x1a\xb8\xd9\x8e\x18\x8d\x50\xde\xf8\x56\xa6\x0d\xdc\x6c\x3e\xec\xfe\xa3\x39\x3f\x40\x57\xa3\xc9\xdb\x62\x31\xc5\xbc\x4d\xb2\xb7\xe8\xed\x7a\xbd\x21\x17\xfc\x64\x32\xc1\x0f\x7b\x3a\xa6\x96\x35\x9a\x5f\xb3\x36\xa1\x24\x97\x9d\x94\xcf\x49\xd6\x7c\xb0\x4c\x92\xb5\xb2\xf6\xd1\x2d\xa6\xf9\xd1\x82\xe4\x39\xe6\x00\xd8\xee\xbd\xc2\x22\x2e\x9b\xdc\x32\x12\xd7\x82\x4d\x51\x07\xac\xa0\xf9\xa4\x14\xb5\x40\xf7\xc7\x24\xcb\x31\xc5\x5c\xa7\x85\x06\x44\x93\x30\xb0\x75\x4b\x9d\x7a\x4b\xa2\xc9\x64\x52\x4a\xfd\x34\x6b\xc7\x38\x41\x45\x9a\x9f\x38\xe8\x6e\x89\xea\xc1\xe4\x59\x48\x36\x68\xf1\xe6\x57\x51\x20\x6b\x91\x16\x6a\x65\x7b\x24\x69\x58\x8e\x78\x62\x38\x82\x36\xf3\x39\x67\x77\x35\x8a\xef\x6a\x17\xab\x25\x3e\xe2\x9c\xf1\xc6\x4f\x17\x73\x5c\xab\xa7\x2a\xf3\x7a\x0d\xf1\x59\xb1\xc0\x34\xaf\x2d\x8a\x2c\xaf\x4d\x71\x8d\x25\x35\x91\x81\xe5\xc7\xda\x3b\x1c\x61\x72\x8b\x63\x89\xff\xb4\x6d\xf2\x17\x25\x9b\xb6\x35\xc8\xc4\xf4\x5b\xf3\xa9\x1b\x9a\xa8\xd1\x8f\xe0\xbd\xbd\x86\x98\x2d\xcd\x56\xb9\x8f\x9b\xbb\x2a\xab\x27\x93\x09\x69\x53\x7c\xa7\xdb\xbf\xb5\xd5\xc0\x6d\xbc\x20\x79\xa3\xee\xa0\x75\xd1\x11\x6d\xdd\x8c\xa7\xf6\xe7\x2e\x6d\xb6\xdc\x9a\xb4\xd0\x84\x7c\xcc\x3f\x35\x5b\xa6\xa2\xa8\x29\xa1\x09\x6d\x6d\x6f\xfb\xd5\xd8\xc3\x69\x86\x6b\x5e\x7f\xda\x19\x86\x9e\xaa\x74\xfc\xe9\x47\xda\x42\x9f\x76\x3f\xa2\x16\xfd\xb4\xcb\x9f\xa2\x76\x41\xb3\x39\x49\xf2\x06\x6d\xee\xa2\xf6\xb2\xc8\xe6\x0d\xda\x6c\x35\xd8\x44\x30\x41\xf3\xd7\x60\x6b\x0b\xb5\x53\x4c\x67\xf9\xfc\x57\xb6\xb5\xf5\x04\xb5\xef\x10\xa7\x38\x6e\x7e\xd5\xbf\x26\x4f\x34\x0b\x89\xc1\x92\x03\x55\x3f\x63\x19\x7c\x98\xb2\xe6\xb2\x70\x6d\x81\x17\x8c\xaf\x6a\x29\x46\xd7\xb5\x18\xe7\x38\xca\x71\xdc\xae\xd5\xb7\x75\x09\xdb\xf5\x5a\x7d\xfb\x3c\x17\x9a\x69\x23\x6f\x6e\xd7\x6b\xba\x63\xb2\x1a\x8a\x63\x41\x7b\x99\xe1\x1a\x96\xb9\xb5\x33\xec\xb1\x5e\xa3\x59\xcb\x59\x8d\x50\x31\x52\x19\xae\xa5\x64\x41\xf2\x7a\x73\x2f\x6a\x53\xb4\xc0\x93\xba\x4b\x7a\x74\x1f\x61\x1c\xe3\xf8\x03\xe2\x54\x68\xc1\xad\xa8\xad\x32\x9d\xe0\x56\xd4\x16\x7d\x36\xc9\x5b\x51\x3b\x82\xe1\xd5\xb5\x6b\x65\x93\xa8\x15\x31\x9a\xb1\x14\x6f\x6d\xa9\x1f\xd0\x09\x7e\xa8\x91\x35\x1f\xf4\xa4\xb7\xfc\xbf\x6c\x34\xbf\x26\x8c\x37\x44\x57\xe1\xc9\xc7\x4f\xad\x7c\x12\xec\xe5\xbf\x68\x16\xce\x54\x21\x7b\xf9\xf6\x76\x13\xcb\x71\x30\x71\x82\x07\xf6\x84\x80\x68\x27\x84\xe3\x78\xbd\x06\x69\xd1\x96\x8e\x33\x6d\x8e\x17\xec\x16\xeb\xc6\xa9\xa8\xd5\x12\xb7\xe0\xd7\x1d\x47\xcb\xe7\xb4\xd9\xb2\xc9\x27\x4f\x82\x16\x91\x64\xba\x7f\x5b\x4e\x7e\x2d\x21\x07\x4d\xb5\x13\x2d\xe9\x61\x45\x99\x7c\x85\x1c\x76\x9f\x84\x2d\x99\xef\xae\x92\x3f\x32\xe9\x2e\x6e\x89\x82\x77\xf3\x96\xe5\xe8\x87\x16\x9b\x2c\xdb\x53\x42\xe3\x06\x6f\xee\xa9\x7e\x61\xa6\xe4\x09\x6d\x71\x55\xc7\x09\x6b\x31\x5b\x70\xec\x17\x6c\x78\xdd\x9b\xb7\xbc\x29\x33\xfc\xf8\x09\x58\x90\x4d\xf8\xc7\xfc\xd3\x5e\x59\x72\xb1\xa7\x1f\x3f\xed\x6e\x5c\x77\x9e\xd2\xa7\x1f\x6d\x5d\xd6\x6b\xf6\x69\xf7\x23\xfb\xb4\x4b\xbd\x05\x46\x8f\x5a\x0e\x0c\xbe\xcf\x39\x5a\x35\xb0\x1a\xae\x66\x8b\x4e\x82\x3d\xfa\x4b\xae\x87\x6f\x7b\x9b\x36\xf3\x8f\xf4\xd3\x04\x7f\xa4\x9f\x9c\x9c\x45\x50\x57\x2c\x7f\x68\xb0\xe6\xee\xb4\xc1\x5a\x4c\x67\x63\xdb\x3d\x17\x45\xca\xe2\x60\x50\x2a\xcd\x16\x42\x52\x52\xd0\x49\xfe\x11\x7f\xda\x7b\x64\xca\x53\xd5\x37\xb5\xd0\x4b\x6b\x60\xaa\xca\xd6\xbc\x1a\xd8\x3a\x4c\x45\xdf\xdb\x86\x53\xa7\xe1\x79\xb3\xc5\x27\xc1\x1e\xff\x25\xdf\xdb\xde\xe6\x4d\xfa\x91\x8b\xa6\x72\xd3\x36\xfa\xa0\x04\x66\x8c\x13\x42\xb1\x5e\x2e\x1b\x99\xd8\xad\x55\x96\x8b\x7a\xeb\x2b\x86\x77\xd0\xd0\x34\xc5\xbb\x4f\x82\x96\x60\x22\xd3\xf7\x66\x0d\x8a\x1e\x5a\x99\x1b\x81\x9b\x5f\x45\xa3\x29\xac\xb9\xce\xaa\x81\xd7\x6b\xfc\x4b\xb0\x5e\x23\x21\xba\xec\x02\xf2\x0e\xd1\x99\xbb\x82\xdc\xa2\xb4\x80\xb5\x62\x63\x95\x6a\x24\xab\xb1\x22\x17\xf1\x70\x41\xbe\x5d\x7b\x65\x17\x18\x54\xa3\x8c\xee\x50\xf5\xaa\x7a\x4d\xd6\xc0\x59\x65\x7e\xda\xc6\xdb\xf5\xb6\x10\x3b\x13\xfc\xf0\xd0\x6c\xc9\x15\x7e\xe2\x34\xc9\x0e\xa2\x33\xba\x5b\x5b\x6e\xe8\xc9\x64\x62\x75\x8e\x33\xbd\x78\x9f\x26\x52\x47\xd0\x54\x5a\x0a\x7c\x6b\xa1\x72\x09\xf4\x5a\xa5\x40\x4f\x13\xa8\x42\xeb\xb5\xac\xe8\x83\xa7\x3f\x94\x44\xee\xe4\x5f\x3f\x22\xf4\x5f\xd4\xff\x7a\xaa\x55\xdb\x2a\xe5\xa2\xdf\xae\xd9\x63\xed\x32\x2c\xa8\x15\x34\x2f\x99\x58\x34\x26\x9b\x45\xc5\xc7\x4f\x2d\x3a\x09\xf7\x68\x55\xc0\xd3\xed\xed\x66\x5e\x16\xf0\xf4\x53\x53\xea\xec\x93\x3a\x16\xdd\x22\xe6\x31\x6e\xb1\xc7\x45\x00\x6b\xf2\x09\xdf\xda\xb2\x32\xae\x0d\xe9\x8c\x12\xf0\x44\x8b\xc6\x27\x30\xfd\x95\xd6\x85\xc4\x6f\x2d\xab\xc4\xda\xde\x40\x93\xfc\x63\xf0\xa9\xd9\x42\x35\x42\xb3\x1c\xd1\x48\x8c\x1a\x8c\x8c\x1a\x2e\x04\xf5\xca\xdc\xc5\xfd\x92\xce\x11\x8d\x53\x1c\xd7\xa0\xcc\x76\x7d\xbb\x81\x9e\xd6\x6b\x0d\xb1\x90\x2f\x70\x96\xa1\x19\xde\xae\x37\xeb\xbb\xf5\x7a\x53\x2c\x5b\x22\x97\x4c\x68\xe0\x39\xbe\xcf\x27\xa8\x95\x3d\x48\x75\x81\x29\xe1\x65\xda\x10\x79\x55\xde\x24\xd3\xa2\x26\x69\x44\x30\x7e\xad\xbc\x09\x6d\x85\x66\xa5\x93\x48\xaf\xd1\xc5\x64\xda\x88\x5a\x69\x73\x4f\x0c\x85\x94\xcd\x29\x08\x65\xd2\x28\x3e\xd2\x4f\x3a\xad\x12\x7a\x4f\x4a\xfc\x8d\xe2\x58\x33\xc1\xc4\xdd\xea\x18\x36\x28\x80\x0d\x5a\x62\x69\x7a\x12\x96\xb8\x81\xd1\xc9\x23\x79\x79\x64\x4b\x8e\x97\x98\xfe\x03\xe5\x04\x95\x72\x22\x5c\x4a\xf5\x88\x16\x9d\xff\x0f\x6b\xd1\xb9\x3f\xcf\xa0\x36\x89\xa9\x79\xb3\xb9\x61\xa6\xa9\xd6\x9f\xd2\x08\x3f\xd2\x03\xff\x19\x6d\x29\x8d\xd2\xf7\x1b\xe6\x6b\x61\xa5\x36\xc1\x2a\xda\xe2\x2d\xd8\xf5\x3c\xb6\xe7\xf9\x37\xb4\xd0\xdb\xf3\x70\x4f\xba\x34\x9b\x4e\xf3\x7d\x42\x3a\xe1\x1f\xf1\xa7\x0a\x01\x15\xf3\x72\xbd\xb6\xdb\x17\x11\x6e\x8a\x14\x3b\x3b\x95\x85\xe7\xe9\xf7\xd6\xaa\xdd\x46\x8c\x53\x9c\xe3\x9a\x28\xab\xc5\x4b\xfd\xa9\x16\x48\xb9\x95\xf2\xa3\xea\x2d\xec\xec\xa6\xd6\xeb\xbc\xd9\xdc\xb0\x15\x72\xb7\x96\x20\xa6\xd9\x64\x27\x6c\x91\x89\xd6\x82\x76\xc2\x3d\xf2\xeb\x24\xd8\x23\x3b\x3b\x4d\xd1\xb6\x8f\xe4\x93\x6a\xde\x47\xf2\xc9\x6f\xe1\x57\x34\xf1\xc0\x16\x9b\x90\xbd\x29\xc7\xe8\xfa\x81\x24\x0d\xf6\x4b\xe0\x75\x94\x54\x40\x69\x5b\x6e\xb2\x9a\xbb\x3e\x63\x88\x9a\xec\xe5\xdb\xe1\x2f\xd8\xd3\xff\xc5\x4e\x0d\x7f\xcc\xb7\xc3\x4f\x7b\xb8\xbd\x64\xcb\x46\xf3\xa1\x41\x5b\xac\xd9\x0a\x27\x13\x53\xe5\xad\xad\x86\xe8\xab\x09\x05\x01\x6e\x56\x86\x7f\xb0\xeb\x90\xe8\xb1\x07\xa7\xc6\x25\x61\x93\x24\x93\xc7\xd9\x7c\xc3\x0c\xd8\x4f\xd3\xcd\xfa\x01\xac\x8b\x2d\xda\xe2\x65\xe6\xfa\x31\x2e\xa4\xa5\xa2\x35\x21\xec\x8a\x4b\x6b\xec\xd3\x7f\x4e\x33\xda\xb5\x4a\xf2\x47\xfc\x69\x6b\xab\xf1\x4f\xf3\xb2\x62\x65\x91\x8d\x2c\x4a\x34\x65\x53\x4d\x8d\x31\x44\x67\x73\x8d\x57\x59\x83\xca\xe5\x4b\x2a\xda\xc4\x6e\x2d\x78\xb3\x3c\x80\x4f\x26\x93\x06\x9b\x90\x8f\xfc\x53\x53\x8d\x73\x75\x14\x1a\xcc\x17\x6d\x1b\x28\xca\xd9\xfa\xfd\xf3\xa3\x1d\x28\xa5\xe2\xe6\xa5\xbb\x91\x43\xa7\x0a\x25\xd0\x54\xc1\x11\xae\xb9\x9d\xb3\xce\x2e\x47\x76\x42\x6e\xa7\x28\x17\x53\x94\xef\xec\x3c\x96\x8b\xe8\x87\xbd\x47\x79\x39\xdd\xc8\x97\x8a\x3c\xd6\xe2\xbd\xb2\xde\x72\x74\xb7\x99\xa3\x2b\x29\xa5\x46\xa0\x8b\x91\xbd\xb2\x69\x79\xdf\xa4\xda\x60\x3f\xdd\xd3\x52\xb8\x91\x37\x77\xe7\xc6\x9c\xda\xdc\xdc\x30\x59\xe2\xdc\xd7\x51\xc5\x08\x81\xb5\x72\x83\x56\x5b\x19\xc4\x5f\x83\xa7\xdc\x9b\x3c\xcd\xdd\x8f\x9f\x1e\xaa\xc6\x66\xa9\xab\xd2\xc6\x60\xd4\x6c\xb1\x89\xb5\x5a\xfa\x9c\xc2\x9b\x2d\x32\xf9\x9a\xa3\x99\x28\x7f\xb7\x4e\xd1\x02\xd7\x1f\xf6\x5c\x4e\x27\xcd\x76\xc2\xf8\x11\x8a\xe6\x8d\x46\x45\x58\x4c\x88\xd0\x10\x37\xef\x27\x59\x0b\xb7\xbe\x6e\xde\x2d\x8a\xea\x7f\xcc\x3f\xad\xd7\x82\x51\xab\x3b\x47\x9f\x6a\x82\x5b\x62\xa3\xf6\xd0\xdc\x60\x51\x37\x8d\x1c\x8a\x46\xd2\xc6\x60\xdc\xb4\x36\x52\x22\x07\x14\xfa\x4a\xec\xf1\xe4\xb0\x98\x68\xe4\xa9\x73\x4c\xec\x30\xd4\xbb\x4f\xd9\xb3\xd5\x85\xec\x91\x86\x56\xef\x1c\xa3\xf0\x0f\xa7\x6a\x85\xcd\x8f\xc1\x27\x9b\x34\x2a\x99\xe4\x21\xf1\x05\xbe\xcf\x1b\xdf\xc8\x86\xb6\xc2\x66\xb3\x9d\x73\xb2\x68\x38\xb5\x48\xb5\xa9\xb6\xc5\x64\x27\x90\x49\xd4\x90\xc1\x3d\xb2\xb5\xd5\x80\xe5\x89\x34\x1f\x68\xa3\x17\x36\x1b\xa4\x25\x86\xd9\xe1\x38\xd8\xf1\x72\xd8\x36\x14\x1b\xe6\x4b\x9d\x67\x19\x6c\x6f\xd6\xeb\x7a\x82\x71\xac\x7f\xf3\x38\xd9\x7d\x77\xf8\x1c\x82\x0f\x7b\xc4\x53\x78\x31\x8d\xbd\x3d\x34\xe2\x35\xa8\xe2\xe4\xeb\x43\x8b\x4d\xb2\x46\x21\xc5\x51\xcc\x16\xcd\x3d\xb6\xb5\xd5\x30\x19\x33\xb0\xfe\x3d\x6d\xe4\x13\xd6\x8e\xe6\x24\x8d\x39\xa6\x2d\x2a\x2d\x7c\x75\x94\xb3\x45\xbd\x95\x36\x68\xab\x4e\xe0\x2c\x35\xae\xb7\xf2\xa6\x04\x72\x92\xa7\xf2\x54\x0a\xfe\xe6\xcd\x56\x03\x4f\xb2\x46\x3d\x25\xf4\x5a\x04\x9b\xa2\x1f\x26\xb8\x8d\xf2\x9c\x93\x69\xa6\x83\x73\x8e\x13\xf1\x5b\x28\x24\xf4\x7a\x82\x55\x6e\x31\xce\x22\x4e\x96\x30\xe5\xe1\xe6\xaa\x97\x6d\xd4\xa8\x17\xcb\x18\xe5\x38\xd6\x39\xd3\xb6\x02\x60\xdb\x75\x28\xe6\x12\x6e\xaa\xbc\x50\x91\xcf\x19\xaf\xb7\xea\x78\x81\x48\x5a\x97\x2c\xd4\xa2\x6d\x92\xe3\x45\x36\x41\x8d\x3a\xa6\x39\x5f\x89\x9c\xda\x0b\xb4\xdc\x30\xad\xa0\xdb\xf6\xcc\xbe\xd6\x6d\xbd\x68\x82\xee\xa6\xcd\x1d\x81\x9b\xad\x46\x6e\x3b\x02\x43\x75\xf3\x49\xee\x76\x84\x08\x96\x3a\x22\x87\x64\x51\xa3\x9e\x15\x8b\x05\x12\xd5\xc3\xcd\xf5\x3a\x6a\xd4\x61\x5b\x48\x73\x9d\x13\x6d\x3b\x5d\x65\x53\x99\xee\xd1\x54\xcb\x62\x2a\x7a\xc5\x76\x8f\x50\xca\xe9\x43\xb3\xd9\xdc\x95\xd5\x8b\xe6\x88\x52\x9c\xd6\x5b\x76\xdc\x9b\x15\x0e\x90\xdc\xd1\xce\x8a\x69\x96\xf3\x46\xd0\xea\x42\x3f\xc6\x93\x7a\xfd\x31\x26\x00\x58\x36\xdd\xb0\xc2\xa6\x21\xf6\x42\x66\x94\x53\x94\xe5\xcf\x0a\x92\xc6\xa2\xca\xff\xd0\x58\x2f\x10\x45\x33\x42\x67\x47\x31\xc9\x19\xdf\x30\xe8\xe2\x87\xdf\xd8\x7f\x68\xf0\x67\xc5\x0f\x0f\x7f\xb5\x0b\x36\x73\xb9\x17\xc2\x7a\x24\xd5\xc0\xfd\xc8\x48\x36\xcd\xa4\x06\x23\xb1\x73\x8a\x25\xcd\x0f\x07\x28\x4d\xa7\x28\xba\xb6\xe7\x67\x2d\xf6\x54\xc8\xfc\x5d\x65\xa7\x88\x58\x91\xc6\xf4\xa7\xbc\x96\x10\x1a\xd7\x38\x63\x60\x54\x02\xd1\x20\xc4\xbd\x5d\xb5\xc8\xe3\xb2\xbf\xab\x64\x7f\xd8\xed\x8a\xc5\x8c\xb7\x49\x76\x81\x66\x7b\x36\xad\x58\x84\x5e\x51\x8a\xf9\xcb\x8b\x93\xe3\xdd\x8d\x9b\x79\xdb\xa9\x4f\xed\xcf\xea\xf8\x68\xc1\x2d\x57\x92\x66\xb3\xfd\x99\x11\xda\xa8\xd7\x9b\xbb\xf5\xfa\x43\x6b\x86\xf3\xd3\x22\x57\xc5\xb0\x96\x12\xee\xa6\xc0\x9a\xe8\x38\xb1\x77\x06\x33\x6d\x9b\x64\xda\x5c\x6b\x14\x6a\x28\x10\xdb\x5c\x85\x4a\x4a\x2c\x41\x7d\x0a\x46\xa7\x5c\x0a\xcc\xfa\x5f\xb4\xbe\x8b\x1b\xb9\x65\x07\x69\x39\x82\x69\x23\xf6\x18\x07\x87\xfb\x17\xfb\x3a\xef\x6f\x11\x8a\x5a\xda\x3a\xc4\x28\x47\x8a\xfb\xea\xf5\x87\x6f\x28\x16\x61\xb7\xa7\x3b\xbe\x2f\x3a\x5e\xfc\x18\x37\xf7\x48\x1b\xcb\x85\x0c\x34\x9a\xf6\xd5\x15\x70\xc5\xd5\xd5\x44\x1e\x63\x2b\x29\x54\xe4\x78\x53\xbc\x3a\xaa\xfd\x6a\x50\x79\xf8\x9d\xe5\x2b\x69\x7c\x96\xfc\x2a\x7e\xdd\x2f\x96\xe2\x0f\x49\xb8\x50\x5c\x9e\x04\x2d\xca\xf0\x62\x8a\x63\xf9\x13\xd0\x4c\xfc\x5e\xa6\x88\x80\x59\x4b\x46\x98\x0c\x1e\x94\xd1\xac\x5c\x14\xe2\x18\x09\xd2\x29\xca\xb0\xfe\x9b\x30\x0a\xc9\xa7\x5c\xfc\x1b\xb1\x54\xfe\x59\x2c\x10\x85\xf2\x4c\xc1\xa6\x32\x73\xa0\x24\x8b\x19\xfc\xa1\xcb\x02\xd2\x93\x8c\xd0\x18\xdf\x8b\x9f\xd7\x78\x35\xc3\x54\xfc\x12\x13\x54\xfc\x5d\xe0\x1c\x0a\x5e\x22\x8e\x16\xd0\x56\x56\xf0\x08\x72\xcb\x39\x8a\x80\xe6\x0e\x6a\xf0\xd0\x8a\x1c\x7d\xce\xe7\x67\x9f\xb7\x84\x04\x17\xfc\x8c\x31\x27\x6c\xbd\x6e\xe0\x89\xdc\xee\x88\x5d\xf3\xd7\x87\x3d\x7b\x7a\x50\xaf\xb7\xd8\x24\xd8\x63\x76\x93\xcb\xb6\xb7\xb5\x66\x81\x3f\xb2\x4f\x7b\x75\x31\x39\x05\xfb\x11\x60\x9c\xa7\x74\x7b\x12\x35\x88\x95\xd7\x79\x73\x57\xcd\xbc\x06\x69\x8a\xd8\xa2\x41\x04\x48\x2c\x9f\x1d\x12\x8e\xa3\x9c\xdc\x42\xe2\x65\x83\x78\x91\x07\x6c\x21\x98\x46\x44\xcd\xcb\x51\x82\x91\x45\x44\x2c\x22\xe8\xf6\x24\x81\xac\x1f\xcc\x79\x46\x2b\x9d\x7c\xac\x2f\x08\x7c\x91\x18\x3e\x68\x0c\x5f\x14\x16\xff\x88\x81\xaf\xb7\xea\x88\x52\x96\xc3\xe3\xae\x3b\xf7\x8b\xb4\xde\xaa\x27\x8c\x63\x32\xa3\x52\x71\x55\x92\xd0\x88\xd0\x4f\x7b\xfe\x91\x78\xf3\xab\xa6\x97\xd3\xef\x7e\x91\x9e\xb0\x18\xc3\xc9\x31\x9c\x5c\xfa\x2c\xff\x51\xa2\x9f\x44\xd7\x8b\x1f\x2d\xdc\x5e\xc2\xbd\xb7\xad\xad\xb4\x0d\x0c\x70\x9a\x34\x34\x06\x14\xcd\x5f\x27\x01\x2c\xca\x4a\x91\x46\x59\x46\x66\xb4\xf1\xf5\xa1\x95\xb7\xbe\xaa\xd2\x76\x9f\x84\x42\xe2\xb6\x9e\x38\xe5\x7f\xac\x67\xb7\x33\x58\x7a\xf2\x79\xfd\x93\x93\xf7\x0f\x67\x6a\x1a\xf6\xd0\x94\xd6\x6d\x3a\xa9\xff\x52\xdf\x56\x15\xdf\x60\xf7\xc3\xc6\x52\x36\xa9\xd7\x0d\x03\xa1\x1a\xa1\x35\xdc\xa4\x13\xfc\x11\x7d\x6a\xf1\xad\xad\x06\xdf\x9e\xd4\x6b\xf5\x66\xeb\xb1\x9e\x43\x93\xb2\x24\xf8\x88\x3e\xad\xd7\xa8\xd9\xe2\xdb\x13\xd4\x82\x1d\xac\xd8\xe5\x6f\x6d\xd5\xc5\x0e\x9a\xae\xd7\x26\x75\x53\x66\xff\xd3\xa4\xfe\xd3\x76\x43\xec\x3a\x22\x16\xe3\x23\x9a\x93\x9c\xe0\xec\x29\x6b\x63\x2a\x80\xdf\x4f\x8e\x1b\xb4\xb9\x4b\xdb\xf0\x6a\x7c\x84\x1b\x3f\xff\x55\xff\x79\xd6\xaa\x6f\xdd\x14\x2c\xdf\xab\x37\x9b\xdb\x3f\xd5\x7f\x32\x3b\x51\xfe\xf0\xd0\x30\x9a\x62\xcb\x1a\x1a\x45\x53\x28\x34\x65\x9b\xbb\x7d\x2f\xa7\x95\x64\xfd\xad\x2d\xb1\x15\x76\x96\x0d\x6d\xe1\x10\x09\x7f\xad\xb7\x5c\xca\x06\x4c\x1b\xec\x4e\x9b\x66\xcb\x70\xcc\xd6\x96\x5b\x02\xa4\xff\xe5\x67\x3d\x1a\xdb\xf5\x5f\xeb\x4d\x60\xff\xfa\xcf\xbf\xd6\x5b\xd4\x3d\xb7\xb6\x9a\x3b\x0c\x9e\x10\xe1\x82\xbc\x74\x46\xac\x8f\x24\x25\xc1\x7a\x5d\xaf\xab\x66\x3e\x29\xf7\xa2\x68\x9e\xe6\x59\x8f\x53\xc5\x38\x23\x51\xb5\x89\xdf\xcf\x4d\xb7\x3e\xb1\x5b\x9f\x27\x1f\x61\xfa\x7e\x14\xf5\xd2\xad\xfe\x18\x7c\x52\x75\xfc\xf4\xc9\xad\xe5\xdc\x49\xf8\xd7\x7d\x37\x7a\xb2\xb3\x63\x9b\xb3\xb3\xf3\xd7\x7d\x17\xd7\x37\x2c\x48\x9e\x5b\xd5\xe6\xbd\x68\xde\xaa\x5f\x5d\xe1\xec\x84\xc5\x85\xd0\x91\xbe\xc2\x69\x96\x10\xa5\xcd\x56\x2e\xa5\xd6\xa6\x6d\x50\x8e\x66\xb0\xd7\x01\x51\xb4\x5e\xd7\xe5\xe2\xe1\x43\x62\x65\xb2\xc8\x43\x2b\x87\xe5\x74\x52\x97\x92\x27\xb7\x42\x6f\x52\x8f\xf5\x4f\x81\x2b\x79\x37\xa9\x47\xf2\x87\xc0\xce\x21\xff\x89\x2e\x47\x20\x22\xfb\x89\x2a\x45\xe4\x8d\x66\x13\xa8\x96\xc8\x41\xf4\xeb\xa4\x1e\x89\xee\x81\x92\x58\x24\x37\x4d\xb1\xfc\x51\xff\x17\xf7\xd4\x9e\x5e\xf8\x87\x81\x5c\xf7\x87\xdd\xe6\x9e\xe6\x9c\x8d\x46\x94\xc6\x93\x7c\xbd\xce\x7f\x99\x04\x4f\xb9\x22\xfb\xfd\xe4\x78\x57\xff\x16\x6a\x52\xb3\x81\x9b\xa2\xcf\x24\x72\x0e\x35\xfb\x27\xb3\x92\x89\x75\x86\x92\x39\xbf\x93\x95\xc3\xc3\xbb\xfa\xb7\xa9\xd5\x9e\x5c\xfc\x74\x33\x0d\xa5\x90\xf6\xfa\xb7\x29\x48\xa4\x32\x11\x22\x20\x62\xb2\x08\x2d\x61\x71\x80\x1f\x1e\x6d\xaf\x42\x6c\x02\x7d\x2f\x4a\x29\x44\xd0\xe9\xa6\xb3\x45\x2d\x90\xfd\x6d\xfa\x0f\x6a\x81\x9c\x80\x17\xa3\x7a\x17\x55\x20\x8f\xaa\xf7\x78\x06\xfd\xc7\xa3\x7a\x3f\x96\x79\xff\xfb\x64\xbf\x57\x2a\xfa\xfb\xc9\xf1\xdf\xde\xfd\x7f\x7b\xf7\xff\xed\xdd\xff\xb7\x77\xff\xdf\xde\xfd\x7f\x7b\xf7\xff\x93\xde\xfd\x8f\x79\xe0\xc3\xd9\xa6\x76\xee\xba\x22\x0b\xb1\xb0\x1c\x4a\x9f\xb3\xcd\x4e\xe2\x42\x23\xb6\x1a\xd2\x53\xbc\xfb\x55\xb9\xa8\xed\xe2\x87\x87\x7f\x4e\xa9\x62\x13\xde\xa0\x8d\xb0\x3b\x6a\xca\x35\x1e\xb2\x2b\x7b\x6e\xe1\x5f\x27\xfd\x7e\x67\x3c\xd8\xda\xc2\xbf\x4c\xfa\xc3\x6e\xaf\xbb\x5e\xe3\x5f\xc3\x30\xec\x85\x61\xa8\x2d\x44\x7f\x15\x49\x92\xc4\xf5\x3d\x50\xd4\x99\xce\x0a\x2c\xdf\x26\xf4\x11\x2b\x4f\xa6\x7c\x62\x76\x00\x35\xfc\xeb\xa0\xdf\xef\xf6\x05\xe5\xce\x44\xfc\x1c\xb4\xf2\xed\x89\x74\xf4\x6d\x27\x9c\x2d\x0e\xe6\x88\x1f\xb0\x18\x37\xf0\xaf\xbf\xfe\x1a\x06\x5b\x61\xd0\xe9\xae\xa1\x42\xcd\x16\x9e\xf4\x07\xdd\x4e\xb0\x16\xd8\x16\x6e\x3e\x9a\xb2\xf9\xf0\x63\x0b\x79\x50\xdf\x15\x55\xe8\xb6\xea\x61\x67\x54\xdf\x1d\x75\x07\xbd\x56\x3d\xec\x06\xf5\xdd\x51\x27\x1c\x89\x9f\x61\x7d\xb7\x17\x74\xc4\xaf\x8e\x00\x3b\xf0\xb3\x2b\x7e\x76\x03\xf1\xb3\x07\x28\xa4\xea\xc3\xcf\xbe\xf8\x39\xa8\xef\x0e\x43\x88\x1f\x0a\xb0\x07\x3f\x47\xf5\xdd\x6e\x1f\xd2\x8f\x01\x1c\xb7\xea\x61\x2f\xa8\xef\x76\xbb\xa2\xa4\x5e\xa7\xbe\xdb\x1d\x85\xe2\x17\x64\x14\x0e\xc4\xcf\x01\xfc\x1c\x8a\x9f\x90\x53\x47\xe4\xd4\x1b\xc1\x4f\xa0\x85\xac\x3a\x82\xb6\x2f\x6b\x2d\xd0\x7e\x08\x3f\x45\x59\xfd\x4e\x7d\x77\xd8\x85\x5f\xa2\xd6\xbd\x11\xfc\xec\x89\xaa\x88\x56\xf7\xa1\xac\xbe\xc8\xb5\x3f\x10\x55\x11\x95\xea\x8b\x9a\x4a\xc2\x71\x7d\xb7\x3b\x1c\xfc\xf0\xfd\x15\xd7\x3a\x51\xdf\xfd\x5a\x47\x69\x3e\x4b\x57\x4b\x21\x19\x51\x9a\xbf\x80\x9f\x2d\x83\xc6\x38\x71\x22\x0e\x61\x71\xd1\x71\x60\xc3\xb6\x91\xaf\xc0\xa4\x5d\x47\x94\x2c\x50\x8e\x23\x96\xc2\x93\x0a\x2a\x78\x00\x41\x13\xbb\x60\xea\xa9\x5c\x15\x3e\x61\xca\x0a\xad\xc2\x39\x47\x34\x4b\x18\x5f\x58\x92\x0b\x03\xb5\xea\x51\x4a\x96\x4b\x79\x35\x5e\xfc\x3c\x13\x3f\x5b\xf5\x04\x4f\x53\x0c\x92\x37\xc1\xcf\xe0\x97\xc0\xa0\x22\x0b\x94\x73\x72\x0f\x31\x50\x93\x13\x19\x96\xf1\x8b\x25\xa3\x98\xe6\xb2\x4c\x78\x1c\x46\x50\x29\xf4\x42\xa3\x86\x36\x23\x20\x72\x14\x0d\x84\x64\x1c\xbd\x65\xe9\x2d\xf6\x8a\x92\x90\x53\x5a\x4c\x92\xa4\xc8\x84\xfe\x38\xcf\xa5\xca\x97\xe0\x43\x89\x1d\x6b\x4c\xd2\x65\x60\xa9\x10\x43\x25\xef\xbe\x0b\x3a\x8b\x9d\xa0\xa5\xa6\xcb\x11\xcd\x53\xf5\x72\x08\x10\x09\x00\x32\x93\x14\x9c\x2d\xb3\x39\x8a\xe1\x09\x9d\x04\x1f\x72\xb6\x3c\x97\x41\x11\x9b\xa4\x8c\xc9\x1e\x7b\x0e\xbf\x00\x2b\x28\x7c\xce\x27\xc1\xcf\x0b\x1a\xed\x1b\x6c\x6a\xb0\x67\x06\x9b\x19\xec\x85\xc1\xb8\xc1\xde\x01\x36\x43\x45\x96\x11\x44\xa7\x69\x21\xa3\x5e\x28\xe0\x99\x00\x04\x05\x59\xa0\x99\xec\xd3\x57\xf0\x4b\x60\x0b\xcc\x15\x76\x02\xbf\x0c\x46\x59\xec\xe0\x6f\x59\xac\xe2\x18\x5f\xce\x59\xca\x66\x2b\x19\x69\x83\x22\x96\x25\x89\x7c\xc4\x33\xc1\xa7\xf2\xa7\x40\xe1\x8b\x81\xb6\xef\xce\x44\xd0\xf6\x5c\xb6\xc4\x51\x91\x22\xee\x0d\xd6\xb9\x02\xbd\xd1\xca\x96\xcc\xc9\xe6\x7c\xc9\x9c\x5c\x72\xf9\xf8\x71\x82\x2f\x48\x2a\x6b\x9a\x17\x7c\x5a\xa4\x98\x46\x0a\xb7\x41\x63\x21\x53\xd7\xc0\x76\x2b\xb6\x49\x98\x78\x1c\x26\x25\xfc\x7c\x27\xd5\x3d\x42\x31\xe2\x33\x8e\x62\x22\xd5\x77\x09\xbc\xd0\x80\xfc\x22\x19\x4a\x1d\x0a\x09\x38\x14\x39\xbe\xcf\xd5\x9c\x12\x3f\x61\x4e\x3d\x88\xad\x87\x6b\x97\x13\x02\x03\x96\x33\x22\xe6\x6b\x01\x8f\x95\xd9\xf0\xe5\xbb\xe3\xba\x93\x02\xfc\x07\x76\xfd\x1c\xdc\x78\xb0\x4b\x38\xf1\x17\x22\xdc\xaa\x83\x91\x9d\xe3\x9b\x02\x53\xb8\x5b\x2e\xc2\xcf\x4d\x58\xc6\x2f\x39\x4b\x64\xbf\x8a\xd0\x99\x0a\xb5\xea\x11\x4a\xa3\x85\xe4\x0f\xf1\xf3\x44\x32\x87\x16\x17\x05\x25\x79\xe6\xc8\x8c\x4b\x08\x8b\xcd\x0a\x4c\xc0\x88\x81\x4b\xad\xe8\x1d\x85\x1c\x68\xa4\x55\xc7\xf1\x0c\xab\x9c\xc5\x4f\x95\x73\x42\xd2\x1c\x73\x9d\xaf\x0c\xe9\x5c\x37\x0f\x95\x1e\x02\x57\xc2\x69\xcc\x15\x71\x1a\xd3\x79\xeb\xb0\xce\xfd\x1a\x73\x8a\x53\x23\x6c\x64\xd0\x08\x1a\x19\x14\x69\xa5\xfd\xd1\x50\x88\xe4\xc7\x12\x12\x54\x2b\x98\x01\x19\x44\xaf\xce\xe4\x6f\xc0\xb3\xa5\x60\x21\x15\x71\xae\x02\x10\xa3\x35\xc3\x6b\xbc\xba\x80\x9f\xad\xba\x2c\x03\xc5\x9f\xe5\x07\x66\xfe\x1f\xee\xde\x84\xbd\x6d\x1b\x5b\x00\xfd\x2b\x12\x27\xc3\x12\x11\x24\x8b\x4e\x9a\xa6\xa2\x61\x5d\xc7\x49\xdb\xcc\x64\x9b\xd8\x69\xda\xa1\xd9\x3c\x9a\x82\x6c\xd6\x32\xa9\x90\x90\x97\x58\xfc\xef\xef\xc3\xc1\xca\x45\xb6\xd3\x76\xe6\xde\xf7\xbe\x2f\xb1\x48\x10\xfb\x72\x70\xf6\x23\x5e\xf7\xc4\x2b\xdf\x9c\xe7\x29\x3f\x29\x49\x9e\x51\xe5\x76\x4a\xa5\xed\xe7\x19\x85\x78\x52\x40\x92\x14\x67\xb4\x38\xa5\xf2\x1c\x89\xd7\x9f\xa8\x3c\x48\xe2\x55\xcd\x86\x78\x53\x73\x21\xde\x2e\xd3\x19\x0c\x54\xbc\x81\x0b\x04\xf8\x56\x9e\x49\xa1\xb5\x29\x5c\x9e\xed\x8b\x24\x53\x43\x79\x66\x7f\x56\xe9\xd9\xea\x3c\x4f\x58\x7c\x01\x23\xce\x56\xe7\x6f\xe5\x0b\x27\x01\xd8\xa9\x9e\x5b\xfe\xa2\x67\x75\x19\x33\x46\x8b\xac\xd1\xa8\x4c\x6d\xb4\x2b\x53\xed\xcd\x20\x93\xec\xbd\x20\x93\x1a\x55\xe9\x3a\x60\xd9\x62\xc6\xb7\x81\x78\xde\x63\xbf\x58\xe9\xd7\x56\xfa\xaf\x56\xfa\x17\x2b\xfd\xdf\x22\x50\x67\x49\x8b\x0b\x1a\x2f\x96\xa7\x1c\xfc\xab\xf7\x3d\x78\xb7\xbe\x73\xb8\xc8\x54\xbc\x3c\x9d\x0b\x52\xdf\x43\xaa\x88\xdf\x99\xb2\xf4\x82\xea\x3e\xab\x04\xd5\xeb\x82\xce\x79\x87\x0b\x3a\xff\x45\xbc\x5d\x8b\xb7\x5f\xe1\x6d\x49\x63\x06\xd6\x5c\x90\xc8\xdf\x40\xdd\x49\x7f\x9b\xc1\x4d\x22\x9e\x9f\xc3\x25\xc2\x01\x44\x5a\xd0\x19\xbd\x62\x34\x2b\x65\x9c\x48\x95\xf8\xc2\x24\x9a\x9c\x73\x1a\xb3\x55\x41\xed\x7c\x3f\xa8\x24\xec\x28\xe0\x6f\x01\x05\x95\x64\x41\x05\x95\xc4\x51\xad\x8c\xd6\x72\xbd\x50\x49\x3c\x57\x41\xe3\xd9\x39\x65\xa7\x70\xd7\x8a\xd7\xd7\xe2\x55\xf8\xb6\x67\xfa\x7e\x82\x37\x7d\x45\x95\x6c\x36\xa3\x17\x69\x2c\xb1\xa5\x92\xcd\x9e\xeb\x57\xfe\x35\x65\xc9\x29\xbf\x60\x4a\xf8\xc8\xdf\x0e\xe1\x8d\xd3\x7e\xc5\x3c\x4e\x68\x99\xc4\x70\xe0\xe4\xeb\x01\xbc\x62\xa7\xbc\x2e\x19\x3d\x5f\xc4\xd9\xc9\x4a\xdc\xbc\x22\xe1\x95\x4a\xc0\x0e\x8b\x8f\x17\x14\x48\x13\x5e\x37\xbc\xfd\x2c\xde\x94\x07\xe8\x2b\x48\xe7\x4f\xbf\xe8\xb4\x6b\x9d\xf6\xab\xbc\x52\xf4\x19\xe1\x2f\xfa\x8c\x5c\xa4\xf4\xf2\x18\x3c\x19\xf3\xa7\x67\xf9\x95\x4c\xd3\xbe\xa5\xf9\xcb\xa1\x78\xc1\xce\x95\xd4\x0e\x29\xe9\x42\x45\xd1\xba\xda\x17\x49\x07\x2a\x09\x3b\xd7\xed\x5c\xd7\xed\x5c\x5f\xf2\xfc\x3c\xce\x66\xcb\x98\xcf\x27\x7f\xd9\xcb\x66\xef\xe2\xcc\xa9\x5a\x24\xa2\x36\xda\x1a\x9d\x50\xb6\x2f\xa5\x15\x5d\x0a\x85\x46\x96\x51\xe1\x42\x64\x17\xbe\x2d\xbb\x33\x0b\x09\x4a\x15\x40\xc6\x83\xf4\x78\x91\x66\x27\x1d\xaa\xb7\xa4\xf0\xa8\x51\x8e\x9c\x66\x1e\x43\x93\x90\x46\x15\x86\x72\x7b\xea\xd2\x84\x45\xe9\x36\x4a\xd0\x32\x2c\x4e\xa5\xca\xc7\x90\x41\x0d\xa7\x71\x29\x6a\xe8\x2c\xd9\xef\x5b\x45\x4f\xe3\xd2\xb2\xa3\x96\x2a\x8d\x96\x74\x4c\x76\x88\x5f\xee\xdd\xe3\xe5\x68\x40\xd5\x9c\x5a\x65\x06\x29\xf5\xdc\x5a\xf4\xed\x68\x59\xd0\x0b\x10\xaa\xf2\x87\x51\x46\xaf\x18\xa1\xf0\x83\xb0\xf8\x15\x12\x57\x7a\xc5\x20\x07\x11\x19\x91\x96\xaf\xaa\x59\xd4\x12\x2b\xb5\x46\x01\x1b\xf1\xcb\x2d\xa1\x1e\x1b\x2d\xe2\x92\xbd\x54\x82\x52\x84\x7d\x4e\x93\x32\x25\x24\x6c\x77\xcd\xde\x13\x56\xa3\x01\xc8\xf2\x44\x1f\x99\x92\x8c\x30\xbb\xcf\x01\x48\x41\x45\x19\xa6\xc8\x7c\x26\x7b\xa6\xbb\x18\xa4\x73\x4f\x6b\xf0\x19\xd5\xa0\x20\x0d\xd3\x46\x4f\x23\xc2\xa0\xa7\xf1\x72\x49\xb3\x19\xec\xcd\xb6\x74\xd6\xd4\x8f\xfd\xba\x4c\x12\x8c\x99\x18\x32\x22\x40\x2d\x8b\x6b\x09\x2e\x87\xdb\x51\xa0\x86\x86\xe5\xa8\x33\x2c\x07\x07\x0a\x9b\xa6\x1f\x9d\x33\xa5\x06\x87\x0b\x35\x17\xd0\x35\x28\x5f\xa8\x1a\xa9\x5c\x53\xd1\x86\xe8\x35\x98\x9e\xa7\x73\x3d\x6d\x4a\xdb\x24\x27\x99\x99\x9a\x5c\xad\x65\x5e\x9b\xa1\x02\xe1\x31\xdf\x9a\x15\x28\x29\x67\xae\x9b\xb5\x06\x5f\x89\xb6\xef\xec\x37\x58\x4e\x68\x3d\x17\xd3\x72\xa1\x5a\x2e\x9a\xbb\x08\x5a\xee\xdc\xc0\x0c\xd9\xc3\xab\xed\x21\x35\xa5\xa0\x20\x00\xe3\xbd\x45\xd9\xe6\xd1\x77\x48\xea\x35\x69\x69\x69\x6e\xcc\xf5\x95\x1c\x3e\xc5\x31\x09\x23\x5c\x92\x31\x4e\xb4\x52\x76\x50\xee\x24\xae\xdb\xf7\xa8\xc7\xc2\x32\x42\xae\xeb\x49\x23\x72\x78\xc5\xc3\x61\xb1\x43\xc6\xa0\xea\x95\x12\x9e\x64\x84\xd3\x7d\x2f\x73\xdd\xd4\x75\x53\xdb\x1c\x2d\x25\xbc\xe1\x14\x1a\xc6\x31\x89\x95\xe3\x86\x14\x61\xaf\x18\x12\x95\x17\x41\xa5\x28\x28\x07\x03\x0d\xd2\x62\xcb\x79\xc2\x8d\xc0\x9c\x1b\xee\x2a\xf8\x60\x9a\xea\x51\xeb\xb5\xc7\x08\xd8\x57\x2b\xe3\x45\xa3\x92\x5d\xb8\x6e\x5a\xfe\xc0\x69\x11\xea\x15\x3c\x67\x41\xfc\xad\xb1\x31\x62\x16\x9a\xb8\xfc\x2c\xf0\xaa\x2b\x3c\x4f\xb3\xd9\x24\x87\x9f\xb7\x19\x85\x53\xd4\x61\xee\x21\xb6\xc3\x18\x1b\xc5\xf6\x20\xdb\x29\xc0\x2c\x90\x03\x2a\x8f\x85\x99\x65\x6b\x63\x99\x0d\x0b\x75\x66\x59\x7b\x4d\xf1\xcb\xda\xca\xab\xc5\x42\x2b\x4e\xa4\x64\x8c\x63\x6d\x2e\x12\xa4\x3b\xb1\xeb\xf6\xf3\x20\x1d\x0c\x50\x01\x16\x2e\xa0\xac\x29\x9e\xa6\x39\x18\xb5\x4c\xc0\xb2\xa5\x71\x66\x61\x65\x72\x02\x0d\xd9\x9f\xf9\x0a\xa8\xb9\xa8\x30\xbd\x4a\x4b\x56\x76\x75\x4d\xf5\x27\x27\x63\xcb\xe2\x26\xc8\x77\x52\x50\x04\xe2\x67\xd2\xcb\xc2\x5c\x77\x27\x8f\xd0\x7a\xcd\x7f\xba\x3a\x22\x7a\x91\xd7\x7a\xa1\x8c\xf9\x94\xc6\x81\x2f\xa6\x69\x6f\xb1\x98\x74\x1d\xc5\x30\xc2\x1c\x5a\x96\x70\xdc\x84\xa9\x45\xa0\x2c\xb1\x03\x03\x2f\xa5\xc5\x4e\x50\x78\x29\xec\x5f\x4b\xd3\x22\xed\xea\x59\xae\x5c\x29\x08\xdf\x27\x5e\x8e\x53\x4b\x9b\x92\x42\x2d\x12\x5c\xa4\xc8\x52\x30\xba\xfd\x60\x42\x57\x85\x12\x81\x52\x3e\x64\x23\x46\x4b\xd6\x7d\x9d\xe8\x1d\x26\x94\x66\xe0\xea\xab\xdf\xb8\x5e\x86\x84\x91\x1d\x8b\x4f\x3e\x01\x49\x4d\x08\xc9\x20\xa9\x9f\xc3\x89\xe8\xd3\x91\xfa\xe6\x49\x1d\x22\x6d\x99\x59\x69\xd3\x2a\x9e\x05\x28\x6e\x53\x5c\x94\xe3\x89\x52\x03\x70\x53\x39\x4e\xcb\xc4\x69\x56\x9a\xb2\xb5\x96\xd5\x67\x4f\x28\x0c\x76\xd4\xd2\xd7\x0a\xc7\xbc\x50\x98\x45\x9e\x4e\xb0\x8e\x8f\x2c\x10\x68\x63\x4f\x29\x76\xbf\x51\xc3\xeb\x30\x0c\xe8\xb4\xcd\x30\xfe\x00\x2c\xed\x7c\x8f\x21\xd8\x8e\x62\x86\xaa\x89\xf3\x10\x54\x35\xa6\xf9\x64\x63\x6e\x91\x17\x34\xdc\x2b\xac\xe6\xea\xcf\x74\x42\x4f\x74\xd5\xd5\xa8\x56\xc3\x54\xcd\xa9\x89\xfd\x13\x4d\xf6\xcd\xb8\x61\x6d\xba\x1a\xee\xab\xd1\xf2\x1c\xa2\x79\xcb\xf3\x4d\x7c\x97\x29\x0c\x33\xcd\x1a\x7b\x86\xcc\x60\x90\xcc\xd3\x2f\x21\x8d\xec\x1e\x74\x66\xb7\x33\xf3\x46\xaa\x4d\xf6\x16\x1d\xd5\x50\x2f\x43\xeb\x35\xf3\x32\x54\x55\xcc\xb6\xa3\x20\xed\xab\x45\x80\x38\xdb\xba\x85\x36\xb5\xb0\x0d\x36\x60\xf9\xa9\x60\xfc\xa8\xa6\xd3\x34\x64\x11\x38\x61\x01\xa0\x59\x19\xd8\x2a\xcc\xbb\xa5\xde\x57\x18\x4d\xa4\x27\x0f\x7e\xc1\x79\xf9\xa8\xa0\xb3\x55\x42\xbd\x12\xc9\x6e\x48\xf4\x59\xf6\xf3\xd9\xf5\xcb\x19\xd9\xe0\xb4\x69\xe3\x55\xa8\x7c\x85\xc0\x45\xe3\xc5\x9e\x30\x0d\x40\xfa\xb2\x6b\xb4\x61\x6c\x4a\x3a\x26\xc5\x36\x34\x92\x7d\x4e\x0d\x74\xa1\xdd\xbd\x16\x35\x1e\xf2\xbd\xfb\x15\x35\x02\xdc\x31\x35\x6e\xa2\x10\x44\x74\xb2\xb2\xdb\x6e\x5f\x58\xbd\x10\xad\xa8\x3a\x1c\xe6\xbb\x43\x3f\x10\x39\x18\xc9\x40\x5d\x15\xf3\x3f\x42\xe3\xb8\x20\xfd\x71\x90\x05\x92\xc6\x50\x3a\x92\x19\xda\x1d\xfa\xe8\xa6\x20\x7d\x1f\x53\x8d\x51\x62\x1f\x49\x33\xd1\x8c\x64\x8a\x6a\x03\x17\x41\xbc\x3a\x66\x39\x8d\x91\xca\x92\x3e\x2e\xc8\x36\xce\xc9\x63\x9c\x92\xa7\x38\x26\xfe\x13\x5c\x12\x36\x4a\xf2\x73\x5e\xf8\x79\x9e\x80\x29\xe1\xbb\xbc\x04\x66\x69\x07\xd6\x59\xe2\x04\x2f\xf0\x0a\x2f\xf1\x1c\xcf\xf8\xb5\x77\x4a\x42\x30\xb9\xa7\x60\xc8\xaa\xf6\x17\xdc\x80\x25\xa1\x41\x19\xa0\x99\xf6\x07\x54\x22\x5c\x92\x52\x61\xad\x22\x0b\xe3\x59\x4e\x6f\xc9\x32\x27\xe3\x60\x16\xce\xf9\x39\x3b\x0d\xe7\x51\x80\xe6\x83\x81\xbd\x8f\xe7\xd3\x6c\xe2\x2d\x88\x97\x90\x59\x38\x1f\xfa\x91\x65\x93\xb1\xe2\x49\x11\x5e\x42\x41\x6c\x94\x59\x57\x68\xd7\xbc\x2c\xd1\x34\xe1\x7d\x9f\xe6\xeb\x78\x92\x4f\x12\x00\xb8\xc5\x3a\x9d\x14\x88\x13\xc0\xab\x2c\xfd\xbc\xa2\x07\x79\xc1\x3a\x4d\x4f\x53\xb3\xb0\xbc\xb3\x94\x50\x8d\x04\x0c\x87\x29\x2c\x34\x23\x34\x4c\x23\xec\x71\x84\x5d\x35\xca\x10\x5f\x4f\xd7\xcd\x76\x52\x4e\xf9\xca\xf5\x4c\xf9\x7a\x6a\xa2\xb4\xcc\x0b\x66\xab\xf3\x1b\x6c\x43\xc0\x18\x8d\xc4\xb9\xc5\x74\xe8\x4f\x32\x37\x9f\xfa\x93\x71\x85\x10\x6e\xd2\xb2\xfc\x84\x1a\x4c\x36\x37\x8a\x71\x8f\x51\x0d\x3d\x47\x37\x85\x65\xf9\x90\xd1\xcb\x9e\x70\xea\x83\x30\xb5\x6c\xb9\x52\x9e\x11\xce\x4a\x99\xe4\x4b\x4a\xa8\xb4\xda\xca\x39\x82\x9d\xd7\xac\x77\xe3\x59\x7c\xbc\xa0\xca\x9d\x53\x4c\x32\xef\xf1\x18\x8d\x5e\xfc\xfc\xe2\xcd\xe1\x41\xcd\x68\x2f\xde\x60\xb4\xa7\x6c\x5c\x39\x50\xb6\xec\xb7\x42\x27\xcf\x9c\x01\x8d\x6c\x0b\x2e\xd3\x23\x61\x98\x4c\x51\xa5\x0d\x40\xfd\x7b\xd5\xc1\x3a\x2a\xe1\x84\x92\xf0\x0a\x91\xce\xbd\xed\xbe\xac\x46\x58\xd5\x4b\x9b\x90\xcb\x22\xcf\x4e\xa4\xdf\x90\x5e\x3e\xd7\xe6\xf4\x65\xdf\x41\xc1\xed\x0d\xf2\x85\xe9\x68\x92\x03\xeb\x0a\xec\x07\xef\xa3\x10\x90\x79\xfe\xe3\xa7\x68\xf4\x6c\x35\x9f\x83\xe5\x38\xc7\xe9\x5e\x64\x49\x3e\x4b\xb3\x93\xba\x4a\x40\x79\x99\x32\x3e\xc3\x94\x38\xce\x80\xf2\x2b\x77\xc4\xf2\x57\xf9\x25\x2d\xf6\xe3\x92\x7a\x08\xdd\x24\x71\x49\x9d\x53\x7a\xe5\x4c\xe0\x69\xc5\xe6\x4f\xcd\xe3\x50\x3d\xc7\x65\x92\xa6\xf2\xf9\x38\xcd\xe2\xe2\x5a\xbd\xc4\x25\x7d\xf2\x58\x95\x48\xca\x6d\xf3\x38\xdc\x36\x15\xf9\x4f\x16\xd4\xaa\xd6\x7a\x2d\xe2\x4b\x67\xa2\x71\x6f\xa5\xa8\xa0\x51\xaf\x2a\xa8\xef\x42\x38\x85\x81\x1c\x96\xb0\x49\x97\x03\xef\x60\x56\x35\xf6\x55\x9f\x2a\x25\x04\x18\xa5\x26\x71\x58\x10\x20\x59\x23\x95\x13\xd2\x9e\x86\x5a\xc9\x3f\x32\x5a\x53\x01\xbc\x8b\x3a\x16\x31\x4b\x33\xbf\x31\xb1\x32\xa7\xfc\x16\xb4\xe7\xd9\x5e\x0d\x58\x3a\x05\x41\xf4\xfc\xa5\x1c\xe0\x88\xd4\x80\x12\x0f\x16\xbf\xbe\xf2\x98\x91\xfe\xb8\xaa\x3c\x0a\xb6\x36\x4e\x09\xda\x10\xb6\x23\x09\x60\x0e\x99\x7d\xc5\xf1\x87\xf5\xba\xcf\x61\x86\xed\x84\x47\x7b\x73\x39\xcb\xf2\xcb\xac\xa7\x16\x63\xd2\xe3\x2d\x6a\xe4\x64\xbd\xa6\x15\xdc\xaa\xf6\x82\x99\xa9\x16\x13\x24\xdc\x87\xd1\x2b\x46\x12\x95\x71\x46\x16\x98\x91\xc7\xe2\xc6\x0b\xac\x95\x51\x17\xf7\xe2\x55\x5c\x32\x52\x36\x33\xa9\xd9\x32\x55\xae\x4c\x95\x4b\xcc\xc8\x23\x99\xbb\xbe\xdf\x7a\xd2\xd9\x59\xca\x28\x99\x83\x33\x04\x4f\x97\x9a\xa1\x4a\x78\x3b\x8b\x4b\xf6\x86\xd2\x99\xb4\x54\x87\xf7\xc3\x9c\xc5\x0b\x3b\x61\xff\x34\x2e\x48\x31\x8a\x17\x8b\x3c\xf9\x90\x95\xf1\x9c\x7a\x0d\xbb\x5e\x83\x1c\xee\x10\x7f\xfb\xbb\xe9\x78\x42\x77\x77\xbf\x25\x84\x3c\x99\x6e\xf3\xc7\xc7\x84\x10\xff\xf1\xf4\x11\x7f\x7e\x44\x08\x79\x34\x9e\x3e\xe6\xcf\x4f\x08\x21\xdb\x1c\xf8\x0f\xb7\x6b\x18\x68\xcd\xdd\x97\xee\xd3\xb0\xd6\x65\x9c\xb5\xb0\x38\x0e\x29\xb7\x9f\xf6\x09\xf1\xfc\xef\xb7\x5d\xf0\xe2\xa3\xed\xb1\xec\xa1\x6a\xb5\x1d\x40\x51\xd4\x87\x5d\x9f\xe3\xe7\x92\x78\xf5\xdb\xb5\xf9\x9d\xb5\xf9\x9b\x6a\xdb\xb6\x6a\xdb\x76\xdd\x5a\x55\xdb\x9d\x55\x6d\xeb\xaa\xaa\x4a\x1a\xd0\xa3\xba\xe7\x36\x8e\x6a\x4e\xb3\x49\x6d\x1e\x76\xf4\x0d\x3e\xf5\xe8\x28\xc9\x97\xd7\x5e\x6d\xe5\x30\xc3\xd6\x5a\xf2\x12\xa8\xbe\xb4\x23\x96\x2b\x07\x83\xf6\x86\xc6\xcd\x2d\x81\xd0\x64\x73\x03\xc6\xfb\x9b\xd9\x68\xaa\xbd\xa1\xee\xa1\xed\x46\x2f\xd1\x5c\x54\xed\x3a\x6e\xc8\xd0\xdf\xb7\x09\x21\x63\xc3\x21\xd4\x7d\xd3\x27\x0b\x0b\xa7\x2d\x35\x86\xa1\x50\x78\xda\xe3\x54\x90\x72\x8c\x00\x99\x0a\xad\xc3\x55\xec\x90\x6f\x9f\x3c\xf2\xbf\xb7\x9d\x69\xd8\x33\xdf\xd8\xfd\x8f\xeb\x53\x14\x8e\x23\x42\x43\x6a\x18\xb6\x8d\xcf\x7e\xed\xb3\x1f\xe1\x4c\x62\x51\x63\x3c\xf4\x2d\xbe\x46\x67\xe3\x7e\xb3\xf1\xed\x5b\x1b\xf7\x23\xdc\x3d\x2d\xd8\x64\xa9\x5b\xae\x6b\x3e\x3d\xbf\x30\xe5\x56\x31\xb0\xc1\xa3\x68\xe2\xc0\xe6\xad\x6f\x12\xc5\x86\xbf\xe5\x08\x6a\x88\x38\xd8\xb0\xa1\x4c\xef\xc6\x1c\x27\xd0\xce\xfe\x9a\xf6\x5e\xa2\xa9\xda\x3e\x78\x64\xe3\xc8\xd9\xd4\x1e\xb2\x84\x87\x98\xa1\x49\xbd\xcf\xe4\xd1\x30\x6b\x4e\xe6\x23\xe1\x20\x66\x7a\xfb\x94\x4e\xbc\x3f\xb5\xde\x08\x77\xf6\xcf\xac\x48\x66\xef\xfc\xe5\x3d\x97\xa4\x6b\xb7\x4c\x37\xcf\xb5\x6a\x76\x8c\x1f\xd5\x97\x09\x4d\x58\xcd\x32\xc9\x12\x1c\x75\x1f\x7d\xd4\x69\x5b\xd4\xbb\xad\xb3\x15\x1b\x89\x9a\x9e\x83\x0d\x41\x41\xd2\x9a\x03\x04\x79\x0b\xb5\x31\x63\x0d\x19\x94\x05\x6c\x20\x29\x93\x8e\x0d\x59\x73\x92\x23\x2f\x07\x75\x6b\xc2\x45\xae\xeb\xb0\xb6\x2d\x5c\x15\x8d\xbb\x4e\xca\x2c\xc8\x58\x93\x20\x3b\x66\x60\x6a\x86\xf9\x45\xeb\x51\x9c\xa1\x49\xf3\x75\xbd\x76\x9c\xaa\x36\xbc\xba\x84\xe3\xcf\x2c\xae\xba\x01\x26\xac\xde\x02\x5c\xfb\x5d\xb4\x54\x37\x9f\xd4\x72\x10\xc3\xc1\xe0\x4e\x66\x28\x5b\xc1\x93\x89\x3d\xe1\x19\x26\x9d\x7b\xf9\x2e\xd1\xfe\x99\x72\x60\x6c\x5b\x77\x52\x3e\xf4\x11\xce\x79\xb6\xe1\xb0\xd8\xc9\xd6\xeb\x21\x07\xd0\xb9\xa9\x8e\xc3\x6f\x5d\x1d\xba\xbd\xaa\xed\x3f\x55\x15\xe4\x9e\xe6\x64\x3c\xa9\x55\xfa\x88\x57\xaa\xea\xa8\x8c\x47\xb2\x00\x78\xa2\xb5\x1d\xd4\xde\xf6\x02\x01\xe3\xb9\x1b\x60\x23\x0b\x94\x93\x55\x39\x91\x5e\xd6\x38\x54\x86\xd0\xed\xb8\x12\xc7\x9c\x96\xec\x68\x07\xf8\x3a\xf6\xba\x6a\xac\xaf\x71\x36\x36\x5c\xf1\xe8\xb6\x46\x6f\xc5\x96\xfe\x22\x1c\x20\xf8\x23\x2d\x1b\xe4\x60\x03\x5e\x70\x0b\xbf\xff\x31\xdf\x34\xa4\x90\xe4\x61\xcb\xd9\x4c\x83\xb9\xaf\xfd\xcc\x36\xdc\xce\xd8\x5e\x60\x14\x85\x9a\x83\xb6\xb4\xeb\xe6\x02\xb3\xd5\x0f\x02\xc5\x6d\xbc\x1e\x2c\xf2\xcb\xa9\xe1\x41\x14\x13\x2f\xf5\x0a\x0c\xd2\x46\xd1\x33\x12\x23\x1c\x9b\x85\x6d\xb8\xfd\xb1\xd8\x0a\x08\xa7\x5e\x8e\x21\x37\x6f\xbf\x0b\x89\x6d\xcb\xdd\x68\xa7\x23\x3c\x67\xaf\xe6\xf9\x2e\xcb\x95\x43\x50\x51\xbc\x21\x96\xcb\x50\x85\x63\x31\xa6\xdb\x1a\xed\x7f\x5d\xa3\xf5\x06\xc5\xaa\xe5\x5e\x07\xe2\xca\xa6\x8a\x2c\xb3\x1c\xf2\x4e\x0b\x38\x01\xc0\x49\x98\xa8\x67\xfd\x34\x46\xb8\xd0\x7d\x16\xeb\x70\x0f\xff\xaa\x5f\xdf\x6b\x33\x4d\xa8\xd1\x1c\x5f\xf6\xff\x64\x93\xc5\x88\xb7\x20\x76\x50\x53\x5f\xbf\x83\x61\xc2\x46\xc7\xd7\x8c\x0a\x15\x9f\x8e\x0b\x87\xe3\x7a\x38\x03\xf7\xa5\xb8\x20\x9c\x62\x51\xed\x3c\x7a\xe8\x65\x83\x02\x6d\x3d\x1e\x16\x15\x66\x23\x96\x3f\xbb\x66\x14\xb8\xdc\xdd\x0e\xe9\x44\x55\x31\xe1\x98\x10\x2e\x09\xc7\x78\xb0\xf0\x66\x9e\x7a\x1b\x78\xe7\x8f\x1e\x7a\x6c\x90\xf1\x26\xb2\xca\x1b\xe3\x18\x97\x08\xe1\x15\x19\xe3\x25\x29\x77\xc7\xd3\x78\xf8\x78\x12\x5b\x2e\x48\x97\x41\x36\x20\x8f\x11\x23\x39\x68\x44\x18\x0c\x1e\x45\x3b\x3b\xfe\xd3\x75\x33\x79\xe0\xc3\x87\xed\xf6\x87\x6d\xfe\xe1\x49\x3b\xfd\x11\x8a\x70\x12\xae\x06\x83\x88\xb0\xdd\x5d\xff\x89\xbb\xfd\xed\xb7\x56\xc2\x53\xfb\x7d\xfb\xdb\x6f\x5d\x16\xf0\x1b\xa6\x04\x1b\xfe\xae\x4e\x75\x34\xed\xa3\x68\x77\xf7\x71\xad\x12\x14\xf8\xb7\xd6\xe2\x8f\x37\x0c\xed\x71\xe7\xc8\x76\x77\xb7\x6f\xed\xb3\xde\x49\x09\x5f\x57\x0e\x50\xba\x57\xd6\x62\xe7\x6b\xa8\x8b\x73\x92\xfd\xfd\x11\x4e\x49\x18\xe1\x98\x8c\x71\x49\xb2\x61\x1e\xc4\x3b\x65\x10\x0f\x88\xff\xe4\xd1\xd3\x47\x28\x15\xc2\x59\x8e\xa6\xc7\x38\x1e\x40\xe2\x6e\x39\x2d\x27\xf2\x19\x89\xe1\xe6\x53\x8f\x71\xb0\xcb\x89\x13\x59\xa4\x08\xd9\xee\xee\x76\x34\x28\x42\xb6\xb3\xf3\xd8\x7d\xf2\x28\x1a\x38\x84\x38\x08\x4d\xe0\x1e\x87\xf9\xf1\x78\x91\xed\x68\x67\xe7\x29\x1a\x74\x94\xf6\xc7\x50\x7c\x77\x57\x14\x87\x9a\xb6\x65\x4d\x8e\x11\x06\xa5\xda\x7f\x8b\xf1\xb0\x51\x08\x89\x76\x18\xe1\x94\x38\xab\x4c\x98\x07\xcd\xac\x23\xfb\x21\xcd\xd8\x53\x98\xa6\xa9\x79\x9c\xc0\x5f\x1c\x13\x67\xef\xd9\xfe\xf3\x17\x3f\xfc\xf8\xd3\xcb\x7f\xfc\xf3\xd5\xeb\x37\x6f\xdf\xfd\xeb\xfd\xc1\xe1\x87\x9f\x3f\xfe\xf2\xeb\xbf\xe3\xe3\x64\x46\xe7\x27\xa7\xe9\xef\x67\x8b\xf3\x2c\x5f\x7e\x2e\x4a\xb6\xba\xb8\xbc\xba\xfe\x32\xf6\xb7\x1f\x3d\xfe\xf6\xc9\x77\x4f\xbf\x1f\x6c\x39\x52\x27\x24\xb6\x74\x42\x82\xc1\xa0\x44\x45\x58\x46\x24\x0e\xcb\x08\xe7\x61\x6c\xaf\x76\x89\x22\x52\x06\x9d\x64\x9b\xd6\x56\x98\x7b\xec\xef\x8f\x77\xc7\x6d\x86\xd5\xcb\xec\x22\x5e\xa4\xb3\x9e\x00\xb0\xa3\x9e\x80\x10\x16\xdc\x39\x5f\x2d\x58\xba\x5c\x80\x6b\xd4\xc7\x8e\x72\x3d\x61\xf8\xf9\x7c\x42\xe5\x7c\x0e\x81\x5e\x72\x5d\x0f\x9c\x4d\x85\x19\x06\xa7\xa6\xd3\xf1\xe4\xf1\x30\xfb\xfb\xe3\xa8\x15\xbe\xc2\x52\x66\xc0\x5a\x1f\x86\x05\xe5\x4e\x16\x94\x03\xf2\x08\xe5\x7c\x99\x4b\xbe\xf3\x9f\xb8\xfe\x93\xef\x7c\xff\xc9\xd3\x31\x1a\xf0\xb4\x81\xcf\x97\xde\x7d\xf2\xed\x36\xa4\xf0\xfd\xcc\x53\xb7\x23\xb8\x49\xc5\x36\xf0\x52\x92\xa3\xdd\x5d\xff\xa9\xdc\x02\xe9\xee\xae\xbf\x6d\x9e\x9f\xc8\xc7\x27\x8f\xdc\xd4\xf8\x39\x8c\xcd\x8e\xc8\x43\x67\xe8\xd8\xf3\x3c\x46\x11\x79\xb2\x8d\xf3\xd0\xf9\xd4\x4e\x7f\xd4\x25\x21\x8b\x9b\xe2\x42\xcb\x0b\x1c\x07\x73\xe4\xe9\xc3\x7c\x58\x0c\x7d\x9c\x10\xcf\xdf\xd9\x29\xd1\xd0\xc7\x0b\x92\xec\xee\xfa\x78\x45\x86\xdf\xe1\x25\xc9\xa6\xf9\xd0\x9f\x8c\xf1\x9c\x64\xd3\xa1\x3f\xf1\xf1\x0c\x5c\x99\x2e\x23\xd8\xaf\xcb\x01\x99\xe3\x94\xcc\x5c\x5e\x7a\xb8\xe2\xc5\x67\xbb\xbb\x64\xb8\xc2\xab\x01\x29\x83\xd5\xee\x38\x48\xc9\xf6\xb7\x4f\x1e\xa6\x03\x51\x0a\x43\x89\xd5\x90\x3c\x15\x9a\x1a\x31\x49\xad\xb2\xa9\x2e\x5b\x40\xd9\x18\xca\xc6\x1d\x65\x25\x09\x96\xa2\x94\xf8\xc3\x85\x96\x12\xa4\x96\xdf\xe9\x5e\x3c\x7d\x13\xbf\x99\xf8\x5b\xe3\x87\xde\x0c\xfa\x8e\x38\x70\x78\x1d\xb3\xd3\xd1\x32\xbf\xf4\xb6\xc1\xd3\xdd\x90\x2c\x24\x6d\xaf\x32\x3d\x8c\x1f\x5a\x79\xd2\xa1\x10\x67\x36\xa9\x40\x35\x99\x38\x95\xbe\xb8\x31\x88\xe7\xc8\xd3\x87\xe9\x30\x1f\xf2\xe9\xe3\xc3\x5a\xf0\x51\x2d\xc9\x8a\x4f\xe8\x9c\x6c\x3f\x02\x78\x63\xd5\x3e\xdc\x7e\x8c\x86\xf6\xfb\x77\xdf\xa1\xc9\x18\xcf\x48\x31\x1d\x4f\xd2\xa1\x8f\x4f\x49\x31\xf5\x27\x43\x1f\x1f\x13\xb6\x33\x5e\xaf\xf9\xa0\x99\xeb\xfa\x5b\x6c\x67\x3c\xf5\x27\x42\xd8\xc7\xc4\xa0\xe2\xe3\xd2\x63\x08\x43\xd0\x1a\x10\x00\x33\x42\x88\xbf\x35\x9e\x7a\x25\x51\x89\xbc\x0c\x8e\xc9\x0a\x4d\xbc\x58\x94\x9a\x2f\xf2\xbc\xf0\xe0\x71\x91\x9f\x78\x0c\x6d\xc1\xf3\xab\x37\xdb\x08\xb3\x87\x5e\x62\x4f\xd8\x30\x46\x68\xc7\x77\x5d\x2f\x1e\x0e\x71\xf2\x90\x6c\x23\xec\xb1\x01\x89\x07\xcb\x5d\xe2\x4f\xe7\x5b\xc9\x64\x6e\xcf\x9d\x3f\x5c\x22\xf4\x30\xd9\x25\xdb\xbc\xc8\x60\x80\x93\x2d\x5e\x04\xb2\xaf\x78\xaf\x64\x57\x64\x79\xaf\x24\x1e\x7b\x98\x0c\x7d\x64\x57\x92\xf3\x02\x64\x89\x26\x5e\x49\x98\xfd\x61\xd9\x91\x91\x8c\x11\x0a\xf2\x5d\xf2\x34\xa0\x61\x36\x98\x89\x8b\xa6\xc4\xb3\x01\x39\xc5\xe5\x16\xdf\x4d\x38\xb7\xf6\x5e\xbc\xb3\x93\xaf\x4b\xbc\x18\x90\x3c\x58\xec\x8e\xed\x42\xb1\x28\x14\x8b\x42\x0b\x28\x04\x9f\x87\xa7\xd1\x9a\xf8\xdb\x4f\x1f\x1e\xb7\x64\xd2\x02\x32\xdd\x54\x9a\x22\xb1\x1c\x8b\xd5\xc4\xf3\x5d\xd6\xa2\x4e\x28\xac\x7a\x84\x20\x3f\x72\x08\xc9\xa4\x36\x6d\x17\x6a\xa5\x21\x59\xa1\x25\x82\x9f\x92\xe3\x92\xd0\xf5\xfa\xa6\xb2\x54\xe7\x0a\x49\x33\x6f\x94\xfe\xe5\xb7\x4b\xff\xf2\x90\x46\x88\x12\x21\x3e\xb3\xdd\xb6\x85\x1d\x12\x40\xde\x03\x70\xb5\x6b\xbf\x79\x0d\x59\xe0\xfd\x6a\x64\xb7\x56\xd9\x14\x0c\xe6\xf7\x17\x0c\x3a\x28\xb8\xbb\x71\x2d\x1b\xdc\xd0\xbc\x11\x12\x7e\xd5\xba\x48\xc9\x87\xf0\xc2\x1b\x46\xff\x5b\xcb\x24\x3a\x20\x6e\x29\xed\xd2\xf8\x3f\xb1\x78\xf5\x86\x30\xbb\xbd\xa9\xff\xda\xa2\x36\xbb\x85\xb3\x3b\x3a\xa6\x96\xbb\xe6\xb6\x30\xcf\x0a\x5a\x52\xb6\x61\x76\x21\x24\x90\xaa\x44\xe5\xb5\xea\x55\x49\x1e\xaa\x6a\xb5\x16\x14\x2c\x3c\x3a\x8f\xd6\xad\xd5\x04\x26\x1a\xd1\x18\x4b\x06\xa3\x1c\xa8\x44\xc1\xe8\x0e\x0b\xa8\x50\xd0\x34\xc3\xb3\xf2\x85\x34\x0a\xc7\x51\x54\x63\x9e\xeb\x2f\xaa\x12\x8b\x21\xbd\xa1\xbc\x27\xb0\xe4\x3b\x32\x35\x92\xfc\x48\xb2\x2a\xef\x9d\x1f\x37\x52\xb6\x23\xd4\x54\xbd\xb4\x15\x2f\xac\xf9\x34\x13\xc5\x4f\xe4\xe6\xb0\x4d\x92\x8d\x63\x87\x6d\xd2\x93\x9c\xf7\xd2\xac\x57\x20\x09\xa1\x39\x4e\xa5\x14\x7f\x8a\x30\x8f\xda\xba\x3f\xf2\x28\x9b\x75\xae\x2b\x71\xb6\xe1\x48\x87\x92\x99\xbf\x35\xc6\x05\xd1\xd7\x84\x88\x73\x17\x39\x38\x27\x5b\xe1\xd1\xd1\x6f\x0f\x46\x0f\x07\x53\x0f\x85\x47\xd1\x4d\xb5\x8e\xb6\x4e\x70\x4a\xde\xd3\x93\x17\x57\x4b\x2f\x1f\x09\xf7\x80\xfc\x7e\x34\x11\x04\x8d\x74\x99\xff\x1b\x89\x1e\x12\x15\xab\xc6\x75\x19\x2e\xdb\xb9\x4b\xba\x98\xbb\xae\xf9\xdb\x2e\xc6\x53\x39\xf1\xb0\x5e\x97\xeb\xb5\x0a\x62\xe0\x39\x16\xcb\xd8\x41\x1e\xc2\x8b\xf6\x94\xa8\x4b\x13\xaf\x48\x32\x12\xa3\xe3\xa8\xd3\x74\x65\xf2\xa8\xf8\x54\x73\xb2\x9c\x2e\x75\x01\x99\x1a\xd4\x19\xff\x96\x2c\xdd\x62\x76\x68\xf9\x7c\x3a\xef\xf0\xd6\xe9\x94\xd0\xac\x63\x07\xbc\x69\xe7\xea\xf7\xa9\xeb\xb6\xa6\x06\xe4\xea\xae\xbb\x50\x97\x36\x21\x05\x4f\x51\x2d\xce\xa7\x73\xf5\x65\xa2\x24\x05\x84\x0e\x34\x37\xdd\x19\x3b\x12\xb3\xa3\x84\x0c\xb3\xa9\x33\x1c\x3b\x13\x56\x75\xf9\x6e\x54\xba\x17\x12\x6d\xa5\xa0\xbb\x06\x62\x05\x8a\xa6\x8e\x33\x99\x79\xe0\x8a\x36\x05\xbd\x62\x8f\xa2\x29\xd5\x8e\xed\x72\xec\x1c\x1d\x3d\x70\x1d\x34\xa1\x55\x85\x6c\x85\x23\xcf\xff\xb6\xeb\x3e\xb3\x39\x26\x9a\xb3\xb9\x3d\x1e\xe3\x9c\x38\x9f\x3e\x2d\xf2\x59\x5c\x9e\x7e\x3a\xe5\x7f\x34\xa5\xfa\xe9\x93\x83\x53\xf2\xfd\x78\xfc\x9d\xff\xfd\xf7\xdb\xdf\x3e\xfe\xee\xf1\xf8\xfb\xef\x7d\xbe\xf7\x0c\x86\x23\x8f\x54\xc4\x69\x4d\x9d\xfc\x2c\xcf\x17\x34\xce\x22\x07\x27\x26\xf1\x79\xcc\x68\xe4\xe0\x85\x49\x51\x9b\x2a\x72\xf0\xca\xa4\xfe\x48\x33\x5a\xc4\x2c\x2f\xac\xcf\x4b\xf3\xf9\x75\xbc\x8c\x1c\x3c\x37\x09\x22\xc2\x63\xe4\xe0\x99\x49\x13\x5b\x32\x72\xf0\xa9\x49\x13\x67\x28\x72\xf0\xb1\x75\xf4\x28\xcf\x74\x6e\x25\xc0\x3e\x8b\x1c\xfc\xba\xe3\x7c\x9e\x90\x3a\x6a\x27\x38\x66\x91\x83\x2f\x6a\xa3\x8c\x7f\x4e\xe9\x65\xe4\xe0\x6b\x6b\xa4\x8b\x3c\x66\x8f\xb6\x25\x42\x88\xf7\x1a\x5f\x9e\x3c\x56\x5f\x2e\xcd\x97\x97\x8a\x21\x10\x39\xf8\x4b\x2d\xd9\x7f\xa2\xd2\x3f\xd5\xd2\x4d\x03\x6f\x4d\xba\x61\x2c\x44\x0e\x3e\x6c\xa4\xef\x2f\xe2\xf3\x25\x9d\xa9\xcf\x57\xf5\xcf\xa6\x9d\x37\xf5\x0f\xa6\xa1\x57\x64\xeb\xe8\xf2\xe1\x83\x2d\xfc\x82\x6c\xfd\x76\xa4\xf2\x8c\x06\x53\xb0\x9d\x2c\x56\x09\xcb\x8b\xa3\xe8\xc1\x16\x3e\x20\x5b\xbf\x79\xd3\xc9\x78\x1d\xfa\xc3\xef\xa3\xa3\xd9\x43\xf4\x60\x0b\x7f\x26\x37\x55\xf0\x39\x8c\x23\xf2\x39\x6c\x62\xcd\x3c\xed\x84\xff\xb9\xe0\x7f\x4a\xfe\x27\xe1\x7f\xae\xf9\x9f\x3d\xfe\xe7\x92\xff\xf9\xc2\xff\x7c\xe2\x7f\x96\xfc\xcf\x9c\xff\x99\xf1\x3f\xa7\xfc\xcf\x31\xff\x73\xce\xff\xbc\xe6\x7f\xde\xf2\x3f\x87\xfc\xcf\x15\xff\xf3\x26\x22\xfd\x31\xb6\x9a\x06\xec\x44\x34\xbd\xa8\xf5\xe9\x23\x8d\xcf\x60\xe3\x45\xa4\xef\xc3\x91\xdf\x6f\x83\x54\xea\xba\x20\x6c\x6b\x41\x52\x8a\xcf\xfe\x30\x00\xfe\x48\xf6\xd7\xeb\xb3\xdb\x00\xf0\x73\x0e\x6c\xfa\x6c\x94\xe5\x33\xb0\xac\xe7\x00\xff\x19\x79\xde\x01\xd8\x32\xd7\xcd\x5c\xb7\x9f\x59\x59\x33\xfc\x8e\x3c\x73\xdd\x67\x1a\x38\x11\xf2\xdc\x80\xdf\xf7\x0d\x33\x43\x8e\x9f\x00\x5f\x17\xf4\x50\xb0\x15\x45\xf1\x97\xa6\x41\xe2\x8c\xc3\x2e\x3b\xc7\xef\x4d\x85\x6c\x08\xf3\x42\xa7\x8a\xb1\x24\x29\xe0\x02\x6c\x8f\xbc\x8c\xd0\x70\x30\xc8\x23\x14\x0c\x06\xf9\x4e\x1a\xa0\x8c\x30\x2f\x03\x05\x5f\x9c\x5b\x1a\x29\x96\x03\xca\x97\x86\x59\x25\x02\x55\x09\x6f\xa2\xd4\x0e\x6d\xdb\x37\x51\x1d\xd4\x9d\x83\x58\x71\x7d\xc3\x48\xbf\xef\x71\x18\x8e\xaa\x24\x66\xc9\xa9\x97\xa1\x9b\x0e\x45\x81\x0f\xa6\x89\xa1\x8f\x33\xa2\x62\x0e\x96\xe9\x17\x6a\x89\xe2\x3a\xf0\x7b\x3e\xec\x2c\x1c\x0c\x58\x44\xc2\x02\xd3\xa8\xaa\x3b\xcf\xfc\xe9\x6e\x7d\x77\xe6\x65\x08\x59\x2a\xf2\x3f\xfc\xe1\xbe\xe8\x9e\x50\xd1\x0b\x5e\xc9\xcf\x92\xac\xd5\x17\x34\xfe\x95\xb4\x83\x07\xe3\x1f\x5b\x97\x3d\xfe\x27\xf9\x18\x3a\x9f\x3e\x25\x79\x41\x87\xbf\x97\x9f\xca\xd3\xb8\x80\x9b\x23\xc2\xff\x6a\x85\x06\x20\x5b\xe1\x6f\xa3\x68\xf0\x60\x6b\x44\xaf\x68\xe2\xfd\xd3\x75\xff\x09\x44\x91\xfa\x1d\xbd\x7c\xf1\xe9\xdd\xfb\xb7\x87\x6f\xd7\x6b\xc7\x88\x27\xe8\xd4\x11\x20\xd8\x2b\x8b\x04\x7d\xf2\x47\xce\x80\x4e\x1c\xa7\xf2\x10\x7e\x40\x7e\x35\xd8\xc6\x3f\xc8\x8f\x0d\x6c\x0c\xff\x9b\xfc\x68\xbe\x53\xaa\xf0\x28\xe7\x37\x67\xf0\x40\xdc\x99\xff\x40\xc6\x57\x6c\x27\xf2\x25\xaf\x59\x93\xab\xde\xc4\x5a\x4f\x2c\x1a\x3d\x9c\x7a\x53\x72\x74\x74\xe4\xa1\x75\x6f\x9e\x17\x1c\x0c\x8a\x84\x08\xf1\x8a\x1e\xf8\xa3\x87\x53\x07\x0d\x9c\x07\x0e\xc2\x8c\x92\x77\xd3\x8f\x52\x6c\xa7\xb0\xa1\x8c\x92\x8f\x0a\x61\x2a\xf8\xb3\x01\xde\x38\xa7\xe4\x27\xaf\x33\xfc\x20\x16\xa9\x08\xa7\x0d\x81\x1f\x8e\x29\xf9\x91\x2f\x15\xf4\xf4\x65\xf9\x42\x87\x74\xc4\x25\x25\x3f\x4b\x85\x69\x9c\x50\x72\x5b\xfc\x65\xbc\xa0\x84\xd1\x29\xa3\xa3\xb4\xac\x77\x77\x65\x75\x89\x2f\x9f\xee\xc8\x92\x92\xe7\xd4\xfb\x88\x1d\x75\x1b\x3a\x08\xcf\x55\xda\xeb\x78\xe9\x20\x3c\x53\xaf\xef\x8a\xfc\x3c\x2d\xa9\x83\xf0\xa9\x4a\x3a\xa0\xcc\x41\xf8\x58\xbd\x4a\xe0\xeb\x20\x7c\x0e\x49\xa2\x15\xec\x88\x41\x3a\x08\xbf\xa6\xe4\x77\xea\x2d\x29\xc2\x27\xf0\x34\xa7\x08\x5f\xc0\xd3\x8c\x22\x7c\x0d\x4f\xa7\x14\xe1\x3d\x78\x3a\xa6\x08\x5f\x52\x92\xd1\x69\x46\xdb\x08\xe9\x17\x4a\x2e\xe9\xf4\x92\x8e\xc0\x24\xfe\xed\xbc\x85\x92\x7e\xa2\x8d\x83\xd7\x02\x61\x40\xcf\x24\x0b\x1a\x17\x1e\x07\x5f\x6c\x27\x0b\x74\xb4\x54\x4e\x7a\x08\x5d\x65\xca\x3c\x90\x6b\x15\x1c\x94\x5a\xe7\xfa\xed\x7f\xb8\xfe\xc3\xff\x70\xfd\x57\xd4\xf0\x4b\x3e\xcd\x62\x16\x7f\xfa\x04\x22\x3b\x18\x97\xc9\xf6\x86\xda\x9c\xb6\x0f\x14\xbc\x96\xb7\x31\xf4\xde\xbd\x92\x6e\xc5\xe3\x7f\x82\x86\xe1\xf1\x1f\x2a\x50\x8f\xc3\x7f\x29\x75\x38\xb1\xd7\x8f\x69\x2b\x79\xbd\xfe\xb7\xc1\xfe\x63\x28\x3d\xdd\x64\x31\x3a\xf4\x71\xa1\xa0\x2f\x9f\xaf\x6c\x87\x06\xa8\x08\xb3\x88\xdf\x58\x96\xaf\x69\xad\x58\x86\xe5\xc5\x33\x09\x23\x5c\x68\xb3\x4b\x9c\x93\x7e\xbf\x30\x36\xa2\x42\x95\xa0\xcf\xef\x76\xdd\xed\x14\xad\xd7\x10\x46\x45\x3a\x5b\x20\x24\x5d\xaf\xdf\x53\x08\xf5\x82\xd6\x6b\x6d\xc4\xd8\x71\x3b\xbe\xa2\x8d\xb8\xbd\x7c\x25\xff\x61\x02\x17\xb9\xee\x4b\xea\x15\x38\xe3\x33\x62\xd4\x3c\xd7\x6b\x26\xfa\xb1\x5e\x8b\xe8\x32\x99\xb5\x84\x2f\x68\x73\x2a\xb4\x90\x28\x1b\x0e\x03\x94\xce\xbd\x97\xd4\xa3\x61\x16\x01\xca\xa0\x09\xa8\x4c\xcb\x78\x4c\x5d\x07\xd4\x66\xc4\xe3\x17\xa2\x9b\x07\xa0\x37\xe4\xba\xde\x01\x49\xa7\x85\x47\xe5\xb7\x49\x01\x91\x38\x74\x37\x0f\x54\xcd\x90\xbf\xff\x2b\xb5\xa8\x35\x2a\xb1\x35\xd8\x61\xfc\xf3\x3e\x10\x94\x07\x5d\x9a\x52\x6a\x25\xc0\x52\xde\xe0\xaf\x1e\x43\x01\x73\xdd\x36\x0d\x1a\x8e\x23\x7b\x4f\x81\x18\xcb\x11\xd1\x33\xe0\x59\x89\xb6\x30\x7f\x5f\xae\x18\xbc\x2f\x57\x96\xd1\x09\x68\x70\xf7\xb5\xc5\x4f\x17\x13\x1a\xb6\x97\x89\x42\x07\xc6\x60\x62\xb7\x15\x48\xda\xc8\xf2\x3d\x57\x04\x46\xed\xc4\x8a\x67\x4c\xf1\x01\xaa\x74\x3c\xce\x33\xf2\x0e\x2c\xb1\x3e\x92\x33\x42\x16\xeb\xf5\x19\x21\x2b\x3e\x27\x3f\xd8\x33\x56\xef\x84\xa5\xf5\xde\x33\x56\x39\x17\x3a\xfa\x70\x7d\xa6\xb4\x8e\x4d\x43\x2f\x29\xe3\x78\x86\xa7\x14\xa2\xce\x08\x99\x41\xe3\xf1\x7a\xfd\xd1\x75\xfb\x29\x34\xf3\xd2\xea\x43\x3a\xa5\x93\x9b\x2a\x68\x2d\x54\xd3\x36\xd1\xc2\xe7\xac\x6e\xac\xd7\xbf\xf0\x01\x4d\x6f\xaa\x89\xc7\x48\x0e\x43\xfe\x95\x7a\x0c\x4d\x53\xfe\x77\x72\x23\x3d\x30\xb2\xca\xfb\xc8\x33\xdd\xb2\x06\x32\xf1\x8c\x6f\xcf\x67\xc2\x8a\x8d\x43\x03\xdc\x99\x8b\xba\xee\x19\xf5\x18\xfe\x91\x02\xee\x8b\x2a\xef\x00\x82\x76\x2b\x5e\x68\xff\x73\x78\x16\x35\x86\x78\xb0\xd1\x60\xb1\x36\x24\x6d\x9e\x21\x34\xfc\x7b\x27\x4a\xbd\x7e\x1f\xf6\x35\xa4\x95\x60\xbd\xd0\x4b\xd4\x27\xbe\x3c\xb9\x37\x50\x9f\x2f\x26\xb7\xec\x32\x36\xe5\x15\x8d\x8e\xe1\x7e\x47\x13\xf5\x14\x58\x55\xd5\x57\x3a\xc3\x14\xd4\x40\x84\x07\x1b\xf9\xf2\x4a\x06\xcd\x06\x7c\x57\xb4\x7a\x2d\x3a\xb5\x27\x7e\x2e\xc5\xcf\x17\xf1\xf3\x49\xfc\xbc\x15\x3f\x87\xe2\xe7\x4a\xfc\xbc\xf9\xcf\xf6\x76\xd1\xee\xe9\xb2\xab\x45\x4b\xb5\xe4\x77\x8f\x4d\x33\xef\x03\x9c\xd8\x31\x9a\xc0\xc3\x7b\xdc\x6a\x4b\xd4\x89\x33\x59\xeb\x5c\x0c\xe7\xbc\xbe\x28\x6a\x4d\x4e\xdb\x6d\x2a\x68\xd4\x75\xb8\x04\xf7\x0f\xbf\x12\xe8\x33\x35\xda\x07\x96\x87\x13\x42\xcd\x33\x66\x95\x6e\xea\xf8\x5e\xc3\xfb\x41\x0d\x0f\x1e\x7e\xb9\x73\x78\xaf\x55\xad\x29\xa1\xf8\x0b\x9d\x0a\xdc\xcc\xfb\x22\xaf\xd4\x14\xf1\xd3\x06\x14\x46\xca\x0b\x9e\xe1\x03\x30\x06\xab\x5e\xac\xd7\xde\x0b\x18\xe3\x15\x15\x87\xf1\x39\x79\xc1\xf1\x4f\x09\xa5\x9f\xab\x63\xf2\x9c\xbf\xbd\x00\x74\x83\xc3\x32\xdc\xdf\x47\x3c\xf7\x33\x52\x8f\x05\xbf\x61\x6c\x52\x0f\xd5\xd2\x04\x83\x7b\x60\x5a\x6c\xf4\xff\x00\xe0\x96\x99\x3b\x99\x5a\x01\xe4\x39\x90\xa5\x61\x3e\xe0\x57\xbb\x05\x66\x69\xc5\x2f\x4e\xbe\x1c\x7c\x88\x3f\x72\x40\x01\x18\xc3\xe4\x47\x6a\x35\x7c\x6b\x83\x35\x1c\x0c\x5a\x72\x5d\xb0\xe9\x65\x70\x7f\xe2\x8c\x93\xbc\x28\xa8\xbc\x67\xeb\x35\xc5\x86\x96\x03\xa1\xf5\x33\xe1\x05\x22\x4c\x49\x1e\x21\xfc\x8a\x7a\x07\x38\xc5\x07\xd4\xcb\xe5\x85\x9a\x62\x8a\x5f\x20\xc4\x89\xbd\x03\x73\xe3\x7e\xa6\x16\xfe\x24\x2f\x4d\xb8\x5c\x28\xfe\x97\xeb\xfe\x8b\x5f\xfb\x22\x0e\xd6\xcf\xe2\xcb\x4b\xe0\x3f\xd2\xc9\x0b\x24\xb8\x91\xbf\xc3\x9d\x21\xe1\xa8\xae\x75\x9f\xde\xbe\x83\x2d\x28\x61\x9f\xd6\x82\x43\x4c\x58\x64\xf9\xc6\xef\x77\xab\xda\x33\x6a\xa0\x63\x06\x91\x28\x38\x0c\x37\xfe\x2b\x80\x97\x60\xc5\xfa\x07\x96\x81\x90\xe6\x13\x16\xe6\xa0\x3d\x36\x2d\xbc\x2c\x8c\x23\x0c\xd1\x4a\x62\x98\x52\x85\xdc\xbf\xa2\x5e\x86\x63\xac\xf5\xba\xcb\x29\xcf\x34\x29\x2d\xa3\x09\xdd\x95\x8f\xb4\xee\x3d\x46\x21\xb9\xed\x75\xd6\xf6\x43\xf2\x8a\x52\xfc\x61\x83\x47\xac\xd7\x46\xc9\x92\xbf\x18\xa6\xf5\x7a\xed\x1c\x0b\x26\xaa\x03\x4a\x8b\x3a\x5e\x91\xd3\x27\x84\x4e\x04\x9f\x98\xd0\x8a\x5f\x6a\x59\xd8\x42\x4d\x8c\x9a\xe3\xc4\x39\x8d\xcb\x53\x27\x9a\x40\x60\x2b\x33\x8c\xe7\x74\x93\xfe\xb6\x31\xd5\x87\x46\xe8\x54\x4c\xcb\x84\xe3\x7f\x55\xcd\x66\xf6\x33\xf5\x32\x34\xcd\xe4\x2c\x56\x9f\x2c\x72\x4a\xd0\x0f\x6d\xe1\x97\xa2\x08\xce\xe9\xf4\x5c\x05\x65\xbd\xa9\x2a\x5c\x2b\x2b\xa2\xb4\x76\x39\x99\x82\x4a\x4e\xe3\x12\xb0\x79\x19\xcc\xb5\x56\x31\x38\xce\xaa\x55\x76\x42\x3b\x6c\x8e\x49\xad\x10\x07\x31\xe7\x54\x5f\x2e\x21\x35\xae\x5d\x40\xcd\x43\x4e\x80\xb6\x9c\x91\x28\x1f\xc3\x14\x4d\x79\x6e\x35\x01\xf5\x86\x4f\xe3\x2e\x67\x5f\xf5\x86\x65\x85\xe7\x6a\x92\xf9\x89\xe7\x15\x5a\x2d\x34\x6a\xad\x09\x2a\xed\xd5\x6a\x4e\x03\x39\xa7\x56\x18\x7a\x36\xcd\x27\x4c\x46\xc7\x7e\xfb\x15\xeb\x14\x46\x8d\xfc\x1d\x6b\xd3\x31\x30\x9c\x91\x17\x14\xba\xaf\x7c\x7c\x78\xd9\xce\x18\x50\x63\x62\x99\x05\x4c\x99\x08\xa2\x3c\x29\xa9\x1a\x70\x86\x7d\x24\x42\xbd\xbe\xfd\xca\x55\x6c\xb5\xd9\xcb\x76\xc6\x6a\xed\x38\xbc\x0e\xfd\xe6\x60\x9a\x4b\x24\xcb\xf1\x6a\x6a\x35\x53\xb4\x3b\xf4\x1b\x65\xdb\x0b\x61\x49\x5b\x75\xc9\x82\xf7\x29\xb3\xfa\x54\xec\x8c\xa7\x99\x2d\x48\x9f\x64\x61\xc1\xbb\x46\xd4\xf2\x1c\x7e\xc5\xf2\xdc\xf0\xc3\x3d\xe1\x30\xf3\x13\xc5\xe7\xf1\x92\x3f\x7a\x73\xba\x5e\xbf\xa5\x08\x0b\x08\x20\xbf\x56\x8d\x8a\x37\x9f\xb1\x8f\x54\x99\xfd\xc9\x4c\xa0\x90\x7c\x78\xdb\x6a\xb4\x4b\x8a\x9b\xbc\x51\x6c\xc3\x74\x5b\xc5\xc4\xd1\x6e\x14\xdb\xb8\xe5\xad\x82\x02\x3f\x60\x2a\x00\xfc\xd5\x57\xcc\xa1\x60\x4e\x34\xca\xdc\x01\x82\x54\x61\x7b\x86\xae\xee\x31\x43\xf5\xc2\x6a\x92\xae\xee\x31\x49\xf5\x92\x6a\x9e\xae\xbe\x7a\x47\x02\x63\xbc\x97\x82\x63\xcb\x84\x5f\x15\x6f\xa9\x71\xb7\x66\x67\xea\xf3\x6d\xa4\xdc\x9b\xec\x14\x43\x5f\xdb\xc1\xb4\xd4\x40\x82\x46\x1b\x30\xa5\x87\xd4\xcb\xcd\xfd\xd9\x58\x20\x40\x1b\x9e\x51\x92\xd0\xe9\x4f\x5e\x42\x15\xe3\xb0\x1d\x34\x98\xc3\x9f\x77\x9d\xeb\xa0\x19\x34\x96\x39\xfb\x7b\x5a\xf7\x6e\xe8\x31\x29\x51\x65\xd3\x74\xc2\x38\xf8\xb1\xee\x5b\x2d\x17\x3e\x50\xe2\x55\xe4\xba\x14\x1c\x4a\xd0\xbf\xfb\x84\x8c\x5d\x97\xee\x58\x38\xc8\x2f\xb4\x61\x54\x65\x93\x67\x0a\x15\x24\x84\xd4\xa2\x6c\x5b\xb2\x79\xb3\x52\xeb\xf5\x8f\x16\x1b\x05\x10\xa9\x1b\x23\xaf\x40\x37\xac\xb8\x56\xa3\x7c\xa0\x47\x29\xe4\x12\x0c\xdd\x54\xd6\x67\x3a\x70\x1c\xeb\x4b\xa5\x6c\xcf\x2c\xa9\x08\xad\x93\xa8\x22\x78\x3e\xe5\x58\x84\xeb\x32\x7e\xdf\x54\xde\x92\xba\xee\x3b\x0a\xa8\xd7\x52\xfc\x58\xe2\x4d\xcf\x47\x08\xf5\xc9\xc5\x7a\x3d\x37\xd9\xe6\x14\xf5\xc9\x72\xbd\x9e\x51\xd7\xd5\x42\x32\xc9\xc9\x8d\x9c\x3e\x79\x47\xbd\x19\xa8\xc0\xe4\x8b\x0b\xea\x21\xb4\x5e\x9f\x9a\xc2\xa7\xbc\xf0\xf1\x7a\x7d\x6c\x17\xd6\x12\x36\x28\xcc\xb3\x1d\x8b\x48\xa4\xef\xba\x2e\x1b\xbd\xf8\x38\x23\x8c\x90\xd9\xb4\xb6\x1a\x8a\x97\x5b\x90\x6c\xfa\x3b\xc7\x51\x14\x9e\x97\xce\xbd\x42\xb9\x25\x28\x24\x25\xfd\x9a\x2a\x12\xe6\x42\x90\x34\x27\x3a\x61\x29\x09\x67\x95\xd0\x1e\xa9\xa4\x71\x75\x89\x63\x91\xb0\xd7\x2a\xa1\x87\x67\xa4\x4a\x02\x77\xfe\x40\xeb\x0a\x85\x66\x33\xff\x64\x21\xe8\x3d\x2d\xcb\xea\xe0\x86\xb4\xb6\x74\x7b\x1b\x93\xd4\xb0\x1f\x91\xeb\xf6\x01\xa7\x07\xb2\xec\x07\x4a\x16\xb6\x6e\x84\x3e\x3c\xbe\x75\xae\x7e\xb6\xb6\x3e\x10\x0a\xd3\x7f\xdb\x2a\x10\x6a\x48\xc0\x53\x62\x84\xac\xcc\xf6\xfb\x95\x6e\xc4\x83\x81\x69\xeb\x59\x5c\xdb\xf5\xba\x76\x72\xac\x23\xf2\xa3\x3d\x15\x30\x2f\xd3\x37\x60\xc2\xd8\x50\xa0\xeb\xff\x62\x33\xb2\x56\x40\x7e\x89\xb6\x43\xa3\xf1\x03\x46\x5a\x92\x4e\xa5\x08\x69\xfe\x5d\x86\x5c\xd7\xb1\x76\x91\xd3\x27\x19\x1c\x5b\x0e\xed\x0c\x23\x17\x48\xea\x2a\xeb\xd4\xe6\x50\x6c\x48\x7e\xe6\xfa\x63\x40\x63\xda\xba\x19\x38\xf3\x1e\x7d\x8f\x80\x5c\xfc\xeb\x94\x34\x9e\x8e\xc7\xca\x11\x51\x4b\x5f\x23\xe9\xd6\xd7\xb0\x14\x31\xf6\xca\xeb\x2c\xe9\xd6\xc6\xe8\x56\xc2\xe8\xd2\xd1\xa8\xa9\x64\x2c\x16\x77\x2b\x64\xbc\x2b\xf2\xab\xeb\xba\x3e\xc6\x07\x35\x2a\xd0\xca\xb8\x5d\xa3\xe0\x75\x97\x46\xc1\x09\xb9\xa9\x82\x93\x70\x83\xe2\x45\x44\x9a\x9f\xb4\xe6\x45\xed\x93\xa5\x7a\xd1\x4c\xd7\x3a\x11\xcd\x0f\xdd\x8d\xd8\xda\x17\xed\x0f\x75\xf5\x8b\xd6\xf7\xee\xb6\x6a\x0a\x18\xa0\xc1\x70\x12\x26\xb5\x1c\x5d\xa5\x6a\x0a\x2b\xb5\x2f\x5a\x59\xa7\x96\x6a\xf4\x58\x9a\xc9\xb4\x91\xa4\x95\x26\x4e\xc2\x55\xed\x83\x54\x98\xb0\x52\x94\xaa\x0e\x4f\x9c\xd5\xbe\x28\xe5\x9c\x5a\x22\x68\xe7\xd4\x53\xa4\x7a\x4e\x2d\xb1\xad\x9c\x71\xf1\x55\xca\x19\xd7\x7f\x58\x39\x63\x8f\x5f\x8b\xd7\xb7\x29\x67\x5c\x76\x28\x67\x7c\x21\x97\xf7\x55\xce\xf8\x44\xbe\xb8\xee\x17\x4b\x39\xe3\x12\xbf\x25\x9f\x5c\xf7\x82\x23\x13\x09\x2d\x4b\x7c\x58\x43\x6c\x8b\x6b\x29\x68\x87\x62\xd2\xdb\xb9\xf5\xe8\x39\x2b\x96\x2e\x1c\x04\xfe\x07\x4b\x8d\xb5\xac\xd7\x6f\x5d\xf7\xed\xe8\x38\xcd\x66\x69\x76\x62\x3d\xaa\xfc\x36\x8e\xe1\x21\x7c\x45\x0e\x5d\xf7\x70\x94\x96\xbc\x9f\xb3\xc6\xbd\xf5\x46\x01\x33\x79\xd1\x2a\x01\x97\xbc\x6f\xc7\x13\x23\x1a\x00\xc0\x28\x39\x89\x7e\x33\x1d\x67\xe1\x38\x92\x1f\xb7\x3b\x3f\xe2\x2c\xf4\x55\x8e\x47\x9b\x73\xe0\x0c\x74\x4a\x8d\x6e\x0a\x78\x01\x05\x5d\x60\x3e\x59\xaf\xf0\x0b\x7c\xd0\x52\x7f\xf8\xdc\xa5\xfe\xb0\xdf\x56\x7f\x38\x23\x7b\x1b\xd4\x1f\x3e\x92\xcf\x46\xf7\xe0\x39\xd9\x6f\xea\x26\x3c\xbb\x4b\x3d\xe2\xcc\x75\xcf\xa4\x7a\xc4\xd9\x1f\x53\x8f\x78\x47\xf6\x4d\x17\xde\x93\x8f\x62\x6a\x94\x94\xfe\x17\x5b\x1d\x42\x7e\x7b\xfe\xbf\xa4\x0e\xf1\x3b\xf9\x34\xdd\x6b\x68\x43\xbc\x24\x7b\x4a\x19\xe2\x03\xd9\xb3\x75\x21\x7e\x22\xbf\x4f\x7f\xb7\x2d\x64\x55\x91\x1f\x88\xf7\x8a\x74\x2b\x49\xbc\x90\xe9\xb8\xe3\xc2\x7e\xe5\xbd\x80\xfb\x18\xe1\x9f\x1b\x1a\x14\xbf\x92\xfd\x6e\x05\x8a\x1f\xc9\x81\xd2\x9f\xf8\x27\x79\x39\x7d\xa9\xe7\xf9\x30\x56\x6a\xac\x75\x05\x18\x73\x36\xf7\x8c\x0a\x43\x3d\x62\x98\xb5\xa6\xde\x4d\x85\x1d\x07\xdf\x54\x08\xd3\xc6\xe1\x7b\x00\x83\x6f\xea\x62\xfc\x43\x58\xf7\x9c\xc7\x57\xf8\xdf\x84\x43\xe9\x51\x96\x5f\x62\x0a\xad\xed\x29\xa5\x0b\x56\x6b\x5c\xeb\x4f\x64\xb4\xa6\x55\xad\x0e\x32\xf5\x8c\x12\x94\xad\xc4\xcc\x11\xad\x7d\x6a\x22\xd4\x0b\x41\xdd\xcf\x0a\xed\xfa\x99\x1f\x69\x8b\x2e\x25\xcc\x16\x17\x1a\xc1\xa0\xc9\xa0\xb4\x5f\xf8\xf0\x0c\x1c\x29\x9a\x8a\x0a\x8a\x1f\x09\xae\x17\x8c\xb7\xc0\x3f\xa7\xae\x90\xff\x57\x5a\x49\xff\x2b\xad\xc4\x74\x03\x6b\x0c\xa6\x1e\x46\x2a\x6b\x48\xbf\x50\xc2\xe0\xc7\xf2\x78\x55\xe3\x08\x03\x7e\x8d\x0b\xd2\xcf\x5c\x17\x54\x3a\x70\x0e\xcf\xfd\xc2\x75\x5f\xc0\x7b\xaa\xdf\xfb\xb9\xeb\x7e\xa4\xc2\x56\x3b\x5b\xaf\x8b\xf5\x3a\x5f\xaf\x53\x5c\x92\xf8\x3f\xa3\x34\x91\x90\xd2\x9e\x34\x5e\xe3\xc2\x52\x97\x78\xae\x30\xfa\x05\x5a\xaf\xe3\x9a\xba\xc4\x42\xea\x4f\xc8\x28\x1c\x90\xe0\x08\x37\x99\xfc\x05\xad\xd7\x29\xff\x2c\xc4\x89\xf2\xb3\x11\x59\x58\x09\x6f\x75\x05\x68\xbd\xbe\xa4\xde\x02\x27\x9c\xca\x95\xb6\x28\x0b\x3d\x82\xd2\x72\x35\xa5\x35\x30\x8c\x03\x99\x6c\xbd\x3e\xa4\xa0\x59\x81\x33\xb4\x51\xf5\x62\xa9\x4a\x5a\x0e\x95\xba\xd4\x39\x9e\xdb\xea\x1c\x87\xb7\xab\x73\x74\xd4\xb9\xba\x5b\x9f\xe3\xf0\xbe\xfa\x1c\xba\xfa\x1b\x4b\x74\x01\x6a\xf1\xff\x9a\xfe\x0b\x3e\xdd\x24\x79\x36\x4f\x4f\x56\x00\x4e\x27\xfd\x31\xa6\x1a\xb8\xf2\x37\x11\x2c\x31\xc3\x97\x45\xca\x64\x5a\x85\x26\x42\x07\xa5\x2a\xbe\x82\xbd\x07\xaa\x6b\x5a\xd2\x80\xcd\xfe\x1f\x57\xb8\xb8\x3f\x67\xfb\x0e\xa1\x43\xcd\x93\x0e\xaf\x7e\x48\x18\x58\x68\xb2\x46\x2b\xf7\x14\x47\xb0\xaf\x10\x47\x3c\xdf\x24\x8e\x28\xfe\xa0\x38\x82\x35\xc5\x11\xcf\x6d\x71\x44\xf1\xf5\x3c\xc7\xe6\xe4\x0c\xec\x39\x9d\x8e\x27\x3e\xce\x42\x1a\x11\xb6\x49\x62\x91\x7f\x95\xc4\xa2\xbe\xc6\xf9\x1f\x92\x5e\xac\xbe\x46\x7a\xf1\x63\x4d\x78\x31\x1c\xea\xf6\x85\x20\x23\xff\x7a\x41\xc6\xea\x6e\x41\x46\x7e\x0f\xa6\xf1\x6a\x83\x20\x23\xff\x23\x82\x8c\x55\x5b\x90\xe1\x0d\x06\x66\xac\x35\xa9\x46\x5b\xac\x91\xde\xbd\x86\x62\xc9\xf0\x26\x11\x47\x61\x44\x1c\x94\xae\xd7\x79\x5d\xc4\x51\xd0\xaa\xd1\xc8\xc6\xc5\xbe\xee\x90\x70\xdc\x76\x80\xd3\x7b\x70\xf6\xaf\xdb\xb2\x8f\xf4\x1e\x2b\x74\xdd\x96\x7d\xa4\xf7\x59\x1c\x53\x0e\x54\x08\x79\x87\x83\x6e\x5e\xbb\x3c\x70\x22\x0f\x01\x73\x74\x5f\x2e\x49\xfc\x95\x52\x92\x9c\xd6\x8f\x56\xfc\x87\x8e\x16\xbb\x65\xd2\x25\x52\x82\xb3\x46\xe5\x5f\x25\x4e\x89\xff\xb0\x38\x25\xfe\xf3\xe2\x94\x7c\x93\x38\x85\xde\x5b\x9c\x22\x66\x62\x30\x10\x4b\xb6\x59\xc2\x92\xde\x22\x61\x11\x75\x58\x35\x08\x91\xcb\x9c\xe2\x59\xd3\xf7\x81\xb9\xf0\x0b\x8e\x96\x29\x4f\xf9\x02\xc5\xcb\x04\x56\xa7\xe2\xbb\x04\x31\x47\x04\x84\x0f\x73\x92\x86\x73\x3a\x8d\x27\x83\x41\x01\xbe\xcb\xfb\x3e\x87\xda\x5e\x1e\x96\x11\x2e\x71\x8e\x90\xf0\xa9\xae\x95\x64\x0c\x66\x7f\xda\xe4\x6c\x1b\x2d\x03\xf0\x1b\x7e\x3c\x99\x4f\xfe\xe9\xba\xff\xac\x31\x6a\xa7\xed\x9d\xa5\xf1\x9d\x7f\x22\x9c\x11\x1a\xfe\x33\x0a\x38\x95\xc5\x1f\x24\x4d\x21\x5d\x41\xf5\xc7\x92\x86\x4a\xd1\x4d\x25\x56\xe7\x9d\x62\x60\x43\xc8\x26\x36\x85\x42\xd9\x44\x5e\xef\xfc\xcd\x8a\xa1\xd2\x64\x35\xcb\x0f\xba\x8e\xaa\xa6\xda\x7c\x6c\x0f\xef\x8c\x02\xda\x00\x43\x26\x24\x31\xb9\xce\xeb\xfa\x37\xfb\x9b\x34\xa0\xfb\xfd\x67\xae\xfb\x0c\xd0\xb6\x4a\xc8\xa8\xbc\x03\xe0\x80\xff\x32\x39\x97\xaa\x38\x0d\x2e\x78\x97\x1c\xe9\xe3\x1f\x94\x23\x01\x59\xac\xfb\xfc\x5a\x89\xaa\x44\x77\xdb\x2a\x93\x6a\x65\x84\x37\x7b\xd5\x91\x0d\x9c\xf7\x6e\xd6\xba\x64\xd8\x7f\xa1\x42\xba\x63\x31\xee\x0b\x81\xbb\x7a\x0d\x26\x7d\xb1\x5e\x73\xb4\x5f\x6f\x86\x02\x99\x78\x2e\x45\x97\x2a\xf4\x09\xb5\x3d\xa8\xd0\x3e\xa0\xa5\x33\x7e\xe3\x9a\x99\x4c\x71\x2c\xc2\x9f\xac\xd7\x5e\x0e\xa7\x2d\xa6\x08\xef\x53\x2f\x45\xa8\xdf\xd4\xd8\x04\xb5\xe4\x58\x1d\x8b\x4f\x14\x98\xf7\x38\xe1\x4f\xfc\x7c\xe1\x05\x89\x01\x38\x25\xa0\xda\xb6\x50\xd3\x06\x5b\x14\xa8\x82\x0c\x2f\xc4\xb8\x57\x24\x9d\xa6\x5e\x89\x13\x9c\x0d\x1c\x07\xf3\xfa\x63\x25\xbd\xc2\x4b\xa2\xcf\x08\x68\xed\x2e\x45\x8b\x73\x4e\xab\x25\x08\x9f\x92\xfe\x1c\x68\xb3\x04\xe1\x63\x78\xee\x9f\x02\x5d\x96\xa0\x60\x45\x12\x3c\x5f\xaf\x4f\xd7\xeb\xe3\xe9\x1b\xea\x95\x68\xba\x22\xe5\xe4\x8c\x7a\xe7\xa4\x44\xae\xfb\x8a\x7a\xe7\x3c\xe9\xaf\xd7\x3f\x2e\xd1\xe4\x74\xea\x2d\x49\xdf\xc7\xcd\xea\x6f\xd3\x2c\xd6\x54\x5f\x41\x7e\x9a\xfe\xe4\x65\x68\xd2\xa1\xd3\xd9\x54\x32\x2e\x10\x2e\x2a\x2f\xe1\x48\x17\x9a\x1c\x6f\x68\x55\x29\x90\xde\x4f\xe1\x72\x83\xba\xda\x07\x5b\x5b\xed\x83\x54\x56\xfb\x8b\x14\x52\x65\xff\x57\x24\x8c\x5a\xe2\xad\x33\x01\x24\x00\x98\xf4\xc9\x4c\x47\xd3\x91\x67\xe6\x07\xa9\x3c\x29\xb5\xc3\x98\x89\xbf\x24\x46\xad\xd1\xf8\xda\x09\x82\x80\x30\x6d\x59\x76\x87\x14\x3b\x73\xdd\xda\x5d\x97\xb9\xae\x84\x2b\x19\x22\xe4\x7d\xe5\x25\x68\xbd\xbe\xe2\x1b\x6e\xea\xad\x48\x89\xaf\xe4\x4e\xbb\x53\x51\xd3\x28\x3d\xf7\xb3\xc0\xe8\xf7\x81\xda\x28\xdf\x80\xb1\xd1\xed\x93\x1b\x2e\xdd\x89\xf5\x3d\xc4\xc2\x34\xc2\x89\x54\xf0\x2b\x23\x4c\xc5\x0d\x64\x2b\xf8\xe9\x83\x93\xb8\xae\x97\x10\x0a\x31\xd0\xf2\xe9\x92\xa3\xb4\x25\x4e\xd0\x64\xa1\x9e\x8c\xc6\x9f\x47\xf1\x73\x2a\xb4\x3a\x4b\x34\xd9\xe7\x63\x71\xdd\xfe\x01\xff\x5d\xaf\xbd\xae\x51\xdd\xad\x97\xfe\x45\xe9\xa5\x67\x14\x54\x6d\xf9\x7a\x23\x84\x26\x7c\xab\xc2\xc5\x74\x1e\x2c\x21\x54\x1b\xdf\x5c\x09\x5e\x21\x9c\x7b\x2b\x9c\x80\x12\x27\x38\x6b\x94\xa8\x53\x82\x50\x20\x21\xc7\x0a\xb4\x4e\x19\x68\x34\x9e\x50\x80\x69\x81\x56\xf8\x17\x6a\x8f\x00\x91\x62\xc4\xeb\x50\x50\x25\x6f\x4f\x4d\xe9\xba\x5e\x49\x52\x84\xa1\xe2\x18\x97\xa8\xaa\x10\x7e\x6e\xdf\x6c\x17\x75\x65\x82\xb7\x74\x93\x1b\x3e\x46\xfe\xe1\x59\x94\x9c\x71\x52\x3c\x61\x78\x8c\xb0\xcd\x6d\xd4\xb8\x87\x76\xcf\x80\xa5\x3e\xe7\x3f\xbc\x42\xbb\x62\xe6\xa5\x62\x09\x77\x52\x6d\x14\x1a\x0b\x3f\x0d\x6c\x90\x47\x01\x2f\xa4\xaf\x0a\xe9\xa5\xc7\x63\x03\x5f\x64\x66\x01\x2a\x95\x53\x07\xcd\x9b\x01\x66\x82\x17\x23\x0c\x22\x0b\x8e\x4e\xf3\x31\xc3\x50\xde\x53\x84\x85\x3d\xa8\x1e\xfc\xf5\xff\x3f\x14\x3f\xf7\xfe\x02\xc5\xcf\xf3\xba\xe2\xa7\xae\xfb\xb2\x56\x77\x4b\xde\x6f\xa9\xe3\x94\x4d\x75\x9c\xcc\xcc\x02\xc8\xdd\x5f\xdf\x4f\x29\xe7\xcb\x5f\xa8\x94\xb3\x6f\x2d\xf6\x27\x6a\x1c\xc3\x37\xf0\x8d\xba\xa2\x82\xe5\x7f\x33\x64\x11\x72\xdd\xda\x8a\x99\x0b\x8e\xcf\x21\xef\xe6\xdb\x2e\x12\x69\x8c\x2d\x37\xd0\x0d\xa9\x50\x41\xfe\xed\x21\x9c\x93\x78\xe8\x15\xc3\x4c\xc0\x77\x52\xe0\x7c\x77\x0c\xbd\x1b\x0c\xd8\x2e\x49\xb5\xa3\x34\xed\xe2\x64\x1c\x09\xff\xd2\xcc\x54\xac\x24\x5f\x12\x9d\xd0\x79\xf9\x9e\xff\xd7\xb4\x73\x27\xfc\xcb\xa3\xd8\x51\x92\x0d\xe7\x76\x9e\x9d\x2f\x79\x76\x5e\x46\x18\x6e\xe9\x93\xf4\xb2\x0a\xd5\x99\x79\xe2\x52\xaa\x26\xef\xa9\xc5\xf4\x3f\xbc\x5b\x5d\x89\x17\xbb\xa2\xe4\xd8\x02\x3e\x3a\xbf\x1e\x53\xe5\x21\x34\x3d\xee\x0a\xe1\xa6\x30\xf2\xe7\x1d\xb6\x80\xfd\x5f\x5b\x89\x15\x7e\xb3\x51\x43\xe7\x55\xa7\x86\xce\x67\x5a\x53\xb5\x39\xd0\xaa\x36\x2f\x28\x79\x70\x97\xa6\xcd\x41\x27\x86\xad\x6f\xf8\xd3\x1a\xd5\x4c\xc8\x0a\xf4\x6d\x96\xf0\x57\xe8\xde\x9c\x76\x6b\xf8\xdf\x4b\x49\xa8\xec\xd6\xe3\x6f\x9c\x63\x33\xd2\xfb\x29\xef\x9c\x75\xce\x52\x87\xb5\x26\x6f\xed\x23\x25\x57\xb7\x1a\x76\xd4\x42\xec\xf1\x9d\x7b\xd5\x49\x9a\xc9\x45\x6e\xac\x45\xff\x24\x84\x19\x8c\xac\x19\x7f\x6e\x77\x0f\x56\x74\x5a\x0a\xfd\x1d\x34\x79\xad\xd7\xee\x19\xc5\xef\x28\xf1\x9e\x75\x05\x3e\x33\xf4\x04\xaa\xf0\x05\xed\x8e\x36\xd5\xb4\x2b\x29\x76\xfd\x29\x0b\x8b\xa1\xaf\xd8\xb5\x38\x25\xc5\xee\xf6\x94\x85\xdb\x91\xb6\x39\xce\x0b\x2f\x27\xcf\xd4\x08\x76\x1f\xd9\xae\x0c\xf4\xc4\xe5\x53\xaf\x18\x0e\xcd\x8d\x8e\x53\x5b\x4b\x4c\x7b\x56\xe6\x1b\x2a\x6b\x6c\xa8\x42\x83\x42\x03\xa3\xcd\x4e\x29\xa6\xaf\x78\x11\xd7\xbd\x04\x3a\x46\xcd\xe3\xc4\x5c\x3a\x85\xeb\x82\x40\x21\x13\xf2\x86\x2c\x64\x11\x98\xbd\x69\x1f\x11\x18\x22\x74\xe6\xa4\xd8\x79\xa4\x6e\x93\x1c\x17\xc4\x47\x98\x1a\x36\x83\xa2\x1f\xb4\xbd\x46\x16\x05\xb1\xeb\x3e\x13\x68\x48\x86\x73\xcb\x0b\x13\x42\xa8\xae\xee\x69\xb6\x83\xa5\x93\xf5\x8e\xde\x5f\xed\x4a\x2d\x50\xdb\x05\x4c\x71\x8b\x67\xa3\xbc\x01\x13\xba\xbd\xfb\xb4\xee\x7d\xad\x73\x0a\x41\x7f\xba\xb4\xf9\x6e\x35\x65\x2e\x8c\x51\x72\xb6\xc1\x67\x61\x4b\xe3\x4a\x2c\x34\x27\x51\xbb\x34\x1a\xe2\xb6\x46\x43\x49\x52\x33\xce\x84\xc4\x4d\xbd\x85\x05\x29\xeb\x7a\x04\x2b\x12\x9b\x02\x4b\xe2\x15\x1b\x24\xf0\xf9\x2d\x12\xf8\xc2\xcb\x85\x04\x7e\xc3\x4c\x82\x42\xf2\xd7\x4c\xd6\x7a\xbd\x52\x93\xd5\xe7\xc8\x45\xfb\xd2\xfd\x8b\x9d\x84\x74\x40\xeb\xe5\xad\xf4\x58\x41\x92\x3f\x49\x8f\x15\xae\x5b\xd8\xf4\x58\xe1\xba\x72\x69\x0a\x44\xc8\xe2\x2e\x3f\xde\x17\x2a\xf0\xd9\x13\x9f\x23\x18\xfc\x61\x1b\xe1\x94\x6c\xfd\x76\x34\x1b\x3c\xd8\x0a\x20\x84\x75\xd9\xa5\x7c\xed\x31\x22\xc2\xed\x31\xcf\xc1\x4e\x33\x98\xa6\x9e\xe1\x9b\xca\xa0\x1e\xac\x48\xcf\x3d\x24\x0b\x6d\x1d\x95\x83\xad\x4e\x3f\x88\x12\x58\x81\x6c\x54\x47\xc9\x19\xad\x8a\x05\xa1\x81\x32\x8b\x2d\x57\xc7\xe2\x44\x79\x63\x3b\xda\x0c\x8e\x1b\x01\x6a\x4a\x02\xfd\x7f\x99\x31\x2f\xc7\xfe\x18\xe1\x44\x24\x80\xe2\x9f\x97\x8b\x20\x5d\x97\x0e\x21\x24\xd6\x3e\xb6\x72\x84\xd8\xe8\x32\x9d\xb1\x53\x52\x6a\x7f\x89\xce\x69\x47\xa6\x53\x9a\x9e\x9c\x32\x99\x0b\x7c\x94\x5d\x71\x64\x30\x5e\xaf\x0b\x4e\x9e\x6d\xf6\x8e\x5c\x24\x25\x65\xbd\x19\x2d\x93\x22\x5d\xb2\xbc\x80\xb8\x5e\x03\x67\xe4\xa0\x80\x8d\x66\x34\x2b\x53\x76\x4d\x12\xf0\x52\xc8\x38\xbc\x13\x21\x0c\x91\x8a\xa9\xd9\x98\x2c\x39\x47\xff\x38\x78\xfb\x66\x24\x66\x25\x9d\x5f\xc3\xa6\x27\x8d\x34\x06\xbe\xad\x21\x80\xa9\x30\xda\xc3\xcc\x7c\xed\xa2\xd1\x73\x8f\xb6\x57\x56\x84\x13\x5e\x15\x8b\x8e\x80\x65\xef\x5f\xf5\xd2\xb2\x27\x55\xcd\x66\x23\x47\x2b\xdf\x42\x01\x63\x2f\x29\x26\x58\xeb\xd6\xca\xf7\x81\x73\xe9\x20\x4c\xe5\xc4\x5a\x5f\x45\xc2\xc0\x39\x85\xcf\x72\x86\xac\xef\x32\x65\xe0\x5c\x39\x08\x33\xe9\x75\xb9\xe7\x20\x98\x3c\xf1\x86\xf9\xeb\x1d\xc7\xc1\x00\x1e\xa1\xa6\x38\x02\x4f\xbb\x9d\x4e\x29\x00\x1f\xbd\xab\xbe\x9a\xe3\x3f\xf0\x69\x92\x66\x9c\x3e\xb3\xce\xb1\x3a\xc8\x07\xd4\xbe\x64\xe4\xb1\xb0\x6e\x07\xa5\x1f\xd6\xf7\x6d\x8e\xd2\x01\x65\x5e\xd8\x1f\x47\x5d\x07\x89\xa1\x1b\x4a\xf8\xf6\xc1\xfd\xb1\xa0\x17\xd1\xf4\x16\x0f\x74\x24\x8c\x9a\x35\xd3\x0d\x7e\x4a\xd5\xb4\x23\xb1\x41\x27\xb7\xd5\x2a\xeb\xb2\xbc\x11\xb5\xf6\xb0\x06\xe5\x4c\x8b\xd8\x3d\x06\xee\xa3\x84\x21\x72\x85\xd0\xa6\x36\xb4\x37\x79\x12\x46\x58\xf8\xf3\x37\x0a\x0b\x83\x01\x02\x1f\xe2\x4c\x7b\x17\xa7\x61\x16\x21\xb3\x6d\xf8\x9b\x61\x54\xde\xcb\x85\x5e\x23\x0a\xc2\xa7\x4f\xb4\x7c\x9d\xcf\x56\x10\x9b\x13\xf3\xb3\x0b\x81\xef\xea\xa2\x87\x99\x97\x79\x8f\xbf\x45\x1c\xc0\xf2\xc7\xef\xbe\x43\x1c\xc4\x42\x2a\x7f\x8c\xe1\xf1\xdb\x31\x42\xb8\x14\x8f\x3e\xe2\x80\x8a\x3f\xfa\x4f\xb7\x11\xc2\x0b\x91\xf9\x7b\x88\x63\xc0\x1f\x9f\x3e\x42\x08\x2f\x45\x66\xfe\x38\x17\xa9\x8f\x6d\xcc\xa8\x15\x30\xc9\xf4\x75\x4a\x27\x37\x2a\x44\x1f\xb5\x94\x87\x4e\x6b\x0e\x35\x9b\x7e\x34\xb1\x58\x4c\xa5\xb1\xa3\xa6\x1b\xe6\x19\xf8\xbe\x86\xf2\x34\xfc\x5f\x31\xff\xa2\x02\xd7\x6d\x84\x35\x0e\xc7\x22\xae\x3c\x04\x8a\x40\x60\x68\x9e\xab\x29\xe4\x98\xfd\xe9\x68\xb9\x58\x9d\xa4\x4d\x16\x85\xee\xaf\x3a\x15\x19\x61\x9b\xe8\x5a\x23\x11\x5d\xe6\x25\x4b\xca\xf2\x9d\xa8\x11\x64\xd5\x22\xe5\x67\x5a\x94\x69\x9e\x11\xaf\xd6\x3e\x1a\x5d\x88\x74\xe9\x1d\x4b\xb3\x12\x24\x62\x53\x57\xdb\xf3\x32\xec\xc8\xea\x1c\x7c\x73\x42\x59\xdb\x8c\xa9\x57\xac\xd7\x1e\xbf\x6b\x11\xc2\x45\x55\x21\x9c\x29\x05\xde\x3a\x3d\x61\xc2\x28\x9f\x7a\x61\xe6\x15\x28\x42\x2a\xa3\x88\xa2\x8a\xb3\x0a\x9f\x5a\x60\x3b\x55\x5d\xc6\xa7\xf2\xb6\x5e\x58\x29\x17\x34\x9b\xe5\x1c\xcf\x30\x49\x8b\xb4\x64\x64\x65\x25\x24\xf9\x79\x23\x5c\xbd\x21\xd6\xe8\x65\x2f\xd6\x6b\x42\x11\x6f\x3a\x66\xef\xf9\x86\xdf\x90\xbb\x6c\xe4\x9e\xd1\x64\xb1\x29\x6f\xd1\xc8\x5b\xdc\x52\xef\xb2\x99\x37\xcf\x37\xf6\x78\x6e\xe7\x85\x53\x78\x4c\x4e\x03\x73\x3c\x8f\xb1\x01\x27\x3a\xb5\xc2\xf8\x8e\x30\xb1\x06\x66\x15\x1c\x08\xde\xe3\xf0\xe7\x24\xe6\x27\xfe\x7b\x38\xf1\xfc\xf1\xf1\x53\xfb\x8c\xc6\xf7\x3e\xa3\x82\xa3\x69\x33\x4d\x55\x1d\x5a\xcb\x4a\xc8\x7c\xf5\xb6\x90\x82\xfa\xf3\x78\xf9\x76\xc9\x4a\x02\x2c\x40\xe3\xb7\x1a\x66\x4f\xe8\x65\x8c\x72\xf8\x5e\x49\x0e\x9a\xb9\x85\x8c\x67\x89\xb4\x7c\x1d\x2f\x49\x6b\x4b\x77\x06\xb4\xd0\x55\xf2\x06\xa7\xfd\x7e\xed\x5d\xf8\x05\x5e\x16\xf4\x22\xcd\x57\xa5\x87\x14\x59\x3b\xe6\x98\x88\x4a\x6e\x2b\x45\x83\xfc\xdb\x16\xdb\xab\xac\xaf\xe3\x65\xb9\x5e\x7b\xad\x34\xad\x02\xc4\xc7\x39\xba\x8c\x17\x67\xf5\x8b\x31\x9d\x7b\x4c\xba\xd2\xe0\xd7\x81\x78\x12\x9e\x79\x78\x37\x0d\x58\x69\x7e\x09\xe0\x46\xa1\xb5\xc6\xac\xd8\xe2\x7c\x0d\x6b\x9f\xa4\x78\x93\xa3\x72\x52\x2a\x6f\x7f\xe6\xa3\x4e\xcb\x97\xd9\x22\xad\xeb\xdf\x72\x54\x72\xe3\xdc\xca\x15\x1d\xa5\x50\xac\x16\x47\xb2\xfe\x29\x30\x93\xa7\xbf\xc4\x59\x96\xb3\x98\x37\xa3\x3c\xce\x5a\x0d\x91\x1a\x79\x0a\x48\x03\x78\xc7\xea\x5e\xb4\xf5\xba\x99\x5e\xe6\xe7\xb4\xeb\x62\xef\x51\xd9\x23\x3e\x0b\x62\xcc\x07\x30\xaf\xe5\x7e\x9e\xb1\x1a\xe4\xb9\x7b\x6b\xa9\x91\x94\xb5\x1a\xa6\xb7\x7c\x9b\xfc\x15\x03\xb8\x4c\xd9\xa9\xac\xcf\x03\x8c\x04\x33\xa1\x2f\xb3\xa7\x67\xb4\xb1\x82\xc2\x79\x47\xf7\xe4\x6b\x79\x38\x55\xee\xbd\x61\xa3\x66\xf9\x8c\x96\x26\x62\x1e\xdb\x25\xe3\x80\x0d\x87\xc8\x91\x10\x9a\xaf\x90\x47\x9b\x05\x42\x16\x09\x6b\x0e\xd7\x15\x91\x0c\x19\xbd\x32\x38\x8f\xf3\xb7\x9e\x98\x8e\xd7\xf1\x72\x99\x66\x27\x1f\xde\xbf\x22\x40\x60\xea\x4a\x44\xec\xfd\xfd\xd3\x74\x31\xe3\xb7\x2e\xa7\x09\x28\xdb\xbc\x40\x66\x57\x61\xa0\xef\x36\x9e\x33\x41\xc7\x65\xca\x61\xb5\x0e\x93\x5a\x3b\x53\xf3\x22\x3f\x97\x2e\xbe\xfa\x10\x6f\xef\x86\xff\x55\x91\xce\x39\xad\x57\xd0\x45\xcc\xd2\x0b\xea\x15\x28\x00\x6a\xc4\x74\x4f\x2d\x48\x8e\x1b\xb5\x26\x65\xa9\x9c\xfa\x4b\xd4\xe0\x5d\x41\x2f\x00\x32\x74\x8e\xc4\xda\x04\x98\xd5\xf9\x3a\x0a\xd5\x11\x51\xe9\xd9\x94\x4e\x68\x28\x4c\x12\x46\x29\x13\x16\x70\x91\x87\x02\xa5\xa4\x0d\x9a\x9b\x62\xe0\xbb\x26\x5a\x9e\x08\x8b\x5c\x10\x1a\x66\x83\x41\xa4\xbd\x41\x41\x28\xfb\x8c\x5e\x31\x0f\xa1\xd1\x2c\xcf\xa8\xce\x98\x09\xe7\x83\x95\xe0\x87\x15\xb8\x94\x8b\xae\xe6\x22\xe6\x78\x34\x45\xc0\x9c\xe1\x73\xbf\x5e\x6b\x34\x60\x34\x4b\x8b\x2c\x3e\x37\x79\x16\xea\x46\x12\xea\x39\xb7\x1c\x22\x6f\x41\x6a\x48\xd0\xe8\x40\xed\x9c\xfd\x3c\x2b\x57\xe7\xb4\xf0\x62\xd8\x5d\x40\x92\xda\x45\x5d\xd7\x5b\x34\x92\x48\x33\xa1\x41\x49\xd6\x18\xc2\x1c\x32\x4c\x16\x24\x06\xae\x07\x34\x84\xf4\xfd\x25\x16\x50\x77\xc5\x5b\xe0\x12\xd7\x67\x23\x41\x9c\xb4\xe3\x70\xa5\xfb\x34\x2a\x56\x11\x94\x52\x00\xd7\x43\xeb\xf5\x3d\xc0\xac\x39\xb4\xd3\x0d\xe9\x7f\x09\x7c\x31\xd5\x29\x20\xc9\xf2\x67\x10\x48\xb5\x0b\xc9\x29\xa6\x05\x9c\x1c\x0f\xe2\x8f\x37\x02\xaf\xa2\xc9\x65\x9a\xcd\xf2\xcb\xd1\x31\xcb\x63\x6f\x95\xd1\x32\x89\x97\xd4\x83\x58\x8a\xf4\xc3\xfb\x97\xfb\xf9\xf9\x32\xcf\xf8\xb9\xa1\xb2\xa9\x78\x36\xeb\x9e\x38\x38\x21\x81\x3c\x23\x66\xe2\xa6\xce\x2c\x66\xf1\x84\xaf\x4b\x9a\x40\xa1\xad\xdf\xcb\x3c\x0b\x44\x07\xb0\x23\x03\x97\xca\x01\x78\x7a\x21\x75\x57\x91\xcd\x42\xfe\xa3\xd3\x2e\x30\x8b\x15\x5b\xae\xd8\x0f\xe9\x82\x7a\x68\xe0\xf0\x6c\xca\x1f\xbb\x73\x94\x39\xc1\x50\x03\xe1\xa4\x34\x17\xb5\x73\x54\x1c\x65\x8e\xa0\x3d\xe4\x33\x56\x99\x06\x84\x0d\x9c\xad\x87\x5d\x50\x73\x40\x07\x4e\xef\xe1\x96\xc3\xa7\xcc\xb4\xdb\xde\x68\x16\x0e\xc4\xf2\x69\x7d\xab\xda\x9f\x64\x98\x04\x78\xe3\xab\xb9\x31\x2b\xff\x88\x26\x0e\xcb\x79\x07\xa1\xf9\x13\x61\x7d\x4b\x3b\xf1\x32\xd1\xbe\xca\xa2\xa6\x1c\xcb\x45\xac\x43\x76\x4f\x5d\x05\x2d\x98\xef\x35\x10\x16\x0b\x5b\x93\x45\x6a\x80\xd5\x34\x60\xb6\x92\xae\xbc\xb6\xc1\x4c\x4e\xbd\x9f\x42\x35\xfb\xd1\x44\x3f\xea\xf3\x1f\xf1\x01\xab\x59\xe9\x8e\xdd\xab\x17\x76\xc7\x41\xb5\xb0\x00\x5b\xbf\x1d\x5d\x0e\x26\x47\x5b\x47\x5b\x5b\x5a\x9a\xac\xbf\x5b\xca\xa9\x6a\xb1\xda\x50\xb4\xbe\x60\xce\xc8\x69\x89\xf2\xef\xd8\xbf\xb0\xcb\xda\xf5\x9a\x14\xe5\x23\x81\xe1\x4d\xd8\x02\x42\x98\x12\xbb\x80\xda\x21\x98\x22\xec\x1c\x1d\xf1\x4e\x98\xcf\x25\x5d\x5a\x51\x02\xb6\x8e\x8e\xb6\x4e\xb0\xb3\x05\x61\x02\xb0\xc2\x68\xdf\xc5\x8d\xc0\x8d\x5d\x68\xa4\xd9\x93\x76\xca\xa4\xbe\x4b\x69\xfb\x3e\x47\xf6\x0e\x15\xdb\x6f\x03\x4e\xaf\xd6\x9a\x38\x8e\x1e\xfc\xa6\x2b\x48\x1b\x9c\x7b\x37\xfc\x5e\x6b\x1f\x7f\xe5\xd2\x11\xe2\x46\xfa\x38\x25\x7e\x50\xa7\x89\x3c\x8d\xaa\xd4\xfc\xa7\xc5\xb8\x84\xad\x44\xc5\xf1\xcf\x71\xec\xba\x0e\xcd\xe0\x46\x28\x85\x2a\x8e\xa4\x14\xd4\xd3\x08\xe2\xba\x4c\x05\x36\x12\xcf\x66\x12\x48\x78\x37\xe2\xf3\x84\x5a\xb3\xec\xc5\x08\xab\xb9\x98\x4d\x6e\xf8\x86\x9f\x14\x38\xc9\x17\xab\xf3\x6c\x92\x82\x2a\x7e\x91\x9e\xa4\x59\xbc\x90\x1f\xeb\x8d\x8c\x78\x9a\xca\xde\xf8\x24\x52\x87\x7e\x55\xa1\xc9\xc6\xbe\x38\x3b\x59\x2e\x61\xd9\xae\xd3\x6c\xcb\x57\x35\x8f\xab\xdb\x3b\x59\x21\x84\x3d\x46\xf2\xd1\x39\x88\x3d\xb6\x8e\xb2\xad\x13\x84\xa6\x5e\x31\x30\x12\xcd\x8c\xe4\xc6\xef\x20\x40\x59\x0e\x57\x53\x92\x9b\xe0\xe3\x93\x74\xa0\x5f\x61\x9a\x61\x20\x30\xd1\x62\x5f\x70\x7c\x46\x18\x63\xad\xd7\x37\x45\x7c\x59\x4e\x6e\xaa\x2a\xf0\x9c\x19\x4d\x16\xc0\x5b\x1f\x09\x45\x8d\xb8\x4f\x48\x02\xad\xad\xd7\xc9\x88\x67\x1c\x95\xf4\x3c\x4d\xf2\x45\x0e\x06\x4f\x1d\x6b\x46\xb3\xd9\x5f\xb2\x62\xdb\x9b\x57\x8c\x66\xb3\xee\xf5\xe2\x1f\xfe\xbb\xab\xa5\x90\x5f\x95\xaf\x41\x9c\x18\x2b\xc3\x2e\xb8\xcc\xb1\x2c\x84\xba\x2e\x13\xf8\x22\x09\xcb\x46\xf0\xf0\xdb\x8f\x19\x43\x37\x74\x20\xd8\xd1\xe0\xa0\x8d\x56\x1e\xb2\x38\x32\x65\x27\x47\xa6\xce\x91\x7d\xbc\x8d\xa4\x79\xf0\x26\xf9\xed\x9f\x8e\x96\xa9\x24\x5a\x20\x88\x11\x08\x53\xeb\xc2\xd9\x01\x2d\xa3\x9d\xac\x11\x09\x3b\x0b\x69\x14\x74\x86\xdf\x7d\x2d\xa3\x5f\x1e\x53\x76\x49\x69\xd6\x1b\xf7\xe2\x6c\xd6\x7b\xf2\x08\xa4\x3e\xb0\x48\x33\xda\x6a\x49\xd6\xfa\xe4\x5b\xd9\x1c\xf9\x7e\x3c\xa5\xc3\x27\xdf\x4e\xbe\xff\x4e\xa5\xf8\xdb\xdb\x53\x3a\xfc\xfe\xbb\xc1\xf6\x93\xc9\xe3\xa7\x2a\xf5\xdb\xef\xa6\x74\xf8\xf8\xe9\xe0\xdb\xed\xc9\xe3\x47\x84\xd0\xe9\x93\xed\xc9\xe3\xef\xe0\xe1\xd1\x84\xef\x8d\x8d\x11\xae\x1f\x3d\xb5\x58\x53\xb9\x36\xff\x88\x21\x86\xab\x0e\x81\x55\xe6\x05\xa3\x33\xe0\x78\xc1\x3b\x3f\x83\xe4\x46\x6f\xc7\x57\x7c\x33\x0e\x7d\xb3\x3f\xf7\xd5\x96\xad\xac\xd8\xd3\xa3\x55\x26\xea\xf9\x41\xc8\x17\x1a\x1c\x5e\xab\x61\x2d\x81\x10\xbc\x4f\xbb\x8e\x78\x56\x0f\x76\xdf\xef\xda\x13\x74\x54\xeb\x1a\xce\x09\x6b\xa4\xa4\x76\x1e\xd1\x5b\xd0\x36\x6d\xa4\x69\x53\x80\xdd\x6c\xbd\xce\x21\x32\x69\xbc\x4b\xd2\xf5\xba\x18\x25\xf9\x39\x87\x59\xcf\xae\x7f\x54\x45\xde\xe5\x65\xca\x7b\x52\xbe\xcc\xe6\x0b\x9e\x00\x5d\xda\x21\x32\x2e\xbc\x98\x35\x4c\xd1\xd4\xab\x4f\xaa\x8f\xed\xa1\x4b\x29\x0b\x9a\x58\x85\x14\x5f\xaf\x91\xa5\x3e\x33\x2c\x6f\x04\xde\x6d\x18\xbd\x88\xe6\x14\xe3\x4c\x56\x05\x32\xc6\x7b\x0d\x06\x35\xb7\x02\xb2\xfb\xc4\x37\xb4\x04\x6b\xaf\xd2\x92\x91\xfc\xd6\x1d\x27\xa4\xce\xdf\xf9\xc2\xd2\xe4\xe9\x36\x1a\x41\xd7\x0f\x28\xc3\x31\x4f\xf0\x11\x2e\x21\xc7\x36\x1a\x7d\x5e\xa5\xc9\xd9\x41\x5e\x30\xb3\x4d\x93\xda\x5a\x6f\x44\xcd\x28\x18\xee\x15\x82\x3f\xae\x31\x8a\x97\x1c\x63\x01\xd5\x6d\xa1\x02\x90\x8d\x4a\x0a\xd5\x96\x53\xe0\x38\x7b\x19\x66\x42\xed\x7c\x01\x8f\x96\xed\x6d\xbd\xd9\xaf\x6e\x50\x32\x37\x8a\xd1\x09\x65\x7b\xc5\x89\x97\x61\x47\x8a\x1b\x1c\x88\x76\x6d\xa5\x4b\x1a\xda\xe1\xf3\x60\xa7\x73\x24\xb2\x74\x70\x18\x21\x9c\x74\x14\x78\x9f\xe7\xcc\x81\x71\x21\xbc\xe8\xaa\x50\x62\xf9\x2a\xcf\xaa\x96\xe7\x5c\xac\x1f\x6f\x75\x59\xfb\xc0\x31\x2f\x59\x84\xa3\xd7\x79\x5f\x1a\x25\xc9\xde\x77\x48\x84\xb3\x72\xb5\x5c\xc2\x46\xe9\xc9\x4c\x1c\xee\xe5\x28\x10\x7a\xd8\xc5\x28\xcb\x8b\xf3\x78\x91\x7e\x01\x32\x1e\xc7\x24\x06\x3e\x81\x54\xba\x80\x67\x2b\x4f\x87\xa2\x81\xdc\xd9\x89\xeb\x16\x9c\xf8\x38\x2e\xf3\xc5\x0a\xf4\xa3\x1b\x09\x14\x4d\x0b\x8b\x65\x80\x29\x47\x88\x15\x57\xf6\x13\x4c\x27\x49\x01\x7f\x15\x7c\x9f\xd2\xee\x07\x36\x9b\x5c\xce\x5f\x2d\x6f\x6c\x7d\x8f\x65\x83\x92\x9a\x22\xb5\x52\xea\x68\x7a\x9b\x07\x22\x8e\xa0\xae\xe0\xc3\xfb\x57\xbc\xb3\x7c\xfb\xa9\xce\x9a\x15\x26\x89\x9d\x62\x38\x2f\xb2\x2b\x6a\x19\xc9\xaa\xd6\xf7\xd7\xf1\x92\xd3\xb3\x92\xde\xe0\x4b\x4a\x96\x76\x38\x65\x09\x80\x6b\x60\x52\x19\x65\x36\xa0\xa2\x4a\x16\x15\x83\x6e\xaf\x14\x2a\x48\xd4\x05\xca\xb6\x93\x65\x69\xf3\x81\xcf\x3f\xbc\x5a\x06\xe4\xff\xc5\x43\x26\xcf\xbd\xf3\xa7\x77\x75\x7d\x8f\x80\x8d\x5e\x6d\x87\x41\x4a\x20\xc4\x39\x02\x73\x1b\x5a\x68\x9d\x2a\x2e\xbb\x23\xcf\x42\x53\xfb\x62\x83\xf2\xc5\x81\xe8\x12\x38\x5a\x59\x15\x8b\xde\x3c\xa5\x8b\x59\x2f\xcd\x7a\xaa\xba\x5e\x96\xb3\x5e\x7a\xbe\x5c\xd0\x73\x9a\x31\xa3\x9e\x91\x99\xb9\xa0\x58\x39\x46\xe0\x90\xd9\x9e\x22\xde\x57\x40\xe7\xed\x44\xd1\x71\x39\x6b\x3b\x25\x20\xbf\x70\x3b\x12\xf1\xec\xba\xe9\x4e\x29\x31\xdf\x8e\x0e\x53\x89\x6b\x40\x8b\xa5\x0e\x13\x9e\x17\x33\x5a\xd0\x19\xa0\x49\x59\x9e\x0d\xf3\x0b\x5a\x2c\xc4\x56\x1e\x19\x07\x29\x25\xc9\xb0\xc1\x3b\x84\x15\xcd\xa4\x81\x88\xe4\x83\x36\x26\x92\x0e\xfc\x0a\x2b\x36\x23\x40\xf7\xc4\xb3\xc7\x7f\x2e\xfc\xa4\x08\x0c\x3a\x81\x43\xae\xf7\x56\xb7\xb2\xfc\xa2\x9e\x49\xa2\x2a\x89\x75\x21\xab\x9d\x44\x1e\xd5\x93\x3f\xe9\xce\xbd\x56\x47\x15\x8e\x44\xb7\x90\xd9\x2a\x8a\x9d\x76\xd1\x3b\x94\xb3\xc7\xb8\x5b\x2e\x2d\xad\x4a\x5b\xd5\x49\xf6\xe5\x27\x38\x5d\x2a\xd1\xab\x03\x96\x26\x3c\x52\x30\xb0\x5d\x5b\x55\xa1\xc6\xd0\x15\x28\xf8\xfa\x91\x37\x4b\xfe\xb9\x81\x37\x6b\xfb\x53\xe3\x6e\x56\xd6\x1a\x76\x72\x1a\x17\x2f\x4b\xf9\xf9\x80\x2e\x63\x60\x69\x74\x5a\xa8\x51\x08\x0b\xbf\xc7\x3c\x6d\x75\xe1\x04\x8e\xf0\x18\xe2\x60\x78\x68\x6c\xb2\x5a\x8f\x5b\x28\x75\x0b\x5a\x1c\x27\x8b\xb8\x2c\xa9\x3c\x77\x1a\x2e\xf4\xea\xf5\x38\xb0\x95\x7f\x7c\xf1\xe6\xc5\xfb\xbd\xc3\x17\xcf\x3f\xbd\x7d\xff\xfc\xc5\x7b\xe2\xe3\x64\xf4\xf6\xfd\xcb\x1f\x5f\xbe\xd9\x7b\x25\x93\xb6\x79\xb6\xf7\x2f\xf6\x0e\x5f\x1c\x1c\x7e\x7a\xf5\xf6\xe3\x8b\xf7\x9f\x9e\xbd\xfd\xf0\xe6\x39\xe4\x7d\xf5\x62\xef\xe0\xf0\xd3\x87\x77\xef\x74\xea\x76\xad\xef\x34\x4e\x4e\x65\x8b\x2d\xdb\xe4\x0b\x11\xd2\x9f\xb0\xf5\x9a\x6f\x11\x15\x07\x23\xe3\x94\x7f\xa3\x5f\xd2\xc1\x58\x2b\x7d\x92\x4b\x88\xde\xda\x97\x81\x90\xb8\xc8\x62\xf5\x21\xe9\x52\xcd\x55\x95\x85\x94\x7c\xbe\xe3\x7a\x38\xcb\xf2\xcb\x4c\x00\xb2\x5e\x3e\xef\x09\x49\x51\x9a\x67\x23\x07\x49\x99\x4e\x63\x07\x05\xf9\x26\x15\x4a\x65\xef\x23\x33\x4f\xf9\xfb\xa4\x8e\x54\xc4\x4c\xb3\xe1\xd4\x56\x51\x0c\x05\x46\x3a\xf0\x89\x18\xb3\x0e\x84\xc0\xe2\x7a\x00\xf0\x6c\x92\x4e\x4d\x40\xda\x26\x9b\xec\x4b\x7f\x42\x6b\x38\x00\xae\xdf\xfc\xd6\x57\x59\x96\x5f\x8f\xda\xb6\x09\xd0\x01\x7b\xa4\x70\x79\x8a\x71\xf2\x47\xb0\x4b\xe3\x5f\x90\x45\x1f\xa6\x0d\xa0\x1b\x2f\x16\x6d\x1a\xe6\x87\xda\x61\x53\x73\x6c\xc3\x7f\x79\xd1\x65\x44\x4d\xa1\xfd\x51\x24\xf1\xcb\xd1\x1e\x2a\x6b\x8e\xce\x2e\x22\xef\x48\x3c\x46\xe0\x24\x4b\x49\x2a\xe5\xd6\x9a\xa7\xd9\x4c\x2c\x0c\xb0\xcd\x8c\xb8\x54\x8b\x34\x77\xc6\x92\xc5\x10\x46\xd2\x1c\x32\x8c\x70\x6c\x15\x57\x3c\xa4\x0c\x77\xef\x56\xec\xd8\x9d\x75\xcc\xeb\xbe\xec\x99\x45\xf4\xbd\x95\x9f\xf4\x7c\xe1\xbc\x7d\x76\xe1\xba\x8f\x77\xc9\x58\x9b\x5f\x76\xb6\x1b\xc6\x60\x02\x6e\xac\xfa\x15\x22\xa0\x84\xdf\x09\xa9\xe3\x89\x41\xe9\xba\x0d\xcc\x91\x90\x24\x40\xa9\x20\x73\x25\xa3\x4b\x4d\x6d\x89\x9d\xda\xfe\x54\x94\x4c\xd2\x58\x02\x3b\x9f\x1a\xb1\xa4\x8b\xe2\x92\x35\x17\xac\xc4\x0e\x4f\xfe\xb1\xb3\x44\x85\xf0\xc6\xc1\x0e\x06\x71\x24\xd4\x85\xb5\x43\x2a\xd2\xc4\x77\x3b\x07\xc8\xec\x34\x89\x17\x93\xc5\xff\x87\x46\xad\x14\xe0\x53\x4e\xf9\xb7\x24\xc6\x24\xc1\x0b\xcb\xd1\x5b\xcd\xb7\x9e\x7d\xaf\x23\x3b\x9b\x16\x03\xd7\x4b\xb7\x8e\x4b\xfb\x28\x63\x4e\x2a\x68\xa5\xfe\x06\x90\x95\xf4\x42\x5d\xc2\x66\x3e\xe3\x0c\x35\x88\x3c\x50\x48\xcd\xea\xac\x50\xfd\xcd\xa8\xfd\x08\xc7\x6d\x10\x7d\xbc\x93\x06\x34\x51\x49\x98\x89\xd8\xde\xc8\x13\xb2\x88\x10\xa3\xce\x63\x1c\x6a\xe1\xc5\xad\x38\xe8\x85\x1d\x93\x5c\x4e\xeb\xc2\x9e\x56\x70\x43\xd2\x26\x6f\xa9\x02\xaa\x9a\x22\x05\x1a\x36\xe6\xb9\xbb\x48\x5c\xda\x41\xc3\xf2\x12\x41\x66\xd3\xa3\x3a\x97\x98\xcf\x26\x61\x4a\xcd\x0d\xdc\x10\x36\x66\x5d\xd5\x67\x35\x14\x2b\x13\xa4\x2a\xec\x82\x05\xc5\x59\x8b\x9c\xcd\xda\xc4\x77\x57\xb5\x5f\x43\x79\xdb\x3d\x50\x44\x78\x60\xe0\x17\x35\x28\xa1\x55\xbf\x74\x64\x80\x97\xe0\x00\xa6\x8d\xe2\x87\x11\x9e\xc3\xa7\x16\x0a\x1c\x46\x78\x46\xc6\xf8\x94\x24\x6a\xcb\xcc\x76\x4e\x83\x99\x0a\x60\x7f\x4c\x92\x70\x16\xe1\x73\xa0\x22\x57\xc1\x79\x83\x44\x3f\x6e\x5c\xd8\xe7\x2d\x6a\xfd\xb8\x75\x65\x1f\x6b\x41\x89\x77\xae\x6e\xa6\x58\x6f\xed\x63\x7d\x1b\x9d\xd7\xc1\xd6\x71\xfd\x72\x3f\x6f\x02\xb0\xe3\xe6\xf5\x7e\x0c\xf7\x36\xb4\x02\xa4\x7e\x6e\xb5\x01\x37\x3a\xc2\x73\x01\xf0\xce\x11\xc2\x4b\xf5\xa8\x60\x4b\xe9\x75\xcd\xd7\xad\x37\x17\xc2\x59\x55\x07\x1e\x86\x08\xeb\xa6\x32\x16\x36\x95\xa1\xf8\x6e\x9b\xd4\x79\xbb\x0f\xba\x5c\x7a\x8e\x9e\x2c\xee\x8b\x9a\x6b\xdf\x28\xe0\x44\x24\xc1\x0b\xbc\x24\x3e\x9e\x93\xb1\xdc\x0b\x63\x7c\x4c\xc6\xf8\x9c\x8c\xf1\x6b\xe3\x15\xe3\x84\x8c\xf1\x05\xb9\xa9\xf0\x35\xff\xb3\xc7\x77\xce\x25\x09\xa3\xe0\x64\xe7\x35\xb8\xe9\x13\xa4\x82\x26\x21\x4e\x10\x5a\x0e\x06\xf8\x64\x30\xe0\x15\x1b\xb3\x16\xdc\xcc\x75\x32\x18\x08\x73\x16\xde\x2b\x4f\x78\xec\x5c\xa1\xc6\x46\x5b\xe2\x84\x9c\x04\xc9\xce\x6b\xd7\x15\xba\x2f\x1b\xc8\x1a\x8f\xe2\x04\x05\xc9\x60\x00\x18\x43\x4a\x2e\x42\x30\xde\x81\x39\x3a\xc1\x09\x8a\xd0\x89\x91\x07\x9a\x66\x53\x31\x90\x24\x40\xb1\x14\x8d\x78\x14\x9f\xe0\x6b\x84\x17\xe4\x5a\x28\x46\xe1\x13\x72\x3d\x2a\x68\xc9\x70\xaa\xfd\x2d\xa6\x73\x6f\x1b\x04\xe1\x52\x30\xd3\x42\xcb\x7f\xc8\x57\xd9\xac\x17\x4b\xf9\x1a\xee\x1d\xaf\x58\x2f\xcb\x7b\xfc\x82\x05\x5e\x83\xcd\xcd\x78\xf4\x15\x35\x41\x61\x90\xfb\xa9\x2a\x75\x4d\x17\x61\x1e\x91\xb4\xca\x5a\x27\x71\x3e\x48\xc3\xb1\x80\x03\xcd\x23\xa9\x9a\xdd\xf5\x21\x8e\xa4\x3c\x94\xc7\x83\x34\xf4\x23\x7c\x3c\x20\xf0\x9b\xd5\xcf\xe3\x6c\x90\x86\xdb\x1c\x78\xd4\xd3\x1b\xd9\x06\xc4\xb7\x52\x64\x4f\x4e\x07\x69\xf8\x28\xc2\xa7\xa4\xf9\xc5\x74\xe4\x31\x74\x04\xce\xed\xf9\x20\x0d\x1f\x47\xf8\x9c\x77\xe3\x71\x84\x10\xbe\x54\x3a\xae\xd8\x98\x8d\x6a\x6f\x21\xb5\xd6\x5d\x77\x4f\xeb\xc3\x96\xde\x25\xbe\x55\xd6\xf0\x9c\xd6\x65\x0d\x1d\x60\xf4\x12\x97\xde\xde\x1d\x20\x60\x03\x59\x4e\xf6\xaa\x36\x5e\xd1\x4d\x7f\x4a\xc7\x1b\xc0\x77\x0b\xb3\x68\x87\x8c\x51\xa7\x94\x8f\x8f\x50\x73\xb0\x4e\xe0\x1e\x2e\x7a\xec\x34\xe6\x54\x60\x8f\x7e\x5e\xc5\x8b\x1e\xcb\x7b\x3e\xee\x9d\xe4\xac\xe7\x0c\x84\xf1\x09\x54\x5a\x44\x3b\x1b\xea\x14\xeb\x70\x77\xad\x63\x53\x6b\x61\x39\xad\x1a\x95\x34\x2e\x84\xe8\x0c\xc6\x50\x35\x50\x2c\xb8\xeb\x44\x1b\x07\xcb\x38\xab\xeb\x97\x6b\x3b\x90\x71\x40\x77\x36\x10\xcf\x06\xaf\x69\xb8\x7a\x6b\xe5\x0c\x29\xd0\x02\x74\xe0\xdf\x51\x57\xdd\xc5\x5a\x47\x3d\x03\x1f\x6a\x6a\x48\xf1\x08\xb1\x0f\x12\x4f\x41\x37\x22\x22\x62\x03\xa7\x6d\x9f\xb7\xa1\x1f\x24\x79\xc6\xd2\x6c\x45\xab\xaa\xbb\x8c\xbf\x35\xae\xea\x93\x97\x37\xb6\x5a\x37\x59\xd9\xe0\x46\x76\x50\x99\x4d\x9a\xba\x83\x70\x44\x15\xce\x3a\xa8\x3d\x45\xc1\xb7\xa6\xa8\x45\x20\xb4\x09\x81\x7b\x9d\x3c\x6c\xf7\xe5\x38\x8d\x4b\x67\x03\x83\x07\x09\x0b\x57\x4d\x0f\x6e\xe4\xb5\x84\x19\x2c\x5d\xde\x5a\x3a\xd6\x5c\x3a\x41\xe7\xea\x0e\xe4\x9a\xf0\x96\xa2\x27\x81\xdd\x93\xd4\x75\xbd\x94\xb4\x78\x21\xa9\x60\x53\xb7\x90\xb9\x26\xba\x9f\x76\x31\x41\x04\x4b\x3c\xae\x35\xce\x21\x9f\x6a\xba\xe6\xc5\x80\xc4\xae\xeb\x29\x5a\x5c\xf3\x28\x62\x84\xb0\x62\x1e\xa4\xb8\x4e\xbf\xe5\x4d\x6a\xbc\x9b\x7c\xcb\xdb\x54\xba\xc8\x08\x6c\x92\xb8\x52\xfe\xd9\x54\x33\xc0\x3b\x85\x96\xe0\x49\x56\x07\xcf\x9a\xb1\xd2\xd8\xc2\xa7\xb1\x42\xbe\xcb\xb7\xf3\xbd\xc5\x42\xa1\xcc\x9b\xf4\x66\x5b\x0a\xbf\x1d\xa9\xea\xc2\x68\xac\x49\x99\x7e\xa1\x1e\x52\xc8\x42\xa3\xc8\x46\xa5\x58\xe9\x83\x46\xe8\xc3\xda\x3d\x2f\x6d\xe5\xef\x1f\x5a\xdc\xd3\x74\xee\x75\x35\x84\xac\x6a\x03\x1b\xc8\x34\x59\x30\xd4\xec\xe7\x9a\x7e\x4b\xad\x36\xbe\x97\x15\x63\xf2\x56\x82\x33\xbd\x8d\xe0\x4c\xb5\xec\xb9\x5d\x30\x27\xc5\x68\x55\x2c\xde\x71\xcc\xb1\x59\x10\x21\xe5\x2a\x21\x35\x8a\x7e\xbf\x81\x5a\x1c\xe8\x3a\x62\x47\x60\x31\x42\x5e\x4b\x48\x3e\x2a\x93\x53\xca\xf1\xef\x36\x79\x1b\xa3\xdb\x86\xd9\x4d\xf2\xc6\x08\x4e\xb2\xd7\xcf\x47\xcb\x98\x9d\xae\xd7\xce\x16\xb4\xc2\x5f\x50\x57\x23\xce\x96\x33\x48\xff\x40\x43\xa2\x5c\x54\xd9\x9e\xe2\x60\x01\x9b\x28\xd9\x37\xce\x37\x83\x74\xf0\x8d\xd3\x4b\xa5\x98\x8b\xb7\x42\x7b\x9a\x6a\x1e\x7d\xd3\xd8\x44\x27\x4d\xc0\x77\x37\x67\x50\x31\xff\x60\xe8\x6c\xc3\xee\x61\x08\x69\x8e\xdd\x4d\xf7\x89\xb4\x38\x30\x70\x2e\xe5\x6e\xd4\x2c\xdb\x3a\x73\xb1\xe3\xd6\xb8\x9b\xdb\x88\x2a\x9c\xff\xd7\x58\x84\x5f\x77\x51\xe4\xfa\xa2\x48\x37\x71\x95\x72\xd8\x5d\xa9\x42\x7d\x89\x36\x1a\xa9\xcd\xab\x6e\x36\xbd\x27\x4f\x2c\xfd\x2a\x9e\x58\x7a\x2b\x4f\xac\xfa\xaa\x15\xae\x30\x1b\x3d\x8b\xcb\x34\x69\xb3\xc7\x16\x9c\xd8\xbd\x0f\x7b\x6c\xd9\x60\x8f\x49\xdf\x10\x24\xa9\x7d\xb9\x93\xc8\x5d\xde\x8b\xc8\x35\xe8\x5f\x18\x61\x9b\xb3\xa5\x64\xc9\xda\x1b\xe4\x60\x60\x9c\x7b\x82\x45\x70\x3d\x5f\xc8\x22\xcd\xcc\x53\x47\xde\xb6\xd0\xa6\x82\x24\xb8\xbb\x90\x6d\xac\x4d\x39\x7d\xbd\xfc\x5f\x44\xc7\x34\x6a\xad\xe5\x28\xb2\xe7\xb8\xd3\xf3\x4f\x43\x92\x32\xb4\xf0\x1d\x21\xb7\xae\x7f\xd7\x38\xc6\x7a\xdd\x92\xb1\xdc\x56\x56\xe4\xa8\xc0\xd8\xb4\x31\xa1\xc6\x22\x3b\x9d\xa6\x66\x6e\x3b\xe6\x4d\x32\x9c\x1b\x5d\x1a\x7a\xe9\xed\x7d\x1e\xfa\xfa\xbc\xb5\x7a\x74\x67\xe1\x36\x0a\x38\xbd\xa5\x84\x42\xdb\x27\x63\x84\x39\xb8\x99\xd0\x11\xff\xa9\xd0\xe4\x2b\xb1\xa1\xe5\x1f\xc1\x86\x7a\x8d\x73\x40\x2f\x68\x71\xbd\xc1\xa8\x47\xcf\xf3\x86\xda\xa5\x25\xe1\xf2\xfe\xb8\xcd\x6d\x47\xcd\x3e\x56\x2a\xec\x79\x73\x17\x34\x8f\x95\x69\x48\xf8\xbb\x12\xf1\x11\x15\x3f\xf4\x7e\xd7\x2e\xbd\xeb\xda\x5d\x7e\xcd\xb5\x6b\x5c\x3a\xdc\x0e\x74\x6a\x74\xa2\x05\x38\xf8\x08\xc0\xea\x27\x33\x63\x6d\x5d\xd2\x5d\xb7\x3a\x32\x5e\xbb\x75\xc1\xae\xde\x4a\xfc\x30\xaf\xdd\x45\x39\xa8\xbb\x0c\xbc\xec\xde\xa7\x24\x97\xd2\xb0\x3b\xcb\x10\x8e\x58\xf1\xda\xa7\xb7\x64\xb4\xce\x44\x75\xfb\xdd\xd4\xd8\xf7\x77\x28\x0d\x6c\x60\xbd\x68\x6d\xe0\x2e\x16\x76\x70\xdf\x4d\x6a\x82\xb7\xb7\xf6\x29\x98\x0d\x98\xf5\x6b\x13\xb9\x31\x19\x07\xf1\x8e\x71\x4a\xae\x76\x44\x42\xd2\x30\x8e\xf0\xa2\x56\xdc\xa2\x0d\x13\x2d\x27\x5f\x74\x91\x88\x79\xf3\x80\x00\x9a\xbe\xe8\x94\x96\x37\xe8\xce\xd9\xcc\x03\x5d\xcb\x6e\x44\x56\x7b\x77\x86\x63\x94\x28\x6e\xf8\xaa\xd6\x4f\x4d\x41\x8a\xef\x35\xdd\x44\x68\x60\x85\xf0\xaa\x46\x6d\xaa\xea\x57\x92\x6e\x5d\x6a\x2c\x72\xd1\x90\xe6\x27\xf5\x5d\x35\xb0\xc9\xf0\x4d\x5b\xb5\x79\x1d\x26\xcd\x0d\x77\x67\x2d\x84\x90\x46\xc3\xd3\x5b\x4a\xd8\x90\xbd\x86\x03\x27\xb7\xea\x12\x24\x9d\xba\x04\x2b\xa5\x4d\xd7\xc1\x6b\x02\x9c\x63\xd9\xc5\xb2\x5c\x36\x58\x96\x1b\xb6\xb9\xaa\xa1\x52\x9a\x41\x1d\x5b\xf4\x9e\xfc\x4d\x5d\xc3\xd7\x49\x37\x38\x4a\x09\xc0\x8c\xce\xda\x48\xe5\xb2\x69\x20\xc1\x36\xa9\xe6\xb0\x4e\xd5\x1c\x26\xf1\x1b\x1b\x1e\x48\x67\xe9\xca\x35\x57\xdd\xfc\x61\xe8\x4b\xdd\x04\xcb\x2f\x85\x76\x8b\x8e\xb5\x71\x0f\x04\x28\x9b\x2f\xf2\xbc\xf0\xc0\x95\xe9\xd6\x36\x1a\x64\x78\x41\x62\x2f\xc7\x69\x98\x44\x70\x05\xc9\xfb\x86\xb7\xb2\x98\x26\x93\xc5\xee\x78\x5a\x0c\x93\x5d\x7f\x4a\xbd\xc4\xaa\x72\x52\x72\xac\xa1\xd5\xfb\x69\xa1\xa1\xc2\xb4\x98\x0c\xfd\x49\x32\x49\x86\x19\x94\xce\x70\x72\x67\xe9\x64\x92\xed\x8c\xa7\x43\x7f\x92\x55\xde\xd0\xd7\x2e\x0f\xb1\x1c\xff\x7a\xdd\x3d\x93\x42\xc0\xa1\x09\x3f\xe9\x87\x38\x48\x87\xfe\x2e\x19\x0b\xbb\xfc\xc2\xcb\xc2\x34\xc2\x59\x98\x0e\x7d\x31\x50\x34\x1c\xa6\x1a\x2d\x6b\x39\xf3\xb3\xdc\xdc\xb4\xe3\x3c\x41\x14\x24\xca\x01\x25\xff\x43\x0a\xa3\x35\x5b\x40\xee\x1c\xa7\xc2\x79\xfd\x4e\xaa\x38\x05\xf9\xd0\x0f\x78\x55\x1c\xe6\xe0\x25\x49\x31\x2c\x46\x91\xaf\xb2\x99\xb7\x1a\x88\x97\x38\x9b\xe5\xe7\x1e\x7a\xe8\x2d\x87\x2b\xc4\xf1\x48\x64\xf9\x53\xa6\xc2\xc9\x76\x1e\x24\x3b\x29\x08\x75\x98\x47\xf9\x9a\x95\x68\x87\x8f\x91\xd7\x1d\x0f\x88\x8f\x13\x14\x88\x67\x78\x14\x9a\x10\xf1\xc0\x0f\x54\xcf\x16\x1c\xb4\x88\x97\xc5\xc0\xc7\xa9\xd0\x88\x5a\xe1\x65\xc5\x8c\x8a\x7f\x53\xd3\x12\xb2\xd7\x9c\xbd\xdd\x62\xc9\xf2\x74\x8c\x3a\xec\x06\xc1\xd4\xe0\xd1\x53\xf0\x6f\xe7\x1d\x15\xd3\xa3\x0c\x6d\xe1\x98\x38\x0f\x1e\x3c\x50\x56\xb1\x6f\xf2\x19\x7d\xf0\xe0\x81\x63\x0c\x0c\x4a\x3b\x50\x80\xb0\x9a\x3a\x4d\x17\xb3\x82\x66\x26\xcc\x90\x8d\x49\x95\x44\xb9\x58\x59\x28\xcd\x67\x42\xa4\x2a\x93\x34\xdd\x48\x8c\xee\x33\x21\x4c\x6a\x39\xb5\xd4\xa8\x09\xc9\xc4\xa7\xac\xa1\x20\x4d\x48\x2e\x3e\xe4\xf0\x21\x8c\x21\x00\xac\xe0\x22\x15\xc6\xde\xd6\x2b\x50\x25\x0c\x36\x85\x0a\xfb\xc7\x94\x9d\x76\xeb\x10\x58\x33\x47\x2f\x7b\xfc\x6a\x55\x9e\xfd\x52\x84\x13\x32\xc6\x8b\x0e\x2c\x98\x7a\x68\xe0\x81\x0d\xbd\xe3\x58\x66\x43\xd4\xe4\x48\x76\x62\x75\x0e\xe3\x30\x19\x0c\x74\x50\xaa\x0a\xaf\x88\x8f\x97\x64\x8c\xe7\xe2\x36\xd4\x7e\x66\x2c\x2d\xc0\x96\xd2\xb3\x64\xb8\xce\x05\x7f\xcf\x5b\xed\x34\x88\x2a\xa4\xa8\x3c\x2f\x23\x71\x98\x44\xd0\x31\xe9\x28\x10\xbc\x04\x36\x6f\x99\xa5\x86\x34\x3c\x3b\xc9\x54\xde\xae\x9c\x78\xd9\x61\x24\x34\xf3\xe6\x98\x21\xcc\x47\xe5\xcd\x09\x45\x15\x4f\x58\x78\x08\xe1\xd5\x60\xc0\xc7\x57\x01\x0c\x68\xf5\x34\x40\x85\xc0\x16\x64\x56\x08\xe4\xb0\xd3\xaa\x5f\x61\xb8\x6a\x30\x81\x28\x95\xdd\x32\x26\x84\xf0\x1d\x63\xe9\x1c\x49\x35\x27\x54\xe9\xd3\x61\xb3\x6c\xae\xeb\xcd\x5d\x57\x0f\x4a\x34\x1f\xcb\x90\x97\x5e\xa2\x1c\xeb\x39\xe0\xda\x46\xd3\xf6\x9d\x1e\xe3\x24\xb7\xa7\x83\xe8\x50\xbc\xfc\xd4\x75\xe5\x12\x67\xae\xeb\x51\x92\x8b\xda\x33\x4c\xa1\xe9\x96\xcb\x0f\x8a\x53\x04\x16\x11\x45\xcd\xe5\x99\xe4\xff\x2a\x3d\xc2\xf5\xda\xd2\x3e\x53\x2c\x24\x18\x07\xb3\x5c\xe4\xa7\x24\x9b\x9a\xf6\x54\x3e\x6d\x13\xaa\x26\x9e\x1f\x0e\xaf\xa1\xd5\xd8\x52\x63\x4c\x31\xc3\x52\x47\x91\x63\xe2\xb8\xbc\xc5\x60\x2d\x9d\x7b\x4d\x57\x23\x88\x6e\x70\xb9\xa7\x4e\x35\x45\x6a\xa5\xb4\xd7\xc9\x3e\x0d\xe3\x08\x6c\x69\xc1\x3e\xc2\x72\x47\xde\x2d\x55\x7c\x71\xb5\xa4\x09\xa3\xb3\x5e\xdc\x33\x50\x0f\xf7\x44\x71\xdc\xcb\x8b\x5e\x9c\xf5\xc0\x94\xab\x97\xcf\xad\x2c\x25\xc8\xb9\x45\xb6\x72\xd4\xfb\x51\x48\x1c\x51\xa0\xb0\x24\x05\x18\xb5\x77\x40\x8b\x60\xae\x4f\xc4\xb2\xa0\x4b\x9a\xdd\x3d\x19\x86\x16\xa4\x1d\x5e\x71\xa0\x51\x59\x15\x04\x50\xfc\xbf\x33\x25\xf5\xf9\x58\x65\xe5\x69\x3a\x67\xb7\x4e\xc9\x65\xbc\x38\xeb\xa6\x83\x71\x46\xc6\x58\x92\xf2\xba\x4a\x45\x45\xed\x14\x40\x49\x29\x6e\xb4\xfa\x1e\x66\x11\x0a\xe3\x68\x2a\x7d\xf2\x40\x8c\x7e\x11\xe4\x86\x7a\x4c\xcb\xa6\xac\x2b\x47\x70\x4b\xf4\xbd\xa5\x59\x39\xe6\xbe\x12\x48\xb5\xbe\x8a\x2a\x54\xef\x3f\x3f\x3d\x5d\xda\x78\x9b\x7a\x9e\xce\xbd\x62\x77\x2c\x86\x69\x79\x6f\x2c\x38\x92\xc2\x51\x0b\x8b\x2d\x68\x0f\x0a\x6b\xdf\x93\xc1\xe6\x2c\xb5\x5b\x9a\x6d\x9e\x73\x29\x39\x79\x0f\x5e\x5c\xbb\xf8\x76\xf5\xba\xbb\xc6\x31\xf4\x8d\xd7\x4c\x3e\xe1\x59\xad\x52\xa8\xab\xc3\xd3\x89\xf4\x69\x72\x57\xcd\x44\xd7\x26\x2a\xea\x38\x65\x8e\x53\xcb\x82\x70\x7b\x94\x4d\xd0\xd9\x45\xe3\xd7\x51\x98\x30\x1f\xb1\xfc\x80\x32\xe9\x39\x84\xa2\x88\xb0\xf6\x6e\x3d\xa8\xa3\x3d\x1b\x78\x38\x38\xeb\x5e\x7f\xb6\x93\x01\x1b\xa7\x31\x11\x11\x9c\xdb\x66\x62\x47\x7b\x2a\x4c\x94\xf6\x34\x7d\x46\xaf\x4b\xaf\x63\x30\x5a\x39\x13\x67\xa4\x68\xb6\x4e\xbd\x5c\xa0\x48\x7a\xb0\x45\x68\x62\xb0\xd5\x27\x85\x7f\x89\x1a\xbb\x5e\x39\xb4\x69\xbb\xb7\x68\x18\xc7\xb7\x5d\xd0\x29\x6b\x78\xda\x5d\xe3\x26\x74\x4d\xf3\xb2\x93\x7c\x46\x27\x8e\x83\x5b\x9e\x01\x84\xce\x56\x21\xe3\xf5\xfa\x38\x15\x86\x35\xb1\xf8\x91\x66\x36\x49\x1d\xf3\xea\xe8\x22\xc5\xe0\xe4\x90\x37\x33\x20\x54\xe2\x97\xa4\xd0\xea\x82\x3a\x41\xd8\x79\xe9\x57\xd1\x91\xa9\x97\x12\x3b\x77\x4c\x4c\xd6\x92\x98\x7c\xae\x9b\xc0\x1b\x07\x29\xeb\x75\xd6\xe5\x12\x41\x55\xd2\xf4\x86\x50\xd4\x20\x95\xaa\xb0\xed\x19\xa1\xee\x42\x83\xe9\x7c\x00\xcf\x0a\x09\xcc\x40\x61\x40\xb6\x13\xcb\x9e\x82\xc1\xad\x04\x7e\x89\xec\x23\x9f\xd2\x31\x9a\xe4\xa0\x10\x65\x77\xf6\x9e\xad\x42\x4b\xb0\x02\x7c\x6d\x0c\x75\xb5\x20\x63\xbc\x32\x31\xb6\x16\x3b\xab\x60\x31\x18\x20\x7f\xac\xd5\xf3\xf6\xf3\x19\xdd\x63\xde\x02\x4d\x3d\x51\xf7\x60\x80\x55\xb5\x1c\x47\x1f\xf8\x84\x90\x15\x9f\x77\x53\x3d\xef\xe7\xff\xde\x9c\x22\xfd\x61\x30\xd0\xb6\xab\x1d\x27\xb9\x21\x32\xc9\xba\x90\x3d\x61\xfd\x2a\x36\xbd\xd8\x94\x22\x10\x68\x65\x74\xce\xf9\x7d\x4c\xca\x3f\xec\xb2\xb7\x81\x8b\x14\x21\x8d\x24\x31\x1f\xf0\x67\x9e\xb9\xd3\x59\x58\x92\x67\x65\xbe\xa0\xae\x2b\x1f\x46\x97\x71\x91\xd5\xdf\xb4\x17\xd2\x82\xdc\x54\x41\xa7\xeb\xd1\xbf\xc0\xcf\x30\xce\x09\xf8\x97\xf5\xbf\x7b\x82\xc0\xf6\xd9\x72\x26\x5a\x18\x67\xa2\x85\x15\xf8\x22\xed\x14\x2a\x74\xc9\x11\x40\x80\x34\x32\x56\x75\xc4\x7e\x59\xaf\xfb\x3e\x30\xab\x8c\x0d\x1e\x4c\x17\x68\x6a\x3a\x69\xd6\x2b\x5c\xd7\x2b\x46\x2a\xf4\x0b\x38\x0c\xe8\x16\x4e\x52\x5c\x70\x40\x8e\x0b\x54\x49\x33\xa9\xbb\x5d\x9e\x4a\xe7\xb8\x79\xa1\x5d\x9e\xd2\xb2\x8c\x4f\x68\xdd\x09\x68\xdd\xd9\xa9\xf6\xf6\xa5\x02\xcf\x8b\x82\xb1\x8a\xaf\x57\x69\xec\x05\xa8\xe1\x96\x4b\xd4\xb8\x13\xf2\xdb\xd0\x34\x29\xcb\x0a\xc7\xb0\xfc\x4d\xd4\x42\x07\xc5\x02\xcf\x50\x37\x15\x20\x35\xe0\x96\x58\x9a\x1e\x2e\xe2\x92\x09\x3f\xc5\xf2\x2a\x34\x09\x75\x37\xc6\xe0\x28\x5b\xfa\x48\xbe\x35\x23\xb2\xe2\xef\x1b\x17\xcb\x76\x3c\xa7\xda\xcc\x69\x95\xce\x4c\x8d\xa1\x2e\x1c\x68\xb8\x8b\x52\xa5\x36\xbb\xf6\x76\x64\x1d\x42\xdb\x98\xcf\xa4\x70\x4f\x43\x28\xf6\x32\x12\xde\x9c\xd1\xeb\x89\x93\x28\x8f\x04\xb7\x28\x5c\xf3\x69\xad\x22\xe4\xba\xa9\x67\x07\xac\xc8\x10\x2e\x20\x0d\x17\xa8\xe9\x5a\x26\xee\x76\xf6\xfb\x57\x78\xf6\xde\xb8\x39\x01\x84\x74\x2d\x34\x1f\x03\x08\xfa\xf5\x8c\xc8\x34\x7a\x05\xae\x3d\xc0\xa3\xa7\xeb\x8a\xdf\x9a\xe7\xcc\x8c\xc8\xc4\xa5\x64\x01\x3f\xbb\xe6\x44\xac\xc5\x6a\x12\x30\xb9\xc6\x62\x52\x80\xb9\x16\x3f\x93\x01\xd2\x15\x16\x11\x61\x61\xa1\xad\x77\xe8\x1d\x68\x8d\xbd\x0a\xbc\x1f\x53\xfd\x34\xa2\x40\x44\xe9\x71\xe0\x1b\xb1\x25\xa5\xb3\x5f\x78\xc6\x20\xa8\x10\x29\xf0\x88\x2f\xf3\x62\x26\xde\xf9\x53\x85\xd4\x36\xb2\x4b\x4d\xad\xe7\x81\x33\xe9\x29\xc7\x82\xf4\x8a\x4d\xf4\x53\xcb\x97\x50\xf1\x9f\x5b\xf0\x85\x71\xe5\xce\x1f\xfd\xef\x9e\x82\xb0\x7d\xa1\x1c\xb8\xc7\xe2\xd1\x07\x5f\xee\x0b\xe9\x93\x1d\x27\x22\xf5\x91\xed\xfa\x79\xf1\x55\xae\x9f\x57\x9b\xb6\x9a\x84\x81\xe0\x7b\x4d\xc1\x3f\x00\x77\x35\x57\xdc\x72\x53\xac\x8a\x82\xe3\xff\x3a\x93\x44\x73\x97\x71\x42\x8d\x07\x36\xed\x46\x4b\x7b\xa3\x11\xca\x28\x87\xf9\x19\xcd\xd2\x2f\xc6\x33\x27\xb8\x7c\x95\x0c\xcb\x1b\xe8\xc0\x84\x62\xf0\xe7\xd5\x74\x57\xe5\x57\xd5\x6d\xde\xa5\x1b\xf5\xb7\x02\x50\x33\xfd\xc5\x1b\x63\xe3\xa0\xdd\x33\x23\x07\x61\x48\x23\x52\x89\xa5\xc3\x12\xf4\xeb\xf5\x8c\x68\x36\x7b\x3b\x17\x4e\xe3\x02\x24\xcd\x89\x95\x5f\x5d\x93\x2b\xa3\x57\x0c\x7a\xe5\x21\x14\x8e\x23\x61\x5b\xec\xc0\x74\x39\x13\x6b\xea\x06\x84\x86\x7e\x64\x19\x12\x3b\x81\xfc\x3e\x2f\x28\x3d\x50\xf3\xc9\x29\x16\x2b\x4f\x25\xf3\x00\xf3\xa2\xf6\x45\x39\xfb\x55\xd4\x37\xbc\x35\xf2\xc4\x6c\xc8\x8f\x8d\xcc\x13\xb3\x62\xb5\xa0\x8d\x2c\x37\xaa\x81\xf3\x25\xbb\x7e\x5f\xfb\x6e\x0c\x97\xf9\x8d\xc8\x4e\x29\xa7\x16\x2a\xd5\x1d\xe9\x4d\x0f\xb0\xcb\xb6\x63\x78\x13\xd6\x41\x7b\x1c\x0c\xe4\x4a\xa4\xcc\x63\x98\x86\xdb\x11\xa6\xe1\xa3\xc8\x30\x05\x79\xa5\xd2\xd9\x05\x0d\x1f\x47\x6a\x5b\xd0\xf0\xdb\x48\xe9\xbe\xf1\x19\x94\x86\x21\xdb\x78\xb8\x8d\xa4\xef\xc6\xf2\xe1\x03\xe9\xb7\x31\x43\x88\x09\x28\xc9\x37\xaa\xf0\xf8\xb6\xa0\x73\xc6\xef\x72\xf1\x56\x00\x19\xef\x38\x86\xaf\x57\x80\xd7\x73\xf0\x57\xf7\x9b\x77\x54\x3e\x44\x5e\xf8\x5b\xf4\x30\xfc\xed\xa8\x8c\x10\xbc\x3f\xd8\xe2\x70\x03\x6a\x2d\x78\xb7\xed\x7a\x8b\xd0\x8f\xea\x55\x17\xe1\xa3\x08\xf0\x4d\x3d\xa3\x1b\x26\x26\xb9\xc7\xc4\xd0\x05\x05\xed\x2d\x33\x1a\xe9\x1e\x4c\x1f\x44\x7d\x5c\xc1\xdd\x28\x5f\xa4\x0d\x34\x76\xdf\xc7\xd2\x93\x4a\xc1\x9f\x73\xf1\x2c\xcd\x84\xc3\x08\x97\x84\x06\x65\x20\xf8\xa2\xa4\x0c\xc7\x11\x8e\xc5\x05\x5f\x22\xec\x78\xca\xa3\x40\x08\x0f\x48\x44\x3b\x2e\x91\xb2\xab\x91\x19\xa6\x0e\x72\x26\x4e\xe4\x20\x6d\x3a\x34\xb6\x0d\x64\x6e\xb4\xc5\x91\x70\xfa\x5c\xd4\x02\x1c\xc3\x70\x66\x34\x59\x78\xb1\xdc\x81\x15\xcf\x7f\xe3\xd8\x21\x7e\x4c\x4e\xd8\xcb\xb1\xd0\x5f\xad\x64\x9d\x8d\xa3\x79\x1c\x27\x67\x5e\x3c\x5a\xe6\x4b\x8f\x13\x16\xa4\x3f\x96\xf5\x3a\x13\x28\xc0\xf1\x4d\x8e\x66\x8a\x00\x88\x19\xef\x6a\x98\x1a\xc6\x8a\xeb\x7a\xa9\x28\x8c\xed\x61\x80\xd2\x2d\xa8\xf7\xa1\xa0\xbc\x05\x1a\x54\xca\x86\xb3\x13\xa2\xc0\x65\xcf\x51\xdc\xb4\xe9\x2f\x75\x95\x25\x8b\xbc\xa4\xb3\x67\x45\x9c\x9c\x51\xe6\xe5\x08\x33\xd7\x2d\xc4\x5a\x06\x16\xdb\x5d\x02\x19\x42\x88\x57\x92\x38\x8c\x4d\xcf\x39\x1c\x5a\xaf\x6d\x7f\xe0\x25\x0a\xd0\x6d\xb3\x13\xd8\xb3\x2f\x03\x42\x8a\xce\x80\x8f\x82\x8f\x79\x31\xe3\x1f\xf8\x2e\x6c\xee\x68\x2a\xaa\x08\xee\xde\xd9\xe3\x48\x6c\xee\x71\x24\xf7\x77\x6d\x47\x5b\xb0\x72\x2f\x9b\xed\x8b\xbe\x97\x3f\x14\xf9\xf9\x0b\x00\x7e\xf2\x3e\x89\x2f\x3d\x86\x1d\x75\x32\x1c\xac\x3e\xd4\x0e\x42\x2b\x9c\x84\xe9\x5c\xd1\xd5\x39\x89\xf9\xe2\xbc\x1e\x19\x0a\x08\x6f\xb1\x63\xf3\x70\x1c\x69\x6d\x76\x73\xf9\x8d\x31\x55\xfb\x2b\x0f\x1f\x47\xd3\x0e\x60\x96\x5b\xc0\x2c\xe7\xc0\x6c\xd2\x99\x69\xdb\xca\xf4\x28\xaa\x02\x07\x20\x77\x9f\x10\x98\xaf\x71\x14\x20\x11\x53\x40\x2d\x7f\x6b\x79\xa8\x35\xa3\xf3\xbc\xa0\x03\x42\x47\x82\xa3\x8c\x42\x39\x14\x56\xf3\x0c\xaa\x81\xad\x58\x17\x0d\x6f\x61\x79\x44\xa8\x85\x7c\x09\xa0\x52\xd1\x7a\x4a\x44\xa3\xba\xc4\xcf\x1e\x1c\xa5\x74\xbd\x36\xbb\x31\xad\x6f\xbd\x54\xba\x2b\x17\xf5\xd5\x7b\x55\x89\x5e\x35\x20\x9b\xdd\xa0\x6e\x02\xbc\xa0\xcb\x92\xe2\xa2\xad\x97\x1b\x90\x4c\xdf\xaf\x95\x98\x3c\x7e\xc6\x61\xd9\xb6\x8e\x2e\xd5\x05\x11\xfa\x11\xea\x98\x3c\xc9\x35\x6e\x57\x58\x39\x10\x50\x57\x74\x1e\x2a\x73\x1e\xd6\x12\xd6\x6b\xaf\x31\xed\xfa\x93\x9a\x42\xf1\x23\x2f\x2e\x1f\xb5\x1b\xda\xbc\xf5\x0f\xf8\x42\xe9\xcd\xbf\x2c\x68\x72\x4a\x93\xb3\xd7\x69\x59\xd2\x59\x0d\x67\x50\x80\x3e\xb6\x85\x20\xf1\xee\x38\x88\x87\x43\x31\x8b\xfd\xf4\x9c\x63\xbb\xb1\x0c\x10\xc0\x6f\xd3\x38\xe2\x8b\x30\x62\xf9\xab\xfc\x92\x16\xfb\x71\x49\x3d\xc4\xe7\x55\xe7\x54\x1e\xf6\x25\x9c\x13\x2c\xea\x1f\xc0\xa5\x38\x8e\x51\xe0\xf4\xac\x4a\xfb\x00\x87\xac\xa1\x98\xa3\x3b\x28\x45\xb4\x26\x18\xb5\xa9\xbc\xb4\xe1\x7c\xad\x77\x59\x47\xb7\x6c\x7b\x6a\x31\x95\x63\x84\x17\xfc\x22\x5c\x91\x38\x58\xed\x8e\x83\x15\x1f\xaa\xd0\x6f\x4a\xc2\x95\xda\xa1\xa0\x21\xa2\xc2\xca\x69\x8b\x81\xbe\x83\x5c\x57\xee\xd9\x3e\x21\x4b\xb9\x49\x17\x24\x11\xe7\x39\xf4\xa3\xc1\xa2\xba\xa5\xac\x57\x9f\x26\xdc\x1a\xdd\x02\x53\x92\xc0\x2d\x60\x9a\x11\xdb\x51\x9f\x0e\x99\x22\xda\xae\x6c\xf8\x26\x98\x22\x1c\xb8\x09\xdf\xe4\xc2\x9e\xd5\x74\x61\xa2\x83\x33\x6c\xd8\x10\xe0\xb0\x9d\xb5\x80\xb5\x91\xb7\xd4\x62\xf6\x04\x82\x1b\x67\x23\x58\x3e\xc2\x8e\xa3\xb9\xae\xfa\xc8\xf0\x97\xd9\x9e\xc0\x24\x0b\x0d\x7c\x01\x8a\x16\x16\xf2\x12\x18\xad\x3d\x60\x2e\xf7\x7d\x0c\x4a\x7f\xb7\xe2\xd8\x06\x3f\xb8\x07\x9a\x5d\x74\xa1\x8d\x36\x18\x03\x18\xd6\x04\xd7\x4d\xc4\x82\x42\x5d\x69\xfd\x4b\x65\x7d\x99\x7b\xa5\xbe\xa0\x95\x1c\xaa\x0c\x33\x52\x5a\xb7\x04\xd3\x3b\x89\x93\xf1\x00\xab\x79\xa6\xe1\x30\x83\x6f\x5e\x47\x57\x99\x75\x29\x30\x7e\x29\x18\xc4\x5a\x23\xe0\x15\x34\x2e\x05\x59\x78\xf3\xc4\xa1\x9b\xdc\xf4\xbf\x2a\xbe\xe6\x56\x2d\x11\x56\x03\x99\x7a\xb2\x64\x3c\x67\xb4\x78\xc3\x77\xc3\x5d\x60\xa9\xb4\xee\xe4\x02\x3b\xcb\xb8\x88\xcf\x4b\x07\x97\x08\xe7\x20\x9d\x2f\x43\x6b\x96\x70\xe7\x82\x35\xf0\xfc\x1a\xad\x59\x1f\x09\x2e\x9a\xd7\x04\x42\x93\x76\x9f\x1d\x07\x83\xab\xbf\xf8\x9c\x13\xab\x08\xa7\x30\xff\x10\x01\x45\x73\xfa\x14\xaa\x50\xc0\x29\x69\x8a\x98\xed\x2c\xa2\xa0\x3a\x69\x76\x9a\x41\xc3\x6a\xdf\xea\x3e\xa6\x49\x7d\xff\xa1\x8d\xb4\xb3\x5d\x1a\xc6\x42\x3a\xaa\x85\x0f\xa0\xb0\x32\xb0\xa6\xa9\x93\x3c\x57\xe5\x84\x93\xec\x69\xbd\xb2\xfb\x9e\x9b\x1a\x27\xa0\x5e\xa3\x94\x32\xae\x32\x2a\x45\xe2\xfb\x1c\x65\x95\x60\x47\x12\x87\x2d\x0a\xbd\x5e\x45\x13\xdb\x5d\xe4\xc9\x99\x57\xc7\xe5\xfe\x23\xb3\xff\x67\xe6\x9a\x8f\xae\x46\xad\x37\xe5\x01\x2d\x7a\xbf\x63\x3c\x35\x1b\xe8\xda\x97\x70\xe3\x40\x15\x94\xe1\x60\x17\x80\x8c\x8c\xe4\xd3\x97\xdd\xcd\x2f\x33\xdd\x27\x73\xd3\xda\xa9\x64\xf3\x96\x91\x51\x51\xb2\x94\xb5\x14\xbe\xea\xeb\x26\x21\x11\xd5\xfc\x1c\x9b\x8f\xc3\xb4\xfa\x78\x85\x05\x9f\xc7\x70\x5e\x2a\x4c\x6d\x14\xe9\x96\xbe\x60\xfb\x6e\xa4\x72\x94\x2d\xac\xdb\x17\x94\x48\x7c\xd9\xea\xb0\x66\x61\x2a\x15\x4e\xad\x82\x8a\x13\x5e\xfd\x82\x5f\xd5\x2b\xb2\xf5\x9b\x17\x8e\xd6\x7f\x8b\xd0\xd4\x0b\x8f\x2e\x23\x34\xd8\x4a\xf1\x92\x8c\x83\xe5\x4e\x19\x2c\x07\xc4\x47\x76\x37\x3c\x21\x32\x09\x97\x11\x92\x84\x15\x2c\x83\xee\xe0\xd4\xc6\x76\x73\x1b\x13\xce\x5d\x77\xc9\x89\xaf\xa1\x3f\x5d\x90\xbe\x3f\x49\x06\xc0\x30\x98\x78\x31\xaf\x8e\x03\xc5\x94\x3f\x0c\xfc\x08\x1b\x1c\x21\x16\x38\x82\x7e\x4f\xe1\x7d\x25\xf0\xd7\x58\xe0\xaf\xf2\x2d\xe5\x6f\x53\x55\xeb\x02\x64\x85\xe9\xdc\xeb\x2f\xc4\x1e\x9b\x83\x6a\xc0\x6c\x95\xb4\x42\x8d\x2b\x96\xe2\x80\x71\x14\x17\x81\x21\xa8\x58\xa2\x90\x45\xe4\x46\xc4\xe7\x4f\x70\x11\x5f\x4e\xe6\x55\x05\x6a\xa4\x09\x84\x85\xd8\x70\x91\x6c\xd4\x49\xb1\x90\xf9\x3a\xc5\xca\xea\x94\x56\x9b\x62\x65\x28\x40\x1c\xe5\xd7\xd8\x98\xf6\xad\x9d\x6d\xec\x09\x5c\x4b\x7f\xac\x2f\xe3\x4d\x5d\x68\x90\x51\xed\x3e\xdc\x3a\x05\xf5\x46\x4d\x9b\xcd\xc1\x73\x8c\xc1\x1a\x2b\x33\x01\x47\x75\xf0\x5d\xde\xce\x46\x3b\x1f\x7e\xed\x11\x16\x14\x26\xb0\x69\x31\x18\x40\xe7\xc3\x22\xb2\xfa\x4d\x95\x62\x1e\x33\x4a\xb2\x0c\x24\x38\x20\x85\x6d\x40\x34\x6b\xf6\x70\x81\x73\x32\xc6\x29\x19\x07\xa9\x69\x24\x1d\x0c\x04\xd6\xe6\x49\x9a\x02\xe6\x32\x15\x07\xc5\x75\xbd\x9c\x9f\x25\xec\x20\xc5\x6e\xc9\x87\xfc\x7d\x2c\x8e\x86\xe4\xc2\x48\x56\x10\x54\xa3\xc8\xb6\x42\x9c\x81\x65\x91\x9f\xa4\x32\xc1\x8f\x90\x72\xc0\x60\xb4\xa1\x05\xd7\x22\x5f\x1d\x2f\xe8\x3e\x20\xbe\x0c\x55\x85\x56\xe6\xe9\xfb\x7c\x58\x0d\x7e\x4a\xe3\xae\x2f\xf2\xcb\x9e\x01\x54\x52\x48\xe1\x7c\x90\x65\x7a\xc7\xa2\x90\x63\xa1\xb6\xa2\x4e\x4d\x3a\xde\xb3\x3e\xe1\xea\x11\xc6\xd7\xe2\x84\x88\x1a\x6b\x57\xe9\x3d\x6b\x55\x65\x7a\x55\xbb\x87\xd6\xbd\xba\x21\x9c\x59\x03\x21\x00\x68\x1e\xdc\x3d\x25\xbc\x46\x87\x6f\x1f\xa1\xda\x28\xdd\xf5\x01\xdb\xc5\xac\xc4\xbd\x06\xf0\x1c\xf2\xf7\x60\xe3\xb5\x07\x60\x91\x1a\x9d\x6e\x4a\xdb\xf5\xed\xb1\x21\xcf\xdd\xbb\x4c\xd9\x69\xbe\x62\x3d\xe1\x91\x81\x01\xd3\x56\xd5\xbb\x81\x86\xb6\xa7\x08\x0e\xc3\xad\x79\xea\x8e\x4c\x34\x11\xae\xe3\xf9\xd9\xee\x9a\x0a\x32\xc6\x39\x61\x43\x3f\xc8\x41\xcb\xdf\x86\x3c\x9c\x08\xcf\xe1\xb4\xac\xd7\xdb\xfc\xaa\x29\xf8\x81\x41\x41\x3e\x1c\xa2\x8d\x2b\x21\x7a\xd5\xd3\xf7\xa1\x83\x33\x3e\xc2\x0c\x46\xd8\x92\x73\xad\xfe\x52\x39\xd7\x5d\x42\x6a\xc9\x47\x3b\xc4\x57\xf8\x0d\x7e\x85\x5f\xe0\x03\xfc\x19\xef\xe3\x33\xfc\x11\x3f\xc7\xcf\xf0\x3b\xfc\x9e\x40\x00\x1d\x41\xcf\xbe\x9d\x7b\x08\xff\x42\xd8\x28\x3d\xc9\xf2\x42\xa8\x59\x96\xf8\x77\xf2\x5e\xdd\xd9\x2f\xc9\xd0\xc7\x1f\x88\x8f\x7f\x22\x63\xfc\x03\x47\xe0\x7f\x06\xd3\x31\x25\xdb\xfa\xd5\xd3\xbb\x81\xb6\x36\xaa\x33\x60\xf8\x03\xfe\x69\xf8\x52\x29\x54\xde\x1c\xc7\xc9\xd9\xc4\x5e\xc4\x9f\xb5\x16\x2a\xd6\x04\xe6\xa4\x81\xd3\xfd\xdc\x08\xe1\xf1\xb3\xe4\x77\x82\x82\xf9\x4f\xbb\xe4\x77\xad\x53\xde\xef\x83\x8c\x4e\x0c\x46\x75\x43\x39\xa2\xf5\xbc\x8c\xbc\xb7\x75\x74\x7e\x42\x88\xe3\x06\xeb\x75\x46\x08\x59\x88\x9f\xa5\xeb\xd6\xf3\x0c\x7c\x04\x61\x6f\x5c\xd7\x7b\x49\x7e\xc2\x1f\x00\x9e\x66\xd2\x81\x6d\x39\x11\x0e\x69\xc5\xcf\x4a\xfc\x2c\xc5\xcf\x62\x72\x48\x7e\x0a\x66\xf9\xcd\xe1\x80\xf8\xb8\xd9\xf6\xa1\x68\x1b\x6a\x3d\x14\xb5\x56\x97\xa7\x9c\x9a\xe4\xbd\x48\x44\x67\x64\xd7\x56\xb2\x6b\xb2\xa3\x28\x78\x47\x42\xb9\x85\xf1\x7b\xc9\x2c\xf8\x09\x1f\xa2\x08\xff\x44\x0e\x87\xbe\xed\x2a\x77\x2e\xfa\x32\x13\x3f\xe7\xe2\xe7\xb5\xf8\xb9\x16\x3f\x27\xe2\xe7\x78\xc2\xa7\xf0\x47\x22\x24\xca\xa0\x6d\xb7\x2f\xbb\xeb\x65\xd0\xe4\x8f\xf8\x47\xb1\x9a\xb6\x0c\xad\x77\x3a\x49\xe7\xde\x73\xf2\x83\x22\x62\x7f\xd0\x77\xe8\xc4\x71\xf0\x33\xd2\x9a\x4d\xec\xac\x8a\x05\x3f\x7b\xcf\x5d\xf7\x59\x9f\x90\x42\xfc\xe4\xe2\x27\x11\x3f\xa5\xf8\x59\x89\x9f\x85\xf8\x59\xa2\x1b\x39\xa5\xe9\xdc\x3b\xe3\xb4\x1b\x44\x79\xf5\x0e\xc9\x7b\xc3\x97\x41\x0e\x3e\x1c\xf8\x08\xc1\xce\xf9\x65\xbd\x66\xa2\x90\xa0\xcd\x7f\xf5\x1c\x75\x9f\x20\xe0\x7c\x7e\x24\x87\x41\xad\x87\x1f\x87\x3e\x5f\x98\x34\x40\x1f\x87\xc4\xc7\x67\xa4\x7f\x26\xd7\xe5\x4c\xcc\xbb\x2c\x5f\xd6\xa6\x9e\x0f\x0b\xa6\x06\x7f\xc0\x87\xc3\x97\xb0\x10\x82\x87\xdf\xec\x1b\xcc\xc0\x0b\xd2\x28\x0b\xe3\x38\x5c\xaf\x3f\x09\xac\xf2\x05\x9a\xf2\xa6\x3c\x07\xf3\xff\x62\xce\x27\x5e\xbd\xf5\x17\xad\x06\x6d\xa9\x62\xaf\x10\xab\x9a\x4f\xae\x08\xdf\x34\xc5\xd4\xf9\xc6\x99\x7c\xe3\x7c\x83\xef\x9c\xc1\xab\xae\xf9\x1b\xf8\x66\x06\xa5\x9a\xec\x1f\x99\xc0\xd6\xc0\xdf\x90\x17\x2a\x96\x0f\x44\xa1\xf2\x5e\x91\x37\xc6\x74\x68\x77\x3c\xf5\x3e\x93\x0f\x83\x57\x78\x9f\x1c\x0e\xdf\x84\xaf\x22\x05\x09\x26\x3c\x1d\xef\x93\x97\x08\xc3\x61\x10\x5d\xea\x5e\x92\xcf\xf8\x70\xb8\x1f\xe1\x97\x64\x1f\x7f\x20\x9f\xf9\x4c\xd9\x13\xb5\x37\xb9\x34\xd1\xb0\xf8\x40\xf1\xa5\x58\x84\xf7\x08\x1f\x12\x0e\x5a\xad\xef\xd3\xf7\xba\x73\x76\xb1\xe1\x36\xf4\x42\x09\x7b\xef\xda\x19\x76\xf3\xe9\x84\xcf\xe2\x21\xf9\x09\x1f\x90\xfe\xb8\x3e\x95\xbc\xb0\x98\x4a\x00\x21\x07\xa4\x7f\x00\x1e\x6c\x48\x2b\x17\x3e\x70\xdd\x4c\xb8\x39\xca\xc4\x21\xca\xc4\x21\xca\xc4\x21\xe2\x3f\x4b\xf1\xb3\x70\x5d\x0f\xaa\x7b\x2b\x87\xa9\x9c\x0a\x1e\x22\x24\x79\xbc\x41\xeb\x13\xdf\x10\xa2\x17\x9d\x3d\x4c\x64\x9d\xa8\xe2\xd3\xf0\x35\x73\xa0\x24\xdc\x7c\x8f\xc6\x1d\xa0\x97\x10\x72\x31\x05\x06\x72\xfd\x94\x3f\xdc\xe2\x47\x69\x1b\x0d\x7c\x0e\x98\xf9\x36\x9d\x1e\xea\x4b\x6b\xf2\xab\xa7\x89\x08\xd4\x71\xda\xfe\xa2\x4d\xa7\x9a\xd0\x47\xb1\xbd\xd1\xd0\xc4\xfb\xd2\xd8\x5d\x5f\x1a\xbb\xeb\x4b\xf7\xee\xfa\xd2\xda\x5d\x77\x4f\xeb\x0f\xe2\x2e\x7d\x87\xa0\x69\xa5\x30\xf4\xd3\x60\x80\xdf\x71\xac\x44\xf1\x2b\x3b\x74\xb6\x78\x47\x7e\xd6\x44\x12\xbf\x52\x2b\xac\xf4\x97\x3a\xb2\xff\x54\x55\x4a\x51\xd2\xf9\xc6\xb1\xd7\x6c\x8c\x70\x4e\xbe\x71\xbe\x69\xa4\xa5\xc4\x39\x3a\x6a\x66\x8c\x89\xb3\xd5\x4c\x2b\x21\x1c\x68\x23\x31\x21\x4e\xaf\x99\xb6\x20\xce\xd1\xbc\x99\xb8\x22\xce\x11\x6b\x26\x2e\x89\x73\x54\x34\x13\xe7\xc4\x09\x9b\x69\x33\xe2\x44\xcd\xb4\x53\xe2\x78\xcd\xb4\x63\xe2\xa0\x66\xda\x39\x71\x6e\x9a\x69\xaf\x89\x53\x35\xd3\x4e\x88\x13\x34\xd3\x2e\x88\xf3\xb0\x99\x76\x4d\x9c\x49\x33\x6d\x8f\x38\xff\xd3\x4c\xbb\x24\x5b\x61\xef\x28\x3b\x62\x47\xc5\xd1\xfc\xa6\xf2\xd0\x37\xce\xd1\x51\xb0\x15\x1e\x45\x7f\x8b\xb6\x4e\xf0\x17\xfb\x33\xc7\xab\x27\xc1\xff\xf4\x79\x96\xa3\x28\xfc\x5b\xb4\x3e\xda\xf2\xa6\xe4\xe8\x21\xda\x3a\xc1\x9f\xc8\xd6\x28\x3c\x3a\xda\xf2\x9c\x6f\x8e\xb2\x68\x0b\xbf\x25\x5b\x61\x3c\x9c\x8f\x87\xdf\x47\x5b\xe9\x7f\x4c\x17\x56\xc7\xda\xc7\x32\x02\xff\xb7\x3a\x02\xbf\xff\x74\xfc\xc7\x42\xf0\xd7\x4d\x42\xff\x2f\x6b\xcd\xb6\x6c\x36\xef\xa7\x9c\x68\x8c\xe6\x9c\x1c\xda\xa9\x87\xda\xe9\x1b\xbd\xc0\xb6\x43\xd4\x77\x79\xc9\xf6\x0f\x0e\x7a\x05\x4d\x68\x7a\x01\x28\x3a\x1d\x38\xbd\x34\x2b\x19\x8d\x67\xbd\x7c\xde\xe3\x5f\xd5\x0d\x6f\xe2\x7e\x52\x2b\x26\x30\x76\x8e\x56\x73\x3a\x9f\x3b\xc4\x84\xec\x05\xfa\x89\xa7\xcf\xe7\xb4\x91\x2e\x79\xdf\xa7\x71\xf9\xec\xed\x6b\x1d\x8f\x8e\x57\xaa\x1e\x8c\x5c\x76\x52\xcb\xea\x63\x11\xa7\xd4\x75\xdb\xf1\x61\x65\x04\x53\xa1\x79\x08\xfe\xa6\x99\x15\xf5\x14\x12\x8a\x76\xe4\x56\x51\xc8\xd6\xb2\xd5\xca\x51\x9e\xea\x0d\x66\xc2\xaf\x9c\x08\xa0\x2d\x18\xb0\x10\xee\x34\x68\xba\x1d\xf1\x10\x34\x24\x45\x6a\xfc\xd1\x75\x73\xc5\x2c\x15\x7d\x92\x85\xdf\xcb\x0e\xe4\x48\x4a\x99\xf8\xd7\xf5\xda\x4b\xf8\x45\x2c\xe8\xcb\x19\x71\x76\x80\xc8\xec\x25\x65\xd9\x73\x06\xc9\xc0\xd9\x75\x4c\x70\x6d\x55\xed\x79\xbc\xb4\xaa\x16\x51\x5c\x15\x83\x28\xc6\x8b\x2e\xcd\xbd\x85\xa0\xcb\x5a\xfe\x52\xa5\x2e\x41\xa0\xb7\x18\x6c\x64\x4d\x43\x4a\x77\x89\xc2\xf2\xc0\xe3\x27\x5c\x56\xe8\xa5\x24\x9e\x36\x35\x94\x63\xc1\x8c\x88\x95\x21\x46\xac\xad\x34\xa0\xbb\xb8\x90\xea\xa1\x22\x4e\x5b\x4d\xb7\x19\x1b\x35\x6f\x13\xe9\xca\x14\x40\x52\x6b\xb2\xc9\xe4\xc6\xb6\x75\x1c\xa8\x71\x5b\xcb\xe0\xa5\x2a\xce\xad\x99\x2b\x08\xb2\x9e\x56\x78\x21\xc7\xb4\xc9\x1d\xe1\x79\xbc\x44\x8a\x7d\x65\x3b\x20\xe4\x53\x6f\x85\x3d\x2f\x2c\x47\xbc\x6d\xbf\x4c\xc6\xe8\xa2\x12\x84\x6a\x51\x77\x8d\x26\xab\xce\x89\x15\x24\xd7\xda\x28\x3a\x37\xbe\xd5\xde\x23\xd5\x1e\xd7\x2c\x5b\xdd\xa2\x11\x62\xa4\x97\xba\xae\x97\x2b\x91\x41\x8a\x70\xce\xe7\xc0\x34\xd6\x11\xcf\xb2\x23\x1c\xf3\x94\xf7\xa2\x75\xa0\xda\xf3\x62\xf9\x63\x59\xaf\x9d\x91\x83\x69\x4b\x81\x9c\xef\xda\x5b\xb5\xc7\xc5\xe9\x90\xe7\x42\xe8\x91\x97\x4d\x3d\xf2\x18\xd2\x70\xdc\xd2\x23\x5f\xfc\x01\x76\x8b\x61\xce\x83\x31\xd5\x3d\xae\xae\x9c\x94\xfc\xbe\xfa\x1e\xee\xab\x52\xdd\x62\x31\x3c\xfa\x4f\x7d\xfb\xea\x2a\xbf\x4a\x85\x38\xb9\xed\x42\x80\x29\x59\xe4\xb1\x1d\xa5\xdb\x68\x00\x80\x7a\xb9\x54\x13\x89\x0b\xf6\x31\x65\xd2\xec\xd2\x84\xa8\xc6\x22\x22\xbc\x0e\x28\x06\xc1\xfe\xa7\xf0\x17\x02\x88\x4b\xdb\x7f\x65\x0d\xca\x9b\x7a\x1d\x2f\x25\xe0\x04\x10\xa0\x00\x91\xd0\xc6\x44\xb7\x2a\x0c\x2b\x37\x27\x9b\x8c\x04\xe4\xf7\xfd\x38\x39\xa5\x2a\xca\x65\x2d\x71\x53\x8c\x69\xe5\x40\xc5\x74\x45\xd9\x2d\xd5\x8a\x57\x98\x8d\x2e\x53\x76\xda\xb2\xa8\x34\x2e\x53\xeb\x8d\xea\xed\x6b\xdc\xa7\xde\xfe\xdd\x68\x26\x08\x31\x81\x9c\xf6\xce\xf8\x63\x92\x39\xa5\xdd\x02\xa8\xc2\x9c\xc8\x01\x29\x43\x7d\x61\x3b\x78\x9d\x54\x87\x75\xde\x3a\x7a\x78\x54\x76\x05\xbf\xf7\x46\x0f\xd1\x51\xf9\xf0\xe8\xe1\xd1\xd6\x16\x0a\xb4\xfb\x57\xb3\x03\x08\x03\xcd\x1e\x50\xa8\xb1\x82\xda\x8a\x10\xef\x9d\x71\x3a\xc4\x96\x89\x97\xcb\x45\x9a\x40\x15\x5b\xbf\x97\x7c\x27\x05\x5a\xdc\xaa\x77\x1b\x3f\x99\x8a\x4b\x27\xea\xfd\xf0\xfe\xe5\x7e\x7e\xbe\xcc\x33\xd0\x8d\x56\x83\xd7\x5e\x69\xa4\x02\x71\xb3\x85\x23\x68\x22\xe0\xb8\x6e\x49\x19\x59\xb1\xf9\x70\xfa\x34\x38\x8e\x4b\xfa\xe4\x31\xd6\x20\x69\xbd\xde\x58\xb2\x99\x55\x7b\x34\x25\xba\x0f\xef\xe9\xc9\x8b\xab\x25\x90\x59\xaf\xf9\xac\xaa\x2e\xe1\x62\x5a\xc0\x76\xf7\x18\x76\x44\x3d\x0e\xb2\xd0\x9f\xc9\x65\x9a\xcd\xf2\xcb\x51\xcc\xf2\x63\xa5\xb7\x98\x9b\xa5\xd9\xd0\x21\x2f\xfc\x0d\x47\x03\x84\xb7\x40\x86\x75\x6b\xa0\x42\xe9\xac\xfe\x3c\x5e\xf6\x20\xb4\x71\x9a\x9d\x40\xcc\x42\xb5\x45\xda\xb1\x45\x80\xeb\x0d\xe2\x32\x7d\xb9\x80\x47\x38\x90\xe8\xb4\xe3\xdf\x9b\xe0\x25\xe0\x7a\x56\x56\x55\xcb\xa1\x4c\x59\x94\x93\x5d\xd7\xd5\x9a\x4a\x23\x7a\x95\x96\xac\x3c\xb8\xce\x92\xee\x54\x2b\x10\x4b\x6c\xdd\x18\x31\xe8\x24\x88\x0c\xd8\xe1\x4b\xfa\xb4\x36\xaf\x72\x4f\x76\xcd\x0d\xc7\xab\x7b\x2c\xef\xf1\xd1\xf7\x38\x98\x4a\xf3\x55\x69\xcd\xd3\xa4\xe7\x0c\x32\xab\x2a\xa1\xf9\x0b\x58\x6d\x9c\x25\x7c\x44\xb7\xc0\x10\xa4\xdd\xb0\x6f\x0e\x65\xdf\x08\x1c\xc8\xec\x7e\x07\xf7\x68\x4b\x57\xa4\xa7\xbe\x59\xc1\xa9\x0e\xe8\xcd\xf4\xec\xfd\xe3\xe0\xed\x1b\x3b\x5c\x77\xe7\xdc\x98\x7d\xd3\x31\x31\xbd\x79\x5e\x9c\xc7\x0c\x2c\x72\x5a\xf3\x63\x2e\x8d\x9a\xbf\x5f\x1b\x1e\x34\x81\x87\xe9\xab\x95\x66\xfb\x30\x34\xc9\x81\xb9\xf1\xbc\x82\x68\x34\x5b\xb8\xef\x30\xaf\xb3\xb4\xc8\xe2\x73\xca\x6f\xb1\x02\x59\x16\x2b\xa4\x9d\xa5\x40\xb8\xef\xf5\xbb\x76\xdc\x7a\xdd\x99\xec\x15\x08\xd9\x5b\xb4\xb6\x07\x8b\x5b\xf6\xa0\x50\xc7\x28\x9b\x16\xdd\xd2\x46\xae\x8b\xe8\xea\x38\x66\x10\x3b\x5e\x46\x2a\xec\xfa\xaa\x23\xd2\xa0\x96\xc4\x28\xf9\xda\x28\xeb\x7f\x09\x2d\x7e\xb3\x2c\xe8\x3c\xbd\x9a\xdc\x72\xef\xfc\xe6\x0d\x8f\x2e\x07\x43\xb4\x65\xec\x11\xa7\x2c\x1c\x47\x13\xc7\xa9\xf0\x2a\x13\x15\xd0\xd9\xa4\xd3\xcb\xa6\x71\x80\x0d\x95\x80\xf3\xeb\xaa\xfa\x93\x06\x61\xca\x95\x94\xff\xf4\xb1\x8c\x51\xfd\xf4\x5b\x64\x5b\xce\x1a\xeb\x53\x96\x27\xf9\xc2\x0a\x65\x5b\x2e\xe2\xf2\x94\x96\x56\x4a\xbc\x62\xa7\xd6\xeb\x69\x5e\x32\xeb\x95\x77\xac\xf1\x55\x3b\x7b\xc2\x8a\x70\xb5\xcb\x4b\xdf\x6c\x26\xe1\xf3\x8a\x16\xd7\x76\x8d\x31\x3b\x6d\x54\xc1\x93\xec\x1a\x0b\x2a\x9c\x2f\x55\xca\x70\xea\x02\x6b\xf4\xbb\x3b\xca\xe9\x85\x47\x71\xdf\xc7\xfd\x31\x32\x68\xba\xd0\xd6\x11\x6f\x82\x37\xd1\x5d\x96\x4e\xdb\xa5\x45\x7e\x8f\xa1\x09\x20\x29\x02\xa2\xd4\xce\x45\x3e\x4a\x4b\xed\x83\x02\xf4\x0e\x2f\x20\xae\xaf\xaa\xd4\x06\x8e\xe9\x94\xca\x2a\x3c\x34\x49\x2d\x5b\x46\x91\x28\xb6\xb8\xd0\x62\xfb\x50\x2c\x48\x2a\x49\xd1\xad\xdf\xbc\x30\x1e\x7e\x19\x0f\xbf\x1f\x0d\x86\xd1\x60\x82\xb6\x52\x5c\x92\xad\x49\x38\x1e\x7e\x1f\x3d\x7c\xb0\x85\x13\x9e\x85\x13\x2c\x53\x6f\xda\x3f\xda\x42\xe1\x6f\x47\xd3\xa3\x32\x7a\x88\xbc\xa3\x29\x58\x12\x3d\x44\xd3\x07\x5b\x78\x41\x42\xe7\xc6\xc1\x4e\xe5\x60\x67\xed\x60\xe7\xe8\xc8\xc1\xce\x6f\x0e\x76\xfe\x1f\x07\x7c\xae\x26\x31\xf3\x42\x67\xc7\xc1\xce\xae\x83\xbf\x71\xbe\xe1\x1f\xb0\xd3\xe3\x39\x0b\xfe\x27\xe3\x7f\x98\x13\x21\xbc\x22\xa1\xf3\x8d\x29\xb4\x40\x78\x49\x42\xe7\xef\x0e\x76\xb6\x1c\xec\x4c\x1d\xec\x04\x0e\x76\xfe\x66\x72\xac\x10\x9e\x93\x50\x7f\xfd\x9b\x13\xe1\x19\xd9\xfa\x2d\x1c\x88\x71\xed\x0d\xff\xfd\x69\x18\xdd\x8c\xf1\x93\x47\xd5\x83\x2d\x7c\x0a\x43\xee\xf8\x86\x38\x86\xf7\x60\x0b\x1f\x93\x9b\xdf\xe3\x8b\xb8\x4c\x8a\x74\xc9\x26\xfd\x31\x76\xac\x57\x67\xd2\x1f\x57\xf8\xfc\xee\x2c\xaf\xc9\xcd\x29\x63\x4b\xfe\x91\xff\x96\xfc\x61\x2e\xde\x4f\xf2\xe5\x29\x2d\x20\x21\x15\xe1\x59\x1d\xc8\xea\xe8\xc7\x52\x3e\xcf\x75\xaa\x2c\x23\x93\x79\x31\xd1\xcc\x09\x1c\xcc\x27\xd6\xc1\xbc\x50\xa7\x39\x9d\x7b\xd4\x75\xf9\x16\x92\x1b\x8d\x6f\xa1\xfa\x96\x51\xd7\x13\x0d\x8c\xfb\x33\xed\x90\x4f\x86\x95\x96\xd5\xe1\xa2\xb2\x37\x55\xc3\xd6\xd0\x34\xd9\xaf\xed\xd9\x6e\x67\x43\xef\xe2\x22\x3e\xa7\x8c\x16\xbd\x6f\x56\xc5\xe2\x1b\x1d\xde\x25\xd6\xfe\x86\x32\xf0\x23\xa4\x5d\x16\x49\xd7\x8a\x96\x92\xf8\x14\xc2\xc1\x83\x02\x79\xea\xba\xe9\x8e\xf5\xe9\x6f\x0e\x9a\x3a\x53\x67\xe2\xfc\xcd\x01\xb6\x8d\x10\x48\x94\x28\x58\x84\xe3\x88\xf0\x3f\x06\x60\x1e\x1d\x6d\x9d\xf0\x7d\x25\x5a\xb8\x20\x94\x2c\xc4\x3d\x5a\xc2\x85\x7c\x41\x2e\xe4\xc5\x85\xfb\x99\xeb\x0a\x2b\x15\x29\xe0\xf8\x9b\x83\x6a\x11\x5b\xae\x49\x32\xa2\x57\x34\xf1\x2e\xa0\xe8\x75\xed\xea\x07\xe0\x73\x61\x41\x9e\x8b\x06\x9c\xba\x0e\xfd\x08\x5f\x87\xdb\x8a\xa9\x27\x21\xdc\x35\xe8\x77\x18\x08\xc7\xa6\x27\x72\x55\xac\x5c\x0a\xef\xd6\x6c\xbe\x8e\x64\xa3\x69\x08\xf5\x2a\x65\x5a\x51\xab\x32\xcc\x06\x92\x73\x8f\xc4\xf6\x38\xf6\xc4\xe8\x2e\x89\xb7\x47\xf6\xc2\x71\x84\xea\xb6\x0b\x41\xfd\x0e\xb8\xc4\x7c\xca\x64\xc3\x7b\x6a\x7e\x38\x52\x94\xad\xd7\x7b\xeb\xf5\x85\xbe\xef\x38\x44\x09\x7f\xfb\x9f\xa3\xad\x68\xf0\x3f\xf2\x77\x4b\x6a\x1b\x7c\x21\xce\xd6\x16\xbf\xd1\x2f\x0c\x49\xb7\x8d\x82\xfe\x97\xf5\x7a\xcf\x75\xcf\xc3\xbd\x68\xbd\xf6\xac\x76\xb6\x51\xfd\xda\xe9\x8f\xa1\xc5\x3e\xcf\xe9\xba\x9e\x28\xd6\x7f\x1d\xee\x45\x96\xa9\xc5\x27\xfc\x16\x1f\x92\xa1\x8f\xaf\xc8\x38\xb8\xda\x99\x2b\xee\xf5\xd5\x60\x80\x6e\x60\x5f\x79\x6f\xc8\x85\xde\x55\xf3\xf0\x2a\xe2\x38\x8f\xa7\x04\xca\x6f\x76\x0e\xf9\xeb\x21\x79\x83\x2a\x91\xfd\x2d\x11\xdf\xa6\x17\x46\xc2\xc4\xf7\xe3\xff\x38\x68\xd2\x4a\xc2\x87\x50\xdb\x27\x3e\x0a\x61\xf0\x81\xdf\x22\x31\x79\xf0\xfa\x76\xe0\x23\xeb\xea\xec\x20\xf9\x3e\x21\x04\x03\x00\x73\x04\x31\x88\x65\x6d\x10\x7c\x94\x6f\x82\xf6\x50\x96\xb7\x0f\x85\xa7\xc1\xdb\x85\xa6\xdb\xcc\x9d\x6d\x7a\x7b\x68\xf7\xf6\x50\x19\xf1\xf0\xad\xf9\x53\x5e\x32\x0f\x35\xae\xf2\xda\x1b\x38\xf3\xe3\xdd\x7b\x45\x84\xd5\x65\xed\xab\xd0\x8f\x8b\xda\xe9\xb5\x37\x4b\x7b\x98\xaf\xf5\x2b\xed\x2a\xed\x45\xbd\x94\x3c\xae\x5b\x47\xa3\x2d\x84\x0f\x08\x9f\x29\xfc\x42\x8d\x2c\xb8\xda\x39\x30\x93\xf5\x99\xbc\x08\xaf\xa0\xba\xcf\xae\xdb\xff\x2c\xb7\xea\xcc\xda\x34\xfb\xfc\xe0\x9c\x91\x31\xfe\x48\x3e\xab\xb9\x3e\xdb\xf9\x18\x9c\x0d\x06\xe8\xb3\x2d\x40\x3a\x43\xbb\xfe\xf6\x77\xd3\xfd\x01\x71\xae\x9c\xc9\xfe\x80\x7c\x0e\xcf\x44\x47\xf7\xad\x6a\x79\x95\xcf\xc9\x0b\x3d\xa7\x57\x08\x3f\xd3\xaf\x57\x7c\x07\xbc\x23\xaa\x1b\xa7\x28\x78\xe7\xba\xde\x73\x29\x89\x0c\xfd\x08\xe1\x67\xda\xb1\xda\xbb\x70\x3b\x42\x3c\x41\xeb\x80\x5e\x10\x67\xcb\x19\x3c\x93\x2e\x0a\x47\x0e\x1a\x5c\x34\xd7\xe4\xb9\xf9\xa8\x2c\x2c\xaa\xae\x39\xde\xdd\xfe\xf6\xdb\x69\xbd\xa8\x23\x4d\xab\xbb\xd7\xb7\x0e\x22\xfe\x5f\xf6\xfe\x85\xbf\x6d\xdc\x78\x14\x86\xbf\x8a\x84\x76\x15\x22\x82\x64\xc9\xb9\xed\x52\x86\x75\xdc\x24\xdb\xe4\x6d\x1c\xe7\x4d\x9c\xb6\xfb\x28\xfa\xe7\x50\x22\x64\x71\x43\x91\x2a\x09\xd9\x56\x2c\x7d\xf7\xe7\x87\xc1\x85\xe0\x45\x37\x27\xbb\xdd\xe7\x9c\x6d\xf7\x17\x8b\xb8\x0c\x06\xc0\x60\x30\x18\x0c\x66\xc8\x1b\xad\x81\x32\xa5\x93\x36\x8f\xcf\x3e\x3c\x7f\xfd\x3a\x9f\xae\xee\x0f\xde\x53\x23\x15\x0a\x36\xde\x34\x5f\x2e\x42\xe4\xdf\x15\xa4\x94\xd1\xe7\xbf\x9b\xef\x33\x26\xdb\xcc\x8a\x92\x37\x9a\x01\x6e\xc0\x58\xf3\x4a\x52\x49\x64\xc7\x58\x6c\x12\x75\x4a\xaf\xe5\x53\x49\x39\xb8\xd7\xf2\xb8\x57\x1f\x0d\x6e\x86\x58\xad\x42\xf2\x81\x2e\xcc\x2a\xb4\x89\xeb\x57\xba\x50\xc4\x05\x2b\x32\x5b\x8e\xda\xc6\xea\x35\x05\x9d\x44\x7e\x91\xff\x8a\x7b\xaf\x29\xa5\xbf\x82\x35\x13\x4b\xc7\xde\x9c\x89\x0a\x72\xe9\x01\x61\xff\xaa\xbc\x50\xbe\x56\x57\x5f\x1f\x2d\xd0\x62\x8f\x92\x0c\xe0\xa3\xe9\xbe\x10\xa4\x0d\xe7\xfc\x68\x2f\xe2\x0e\xf9\xa8\x26\xe0\x95\x0d\xa3\x2f\xc3\xbd\x00\x98\x57\xf9\xdd\xc9\xc0\x79\x85\xed\xed\x24\x4b\x06\x26\xa6\x9b\x96\x99\xb9\xfd\x0b\x92\x70\x1e\x89\x57\x7b\x6d\x57\xd7\xba\x84\xd9\x41\xaf\x31\x39\x1f\xdc\x68\xdf\x69\x7a\x06\x75\xc8\x25\x5d\xac\x54\x4d\x6c\xfe\xf9\xbd\x58\xe9\xc7\x65\xd3\xf8\x4e\x53\xa3\xc9\x55\xbc\xeb\x67\x6a\x15\xcb\xc8\x10\x76\xfa\xf7\xcd\x9f\x6d\xa7\x7b\x72\xcb\x97\x0a\x78\x25\xa1\x2b\x37\x75\x65\x39\x7d\x83\x3d\xab\xd8\x05\xa0\x11\x06\xc7\x00\x87\x55\x51\x0b\xc3\x38\x13\x6d\x7e\x78\x74\x76\x14\x10\xe4\x22\x4c\x58\x93\x8a\x5d\xa8\x67\xd9\x75\xea\x1d\x5b\xc0\xd4\x1e\xea\xec\x2e\x6a\x3d\xb5\xa0\x17\xf8\x86\x77\x6e\x1e\xb5\x57\x5b\x3f\xa0\xac\x69\xbe\xdc\xc2\xb8\x3b\x22\x57\xee\x31\xf9\x35\x65\x3f\xf4\xcb\xb3\x15\x17\x0d\x50\x33\x97\xd2\x44\x43\x33\x3d\x71\x02\xd1\xa4\x9a\x34\xc7\x13\xb0\x4d\x7a\x39\x71\xd7\xa2\xb0\x46\xa3\xe4\x23\x4f\x66\x64\xfc\xd2\xa3\x57\xb6\x46\xc8\xa2\xce\xdc\x2b\x51\x35\xdb\x5e\xa3\x81\xfa\xa8\xe9\x49\xb7\xb4\x6a\xa6\xc1\xec\x1b\x5e\x34\x2a\xfa\x6f\x81\x0d\x0d\x07\x8c\xf3\x32\xca\x6a\xe5\xd4\xf9\x6a\x75\x3e\xe0\x43\xdc\x68\x80\x61\x6d\xd0\x77\x02\x10\x7c\x9a\x4e\x00\xaf\x73\x48\xd4\x68\x48\xae\x13\x69\x73\xa1\x0e\x86\x00\xce\x82\xf9\x44\x18\xbb\xc1\x6a\x25\xea\x20\xf0\xfd\x83\xfe\x82\xa4\xfb\x39\xab\x68\x42\xd1\x5f\x50\x33\xc1\x24\x05\x7c\xeb\x94\xa6\xb9\xfc\x94\x8a\x5e\xa4\x98\xf0\x66\xd0\x74\x22\xcb\xdd\xe2\xd1\xa0\x0f\x76\x0e\x95\x61\x3d\xaa\x28\x6f\x8d\x31\x6e\x3a\x29\x4d\x0d\x08\x21\x7f\xa3\x1f\x8e\x1f\x21\x8c\x9b\x49\x9e\xd4\xcb\xc7\xec\xfc\xfd\x45\xfe\x80\x9c\x9d\x9c\xb1\x59\x3f\x95\xf0\x4a\x07\x70\xe9\x01\x3c\x77\x20\xb1\xdd\x77\xf4\xb8\x39\xe2\x48\xf8\x84\x51\xbe\xce\xcc\x1a\xa0\x10\x29\x3b\x58\xc4\x2a\xf8\x42\x52\x0a\xbe\x90\xd2\x64\xe0\x0d\x7b\xd1\x20\x1d\x02\xc1\x0c\x52\x88\xdc\x15\x49\xbe\x0b\x41\x56\xa6\xf2\xed\x29\x03\xa6\x60\x42\x8b\x28\x7d\x44\xc6\x1f\x22\x88\x16\xa9\xe9\x05\x8c\x0f\xf4\x9a\xb5\xdf\x0b\xdb\xa8\x31\x4c\x42\xda\xe9\x85\x27\x26\x76\x72\xa8\xf1\x5a\xd0\xf1\x20\x1c\xf6\x90\x06\x81\xa4\xf5\x9a\x13\x0d\x16\x43\xca\x06\x8b\xa1\x31\x6a\x3a\x1f\x44\xa6\xa1\x61\xa3\x11\xd9\x9c\x34\xb2\xd9\x68\xa4\x34\x2a\x05\x56\x5a\xd1\x93\x35\xf4\x44\x03\x6d\x34\xb2\xdf\x40\xdb\x59\xb7\xc4\x66\x7a\x3e\xc8\xb2\x87\x59\x4f\xe7\xc5\x9e\x4e\x68\xa7\x37\xc9\x24\xde\x89\xee\xa9\x4f\xe7\x83\x89\x98\x01\x5f\x74\xcc\x37\xde\x9d\x36\xe0\x95\x35\x4f\xb3\x76\x09\x83\x5e\xaf\x56\xb3\x1c\x32\x56\x57\x99\xf9\x99\x05\xed\x15\xad\x4f\xa9\xc3\x72\x7c\x14\xeb\xe3\xa2\x38\x63\x4e\x0d\xbb\xa9\x3b\xb2\x09\x3a\x35\xef\xfe\x7b\xb8\xa7\x9b\xd5\x99\x62\x65\x33\x4b\xd4\x71\x98\x2d\x81\x61\x02\x2e\x6d\xa7\x20\x92\x4c\x8d\x28\x28\x32\x74\x43\x27\xc7\xc5\x1c\xab\x0f\x53\x25\xfe\x1d\x21\x79\x40\xd3\x9b\x2d\x53\x3f\x48\xa4\xf6\x5b\x26\xff\x12\x49\x0b\x54\x63\x29\x36\x0e\x79\x3a\x61\xf0\x87\x64\xb4\x42\x6d\xac\xe5\x6f\xd1\x72\x9c\xc8\x97\x40\x09\xb7\xf0\x58\xad\x22\xb3\xd7\x5e\x43\x88\xef\x28\xbf\x13\x5d\xd1\xc8\xde\x65\x15\xdd\x8d\x9a\x57\xd9\xd4\x1a\x85\x63\xc6\x5f\xcd\xd2\xa9\xa4\x48\x79\xda\xb7\xe9\x19\xe2\xf7\x59\x29\x19\x9f\x24\x4b\xd3\x65\x56\xaa\xc0\xaa\x2a\x9c\xd1\xe5\x6a\x75\x2d\x3a\x26\xaa\x01\xc1\xab\x42\xe4\x86\x9e\x91\xaf\xb9\x86\xad\x26\x33\x52\x59\xad\x06\x43\xf2\x99\x3a\x53\x6a\x37\xc9\x36\x16\x8d\xac\xe5\x55\xcf\x2d\x61\x10\xde\x3e\xc3\x7a\xb5\x68\x47\xcf\x86\x8c\x08\xa5\xd0\x74\x80\x31\x7d\x1d\x74\x86\x7d\xf1\x0f\x95\xe9\xee\x57\x43\x40\x32\x01\x63\x4d\x09\x08\x11\x7b\x5d\xdb\xe4\x09\x80\x99\xd5\x08\xcb\x35\x22\x88\xb6\x2f\xfe\x51\x43\xeb\x66\x54\xca\x74\x23\x2c\x53\x13\x8b\x21\x3d\xb3\xeb\x0a\x4a\x50\xb8\x62\x4c\x96\xb8\x44\x9a\x92\xc3\x0a\x21\x45\x35\x10\x69\x2a\xac\xa4\x51\xab\x82\x48\xe8\x67\x3f\xdd\xac\x06\xd9\xbd\x44\xbe\xd2\xa9\xf1\x0f\x64\xee\x3d\xbf\xae\x56\xce\x57\x3a\x18\x62\xf2\x55\xf9\xdc\xf9\x4a\xbf\x6a\xe5\xe5\x14\xef\x06\x6b\x40\x82\x72\xed\xed\x22\x0c\x2f\x92\x8f\xda\x13\xa7\xa3\x6b\x49\xc3\xf2\xcf\xd8\xea\xa2\x1a\x96\xaf\x9a\xc9\x10\xe7\x0d\xad\xd7\x1d\x3d\xe1\xf2\x6f\x26\x90\xfd\x2f\x84\x4f\x85\x5c\xa0\xd2\x15\x8d\xfd\x2f\x04\xda\x02\xb5\xd6\xdf\x18\x58\x0a\xb8\xd5\xdc\x9b\x8c\x99\x65\x4b\x73\xc7\x88\xe9\x1e\x39\xd9\x3a\xc0\x52\x8c\x53\xa9\xaa\x73\xab\x95\xde\x71\xac\x92\xfd\xec\xa7\x8b\x10\x6e\x9a\xe2\x7d\xfd\x43\x24\x6f\xdc\x94\xea\x5f\x0b\xef\x5f\xa2\xc2\xc5\x81\x05\x0e\x9a\x06\xc1\x4b\x43\x8e\xac\x2b\x85\xaa\xfd\x5b\xef\x09\x17\x62\xfc\xe1\x70\xd3\xea\xe2\x41\x67\x48\x2e\xa9\x9a\x01\xcd\x1b\x57\xab\xaf\x26\xe2\xb9\x18\x6a\xd4\x16\xe4\x78\xb1\x5a\xa1\xb6\xfc\x85\x15\x85\x5e\x10\x71\xc4\x7c\x4b\x75\xf1\xde\xdb\x53\xda\xe9\xbd\x6d\xb5\xb0\xac\xe2\x5c\xd0\xaf\x83\xb7\x43\xdc\xff\xaa\xdf\x42\xbe\x25\x5d\xec\x6a\x30\x7d\x27\x97\x4e\xc4\xe1\xd4\xbd\x6d\x34\x8a\xc9\xad\x96\xb4\xac\x3a\x6b\x34\xea\x37\x70\xb2\xed\xdd\xb6\x5a\xbd\x5b\x9c\xb1\x02\x01\x12\xf7\xea\x67\xd6\x42\x5c\xad\xbe\x4a\xd5\xcd\x91\x4e\xc9\x58\xa2\xe8\xa1\xbd\x0d\x5d\x6a\xd1\xf6\x6b\xb6\x09\xe5\xa4\xe6\xaf\xda\xbb\xb7\x14\xbf\xdf\x90\x97\x74\xaf\x86\x7a\x05\x56\xa7\x88\xf4\x65\x1f\x21\x57\x8f\x5a\xdf\xac\x07\x17\xa1\xdf\x6d\x49\x18\x23\xbf\x33\x7a\x96\x6d\x0d\x86\x02\x1b\x8d\xfa\x4b\xf1\x69\x8f\x92\x41\xd8\xa2\x4b\x6b\xc0\x5c\xa7\x4c\xaf\x86\x24\xf1\xef\xb5\xb2\x2c\x09\x00\xfc\x57\x4b\x49\xe0\xe0\x1d\x99\x94\x6e\x17\x5e\x89\xa1\xac\x3e\x0d\x03\x2b\xe7\x34\x95\x8a\x6a\x26\xcd\x71\xe4\xe1\xcb\xe1\xe0\xa6\x04\x9b\x83\xbe\xd8\x81\xb8\xa5\x0b\x27\x8c\x32\x3b\x82\x88\x7e\x29\x6c\x0c\x67\x08\x2b\xe9\x8a\x58\x55\xac\x9d\x82\xa7\x70\xb0\x56\xe9\xd5\x4d\x62\x80\xef\xb8\xf6\x63\x7a\xb9\x9c\x33\x02\x1b\xb8\xfe\x52\xb7\x6f\xd9\x95\xb7\xba\xeb\x48\x1a\x8d\xa4\xe7\xb5\xaf\xc2\x78\xe4\xa9\xf0\xda\x5e\x5b\xda\xc5\xe8\xaf\x94\x85\x13\x79\x26\x25\x63\x7a\xdc\x7d\xfc\xec\xf1\x8f\x8f\x9e\x3e\x7e\x46\x42\xfa\xe8\xa9\x0a\x2c\x73\xfc\x94\x4c\xe8\xa3\x1f\x89\x4f\x9f\x75\x3a\x64\x4a\x9f\x1d\x93\x11\xed\x1e\xff\x48\x66\x14\xb5\x10\x39\xa7\x47\xff\x73\x1b\xb5\x5a\x47\xe4\x8a\x1e\x0d\xfe\xe7\xd3\xed\x71\xa7\xf5\xe9\xf6\xd9\xcb\xe1\x11\xb9\xa6\x47\x83\x4f\xb7\xc7\x2f\x3f\x2d\x1e\x75\x3a\xc7\x9f\x16\x3f\xff\xdc\x79\x29\xfe\x7d\xda\x15\xa7\xc1\x25\xbd\x8b\xaf\x59\x32\x09\xe3\x1b\x17\x5d\xe8\x5f\x35\x69\x5d\x1b\x31\xe6\xa7\xb5\x9b\xc0\x67\x49\x2d\x88\x38\xbb\x62\x49\x5a\xe3\x71\x4d\xb9\x27\x46\x04\x45\x31\x6f\x8d\xbc\x34\x18\x23\x17\xbd\x0e\x43\x76\xe5\x85\xaa\xee\x29\xad\x75\x6e\x7f\xec\xd4\x9c\x28\xe6\x35\xaf\x06\x85\x6a\xe2\x94\x59\x9b\xc7\x41\xc4\x31\x22\x28\x88\xae\xbd\x30\xf0\x5b\x50\x41\x00\x90\xdf\x12\x00\x5a\x93\x33\x1a\xb6\x16\xe4\xc6\x8a\xb0\x45\xbe\x56\xbd\xb9\xcb\x6e\xca\x3e\x67\xef\x77\xc5\x49\xef\xbd\x17\x5d\xa9\x1b\xaa\xe5\x80\x0d\x71\x66\xef\x7e\x51\xb4\x77\xd7\x54\x43\x12\x3a\x18\xf6\xa2\x56\xab\x87\x93\x41\x34\xa4\xdc\x61\x76\x94\x56\x2b\x28\xd5\x65\x3e\x1a\x6a\xc6\x47\x48\x62\x79\xca\x8f\xcc\x36\x00\x87\xf7\x68\xd0\x19\x36\xd1\xff\x42\x84\x81\xd7\x28\x4c\x92\xe6\x85\xe3\x08\xfa\xd5\x67\xec\x6b\x82\xda\x08\x9b\x43\x46\x1b\x61\xc2\x71\xa6\xd6\xcd\xda\xbf\x2d\xbd\x79\xa7\x83\xa1\x7a\xf6\x6e\x9e\xbc\xc7\x27\x41\x0f\x3b\x3c\xef\x6f\x3d\x6e\x36\x31\x3e\xa5\x4f\x9e\x1c\xff\xf4\xb4\xd1\xe0\x27\xf4\xc9\xd3\x47\xdd\x9f\x1a\x8d\xf8\x24\xe8\x3f\x79\xfa\xe8\xb8\x43\xa9\xf3\xf4\xf1\x93\xee\x71\x03\xdc\x98\x15\x6b\xe2\x7e\x22\x59\xb9\xe3\x74\x3b\xc7\x8f\x1a\x1c\x9f\x9c\x74\x3b\xb8\x29\xbf\x22\xdc\x7c\xfa\xe4\xc9\xa3\xa7\xe0\xee\x46\x46\xb3\xc0\x24\x6e\xb5\xb0\x6b\x3e\x2b\x06\xf3\xad\xa5\x2f\x10\x73\x53\x8a\xb4\xc3\xad\x31\x65\xa7\xa2\x85\x27\x52\x11\xf3\xd5\x71\x58\x8b\xca\x26\x4f\x4f\x4f\xbb\x9d\x86\x40\x63\x05\x9d\x13\x9c\x01\x3a\xb4\x02\xd4\x18\x26\x50\x01\x54\x1b\x26\xd2\x4f\x86\xc4\x9b\x82\xbb\x89\xe3\xe3\xe6\xb3\x27\x0f\x1d\x76\x72\xfc\x14\xb7\x1c\xa7\x53\xa7\xa2\xab\x4f\xac\x1a\x2f\xf3\xb1\xa6\x3a\x20\x21\x30\x1a\xf5\x6f\x1c\x76\xe4\x63\x97\x9d\x9e\x76\x09\x6b\x52\xf1\xc9\x71\x8f\x9d\x9e\x3d\x9c\x9f\x9e\x76\x7b\x49\x93\x86\x98\x41\xf2\x99\x19\x8e\x1b\x27\x69\x3a\x67\xcd\x2e\x7e\xc8\x8e\x1c\xd6\x9c\x60\xab\xa1\x0f\x39\x77\x58\xda\x5d\x08\x99\x10\x9f\x9c\x93\x2b\x72\x2d\xa6\x7e\x99\x11\xf1\x19\xed\x90\xaf\x74\x44\x2e\xe8\x14\x50\x82\x79\xb4\xef\xab\x66\x18\x9f\x74\x40\xf3\xd4\x11\xf4\xda\xe9\x25\x27\x51\xaf\xd9\x4c\x70\x6e\xba\x13\x7c\x2a\x78\x4c\xa3\xf1\xd9\xb1\x56\x3a\x26\xd7\xea\x21\x72\xbe\xac\x74\xa3\x15\xd3\xe8\xb4\xd3\x8f\x9a\x5d\xb7\xd3\x8b\x4f\x96\x3d\x49\xa3\x01\x3d\x23\x1e\xed\x92\x94\x86\xbd\xf8\x94\x2e\x01\x64\x7e\xfd\x63\xe2\x38\x13\xea\x5c\x55\x50\x5c\xeb\xf1\x8f\x27\xdd\x4e\xff\xaa\x75\x7c\xec\x5e\xb5\x9e\x3e\x39\x39\x7e\xda\x17\x7f\xdd\xab\xd6\x4f\xcf\xe4\xc7\x4f\xcf\xdc\x10\x9f\xd2\x70\xb5\x9a\x9c\xde\x38\xce\xb8\x75\x86\x8f\x3c\xb1\xa5\x7f\x76\x90\x66\x70\x08\x93\xb3\x26\x9d\x3c\xf4\x48\xdd\x99\x9c\x38\x3e\x4d\x4f\xe8\x45\x7f\xe1\xa6\xa7\xf4\xa2\x39\xef\xcf\xdd\xb4\x75\x81\x71\x2f\x15\x93\xe3\x9d\xde\x38\xe3\x23\xe7\x9c\x86\x2d\xbf\x0c\xc6\x7b\x48\xcf\x7b\x17\xf4\xa5\x73\xd6\x0a\x08\x37\xf7\x6a\xcd\x2e\xe9\x50\x1a\x60\x72\xe3\x9c\x1d\x71\x7c\x3a\x6e\x7d\x2d\xd6\xfc\x2a\x88\x41\x64\x92\xb3\x1f\x28\x27\xd7\x5a\x4c\x3b\x6b\x36\x49\x87\x7c\x35\x4a\x9b\xb7\xce\xb5\x35\xfd\xff\xd9\x31\xfd\x64\x49\xce\xe0\xf6\x53\x47\x2a\xa5\x0e\xa3\xb7\xa0\x3d\x56\x14\xc1\xe9\x08\x82\xee\x04\x74\xaa\x54\x5d\xd7\xbd\x66\xd3\xc3\x62\xbc\x07\xde\x10\x9f\xc0\x3c\x5f\xca\x89\xfd\xea\x5c\xa9\xd9\x4c\x68\x4c\x2f\x35\x8c\xd8\x14\x98\xe1\x5e\x72\x72\xad\xe6\x36\xa5\xe3\x4a\x90\xa7\x94\x37\x1a\x57\x27\x29\x68\x25\xaf\x24\xbc\xb4\xc5\xe5\xf4\x44\xf8\xc8\x59\xd2\xa4\xd9\x2d\x0f\x6e\xd4\xa4\xa2\x1c\x7e\xb8\x14\x02\x41\x0e\x74\x30\x71\x0c\xc2\xbc\xd1\x68\x36\xa3\xd3\x71\xb1\xfa\x95\xf1\x68\x30\xa1\x11\xf1\x69\xd8\x83\xd9\x3e\xa7\xfe\x09\x0d\xfa\x0b\xd7\x3f\xa5\x01\xcc\xb6\xdf\x0a\x30\xee\xf9\x62\xb6\x2f\xe8\xa4\x75\x0e\xfb\xcd\x39\x31\x63\xf0\xc6\x39\x6f\x5e\xfc\x70\x46\x3a\x18\x63\x32\xa1\x37\xce\x85\x58\xac\x56\xf6\x44\x66\x05\xf4\xa5\x13\x91\x25\x49\x28\x8d\x31\x0c\x72\xb3\x99\xac\x9b\xcd\x88\x34\x9b\x26\x52\xcf\x65\xc6\x6f\x52\x7a\xa7\x02\x9a\xbb\xa8\xdb\x7e\xdc\xee\x22\xb2\x18\xa7\xc7\xee\x9d\xbc\x12\x76\x6f\x89\x54\xc7\xba\x6f\xd7\x44\x25\x7d\xd0\x49\xff\x21\xea\x9a\xad\xca\x6c\xec\xb2\xc8\x38\x55\xfa\x95\x79\x97\x80\x84\x8c\x80\x9a\x82\x9c\x5c\xe5\xae\x3e\xfe\x18\x05\x00\xfa\x00\x80\xe7\x06\xe0\x07\x47\xbb\x37\x7c\x5c\x30\x23\x50\x0d\xac\x89\x79\x32\xe3\xc4\x15\xc6\xed\xe9\x5a\x59\xea\x91\x88\x70\xc2\x30\x06\x9d\x98\xb6\x6c\x8b\xf1\xda\xc1\x05\x63\xbe\x47\x3f\x61\x87\x61\x12\x39\xdd\x27\xa2\x03\x5b\x2d\xde\x32\x48\x77\x5a\x63\x5c\xd1\xcf\x0a\x8b\xc3\x35\xd1\x97\x0e\x55\xe5\xab\xac\x1a\x55\xb0\x18\xa8\x29\xa4\xf1\xaa\xf1\xd4\xaf\xd1\x74\x19\xeb\xcc\xbf\xb9\x38\x5b\x57\x48\xaa\x05\x9b\x45\x49\x26\x54\xdb\xbd\x45\x4e\xf7\xc7\x67\x18\x9c\x9b\xa9\x74\x73\x0f\x02\x79\x3f\xee\x1a\x37\xc3\x78\x92\xdc\x96\xa8\x14\xb6\xb9\x08\xe3\x17\x37\x91\x7e\xb4\xa7\x0c\xd2\x08\xc7\xeb\x6c\xe0\x0b\x2f\xa9\x84\x0c\x4d\xf9\x6a\x85\x1a\x88\x44\xe0\xa4\x99\x22\x25\x39\xdf\xad\x7b\x96\x0d\xb6\x15\xdf\x6c\xb5\xea\x58\xce\x64\x8d\xbd\xb4\xba\xc5\x39\xfa\xd4\x3c\xba\xea\x31\x23\x82\x29\x33\xf3\x31\xed\xb2\x47\xbd\xa0\xd1\x28\xc7\xc3\x0d\xda\x33\xef\xf6\x1f\x6c\x29\x38\xd3\x98\x9a\x2f\x1d\xd7\xd3\x08\x4f\xe3\xd3\x4e\xa3\x11\x0a\x0e\xe3\x84\x74\x9c\x79\x89\x5c\xd0\x4e\x6f\x71\x12\xf6\x9a\xcd\x85\xf2\xe0\x09\x9c\x78\x4a\x46\xa0\x78\x37\xa2\x5c\x4a\xd0\x0f\xc7\x1d\x84\xc9\x8c\x8e\xcc\xf9\x33\xc2\xbd\xd9\x29\xed\xf4\x9d\x39\x1d\x65\x87\x96\x99\xe0\x30\xe6\x7b\x26\xd8\xa2\x2b\x4a\x90\x09\xa8\x85\xfd\x2a\x73\x91\x39\x26\x95\x66\x24\x13\x4c\x12\xc7\x23\x3e\xee\xc7\x8e\x37\xf0\x87\xb8\x2f\xfe\x95\x6c\x6b\x8a\x5d\xf1\x41\x07\xe2\x5f\x32\x1d\xca\xaf\xa9\xe6\x52\xde\x5a\x99\xe8\xe7\xc2\xd6\xad\x56\x15\x6b\x60\x20\x17\x41\x0d\x4a\x80\x69\x47\x89\x3a\xb4\xad\xb0\x31\x54\xdc\xcb\x3e\xd5\x6e\x4b\x79\x23\x31\x56\x63\xca\x5d\xbd\xa4\x10\xd7\x98\xba\x41\xea\x28\x8e\x43\xe6\x45\x59\x72\x1f\xf1\x64\xc1\x90\x8b\x26\x5e\x98\x32\x24\x4b\x29\x62\xd0\x85\x82\xf4\xe7\x20\x0a\x38\x93\x8f\xb6\x10\x32\x8f\xec\x55\x2f\xd1\xda\x0e\x6e\x53\xa0\xe5\x34\xbb\xe2\x2a\x92\xb4\x79\x78\x2a\x4d\x3c\x81\x05\x62\x52\xc1\x38\xfa\x81\xe3\x09\x76\x96\xb1\x59\x4f\xdf\x3b\x55\x5c\xca\x25\x8e\x87\x71\xe6\x5b\x2c\x76\x60\x2b\xec\x07\xf0\xb7\x92\x55\xa7\xcd\x4a\x30\x0c\x67\x32\x30\xc7\xee\xa6\x52\x02\x7a\xbe\x60\xbf\xb2\x60\x2a\xb0\xda\xd8\x92\x8b\xd0\x6f\x4b\x57\xa5\xe8\x3f\x70\x3d\x95\xbd\x4d\x94\xf6\xe5\x82\x33\x64\x07\xbe\xc1\x50\xc9\xbd\x79\x1f\x64\xea\x8c\xe2\xb0\x41\x32\x24\x89\xa5\xf6\x54\xb1\x7b\xac\x3b\xab\x3c\xfa\xf2\x90\x62\x47\x8a\xaf\x05\x51\x8d\xe1\x3d\x79\x66\x84\x1b\x0d\xae\x63\xd4\x64\xfe\xd4\xf6\xb5\xe8\x7e\xaa\x0c\xba\x9f\x41\x2c\x2e\xe7\xf8\x31\x26\x1e\x8d\xda\x91\x13\x60\x92\x8a\x84\xa7\x98\x8c\x21\x21\xc5\x96\x46\xc3\x3a\xc1\x22\xdf\xe3\x8c\x07\x33\x36\x0f\xc6\x5f\x58\x82\xe0\x14\xab\x55\xda\x91\x00\x8f\xda\xe6\x3b\x11\xcd\xdc\xbd\x38\xbb\x3c\xfb\x7c\x79\xf1\xf7\xbf\xbf\x79\xe9\x3e\x18\xf8\x1e\xf7\x5a\x3c\xbe\xba\x0a\x19\x45\x0f\x4c\x49\xf2\x00\x0d\x1f\xe0\x35\xf1\xe8\xdd\xeb\xb7\xef\x3e\x5e\xba\x16\x54\x82\xb4\xec\xbf\x26\x29\xbd\x7b\xfe\xea\xec\xed\xdf\x5f\xba\x68\x3c\x15\xe7\x76\x53\x2c\xc6\xe4\x6f\x6f\x3e\xbe\x77\xd1\x28\x5c\x24\x76\xea\x3f\x5e\xfe\xf2\xf1\x9d\x8b\xbe\xb0\xe5\x62\x5e\x48\x7f\x71\xf1\xaf\xb7\x90\xe3\xc7\x37\x91\x9d\xf7\xf3\xc5\xf3\x8f\x1f\x5c\x34\x89\xc7\x8b\xd4\x4e\x7f\xfe\xe6\xf5\xf3\x7f\x7c\x86\x1e\x9d\xbd\x7b\xed\xa2\x71\x18\x8c\xbf\x58\x05\xf4\x2f\xd4\x86\x7e\x7a\xf3\x00\x61\xf2\xf1\xdd\x8b\xb3\xcb\x97\x2e\x5a\xcc\xc5\xe0\xd9\xe0\x5e\xbe\x7f\x7f\xf1\xde\x45\xf0\x98\xd8\x4e\x7f\xf5\xfa\xc5\x4b\x17\x4d\x03\x3f\x57\xfa\xc3\xab\x8b\x7f\xb9\x28\x9d\xc6\x37\x56\xea\x9a\x8c\xe9\xe0\xee\xf9\x9b\xb3\x0f\x1f\x3e\xbf\x3d\x3b\x7f\xe9\x22\xdf\x5b\xa6\x88\xbc\x3d\xfb\xe7\xe7\x9f\x3f\xbe\x7d\x7e\xf9\xfa\xe2\xad\x8b\xce\x65\xc2\x87\xcb\x97\xef\xdc\xee\x9a\xe4\xca\xcf\xe2\x88\x4f\x4b\x35\x96\x5b\x6a\x2c\x99\x97\x6c\xaf\xd0\x29\xd4\xf0\xd9\xd8\xf3\xd9\x8e\x3a\x9d\xf5\x90\x84\xf4\x6e\x31\x77\x1f\xfd\x48\x1e\xfd\x28\x06\x0c\x11\x31\x33\xee\xe3\x0e\x79\xdc\x71\x11\xcc\x12\x09\xd9\x84\xbb\x8f\x9e\x91\x47\xcf\x5c\x24\x7e\x23\x02\x41\x2a\xdc\x47\x3f\x91\x47\x3f\xb9\x08\x3e\x10\xe1\xde\xc8\xfd\x89\xfc\xe4\x22\xee\x8d\x10\x91\x16\x54\xee\xf1\x33\x72\xfc\xcc\x45\xf2\x0b\x11\x16\x71\x96\xb8\xdd\x47\xa4\xfb\xc8\x45\xf0\x81\xc8\xdc\xbb\x62\x1f\xe7\xee\xa3\x47\xe4\xd1\x23\x17\xc9\x2f\x99\xfa\x42\x60\xf2\xe8\x31\x79\xf4\x58\xa6\xbf\x00\x6c\x40\x69\xeb\x76\x9f\x92\xee\x53\x31\x37\x81\xc0\x67\x1c\x47\x3c\x89\x43\xb7\xfb\x8c\x74\x9f\xc9\xe8\x4e\x49\x1c\x22\x02\x0e\xa6\xdc\x47\xc7\xe4\xd1\xb1\xab\xbd\x4d\x71\xf7\xc7\xc7\xe4\xc7\xc7\x2e\xe2\x88\xf8\x2c\x64\x9c\xb9\x8f\x9f\x92\xc7\x4f\xc5\x98\x89\x2f\xb4\x06\xbb\x78\xb1\xe4\x52\x44\xd4\xe4\x9a\x39\xd3\x53\x61\x06\x78\x48\xe6\xf4\x6e\x4d\x26\xe2\x1f\x9f\xde\x89\x6a\xff\x4f\x1c\x41\xb8\x44\xf5\x70\xa9\xde\x25\xbe\xb7\xfc\x67\xc0\x6e\x5e\x31\xcf\x67\xc9\xcf\x32\x19\x9d\x9f\x9f\x9f\xd7\x7e\xf9\xe5\x97\x5f\x10\x61\xb7\x3c\xf1\x64\x7a\x2a\xca\xa7\x9c\xc1\xbb\x1a\xb7\x4b\x66\x41\xf4\xc2\xe3\x4c\xa4\xce\xbc\x5b\xfd\x73\x91\xb2\xe7\xd2\xef\x9e\x5b\xef\x90\x71\x1c\x86\xde\x3c\x05\x03\xf7\x30\x1e\x7b\x21\x44\xcd\x83\x1f\x0e\x26\x6a\xeb\xd4\x55\xfd\x20\xf5\x46\x21\xf3\xc5\x37\x34\xc6\xa2\xfc\x77\x30\x8e\xa3\xd4\x85\x9e\x88\x3d\xba\x36\xf1\x5a\xe3\x30\x1e\x7f\x69\xc5\x88\x88\xf5\x64\x12\xbd\x90\x45\xbe\x97\x20\xb2\x98\xeb\x34\x2f\x49\xe2\x9b\x96\x21\xa3\x5c\xaa\x24\x26\xfd\xc2\xcb\x40\x99\xb2\xeb\x24\x8e\x5a\x92\xb0\x22\x76\xcb\x8b\x39\x9a\xbe\x62\xdf\x5b\x16\xdb\x6e\x81\x87\x3d\x81\xd9\x38\x64\x5e\xa2\xb3\xd5\x4c\x12\x70\x9e\xa6\x13\xe5\x8c\x8a\xa3\x55\x1c\xf2\x60\x2e\xba\x28\x41\xfe\x3d\xae\x71\xf1\x9f\xef\x2d\x0d\x9c\xe7\xe2\x4f\x4d\x06\x88\x08\xe2\xc8\x80\x02\xbf\x8a\x35\x3e\x65\x35\xcd\x8f\x65\x99\x73\x41\x1f\x2e\xfa\x00\x1f\x35\xf8\x92\x7d\x55\x19\xef\xf4\xc3\x36\x95\x25\x3a\xaa\xb2\xde\xb2\x5b\x53\x43\x02\xfb\x05\x50\x50\xb0\xc4\x87\x04\x25\x93\x0d\x24\x99\x21\x00\xc9\x0c\x80\x23\x13\x25\x98\x17\x40\xa2\x06\x90\xfc\x94\xa0\x74\x96\x01\xa6\x33\x05\x38\x9d\x09\x00\xed\x5a\xcf\x59\xc4\x17\xc9\xd2\xaa\xa6\x52\x64\x3d\x93\x0d\x15\x4d\x96\x18\xa8\x57\xf1\x42\xa0\x1e\x8c\xbf\xd4\xc4\x4f\x44\x82\x68\x9c\xb0\x19\x8b\xb8\xcc\x79\xad\x3f\x55\xb6\xcf\x72\xd9\x2f\x58\x3e\x5b\x80\x3c\x0f\xa2\x85\x20\x46\x00\x2a\x3f\x2c\xb0\x3a\x37\x03\xac\x8b\x18\xd0\xba\x48\x06\x5c\x17\x11\xe0\x3f\xb0\x71\x1c\xf9\x0a\xbc\xfc\xb0\xc0\xeb\xdc\x0c\xbc\x2e\x62\xc0\xeb\x22\x19\x78\x5d\x44\x6e\xc6\xef\x58\x12\xc4\xbe\x8b\x2e\xe1\xab\x26\x3f\xf5\xd4\x5d\xc2\xe2\x53\x13\x27\x3e\xcc\x9c\xc2\x02\xd4\x33\xea\x49\x76\x95\xb2\x0f\x20\x78\x00\xeb\x08\x7c\xf6\xb7\xe5\x87\xc0\x67\x8a\xf1\xa4\x17\x93\x7f\x31\xf6\xe5\x85\x5a\xf6\x22\x55\xaf\x1e\x91\x0e\x4b\xfe\x3a\x60\x37\xe7\x10\xe4\x55\xb2\x3b\xb1\x44\x46\x5e\xf2\x4e\x1c\x97\x04\xea\x82\x37\x02\x13\x41\x64\xb4\xe0\x1c\xf8\x83\xd8\x16\x2f\x61\x01\x89\x56\xa7\xf1\x0d\x2c\x99\xec\x43\x2c\x97\x7a\x77\x4d\x6e\x02\xff\x8a\x71\xed\x5d\x42\x30\xb5\xbb\x69\x9c\x04\x5f\xe3\x88\x7b\xa1\x8b\xbc\x05\x8f\x11\xb9\x66\x09\x0f\xc6\xe6\xdb\xd4\x02\x27\xdf\xae\x0c\x32\x04\x0e\x11\xdf\x33\xcf\x8f\xa3\x10\x1a\xfd\xc2\xd8\xfc\x62\xce\x22\xf1\x1b\x04\x87\x8b\xe8\xc3\x34\xbe\x11\x5c\x50\xbe\x09\xd5\x85\xd4\x05\x86\xfc\x5c\xfe\x2d\x88\xfc\xd4\x15\xbb\x9e\xa5\xf6\x30\x9e\x33\x64\xc3\x79\x0f\x17\xea\x2e\xec\xb3\xe0\x7e\xd2\x4d\x0c\x7c\x5f\x31\x7e\x1e\x43\xc0\xac\x7c\x68\x43\x09\xa2\x3d\x09\x22\x5f\xca\x25\x5a\x76\xc3\xed\x20\x75\x90\x7b\x1d\xa4\xc1\x28\x64\xda\x26\x53\x14\x70\x58\x7b\x1c\xc6\x11\x73\xe0\x6e\x96\x27\xde\x98\x3b\xcf\x08\xf2\x91\x7e\x68\x52\x28\x04\x61\xe5\xe5\xbb\x75\xb9\x53\x38\x98\xa0\x19\xc2\x98\xd4\x3b\x6b\xc9\x7b\x77\x76\x4e\x22\x2b\x26\xcb\xc1\xe4\xbf\xd1\x53\xd1\x89\x6d\x9d\x34\x23\xb1\xb9\xa7\x7a\xab\xaf\x2d\xe6\xe8\x0f\x3e\x9d\x5d\x82\x96\xdb\xa6\xb3\x4b\xd0\xb4\xd4\x2d\xd8\x33\xff\x98\x1d\x53\x38\x6f\xec\x93\xdd\x71\xd3\x31\x10\x25\xff\xdb\xdd\x51\x86\xeb\x5b\xf0\xf5\x35\xbe\x52\xd0\xfd\x63\x22\xac\x26\xc0\xe0\xaa\x04\xe9\x3f\x26\xb2\xf6\xe8\x9e\xdb\x18\xbf\xd8\x8b\x57\xfd\x37\x07\xd8\xa0\x2b\x4f\x2f\x15\x0e\x58\xac\xc6\x8c\x41\x43\xe0\x0b\xd9\xbb\xde\xc1\x6b\x7d\x16\x3a\xbc\xa2\x61\x03\x2a\x10\xe4\x7e\x10\xf2\xbd\xb6\x54\x07\x1b\x7a\x6d\x97\x7f\xd0\x1e\xf1\x48\xaa\x0c\x3c\x68\x8a\x22\x5b\x5a\x41\xc3\x07\xb8\x0d\x47\x70\x8d\x62\x85\xff\xa3\x4a\xa4\x60\x68\x8b\x93\xa5\x60\xa8\x53\xd8\x7e\x80\x40\x3e\x57\xad\x8b\xaa\xa3\xc5\x95\xd8\xd7\xbd\x30\x8c\x6f\x5e\x47\xf3\x05\x97\xf2\x94\x7d\xd2\x11\xf2\xd3\x6b\x31\x77\xd7\x5e\x98\xda\x19\x42\x98\xb4\x8f\x40\xe6\x5b\xc8\x43\xfa\xbc\x04\x90\xcf\x17\x21\x0f\x7c\x7d\x0e\xd3\x1f\x1f\xd8\xdc\x03\x97\x18\x2e\x22\x68\xbd\x76\xbc\xb6\x47\xc6\x6d\xaf\xa0\xc5\x97\x2e\x4c\xb2\x78\xde\x99\x96\xf1\xd7\xff\x3f\xbc\x7b\x28\x79\xc4\xb8\x64\xb3\xb9\x90\xc9\xe3\x59\x10\x2d\xd2\xda\xdf\xe2\x98\xa7\x3c\xf1\xe6\x8f\x1f\xa4\xb5\x84\xfd\x67\x11\x24\x2c\x55\x95\xdb\xea\xaf\x79\xd9\x1b\x44\xe3\x70\xe1\x33\xbf\x26\xa3\x64\xd4\xb6\xc1\xfa\xff\x79\xd7\xde\x07\x78\x4a\xdd\x96\x4f\x8f\xca\x8a\x33\xd5\xca\x24\x6a\xff\x0a\x56\x84\xda\xfe\xa1\x86\xf0\xa0\x33\xb4\xac\x21\xc0\xab\xc6\xa0\x33\x3c\x39\x6e\x34\xf8\xa0\x3b\x3c\xf9\x69\xb5\xea\xaa\x48\x46\x8d\xc6\x4f\xf0\xab\x3b\x14\x79\xc7\xc3\x93\xee\x6a\x25\xd2\x4f\xe9\xe3\x7b\x76\xde\xe3\xb5\x90\x79\x29\xd7\xbd\xbf\x7e\xd4\xee\xb4\x3b\xb5\xd1\x42\xa4\xa7\x69\x8d\x4f\xbd\xa8\x76\xfd\x58\x24\x22\xbc\x16\x22\x43\xd5\xf8\xcf\x80\x0e\xef\x89\x82\xac\xdc\xfe\x35\x6d\xd7\xce\xf5\xcf\xef\x30\x0b\x52\xeb\xa7\x80\xab\xfb\xc8\xc2\x30\x47\x62\x98\xe9\x71\xa3\x11\x89\x71\xee\x3e\x5b\xad\x22\x18\xcc\x47\xdf\x3a\x98\xa6\x4b\xb5\xeb\xe3\x76\xf7\x59\x79\x40\x1f\xc9\x01\xb5\x34\x95\xda\x58\xac\xca\x05\xcf\x87\xe5\x6c\x14\x87\x8d\x06\x4a\xe1\x47\x29\xa7\x1d\x70\xe9\x51\xa6\x5f\xf5\x3a\x45\xdf\xf8\x55\x3a\xe2\x68\x34\xb6\x35\xc8\xc0\xd9\x15\x4f\x16\x10\xf6\x94\x52\x93\x5e\xd7\xbf\x33\xbd\x6f\x5f\x63\xe7\x66\x77\x8c\x7c\x9b\xff\xb2\x3f\xa6\x2f\x4e\x35\x30\x06\x6f\xe5\x1d\x51\x6b\xc9\x1b\x0d\x56\x11\xc4\x9c\xc9\x20\xe6\x7c\xbd\x76\x2c\xb7\x06\x96\x43\x26\x27\xe7\xc4\x80\x6f\x70\x32\xf0\x1c\x3c\xe6\xd4\xc6\x5e\x18\xd6\xbc\xda\x38\xf4\xd2\xb4\xe6\xa5\x35\xcf\x60\x83\xa4\x8b\xb5\x9c\xfb\x46\x6d\xc7\x57\x56\x70\x07\x54\xee\xd5\x76\x9a\xb7\x55\xab\x5d\x28\x3d\x7c\x00\x6a\x6b\xa9\xd6\x8e\x9b\x5a\x99\xbd\x26\xe3\x92\x2e\xbb\x19\xd8\x3a\xec\x66\x90\xd7\x5d\xcb\xef\xbc\xce\xba\x19\xe4\x75\xd5\xcd\x60\x83\x8e\xba\x19\x34\x2d\xa5\x74\x51\x27\xdd\x0c\xf2\xba\xe8\x66\x60\xeb\xa0\x9b\x81\xad\x7b\x6e\x06\x6b\x12\xfe\x9f\xa4\x73\x5e\xfc\xa9\x73\x2e\xe9\x9c\xe7\x07\xe9\x9c\xb5\xba\x79\x4d\xa6\x7f\x1c\x9d\x73\xf2\xa7\xce\xf9\x4f\x9d\xf3\x9f\x3a\xe7\x3f\x75\xce\x7f\xea\x9c\xff\xd4\x39\xff\xa9\x73\xfe\x03\x4c\xe7\x9f\x3a\xe7\x3f\x75\xce\x7f\xea\x9c\xff\xd4\x39\xff\xa9\x73\xfe\x3f\x54\xe7\xdc\x2b\xea\x7d\x2c\x7d\xd5\x48\xea\x71\x22\x69\xa0\x3f\x52\x6e\x71\x3e\xc7\x73\x91\xab\xbc\xec\x7c\xbe\x62\xfc\x42\x26\x38\x5c\x97\x60\x21\x08\x60\x94\x11\x8b\xf2\x4d\xdc\x73\xf9\x29\x0f\x8e\x9c\xf9\x59\xba\xee\x80\xe5\xfa\x75\x11\xa5\x8c\x67\xf1\x52\xb4\xf9\xa9\x09\x59\x2e\x87\xd9\x7c\x2e\x52\x76\xfc\x18\x06\xc4\x76\x68\x3b\xe6\x0b\x2f\x94\xed\xe5\x9c\xcc\x26\x29\x53\xc7\x57\x2b\x59\x45\x23\xfd\xa7\x12\x2e\xad\x9c\xf3\x20\xd2\xa9\x6f\xc1\xd8\x98\x2a\xb4\x3e\x07\x82\x2e\xb4\x06\x6d\x64\x99\x84\x8a\x9c\xe2\xbb\x58\xe5\xd5\x49\x0f\x12\x68\x78\x1c\xc4\xbd\xe4\x8a\x71\x6d\x35\xd9\xcb\x17\x11\x2b\x40\xe5\xc8\x5d\x4d\x06\x03\xc9\x15\x52\x41\x0b\xea\x2a\x48\x4e\x56\x0a\x45\xcc\x4b\x58\x2a\x8d\x93\xfb\x79\xc0\x72\xb9\x29\xd0\x2e\x73\x8c\x8b\xa6\xca\x29\x1b\x74\xa4\xa7\x1c\x7b\x35\x14\xa7\xae\x98\xaf\xf9\x12\x78\x35\xe6\x2c\xf2\x1d\x3d\x99\x9a\x8e\xb2\x16\xbc\xcb\x58\x93\x92\xc6\x23\xd6\xa4\x65\xd7\xc0\x66\xd8\x03\xae\xc8\x48\x8a\x58\xd9\x10\x98\xee\x2b\x76\x21\xe3\xa0\x58\xe3\xd8\x68\xe4\xcb\xb5\xaf\xbd\xd0\xb8\xbe\xd6\x6f\xb9\x65\x33\x29\xe3\xff\xf4\xc2\x85\xe2\x04\x9f\x81\x6e\x60\xd1\xbe\x30\xec\xa1\x0c\x02\x93\x8e\x92\x30\x34\xd6\x6d\x4b\xa5\xd1\x68\x54\xa2\x9a\xc5\x39\xca\x80\x7a\x9c\x27\x0e\x82\x77\x07\xd3\x38\xf4\x05\x47\x54\x7d\x2a\x22\x56\xd1\x0e\xe9\x14\x16\xad\xf2\x75\xae\x20\x48\x31\x7a\x4d\x72\x24\x2b\xf5\x8b\xa5\xb0\xf9\x79\x86\xf6\x79\x12\x84\x21\xf4\x5f\x37\x20\x12\x04\xcf\x82\x80\x0a\x39\x80\x1a\xcd\x62\xd4\xd6\x2c\xa8\x0c\xac\xf2\xbe\x58\x69\xae\x4d\x6e\x7c\x28\x5f\xdc\x8a\xdd\x35\xef\x9e\xdd\x74\x27\xcf\xe7\x1a\x8d\xae\x1e\x51\x09\x42\x4f\xa4\x93\x50\x27\xa9\x5c\x77\xa0\x4b\xc5\x4d\x44\x50\xe6\x8f\xcd\x3c\x76\x2f\xb1\x0f\x28\x48\x90\x55\x16\x91\x42\xc2\x11\xf9\x94\x3e\xfc\x2b\xf8\xf5\xb6\xd7\x4e\x16\xf0\xba\x8b\x2b\xd9\xa0\x5d\x00\xbb\x4e\x05\xf7\xdb\xc9\x46\x37\x2c\x80\x22\x89\x26\x26\x56\x8a\x48\xe1\x49\x70\x75\xc5\x12\xb3\x30\x0a\x3c\xdc\x1e\x26\xa2\x6b\x7e\x8e\x62\x1e\x4c\x96\x2f\xaf\xc5\x12\xbf\x13\xb3\xec\x8e\xda\xf0\xd5\x96\xea\x71\xa2\x77\x9d\x38\x04\x15\x9d\x1b\xad\x15\x72\xb2\xbe\xa4\x31\xe9\xf5\x9f\xd1\x4c\x78\x51\xea\xbf\xfc\x1c\xcb\x44\xdd\xf4\xd4\x4b\x2f\x95\xba\xd2\xc1\x8d\x06\x6b\xf3\xaf\x85\xf2\x5a\x9b\x89\x49\x46\x0d\x3a\x4f\x9f\xc7\x44\xc5\x19\x28\x4e\x52\x07\x5e\xa1\x27\xf1\x22\xf2\x9d\x2c\x11\x1f\x55\x57\xc4\x0f\x37\xa4\xb7\x53\x50\x94\xa4\x8e\x59\x72\x41\xfa\x4f\x71\x80\x07\x4f\x66\x3a\x62\x80\xa1\xec\xfc\xde\x68\x66\x11\x72\x34\xf9\xa1\x5f\x7e\xf9\xe5\x97\xd6\xf9\x79\xeb\xc5\x0b\x54\x62\xb4\x66\xd0\xc8\xf6\x15\x51\x5e\x0d\xa7\xdd\xec\x0e\x2a\xa6\x9d\x5e\x7c\x52\x2e\xd3\x8b\x9b\x4d\x9c\x34\x29\x52\xee\xfb\x14\xde\xf1\x70\xcb\xd2\xc8\xe3\x51\x96\x37\x7a\x09\x4d\xaa\x96\x89\x8c\x11\x9b\xd0\xfc\x00\x6d\x6e\xa8\xf7\x3b\x51\xb9\x5a\x7d\x4a\xb4\x30\x34\x7b\xd0\x12\x28\xf4\x49\x4f\x99\xb5\x2c\x64\xef\xf3\x63\x67\xa9\x7f\xfa\x87\xb4\xc6\x6c\xc0\xee\x5e\xc3\x84\x50\xd3\xe2\x35\x7d\xed\x2c\x76\x8f\x69\xc0\x7b\x0d\xf0\x66\xc4\xe1\xf6\xaa\x02\xef\xc2\xee\x21\xef\xd9\xb2\xbd\x23\xf3\xcc\xe0\xf0\xb6\x94\x9a\x70\x6e\xe7\x25\x09\x8d\xfa\x95\x5b\x75\x84\x41\x29\x97\x3b\x6d\x65\x9b\xa8\x98\xf6\x76\xca\xe3\xf9\xeb\xd9\x8c\xf9\x81\xc7\xe1\x9e\xd4\xbb\x92\x01\xa6\x30\xa9\x77\x0b\x98\x65\x92\x6f\x0e\x3b\x2b\xc8\x4e\x26\xf1\xdc\xad\xc9\x94\xf0\x62\xdf\x2c\x5e\x56\xf1\x82\xd6\xcc\x5f\xd2\xe6\x5f\x8b\x12\x43\x89\xdb\x99\x87\xaa\x9b\xb2\xc1\x03\x5d\x75\x66\x01\xad\x20\x7d\x29\x8f\x16\x45\xf7\x8c\x95\x4f\x38\x59\xc6\x56\x2a\x2f\x77\x0d\xb4\x1a\xbb\x9d\xb3\x31\x4f\x6b\x5e\x2d\x0d\xa2\xab\x90\xd5\xc6\x53\x4f\x1c\xaf\x59\xa2\x9c\xc9\xd7\xe6\xda\xdb\x3c\xc2\x3a\x60\xb9\x7e\x1b\xb8\xd4\x4f\xfb\x5a\x86\xab\xdb\xe4\x98\xb9\x01\xfa\x05\x61\xf9\x22\xf0\x7c\xdf\x1a\xe7\xba\x86\xbf\xa3\x46\xee\x1d\x74\x56\xdf\xd7\xf5\xa7\x08\x02\x4e\xa3\x57\xf7\x83\x33\xd5\x70\x66\xfb\x62\x3e\xd3\x35\xd2\x7d\x6b\xa4\xba\x86\xa7\x70\x3d\xbb\x1f\xae\x1e\xc2\x85\x27\x95\xf5\xee\xba\x9a\xbc\x37\x45\x3e\xcb\xe8\x0c\xba\xae\xd4\x22\x76\xea\xac\x32\x35\x45\x15\xeb\xe8\x45\x41\x66\xdd\xd4\xd0\xb2\x12\xe4\x79\x65\xaa\x5f\x6a\x28\x77\x48\xd9\xeb\x60\x87\x49\x44\xef\xd6\x59\x38\x38\xc1\xef\x54\xfd\x46\x23\xf7\x69\x1b\x4a\x48\x73\x8d\x86\x74\xd3\x92\x71\x91\x88\xe4\x6a\x80\xe3\x3d\xe6\x8d\xa7\x79\x01\xa8\xec\x63\x25\x91\x16\x0e\xa8\x69\x79\x3e\x6c\xf3\xf8\xe3\x7c\xae\x27\xb6\xc9\x4c\xfc\x51\x6b\x7b\x1d\x24\xc3\x7e\x34\x60\x43\xf8\xe5\x4a\x8d\x47\x4d\x24\xac\x31\xf8\x81\xca\x8d\x8d\xc5\xe9\x73\x7c\x83\xb5\x45\x3e\xa5\x34\xbf\x63\x09\x09\x4c\x4a\x28\xf2\x6f\x3b\x48\x3f\x40\x0c\xa4\xb6\xda\x0b\xf0\x6a\x55\xd7\x45\xea\x26\x55\x4f\x93\x1e\x64\xbd\xef\xb0\xe2\x54\x09\x41\xe9\x63\xe1\x28\xc3\xf0\x1d\x5a\x22\xf3\x7a\x17\xe4\x2b\xb4\x7b\xa7\x92\x96\x17\x44\xee\x44\x2e\xcb\x14\x2d\x79\x91\x4c\xef\xee\xa5\x2d\x4c\x1c\xb3\x40\x97\x60\x23\x92\x3f\x54\x19\x3f\x56\x45\xf5\x03\x08\xa7\x33\xef\xd6\xa9\x56\x41\x10\x99\x1f\x44\xce\xa3\x4a\xf5\x45\x93\x99\x7d\x7a\x93\x5e\xb1\x76\x5a\xf3\x83\x6b\x84\x95\x12\xaf\x3d\x09\x42\x2e\x36\x72\xab\x48\x0b\x35\xc3\x41\x15\xf8\x61\x3b\x33\xdf\xc0\xea\x38\x59\xec\x7d\x90\xbe\x8e\x5e\xd8\xd7\xf7\x15\xae\x84\xeb\xe6\xd0\x9b\x9d\x62\xed\x2a\x83\x6a\x99\x78\x58\xd1\xd4\xcb\xe8\xd0\x96\x6c\x53\x82\x03\x1a\x7a\x61\xeb\xe3\x0e\xeb\x13\x54\xb1\x9a\x7a\xb5\xb5\x2b\x07\x34\x60\xab\x04\x77\xc1\x87\xc3\x09\xb5\xed\xbd\x94\x1e\xbb\xad\x0f\x2e\x38\x1f\x49\x6f\xf3\xf4\x34\x1a\x08\xac\x22\x23\x7d\xdc\x28\xcd\x79\x16\xd0\xad\x0a\x98\x3d\x03\x16\xac\x7a\x06\xcc\x9e\xd5\xed\xb0\x94\xe9\x89\x60\xae\x41\xfa\x37\x30\x9e\xac\x2e\x91\x45\x69\xac\x04\x23\xcd\x56\x24\x98\xb3\x09\xd7\x61\x36\x8b\x05\xb6\x43\x29\xdf\x64\x5b\xdd\x6b\x95\x8f\xa7\xe5\xf2\x66\xc7\x15\x9c\x7f\xe9\xe0\x7d\xe6\x04\xa6\xbf\xd1\x10\xbb\xaa\x68\x69\xb5\x42\x33\xfd\x23\x85\x1f\xb8\x6a\x9e\xa0\xd6\x5e\xf3\xb4\x0f\xfc\xf2\xdc\xed\x01\xbf\x52\xf7\xbd\xb5\x21\xbd\xbf\x49\x68\x55\xbb\x61\x35\x50\x6b\x8f\x94\x87\x73\x20\x16\x7e\xc3\x98\xd4\x76\x0f\x3a\x52\xcb\x32\xe8\x0e\x4d\x24\xc2\x84\xd6\x3b\xe2\x14\x80\x31\x49\x4c\x27\xd6\x7a\x2d\x16\xd6\x57\xfe\xe8\x51\xe5\x3d\x3d\xaf\xec\x33\xe8\xe6\x2b\xf6\x93\x76\x90\x2a\x5d\x2a\x03\x17\x3a\x45\x0d\x2b\xc3\xd8\x65\x5b\x61\x38\x0c\x93\xa2\x88\xaf\x8c\x11\x2b\xc2\xab\x4a\xe7\x94\xd4\x84\xc0\x55\x3f\x62\xfd\x23\xd0\x3f\x3c\x3a\x18\x92\x94\xde\xad\xc9\x98\xb2\xf6\xcd\x34\x18\x4b\x97\x64\xe0\x1e\x61\x32\x18\x0f\x29\x9a\x23\x32\xc1\x93\x82\x63\x04\x47\x90\x07\x9a\x8b\xf9\x9b\x0c\xa2\x61\xa3\xe1\x78\xda\x3d\x02\x51\x88\x73\x27\x22\xdd\x0e\xae\x53\x3a\x6e\x34\x9c\x74\x10\x0d\x69\xbd\xa3\x1c\x57\x01\xf8\xe2\x71\x59\x9a\x47\xe0\x12\x41\xe9\x9c\x4a\x14\xaa\x62\x7e\x56\xd6\x96\x58\xc6\x34\xb2\x6c\xd7\xb5\x8e\x98\x52\xea\x19\x57\xe1\x0b\xd1\x6b\x4a\xe3\x41\x9c\x85\xbc\xd1\x6e\xd2\xea\x62\x30\x4d\xfa\x71\x2f\x39\xa5\x9d\x5e\xd2\x6a\x61\x30\x93\x5d\x0c\xe2\x41\x32\x1c\x06\x51\x2d\xc5\xf8\x2e\x10\xf4\x2c\xc3\xbc\x04\x13\x47\x7a\xd6\xd9\x84\x99\x0e\x07\x03\x0e\x2c\x8d\x3b\x25\x88\x40\x07\xa7\xd9\xfc\x21\x96\x41\x80\x63\x16\xf1\x17\x2a\xf4\x78\x69\xbb\x06\xc3\xd5\x1c\x5d\x4c\x06\x6a\x7a\x87\x14\x25\x88\xf8\xe6\xb3\xd1\x70\xb2\x0f\x5a\xef\x92\xfb\xb5\x08\x1c\xee\xef\xc1\x35\x8b\x0a\x9b\xb6\x39\xea\xdf\xad\x55\x8c\x0b\xe3\x28\x50\x2d\xf4\xdc\x32\x96\x77\xad\x49\xa5\x86\x1e\xf7\x58\xb6\xad\x81\x33\xfd\x0d\x1b\x3d\x44\xa4\xc2\x98\xd4\xeb\xb6\x13\xfb\x28\x8b\x3e\x51\x14\x7b\x33\xec\x0b\xfb\xb4\x85\xfd\x56\xb4\x23\x90\xac\x44\xc3\x07\xb6\x6b\x5f\x7e\x6c\x70\xbe\x6a\x08\x46\xf6\x75\xb5\x42\x6f\x6a\x6f\x2e\x11\x91\xf4\xd4\x2b\x9d\xf6\x2c\x77\x95\x47\xce\xa7\xc1\xe0\x7f\x3e\x0d\x86\x0f\x87\x78\xe5\x7c\xfa\x84\xfb\xce\x9b\xcb\x0f\xab\x37\x97\xab\x37\x6f\xfa\xe2\xff\xab\xf0\xae\x4b\x1e\xaf\xf1\x86\xc8\x13\x3c\xbb\x34\x52\x1a\xdc\x17\x70\x1e\x6a\x87\x71\x74\x25\xe6\x45\xb6\x08\x5c\x8d\xad\x31\xae\xb8\x94\x2b\x6c\x3e\x96\xb9\x69\x7f\x73\x96\x3a\xc7\x60\x57\xeb\xc9\x6d\x90\x66\x37\x65\xe0\x25\x71\x73\x7e\x59\xdd\x55\x5d\x5e\x3a\x95\x29\x15\x2e\xdd\x46\x1e\x72\xae\x3e\xe9\xaa\x96\x72\xe5\xb3\x38\x78\x83\xf6\xc3\xfe\xf0\xe8\x0a\x6e\x1d\x6c\xdd\xc1\x49\x97\x54\x1d\x77\xf5\xc9\xa2\x7c\x7d\x79\x8c\xcb\x15\xce\xb7\x55\xe8\x56\x54\xf0\xb7\x55\xd0\xba\xf0\x43\x4f\x35\x55\x95\x6c\xad\xac\x3e\x05\x16\x6e\xc0\x34\xc1\x91\x4e\x91\xc7\x5c\x31\xfe\xc6\x4b\xf9\x3b\x71\x9c\xf1\xb7\xea\x0a\x94\xe2\x73\xaa\xee\xb6\xf3\xb5\xc0\xcb\xa6\x53\x12\xa6\xab\xcb\x6d\x6f\xc2\xec\x10\x79\x58\x66\x63\xaf\xd8\x9a\x55\xa0\x5a\xa3\x60\x34\x12\x04\x5b\xad\xb4\x5b\xaa\x7e\xe2\xe8\x7b\xc7\xdc\x4d\x49\x3f\x69\xf3\xaf\x0e\x2b\x2f\x09\x52\x75\xd9\x52\x48\x34\xb6\x9a\x64\xc3\x4d\x8b\x9b\x7c\x33\xe8\x0d\xf7\x3b\x7c\xdb\xfd\x0e\xcf\x8f\x9d\x7a\xcd\xb1\x61\xd8\xe5\xf9\x57\x45\x31\x82\xa3\xae\x8a\xc0\x58\x71\x09\x9a\x37\xdb\x2c\xaa\x41\xc5\x90\x7b\xc9\xd5\x42\x4c\x53\x5a\x70\x5e\x97\x47\x35\x0f\x07\xbc\xe0\x69\x6f\x66\x96\x0e\x75\x83\xde\x34\x57\xb7\xe6\x60\x4b\x7f\xaa\x80\xe4\xf4\xa5\xdb\x5a\xa6\x05\xf9\x2f\xae\xd0\x5b\xef\xe8\x58\x41\x9b\x9d\x6b\x4d\xba\xa0\xcf\x07\x00\x97\xdb\xd8\x86\x07\x3f\xfa\x5a\x1f\xcb\xf1\x52\x9f\x59\x77\x6a\xe9\x34\x5e\x84\x3e\x04\x1a\x8d\x6a\xca\xb9\x1a\xee\x6d\xb1\x21\xd0\xef\xde\x60\x5f\xdb\xa5\x15\x83\xeb\x67\xad\xe5\x8a\x06\x6c\xd8\x68\x88\x7f\x1d\x8e\xd7\x45\xe9\xa4\xa0\x40\x52\xef\x9a\xc0\x2d\x5c\x87\xec\x24\x84\xd2\xc5\x76\xf5\x2d\x5d\xdf\xe6\x0b\xd2\x23\xdb\x8e\xbb\x34\xbc\xe1\x66\x09\x5e\xf7\x29\x87\x95\x8d\x46\x85\xbe\xbe\xd1\xa8\xe7\x8e\x14\x10\xdf\xc6\x9e\x37\x50\xbd\x55\xcf\x9a\xbc\xff\xb2\x66\x49\x3f\x56\x8c\x23\x56\x8b\x27\xb5\x01\x9c\x1d\x4c\x60\x58\xf9\x18\xb0\x16\x27\x00\x73\x68\x48\xd4\x30\x6d\xc3\xb3\xac\x01\x2a\x1f\x5d\x8a\xb7\x26\x15\xb1\x97\x0f\x5a\x93\xb2\xfe\x06\x8f\x94\xe2\xb0\x59\xb1\x42\x57\x2b\x88\xfb\xb5\x69\x60\xb4\x6f\x7c\xfb\x86\x43\x5e\x68\xc4\x89\x5e\xab\x2e\x38\x2b\xb4\x06\x0f\x35\x59\x71\xd1\xaa\xae\xb1\xb2\xdd\x92\x39\xb0\x17\x4c\x5e\x0a\x0c\xb0\x74\x99\x74\xe8\xe0\x68\x08\x1b\x86\xa7\xba\xfb\x11\xbb\x91\xec\xba\xdc\xff\xcd\x0c\xca\xe0\xca\x8a\x0b\xae\xf4\xea\xe8\xfe\xdd\xa9\x00\x76\x50\xcf\x2a\xea\x1f\xd6\xcb\xaa\xde\x14\x3a\x6c\x0b\xaf\xf7\xef\xa9\x0d\x05\xb8\x71\x57\xb2\x80\xc2\xea\x06\xe7\x8b\x1b\xa8\xd8\x06\x61\xf7\x32\xaa\x79\xa2\x96\xa0\xe5\x02\x0d\x97\xba\x9b\xeb\x4b\x85\x44\xb0\x1f\x19\xfb\xd5\xda\xe2\xdd\x7b\xd4\x16\x15\x65\xdf\xec\x1d\xc5\xcd\x2b\x5f\xae\x64\xb4\x65\x67\xc2\xc0\xf2\x3d\x5a\xab\xb0\x1a\xa8\x77\x2a\x36\xc9\x6d\xd3\x91\x03\x58\x35\x1f\x5b\xa8\x2e\x87\x8b\x1e\xf2\xdc\x29\x3b\x33\xd6\xac\x52\xc2\x96\xf1\x2f\xd0\x6c\xa5\x92\xfd\xd0\x09\xb2\xa1\x6c\x99\x1f\xbb\x58\x71\x7a\xec\xbc\x6d\xb3\xb3\xbd\x73\x87\x4f\x8e\x0d\xef\xb0\xb9\xc9\x61\xb2\xe7\xd4\xec\xa0\xad\x12\x03\x2d\xe8\x90\xbf\x89\x7f\x16\xf5\xd1\xca\x4c\xad\x83\x73\xd2\x6c\xce\x63\xf6\x26\x63\xbd\x0a\xcc\x36\x4f\xc5\xde\x6c\xab\x0c\x75\xd7\x84\xec\xa1\xa6\x07\x45\x88\xbf\x18\x33\xa7\x20\x36\xca\x8e\x39\x9c\x1a\x55\x25\x27\xdd\x0e\xc6\xa7\x4f\x57\x2b\x7e\xd2\x59\xad\x82\xf4\xad\xf7\xd6\xe1\xb8\xcf\x5c\x19\x51\x35\x8b\xa2\xca\xc1\x5e\x4d\x87\xce\x60\x78\x8d\xc9\x60\x88\xdb\x69\x9c\xf0\x92\x19\x57\xf6\x56\xd6\xe8\xd2\x2b\xac\x83\x4c\x24\x6d\x4e\x3b\x3d\x5e\x65\xc7\xc5\x9b\xcd\xbc\xc7\x01\xa3\x98\x97\xca\xb0\xbc\x18\x09\x0f\x33\x7a\x15\xe6\x6a\xd6\xbb\x0d\xf2\xa8\x0b\xaa\x77\x98\x0c\x74\x99\x04\xcc\xaf\x3d\xea\xd6\xe0\xa1\x6a\x8d\xc7\xb5\x49\x10\xf9\x35\xaf\x26\x23\xbe\xc0\xb5\x73\x2f\x6a\x36\xd7\x5b\x0e\xec\x7c\x28\x84\xbc\x6d\x34\xad\x2e\x5b\xee\x4f\xc8\x0a\x40\xbf\x32\x55\x0b\xcf\x6e\x65\xee\x16\x3a\x87\xe9\xdd\xda\x60\x35\x81\x57\xf8\xa5\x17\x82\x67\x14\xdf\x20\x25\xb8\x4b\xd9\x19\xbe\xaa\x94\xfe\x18\xe7\x22\x04\x97\xa5\xe6\x5e\xf1\x26\xaf\x72\xe9\x28\x24\x1d\x5c\x7b\x0e\xc7\xad\x28\xe6\x35\x00\x05\xf3\x96\xad\x19\x57\x0a\xab\xf7\xbf\x6b\xdb\xd9\x7e\xbe\xbd\x5a\x90\x6a\xbf\x27\xf6\xf9\x50\x43\x13\xe8\xf0\x2d\x86\x69\xbd\xea\xa9\xe0\xbd\x82\xe7\x8d\xf2\x6a\x89\x9a\x4d\x7c\x9f\x75\x98\x33\xb3\x1c\x44\x43\x73\x67\xc8\x76\x19\x6b\x67\xd7\x88\x0a\x6b\x63\x4d\x60\xae\x1d\x8d\x7e\xcd\xb2\xb2\xdf\xf0\xdc\xb0\x64\x96\xaa\x5e\x1d\x6e\x5d\x5b\x72\x50\xbf\x61\x6d\x49\x00\xc5\xb5\x25\x53\x37\xad\x2d\x99\x7b\xcf\xb5\xa5\x30\xfe\x63\xaf\x2d\x89\xe4\xfd\xd7\xd6\x9e\x17\xd0\x3b\x9b\x2f\x2f\x2d\x4f\x40\x2b\xac\x2c\xe5\xa5\xe1\xc0\x95\xa5\x26\xe2\xf7\x5d\x59\x8a\xd1\xec\x5e\x5a\xe6\x9e\xbf\xbc\xb4\x34\xb3\xda\xba\xb6\xcc\x7b\xe5\xfb\x2c\x2b\xeb\x15\xc6\x37\xc8\x5f\x19\x90\xfe\xc6\x9c\x0d\x4b\xcc\x2a\xb1\xed\x05\x85\x8d\x27\x44\xd6\xde\xb0\x82\x18\x85\x35\x24\xb5\xcd\x7a\x0d\x81\xf6\xa6\xb8\x7e\xdc\x42\x02\xfb\x3e\x0b\xca\x42\xf4\x80\x45\x55\x14\x77\xf6\x02\xae\x80\xa5\x29\xf3\xc5\x7a\x51\xe1\xac\x6a\xde\x78\x1c\x27\xbe\x38\xf0\xf3\xb8\x66\xde\xa2\xd5\x52\xc6\x17\x73\x29\xef\xc0\xa5\x67\x5a\x3e\x8f\x59\x63\xcc\xc9\xe6\xe7\x3a\x9a\xa0\xf3\x8f\x75\x56\xab\x4a\x4b\x6e\x88\xb1\x99\x25\xe4\x5f\x1f\x1d\xf4\x44\x28\x4f\xb8\x52\x4d\x7f\x7f\x9a\x95\xf5\x61\xec\x13\xfb\xe6\x6f\x13\xa7\xd2\x2e\x5f\x6a\xf2\x87\x98\xb9\x26\x12\xc3\x2e\x26\x37\x8c\x3d\x9f\xf9\xb5\x49\x12\xcf\xb4\x3e\x51\x16\x4b\xeb\xa5\x51\x56\x88\xb3\xde\x5e\x42\x71\x41\xbe\xdd\xf6\xf2\xa4\xc8\x3e\x76\xbf\x52\xd9\x47\x75\x67\x5b\xe5\x15\xde\xd1\x5a\xf7\x12\x85\xc9\xd1\x0c\xe8\xfe\xd3\xa3\x21\xf4\x58\x76\x84\x61\xe2\x08\x43\x1c\x79\x74\x81\x0b\xd9\x13\x08\x6e\xcb\xb2\x1b\xbf\x62\xf5\xa2\x16\x2b\xe3\xe6\x15\x17\x57\x03\x70\x40\xa4\x1d\x12\x49\xff\x44\x88\xa0\x29\xb8\x45\x41\xf2\xc9\x0d\x1a\xf6\x0e\xea\x47\xd6\xe0\xa6\x6b\x95\x4a\xfd\x77\x35\x0d\x66\xc0\x2a\xaf\x59\xe2\x4a\x03\x75\x4b\x91\x98\x63\x95\x70\xea\xcb\x4c\xae\x59\x21\x7c\xd6\x41\x18\x14\x9b\xad\xc5\x13\xd8\xa2\x65\xcc\x31\x52\x43\xa5\x3d\xd9\x9a\x88\xc2\x14\x69\x87\x4b\xf7\xa7\x1d\x0d\xe1\xb0\x8b\x2c\x5d\x6b\xe7\x0d\x56\x49\x06\x32\x18\x67\xa2\x60\xbd\xd3\xdb\x50\x86\xdd\x6b\x41\x81\xdf\xa8\x7b\xdd\x83\x95\xf4\x54\x00\xea\xe0\xab\x30\xa8\x65\x0d\x4d\x36\xd5\x3c\x56\xf7\x5f\x17\xa5\xfb\xaf\x8a\x86\x09\xbf\x1f\x47\xd1\x8e\xa5\xbe\xcf\x18\x68\x68\x07\x0f\x83\xae\xf8\x6d\x23\xa1\xa1\xdc\x77\x30\xcc\x6d\xf4\xfd\xd7\x88\x01\x71\xd8\x22\x31\xd5\x0e\xbc\xe7\xcd\x30\x2e\xac\xf6\xcc\xa5\xd2\x37\xec\x15\x06\xc6\x61\x9d\xc9\xea\x1d\xd8\x1b\x0b\xe9\xfb\x2d\x67\xed\x13\xea\xfe\x7d\xd6\x10\x0e\xba\x27\xd2\x95\x76\x5d\x0e\x05\x13\xa9\x13\x1c\xb5\xb5\x55\x8b\x6d\x92\xb4\x13\xf6\xc6\x9b\x57\x07\x35\x6d\x90\xd9\xee\xd0\x44\xb8\x26\xfd\x82\x16\x87\xda\x8c\x14\xdb\x61\xa2\x53\x8d\x6b\xab\xbb\xc1\x29\x82\x16\x18\xf4\xa3\x87\xe2\xb9\x28\xe7\xc6\xeb\x1b\xb6\x22\x1b\xcc\x81\xfb\x91\x5d\x75\x1b\xbf\x31\x04\x5b\x3d\x82\xf9\x9e\xb0\xad\xa7\x41\xe5\x80\xec\xfb\x30\x59\x05\xec\x60\x1e\xab\xea\xed\xc9\x62\xa5\x3d\x75\x15\x97\x55\x70\x04\x93\xad\x18\xf5\xca\xb2\x6d\xe3\x78\x6d\x2b\x6a\x59\xb1\xdd\xa2\xc2\x41\x4d\x83\x9b\xb7\xdd\x4d\x4b\x07\x8a\xdf\xbb\xe9\x38\xdd\x40\x89\xa5\x62\xfb\x30\xcb\x03\x39\xa2\xf6\x37\x77\xff\xa5\xa6\x21\x1c\xb6\xca\x74\xad\x03\x77\x00\x83\x2e\x2b\x5a\x7d\x18\x57\x79\xdf\x62\xfa\x61\x80\x1c\xd6\x19\xab\xe2\x81\xfd\xb1\xf1\x2e\x74\x49\x9e\xee\xbf\xc1\xb8\x0c\xea\x1f\x68\x54\x06\x75\x0e\xb5\x25\x93\x88\x16\x8f\x13\x62\xad\x94\xdc\x84\xe4\xad\x7b\x4a\xb4\x28\xcd\xd6\xbf\x85\x16\x25\x84\x12\xd5\x28\xc0\x45\x63\x12\x36\x5a\x94\xce\xca\xfb\x8f\x16\x54\x3f\x70\xb0\x64\x93\x05\x3c\x8a\x8e\x9e\xee\x3f\x00\x45\x48\x87\x4d\x7f\xb1\xf6\x81\x7d\x2b\x75\x83\x95\x79\x8d\xd2\xdb\x7e\x1b\xbb\x51\x40\x0e\xe7\x38\xaa\xe2\x3d\x98\x8e\xc6\xbb\x64\x8e\xa4\x1f\x41\x42\xbf\xbf\xe5\x2a\x3d\x07\xe8\x40\x33\xa4\x5c\xdd\x43\x4d\x90\xf2\x3d\x28\x74\x70\xcb\x43\xa5\x83\xfa\x97\x87\x03\xdd\x33\x0f\x6c\x76\x76\xb0\xa0\x12\xc6\xb6\xfd\x67\x6a\x79\x81\xef\x6d\x6b\xb3\x34\x75\x55\x0f\xbf\xbe\xdd\x9c\x28\x07\x6e\x0f\xb3\xa2\x5c\xf9\x4d\xe6\x45\xb9\x42\xfb\x98\x19\xe5\x3b\xf5\x1d\xcd\x8d\x72\x80\xef\x67\x76\x94\xc7\x8d\x6f\xbf\x26\xa9\x7e\x45\x7b\xdf\xc9\x01\x30\x7b\x4c\x0a\x94\xdb\x34\x19\x90\xb9\xcf\x24\x48\xa4\xbf\xe3\xe0\xcb\x37\x92\x07\x9b\xaf\xe4\xd0\xd1\xda\xe6\xdc\xb3\xa4\x8d\xe6\x5e\x85\x2e\xdc\xd3\xfc\x64\xeb\xb5\x9f\x31\x3f\x49\xb6\x9b\x9f\x44\x43\xf0\xb9\x5a\x36\x3f\x89\x86\x96\xaf\x59\x72\xfc\x98\x52\x9a\xe4\xcc\x4f\x8e\x1f\x6f\x35\x3f\x49\xb6\x9b\x9f\x44\x43\x12\x6d\x37\x3f\x61\x95\x0f\xb1\xef\x69\xee\xb6\x8b\x44\xed\x62\x1b\xcc\xdd\x76\x12\x68\xf5\xe4\x7e\xb3\xb9\xdb\xfd\xc8\x33\x87\xcc\x9e\xd4\xb9\x61\x85\xfd\x49\x9e\x55\xe4\x69\xae\xae\x0f\xde\xbc\x8b\xae\x2b\xaa\x2e\x8a\x0d\xf4\xc2\x23\xab\xb2\x1b\xdb\xcc\xd9\xa3\x24\xb0\xef\xfc\xfc\x40\x23\xb2\xf5\x09\xc2\xae\xc7\x07\x79\x47\x95\x55\xcf\x0d\x4c\xb1\x8f\x95\x83\x9d\x7f\xb9\x71\xff\xb3\x45\x1e\xce\x7d\x04\xf1\x0c\x89\x82\xe0\x53\x7e\x2e\xf2\x0d\xc6\x3d\x65\x37\x6e\xf7\x75\x04\x55\x06\x75\xa0\x47\xa8\x5d\x98\x89\x71\xe0\xce\x88\xc0\x33\x94\xc1\xdd\x17\xb6\x74\xd1\xdb\xb3\xf3\x97\x88\x5c\xb1\x0a\x97\xbf\xb5\x78\xbd\x26\xb2\x14\x84\xde\xf9\xc7\xcb\x5f\x36\x94\x2c\xc6\x07\x32\xf5\x5e\xfe\xf3\xe5\xdb\xcb\x2d\x15\x6b\x41\xbe\x89\xb3\x77\xaf\xb7\x35\x93\x45\xfb\xc9\xaa\x79\x9c\xc1\xbb\xc2\x04\x34\xb0\x9b\xda\x09\x4d\x05\xa3\xac\xdd\x54\x74\x9e\x61\x7f\xcd\x22\xbe\xa9\xd8\xd8\x14\x93\x71\x1b\xe2\x64\x53\x49\x2f\x43\x56\xc7\x5b\xa8\x2e\x38\x5d\x93\xd4\xce\x60\xf8\x6e\x4a\x99\xa9\xfd\x3c\xf4\xd2\xf4\xad\x37\x63\x9b\xea\xa7\xeb\xf5\x10\x93\xd1\xda\xc1\x6b\x47\x86\x6d\x23\x2a\x00\x9b\x15\x4f\x8c\xeb\xb0\x50\xbc\x3d\x89\x06\x49\x5b\x10\xc0\x90\x04\x74\x80\x78\x3c\x47\x04\x8d\x62\xce\xe3\x19\x22\x32\x66\xc3\x90\x78\x74\xa0\xe2\x03\xe9\x98\x40\x3a\x27\xa5\x83\x2c\x82\x44\xbe\xf6\x90\x8c\x4b\xd7\xdc\x11\x65\x39\x5f\xbe\x08\x1b\xa7\x09\xfa\xc9\x66\xb4\x5a\x81\x47\x27\xe9\xd3\x75\x9a\xb0\x09\xc2\xab\x15\x42\x24\xa2\x47\xff\xf3\x97\x81\xd7\xfa\x3a\x3c\x0a\xda\x9c\xa5\xdc\x89\x70\x3f\x02\x6f\x75\x18\x5e\x99\x39\x31\x15\x69\xc6\x33\x6d\xec\x3a\xb1\x6c\x2d\x69\x6b\xe2\xc5\xab\x15\xb7\xa4\x8a\x58\x3b\xa0\x92\x96\x5c\x58\x7d\x62\x12\xe3\x35\x09\x33\xf4\x63\xcb\xe3\xf3\x38\xe7\xf1\x79\x2c\xed\x76\x92\xf2\xfb\xb7\xba\xcd\xd4\xde\xb3\x09\x4b\x58\x34\x36\x57\x79\xd3\x20\xad\x4d\xbd\x34\x7a\x20\x38\x33\x8b\x6a\x41\x14\xf0\xc0\x0b\x83\x94\xf9\xb5\x56\x2d\x5d\xcc\x59\xe2\xe0\x5c\x89\xb1\x17\x86\xcc\x47\xda\x11\x7a\x9d\xaf\x56\x48\xbd\xfa\xb3\x54\xac\xb6\xcf\x06\x2b\xb9\xcf\x5c\xbe\x96\x18\xc7\x99\x07\x04\x22\x70\x35\x9e\xd5\x13\x69\x7f\xe1\x60\x92\x94\x22\x9d\x99\x08\x8b\x55\xc0\x33\xb7\x7a\xd5\x4c\xed\x83\xe8\x8d\xe0\x63\x09\x4b\x53\x31\x84\xb0\x21\xb1\x80\x4f\x59\x22\xf6\x25\x51\x5b\xec\x42\x59\x2c\x33\x02\x86\x2d\xa8\xa9\x5b\xc0\x3d\x96\xf1\x6e\xaa\x5e\xff\x8f\x13\x06\xae\x0b\x1a\x0d\x3b\xe8\xda\x9d\x15\x95\xce\xbd\x83\x5b\x09\x97\x91\x2c\x32\x9c\x5b\xef\x12\x1d\xf6\x4d\x86\x58\xca\x42\xc4\xb9\xf5\xce\x7a\x8d\x09\x6f\x34\x1c\xd5\x46\xca\xf8\x3b\x0d\xfa\x62\xd2\xaf\x4c\x85\xc1\x71\x59\xfb\xf3\x67\xc0\xe2\xf3\x67\xca\xf1\xda\x19\x93\x18\x93\x71\xd1\x1b\x01\x2d\xb8\x54\x01\x6e\xad\xfd\x74\x4d\xbd\x14\xd6\xb7\x72\x10\xd9\xba\x4a\xe2\xc5\x1c\xe1\xbc\xb7\x82\xbc\x5b\x6a\x4b\x73\x21\x15\xe5\x08\xf7\xe0\xb5\x73\xce\x3d\x73\xe6\x13\xbc\x02\xc6\xae\x30\x6f\x4a\xbe\xce\x60\x08\x6e\x34\x2e\x3c\xed\xce\x58\xf0\x25\x9b\xcd\xc3\xc2\xe3\x71\x85\xbf\x83\x4e\xf8\x94\x79\xfe\x29\xc2\x6d\x6f\x3e\x87\x4b\x13\x91\x96\x14\x13\xa6\x90\xe0\xfb\x6a\x34\xe6\x09\xbb\x16\x09\xc0\x11\x2c\x17\xf6\x88\x20\x1d\x74\x2a\x0f\x20\x9d\x7b\x51\x0e\x44\x85\x2d\x40\x5b\x57\xc5\x78\x7b\xe3\xd2\xbb\x97\xf4\xb4\xb8\x09\x0b\x28\xf3\x21\x5f\x64\x1c\x87\x02\x0f\x44\xb6\xdc\x88\xf5\xd1\x53\xe4\xa2\x27\x68\x3b\x0a\x11\xbb\xe5\x1b\x5a\xd6\x59\x07\xf6\x5d\x54\xc3\x18\x63\x12\xc9\x59\x19\xc5\xfe\x72\xe7\xac\xc8\x79\x3b\xa0\x6f\x3f\x22\x17\x3d\x43\xd8\x70\x98\x81\x00\xe3\x07\xd7\xf9\xde\x59\x2e\xd4\x20\x46\x51\xbe\x51\xb1\x2c\xf3\xe5\x21\xa9\x06\xff\xb6\xd2\x59\x56\x9c\xe5\x2b\xaa\x2e\x61\xc1\xdb\xb7\xb7\xaa\x22\xc0\xed\xd5\x6e\x6b\x1c\x47\x3e\x8b\x52\xc1\x88\x4d\xc3\x5a\xa4\x37\x29\x91\x49\xd9\xdd\xba\x0c\x3b\xf7\x5f\x6a\x5c\xc7\xba\xfb\x6d\x9a\x1f\x96\xf9\xc4\x65\x30\xd3\xa2\x9a\x17\x44\x3b\x78\x85\xa0\x40\x4d\xa1\xf0\x3b\xc9\x7e\xf7\xb6\x78\xc9\x04\xbf\x3e\x65\xca\xcd\x12\x3c\x43\xc9\x77\x42\xc0\x70\xd1\x5f\x20\xca\x21\x9c\xb8\x5d\xd4\xea\x22\xc2\x03\x1e\x32\xb7\xda\x70\xa6\x9d\x0b\x71\xb6\xb6\xc7\x69\xc4\xa3\x0d\x0b\x35\x57\xe7\x3e\xec\x6a\x31\x97\x0b\x76\x6b\xc7\x4a\x90\x50\xc6\xca\x5b\x60\x4a\xa8\xfb\x2d\xd1\x13\xb9\x2d\xc3\xd9\x91\x0b\xe6\x86\xe9\x8e\xee\xeb\xb0\x6f\xeb\xea\x9e\xa6\xd3\xf8\x46\x75\x12\x63\x92\xfc\x96\x13\x91\x0b\x26\xb7\xe7\x44\xe4\xea\xdc\x67\x22\xfc\xf8\x26\xc2\xd8\xb8\x8c\x2c\xf8\x62\x35\xb6\xf2\x7b\x91\xa4\xc1\x37\xd5\xe7\x33\xb4\x61\x8e\xab\x4a\xb6\xa7\x7c\x16\x3a\xc8\x45\x1b\xc6\xb9\x12\x3a\x26\xbf\xcf\xda\x90\x21\xf7\x0e\x5d\x1d\xb2\xd6\x7f\x67\x7d\x28\x1b\xdb\x1d\x2b\x44\x39\xbf\xdf\x63\x8d\x64\x23\xb0\x61\x95\x98\xce\xfe\x6e\xeb\xe4\xa0\x49\x29\xd4\xfa\xce\x6b\x25\xad\x5e\x2b\xb3\xff\x1b\xd7\x8a\x8c\x1f\x79\xe8\x5a\x91\xb5\xfe\x3b\x6b\x45\x06\x72\xd8\xb5\x56\x54\xb8\x87\x3d\xd6\x4a\x36\x02\x1b\xd6\x8a\xe9\xec\xef\xb6\x56\x0e\x9a\x94\x42\xad\xef\xb0\x56\x32\xc7\x68\xab\xd5\x37\xae\x87\x2c\x41\x9e\x11\xf3\xd5\x47\x3c\xaa\x8d\x78\xd4\x9a\x27\xc1\xcc\x4b\x96\x85\x39\x55\x3d\x74\xf3\xd1\xc2\x0e\x19\x50\xbb\xe2\x7a\xd3\xf4\x6d\x58\x7e\x95\xf2\xab\x45\x86\x26\xfe\xd9\x3d\xc5\xd7\x01\x23\x11\x49\x86\x18\x6f\x93\x54\xb7\x4b\xa9\xdb\xd0\x9b\x96\x45\x8c\x7d\xb0\xd3\x42\xef\x36\xd0\xb3\x2a\x9e\xbc\x1f\xf0\x64\x27\xf0\xb4\x8a\x88\xf7\x03\x1e\xd3\xcc\x2f\x5c\xb5\xb0\xef\xe0\xe1\x76\xe1\x3d\x96\xcf\xff\xd9\x26\x01\x2b\x36\xae\x50\xab\x37\x15\x95\x9f\x60\x12\x57\x4c\xab\x0c\x80\x5b\x9e\xcb\xc1\xb0\x7c\x2b\x57\xb2\xb8\xcc\x7c\x13\xdc\x8f\xf3\x94\xd6\x14\x3c\xf2\xd9\xb1\x7c\x7c\x6f\xb9\x3e\x9c\x9d\x40\x3d\x60\x27\x85\xcb\xbf\xcc\x7e\x5c\xbf\xba\x52\xa1\x01\x1c\x6c\x25\xa8\x30\x55\x4a\x6b\x5b\xf0\x74\xdb\x53\x41\xd4\x4b\x8e\x79\xb5\xc1\x74\xdf\x89\x8a\x61\x34\x74\x7f\xb2\x68\xc7\x24\xa1\x95\x7c\xd0\xe3\x0c\xbb\xbb\x00\x08\xfc\x36\x00\x10\xb8\x81\x4f\xd5\xef\x39\x51\xc0\xc3\x54\x60\x70\x39\x5f\xd1\x8e\x49\x49\xc4\xe0\xaf\x2b\x2f\x8c\x4a\xe6\xb4\xdf\x99\xae\xc0\xec\x70\x07\x5d\x41\x99\x7b\xd0\x15\xd4\xb3\x44\xba\x8d\xe6\xbc\xdf\xbd\x4f\x71\xca\x76\xf6\x29\x4e\xd9\xbd\xfa\x14\xa7\x0c\xfa\x94\xd3\x9d\x22\xe4\x1e\xba\xa1\xec\xa5\x4d\x13\x4d\x55\x70\xa6\xc3\xb6\x99\x51\x1c\xf3\x94\x27\xde\xbc\x95\xd7\xd8\xb6\xa4\xed\x73\xcd\x4f\xe2\xb9\x10\x29\x5a\x33\x16\x2d\xd0\xc6\x2d\x25\x17\x3b\x55\x23\xac\x19\x78\x59\xab\xeb\xec\xb3\x7f\x54\x40\x2a\xef\xa6\x70\xcb\x02\x90\x16\x61\x1e\x50\x18\xa4\xbc\xb5\x88\x52\xbe\x84\xfb\x0e\x12\x40\xa9\x30\xd8\xa6\x97\x6d\x6e\x78\x15\xd7\x47\xfa\x45\x72\x1c\x29\x15\x37\x72\x91\xad\x6f\x35\x18\xca\x8d\xc1\xc1\x05\xd5\x52\xde\xc0\x57\x10\x75\xc2\x66\xf1\x35\xd3\xe3\x57\x18\xe6\x82\xec\x26\xca\x67\x38\x2f\x52\xc6\x6f\x58\xc4\x97\x13\x50\xc5\x6c\xd8\xbf\xea\x5b\x61\xdc\x04\x10\xdf\xb0\xf8\xe4\xf4\x00\xa6\xde\x77\xd8\x86\x6d\x7f\x94\x22\x2c\x6f\xf1\x4a\x9c\xbd\x18\x38\x1e\x90\x92\x43\x18\x14\x8e\x49\x25\xca\x48\xe2\x1b\x64\xe9\x07\xb3\x8c\x71\x1c\xb6\x66\x7e\xeb\xa9\x35\x1f\x49\x75\x36\x36\xd7\x8a\xe5\x00\x4d\x25\xcc\xcc\x8d\xe4\xce\xb2\xab\x55\xae\x17\xd8\x75\xf6\xed\x7d\x6c\xd5\x2b\x0d\x78\x6c\x0f\x47\x81\x70\xab\xe9\xb4\x3c\x49\xe6\x49\x28\xd0\xeb\xc1\xf5\x1b\x8d\x9d\x7b\x34\x12\x27\xb4\x69\x6e\x6e\xc4\x38\xeb\xc1\xbb\xef\x20\xe8\xf6\xbf\x69\x10\xe4\x48\xde\x7f\x10\xf4\x4c\xec\x1e\x04\x18\x01\x09\x5d\x51\xa0\x45\x6c\x07\x8e\x81\x21\xa6\xb8\xc4\xe0\xc1\x31\x75\xd5\x7d\xb8\x8a\xed\xe3\xe9\xbf\x6d\xb9\x18\xa5\xe5\x10\x49\x68\x94\x35\x2e\x39\xfb\xbb\x38\x0d\xc4\x77\x10\x5d\xb5\xaf\x59\xc2\x83\xb1\x17\x92\x78\x7b\xb9\x69\x9c\x04\x5f\xe3\x88\x7b\xa1\x1d\x9b\xc0\x89\xb2\x5b\xbd\x46\xc3\xfa\xd0\x1b\xa0\x95\xe4\x46\xe6\xda\x10\xb7\xe7\x0a\xb4\x83\x49\x7a\x7f\x28\xf1\x64\x92\x32\xae\xfc\xb1\x96\xb0\xf7\x12\x51\x28\xa8\xe8\x17\xe4\x64\xec\x44\x85\x13\xef\x41\x8c\x40\x09\xaa\x22\x26\xb0\x84\xa4\x33\xc0\xbb\x4b\x56\xb7\x3d\xf7\xe4\xab\x72\x00\x72\x97\xc7\x47\x32\x7e\x6c\x45\xa4\x70\xf2\xb0\x0a\x88\xe0\x9e\x9d\x4d\xac\x92\xe3\x69\x10\xfa\x09\x8b\x20\x80\x50\x92\x72\x07\x17\x11\x59\x07\x13\x47\x9a\x56\x50\x4a\x93\x46\xc3\x49\xa8\xa0\xb9\x79\xb3\xdb\x7e\xf2\x50\x97\x6a\x4f\x59\x70\x35\xe5\x0e\x3e\xa5\xdc\xb9\x09\x22\x3f\xbe\xc1\x26\xad\x99\x25\xa5\xe3\x24\x0e\xc3\xcb\x78\x2e\x16\x42\xa9\x72\xd3\x42\x2c\x5e\x70\x96\xbc\x52\x19\x27\xd0\x62\x1f\x18\xa1\xab\x17\x02\x26\x06\xad\x18\xe2\x3c\x04\x02\x1e\x9f\x42\xf1\x90\x4d\x78\xd3\x34\x00\xc0\xfe\x25\x33\x8f\x8e\x1b\x8d\x6d\xf9\xa7\x19\xb6\x0a\x5c\x5f\x59\x98\xb8\xd2\xe0\x24\xdb\x8e\x92\xbe\x81\x60\x6d\x5e\xf1\x1c\xc2\xca\x5a\x1b\xb2\x46\xd8\xad\x28\xae\xf3\xf2\x35\x00\x88\xb6\x6c\x11\x1d\xac\x6a\x69\x12\xc6\x1e\x6f\xc9\x32\x16\xec\x1c\xa0\x5c\x19\x82\x12\x16\x7a\x3c\xb8\x66\x62\x1b\x0a\xda\x63\x10\x5a\xd4\xc2\x01\x25\x67\x40\x03\x45\x78\x69\x16\x52\xca\x29\x5b\x3c\x19\x38\x82\x1b\x29\x3b\x95\x02\xb4\x35\x36\x24\x25\x65\xd8\x40\x1b\xac\x65\x06\x19\xd6\x3b\x89\x6c\xcf\xb7\x5d\xb4\x98\xe7\x04\xc0\xab\xfc\xda\x4d\xc0\xa7\x41\x54\xf3\x6a\x1a\x81\x9a\x6e\x90\xf9\xb5\xb1\xe0\x26\x41\x04\x36\x67\x66\x34\x04\x56\x77\x3c\x9e\xbb\xd9\xa4\x49\xb2\x71\x3d\xa0\xe2\x4d\x24\xd7\x44\xf3\x5b\x44\xe4\xec\x58\x75\x83\x7c\xa9\x96\x13\x50\x6a\x2d\xad\x7e\x47\x82\x95\xd5\x5d\xd9\x12\x11\x64\xa3\x88\x07\xe6\xb2\xaa\x92\xc8\xcd\xd7\x82\x49\xb3\xab\x29\xbc\x83\x1c\xb9\xb6\x8a\x1d\xd0\xe9\xdb\x1b\x59\x17\x37\x03\x08\x0c\x6d\x3f\xd2\xab\xbc\xf6\xac\xb4\x3e\x6d\xa7\xdc\x4b\xf8\xc5\xc4\x41\x62\xdf\x36\x1f\x3e\x92\x91\x5f\x2a\xe2\x5d\xe5\x2e\xe5\x2d\xb1\xad\xca\xd2\x60\x2c\x80\x72\x76\xcb\x1d\xf4\x17\x84\xc5\xcc\x16\x7c\xd6\x95\xd0\x61\x91\xaf\x90\xc1\x3d\xbc\x15\xb6\x1f\x1b\xe0\x26\x78\x34\xf2\x7d\xa4\x34\xd1\xc6\x77\xa2\xfd\x82\xb3\x6c\xe5\x02\x36\x02\x35\x30\x23\xb1\x0f\x54\x15\x03\x7c\x0e\xd7\xfa\xf6\x18\x6b\x23\x66\x46\x07\xc3\x3d\x06\x78\x59\x1c\xe0\x48\xc7\xdf\xcb\xd7\x24\xa2\xa4\xe8\xbc\x39\xed\x9a\x43\x67\x95\x32\x1b\xd4\x17\x80\x5c\x6e\x78\x66\x2a\xa5\x30\x40\xe7\xe7\xe7\xf9\x11\x3a\xdf\x39\x42\xd2\x9e\xa1\xc6\xc5\x00\xb1\xd9\x9c\x2f\x9d\xcd\x03\x25\x8d\xa5\xcb\x43\x65\x59\x1c\xed\x68\x07\x68\x95\xa9\x6c\xd1\x03\x92\x64\x9f\xe2\x24\x8c\xb0\xfa\x02\x8b\x11\x38\xf4\x4d\x83\xb4\x17\xb5\xd9\x7f\x9c\x4e\x3e\x4f\x0d\x18\x9c\xf1\x8b\xb6\x25\xd9\x75\x41\xc2\xae\x7f\x61\x5e\x22\xc6\x84\xfd\xc7\xe9\xee\x57\x4b\x0e\xbb\x55\xef\xf8\x1e\x4d\x47\xec\x56\x81\x60\x66\x3c\x94\x11\x7e\x71\x53\xc9\xd2\x49\x95\xb9\x7c\x99\xea\xb4\x8f\xc2\x2e\x90\x13\x91\x41\x38\xf5\x20\x59\xab\x28\x83\xab\xbb\x0f\x14\x53\x00\xbb\x64\x70\x94\xdd\xaf\x6d\x45\x59\x85\x66\x8f\x37\x34\x9b\xe4\x3b\x2a\x08\xfb\x9a\x99\x6e\x96\xc2\x7c\x38\x78\xcb\xaa\x31\x87\xdd\x28\x65\xbc\xd1\x48\x44\xbb\x9b\xe1\x00\xc1\x81\xa9\x89\xc1\xcb\xb4\x9e\xc8\x70\x06\xb9\x28\x3b\x71\xd6\xf3\xb8\xa2\xdb\x12\x1c\xc3\x44\x85\x36\x55\x5b\x6b\x55\xa7\xd7\x55\x0a\x9b\x0f\x82\x37\xbc\x8c\xfc\x5f\x72\x6f\x7c\xad\xb8\xfd\xec\xa8\xdb\x21\x89\xf4\x12\x31\x09\xe3\x38\x71\xf8\x11\xc3\x0f\x99\x36\x87\x4a\x48\xd2\xfc\xe9\x61\x44\x72\x05\x22\xfc\x30\x2a\x1a\xce\xc8\x55\x2a\xda\x39\x78\x91\x2a\xf3\x22\xc2\xf3\x6b\x54\x73\xbf\x42\x37\x9c\x6e\x87\x6c\xa0\xa4\x64\x13\xbf\x84\x02\xd1\xa0\x33\xd4\x4b\x7b\x73\x99\xee\x10\x93\x80\x22\x04\x5b\x15\xff\x16\x06\xf0\x02\x0c\x97\x30\xe1\x07\xb3\x80\x5c\xcd\xfb\x32\x01\x0d\xe4\x70\x36\x60\x2c\xf3\x8d\x5b\xd8\xaa\x64\xe3\xce\x32\x51\xcb\x84\x6f\x63\x04\xdc\x66\x04\x89\x9a\xb1\x26\x6a\xa1\x66\x5c\x60\x04\xa6\x19\xe3\x38\xb3\x2a\x39\xdb\xf4\x63\xbb\xf9\x4d\x0c\x21\x68\xd2\x07\xb0\xe5\xd5\xac\x9d\x8e\xa2\x8c\xe3\xa2\xda\x58\x54\xa2\xe0\xe1\xac\x16\x87\xfe\x83\xa6\x93\x67\x4c\xb2\x9b\xa0\x91\xa8\x65\x90\x9b\x0f\xd0\xe9\x83\xa6\xe9\x51\xab\x8b\x9b\xe8\xe4\x48\x6e\xae\x3d\x78\x23\x23\x07\x29\x56\x3b\xf0\x61\x88\x00\xe4\x1c\x6b\xaa\xe0\x39\x65\x2e\x05\x1a\x45\x60\x3a\x2e\x42\xf8\x90\x8e\x64\x33\xa3\x3b\x41\x12\x8b\xf7\xf6\x7e\xe3\x71\xac\x68\xde\xb0\x04\x5f\x1b\x48\x04\xd5\x02\x82\xa4\xf7\x83\x99\x8f\x31\x2f\xdc\x9f\xfd\xfc\x0e\xfc\xa7\xde\x25\x9e\xf8\x27\xd5\x9a\x90\xf1\x77\x61\x49\xcf\x59\xc4\x17\xc9\xf2\x1b\x39\x8b\x81\x72\x08\x6b\x81\xb7\x4a\x7a\x7e\x75\xdc\xaf\x7b\x71\x9a\x3f\x38\xab\xc9\x58\x41\xe7\xa4\xd3\x1f\x37\xa9\x92\xb5\x1b\xd1\x28\x9d\xf7\x34\x5d\xbb\xe3\x6d\x2b\x49\xd2\xb2\x59\x4b\x92\x46\xc5\x6a\x42\xb2\xb4\x2c\x05\x15\x2c\xe6\xd3\x7c\x5a\x66\x47\x9d\x1d\xfc\x28\x35\x73\xd2\xec\x76\x49\x40\xbf\x6d\x07\xa8\x2c\x25\xc1\x9f\xd0\x94\x78\x45\xf0\xbb\xc6\x7d\x2b\x78\x55\x2a\x03\x7f\xf8\x90\x1a\xe6\x54\x2d\x12\xaa\xe6\x4d\xd3\x55\xa5\x4c\xf3\xfb\x30\xdd\xd5\x2a\x58\xad\xbc\x0a\xde\xb7\xd7\xb4\x6e\x66\xce\x1d\x39\x9b\xbf\x25\x4d\xed\xc5\x9a\xc7\x95\x5a\x84\xea\x0b\xc3\x9d\x27\xe8\xaa\x53\xdb\x60\x58\x19\xc1\x56\xfd\xd0\xdc\x32\xb3\x92\x30\x6a\x76\x79\xb2\xfe\xa6\x03\x1d\x9c\x40\xef\x73\xa2\xb3\x2b\xde\x97\xe7\x2a\x18\x87\x70\xdc\x6d\x67\x2f\xdb\x35\xb8\xe5\x61\xa4\x14\xe4\x68\xdf\xe3\x99\x7d\x34\x3c\x47\xfa\xb8\xb2\xf5\x68\x78\xc8\xb1\xaf\x00\x72\x13\xeb\xdd\xb8\xb7\x1a\x15\xc9\x39\xda\xa2\x9d\x22\x29\xed\xf4\xd2\x93\xc7\xc7\xbd\xb4\xd9\x34\xef\x6b\xe3\xf6\x0d\x63\x5f\x20\x68\x37\x28\x44\x33\xfd\xd7\x56\x1d\x56\xa0\xf5\x19\x0f\x4e\xb8\xaf\x17\xdd\xf8\x46\x2c\x25\x09\x51\x2e\x25\x30\x3a\x20\x89\xd4\xcb\x04\x18\x13\x8f\x22\x44\xe2\x4d\x3a\x2d\xa2\x02\x7b\x7a\x4d\x8a\x60\xed\x62\x28\x6b\xfb\x95\xaf\x2c\x1a\xb1\x9b\x12\xc2\xf9\xc7\xc7\x72\x5d\x8e\xd5\x08\xc2\xe3\x70\xe5\xe5\xd8\x0a\x5e\x1e\x57\x06\xdb\xc5\x3d\x08\x81\x3e\x6e\x34\xe2\xbc\xb0\x9a\x87\x32\x18\xcb\xb8\x24\x85\x03\xb5\x44\x50\x1f\x92\xd7\x70\x45\x12\xef\x21\xf4\xee\x82\xd4\xcb\x13\x58\x0c\x35\x56\x2b\x59\xc8\x26\x9a\x5c\x5b\xd6\x33\x78\xd5\x84\xac\x20\xcd\xa0\x30\xe9\xd4\x05\x45\x28\x6a\x78\x9a\x7d\x68\xc0\x62\x66\x59\x04\x47\x8e\x1c\x01\x54\x31\x64\x6f\xa9\x58\xaf\xef\x2d\x05\xd3\xcd\x46\xf7\x8d\xdc\x14\x34\xab\xf6\x96\x0f\x9a\x9e\x64\xc3\xf0\x1a\x94\xd9\xb4\x13\x5b\x7a\xc9\x75\x51\xab\x55\xd0\xad\x25\x79\x5f\xf7\x52\xa7\xe6\xe4\x13\xe1\x08\x5f\x48\x53\xb2\xb5\x83\x8b\xcf\xea\x04\x7f\x2f\xb8\xd3\xd8\xc2\xe0\x8b\x66\x87\xf2\x85\xd4\x5e\x9a\x64\x3f\x63\xff\xd9\xfb\x1a\x90\x87\xf3\x15\x05\x5c\x07\x9f\x76\xbb\x55\x36\x0a\x91\xcc\xee\x1e\x6f\xd1\x93\x5a\x71\x70\x6d\xf3\xd6\xca\x66\x4e\xba\xc7\x06\xa8\xf8\xd8\x50\xec\xb4\xdb\xc5\x3d\xac\xcb\xfd\xf0\x98\x52\xda\x81\x0b\x2a\xeb\xd5\x90\x64\x00\x31\x86\xf9\xdc\x4e\x37\x02\x23\x43\x1b\x02\x66\xe9\x88\x15\x81\x0b\x8b\xea\x23\x56\x94\xe3\xfd\x59\x17\xfb\xe8\xd5\x2b\xe4\xa2\xe9\x14\x59\xb4\x15\x59\x1e\x31\x7a\xac\x4c\x4d\x55\x2a\x6d\x69\xf4\x59\xad\xd3\xde\x4e\x13\xca\x5e\xf4\x00\xaa\xb0\x84\x82\x6e\xe9\x52\x41\xbb\x38\xef\x3f\x71\xab\x33\x88\xc5\xcc\xcb\xa1\x25\x80\x3a\x22\xe5\x2b\x24\x6a\x4b\xe4\x1c\xfc\x83\xf3\xf8\x61\x8c\xd5\x14\x06\xe5\x29\x14\x3c\x7c\xe7\xd2\x97\x83\x64\x26\x51\xc2\xae\x9a\xc6\xd9\xce\x69\x44\xb3\x59\x79\xc6\x62\xa8\xb9\xe7\x8c\x29\x73\xf0\xfb\xcc\x98\x32\xc2\x3d\x60\xc6\x66\x55\xeb\x78\xe3\xd8\xcf\xe4\xd8\xcb\x66\x1c\xfc\xc3\x71\xe7\x1b\xd7\x8e\xec\xab\x19\x78\x09\xb8\x6a\xe0\xd3\xdd\x03\x9f\xa6\xe5\x81\x7f\x02\x35\xf7\x1c\xf8\xcb\x60\x56\x21\x18\x2b\x59\x56\x87\x85\xd6\x63\xba\x69\x0e\x6a\x42\x90\x1c\x54\xbc\x6d\x30\xbe\x52\xf2\x56\xfa\x3b\xa0\x0d\xec\x41\xb3\xcd\xe2\x87\xa0\x21\xd9\x7c\x0e\x2a\x07\x5b\xa9\x2a\x35\x95\x9e\x87\x4e\x69\xf7\xb8\xdf\xea\x1e\xbb\xdd\x63\xe9\x6d\x87\xd9\x52\x6a\x55\x45\x3d\xe8\x67\xa8\x2c\x92\x4a\x6e\x57\x34\x7a\x33\xf3\xe6\xb2\x4a\x69\x51\x4c\x99\xba\xd0\x46\x55\xe3\x47\x01\xd7\x21\xc2\x7b\xa2\xb6\x99\x9f\xee\x6c\x49\x31\xbe\xfd\xdb\x82\x45\xbf\x13\xac\x5a\x9d\x07\x80\x15\x24\xad\x87\xd7\x6c\xed\x8e\x9d\xa2\xd8\x7b\x2e\x4d\x31\x10\xa7\x48\xe3\x7e\x7c\x26\xe9\xc8\xba\x78\x88\x8c\x5b\x8f\x4d\xc8\xc0\xe1\xcd\x61\xda\x91\xf5\x25\x38\xe1\xc0\x60\x27\x63\x9d\x7a\x74\x18\x81\x6e\x4f\x5a\x57\x3a\x11\x8d\x56\xab\x8a\x7a\xd2\x95\x87\xba\xda\xc4\xf8\x6e\xec\xa5\x4c\x3e\x49\x77\x05\x22\x01\x4d\xda\x05\xdf\x2c\xf2\x71\x40\xc1\x8f\xf6\xb0\xfd\xf6\xec\x9f\x9f\x7f\xfe\xf8\xf6\xf9\xe5\xeb\x8b\xb7\x45\x8e\x25\x88\xfe\x10\x38\x1f\x2e\x5f\xbe\x23\x81\x3d\x86\x4a\xaa\xcd\xe0\x2a\xaf\x45\x01\xee\x8d\x12\xe6\x7d\xe9\x01\xde\xc6\x95\x00\xe0\xee\x7d\x17\xdc\xcd\xd1\xed\xe0\x0e\x78\xfb\x74\xc0\xcb\x77\xc0\xf6\x42\xa0\xb6\x65\xe3\x61\xbc\x9b\x2b\x6a\x5f\x42\x43\x77\x53\x2a\xa6\x97\xab\x79\x05\x7b\xe8\x94\x57\x5f\xe0\xca\x03\x8b\x63\x95\x2f\x6d\x32\xf2\x66\x2d\xc5\xd5\x5e\xd3\x95\x2c\x51\xf2\x8a\xde\x57\x8b\xc8\x78\xf8\x8a\xf3\xfa\xdb\x6a\xc5\xb0\x6a\xac\x12\x03\xbc\xf1\x56\xf2\x35\xf4\xa1\xa4\xac\xd4\xc1\x84\x20\x55\xba\x8d\xc6\xae\x53\x18\xca\x56\xb7\x3c\x37\x15\x93\x03\x37\xf5\xa5\x31\x07\x3d\xbe\x2b\x8f\x83\x59\x78\x4c\x6b\xec\x81\x9b\x60\xd2\xed\xe0\xd5\xaa\x53\x1c\x58\xe8\xf3\xf8\x77\x19\xd7\xff\xe6\xc8\x89\x03\x70\xd5\xe0\x29\x35\x1b\x0c\x5f\x58\x3d\x7c\x92\x25\x19\x7d\x1b\xda\x3a\x92\xe1\xff\xbd\x23\xe9\x2d\xe5\x30\x2e\x36\x48\x95\x3d\x7b\x50\x61\x7f\x00\x8d\x48\xa3\xb1\x28\xe9\xa3\x4a\x25\x41\x21\x22\x4a\x5a\x26\x2b\xa2\xad\x39\x5d\xc8\x13\xf6\x0e\xc2\xc7\x64\x42\x8b\x21\x6c\xf2\x0a\x95\x3e\x28\x45\x9c\xc9\x76\x8d\xca\xbc\x5a\xa3\x82\xfb\x85\x59\x04\x5f\x68\x13\xed\x47\xd2\x24\xcf\x77\x4c\x5c\xb3\x7b\x70\x95\x92\x99\x74\xf1\xb2\x46\xbb\x76\x2f\xa6\xe7\x88\x62\xc3\xa0\xe4\x48\xc6\x9e\xf2\x82\xef\x09\x98\x77\x9f\xc6\x45\x45\xe0\xb4\xa4\xd7\xf1\x89\x7c\x91\x57\xe8\xa5\xbf\xab\x97\x95\x8d\xeb\x57\xe4\xd0\xfc\xb4\xd0\xfc\x86\x43\x24\x1c\x52\xf2\x38\x4d\x89\x7c\x05\x58\xc0\x69\x7a\x2f\x9c\xf4\x6b\x5d\xc0\x69\x54\x1e\x92\xb4\xd4\xfc\x88\xc8\x47\x1a\x85\xe6\x47\x87\x34\x5f\x70\x41\x01\x8d\xcf\xac\xc6\xed\x05\x56\x9e\x94\x59\xf5\xa4\xcc\xee\x85\x41\x6e\x52\xce\xab\x70\xd8\x7f\x66\xce\xab\x67\xe6\xfc\x5e\x88\xe5\x66\xe6\x6a\xc3\xe0\x94\xa7\xe7\xaa\x7a\x7a\xae\x0e\xc1\x21\xf7\xd2\xb9\xb8\xc2\xf3\x24\x12\x6f\x3c\x74\x1d\xde\x9e\x7c\x3a\x05\xfd\xbd\xb6\xa5\x31\xb2\xa4\xd7\x99\x44\xe6\x21\x4c\xce\xec\x84\x45\x88\x30\xb9\xa1\x67\xfa\xbc\x29\x5f\x74\x90\xaf\x59\x8a\x7e\x1e\xe1\x46\x31\x77\x20\x1f\x23\x4c\x3e\xd3\x6b\xe0\xd6\x52\xa8\xeb\x5f\xbb\xd7\x79\x33\xbd\x0b\xeb\xbe\xe7\xa6\xd1\xb8\xd1\x06\xc5\x77\xc1\xc4\x71\x2e\xe8\x8d\xda\x69\xcd\x03\x0d\x8c\x1b\x8d\x8b\x36\x4f\xbc\xc8\x3c\x3b\xc8\xc2\x91\xdd\x64\x0f\xb2\x9c\xec\xb7\x83\x04\xaf\x12\xc8\x5a\x49\x12\x7f\xec\x3a\x37\xf9\x33\xa7\xee\x97\xfd\x56\x5c\x16\x25\x9f\xd5\x1b\xf3\x2d\x8f\x61\x83\x19\x6b\xa2\x1a\x6a\x56\x65\x82\x86\x9e\x7c\xce\xdc\xaf\x6d\x2c\xd4\x5f\x1e\x62\x68\x04\xef\x58\x0f\xa9\x21\xb6\x04\xbc\xb6\xf7\xea\x69\x7c\xa3\xe9\x62\xbb\x6a\xe1\xb4\xe6\x07\xd7\x72\x82\x4b\xcf\xe3\x31\xc2\xb9\x10\x28\x1b\x81\x94\xab\x22\xac\x02\xa6\xf4\x0a\x58\x29\xce\x75\x0f\x78\x07\x63\xa2\x1f\xd1\x57\x23\x62\x18\xd8\xef\x81\x4a\xf6\xe8\xbe\x1a\x19\xc3\xb4\x7e\x0f\x64\xb2\x47\xfa\x15\xc8\x64\xca\x6c\x60\x28\x97\xbb\xce\x1a\x15\xda\xac\x3c\x6f\xeb\x1e\xd7\x29\xbd\x6c\x34\x9c\xcb\x26\xed\x1e\x63\xb7\x7b\x4c\xd5\x37\xed\x18\xb1\xa6\x82\x4b\x4a\x18\x97\xfb\x0a\xc1\xd6\x5b\x48\x0f\x19\xe9\x28\xef\x01\xe0\x30\x99\x49\x09\x7b\x5a\x5f\xe2\x30\x62\x2f\x2b\x25\xc1\x95\x65\xa6\x9c\x2e\x79\xf3\x26\xa0\x28\x62\xb7\x44\xfb\x9d\xba\x9f\xfe\xae\xdd\x57\x1a\xdd\xcd\xdd\x57\x34\xf8\xdb\x76\xff\x37\xed\xa8\x7c\x2a\xaf\x5c\x5c\x86\x70\x60\xcb\x67\xc7\xa9\x9e\xff\x72\x65\x79\x71\x09\x2b\xec\xb6\x14\x22\xbd\x20\x99\xdc\xaa\xeb\xaf\xc2\x58\xde\xee\x1a\x9a\xb5\x56\xc6\xe5\x15\x80\xd3\x5c\xd0\x42\xad\xdf\xae\x77\xab\xe2\x5f\xe5\xd9\x49\xb6\x63\x17\x4d\xa6\xb5\xdd\x72\xce\x19\xae\xb5\xc3\x6b\xcf\xb3\xd1\x6a\x55\x8f\xf2\x5b\x3d\x68\xbf\xeb\x1d\x52\xef\xe2\x35\xc6\x84\xad\x56\xb2\x69\xeb\x65\x60\xfe\xdb\x72\x76\x0a\x5e\x75\x4a\xf9\xf6\x96\x5e\x30\x32\xd7\x2f\xd9\x14\xc7\x34\x4f\xc8\xe2\xc9\xc4\x41\x09\x4b\x83\xaf\x66\xa7\x85\xa7\x4c\x86\xc0\xf4\x0b\x34\x51\x6e\x1c\x06\xe3\x2f\x88\x20\x5b\x29\x3f\x44\x15\x05\x67\xf1\x22\x65\x7e\x7c\x13\x21\xd1\xbb\x5c\xbe\x14\x50\xf2\x5c\x3b\x73\xc4\x1f\xc5\x3c\x98\x2c\xc1\x81\xb4\x73\x27\x26\xcd\x4d\xda\xf0\xd5\x7e\xf5\xfa\xc5\x4b\x22\x24\x0a\x77\xc3\xe4\x67\x3a\xff\x35\x26\x95\x91\xad\xb3\xdf\xed\x51\xb8\x48\x72\xda\x41\xcb\x77\xfb\x16\xc8\x45\x93\xf6\x74\x5a\xf5\x22\xc9\x5c\x94\xdc\x2d\x99\x97\xe4\xfc\x52\x9b\x18\x7c\x52\xd9\xd6\xc1\xf2\x70\xdf\xd5\x4c\xbf\x93\xf1\x87\x4e\xc6\x29\x3b\x78\x4d\xa0\x42\x35\xac\x7d\x41\xf8\xde\xb2\x1a\xc0\xae\x8a\x22\xbf\xba\xe6\x26\x64\xe1\xf7\xae\x2a\xeb\xb5\x10\x94\x2b\xa6\x2a\xf3\xf3\x2b\x67\x6b\x9e\xc4\x73\xfb\xaa\x64\xb5\x2a\xf8\x67\x09\xae\xa2\x38\x61\xef\x99\xe7\xc7\x51\xb8\xcc\xcd\xb4\xac\x9b\xa8\x2c\xc3\x21\xd5\xe3\x51\x89\x55\xaf\x02\x07\x19\xf7\xbc\xd1\xa8\x4a\x55\xd1\xd0\x73\xfe\x82\x8b\x41\x16\x0a\x11\x00\x36\x80\xc0\xa4\xa3\xd8\xac\xb2\x19\xc9\xf7\xcb\x8e\x47\xa1\xaf\xca\x72\x16\x21\xa5\x38\xd1\x5b\xeb\x47\x83\x4d\xd9\x43\x87\x95\x25\x12\x46\x3a\x58\x19\xc0\xfc\xa1\x51\xb4\xf9\x77\xb6\x86\x33\xa7\x19\xb6\xd6\x4f\x48\x7d\xf6\xf5\x51\xce\xe2\x64\xbb\x75\xc8\x9e\x02\xa7\x25\xf1\xee\x55\x3c\x93\x49\xed\xe2\x59\x50\x15\x9e\xd7\x62\xe6\x98\x77\x94\xf1\xee\x3b\x09\x0e\x88\x69\x6d\x73\xf2\x02\x7b\x8e\x36\xb1\x71\x02\x6b\xe5\x76\xe9\xe4\x85\x02\xa8\x5d\xdc\x0c\xa2\x6a\x16\xff\x9b\xec\x5c\x7a\x3f\xca\x61\x20\xc5\xf7\x2d\x6c\xde\x10\x90\x15\x28\x51\x9b\xe0\xc8\x65\x28\x0e\xf2\x2e\xe4\x1a\x7c\x64\x06\xa4\x99\x81\xdf\xbc\x23\x7d\x78\x75\xf1\xaf\xe2\x33\x55\x9f\xa5\x3c\x89\x97\xa5\xf0\x85\xb9\xa9\xd5\xcf\x61\xe5\x56\xf8\xa2\xe0\x6d\x7f\x73\x21\x78\x87\x8c\x8a\x2d\x4a\xae\xb8\xb5\xc5\xfb\xcf\x4b\xa5\x59\xe3\xae\xcd\xb5\xc0\xae\x49\xbd\x53\xc0\x59\x46\xee\x29\xa1\x7c\x7f\x34\x37\x99\x9c\x1e\x8c\x69\xb7\x80\x69\xd1\x77\xc5\xfd\x03\x9e\x14\x21\x1d\x14\xa8\xaf\x58\x79\xdf\x78\xd0\xbb\xa3\x40\x57\x40\xde\x16\x0d\x7a\xbf\x18\xd0\xa5\x51\xdb\x3f\xe8\xb6\x3d\xf8\x25\x9f\x1c\x07\x8d\xfe\xc6\x40\x58\x25\xb0\x32\xf6\xee\x40\x06\x86\x50\x81\x8a\x87\x62\x52\xee\xd6\x6d\x1e\x7f\x80\xe1\x95\x01\x20\x36\x8d\x62\x09\x64\x3e\x98\x95\x82\x7c\xed\x25\x81\x34\x4c\x92\x41\x90\x33\x0f\x23\x32\x4e\x44\x99\x1a\xec\x22\x7b\x37\x9c\xd5\x31\x2d\x9a\x99\xd4\xd4\x52\x46\x81\xda\x1f\x6d\x1e\xbf\x89\x6f\x58\xf2\xdc\x4b\xc5\x14\x01\x2d\x79\x19\x2d\xd9\x68\x1d\x3e\x20\x16\x7e\xc5\x38\xd1\x19\xa1\x79\x79\x42\x2b\x91\xd8\x36\x7f\x2d\xb9\xae\xac\xa1\x9f\xda\xe9\xcb\xc6\x81\x36\x05\xf6\xee\x8e\xae\xb1\x7b\x90\x75\x49\x9a\xfd\xac\x1a\xe0\xc0\x1a\x60\x83\xce\xe1\xc3\x6b\xf0\xda\x3c\xb8\xc1\xc1\x83\x5b\xd1\x85\x52\xe8\xb0\x8a\xa5\x0b\x9e\x3a\xee\xcf\x33\x6d\x28\x36\xbf\xa4\x76\xe0\x2f\x21\x74\x82\x68\xa8\x02\xaa\xb0\x46\xa3\x3a\x40\x58\x3e\x20\xd8\xa6\x60\xe6\x76\x9b\x55\x6c\x16\x62\xae\xc8\x28\x41\x7a\x5d\x6f\x8e\x25\x95\x1b\x86\x43\x98\xe0\x67\xd9\xc2\x2b\x2f\xf2\x43\x76\x39\x0d\x2c\x6b\xc8\x88\xc4\x24\x90\x47\x4d\x0f\x82\xf7\x94\xe2\xf5\xc0\x50\xa9\x30\x37\x94\x52\x07\x2d\x22\x9f\x4d\x82\x88\xf9\xd6\xc8\xc5\x7d\x2b\xd9\x65\x4e\xac\xde\xb1\x19\xa6\x99\xb4\x55\xd8\x25\x12\x63\xe2\xad\x56\x8e\x47\xc5\x50\x8d\x1d\xd1\xa6\x48\xab\x6a\x9b\x78\xb8\x4a\xe4\x8f\x61\xe2\xe5\x6e\x2c\x66\x7f\x10\x0f\x4b\x5e\x56\x1e\xbc\x8d\x6b\x33\xc6\xa7\xb1\x5f\x8b\xbc\x19\xf3\x6b\xe8\x41\x33\x6e\x3e\x40\x0f\x8c\x73\x39\x53\x3f\xe8\x0b\x08\x0e\x76\xe1\x4f\x20\xad\xc0\xd5\x90\x41\x80\xd0\x49\xde\x71\x14\xe1\xe6\xfc\x69\xcc\x72\xd5\xd9\xad\x62\xa8\x61\x62\x06\x9d\x21\x44\xfa\x91\x87\xb3\x92\xd2\x67\x53\x35\xa8\x23\x5f\xbe\xaf\x9d\x04\xf7\xb8\xe3\xc7\xe3\x85\xf2\xdd\x14\x39\x5a\x74\x7c\xfe\xe6\xf5\xf3\x7f\x7c\xd6\xa1\xbb\x48\xd2\xd6\xb1\xb0\xe4\x40\x5e\x5e\xfc\xfd\xef\x6f\x5e\x92\xa2\x96\x89\x51\x31\xf8\x52\x1e\xef\x09\xa9\x46\x7b\x5d\x6c\x34\xc2\x52\xf7\xd5\x86\x45\xd4\x55\x99\xf4\x77\x63\xa3\xf0\xea\xec\xed\xdf\x5f\x12\xd4\x46\xcd\xa4\x6d\x42\x64\xb5\x5f\xbf\x7d\xf7\xf1\x92\x38\x65\xa7\x5b\x85\xa6\xa3\x9d\x4d\x47\x04\x7d\x1e\x4f\xbd\xe8\x8a\x21\xc2\x8a\xad\xff\xed\xcd\xc7\xf7\xf7\x69\x1b\x9c\x76\x95\xe8\x3d\x8f\x90\x13\x5b\x4f\x88\xd8\x68\x71\xb5\x5a\xc9\x03\x93\xfe\xda\x82\x31\x5c\xae\x11\x86\x8b\xf8\xfe\xe3\xe5\x2f\x2f\x2e\xfe\xf5\xf6\x37\x1e\xae\x2f\x6c\x29\x4f\x54\xa5\xf1\xfa\xc7\xcb\x5f\x3e\xbe\xfb\xed\x5b\x5f\xcc\x2b\xda\xfe\xf9\xe2\xf9\xc7\x0f\xbf\xd5\x64\xc5\x05\xcb\x0c\x2b\x0a\xf8\x56\x6c\xe1\x1e\x53\xe2\x4a\xec\x88\x6c\xb4\x5c\x27\x97\xdf\x7e\x9e\x85\xba\xa2\x61\x3e\x2b\x8a\x9f\xc7\xd1\x24\x0c\xc6\xb9\x90\x53\x46\x9e\xb4\x1a\x89\x49\xb9\x99\xb5\x0e\x1e\x87\xd7\x62\x37\xb4\xb9\x0f\x89\xf0\xdd\x9a\x88\xff\xe5\x79\x52\xbd\x38\x7a\x9c\xde\xa9\xfb\x4d\xf7\x4e\xf4\xd0\xad\x77\xc9\x38\x95\x67\x1f\x17\x4d\xc2\x98\x5f\x06\x73\x44\xc6\x71\xc4\x59\xc4\x5d\xf4\x43\x5a\x5b\xd5\xfe\xed\xd6\x7e\xb8\xad\xad\x6a\xbf\xb8\xb5\x1f\x96\x88\xc0\x2b\x54\x69\xd8\x03\x81\xde\xc8\xb2\x98\x00\xaa\x44\x31\x89\xa9\xfc\xf6\xbd\xa5\xf5\x95\x4e\x83\x09\x4f\xdd\xbb\x5b\xb7\xdb\x21\x4b\xf7\xb8\xb3\x26\xca\xbd\xe1\xe5\x94\xcd\x20\xfe\x57\x1a\x79\x73\xf1\x37\x0c\x22\x96\x02\x8e\x61\x30\xfe\x72\x19\xcc\xe1\x23\x8e\x5e\xc5\xd7\xcc\x56\x18\x8a\xbe\xae\xc9\x5f\xc5\x79\xcd\xe3\x6e\xbd\xbb\x5e\xf7\xb8\xbe\xc8\xbd\x98\xf3\x94\x9a\xaf\x9e\xa4\x21\x7b\x5c\x80\x01\xf3\x60\xae\xc5\x11\x7a\x77\xeb\x0a\xc4\x3a\x4a\xae\x87\xf8\x6b\x0c\xaf\x7b\x91\x25\x7f\xe4\xe3\x86\x19\xef\x22\x5c\xfa\x07\x64\xed\x79\x18\xf3\xf6\x3c\x5c\x5c\x05\x91\x09\xda\xaa\x75\x8e\x22\xef\x9d\xcc\xa2\x83\x21\x49\x4c\xb8\xd7\x98\x76\x7a\xf1\x49\xd2\x8b\x9b\x4d\x5c\x2c\xa9\xfc\x6f\xe7\x00\x0f\xe2\x61\x5b\x6c\x65\xb8\x67\x02\xe1\x05\xd9\x3a\xb9\x13\x18\xdf\x0a\x5c\xbc\x2b\xf6\x6f\x12\xb5\x97\xea\xf7\x2f\x04\xa2\xa5\x5d\xca\x11\xd1\xdd\x76\x22\xbc\x36\x60\x3c\x27\x91\x52\x40\xd4\x86\xa1\x9f\x81\xff\x68\xe6\xf0\xb6\x10\x37\xc4\xb1\x6b\x1a\x87\x3e\x03\x5b\xcf\x11\x68\x9c\x04\x5e\x53\x31\x2d\x88\xa4\x62\xc5\x08\x46\xa7\x5a\x70\x30\xb1\xc0\xd0\x7a\x17\xbb\x4e\xaa\x1a\x20\x91\x80\xf8\x22\x9e\xbd\x0c\xd5\xf1\x50\xea\x4d\xae\x83\x34\x80\x93\x8c\x90\xbf\x2a\x9b\x5d\x44\x55\x0d\xe7\x1a\xea\x60\xab\x4b\xba\x45\x25\xd8\xe4\x97\x0f\x49\xcc\x3a\x04\xc7\x2f\xe9\x7f\x12\xee\x38\x51\x8b\xe1\x87\xf0\x6f\xd3\x49\x5a\x1c\x3f\x84\x7f\x31\x68\x95\x03\xcc\x95\x0b\x72\xd9\xc7\x80\x44\x16\xc5\x49\xbb\x9c\xc8\x9b\xf7\x03\x37\xb6\xdd\x20\x0a\x6c\x4d\x3e\x4b\x02\x96\xb6\x81\xc8\x01\x56\xa3\x01\xae\xc2\x4a\x80\xa0\x84\x44\x3c\xa5\x79\x18\x57\x49\xe0\xb7\x41\x55\x76\x06\x4a\xad\xf7\x9e\x1f\x2c\x52\x32\xa6\x77\x7e\x20\x45\x51\x37\x6d\x76\xd7\x24\xa4\x71\x8f\x49\x31\x03\x06\xf3\x85\x0c\xb1\x68\xb1\x57\x31\x04\x9a\x10\x03\xda\x21\x29\x6d\x75\xc9\x82\x76\x7b\x8b\x93\x44\x3a\xc1\x54\x64\xbc\x68\x36\xb1\x4c\x19\x2c\x5a\xdd\xe1\xa0\x33\x3c\xa1\x71\xfb\xb6\xd1\xd0\x89\x22\xe9\x54\x26\x39\x01\x5d\xb4\xba\x24\xa5\x0b\xa5\x33\xa8\x53\xaa\x7a\x32\x17\xeb\x4c\x55\x09\x44\x15\xb2\xb4\x3e\xbb\xc3\x35\x99\x58\x25\xd2\x7c\x89\x54\x96\xf0\x4b\xd3\x28\xa6\x98\xa4\x32\xd6\x63\xba\x5a\x39\x69\x65\x09\x79\x4a\xcb\xc4\xd3\x4c\x8e\x8f\xd4\x41\xe1\xee\xd6\x8d\xc8\xd2\xe5\x30\xd7\x95\x25\x93\xac\x24\x13\x88\xad\x81\xb5\x78\x30\x6e\x47\x8e\x13\xb4\x12\x7c\xe4\xc4\xad\xc8\xf8\x2e\xbe\xbb\x75\x3d\xea\xc4\x0f\x1d\xf6\x30\x6d\xf1\x66\x82\x9b\x91\xf8\xdd\x4a\x9b\xbc\x15\x60\x7c\xe4\xa4\x0f\xa1\x7c\x33\x69\x05\x98\x2c\xdd\xf4\xa1\xd7\x4a\x1f\xb2\x26\x5f\xaf\x73\xb8\xe3\xf6\xed\xa9\xf4\x5f\x34\x0b\x40\x5a\xc7\x8d\x46\xda\xbe\x3d\x51\x69\xde\xad\x49\x5b\x5a\xe5\x12\x12\xc8\x34\xab\x9c\x48\xd3\xcf\x60\x93\x56\x20\x88\xa4\x15\x91\x05\x8d\x1e\x06\xad\xe4\x61\xdc\xb3\x57\x84\x37\x4a\x9d\xf1\x43\xd6\x0c\x1f\xf2\xe6\x02\x1f\x65\xab\x64\xfc\x70\xdc\x0c\x1f\x86\x78\x2d\x27\xd5\x33\x0b\x8a\x4c\xd4\x87\x40\x5a\xc3\x9a\x9f\x4e\xfa\x13\x77\xbe\x76\x92\xf6\xad\x77\x2b\x58\xdc\xf1\xd8\x89\xdb\xb7\xe0\x46\xc2\x4a\x58\x8a\x84\xac\xc4\xbc\x58\x62\x5e\x2c\x31\x29\x96\x98\x88\x12\xf5\x2e\xd0\x9d\x7f\x32\x6e\xeb\xf5\x20\x3b\x3c\xa5\x9e\x00\x4a\xe6\xed\x25\x89\xdb\xb7\x44\xb4\x78\xe2\x39\xea\x27\x99\xb4\x6f\x89\x00\xd0\x0f\xdc\x94\x8c\xa8\x23\xc9\x6e\x1e\x07\xe2\x44\x29\xff\x04\x5f\x19\x19\xc4\x12\x44\x53\xb4\xd6\x12\x38\x3d\x74\x04\x8c\x96\xc0\xf7\x48\xe0\x04\xbf\xf0\x10\xf7\xec\x15\xe9\x93\x80\xb3\x99\x7b\x67\x60\xba\x23\x22\x7e\xc3\xf5\xb2\x3b\x25\x92\x31\xb8\x89\xfa\x21\x93\xd9\x7a\x5d\xcd\x62\x1a\x0d\x27\xa4\x77\xc0\xe4\x5d\x7b\x44\x46\xe0\x7e\x05\x18\xbe\x6b\x0f\xcc\x68\xd0\x1d\xe2\x35\x5e\xab\x8b\x97\x3c\xa7\x16\xe2\x4e\x36\x56\x27\x69\xb3\xdb\xcf\xf3\xb9\x71\x5b\xe0\x4e\x42\xec\x16\x6b\x56\x82\xe3\xed\x69\x1c\x7f\x49\x61\x93\x00\x69\x4f\x6d\x64\x19\xe3\xe1\x82\xf1\x14\x79\x23\x05\x26\xa5\x3e\x1c\xf0\xfd\x2b\xc3\x53\x67\x47\xbe\x3c\x1f\x54\xe3\xd2\x68\x38\x95\xe9\x42\x08\x90\x97\xa9\x95\xd9\xa4\x32\xb5\xba\xac\x00\x45\x7c\x16\x32\xce\xaa\x71\x10\x05\x04\xe5\x81\x18\x5a\x91\xaf\x58\x7d\x35\xfb\xd9\x58\x41\x6c\xc5\xf9\xc9\xdf\xd8\x95\x02\x8d\x28\xb1\xa8\xef\x44\xed\x1b\x31\xea\x14\x81\x5b\x57\x44\xa2\xf6\x54\x7e\x4b\xf7\xb3\x08\xbb\x59\x91\x20\x8a\x94\x27\x4d\xab\x1c\x24\xbe\x52\x85\x7b\xa5\x9d\xbb\xb7\xbf\x7c\x50\x42\xd2\x08\x78\x8d\xc6\x2e\x28\xea\x76\xc9\x2b\x4a\x15\x84\x39\x89\x2e\x07\x3b\xe2\x2c\xbe\x66\x88\x88\xd3\x3b\xc8\xf0\x92\x10\xd3\xe9\x82\x8b\x33\x50\x99\x0c\x23\x7c\x77\x88\xa4\xb1\xbb\x6c\x86\xa8\xbe\x40\xc8\x04\x22\xe6\x44\x59\xe1\x3c\xb6\x80\x6c\x59\x3e\x2b\x49\x9b\x09\x2d\xcd\x00\x89\x69\x92\x73\x82\xda\x2c\x73\x0c\x90\xbe\xdb\xb7\x24\xd0\x45\x5f\x65\xce\x87\xab\xcb\x2e\x7b\xbc\x7d\xdb\x62\x05\x1f\xc6\x6f\xd8\x84\x3b\xf8\xd4\x24\x0f\x14\xed\x0c\x1d\xdc\x8a\x1b\x0d\x47\xd4\xa1\x31\xe1\xed\xdb\x6c\xc3\xe1\xed\x5b\x02\x96\x47\xed\x65\x09\x1e\xf8\x44\xce\x81\x9b\x6a\x70\x01\x80\x5b\xb6\x68\x80\x49\x90\xbe\xf5\xde\x0a\x40\xb8\x1f\xd9\x52\x7b\xfb\x96\x16\xbe\xdf\x25\xec\x5a\x50\x74\xbe\x90\x40\xa1\xa2\xa0\x48\xcf\x80\x2f\x8b\xc0\x97\x05\xe0\xcb\x2a\xe0\x4b\xca\xdb\x4b\x52\x51\x50\xa4\xe3\x35\xc9\x31\x52\x5b\x2e\x49\x48\x2c\xa7\x34\xa8\x98\x52\x8f\x46\x6d\xa9\xef\x92\x47\x2c\xa7\xbc\x76\xe4\x69\x8d\x30\xdc\x43\x82\x97\x78\x42\xee\x92\xfe\x69\xbc\x6a\x5a\x72\x84\x78\x93\x1f\x04\xb2\x2c\xa4\x2c\xd7\x98\x48\x0f\xc9\x77\xe0\xbe\xb7\x50\x7e\x0b\x65\xf1\x78\x5e\x84\xb5\x99\xb6\xd6\xda\x54\x92\x64\x61\xac\x6d\x26\x5f\xa8\xa6\xce\x7e\x8d\xc6\xa6\x1c\x87\x09\xa1\x66\x9d\x3f\x81\xd8\xc7\xed\xf2\x81\x43\xaa\x48\x55\x30\x3a\x04\x75\x73\xcb\x75\x7b\x6d\x6d\x6f\x04\xdb\x73\x76\x40\xcc\x15\x2b\x9a\xf0\x70\xca\x4c\x4c\x86\x5c\x64\x8b\x7c\x9f\xd4\x55\x62\x71\xba\xd5\x79\xbd\xd1\x80\x00\xeb\x00\xab\xad\xac\xa8\x37\x14\x35\xf1\xd7\x1b\x0d\xc7\x31\x8d\xd7\x8e\xca\xfe\xff\x37\x03\x90\x0f\xbb\x2f\x63\x07\xa9\xf7\x87\x6a\xd8\x80\x42\xb4\x13\x6a\x17\x79\xa3\x34\x0e\x17\x9c\xa1\xb5\x52\x3a\x17\x20\xda\x47\xfd\x46\x43\xb9\xa7\x1e\x79\xe3\x2f\x57\x49\xbc\x88\x7c\x17\xfd\x65\x32\x99\x20\x82\xbe\xb6\xe0\xb2\x02\xb9\xa8\xdb\x79\xdc\x41\x64\xee\xf9\x7e\x10\x5d\xb9\xa8\xd3\x7e\xcc\x66\xb5\x4e\xfb\x29\x9b\x41\x5c\xfb\xc4\x67\x49\x2b\x81\x63\x0f\x12\xb9\x4f\x20\x7d\x12\x47\xbc\x05\x86\x0b\x22\xed\x47\x91\x26\x8b\xba\xa8\x3b\xbf\xad\xa5\x71\x18\xf8\xb5\xbf\x74\xbb\x5d\x44\xfc\x20\x9d\x87\xde\xd2\x45\x51\x1c\x31\x44\xd0\xcd\x34\xe0\xac\x95\xce\xbd\xb1\xa8\x1c\xc5\x37\x89\x37\x47\xc0\x95\xf3\x33\x6c\x2f\xca\x2a\x57\xa3\xea\x30\x22\x4e\x04\x47\x3f\xa4\x47\x64\x4c\x8f\x7e\x18\x1f\x91\x90\x1e\xfd\x10\xde\x1e\x91\x85\xf8\xbb\x3c\x22\x73\x7a\xf4\xc3\xed\xa7\xf6\x5d\x87\x74\xd7\xce\x27\xff\xae\x43\xd6\xf8\x88\x4c\xe8\xd1\x0f\xcb\x62\xea\xc6\xb3\x08\xd7\x67\x49\x3e\x4d\x58\x2a\x76\x23\x08\xf6\x94\x09\xad\xe2\xf0\x94\xe4\x12\xba\xe0\x91\xc0\x4a\x38\x1e\x62\x77\x3b\xf0\xf1\x22\xb9\x66\xfe\x1b\x71\x18\xdd\x03\xfc\x2e\x68\x70\xa8\x15\x14\x90\x3f\x06\x73\x36\x57\xd0\x55\x7a\x49\xf0\x1e\x1c\x3f\x94\x2d\x81\x5c\x2c\x1b\xde\xaf\x6c\x13\x3a\x8d\x90\x8c\x64\x65\x57\x1a\xd8\x10\x75\x6f\x36\xe6\xab\xb1\xdb\x98\x7f\x3c\x94\x97\x45\x82\x8f\x99\xee\x79\x23\x16\x5a\xdd\x8d\x93\xe0\x2a\x88\x3e\xc0\x07\x6c\x6f\x76\x39\x5a\x59\x4c\xe6\x55\x33\x4a\x79\x4f\xc5\x0a\x70\xe0\xcc\xc8\x71\xa5\xfc\xcc\x1a\x8d\xba\x8e\xa0\x80\x90\x20\xad\x58\xc2\x68\x27\x4c\x5a\xc4\xa0\x1f\xc6\x1c\x91\x58\x54\xdf\x3a\x93\x73\x96\x8c\x59\xc4\xfb\x01\x2d\x26\xed\x20\x01\x55\x2a\x95\x8e\x45\x8a\xa9\xb9\x31\xc5\x04\x45\xf0\xdc\xd3\xea\x41\x90\x19\x84\x79\xfe\xaf\x8b\x94\xff\xd3\x0b\xdf\x25\x6c\x1c\xa4\x62\x21\x1e\xfd\x30\x2f\xad\x2a\xd8\x1b\x88\x69\x69\xea\xa5\x17\x37\xd1\xbb\x24\x9e\xb3\x84\x2f\x1d\x34\x0f\x40\xe1\xb4\x1d\x69\x98\xee\x8e\x20\x82\x46\xc3\xf1\x68\x45\x7a\x15\xae\x5e\x69\x6c\x23\x04\x77\x59\x8c\xee\x58\x26\x62\x1e\xfb\x59\xc5\x94\xe4\xb3\xb0\x6b\xe7\x21\xb4\x1b\xe2\x38\x0e\xe3\xc4\x82\x38\x26\xf9\x2c\x1b\xe2\x58\x41\x94\x57\x89\x5e\x7a\x76\x1b\xa4\x6f\x44\xb3\x0e\x82\x83\x26\x22\x1c\x5b\xa0\xc2\x0c\x94\x3c\x87\x1a\xd5\xbb\xae\x67\x03\x0f\x37\x03\x5f\x56\x00\x5f\x64\xc0\x97\xbb\x81\x2f\x00\xb8\x54\xe0\xc2\xbb\x4e\x30\x6e\xcb\xb0\xd6\x66\x3a\xe9\xbf\x33\xed\xb5\xc3\x71\x61\x9a\xd4\xdb\x51\x08\x58\xc3\xbd\xd9\xfc\x32\x06\x63\xcb\xa8\x72\x6b\xb3\x14\xe3\x1b\xc6\xc1\x44\x68\xb3\x51\x5a\x96\x50\xfa\x65\x1b\x4a\x93\x6a\x94\x92\x4a\x94\x96\x55\x28\x2d\x8b\x28\x95\xc9\x35\xda\xba\xb4\xe6\x84\x91\xa8\xb2\x5e\xb2\xb5\xde\x84\x30\x92\xec\x64\x27\x72\xc4\x78\x30\xfe\xa2\x34\x85\x7e\xcf\x37\x34\xf2\x3e\xe6\x1e\x67\xfe\xbf\x05\xad\x5c\x8a\x22\x0e\xc7\x7d\x94\xc8\x54\x48\x40\x2e\x82\xba\xa8\x27\xf5\x3c\x36\xff\xd7\x6d\xc0\x57\x4f\x6b\x3b\x47\xb5\x20\x2a\x34\x3f\xf0\x87\xd2\x46\xb8\x98\x5a\xe4\x19\x53\xe3\x93\xad\x92\xca\xb0\xb2\xcb\x4d\x9f\x7b\x9c\x5d\xc5\x02\x54\xa1\x44\xbf\xd4\xc4\x60\x3a\x94\x4b\xdb\xad\xcc\xba\xc6\x94\xd2\xa8\x4c\xa7\x1b\xc1\x98\x42\x47\x9f\xfe\x7a\x74\x45\xd0\x5f\xff\xfa\xd7\xbf\x22\x8c\xf1\x7a\xbd\x53\x9c\x58\x5a\x53\xa1\x47\x6b\x96\x1b\x2d\xbb\x44\x6e\xc0\xac\x8c\xe2\x98\xcd\x36\x0f\xcb\xb2\x3c\x2c\x16\xa0\xc1\xac\x34\x32\x85\x5c\x18\x9c\xa4\xbc\x62\xb6\x01\xdb\x38\x3e\x6a\x6f\xdc\x93\x58\xf5\x53\xf7\x62\xeb\xe8\x87\x5b\x54\x64\x07\xb9\xf2\x82\x9b\xe4\xb2\x71\x19\x23\x19\x6d\x6d\xcf\xb9\xda\x8c\xc9\x12\x55\x0d\x45\x86\x49\x52\xc8\xde\x84\x09\xcb\x4b\xc2\x19\xe9\x57\xda\x44\x6c\xc5\x7b\xc0\x86\x86\x91\xcf\x62\x9f\xa9\xf0\x60\xc8\x92\x9d\x8a\x45\x8a\x8d\x5b\x1c\x9c\x96\x5f\x04\x54\xb7\xbe\x9d\x7d\x37\x1a\xca\xd6\x67\x47\xb9\x22\x26\xbf\x7c\x1f\x4c\x96\x7b\x62\xb2\xdc\x8c\x49\x7e\x61\x7d\x97\x69\x19\x1b\x90\xfb\x4f\x4e\x61\x97\xa2\xb6\xba\x8d\x24\xda\x35\x92\xba\xd5\xf4\x3d\xce\xfe\xce\x22\x06\xa1\xa6\x41\x2f\xdc\x33\x8f\x3a\xa0\x80\xf4\x1c\x01\xdb\x5d\x4c\xaa\xf7\xe0\xec\xea\xb9\xfa\xf4\xa9\x6e\xa2\x71\x1e\xcd\xf2\x5e\x45\x8b\xd7\xeb\xa0\x71\xd3\xf8\xe8\x39\x69\xcf\x3c\x3e\x9e\x3a\x4c\x08\x8d\x62\x10\xdf\xb3\xab\x97\xb7\xf3\xf6\x5f\xbb\x10\x25\xcc\x7c\x91\x08\xee\xf4\x7e\x0e\x6e\x99\x74\x49\x49\xb9\x59\x58\x72\x27\x2d\xcc\x9f\x2d\x0c\xd1\xbc\x8a\x52\x62\x00\x17\x69\xac\x1d\x44\x67\x49\xe2\x2d\x1d\x64\x44\xa0\x54\x3d\xb2\xb2\x6e\x8e\x37\x49\xb4\x91\x9e\x41\x3e\x2c\x8b\x52\x8d\xc6\xd6\x6c\xa5\x4e\x38\xed\x94\xf0\x2e\x6d\xd0\x39\xbd\x65\x35\xf6\x82\x09\xbd\x8f\x79\x9c\xec\x8f\x7c\x81\xa1\xda\x02\xc0\xba\x57\xb8\x7e\x07\x4d\xef\x5d\x10\x05\x3c\xf7\x60\x28\x62\x37\xb5\x08\xa2\xef\xa8\xee\xb9\x9c\x44\xde\x8c\xb9\x48\x11\x0d\x22\xd7\x2c\x49\x41\xab\xd1\x69\xff\xd8\x7e\x82\xd6\x38\x33\xc1\x20\x25\x03\x0c\xb4\x48\x19\x18\xf1\x8d\x39\xea\x49\x23\xdf\xb6\x44\xdc\xec\x7c\x9c\xa0\xcf\x9f\x61\x49\x2e\x42\x86\xc8\x1d\x58\x37\xbb\xf5\xce\x5a\x1c\x4a\x9e\xc7\xf3\xe5\x65\xfc\x3c\x0c\xe6\xa3\xd8\x4b\x7c\xfd\xd4\x5f\xaa\x7a\x15\x3c\x2f\x4d\x83\xab\x68\xb5\xb2\xfb\xa1\x37\x66\x4e\xbb\x3d\x7e\x52\x34\x7c\xec\xf1\x66\x53\x5b\x04\x98\xbc\x01\x1f\x1a\xe9\x27\x11\xfb\x79\x84\x55\x03\xb9\xb9\xb4\x36\x6d\x6d\x17\x93\x80\x38\x3a\x48\x86\x34\x1a\x24\x43\x13\x4a\x99\xad\x49\x9c\xf3\xa7\xa8\x6f\xdd\x99\xe4\x38\xba\xb1\x88\x76\x7a\xd1\x89\x8e\x42\xd8\x8b\x34\x6e\x09\xe5\x83\x68\xd8\x4b\xda\x2c\x5a\xcc\x58\x02\xd6\xfb\xf6\xc7\x6a\x55\xef\x92\xa4\x3d\x8e\xa3\x49\x70\xb5\x90\xf9\xf5\x0e\x41\xd2\x3c\x3c\x88\x40\xf0\x4c\xda\x37\x49\xc0\x55\x1e\x26\xd5\x53\xc0\x48\xd2\xfe\xc2\x96\x24\xc1\x6b\x8d\x7c\x91\x29\xe9\x45\x2e\xaf\x22\xcc\x88\x90\x08\x93\x04\xd2\x88\x58\xc3\xeb\xb5\x83\x49\x40\x53\x27\x72\x3a\xe0\xc6\x58\xfc\xea\xfe\xf4\x13\xb6\xac\x31\x52\xfb\x61\x5a\xa3\xc1\xda\xd9\xec\xf7\x99\x7b\xa7\x74\x61\x2e\x5b\x67\x66\x0a\x63\x39\x60\xc1\xc4\xa9\xdb\xb6\xfa\xef\xd9\x84\x25\x2c\x1a\x1b\xb3\xfa\x69\x90\xd6\xa6\x5e\x1a\x3d\xe0\xb5\x11\x63\x51\x4d\x90\x77\xe0\x85\x41\xca\xfc\x5a\xab\x96\x2e\xe6\x2c\x71\x70\xae\x84\x98\x41\xe6\x67\x2f\x46\xf9\x6a\xa5\x8d\x38\xad\x75\xd5\x68\x64\xea\x05\x2b\xb9\xcf\x5c\xbe\x76\xca\x44\x9a\x23\x44\xdd\x07\xae\xed\x09\xc5\x78\xf6\xea\xf9\xcd\x47\xf4\x6c\x3f\x4b\xd9\xe7\x5e\x14\xc5\x1c\xf0\xae\x79\xd2\x83\x65\xcd\x4b\x6b\x9e\x99\x30\x84\xd7\xd2\x28\x92\xe3\x5e\x66\x43\x53\x5c\x01\x24\xa5\x92\xcf\xc4\x98\x84\xb4\xd3\x0b\x4f\xe2\x5e\xd8\x6c\xe2\x74\x10\x0e\xad\x25\x11\x9a\x08\xf8\x11\x4d\xe8\x58\x02\x16\x87\x99\xf6\xe7\xcf\x40\x03\x9f\x3f\xaf\x56\x8a\xa6\xae\x18\x7f\xa7\xc9\xe2\x62\xe2\x70\x8c\x61\x7d\xb4\xbd\xf9\x3c\x14\x24\x06\x6f\xcc\x86\x82\x5c\xc7\x1e\x77\xe0\x8c\x95\xb4\xe3\xe8\x79\x18\x8c\xbf\x94\xe2\x8d\x72\x9a\xc0\x3b\x91\x94\x44\x94\xc3\x03\x6d\xd0\x2e\xc5\x91\x18\x6b\x92\xd2\x2c\x46\x25\x19\x8b\x74\xc9\xac\x48\x48\x03\xad\x4c\x6d\x3f\x57\x05\xda\x71\x14\x2e\x9d\x14\x93\x05\x75\x3a\xc4\xd3\xf9\xd8\x89\xc8\x18\xf7\xe2\x46\x23\x76\x22\xb2\xc0\x24\x6c\x34\x42\xd9\xa6\x3d\xdd\xd9\x31\x4e\x65\x6a\x94\x4d\x69\x9d\x20\x63\x96\x39\x09\x89\x70\x69\x11\xe9\x49\xae\x24\xa3\x4c\x9c\xa9\x9e\xf2\x0f\x82\x6e\x6b\xec\x76\x9e\xb0\x54\x70\x5e\x69\xf2\xce\x02\x3e\x65\x49\x6d\xc4\x60\xe3\x95\x16\xd2\x1a\x3a\xa9\x09\x1a\x41\x4d\xdd\x02\x16\xdc\x5f\xcf\x8d\x66\x9b\xe3\x84\xc1\x1b\xc9\x46\xc3\x5e\xcf\x77\xe3\xcc\x54\xcf\x55\xbc\x98\x91\x8c\xe9\xb8\xf5\x2e\xd1\x1c\xc5\xad\x77\x88\xcd\x7d\x04\xd3\x16\x5c\xbb\xd1\x70\x54\x1b\x69\x8e\x26\xfa\x95\xa9\x30\x38\x2e\xcb\x28\x8a\x72\x41\xc2\x84\x61\x12\x3b\x9c\x0c\xee\xbe\xb0\xa5\x8b\x12\x16\xf9\x2c\x41\x44\x62\x54\xed\x67\x5a\x12\x0c\xa7\x8e\x74\x24\x4a\x98\xa6\x17\x66\x08\x84\x19\xba\xc1\x24\xaa\x8c\x85\x75\xb7\xce\xef\x02\x0c\x73\xf3\x44\x20\xc1\xa7\xb4\x63\x08\x7e\xfb\xb6\xc0\xe4\xb6\x20\x76\x04\x2a\xf6\x06\x23\xb7\x45\x6b\xb1\x18\x90\xc0\x10\x11\x24\x31\x14\x3f\x24\x86\x88\x20\x8d\x21\x82\x40\x31\x9b\x08\x9a\x1b\x80\x59\x09\x78\x30\xad\x6f\x61\x62\x92\x38\x77\x6b\x12\x91\x3b\x45\xa0\xd2\xaa\x5a\x7d\xac\xc5\x59\x77\x28\x58\xb6\x93\xd5\x7f\xb7\x48\xd8\x73\xfd\xbe\x0b\x63\x9d\x2e\x3a\x96\xd2\x3b\x89\xaa\xab\x1e\x5a\x6b\xf9\x40\x7e\xae\xcb\xb6\x97\xb9\xad\x5f\xdd\xcd\x3a\xc7\x9d\x8e\xe8\x14\x12\x90\x6a\x3c\xae\x8d\x35\xd3\x74\x6b\x7f\x11\x13\xbd\x26\xb5\x97\x11\x67\x09\xea\xb1\x36\xbb\x9d\xc7\x09\x4f\x2b\xaf\x11\xe0\x0a\x81\x8c\x49\x48\x16\xe0\x4b\x60\xb5\x72\x38\xbd\x5b\x83\xf3\x61\x6d\x71\x2c\xd2\x93\xa5\x58\x76\x1e\x4d\x20\x02\xb0\x36\x0b\x57\xb4\xff\xde\x8b\xae\x98\x83\xc9\x38\xcb\xb8\x62\xfc\x83\x76\xc9\xe7\x60\xe2\x84\xc5\x3a\x7a\x74\x95\xf7\x21\xe9\x3c\xe2\xb9\xbc\x6c\xa4\x8c\x84\x6d\x88\x06\xdf\xf6\xc2\x90\x22\x78\xba\x8b\x4c\x9a\xbe\x0f\xa2\x68\x22\x84\xde\x2c\x83\xc7\x73\xda\x31\x5f\x62\x48\x28\x4a\xd8\x98\x3b\x1d\x52\x53\xff\xe1\xac\x34\x5c\xc5\x7c\x98\x7b\x63\x46\xd1\x3c\x61\x56\x06\x1b\x7d\x09\xf8\xc7\x94\x25\xb2\x0b\x54\xd1\x98\xce\x3f\x8f\xbf\x6e\xce\x9c\xa5\x9b\xf3\x16\x15\x39\x9e\x2f\x4d\x57\xde\x04\x29\x17\xc7\x13\x07\x8d\x81\x8e\x33\xe3\x81\x08\xdf\x45\xed\x94\xc7\x73\x41\x3e\xde\x95\xa7\x86\x54\x9f\x58\xa4\x55\x4a\xc2\x04\x10\xf5\xe6\x41\xdb\x44\x4a\x8a\x78\xe1\x71\x4f\x7a\xba\x50\x76\x79\xc5\xbc\x54\x59\xec\x69\x88\xca\x82\x9c\x98\x19\x1b\xc5\xfe\x52\x5d\xd1\xc1\xda\x71\x42\x4c\xb4\x0b\xa3\xb7\xb1\xcf\xd4\xb4\xa5\x22\x7d\x2c\x7a\x24\x09\x22\xc5\xa4\x6e\x60\xb0\x5b\x36\x7e\x1e\xcf\x66\x5e\xe4\xab\x2e\xe2\x72\xa8\x5a\x91\x5e\x1b\xcb\x52\xb5\x1b\x2f\xad\x2d\xa2\x74\x31\x1e\xb3\x34\x9d\x2c\x42\x84\x7b\x0b\x5a\xef\xac\xc7\x70\x2c\x9a\xe3\xbb\xa8\xd1\x10\x4c\x36\x0e\x59\x9b\xc9\xfa\x0b\x78\x9a\x09\xeb\x41\x40\x5a\xa4\x41\x74\x55\xb3\x5a\x76\x6b\x88\xcc\x31\xb1\x2a\xde\x78\x49\xe4\x20\x9e\x2c\x45\xc9\xd7\x2f\x6b\xe9\x9c\x8d\x83\x49\x30\xae\xa5\x7c\x31\x99\x20\x0c\x94\xaf\x0c\xf0\xb7\x8f\xda\x6a\xa5\xe6\x94\x89\x1d\xf2\x1e\x78\xe6\xc0\x97\x31\x55\x55\x27\x5e\x18\x8a\xd2\x23\x6f\xfc\x45\x00\x98\x27\xf1\x6c\xce\x91\x90\x16\xcb\x7b\xbf\x73\x34\xf3\xc6\xb5\x38\xad\xdd\x1e\x05\x6d\xce\x52\xee\x44\xde\x75\x70\x25\x8e\xc0\x40\x8c\x67\x57\x82\x3f\xf5\xd1\xa7\xc5\xf1\xa3\xee\x8f\xc8\x45\xcf\x79\x12\x22\xdc\x44\xcd\xe7\x28\x3b\x1e\x1b\x35\xcd\x5f\xee\x3e\xa5\x0f\xbf\xb0\xe5\xa7\xf4\xe1\xfa\xe8\x8a\x88\xed\x05\xcd\x58\x9a\x7a\x57\x20\x26\xf3\x3e\x6f\xab\x4f\x37\xc6\x44\x8d\x9a\x44\xd0\x09\x08\xc3\xeb\xf5\x24\x88\xbc\x30\x5c\xde\x8d\x1b\x0d\xc7\x96\x0d\xd4\x06\x3b\x56\x17\xde\x40\x3f\xfd\xdc\x97\x93\x62\x57\x27\x9c\x85\x21\xa4\xa5\x0e\x06\x71\x23\x4f\xa8\xea\x39\xad\x26\x54\xcf\x31\x62\xc4\xa2\xc0\x5d\xf1\x5d\x05\x73\xd4\x3b\xe1\x06\x56\xd6\x03\xe1\xb9\x9d\x88\xf6\x9f\xc7\x8b\x48\x7b\x61\xa8\x59\x00\xb2\x9d\x8f\x67\x60\xe4\xbb\xf0\x97\x3a\x48\x38\x18\x67\xd3\x4e\x2f\x39\xb1\x81\xf5\x92\x66\x13\x47\xda\x1c\xfb\x8a\x71\xe8\xe7\x19\x77\x12\x8c\xb5\x6f\x66\xde\xe6\xde\x15\xbc\x62\xe0\xf1\xc7\xf9\x5c\x3f\xc3\x53\xce\x98\xe1\x65\x03\x72\xe1\xf7\xe5\xcb\x7f\x5f\x9e\xbd\x7f\x79\x86\x5c\xed\x33\x44\xf9\xb2\xd1\x67\x03\x4e\x85\xcc\xb3\xb6\x66\xba\x30\xbc\xc4\xea\x15\x7a\xee\x25\x0c\xde\x64\xb1\xb6\x98\x2f\x71\xe4\x28\x57\xb0\x7b\xb3\x5a\x81\x7f\xf7\x97\xf9\xf7\x47\x30\xec\x86\x49\x70\x69\x93\x24\x84\x27\xf5\x74\x7d\xbd\xae\x38\xff\x3a\x25\x73\xf8\x5e\x94\xbf\x8a\x32\x87\x09\xee\xca\xb7\x4c\x15\xfb\x1e\xc8\x8e\xac\xfd\xfc\xc3\x07\x81\xfc\xf3\x0f\x1f\xda\x2c\x1d\x7b\x73\x13\xeb\xdd\x4e\xeb\xc9\xf9\x2b\x3f\xff\x2b\xbd\xfe\xab\x14\x36\xff\x77\x06\xe9\x7f\xd7\x12\xf6\x9f\x45\x90\x30\x78\x4e\xab\xab\xb7\x51\x76\xae\x10\xf4\x20\x5f\xea\x3a\x0c\x93\xc4\xbc\x30\x21\x31\x6d\x75\x21\x80\x26\x58\xea\x8c\xa7\x5e\xf2\x3c\xf6\x05\x3d\x74\x70\xaf\xd9\x8c\x4f\x92\x1e\xee\xd4\xa9\xc3\xf3\x99\x31\xc6\xfd\xa0\x49\xf9\x29\xed\x36\x1a\xfc\x84\x3e\xea\xae\x56\xdd\xe3\x67\x94\xf2\xd5\xaa\x03\xf1\xdc\xf9\x29\x7d\xfc\x23\xe4\x3d\x79\xb6\x5a\x75\x4b\x69\x8d\xc6\xe3\x27\x94\x7a\x7d\xf4\xe9\x13\x6a\x72\xf3\x8e\xd8\xe9\x3e\xc5\x4d\x54\x43\xae\x84\xd2\x05\x75\xb8\x28\xc9\x57\xab\xba\x23\xda\x3b\xfe\x71\xb5\x52\x09\x3f\xc9\x3f\xf9\xa6\xf8\x29\x7d\xfa\x04\xbe\x7e\xea\xc0\xd7\x4f\xcf\xe0\xab\x7b\x7c\x8c\x65\x6b\xb2\x27\xd0\x0b\xd7\xfe\x1d\x34\x29\xfa\xb4\x98\x4c\x26\xbe\x61\x4d\xc1\xba\x67\x4f\xdc\x6a\x25\xe7\x16\xe4\x17\x7b\x2a\x29\x17\xe2\x59\x84\xd7\xf2\x24\x25\x4f\x5f\x91\xd3\x7d\x82\x2b\x9e\xba\xe4\xc4\x2d\x6e\x1d\xaa\x69\xbd\x63\xc4\x2f\x10\xbe\x1c\xcf\x49\x04\x7f\x89\x9c\xae\x38\x84\x05\x54\xfc\x7c\xda\xc1\xb8\x27\x7e\x3c\x79\x6c\x1f\xd6\xbd\xc3\x0f\xeb\xe9\x6f\x71\xa4\xfd\xff\x84\x2a\xc0\x20\x19\xfe\x79\xe0\x3b\xf4\xc0\x27\x5d\x3c\x77\x3b\xcf\x1e\x3d\x7b\xdc\xfd\xf1\xf8\x51\x8f\xeb\xd3\x47\xa5\xfc\xef\x91\x39\x45\x9f\x3f\xcb\x2e\xb5\x12\xe6\x8d\x79\x0b\x4c\xfe\x6e\x79\x0b\x35\x9d\x0e\x09\xb2\x73\x3e\x6e\xa2\xcf\x9f\x11\x99\x54\xeb\x65\x8c\xf9\x19\x49\x7a\xea\x39\x69\xb4\x55\x73\x12\x64\x9a\x13\x8f\x76\x7a\xde\x49\xdc\xf3\x9a\x4d\x1c\x0c\x3c\x5b\x73\xe2\x19\xcd\x09\xcf\x34\x27\x6c\x9b\x46\x24\x90\x1a\x11\x36\x0b\x38\x67\x49\x85\x54\x34\xd0\x20\xef\xe2\x28\xa7\xb4\xe5\x6a\xe3\xc5\x6b\x12\x4f\x26\xf9\x2c\xca\x75\x78\x08\xa7\xac\x73\xae\xf1\x3a\xa5\x0c\x5e\xce\x5e\x31\xee\x96\xdf\xdf\xb1\x35\x49\xed\x0c\x50\x05\x32\x1a\x49\x29\xbe\xbc\x41\x6a\xb0\x70\xfa\x85\x23\xe6\xda\x51\x8a\x9c\x36\x90\x16\x06\x0d\x09\x37\xa2\x4d\xe8\x44\x42\xf0\x2c\x18\x09\x82\x10\xf4\x5c\x4e\x67\x49\xc2\x51\x83\xe0\x30\xc1\x2f\x07\xf3\xa1\x3c\xfb\xab\x61\x2b\xde\xc2\x19\x6f\x25\xff\x0a\xc2\xf0\x3d\x1b\xb3\xe0\x9a\xc9\xe3\x6c\x61\x83\xcc\x14\x08\x12\x51\x50\xc6\x4b\x94\xad\x67\x6c\x76\x09\x78\xd2\x26\x7f\xe9\x68\x84\x3d\xc7\x09\x68\x84\x29\xa5\xe2\xc8\x89\xfb\x9d\x3a\xa5\xc1\x6a\xd5\x3d\x0a\x28\xa5\xdd\x23\xcf\x0d\x44\x42\xa3\xe1\xd5\x29\xf5\x70\x3f\xa6\x1d\xd7\x89\x69\x95\xb2\x89\xf7\x39\x0c\xb6\xbb\x80\x60\x63\x4e\xbc\xa2\x1d\x6d\x0b\xa1\xba\x2a\x56\x95\x63\x30\xc0\x72\x09\x05\xc4\xcb\x0f\x80\xd4\x9b\x54\x3d\xad\xcc\xba\xa3\x15\x0e\x6b\x12\x89\xe9\xca\x34\x00\xbd\x89\xcc\x53\x53\x21\x58\x54\x4a\x1d\x27\xd2\x23\x1f\x1b\xcd\x81\x64\x94\xed\x20\x7d\x2f\x45\x06\x5f\x2c\x22\xe9\xbe\xdb\xa6\x8f\xd2\xaa\x63\xbf\xd5\xaa\x63\xd9\xaa\xe3\xf6\xaa\xe3\xd5\xab\x2e\xe5\x1e\x67\x54\xb1\xbf\x44\xd0\xa0\x74\x75\x85\xd7\xa0\xa4\x94\x5e\xea\x0b\x9c\x08\x26\xc6\xe9\xac\x92\x76\x3c\x4a\x59\x72\xcd\xfc\xbf\x05\x3c\xc5\x0d\x8e\x1b\x0d\x98\x9d\x0f\x02\xa8\x53\x05\x54\x69\x0a\x59\x6e\x1d\x70\x7c\x0f\xd2\x55\x96\xb3\x39\x14\xa4\x3f\x04\x3b\x85\x9a\x57\xfc\x42\xb8\x55\x56\x78\xfd\x85\xcb\x37\xac\x96\x17\x81\x7f\x2e\x24\xe1\x0a\x6f\x41\x40\x09\x83\xf9\xd0\xb8\x03\xd2\x09\x6d\x31\xc5\x52\xc3\x24\x87\x4b\x12\x80\xad\x9b\xdb\x1b\x4b\x66\xb0\x64\xfd\x85\xbb\x6d\x4d\x7f\x8c\x66\x87\x23\x3a\x99\x14\x30\x2d\x99\x29\xc3\x44\x6d\x5a\x35\x19\xa8\x7e\x11\xf4\x15\xe3\x0e\x2e\x22\xbc\x69\x0d\x3a\xb9\xb1\x31\x0a\x6d\x20\xf4\x76\x90\x4a\x82\x67\xb8\xcf\x06\x9d\xa1\xcb\x94\x7d\x08\x50\xaa\xe2\x4c\x72\x80\xcb\xcb\x56\x21\xeb\x6b\xcc\xf4\xc2\xf5\x36\x2d\x5c\xe2\x61\x72\xf7\x2e\x89\xaf\x03\x9f\x25\xee\x84\x3c\x8f\xa3\x54\x08\x00\xae\xbf\x5e\x5b\x27\x12\xb3\x27\x57\x9c\x74\x76\x5d\xfe\x69\x11\xf4\x11\xbc\x50\x77\x9e\x08\xc1\x33\x72\xba\x3f\x82\x31\xbf\x10\x4c\x53\x1a\xb5\x23\xc7\xc3\x64\x2c\xd2\x31\x09\xe1\x7b\x8c\xc9\x82\x46\xce\x63\x4c\xe6\xf0\xbd\xc0\x64\x42\x23\xe7\x18\x13\x5f\xfc\x79\x86\xc9\x94\xde\xe9\xa1\x73\xc3\xb6\xd7\x8e\x62\x9f\x91\xb1\x7e\x32\x0f\x49\xd2\x2a\x99\x80\x8f\xd4\xe7\x1b\x73\xce\x92\xc0\x83\x8b\xdc\x5c\x4e\xaa\xc4\x5d\x48\x54\xa3\x05\x26\x81\x76\xa9\x89\xe7\xcb\x02\xa3\x38\x0e\x49\x90\x5e\xcc\x15\x32\xf0\x2d\x9d\x41\xc0\xb7\x18\x22\xc2\xbd\x2b\x77\xd2\xfe\x95\x64\x8e\x49\x25\xac\xa9\x37\x67\x8e\xdf\xf6\x80\x20\x60\xce\x30\x81\xe7\x45\xef\xd9\x44\x36\x1f\xb1\x8b\x89\xc8\x70\x06\x16\x36\x16\x1e\xba\x89\x21\x5e\x93\x11\xbd\x93\x78\x22\xa5\x8b\x42\x1a\xb1\x7a\x07\x50\x40\x7e\x70\x8d\x8a\x5d\x47\xcf\xc1\x91\xac\xec\x91\x28\x98\xe1\x28\x85\x39\x27\x68\x7b\xd8\xb9\x5b\x13\x81\xa8\xad\x20\x26\x77\x0b\xb9\x16\x2f\xa2\x97\xb7\x01\x87\x1b\xdc\x75\x76\x92\x98\xd9\xdc\xca\x4c\x0f\x04\xf7\xcd\xcf\x0b\xf1\x74\x92\xc1\x8a\x8c\x45\x92\x9e\x09\x12\x8a\x93\xbc\x77\x45\x16\x22\x55\x74\x91\x4c\x29\x6b\xcb\xce\x91\x91\xc8\x84\x01\x27\x33\x9a\xa9\xfb\xc9\xb9\x48\x37\x9d\x21\x57\x94\xb5\x45\x1f\xc9\x35\x5c\xba\xcb\x41\x26\x4b\x25\x2b\x3b\xb1\xe8\x24\x23\x03\x64\x30\x45\x04\xe5\xf1\xd4\x09\x06\x4b\x91\x90\x9a\x7b\x6c\xc4\xbd\x2b\x91\x22\xf0\x43\x04\x49\xec\x90\xf1\x0c\x62\xa9\xf9\x09\xca\xf0\x42\x04\x09\xac\x44\x05\x85\x13\x1a\x62\x72\xa6\xd1\x9a\xb4\xaf\xb0\x33\x77\xb0\xc3\x09\xf2\x42\x96\x70\xa4\xfe\xb6\x50\x73\x41\xee\xd4\x6f\x3f\x48\x67\x41\x2a\xdf\x8a\xbb\xa3\x35\x26\x63\x4c\x6e\x4a\x20\x94\xcb\x60\x12\x41\xfe\x57\xba\x6b\x7a\xcf\xc9\xdd\xc8\x53\xfd\x77\xaf\xfa\xe7\xed\xec\x0b\x21\xc2\x83\x19\x8b\x17\x1c\x32\xf4\xef\xce\xda\xb0\xa2\xb4\xed\x15\x14\xe8\x7e\xdb\x53\xb7\xd1\x4e\xa2\x9a\x5c\x92\xaf\xe4\x4e\x50\x66\x68\xad\xdf\x33\x12\x44\xee\x94\x24\x71\xc8\x5c\xdd\x67\xb3\x28\xae\xd7\x98\x8c\xfa\x65\xe0\x68\xb4\xe0\x5c\x8c\xa6\x74\x1e\x68\x3e\x33\xb0\x37\x04\x79\x49\xe0\xb5\xc0\xda\x0d\xb9\x1e\xd1\x97\x24\xa3\x35\xa9\x80\x07\xda\x7e\x31\xc0\xa2\xce\x34\xf0\x7d\x16\x21\x17\xf1\x64\xc1\xd0\x9a\xa0\x4f\xb7\xfe\x33\x84\xb1\x72\xf4\x80\xd7\xb3\x6c\x05\xd3\x29\x99\xe5\xef\x51\x46\x84\xb7\x3d\x3a\xdb\xf3\xc2\x24\xcf\x2e\x3b\xf2\xe9\x53\xe4\x04\xc0\x2f\x05\x9b\x1c\xc3\x77\x0a\xfc\x52\xb0\xc9\x05\x7c\x87\xc0\x2f\x05\x9b\x9c\x50\x18\xd2\x79\xfb\x57\x92\x06\x5f\x99\x3b\xb6\xb9\x9e\x1e\x8d\x71\x15\xc3\x1b\x1b\x16\x93\x7f\x54\xbe\x71\x19\x9b\x05\x1a\xa8\x05\x9a\x52\xd6\x86\x37\xc1\xe3\xed\xeb\xaa\xb4\x6a\xe0\x91\xca\x50\xf4\x49\xd5\x9b\x0b\xaa\x5d\x48\xc2\x07\x2f\x82\xad\xab\x24\x5e\xcc\x11\x49\xfb\xf6\x77\x0b\x35\xa5\x43\x0d\x2c\xc4\x49\x45\x7b\x5e\x69\x3a\x83\x22\xe5\x8d\xc9\x9d\xb5\x63\x88\x83\x4b\xcf\xb7\xe6\x70\x42\xfc\xc2\x5d\x98\xe1\x9f\x6b\x98\x4d\xff\xf7\x9b\xcd\xc8\xf9\xa9\x23\x36\x3f\x33\xab\x9e\xef\xc7\x91\xc0\x53\x4e\x98\xd8\x22\x9c\x01\x9a\x27\x6c\xce\x22\x5f\xf0\x07\xb8\x00\x41\x43\x6c\x4b\xe7\x66\xc7\x1c\x97\x77\xcc\x9d\xc4\x30\xbd\x37\x31\x18\x5c\x25\x47\xd7\xbc\x39\x3c\x90\x3c\x0c\x98\xc2\x6d\xa9\xbf\x83\x5c\x04\x79\x58\x94\x51\x76\x99\x35\xee\xef\x41\x2c\xa1\x4d\x2c\xfe\x1a\x93\x72\x9d\x49\xdb\x23\x99\x54\x32\x5e\x63\xec\x1e\x0c\x98\xe4\xea\xaf\x7b\x53\x8b\x20\x7d\x32\xdd\x4e\x90\xd3\x7b\x11\xe4\x33\x29\x8c\x75\x8f\x25\x3d\x76\x0a\xf4\xd8\x2d\xd0\xe3\x63\xa0\xc7\x76\xe4\xcc\x95\x34\x96\x17\xc6\x16\x9a\xb4\x80\x07\x2f\x32\xaa\x02\x3e\x64\x7d\x8f\xd2\x0f\x85\x94\x6b\x2f\x0c\x7c\x48\x90\x02\x55\x54\x48\x10\xbd\xf5\xdb\xbf\x66\x1b\xc1\x22\x2f\x1d\x2d\x32\xe9\x68\xa1\xa5\xae\x0c\xfc\x10\x93\x79\xe8\x05\x20\x1a\x67\x30\x81\xa8\xb2\xcf\x6c\x26\x16\x55\xeb\x61\x61\xad\x87\xd1\x26\x8b\x1f\xa3\xf3\x57\xf2\x3e\x2c\x0c\xa3\xc9\xe5\xca\x2d\x36\x86\x0b\x13\x36\x91\xef\x5c\xdf\xb3\x89\x7c\xaf\x6d\xef\xc7\x91\x8c\xf3\x19\x8f\x17\x42\x4a\x86\xbf\x1b\x0a\xad\x55\x8a\x27\x52\xe0\xf9\xab\xd2\x5e\x64\xe7\x11\x63\x88\xa0\xdb\x2d\x39\xfe\x91\x07\x12\x3d\xb8\xea\x00\x95\x4f\x74\xb4\x8b\xe3\x84\x4d\x28\x9c\x77\x24\x76\xc5\x73\x58\x62\xea\x27\x6c\x62\xae\x4a\x48\x54\x71\x28\xaa\xb0\xe4\xd8\xc1\x55\x04\x23\x11\xd2\xa2\x24\x20\xe0\x30\x40\x28\x20\x21\x2a\xa2\x01\x29\x51\xf0\x9f\xb9\xe6\x3f\x20\x2d\x1a\x02\x00\x81\xd1\x08\x80\xb3\xfd\x39\x91\x64\x3f\xb2\x69\x04\x56\x77\x81\x0f\x72\x9b\xfe\x65\xf1\x2a\x44\x90\x69\xb0\x20\xdb\x9d\xd3\x01\x4a\x3c\x3f\x88\x81\x97\xb1\xf1\x97\x51\x7c\x8b\x86\xc6\xe4\x24\xc0\xa7\xad\x2e\xb9\xa2\x52\xc9\x7d\xf5\xf2\x76\xee\xa0\x4f\x9f\x5e\x20\x82\xae\x10\x26\xd7\x74\xb1\x5a\xe9\x28\x82\x82\x8f\x05\xea\x3a\xd7\x4b\x98\x07\xdf\xfd\xc0\x95\x1c\x10\x61\xb2\xa4\x68\x12\x27\x33\x50\x94\x26\x71\x88\x7a\xd3\xbe\xb3\x6c\x52\xd4\xb2\x70\x03\x88\xba\x86\x8b\x26\x41\xc8\x24\x1c\x28\x08\x9f\xee\x79\xa3\xe1\x2c\xe9\xbc\x2f\x36\x5a\x57\x81\x14\x98\xb7\x74\x43\x33\xd8\xf5\x1b\x8d\x2b\x79\x79\x2b\x3f\xb1\xd1\x12\x3b\x7e\x3b\xc4\xce\x83\x77\x21\xf3\x52\x56\x5b\x80\xa7\x73\x56\x13\x73\x5e\xd3\xe3\x09\xf7\x06\xcc\xf3\x6b\x60\x0d\xce\x6a\x52\x22\x00\x9f\x9a\x71\xcc\x53\x9e\x78\xf3\x4f\x0f\xd2\x1a\x34\x58\x4b\x83\xaf\x41\x74\xd5\x7e\x20\xb8\x97\x6c\x4b\xfb\xa2\x50\x2d\xc3\x1a\x30\x42\xb4\x2f\x36\x87\x09\x6c\x0e\x61\xa3\x81\x82\xb4\x65\xe6\x2c\x95\xdf\xea\xab\x5e\xf7\x1a\x8d\xdc\x90\xb5\x50\xd3\x23\x4b\x6b\x0b\x71\xd4\x50\x51\x4a\xaf\x57\xab\x45\xb5\xe5\xd8\x42\x74\x7d\x06\xe4\x4a\x03\x31\x3a\x9a\x45\x36\x1a\xf5\x69\xa3\xa1\xa7\x4f\xea\x06\xcb\x9b\xd2\x75\xae\xc8\x75\x71\x18\xc1\x79\x5b\xed\x26\xe0\xd3\x9a\x57\x13\x55\xc4\x98\xa1\x07\xcd\xa0\xf9\x00\xd5\xc6\xf2\x6e\x65\xea\x5d\xb3\x9a\x6e\xb5\x5d\xb3\x46\x5e\x59\x8b\x1e\x21\xb5\x9d\x80\xe2\xc3\x0c\xbf\x18\x53\x33\x94\x99\xe5\xd4\xb8\xb4\x97\x5d\x17\xf7\xb2\x19\xb9\x4b\xd8\xc4\x1d\xd9\x92\x3c\x28\x9a\xf9\xda\x11\xd5\x2d\x6d\xc5\x28\x27\x2d\x8f\x8a\x1b\x1b\x08\xf0\x40\x9c\x72\x6b\x1b\xfd\xf7\xb6\x36\x79\x17\x9e\xed\x11\xb9\x23\x84\xbd\xa1\x85\xf1\xf8\x8b\xb5\x95\xc0\x31\xdc\xca\xd7\xbe\xaf\xb3\x22\xf1\x82\x87\x41\xc4\xbe\xe3\x0e\xa7\xcf\x33\x26\xb7\xb8\xeb\x96\xf7\xe9\xbd\xb7\x3c\xa9\x34\x30\xc8\x7e\x87\x1d\x50\xdb\x81\x46\xfa\xd7\xf7\xd8\xde\xaa\x8c\x4b\xad\xad\x4c\xcf\x42\x9f\x95\xec\x90\x5c\x5b\x67\xa9\xed\x3d\xcb\x69\x0e\x3b\x64\x2b\x93\xd4\x23\xf6\xb1\x81\x4d\x38\x43\xd8\xcb\x80\x64\x94\xea\x43\xef\x78\xa9\x56\x84\xc0\x7e\x96\xed\x7d\x99\xde\x43\xec\x69\x8a\x74\x60\x57\x03\xde\x37\x52\x1b\xde\xcc\xde\xd8\xce\x4b\x1b\x9b\x72\xf8\x9f\x23\x62\x82\x00\x0f\x50\x6d\x14\xd4\x1c\x85\xed\x4f\xeb\x35\x54\xeb\xfa\xcc\xa6\x77\x3d\x6b\x87\xeb\xa5\xb9\xe7\x0a\x19\x5f\x3b\xb7\xf8\xa0\x93\x7d\xd0\x32\x77\xa9\x3e\x7e\xd7\x3b\xd9\xd1\xbb\x27\xa3\x2f\x82\xa7\xfa\xa6\x33\xef\xa3\x96\x46\xcc\x45\x08\x37\x11\xe8\x47\xae\x4b\x3b\x80\x90\xd2\x81\x94\xd3\x35\x49\x57\x2b\xa8\x2e\x7e\x5c\x91\x3a\x70\xe6\x11\x8f\x5a\xa8\x39\x25\xf5\x7a\xa0\xbe\xd4\xf8\x68\x56\xc0\xb3\xb5\x5c\x41\x59\x6b\x4c\x42\xdc\x3b\x6f\x4f\x41\x0a\xd2\x5a\x08\x4a\xe9\xa8\xd1\x70\x46\x14\x79\x2a\xde\xec\x92\xa6\x7d\xa5\x78\x83\xd3\xab\x26\xe1\xf2\x48\x8c\xf2\x7c\x36\xa7\xdd\x90\x70\xcf\x35\x71\xf6\x75\xba\x36\xd1\x24\xe7\xf6\xf9\xe2\x9a\x08\xfe\x3c\x23\x55\xc6\xa1\x79\xc6\x16\xad\x56\xcb\x7b\xb1\x6e\xad\x7e\x84\x58\x1b\x5e\xb2\x44\x52\xed\xa8\xd0\xfa\xaf\x73\xf3\x32\x03\x94\x01\xba\xbe\x23\x13\xfe\x03\x1e\x22\xd2\xc5\x68\x16\x70\xaa\x7f\xfc\xe1\x8e\x11\x0a\xbf\xed\xe7\x08\x59\xe8\xbb\x1d\x24\xe4\xbc\x03\xf7\xd5\x9a\x0a\xc3\x38\xf7\xd7\x4d\x48\x28\x55\x2c\x90\x2c\x2a\x64\x4f\xc9\x53\x40\xba\x54\x35\x6d\xa5\x55\x79\xe9\x97\xd4\xa5\xa1\x14\xb1\x52\x9b\xca\xf4\x3a\x4d\x0f\x10\xb0\xc4\x9a\x14\x68\x7c\xd3\x8a\xfc\x36\xcd\x64\x8e\xdf\xdc\x47\x43\x29\xf5\xc3\xe3\x82\x8e\xc1\xfa\xd6\x0e\xf4\x21\x4d\x0a\x2d\x87\xeb\x34\x53\x73\xca\x54\xd0\x40\x8d\x25\x48\x66\x7f\x2a\x51\xdb\xa4\x86\xa0\xc8\x65\x28\x86\xa3\xac\xbc\xca\xf6\x1d\xad\xbf\x0a\x48\xda\xb7\x12\x0c\x18\x37\x4b\x44\xdb\x95\x9f\xe3\xad\x6a\xa7\xc9\x21\xca\x4f\xa5\x95\x97\xad\xfe\xee\x9a\xd0\xbb\xfd\xa9\xa3\x48\x0d\xd2\xed\x11\xf3\x0d\x35\xa8\x94\x90\xa5\x69\x96\x26\x0a\xcf\xed\x42\xbe\x97\x7c\xc9\xbe\xc0\xed\x5d\xf6\x99\xb0\x74\x1e\x47\xa9\x90\x0a\xc6\xf9\x6d\xc2\x14\x19\xdb\x7b\x83\xa6\xfd\xac\xde\xa5\x4a\x31\xdb\x4d\x05\x1c\xd8\x63\xec\xee\x9a\x4e\x0e\xf1\x37\x91\xb4\x1e\x12\x20\xe9\x6c\x34\x40\xf4\x54\x03\x41\x26\x94\xb5\xc5\x18\x10\x1f\xa2\x7d\x5c\x33\x79\xf3\x96\xf5\x20\x27\x7b\xe6\x3a\x06\xf7\x6f\x86\xa9\x5e\x1d\xba\x5c\x34\x76\xe6\x67\x08\x17\x9a\x48\x61\x86\x08\x12\x78\x21\x82\x94\x2f\x42\x94\x35\x6e\x18\x72\x0e\x9f\x02\x83\xbe\xae\xd2\x1c\x83\xcd\x1b\x52\x8b\x10\x3e\x60\x01\xd6\xeb\xa9\xf9\xce\xf0\xaa\xd7\xc7\x85\x54\x89\x62\xbd\x1e\x9a\x74\x83\x6d\xbd\x3e\x31\x89\x12\xf1\x7a\xdd\x37\x29\xb2\x0f\x62\x15\x93\x25\x2d\x2f\xe0\x51\x71\x01\x5f\xc9\x8d\xe0\xdc\x62\x97\xd7\x6b\x0c\x26\xdf\x53\x49\x05\x67\xb9\xee\x81\x43\xe5\x69\x5f\xb5\x66\x8d\x94\x5b\x4a\x02\xe9\x77\x1b\x37\x99\xd9\xcc\xe3\x6c\x4d\x96\xc6\xa4\x65\xb9\x17\x1b\x51\x63\x9c\x5f\x04\xff\x9d\x9b\x15\xb3\x1b\x45\xf1\xdf\x17\x9c\xb3\xc4\x62\x05\xfb\xb3\x1a\xb1\x93\x7e\xd3\x26\x63\x5a\x87\x65\x29\x16\x93\x58\x91\x02\xec\x01\xbb\x8c\x01\x62\xa8\x1f\x76\xf8\x0d\xdb\x4c\xd0\x47\x51\xdc\xba\x52\x35\xe4\x35\xe6\xb8\x2f\x65\x93\x24\xbe\x41\x2e\x4a\x20\xa6\xf9\x36\x42\x48\xbf\xdf\xb6\xf2\x2d\x33\xff\xf8\x51\x61\xea\xef\x75\x36\xa8\x90\xf3\xa5\x5b\x9f\xbc\x78\x3f\xaa\x2a\x08\xf4\x52\x59\x43\xfe\x04\x2b\x8f\x3b\xa3\x8d\xd9\xbb\xf6\x10\x13\xe9\xac\x6f\x4a\xe2\xc9\x24\x65\xdc\x9d\xae\xf1\x10\x93\x99\x1c\x39\x71\x4e\xb9\x4d\xdd\x11\x49\x67\xee\x88\xcc\x7c\x77\x44\xc2\x2b\x77\x44\x6e\xc3\x9c\x12\x6e\x97\x66\x07\xdc\xe0\xa6\x90\xe2\x25\x89\xb7\x5c\x93\x73\x7b\xc3\x57\xd9\x03\x74\x0b\xdc\x77\x86\x08\x9a\x09\xee\x1b\x0a\x12\xbb\x0d\xd1\x70\x4d\xae\x4a\x6e\x22\x74\x74\x7d\x4a\x69\xb4\x5a\x21\x71\x50\x8d\xfa\xac\x8f\xc6\xb1\x90\x5b\xc6\xa0\x56\xe5\x2e\xf2\x16\x3c\xb6\xf3\x5a\x90\x60\x0a\x34\x91\x4a\x50\xb9\xa8\x19\xd9\x79\xa8\x19\xad\xc9\xf5\xc1\xab\x4d\x76\xc8\x2c\xb5\xfd\x57\x98\xac\x98\x89\x6f\x0b\x3a\x18\xf6\x82\x2a\xb3\x58\xcb\xa7\xc7\x80\x0f\xc1\xf5\xb6\x54\xa9\x86\x03\x3e\x24\xb1\x1a\x11\xe3\xed\xb4\x9e\x88\x22\x9e\x83\x9d\x58\x39\x22\x4f\xc9\x98\x06\x7d\xd4\x42\x2e\xd2\x9d\x25\x73\x7a\xe5\x04\x84\x93\x58\x69\xb8\x17\xd2\x06\xb8\x78\xcc\x70\x9c\x34\xb3\xf9\x12\x25\x75\x6b\x6a\xe3\x1f\x20\xa0\x29\xd4\x1c\x37\xe3\x36\xfc\x14\x05\xe1\x07\xbc\xb9\xd0\x1f\x50\x12\xa8\x4e\x15\x85\xdf\x50\x16\x7e\x99\xc2\xf0\x45\x52\x71\x86\x54\x61\x4c\x95\x6b\x71\x85\xae\xc1\x74\x8a\xd7\xe0\x83\x78\xa1\x2c\x3c\x57\x2b\x95\x01\x64\x21\xcf\x9b\xf3\x8a\x63\xd3\x62\xfb\x29\x69\x3b\x1b\x9a\x03\x1b\xba\xb6\xd8\xd0\x8c\x5c\xe7\xd9\xd0\x39\x30\x9f\xeb\xdf\x75\xdb\x19\x59\x3b\xcd\x3c\x08\x43\xeb\x33\x77\x6e\xd9\x29\x53\x66\x11\xd8\xec\x7d\xea\xd7\x45\xca\x83\x49\x60\x4b\xb2\x93\x20\xcc\x8e\x42\x24\xf2\xae\x47\x9e\x25\xca\x8e\xbd\xc4\x2a\xab\xb7\xc5\xdf\xd8\x5c\x64\x24\x57\x21\xf4\xff\xff\xe5\xee\xeb\x7b\xdb\x36\x92\x87\xff\x7f\x3e\x45\xc4\x03\x04\x2e\xbc\xd2\x49\x6d\x7a\xd7\xca\xc7\x33\xf2\xd6\x36\x48\x9d\x18\x89\x7b\x6d\x61\x18\x06\x25\x2e\x25\xc6\x14\xa9\x23\x29\xdb\x8a\xcd\xef\xfe\x60\x67\xdf\x66\xc9\xa5\x4c\x3b\xf9\xa5\xc5\x01\x45\x63\x2d\xb9\xcb\x9d\xdd\xd9\xd9\x79\x1f\xb8\xf2\xb4\x90\x65\xd7\x96\x03\x2e\x54\x83\x04\xac\x28\x87\x06\x38\x51\x01\x08\x70\xa1\x1c\x06\x60\x43\x2b\x60\x3e\xfb\x3b\x18\xcc\xf9\xa1\x86\x59\xd8\x62\x9a\x99\x81\x47\x3d\xfd\x7d\x7e\xb3\x26\x29\x6f\x12\xdf\xe6\xc3\x85\x45\x64\xe8\xc2\xd2\x71\xdf\xae\x8e\xe4\xdb\xa3\x2c\xbc\xf2\x66\xfc\x87\x62\x14\xc5\xc0\xbb\x91\xcc\x5f\x3c\xf2\x0e\x52\xda\xce\x9a\x04\x89\xd4\xd9\x70\x28\x58\x39\x7e\xa8\x6f\x20\x01\x11\x3b\xf2\xe2\x94\xdd\x8c\x16\x79\xba\x5d\x67\xde\x4c\xfc\xf2\x0e\xd8\x81\xa7\xda\x48\xed\x2f\x08\xbd\xe5\xdf\x1c\x01\xb0\xb3\x44\x4c\x79\xb4\x62\x61\xc4\x0a\xd9\x38\x1f\x0e\x13\x80\x69\x24\x96\x62\x56\xda\x6f\xc9\xd6\xf9\x70\x58\x8a\xd7\xcc\x8a\xcc\x62\xd1\x02\xeb\x02\x0e\x12\xfb\x19\xc8\xc6\x81\xb5\xb4\x94\xcb\xbe\x7c\xc3\x36\xf5\xcc\x59\x19\x4c\xff\x3c\xe6\x51\x2a\x86\x1f\xce\x39\x3e\xe6\xd4\x48\x93\x82\x61\x14\xfb\xa2\xb9\x56\xfe\x4b\x2c\x75\x3a\x5a\xf1\x4d\x4c\x2a\xb6\x56\x22\x90\x2e\x11\xfc\x20\x3e\xf0\x71\xbe\x55\x69\xf2\x59\x6c\xe0\x17\x51\x10\x7f\xb6\xfa\xb7\x6d\xe7\x6b\x5a\x10\xfb\x33\x66\x2d\x7b\xde\xaa\x90\x33\x0a\xb3\xdd\xff\xa0\x05\xce\xf7\xfe\xe6\xa9\xb2\x81\xe2\x6d\x61\x45\x69\xbf\x4a\x7b\x1b\xeb\xbe\x94\xbe\x58\x1e\xbb\xcf\xd4\x17\x5b\x67\xf0\x7e\x7d\x31\x1c\xc7\x34\xc9\x2e\x3d\x7a\xab\x11\x2b\xd5\x6b\xa8\x50\x2b\xa9\x1f\xab\x46\x76\x5a\x82\x1c\xba\xe5\x87\x99\xef\xf9\x61\x0e\x1f\xa7\x5a\xe6\xa7\xd7\x45\x90\xbf\xfd\xa6\x5f\x90\xc0\xd3\xa7\xae\xd3\x2c\xd6\xe9\x34\x9c\x83\x4b\x7d\x98\xed\x3a\x82\x05\x1c\x8e\xff\x5f\xe0\x98\xc9\x40\x23\x33\x89\x4c\x62\xa9\x6e\xa9\x69\xa6\x54\x28\x18\x93\x20\x21\x8e\x28\x53\xc5\x8a\xe4\x8a\x45\x10\x5d\xf4\x63\x91\xaf\x9b\x41\x41\xa8\xf0\x66\x65\x86\x85\x80\x36\xfd\xeb\x08\xcd\x00\x35\xd7\x20\xfb\xd7\xb4\xda\x1b\xbd\xf2\xa0\xf3\x92\xcb\x43\x92\x18\x94\x5e\x11\x14\x6e\xa7\x52\x92\x5d\xb2\x5d\xe9\xaf\x08\xdf\x61\x8c\xfb\xe0\xa9\x5e\x85\x73\xc5\x10\x79\x10\x26\xb5\xe7\xfe\x89\xc7\xe1\x58\x45\xb2\xa8\x64\x72\x06\xd8\xd7\xd2\x4e\x2b\xa2\x68\x0c\xdc\xb5\xc3\x89\x33\x6f\x9e\x94\x04\xdf\x64\x65\x4d\xe4\x79\x48\xf0\x69\x90\x5d\xca\xf1\x26\x4f\x77\x9c\x03\x22\xfe\x9c\x08\xe4\xa7\x3d\x4e\x0a\xa8\x3f\xee\x39\x25\xd9\x38\x02\xff\x7f\xcf\xaa\x55\x2a\x17\x64\x55\x4b\x63\xf8\xe7\xf3\x35\x4f\x9f\xa2\x58\x9b\x5b\x15\xb4\xd2\x5f\x13\x56\xc1\x72\x2f\xe4\x0d\x65\x22\x41\x56\x0f\x90\x09\x5e\x47\x8f\x60\x6e\xa0\x1f\xe6\x6d\xda\x0c\xf4\x13\x1c\x0d\xb1\x55\x38\xb6\x09\x33\xe6\xd1\x4a\x5b\xf7\x93\x00\xc2\x63\x69\x46\xea\x6e\x84\xdb\x00\x39\x14\xf1\x52\x90\xe1\xbe\x5d\x9f\xb3\xc2\x47\xef\x75\xf4\x68\xe6\x49\x64\x9d\xe0\xff\xf5\x75\x06\xee\x43\x70\x01\x47\xbe\x15\x38\xf2\x9d\xe0\x9b\xfe\x29\x31\x44\x11\xda\xef\x05\x86\x4c\x1a\x18\x32\x6d\xb0\x4d\x4f\x39\xa1\xe5\xbf\x23\x42\xe7\x7c\xd0\x29\xa1\x6b\x81\x41\x5a\x02\x5b\x48\xc8\xe6\xe3\x53\x1d\xf5\x62\x80\xa1\xb7\x32\x46\x29\xd6\x1c\x92\xb2\xd2\xc7\x36\xf3\x15\x2b\x0d\xd5\xbb\x18\xce\x7c\x96\x47\x8c\x50\xf5\x97\xb4\xaf\xac\x2d\x84\x55\x0f\x95\xbc\x6b\xbe\xa1\xd1\x37\x36\xe8\xab\xb9\x3e\xc7\x87\x81\x01\x8b\x51\xfc\x17\xb6\xc2\x20\x99\xcf\x09\xac\x1d\x34\xa5\x62\xb2\xa6\x34\xdc\x6c\x58\x58\xf0\xbf\x58\x56\xb1\x62\x36\x98\x50\x26\x02\xa9\x50\xb8\x96\x8a\xad\x59\x8f\xd9\xf8\x45\x9e\xa6\xe1\xa6\xe4\x18\x7a\x15\xf8\x7e\x01\x9a\x9e\xf5\x38\x1a\xbf\x7a\x7b\xfa\xea\xfd\xeb\xb7\x3f\x9d\x07\xde\x42\xbc\x93\x64\x4b\x8f\x16\xe6\xe1\xab\x97\xe6\x19\x7b\x22\xea\xba\xca\xc7\xbf\xbf\x3e\xed\xec\xfa\xfb\xeb\x53\xab\xa7\x47\x0b\x94\x2c\x62\x87\x93\x45\xc8\x0a\x46\xa2\x90\x52\x2d\x8c\x10\x5f\xe6\xee\x14\x95\xb9\xe4\x4d\x75\xe6\xe5\x19\x64\x0c\x83\x69\xaa\x1f\x20\x97\xe7\x10\x87\xa6\xff\xd0\x2f\xdc\x24\x15\x8b\xbc\x73\x87\xaa\x8e\x91\xdb\xec\x8c\x9d\x07\xfc\x7f\x16\xfb\x1b\x4a\xf6\xb7\xc6\x1c\x70\xd9\x8f\x03\x56\xb3\x6b\xdc\xd0\xe2\x1a\xd2\x41\xc2\x12\x28\xbe\x84\x75\x83\xa3\x55\x03\x40\x3f\xce\xc1\x6a\x20\x7b\x0d\x09\xeb\xe4\x1a\x92\x45\x78\xc4\x9b\xa4\x6a\xb3\xe9\xfd\xe6\x77\x23\x6a\xc1\xea\x71\x6c\x60\xc9\x2d\x93\x6a\x41\x81\x0b\x87\xee\x91\x27\xae\x61\x45\x66\x19\x33\x32\x8b\x7a\xcc\xd1\x09\x30\x74\xee\xe1\xaf\x47\x2b\xcc\xd8\x40\xf2\xc9\x70\x09\x95\x4f\x64\x7c\x61\x18\x54\x96\x8b\x5e\xa5\x94\x4e\x69\x50\xa1\xfb\x6b\x83\x53\x54\xc6\x81\x5f\x19\x09\x01\x8b\x54\x15\x3d\x53\xec\xbf\x0a\x10\xc4\xb7\x9a\xd1\x29\x61\xd7\x3b\x13\x38\x88\x64\x06\x4e\x81\x11\x6b\x23\xd6\xc2\x90\xdd\xf5\x38\x21\x7e\x4c\xd7\xe3\x05\x22\x4f\x6b\xce\x8a\x89\x46\x85\xb1\xdb\xb6\xb9\x11\xd1\x2e\x8a\xaf\x60\xa1\xab\x49\xb2\x59\x41\x0d\x92\x2a\xe9\x41\xfd\xa6\x1a\xd9\xac\x27\x2c\xa2\x62\x53\x74\xeb\x4d\x52\x51\xbd\xe9\xb8\x55\x0e\x02\x1b\x88\xdb\xc1\xbd\xae\x95\x5f\xa9\x70\x5d\xf6\x57\x67\xec\xfc\xee\xce\x50\xad\xda\xaf\x88\x61\x48\xd7\x9c\x07\x58\x81\x37\x60\x01\x1e\xe0\x52\x37\xa7\x5f\x27\x34\x85\x8b\x4e\x44\xa4\x47\xc2\xef\x5d\x61\x5b\x54\x77\x2f\x5d\x6b\xbd\x96\xf4\x16\x52\xea\xcd\x1a\xf7\xc3\x52\x64\xda\xa3\x31\x76\x19\x4b\xc0\x43\x8f\x35\x3c\xa6\x6a\x42\x37\x44\x89\x62\x29\x66\x3d\x9f\x21\x9e\xe0\x98\x3e\xb3\x79\x82\x25\xf0\xa0\xcf\xbe\xa6\x77\x06\x78\xff\x21\x26\x71\x63\xe9\x9c\xab\x1e\xce\x0e\xca\xdb\xb8\xed\xf7\x70\x4e\x3e\x2f\x84\xed\xe1\xaa\x36\xe1\x70\x6b\x89\xfa\x0b\xa9\xae\xd6\x01\xc9\x71\x6f\x16\x55\x87\x05\xab\x03\x2c\x54\xce\x86\x69\x75\x86\xb2\xcd\xc3\x68\x09\xde\x10\xfc\x5f\xe9\x8b\xb0\x18\x0e\xe5\x6f\x18\x00\x0b\x47\xb1\x72\x3c\x05\xf7\xd9\x20\x08\x52\x28\x8b\xea\x85\x9e\x2b\x66\x2d\x6d\xf2\x9e\xb1\x1d\x8e\x06\x4a\x82\x1e\xea\xbb\xb6\xd7\x27\x6c\xfc\x60\x2a\xb8\x18\x98\xcb\x9f\xe0\x2b\xd4\xc2\x96\x22\xbf\x46\x5a\xda\x15\x5b\x20\xd7\x1e\xe9\x08\x6a\x1c\x7f\x94\xbe\xe5\xeb\x1a\x45\x8a\xfc\x1a\x30\x4e\xeb\x78\x44\xd4\x24\x5b\x5c\xca\x08\x27\x70\x5b\x8c\x25\xf6\x45\xbd\xb1\xaf\xe0\xec\x9e\xa7\x46\x55\x81\x47\x4d\x17\xc6\x73\xce\xcd\x77\xf9\xa4\xc1\x10\xca\x47\x40\x74\x97\xa1\x40\x32\x30\x77\xe0\x0f\x16\x77\x77\x83\x94\xe8\x10\x1a\x19\x22\x24\xbe\x20\x1f\x43\x2e\x7b\x3d\x11\x1c\x9b\x19\x27\x2c\x8d\x4a\x91\xb8\x2f\x1e\x0e\xfd\x48\xaf\x42\x50\x3a\x43\x2e\x9b\xe8\x1b\x61\xf4\x5d\xfd\x55\x63\x7a\x9f\x7e\xeb\x52\x3d\x3b\x68\xa1\xf4\x07\x58\xd8\xfe\x07\x8e\x17\x91\x63\x18\xee\x83\xdc\x0e\x56\x9d\x8e\x04\xed\x53\x22\x9c\xed\x3b\x0f\x4a\xd3\xb1\x2e\xb6\x49\xbe\xd2\xb9\xf5\x57\x1a\x74\xba\x30\x48\xcf\x83\x45\xdb\x31\x41\x86\x2e\xfc\xcf\xb9\x26\x88\xa5\x07\x02\x20\xbd\x14\x8c\xb7\xa9\x22\x03\x1b\xe5\xc2\xb7\x12\x3e\x42\x74\xde\x9b\x08\xc8\x30\x8a\x86\x27\x83\xa1\x05\xd2\xf3\x2e\xce\x0b\x0f\x90\xe3\xec\xfc\xb0\x7c\x90\x7b\xc3\xdc\xe5\xde\x40\x43\xe9\xe0\x10\x37\x1c\x1c\x42\xdb\xc1\xe1\x30\x09\x96\x7e\x68\x1c\x1c\xe8\xba\xed\xe0\xb0\x45\x0e\x0e\xc9\x57\x77\x70\x00\xb5\x10\xd4\xf7\xd6\x53\xd5\xb3\x14\xf5\x95\x81\x44\x1c\x07\xcd\x29\x2b\x12\x5a\x16\xa3\x3c\x4b\x77\xca\xf2\x8b\x88\xa4\xc4\xe8\xc1\x60\x33\x1c\x02\x1e\xc1\x33\x68\x1d\x79\x07\x1b\xba\xa6\x83\xc1\x5a\x57\x2f\x6d\xbc\xf1\x30\xf7\xdf\x55\xb5\x4e\x7f\xcc\x8b\xd9\xaa\xa6\x73\x4c\x30\x8f\xff\x8a\x9e\x12\x29\x70\xdc\x1d\xee\xb8\xf1\x16\xb3\x97\x90\x62\xdb\x72\x08\xaf\x92\xc5\xe5\xce\xa2\x3f\x4d\x06\xb5\xe9\x43\xfe\xe0\x3b\x9e\xb2\x9b\x4d\x98\x45\xbd\x7c\x35\x9c\xfc\x00\x50\x01\x31\x88\x60\x3a\xed\x58\x30\x4d\x1e\x38\x21\x80\xc5\x00\x52\x00\x2e\xb9\x31\xf8\x41\xdc\x48\x8f\x08\x01\x2d\x50\x05\xc1\xb8\x1a\xc7\xdc\x26\x7d\x10\x9f\x6b\x86\x7c\x21\x42\x01\x1f\x32\x1e\xb6\x32\x79\xb9\x27\x3e\x81\x78\x59\xc9\x33\x1c\xb7\x78\x86\xc4\x08\xb2\x0f\x72\x65\x90\x72\x98\x9c\xe0\xcc\xfe\x3d\xf2\x0e\x18\xa9\xfd\x8c\x50\xdf\xaf\x82\x5b\xf5\x50\x4c\x76\xb6\x50\x9f\x14\xee\xb5\xb3\xb4\x26\x67\xde\x7c\x39\xf2\x0e\x56\xe7\xc1\x8a\x56\x67\x02\x8c\x91\x77\x10\x9f\x07\x31\xff\x2d\xc0\x19\x79\x07\xd1\x79\x10\x41\x7d\xd0\x72\xcf\x29\x6a\xf9\xe0\xae\xdb\x87\xa7\x07\xb7\x01\x8e\x1f\x12\x69\xfe\x4c\xa7\x85\x4a\xa5\x0f\x79\x70\xdc\x45\x8b\x63\x78\x94\x6c\xa5\x14\x25\x0f\xd7\xf5\xe3\x2c\x4a\xfb\x5d\x19\x38\x32\x88\xe4\x4b\xc5\xe7\xba\x30\xd0\xe4\xee\xae\xdd\x4d\x45\x29\x9a\x57\xf1\x44\x1a\x53\x18\x25\x8b\x3c\xf3\xf8\x15\xd2\x13\x55\x54\x0a\x23\x2b\xe4\xef\xcf\xc3\x98\x38\xdd\x26\xd1\x57\xf2\x72\x81\x6f\x3d\x02\x37\xa0\xdf\x7e\xc4\x48\x38\xc3\x96\x55\x61\x92\xb1\x62\x24\xde\x9f\x99\x96\xaf\xe3\xea\xf2\x68\x91\x63\x02\x1b\x39\xce\x44\x52\x4c\xd8\x31\x2b\x89\xde\x3f\xa5\xb3\xcb\x37\xc2\x3c\x3e\x6d\x98\xc7\xbf\x13\x02\xc7\xf4\x7b\xb0\xda\xf8\xdf\x4e\xc0\x68\x33\xce\xfc\x95\xb0\xda\xfc\xf0\x1d\x27\xe6\xbc\x61\x4d\xe8\x92\x63\xc0\x0f\x84\x5e\x41\xc3\x92\xd0\x1d\xef\x3a\x21\xf4\x19\x34\xec\x08\xbd\xe6\x63\x7c\x4b\xe8\x27\x68\xb8\x26\xf4\x82\xbf\x31\x25\xf4\x1d\x34\x5c\x10\x7a\xca\x3f\xfa\x3d\xa1\x37\x7c\xf0\x7f\x10\xfa\x16\x1e\xdc\x10\x9f\xf8\xb7\x25\xc4\x10\x8a\x1c\xce\x6f\xf3\x88\xa9\x32\x23\x85\xa3\xb1\x26\xf4\x97\xc0\xcf\x8d\xee\xcb\x71\xad\x3c\xe9\xc8\xa2\x58\x13\xfa\xaa\x99\xfb\xd5\x59\x3b\x1a\xd7\x10\x6b\x65\x23\xcd\x20\x1f\x87\x18\xba\xfa\xf7\xf4\xa8\x1a\x4d\x67\x13\x42\x8b\x60\x7a\x58\xfc\x4b\x66\xc3\x3f\x2b\x46\x53\x9c\x9b\xb4\x30\xb9\x49\x65\x2e\x52\x09\x62\x46\xea\x9a\x7e\x08\x5c\xf5\xe2\x69\x95\x6f\x66\x13\x9a\xb2\xb8\x9a\x4d\x68\xbe\x09\x17\x49\xb5\x9b\x4d\x28\x14\xf2\x66\x05\x54\xe0\x28\x65\x91\xf6\x9a\xfe\x37\xb8\xad\xe9\x8b\xee\xf2\x53\x38\x6d\x7b\x0b\xa4\x02\x81\x94\x71\xfc\x9a\x1c\xe6\xff\xca\x0e\xf3\x83\x03\x52\x9c\xe5\x18\x90\x1c\xa5\x36\xde\x9b\xd1\xb8\x20\xd2\x74\x43\xdf\xf9\xc4\x7f\xc6\x0f\x1c\xe1\x7c\x43\xc8\x21\xbb\x8d\xc2\x2a\x54\xbb\x0c\x85\x1a\xf8\xe8\x66\x87\x71\x97\x4d\xbe\xd9\xb0\xe2\xb5\x4c\x25\xee\x51\xf1\x92\xeb\x1d\x8e\x25\x1e\x15\x19\xc0\xf0\xd3\xb0\x28\xf2\xeb\xae\x87\x25\xab\x4e\x50\x6f\xcb\x1e\x04\xf5\xf8\xcd\xd8\x92\x57\x79\x25\x6a\xa0\x21\xb5\xac\xf0\xce\x30\x2f\x06\x8c\x56\xe3\x2d\x64\x17\x3d\xb1\x66\xef\x0b\x2b\x52\xe3\xfb\xcf\xcc\xfc\x7c\x3b\xb5\xb3\x9e\x39\x24\x6a\xb6\xfa\x89\xe1\xc1\xf8\x71\x9c\x47\x49\x9c\xb0\xc2\xa3\xb7\x2c\x13\xaa\xaa\xc1\x44\x8a\xf9\x3f\x4c\x26\x34\xb6\x33\x46\x0b\x83\x15\x64\xc1\x11\xeb\xae\x77\x14\x99\x53\x60\x83\x18\xda\x9b\xac\x26\x94\xd5\x8d\xbd\x59\xb2\xea\x9d\x2a\x5d\xd4\xf6\x47\xb8\x35\xbd\xd5\x8a\xe9\x16\x0a\x6e\x5c\xe5\x2b\x39\x5f\xf5\xdc\x6a\xa5\xea\x50\x40\x9d\x48\x33\x06\x6e\xa5\x6b\x09\x7c\x39\xbb\xf2\x81\x0e\xab\xd7\xf4\x03\x7a\x0b\xcb\xd8\xf9\x5c\xa6\x44\xc7\x4d\x62\xe1\xd1\x72\x0e\xd0\x5e\x50\x96\x2a\xa0\x74\x5b\x4d\x28\x1c\x83\x0f\xa0\xe0\x37\xfd\xa6\x35\x75\x6c\xd4\x4c\x61\x87\xd5\x5a\x83\xdc\xd8\x5c\x5f\x81\x40\x30\xae\xd3\xe7\x03\xe3\x1d\x54\xd3\x07\x0b\x10\xdf\xbe\x23\x00\x58\x13\x16\xfc\x48\x4a\xb2\xa5\xec\xab\x97\x94\xaf\x0e\x7a\x0b\xec\x12\x25\x99\x7d\xe8\x9c\xd7\x89\xda\xcf\x8e\xb9\xa1\xd9\xa8\x1f\xed\xe3\xde\x1a\x1b\x0e\xc4\x3e\x90\xf5\xba\x37\x20\xb6\x66\x1f\xea\x51\xca\xd9\x7f\x1d\x5f\x79\xb7\xad\xde\xc5\xcf\xf3\x6d\x16\x85\x45\xc2\xca\x0f\x82\x34\xf5\x05\x03\x3e\xb1\x4a\xd0\xbd\x64\x7f\x20\x62\x65\x55\xe4\xbb\x93\x06\xf5\xc2\xc3\xab\xad\x53\x4f\x87\x43\xbf\xd9\x34\x96\xc3\xf8\x86\xc0\xa8\x47\x60\x92\x6a\x91\x13\x17\xd5\x69\x7e\xd5\x39\x35\x5f\x65\x6c\x16\x23\x21\xac\xa2\xd2\xba\xbd\x81\xf0\x7b\x59\x69\x41\x1c\x81\xc3\x6c\x38\x74\x4d\x1b\xae\x93\xd3\x71\xe8\x67\x94\x09\xbf\x35\x49\x26\x7c\xe2\xa0\x80\x8b\x15\xe3\x4c\x9b\x48\xc7\x7c\xdf\x12\xb5\x56\xc8\xee\xee\x8b\xd2\x2c\xf5\x27\xff\x7e\xf3\x3c\xce\x78\xed\x4c\xf2\x8d\xac\xc8\x1a\x6b\xc1\x95\x4e\xff\x12\x57\x5c\xc7\xea\xc0\xab\xcd\x46\xab\x87\x45\xca\xc4\xc8\xb8\x45\x64\x98\x76\x5f\x24\x38\xe5\x88\x45\x35\x61\x18\xab\x45\x39\xc4\xb6\x90\xad\x63\x84\x23\xc7\xeb\x63\x41\xd2\xac\xb2\x5f\xa5\x9e\x45\x03\x67\x85\xae\xbe\xf9\x2e\xa0\x30\x5a\x46\x64\xb0\xd6\xcd\x72\xaa\xad\x3d\xa5\xd9\xbd\x99\xbf\x5f\xf9\x8e\x14\x13\xf2\xc2\x87\x27\x1d\x68\xef\x76\x0a\x90\x48\xf2\x8b\xef\x48\xd2\x4d\x7c\x70\x9a\x55\x0e\x08\x86\x7d\xa0\xc2\xbe\x0b\x0f\x6c\xd2\xed\x13\x74\x95\xda\xcf\x35\x09\xf5\x09\xcd\x6d\x92\xa4\xdf\x74\x91\x2a\x9f\x50\x7b\x99\x66\x8e\xa5\xa3\x40\x04\x41\xe0\x98\x59\x93\xd6\x3c\x47\x63\xce\x86\xf4\xfa\xfc\x3a\x02\x43\x73\x6e\xf9\x38\xfa\xc4\x7f\x41\x3d\x2c\xca\x78\x14\xdd\xf4\xde\x3c\xaf\xaa\x7c\xed\x35\x2e\xf8\x01\xe2\xe6\xe5\x49\xd0\xfc\x9f\x75\xcb\x0f\xa6\x35\x39\x3c\x1d\x87\x06\x27\x4a\xe3\x64\x74\x89\xa5\xc6\xe6\x78\x34\x0b\x8e\x7d\x21\x14\x36\x1f\x79\xa6\x02\x63\xde\x90\xe3\xde\xde\xe7\xbf\x57\xe0\x4f\xf1\x15\xeb\x1a\xe9\x05\x85\x0b\xb7\x03\x4c\x8e\xf0\x47\xd5\xac\xa8\xa9\x70\x25\x02\xaf\xa8\xdf\x02\xa8\xb9\x43\x5f\x82\x30\xf4\x1b\x39\x44\x4b\x0d\x94\xeb\xb9\x90\xbd\x4f\x44\xba\x73\x68\x7a\x8f\x2c\x35\x1b\xa9\x77\xc1\xd9\x5d\xc5\x61\x34\x99\xce\x37\xc8\x08\xaf\x77\xc9\xd5\x78\x52\xb0\x38\xb9\xc1\x8f\x00\x79\x9c\x23\xf1\x8b\x0f\x50\x05\x1a\xb5\x51\xf4\xf9\xf8\xa3\xca\x33\xae\xda\xad\xc4\xb3\x5a\x27\xb0\x41\xb1\x0d\xc2\x0c\xb5\xb1\xd5\xa6\x78\x82\xda\x98\x75\x4e\x68\x1c\xa6\xe9\x3c\x5c\x5c\x9e\x58\xa0\x74\x77\x04\x73\x11\xef\x97\x26\x1b\x33\x57\x2d\xe4\xcf\x9e\x8f\x2f\x69\x15\x16\x4b\x56\xf1\x3f\xf1\x64\x0d\x63\x89\x26\x3b\xd7\x67\x50\xed\x6e\xf7\xe7\x9f\x8f\x43\x99\x8a\x2d\x2f\x59\x04\x2f\x0a\xd7\xc1\x30\x62\x68\xd9\x4c\x8e\xf5\x8d\x36\xd5\x9d\x58\x79\xe0\x6b\xfa\x7b\x70\xdb\xfe\xb2\x27\x9c\xec\x4e\xc2\x02\xf8\x2f\x74\x04\xc1\x1e\x85\xf6\x68\x30\xa5\xc6\xd3\x50\xae\xf7\xc4\xb1\x94\x1e\x5f\x25\x4f\xac\x95\xa8\xf6\x23\x57\xc9\x9b\xe7\xd1\xce\x43\x4b\x72\x5b\x1b\xc0\x10\xd5\xac\xf7\xa4\x8e\x8f\xa4\x9e\xe4\xa4\x91\x5b\x9c\xd4\xf4\xe3\xe7\x3a\x07\xae\xc2\x2c\x4a\x99\x06\xe4\xc5\x2a\xcc\x96\x2c\xc8\xdc\xed\x96\x73\xdf\x02\x25\x47\x62\xd5\x29\x60\x02\x08\x5c\x8d\xdf\x5d\x9d\x96\x8d\x4e\xcb\x9e\x9d\x3a\xb3\x35\xa1\xd7\xd4\x0a\x07\xe6\xcf\xce\xb9\x0b\xef\x48\xb9\xcb\xca\x5f\xad\x36\xfe\x8a\xe9\xa3\xc3\x08\x54\x72\xfd\xe1\x70\xa0\xc6\x3d\x52\x1f\x52\xcf\x64\xe8\xc0\x63\x99\x2d\xc9\x69\x5d\x48\xc1\x4a\x32\x01\xea\xa7\xb8\x77\xf9\x7a\x96\xdd\x4f\xce\x26\xe7\x7b\x1f\x8a\xec\xb3\x3d\x5e\x11\x0c\x81\x8d\x0b\x2d\xb7\xc3\xca\x3c\x83\xbc\x55\x4b\xf7\xeb\x76\xe5\x10\xd3\x49\x76\x79\xa1\xce\x57\x47\x2f\xb9\x75\xcf\xc7\x31\xb1\xd8\x10\xd5\x8d\xd4\xb4\x3b\xff\x96\x82\x51\x4c\xd0\x7d\x40\x1c\x9a\x33\x17\x53\x66\xb3\xbc\x8a\x45\xd3\xaa\x02\x43\x78\xd0\x5b\xa0\x2d\xc0\x38\xdc\xdc\x6c\x13\x9e\xc5\x1f\xab\x40\x2e\x33\xaa\x26\x58\x35\xe2\xd0\x54\x15\xe4\xfb\x03\x52\xb4\x0e\x39\xc3\x26\x86\xdc\x94\x8a\x08\x41\xb7\x9c\x6c\xe8\x02\x4a\x46\xc3\xde\x50\xe5\xac\x4a\xc0\xb4\xd6\x22\x90\x90\x7c\xb1\x71\x5f\x8a\xd4\xc2\xd6\x45\x09\x96\x37\x4d\x7d\xc1\xfa\xd6\xb8\x94\x51\x6c\xb2\xcf\xcc\x86\x52\x66\x54\x10\x04\xaa\x54\xb4\xa8\x3e\xbd\xe2\x3d\xd4\xb2\x51\x51\xc7\x82\xd0\x9d\x5d\xe0\x02\xd5\x8c\x50\x6a\xf2\x0e\x1f\x52\xe5\x78\x2a\x28\xbf\x27\xd6\xc1\xa3\xca\x1c\x4e\xbd\xd6\x22\x88\x74\xc6\x78\x09\x3c\xa9\x62\xc3\xd5\x31\x34\xf8\x9e\xd2\xce\xe1\xa7\xaa\x3c\x86\x52\xb5\x53\x4f\xc3\x0d\x49\x7e\x1a\x40\x8b\x52\xd9\x00\xb1\xa9\x91\x81\xea\x66\x9c\xa3\x12\x17\xcf\xc7\x4b\xe2\x97\x3e\xf1\xc5\x9c\xa0\x22\x6d\x45\xe8\x27\xa7\xb8\x71\x77\xf7\x0c\xa9\xa4\x2e\x82\x4f\xe3\x72\x93\x26\x95\xef\x8d\x3c\x72\x36\x39\xa7\xef\x5a\xa3\xce\xe9\xf6\x68\x0b\x6e\x1d\x17\xb3\x0b\xcb\xcf\x58\xaf\x30\xa1\xa7\x81\x75\xe7\xc9\x1b\x57\xfd\xbb\xa8\xc5\x0d\xab\xb5\x44\x21\x9d\xb3\x55\x78\x95\xe4\xc5\x2c\xad\xa9\x8c\x70\x7c\x77\xc5\x8a\x38\xcd\xaf\x67\x8e\x9b\x7f\xa9\xb4\x4a\x33\x87\xc2\xef\x3b\x50\xf8\xc1\xc4\x9c\xa7\xbe\xae\xe9\x31\xa1\x37\xc1\x3d\xd7\x32\xdd\xe1\x92\x1f\x57\x47\x3b\x77\xc9\x0f\xfe\xc0\x51\xf2\x23\x69\xd9\x4b\x4e\xda\x25\x3f\x6e\xe8\x33\x70\x21\xce\x5b\x2e\xbe\x12\xbb\x21\x8a\xa3\x26\xb4\x3d\xda\x25\x6d\xf3\xd9\x0d\x22\x8b\xb8\x95\x53\xc4\x1c\x7d\xaa\xdd\x21\x3a\x05\x8b\xa1\xa8\x9b\xf0\xc5\xcd\xf1\x41\x07\x5a\x61\x04\xa9\x6e\x18\x45\x94\x86\x90\xb3\xa4\x5c\x55\x20\xeb\xd8\x3b\xea\xdd\x8c\xf4\xa8\xde\x2c\xaf\x69\x46\x07\xab\xe1\xd0\x31\x92\x34\x27\xf2\xa1\x42\x98\x1b\xae\x5e\x22\x86\x96\xfa\x39\x11\x14\xb4\x5f\x8c\x55\xb4\xd5\x5c\x52\x7e\xc7\xe5\x22\xd6\x8f\x28\x72\x0c\xc7\x45\x5e\xfa\xca\x41\xd0\x0e\xcc\xd5\x87\xf8\x48\x26\x68\xc4\x74\xda\x27\xb3\xb9\x86\xed\x24\x2f\xaa\x30\xf5\xf7\x2f\x9b\x14\x43\xdf\xb3\xb8\xa6\xce\x01\xe5\xcc\x9a\xd7\xa7\x2f\x2b\xb0\xc8\xa0\x3c\x2b\x48\xf5\x23\x32\xc3\xbd\xa7\x1f\x6d\x33\xdc\xef\xc0\xb4\xbc\x0e\x3e\xd2\x5f\x83\xdb\x4d\x5b\xaa\xf0\x9f\x8f\xe7\xa4\x43\x44\xb0\xc5\x88\x86\xe0\x63\xfc\x46\x75\x8b\x43\x6a\x7a\xb8\x40\xb1\x70\xc9\x63\xa0\xef\x70\x4a\x6a\xdd\x32\xdc\x1e\x41\xd1\x29\xa8\xc9\x4a\x56\x5a\x8e\xe1\x52\x06\x28\x40\x35\x30\x7b\x44\xc9\x88\xa5\xe1\xce\x09\x9b\xf4\x4d\x5c\xc9\x55\x91\x6e\x8b\x7a\x60\xf1\xbb\x26\xb6\x18\xe8\x14\xce\x1e\x26\x49\x6a\xdf\x73\xc7\xfb\x00\x5f\xa3\xa3\x0a\xf1\xa2\x55\x91\x2c\x97\xac\xc0\xd0\xd9\x22\x9d\x25\x6b\xd6\xf4\xe7\x40\x40\x37\x11\x40\x4d\x6a\xfa\x63\x80\x22\xbf\x2c\x31\x4d\xaf\xe9\x60\x2a\x97\xec\x67\xb5\xee\x96\x98\xa5\xe6\xe0\x2d\xd2\x64\x71\xa9\x2b\x76\xa1\x40\xcb\xff\xd8\xb1\xc0\xc3\xa1\xcf\x44\x05\xc0\x4a\x1d\xd9\x12\x82\xe2\x39\xf6\xff\xf1\xb9\xf2\xd7\x85\x38\x1f\xa0\x92\xa6\xd9\x38\x8c\x22\x41\x69\x84\x8d\x32\x68\xb5\x74\x89\x31\xe2\xc2\x7a\x29\xcb\x8f\xab\x9c\x04\x8e\xd6\xae\x01\x44\x6d\xef\xc6\xc7\xdb\x8d\x5d\xdd\xc5\x52\x07\xea\x8f\x4e\x69\x6b\x95\x5f\xff\x96\x54\xab\x97\x7c\x87\x82\xc6\xef\x4e\xd8\x92\x88\xe1\x4e\xd6\xef\x6e\x11\xf0\x38\xdf\x96\x8c\x33\x03\xa7\x79\x9e\x56\xc9\xe6\x85\x08\x85\x0e\xf6\x3c\xbb\x67\xb0\x5f\x58\x78\xc5\xba\x46\x73\x3c\xdc\xb7\x0a\x12\xf8\x7d\x30\x4b\x50\xbb\x27\xf5\xaa\x5c\xbc\x61\xbb\x97\xf9\x75\x16\xd8\x3f\xff\x02\xe2\xf3\xf8\x22\x29\xa1\x18\x26\x8b\x82\xc1\xd4\x21\x4e\xf7\x15\x79\xdd\x15\x35\xf1\xe8\x13\x8a\xb4\xfd\x02\x59\xfb\x29\xbe\x5b\x23\x4d\xd5\xcd\xd9\x44\x7b\x25\x65\x2d\x52\x16\x16\x1f\x56\xf9\xf5\xa9\xe0\xdc\xac\xf6\x9f\x93\x88\xe9\xf6\xfa\xff\x52\x5d\xb0\x17\xbf\xdd\xf2\xa2\xa4\x7b\xba\x42\x8a\x4c\xf9\x49\xfe\x3d\x9a\xf2\x0f\x9a\x17\x15\x21\x55\x66\x8e\x8b\x95\x01\x4b\x15\x05\x6d\x41\xdb\x66\x7a\xec\x41\x55\x9b\xe0\x34\x81\x44\xf8\x84\xd4\xfb\x8f\x56\x47\xfa\x93\xc7\x43\x52\x9a\x8d\xc3\x90\xd8\xfb\xc9\xc6\x1b\x56\x94\x49\xa9\xa1\xc2\x0b\x10\x70\x56\x50\xbe\x2a\x04\x05\x7d\x40\x81\xb0\x33\xc3\x64\x01\x75\xf2\x41\x9c\xf3\x88\x82\x15\x9d\x58\x0c\x9d\xf7\x0a\x2a\xd7\x83\x03\xe7\xf8\x92\xed\xe4\xec\x78\x5f\x19\x7c\xe9\x50\x56\x08\xfe\xdb\x61\xba\x39\xe4\x77\x56\x57\x79\x64\x46\x66\xaa\x3e\x7b\x80\x6b\xab\xfb\xd5\x78\xb1\x2d\x0a\xd0\x7b\x28\x56\xf1\x62\x93\x6f\xf8\xda\x6a\x55\x8d\xa0\xc0\x7b\x27\x01\x77\xaf\x8a\x46\x69\x7f\xe8\x28\x29\xdf\x86\x6f\xfd\xea\x8c\x9d\x93\xa3\x9f\xcf\xd8\xf9\xac\x82\xff\xd5\x8a\x2c\x76\xa5\x43\x07\x04\xba\xbb\xf3\xf7\x1e\x43\x89\x59\x32\x65\x8d\x7d\xd9\xb4\xf5\x3c\xfd\x11\x1b\x63\x4e\x0b\x05\x0c\x19\xef\x40\x01\x88\x13\x17\x53\x02\xb2\xbe\x17\x44\x85\xac\x5d\x53\xb1\x41\xb4\xaf\xc6\x36\x88\xbd\x30\xfe\xcb\x61\x39\x10\xdd\xc6\x07\x30\x3d\x82\x67\xd6\xc8\x78\x86\xae\xc5\x56\x45\x18\xb2\xd6\x82\xdc\x33\x2e\x02\xc7\x05\xa1\x19\xd7\xc5\x39\xed\xc5\x70\x45\x7f\xa4\xc2\xe3\x89\x47\x0e\x2b\x43\x8c\x52\xb6\x0c\x17\x3b\x49\x8d\x7c\x07\x06\xff\xc7\x28\xcd\xc4\xb4\x94\xe0\x78\xf4\x60\x7a\x6b\xe3\xcd\xa0\x35\xb2\x3c\xbe\xe4\x48\x6f\xa2\xc6\x15\x4e\x07\x1c\x93\xd3\x08\x8d\x5f\x24\x33\x04\x9f\x60\x9b\x05\x78\x5d\xa0\x3c\xe2\xea\xc0\xd3\xd8\x37\xdd\xd6\xdc\x6a\x07\xd7\x8c\x30\xc3\xae\x51\x2f\xb7\xae\xad\xfa\x74\x6d\xea\x68\x0a\xe4\x58\x43\xbe\x0e\xb3\x6d\x98\x7a\x1c\x3a\x9f\xb9\x16\xe4\xee\x8e\x39\xf1\x80\x0c\x87\x91\x44\x2f\x3e\x55\xcb\xba\xaf\xfa\x53\xa4\x76\xb2\x70\x91\x0e\x26\xc4\x5a\x5d\x2e\x8f\xb8\xef\x3e\x1f\xbf\xe6\xf8\xd2\x9a\x5f\xb4\x22\xd1\x77\x7b\x2d\x5b\xdf\xe9\x1c\x60\x5b\xa9\xd9\xe2\x1d\xe2\xfd\xf9\xe5\xa9\x67\x06\x36\x81\x9e\x33\x83\x77\x93\x0c\xcd\xab\xcf\x74\xa0\x97\x3d\x1d\x31\x8b\x7b\xfa\x5d\xb2\x5d\x94\x5f\xab\xaf\xe1\x4b\x19\xba\x93\xba\x76\xcb\x43\x2d\xce\x51\x6f\x88\xf5\x41\xd1\xf3\xf3\xd6\x7e\xcf\x18\xdd\xcb\xdf\x63\x88\xfd\xa0\xf7\x18\xa0\xcf\x4e\x75\x77\x74\x6d\x96\x3e\x1a\xce\x6e\x3d\x4e\x07\xdf\x2d\xcc\xfb\xb7\x4d\x1c\xfb\x35\x76\x87\x4c\xb9\xd4\x34\x36\xb4\x5b\x0c\x50\x52\x3b\x13\x3f\x1b\xf4\x47\x72\xb6\x52\x24\xee\x32\x15\xd9\xb9\xfc\xee\xee\x06\x0d\x69\xe4\x88\xb9\xb2\xf6\x61\xa2\xad\x59\x81\xbd\xe6\xa2\x7b\x0c\x43\x0d\x62\x39\x68\x31\xf2\x44\x49\x65\xdb\x34\x3d\x74\x08\x5a\x87\x0f\xce\x6b\x66\xab\xdc\x64\x3e\x40\xb8\x45\x4a\x63\x65\x5a\x58\x96\xa0\xd4\x69\xd1\xb1\x8c\x4a\x60\x4e\x6a\x9a\x98\xe2\xb6\x89\x29\x72\x18\x95\x44\xc0\x97\xb2\x25\xcd\x03\x64\x4d\x02\x83\x93\x0c\x5f\x3c\x56\xd5\xcf\x97\xca\x04\x76\x65\x70\xab\x3b\x3d\xdb\xaf\x84\x98\x12\xe9\x60\x0f\x89\x68\x86\xca\x93\x43\x53\x8e\x62\x26\xda\x8a\xde\xd7\x38\x44\xa2\x52\x4a\xd5\x50\x69\x4e\x4b\xa4\x0b\x5b\x38\x34\xa3\x48\xc1\x38\xdb\xb6\x95\x8d\x4d\x55\x67\xdc\xd2\x70\xee\x90\xc6\x76\x85\x74\x88\x73\xa5\x3a\x5c\x23\xcd\x67\x66\x3c\x1c\x6c\xab\x04\xe8\xda\x8e\x85\x96\x6f\x59\x3b\x8c\x13\x42\x9f\xdd\x30\x76\x5c\xb5\x14\xdc\x56\x9d\x73\x51\x4c\xa5\x12\xa2\xa3\xaa\xcb\xa6\x8a\x9d\x95\x14\xc9\xc9\x6a\x36\x1d\x82\x33\xc5\xa2\xa8\xf5\xae\x43\x38\xa5\x79\x26\x09\xe7\xac\x45\x4a\x51\x8a\x3b\x4b\x9b\xfe\x07\xd2\xa6\xff\x4a\xff\xb0\xb5\xe9\x3f\xc2\x39\xfa\x29\xf8\x83\xbe\x71\xb0\x9f\x60\x96\x33\x30\x0a\x89\x82\x66\x56\xfb\x08\xce\x95\x47\x9b\x07\x6c\x0f\x5a\xfd\xd4\x5c\x6b\x46\x6f\x9b\x5b\x5f\x35\x55\xe4\x19\x44\xe8\xbc\xb1\x80\x79\xd3\x88\xd0\x41\x2e\x35\x55\xbe\xf1\x90\x76\x76\xd2\x42\x3f\x6f\x5e\x8e\x34\x68\xb6\x7a\xf6\x09\xb0\x37\x4f\x04\x2b\x51\x1f\x56\xe3\x30\x78\x53\x9f\x9f\x93\xc3\xff\xf7\xf7\xbf\xff\xed\x49\x99\x6f\x8b\x05\x3b\x0e\x37\x9b\x24\x5b\xfe\xfa\xfe\x97\xe0\x9b\xf1\x0f\xdf\xfc\x63\x11\x46\xd3\xef\xc7\x8b\xd5\x36\xbb\x1c\x7f\x2c\xc7\xeb\x70\xf3\xff\x03\x00\x00\xff\xff\x77\x3f\x1f\xbb\x72\x79\x0f\x00") +var _pkgUiStaticReactStaticJs2B309ab18ChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x6b\x97\xdb\x36\xb2\x28\xfa\xfd\xfe\x0a\x89\xe3\xc3\x10\x16\xc4\x26\x25\xf5\x8b\x32\xac\xe5\x89\x9d\xd7\xb8\x93\x4c\xe2\x49\x66\x0f\x9b\xce\x61\x53\x50\x8b\x09\x45\x2a\x24\xd4\x0f\x37\x35\xbf\xfd\xae\x2a\x80\x24\x48\x51\x76\x66\x66\x9f\x7d\xd6\xbd\x6b\xd9\x2d\x92\x78\x17\x0a\x85\xaa\x42\x55\xe1\xe4\xf9\x70\xf0\x45\x96\x0f\x92\x38\xe2\x69\xc1\x07\x71\xba\xca\xf2\x4d\x28\xe2\x2c\x1d\x6c\x13\x1e\x16\x7c\x50\x70\x3e\x98\xd8\x37\x53\xe7\x32\xbc\x71\x2f\xec\x68\xbd\x4b\x7f\xb3\x7f\x2d\xec\xb7\x5f\x7f\xfe\xe6\xdb\x1f\xdf\xd8\xe2\x41\x0c\x9e\x9f\xfc\x3f\x96\x58\xc7\x85\x7d\xcf\x6f\xb6\x61\xf4\xdb\x37\x45\x96\x6e\x6f\xf3\x70\xbb\x66\xfd\x9f\xcb\xd2\x0f\x88\xbd\xdd\x15\x6b\xcb\xf7\x27\x01\xf5\x57\xbb\x34\x82\x56\x2d\x4e\x05\x4d\xc9\x93\xb1\x83\xa6\x45\x1e\x47\xc2\x98\x73\x9b\x3f\x6c\xb3\x5c\x14\x2c\xb5\xce\x66\x64\x4f\xbb\xb9\x5b\x19\x2e\x88\xd5\x93\xa5\x55\x61\x6a\x2f\x2d\x41\x8d\xb5\x41\xad\x3a\x1f\x79\xca\xb9\xd8\xe5\xe9\x20\xdc\x13\x42\x55\x8e\xb8\x37\x47\xa1\xe5\xf8\xb5\x37\x47\xa4\xe5\xd8\xf4\xe6\xd8\x69\x39\xc2\xde\x1c\x2b\x2d\x47\xd2\x9b\x63\xa9\xe5\xf8\xad\x37\xc7\x5a\xcb\xc1\x7b\x73\xdc\x68\x39\xa2\xde\x1c\x1b\x2d\xc7\xb2\x37\xc7\x95\x96\xe3\xa6\x37\xc7\xad\x96\xe3\xb6\x37\xc7\x2b\x2d\xc7\xaa\x37\xc7\x87\x3d\x21\xf3\xbb\x30\x1f\xe4\x34\x63\xa9\xe5\x12\x1a\xb3\xd4\x4e\xad\x8c\xcc\xab\xcc\x83\x10\xa6\xbb\x2e\x71\x97\xc5\xcb\x81\xc3\x18\xe3\xa6\x69\x71\x66\x18\x84\xd6\x9f\x84\x69\x5a\x82\xe5\x84\x8a\x05\xb7\x8b\x6d\x12\x0b\xcb\x18\x18\xc4\xde\x84\x5b\xab\x69\x9c\xd7\x75\x09\x9f\x07\x65\xc9\xf7\x84\xd8\xbf\x66\x71\x8a\x99\x3d\xbe\xaf\x5b\x2e\x64\xcb\xd0\xbf\x94\x3d\xed\xe7\xaa\xd8\x77\x37\xbf\xf2\x48\xd8\xbf\xf1\xc7\xc2\xe2\xc4\x5e\x65\xf9\x9b\x30\x5a\x6b\x2d\xe4\xe4\x69\xec\x42\x7f\xec\x38\x5d\xf2\x87\xef\x56\x56\x4e\x4c\xd3\x4a\xfd\x3c\x60\xdc\xcf\x03\x82\x70\x69\xda\x89\x64\x3b\xab\x2c\xb7\xb0\x2d\x9a\xb3\x57\x79\x1e\x3e\xda\x71\x81\xbf\x96\x20\x0b\xe1\xf9\x22\xa0\x19\xcb\xed\x84\xa7\xb7\x62\x4d\x63\xe8\x51\xf6\xd2\x99\x93\xd8\x4f\x59\xee\x67\x63\xe6\x06\x50\x7f\x1a\x54\x1d\x8d\xf7\x50\x5d\x02\x19\xeb\xb6\x76\x30\xfe\x04\x07\x6e\x19\xbb\x74\xc9\x57\x71\xca\x97\xc6\x90\x31\xf1\xb8\xe5\xd9\x6a\x10\x65\x69\x91\x25\xdc\x34\xd5\x83\xcd\xf3\x3c\xcb\x2d\x4e\x28\x94\x62\x43\x87\x60\xad\x5b\x66\x64\x08\x07\x83\xd5\x45\xef\xe3\x74\x99\xdd\x9b\xa6\xfc\xb5\xdf\x24\x7c\xc3\x53\x51\x96\xda\xbc\x6b\x3d\x59\x55\xcb\x38\x5e\x59\x43\x8b\xfb\x22\x88\xd3\x42\x84\x69\x04\x55\x6d\x09\x51\x83\x48\xf9\xfd\xe0\x0d\x76\xc1\xf8\x3a\xbd\x0b\x93\x78\x39\xd8\xe6\xd9\x76\xf0\xbf\x8d\x91\x18\x19\xff\x7b\x50\xec\xb6\xdb\x24\xe6\xcb\x81\xc8\xe0\x5b\x3a\x32\xfe\xb7\x3d\x78\xf3\xb0\xe5\x91\xe0\x2a\xab\xc8\x06\x37\x7c\x10\xa6\x83\xaa\x81\x41\xb6\x1a\xa8\xde\xd9\x83\x9f\xa0\x4e\x49\x1e\x57\x61\x9c\xf0\xa5\x6d\xc8\x21\x2e\x59\x6c\x87\x76\x96\xf2\xef\x56\xef\x1e\xb7\xdc\xf2\xe1\x15\xc8\x4d\x7a\x4b\xe1\x11\x46\x42\x57\xf8\x58\xac\xc3\x2d\xb7\x9e\xa2\x5d\x9e\xf3\x54\x78\xf0\x29\x4c\x1f\xf7\x24\x20\x74\xdd\x57\x0b\x16\xed\x54\xa7\xea\x78\xf6\x4c\x42\x13\x2b\x29\x1e\x37\x37\x59\x42\x73\x9e\x2e\x79\xee\x55\x25\xf7\x04\x0b\x84\x80\x1b\xdf\xad\xac\xff\x03\xf5\x07\x04\xba\x7e\xc3\x9e\xbe\x08\x97\xdc\x73\x4f\x1d\xfa\x79\x96\x24\xe1\xb6\xe0\xde\xf4\xd4\xa1\x57\xd9\x32\x4c\xbc\xa9\xe3\xd0\xcf\xc3\x3c\xdb\x15\x3c\xf1\xce\x1c\x67\x4f\x37\xcc\x37\xe2\xd4\xa0\xc6\x26\xdb\xa5\xe2\xbb\xf4\x4d\x2a\x78\x6e\x50\x63\x97\x56\x1f\x1e\x62\x61\x50\x23\xdc\x6e\x79\x08\x09\x5c\x65\xe0\xf2\xbb\x88\x37\x3c\xdb\xc1\x53\x56\x97\x55\x4f\x71\x7a\xdb\xbc\xf0\xa5\x7c\x96\xa5\xe4\x43\x9d\xe1\x21\x16\x7c\x69\x04\xf4\x8a\x3d\xbd\xf9\xf6\xdd\x9b\x1f\xbe\xfe\xf6\x4b\x4f\x36\x84\x59\xf0\xdb\x9b\xd7\xea\x13\xd4\xf4\xe6\xef\x5f\xbf\x93\x99\xaa\x6a\xe0\x0b\x66\x91\x75\xed\xe9\x2d\xf3\x8d\x70\x27\xb2\x71\x21\xc2\x1c\x47\xb0\x13\x99\xfa\x19\xf3\x14\xba\x23\xb2\x6d\x9d\x2a\xb2\xad\xfa\x22\xd3\xf2\xf8\x76\x2d\xea\x54\x7c\xab\xbf\xca\x1c\x37\x99\x10\xd9\xa6\xf5\xd2\x7c\xad\x0a\x26\x7c\x55\xe5\x87\xc7\xea\x8b\x4c\x0e\xe8\x23\x1b\xea\x4b\xba\xbb\x2e\xcb\x72\xa8\x16\xe6\x32\x8b\x76\x72\x65\x76\xbf\xd8\x51\xce\x43\xc1\xd5\xda\xd0\x88\xf0\x9d\x46\x36\xd3\x5d\x92\x30\xc6\x17\x0d\x29\x5e\x18\xbe\x24\x06\x83\xbf\x55\xcd\x07\x86\x57\x7f\xfc\x76\x97\x24\x81\xe1\x29\xba\xb9\xcd\x33\x91\x41\xcf\x6c\x91\xfd\x88\xe8\x69\x47\x61\x92\x58\x9c\x34\x14\xf1\x15\x34\x07\x6b\x50\x54\x63\xe0\x73\xad\xf5\x21\x52\x7f\x9d\x00\x95\xa5\x51\x15\xc6\x77\xad\xae\x5f\xa0\xae\x78\xd5\xb3\x01\x0c\xad\x21\x2f\xcb\xaa\x9a\x86\x04\x72\x62\x9a\x86\x5a\xcb\x46\x9c\x0e\xf8\xde\xe2\x35\x3d\xe2\xb6\x4a\x99\x77\xea\x04\x32\xf6\xaa\xc9\x38\x74\xe7\x72\x00\x00\x3a\xd5\xf9\x1a\x22\x5f\xa8\x72\x41\xd5\xf9\x2a\xe1\x55\xf1\x98\x46\x47\x53\xbf\xe4\x29\xcf\x43\x91\xe5\x47\x73\x7c\x9f\x67\x0f\x8f\xf2\x6b\xab\xd3\x16\x81\xee\x1a\x92\x1c\x68\xa8\xc1\x4d\xf3\xb1\x82\x74\x8d\x04\xbf\xef\x78\xfe\xf8\x23\x4f\x78\x24\xb2\xfc\x15\x4e\x0d\x94\x16\x6a\xeb\x29\x4b\xeb\x63\x99\x8d\x3f\x19\x23\x4e\x08\x1d\x56\xf9\x89\x58\xe7\xd9\xbd\x4e\xc8\xdf\xad\xf9\x40\x84\xf9\x2d\x17\x83\xcf\x8c\x11\x1f\x19\x9f\x0d\xa2\x6c\x97\x2c\x07\x69\x26\x80\x54\xc7\x4b\x9e\x8a\x78\x05\x54\x3d\x4e\x07\x62\xcd\x07\xcb\x6c\x43\x07\x22\xde\x7a\x83\x68\xcd\xa3\xdf\x06\xc5\x96\x27\x09\x0c\xa5\x02\xed\x40\xec\xab\xb1\x36\x53\x7f\xdf\xc1\xda\xa1\x64\x1b\xda\x9b\x2b\x27\x65\xf9\x68\x9a\x46\xba\xdb\xdc\xf0\x5c\x87\x4d\xd5\xff\xa6\xc2\x0f\x3a\x47\xf0\x4b\x33\xb1\x03\xb1\xb8\xb7\x52\xb2\x48\x3d\xb9\x38\x58\xba\xf0\x03\xcf\x4f\x03\x4f\x7e\xf6\x9d\xc0\x4b\xf7\x9f\xe0\x60\xeb\x56\xf2\x9a\x41\xb2\x72\xa6\x56\x4d\x58\x14\xf1\x6d\xaa\xed\xa5\xbc\x61\x18\x04\x73\xe7\xe2\x45\x98\xdf\xe2\x8c\x14\xaa\xdb\x73\x31\x1a\x55\x5d\xad\xd3\x7c\x11\xcc\xab\x62\x39\x00\x37\x25\x07\xcb\x72\x1d\x16\xdf\xdd\xa7\xdf\xe7\xd9\x96\xe7\xe2\x51\x2e\xce\x94\x22\x0b\x03\xdc\x0b\x4b\x91\x85\xa9\xa1\x4d\xec\x70\xbb\x4d\x1e\x51\x58\xa0\x75\x43\x64\xff\x51\x46\x38\xdf\x93\x1e\x86\x1e\x7b\x35\x1f\x6a\xd9\x5b\x00\xaa\x18\xb1\x4e\x0f\x1b\xc0\x65\x56\x03\x14\xce\xfc\x80\x0a\xe6\x7c\x14\x32\x79\x1b\x32\x31\x70\x6a\x98\x10\x57\x48\x90\x77\xd6\x4d\x5c\x96\x1a\xa6\xc4\x84\x4b\x89\x27\x27\x73\x9e\x80\xb0\xb5\xea\x60\x17\x80\xad\xe2\xd9\x64\xd5\x21\xcb\x14\xc4\x00\x57\x68\x4e\xe6\xa1\x69\xaa\x6a\x42\xb2\xaf\xaa\xd1\xa8\x5b\x4c\xaa\x41\x15\x30\x65\x39\x49\xe5\xa4\xe4\xb4\x80\xda\xfd\x22\xa8\x2b\x28\xc8\xbe\x9e\x99\x86\xa9\xdd\xd7\xc2\xd4\xc2\xca\xec\x25\x5f\x85\xbb\x44\xb0\x8c\x36\x32\x56\x46\xbc\x9a\x9c\x5b\x39\x3b\x9c\xb0\x6c\x5f\x4d\x33\xf5\x03\x42\xca\xd2\x6a\x0a\xe7\x64\xff\x49\xf1\x4c\x43\x6e\x5c\x42\xf1\xca\x52\xfb\x88\xa2\x51\x4f\xfb\xb9\x62\x7e\x69\xc6\x9e\xf6\x34\x66\x6d\x3e\x1b\xd1\x36\x67\xce\x3c\x7f\x11\x57\xf3\x98\x8f\x46\x24\x65\xb1\x9f\x07\xb4\xe1\xb5\x53\xf2\x92\x39\x65\x69\x65\x7e\x2a\xd9\xe1\x7a\x91\x66\xff\x0e\x4e\xf6\x09\x99\xfd\xe5\xb3\x5a\x98\x61\xa9\x35\x9d\x11\x1d\x2f\x75\x11\xa6\xb3\x69\x74\xa9\x51\x4d\xb3\xf7\x48\x9a\xf4\xfe\x60\xfe\x5e\xae\xfd\x47\x64\xe4\x4c\x53\xfe\xda\xb1\x90\xfb\x04\xa0\x8b\x04\x23\x54\xac\x88\x81\x1f\xd0\x9c\x0d\x1d\x9a\xb1\xa1\x4b\x63\x26\xe7\x7d\x2e\xf2\xc7\x7a\xed\x84\xb4\x60\xdc\xef\xd4\x15\x58\x64\x3e\xb4\x72\x66\x85\xac\xb0\x53\xfe\x20\x2c\x42\xec\x65\x96\x72\x94\x6d\x14\xfe\xda\x77\x61\xb2\xe3\x40\xfc\xcb\x32\x55\xd3\x04\xbd\x24\x73\x68\x92\xcc\xf7\x51\x28\xa2\xb5\x15\x91\xa7\x0c\xba\x10\xb3\x68\xbf\x8a\xd3\x30\x49\x1e\x9f\xa0\x03\x79\x59\x4a\xac\x28\x6c\x09\x85\xb2\xac\x9e\x2c\x52\xe7\x8c\x57\x56\xa6\x36\x95\xb8\x46\xf7\x74\xbf\x47\x10\x95\xa5\x1a\x70\x6e\x87\x44\x7d\xd1\xe6\xaa\xd9\x8b\x80\x5b\xee\x08\x16\xa1\x10\x7c\xb3\x15\x20\x30\x2c\x79\x21\xf2\x5d\x24\x76\x39\x1f\xa4\x59\x3a\x46\x28\xdc\x24\xbc\x96\x21\xec\xeb\xf4\xeb\x74\x90\xe5\x4b\x9e\x2b\x01\xa3\xca\x42\xb1\x00\x72\xe7\x03\xb9\x88\x8b\xc1\x66\x57\x88\xc1\x3a\xbc\xe3\x83\x70\xd0\x03\xd8\xc1\x86\x8b\x75\x86\x92\x87\x45\xfe\x85\x7d\x42\x62\x50\xc3\x88\x69\x5b\xed\x0f\x7c\xc5\x73\x9e\x46\xd5\x18\x81\x3c\x0f\xd6\x61\x91\x7e\x06\x5b\x2c\x07\x61\x28\x16\x71\x98\xc4\x05\x5f\x0e\xc6\x20\x46\xf1\xdc\x22\xad\x1c\x40\x64\xf8\xb2\xd9\x62\xf9\x1f\x59\x3f\xff\xc1\x02\xca\x3f\xa9\x73\xc8\x3e\xa9\xd9\x88\x3f\xa9\xd9\x08\x3f\xa9\x3f\x29\x3e\xa9\xb7\x88\x3e\xa9\xfb\x48\xb4\x1c\xfd\x3a\xa9\xdd\x27\x75\x52\xdb\x4f\xea\xa4\x56\x9f\xd4\x16\x2d\x3f\xa9\x71\x5a\x7f\x52\xaf\x75\xd3\x10\xb6\xa7\x6d\xce\x57\xf1\x83\x67\xac\xc2\xc2\xa0\x71\x94\xa5\xdf\x86\x1b\xee\x19\x61\x9e\x67\xf7\xe3\x65\x76\x9f\xca\xaf\x9e\x3f\x9b\x5d\xd0\x53\x77\x42\xfd\x80\x1a\x2b\xe7\x6c\x6a\x50\xe3\x6a\xe6\x4e\x6d\x77\x30\x99\x4c\xec\xd3\x64\x32\xb1\x27\x03\xf8\x13\x5d\xda\xb3\x41\xf5\x7f\x32\xb3\xcf\x06\xce\x60\x3a\xb5\x2f\xdf\x4e\x66\xee\x60\x76\x3e\x8d\xc6\x2a\x71\x8c\x89\xf0\x00\xc9\x03\xe7\xad\x3b\xb1\xcf\x07\x93\xf3\x0b\xfb\x0c\xf3\xd4\xff\x65\x25\x98\x0b\x9b\x19\xab\x66\x4e\xc7\x97\xf6\xe9\x60\x02\x3f\xd3\xc1\x74\x66\x4f\xed\xd9\x5b\xf7\x62\x36\x98\xce\xa6\xf6\xec\xa7\xd3\xb3\xc8\x19\xbb\x53\x7b\x3a\x70\x1d\xfb\x7c\x3c\x81\xce\x8c\x27\xb3\xf5\x74\x12\xe1\x57\x67\x30\x99\x61\xd2\x00\x93\xee\x26\x17\xe7\xf6\x2c\x71\xdd\x99\x7d\x31\x76\x27\x8e\x7d\x1a\x5d\xda\xd3\xf1\xa5\x7d\x01\x83\xb8\x18\xbb\x0e\x36\x31\xb6\x67\x1f\x8c\x60\x0f\x7b\xda\x47\x41\xb7\xdb\x1e\x01\xdc\x04\x00\x37\x9d\xd9\x97\x83\xc9\xc5\xa5\x7d\x9a\x8c\x9b\x11\x1d\x1b\xf4\xdb\x89\x73\x3e\x98\x5e\x46\x2a\x09\x81\x8a\x0f\x12\x6e\x89\x7b\x39\x83\x51\xc2\xdf\xa3\xc0\x9f\xb9\x53\x6c\x70\x16\x21\xd0\x00\x78\x13\xf8\x99\x8e\xd5\xa8\xde\x4e\xce\x66\x03\xf7\xec\xc2\x3e\xfb\x69\x06\xa0\x1b\x00\x90\xc6\x0a\x3e\x12\x7a\xeb\xf1\x74\x12\x49\x90\x3a\xe3\xc9\x6c\xac\xe0\x3a\x9e\xcc\x7e\xc2\x82\x6f\xcf\x2e\x01\x07\x2e\x2e\x6d\x37\xc2\x39\xb9\xb4\x2f\x60\x1c\x17\x03\xd7\x19\xcb\xf9\x41\xd8\xc5\x47\x61\x17\x85\x09\x4f\x97\x61\x3e\x46\xa9\xa0\x17\x82\x93\xf3\x19\xa2\xde\xf4\x6c\xe0\x9e\x39\x5f\xb9\x93\x68\x7c\x66\x9f\x4d\xce\x07\xce\xd8\x9d\x8c\x4f\xed\xe9\xf9\x14\x1e\xdc\xc9\xdd\x78\x0a\x18\x30\x39\xb3\x4f\xdd\xc1\xc4\xb5\x67\x97\xe3\xd9\xc5\x60\x76\x31\x9e\x5d\xac\x67\x17\x3f\xb9\x93\xc8\x51\x25\xab\x42\x03\x2c\xb7\x9e\x39\x91\xaa\x71\xe0\x4e\x64\xe2\x00\x13\xef\x4e\x27\x6b\x77\xf2\x6f\x17\x9d\x5d\x44\xb2\x33\xce\x60\x76\x21\x7b\x34\xc0\x1e\xdd\x41\x47\x07\x58\x70\x5c\x95\x91\x75\x7e\xb8\x82\x9f\xcb\xc9\x7a\x36\x99\x1d\xab\x79\x72\xe6\x44\xce\x00\x6b\x1e\x57\x95\xca\x91\x7e\x35\xbb\x88\xd4\xf8\x9d\xf1\xec\x62\x5c\x01\x61\x3c\xbb\xf8\x69\xe2\xcc\x8e\x0c\xe2\xc3\x66\x3a\x9d\xda\x93\xcb\xb3\xc1\xe5\xa9\x7d\x39\x3b\x4f\xc6\x93\x0b\xdb\x3d\xbb\x84\x9f\xe9\xe5\x45\x34\x9e\xd9\x67\x67\xe7\xe3\x99\x7d\xee\x9c\x8e\xdd\x89\x3d\x39\x3b\x85\x97\xe9\xd9\xd8\x3d\xb3\x2f\xcf\xc7\xb6\x73\x76\xf1\x16\x90\xd1\x9d\x0c\xa6\x67\x90\xf9\x34\x19\xcf\x4e\xed\xcb\x8b\xf1\xec\xcc\x9e\x9e\x4e\x7a\x6a\x38\xd3\x6b\x70\xb1\x8a\x44\xb6\x77\x3e\x80\xd6\xcf\x23\x99\x7b\x50\x97\x84\xe9\x97\x6d\x43\xe6\x01\x16\x4c\x2e\x26\xf6\x99\xe3\x0e\x2e\xa6\xf6\xe4\xec\x32\xc2\xbc\x03\x59\x4e\xe6\x1d\xa8\x82\x90\x19\xdb\x70\x67\x13\xfb\xf2\x74\x3a\x76\x67\xae\x7d\xe1\x9c\x46\xb2\x4b\x75\x41\xe8\x11\x16\x84\xcc\xb2\x73\x88\xc0\xe1\x71\x04\x5e\x87\xb9\x18\x87\x39\x0f\x2b\xe4\x05\xc4\xad\x91\xd7\x5d\x71\x40\xde\x53\xc7\x19\x4c\x2f\x70\x46\xab\xf9\x9c\xa9\xd9\x9c\x39\x12\x15\xc6\xf2\x93\x9c\x95\x0a\xcb\x2b\x1c\x9f\x49\x0c\xff\xe9\xfc\x4c\xce\xe1\x40\x7e\x6a\x21\x61\xb7\xe2\xa9\x73\xb1\x9e\x4d\xcf\x3e\x5c\x4d\xcf\x81\xcc\xba\xa7\x97\xf6\xe9\xdb\xc9\x05\x20\xe2\x59\x32\xbe\x38\x85\xc5\xee\x4e\xed\xf3\x68\x7c\x6a\xbb\xe3\x33\xa0\x78\xa7\xf6\xe9\xf8\x0c\xbe\x5f\xda\x97\x03\xf7\xed\xe5\xd9\x60\x32\xbb\xb8\x73\x9d\xd9\x7a\x7a\x31\x4b\xc6\x17\x97\xf6\xe5\xd8\xbd\x38\xb7\x2f\xa2\xf1\xd4\x9e\x8c\xcf\xec\xd3\xb1\xeb\xda\xb3\xf1\x85\x7d\x3e\x76\xcf\xed\x19\xcc\x13\xc2\xab\xf8\x04\xbc\x92\x38\xe5\xbd\xf0\x9a\x38\x2e\x2e\xf6\xcb\x33\x80\xd7\x57\x67\xb3\x9f\x2e\x9c\xc8\x19\x5f\xd8\x17\xb3\xf1\xb9\xed\x02\xc2\xc8\x7f\x5f\xb9\x67\x9f\xc3\x87\xc1\xd9\x6c\xe0\x0c\xce\x5d\x78\x74\x06\x17\xce\xdd\x14\xd7\x96\x7b\x6e\x9f\x9d\x0f\xdc\x99\x3d\x9d\x0e\xa6\x13\xf9\x6f\x3d\x3b\x9b\x45\x50\x13\x40\xea\x0c\xab\x1b\x60\x5d\x77\x40\xe6\xfa\x1a\xf9\x70\x35\x3b\x9b\x0d\x2e\xcf\xbe\x9a\x02\x3a\xcf\x22\x58\x50\xd3\x0b\x20\xd2\x13\xdb\xb9\x1c\x4c\x4e\xed\x8b\x53\x89\x25\x83\x99\x03\xf8\x38\x9d\x00\x91\x9e\x00\x71\x05\x40\xcf\x26\xf6\xf9\x69\x32\x3e\x9f\xda\xd3\x73\xf9\x37\x02\xfc\x3a\x95\x7f\xa6\x13\xfb\xfc\x4c\x3e\xce\x4e\xed\xc9\xe9\xc0\x49\xc6\x40\x55\x2f\x07\xf8\x17\x10\x60\x72\x3a\x80\x3f\xf2\xc9\x3d\xc3\xc6\x61\xcf\x3d\x9b\xc2\xbe\x78\x86\xfb\xef\xd9\x24\xaa\x33\xaa\x3c\xf8\x88\xd9\x60\x93\xbd\x9c\x0c\x26\xd3\x73\x7b\x72\x9a\x60\x17\x06\xb2\x23\xd0\xee\x00\xff\x60\x3f\xe4\x63\xd5\x8f\xcb\xb3\x31\xcc\x40\x35\x9a\xc8\x3d\x85\xc5\x2d\xff\xe2\x48\x07\x33\x1b\x36\x77\x78\x94\x00\xf8\xc9\x75\x27\x91\xed\xb8\x35\x14\x4f\x11\x84\xa7\xf6\xe5\x25\x00\x12\x90\x22\xfa\x08\x52\xf0\xbb\x3c\x4b\x3f\xc2\x7e\x9c\x5f\x00\x5a\x4c\x9c\x73\xdb\x99\x5c\x0e\xa6\x17\xae\x3d\x3b\x3f\x03\xfe\xe1\xec\xe2\x6c\x00\x28\xe9\x4e\x71\x3b\x05\xba\xa6\xff\x9d\xcc\xec\xd3\xb3\x4b\xb5\xad\xce\x5c\x84\xda\xd9\xf9\x58\xfe\xc0\x7e\x7f\x7a\x3e\xc6\xbf\xb0\x77\x9e\x4e\x26\x58\xec\x14\x77\x50\x07\xc8\xd2\xec\xed\x04\x76\xc2\x8b\x99\x7d\xea\x9c\x26\xee\xe9\xcc\x3e\x9f\x9d\x8e\xe1\xd7\x99\xb8\x50\xfe\xfc\x12\x8a\x4c\x4f\xb1\xfc\x0c\xb6\xeb\xa9\x7b\xae\xca\xdb\xce\x4c\x35\x38\x68\x1a\x3c\x87\x5d\xb2\xf9\x5b\x75\x70\x20\x3b\xf8\x76\x82\x30\x75\xab\x21\xaa\x31\x61\xe6\x49\x35\x1a\xf9\x82\x05\x26\x03\x07\x61\x9b\x7c\x12\xb6\x52\xe1\x2c\x61\x3b\x9d\x38\x1a\x6c\x4f\xa7\x8a\x43\x39\x05\x44\xb9\xb4\x9d\xe9\xdb\xc9\xe4\xc2\xbe\x38\x1f\xcc\x66\x80\x87\xd0\x1c\x76\x03\x3b\xab\x1e\xb1\xf5\x81\x83\xe3\x93\xc3\xc3\xd1\x01\x7b\x27\xff\x28\x88\xda\x8e\xe4\x5a\xde\xba\x53\xdc\xaa\x26\xa7\x67\x89\x04\xdf\x00\xa1\x89\x4c\x17\x70\x2f\xd3\x0b\xf8\x33\x91\x70\x1c\x57\xc5\x90\x5b\xaa\x1b\x90\x4d\x63\x7f\xb0\x2b\xf2\x51\x75\xe5\xad\x1a\xc1\xf9\xc4\xbe\x54\x59\xb5\x3f\x32\xbf\xc2\x03\x04\xd9\xee\x93\x20\x53\x7a\xfe\x5e\x98\x21\x4f\x32\xb9\x38\x85\x49\x52\x6d\xba\x6f\x2f\x5d\xc0\xc3\xc1\xec\xec\xdc\x9e\xba\x33\x7d\xee\xa6\xfa\xdc\x4d\x15\x36\xc2\x82\x6f\x23\xe4\x58\xc3\x48\x89\x8a\x63\x85\x97\xb6\x23\xb9\x66\xc7\x7d\xeb\x5e\x5c\x00\x36\x02\x28\x81\x43\x9d\x5d\x00\x57\xeb\xda\x93\xd3\xd3\x48\xe2\xe2\xb8\xc6\x4b\x57\x0e\x7c\x36\x6b\x8a\x1f\x2e\x81\x6a\xb1\x28\x5c\x54\x2f\x55\x17\xdf\xca\x41\x9e\x2a\xd4\xd0\x50\x78\xa2\xa3\xf0\x85\xed\x38\xae\x2a\x84\xe0\xdd\x1e\x05\xef\x26\x4e\x77\xc5\x11\x66\xf9\x42\x4a\x19\x67\x83\x89\x73\xf1\x15\x32\x9f\x48\xc8\x81\xe2\x4a\x6a\x3e\x46\x52\x7e\x07\x04\xbb\x9f\xc8\xc3\x36\xab\x0a\x0d\xa6\x93\x71\x95\x3a\x9e\x4e\x14\x99\xc7\xc4\x71\x55\x99\xfc\x87\x3d\x5e\x1d\xed\xf1\x36\x39\xda\xe1\x73\xbd\xc3\x93\xf3\xc9\x4f\x67\xb3\x23\x6d\x28\x66\xba\x7f\x3c\xee\x6c\xf6\xef\x0d\xd7\x9d\xcd\xa0\xf0\x51\x68\x4c\x8e\x00\xe3\xa7\xa9\x33\x83\xc2\xff\x26\xac\x96\x47\x61\x55\xf0\x30\x8f\xd6\xbd\x9b\xbb\xe3\x4c\x24\x33\x74\x3a\x98\xc1\xd6\xf8\x76\xe6\x9c\xa2\x20\x37\x05\x6e\xef\x14\xff\xbb\x8e\x7d\x36\x06\x6e\x62\x7c\xfe\xd5\xf4\x7c\x12\x4d\xce\xed\xb3\xf1\x14\xb2\xcd\x66\xe3\xf3\x4b\x1b\x88\xd2\xd8\x9d\x5c\x7c\x0e\x30\xbf\x04\x69\x74\x3a\x99\x80\x50\x04\x13\x30\x70\x7e\x74\xe4\x47\x7c\x2d\xf0\x11\xbe\xab\xff\xd1\xec\x02\xe5\xc0\xcb\x89\x8d\xdb\x16\xb0\x4a\x17\x63\x80\xe0\x99\x3d\x45\x36\x6c\x36\xa8\xb7\xc5\xf3\x81\x7b\x9e\x5c\x42\x8b\xf0\x27\x6a\xc9\x58\x9a\x2c\x06\x4c\x2b\x72\xae\xb5\xb4\x56\x09\x73\xb6\x3b\x9e\xce\x3e\x5c\x41\xdb\xc0\x94\x8c\xcf\x41\xb4\x02\x86\xee\x62\x7c\x7a\x6e\x4f\xf0\xc1\x9d\x00\x3b\x81\x29\xd5\xb7\x41\xf5\x5d\xe6\x87\x57\x4c\x1b\xa8\x34\x60\x77\x40\x0e\xab\xbe\x55\x65\x70\x5e\xd6\xc7\xe7\x65\x1b\xa7\x29\xcf\xfb\xb9\x54\xd7\xc1\x2d\xc0\x99\x0d\x66\x17\x47\x64\x8b\xa2\x23\x50\x74\x24\xac\x8e\x84\xf3\x61\x03\xdf\xa6\x67\x2d\x79\x44\x2f\x52\x68\x99\xe5\x3f\xbd\x3d\xbd\xa1\x31\xd4\x36\x71\x2e\xc6\x30\x81\xff\x2d\xb5\x5d\x01\x63\x7b\x5a\xcb\x8a\x9d\xe4\x1f\x81\xc3\xba\x84\xc2\x0e\xe4\xfa\x78\xd5\x1f\x36\xee\xc4\xbe\x9c\x4c\x00\x47\x9c\xf3\x7f\xb3\x7f\xaa\x23\xce\xa5\xfc\xe8\xea\xe3\x06\xb1\xea\xf4\x6c\xe0\xfc\xb7\xd4\xac\x81\xc0\x75\x2e\xb0\xdf\x67\x0e\xfc\xfc\x27\x70\xd5\xba\x0b\x18\x78\x73\x14\x03\x45\xbc\xe1\x35\x19\x9d\x9e\xb6\x08\xc3\x12\xb7\x53\x20\x0a\x13\xc9\x22\x38\x8e\xed\x9c\x8f\xe5\x0f\xf0\xaa\x88\xe7\x36\x62\x3a\x3c\x4f\x27\xb6\x0b\x6c\xdd\x0c\xf6\x3f\xa9\x52\x99\xc9\xbf\xd1\x58\xcb\x2d\xf3\xa9\x67\xcc\x0b\x0c\x31\x70\xbb\x17\x97\x50\xd9\xf9\xa9\x7d\x39\x1d\xc0\xb3\xfb\xe9\x72\x90\x6b\xe0\x82\xc0\x73\x1a\xb5\x3a\x23\x9f\x55\x97\x06\x98\xfd\xad\xeb\x60\x03\xb0\x47\x63\xb9\xe9\xe9\x19\x8c\xe4\x53\xe5\x50\xdd\x35\x1b\xc8\x91\x68\x79\x21\xd7\x44\x3d\xea\xe3\x00\xe2\x77\x3e\x51\xe0\x1a\xe8\xe0\x3a\x5a\x2e\xd1\x81\xf5\x09\xc8\xbe\x6d\xa6\x04\x26\xb7\xad\xd7\xd6\x4d\xfc\x3a\x47\x22\xff\x73\x0a\xed\x3f\xd2\x25\xa9\xc6\xae\x0e\x7a\x07\x71\x3a\xe0\x0b\x75\x36\x25\x0f\x62\xaa\x83\x48\xcc\xfa\x84\x27\x20\x5e\x4a\x79\xba\xdb\xc8\x03\x01\x6f\xe8\xd0\x28\x4b\x57\xf1\xed\xae\x7e\xbf\xcf\x63\xa1\x9e\xf7\xc4\xe3\xbe\x08\x58\x4a\xbb\xfd\xf9\xe4\x29\x1a\x6f\x8e\x6d\xab\xe3\x32\x69\xc1\x61\x69\x07\xba\x84\x6a\xd9\xec\x28\x4b\xe5\xc9\x46\x96\x33\x4e\xb9\xfd\xcb\x2f\x98\xf6\xcb\x2f\x4c\xfc\xc7\xc7\x63\xed\xee\xfd\xcf\x41\xad\x7b\xd0\x26\xcf\xb9\x3a\xe7\x87\xf1\xca\x52\x5f\x6e\xb9\xd0\x8e\x8f\xe5\x69\x4c\x51\x1d\x08\x7f\x2c\x0f\x54\x23\x4c\xd3\xca\x59\x6e\xaf\xe2\x44\xf0\x5c\xb3\xfa\x6b\x0e\xf8\x7a\xab\x78\xcd\x8b\x28\x8f\xb7\x22\x93\x53\x67\x37\x03\xdd\x13\x54\xc0\x6f\x77\xc5\xba\x3a\x18\xa6\x39\x69\xce\xb5\xea\xd1\xc5\xff\xda\xa1\xbf\xb4\x78\xd0\x0f\xb8\x17\xfa\x8b\xf7\xb4\x9f\x8b\xff\x35\x59\x64\x0a\x2c\x56\x4a\xe8\xd0\xe9\xb3\x67\x84\x91\xc9\x09\xf5\x05\x1a\x2f\x7a\x9f\x18\x61\xd1\x3b\xd3\x31\x2f\x2c\x4e\x3f\x55\xd4\x4a\x09\xf1\xb4\x3e\x1d\xe9\xd0\x71\x54\xfa\x14\xf4\x53\x2a\x08\x0c\x62\xff\xc7\x4e\xb5\xe2\xff\xf0\x54\xf8\x51\x3f\x15\x9e\x5c\x92\xae\xa1\x2b\x0d\x59\x6a\x39\x84\x16\xf8\x1e\x6a\xa7\xc6\x51\x63\xbd\x62\x45\xac\x6d\xdf\xd4\x3e\xf5\x35\xa4\x1d\xdf\x41\x4a\x7d\xc4\xb8\xe8\xb3\x7e\x55\x56\x2e\x7b\xaf\x27\x91\x9b\xe6\xc7\x1a\x6c\x93\x11\xc6\xea\xef\xc3\xea\xb9\xa1\x38\x8b\xaa\x77\x5e\xdd\x22\x69\x19\x7b\x25\xff\x97\x88\xc5\xee\xff\xd7\xc4\x62\xfb\x7f\x84\x58\xec\xfe\x08\xb1\x48\xfe\x67\x89\xc5\xee\x7f\x94\x58\xb4\xed\x97\x3f\x65\xc8\x72\x60\xbd\xf1\x7f\xc1\xe8\x05\xdb\xfe\x63\x18\x1d\x7f\x12\xa3\xff\xc5\x0e\x1d\x18\x97\x6d\x55\x95\x5f\x17\x6f\x6a\x9c\x56\xf6\x9f\x34\x25\xa6\xa9\x8d\x60\x5f\x8f\xa0\x86\xf9\x52\x23\x51\x9f\x32\xa3\xd1\x90\xdf\xa1\x29\x03\x16\x52\xa5\x55\xe6\x58\x73\xf1\x82\xeb\x4b\x01\x30\x96\x01\x9d\x98\xeb\x36\x25\xa4\x6d\x74\x17\xaf\xac\x8f\x19\xd9\xe8\xb6\x9c\xd5\xfa\x41\x7b\xcc\x4f\x5a\xbf\x56\x76\x3f\x72\x20\xab\x3c\xdb\x00\x95\x6c\xb7\xff\xc7\xed\x57\x8a\x6d\xce\xc3\x65\xbf\xe9\x8a\xb4\x32\xa9\x81\xba\xd6\x37\x05\xc6\xa9\x25\xc6\xcc\x21\x40\xf4\x17\xdc\xb3\x38\xe3\x76\xce\xb7\x49\x18\x71\xeb\xc4\xbf\x1e\xff\x72\x5d\x04\x23\xcb\x26\x8b\x93\x5b\x6d\xbb\xd3\xed\x9b\xc4\x42\xd8\x22\xfb\xdb\x76\xcb\xf3\xcf\xc3\x82\x5b\xc4\x33\x0c\x20\x5b\x76\xb1\xbb\x29\x44\x6e\x39\xd4\x25\xb6\xc8\xde\x66\xf7\x55\x86\x11\xaf\xd2\x5c\xb9\x57\x8a\xa6\x77\x37\xfa\xae\x54\x79\x75\xcc\x3f\xe2\xd5\xc1\x6d\x91\xc7\x1b\x0b\x56\xed\x21\xdd\xd5\xb2\x41\x7a\xce\x97\xbb\x88\x5b\x9d\x71\x54\x4e\x18\x0d\x36\x1b\x9e\x01\x1b\xf7\xda\x12\x76\x91\xc4\x11\xb7\x1c\x9a\x13\xd8\xc3\xab\xf7\x7c\x04\x63\xc2\x76\xeb\x85\x67\xa3\x61\x76\xf1\x73\x2c\xd6\x96\x71\xcf\x6f\x7e\x8b\x85\x41\x16\xdc\xb7\x52\x96\xd1\xd4\x8e\xd6\x61\xfe\x4a\x58\x0e\x69\x03\x6b\x94\xaa\x2a\x5d\x42\x02\x16\x7b\xdc\xcf\x02\x16\x53\xbe\x27\xf4\x69\x2f\x1d\x13\x36\x6c\xe8\xa2\xbd\xd6\x86\x0d\x1d\x65\x51\xf5\x8a\x3c\x35\x30\xbb\x3a\xb0\xd6\x66\x7c\x01\x0f\x9e\x66\x55\x08\xec\x05\xda\x0d\xa2\xb8\x0d\x4f\x95\xac\xbd\xe0\x5e\x77\x35\x99\xe6\x04\x2a\x51\xab\x65\x51\xc9\xe8\xdc\x77\x82\x46\x44\xe7\xbe\x1b\xec\xbd\x1e\x23\xe3\xc5\x11\x99\x9e\xef\x95\xd5\x61\xd3\xf5\xdb\x16\x2a\x75\xdd\x60\x4c\xb3\x32\x2a\x7e\xe9\x94\xe5\xb0\x27\x79\x91\x58\x4f\x7b\x0a\x75\x78\x4f\xfb\xa6\xda\xc7\xc6\xa0\x5c\x8e\x93\xa6\x8c\xdb\x9b\xb0\xf8\x8d\x66\x8c\x57\x7e\x10\x31\xe3\x76\x94\x84\x45\x01\xbd\xa3\x21\xe3\xb6\x88\x45\xc2\x69\xc1\xae\x2c\x41\x68\xc4\x6e\x2d\x03\xd3\x79\x61\x50\x3f\x00\x26\x28\x0a\x85\xb5\x6c\xe1\x17\xb6\x82\xd5\x17\xdb\x18\xd0\x88\xdb\xdb\x5d\x52\x70\x6c\x68\x15\x3f\xf0\xe5\xcf\xf1\x12\x1d\x78\xb8\x1d\xa7\x77\x3c\x2f\x64\x53\x37\x68\x4b\x46\x0b\x80\x72\x5c\x88\xaf\x05\xdf\xd0\x08\x8a\x24\xf1\x96\xee\xa0\xba\xf8\x03\xa7\x5b\x58\x8e\x99\x40\x7f\x15\xba\x92\x75\x27\x74\xc9\xac\xc4\x12\xec\xc9\x58\x85\x63\x68\xd5\xf0\x52\x0a\xcf\xd8\xb0\xe1\xe5\xf8\xb2\xba\x37\xbc\x0c\x9f\x54\xb3\x86\x17\xe3\xab\x6c\xd9\xf0\x42\x7c\x4b\x62\xc3\x2b\x64\x81\x24\xde\x8e\xd7\x59\x1e\x7f\xc8\x52\x11\x26\x86\x67\x68\x2f\x80\x41\x65\x69\xdc\x64\x62\x8d\xcf\x4d\x89\x3b\xd8\xbe\x23\xcc\x5f\x3f\x76\x73\xef\x31\xbb\x51\x41\x70\x47\x68\xaf\x59\xe3\xce\x34\x95\xdd\xf6\x8e\xd0\x04\xed\xb1\xc2\x31\x0e\x9f\x37\x85\xb7\x47\x0a\x6f\xeb\xc2\xdb\xa6\x30\x80\xab\x29\xba\x3a\x52\x74\x55\x17\x5d\x35\x45\x8b\xfb\x70\x3b\xce\xb6\x61\x14\x8b\x47\x83\x72\x1b\xde\xbf\x93\xaf\x04\x76\xd8\x1e\xf7\xb0\xe5\x71\x32\xb5\xf4\x79\xb0\xe0\x68\x2f\xfe\x07\x28\x15\x1a\xf3\xd3\xa5\x15\x6b\x7e\x6d\xc0\x09\xee\x00\x25\x45\x1e\xa6\xc5\x2a\xcb\x37\x06\xed\x59\x7c\x76\x9d\xbc\xc8\xed\x65\xf3\x66\x69\x29\xc4\xd3\x5f\xe8\x0a\x6a\x85\xc5\x61\xd0\x2b\xe0\xaa\xe8\x9a\xd5\x46\x95\x37\xc4\x2a\xe8\x16\x16\x59\x44\x9f\xf6\x74\x07\x7f\x56\xf4\x49\xae\x20\x2f\xa3\xb8\x62\xbc\x10\xa4\x9e\x78\x65\x0d\xd7\xa4\xbb\x5d\xcb\x15\xc2\xe7\xc3\x4d\xed\x63\xd6\x2f\x6c\xb4\x1c\xd0\xd0\xdb\x4f\x7d\x21\xf2\x93\xe2\x7f\xb9\x6e\x74\x6e\x19\x9f\xd7\x8e\x04\xab\x38\x5d\x0e\x60\xad\x1b\xb4\x20\x14\x00\x8d\x7b\xcb\x0d\x5b\xdb\x21\x6c\x36\x61\x24\xe8\xab\x7f\xc5\xaf\x4f\x90\xa7\xc7\xca\x7a\x1a\x58\xa3\xa2\x63\x88\x6e\x09\x52\x96\xd6\xab\x8a\x8b\x40\x37\xbf\x3b\xeb\x06\x68\xe4\x2b\xb2\x7f\xb4\x97\x71\xb1\x4d\xc2\x47\x20\x2e\xcc\xf8\x22\x4b\xc5\xab\x7b\x5e\x64\x1b\xfe\x35\xf6\xf1\x11\x79\x23\xd8\xd5\x0b\xf6\x24\x97\x24\x7a\x64\xdd\x64\x59\x42\x6b\xaa\xe4\x69\x5e\x5d\x30\x43\x5e\x8f\xf7\x97\xa4\xf1\x8d\x8f\x98\xe6\x09\x16\x10\xda\x90\xa0\xa6\x7a\x45\x10\x9a\x0f\xb0\x90\x9b\xaa\x2d\x5f\x5f\xf9\xb4\x59\xd6\x54\xae\xe8\x80\x48\xb5\xec\xbf\xdc\x97\x8a\xd0\x35\x0d\xc3\xfa\x6c\x35\x5c\x79\x4b\xe1\x01\x74\x40\x28\x92\xb4\x26\x7f\x45\x0b\xf5\x32\x97\x0e\x75\x2f\x1c\x3a\x39\x77\x02\x42\x81\x6a\xb6\x2a\x4c\x6e\x0d\x6a\x3c\x14\xb0\x56\x60\xc1\xb8\x0f\x06\x35\x26\xf0\x67\x0a\x7f\x66\xf0\xe7\x14\xfe\x9c\xc1\x9f\x73\xf8\x73\x01\x7f\x2e\xe1\x8f\xeb\x3c\x40\x1f\x80\xc4\x36\x5d\x50\xa8\xdf\x33\x78\x09\x5b\x7d\xc0\x72\x75\x68\x73\x58\xaf\xba\xbe\xf2\x9a\xf7\x9e\x84\x23\xb4\xdd\x50\x9d\xba\x0b\x7b\xda\xc6\xcb\x1a\x7f\x86\xae\x86\x39\x86\x21\x31\x06\xdd\x0e\x34\x2c\x18\xba\xf5\xfc\x0f\x5d\x39\xf3\x98\x05\xa7\x14\x9f\xea\x69\x1a\xba\x72\x82\xf0\xab\x9c\x89\xa1\xdb\xcc\x01\x7e\x46\x80\xcb\x27\x00\xd3\xd0\xad\x00\x34\x74\xd5\xf0\x0d\x43\x1b\xb6\xcc\xa9\x0d\x6a\xe8\x4a\xa1\xe8\xae\x16\x9e\x06\xdc\x6a\xdc\x43\x58\x57\x8a\x7d\x39\x31\x4d\xc9\x45\x0c\x99\x26\xc0\x4e\x74\x01\x76\x82\x02\x6c\xaf\x07\x54\x5a\x3b\x9a\x62\xab\x19\xb3\x80\x35\x8b\x93\x65\xce\x53\xe9\xd2\xde\xa6\xe0\x8d\x9e\x42\xf6\x6a\x8f\x7c\xa0\x4e\x3b\x52\x3b\x14\x22\x8f\x6f\x76\x82\x17\x65\xf9\xb4\xff\x18\x9b\x99\x33\x3d\x37\x88\x1e\xc5\x7d\x0c\xfc\x9c\x20\x4f\x51\x58\x70\xc9\x6e\x18\x1e\xc7\x5c\x45\xc3\x9d\xb0\x9c\x2e\x79\xc2\x05\x1f\xe8\x15\xc8\xf4\xf9\x4d\xce\xc3\xdf\xe6\x58\xbe\x10\x8f\x09\x6f\xca\xe3\x2b\xbb\xb1\x72\xa2\x32\x29\xb4\xf1\x9c\x96\xbf\xb2\x11\xe6\x71\x38\x36\x48\x59\x76\xbe\x2f\x43\x01\xdf\x17\xaa\x3e\x5f\xb4\x19\xf9\x80\xe5\x55\x53\x3e\x8c\x21\x60\xb9\xe6\x28\x44\x9f\x30\x05\x18\x33\x42\x43\x96\xcb\xde\xd0\x82\xd5\xfa\xfe\x70\xf1\xb4\xf7\x42\x1a\xb1\x95\x95\x53\x5f\x75\xbe\x91\x65\xe3\xd6\x28\x70\x13\x6a\x7d\x82\xbd\xa8\x20\x54\xa8\x9d\x41\x56\x4b\xfd\xd4\x16\xe1\x2d\xd5\xb3\x43\xc6\x88\x68\x0c\x5c\x46\x08\xd9\xdb\x37\x71\xba\x94\x5e\x39\x85\x1d\x76\x7c\x21\xff\x3f\xa0\xfa\xfe\x0f\xf5\x3d\x6a\x8b\xd7\xbf\x01\x13\x4d\xb3\x36\x76\x93\x79\xdf\x66\xfd\x31\xbd\x01\x48\xf5\x2c\xab\x80\xfd\x51\x0d\x43\xfa\x51\x4e\xe8\xd3\xda\x1a\xde\xd5\x95\x11\x9a\xfd\x11\x8d\xf6\x1f\x54\x06\x67\xbd\xca\x60\x4b\x8f\x55\x71\x31\x23\xc4\x16\x1f\xec\x24\x0b\x97\x56\x6a\x5d\x9c\xfe\x11\x47\xb7\x43\x7c\x3a\xf4\xae\x6f\x7c\xb8\x9a\xe6\x44\xed\xb9\xbb\x80\x4a\x86\x0e\xf1\xba\x2e\xa9\xbc\xce\x72\xe8\x87\xf9\xeb\x5f\x77\x3c\x7f\x1c\xe4\xfc\xf7\x5d\x9c\xf3\x62\x10\x2a\x57\xe1\xc1\x7d\x2c\xd6\x83\x70\x50\x95\x6c\x4e\xcc\xa0\xda\xbd\x07\x00\xdc\xf7\x3b\x22\xc9\x0a\x16\xf2\xc7\x43\x9f\x40\x8d\x76\xd2\xac\xc7\xa5\x2f\x66\x7e\x40\x43\x96\xd6\x1d\xa5\x85\xa6\x86\xfa\xbe\x52\x98\x7c\xb7\xa2\x11\x8b\xa5\x70\x4c\x13\x16\x2b\x7c\xa2\x3b\x16\xa3\x3a\x94\x6e\x59\x5c\x11\x2a\xba\x62\x4f\x7b\xba\x64\xab\x5a\xcb\x42\xd7\x6c\xd5\x61\xd7\x28\x70\x82\x75\xfa\x86\xdd\x48\x4d\x8c\x6c\x9a\xd0\x2b\xa8\xe2\x96\x1d\xa2\x61\x1f\xfa\xf3\xc6\x81\x54\xf3\x23\xb6\xd3\x6c\xc9\x61\x3b\xdf\xd3\xc7\x9e\x8a\x1a\x5f\x66\x8e\xc2\xb5\x04\xda\x9e\xde\xb1\x27\xa8\x01\x56\x7d\x91\x47\xf0\x93\x66\x69\xc4\xe5\xc3\x55\xb6\xdc\x49\x2a\x30\xd7\xdd\xa5\x35\xbc\xa2\x19\x8d\x99\x95\xb2\xb4\x2c\x43\xd2\xa6\x62\x96\x21\xd7\x8a\x81\xcc\x79\x6c\x0b\xfe\x20\x18\x6c\x46\xa8\xd6\x03\x4a\x75\x47\xac\x8c\x09\x3f\x0f\xca\x12\xc1\xff\xaa\xda\x5b\x40\xf4\xd6\xdf\xad\x9c\x10\xd3\x8c\xed\xa2\xf5\x8d\x66\x64\x9e\xda\x6b\x1e\x2e\x81\x06\xf3\x74\xf9\x39\x6c\xa5\x56\x4c\xec\x6d\x98\xf3\x54\x7c\x9b\x2d\xb9\x9d\xf3\x4d\x76\xc7\xab\x94\x8e\xa7\x76\xc7\xc9\x9c\x8f\x0c\xc3\xeb\x59\x0c\x5d\x87\xef\x4a\xd3\xb0\xf2\x97\x95\x42\x2d\x68\x7c\xbb\x9b\xa3\x07\x80\xd0\xfd\x01\x67\xa1\xc5\x9a\xe0\xf6\x2a\xb5\xe3\x34\x16\x72\x77\xa7\x1f\xd8\xc9\x7b\xff\xba\xb8\xde\x7d\xf1\xe6\x8b\x2f\xae\x1f\x5e\x39\xc1\xa8\xec\xbc\x3f\x3b\xb9\x6d\xe6\xe2\xbb\x46\xd3\x30\x1c\x02\x5a\x48\xda\x8b\x7e\xe4\xa6\x59\x69\x50\x68\xcb\x7d\x78\x78\x8b\x2a\x96\xa1\xd4\xb4\xc0\xee\x9b\x87\x8f\x30\xac\x54\x6d\xc0\x2d\xa7\x53\x35\x16\x61\x9a\xe2\xa5\x63\x9a\x62\xec\xe2\x16\x43\xf6\xf7\xf6\x2a\x65\xf7\xda\x91\xf0\xd3\xaf\xe8\x9d\xed\x19\x53\x7b\x66\xbb\x06\xd5\x0e\x6d\xbc\x7b\x2a\x7b\xe2\x39\x54\x64\xa8\x40\xf1\x7a\xfc\x9c\x24\x2c\x61\x19\x93\x3d\xbd\xe5\xa2\xef\xac\xa8\x9a\x2a\x3d\xb3\xc7\x5f\x38\x0b\x78\xf2\xf9\x08\xc3\x05\xc9\xc6\x02\x4f\x7e\x0b\xf6\x14\x96\xec\x8f\x22\x8c\x7e\xf3\x0e\x94\x27\xec\xde\xde\xf0\xfc\x96\xcb\xf8\x43\x5a\xa7\x2d\x42\x35\x97\x6b\x7b\x9b\xf3\x3b\xb9\x5a\x31\x24\x11\x15\x7b\xca\xc3\x68\xdd\xd7\xc7\x7b\x1b\x52\xa4\x8f\x32\x27\x7b\xba\x09\xb7\x7d\xd9\xb0\xc1\xba\x67\xd6\x3d\xf2\x7e\x1d\x22\xa6\x23\x8c\x52\x5d\x0b\x9a\x52\x01\xdb\x08\xd9\x53\xa4\x4f\x3d\xa0\xec\x54\x1d\xf5\x7b\x4d\xc3\x5e\x11\xe7\x85\x38\x56\x01\xff\xdd\x72\xc8\x9e\x26\xe1\x47\xb3\x8c\x5d\xb2\xa7\xfc\xf7\x1e\xc8\x6a\x73\x41\x53\x36\xe2\x23\x0b\x27\xca\x73\x1a\xb0\xb6\xfb\x99\xbe\x64\x8e\x69\xa6\x2f\xc4\xc2\xc7\xa9\x4b\x83\xc0\xf3\x03\xa8\x3e\x5d\x1e\x1d\x65\x3d\x2f\x65\x79\x38\x85\x72\xea\xbd\x1d\x2d\xb2\x5c\x78\xb1\x0d\x3f\xb4\xd8\x22\xd8\xa4\x7a\x23\xe2\x7b\x7a\x6f\xf3\x07\xc1\xd3\x25\x03\xa4\xae\x9e\xbb\x3a\x04\x20\x7a\x14\xe9\x1d\x0d\x35\x5e\xc6\x09\x80\xed\xa6\x05\x73\x69\x74\x20\x2e\xd0\x84\x0d\x5d\x3c\xc6\x30\x40\x74\xe2\xa1\x4e\x3f\x42\xd3\xb4\x12\x16\xb6\x6a\x2b\x54\x6d\xa3\x11\xa1\x87\x84\x28\x2c\xcb\x5b\x2b\x04\xb9\x3f\x64\x4f\x7b\x42\x0b\xc6\x58\x64\x9a\x56\x28\x51\xb2\x18\x8f\xc9\xbc\x78\x11\xcd\xa1\xb8\x3a\xfe\x19\x32\x8b\xb7\xea\x27\x48\x7e\x25\xa3\x48\x72\xd4\x1d\x50\xa3\xb6\xcb\xc0\x0d\xc5\x34\xc3\x21\x63\x39\x74\xcf\x34\xe1\xe7\xde\x8e\x8b\xef\x93\x30\x4e\x2b\xc5\x0c\x74\x21\x63\x5d\xe7\x73\x42\x16\x56\xca\x42\xa8\x31\x66\x99\x69\x76\x54\xa6\x29\x59\xf8\x81\x97\x95\x65\xb7\x3a\x8c\x65\x80\xbc\xdf\xd0\xa5\x50\x9c\x55\x13\x62\x25\x34\xa6\x39\xa9\xfc\xc5\x55\xaf\x30\x4b\x4e\x6a\x2c\x0a\x9b\x19\xb4\x9e\xf8\xc3\x36\x4c\x97\x99\xa7\xf8\x0d\x63\x64\x29\x82\x34\xba\x0a\xc5\xda\xce\x21\x71\x63\xa1\x3a\x5e\x9d\x33\x5c\xbf\x3e\xb9\xa5\x86\x41\x68\x5c\xfc\xc0\xc3\xe5\x23\x6c\x7d\xa8\xf3\x69\xa1\x74\x97\x9f\x81\x85\x9d\x66\xd9\x56\xc7\xcb\x3d\x6d\x0d\xec\x70\x49\xd0\x74\xde\x8a\x06\x52\x9d\xde\xc8\xfc\x01\x40\xbf\xde\x51\x80\x38\x0f\x2d\xc1\x0a\x78\xee\xdd\x81\xac\x94\xad\x2b\x9a\x60\x68\x68\x6f\xa0\xea\x5a\xfb\x40\x4c\x53\xf1\x1b\x29\x61\x8c\x6d\x08\x74\xf4\xcd\x66\x2b\x1e\x8f\x75\x74\xae\x23\x49\x15\x62\x44\x3d\x38\x7b\x7a\x9b\x64\x37\x61\xf2\xe6\x2e\x4c\xbc\xb6\x98\x09\xcc\xc1\x93\x64\x20\x60\xcb\xb0\xf1\x71\x4f\x0e\x68\xa5\x7e\xf2\xe1\xe0\x71\x21\x8c\x12\x1a\x4d\x6b\xc5\xff\x3c\x7f\x91\x9a\xe6\xd0\x05\x94\x54\x40\xf1\xf3\x80\xe6\x14\xc3\x5a\xe1\x49\xa0\x8c\x83\x50\xf3\x13\x1c\xb0\x7e\x28\xa3\x61\x1d\x14\x20\x52\x06\xad\x79\x6f\x2a\xf2\x78\xf3\xb1\x2d\xc6\x30\x3c\x0b\x38\x82\x06\x55\x3e\x00\x9a\x00\x3d\xff\x8d\x77\x36\x31\xed\x70\x5f\x80\x20\x7f\x18\x40\xe6\x3b\xab\xf1\x8d\x5f\x54\x7b\x4e\xda\xa7\x43\x5d\xf8\x3c\xf0\x38\xf1\x76\x55\x34\x0c\x8e\x11\xbc\x68\x9c\x1e\x36\xaa\xf3\x13\xd8\x6d\xb1\x18\xbb\xde\xb6\xc2\x0a\x8e\x5c\x05\xb6\xd5\xe9\x6b\x1d\xff\x8b\x8d\xaa\x53\x0e\x98\x0a\x3c\x37\x68\xc0\x8f\x40\xe6\x7e\x36\x1a\x05\xc8\xa7\xd5\xd0\x53\x79\x58\x46\xf9\x9e\xde\xe6\x7c\x7b\xd0\xab\x3a\xf0\x07\x30\xdc\x19\x73\xf0\x08\x42\x35\x14\xb2\x61\x3a\xcf\x5e\xc4\xf3\x6c\x34\x22\x43\x61\x71\x3f\x0b\x68\x46\x86\x8c\x85\xa6\x99\x4b\xef\x7e\xf8\x56\xaf\xf0\xbc\xbb\x89\x76\x39\x50\x87\x86\xcc\x0f\x5a\x88\x94\x37\x23\x89\x5f\xe4\xf3\x78\x34\x22\x8a\x20\x66\x0c\x9a\x8c\x03\x1a\xd3\x14\x96\x59\x28\x5b\xcc\x34\x74\x8a\x25\x3a\x7d\xb2\x40\xe5\x80\xad\x36\x58\x90\x2d\x80\x77\xd9\xc5\x4b\xcf\xa5\xc5\x6e\x0b\x92\x93\x77\xb5\x27\xf4\x63\x06\x2e\x16\x6c\x3b\x07\x8e\xfa\x2c\x3e\xf8\x44\xa8\x62\x2d\x8c\x3f\xcb\xdd\x64\xf0\x2d\x32\x6a\x03\x29\x56\xd4\x91\x7e\xe4\x51\xd6\xe0\x75\x28\xf8\xe0\x07\x7e\xfb\xe6\x61\xab\x28\x8c\xa4\x5d\xaa\x61\x43\x53\xef\x77\x4f\x57\x57\x7e\x4d\x9b\x30\xf4\x59\x60\x04\xac\xa3\x7e\xa9\x4c\x8d\xde\xb1\x1e\x32\x57\x6d\x94\xb4\xa0\x11\x4d\xe8\x8e\x6e\xe9\x8a\x2e\xe9\x9a\xde\xd0\x0d\xbd\xa2\xb7\xf4\x91\xde\x31\xa3\x88\x3f\x7c\x48\xb8\x31\x72\x9f\x03\x5d\x85\xee\xd2\x57\xac\x91\x21\xe9\x2f\xcc\xa1\xf7\xcc\xa1\x1f\x58\xc4\x2d\x42\xbf\x93\x3f\xef\xe4\xcf\x83\xfc\xf9\x96\xf5\x9e\x0b\x73\x15\xa2\x6f\xcb\x86\x0e\xa1\xce\x9e\xbe\x3d\x8c\xe5\x42\xdf\x00\x6e\xfe\xc8\xde\xd8\xdb\x6c\x4b\x3f\x87\x5f\x10\xed\x7e\xab\x1e\x7e\x67\x6f\x94\x04\xf8\x33\x3b\xb6\x7a\x1c\xaa\xe1\x59\xfa\x22\x9f\xa7\x72\xef\xe5\x7e\x1a\x60\x6c\xa8\x5a\xe1\x27\x1f\xc6\xee\x9e\xbe\x66\x06\xba\x10\xf3\x65\x59\x60\x2c\x23\xbe\x2c\xc3\xe2\x31\x8d\xca\x70\x27\xb2\x55\x16\xed\x0a\x7c\xda\x26\xe1\x63\x19\x65\xa9\xc8\xb3\xa4\x28\x97\x7c\xc5\xf3\x72\x19\x17\xe1\x4d\xc2\x97\xe5\x3a\x5e\x2e\x79\x5a\xc6\xc5\x26\xdc\x96\x49\x96\x6d\xcb\xcd\x2e\x11\xf1\x36\xe1\x65\xb6\xe5\x69\x99\xf3\x70\x99\xa5\xc9\x63\xa9\x04\xee\x65\x59\x44\xd9\x96\x2f\x0d\xfa\x67\x66\xf8\xd7\xd7\x0f\x13\xe7\xfa\x5a\x5c\x5f\xe7\xd7\xd7\xe9\xf5\xf5\x2a\x30\xe8\xf7\xcc\xb0\x16\xde\xf5\xf5\xf5\xb5\x5d\xfa\xd7\xd7\xf7\xe3\xa0\xf4\xdf\x5f\x3b\xe3\xeb\xeb\x87\xd0\x09\xc8\xc8\xa0\x7f\x67\xc6\xf5\xb5\x6f\x8c\xfe\x3c\x32\x9e\x5b\xc6\xe8\xfb\x91\x41\xac\x85\xa7\xde\xfd\xe7\xef\x9f\x95\xc3\x7f\x06\x0b\x46\xd4\x97\x85\xf7\x99\xd5\xd4\xf8\x1e\x7e\x3f\x0b\xc8\x73\xf2\x59\x79\x6d\x74\x13\xae\x0d\x48\xb9\x36\x4a\x55\x2f\x29\x55\x2d\xd7\xd7\x81\x41\x7f\x65\x86\xd7\x34\x78\x7d\x6d\x59\xd6\xbf\x5e\x35\x29\xbb\x29\x16\xf1\xaf\xaf\x83\xa0\x34\x46\x7f\x1f\x19\xe4\x39\x29\xed\xe7\xe4\xfa\x1a\x9a\xa6\x3f\x30\x69\x06\x0c\x8b\xc7\xfa\xf3\xc8\x18\x19\xd4\xb8\x35\x08\xfd\x5a\xff\x6e\xbc\xc7\x3e\x8e\xb0\xe2\xf7\xaa\xd2\x80\x54\xad\x90\xe7\x72\x0c\xa3\x67\xaa\xf0\x57\x3d\x85\x9f\x53\xf9\x63\x10\xfa\x45\x5f\xb2\xe5\xbf\x1c\xfd\x13\xba\xf8\xe7\x91\x41\xea\xac\x7f\xeb\x74\xaf\x7c\x69\x10\xfa\x93\xfe\xf1\x57\x42\xff\xab\x5b\xdf\xf7\x23\xe3\x99\x41\xe8\x97\xec\xe9\xeb\xd7\x5e\x2b\xed\x4f\x0a\xba\x06\xa1\x9f\xbf\x7d\xf5\xe3\x8f\xed\xd4\xeb\x6b\xbb\x49\x7f\xf7\xea\xcb\x76\xaa\x4c\x2a\xfd\xe7\x01\x24\xbf\x7a\xf7\xee\x07\xaf\xd3\xee\xdf\x09\xfd\xfe\xc7\x37\x7f\x7b\xfd\x5d\x37\xe1\x57\x42\x3f\xff\xea\xeb\xb7\x9d\xce\x78\x16\x22\x2e\xca\x26\x25\x48\x1f\x65\x2a\xd6\xf0\x7f\x0c\x2f\x64\x6c\xa1\xca\xbc\xcc\x56\x63\xb4\x38\x96\x18\xa1\xa0\xc5\xef\x78\x5a\x66\xcb\x65\x69\x59\xfe\x68\x1c\x94\xc4\xba\xbe\x5e\x3e\x27\x69\xd9\x20\xa5\x4a\x50\xef\xd7\xd7\xcb\x11\x29\x49\x8d\x6d\x38\xfb\x46\x6c\x10\x0a\x1c\x7b\x67\xa4\x80\xec\xaf\x47\x06\x79\xa6\xb2\xa4\x9c\x2f\x8b\xcf\xb3\x54\xf0\x07\xd1\x1d\x1b\x54\x27\xe7\xce\x6b\x7a\xc5\x7f\x2f\x6f\x45\x99\xc8\x11\x35\x03\x6c\x8f\xc1\x5a\x78\xe3\xeb\xeb\x25\x59\x60\xd7\xb5\x8e\x59\x0b\xe6\xbf\x1f\x07\xe5\x33\xd5\xc5\x3d\xfd\x0b\x3b\xf9\xea\xdd\xd5\xdb\x67\x27\x31\x7d\xc6\x4e\xa0\x83\x71\xba\xdd\x09\x45\x57\x4a\xe8\x57\x98\xf3\xb0\xbc\xd9\x09\x91\xa5\x04\xf2\xfd\x95\x9d\xbc\x5f\x5f\x2f\xe1\xf1\x1b\x76\xf2\xde\x7f\xff\x14\x8c\xae\x9f\xae\x8b\xe7\xd7\x7e\x1a\x8a\xf8\x8e\x0f\xae\xef\x4f\xe8\x3f\x64\x6d\x7f\xb2\x7c\x20\x04\x23\x52\x5a\xd7\xf7\x23\x52\x5e\xdb\xd5\x07\xf2\xec\x84\x72\xce\x4e\xfc\xd1\x3f\x83\x13\x2a\x78\x0b\xd7\x70\x71\xf9\xd7\xd7\xcb\x70\xbc\x0a\x9e\x5c\x7a\xb6\xc7\x51\x2c\x4a\x39\x44\x52\xda\x38\x82\x5b\x04\xe1\x81\xf5\xbb\x64\x1b\x0c\xe7\xc1\x18\x89\xf1\xd9\xe9\xe9\xf4\xac\xe6\x03\x40\x02\x28\xcb\x74\x21\xbc\xfc\x85\xb3\x50\x36\x4d\xab\x3c\xdb\x7c\xbe\x0e\xf3\xcf\xb3\x25\xb7\xf2\x11\x96\x20\x5e\x6f\xe2\xcb\x97\xae\x53\x9e\x9e\x4e\x2e\xcf\xa8\xeb\x4c\xa6\x66\x5e\x9e\x9e\x4d\x27\x20\xe5\xe6\x9c\x9d\x58\x3e\x90\xbb\x07\x77\x75\xfd\x70\xbe\x0a\xca\xf7\xe3\xc5\xf5\x92\x94\xef\xc7\xcf\x14\x21\x54\x29\xe3\xeb\xdd\x17\x5f\x7c\xf1\x05\xc0\xe1\xe4\x96\x66\xbc\x7f\x07\x12\x0b\xe3\xda\x31\x64\xc4\xc2\xeb\xdd\x6a\xb5\x5a\x1a\x1e\xaf\x2d\x7a\xc6\x2e\x19\x19\xd7\xd7\xc6\x88\xa3\x6d\x0e\xf4\xee\x95\xa8\xad\xc5\xc6\x68\xb4\x24\x47\x60\xb9\x67\x64\x64\x0c\x0c\x4f\x66\xdf\xd3\x98\xeb\xb2\xe9\x0a\x84\xdc\x90\xb3\x3b\xde\xa7\xc5\x1e\xa2\x63\x83\x5d\xed\x1a\xa6\x69\xac\x62\x9e\x2c\x0b\x8e\x62\xa5\xd4\x19\x7e\x1b\x6e\x78\x77\x6b\xa7\x4f\xcb\x38\xf7\x8c\x46\x8f\x66\xd0\x14\x70\xdc\x48\xf8\x2d\x4f\x97\xc6\x9e\xa0\x4d\xd0\x6f\x8a\xef\x79\xc3\x7e\x97\x2c\xe7\x2b\x79\x9c\x05\x25\x0a\x42\xdb\x6f\x6f\x7c\xfd\xbd\x52\xd2\x34\x6a\x4b\x69\x5b\xf4\x1d\x27\x4f\xbf\xb1\x27\xac\xd7\x7b\x53\xd9\x00\xb5\x21\xfc\x79\x7d\x1a\xaf\x9a\x15\x84\xec\x8f\x32\xb8\x5c\xe3\x6f\xe7\xdc\x4f\x15\x33\x3b\x1a\x05\x73\x32\xaf\x39\x59\xd8\x99\x35\x1b\x9e\x82\x23\x36\xe6\x34\x53\xc6\x8a\xb4\x50\x7c\xcc\x1a\xf8\x17\x86\xd2\x4d\x76\x9f\xf2\xfc\x75\xc3\xad\x88\x85\xa8\x87\xe3\x5d\x62\x84\x37\x40\x57\x3f\xa8\xd9\xfc\xa1\xae\x54\x04\x11\x10\xa4\x9b\x5f\x4c\xf3\x52\xfe\xb8\xf8\x5a\xf1\x0c\x18\x0e\x6e\x98\x99\xa6\x65\x41\xcd\xad\xd6\xca\x52\x78\xaf\x80\x63\x5e\x9a\xe6\xca\x12\x84\x0a\x10\x3c\x96\xf4\x86\xa0\x26\xde\x55\xf5\x5a\x5b\xf6\x0f\x9b\x3f\xf0\x08\xb8\x62\xe0\x4b\x62\xb6\xf5\xdd\x00\xf3\x5c\x32\x68\x4b\x46\xc4\x4d\x18\x2a\x5c\x95\xe6\xf6\xcf\x8f\x5f\x2f\xad\x98\x90\x56\x47\x12\x3b\x5e\x62\x7c\xb8\xea\xa3\x64\x82\x13\x42\xf3\x3a\x8e\xdc\x2d\xaa\x34\x6e\x7b\xaa\x32\xcd\x47\x4b\xd0\x84\x98\xe6\xa7\xea\x81\x0e\x6d\xfd\x49\x50\xa5\x57\x38\x96\x53\xbd\x8b\xc5\x9f\x1f\xdf\x85\xb7\x80\xba\x68\xac\x82\x3d\xc4\xc1\x4d\x03\x62\x9a\x69\x3b\xe7\xe7\xd5\x41\xa6\xd2\x2b\xf7\xa4\x7c\xb2\xb5\x3a\x27\x8c\x86\xe6\xfb\x78\x65\xa5\xf6\xef\x45\x68\x9a\xc3\x07\x9f\xc3\x02\x0d\x40\x60\xdf\x94\xe5\x70\x63\x0b\x5e\x08\x25\xc2\xe3\x44\xb4\x03\x7f\x1e\x59\x75\x72\xe6\xae\x18\x07\xf4\xa2\x20\xc5\xfe\x62\x9a\x7f\xab\xeb\x42\x8c\xb6\x76\xac\xa3\x19\x37\xe2\xa5\x41\xc8\x62\xc7\x76\xb5\x98\x9a\x73\x9a\x71\xe2\x89\xb6\xba\x1c\x32\xd2\x1d\xbb\x23\xb4\x60\xd6\x9a\x85\x50\x67\xc5\xb8\x16\xe3\xf1\x9c\xac\xfd\x22\x60\xc6\x9f\x8c\xd1\x0e\x46\x33\x7a\xe4\x16\x7c\x21\xf3\x2b\xb6\x56\xd1\xfd\xa8\x41\xe8\x2d\xe3\xbc\xea\x93\x69\x5e\xa1\xf3\x4f\x4d\x25\x48\x59\x8a\x3d\xc6\x56\xeb\x42\xf3\xf6\x30\x76\xe7\x15\xc2\x51\xae\xfa\x7b\xf2\xf4\x60\x71\x3a\x74\x9a\xc0\x6b\x3b\xc6\xd8\x1d\x4c\x98\xd4\xe0\x77\x46\xbc\xaf\x63\xb1\x45\x56\x63\x33\xfa\x35\x35\x9e\xb9\x06\x51\x0b\x57\x0b\x7a\xcd\x2b\x2d\x1e\x6b\x64\xf3\x3a\x55\xc8\xb3\xa2\x5a\xb6\x45\x7c\x4c\x01\x08\xe4\x65\x6e\x47\x61\xb4\xe6\x6f\x11\x4e\xa6\xa9\x8e\xc1\x85\xcf\xed\x62\x1d\xaf\x84\x45\x02\x2a\x7c\xcc\x1b\xb0\x4c\xa3\x1f\x09\xd7\x8d\xaa\xfc\xbb\x80\x0d\x9d\x96\x3f\x00\x6f\xf4\xa4\xcb\xee\xb9\x49\x4d\xa3\x25\x95\x55\xa4\x7c\xc8\x2d\x41\x34\x2a\x59\xe9\x65\x9a\xa0\x76\xda\x4c\x00\xe0\x8e\x9c\x82\x20\xb1\x40\x53\x30\xcd\x80\x9f\x1f\x52\x4d\x25\x1d\x96\x68\x8d\x5a\xc5\xd7\x9b\x67\x80\x2a\x39\x9e\x6c\x7f\x15\xa6\xcb\x84\xfb\xa9\x9f\x05\x01\xd3\xac\x68\x57\xbc\xa5\x0f\x31\x4d\x4e\x73\x96\x9a\xa6\x5b\x6f\x39\x40\x20\xe5\xbb\xd0\xde\xb9\x5d\x64\xbb\x3c\xe2\x5f\xa7\x4b\xfe\x30\x16\xfa\x9b\x8c\x96\xa9\x93\xa3\x14\x85\xfc\x79\xca\x52\x8c\x0f\xf8\x63\x7c\x93\xc4\xe9\xed\x1c\xf5\x9e\x9a\xe0\x35\x76\x6b\x9d\xc5\xc2\xf5\xc6\xae\x66\xde\xcd\xfb\xec\xbb\xeb\xfd\xdb\x40\x46\xca\x60\xc7\xd7\x2b\x80\x18\x4f\x3e\x18\xe3\x1a\x28\xd7\xc7\xea\x55\xe0\x38\x52\x9b\xea\xa6\xd5\xb4\x9b\x96\xa5\x21\xf9\x36\x7c\x3b\xd6\xde\xcd\x27\xc6\x81\xb6\x7a\xb1\xb4\x94\xd6\xf1\x43\xe9\xc9\x2a\xd6\x60\x61\x24\xe1\x0d\x4f\x64\x4e\xed\x59\x2b\xd3\xaa\xa0\x2e\x08\xdd\xf1\x44\xf7\x35\x2e\x5e\x6b\x1f\xca\x52\xff\x32\x64\x6c\xc8\x4d\x33\x04\x7c\xee\x2b\xad\xb5\x0e\x63\xd6\xd3\xb4\x71\x6f\xf4\x71\x27\xbc\xd7\xdf\x45\xb0\x91\xa0\xad\xb4\x94\xe6\x0d\x96\x67\x34\x66\xdc\xf2\x03\x5a\x61\x37\x15\x84\x86\xac\x76\x36\x08\x01\xd7\x53\x3f\x63\xb1\x1f\x06\x01\x46\xd5\xcf\x02\x36\xb4\x72\xf8\x81\x67\xe9\xae\x41\x34\x4a\x73\xc5\x3b\x8e\x4d\x7d\xe7\xd6\xbc\x77\x23\x33\x4d\xbe\xaf\xd5\xae\x29\x2b\xb8\xad\x14\x48\xd2\x59\xa3\xe0\x76\x5c\xfc\xfd\xea\xed\xa1\xba\x05\x16\x55\xb8\xe1\xc5\x36\x8c\xf8\xdf\x7e\xf8\x9a\xa6\xcc\xe2\x5d\x6e\x81\x93\x5a\xad\xa2\x1a\xae\xd4\xb9\x7f\x91\xd4\x5c\x94\x65\x0a\x1b\x67\x85\x9d\x65\x69\x80\x64\x01\x42\xc6\x0a\xfb\xc2\x45\x55\x5b\x8f\xc2\x27\xa3\x21\xe3\x8b\xc3\x56\xbd\x57\xb5\x92\x5e\xf2\x2a\xc0\x74\x84\xda\x9a\x0f\xbb\xdd\x5a\x58\x6b\x66\x2d\x59\x78\xd0\x5f\x7a\xc3\x86\xb1\xb5\x24\xf4\x95\xac\xc9\xca\xd8\xb2\x32\x44\xfb\x29\xe6\xf7\xc4\x34\x33\x5b\x64\xdb\x21\x63\xc0\x32\x65\x76\xb8\x5c\xbe\xb9\xe3\xa9\x78\x1b\x17\x82\xa7\x3c\x5f\x1c\x7e\xb2\x8c\x5d\x9a\x64\xe1\xd2\xa0\x31\xa7\x43\x97\x78\x19\x10\xb6\x30\x5a\x63\x2e\xa8\x50\x7b\xb5\x8c\x2c\x6d\xb2\xa3\x67\x54\x63\x0c\xc5\x76\xbd\xfc\xf7\x40\xb3\xf1\x66\x46\x6c\xd0\x21\xef\x6c\xdf\x75\xb2\x21\x6f\x6a\xe8\x45\x8d\xe3\xb5\xeb\x07\xdf\xd5\x3e\xf2\x79\xb6\x91\xfb\x88\x41\x88\x6a\xf0\x90\x6b\x32\x9e\x1b\xd5\xf6\xdf\xd3\x6e\xcd\xed\xb0\x6f\x24\x7a\x2c\x8f\xf1\x4d\xb2\x24\xb0\x79\xc7\x3a\xb9\x6e\x75\x92\x13\xe0\xff\xee\xe8\xb0\x53\xa3\xc4\xb9\xbe\xaf\xd6\xdd\x41\x47\xa1\xb9\x85\x55\xb9\xba\xd9\x5f\xbf\xee\x5d\x14\x15\x57\x20\x38\x4d\x9b\xa3\xdc\x5e\x30\x1e\xb2\x54\x18\xd5\x7c\x4f\xa1\x8d\x74\xd9\x6e\xe1\x63\xb1\x71\xbb\x6c\xb4\x69\xde\x34\x94\xbf\xc3\x16\x37\x7d\x4a\x17\x7e\x1a\x78\x7e\xb0\xdf\x13\xef\xbf\x61\x58\xb2\xbd\xe3\xa4\xa7\x1e\xaa\xdc\x09\x0e\xbf\x49\x10\xd4\xbd\x03\xba\x80\x86\x63\xff\xed\x40\x91\x7a\xe2\x5e\xd0\x80\xb0\x82\x55\x5a\x29\x8b\x8f\xf4\x90\xe8\x3d\xab\x78\x78\x3f\x96\x61\xc7\x33\x26\x7a\x90\x89\x13\x79\xe4\xc4\x32\x25\x02\xfe\x7b\x2d\x28\xee\x13\xa7\xac\x82\xc7\xbb\x57\x5f\xb2\xfe\xf5\xbb\xe8\xd3\x10\x7c\x12\x54\x5a\xf9\xa3\xa2\x8f\x87\x42\xc8\xa2\x37\x8e\x7e\xe5\xef\x72\xe4\xdc\xad\x3e\x97\x39\x5a\x39\x1a\xb1\x3e\x47\x4d\x81\xdc\x34\xe7\x29\x8b\xf1\x34\x68\x4e\x80\x7b\x48\x35\x42\xae\xc4\xb8\x54\x3b\xb3\xa9\x9d\x9a\x2b\x00\xa1\x6a\xb1\x0b\x22\x4d\x38\xfb\xd7\xb1\xa9\x5d\xfe\x86\xd4\xe6\x1a\x47\x64\x37\x4e\xf6\xf4\x0a\x46\xbe\x81\x3f\x52\x82\x6b\x48\x5c\x17\x86\x28\xc0\x75\xa9\xda\x21\x39\x4b\x53\x9e\xc3\x5e\xc9\x8c\x17\xe1\x20\x5e\xb2\xcf\x8c\xd1\xdd\xc8\xf8\xec\xe5\x8b\x93\xf0\xe5\x0b\xa9\x89\x6b\x3e\x8f\xaf\xf3\xeb\xeb\xcf\x06\x9b\x22\x4c\x92\xec\x3e\x0a\xb7\x62\x97\x73\xf6\xd9\x67\x2f\x5f\x64\x5b\xa5\x79\x90\x47\x02\xf8\xed\x44\x7e\x7c\xf9\xe2\x44\x7e\x7e\x69\x50\xde\x73\x0b\x82\xdf\xae\xee\x3d\xfb\xec\xb3\xa0\x26\xef\xa6\xb9\x91\x73\x63\xf8\xcf\xdf\x3f\x0b\x58\xa3\x9d\xff\xac\xbc\x36\xae\x51\xa9\xdb\x5b\x69\xd5\x93\xa6\xaa\xb2\xac\xaa\x6a\xce\x01\x16\x1e\x2e\x8f\x52\x6a\x46\x8f\xd5\x15\x2f\xff\xc9\xe4\xf8\xfb\x6a\xfb\x27\x3b\x52\xce\x53\x07\x25\x3d\x65\x9a\xa4\xde\x92\xe1\x9f\xb0\xb9\xd1\xf3\x9e\xa2\xf6\x9f\xec\x91\x3f\xfa\x67\x20\xb7\xdc\xee\x04\xf3\xce\x8c\xae\x73\xbe\x62\x9f\x7d\x36\xa8\xf9\xd0\xcf\xaa\xa7\xf6\x14\xf7\xa6\xcb\xf9\x3b\xd1\x26\x70\x7e\x44\xe8\x93\x7c\x3f\x99\x77\xc5\x76\xc0\x7a\x83\x1a\xf2\xbc\x07\x07\xab\xe3\x9f\x20\x9d\xec\xc0\x09\x1a\xd4\x78\x7d\x6c\x22\x20\x9d\x2d\xfb\xb0\x03\x4b\x4a\xb5\x75\x7d\x94\x63\x10\x3a\x19\x82\xd4\xd6\x33\x35\x3c\xc5\x41\xf6\xd4\x54\x27\x51\xc3\xab\x60\x61\x10\x7a\xb0\x72\x6a\x88\x0d\x9d\xe3\xcd\x34\x15\xfc\xd1\x76\xfa\xaa\x79\x4e\xbd\x07\x83\xd0\xaa\x24\xb5\x9f\x7b\x38\xfb\x04\x88\xc0\x06\x64\x6a\x5e\x54\x05\x2a\x82\x70\xcb\xd6\x55\x52\x59\xae\x6d\xe9\x55\x79\xd5\xce\x0b\x09\x9b\xec\x43\xcf\xd7\xac\x2f\x67\xd1\xf9\x08\x14\xa6\x8b\x7f\x29\xc0\x25\xca\xd2\x14\x17\x1f\x16\x60\x95\xe3\x2e\xc5\xd3\x9f\xe6\xcd\x2f\x86\xb0\xd6\x71\x6c\x57\x6a\x6c\x43\x66\xd0\x5f\x11\xb3\x37\x6c\x53\xc3\x4c\x53\xcf\x6f\x94\x3a\xa7\x04\xfe\xf0\x8a\x5d\xf5\xe5\xb9\xd2\xf3\x88\x0a\x22\x6b\x3b\xca\x36\x20\x03\x56\x2c\xfe\xf7\x59\x11\x43\xbf\x09\x7d\x64\xa2\x2c\xb5\x6c\xa9\x08\xe3\xb4\x20\x8b\x3e\x13\x89\xcb\x96\x22\x60\xc1\xbb\xac\xbe\xc7\x69\x2e\x35\xac\x8d\xbc\x39\xd7\x0e\x76\xf3\xb2\x1c\x5a\xc3\x5c\x6a\x4f\xf3\xba\x22\xf8\x9a\xd6\x4d\x2f\x9a\x47\x2b\x27\x1e\x3f\xd6\x75\xd3\x74\xcf\xcc\xa3\xa9\x68\xd6\xd4\xdd\x41\xe3\x95\x25\xad\x58\xe7\x82\xb5\xfa\x08\xcc\x84\xd0\x18\x85\xa1\x33\xaf\xb5\x34\xf4\x5b\x26\x16\x07\xf5\x70\xfd\x90\x78\x0b\x0b\xc1\x51\x01\x3c\x86\x47\xfb\x34\x1e\x8a\x63\x49\xf5\xe6\x5b\x96\x96\x6b\x5a\x79\xaf\x24\xc8\x18\xb3\x0e\xd5\xc9\x64\x71\x1c\x08\x82\x78\x2e\x29\xcb\x61\x8a\x06\x74\xaf\x39\xc8\x44\x7c\x29\xad\x8c\xfa\x4b\x60\x2b\xf9\x02\x86\xb7\x2c\xcb\x4e\x27\x18\x63\xaf\x4c\xf3\xd1\x7a\x45\x39\x59\x8c\x5d\x4f\xc8\x5c\xe2\x58\x2e\x41\x16\xae\xb7\x5b\xfc\x6c\xed\x28\x27\x63\xf8\x11\xc4\x73\xbc\x99\x99\x43\x69\xb7\x6f\x7e\x8e\xc1\x35\xad\xad\x5c\x9a\x69\x43\x16\x48\x7b\x0d\x99\xcf\x03\x5a\x30\x75\x4b\xcb\x30\x2b\xcb\x61\xad\xae\xc6\x11\xd5\x9d\x5e\xb8\x5e\x06\x2f\x71\x5f\x07\xa1\x70\xa6\xab\xba\x95\x62\x6c\xae\xec\x9c\x50\x79\xa5\x63\x4f\x68\xef\x52\xa9\x56\x4c\xab\x4c\xe2\x20\x53\xd1\xcd\x34\x0f\xfd\x3c\x60\x8c\x15\x7e\x1e\xcc\x49\x3e\x1a\xd5\x48\xb0\x58\x71\x0b\x12\x29\x24\x11\x4f\xe5\x7b\x05\x1d\x2e\xaa\x67\xd7\x73\xf6\x74\x49\xbc\xe5\x9e\x16\xbc\x22\x77\xfd\x27\x5a\x78\x26\x82\x1e\x2b\xf8\x47\x10\xbd\x48\x4d\x3c\x0f\xa6\xa2\x0f\x05\xab\x83\x0b\x94\x1f\x3b\x35\x98\xe6\x0d\x2a\xd5\x45\xad\x54\xbf\x2a\xcb\xe1\x95\x52\x53\x48\xbb\x38\x4d\xcd\x2e\x08\x21\x22\x7f\x54\xa7\x86\x35\x69\x94\x51\x28\xf2\xb2\xec\x21\xa7\x80\x90\x15\xc9\x51\x87\x2e\xcd\x87\x9a\x9c\xd4\xea\x46\x4d\xe7\xfa\x20\x1d\x1f\xf6\x0d\x44\x04\x5d\x4a\x70\xf8\x3c\x20\xb5\xbf\x38\x42\xa6\x22\x3f\xbd\xd0\xfc\x04\x54\xd0\x5d\x47\x02\x38\x14\xa2\x0b\xd5\x8f\x17\x56\xbe\x65\x2d\x25\x6d\xd7\x77\x4a\x5a\x68\xbe\x55\x77\xfb\x68\x39\x69\x27\x27\x59\x60\x9c\x2b\x3a\xbc\xa9\xe4\x89\x0a\xbd\x6a\x9b\xcc\x78\x11\x7b\x6d\x3f\xb4\xe1\xcd\xa2\x23\x53\x0b\xe2\x59\x31\xeb\x91\x34\x85\xb2\xec\xdf\xf2\x08\x2f\xe1\x5a\xc4\xb6\xf2\x51\xda\x25\x09\x8e\x9f\x17\x51\xb8\xe5\x3d\x2e\x0d\x1d\xeb\x3c\x79\xec\x21\x8b\xe4\x79\x0b\x13\x0f\xcd\x37\x8d\x1f\x1f\x53\x11\x3e\x0c\x30\x27\x1d\xec\xd2\x9c\x47\xd9\x6d\x1a\x7f\xe0\xcb\x01\x7f\xd8\xe6\xbc\x28\xe2\x2c\xf5\x06\xc6\x48\x55\xb9\x4b\xe3\xdf\x77\xfc\xc7\x2c\xef\x53\x7f\x69\xc2\x14\xae\xfa\x2d\x1b\xa6\xf6\x92\x0b\x1e\x89\xd7\xbb\x6d\x12\x47\xa1\xe0\x05\xdd\x31\x45\x40\x7f\x44\xe7\x2a\x54\x78\xcb\xe3\x60\xe0\x59\x20\xc1\xfa\x96\xd0\xad\x12\xb5\x04\xe3\x7e\x8c\xa2\x16\xee\x28\x7e\x1c\xa0\xce\x4b\xc9\x59\x31\x51\x8b\x1f\xf5\xf1\x5c\x99\x32\xa3\x66\x92\xba\x35\x7e\xee\x50\xcf\x4f\xf9\x9e\x66\xac\x40\xe0\xbf\xe3\x0f\x7d\x03\x48\x99\x61\x20\x65\x8c\xb5\x8d\xb9\x11\xc1\x5d\x79\x19\xd5\xa5\xfc\x71\xf1\x55\x0a\x68\x7d\x2e\xe0\xfc\x41\xa0\x4d\x44\x2a\x9a\x7b\xec\xb4\x8f\xd8\x6f\x8e\xf1\x09\xf2\x42\x20\x33\x38\xe7\x73\xf8\xa0\x29\xf2\x49\x3a\x62\x19\x88\x6b\xd5\xd1\xe2\x54\xb6\x3d\xd3\xe9\xa9\xec\xea\x4f\x80\x2e\xfb\xda\x74\x0f\x01\x27\x45\x7b\xac\xa3\x71\x96\x4f\xf7\xd4\xca\xa5\x2e\x53\x52\x9a\x82\x3d\x69\xa7\x3b\xde\xa9\x43\x25\x4f\xfe\x7d\xc1\x77\xcb\xcc\x4b\x38\x45\xd2\xe4\x7d\x49\x9b\xf5\xe1\x3d\xed\x29\x08\xb3\xf0\x9b\xf3\x04\x2d\x26\xbc\x27\xe3\xa5\xe1\x1d\x1e\x99\x4b\xeb\xfa\xa1\xb3\xa7\xc6\xa0\x27\x7d\x4f\x8d\x51\xfd\x39\xe7\x77\x71\xb6\x2b\xd4\xf0\x5b\x65\xff\x79\x2c\xd3\x7e\x4f\xb7\x39\xff\x02\xb5\x45\xde\x13\x5a\xde\xf4\x69\xb7\x7c\x37\x60\xf0\xa7\xa3\x39\xa2\xdc\x9f\x06\xcc\x82\xbf\x65\xc9\xfd\x19\xfe\x3d\x0d\xca\x52\x5f\x54\x2a\x2b\x48\x68\x88\x85\x93\x00\x6f\x66\x9b\x06\xcc\x80\xb5\xe1\x4f\x03\x3c\x27\xa3\x8d\x65\xc3\x8c\xec\x95\x51\xcf\x47\xfb\xd2\x22\x32\xd4\x48\x65\xac\x06\x4c\xaa\x6a\x9a\x92\x85\xea\x5d\x51\xdf\x0c\xeb\x3b\x01\x74\x7c\x16\xb0\x91\x05\x3f\x0b\xe8\x32\x3c\x9e\x05\x65\xe9\x12\x6f\xf2\xdc\x32\xf8\x1d\x4f\x65\x65\x53\x74\xcb\x59\x2e\xab\x37\x02\x65\x4f\x65\xd9\xf3\x60\xc4\xfd\x8b\x83\x0c\x1e\xfc\x98\x66\xb7\xc5\x7d\x65\xc1\xd4\xb7\x76\x86\xd0\xbc\x69\x02\x74\x2a\x5c\xfb\xd2\x46\x18\xa8\x93\x52\xa8\x43\xc6\x44\xc1\x01\x2d\x20\x27\x6b\x83\xdc\x4b\x4d\xf3\x27\x99\x1d\x43\x13\x09\x16\x5a\x29\xec\x35\xf2\x25\x6d\xdc\x62\x89\x51\x9f\x57\x8c\x05\x19\x57\xcf\xf2\xca\x3c\x07\xea\x75\x1a\x18\x0a\x18\xf1\x24\x60\xa9\xf6\x45\x9f\xad\x29\xc1\x2b\xa0\x14\x0a\xbd\x7b\xf5\x65\x8f\x1f\x47\x57\xe5\xd8\x7b\x70\xa5\xf4\x44\x8b\x03\x37\x8d\xa1\xd3\x1f\xf4\xad\x3e\x69\x00\x3a\xd8\x7f\x26\xa6\xd4\x8d\xd2\x22\xed\xb0\x5f\x1f\xd4\xb9\x7b\xed\x4d\x82\x97\x45\xea\x76\x48\xd6\xfb\xda\x70\x8e\x8f\x0c\x69\x7c\x54\x3e\x23\xa8\xd6\xfb\x60\x71\xda\x7b\x51\xb3\x9c\x84\x3e\xca\x16\x35\xaa\x26\xed\xa5\x2c\xff\x80\xa6\xb5\xab\x65\x55\x8a\x7f\x83\xe0\x72\x43\x4f\xcf\xce\xfa\x6d\x19\x77\xd7\x9f\xd5\x95\x81\x48\xce\x81\x28\x59\xb9\xe6\xa5\x24\x4d\xc0\xb3\x05\x88\x80\xd0\x6f\x6f\x08\x20\xc9\x46\x40\xdc\x0d\xf9\x69\x01\x0c\x69\xea\x55\x39\x16\xd9\x10\x5f\xdf\xab\xd7\xd4\x34\x1d\xc6\x58\xa6\x85\xd6\xf2\x8c\xe7\x4d\xa2\x9e\xf0\x72\xec\x7a\xc6\x33\x3d\x4d\x22\x55\x83\x91\xb2\xa9\x7f\xaa\x2c\x16\x50\x8c\xac\xc6\xa5\x1f\x80\x28\xa2\x65\x13\xe9\x56\x5a\xca\x12\xb8\xdf\xe1\x39\x68\x56\xe3\x6b\x55\xf7\xc8\xc5\xda\x47\xc6\xd8\x40\x0c\xee\x52\x9c\xca\x5b\xa7\x0a\x35\x86\x04\x06\xf9\xbc\x06\xf3\x69\xc8\x8c\x24\x2c\x84\xfe\x7d\x3c\x23\xb4\x60\x86\xb2\x2d\xc4\x6e\x54\xd0\x85\x5d\x2f\x57\xf0\xe9\x89\x71\x38\x1c\xea\x32\x85\x86\xf3\xd0\x93\x48\xf6\xa3\x65\x09\xcd\xe2\x21\x63\xe1\xc2\xd0\x76\x3d\xa3\x67\x23\xd8\xb4\x85\x93\x2b\x56\x48\xc7\x8a\xbe\x05\x43\x6f\xd9\x30\x32\xcd\x61\x41\x1f\xd9\xd0\x85\xfd\x7b\x83\xdb\x74\xac\x78\x8a\x9b\xb9\x7c\x58\x31\x31\x5f\xb1\x95\x7f\x23\xf5\xdf\xc5\x62\x75\x7c\x05\x5e\x79\x30\xf0\x55\x97\x2d\x1e\xba\xf3\x35\xbb\x61\x46\x96\x26\xe8\x3d\xc8\x4d\x73\xb8\x36\xcd\xd6\x68\xf6\x35\x05\x88\x57\xd6\x9a\xf9\xe1\x62\xa3\x6d\xfa\xde\xc6\x06\xe8\xe3\x73\x40\x43\xd3\xbc\x95\x9d\x7b\x64\xd6\x92\x59\x09\xb3\x76\xcc\xda\x32\x6b\xc5\x36\xc4\xbf\x0b\xca\xd2\x5a\xf9\x77\x01\x7b\xda\x13\xe2\xaf\x14\x3b\xf6\xf5\x6b\xf8\xbe\xd5\xdf\x65\x06\x1e\x60\x38\x05\x20\x87\x68\x46\x93\xf8\x6e\x40\xe0\x67\x12\xd0\x15\xf0\xc9\x1b\xcd\x14\xcd\x5f\x06\xf3\x15\x1b\x8d\x80\x7d\x36\x4d\x80\x4a\x59\x5a\x8f\x6c\xc9\x1c\x52\x96\x6b\x7b\x9b\x6d\x2d\x82\x70\x6a\x03\xc2\x34\x47\xa3\x47\xd3\x5c\xa1\xa4\xf9\xb4\xf3\x79\xc0\xfc\x5f\xe8\x92\x3e\x06\x32\xdc\xc1\xbe\x65\x16\x05\xf5\xe9\x83\x12\xff\x4d\x83\xa2\x78\x8e\xff\x28\xd5\x11\xd6\xa7\x86\x01\x9b\xc4\x47\xa6\x7b\x88\xd3\x3d\x6c\x4d\x77\x59\x0e\x47\xa3\xc7\xb2\xc4\x51\xc8\xee\xaf\xfe\x8d\xae\x03\x6c\x1e\x03\x42\x57\x78\x43\x23\x99\xd7\x06\x0f\x8f\x63\x96\x11\xa9\xd4\x79\xfc\x5f\x39\x63\xcc\x31\xcd\xc7\x93\xfc\x25\x73\xf6\xfb\x9e\x5d\xb7\x39\xc1\x40\x5e\x18\x39\xb5\x02\x41\x93\xdb\x05\x17\x92\x19\x2a\xfc\xce\xc0\x74\x1e\xc2\xd8\xa5\xea\x60\x9d\x2f\x07\xb2\x02\xc9\xe7\xd7\xc1\xd4\xfc\xbb\x60\x01\x8c\xa3\x97\x55\x02\x9d\xbb\xb0\x52\xe6\x73\xca\xa9\x61\x50\x11\x50\xbd\xad\x6e\x60\x9e\xae\x59\xd7\x22\x69\x47\xe3\xd0\x9d\x63\x40\x0c\xc3\x31\x1d\x98\x1d\x70\x3f\x67\x3f\x5b\x9c\xc6\x7e\x18\x90\x80\x0d\xe5\x8d\xfe\xf8\xb6\x27\xa4\x6f\x47\x85\x8a\x1c\x0c\x12\xe2\x65\xc0\x19\x4a\xd0\x78\x4f\x69\x26\xbc\xa4\xa3\x63\x94\x1b\xa8\x1f\x50\x75\x43\x67\x71\x68\x44\xd5\x1c\xe4\x00\x38\x3a\x63\x00\x9a\x96\x35\xe3\x88\x69\xc8\xf2\x4a\x39\x90\x51\x3f\x20\x32\xb4\x98\x66\x5d\x66\xc5\x2c\xf4\x8b\x40\x72\x29\x05\x0c\x48\xc0\x4f\x4c\x3a\xc3\xa1\x19\x8d\x9b\xbd\x18\xf9\x19\x9a\x03\x0d\xc5\x28\x31\x34\x25\x14\x3f\xe2\xeb\x30\x95\x58\xbd\xdf\x13\x42\xd7\x61\x71\x30\xcc\xa3\x56\x31\xca\xbe\x53\x13\xd8\xa1\x8a\x4a\x60\x3f\x56\x0f\x3f\x60\x85\xe8\x61\xd5\x96\xd0\x85\x9d\xb2\x04\x44\x6a\x76\x38\x0e\x3b\x1c\x36\x96\x84\xe9\xed\xb1\x86\xfe\x4b\xf1\x8d\xc8\x1c\x1c\x43\x5d\xac\x00\x11\x97\x1e\x76\xac\xb3\x2f\x1c\xd8\x21\xcd\x97\x19\x46\x08\x65\x37\x0b\x61\x63\x4d\x5d\xbb\xc2\x87\x4d\xe2\x41\x02\x74\xa0\x9b\x26\xbf\xab\x9d\xc0\x4a\x59\xda\x41\x79\x69\xf3\xe3\xe0\x11\x61\x3d\x72\xdc\xab\xf7\xf7\xeb\x18\x06\xdd\x56\x9c\x92\xae\x31\x18\x69\xf4\xa6\x00\x2b\x79\x7f\xb7\x77\x68\x4d\xc5\xed\x24\x8b\x42\xa9\xc6\x6d\x9e\x61\x45\xae\x5b\xa7\xd7\x55\x94\x43\x19\x60\x66\xb9\xa7\x79\x96\xf5\xfa\x97\x73\xc6\xd8\x7a\x4f\xd1\x09\xe7\x58\xfa\xd2\x0e\x23\x10\xfb\x94\xb6\xda\x34\xad\xe1\x12\x9a\xfc\x02\x3d\x77\xca\xe6\x19\xe9\xed\x70\x08\x14\x01\xd5\xd3\xdc\x5e\xe7\x7c\x55\x96\xff\xe4\xb6\x08\x6f\xd0\xb0\x0d\x9d\x9b\xf1\xe0\xc2\xbb\xe1\xd6\xd0\x25\xb4\x3a\xc8\xc0\x77\x87\x50\x75\xcc\xd5\xcb\x97\x7f\xd4\x94\x4c\xb3\x60\x83\x5e\x70\xbb\x72\x3a\x2a\x0d\x79\x2a\xa5\x25\x55\x47\x7d\x7b\x5a\x3d\xf5\xf3\xec\xba\x01\x99\xfe\x56\x57\x80\x83\xa2\xca\xec\xbc\xa9\x95\x6f\xb6\xe2\xb1\x55\xe5\x1f\x52\x02\xc4\x2b\xab\x51\x47\xbc\x38\xeb\x73\x45\x95\x7d\xe8\xe9\xed\xb0\xde\x1d\x6c\x6c\x1d\xcf\x7e\xd7\x3c\x5c\xf2\xbc\x6f\x6c\x7f\x55\x4b\xae\x86\x29\xd9\x53\x04\x60\x5f\xe6\x67\x3d\x99\xa5\xa9\xde\x7f\x38\x4d\x9a\xc1\x5f\x85\x34\xda\x27\xb1\xa7\xe8\x69\x72\xe8\xae\xdb\xad\xea\x58\x9b\xa6\x69\x40\x0d\x4d\xfd\xa6\xa9\xa2\x04\x5b\x82\x75\x25\x14\xe4\x80\xd1\xf7\xb8\x2a\xd3\xd5\x0d\x56\x01\x04\x36\x3a\x19\xab\xa0\xe4\x3b\x81\xa4\x73\xdd\x0c\x9a\x16\xd4\x17\x63\x17\x73\xf1\xdf\x0f\xf2\x34\xe2\x8f\x9f\xbe\x70\x16\xe9\x48\x78\xa9\xcc\x7b\xc7\xd3\x9e\x1a\x35\xa7\xbc\x79\xfa\x42\xcc\xd3\x11\x9b\x54\x57\xa6\xa7\xda\x35\x0c\x84\xd0\x6c\xb9\xfc\x68\x05\xee\xa7\x2a\x48\x0e\x87\xd4\x76\x7a\xad\x7b\xfc\x52\x2c\x84\x97\xce\xc7\x63\xe0\x68\xe6\xda\x15\xee\x7a\x75\xb7\x7f\xb8\xba\xf9\x68\x94\xbf\x10\x47\xea\xd9\xef\x49\x8d\xf3\xa9\x58\x33\x6d\x05\xfc\x4e\x9f\xf2\x70\x19\x67\x18\xed\x09\xe8\xc0\x4d\xf6\x00\xcf\xab\x58\x46\x7c\xda\x86\x45\x71\x9f\xe5\x4b\x78\x8e\x37\xe1\xad\x0c\xfd\xd4\x30\x58\x22\x60\xa8\xac\xad\x1d\xc3\x9f\x8a\xdd\xcd\x26\x16\x90\x3f\xe7\x05\x17\x87\xf9\xd7\x32\x7f\x65\x19\x79\xcb\x2d\x3d\x6c\xec\x23\x6f\xc7\x90\x72\x68\xcb\x53\xc3\x30\xe6\xe2\x45\x8a\x41\xa4\xf2\x11\x46\x29\x90\x6a\xe1\xc6\xba\xa4\xae\xe9\x8e\xb7\x1d\x87\x84\xbd\x8c\x73\x9a\xc1\x6e\xc2\x1f\x04\x70\x58\x65\x99\xd3\x90\xa5\xa6\xa9\x6b\xdf\x18\x63\x31\x2d\xd8\x7d\x73\x5e\x22\x24\x31\x5a\xb4\x24\xb7\xac\x56\xc7\xa2\x03\x74\x25\x06\x08\xed\xd4\x31\xac\xf5\x91\xaa\x44\xb3\x79\x7d\x4c\x0a\x04\x8e\xb8\xc0\x13\xa6\xe8\xb0\x8d\x9e\x46\x4c\x93\xab\x5a\xea\xd3\xc5\x96\xd6\xf3\x23\xfd\x8b\x57\x92\x71\x17\x92\x71\x17\x35\xe3\x2e\x3a\x8c\xbb\x68\x33\xee\x34\x33\xcd\xec\x23\x26\xd0\x44\x54\xe1\x7b\xe6\x95\xeb\x86\x95\xb0\x9d\x1f\x4b\x61\x4b\x17\x54\x18\x63\x45\x7d\x0e\xe6\x4f\x02\x06\xb2\x18\x0c\x1e\x72\xb3\x15\xc5\x6f\x87\x03\x6c\xd8\x80\x7a\xbe\x5f\xb5\x4c\x6c\x1b\x0e\xbd\x05\x6a\xdd\xca\xb7\xe1\x44\x51\x59\x8e\x81\xaa\xfc\x2c\x50\xf9\x7a\x36\x15\x0c\x35\xac\x85\x0a\xe2\xba\x3e\x41\xe7\x79\xfd\x80\x16\xcc\xc1\xc8\xb9\x75\xc0\x0f\xe9\x33\x2e\xea\x40\x1c\x56\xcc\xb8\x62\x7c\x53\xd3\x1c\xa6\x56\x8c\xf5\x94\xa5\x15\x56\xaa\x7c\x9a\xe0\x59\x37\xbc\x14\x44\x8f\x6b\x51\x77\xe1\x5e\xeb\x82\xc6\x1f\xe7\xa6\x39\x04\xf6\x1c\x23\xff\xdf\x63\x98\x24\x98\xb2\x61\x26\xbf\x65\xf0\x0d\xf2\x93\xb6\x11\xb4\x72\xcc\xee\x60\x63\x40\x97\xf0\x67\xcd\xc2\x6a\x30\x37\x2c\xd6\xe3\x91\x77\x89\x92\x83\x8b\xac\x8e\x16\x90\x61\xb4\x00\xc9\x58\xfb\x79\x40\x53\x4d\xf1\x6e\x89\xb2\x34\x9e\x1b\xb4\x68\x4e\xfd\xfd\x22\xf0\x0a\x14\x15\x36\x6c\xc8\xcb\x72\x18\x9b\xa6\x58\xdc\x78\xbf\x70\xeb\x86\xae\x28\xc7\x1e\xd2\x2b\x96\x2e\xb2\xb2\xb4\xe2\x05\xf7\xd6\x65\x99\x63\x0c\x91\xd0\xdb\xa0\x0b\x80\x69\xa6\xd6\x86\x5e\xc9\x9c\x39\x8a\xc0\x09\xfb\x85\x5b\x57\x74\x49\x68\x6e\x25\x14\xe6\x07\xd2\x76\x2c\xa9\xfa\xb9\x43\x61\x64\xcb\x12\x7f\x87\x73\x72\xe5\x2f\xfd\x5d\x00\xf2\xc8\x46\x3d\x6d\x89\x66\x7c\x98\x95\xa5\x8c\x6d\xa6\x66\x3e\x01\x10\xed\x6a\x9b\x89\xba\xba\x2b\x59\x5d\x22\x67\x71\xe3\xef\xa0\x9e\x79\x26\x03\xfc\xa1\xc5\x59\x42\x23\x82\xf6\xdd\xc7\x4b\x5b\x09\xcb\x16\x3f\x5b\x31\xdd\x12\x6f\x05\x9f\x5e\x8e\x5d\xd3\xb4\x62\x3f\x81\xfe\x85\xf0\xb3\x05\x2a\x8f\xab\xfe\x0a\x47\x8a\x71\x0c\xaf\xaa\xe3\x9f\x35\xad\xaa\x26\xde\x15\xa1\xd9\x42\x75\x20\xa4\x57\x34\x22\x5e\xe5\x8e\x13\xd2\xab\xb6\xd5\xfa\x87\x36\x31\x06\x22\xd6\x8e\xd7\x90\xdb\xd5\x59\x87\x8f\xea\x65\x60\x0d\x00\xf7\x43\x10\xbb\xeb\x24\x63\x60\x04\x34\x62\xe1\xc2\xf5\x1c\xba\x3b\xe2\x92\x28\x5d\xf3\xf7\x84\x16\x14\xd8\xdb\xed\xb1\x6c\x3f\x5b\x82\x4a\x69\xa9\xca\xba\x62\xbe\x2e\x46\xd3\x5a\x17\x3a\x0c\x61\x01\x94\x65\x3a\x64\x2c\x81\x95\x65\x09\x96\x92\x06\xd5\x76\x2a\xbb\xb7\x55\x0f\x4d\x00\x22\x29\x48\x66\xfb\x60\x1e\xbd\x88\xe7\x91\x0a\x9c\xd3\x1e\x6f\xa4\xc6\x4b\x56\xcc\xbf\xe3\xd6\x2b\x6e\xad\x08\x4d\x49\xd0\xd0\xbc\xb4\xbe\x76\x43\xcb\x5e\x5d\x99\x81\x27\x70\xf0\x55\x9d\x73\x13\xe2\xdf\x05\x12\xda\x19\x1b\x8d\xa2\x79\xf6\x22\x86\x75\xac\x37\x99\xa9\x3a\x30\x42\x46\xd5\xd9\x7b\x6e\x45\x2f\x5d\xd3\x94\x1d\xc0\x47\xd8\x45\x6b\x8d\x66\x34\x76\x49\x15\xf8\x50\x05\x7a\x34\x06\xf2\x64\x23\x1a\x4f\x64\x8d\x0b\xe3\xb9\x21\x43\xe4\x1f\x38\x4d\xa5\x34\x7a\x91\x99\xe6\x87\xa6\xca\x88\x66\x40\x50\xa0\x7b\xf0\xb5\x56\x92\xd6\x5f\x71\x13\x27\xfb\x55\xc5\x23\x55\xe7\x8e\xd8\xc3\xea\xe5\x56\xbf\x38\xaa\x82\x53\xd1\x30\x27\x2d\x65\x0a\xaa\xef\x6f\x39\x0d\x59\x01\x7b\xcd\x6f\x3c\x8d\x3f\x74\x1d\x6c\x95\xfa\x47\x8f\x2f\xc1\xbe\xab\xce\x02\x60\x47\xa9\xcd\x40\x17\x8e\xb7\xab\xcf\x58\x91\x75\x29\x18\xa7\x11\x2e\x47\xe8\x40\x75\x78\x36\x2f\x94\x62\x34\x44\xdf\x0b\xd3\x1c\x5a\x19\xfb\x4a\x3a\x4e\x16\x04\xa3\x1d\x99\xa6\x55\xb0\xa2\x02\x00\xac\x01\xb5\xd0\xca\xb2\x20\x34\x52\xa4\x9c\xf9\x01\x21\x34\x65\x43\x97\x5a\x19\xfb\xa2\xae\x01\x88\x3f\xcb\x2a\x9f\x31\x2a\x83\x08\x5a\x75\x34\x4e\x8c\xc0\x87\x95\x6a\x93\x32\x30\x08\xc6\x78\xaa\x1a\xad\xd5\xea\xd2\xe0\x18\xfa\x4d\xa0\x9f\x5f\xfa\x61\xa0\x75\x35\xf1\xc3\x40\x0e\x00\x9e\x60\xae\xca\xf2\xd3\x8d\x87\x54\x61\xa7\x97\x1d\x69\x14\x4d\x61\x52\x19\x45\x67\x5f\x03\xb8\xf2\xe3\xf5\x8a\x45\x73\x64\x46\xbc\xef\x2c\x4e\x23\x52\x83\x7e\x0f\x35\x4a\xf3\xa2\x38\x39\x32\x9d\x30\x29\xb1\xdc\x51\xdf\x69\x93\x39\x2c\xe4\xcc\xc8\xc3\x1d\xf4\x5a\xa4\x69\xb3\xed\xa4\x48\x41\x0b\xf6\x81\x5b\xc2\x4f\x03\x5c\x5b\x8b\xac\xda\x4b\xbd\xb8\x7a\x9a\x5b\x05\x7b\x67\x71\xda\x1b\xb1\xa7\xd6\x02\x69\xe1\x6f\x5e\x3a\x34\x66\xdd\x1d\x93\xee\x64\x99\x2d\x5d\xd3\x0d\xbd\x62\x0e\xbd\x65\x86\x63\xd0\x47\x16\x9b\xa6\x1f\xd0\x3b\xe8\xff\x2b\x96\xd0\x7b\xd8\x39\x33\xd3\x6c\x2c\xc3\x2d\xd8\xfe\x76\x84\x7e\x60\xbf\x8c\x98\x14\xb9\x5e\x2d\x5c\xaf\x15\x94\xaa\x2c\x6d\x97\x7e\xc7\xee\xab\xc1\xe1\x6e\x21\xa3\x84\x49\x0b\xa9\xb0\x2c\x77\x64\x7e\x3b\x64\xec\xbb\x2a\x68\xbc\xb5\x65\xf7\xfe\x6d\x40\xe6\xb7\xa3\x91\xdc\xa8\x4c\x53\x99\x10\xac\x99\x43\xc3\xb2\xdc\x1e\x98\x55\x2d\xcb\xd2\x5a\x59\x5b\x98\xe7\xe1\x0d\x99\x6f\x18\xf7\xd7\x95\x2d\xfc\xc6\xda\x42\xa1\x25\x2d\x08\x79\x52\x68\xbd\x55\x01\x7c\xf7\xd0\x99\x5f\xd8\x07\xb2\x4f\x4d\xd3\xb2\xb6\x6c\xb8\x81\xc6\x4c\xf3\x6a\x3c\xa6\x40\x0e\xaa\xec\x64\x1f\xaf\xac\xab\x11\xbb\xa5\xa9\x69\x42\x77\xaf\xea\x1e\xcd\x37\x4c\xa8\xd6\x36\xd6\x23\xbd\x03\xc0\x6a\xfb\xed\xd5\x4b\x47\xaa\xb2\x6f\x61\x62\x1f\xfd\xdb\xa0\x2c\xef\xf0\xaf\x05\x3f\xec\x47\x69\xb1\x12\x11\x32\xbf\x83\x0d\xf0\x8e\xec\xab\x5d\x2d\xa2\x77\x84\xee\x4c\x13\x18\x89\xbb\x7a\x16\x4d\xf3\xaa\x8e\x70\x04\x14\xb3\x65\xca\x61\x45\x8d\xa9\x84\x1c\x1a\x4d\xd8\x2b\x42\x1f\xf7\x8d\x67\x46\xc2\xad\x98\x78\xf1\xde\x8a\x81\x1a\x92\xda\x78\x80\xf1\xda\x0a\x68\x4f\xa3\xc6\xac\x80\x1d\xaa\x49\x25\xbb\x58\x07\xc2\xe9\xbd\x5e\x8b\x9b\x26\xa7\x4b\x36\xcc\x4c\x33\xb4\x38\x5b\xd5\xed\x00\x03\x82\xdc\x0e\xc3\x10\xd1\xe8\x18\xbc\xac\x56\x25\xee\x3e\x11\x5b\x02\xab\xbd\xd4\xce\x7d\x6b\xd7\xde\x97\x13\xd3\x34\xbe\x7e\x0d\x0d\x59\x09\x8b\x7c\x27\x20\x4a\xee\xbf\xec\x78\x5f\xde\x00\xb6\xd6\x5b\x50\x84\x67\xf4\xb8\xeb\x49\x0f\x71\xc1\xac\xda\xed\xc3\x4a\xaa\xbd\x4c\x27\x59\x4a\x23\x2a\x48\x75\x4a\x41\x9a\xe0\x37\x2b\x3c\xc4\x6e\xa9\xfc\x68\xb3\x9f\x44\x15\x6d\x92\x32\x5e\x35\x38\xe4\x96\x62\xf6\xa5\xad\x87\xd9\xa8\x7c\x8f\x17\x8e\x17\xd5\xf1\x9d\xc6\x63\x5c\x25\x91\x1f\x07\x54\xdf\x48\x81\xef\x93\x83\x90\x42\xd5\x96\xc9\x31\x28\x76\x2b\x63\xdb\x8f\x0e\xa5\xf2\x74\x8e\x2a\x96\xa7\xdf\xe3\x59\x79\x6e\x47\x15\x17\x16\x53\x97\xd0\xa1\xc5\x59\x56\x5b\xd6\x3e\x72\x40\xd9\xae\x93\x39\x20\x07\x4d\xab\xd3\x22\xa5\x4d\x5d\x95\x65\x61\x71\xba\x24\xc4\xca\xd0\xee\x8a\xa6\x74\x28\xca\xf2\x13\x6e\xd7\x18\x22\x4c\x37\x2f\x62\x77\x95\x07\xaf\x41\x2a\xe3\x22\x65\xd4\x8b\xde\x4d\x77\xf4\xd0\x44\x89\x0d\x87\x5b\xba\xb2\x08\x6d\x1b\x7a\x1e\xf3\xec\x72\x3f\x62\x37\xfb\x11\xa7\xe6\x5e\xab\xfb\x5a\x9e\xeb\x33\xbe\xff\x93\xb4\xb4\x37\xa8\xf1\x27\xa9\xba\x6a\xb4\x86\x1d\x9d\x15\xe4\xc7\xf3\xf4\xb2\xdc\x2a\x15\x56\x89\x4a\xd7\x35\x8f\x6f\xd7\xa2\xbc\x8f\x97\x62\x6d\xd0\x03\x55\x8b\xdc\xdc\xfa\xfd\xc1\x04\x35\xea\xc3\xe0\xb6\xfc\xbb\x70\xbd\x89\x72\xdb\x6b\xcc\xdf\x0e\x2d\xba\x7b\xc7\x86\xba\xba\x13\x74\xe8\xd0\x46\xd3\x36\xe6\xc7\xe5\x60\x60\x70\x42\xe3\x13\x03\x97\x59\x9b\x91\xab\xa2\xfd\x03\x35\xcd\x4f\xab\x0a\x1b\x60\x54\x4e\x96\x68\x67\x75\x7c\xea\x54\xdc\xbc\x4e\xbf\x1a\xbb\xfc\xaa\x6b\xaf\x0f\x3b\x25\x43\x54\xeb\x73\x20\x35\xc8\xbe\x08\x16\x1d\x90\x7b\x18\xd8\xad\xdf\x8c\x30\xd7\xcc\x08\x73\xdd\x8c\x90\x10\x5a\xf0\xbd\x95\x92\xf9\x3d\xae\x7f\xf6\x8e\x5a\xf7\x36\x7f\xd8\xe6\xec\x5d\x63\x0d\x46\x7c\xc3\x33\x64\xf0\xc9\x6d\xc3\x9d\xde\xeb\xa6\x7f\xd5\x0b\x7b\xa7\x7d\xa5\xf7\x32\xb6\xf1\xbb\xca\xc0\x8e\xde\x4b\x57\xdd\xd7\x59\xc4\xde\xc9\x47\x7a\xdf\x98\x83\xbe\xab\x1f\xe9\xbd\xb2\x6e\xac\xad\x67\xdf\xa9\x0f\x68\xc3\xf9\x70\x10\x1a\xa7\x13\x55\xaf\x36\xc1\x4c\xe7\xc0\x9e\xfb\x02\xc8\xda\xe5\x50\xb7\xae\xaf\x35\x42\xcd\xa7\x8a\x4d\xb8\x47\xef\x25\xbc\xd7\x4e\xc5\x46\x54\xa1\xf7\xea\x4d\x31\xdf\x1f\xc4\x57\x6b\x94\xa4\x7e\xd0\xa3\xb1\xef\xfa\xf8\x73\x19\x50\x34\xad\x6a\xd6\x6c\xf1\xde\x56\x90\x46\x02\xdc\x22\xf2\x8d\xd6\xf0\x4d\x3b\xaa\xdb\x1f\x34\x1a\xea\x84\xb3\x81\xfe\xfe\xc8\x4e\xde\xbf\xb0\xfc\x70\xfc\x21\xf0\xdf\x5f\x9f\x5c\x3b\x2f\x3d\x8c\x81\x26\xae\xf3\xeb\xf4\x7a\x15\x3c\x27\x7e\xfb\xfd\xfa\x64\xf1\xd2\x5a\x78\x2f\xae\x4f\xae\xdd\x97\x25\x79\x76\x12\x37\xbd\xfa\xbc\x63\x9e\x73\x6b\x09\xb2\xb8\xb7\x6f\x73\xbe\x6d\x5b\x15\x81\x8c\x5a\x99\x87\x54\x31\x29\x69\x4e\xd1\x5a\x37\xdd\x13\xe2\x35\x3b\x70\x6f\xf9\xb6\xd0\x5c\x15\x3a\x8c\x26\x23\x3e\x5e\xba\x09\x08\x09\x02\x75\x55\xcd\x7d\x15\xfe\x5e\x05\x8a\xac\xde\x8f\x04\x64\x12\xbe\x13\x68\x87\x6a\x16\x67\x86\x97\x66\xc2\x42\xdb\x2a\x62\x10\x2a\xf5\x8e\xd5\x96\x87\xe6\x32\xfa\xe8\x90\x79\xe8\xd8\x7a\xa3\xf9\xd2\xc2\xcf\x03\xcf\x0f\xbc\x76\x16\x8b\x53\x35\x26\xd1\x3b\xa6\x36\xa6\xc9\x78\xc8\x5a\xfc\x5e\xeb\x09\xad\x34\x7b\xcc\xf5\x68\xde\x8a\x4c\x9c\xe1\x9b\x7e\x5f\x87\x66\xc3\x55\x4b\x92\x9d\x58\xcd\x78\x67\x4f\xf7\xee\x00\x25\xa8\x30\x67\x2e\x5e\xe4\xa8\xba\x8e\x57\x56\xb3\xee\xad\xcc\x17\x01\xc5\x88\xd5\x8d\x7e\x93\x90\xda\xd2\xbf\xdd\x84\x1f\x10\xaa\x57\x25\x81\x63\x71\x8a\xb5\x68\x6e\x96\x2f\xdd\x85\x4e\xa2\xac\x94\x78\x69\x6d\xd1\xd7\x67\xdf\xd6\x6e\xe7\x73\x15\xa7\x1a\x79\xcb\xa1\x4b\x30\xac\x6d\xef\xa1\xd7\x47\x0b\x3a\x04\x83\xca\xf6\x9d\xc3\x0d\x55\xce\x1e\x8b\x3a\xd3\x7c\x5b\xf3\x73\x00\x53\xaf\xee\x46\xe5\xf1\xbd\x97\xd6\xec\xbf\xd1\xdf\x65\x40\xb2\xeb\xe2\xb9\xf5\xc2\xbf\xbe\xbf\xfe\x39\x18\xbd\x24\xfe\xfb\x97\xc1\xf3\xf2\x4f\x5a\x4c\xb2\x39\x06\xd3\xc4\x98\xea\xfd\x68\x4c\x33\xdc\x67\x5a\x33\x5b\xb3\xd7\xbf\xf5\x75\x52\x31\xc0\x39\x33\x5e\x48\x65\x8a\x13\x98\xa6\xf1\x52\x3e\x37\x11\xbb\x82\x26\xe0\xfa\x4b\x36\x5d\xf8\x52\xef\x83\x76\x0b\x81\xf7\x7b\x1d\x84\xa9\x2c\x87\xb9\x0f\x99\x2b\xe3\x68\xe0\xed\x84\x2d\x83\xa7\x2f\x30\x0c\x03\x51\x53\x4d\xbc\x83\x80\xd6\xa2\x4e\x43\xef\x86\x2a\x94\x93\x60\xa2\xbe\x70\x31\x5b\x0d\xee\x17\xb0\x56\x3d\xd8\x87\x9a\xd8\xe6\xf4\x1e\x38\xc6\x82\x03\xfb\x81\x25\xa9\xa8\x0c\xc9\x70\x81\xf6\x04\x98\x0a\x71\x5e\xe9\x8f\x72\x8e\x72\x69\x43\xd5\x8d\xde\x2c\x48\x13\xd0\x5f\x90\x5b\x6c\xcb\xcf\x03\xb2\x50\x0f\x96\x40\xe7\x13\x1c\x8a\xb2\x58\x14\x32\x80\x6f\x33\x01\x15\xef\x9b\xb1\xb0\xeb\x09\x9e\xfb\x93\x40\xda\xc0\x42\x75\x4e\xc0\x32\xaa\xad\x5e\xe6\x12\xaa\x55\xa0\xdd\x82\xb0\xa8\x0b\xf0\x76\x01\xb9\x02\xbd\x5b\xc0\xb9\x66\xff\xb4\x73\x1e\x2e\x1f\x17\xea\x17\x51\xd1\xba\x07\x12\x59\x07\xfb\xb5\x64\x3d\x64\x4f\x34\x75\x16\x20\x1b\xfd\x8d\xdd\x5b\xa1\xc4\xd3\x9f\x25\x96\x4a\xd6\xbc\x28\xb7\x39\xbf\xb3\x16\xde\xdf\x52\x11\x27\x25\x3a\x14\x9f\xd0\xd7\xec\xa9\xba\xf2\x47\x5d\xbd\x22\x20\x2f\x5e\xb8\xc0\x1f\xf0\x40\x0d\x8a\xb5\x2f\x5d\xf8\x73\xb3\xf9\x6a\x3b\xbd\xdb\xd9\xe9\x9b\xb3\xc0\x16\x21\x5c\x87\x45\x5f\xdc\xfb\x6a\x40\xba\x3a\x45\x5f\xea\x47\xe8\x9b\x0c\xa3\xe4\xcc\xf9\x8b\x74\xce\x0f\x68\x9c\x8c\x8d\xef\xf3\xa0\x45\xe3\xf6\x34\x4a\xb2\x82\xeb\x71\xe4\xdb\x21\xa0\x15\x15\xae\x68\xb2\xba\xa5\xa3\x87\x20\x4b\xae\x05\x97\x70\x4d\x3a\xa4\xc2\xa0\x3a\x80\x68\xa8\xa9\x9f\x07\xf3\xd4\x34\x53\x28\xde\x71\xa3\x42\x2d\x6f\x63\x59\xe0\xba\xa6\x69\x85\x8b\x50\x1a\xab\x28\x33\xd4\xae\x87\xfb\x91\x1d\x0c\xe3\x33\x93\xa7\xb8\x3e\x27\x6e\x6b\xc8\xda\x44\x33\x6e\x8e\xab\x5a\x44\x3b\x26\x5e\x8c\x06\x07\x4b\xfe\xd0\x6b\x79\xb1\xe8\x0b\x14\xad\xb6\x75\x80\x08\x55\xd8\x4e\xea\xe0\xcf\x48\x9c\x2b\xba\x02\x44\xcb\x53\x04\x05\xe9\x97\x7a\x68\x45\xf7\x91\x93\x9e\x17\x20\x88\x03\x0a\xbe\x4a\x12\xab\x22\xc4\xde\xd8\xdd\xd3\x70\xb9\xf4\x7a\x3d\xc3\x0e\xae\x32\xd0\x86\xd6\xba\x5f\xe1\x96\x0b\x8b\x50\x44\x3d\x82\x3b\x76\xb8\x5c\xfe\xb9\x7b\x2f\x83\x5e\x69\xb8\x5c\x56\xd7\x18\x2f\x3a\xf1\xfe\xbd\xce\x7b\x85\xb0\x1c\x0f\xc2\xab\x50\xc9\x4f\x3d\x06\x22\x95\x5d\xc6\xa1\x77\x69\xe5\x0e\xa6\xd3\x45\xe5\x89\xa4\xd6\x74\x5f\x4f\x1f\x2c\x4e\xf5\xa3\x65\x52\xe7\xc6\x95\x7f\xcc\xa8\xbb\x5b\x0c\x83\x75\xa7\x5d\x03\x0f\x95\x19\x28\x40\xcb\xb8\x96\xec\x25\x9d\x38\x96\xb7\x6b\x48\xac\xea\x7e\x95\x24\x47\x87\xd0\x53\xfd\xc7\xb2\x1f\x69\xe1\xd3\x63\xd6\xdb\xc1\x41\x43\x4d\x7f\x00\x54\x5d\xd3\x68\x28\x5a\xc8\x97\xde\x79\xf9\xd6\xb2\xf4\x49\x96\xf7\xa3\x35\x12\x34\x5e\xce\x51\xd3\xe2\xde\xf2\xba\xc0\x0d\x99\x2b\x62\x7d\x98\xf9\x88\x0f\x80\x2a\x51\xed\xaa\x8b\x83\x2f\x9e\x05\x22\x8e\x21\xf8\x66\x9b\x84\x82\x1b\x68\x20\xc9\xea\x6c\x65\xc9\x49\xbd\x8d\xfb\x01\xe5\x7a\x48\x4d\xb2\xdf\x77\x03\x77\x63\x28\x71\x1e\x34\xbc\x8f\x76\x4c\xa6\xdd\x30\x22\x1a\x0e\xd2\x40\xc0\xb7\x6c\xe0\x4f\x09\x1e\x28\xa7\x84\xe6\xa6\x79\x48\x78\x72\x79\xb4\x5c\xad\xb7\x1c\x4f\x89\x34\xf2\xfd\x12\xa8\xe9\x6b\xb4\xc9\x6d\x51\x82\x8c\xd0\x9f\x1b\x1d\x56\x66\xe7\x1c\x2f\x02\xb4\xaa\xd2\x0d\x01\xc9\xd0\xa4\x13\x77\xd4\xef\xd9\x89\xff\xbe\x25\x99\x8d\xf4\x1b\x70\xfe\xde\xba\xbb\xb4\xfe\xfc\x6b\xe3\xf3\xa7\x7d\xfd\xa1\x3a\x44\x57\x10\xc1\xe8\x7a\xdc\x34\x6f\x2d\x74\x08\xce\xb3\x4d\x5c\x70\xb2\xc8\xaa\x2b\x18\xec\x65\x96\x72\xe4\xb9\xc2\x38\x01\xc6\xba\xce\x2b\xd6\x3c\x6d\x32\x22\x38\xbd\xee\x4d\x70\xbc\xd2\xc6\xe6\xa4\x0a\xdb\x87\xde\xfd\xdd\x5c\x64\xbf\xbf\xb7\x3f\x0f\x93\xe4\x26\x8c\x7e\x2b\x5a\xce\x79\x9c\xf5\x91\xfd\x43\x52\xd6\xdc\x2b\xaa\xa8\x9e\x72\xcb\xb5\xbe\x47\x65\x2c\xed\x98\x1f\x0b\x3f\x0d\x18\x6e\xcc\x54\xec\x81\xd7\x69\xae\xcf\xd8\x53\xe5\x3f\x5a\x1b\x1b\xc8\xad\x18\xcf\x65\xc6\x2e\x8d\x58\x87\x1d\xc8\x58\x86\xfe\xdd\x69\x84\x4e\xfb\x6c\xe8\xcc\xc3\xda\xf0\x97\x8d\x5d\xb5\x1f\x87\x95\x8a\x77\x3e\x1a\x15\xcd\x75\xee\x04\xad\xd7\x63\xbf\xa8\x4f\x4b\x7d\x27\xa0\xa9\xe4\x34\xb9\x5d\x88\x6c\xfb\x5d\xfa\x45\x98\x14\x1c\xcf\xdf\xe2\xe6\x3a\x99\xa1\x4b\xe6\xdc\xde\xf0\x4d\x96\x3f\xe2\x01\xd7\x10\x58\x41\x36\x74\x69\x66\x9a\x56\xcc\xd2\x85\x1f\x78\x78\x5d\x43\xc2\x9e\x5a\x1b\x57\x8d\x2f\xb1\x32\xc9\x10\xad\xba\xc7\x2e\x0d\xab\xbd\xbc\x31\x9c\x1d\x80\x60\xf5\xa4\xa0\x9b\xd2\x4e\x40\xb9\x5b\x2b\x27\x8b\xea\x60\xc1\x34\x13\x7b\x1d\x16\x78\x4b\x4a\x5c\x99\x69\x79\xb9\x69\xe6\xb5\x6c\xac\x31\x36\xbf\x58\x39\x31\x4d\x61\xe5\x78\x22\xdf\x5c\x88\x47\xa8\xea\x5a\x54\xad\x8f\x3d\x95\x51\x1c\x7b\x46\xa2\xfa\x55\x17\x3e\x08\xe7\x5f\x29\x6d\xe6\x56\xca\xee\x6d\x75\x93\x84\x25\xe4\x85\x06\x2f\xc7\xee\x9c\x54\xb7\xe1\x58\x29\x75\x09\x4d\x5f\xb0\xc2\x34\x8b\xf1\x78\x5f\x37\xde\xe5\x22\x6b\xce\xa4\xa9\x8f\xd3\x18\x39\xa7\x58\xf3\x83\xee\x58\x7e\xb6\x80\x8f\xc7\xa5\xaa\x7a\xa5\x27\xec\xc9\x99\xb1\x50\x9e\x0d\xa2\x93\x6a\x2b\x77\xcf\xac\x0e\xe3\x3d\x4d\x32\x9d\xa3\xe8\x56\x94\x96\xa5\x28\x4b\x4b\xd6\x57\x35\x0f\x45\x7a\xab\x1b\x66\x68\xe4\xc8\x7f\x8e\x45\xeb\x02\x93\x66\x6f\xca\x10\xfd\x7c\x4e\xab\x23\x1a\x75\xee\xb9\xa8\xcc\x8e\x89\x97\x06\x0d\x4e\x51\x51\x96\xda\x9c\x42\xdd\x3d\x7d\x4d\xec\xaa\xd1\xee\xad\x4d\x5a\xb9\xde\xfe\xe6\xfb\x9a\x18\x24\xfa\xc5\x38\xaf\xf9\x8a\xe7\x79\xaf\x21\xb1\xef\x1b\x69\x26\xe2\xd5\xa3\x01\x9b\x6c\x76\x9b\xf3\xa2\x30\xa8\x46\x94\x2c\x43\x2e\x34\x83\x1c\xf9\x3a\x09\xa8\x6f\xe4\xbc\xc8\x92\x3b\x6e\x50\x03\xe8\x66\xa7\x02\x20\x10\x83\xfe\x5a\xda\x49\x0e\xad\x2a\x5a\x1a\xb2\x56\x0c\x9c\x4b\x0d\x20\xc2\xff\x6e\xa5\x2e\x55\xf5\x40\xa5\x01\xcd\x99\xb1\xe5\xe9\x12\x99\x88\x8c\x3d\x15\x22\x14\x7d\x93\x90\xef\x69\x98\xdc\x87\x8f\x45\x1f\xfe\xca\xcd\xa1\x99\x17\xb9\x49\x1c\xcc\x13\x12\xfe\x5e\x77\x0d\xdc\x44\x94\x79\x08\xf0\x40\xf1\xb6\xd5\x07\x29\x67\xd5\xf5\x35\x04\xbe\x9a\xc8\xf6\x3d\xb1\xd5\xa5\x63\xad\xcb\xc3\xea\xad\xff\xd6\xe2\x7e\xee\xcf\x02\x24\xab\xf2\x69\x1e\xfb\x20\xd1\x07\x2d\x01\x4f\x36\x9a\x61\xe4\xc3\xbe\x2b\xc3\xe6\xb8\x03\x6a\x7b\x65\xfd\x88\x32\x83\x44\x1d\x94\xac\x00\x9d\xd4\x06\x0a\x42\x35\x4e\x68\xb5\x91\xda\x72\x2e\x88\x97\xfa\xb9\xef\x04\x23\x03\xf0\xdc\x08\x64\x63\x19\xde\x7f\xa3\x5d\xb3\x2d\xcf\x8b\x38\xab\x6e\x2f\xaf\x1b\xdc\x53\x80\xa0\xbe\x28\x35\x87\x3f\xa7\xe1\x11\xc2\x26\x94\x77\xd7\x21\x44\xe6\x2e\xe4\xfd\x59\xda\xfd\x5d\x34\xe9\xde\xff\x95\xd2\x04\xa5\x4e\x8b\xbf\x88\x09\xa9\xad\x7e\x24\x94\x0a\x1a\x11\xa9\x78\xae\x3b\xa7\x5d\x80\x09\x62\x84\x8a\x3a\xf0\x6e\x2d\xad\xfd\x07\x05\x4f\x56\x63\x04\xcb\x0e\x0f\x82\xc9\x3c\x61\xa9\x69\x5a\x87\x97\x7e\xa5\xfd\xb7\x0f\xa6\x18\x99\x0e\x00\x40\x6f\xad\x84\x2c\xb2\x45\x52\xdd\x17\x14\x5a\x31\x15\xf4\xef\x34\x23\xea\xf1\x57\xe0\xd0\x3c\x2b\x1e\x8d\xe8\xc7\x33\xd5\x5f\x85\x9a\x41\x98\x18\x02\x65\xf3\x21\x63\x7f\xc7\x7d\x52\x31\x2e\x11\xf3\xd3\x80\x50\x2b\x2b\x4b\x51\xcd\x2f\xe6\x96\xc0\xd8\xef\xe9\x8e\x65\x8b\x44\xc7\x68\xe0\xb6\x12\xab\xe2\x85\x10\x67\x2b\x5c\xb6\xf9\x43\xc4\xd1\x29\xe1\xab\x2c\xfb\x0d\x64\xed\xfe\x14\x2b\xa5\x3b\xbb\x00\x1e\xf1\x5d\x1e\x46\x9c\x50\x3e\x72\x5f\x32\xd8\x4b\xa0\x83\xbf\xf6\x74\x50\x28\x64\x43\x52\xaa\xba\x36\xe7\x8b\x9d\x45\x3c\x4b\x6b\xe5\x96\x0b\x64\x3d\x65\xf3\x96\xde\x08\x3b\x92\xcd\xc2\x73\xbf\x82\x8b\x77\xf1\x86\x67\x3b\x61\xed\xa0\xee\x4f\x2c\x53\xe1\x3b\x81\x3f\x0d\x50\xae\x0d\x2d\x87\xc2\xec\x65\x64\x91\x79\x7f\xa7\x69\x0b\xe6\x54\xf8\xee\x41\x4e\x58\x70\xde\xdf\x31\x71\x72\x90\x98\x93\x45\xee\xfd\x8a\xab\x45\x5f\x23\xea\xf1\xd8\x4d\x57\x43\x06\x3b\xb8\xda\x24\x38\xcd\xa4\xf3\x58\x7c\xc8\x52\x8a\x2e\x17\x09\xab\x22\x64\xa9\x3f\x01\xd6\x30\xf5\x4f\x83\x79\xe6\x03\xe7\x16\xb0\x10\xfa\x45\x0b\xd3\xc4\x87\xb6\x6b\x00\x2b\xf6\xd0\xfd\xe9\x98\x07\xfe\x24\xa8\x42\x80\x55\x5f\xa6\xfa\x17\x07\x73\xc0\xce\x4c\x2b\xb0\xc1\x0b\xa1\xb2\xda\x14\x3e\xc0\x36\x48\x68\xec\x03\xdf\x18\xb0\x1e\x32\x8d\x29\x2d\x0a\x03\x0c\xa7\xd2\xfc\x79\xfd\x7b\x6b\xbb\x10\x0b\xeb\xbd\x18\x7d\x07\x6a\xe0\xc6\x84\x4a\x4f\x70\x58\x51\x31\x8d\x09\x8d\xf7\xf4\x7e\xcd\xfb\x9c\x40\x0e\x6e\x06\x4c\x99\xa0\x39\xab\x6e\xc6\xa3\x19\x53\x37\x5a\x6a\x9d\x89\x35\xcc\xb3\x08\x0d\xfb\x6e\x75\xd5\x71\x2b\x07\xc1\x4f\xd2\x50\x78\x3a\xb8\xbb\xdc\x5d\x1c\xb4\xe1\xa5\x74\x3c\x16\xc0\xa7\x6a\x4b\x18\x25\xba\x3d\x5e\x61\x2e\x5e\x30\x10\xe6\x40\x70\xaa\x36\x3c\x60\x8b\xab\xdc\x34\x56\xab\x8b\x0e\x05\xa1\xf5\x9e\x0a\x10\xb6\x71\x53\xb5\x48\x59\xde\x5a\x99\x9f\x06\xa6\x09\x7f\xa5\xe0\x54\x9f\x2d\xc7\x72\x0f\x54\xa1\x4c\xd0\x96\xeb\x07\xcc\x4d\xa1\x99\xba\x76\xed\x4e\xee\x06\xb1\xd5\xc9\xc0\xd7\xec\xe4\xbd\xf5\xe6\x2e\x4c\xca\xaf\x53\xc1\xf3\x34\x4c\xca\x1f\xc2\xf4\x96\x97\x3f\x00\xe4\x78\x1a\xf1\x52\x86\x7a\x29\xd1\x18\xfe\x6f\x3f\x7c\x4d\x90\x16\x3f\x3b\x99\x1f\x23\x32\x9d\x13\x4f\x8c\x23\x56\x64\x09\x07\x82\xab\x1e\xed\xfb\x30\x4f\x4d\x93\x9b\xe6\xd7\xb5\x2b\x50\xb8\xe1\xa4\x9b\xa5\xba\xf6\xb8\x6e\x69\x50\xb7\x84\xae\x7b\xf6\x86\x17\x45\x78\xcb\x29\x97\x04\x07\x63\xfe\xdc\x4b\x25\xf4\x9b\x2a\x67\x6b\xde\x5b\x14\x47\x5f\x59\x95\xb4\x4b\x88\xbc\xd2\xfe\xab\x16\xf6\x34\xbb\xe1\x17\x16\x79\x0a\x55\x40\xf8\x4e\x30\xe4\xd7\xdf\x5d\x29\xb7\xc5\xb7\x59\xb8\xe4\x4b\x83\x7e\x01\x24\xae\x37\xaf\x8c\x83\xfc\x05\xa9\x7a\x6b\xc9\x2b\x61\xe5\x4b\x1f\xa6\x7e\x25\xe7\x9a\x13\x5b\xd2\xff\xd6\x99\x5e\x77\xc8\x16\x27\x8d\xe4\xd1\xf0\xb0\xf5\x0d\x8d\x2e\xc5\xfc\x3f\x87\xb1\xf0\xd4\x73\x6b\xd1\x59\xd2\x7e\x60\x31\x1e\xab\x9a\x31\xe7\xbd\xad\x2a\x20\x65\x69\xd5\x2f\x6c\xe8\xd0\xa1\x33\x44\x17\xf6\x56\xfe\x97\x4e\x59\x7e\xd5\x5a\x18\x21\xf5\xef\x83\x4a\xbd\x88\xf9\x70\x50\x4c\x8e\x8d\x1a\x51\xb6\xd9\x26\x5c\xa0\xa9\x48\x28\x33\xfc\x08\xcb\xa0\x2c\x11\x5e\x4a\xe4\xd3\x53\x4c\x73\x78\x10\x02\xdb\x5e\x66\x3f\x46\x79\x96\x24\x8b\xd6\x64\xab\x16\x89\x67\x85\x3d\x81\xac\x8f\xcc\xdd\x61\xc6\x6a\xe2\xe4\xf2\xf9\x5b\xe7\x7a\xe2\xe6\xe2\x36\x49\xb9\x22\xe6\xd0\xa4\x3e\x1f\xa0\x3b\x65\xba\x88\xc6\x1a\x1a\xaf\x02\x52\x2c\x4a\xfa\xd1\x20\x4e\x07\x31\x80\x34\x27\xca\x9b\x83\xe6\x7e\x14\xd0\xa1\x23\x2d\xfd\x2a\x9f\xf8\xfa\xe8\x45\x8a\xeb\x43\x07\x37\xc2\xb2\xb4\x0a\xbc\xb1\x6d\x07\x5b\xf9\xc2\x4a\xab\x83\xeb\x8c\x50\x79\x8f\x3c\xf1\xac\x1d\x4b\x69\x7a\x70\xba\x57\xd9\xf1\x69\x3a\xf1\x54\xda\xe6\xa8\x03\x82\xe8\x45\x82\x06\xde\xa9\x25\xa0\x43\x39\x2d\x16\x99\xa7\x54\x38\xf8\x25\xa2\x55\x92\xe6\x84\x11\x2f\x84\xb7\x5b\x54\xfd\x20\x5e\xb2\x80\x4c\x0e\x64\xf2\xc2\x3d\xfd\x89\x9d\xbc\x1f\x6f\x8a\xf1\x09\xfd\x2f\x76\x32\x96\xf6\x05\x44\x57\x50\x7d\xd9\x56\x94\xdb\x22\xfb\xdb\x76\x5b\x5b\x26\xd4\xd9\xfe\xd2\xb2\x13\xaa\xec\xd0\x7e\xa2\xc6\xa6\x18\x6b\xe1\x78\xfe\x8b\x7e\x29\xcd\x19\x9e\xf5\x2d\xb1\xf6\x91\xb8\x8c\xd7\xa4\xbf\x0f\x47\xda\x81\x79\xd3\xc5\xbf\x22\xf5\x88\x0b\x5b\xdd\x9d\x2a\xed\x32\xe0\x69\xf4\x57\x7b\x17\x2f\x47\xa3\x3d\xfe\x32\x97\xfe\x55\xbf\xf0\x19\x63\x27\xf5\x29\xd6\x7d\xbd\xb6\x4e\x78\x96\xa7\x3d\x7d\x26\x6f\x9e\xd6\x23\x40\xb6\x4b\x30\xe1\x29\x95\xbe\x54\xa9\x36\xae\xf5\x54\xcf\x47\x95\x09\xb3\xa0\x51\x96\xae\xe2\xdb\x1d\x5e\xc4\xef\xc9\x53\x75\x2a\xf6\xb4\xe0\xe2\xd8\x9d\x91\xf2\xb8\x09\x47\x50\x05\x3a\x3e\xd0\xb4\x09\x92\xf9\x7f\xb1\x04\x09\x58\xda\xb9\x68\x54\xa6\xe4\xa4\x7d\x2b\x66\xd6\xbd\xb5\x5a\x9b\x78\x89\xee\x18\x07\xa5\xd5\xb2\xd7\x19\x3a\x88\x67\xad\x0f\xb2\x07\x7b\x1a\x46\x11\x2f\x8a\x63\xfa\xf1\xa6\xfa\xb2\x14\x7d\x3a\x5b\x61\x9a\x75\x9e\x74\x51\x9f\xc5\x40\x17\x3d\x79\x34\x53\xc8\x57\x9a\x12\xda\x1c\x8b\x2e\x52\x4f\x90\x43\xc5\x53\xeb\xf0\xae\x3b\xdd\xfa\xe2\xce\x51\x52\xaa\x5f\x61\x37\x65\x96\xe8\xdc\x1c\x2c\xc8\x42\xa0\x6a\xfa\x2f\xd0\x17\x06\x03\x26\x71\x3a\xc8\x17\xbe\x08\x3c\xd1\xd2\x64\x12\xdd\x34\x5a\x32\x0c\xea\x4a\x96\xdc\x17\x7e\x1a\x04\x7b\x4b\x07\x05\xd0\x78\xed\x9e\x5b\x79\x8d\xfc\xc7\x10\x4f\xb1\x85\xaa\xce\x4e\x2a\x08\x35\xeb\xb0\x78\x1d\x8a\xf0\x8f\x63\x7d\x33\x76\xd3\x1c\x76\xfb\x23\x80\xcd\x82\xe2\xdf\xa0\xdf\xc3\x5f\xe9\x3f\xd4\x2f\xe7\xca\xdc\xe1\x49\xda\x3a\x3c\xbf\xde\x97\xd7\x7e\xf5\x1c\x90\x67\x78\xe5\xda\x89\xff\x6a\xfc\x8f\x40\xa7\x36\x29\x3f\x30\xa9\x6b\xa6\xbd\x7b\x03\x0b\xc1\x0b\xaa\x8c\x65\x28\xc2\xb1\x31\x12\xba\xf5\xab\x31\x7e\x66\x1a\xdd\x20\x02\x07\x58\x85\x97\xf5\x76\xef\xe9\x97\x72\x5e\xda\x43\x9f\x0c\x91\xef\x70\x6b\xc4\x0b\xf5\xc3\xa4\xe0\x86\xdc\x75\x2d\x03\x28\xbb\x8c\x1f\x85\x51\xb2\x38\x63\x6c\xc4\x47\x86\xb1\x18\x71\xaf\x31\x7c\x5d\x7c\xf3\xe3\x77\xdf\x4a\x2b\x06\x5c\x3a\x64\x6f\xa5\x95\x38\x99\x91\xa7\xfd\x3f\x34\x24\x96\x4e\x52\x29\x6b\xc7\x2c\x4c\xf7\xf7\xfa\xb1\xf8\xc1\x54\xaa\x6c\xff\xb0\x55\xa2\xc5\x49\x59\x7e\xa3\xbd\xed\xe9\xb2\x5d\xa6\xb5\x0c\xff\x61\xcb\x65\x5a\xf5\x41\x2d\x9c\xd7\xdd\x22\xe4\xe9\x1f\x8a\xab\x52\x61\x1e\x7f\xf9\x58\xad\xdf\x74\x6b\xfd\xe5\x68\xb5\xdf\xb4\xaa\x45\x36\x45\x33\x04\x38\x68\xa4\x13\x85\x5f\x9e\x09\xd3\x10\x04\xea\x58\xb3\x68\x6d\xa1\x91\xb4\x87\xd1\x8e\x7b\xf0\x34\xe8\x1f\x48\x4e\x62\x69\x04\x16\x6b\xa7\xe6\xc3\x6f\x64\x0a\x35\x14\x10\x01\x59\x0a\x83\xa8\x0b\xad\xd2\xda\xdb\x50\xae\xe6\x10\x45\x05\x68\xc7\xca\x19\xbc\x48\xbe\xba\x89\x7e\x26\xb1\x55\x1e\x50\xfd\xc5\xca\x95\x8a\xf5\x14\xf6\x79\x2e\x5d\x2b\xf1\xb2\xe7\xf9\x37\x88\x0b\xdd\x66\xf5\xe0\x9d\x99\x7a\x38\x54\xb9\xa8\xa3\x66\x14\x7b\x75\x16\x5b\xe2\x57\x75\xaf\x3f\x21\xde\xdf\x0e\xee\xeb\xaf\xc2\x6b\xc4\x2b\x2b\xd6\x48\x6e\x1d\x09\xb1\x26\x07\x56\x5a\xc1\x8c\xa2\x55\x90\x9e\x80\x23\xe1\x84\x2c\xd2\x2a\xe4\xe6\xa7\xfb\x03\xf3\x0d\xb2\xbf\x8a\xcd\x4a\x0f\xa5\x3f\x99\x32\x74\x8e\xa1\x65\xe7\x66\xff\xc3\xc6\x14\x6a\x35\xe3\x57\xc7\xec\x0a\xbb\x7e\xdf\xf1\x1d\xef\xdf\x6f\x01\x1c\x8d\xc5\x15\x43\x6f\xd0\xd5\x83\x41\x46\x06\x16\x32\x68\xce\xbe\xa9\xf7\x23\x9a\x9a\x26\x46\x77\x3e\xb8\x3e\x1e\x72\x69\x4b\x41\x37\xce\x49\x09\xf1\xf2\xe6\xd8\x06\x6f\xdd\xdb\xd3\x25\x3f\xec\x54\xe5\xf5\x73\x6f\x63\x1a\x7c\x62\x55\x7f\x68\x5e\x5f\x74\x85\x77\x5e\xd5\x2e\x53\xec\xde\xfe\x05\xb3\x83\x7c\x58\xc8\xf0\xb2\x46\x9c\xd6\xca\x72\xa6\x2e\x9d\xd1\xca\xe4\xe3\x31\x3a\xe3\x5a\x50\x33\x53\x56\xb0\x55\xe8\x5e\xbd\x2c\xa1\x6a\xbb\x89\xf1\xbc\x8b\xd6\xa7\x8a\x3a\xf4\xef\x6d\x35\x16\xb9\xb2\x09\x3a\xf5\x0e\x73\xd3\xc4\xa5\x8a\x87\x2c\xa8\xa5\xb0\x80\x3c\x34\x3d\xed\xbf\xa1\x5c\x81\x1d\x73\x18\xf3\x9a\xca\xc8\x09\x48\x91\xe2\xd5\x60\x4e\xe9\x93\x3c\xc2\x39\xae\x5d\x3f\x50\xf2\x68\x54\xc8\x17\xf5\x1c\xa7\x81\xc4\xd0\x03\xb2\x74\x7c\x8e\x26\xd5\x19\x75\x9f\x21\x90\x25\x18\xa7\x9c\x01\x78\x69\x0a\xc0\xee\xa2\xfc\x8b\x74\x51\x4d\x72\x45\xda\xea\x4b\x31\x6a\x4e\xcc\xeb\xc7\xf6\x36\x8e\xd4\x4b\x6c\xde\xc6\x03\xb5\x14\xa8\x9a\x62\x2e\xed\xea\xab\x89\x05\x06\x0a\x8d\x6d\x9a\xc9\xd3\xd6\x4e\x0f\x72\x7e\x62\x05\xf6\x57\x13\x25\x3c\xcc\xff\xfa\xd1\x9a\x14\xe2\x48\x24\xa7\x7e\xd0\xab\x15\xd4\x59\x3a\x97\x66\x6d\xdd\x93\xdc\x1c\x68\xd8\xb2\xd2\x2a\x74\x7d\xdb\x78\x9c\x97\x65\xd6\x92\x96\x63\xea\xc7\x01\xd9\x23\xaf\xf6\xb1\x19\x94\x33\x82\x0e\x41\xb2\x8b\x32\x02\x96\x95\x2a\xa2\x10\xfb\x61\x40\x79\x0b\x69\xe5\xbd\x2c\x88\x98\xb0\x13\x8c\x46\x54\xbd\x21\x2e\x16\x8d\xf8\x56\x58\xba\xc6\x4e\xd4\x6a\xa3\x1c\xaf\xae\x1d\x07\x0b\x60\xb2\x96\xcf\xaf\xed\x92\x5c\x2f\x47\xd6\xc2\xf3\xf9\x9b\x00\x13\xae\x97\xa3\x92\x9c\xa8\x4b\xe8\x68\xd6\xbe\xe0\xf6\x7d\x75\x8f\x30\x61\x25\xb1\x8c\x51\xce\x47\x06\x41\xe9\xef\x7f\x05\xcf\xeb\xeb\x81\x63\xce\x7c\xe3\x5d\xb6\x35\xa8\xf1\x43\x7c\xbb\x16\x06\x35\xfe\x9c\x09\x91\x6d\x0c\x6a\xbc\xe5\x2b\x61\x04\x34\xe4\xec\x40\xfe\xa7\x45\x5f\xb4\xe3\x81\x66\x65\xd7\x09\xff\x2c\x0d\x59\x40\x22\xcb\x36\xdb\xac\xe0\x4b\x34\x1e\x0c\x91\x37\xfb\x21\xcb\x54\xbc\x1e\xeb\xdf\xa8\xb6\x2c\x5b\x95\x58\x11\xc6\x75\xef\xe4\x53\x20\x3d\x70\xec\x54\x6b\x37\xcd\x52\xe4\xfa\x2c\xce\xe4\x45\x64\x85\x78\x4c\xf0\xfe\x38\xbc\xe0\xbc\x54\x9e\x2d\xad\xaf\xa6\x89\x2c\x9e\x69\xd6\xa5\xef\xed\x08\xe9\x91\xa1\x72\x18\x64\x4f\x77\xdd\xbb\x83\xeb\x03\x2f\x1a\xd3\x90\x3d\x49\xd4\x8b\xa5\xc4\x16\xfa\x71\x50\x35\xe3\xc7\x01\x6d\x1e\x99\xa8\xae\x0c\xc2\xac\x40\xc4\xab\xfb\x65\x71\x1f\x21\x54\x10\x2d\x37\x54\xd4\x88\x7c\x0d\xef\xbd\xe5\x7d\x9d\x98\x38\xb4\x60\xf9\x61\x58\xd4\x41\x6e\x47\xbb\xdc\xd2\x63\xd7\xeb\x53\xa2\xb6\x38\x34\x60\x88\x18\x60\x31\x9e\x0f\xa5\x18\xd2\xd6\xc2\x0c\xf2\xee\x7f\x5f\x04\x0b\xc3\xf0\x8c\x2d\x6c\x5f\xbb\x96\xef\x45\x27\x5b\x59\x42\xa6\x21\x63\x89\x69\x8e\x22\x62\x9a\x19\x97\x56\xc9\x75\x73\xd2\xc9\x77\x67\x9a\x3b\x7f\x1a\xa0\x2f\x3d\xf2\x68\xd1\x09\x9b\xd0\x84\x25\x65\x09\xdf\xe9\x8e\x8d\xa2\xb2\x74\xe5\x22\xbd\x97\x70\xc1\xce\xee\x46\x09\xa1\x96\x3b\x8e\xc9\x73\xcb\x1d\x5b\x31\x74\xfb\x24\x2a\x4b\xfb\x94\x90\x17\xcc\x31\x4d\x2b\x64\x0e\xa1\xbb\x13\x16\xcf\xf5\x72\xd6\xee\x39\x9b\x10\x28\xac\x0e\xd0\xf7\x9a\x97\xc1\x8e\x8d\x76\x65\x09\x2d\x3a\xb0\x25\xfb\x6e\xb0\xd8\x8d\x2c\xf8\x1d\xb9\xe4\x79\xea\x4f\x02\x6f\x84\x67\x10\x39\x10\x02\x7b\x97\xc6\x82\x25\x34\xb7\x0b\x11\xe6\x82\xed\x68\x6e\xf3\x74\xc9\xd0\x63\x1d\x15\x27\x2b\x8e\x78\x51\x4d\xda\x92\xeb\x81\x7c\xbb\x0b\x20\xd7\xbc\xa3\x68\xc6\x56\x5c\x97\xf6\x65\xb4\x59\xfb\x26\x5b\x3e\xb6\x2e\x36\x49\x3b\x9e\x6f\x18\x94\x43\xe1\xaf\xd0\xf0\x97\x7e\xec\x86\xce\x1a\xef\x25\x5b\x61\xdc\x24\x59\xf4\x9b\x41\x28\x76\x81\x65\xad\xdb\x4d\xd7\xdd\xcb\x3b\x81\x0b\x96\x26\x13\x0e\x0d\x9b\xe8\x27\xf1\x8b\x70\x1e\x8f\x46\xc4\xca\x31\x9c\xb8\x5a\x88\xe8\x9a\x9e\xb7\x97\x1f\x15\x0b\xab\xee\x01\xcc\x42\x06\x88\x2f\xa9\x71\xae\x0d\xa1\x2c\x65\xf8\x04\x3f\x06\xac\xec\x54\xc2\xf0\xfe\x39\x5c\xdd\x79\x77\x75\x27\x1c\xcd\x5e\x64\xbd\x4b\x29\x37\x7a\xb2\xc5\xa1\xd6\xa2\xfc\x42\x25\x2f\xaf\x35\x4c\xd3\xca\x6f\x02\x03\xae\xab\x71\xc9\xe3\xac\x4c\x46\x4a\x87\x11\x76\xfa\x03\x29\xc7\x6c\xa4\x8b\x75\x76\xdf\xb3\x12\xd7\x6a\xaf\x45\xae\x79\x1d\x2f\xfb\xac\x04\x54\x1e\xb2\xa7\x22\xbb\xbd\x4d\xfa\xb6\x61\xe3\x26\xcb\x12\x1e\xb6\xfc\x7d\x17\x4a\xca\x80\x96\x2d\x65\x1f\x0f\x2d\x54\xcf\x07\xdb\x7f\xa2\xda\x59\xdc\xcb\xdf\xaa\x64\xf5\x2a\x0b\x4b\xb6\x1c\x09\xf2\x8d\x52\x22\x54\xf1\x9e\x4a\x8c\x00\x85\x97\xc0\x6f\x38\x3b\x69\x7b\x43\x75\x9c\xa1\x4e\x62\x7a\x05\xc5\x9f\x95\xef\x37\xd9\x72\x97\xf0\x67\xe5\xf5\x89\xb5\xf0\x7e\x0d\xef\xc2\x92\x47\x9b\x90\x14\x51\x1e\x6f\xc5\x49\x4c\x6f\x39\x7b\x92\x01\xe5\x3c\xdf\xa5\x46\x75\x1d\xd2\x66\x97\x88\x78\x9b\x70\xf6\x59\xf5\xf4\xd9\x4b\x83\x1a\xcd\x45\x48\x01\x15\x6b\x1e\x2e\x65\x21\x74\x59\x95\xe9\xea\x31\xa0\x51\x96\x78\xfe\xa4\x4e\x7c\x11\x65\xc9\x6d\x9e\xed\xb6\x32\x5b\xfd\xa6\x95\x10\x79\xab\x80\x80\xb5\xa9\x2a\xc5\x47\x3d\xeb\xd2\xf3\xa7\xdd\xac\x2f\x44\xae\xb2\xe7\x2f\x7b\xca\xfc\xa2\x3c\x21\x3d\xdf\xa1\x86\x41\x0d\x23\xd0\x28\xc9\xa3\x7e\xeb\x6d\xad\x6f\xf8\xc8\x2d\x7c\x87\xb7\xbc\x1d\xb9\xaa\x51\xc6\xce\x21\xde\x91\xaa\xba\x97\x1d\x2d\x7a\xee\x3f\xaa\xaa\xf0\x03\xda\x51\x15\x4a\x07\xbb\x45\x6d\x62\xca\x03\x8a\x1e\x44\xf5\xb8\xee\x0e\xae\x06\x76\x90\x2e\x56\x52\xfb\x8b\x7c\x9e\x8e\x46\x44\xae\x51\xee\xa7\x01\x35\x6e\x93\xec\x26\x4c\xde\xdc\x85\x89\x81\xae\xcb\x92\x70\x88\x6e\x1a\x21\xfb\x5b\x6e\x67\x5b\x81\xf3\xc8\xe4\x73\x9c\xa5\xf4\x96\xdb\x08\x7b\xf8\x24\x56\x59\x26\xe0\xa1\x9a\x6f\x7c\x0e\xe5\xc1\xd8\x2d\x5a\x62\x86\x4b\x2c\xb1\xc6\xd7\x25\xa2\xfe\x2b\xc0\xef\xd2\xfc\xd3\xe2\xfa\x7e\x34\x3f\x69\x26\xe9\x68\x28\xa7\x2a\x90\x08\xdd\x32\xa1\xe8\x77\xb5\x0b\x7c\x91\x87\xb7\x48\xc8\x49\x15\x25\xc9\xa1\xeb\x06\x00\xcb\x17\xeb\xf9\x52\xfa\x41\x60\xa8\xa7\x65\x40\x64\xe8\xcb\x98\x74\xcf\x48\x62\x42\x2a\x38\xaf\x68\xac\x85\x42\x8a\x03\x2f\x6e\x8e\x46\x5e\x29\x85\x57\xac\x74\x24\x21\xc3\x28\x0e\xad\x6b\xbf\xba\xde\xd5\xcb\xf8\x0e\xa8\x6d\xc1\xac\x8d\xda\xd5\x63\x52\x96\xbe\xc4\x52\x72\x18\x70\x3f\x62\xb7\xdc\x2f\x82\xb2\xbc\xe5\x76\x85\xd6\x34\xd4\x1c\x94\x23\xd8\x61\xef\xed\xb5\xd8\x24\xdf\xe7\x5c\x99\xfa\xc6\x64\x14\xc1\x5e\xbb\xc3\x48\x02\x32\x7c\x51\xc8\xc2\x26\x8e\xf3\xbc\x19\x5f\xd8\xba\xfc\xdf\x0a\xd9\x56\xb7\xa5\xd6\x63\xa4\x32\xc3\x50\x81\xcc\xa4\x00\x5f\x0d\xee\x1d\x7f\x90\x5c\x67\x75\xd9\xc5\xb6\x53\x0a\xa6\x62\x1e\xb3\x95\xbf\xac\xa2\x57\xe4\xe8\x9f\xa4\xcc\x11\x63\x9a\x93\x97\x63\x97\xa0\x39\x93\x0a\xb5\x55\x03\x39\x61\xf2\x04\x3f\x64\x8f\xdc\x6a\x03\x37\x26\xd4\x90\xd4\xcd\xc0\xd0\x5c\x77\xdc\x0a\x09\x95\x17\x4e\xef\xb0\xc5\xd0\xdf\x61\x8b\x57\xd5\x4c\x55\xb1\x1a\x0d\x52\xfb\xba\xc6\xf5\x56\xb3\xdd\x0f\x0f\xed\xba\x8e\x22\x59\xab\x2b\xe1\x91\x79\x16\xec\x20\xe5\x13\xf7\xc7\x21\xed\x47\xa6\xa3\x9d\x5c\xdd\xa2\x47\x8d\xe6\x3e\xbd\x6e\x1e\x75\xa7\x9c\xe8\xb9\x7d\x8e\x5e\xc9\xb0\xa2\x9f\x27\x59\x8a\x66\xeb\xf0\x8b\x93\x36\x74\x48\xe7\xad\xc6\x92\x2a\x12\x29\x6d\x7b\xc4\xc3\xe4\x86\x39\x0f\x5f\x3e\xbc\x38\xa9\x9f\x0d\x7a\x65\xa7\x19\x56\xff\xb9\x2c\xc5\x30\x96\xe9\x91\x9a\x5b\xbe\xea\x96\xdc\x07\xef\x61\x23\xfb\x8d\x3f\x9e\xd0\x0f\x6a\x47\xdc\x64\xbb\x82\x97\xdb\x2c\x4e\x05\xcf\xcb\x48\x3a\x1d\x6f\x78\xba\x2b\x97\x79\x78\x5b\x2e\xf3\x6c\x4b\xca\x28\x89\xa3\xdf\x4e\xe8\x77\x58\xc6\x7f\x6f\x07\xcf\x09\x08\x8b\xb6\x65\x8f\x48\x49\x34\xa2\xf2\x8e\xeb\x97\x1d\xd4\x9f\x1f\xb4\xcf\xda\xbd\xe3\xdf\xf2\xb6\x4b\x33\x63\xac\x63\x23\xa5\x52\xc2\x76\x98\xd9\xc6\x84\x7c\xbf\x47\x2f\x67\xcb\xc0\x28\xb5\xc8\x53\x68\xdc\xe0\xdb\x4e\xa8\x38\x34\xd3\xa1\x45\xe7\xc0\xb6\x3e\xe2\x42\x0a\x53\x0c\xe2\x1e\x1d\x4b\x8a\x4a\xd6\xbc\x2c\x53\x9a\xd6\x42\xba\x20\xd8\x40\x81\x0d\x08\xbf\x08\x68\xac\xf1\x54\xf1\x4a\x79\xeb\xe4\x32\x3e\x0d\x63\xd9\xc2\xca\x58\x4a\x73\x56\x57\xe1\xa9\x04\xd3\xec\x39\x73\x4b\x21\x7b\x4e\xf3\x3a\xb3\x7a\xd5\xba\xa0\x42\x9e\x67\x24\x63\x0f\xbc\x5e\xcf\xc3\xac\x0e\x58\xa0\x07\xec\x8f\x51\xea\xc8\xa8\x95\xf5\xca\xbe\x16\xb1\xb3\x15\x5e\xb8\x14\xf6\x1b\x3c\xee\x89\x7d\xbb\x8b\x97\x2c\xc4\x1f\x0c\xda\x87\xef\xf7\xf8\x33\x1a\xe1\x65\x1a\x3d\x9a\x1a\x7e\xc7\x53\x81\xca\x08\xe5\x6f\x91\xd1\x5c\x9e\x47\x37\x33\xf5\xa6\x3e\xac\x49\x17\xd6\x37\xf5\xd9\xc5\xd0\x45\xad\x6a\x5d\x01\x7c\x7b\xaa\x2f\xf8\xf6\x86\x2e\x5d\xe3\x4d\x34\xf9\xc1\x21\x94\x54\xe3\xab\xdd\x16\x9b\x45\x81\xce\x35\xb9\x1d\x17\xef\xf2\xf8\xf6\x96\xe7\xca\xf5\x4b\x48\xc7\xd1\xca\x52\x9b\x58\x55\x8b\x18\x41\x21\x4c\x50\x5e\x7c\xda\x13\x7b\xc9\x13\x7e\x0b\xc4\xb8\xba\xa2\x5f\x64\xdb\xef\xf3\x6c\x1b\xde\x86\x72\xb0\xf5\x0c\xc4\x3d\x26\x4c\xdf\x34\x1a\x6a\x41\x63\xd4\xaf\x56\x3d\xa3\xaa\x1f\x16\xa1\xf1\x90\x31\x2b\x6b\x77\x9c\x94\x65\xbe\x68\x15\xc7\xfb\xb9\xf1\x2e\xf4\x21\xcc\x7e\x7d\x58\x0e\x3d\xfa\x7a\xb3\xe1\xcb\x38\x14\xbc\xd5\x35\xca\xd1\x3d\x8c\xa7\xe2\xb5\x24\x0b\xa8\x0c\xba\x6b\xee\x0b\x8a\x9b\x23\x8c\x56\x53\xea\x60\xb9\x82\x89\x90\xa0\xb3\x6a\x5d\x77\xec\x3b\x01\xbd\xb7\xd1\xb2\xa2\x39\x11\x27\x34\xae\x03\x4d\x57\xbe\xa2\xf4\x63\xfd\x43\x2f\x97\x46\x21\xd9\xa8\xc0\x61\x17\x6b\x23\xc0\x3b\x4e\xf6\xea\x1b\x7b\x92\x3c\x94\xf7\x74\xe8\x91\xd7\xba\xf4\x42\xe7\x6a\xaa\x4b\x27\xe8\xa6\x6a\x86\xc8\xeb\x21\xf0\x10\xc6\x56\x18\x85\xb2\xa0\x15\xb3\x94\x54\x5f\x68\xc6\xe2\x3a\x42\x06\xea\xb3\x8f\xb8\x41\x86\x1c\x6d\x34\xaa\x65\x92\x76\x96\x09\xb5\x22\xb6\x91\xfd\x2f\x48\x59\x6a\x6f\x18\x67\xd4\x0a\xd9\x46\x35\x89\x91\x31\xeb\x37\xa6\x1f\xad\x34\x06\x89\xfa\xb4\xf0\x25\x3a\xec\x09\x19\x65\x40\x26\x81\xc8\x87\x51\x25\x2a\x45\x8e\x66\xf2\xa6\x6e\x45\x26\x34\x61\x96\x3a\x8b\x30\x88\x7e\xca\x0c\x1c\x53\xc5\xdd\x25\x78\xc4\xcc\x6e\x98\x55\xb0\xef\x14\x67\x25\xfc\x24\x50\x41\x8e\xdc\x80\xae\x99\x55\xf8\xff\x2f\x75\xef\xc2\xe5\xb6\x8d\xac\x8b\xfe\x95\x16\xae\x87\x07\xb0\xd0\x6a\xb5\x93\xc9\xd9\x43\x19\xe1\x72\xec\x38\xc9\xc4\x1d\x7b\x62\x67\x92\x0c\x5b\xd3\x8b\x2d\x41\xdd\x8c\x29\x52\x21\xa1\x7e\x58\xd4\x7f\xbf\x0b\x55\x78\x91\x62\x3b\xce\x9c\xbd\xcf\xba\x77\x67\xb6\x5b\x04\x41\x10\xc4\xa3\x50\x28\x54\x7d\xdf\x13\x43\x9b\x64\x10\x77\x26\x16\x72\x87\xf1\x65\x14\xd1\x8d\xe8\xcf\xae\x25\xcc\x2e\xbe\x14\xb4\x4a\x36\x9d\x39\x16\x6f\x26\x97\x79\xb9\x34\xd4\x0b\x4b\xfe\xe0\xb3\x5b\xe1\x8f\x5e\x00\xc2\x6d\xc9\xab\x3a\xbf\x82\x32\x2e\xf1\x94\xb2\x76\x92\xa2\xe4\xba\x1f\x62\xec\x15\x6e\xfb\x33\xae\x78\x88\xba\x11\x43\xef\x3e\x00\xc9\x81\x8a\x8e\xee\x62\x27\x89\xae\x0d\x9c\xd0\x84\xb0\xbd\x9e\xdc\x74\x25\x16\xa8\xfe\x52\xf3\x53\xa4\x73\x2f\x41\x9e\x57\xdb\x52\x89\x29\xdf\xe8\x99\xb6\xdd\x44\xd1\xe8\x74\x24\x84\xb9\xf2\xd8\x18\xd7\x3c\x03\xb3\x63\xdf\x73\x49\x0b\x9f\x03\x6f\xa6\x25\xcf\x18\xe3\x1b\x7d\x43\xb7\xb3\xfe\x6b\x4b\xda\x32\xbe\xb5\xa3\xd8\x8e\xca\x6e\x82\xc0\xe6\x60\x8c\x57\xc9\xca\x86\xbf\xac\xba\xf5\x1d\x8f\xf9\x94\x6f\x59\x6c\x54\xd3\xad\x17\xcd\x38\x09\xf5\x47\x06\x47\x6a\xff\xc1\x64\xf4\x67\xcb\x51\xd4\x99\x9a\x51\x14\xce\x19\x0b\x3f\xfa\x89\x43\x36\x5f\xd1\xff\xa3\x51\x8b\xaf\x7b\x70\xf0\x41\xf7\x0a\x5a\x7f\x7c\xf0\x02\x5f\x09\x6f\x44\x03\xb4\x61\x3d\x62\xa6\xf3\xf3\x09\x23\x63\x3b\x86\xce\xcf\x27\x34\x89\x27\x8f\xcf\xcf\x27\x2d\x23\x6c\x4c\xa8\xfe\xf5\x88\x11\x60\xc6\x10\xab\x00\xea\x6b\xc6\xb6\x62\x05\x48\x5f\x55\x14\x5d\x8e\x84\xd8\x4e\xec\xc0\x6f\x5b\x40\xfb\xd7\xbd\x0a\xe9\xd8\xed\x4d\x14\x8d\x1a\x1c\xbf\xdb\x89\x1b\xbe\x7a\x81\x89\xa2\x1a\xf2\x35\x8e\x7a\x92\x92\xc7\x8f\xb5\x0a\x54\xb7\xed\xc8\xa7\xeb\x21\xbd\xea\xc0\x7b\x85\xcf\xf4\x86\xcc\xf1\x31\xdf\x18\x73\x5e\x14\xd9\x5f\x7e\x54\xb2\x59\x16\x45\xa3\x95\x5f\x79\xf4\xae\x26\xab\x97\xd5\x6d\xe9\xa6\x84\x4d\xb0\x4f\x5d\xf3\x40\x3a\xde\x86\x0e\x99\x54\xf2\xa5\xbf\x69\x4f\x12\x61\x1a\x7a\x70\xe8\xe5\x51\x5e\x1e\x2d\x98\xed\x4b\x77\x38\xb7\x1c\xeb\x41\x01\xc3\x74\x34\x65\xb3\xbe\x77\xca\x02\x46\xa4\xcb\x4d\xf0\x25\x47\x38\x20\x09\xdb\x43\x18\xd6\xe6\x20\xbe\xa5\x13\x3d\xa8\x87\xbd\x1b\x44\xab\xfc\x4e\xab\x5a\x0b\x38\x4a\xc1\x3d\x5a\xff\xcc\x0e\xa4\x72\xa0\x08\x10\xfb\x36\xd0\x46\xd2\x06\xe1\xdc\x60\x5c\x6d\x0f\x06\xa7\xbb\x6b\x2c\xff\x7a\x93\x2a\x1a\xae\xc4\xe9\x4c\x3d\xed\xbf\x09\x50\x55\x16\xa9\x0a\x1c\xa5\x0d\xe1\x6b\xe3\xc7\x34\xf0\x4e\xe0\xd9\xd7\x68\xab\x95\x89\x17\xe6\x8b\xdb\x16\xba\xaa\x93\x16\x04\xde\x37\x6e\xeb\x6e\xeb\x68\x04\x4f\x13\x66\xe2\x05\x62\xbc\xd0\x4a\x64\xa9\x1a\x8f\xe7\x0c\x46\x6a\xde\x04\x5a\xc2\x5b\x55\x6d\x36\xe0\xc1\x0b\x4b\x75\x33\x59\x6c\xeb\x5a\x96\xca\x54\xad\x9a\xc8\x42\xae\x79\xa9\x4b\xc9\x45\xe5\x5e\x93\x96\x41\x71\x43\xda\x47\x50\x6e\x33\xa9\xdd\xac\x30\x43\x30\x9f\x84\x29\x61\x06\xbb\xe1\x0d\xe7\x11\x6d\xcc\x7b\x5f\x5f\xfe\x26\x72\xde\x4c\xf4\xea\x23\x72\xf8\xe3\x9d\xc9\x68\x2d\xe8\x81\x9a\x99\xbb\xb9\x6b\xf4\x4d\x2c\xa8\x6d\x73\xfb\x29\xcc\xac\xe1\xe6\x4b\x17\xc0\xa9\xa1\x55\x7b\xda\x4c\x6a\xd9\x6c\x0b\x25\xc0\x94\xdc\x1c\xea\x7a\xcd\xa1\xb6\xea\x4f\x06\xb7\x93\x4d\xd5\x28\xdb\x77\x51\xd4\xbd\xee\xf4\x25\xb7\x6f\x02\x07\x30\x6c\xe0\x87\xfd\x68\x60\xc8\xa7\x73\xbe\x10\xaa\x2b\x18\x78\x21\xe4\x04\xa9\x4c\x00\xf5\x3d\x8a\x8a\xd0\x51\x86\x12\xd8\x71\x86\xdc\x0c\x72\x82\xe4\x0f\x5f\x8a\x53\xe3\xc4\x5a\x68\x5d\xe7\x3a\x6f\x66\x85\x28\x3a\xa1\xed\xa0\x6f\x1a\xa8\xaf\xb0\x58\x5b\xea\xc8\x33\x4a\x80\xb3\x73\xe1\xd8\xd7\xcd\x50\x35\x81\xbe\xbb\x3d\x47\x02\x85\x05\x98\xf5\x9c\x72\x9a\xa5\x95\xee\x41\x00\x59\x75\xb2\xcf\x32\xf4\x66\x69\x35\x17\x75\x47\x5f\x48\x6e\x29\x22\xb5\x18\xdf\x1d\x5a\x40\x68\xa8\x81\x31\xc2\x5b\x86\x38\xb7\x70\x6b\x17\xe3\xba\xa4\x28\x72\x61\xb3\x33\xaf\xa1\x37\x06\xb6\x56\x8f\x82\xb8\xf0\xfd\x90\xef\x9d\x47\x4f\x61\xe2\xb8\x9e\xaa\x3f\x7c\x4a\x59\xe8\x49\xc0\xd8\x05\x45\x5a\x8f\x93\x5e\xaf\x0e\x7b\xa1\x1e\x28\xfe\x5c\xf2\x9d\x2c\xb7\x6b\x69\x1d\x50\xfb\x0e\xa9\xe0\x17\x0a\x20\x61\xc1\x26\xd1\x7a\x51\xe9\x09\x90\x97\x59\x01\x85\x3a\x27\x99\xa1\x7b\x9d\xb3\xc2\x8f\x3f\x7e\x70\x27\x95\xf3\x9e\x43\xec\x83\xdf\x67\xbc\x1d\xfe\xe0\x93\x6e\xeb\x5c\xd9\xdf\xc6\x0f\x17\x7c\x3b\xf6\x7c\x95\x0f\x63\x98\xa4\xce\xaf\x78\x9e\xc8\x58\xaf\x01\xa6\x25\xc1\xaf\xce\x48\x84\x78\x57\x54\xd9\x32\xde\x95\xd5\x57\xdb\x4b\xe3\xce\xcb\x61\x08\xc7\x3b\xd0\x14\x07\x5c\x2f\x75\x85\xdb\xd6\xed\xfb\x2f\x8d\x90\x52\x16\xb3\x53\x4d\xa0\x80\x28\xfa\x9a\x2a\x6e\x0d\x65\x51\xf4\x35\x40\x3b\xe2\xf4\xd0\x1b\x2c\x3e\x3a\xdd\x73\xb3\xa9\xf8\x9f\x79\x0b\xe3\xfa\x6b\xdc\x31\xc2\x80\x13\xa9\x95\x0f\x7f\xf2\x25\x66\xc5\x74\xef\x69\x5b\xb8\x9f\xc1\x2a\x7d\x29\x57\x55\x2d\xb7\x25\x36\x6c\x28\xe5\xba\x35\xb0\x82\x5a\x1a\x69\xa7\xe5\x4f\x67\x0c\x81\xef\x6c\x27\x65\x82\xf5\x04\x73\x9b\x7b\x8e\xed\xf7\x7b\x8c\x62\x71\x6a\xca\x81\xb7\xbe\x1c\x8a\x2a\xd1\x2f\x1c\x0a\x36\x41\xaf\x47\x3b\xef\x0e\x19\xc6\x47\x30\x64\x3b\x08\x58\x98\xd5\x23\xd0\x86\x83\x8d\x2b\x88\x63\x45\x71\x98\x0c\xcc\x22\x0b\x19\x05\x6e\xee\x98\x0d\x13\xf2\xc6\x2c\x2e\x6f\x70\xa9\x91\x4b\xe1\xe0\x31\x5d\x92\xf5\xe5\x03\x39\xde\xbf\x69\xd6\x2e\x19\x36\x5c\xf2\x4e\xc6\x77\xf6\x95\xb8\xac\xdb\x71\x10\x45\x9f\xe1\x72\x00\x57\x81\xdf\xb2\x4d\xf1\x4b\x40\x6c\xd3\xb0\xa0\xae\x9a\x20\xbb\xd7\x98\x05\x60\x72\xe5\xd2\x65\xe9\x5c\x9b\x53\x48\x6c\x02\xae\x70\x67\x08\xbb\xcd\xd0\x7e\x33\x51\xf9\x5a\xbe\x55\xd9\x7a\x23\xb0\x45\xed\x65\xdb\xbe\xc8\x94\x9c\x94\xd5\x2d\x35\x96\x1e\x3f\xf9\x01\x7a\xa2\x13\x48\xe0\x11\xce\x62\xd3\x4b\xfc\xb0\xa9\x75\x1b\x0d\xa9\x46\x98\xfe\x11\x1d\x07\x33\xbc\xcd\xd7\x5b\xf8\xbe\x78\x74\xca\xbb\xaa\xc2\x61\xd8\xf5\xe1\x98\x98\x3d\x34\x00\xde\x49\xae\x57\x6f\x73\xdb\xbd\x05\xf8\xb1\x7a\x0a\xc9\x9e\xf7\xf4\x91\x3f\xf3\xe2\xc3\xef\xfa\xd8\xab\x0f\x14\x1f\x7c\xf7\x50\x2b\xfd\x99\x4a\x7c\xa4\x95\xff\xa8\x36\x0f\x98\xe8\xf0\x0c\xfc\xa0\xb6\x7b\x87\xdf\x94\x15\xea\x7b\x79\xaf\x57\x99\x4b\x58\x10\x00\x29\x6d\xa1\xe7\x79\xe1\x96\xa6\xeb\xac\xbc\x92\xcb\x77\xd5\x16\x10\xec\x75\x8a\xaa\x0b\xf3\xd4\x52\xaa\x2c\x2f\xf4\x2f\xe8\x8c\x37\xd7\x59\x03\x0f\xad\xa5\xca\x4c\x96\x4d\x76\x25\x7f\xb1\x3f\x7e\xd5\x3f\xc0\x4b\xd3\xdc\xbd\xc9\xe5\xad\x79\x4b\x8d\x0b\xe1\xd2\xbe\xb5\x7e\x6e\x7e\xbf\xc7\xac\xef\xe5\xbd\x4d\x31\x74\x60\xee\x17\x56\xab\xc8\x65\xa9\x7e\xf1\x3f\xe1\x65\xd5\x6a\xd5\x48\x4c\xc5\x9f\x90\x6a\x4e\x27\xbe\x5b\x06\x17\xb0\xc7\xd6\xd5\x5b\xd4\x52\x96\xbf\xf8\x9f\xf0\x04\x4e\xff\xa0\x15\x54\x65\xce\x0e\xf0\xc2\xa5\xdf\x5e\xe7\x43\x7b\x36\x61\xd5\xcd\x2e\x9f\xb0\x9c\x40\xfe\x28\xba\xb5\x8e\xf8\xb8\x18\x25\x26\x7c\x78\x62\x1b\x22\xf1\x3f\x63\x39\x71\x6d\xe1\x9e\x0f\x43\x21\x3e\xf4\xca\x3a\x8d\x54\x72\x1a\x3f\x89\x54\xf2\x59\xfc\x79\xa4\x92\x27\xf1\x34\x36\x0f\xe2\x58\xb0\xd6\x50\x3d\x4c\x3c\xb8\x17\xf2\xf4\xe1\x41\x48\x5e\x12\x7e\x59\x6c\x6b\x73\x59\x6d\x15\x19\x80\x47\xea\x6e\x3f\xe4\x5c\xf4\xb5\x0a\xa7\xaf\x7c\xed\xfc\x3e\x7f\x78\x48\x37\x38\xcc\x8b\x2b\x7c\xc7\x26\xa2\x80\xc2\xd0\xd6\x18\x8e\x9e\xb4\xe4\xa8\x63\x02\xbf\xab\x1b\x59\x13\x0e\x3f\x0b\x99\xdd\x48\x9b\xbc\x55\xc4\x76\xbb\xc9\x6e\xae\xf0\x01\x73\x61\x1e\xb1\xb7\x3e\xf5\x9b\xbb\x15\xe4\xd6\x68\x13\x2b\xa3\x21\x1f\x0c\x0e\x8b\x9a\x0a\x0c\x09\x9d\x85\x02\x88\x62\xdc\xf6\xcf\x79\x47\x19\xf2\xe6\xba\x6d\x03\x07\x43\x80\x8a\x6a\x5b\xd3\xeb\xc2\x6f\xfe\x78\x29\xdc\x86\x6f\xf8\x20\x86\x9b\x67\x00\xe8\xdc\xb4\x68\xe0\xbf\xd3\x61\xde\xb3\x5e\x78\xa6\x2e\xaf\xbc\x03\x2f\xa4\xef\x79\x55\x1e\x5a\xea\x1e\xca\xce\x4f\xf5\x03\xab\xd5\x43\x91\x64\xe0\xdb\x7e\x28\xed\x75\x8a\x6b\x15\xab\x86\xd4\x61\x53\xf1\x5b\x2a\x7b\x96\x06\x3c\x8d\xaa\xfd\xe6\x3a\xa9\x5d\x13\x8d\xc9\x84\x8c\x83\x5b\xb1\xbf\x05\x0c\x2a\xb8\x23\xe3\xb5\xdb\x37\x83\x68\x1d\x3e\xf6\x33\x64\x3f\xd5\x51\x5e\x1e\x49\x86\xe2\x7e\xb5\x02\xbc\x79\x99\x56\x83\xd8\x9c\x60\x16\x50\x51\xe4\xb1\x28\x02\xf4\x61\x40\xc0\x51\x5c\xb9\x53\x42\x50\x72\x4a\x38\x4e\xb8\x33\xe0\x84\x0f\x9f\x92\x75\xe2\x0a\x78\x69\x22\x19\x8c\x13\xd3\x5b\xf0\x54\x4a\x46\x59\x2d\xb3\xf6\xb2\x6e\x17\x55\xd1\xca\xf5\xa5\x5c\xb6\xd7\x75\x9b\xaf\xaf\x5a\xd0\x81\xdb\x22\x2f\xdf\xb7\x5a\xa4\xb7\x9b\xac\xce\xd6\x8c\x7e\xcc\xb9\x09\x60\x63\xd9\xf9\xc9\x97\x27\x57\x39\x7f\xae\x5f\x80\xc7\xfd\xed\x53\x70\x18\x6b\x9f\xea\xd2\x4e\x72\xfe\x5e\x8a\x13\x73\x54\x7d\xde\x3c\xa6\x49\x9c\xfe\x5b\xcc\x5b\x71\xde\x3c\xb6\x27\xd8\x13\x76\x92\xf3\xdf\xa5\x38\xf9\xf7\x79\xf3\xf8\xe9\x88\x26\xf1\x79\xfa\xfc\xc5\xb3\x77\xcf\xce\xd3\xf6\xf8\x98\xb5\x3a\x61\x7e\x3e\xd7\xbf\xbf\x3c\x6f\x1e\x3f\x0a\x63\xb5\x7e\xee\x1e\x04\x23\x0c\x9c\x5e\xd2\x60\xd7\x40\x0f\x71\x08\x55\x88\x5d\x47\x54\xad\xf3\x01\x12\xb1\xc5\xb0\xa3\x04\xdc\x66\x08\x4b\xa7\xf3\xb6\x0d\x80\xcf\x5e\x74\x29\xd3\x60\x22\x51\x14\xdf\x0f\xb1\x3e\x8e\xc9\x09\x19\x1b\xdd\x37\x28\xe9\x2b\xd9\x8b\xe7\x3a\x41\xd7\x5e\xef\x00\xe1\xe8\x88\xfe\xca\x12\x19\xaa\xd0\x2e\x54\x27\xb6\x5a\xfe\xc1\x5b\xc3\x37\xbd\x91\x83\x96\x15\xbe\x40\x20\x96\x1e\x5f\xac\xde\x06\x74\x6d\xe9\x34\x0f\xa2\x45\x18\xcf\x84\x39\xe1\xe3\x39\xe3\x85\xc8\x9d\x5d\xdd\x4d\x04\x63\x3b\xcd\xcc\x04\xe2\x99\x3f\xa0\xe2\x85\x81\x31\x9b\xf2\x5a\x14\x69\x35\xef\x7b\x3f\x75\x0e\x7c\x79\xc5\x75\x9e\xb4\x9c\xb3\xd9\xbf\xba\x75\x6a\xc4\xbf\x82\x3a\x2d\x44\x08\xbc\xd6\x30\x6e\x02\x7a\x10\xa5\xc4\xb5\xc4\x2f\xb2\xcb\x56\xf3\x00\x9d\xa8\x87\xf4\x2f\xa3\xe8\xb2\xb7\xbe\x2a\x3b\x62\x85\xe3\x81\x8d\xcd\x03\xe8\x70\x49\xac\xc7\x05\x5c\xb7\x2d\x55\x1d\x5f\x0a\xd1\xa5\x01\x08\x4e\xb1\x7f\x0b\xdc\x9e\x95\x28\x8c\xf4\x4e\xe7\x7a\x97\xe5\xdc\xa0\x91\x3c\x87\x6f\xc4\x94\xaf\x3c\xaf\xd8\x52\xac\x8e\x4f\xf9\x35\x20\x8b\xf3\x4b\x71\x45\xaf\xe1\xe4\xe3\xb2\x6d\x57\x5f\x9e\x0e\x45\xb1\x5e\x47\xd1\x28\x74\x38\x89\xa2\xf7\xe6\x3b\xaf\x03\xbe\x82\x9e\xa0\x71\x90\x40\x72\x22\x7f\xa7\x15\x9b\x5d\x46\x11\x84\x70\x8b\xd0\xca\x57\xf1\x1c\x9c\x9d\x28\x63\x8c\xff\x26\x01\x07\x07\x16\x0b\x74\x8a\x5e\xc1\x80\xa2\x95\xb8\xd0\xdb\x79\xe0\x40\xeb\xba\x0a\x8f\x4e\xb9\xe4\x35\xeb\xe0\x4b\x82\x9b\x42\xe0\x06\x15\x06\xcc\xe5\x8c\xe7\x6d\x5b\x1b\xe3\x5b\x23\xc0\x54\xbc\xce\x36\xf4\x5e\xd2\x2a\xf0\x3f\x7a\x21\x1d\x97\xcb\x6c\xf3\x74\x35\xdb\x8c\xc7\x6c\x21\x2a\xbe\x19\x09\xb1\x84\x23\xa2\x5b\x74\x86\xa1\x0b\x0e\x40\x06\x8c\x37\x7a\xb3\x86\x6e\x58\x19\xbf\xd7\x37\x5c\x71\x00\x59\x83\x87\x0a\xe9\x66\xce\x17\x7c\x03\x5f\xd7\x18\xdf\xa6\x2c\xcd\x3c\x9e\x75\xef\x03\xb1\x76\x19\xff\x4a\x32\xdd\x8f\xb3\xcd\xd3\xc6\x54\x26\xd3\x45\x59\x57\xa8\x45\xe8\x0a\x35\x72\x33\x70\xd1\xf5\xfc\xd3\x35\x74\x5a\xc1\x96\x2f\xf4\xdc\x58\x4c\x9a\x7a\x11\x45\x04\xfd\x4d\xf5\x30\x0c\x0b\xeb\x11\x6f\xdc\x4e\x2e\xe4\x4d\x56\xfc\x54\x17\x51\x34\x5a\x4c\xca\xea\x0c\x9e\xd2\xe5\xda\x1b\x58\x20\xdf\x95\x55\xb9\x90\xb1\xce\x53\x2e\x64\xdb\x2e\x7a\xf2\x0e\x92\x09\xdb\xb3\xf8\x99\x7e\x9f\x77\x30\x73\xf1\xb0\xbf\x4b\x60\xe0\x58\xf0\x2d\x73\xa6\xc6\x10\x55\x52\x1e\xb0\x33\xf0\x4a\xa8\x24\x84\xd7\x67\xb1\xe4\xb9\x98\xce\x0c\x67\x53\x6d\x7c\x91\xc1\x6b\xb9\x6d\xb5\xa4\xaf\x83\x38\x7d\xdd\xa3\x32\x2b\x41\x6c\xdc\x23\xab\x63\xdd\xa1\x5e\xa6\x25\x04\x48\xd4\x0c\x9c\xd3\x74\x96\xa0\x8b\x3b\x79\x3b\x7e\xe5\x01\xf1\x9d\x0c\x03\x61\x43\x1f\xbf\x61\xde\x67\xdb\x14\x6f\x25\x27\x4f\x1f\x9d\x7e\xf9\xf4\xe4\xd1\x93\x2f\x09\xe2\x3a\x1f\xe8\x52\x81\x33\x0a\xd8\xc2\x7b\xde\x5a\x40\x96\x64\x41\x9c\xfb\xce\x5d\x51\x44\xfb\x28\x06\xa7\xbd\xa8\x65\x13\x47\x8d\xfc\x1a\x16\xfe\x19\xdc\xf8\x1a\x66\xb0\xa4\x69\x2e\x90\x9a\xae\xcf\x4e\xf9\x8b\xa4\x79\x5a\xcf\x79\x06\x08\xe4\xf9\x8a\x2a\x40\x82\x66\x68\x00\xcf\xdb\x16\x1e\xe3\xe0\x71\x19\x16\x98\xf7\x0b\x7a\xd3\x29\x08\x4e\xda\x60\xc1\x6a\x6c\x0b\x9b\x1a\x05\xfd\x12\x50\x52\xdd\xe8\x99\x39\x5a\x20\x81\x5e\xd8\x75\x0d\xc6\x73\x95\x07\xa1\x99\x21\x37\x63\x0d\xe1\x04\x1d\xa5\x1e\x06\x57\x18\x42\x2a\xdd\xf8\xca\x57\xf4\x11\x2d\x99\xc1\x89\x2f\xd3\xbf\xfb\x78\x76\x48\xb2\x0b\xa1\x07\x37\xb0\x29\x55\x5a\xcf\x93\x9e\x92\x06\x34\x8a\xdd\x13\x48\x70\x04\xb3\x27\x90\xb3\xf0\x05\x46\x1d\xdc\x97\xe9\xbf\x02\x80\x03\x1a\x5e\x5a\x8d\x71\x7f\x18\xac\x0c\xe4\x43\x43\xc3\xf1\x47\xa7\x2b\x0e\x9f\xbc\x1f\x66\x64\x03\xc4\xd9\x26\xcf\x41\x08\xaf\x3c\x04\x55\x90\x09\x32\xbc\xa0\xa3\xbd\x71\xcf\x07\x4e\x71\x76\xa8\xd5\x9e\x9a\x13\x9a\xe0\x0c\xe6\x74\x20\xed\x6f\xfd\x24\xbd\xe4\x82\x45\x2d\x70\x71\x95\x61\x4c\xaf\x3c\x08\x70\x64\x7b\x8e\xde\x98\x03\x3b\xd2\xdf\x64\x6f\x07\xd5\xfd\xc4\xff\xbc\x96\x3f\xbb\x46\xed\xb8\x82\x9a\x68\xc4\x4d\x2d\xff\xb3\x0a\x59\x95\xae\xfb\xb2\xd3\x81\xb4\xbf\xf5\x93\xac\xf9\xc2\xd7\x6c\xa6\x26\x79\xd9\xc8\x5a\x7d\x05\xa6\x6f\x2d\x96\x3a\x40\xce\x50\x55\x34\x8b\xff\xf9\x9a\xc2\xbb\x43\x69\xdc\x4b\x38\x78\x35\x7a\x82\xe9\xce\x5a\xa9\x41\xeb\xc1\xff\xc0\x0b\x3b\xa4\x3c\xf0\xf2\x03\x20\x56\x07\xe6\x0f\x67\xd0\x66\x65\x42\xe3\x5f\xaa\xe6\x0c\xce\xc7\xfb\x74\x3e\xb4\xb7\x34\x49\xa0\x0c\xd1\x7b\xf3\x8e\x63\x76\x77\x03\x39\xb0\x48\x04\xee\xaf\xc6\x8a\x14\x45\xba\x1e\x68\x71\x52\x89\x8c\x8d\x8d\x5a\xeb\x1c\x87\xd4\xf2\x47\x56\xe7\xe9\xc4\xbe\x73\xbd\x90\x7d\xea\x1c\xf7\x67\x3a\xb0\x59\xc2\x63\xcf\x2e\x35\x4c\x17\xf6\x00\xd1\x33\x82\x2d\x87\x83\xf4\x71\x3e\xcc\xc3\x30\x32\x32\x8a\x46\xcf\x03\xf2\xb6\xd1\x95\x4c\x9d\x97\xbe\xfc\x98\x97\xfe\x9c\xed\xa4\xe8\xfb\xe0\xeb\xd1\x5d\xdf\x23\x15\x84\xdd\x7e\xc0\x71\xb8\xf9\x9a\xd2\x1c\xa4\x3f\xdc\x69\x0a\x3b\x2d\xa8\xb8\xd0\x85\x8a\x69\x00\xa5\xb1\x57\x66\x98\x59\x39\x87\x73\x1d\xa6\xf9\x47\xc4\x91\xd1\x13\xba\x60\xb9\xd6\xac\x9c\xba\xd8\xb9\x8f\x0d\x78\xbf\xd1\xe9\x8e\xf2\x59\x80\x5b\x8c\xb3\xfc\xe9\x74\xe0\xdb\x80\x5e\x87\x83\x1b\x90\xa9\x8c\x71\x55\x37\xcc\x3b\x7b\xa6\x97\x83\x80\x1f\x00\x3f\xec\x5d\x15\x13\xfc\x45\xac\x0c\xd3\x49\xe6\x27\xe1\xe1\x14\x8b\x09\x8a\x0e\x9b\xfa\x0c\xa6\x35\x81\xd9\x4d\x6c\x13\x3c\x2b\x8a\x98\x04\xcd\x31\x64\x97\xeb\x41\xb5\xcb\x4e\x08\x1f\x32\x7c\x01\x8e\x55\xee\x98\x04\x8f\x4f\x79\x26\xa6\xb3\xec\xa9\xc8\x67\x99\x56\x1e\x81\x19\x34\x0f\x22\xd9\x71\x5e\x68\x35\xeb\x96\x56\x69\x36\x67\xa9\x9a\xd3\x92\xf1\xad\xd9\x98\xd5\xbc\x44\x16\x86\xce\x1c\x0d\xb0\xd7\x6b\x8f\xbd\xfe\x5d\x3f\xe8\xd9\x06\x3a\x27\xa3\xcd\x1d\xc3\x68\xe7\xb1\x0d\x76\xfe\xb6\x1b\x5d\x6c\x2d\xca\x9d\x4d\x84\xdb\x43\xe6\xf2\x36\xa0\x5c\x50\x93\x6a\x23\x4b\x59\x63\x44\xa5\x1e\x99\x57\x52\x3d\xaf\xd6\x9b\xad\x92\xcb\xb7\x18\x27\xca\xf6\xfc\x65\xa7\x3a\xb9\x34\xae\x63\x2d\x61\x50\x03\x6f\x59\xf9\x49\x3e\xa4\x88\x82\x7d\xc7\x6a\x68\x10\x6d\xfa\x2d\xe8\x89\x51\x44\x09\xec\x38\x32\x01\xcd\x63\xcf\xc2\x61\xb3\x4b\x15\x6b\xdb\x52\xcb\xc4\xb6\x05\xcd\x15\x3c\x54\x83\x08\x56\xc6\xf8\xe8\x6c\xb2\xc9\xef\x64\xf1\x55\x75\x07\x15\x6e\x28\x8b\xa2\xef\xcc\xac\xcf\x58\x14\xbd\xb4\x27\xb9\x08\x5d\xd2\x4c\x80\x89\x90\x57\xa2\x99\xac\xf3\xf2\x67\xb8\xc8\xf5\x45\x76\x87\x17\x3e\x3d\x48\xb5\xcf\x89\x8c\xeb\x9a\xde\x9a\x9c\x98\x56\x87\xcf\x54\x3c\x78\x2a\x67\x01\xa8\x53\x96\x64\x63\x42\xe2\x80\x5d\xfe\x9f\x1d\x4b\xd4\xae\x03\x62\x85\x07\xac\x9e\x0f\xd0\xf1\x78\x08\xc5\x1e\xc0\x08\x36\x86\x14\x9b\x71\xbf\xef\xc4\xbf\xb8\xb7\x4a\x2c\x7b\xcb\x76\x85\x09\xd4\x5c\x34\xcd\x3b\x79\xa7\x04\xd9\x18\x16\xc9\x38\xbb\x04\x84\x5c\x39\x2b\xe4\x4a\xc5\xc7\xa7\xfa\xff\x36\x77\x33\xf8\xde\xf8\x8b\xe9\xe6\x6e\xb6\xce\xea\xab\xbc\x3c\x56\xd5\x26\xd6\x77\x36\xd9\x72\x99\x97\x57\xf1\x74\x76\x59\xd5\x4b\x59\xc7\x53\x02\x88\xb1\xc3\xc5\x5b\xa2\xd0\x99\x09\x11\x8d\x21\xcc\x76\x76\x59\xdd\x1d\x37\xf9\x07\x5d\x0e\x96\x72\x7c\x59\xdd\xcd\xaa\x1b\x59\xaf\x8a\xea\x36\x6e\x00\x9c\xcf\xbc\x39\xce\xb6\xaa\xb2\x2f\x0b\x6b\x10\xd6\xf3\x2f\x33\xa8\xdf\x5f\x08\xcf\xba\x01\x34\x45\x57\x89\xda\xe2\xbc\x93\x38\x08\xbb\x33\x60\xcb\x66\xb5\x20\xa7\x7f\x31\x9e\x3c\xd5\x86\x2f\xc4\xe9\x13\xbd\xcc\x00\xda\xbf\xae\xcb\x2b\xb9\x52\xcc\x7d\x6e\x9d\x5f\x5d\x2b\x41\xbe\x98\xfe\x85\xf0\x46\x7c\xf6\x85\xc9\x0a\xc9\x8c\x57\x3e\x05\x6a\xe9\x9f\xb3\xad\x23\x88\x6d\x7d\xc2\x73\xfb\xaa\xed\x04\x8f\xa8\x60\x5c\x9d\x7c\xc6\xf4\x07\x85\x5b\xcc\x82\x19\x8c\xc0\xc0\x7e\xa5\x82\xa5\x18\xf9\x8e\xab\x6d\xb9\xa4\x80\xe3\xf4\xb2\xa8\x32\xe0\xf0\xd9\xfb\xa9\x0a\x36\xbe\xc3\x00\x27\x08\x7d\xe2\xdb\x07\x6e\xcc\xb6\x2e\x9c\xd9\x7e\xc8\x65\xb6\x78\x7f\x05\xef\x7a\x5e\xe4\x1b\x41\x0c\xa5\x86\xee\x4c\x3d\x28\xba\x21\x44\xc3\x8f\x10\x7e\x06\xeb\x4b\x0d\x7b\x54\xe8\x88\x6e\x39\x02\xdc\x47\x07\x9e\xf5\xc0\x38\x67\x7c\x77\x59\xdd\xbd\x85\xf1\xf4\xa3\x2c\xf2\x07\x60\xee\x25\x65\xbc\xda\xf3\xae\x14\x79\x20\x5f\x63\xf2\x59\xb6\xd5\x07\xb2\xd5\x7a\x41\xc6\x17\x9e\xb9\x01\xf2\x40\xde\xc5\x9e\xe3\xb8\xc6\xba\x3e\x54\xc3\x1c\x74\x67\x13\x58\xf5\xab\x14\x29\xf9\x59\x5e\xbe\xcf\x15\xe1\xe4\xac\xfa\x40\x38\x59\x37\x64\xce\xbf\x91\x0f\xf4\x12\x36\x15\xff\xbe\x1b\x84\xff\x48\x06\xb4\x54\x7a\x9a\x6a\xf1\xdb\x00\x81\xc8\xf7\x32\x95\x1d\x04\x41\xa9\xb7\xa8\xdf\xc8\x44\xc6\x70\x6b\x70\xf5\x54\x40\xd2\xd6\x85\x5a\x1c\x4b\x1f\x9b\x51\x8a\x5f\x65\x07\x75\x2a\x5f\x51\x2a\xc5\xaf\x32\x2d\xe7\x63\xc5\xe0\x05\xce\x9c\xb8\x07\x81\x2f\x71\x80\xfe\x03\x82\xc1\xca\xaa\x94\x2d\x98\xea\x69\x32\x3a\x5e\xa4\x32\x9b\xb3\xc9\x98\x9d\xf0\xbf\xeb\xdb\xc7\xc7\x27\xfc\x5f\x52\xec\x9c\x94\x09\xe6\xd1\x4d\xde\xe4\x97\x79\x91\xab\xfb\x98\x5c\xe7\xcb\xa5\x2c\x09\xb7\xb2\xc7\xc4\xf8\xef\xb9\x54\x62\x57\x48\xa5\x64\xfd\x76\x93\x2d\xb4\x2c\x21\x53\xc2\x57\x55\xa9\x7e\x06\x12\xdb\x98\x7c\x3e\x9d\x92\xa0\xfd\x94\xea\x32\x35\x5a\x60\x07\x0f\x9c\x5b\x27\x30\xf1\xd6\xd9\x1d\x9d\xf2\x3a\x7d\x32\x3f\xa6\x65\xdb\x4e\x19\x1b\xd3\x1a\x20\x25\x00\x3f\x22\x56\x7e\xd2\x96\x6a\x20\x8c\x4c\x10\xe4\xcf\x05\xf4\x9c\xd3\x78\xca\x1b\x31\xe5\x0b\x31\x45\x02\x3d\x21\x68\x9d\x10\x14\x85\x24\xb6\xd3\x84\x38\xcb\xec\x14\x51\xfb\xb2\xa7\x9f\xcf\xb2\xb1\x78\xc2\x08\x4a\x2d\x8b\x31\xb0\x18\x3b\x90\x8f\x72\x9c\xcb\x34\x03\xd0\xd0\x8a\x31\x5e\x27\xd4\x95\x66\x33\x1f\x7b\x44\x10\x23\x71\x49\xf7\x21\x5b\xfa\xe8\xf0\x01\x53\x45\xcc\x3f\x26\x3f\x23\x27\x30\x3e\xc7\xe2\xb0\x22\x83\x65\xfb\x54\x80\x48\x0c\xb3\x7f\xa4\xe4\xb8\xf9\xb4\x7c\xb6\xcf\x00\xdc\xe9\x4b\x80\xcd\x58\x8c\x45\xd0\x7d\xf0\x73\x21\xf3\x82\xca\x94\xa0\x34\x26\x63\x75\x38\xe0\x95\x1b\xf0\xf3\xe3\xfc\x78\x71\xdc\x1c\x4f\xfe\xca\x98\xee\x75\xbe\xf0\xfd\x5c\xf7\xc6\x0e\xe8\x43\xbc\x12\x74\x74\x36\x39\x10\x5b\x54\x2b\x42\x2c\x8a\x88\x5f\x16\x3b\xd8\x2c\xee\x01\xc2\x47\xa7\xbc\x06\xcd\x95\x67\xc2\xe8\x63\x35\xe3\x8d\xf8\xb4\x1a\xeb\x01\xe5\xb5\xa7\x1e\x3d\x73\x36\xcb\x04\xd1\xcb\x2e\xb1\xbc\x81\xc3\x75\x8d\xa2\xaa\x6d\x31\xa3\x10\x22\x6b\xdb\x51\xb0\xe4\x68\x9d\x8c\xe4\x65\x91\x3f\x00\x2f\x83\x1f\x00\x2c\x34\x7a\x29\x06\x6f\x8d\x1f\xe5\x42\x35\x8e\x12\xcd\x00\x73\x7c\x62\x4b\xd0\x5c\x34\x78\xdc\x0a\x11\x89\x32\x6d\xe6\x0c\xc3\xa2\xc3\x3a\xe9\xde\x19\xdb\xa9\xd7\xb6\xb4\x1a\x9a\x4f\x3c\xe7\x35\xcf\xd8\x58\xcf\x59\xdf\x91\x95\x0a\x63\x4e\x02\xbf\xb7\x2a\xf0\x54\x05\x62\xcc\x20\x5f\x60\x05\x5e\x34\x0d\x42\x86\xed\x2a\x2d\x75\xd4\x7d\xbc\x3b\x44\x33\x05\x8b\xa9\xd9\x9f\x41\xaf\x12\x93\xd9\x6d\xf9\x01\xef\xa3\x4c\xc8\x29\x89\x4b\xf0\x03\x74\x10\x34\xf1\x2e\x2b\xf3\x35\x38\xf8\x7c\xa7\x64\x0d\x3f\xc0\x2f\x1a\x9d\x6a\x8a\xed\xda\x5f\xae\xf2\xa2\x78\x6d\xaa\xa1\x2f\x0b\x79\xf7\x4d\x5d\xdd\xda\xdf\x6f\xaf\xeb\xbc\x7c\x0f\x57\x5e\x2a\x8e\xa6\xfc\xaa\xce\x97\xcf\x6a\x99\xd9\xdf\xcf\xa1\xd4\xee\xd5\xd7\xe5\xb2\x9b\xf0\x56\x65\xb5\x7b\xfa\x47\x7c\x89\xf9\x19\xe4\xfd\xb1\xba\x75\x19\xf5\xa0\xf9\xd6\xbd\xb4\xf2\xf5\x44\x2d\x10\x7e\x6c\xae\x33\xf4\xf9\xb9\xcd\x97\xd5\x2d\xfc\xfa\xf0\x1d\xd0\xfb\xe9\x5f\x55\xb5\x46\xc7\x56\xb3\xd6\xc5\xbb\x3d\x87\xa5\x71\xc0\x2d\x01\xfd\x0b\x3e\x1b\x75\x2d\x31\xff\xd5\xbb\x36\x7b\x9b\x00\x7a\x88\x37\x00\xa5\xca\x17\xe2\xef\x6e\xef\x01\x2e\xe8\xb8\x09\xca\x57\x74\x01\x1b\xae\x47\x92\xea\x2d\x73\x86\x83\x17\xc6\x00\x44\x7f\x06\x97\x4d\x00\x1b\xe1\xa7\x61\x14\x91\x2b\xa9\x48\x0e\x3f\xbd\xf1\xd9\x90\x78\x82\x6d\x48\x4f\xa1\xa4\x8a\x8b\x54\xcd\x67\x81\x65\x84\xe6\x21\x8d\x05\xad\xdc\x8a\x55\xea\x19\x57\x01\x3f\x2a\x2d\x85\x41\x54\xaa\xb4\x1c\x21\x25\x0c\x22\x82\xd6\x87\x11\x80\x21\x99\xb5\xc0\xde\x1a\x09\x91\xb7\xad\xfe\xa8\x72\x0c\x1c\x26\x87\x60\x49\x8d\x07\x4b\x62\x87\xaa\x5d\xdb\x12\x73\xfa\x09\x5e\x4a\x1e\x74\xd2\xab\x76\x44\x6f\xfe\xf4\xe7\x08\x92\x97\xd7\xb2\xce\xf5\x7c\xd4\x2d\xd1\xf4\x5a\x42\x80\x19\x3e\x33\x51\xbd\xba\x23\x21\xec\x31\x29\x74\x8a\x77\xb5\xe6\x25\x83\xd6\x11\x25\x70\x66\x2c\x0e\x20\x7e\x3b\x68\x52\xa6\x4b\x1d\x64\x9f\xeb\xd7\xb0\x23\xe9\xc7\x7b\x92\x75\xba\x2d\xec\xad\x29\x2f\xdd\x3e\xd1\x21\x0f\x39\xd9\x0d\x98\x44\xf5\x3a\x2b\x0c\x2a\x91\x02\x69\xa6\x20\x93\x54\x7a\x77\x8c\x58\x3f\x65\xdb\x96\x09\xcd\x43\xb9\x56\x31\x0e\x78\xec\x65\xdb\xe6\xcd\x4b\x2d\x82\x24\xcd\x59\x92\xb7\xed\x34\x46\xc2\x09\x67\x8e\x49\x09\x12\xf5\x13\x6e\x54\x8d\xf9\xa1\xd9\x24\xf8\x36\xd1\x97\x51\x76\xc6\x38\x1e\xf9\x7f\x98\x36\x3a\xc4\x0f\xb3\xe0\x66\xc3\xb2\x1d\x6e\x7d\xa5\xbb\x3c\x2f\xaf\x7c\x16\xca\x70\xbb\x94\x98\x75\xb3\x66\x31\x60\x32\xfe\xab\x0b\xd7\x68\xd5\x2e\x9b\x09\xcc\x93\xcd\x40\x55\x4d\xd7\x9a\x65\x37\x13\xa3\xb3\x49\x47\x0d\xd7\xab\x98\xd7\x1f\x01\x5b\xd5\xea\x95\xbc\x11\x34\x6b\xdb\xfa\x93\xd7\xe3\x5c\xcb\x82\x3a\x31\xcb\x4b\xcd\x1b\x9e\xb3\xd8\x41\xe3\x36\x51\x94\xa1\x9e\xf4\x9f\x28\x18\x41\x6f\xe7\x7a\x2c\x1c\x9b\xb7\xd8\xe5\x0b\xdf\x0f\x1a\x08\x5f\x1c\x4e\x79\x83\x4c\x46\x2b\xaf\x8c\x82\xb3\x39\x82\xae\xe9\xe9\xc1\x4b\x11\xe0\x94\x71\xa5\x80\xf5\x64\xc1\xac\x2f\x98\x1d\x14\xc1\x56\x58\xfc\x53\xd2\xb3\xc9\xe1\x0e\xa8\x3f\xa2\x60\x51\x33\x9a\x44\xf0\x1d\xb8\xbe\xf9\xe2\xfc\x88\x19\x1c\x16\x85\x5c\xa9\x63\x18\x0b\x3b\xff\x4c\x3c\xdd\x0f\x8d\x8b\x8f\x97\xb2\x67\xcc\x2c\xee\xa1\xdf\x20\x5a\x1b\x08\xe1\xd6\xc0\x40\x08\x37\x66\x07\xa3\x3f\x0e\x58\x18\xdd\x54\x91\x63\x3d\x59\xf0\xd4\xcd\x0f\xc2\xf0\xcc\x1a\xce\x39\x77\x7b\x2d\x6a\x07\x50\x19\x4a\x1b\x24\x7a\x44\x58\x9c\x96\xf3\x59\xfd\xf4\x73\x38\x08\xad\x52\xa9\xb5\xd8\x7a\xae\x5f\x90\xa7\xf5\xbc\x6d\xf3\xb4\x3e\x7e\x02\x7f\xa7\x01\x50\xde\x3e\xd4\xc8\x1d\x3a\x9d\xaf\x9d\x96\x8b\x42\x81\x25\xbf\x7b\x10\xd8\x97\x89\x1f\x31\xeb\xf7\x8c\x7e\xfa\x73\x32\xdc\x9d\xf4\x11\xc7\xf1\xc3\xbd\xba\xeb\x18\x90\xb3\xa7\x15\x58\x56\xf3\x54\xa5\xd9\x7c\xee\x07\x1d\xa8\xff\x7a\x41\x73\xcc\x00\xfb\x3e\xa6\x6f\x99\x84\xb0\x76\x25\x8b\xfd\x88\xdd\x33\xf0\x27\x3c\x44\xe5\x35\xb6\xe8\x77\xb7\x52\x96\xa2\x52\x3c\xd4\xd6\xba\x9e\xf1\x95\xe2\x5a\x74\x0e\x84\x18\xeb\xfd\x19\x1a\xeb\x0b\xb9\xb6\xc1\x0b\x9b\xba\xda\x88\xd2\xba\xde\x35\x79\x79\x25\x2a\xbd\x14\xe0\x6f\x0f\xfa\x83\xde\x7f\x80\xa7\xd4\x08\x65\xfd\xb1\xb3\x5a\xd9\x43\xb6\x5b\x61\x03\x0a\xac\xbb\xb6\x2c\x97\xa2\xc6\x9f\x80\xb7\x97\xf7\x56\xd9\xd2\xaf\xb2\x7b\xbe\xd8\xd6\x87\x47\x01\xf8\x95\x1b\x23\xc6\x6d\x75\xdd\x68\x91\x46\xfe\x22\x22\x96\x39\x76\x0d\x9f\x71\xd5\xf7\xf7\xf7\xbc\xde\x0e\x30\xef\xf0\xf2\x8f\x5e\x16\x36\xc0\x64\xb9\x45\xc5\xd4\x90\x0d\x57\x8d\x50\xc2\xb6\x59\x1a\xb4\xe5\xdc\x9e\xb3\xf5\x1f\x7c\x2c\xf9\x94\x9f\x0e\xdf\x33\x47\xc7\x58\xaa\x3d\xa7\xab\x6e\x05\xb5\xad\x7a\xec\x5b\x9f\x3d\x56\x63\x7f\xd5\x2d\xaf\x51\x72\x63\x8e\x67\xc2\x24\xef\xcd\x84\xa1\x92\xb6\x7c\x4b\xf3\x1d\x45\xc0\x27\x82\xac\x22\x1f\x6d\x54\x77\x1f\x19\x58\xf6\xfc\x60\x0f\x11\x0c\xd2\xf0\x1e\x0f\xcb\x13\x3b\x17\xe9\xd4\x5b\xa6\x4d\xdf\x38\xa0\x16\xd0\x65\x75\x9d\x83\x63\x5e\xeb\x5d\xae\x93\x53\x89\x5d\x66\x41\x65\x4c\x66\x5c\x1d\xcc\xbd\xa4\x9b\x35\xa6\xca\xce\x5d\x6c\x0d\x4c\xe7\x04\xb0\x63\x71\x57\x38\x02\x10\x60\x2d\xa3\x9b\x5e\xf5\x6e\x27\xab\x3b\x68\x53\x57\xfa\x41\x0a\x95\x2c\x1e\xac\xf8\x28\x14\x6c\x1f\xa9\xf7\x23\x89\x44\x7a\x1b\xd6\xaf\x3b\x28\xf6\xb7\xb1\x13\x26\x9d\x0f\x80\x7b\x63\x20\x1b\x85\x48\xab\x4e\x93\x1b\xe5\xe1\x5d\xb5\x11\x03\xc9\xb0\x28\xee\xfa\xdf\xda\xfb\x00\x3d\xf5\x20\xa1\xe3\x70\x34\x54\x41\x1b\xa5\x01\xb2\x65\xa7\x37\x45\xd9\xb0\xfb\xd0\x9e\x37\xb7\x7a\xc5\x3a\xbc\x37\xf9\xeb\x31\x6a\x1b\x55\x43\xe5\x63\xf8\xf9\xe6\x3b\x76\xf2\x24\x08\x92\x23\xf0\x2c\x81\xf8\xaf\xd5\x9d\x38\x18\x89\x0c\x7a\x45\xec\x90\x48\x21\x57\x3c\x53\xbc\x51\x88\xf3\x84\x80\x8c\x6d\x73\x5d\xdd\xb6\xd7\xf9\x52\xb2\x47\x27\x7c\xa1\xc4\x89\x47\x12\x7e\x14\xe0\x38\x15\x8a\xb2\x5d\xa6\x35\x5a\x70\x5f\xce\x26\x68\xa1\xc3\xa3\xc4\xdf\xb7\xb2\x51\xcf\xec\x06\xf6\x65\x9d\xad\x65\xf2\x40\x3a\x2d\x14\x8b\x3b\xd4\x3d\x85\xe2\x30\x7e\xc0\x49\xff\x26\x2b\x18\x5e\xaa\x7c\xf1\x9e\x86\x88\x40\x5b\xe5\x75\x84\x07\x89\x9e\x72\xeb\x66\xad\x57\xca\x5c\x09\x1f\x68\xe5\x0b\xda\xa8\x43\x82\xfd\x1d\x6a\xd6\xb1\xc4\xe0\x78\x85\x26\x3c\xb3\x90\x8b\x27\xc7\x8a\x55\xa9\x5d\xa2\xc7\xb4\x14\xb0\xaa\xb3\xb9\xa8\x52\x6f\x05\x2b\xe7\x22\xe4\x4a\xa7\xd5\xc4\xec\x7e\x45\x65\x0e\xa1\xf4\x6a\xea\xeb\xb1\x52\x43\xbe\x71\x74\xa9\x26\x4a\x2f\x78\xb2\xc6\x0d\x4a\x3a\x67\x93\x45\x55\x2e\x32\xd5\xb9\x45\x1e\x93\x39\x33\x28\xa6\x55\x1f\xc5\x14\xc8\x2b\xaa\x34\x9f\x5b\x46\x43\xc5\xa5\x33\x35\xd6\xbe\x0a\x4b\x75\xa8\x17\xe8\x02\x97\x7a\x20\x99\x43\xf5\x00\xd2\x3a\x84\xbd\x9e\x20\xfb\x67\xa7\xf5\x2d\xc2\x02\xcc\x07\xdd\x03\x1d\x46\xe4\x7c\x45\x2d\x32\xd1\xe8\x74\xe6\xed\xd1\xb9\x6a\x5b\xdd\xb9\xbc\x0c\x2d\x79\x05\x0a\x77\xdd\xc9\xe3\xc2\xad\x12\xc7\x8a\xf1\x5a\x9c\x1e\xd3\xf2\xc4\x27\x82\xd9\x0e\x2b\x5e\x60\x03\x35\xfd\x06\xb1\xe9\xba\x49\xea\x6d\x49\xbd\xa6\xd2\x04\xcc\x82\x54\xf2\xb4\xe0\x35\x2f\xe7\x8c\xd7\x4f\x4f\xa3\x28\x4b\xca\x58\xef\x23\x0e\x33\x9d\xf2\xe9\xdc\xc4\xbe\x3b\x4c\x6f\x09\xe1\xda\x7c\x74\x0a\xc4\xca\x8d\x43\xd6\xc6\x00\x6b\xc9\x37\x60\xcd\x08\xdd\x9a\x15\xe3\xd5\x46\x05\x69\xa3\x29\xdf\x19\xb7\xb5\xaf\x41\x76\xc4\xbb\x3d\x47\x29\x12\x1f\xa8\x27\x7b\x5e\x32\x6e\x43\xd1\xcc\xb6\x39\x97\x4d\xac\x5c\xe2\x6b\x5c\x01\xe3\x92\xbb\xc6\x8c\x5d\x73\xdb\xe6\x8b\x4b\xd7\x92\x1c\x5b\x29\x4e\xe7\xdc\xc0\x0c\xea\xeb\x20\x2c\xda\xdb\x42\x8d\x5a\x46\x25\x2f\xf4\x42\x0b\xb4\xe9\xe6\xe7\xa4\xf3\x05\x30\x88\xcd\x0d\xfc\x00\xd7\xf6\xae\xb7\x4c\x44\x3b\xaf\x31\x12\x2f\x3e\x74\x78\x00\xf7\x93\xa4\xd7\xbd\x31\xa8\xaf\x55\x18\xd8\x3d\x43\xde\xed\xd1\xd4\xf9\x7f\xb8\xae\x2f\xb1\xeb\x4f\xfd\xe1\x7e\x42\x3f\xbd\x63\xb9\x9a\x33\x16\x37\x21\x63\xa6\x4d\x36\x8a\x00\xe3\x5b\x51\xc0\x1a\x80\xb5\x18\x7d\x04\x05\x01\x32\x94\x68\xf3\xd4\x9f\x20\x54\x5a\x8b\xef\x69\xc9\xe6\x3c\x17\x00\x14\xda\x55\xca\x73\x34\x05\xe5\xe9\xa9\xcd\x20\xf4\x0e\x82\xf1\x72\x04\x78\x72\x14\xa0\x8f\x73\xee\xc8\x79\x80\x7f\xb4\x63\xec\xa8\xc1\xba\x81\xbb\x1c\x30\x70\x30\x57\x87\x5c\x64\xc6\xe9\x90\xe6\xcc\x97\x51\xcf\x79\xce\xb0\x92\x6d\x4b\xcd\x4b\xcb\x39\x07\x8a\xf4\xca\x78\x76\x2a\xc0\x5c\xde\xd3\xed\x60\xe7\xb3\xae\x48\xea\xc8\x15\x27\x9e\x0a\x2e\xb9\x7d\xdc\x49\xa9\x2b\x80\x4c\xae\x36\x0c\x76\x43\x21\xb1\x40\x81\x4b\xbe\x79\x1d\xdc\x60\x90\x55\xe0\x13\x00\xb3\x83\x8e\xc1\x9e\xa6\x73\x9d\x6d\xe8\x96\xaf\x14\x2f\x18\xbf\xa2\xb6\xaa\xa0\x4c\x46\x51\x78\x69\x61\x65\x0a\xc6\x0b\xcf\xda\x6b\x72\xd8\x6b\x43\xde\x6b\x52\xf5\x6f\x5b\x1d\xcb\x72\x67\xe8\x7c\x4d\xaa\xfe\xed\x24\xa6\x49\xc3\x2b\xb7\xda\xad\x43\x0c\xb5\x05\xb7\x32\x23\x2b\xf3\x75\x5c\x70\x64\x43\x08\x3f\x59\x8b\xd7\x62\x7f\x3b\x71\xcb\xab\x8f\x97\x58\x2a\xbe\xb3\xeb\x44\xbc\x23\x8f\x49\x9c\x0e\x0c\x45\xb3\x73\xf1\xd3\x1c\x83\xbf\x2d\x2e\xa7\xa4\xa5\x51\xad\xb8\x3f\x32\xd3\x02\xa7\xdc\xcf\xf7\xdc\x14\xdf\xdb\x7b\x02\x09\xab\x21\x2e\xc0\x05\x2a\x96\xc2\xd3\xed\xcf\x42\x0f\x9e\x29\x44\xcb\xf5\x3c\x87\x4b\x01\xa3\x2e\x5c\xe7\xca\xb9\xe8\x5e\x02\xbe\x4d\x37\xc9\x51\x87\x28\xf4\xb2\x34\x03\xac\xfb\xd9\x07\x2e\x2f\x0e\xd4\xd6\x58\xd3\x72\x38\x44\xb5\x36\x36\x7d\xc5\x57\x18\xd7\xb7\xd4\x9b\xe5\x6b\x6b\x1d\xe6\x97\x1d\xe3\x32\x38\xe0\x78\xe8\x38\x4e\x56\x77\x5a\xa7\x22\xf8\xb9\xe0\x35\x5c\x62\x97\xb5\xad\x01\x80\x84\x89\xd9\xe5\x4c\x01\x8a\x15\x36\xd9\x96\x90\xba\x8c\x22\x9a\xb9\x0b\x31\xe5\x8d\x9e\xa1\x8e\xc8\x84\x87\x17\xe1\x12\xeb\x9f\x69\xdb\x86\xea\x8d\xb5\x4f\x19\x8f\xf9\x6a\x68\xd1\x1e\x4c\xf4\x8f\x1d\x1f\x73\xcf\x06\x03\xb5\x34\x9d\xd6\xb6\x59\x97\x5b\x05\xd8\x75\x19\x57\x4e\xa0\xcd\x79\xe3\xa0\xd1\x60\xf9\xb7\xce\x2f\x20\x59\xf4\xce\x98\xa0\x12\x0a\x56\x53\x5e\x09\x21\xe8\x65\x42\xb4\x32\x4a\x62\x82\x8d\x08\xcf\xe1\xef\x91\xd0\x9b\xf4\xd1\x3a\xc0\x10\x58\x6b\xa9\xb6\xa8\x4a\x95\x97\x5b\x39\xbb\x14\xa3\xe9\x7e\xa9\xe5\xd1\x3a\x8a\xd6\x60\x6e\xf1\x36\x87\x9a\xed\xf3\x15\xa5\x0b\x31\x40\x34\xc6\x60\x63\xd2\x4d\x5d\x32\xef\xf5\xbd\xe9\xb3\x83\x45\x11\x2d\x27\xd6\xe7\x45\xa4\xd7\xee\x37\xf7\x3f\x7f\x09\x7e\xff\x3a\xe7\xa6\xe7\x0b\xa8\x9b\x85\x5d\xd7\xc2\xad\xf0\x23\xc7\x9b\x5f\x3d\xc6\x3d\xdd\x0e\xd0\x3b\xc0\x73\xc9\x56\x14\x31\xbd\x46\x5c\xea\xd1\x34\x38\xbf\xf0\xfc\x11\x05\x1f\x7a\x9c\xe3\x43\xba\xb7\x68\x70\xce\xb7\x6d\x5b\x73\x75\x8c\xc7\xed\x3a\x0d\xb7\x67\x23\x51\x0c\x12\x4e\xac\x8a\x2a\x03\x90\x0d\x38\x2f\x59\xa1\x58\x0c\x07\xd2\xb5\x43\x98\x2f\x80\x6f\x12\x5a\xa1\x00\xee\x02\x77\x8b\x17\xc2\x95\xbc\x4d\x08\x89\xb7\x8c\x71\xff\x60\xb7\x4e\x10\xa5\x63\xdb\x35\x8a\xa8\x6f\x64\xe1\xbc\x06\x06\x87\x74\x90\xd1\x17\x90\x4e\xe7\x61\x97\x85\x77\x4e\xc3\x3b\xbf\x86\x77\x9e\xcc\x61\xa0\x2f\xc4\xe8\x94\x2f\x99\xfe\xf0\x75\x62\xdf\x9d\x97\x47\xeb\x28\xa2\x97\x62\x6d\x76\x48\x2c\x5e\x87\xcc\x4c\x56\x3a\xf0\x9d\x75\x6d\x28\xf6\x8c\xe7\x51\x44\xed\x03\x62\x74\xc9\xf8\x65\x14\x05\x1d\x3b\xd0\xae\x6e\x6c\x5e\xb6\xad\xe9\x4d\x1e\xe2\x91\x59\x21\xc4\x97\x01\x0d\x45\xcd\xf5\xec\x60\xa6\xf6\x2b\x45\x2f\x13\x3d\x4d\xe2\x29\xaf\xf9\x8a\x71\x28\x6f\xad\x3f\x47\xcf\xa1\x85\xb1\xae\x5c\x42\xf8\x91\x2c\x97\x2e\xc5\xfc\x15\x53\xc6\xf6\x73\x2f\x6f\x7b\x8b\x81\x4a\xba\xbb\x08\x2b\xa3\x25\x8b\xbb\x37\x40\xf9\xb3\x7e\xa7\xcd\x46\xca\xe5\x01\x22\x0a\xaa\x9c\x32\x8a\x86\xf8\xc8\x42\x85\x5a\xb2\x78\x67\x97\xe0\xb8\x6c\xdb\x51\x19\x45\xaa\x6d\xaf\xc0\xb9\x58\x7a\x95\x57\x5a\xa5\x1a\xef\xab\x28\x1a\x5d\x81\xfb\xa1\x0a\xa8\xbd\x57\x77\x93\x6a\xb5\x4a\x6a\xa7\x1e\x8b\x69\x1c\x9c\xa7\x99\x0a\xf8\xdb\x40\xb2\x61\x2f\x74\x5b\xa2\x5d\x44\x7f\x51\x13\x96\x12\x24\xa7\x3e\x79\x1e\x0f\x67\x71\xea\xbe\x3d\xdd\xab\x51\x1c\x47\x11\x60\x55\xd5\x6e\x6d\x31\xbf\x84\x61\xeb\x9a\x54\xc5\x52\xd4\x4e\x21\xe1\xfe\x67\xb8\x62\x68\x35\xab\x2a\x96\x2c\x8a\xe0\xaf\x37\x93\xe9\x12\xcc\x7b\x7a\xdc\x4a\x26\x9d\xed\xb5\xba\xde\xb1\x46\xaf\xb2\xa5\x7c\x57\x3d\x1c\x3d\x0e\x1a\x87\x71\xd5\x2e\x24\x03\x21\xe2\x0e\xc9\xf9\xd4\xb2\x36\xe8\xc1\xa6\x37\x98\xa0\xd9\x48\xea\xce\xdc\xd5\x9e\x4b\x13\xa4\x6e\xee\x3d\x74\x1e\x28\xfa\xd2\x5c\x22\x4f\x19\xb4\x28\x52\xf9\x76\x38\xc3\xad\x83\xd5\xd2\x20\xeb\x75\x87\x14\xcf\xd9\x8c\x56\x0e\xaa\x1f\xa0\xf7\x56\x79\x99\x37\xd7\x20\x89\x15\x68\x9d\x74\x34\x65\x6e\xec\x64\x13\xbc\x2f\x32\xae\x97\x2c\xe4\xfd\x83\x56\x0b\xd8\xf3\x32\x63\xf2\xc4\xa6\x35\xf7\x79\xc6\xfa\x7b\xa0\xce\x1c\x18\x72\x23\xd6\xd9\xad\x63\x29\x5e\x71\x45\x4b\x57\x9b\x61\x7a\x29\x8c\x49\x0f\x29\xa6\x94\xc1\xb7\xb3\x41\x14\x07\xcc\x58\x0f\x84\xaa\x63\x35\x46\x40\x41\xe3\xe2\x15\x3a\x8c\x54\xd0\xf6\xa0\xe2\x36\x10\x6b\xec\xec\xd2\xb8\x7d\x43\x5c\x33\xfd\x2f\x54\x3e\x8a\x6a\x00\x4d\x63\x9e\x58\x16\x62\x90\xb3\xc3\x8c\x0b\xa7\x5f\xf8\x87\x70\x03\xe8\x82\xd2\x2a\xf0\x61\xd3\x8f\x68\x6d\xd6\x84\xec\x38\x0b\x6a\x14\xc1\x2d\xa8\xeb\x08\xc8\x37\x29\x24\xe8\xf1\x85\xdd\x5a\x32\xae\xb4\xa0\xcf\x2d\xc4\x65\xc5\x4f\x19\x9b\x8d\x54\x14\x95\x5a\xbf\x18\xa2\x1d\xc3\xce\x1f\x30\xe9\xd9\xf6\xa5\x8e\xce\xeb\xa3\x8d\xca\xcb\xb0\xb1\x78\x2d\xca\xd4\x36\x2c\x99\x03\xe3\x4f\xb7\x9d\xe7\xdd\x86\xae\x93\xda\x6f\x94\x11\xcb\xd8\x0c\xcb\xd1\x94\xf7\xe8\xdb\x74\xf7\x02\x17\x00\x36\x2c\xfe\x0d\x42\x80\xf5\x32\xa4\x7c\xab\x2a\x6c\x55\x85\xad\x6a\x82\x8e\x74\x63\x2a\xd3\x98\x18\x15\x02\xe7\x9d\x41\x63\xea\x52\x5c\x43\x2a\x68\x48\x34\xb7\x4d\x67\xea\x69\x06\x51\x35\x75\xaa\xe6\x51\xa4\xff\x35\x95\xed\x5c\x04\xf2\xc9\x8e\x78\xfb\x51\x9e\x73\x11\xcf\xca\x8d\x6a\xc9\x51\x79\xe4\xa8\x56\x1e\x9c\x98\x5b\x2e\xbb\x55\x99\xaa\xf9\xcc\xfc\x0d\xd7\x9f\x8e\xc7\x10\x1a\xaa\xdb\x76\x90\xb3\xa6\x1c\x76\xf9\xc6\x49\x6e\x85\xd9\x46\x51\x05\x8d\x89\x25\x77\xe0\x4f\x9a\x22\x5f\xca\x17\xd5\x6d\x19\x6f\x94\xd1\x79\x19\x87\xc4\x9f\x36\x90\x04\x9f\x60\x92\xde\x21\x9f\x8e\x4e\x36\x5f\xca\xb8\x96\xbf\xdf\x95\xde\x49\x09\xcb\xd8\x43\xfa\xeb\xad\x0a\x6e\x40\x49\x78\xc3\x14\xe4\xef\x99\xe2\xf6\x9f\x10\x94\x71\x28\xdd\xed\x77\x2a\x2b\xaa\xf1\x03\x71\x4c\x8a\x74\xee\x8d\xbb\x7d\xe9\x0b\xa1\x56\x70\x92\x8d\x99\x91\xc2\x28\x34\xe1\xce\xd4\xd3\x32\x04\x28\xa5\x52\x40\xe4\x01\x35\x21\x08\x38\x81\x4b\x37\xbe\x8e\x8f\xf9\x29\x9b\x95\x6e\xbf\x62\x8e\x29\xaa\x0d\x05\xdb\xb0\x31\x14\x07\x1b\x70\xd1\x3d\xe6\xc0\x7a\x58\xfd\x84\x9b\xc7\xb3\x1a\xd0\xaa\x3a\x36\x6b\x71\xfa\x59\x70\xbb\xb3\x23\x53\x6d\x4b\x33\x10\x8f\x85\xa2\xcc\x3e\x08\xe6\x8a\x4e\x36\x74\x0c\xe7\xc1\xc2\x2f\x76\x4d\x51\xdd\xc6\x5f\x4c\xa7\x7c\x95\x35\x2a\x7e\x32\x9d\x7a\xcb\xff\xe7\xd3\xa9\x59\x7c\x97\x52\x2b\xc9\x0f\x04\x90\xe9\xe2\x00\x96\xdc\x29\x1c\x72\xde\xb6\x01\xad\x27\x0f\x44\x7d\x78\xf8\xaf\xfc\x5a\xda\x31\xb6\x2b\x2e\xd9\xac\x3e\xa8\x7f\x89\xee\x42\x36\x57\x65\xc2\x08\x0f\xce\x36\x1f\x62\xe6\x18\x22\xed\x40\xd8\x16\xf2\x07\xa4\x1f\x78\xc8\x47\x18\x9b\x19\x40\x0d\x62\x29\x9d\x88\xe5\xdf\x78\x5d\x0a\x82\x91\x01\x80\xc5\xc8\xcf\x26\xd5\x46\x21\x38\xbb\x5c\x0a\x65\xf0\x61\xe4\x92\xd3\x87\x2b\xc8\xf0\x59\x41\x14\xb1\x68\x3b\x86\x36\x84\x9f\x4d\xe0\xc7\x3f\xed\x7d\xe1\xde\x64\x7d\xc1\xaf\x15\xbf\x54\xc2\xc0\x87\x67\x4a\xd5\xdf\x42\x40\xf0\xac\xa3\x3c\xe9\xf4\x8f\x9e\xe5\xdf\xc2\xa3\x0f\x1e\x95\x73\x8f\x1b\xf2\x67\x68\x33\xfd\x53\x0f\x92\xd7\x1e\xd4\xac\x7b\x60\xe0\xb7\xc5\x7a\x39\xff\x6c\x04\xc4\x12\xff\x85\x7f\x9e\xe8\x3f\xc6\xa4\x17\x50\x34\x89\x2e\xdb\x93\x43\x1c\x48\x6e\xc1\x7e\x6a\x5d\x04\xa8\x61\xa9\xe8\x84\xb4\xb7\x2d\xd5\xfa\x1d\x34\x23\x9e\x5a\xf7\x02\x03\xe1\xc0\x3d\x40\x6a\xd7\xb2\xda\xfa\x82\x25\xd7\x2a\x76\x54\x19\x21\x95\x3b\x48\x76\x51\x26\x90\xd6\x69\x15\xa0\x81\xaf\xbc\x17\x5b\x15\xfa\xf3\xd5\xa2\x72\x5e\x6c\x8a\xb1\xa4\x8e\xa9\xec\x12\xc4\x28\x5e\x8e\x09\x61\xfa\x73\x2a\xef\x5d\x56\xd9\x6d\x35\x16\x61\xb9\x0d\x74\x01\xc6\x50\x50\x0b\x43\x26\x90\xd9\x4a\xb0\xc4\x30\xb0\x83\x02\x6c\x3f\x3f\x46\x80\xfb\x5d\x9f\xcf\x1f\xfd\x82\xc3\xb1\x19\x45\x66\xc4\x22\xe1\x2e\x60\xea\xd8\xd1\x6d\xd6\x41\x33\x6e\x67\x9e\x3f\x62\x80\x2e\xc7\xb0\x10\x9b\xbc\x10\x93\x06\xce\xac\x83\xe3\xaf\x7f\xd0\x06\x11\x6d\xce\x20\xa8\xd5\xbf\x03\xe6\x75\x8c\xde\x14\x55\x5a\x03\x8f\xd0\x21\x20\x4e\x09\xe3\xf3\xfa\xe0\xb8\x36\x24\x06\x07\x9d\x5b\x25\xbd\x9e\x2c\x59\xdc\xfb\xa6\x12\x4d\x9a\x0e\x52\xef\x70\xe4\x20\xc9\xa9\xa9\xf3\xc9\xf9\xed\xf8\xe4\x8a\x0d\x6b\x11\x97\xca\x78\x14\xba\x7e\x9b\x41\x52\x77\x3b\xdb\x61\xc0\xec\x8d\x5d\x17\x92\xa0\xf5\x50\x5d\x5e\x36\xe7\xf0\x2f\x98\xc7\x8c\x73\xa7\x29\x25\xc9\x60\xa8\x98\xfb\x39\xe3\x95\x8b\x4d\x5c\x9b\x23\x5e\x84\x7f\x42\xf1\xd6\x5a\x0c\x9b\x16\x71\xec\x80\xea\xee\xcc\x64\xcc\x5a\x7d\x47\x27\xf9\x13\xdf\xab\x20\x34\x89\xca\x10\x50\x7f\xce\x4c\x74\xe1\x11\x09\x8e\x55\xef\x55\x07\x15\x23\x9c\xd6\xc6\x63\x25\x64\x56\x2a\xb2\x06\x80\xcb\x49\xe0\xa5\x7d\x13\x96\xd0\x3d\xff\x90\x2c\x91\xf1\x60\xf8\x70\xb7\x66\x5d\xe2\xc2\xcd\x21\x6a\x71\x5f\xa4\xa2\xdb\xc0\xc7\x45\x6a\x0f\xfc\xf8\x0f\x44\x6a\x10\xe1\x97\x62\xf9\x2f\xf3\x3b\x5c\x76\xe7\x07\xa2\xf5\xa0\x86\xff\x99\x68\x3d\x7a\x40\x50\xea\x45\xc7\xd6\x40\x0f\x4d\x05\xe8\x18\x81\xc3\xcf\xbc\x23\x05\x3f\x5d\xca\xa1\xdf\xe1\x27\x4a\x34\x9d\x19\x58\x95\x37\x56\x62\x65\x97\xe8\xee\x3d\xec\xfa\xd2\x93\x7c\x44\x65\x97\xe0\x6d\x1c\x84\xce\x27\xe0\x8b\xf8\x5d\xa9\x15\x92\xd3\x29\x8b\xd7\xca\x42\x3a\x59\x00\x28\xd6\xb6\x67\x87\x89\x80\x3c\x57\xcb\x55\x32\x8d\x8f\x4f\xb5\xd0\x32\xad\x13\xef\x56\x55\x1d\x93\x6b\xb5\x2e\x5e\x56\x35\xe1\x30\x3e\x63\x1c\xa6\xfa\x41\xa2\xbb\xad\xa3\x37\xc0\x2a\x13\x38\x91\x58\x75\xe2\x81\x4f\x92\x61\xb4\x76\x18\xdd\xdb\xc1\x2e\x08\x81\x0b\x6c\x89\xd0\x52\x1c\xb5\xc3\xbe\x7b\xca\x40\xd9\x2a\x8a\xa8\xea\x3d\xfc\xa9\x6f\xe9\x6d\xa0\x4c\x2f\x11\x4e\x6a\x99\x2d\x5f\x97\xc5\x3d\xe1\x64\x9d\xdd\xbd\x82\x09\x42\x38\x59\xc8\xa2\x30\x61\x58\xe6\xea\x8d\x71\x86\xe0\xa4\xae\x6e\xdf\x6e\xb2\x52\xa7\x57\x85\xf9\xb5\x6d\xe4\x59\xb6\x21\x9c\xac\xea\x6c\x2d\xbf\x32\xde\xaf\x36\x78\xe3\xeb\x25\x82\x66\x77\x36\x69\x5a\x45\x71\x23\x18\x20\x40\x3a\x6b\x3d\xec\x3b\x0f\xbc\x22\xb3\xe5\xf2\x39\x74\xe0\x80\xc7\x5b\x88\x96\x86\xee\x8f\x57\xd4\xfb\x46\x0c\x4d\x69\xbd\xf3\x31\x34\xa2\xb6\x60\x2a\x83\xad\xb1\xe2\xf7\x66\x87\xce\x2c\x22\x16\x55\x02\x84\x99\xc3\x6e\x37\x6b\x1a\x08\x85\x85\x25\xe4\xab\xc4\xbd\xa2\x25\x38\x34\x68\xdd\x23\x38\x5d\x20\x47\x64\x7c\xa5\xd5\xe8\xb1\x96\xb1\x86\x2d\x61\x3a\xcb\x85\x4a\x33\x78\xba\xf6\xfe\xf7\x47\x64\x9c\x43\x36\x08\xf9\xaf\xc7\x02\xaf\x66\x95\x9e\x8a\x8d\xb8\x02\x92\x5d\xe3\xde\x76\x20\x81\x79\xe3\x50\x9b\x10\x8e\xc2\xc4\xab\xfe\x8f\xb4\x5e\x50\xf6\x1f\x35\xe0\xe8\x00\x3f\xa1\xb3\xc9\xd4\x82\xc1\x7e\x01\x21\xff\x77\x9a\x1c\xca\x1b\x6a\xf7\x2f\x8f\x4f\x67\xac\x16\xb5\x03\x82\x72\xb7\xf8\xff\x41\x47\xe0\x2e\xbc\xdf\x11\xc1\xe9\xad\x59\x01\x79\x1d\xfa\x24\x97\x6d\xdb\x5f\x38\xad\x15\xf0\xd0\x64\xa1\xa2\xa8\x4e\x90\xe9\x3f\x18\xd9\xc6\x60\xd1\xe9\x2c\x16\xc3\xd1\xee\x50\xff\x96\xbe\x7f\x83\x2a\x77\xfa\xb7\x74\xfd\x0b\xd0\xd8\xba\x8f\x1f\xa0\xf1\xc5\x51\x86\x1e\x12\xf9\x8a\xd6\x08\x40\x28\xa6\x3c\x17\xe6\x25\x3c\xc3\x6e\x9e\x29\x91\xa5\x15\x76\xeb\xe4\x3a\x6b\xf0\xad\x8a\x25\x79\xa7\xe6\x8a\xc5\xb9\xff\x36\x65\x4c\x8a\x1e\xcd\x1d\xc2\x03\xb0\x5d\x0c\xb4\x1f\x55\xc2\x8d\xc6\x28\x0a\x98\xcf\xc8\xc5\x85\x5b\x0e\x2e\x2e\x88\x43\xf9\x6e\x3a\x8a\xce\x41\x92\xeb\x60\x65\x0c\xc1\x32\x21\x24\x0e\x4d\xc9\xdd\x72\x41\x27\x62\x06\xb3\xc5\x7c\xd7\xf0\x4c\x14\x53\x63\x3c\xd3\xe3\x4d\xea\xf1\x66\x87\x7b\x6d\x87\x7b\x7f\x90\x53\x33\xca\x61\x12\xe0\x48\x77\x03\x5a\x01\x1f\xa8\xa5\x6a\x9c\x39\x72\x46\x83\x35\xfa\x4c\x89\x93\xf3\xfa\xe4\xaa\xbb\x69\xbd\xc9\x8a\x87\xc4\x84\xc5\x8f\x71\x36\xf1\xde\x8c\x4e\x68\x2d\xf4\xa8\x1a\x34\x80\x1a\x2d\xa8\x9a\x1d\x60\x1c\x45\x91\x3d\x44\xaf\x44\x9d\x74\x87\x99\x1d\x88\x37\x59\x41\x19\x8b\x25\x4b\x2a\x41\x88\x3b\xb3\xf1\x23\xbf\x4a\xaa\xb1\xbe\xd3\x9d\x2b\x15\x3a\xd9\xa0\xb3\x48\x35\x08\x7b\x65\x2c\x80\xba\x0b\xe5\x98\x10\x38\x49\x03\x2d\xeb\x26\x2b\x02\x1f\x6a\x43\xb5\xd3\x4f\x1e\x06\xa7\x04\xbf\x1c\xa3\x76\xa9\x10\x09\xda\x8f\xbd\x8a\x13\xd8\x6c\x41\x84\x15\x14\x85\x7b\xaf\x0a\xcf\xdc\xe3\x2a\xe9\x56\xa2\x1a\xa8\x41\xf5\xb1\xd7\x5f\x1d\xbe\x9e\x96\x02\x3d\xc8\xfd\xcb\x59\x52\x1e\x2a\xe1\xb4\x14\x86\x37\x90\x25\x0e\x57\x86\x3e\x03\x7e\x7e\xb3\x99\x2d\x75\x7b\x95\x96\x5c\xae\xa3\x00\xdb\xea\xc5\x96\x26\xfb\xd3\x54\x42\x53\xa1\x10\x8c\x7b\x04\xfe\xca\x57\x8a\x1a\x3c\x32\x09\x41\x63\xa8\xdf\x3c\x50\xaa\x19\xa8\x96\x5b\xb9\x01\x8d\xbb\xab\x3a\x65\xc2\xd8\xa1\x8e\xcd\x01\xb5\x81\x7d\x6d\x44\x06\x46\x03\x70\x95\x13\x59\x92\x8f\x4f\x63\xe7\x86\x89\xe1\x13\xf9\xd3\x69\xb2\x88\xb3\x24\x07\x47\xd2\x05\x38\xb8\xe8\x85\x8a\xc2\xde\xd6\x31\xc5\x68\x55\xb2\x06\x4a\xe4\x28\x1a\x95\x8e\x79\x26\x8a\xe8\xa8\x0c\x35\x35\x7b\xa3\x6d\x47\x5f\xd3\xf0\x0e\x27\x96\x26\x9a\x30\x0b\x65\x77\x4b\x4b\x33\x0d\x78\xe6\x96\xce\x99\xb1\x65\x2a\xb7\xd4\x34\x07\x81\x57\x07\x54\xf9\x61\xe3\xe8\x99\xf1\x5e\xda\x30\x91\xd0\xf1\x34\x3b\x3e\x9e\x31\x0a\x4e\xa7\x59\xf0\x65\xc2\xe3\x12\xf9\x91\x68\x0a\x44\xc2\x7c\xc6\x73\x90\x3b\x70\x22\x35\x9a\xfa\x1e\x05\x24\xec\x4e\x5f\x88\xe3\x53\xc0\x58\xe8\x28\xa9\xc6\x06\xe7\x8d\x7e\x7d\xe5\xb1\x33\x03\xe7\x87\x26\x03\x68\xb0\x83\x08\x18\xb7\x8d\xb5\xc8\xb0\xc1\x87\x50\x69\x9b\x16\x44\xe6\x7e\xef\xed\x8c\xb0\x29\xe8\xbe\x11\xe0\x60\x1e\x94\x24\x07\x08\xc3\x66\x60\x27\xa4\x2a\x49\x6c\xcd\x88\x10\xf7\x73\x36\x31\x48\xee\x82\x54\xa5\x05\x75\xcf\xcb\xa3\x12\xc4\xf3\x85\xd9\xc9\x9b\x1b\xf0\xa7\xb5\x58\xef\x97\xc5\xb6\x66\x8f\x4e\xf8\x6d\xb7\x26\x43\x4c\x08\x33\x37\x35\x0d\xb8\x21\xdf\x1d\xb2\xbe\x40\x84\x9c\x23\xef\xeb\x52\xf7\x5d\x8a\xb4\x6e\xdb\x6c\xce\xd7\x16\x42\x56\xef\xe0\x00\xc1\xd8\x40\x1e\xc7\x92\x9f\x05\xf7\x1c\x68\x37\x64\xf0\x5c\x5a\x9e\x78\x2f\x4e\x91\x7a\x4c\x2c\xc5\x42\x00\xe9\x6e\xc6\x3f\xeb\xc0\x82\xe2\xa6\x38\xbc\x1e\x5d\x98\xcd\xdf\x7a\x7c\x40\x89\xc9\xc0\xdb\xc2\x29\x72\x13\x50\xe1\xa2\x88\x9e\x89\x75\xf0\x56\xbe\x16\x67\x13\x74\x59\xd0\x8d\x8f\xe4\x7f\x8c\x6f\x45\xf0\x68\x8c\x5a\xb7\xee\xac\xf1\x9a\x53\x29\x3e\xc2\xe3\xb3\xe6\x03\xce\x0b\x51\xa4\x35\x56\x47\x40\x2b\xaa\xe4\x49\xfc\x19\x0f\x9a\x41\x9c\x79\x22\x49\x2e\x03\xae\x31\x11\x64\x4a\x06\xe9\x03\xcf\xfe\x90\x3e\x10\x0d\x48\x96\x9a\xc6\x1c\x88\x70\xcb\x95\x82\x58\xf4\x48\x80\x52\xb3\x00\x80\x2e\x95\xf3\xb8\x23\x0a\x38\xb8\x9f\xac\x0e\x38\xe7\xd6\x08\x1e\x57\xb5\xed\x68\x65\x9b\xdf\x90\xc3\xb9\x6b\x07\xbd\xa5\x8c\xf0\x1a\x55\x40\x01\x68\x39\x8e\xa2\x68\x74\x4f\x6b\x47\xf1\xb8\xea\x70\x2a\xb6\xed\x9a\xdb\x8e\x2e\xc6\x6b\xa0\x5b\x13\x21\x30\x1a\x9b\x35\xb3\x5e\xca\x25\x0a\xc1\x06\xb0\x56\x67\x0b\x40\xe6\xe8\x22\x71\xb5\x6d\xc6\xa2\xc8\xe4\x5b\x84\xb8\x5c\x6d\xbb\x30\x45\xfd\x9c\x97\xcb\xea\xb6\x6d\x4b\xb6\x47\x7c\xd4\xe9\x8c\x36\xe2\x32\xcd\x0d\xb5\x9c\x7c\x90\xa9\x6e\x29\x1a\x7b\x82\x90\x7f\x79\x9a\x14\xf1\xca\xf1\x42\xea\xcf\xa1\x1b\xcb\xf1\x77\x40\xf0\x87\x4f\xcd\x2d\xa3\x51\x63\x59\x07\xc1\x0b\x61\x63\x1a\x12\xe8\x67\xe8\x46\x6c\xa3\xa8\x49\xb7\x73\x7f\x27\x8a\x1e\xd1\x06\x23\x47\x4d\x7f\x77\x1e\x71\xd4\x3b\x96\xdd\xa8\x4f\xd0\xe2\xe1\x71\xb1\xf2\x6b\xdd\xaf\x72\x80\xf5\x85\xb2\xb6\x5d\x39\xaf\x15\xe3\x54\xe0\x13\xcc\x4b\x2f\x27\x1b\x38\x88\x53\xac\x6d\x47\x8f\x68\xcd\xda\x76\x1b\x45\x57\xb4\x4e\xd7\xd0\x80\xf7\x80\xe0\x4b\xe9\x42\xd4\xf8\x19\x54\xff\x85\x31\xe8\x79\x46\xdd\x94\x16\x6b\xfe\x50\x8b\x47\xd1\xf2\x90\x1b\x75\xcd\x6f\x15\xe3\xfa\x5d\xc0\x84\xfc\xf0\x93\x43\x94\x4b\xf8\xf0\x61\x1d\xcc\xfc\x59\xd8\xba\x2e\x00\xfd\xd1\xb1\xe3\x35\x86\xf5\xe5\x01\xcf\x0e\x27\x78\x03\xa1\xc1\x4b\xbe\x33\x22\xb3\x43\xd2\x33\xdd\xb3\x59\x9f\x80\xb9\x46\xe8\x41\xc5\x0e\xd0\x62\x87\x04\xf8\x1f\x9e\x0b\x75\x0b\xd7\x35\x55\x0e\xab\xd3\xa4\x7e\x7b\x40\xb5\xdd\x75\x2e\xd6\xca\x7f\x10\x6e\xde\xe7\x26\x36\x3e\x3b\xa3\x29\x43\xe3\x9a\x59\xba\x30\x0e\xf3\x3f\x21\x30\xc1\x37\x77\xcf\x70\x8d\x40\x32\x4d\x47\x95\x93\x6e\xbc\x4b\xbc\x89\x2b\x5f\x8f\xe5\x7b\x80\xff\x04\xfb\x0a\xc3\x0b\xbb\x32\x03\x15\x75\xef\xeb\xa7\x25\xda\xac\x6a\xdb\xfa\x70\xf4\x49\xfc\x6c\x1e\xe6\xe5\xb4\x02\x80\x93\x53\xc0\xe3\x45\x8a\xd3\xff\xfc\xc5\xc7\xa7\xb3\x2a\xe9\x14\x5f\xb1\x98\xd6\x83\xc3\xd9\xd7\xc6\xb8\x0f\x82\x2c\xde\xbb\xd3\x84\x0f\x4a\x94\x93\xa2\x5a\x60\x84\xc8\xeb\xf0\x44\x9e\xbf\xd3\xbb\xc2\xe4\x64\x76\x3b\x01\x83\xec\x2f\x67\xaf\x0e\x3d\x94\xc0\x9e\x23\xdb\x76\xc0\x0f\x89\x05\xca\x10\x20\x77\x2a\x01\xc3\xbf\x9c\xbc\x78\x7d\xf6\x46\x97\x58\x33\x2c\xf9\x65\x5d\xad\xdf\xc2\xf3\xa0\x4f\xc8\x3b\x75\x72\xb7\x2e\x08\x33\xb0\x9c\x80\xaf\x6f\xf6\x17\xde\xba\x3a\x82\x0d\x8c\x39\xca\x6d\xbe\xba\x7f\x97\x5d\xe9\xfd\x0f\x25\x50\x64\x2d\xeb\xba\xaa\x03\x7f\xe6\xdb\x09\xa4\x50\xf2\x5d\x79\x93\x15\xf9\xf2\xe8\x97\xb3\x57\xb1\xde\x5b\x33\xae\x30\x82\xee\x4e\x7f\x6e\x7a\x3e\x7f\x74\xc2\x7f\x80\xfd\x70\x72\x5e\x9e\x5c\xf1\x57\x46\xf9\x6a\xb6\x97\xeb\x5c\x99\x03\x96\x36\x5f\x67\x57\xb2\xad\x65\x23\x55\xbb\xca\x0b\x09\x27\x2e\x5f\x7f\xf4\x68\xe6\xbd\xbc\xbf\x92\x25\x0b\x8f\x61\xde\xaa\x9e\x6f\xdb\x60\xc4\xb6\x99\x32\xdd\x13\xfc\x8a\xed\xca\xb6\xb5\xf4\xd4\x92\x25\xba\xaf\x2b\x16\xeb\x22\xc7\x24\x25\xe3\x01\xf6\x13\x67\xc6\xaf\x12\x15\x13\xad\x2d\xcc\x09\xaf\x1c\xda\xbf\xe5\xb3\x2f\xdb\xd6\x3e\x3b\x12\xe2\x02\x54\x66\x43\x1e\xd7\xf1\xd9\x52\xcc\xbd\xac\x82\xa2\x54\x5a\xcd\xb1\x34\x18\x32\xd9\x5a\x0c\x9f\x15\x02\xc0\xe7\xd0\xf4\x06\xa6\x48\x45\x59\xac\x66\x75\x6a\xfd\x9b\xe6\x42\x96\x8b\x6a\x29\x7f\xfa\xf1\xbb\xe7\xd5\x7a\x53\x95\x48\x9c\x38\x26\x82\x8c\x07\xee\x84\xbb\x52\xb6\x07\x19\x85\xfb\x7a\x7b\x52\x4d\x0e\x1b\x19\x80\xce\x26\xbf\xfd\xbe\x95\xf5\xbd\x41\x59\x7f\x53\x64\x79\xe9\x1c\x0c\x6d\x1f\x74\xc1\x2e\x2a\xdc\xae\x6b\x55\x8d\xfb\x8d\xbb\x6f\xcb\x20\x0e\xe8\xad\xa2\x25\x87\xd8\x1f\xdd\x75\xee\x28\xd0\x68\x71\x11\x61\x3d\x6f\xcb\x46\xd6\x79\x56\x0c\xc3\xd1\x99\xc6\xa5\xc6\x1c\x65\x32\xe2\x97\x20\xdc\x46\x98\x34\x50\x80\x1a\x02\x18\x46\x1f\x0e\x73\x46\x8f\xc6\x2b\x69\x26\x97\xdf\x8b\xcb\x24\xd4\x0d\x8d\x39\x71\x0f\xe4\x0f\xe0\xf8\x79\x58\xa0\x33\x99\x74\xa2\xce\x75\x93\xe9\x86\x36\x36\x9d\xbc\xa1\x24\xb6\x7b\x60\x60\x81\x31\xe3\xba\x63\x59\xd1\x9a\xc3\x2b\xe5\xf1\x84\xf1\xae\xd9\xc4\xb5\xed\xc8\x51\x7f\x80\xe1\xa4\xf7\x81\xa1\x43\x58\x68\x49\xea\x52\x7e\xa1\xb3\x40\xcf\x74\x54\xb2\x04\xcd\x46\xe5\x90\xd9\x68\xa7\xbf\x25\x56\x38\x0a\x90\x0f\xd4\xd3\x06\xfc\xa0\x38\x39\xaf\xcf\x4b\x02\x3e\x33\xf1\x40\xde\xf2\x81\xbc\x88\x55\x6b\x0d\x74\xcf\x95\x38\xf9\xcb\x93\xe9\xc9\x15\x7f\xaf\xc4\xc9\xff\x33\x79\xfc\xe8\x84\xff\xae\xc4\x09\x4d\x93\x68\xce\x2e\x44\xfa\xef\x68\xfe\xf8\x84\xff\x0c\x02\x68\xf2\x38\x61\x71\x7a\x74\xae\xe6\x8f\x69\xfa\x6f\x5d\xe4\xfc\x31\x7b\x74\x72\xb5\xe6\x2f\x8c\x80\xfa\xe6\xeb\x77\xed\xb7\x5f\x3f\x7b\xa1\xf7\x8d\x5f\xe9\xb4\xf3\x93\xf3\x93\x13\xfe\x46\x89\xdd\x9e\xff\x02\xff\xfe\xa6\x04\x79\x7c\x42\x6c\x74\x2a\x79\x4c\x18\xff\x71\xc0\x91\x27\x0b\xf1\x67\xbf\x0b\x0f\x79\xbb\x81\x85\x87\x0b\x84\x72\x8e\xaa\xba\xf0\x99\x8d\x91\x9d\xf2\xbc\x7f\x72\xde\x39\x05\xc6\x73\x89\xd2\xd0\x02\xd7\x22\x37\x96\x62\x32\xd6\x92\xae\x4e\xa7\xf3\x84\xd6\xa2\x76\x10\x2d\x6d\x4b\x1e\x13\x8e\x31\x74\x12\xe2\x46\xd2\x39\x73\x0e\xeb\x25\x63\x71\xff\x1e\x6c\x0d\xca\x90\x88\xe6\xdb\xbe\x9c\x46\xbc\x10\x29\x84\xf8\x45\xf9\xcf\xcf\x68\x83\xf7\x17\x0e\xfd\x23\x6d\xe6\xe8\x90\x89\xe2\x23\x6d\x30\xc4\x29\x1c\x97\xe6\x99\x42\x34\xc6\x79\xf9\x41\xd7\xde\xa2\x6d\xf3\xb6\xad\xd2\x62\x9e\xe4\xc9\x88\x2e\x44\xc1\x8c\xdd\x2d\xa6\x0a\x48\xa7\xf5\x46\xc3\x7b\xe3\x17\x8c\x67\xfa\x9f\xd1\x29\x18\x19\x16\x76\xf5\xcc\xc2\xdc\xe9\x74\xae\xb5\xf4\x0a\x62\xba\xa2\x28\x83\xae\xf6\x9f\xfe\x52\xf5\x22\x1c\xc5\xed\x24\xfb\x2d\xbb\x7b\x2b\x95\xca\xcb\xab\x66\xb2\x2a\x32\x65\x42\x51\x1d\xff\x78\x89\xcb\x83\xb7\x76\xa6\xe5\x5c\xeb\xfb\x55\x5a\xea\x9d\x73\xdd\xb6\xb4\x16\xbb\x3d\x63\x69\x39\x47\x66\x65\x27\x11\x03\xbe\xcd\xd1\x14\x98\x65\xb8\xdc\xff\xa8\xe0\x60\x57\x7c\xc0\xbf\xa1\xfb\xd2\x42\xe5\x37\x32\x9e\xf2\x22\x6b\xd4\x59\xb5\xcc\x57\xb9\x5c\x42\x5c\xad\xca\x20\xbe\x36\xac\x6b\xbc\xdb\xd6\x45\x6c\x0b\x01\xdd\x9b\x7c\xf3\xf5\x3b\xc2\xf3\xe6\x55\xb5\xc8\x8a\x18\xfd\x25\x2e\xab\xad\x6a\xb3\xcd\x46\xff\xff\x71\xa3\xaa\x5a\x2f\xf5\x93\xf1\x31\xbc\xb3\xc9\xab\x12\x56\x7c\xbd\xf8\xb7\xb7\xf9\x12\x28\x43\x1f\x9d\xa0\xe8\xf9\x60\x82\xf4\x17\x55\xc1\x38\xf2\xbe\x00\x8b\x61\x5d\x69\x5d\x0d\xc8\x2d\x46\x53\x9e\x35\xf7\xe5\xc2\x50\x0b\x2b\x59\x2a\x60\xa0\x23\x7a\xeb\x94\xa3\x22\x76\x72\x77\x7c\x7b\x7b\x7b\xbc\xaa\xea\xf5\xf1\xb6\x2e\x70\x95\x5b\xce\x8e\x16\xd7\x5a\xb7\x51\xe2\xa7\x77\x2f\x8f\xff\x8b\x70\xad\x01\x6e\x94\x09\x03\xfc\x4d\x21\xd5\x03\xea\x4f\x1b\xbd\x7c\x11\x04\x86\xc7\x14\xfd\x93\xf0\x3b\x7d\xdd\x79\xd3\xba\xe0\x47\x4e\xe5\xe2\xbf\x35\x80\xdb\x19\x64\xd0\x29\x26\xc7\x6f\xd9\x4d\x66\x28\x3b\xf6\xb6\xee\x4d\xbc\xd3\x65\x9e\x9c\x5f\xde\xad\x8b\xf3\xcb\x13\x7c\xe5\xc9\xf9\xa5\xfe\x7b\x82\xe5\x9d\x9c\x5f\xea\xbf\xe7\x97\x27\x7b\x5e\xcb\x66\x53\x95\x8d\x7c\x99\xcb\x62\x69\x1e\x26\x36\xf1\x97\xb3\x57\xc4\x7c\x85\x4d\x7a\x27\xef\x94\xad\x96\x4d\xfb\xfb\xdb\xd7\x3f\x60\x0d\x6e\x64\xad\x4c\x20\x24\x54\x91\xc4\xa8\x47\xa2\x16\x79\x04\xdf\xac\x1b\x1a\x2f\x75\x29\x24\xd6\x4f\xa3\xde\x69\x92\xf5\x87\xc7\x5e\xc9\xdd\xf3\x60\x48\xe3\x90\xb1\x5d\x75\xa7\xf4\xf6\xcc\x0d\xaa\xed\x03\x0e\x28\x2a\x79\xa9\x28\x4c\x9c\xee\x5c\xd1\x1b\xe2\xf8\xa5\xa2\xdd\x54\x60\xe9\xd0\x09\x9e\x8a\xe6\x3b\x45\xdf\x28\x06\x89\xef\xea\xac\x6c\x36\x55\xad\x74\xe2\x2f\x26\xb1\xf7\xda\x41\xdb\x13\xed\x04\x00\xcc\x7a\x28\xc3\xce\xa4\x77\xed\xe7\xf3\x76\x03\x61\xeb\x42\x81\x45\x82\x5f\x8a\xeb\x89\xf9\xea\xb6\xbd\x46\x93\x1f\x5e\x46\x11\xbd\x0c\x70\x3f\x2e\x8d\xe6\xc4\x92\x5b\x7a\xc9\x62\x6b\x5b\x3c\xeb\x40\x0a\xf0\x2b\x71\x3b\x79\x9e\x15\xc5\x65\xb6\x78\xdf\x50\x52\x95\x0b\x79\xb4\x96\xeb\xaa\xbe\x27\x8c\xdf\x8b\xeb\x49\xa3\x32\xb5\x6d\x9e\x03\xa9\xfb\x6e\xcf\x6f\xb4\x8c\x7d\xa6\xff\xb9\x10\x04\x69\x4f\xe5\x92\xf0\x0f\x62\x57\xcb\x6c\x79\xff\x56\xe9\xdd\x36\x10\x8c\xff\x68\x86\xc5\xb7\x32\x5b\x0e\x11\x58\xcf\x10\x6c\x5b\xef\x54\x90\xed\xa5\x11\xbb\xfd\x4c\x89\x9f\x15\x86\xbe\xe6\x6c\xc6\x9a\x54\x1d\xb0\x10\x00\xc9\xbb\xa0\x0f\xde\xea\xc0\x37\xa8\xf4\xc9\x9c\xcd\x94\x68\x52\x39\x90\x75\xdf\xd1\x32\x14\x6a\x19\xca\x68\x7f\xfc\x48\xab\x7f\x57\x52\x3d\x2b\x8a\xee\xb7\x0c\xc1\x20\x6f\x93\x3c\x76\x0e\x23\x3f\x22\x0c\xc7\xc1\x97\x07\x83\x11\x5f\xb9\x85\xb8\x84\x67\xfd\xca\xcd\x07\x92\xda\x56\xf2\x9b\x54\xce\x85\x39\x04\xdd\xf3\xea\x46\xd6\x75\xbe\x94\x67\xf9\x1a\x89\x33\x1f\x34\x79\x6f\x21\x68\x6f\x6d\xf2\x09\x69\x4b\xf0\x7d\x3b\xdc\x3d\x10\x28\xbf\x65\x1f\x6c\x6c\x9f\x4c\x3f\x98\xf1\x10\x46\x8a\x20\xf2\x1e\xbb\xd7\xbb\xf7\x54\xff\xcb\x65\xaa\xe6\xf3\x2e\xe7\x46\x76\xa9\x27\xcb\x80\x23\x4d\xdb\x5e\x04\xab\x4c\x3d\x81\x8c\x54\x31\xfe\x9a\x4e\xed\x81\xef\x1e\x36\x0c\x67\x0e\xdd\xe1\x03\xe3\xd7\x93\x6d\x5d\x08\x4a\x65\xdb\xc2\xcf\xb6\x35\x0b\x08\x1b\x13\xc2\x9c\xf6\xf6\x95\xe2\x81\xf0\x1f\x93\x93\x13\xa2\x9f\x45\xea\xce\xc9\x5a\xaa\xeb\x6a\xd9\xb6\xca\xf0\x7a\x5d\xbb\x14\xcc\xc2\xaf\xfd\x82\x2c\xa8\xbf\x00\xe5\x85\x3d\xac\x0d\x11\x62\x83\x4f\xaf\x27\x8b\xba\x6a\x9a\x17\xd5\x3a\xcb\x4b\xb6\x1b\x80\x11\xd7\x9a\x9a\xde\x86\x17\xb8\x96\xc2\xc7\x70\x73\x81\x7f\x78\xa7\x10\xf1\x63\xef\x7b\xc6\x7a\x19\xae\x1a\x35\x12\x08\x85\x10\xdc\x29\xe0\x86\xd9\xaf\xbf\x63\xbb\x6e\x41\x5a\x66\xe6\x2b\xf3\x59\x51\x74\x3d\x09\xd6\x43\xcf\x76\xe7\xf5\x1c\x9b\xd1\x3c\x21\xec\x86\x07\x2f\x75\xab\xd6\xd9\x12\xa0\x00\xb3\x82\x31\xfe\xad\x96\x96\xfc\x9a\x2b\xfe\x81\xf1\xad\x35\x3b\x7c\x00\x4d\x64\x75\x94\x97\x74\x63\x8d\xd7\xfa\xdd\xb8\x2a\xb3\x28\x9a\x42\xac\x2b\x2a\x10\xe3\x31\xe8\x1d\x1d\x0b\x16\x01\xb1\xa8\xb2\x5a\xf9\x9e\xc4\x3f\x5d\x38\x40\x7e\x0d\x3e\x0a\x86\x03\x66\xf4\xc2\xec\x50\x30\x2b\xe3\x15\xb6\xb4\x1b\x28\xef\xe1\xf0\xb4\xf3\x50\xf2\x40\xcb\x00\x96\xa6\x91\xba\xa8\x25\x20\x23\x9c\x3b\xa2\xf8\x43\x95\x01\xa2\x77\x4d\x2b\xe2\x1f\x57\x8f\xe7\x8a\x93\x31\xd1\xea\xef\xd2\xd4\x10\x35\x66\x7b\xec\xc7\x78\xd0\x0d\x41\xb5\xbc\xad\x47\xf4\x3a\x0c\x4e\xd8\xc7\x82\xbe\x73\x81\x5b\x09\x89\x48\x4c\x12\xc2\xc6\xa6\xeb\x8c\xff\xa4\xc9\x8f\x76\xe9\xeb\xc9\x22\x5b\x5c\x4b\xc4\x46\xf4\xdc\x73\x8a\x93\x47\xa7\x84\xf1\xe5\x70\x81\xe4\x42\x90\xf1\x6b\x35\x1e\x8f\x97\x76\x8e\x56\xf8\x33\x5f\x59\x3d\x10\xd0\x25\x42\xc5\x10\x42\xcc\x3e\x4c\xfa\x82\x93\x92\xef\x56\xc7\x36\xcf\xf1\xdb\xbc\x5c\x48\xc2\x0f\x9e\x04\xab\xb0\xca\xae\x3e\x56\xc8\x0f\x55\x29\x8f\xcf\xf4\x2c\x20\x3e\x37\x63\x3c\x18\xfb\xbe\xdb\x8d\xf5\xbc\xd7\xc1\x2a\xbc\x64\xc3\x6f\x32\x05\x1c\xbf\x03\x9f\xed\x4e\x01\x8c\x0f\x3d\xf0\x0c\x34\x45\x12\x8a\x99\x74\x3a\xd7\xd5\x31\x3a\x64\xda\xbd\x33\x4f\x1e\xbc\x33\xd6\x1b\x04\xa8\x76\x98\x9c\xe8\x55\x6c\xfc\x9b\x1a\x93\xd9\xd1\xef\x62\x3a\x99\x9e\x92\x98\x10\x16\xfb\x62\x10\xd3\xe8\x7a\x72\x8d\x2b\x1b\x1b\xa8\xe6\xca\xdf\x4e\x57\x48\x53\x77\x3d\x41\xca\x99\xb7\xb2\x5c\x5a\x7c\xaa\x30\x0d\x4f\x1a\x2f\xf9\x07\x7e\xcd\xda\x76\xeb\x0e\x77\x3f\x18\xf1\x0e\x85\x5c\x08\x02\x57\x84\x5f\x01\x51\xe9\xb5\x47\xf2\xe0\x1f\x30\xfc\xfa\x7a\xd2\x6c\xc1\x9e\xaa\x53\x00\xdd\xe3\x1a\x0d\x86\x8c\xd7\xe2\x5b\xad\x79\x19\x01\x03\x7a\xc4\x87\x89\xd7\x41\xc4\x29\xdf\x44\xd1\xba\x27\x36\x80\x3b\x27\xfd\xc0\xaf\xe7\x1d\x91\x74\x3d\x01\xdd\x5f\x37\xbc\xc2\x70\x9a\x2f\x01\xe7\x5c\x3c\x08\x7a\x65\x3f\x84\x98\xfc\x84\xed\x41\x1a\xe1\x15\x43\x91\xbe\x15\xa3\x53\xe0\x42\x2e\x97\xf4\x86\xbf\x66\x5e\x10\xc3\xb2\xaa\xae\xeb\xea\xf6\xe8\xdd\xec\x35\x3d\x3e\xe5\xef\xd8\x7e\x0f\x2b\x2a\x5c\x91\x1f\xaa\x23\xa7\x62\x86\x5b\xf9\xd7\xb0\xe3\xcd\xdc\xee\x14\x94\xc5\x1b\xfe\x8c\x5f\x08\x35\xdb\xb6\x2d\xdd\xea\x7d\xed\x22\x8a\x7a\xd1\x41\x0b\xdd\x60\xe6\xb0\x24\x17\x8d\x16\x58\xbc\xd3\x5c\xf2\xcb\x69\xf2\xb9\xde\xb0\x09\xf9\xa5\x78\x32\x9d\x46\x91\x7c\xfa\xd9\x74\xda\xb6\x9f\x4d\x3f\x17\x42\x48\xae\x25\xce\xcd\x41\x94\x78\x00\xa3\xe5\xd9\x15\xcd\x16\x84\x2f\x84\xf4\xa3\x71\x46\x1e\x6b\xd1\xb4\x48\xa7\xf3\x19\x5b\xb8\x53\x5e\x87\x2b\x51\x03\x0f\x8d\x74\x5a\x8a\x9e\x72\x07\x5a\x64\x6f\x8e\xa1\xe3\x62\xed\x39\x73\x1b\xad\xb0\x34\x20\x0a\xf4\xbf\x28\x9f\x6a\xc6\x76\x0b\xb7\xfb\xae\xd8\xec\xb2\x96\xd9\x7b\xbd\xf4\xe9\xca\xe4\xe5\x51\xc9\x72\xac\x97\xee\x00\xcf\x44\x5d\xa2\x72\xba\x40\xf6\xe2\x89\xdf\xd7\xa4\x95\xd6\x1e\xc7\xfa\xc6\x9c\xed\x72\x51\x99\x12\x33\x20\xe2\xa9\xd8\x1e\x80\x36\x32\xfd\x06\xe7\x2d\x9e\x8f\xf0\xdb\xa3\xc8\x57\x25\x67\xbc\x4c\xf3\xf9\x9e\x5e\xf3\x0f\x3c\x63\x8c\xf7\xdb\xb7\x07\xb6\x0c\x3c\x24\xbb\x3d\xdf\x86\xed\x6a\xd6\x07\x68\x89\x6d\x7a\x3a\x47\xfa\x49\x50\xc9\x82\x2a\xb3\x22\xcd\xfa\x3a\x66\xe7\x93\xb2\x39\x06\xff\x89\xad\xed\x9a\x59\x0e\xfe\x6c\x70\x9a\x16\xec\x0d\xd3\x1c\x39\x13\x07\xd2\x41\x37\x1d\x2d\xa2\xa8\x8e\x22\xac\xe1\x4b\xd8\x38\xe1\xae\x27\x48\x80\x33\x21\xfb\x05\x00\x8c\x90\xf3\xe0\xcd\xfa\xb5\x38\x5a\x72\xdd\x33\xce\x02\x8e\x12\x6e\x11\x45\x0b\xf0\xc3\x87\xde\xa1\x99\x28\xd2\x05\xf4\x47\x3e\x6f\xdb\x22\x25\x8f\xe1\x67\x40\xa4\x5c\x80\x0b\x50\x23\xaa\x00\x33\x96\xa5\xa7\x73\xf4\xdf\x0f\x0a\x00\x41\xea\xca\x80\x2b\xc6\x76\x00\x15\x9d\x25\x19\x10\x2d\xc7\x00\x00\x50\xc0\x08\xa3\xb9\xd0\x79\xf8\xd6\x75\x68\xa3\xdb\x3f\x18\x5f\x90\x39\xd3\xaf\xcf\x74\x8b\xc0\x84\x6f\x98\x12\x99\x73\x8b\xc4\x03\x18\x7d\xed\x85\x83\x31\x60\x36\xb0\x95\xea\x9c\x9b\x70\xf8\x13\x67\xc9\xbb\x58\x4b\x08\xec\xbe\x06\x80\xed\xea\x6a\xad\x87\xe4\x98\x1c\xa9\x4a\x37\xc0\x7e\xbf\xef\x96\x63\x04\x29\xe1\xba\xdd\x63\xb5\xd7\xa3\xee\x86\x7f\x00\xd0\xa5\x84\xf6\xd6\x67\xfa\x4c\x7c\x18\x9a\x7d\xaf\xb2\x46\xb9\x25\x19\x31\x51\x0e\x16\x64\xf1\x8c\xf1\x87\x9e\xd7\x4b\xaf\x7d\xcc\x2c\xc3\xe2\x19\x63\xfc\x09\x0a\x99\xb6\x25\xdf\x7e\xfd\xec\x05\x81\xd5\x44\x2b\x31\xc9\x85\x20\x65\x65\x99\x06\x62\x23\x8b\x30\x55\xad\x6d\x3d\x62\x7a\x21\x6e\x60\x63\x22\xf9\x4a\xdc\xa0\x4e\x53\x88\x11\x5d\x8a\x1b\xb3\x5c\xa0\x42\x75\xc1\x47\x32\x8a\x2e\xda\x56\xaf\x3d\xb6\x49\xc1\x87\x5b\x8a\x29\x63\xb0\x48\xc3\xf6\x46\x48\xf7\x13\x28\x9a\xa8\x6a\xdb\x0b\xbd\xb3\xe0\x45\x72\xd6\xc1\x29\xbb\xe4\xe9\x8a\x5f\xf0\x0f\x73\x16\x9f\x85\x40\x65\x97\x7a\x99\xb9\xe0\xcb\xb9\x2f\x54\xef\xb3\xe8\xbd\xde\x55\x1b\x41\xdc\x59\xa0\x8a\x04\x97\x28\xd3\x4d\x31\x5c\x7d\x8d\x75\xd4\x2b\x16\x2f\x92\x55\xac\x8b\xbb\x02\xf0\x9f\xe0\x25\x73\xa6\x4b\xa2\xbd\xb5\xee\xb9\x59\x4b\xdd\x7a\x77\x7c\x6c\xd5\x6a\x38\x76\x1b\x52\xaa\x2b\x70\x67\xb3\xbb\xe2\x0f\xb0\xfb\xfd\xfb\xdb\xd7\x3f\x3c\x10\xf0\x75\x74\x6b\x63\x4e\x78\xc9\x09\x98\x71\x70\xc7\xfc\x16\xac\x51\xc3\x1b\x5f\xfb\x8c\x69\x03\xe5\xe9\x66\x3b\x4e\x66\x57\x52\x11\x4e\x36\x55\xa3\x06\x20\xd7\x7b\x01\x5e\x5d\x8e\x89\x2b\x6a\x41\xfc\xdb\xb6\xe6\x35\x40\x75\x5b\xbc\x05\x34\xaa\x78\xd0\x2f\x30\x23\x49\xb4\x39\x2a\x6e\x25\x52\x5c\xe1\x24\x29\xb9\x99\x34\x31\xa0\x6e\xf4\x4f\x9f\xc0\x91\xc8\x04\x5b\x5b\x92\xe7\xe1\xa0\x60\xf3\xda\xf0\x6d\x68\xe1\x74\x6f\xb4\x8d\xc0\x41\xe9\x0e\xac\x91\xa7\xce\x5e\x79\xda\xb5\xac\x81\x8d\xcc\x3c\x15\xda\x23\xf6\x7b\xee\x05\x6d\x0f\x44\xd6\x53\x5e\x23\x08\xf4\xbe\x7f\xbe\x75\x5b\x67\x9b\x67\xc5\x80\x7f\x71\xb8\x99\x87\x55\x8c\x22\xbe\x0b\x95\x22\xf0\x07\x4e\xa7\x5a\xab\x56\xe2\xd6\xa0\x11\x1f\xd0\x92\xb3\x89\xfc\x9d\x4e\x59\xc0\x0a\x68\xb3\x75\xa3\x65\x3a\x0c\xa2\xb6\x64\xae\x0e\x4e\xc7\x1c\x67\x28\x1c\x68\xcd\x24\xb2\xaa\x9a\xbd\x35\x44\x2f\xcf\x98\xae\xe1\x61\xb2\xc3\x82\x65\x8e\x4b\x12\x1d\xd0\x8d\x69\x44\xb7\xc4\x77\x65\x39\x4c\x40\xfd\xa0\x67\x7e\x10\x79\xe1\x0a\xe8\xc6\x5d\xb0\x3f\x72\xc5\x77\x5e\xf7\xa5\x70\x7b\x8e\x86\xfa\x98\xfa\xa4\x9c\x98\x5e\x82\x83\xbe\x90\x08\x93\x61\xb5\x07\xac\x2c\x57\x3e\x28\x61\xd0\xfb\xa4\xec\xd6\x5b\x17\xae\xba\x8e\xde\x2c\x36\x6f\xd8\x96\x07\xef\xe8\x10\x37\x42\x3f\x52\xc9\x26\x65\xa5\x28\xb9\xac\x96\xf7\x64\x80\x95\xd8\xc7\xa7\x38\x46\x4a\x7b\x6e\x68\xd9\xe9\xe1\x70\xc4\xc2\x3c\x9a\x18\xd1\x4d\x23\xb7\xcb\xaa\xb1\xb0\x4d\x03\x68\x1f\xbd\x8c\x40\x70\x65\xf8\x1a\x87\x6f\x0d\x15\x32\xa2\x32\xe4\x95\xd3\xda\x1f\x5e\x22\xcb\xca\x47\x88\x1a\xe0\x35\x9d\x83\x98\xbb\xeb\x3a\x8c\xda\xd7\x0b\x7e\x40\x86\x53\x4e\x7e\x39\x7b\xf5\xad\x52\x1b\xb3\xe5\x32\x5a\x80\xd4\xf3\x18\x8c\xc3\x3f\x29\xb1\x9b\x02\x0e\xc1\xe9\x93\x27\x9f\xc5\x4f\xa6\x9f\xef\xf9\x3f\x55\xff\xb4\xe7\xee\xba\xa6\x6c\x76\x36\x59\x54\x75\x23\x46\xa3\x7f\xaa\x28\x22\xb7\xb9\xba\x7e\x5e\xcb\xa5\x2c\x55\x9e\x15\x0d\xc9\xcb\xa3\x7f\x2a\x7e\x06\x0f\x8a\x7f\x2a\xc8\x66\x2a\xeb\xb6\x1a\xf4\x90\x93\x96\xd7\x68\x7b\xd3\x45\xb7\xad\x2e\x79\x24\x3b\x46\x2d\xab\x66\x74\x68\x96\x3d\x47\x17\x6c\x09\xb0\x7e\x5a\x37\x07\x6a\x4d\x6a\x3c\xba\x25\x18\xbb\x24\xee\xbe\xf4\x55\x23\xc1\xdb\x92\xcb\xc9\x26\x6b\x9a\xdb\xaa\x5e\x32\x0e\x4f\xa3\x8e\x19\xea\xb6\x3e\x51\x2b\xaf\x22\x48\xb0\xba\xac\xc9\x68\x37\x14\x51\xd4\x4c\xfa\x26\xd3\xa1\x34\xea\x1f\xd1\x2f\x0f\x3e\xb5\x6d\xab\x94\xfc\x72\x6c\xba\x4a\x2e\x8f\x81\x48\x75\xde\xb6\x74\x30\x5d\x90\x6e\xdf\x12\xc6\x2b\xd6\x1c\xee\xaf\x33\x0e\x1e\xdc\xb3\x41\x9f\xe5\x70\xe8\x80\x1e\x5d\x8b\x66\x52\x95\x45\x95\x2d\xe1\x07\x68\x31\xf0\x0b\x36\xa4\xf0\xcb\xec\x42\xe1\x37\x6c\xf1\x40\x35\x5a\x5c\x67\xe5\x15\xf2\x1b\x73\xb3\xf1\x06\x65\xaa\xb1\x7b\xf2\xd8\xa8\x44\x18\x30\x73\x00\xba\xd5\x18\x35\x26\xc9\xe9\x94\x9b\xac\x2c\xce\xa9\x4d\xe7\x4d\xa0\x31\xe9\x1b\x3f\xa9\xd4\x26\xcd\xdb\x76\x30\x1b\x1e\xf5\x00\xd5\x46\xe3\xf6\x13\xc6\xa2\x06\x77\xd8\x90\x0f\x53\x90\x55\xde\xa9\x64\x77\x99\x97\x59\x7d\x1f\xfb\xe4\x7d\xbc\x83\x53\xa1\x6e\xc6\x3d\x07\xfe\xcf\x43\x73\x3e\x65\x18\xb7\x60\xdb\x55\xef\x4b\xeb\x5e\xeb\xda\x36\x55\xd4\x7e\xba\x8f\xe2\x75\xad\x9f\xf8\x7e\xa8\xe3\xc1\xd6\x0f\xba\x53\xab\xb2\x4d\xb0\x05\x37\x61\x6a\x43\xd6\x06\x15\x45\x35\x35\x7e\x80\xba\x06\xd8\x7b\x68\x64\x68\xd0\xbe\x20\x3b\x16\x2c\xdc\x5d\x21\xe4\x92\xdd\x59\x2c\x0c\xb3\x08\x9a\x1d\x16\xfb\x03\x9b\x3c\xbc\x07\xbc\x1b\x50\xa7\xe9\x1c\x7e\x75\x25\x43\x67\x5a\x80\x7f\xab\x5d\xa9\x26\xa8\x92\x08\x73\xb8\xdd\x39\xc5\x72\x07\xa3\x98\xc7\x9c\x80\xfa\xe3\x4b\x7e\xd4\x39\xe1\x7c\x20\x5d\x2e\xd6\x83\xe9\x77\xc7\xfe\x4e\xe7\x20\xd4\xbc\xed\xe4\xfc\x92\x26\xb1\x2e\xb5\xd5\x19\x19\x26\xc3\xe9\xe7\x27\x28\x56\x32\x54\x60\x03\x35\x8a\x71\x69\xa2\x23\xba\xcd\xe5\x14\xba\xae\x44\x75\xf4\xdd\xce\xba\x6a\x7e\xe9\x06\xe3\x87\xcd\x8a\xa8\x27\x5a\x57\x0c\x9a\xd3\x8b\xeb\x07\xde\x82\x81\x36\x70\x82\xd3\x95\x5f\xd2\x74\xcf\x33\xa5\xea\x66\x58\x72\x83\x2a\xad\xb5\x10\xf2\x14\xf3\x7e\x49\x98\x89\x01\x0a\x1f\x46\x52\x6f\xf0\x4a\xda\x99\xf3\xef\xd8\x66\x78\x8e\xd7\xbc\xa9\x17\x31\x88\xf8\x3d\x9b\x54\x25\x25\x7a\x72\x1d\x99\x6d\x57\x77\xf1\x56\xd6\x0f\x52\xab\x3d\xe8\x21\x1f\x45\x15\x0d\x04\x12\x6e\x07\x3f\x9f\x7e\x0e\x6b\x21\x5e\x22\xd8\xea\xb5\xcc\x96\x1d\xbc\x1a\xa5\x95\xc5\x81\xd1\x5d\x46\x51\x49\x03\x27\xcb\x5f\x95\x48\xe7\xfc\x1b\x25\x4e\xa8\x60\xe7\x09\x4d\x44\xd4\x3e\x62\xed\x79\x82\xde\x95\xc1\xc0\xd5\x5b\x9b\x4d\x4c\x16\xe6\x9c\x14\x0f\xbe\x37\xf6\xd8\xf4\x90\x4e\xe4\x57\x85\x9e\xd6\xb0\xd1\xc2\xd0\x84\x31\xb9\x40\xc3\x78\x47\x93\x96\xe0\x86\x22\x07\x07\x90\x7e\x07\x9c\x8d\x6f\x48\x8f\x53\xa6\x47\xc1\x85\x08\x67\x13\xc8\x1a\x45\xf4\x1b\x17\x82\xbf\xad\x0b\x96\x90\x6d\x5d\x90\x21\x1c\x07\x63\xfa\x86\xd3\x0c\xf9\x7f\x7a\x9a\xe1\x5f\x6a\x8e\x1c\x88\xfe\x8b\x61\xc2\x4d\xdb\x12\xfc\x0e\xe8\xc8\x8e\x8b\x8b\x75\xc8\xb1\xf5\xb7\x6d\xaa\x35\xd6\x6e\x0a\x4b\x7a\x09\x94\xc5\xbd\x14\xde\x24\x32\x6d\xe6\x40\x66\xe8\x4e\x2c\xbe\xc1\x13\x8b\x71\xc5\xe2\x5e\x43\x41\x03\x05\x07\x23\xb6\xc1\xec\x59\x86\xc9\x09\x1e\x8d\x15\x4c\x4e\x6f\x2e\x33\x13\x0f\x7d\x17\xe6\xe2\xf0\x3c\x38\xf3\xbe\xad\xd5\x98\x1c\xdd\x66\xcd\x51\x59\xa9\x23\x3d\x84\x74\x8b\xf1\x2c\x9d\xce\xf7\xbc\xdb\x1a\x02\xf7\xd0\x3c\x17\x25\xb8\x6c\xa6\x55\xa7\xe4\x4c\xb8\x78\xce\x3d\xaf\x87\xf0\x56\x9d\x78\xc9\x13\x88\x46\xf3\x58\x1a\xb4\x62\x31\x94\x97\x73\x89\xc6\xab\x7e\x83\xab\x5e\x5b\xea\x31\xbc\x6d\xae\x69\xc5\x80\x50\xee\x0a\xf0\xd0\x73\x9a\xc1\x4e\x2c\x13\x79\x40\xfa\x60\xa5\x10\x86\x4c\xe1\xf9\xe6\xb7\xef\x00\x13\x03\xaa\x7b\x00\x3b\x26\xb2\x49\xbe\xde\xe0\x76\x0c\x06\xd6\xc0\x43\x54\x0f\x42\xbd\x7d\xf0\x31\x10\xb9\xde\x4e\xe9\x3c\x82\x3c\xd5\x63\xf0\xcb\xa7\x27\xf8\x27\xbc\x20\xfc\x09\xca\x57\xb7\x91\x30\xaa\xf9\x9e\xea\x49\x06\xe6\x34\x28\x63\xd8\xa6\x31\xe0\x31\x9d\xa4\xf3\x98\x0e\xc7\x72\x1b\x4f\x39\x2d\xbb\x55\xdb\xd2\xa1\x8f\x4f\x28\xad\x05\x55\x9f\xfa\xc9\xac\x7f\x3e\x7c\x99\x35\x52\x27\xc3\x81\x70\xe6\x9c\xc2\x8d\xb3\xd4\xa1\xf4\xab\xf5\xf6\x52\x64\x8c\xe7\x62\x54\x46\x51\x3a\xe7\xb4\x12\x6f\xd1\xa5\x42\x32\x96\xa4\xaa\xf7\x86\x2a\x3d\x9d\xb3\x79\x4c\x2b\x71\x81\xf0\xb7\x8a\xe7\x00\x8f\x9b\x3b\xf2\xb9\x5b\x9a\x33\x2f\xa1\x6f\x27\x6b\x59\x5f\x49\x9a\xce\x79\x15\xee\xd7\x58\xe0\xce\x62\xec\x0a\xa0\x4e\x3d\x88\xb5\xc2\x33\xc4\xfa\xd6\x3b\x84\x20\xc6\xdf\xf3\x44\x60\x8c\x58\x2d\xae\xf4\xe4\x44\x3b\xb7\xde\xa1\xeb\x1d\x3d\x5e\x4d\xb9\xbe\x06\xff\x64\xd3\x15\xc6\xd2\x13\xab\x21\xe0\x5a\x64\x07\x24\x6f\x5e\xbf\x7d\xa7\xa7\xa0\x85\x9d\x99\x46\xd1\x80\x85\xa6\x6a\xdb\xbe\x91\x06\x9d\xb5\x8c\x01\x95\xf5\x11\x82\x25\xdb\xe5\x7e\x8a\xea\x95\x49\xad\x0b\x5a\x27\x7a\x29\x5d\xe6\x37\x5f\x3a\x58\x35\x1a\x0c\x43\x80\x4f\x58\x21\x7a\x3e\x6e\xb1\xed\xc4\x2e\xa3\xa8\x6b\x4c\xca\x0e\xb7\xd1\x1d\xfc\xc3\xbc\x6d\x03\xab\x3c\xa8\xd7\x8a\xcb\x39\xa2\x84\x5b\xb3\x86\xb5\xaf\xf9\x53\x74\xee\x8d\x7f\xbc\x67\x39\x0c\x6d\x90\x1d\xeb\x24\xf7\xc7\x69\x03\x84\x88\x7d\x40\xc7\xae\x85\x00\x5c\x4f\xa5\x83\x61\x0c\xb7\xe4\x06\xc9\x70\x39\xf4\xec\xed\xe4\xaa\x96\x1b\xea\xb0\x36\x3b\x46\x17\x07\xbe\x27\x84\xb2\x4c\x28\x76\xda\xf3\x5b\xb3\x79\x87\xd0\x92\xd7\xf0\xf3\x61\xfc\x1f\x77\xce\xe2\x29\x97\x0d\xbf\x21\x90\xbd\xdf\x6a\x8d\x0f\xd8\x7d\x88\x56\xeb\xf3\x85\x1e\x5d\x85\xe7\x06\x0c\xd8\xea\x2d\x99\x3f\x61\xbc\x11\x96\xa7\x9e\x22\x28\xae\x29\x1a\x0c\xae\x7c\xe1\x13\x0a\xe0\xf5\xe3\xb4\x43\xb1\x58\xb4\x2d\x59\xe5\x77\x88\xe1\x56\xb0\x28\xa2\xf9\x78\x11\x2e\xd0\x5b\x55\x41\x3c\x65\x42\x33\x41\x6b\xb1\x75\x95\xa0\x8c\x01\x33\x7f\x25\x6a\x60\xf2\x63\x71\x97\xe0\x37\x67\x6d\x3b\xe5\x55\x98\xb4\x40\x46\x66\x44\x66\xa6\x4a\x38\x72\x86\xb2\x83\xd0\xab\x67\xbb\xc1\x46\x56\x13\x80\x2f\xa5\x1b\xfd\x17\xaf\x8e\x1b\xfd\xef\x38\xf3\x59\xf4\xdb\x21\x8f\xfe\x61\xae\x8f\x1b\xf8\xa3\xd7\x56\xb2\x6d\xb4\xd0\xcd\xcb\x23\x95\xa8\x09\x5c\xd8\xf7\x6e\x58\xbc\x85\xe6\xd9\x20\xbf\x53\x60\xad\xac\xfa\x7d\x09\x3b\x9c\x87\x60\x4c\xbc\xee\x0d\xa6\xbb\x41\x1b\x1c\x0c\x5f\x2c\x76\xe2\x06\x8b\xc5\x6b\x05\x14\x8d\x99\xc7\x82\xe8\x81\x2d\xd4\x49\xfd\x90\x55\x28\xd1\xfb\xf6\x87\x38\x16\x79\x29\x7a\xc1\x90\x61\xf8\x23\xdf\xa9\x6a\x13\x43\xab\x8e\xcb\xc9\x26\xbb\x92\xbf\x62\xad\xb8\x6e\xbb\x18\x5b\xd2\xdc\xf9\x05\xef\xec\x59\x0c\x0f\x4d\x31\xcb\x74\x6f\x51\x00\xf8\x66\x80\x9f\x5f\xef\x09\x8d\x81\xd5\x62\x82\x86\x5f\xc7\x2b\xd1\x2d\x4c\x6b\x74\x7e\x38\xe2\xc8\xad\xc3\x59\xc2\x3e\xf2\xad\xfe\x84\xd5\xd0\xf9\xb9\x59\x71\xd0\x08\x5c\xea\x14\xb8\xfd\x06\x6c\x8a\x6d\x5b\x4e\x96\xe6\xa6\x59\xbb\x66\x88\xeb\x2b\x44\x09\x9a\x42\xdb\xe2\xef\x5e\x2e\xc0\x7a\x70\x93\x75\x60\x5e\xa3\x8d\x38\x00\x74\x92\x51\x24\x91\xe4\xe5\x80\x83\x80\x56\x20\x03\x5c\xc5\x61\x82\x1d\x30\xa9\xbf\xab\x36\x8e\x43\x9d\xf1\x0a\x3b\xa9\x9f\xe9\x95\x5c\x29\x9f\xcb\x1e\xbb\xf8\xfe\x3e\xae\xe0\x5f\xd7\xc4\xc8\x85\xf5\x4e\xcb\x69\xa0\x1e\xf0\xfd\x7f\x8c\x6f\xe8\x67\x05\x96\x50\x0c\xf6\xdb\xf3\xb0\x29\x3f\x35\xf8\xa4\x6b\x5e\xef\xf4\x86\x6e\xa3\x4f\x69\xd5\xce\x33\x56\x4c\xb7\x6d\x26\xbb\xd8\xc1\x3b\xcf\x08\x17\x93\x60\x2c\x13\xee\x18\xe4\x30\xdd\x8c\xfe\x87\x22\x11\x3b\x79\xf4\x6a\x30\x3b\x40\xd0\xad\x3f\x46\xd8\xe9\x63\xec\xf5\x38\x07\x10\xbc\x5c\xc8\xf8\x6f\xfd\x61\x90\xeb\x8d\x8c\x9f\xa5\x21\x4d\xb1\x3b\xf1\x4f\xf2\x54\xcd\x63\x99\xd6\xf3\x59\x9e\xe4\x8e\x0a\x8f\x96\x49\x1e\x4e\xd7\xb8\xe2\x65\x52\xc5\x79\x38\xb9\x19\x3c\x26\xaa\x3d\x82\x16\x1f\x88\xb4\x10\xc3\x38\x25\xb8\x74\xc3\xda\xf1\x07\xf4\xc4\xc0\x40\xbb\xc9\xef\x64\xf1\xc6\xb2\xf6\x86\xf9\xcb\x0e\x57\xb1\xe5\x54\x57\x8c\x5b\xee\xfb\x92\x25\x30\xfa\xfd\x02\x93\xaa\x39\x70\xc3\xc6\x25\x92\x91\xb8\x0e\x35\x84\xe4\x8e\x3f\x19\x46\x7a\x6c\x78\x5f\x06\x70\x8e\xf1\x29\x47\x26\x0b\xba\x3e\x19\x4b\x6b\xc7\x89\x15\x27\x24\x26\xd5\x56\x41\x72\x58\x00\xb8\x49\x40\x37\xd7\x41\x37\x7b\x0b\xb4\xe8\x37\x9f\xd6\xdb\x03\x40\x69\xaf\xea\x57\x7a\xa9\x2e\xdb\x96\xc2\x99\x7f\xd5\xb6\x23\xdc\x4c\x59\x1a\xba\xd8\xd2\x07\x3b\x15\xf5\x60\x08\x69\xe1\xe9\x86\x90\xc9\x74\xaf\xf5\x53\xf0\x71\xf1\x8b\x36\x7e\x08\x4b\x54\xea\x3e\x75\x1e\x2b\x27\xba\xfa\x32\x2c\x25\x0b\x10\xa3\x90\xed\x6f\xa0\xe6\xd8\xd1\x98\xd0\x5c\x1c\xe4\xe7\x8e\xd6\x4d\x81\x68\x84\x0d\x6b\x55\x14\xfa\x79\x9e\x77\xae\x6c\x06\xcb\xac\x8c\x19\xba\x57\xfe\xe5\xcc\xc6\xb6\xe8\x06\x4a\x70\xda\xeb\x6f\x6e\x98\xe3\x87\x84\x26\xe0\x0d\x28\x9d\x3c\x4b\x2a\xf3\x00\xcf\x10\xa1\xd8\x8f\x11\x72\x59\x6c\xeb\x23\x08\x2e\x3e\x32\x11\xc7\x47\x36\xd4\xf8\xa8\x96\x4d\xfe\x41\x1e\x61\x45\x8f\x16\x45\xbe\x78\x7f\xb4\xbc\x2c\xf0\xc7\xba\xda\x36\x72\x59\xdd\x96\xf8\x6b\xbb\xc1\xbf\x7a\x83\x82\xbf\xaa\x1b\x59\x9b\x5f\x5b\x85\x3f\x64\xa9\x6c\x5a\x21\xb3\x1b\x79\x84\x26\xd9\x23\x0c\x08\x3d\xc2\x40\xd2\xa3\xf7\xf2\x1e\xca\x7d\x2f\xef\x37\xb5\x6c\x1a\xfd\x63\xbb\x39\x32\x2e\xf6\x6b\x59\x6e\x49\xe0\x46\xf2\xc7\xba\x6f\x70\x5a\x7e\x00\x77\x39\x4d\xbc\x42\x8c\x46\x2f\x6e\x39\x59\xed\xc1\xbc\xb2\x53\x3d\x50\x7b\xae\xf5\xc7\x7d\x24\xb2\xdc\x7f\xad\x9e\xaa\xfe\x83\xa9\x6a\x5b\x79\x18\xaa\x7e\x99\x87\xe6\xbf\xee\x01\xbf\xad\x9f\x34\x81\xee\xbc\x84\x13\xc0\x83\x47\x7a\x0f\xac\x56\xee\x09\xb6\xe7\x16\x3d\xe2\x0f\x48\x2a\x70\x5f\x60\xc8\x26\xb6\xe5\x03\x4f\xb9\x67\x80\x12\xb3\x8f\x6f\x15\xbc\x9e\x3c\x7e\x4c\x4c\x63\xea\x04\xc5\xc1\x6b\xfb\x31\xe1\xa5\x69\x82\x4d\x5d\xdd\xf5\x41\xbc\x5d\x38\x15\x68\x39\x07\x36\x33\xdc\xf1\xcb\x54\xcd\x0d\x8f\x43\xa9\x35\xe5\x80\xe6\x51\x2c\x50\x6d\xf5\xbb\xc0\x27\x4c\xef\xbf\x0f\xd7\x5b\x69\x77\x6e\x26\x98\xbc\xb6\x11\x0b\xfd\x12\x00\xa0\x6f\x72\xb5\xcd\x97\x42\x86\x7f\xda\xf6\x16\xfe\x8e\xc7\xbc\xd2\x7a\xf1\x75\x55\x2c\x7f\x94\xd9\xf2\xbe\x8b\x37\x03\x70\xbc\xd9\xf2\xfe\xe7\x2c\x57\xe3\x71\x6c\xae\x80\x39\x03\x5c\x1a\x20\x96\x52\x74\x22\x2b\xad\x95\xe4\xef\x6f\x5f\xff\x20\x82\xb0\x9c\x5b\x17\xf2\x29\xbe\x86\x67\x5f\x9a\x17\x89\x2b\xb8\x44\x7c\x0e\xa1\x9f\x5f\x64\x6b\x59\x3c\xcf\x1a\x29\xbe\xe7\xb7\x68\xc4\xbe\x80\xe7\x6f\x5d\x24\x3b\x3c\xf2\xc3\x76\x2d\xeb\x7c\x31\x40\xb1\x81\x4f\xf9\x63\x6b\x1a\x22\x8a\x75\x9d\x9d\x59\x14\x8d\xf2\xe6\x87\xec\x07\x2a\x43\xde\x77\xc9\xd8\xde\x2f\xcb\xb4\x1e\xe8\x84\xdb\xbd\xed\x05\x9e\xce\x19\x03\xf4\x15\x79\xb7\xa9\x6a\xd5\x88\x1a\x55\xfd\xef\x95\x28\x27\xbf\xfd\x63\x2b\xeb\x7b\xfe\x48\xff\x7e\xe4\xc9\x6a\xca\xea\x79\x55\xae\x8a\x7c\x31\x8c\x36\x34\x79\xa4\x15\x23\xe0\xad\x7a\x24\x1e\x29\xc6\xe1\x88\x07\xcb\x72\x77\xcc\xe5\xf7\x8a\xf1\x5b\x80\x6d\xf1\x69\xfa\xb1\x5b\x9d\xdc\x81\x75\x37\xb3\x80\x6c\x1b\x79\xa4\x1b\x61\xa1\xc8\xac\x9c\x2c\xa9\xe2\x24\x23\x43\xe4\xee\x3f\x01\x09\x14\xe6\xb8\x1c\xcc\xf1\x7d\x90\x63\x31\x98\xe3\x85\xdd\xf9\xd4\xa2\xa4\x5a\xa3\x15\xe5\xa4\x04\x24\x29\x41\x4b\x7a\xca\x78\x49\x9f\xfc\x17\x63\x3c\x83\xf4\x1c\x96\x51\xfa\xd9\x54\xef\x6d\x75\x42\xc3\x78\x21\x4a\xfa\xe4\x0b\xbd\x85\x1e\x94\x1b\x72\xd2\x6c\x2f\x1b\x55\xd3\x29\xb7\xd4\xe7\x4c\xf7\xed\x9e\x6f\xc4\x03\x50\x59\xd6\x8b\xca\xf9\xb5\x56\x42\x59\xd1\x9c\x10\xa6\xf7\x2e\xb9\xb8\xa7\xb0\xa6\x13\x70\x26\xd4\x49\x0b\x04\xc0\x2b\xc4\x94\x6f\xc5\xc2\x62\x69\x15\x4f\xb7\xb3\x62\x3c\xc6\xc1\xb7\x11\xa3\x53\xbe\x12\x8b\xb4\x98\x4f\x6a\xbd\x4e\x6b\x61\xb0\xb2\xea\x1e\xab\xc5\x0e\x52\xe3\x15\x87\xf8\x87\x26\xde\xed\xf9\xb6\xce\x63\xb5\xf7\xdb\x1b\x5d\xce\x52\xdc\xd3\xd5\x64\x93\xa9\x6b\xc6\x2f\xc5\x6e\xcf\xcf\x3c\xd9\xaa\xb5\xad\xf1\xa5\xf3\xeb\xbf\x11\xd3\xd9\xcd\xd3\xb3\xd9\x8d\xad\xc7\x85\x58\xa6\x37\x73\x7e\x2b\xf2\xf4\x06\xe2\x6b\xd7\xf4\x82\xb1\xdd\x65\x7a\xd1\x8d\xa2\x9d\x8b\xdc\x24\xdc\x60\x78\xf5\x52\xf6\xc3\xef\x2d\x7a\xf4\x09\x09\xbc\x13\xdd\xdc\xb8\x65\xbb\x8d\x18\x4d\xcd\x1d\xc0\x9f\x10\xd7\x68\x31\xbc\x00\x0b\xfe\x87\x28\x1a\x35\x6c\x77\xac\x65\xee\x33\xa7\xc3\x7c\x48\x4f\xe7\xac\x6d\x33\xca\xe8\xe8\x14\x87\xc7\x6b\x71\xf8\x6e\x7a\xcb\x66\x97\xa9\xce\x3c\x17\xaf\xf7\xd6\x97\xf3\x62\xd4\x7f\x2f\x38\x4c\x6e\xd8\xae\x3c\x68\xdf\x4b\x68\x5e\x72\x42\xc6\xb9\xb3\xfb\xdd\x04\x9f\xb4\xb7\x25\xec\x3d\x92\x59\x8d\x87\x9f\x7b\xbe\x12\x07\xd0\x63\x5b\xbd\x3c\x9c\x10\x0f\x39\x36\xb3\x50\xec\x7e\xf8\x00\xf3\xcb\x14\x19\x5f\x80\x00\xb4\x3f\xb6\x32\x71\xaf\x27\x40\x23\xee\x69\x0e\x8d\x04\x63\x2c\x0b\x0e\x35\x6e\x68\xce\x2b\x84\x56\xdd\x82\xdd\x9c\x93\x89\xc5\x7d\x5f\x88\xc6\x0a\xfc\x2c\xec\x1c\xf7\xa8\xbe\x44\xdd\x93\xe8\x2f\x67\xe3\x05\xaf\x10\xf7\xc8\x44\x25\xfb\xc7\xf9\x46\xa4\x73\xbe\x12\x53\xbe\x14\x85\xc3\xc3\x7b\xba\x9c\xad\xec\x48\xba\x16\x45\xba\x9a\xcf\xc8\x64\x02\xae\x95\xc9\x06\x8f\xa7\x62\x32\x81\x90\x81\x28\xda\xa0\xad\xff\xda\xf9\xfe\xdd\xe8\xf7\x8f\x37\xbe\x66\xfa\xed\x7c\x39\x38\x79\x75\xce\x7b\x50\x35\xba\xa1\xfd\x76\x4f\x76\x6d\x8d\xcf\x2e\xa8\x3f\x51\xa9\x6e\xd5\x79\x0c\xee\x57\xbe\x1f\xf9\xb5\x38\xf9\x77\x4c\x27\x63\x76\xc2\x2f\x87\x64\xea\xb5\x85\x12\xd8\xf3\xf5\xd0\x7d\xbd\x29\x05\xc7\x61\x09\xc7\x2b\x67\x83\xf5\x35\xc3\x4b\xf2\x66\x51\xd5\x32\x76\x1b\xb9\x64\x1a\xdf\x53\x89\x13\x76\x52\xcb\xe5\x76\x21\xfb\x48\x05\xf6\x35\x63\xf1\x39\x1f\x1d\xbe\x1f\x86\x80\xdc\x6b\x75\xff\x52\xff\x23\xc7\xe2\x49\xbc\x86\x5f\xc7\xe2\xaf\xb1\x1c\x8b\xcf\xf4\x3f\xa7\x5c\xee\x19\x9f\x32\x0e\x33\x29\x56\xfb\x3d\xbf\x1a\xfc\x1a\x68\xd1\x33\x86\x40\x68\x0f\x54\x65\x02\x5f\xf1\x54\xe1\xdf\xe4\x34\x36\x29\x5f\xda\x94\x63\x9d\x04\x6f\x3a\x56\xf8\x17\x16\x94\xfb\xe1\x37\xda\x63\xb3\x13\xfa\xef\xf3\x93\x71\x7b\x7e\x32\x7e\xc4\x4e\xae\x38\x21\xcc\x8e\x7f\xe8\xa8\x9b\x07\xc4\xf8\x98\xaa\x84\x24\x64\x0c\x40\x26\x7b\xfe\x4c\xa4\x64\x5b\xe7\x84\x13\xdd\xaa\x64\xce\x2f\x04\xba\x4f\x4e\xb2\xa6\xc9\xaf\xca\xb6\x0d\x2b\xe1\xf9\xa9\x4f\x67\xea\x69\x5f\xb9\x03\xfe\x19\x33\xa4\xdc\xbd\x54\xcd\x1d\xc5\x29\xf2\x7e\x32\xf3\x02\xcf\xca\x7e\x9d\x35\xaf\x6f\x4b\x43\xd6\x7c\x6f\xe9\xb9\x01\xea\x0a\x76\xd9\x25\x10\xf4\x39\x87\x40\x7e\x3b\xc8\xf8\xe5\xd0\x78\x4a\x40\x09\xcd\xea\xc5\x35\xaf\x85\xd2\xa5\x5f\xc3\xd2\x03\x07\x32\x5a\x4e\x20\x13\x34\x30\x0d\xd8\x70\x3c\xde\x08\x0c\xd2\xe3\x0b\xf3\x03\xdc\x9c\x0a\x9d\xa5\xaa\x15\x78\xf4\xbb\x93\x1d\xdd\x54\xfa\xf6\x6c\xb4\x8d\xa2\x2a\x8a\x3e\x00\x75\x63\x29\x6f\x8f\x7e\xfa\xf1\x15\xad\x98\xcb\x60\x27\xd4\xce\x26\xc4\x0e\x78\xc5\xaf\x01\x74\xcb\x18\xc7\xfa\xc6\x25\xd7\xb5\x8d\x6b\xae\xeb\x1a\x57\x86\xb3\x3a\xce\xb9\xad\x67\x9c\x71\x5d\xb9\xb8\xe1\xb6\x8e\xf1\x82\x43\x98\x73\xc1\xd1\x8f\x5c\x4e\xae\xf3\x46\x55\xf5\xbd\xf1\xb7\x7e\x2f\xef\xfb\x69\x00\xf8\x1e\x26\x4c\xde\xcb\x7b\xe0\xb9\xcc\x55\x9e\x15\x64\xbf\xe7\x1f\xc4\x88\x0e\x72\x93\xdc\x1a\x8c\xb7\x11\xfe\x70\xdb\xda\xc3\x94\xee\x29\x16\xe3\xaf\x07\xa1\x6b\xd2\x39\xaf\xd1\x68\x5f\x01\xa3\x58\xa8\x04\x5a\xb2\xb6\xdd\x95\x54\x47\xb6\xf5\xbd\xce\x53\x83\x2b\xf3\x91\xaa\xb3\x12\x8d\x1d\x79\x79\xe5\xef\x56\x7b\x7e\x51\x95\xef\xdc\x4d\x7b\x68\x12\x9a\xd6\xf0\x95\x94\xed\x79\x01\xc0\x4f\x1d\x8e\xed\xd2\x02\x83\xce\x10\xba\x22\x54\xba\xb0\xc6\x8a\xee\x6c\xad\xe2\x9a\x67\x70\x37\x26\x6f\x5e\xbf\x21\x7b\x4f\x7b\x27\x0f\xa1\xae\xc8\xa6\xda\x40\xbb\x13\x5e\xb1\x90\x0f\x48\x0e\x62\x51\x75\xb3\x97\xa2\x3c\x44\x8d\x09\x04\xc4\x48\x2b\x65\xe0\x2e\x55\x66\x37\x79\x77\x83\xa6\x1e\x32\xb8\x7c\x79\x1a\x80\xdc\xfa\xb9\x7b\x3a\x4f\xc2\x0b\xad\x47\x35\x22\x33\x03\x6b\x21\x5c\x50\x24\x2f\x84\x7b\x7a\x11\x45\x0b\x58\x6d\x0f\x00\x86\x15\xf3\xc3\xee\xaa\xb2\x11\x16\xbb\x46\x5c\xc0\x81\x05\xdf\xe9\xa1\xea\x71\xb4\x00\x4a\x18\x3c\xa8\xaa\xb6\x2d\x12\xff\xac\x79\x29\xf8\x64\xd1\xc6\x6e\x63\x83\x41\xae\xfb\xad\x77\xd7\xb8\x58\x6d\x74\x1b\xdb\x3e\x4b\x8b\x84\x98\xb2\x48\x4c\x50\xde\x91\x39\xec\xe8\xfd\x90\x9c\x42\xef\xe3\xec\x7e\x63\xa2\x9b\x87\xda\x3d\x17\x7a\xa9\x74\x0b\xe8\x64\x55\xd5\x5f\x77\x8f\x2e\x82\x3e\x1a\x1e\x37\x3f\xbd\xfd\x96\x20\xac\xe9\x76\xbf\xdf\xd3\x0f\x09\x4e\xa8\x43\xef\x95\x43\x3b\xc5\x60\xef\x4d\xc3\xde\x9b\xce\xb5\x96\xa2\x77\xc5\xde\xc4\xa5\xb5\xa8\x52\x78\xe1\xa4\xbe\x3c\x3e\x4d\x42\x45\x9f\xe9\x35\x18\x25\x53\xf7\x9e\x62\x31\x21\x7b\x43\x5f\x93\x96\x5a\xfd\x4a\x75\x4b\xcf\x3f\x3e\x63\xab\xb4\x9e\xef\x79\x7f\x3e\xf4\x0c\x15\x16\x6f\xff\xe3\x79\x4c\x5f\x03\x88\xf1\x91\x2c\x55\x9d\xcb\xa6\x33\xf9\x75\x3a\x7c\xe9\x81\xc0\x80\xe1\xeb\x53\x73\xa8\x94\x1b\x33\x83\x27\x8f\x7a\xdb\x14\xa8\x9e\x0d\xa8\x91\x7a\x06\x68\xd5\xd3\x0e\x7e\x21\xc4\x42\x6b\x83\x80\x6a\xcc\x2b\x14\x1f\xbe\x75\x1b\xdb\x94\x56\x05\x84\x75\xb8\x40\xae\x5b\x47\xf8\xca\xc3\xd1\xfd\xdf\x51\x17\xdd\xe6\x62\xa8\x16\x7b\x9e\x03\x7e\xcf\x9e\x5f\x55\x03\x1e\xe9\xf5\x58\xce\xd4\xd3\x69\xdb\xaa\x2f\xed\x5e\xe8\xf8\x14\x00\x68\xf4\x04\xd9\xef\x29\x63\xfc\x9d\xa0\xaf\x27\x56\xcc\xf0\xff\xcf\x2b\x0e\x41\x98\xe6\x5d\xb8\x06\x19\xf4\x1d\xf7\x26\xc9\x94\x9b\x24\x35\xfb\x52\x4c\xdb\xf6\x93\x5e\x2d\xf1\xd5\xa5\x85\x45\xf2\xe2\xc0\xe3\x02\xfd\xe0\x79\xa8\xa8\x3c\xca\xcb\x46\x65\xe5\x02\xa5\xa3\x71\xfc\xd4\x92\xe6\xdd\xfd\x46\x7e\x8d\xb8\x7b\xcf\xb3\xd2\xfa\x25\x1d\x65\x47\x80\x8a\x7f\x94\x35\x47\x99\x73\x3c\x0e\x51\x87\x5e\xf9\xd2\x65\x50\xdc\x8f\x72\x25\x6b\x59\x2e\x6c\x99\xea\x3a\x6f\x8e\xae\xb3\xa6\xfc\x5f\xea\xe8\x52\xca\xf2\xc8\xac\xfc\x79\x23\x97\x47\xc7\x47\xcd\x76\x23\x6b\xca\x3a\x39\xac\x5f\x94\xc5\xc0\x57\x1d\xb0\x3b\x6f\x7e\x23\xae\x5a\x41\x72\x22\x63\xe5\x2b\xf9\xb5\xab\xe4\x60\x66\xc7\x99\xa3\x86\x1b\xe4\xad\xae\xdd\x91\xbc\x03\xeb\xaf\x2e\x6f\xbd\x6d\xd4\x91\xcc\xd5\xb5\xac\x8f\x2e\x25\x20\x6a\x1c\x55\x75\xd0\x42\x1c\x3c\xbb\xc8\xd8\xad\x43\x33\xe9\x7b\xd2\xea\xbb\xa8\xad\x50\xe4\x9f\xb1\x37\xf9\x6e\x51\x95\x8d\xaa\xb7\x0b\x55\xd5\xf1\xce\xc0\x94\x71\x59\x6e\xd7\xb2\xce\x2e\x0b\x19\x8f\x4e\xf9\x6d\x8d\x1c\x2d\x06\xee\x66\x95\x5f\x6d\xcd\x3d\xc0\x75\x57\x51\x44\xcd\x3b\x1a\xa9\xde\xd8\xa2\x5f\xaf\x92\xc1\x54\xe4\x56\x93\x93\x8b\x0b\xa8\xc5\xc5\x85\x9e\x6f\x7a\x68\xbe\x1d\xd4\x9f\x16\x94\xe9\x95\xd4\xad\x3b\x86\x41\x1b\x8c\x80\x92\x97\x7b\xfe\x5c\xbc\xa5\xe4\x95\x11\xc5\x84\xf1\xf7\x83\xca\x33\x78\x09\xd5\xb2\x74\x00\x5c\x93\x3e\x0e\xc6\xf3\xc9\xf3\xaa\x6c\xf4\x77\xe3\x9a\x3a\xb8\xb0\x25\x40\x65\x7d\xf8\xf0\xef\x6e\x1d\xd6\x3b\x9b\xdf\x3b\x55\x70\xe3\x42\x51\x67\xdf\x9d\xfd\x60\xa3\x71\xdc\xcc\xac\x0e\x96\x3d\x9e\x0b\xcb\x51\xc0\x33\x31\x9d\x65\x4f\xab\x59\x36\x1e\xb3\x3c\xcd\xe6\x81\x1c\xc9\x9c\x03\x40\x29\x6a\xf1\xca\x38\x0b\xc0\x8c\x35\xc6\x45\xc9\x0d\x2c\xb9\xd9\xb1\xe7\x8c\x31\x5e\xa3\x9a\x23\x76\x16\xc1\x08\x9d\x07\xf0\x82\x32\x5e\xcb\x55\x13\xef\xb6\xa5\xd1\x1c\xc1\x96\xb1\xe7\xaf\x68\xcd\x4b\x27\x72\xbe\x06\x47\x1a\x1e\xca\x0d\x5f\xc6\xa1\xd3\x1d\xc6\xe7\xd4\xd5\xa6\xb1\xaa\xcc\xcc\x61\xe5\x19\x55\x4e\x7a\x71\xeb\x54\x08\xaf\xd1\xec\xf7\x9d\x77\x2d\xac\x85\xe7\x45\xbe\x7c\xae\xf5\x9f\x43\x4b\xcb\xe8\x57\x2a\xad\xe0\x91\x33\xbd\xe6\x1f\xd4\xc1\xbd\x91\x81\x03\x66\xce\x77\x66\x89\x02\xc8\xdd\x87\xdf\xf8\xd3\x66\x99\x85\xbc\xda\x48\x80\x6e\xb1\x90\x5c\x9d\x0d\xfb\xb0\xd9\x88\xf4\xef\x1a\xf2\x90\x6e\x85\x06\xf5\x7a\xfa\x91\xaa\x9c\x55\xdb\x21\x27\x47\x1c\x62\xe1\xeb\x75\xa7\xf2\x72\xa8\x23\xca\x87\xde\xca\xd5\xc4\x0e\x02\x51\x4e\xf0\x47\xe7\x8c\xde\x68\x8d\x36\x28\x95\xb2\x89\xba\xee\x65\xa9\x31\xdc\xe4\x19\x78\x57\xe5\x55\xf9\xb2\xce\xd6\x5d\x6a\x7b\x39\xd9\x96\x6b\xfd\x15\x72\x09\x4e\xe2\x52\xa1\x82\x7b\x68\x0a\x76\xe3\x55\x76\xc6\xab\x39\xd9\x33\xff\x1b\x6e\xa9\x9f\xf3\xa2\xf8\x09\x5f\xf3\xc0\xe0\xf4\xad\x34\x83\x6b\x57\x29\xf0\x92\x76\x0d\xd1\xef\x8b\x5a\x96\x4b\x59\x7f\xb4\x4c\x53\x6b\xdb\x1d\xd8\xf8\x9f\x22\x95\xde\xd4\xd5\x4d\xbe\x94\x35\xb7\xd2\x79\xcf\xfd\xb2\x12\x6c\x3e\x50\x34\x29\x1b\x72\xc1\xd5\x9e\xea\xe2\xbc\x05\x76\xf6\xbb\xb5\x33\xe9\x55\xbd\x11\x3b\xab\x62\xbe\xc6\x40\xaf\x9f\xb5\x20\xfd\x2a\x6b\x24\xe1\xbb\xcb\xac\x91\xc6\xe4\xc9\xf5\x6f\xad\x5e\xe9\x8b\x3d\xe3\x2f\x86\xcc\x36\x87\x15\xff\xf9\x41\x71\xaa\x3e\xf2\xd4\xfb\x7e\xe6\xf2\x23\x99\xbf\xe2\xef\x00\x98\x8c\x97\x5c\xfa\x9e\xff\xea\x61\xe1\x6b\x4a\x72\xb2\x97\x3b\x61\x39\x48\xe2\xfc\x31\x31\xf7\xd1\x1e\x87\xce\xe5\x3d\x9b\x4d\x20\xd9\x6a\x21\x27\xb6\x55\x81\x7e\x64\x53\xe7\xeb\xac\xbe\xe7\x59\xb0\x52\xf1\x46\x50\xcc\xa6\x65\x52\x30\x8a\x19\x5f\x78\x25\xb8\x49\xc8\x32\xbf\x21\x71\xc3\x0b\xa1\x75\xbe\x94\xd8\x57\x12\x4e\xec\x0b\x09\x27\xf6\x75\x84\x13\xf3\x32\xe0\xcf\xc0\x57\x99\xfb\x68\x27\x73\xef\x21\x73\xc6\xb7\x02\xc6\x90\xc9\x37\x51\x15\x2e\x48\xd9\x43\xe6\x49\x5c\xb3\xff\x41\xeb\x70\xd1\x96\x76\xdd\x29\xd9\x9e\x01\xe9\xf8\x52\x28\x67\x43\xe2\xd7\x62\x43\xb7\x7c\x89\xb0\x2e\x58\xc4\xa5\xb8\x46\x68\xa7\x06\xe0\xe5\x74\x03\x9c\x89\x6b\x3c\x0b\xe1\x57\xf6\x97\xe5\x2d\x15\x67\xce\x80\x5a\xc7\x67\x50\xb0\xb7\x22\x9e\x3f\x7e\x74\x02\x74\x61\xba\xdc\x7b\x01\x23\xe6\x92\xef\xf4\xe0\x5e\xfb\x25\x46\x0d\x18\x13\x3a\x60\x69\x54\xeb\x2d\x6b\x66\x90\xd6\x6f\xa0\x59\x20\x86\xd8\x0e\xc6\x2b\x7e\xcf\xaf\x7a\xd3\x3a\x39\x1c\xb3\x2f\xf8\x2e\x78\xa9\xe9\x8a\x38\xdf\x1f\x3c\x6b\xbd\x1c\x18\x7f\x26\xf2\xe4\x97\x78\xc1\x2f\x44\x9e\xbc\xa3\x87\x35\x77\x1d\x16\x2f\xf6\xbc\x60\x71\xf1\xb0\x34\xf9\xf9\x40\x9a\xb8\x99\xbe\xf6\xf3\xbc\xde\xef\xf9\xe1\xb3\xcf\xf8\x05\xbf\xf1\x73\x02\xcf\x36\x8c\x90\x79\xb3\xad\x65\x20\x68\xbe\xea\x09\x1a\xfb\x99\xa3\x29\x4a\x9a\x37\x5a\xd2\xbc\xac\x16\xdb\x86\x30\xfe\xcb\xa0\xbe\xa6\xbb\xbc\x0c\x27\x50\x2d\x82\x29\xc0\x73\x33\xd8\x71\xc8\x06\x43\x3e\x1c\xbd\x0f\xb7\xc3\x9b\x4f\xd0\xf5\x0e\x9f\xfa\x0e\xe5\x4d\xae\x95\x66\xdb\xe4\x35\x37\x6b\x1b\x7c\x4e\x2c\xf1\x1c\xce\x77\x4f\x69\xc5\xd2\x6f\x7a\x05\xf9\x51\x4c\xf9\x77\xff\xbf\x52\x0e\xf7\xbc\x9e\x84\x5f\xd8\xa9\xfc\xc8\x64\x9b\x34\xd7\xd5\xb6\x58\x42\x86\x28\x02\xf3\x2b\x78\xd1\xe8\x65\xf2\x01\x85\xf1\x4a\xaa\x17\xb2\xce\x6f\xe4\x12\xd6\xf9\x97\x75\xb5\xc6\xc1\x72\xa0\xc1\x19\x68\x44\x3d\x22\xec\xb9\xd6\x3b\xba\x0b\xde\xa8\x87\x15\x97\xcc\x1d\xa1\x6d\xeb\x7c\x64\x1e\x00\xfb\xf8\x81\x59\x1b\x62\x70\x0e\x52\x75\xad\x0f\x12\xc1\xeb\x6e\x5b\x3b\x47\xaa\xde\x9b\xcb\xb6\xad\xf7\x80\xd3\xf9\xc9\x9a\xd9\x8f\xe3\x31\xea\xa0\xae\x85\xfe\x8c\xaa\xa2\x45\xfe\xf1\xf1\x8f\x51\x44\xf5\x78\xfa\xb3\xca\xa9\x3c\x50\x4a\x51\xe6\xf4\x94\xd1\x81\x3e\x7d\xb8\xc6\xab\xee\xa8\x18\x50\xf5\xc3\xe1\x33\x93\x89\xf4\xe0\xdd\x2c\xfe\x2d\xf9\x4d\x8c\x4e\x63\x97\x62\xc1\xbb\xf5\x6f\x50\x99\xb2\xbc\x6c\xa8\xb3\xb8\x23\x7a\x88\xb5\xb8\xa3\xe3\x0a\xe6\x35\x75\xfb\x13\x7a\x59\x47\x13\xe3\xa5\xa0\xca\x2f\xbd\x0a\x1d\xc9\x18\xaf\x75\x72\xf8\x01\x5c\x85\x0b\x71\xee\x17\xe2\xda\x2c\xc4\x35\xcf\xf4\x33\x7a\xf0\xf9\xa1\xc7\xef\xa8\xe2\x69\xb8\xde\x42\xf9\x40\xb2\xea\xcb\xee\x88\x2f\xde\x97\x6d\x73\xf6\x11\x81\x96\x6b\xd1\x04\x65\xc6\xef\xe8\xae\xda\xaa\x22\x2f\x65\x4c\xca\xaa\x94\x64\xcf\x4b\xc6\x1d\xfb\x2e\x39\x3e\x25\x7a\x6f\x17\x0f\x45\x2f\x40\x5b\x0a\xb5\xdf\xf3\x8c\x0d\x2c\x01\x6f\x0e\x96\x0f\xc3\x1a\xe9\xbf\x61\xcf\x07\xd4\x5b\x36\xa8\x8e\x1a\x18\x93\x62\xb2\xa9\x8a\xfb\x55\x5e\x14\x8c\x7e\x87\xb3\xf8\xdb\xce\x21\x09\x7f\x09\xab\xed\xaa\xaa\x6f\xb3\x7a\xf9\xa3\x5c\xcd\x06\x0f\x6e\x5e\x46\x11\x7d\x39\x78\xa4\x68\xb0\xd2\x7f\x12\x2f\x87\xd5\x15\x13\xd7\xf5\xa3\x5c\xf1\xda\xac\x2b\x36\xe1\xa3\xab\xc8\xc3\x2a\x2e\x04\x28\xdb\xf5\x14\x5e\x9e\x0b\xa7\xcb\x3d\x5c\xe0\x81\xf6\x2b\xad\x45\x34\x58\x08\x9b\x50\x93\x5c\x88\x7a\xa2\x2a\x5e\x08\x23\x89\xf9\xc6\x53\x92\xf2\x25\xba\xc1\x83\x5c\xe5\xd7\x7e\xa8\x2e\x93\x6f\xe3\x25\xbf\x14\x77\xb4\xe6\x29\x51\x15\x0c\x47\x54\x13\xed\x71\x01\x27\xf6\x41\xad\x05\xae\xc5\x8a\x2e\x78\xce\xf8\x99\xa7\x5c\xa0\x6b\xc6\xaf\x44\x16\x4a\xca\x33\x7e\x2f\xb6\xd4\x27\xf1\xb3\x8f\x34\x1e\xc9\x88\x1e\xb3\x7a\x24\xea\x3d\x0b\x27\x59\x9d\x67\xc7\x8b\x6d\x5d\x03\xd0\xd2\x55\x02\x8e\xd4\xc4\x45\x0e\x5c\xf2\x6b\xba\xcb\x9b\xe7\x98\x21\xbe\xe2\x79\xf3\x26\xab\x55\x9e\x15\xc5\xbd\x4d\xbc\xc7\x63\xc5\x40\x3b\xca\xf6\x8c\xef\x4c\x62\x55\x3e\x2f\xf2\x30\x58\x16\xa3\x35\x2e\x27\xe6\x46\x14\xb9\x9f\x54\x32\xfe\x77\x2a\x99\xee\xc6\x3e\x25\x12\xc6\x5f\x88\x0d\x9c\x01\x1d\x7a\xf0\x6e\xa2\xe8\xca\x0e\x2c\x50\x17\xcc\x71\x12\xc8\x92\x72\xf2\x5e\xde\xf3\x3b\x5a\xf2\x94\xbc\x97\xf7\x30\xa7\xd5\xa0\xd9\xcb\x98\xce\xde\xcb\xfb\x26\xf4\x5b\x30\x8b\xbf\x10\x9d\x0c\x8a\x39\xbf\xe2\x72\x22\x6f\x64\x7d\x4f\x87\x76\x50\xaa\x67\xd4\x05\x98\x22\x99\x96\x73\x81\x48\xec\x5a\x4f\xa1\x50\xe7\x82\xf1\x9a\xed\x1b\xba\xe6\x06\xbc\xab\xb0\x66\xfb\x58\xed\x31\x80\xd9\xfd\xcf\xdb\x9c\xff\x09\x81\xd4\xb0\x6d\xae\x73\x21\xf7\x3f\x75\x8c\x75\xe4\x55\x5e\xbe\x27\x18\xf7\x3c\x38\x4d\x43\x63\xf1\x3f\xf7\xfc\x9b\xff\x2b\xfb\xb8\x4f\xb4\xa2\x04\x5b\x3a\x37\xf7\xb4\xe0\x50\x95\xee\x56\x39\x59\xd5\xd5\x9a\x3b\xdf\x05\xc6\xab\x60\x61\x68\xdb\x1a\x39\x26\x61\x82\x66\x02\xa8\xc9\xdf\x5d\xd7\xd5\x2d\x77\x32\x81\xf1\xc6\x48\x9e\x60\xcf\x06\x33\x53\x97\xdc\x99\x98\x76\xaa\x9a\x32\x82\xbd\xdb\x9c\xcd\x3e\xc1\x16\x83\x1f\xb5\xa2\x25\xcf\xd8\x4c\xd1\x25\x30\x0d\x78\x9b\x57\x65\x8e\xd9\xf3\xfd\xa1\x21\xe5\x93\x36\xbd\x34\x68\x22\xdd\x40\x4c\xaf\xad\xfd\x16\xe2\xb6\x39\x5c\x5b\x30\xb7\x2b\xd6\x4b\x67\xf5\xdf\xd1\x1a\x3c\x17\x2b\xaa\x3c\x71\xc2\x51\xef\xd0\xc6\x5b\xdf\xf5\xc8\xdd\xd3\x25\xb8\x4b\x31\xde\xd9\xda\xf8\x05\x8b\x7f\xff\xdf\x60\xf9\x30\x44\x59\xff\xc1\x5a\xf0\x31\xb3\xc9\x37\xd6\x12\xe2\xb6\x73\xe5\x3e\xb4\x89\x3c\xfa\xb3\xae\x36\x7b\xfe\x0f\xf7\xc8\x91\x0c\xde\x1d\x8a\x95\x7c\x45\x47\x65\x87\xcd\x49\xab\xeb\xe8\x6c\x2b\x60\xcd\x7e\x59\x67\x57\x6b\xc0\x03\x29\xfb\x2a\x41\xf0\x2d\xce\xbc\x00\x5c\x2a\xbd\x8c\x5c\xbf\x9d\x61\xc9\x78\x47\x2f\x2f\x6d\x6b\xaf\xcc\x4e\x53\x27\x98\x17\x7f\xef\x3c\x02\x39\xa6\x8d\x20\xcd\x3e\xa0\x87\x90\xaf\x8f\xaa\x86\x73\x0f\xc9\xe4\x81\x36\xbc\xd4\x03\xc7\x47\x59\x48\x47\x78\x53\x1a\x9f\xa9\xc0\xb9\x4c\x08\x71\xaf\x45\xf5\xc3\x39\xf6\x34\xac\x24\xf7\x75\x64\x61\x25\x3b\xdf\x6d\x21\x34\x0c\x69\x0c\x37\xc9\x6e\xab\x5d\x0b\xdf\x2e\x49\x58\x7a\x1c\x36\x27\xcf\x05\x7a\xfb\xd5\x89\x8a\x1f\x51\xc5\xc6\xe4\x84\x8c\x1f\x51\x37\x75\x0e\xca\xef\x55\x83\x83\xe1\xa0\xdf\x77\xc9\x23\x9a\xeb\xa2\x1e\x93\x38\xdf\xef\xf7\xfc\xef\x43\x50\x57\xd2\x1b\x0b\x0c\x97\x20\x42\x42\xc8\x09\x52\x6a\x45\xd1\x88\xca\xc9\x5a\xaa\xec\x7b\x79\xdf\xb6\x72\x92\x15\xca\xfc\x5a\xa8\xba\x30\x3f\x01\xfe\xf2\x7b\x79\xcf\xf6\x5d\x4f\x65\xd3\x77\xb3\x72\xc0\xf9\x1a\x02\x92\x29\xba\x60\x94\xa2\x6c\x5b\x2d\x0a\xac\x4b\x39\x25\x41\x2e\xc2\x68\x40\x3a\x76\x18\xd6\x8d\x8e\x0c\xe0\x9b\x8f\x3f\xd9\xde\xfb\x71\x97\x87\xbe\xd3\x3d\x4d\xd1\xe6\x0c\xaa\xd8\xf1\xae\xb6\x70\x2a\x6e\x46\xd6\xc1\x47\x98\x35\x0f\xa4\x85\x5f\xf3\xfc\x69\x64\xf5\xd0\x1a\x0b\xe6\x83\xb6\x25\x29\x7e\x0e\x5e\xcf\x89\xd7\x2d\xbc\xe0\x57\x15\xd2\x67\x98\x63\xe0\xa0\xf4\xbc\x07\xf5\x3f\x02\x7a\x75\x5b\x24\x16\xf4\x67\xcb\xcc\x82\x32\x7d\xcc\xac\xbf\xdf\x04\xfe\x8e\x07\x4e\x38\x32\xf8\xa2\x1f\xe0\xe6\x9f\x7d\xfd\xe2\xa1\x06\x7b\x91\xa9\xb0\x74\x7d\xf9\x67\xcb\x2e\xfa\x84\x67\x48\x8b\x23\xa6\xb3\xf2\xa9\xb4\xde\x02\xe3\x71\xc9\x6a\xe3\x9c\x45\x81\x1b\xac\xf4\x7b\xbf\xda\x17\xb6\xed\x98\x28\x3f\xf1\x04\x5f\x05\xb5\xd9\xf4\x1c\xda\x91\x9d\x67\x0b\xc4\x4c\xe0\x62\xd0\x67\xe1\xd1\xb7\x88\xfd\x3a\x82\xbc\xa2\xf6\x12\x02\xaf\xf1\x27\xe3\x90\x11\x64\xc6\xeb\x95\xc9\x67\xae\x84\xb2\xbf\x18\x0f\xfa\x74\x75\x10\x92\x73\xeb\xb8\x95\xf8\x68\xca\x26\x5b\xb5\xa0\x41\xd5\x97\x87\xfc\xec\x93\x8b\xcd\x0a\xde\x74\xb1\x59\x89\x9d\x5c\x6f\xd4\x7d\x3c\x3a\xe5\xdb\x72\xdb\xc8\xe5\xbb\xea\xbd\x2c\x9b\x38\x9d\x9b\xeb\xef\xca\xcd\x56\xe9\xcb\xea\x46\xd6\xab\xa2\xba\x8d\x8f\x9f\x70\x80\x11\x7a\x25\x57\xea\xf5\x8d\xac\xe3\x29\xac\xc0\x98\x71\x74\xca\x73\xe4\x07\x3c\xab\x4a\x2d\xe9\xf4\x6c\x33\x29\x2f\xab\x7a\x9d\x41\x96\x6d\x23\x6b\x43\x23\x88\x94\x9d\xa7\x3c\x6f\x2a\xfd\x07\xa2\x42\x96\x7a\xc4\xe8\x4d\x0b\xd4\x63\x2d\xeb\x7c\x99\xcb\x35\x96\x55\xaf\x16\x4f\xfe\xeb\xc9\x13\x38\x6e\x97\xf2\xfd\x32\xbb\x3f\xcb\x1b\x20\x74\x88\x47\xa7\x7b\xc6\xe1\xab\xfc\xe7\x5f\x9b\xcd\x8b\xfb\xf4\xbc\xf9\xa7\x7e\xad\x35\xa0\xea\xe6\xe1\x5a\xf6\x23\x80\xe2\xa4\xf7\xfe\x07\x69\xee\x47\xe0\xe5\xc5\x2b\x61\xe3\x59\x26\x17\x4b\xbd\x87\x7c\x97\xaf\x25\x65\x2c\x8a\xd4\xc4\x36\xd8\xd3\x29\x70\x2d\x42\x3b\xc3\xaf\xb0\x81\xc2\x84\x9f\xf1\x7b\x20\xa9\xf7\x6d\x90\xe6\x5a\x39\x7c\x08\x1b\x15\x52\x7a\xad\x1a\x45\x74\xa4\x26\xb6\xf5\xda\xd6\xff\x8e\xa2\x9a\x21\xe4\xd4\x05\x4a\x4e\x04\x61\xc5\xe5\x44\x4d\x3a\xbd\x6b\x13\xc3\xd1\xe1\x36\x51\x4e\xe8\xa8\xc9\x65\x7e\xf5\x6d\xb5\xad\x2d\x8e\x80\x99\x64\x79\xf3\xb2\xae\x3e\xc8\x32\x8a\x7a\x09\x41\x28\x56\x35\xf3\xdd\x22\x2a\xe7\xa4\xe3\xd2\x7c\x67\x5e\x7a\xc3\xf7\x8a\xfe\x90\xfd\xd0\x63\xb8\x97\xc9\x86\x2e\xa9\x62\x5c\xb2\x58\xff\xed\x37\x88\x18\x4d\xb9\xda\x97\x26\x84\xca\xcf\xff\xa6\x5a\xcb\x64\x28\x31\x1e\xf6\x5c\x32\xf6\x18\x8f\xfd\x69\x9c\xef\xbe\xfc\x72\xca\x6b\x31\x9d\xd5\x4f\x4b\x4b\x67\x0f\x5e\x44\x80\xf2\x16\x00\x8b\xa6\xf5\x9c\x03\x8b\xa8\x59\xd8\xa7\xd6\x95\xe6\x14\x55\x91\xb5\xa8\x27\xeb\x4a\x2f\x4f\x46\x26\xe5\xb2\x01\x09\x68\xdb\xe1\x6c\x20\x04\x2e\xa3\x4a\xb7\xd8\xb3\x33\x78\x10\xab\x88\x61\x52\xfd\x54\x31\x90\x91\xe3\xe3\xf6\x01\xc8\x62\x12\x57\x26\x51\x0b\xa4\x8b\x95\x49\x2c\x4c\x62\x21\xe0\x02\x13\x71\x2c\x99\x3b\x78\x21\x7c\x32\xe6\x51\x1f\xd6\x26\x83\xfa\xb0\x16\x26\xc1\xbc\xbd\xf9\xe9\xdd\x73\x57\xe5\x9f\xde\x3d\x17\x2e\x11\x33\x60\xa0\xab\xc9\x61\x80\x42\x7c\x32\xe6\xd9\xd8\xea\x6e\x56\x42\x8f\x01\x5b\xdf\x6a\x91\x15\xd2\x56\x1a\x2e\x84\x4f\xe6\x6b\xe7\x3f\xc9\xfc\x32\x63\x13\x67\xe5\x78\xcc\x32\x5a\x09\x95\xd6\x62\x9d\x96\xf3\x39\x94\x03\x51\xdf\xfe\xe8\x0e\x3c\x73\xae\xc4\xe8\xd4\x77\x93\x56\x73\x77\x67\x66\xc7\x8d\xb0\x2e\x93\x8b\x25\x38\x90\x6a\x01\x43\xcd\xa8\x9d\x5c\x2c\x93\xae\xf8\x88\xf5\xd8\xc6\xfc\x66\x0e\x50\xfd\xca\x83\x02\x74\x36\xc3\x01\x72\x15\x45\xf4\x4a\x0f\xf0\x7a\xb2\x05\x8b\x76\x00\x88\xc1\xf8\x15\x80\xfc\xb9\x8a\xdd\x3c\xb4\x70\xdf\xe3\xa1\x38\xe8\x26\xae\x76\xbd\xb1\xe2\x8b\x79\x16\x16\xf3\x74\x9a\x40\xc8\xd4\x42\xe6\x05\xd0\x81\x4e\x63\xb8\x5e\x15\x55\x55\x77\x96\xf6\x0b\x3f\x8b\xc7\x92\xeb\xb6\x36\x65\x00\xd1\x5d\x14\xe5\xcd\xcb\xbc\xcc\x95\x44\x5c\x93\x52\x3c\x83\x6e\x0c\x3c\xe7\x6e\x7b\x50\x30\x26\x56\x2b\x2f\xa9\xd5\x0c\x7c\x64\x1a\xcf\xf1\x6e\x76\xd9\xb8\xbb\xc7\xfe\x6e\x26\xa6\xa0\x58\xe0\xb4\xad\x60\xda\xd2\x32\x8a\x74\xef\x02\xed\x5e\x3d\x6f\xdb\x51\x19\x45\x17\xd0\xe1\x0c\xe9\x5c\xf5\x2f\x16\x45\x99\x87\x88\xcb\xc6\xb9\xaf\xdf\x07\x38\xf2\x39\x85\x28\xf2\x66\xbb\x01\xf7\xb4\x17\x72\x53\x4b\xb4\xb5\xfd\x9c\xd5\x65\x5e\x5e\x35\x51\x14\x98\x67\xbd\x5d\x6c\x51\x95\x4d\x55\xc8\x28\x32\x3f\x26\xb7\x59\x5d\x76\xaf\x28\x09\x8a\x3b\xba\xc5\xf2\x90\x8b\xd7\xd7\xe2\x75\xb8\x23\x73\x32\xe6\xa8\x0b\x1b\x61\x56\xc6\x91\xa8\x27\x4b\x5f\xa4\xa1\xae\x8e\xa2\xa1\x54\x54\xa0\x25\x0b\x39\x25\x2a\x9e\x8b\x74\x6e\x8e\xd7\x0e\x9c\x3a\xb3\xf1\x18\xde\x54\x09\x42\x06\x68\xfe\xc3\x33\x38\x5f\x64\xa3\x25\x67\x35\x16\xe4\xbc\x4c\xc9\x38\x1b\x93\xf9\x11\xe1\xa1\x17\x33\xab\xc6\xa2\x19\x13\xfd\xd9\x61\x72\xda\xcc\xc7\x84\x1f\x91\x59\x25\x2a\x17\x82\x76\xfc\x84\x61\x38\x5b\xd5\x3d\xf1\xcb\x2d\x70\xda\xfe\x03\x95\x63\x72\x5e\x3e\xb3\x77\x75\xb1\x07\x4b\x82\x2e\x0d\x05\x79\x6e\x37\xa3\x84\xe9\xc7\xc8\x18\x88\x99\xc1\x2f\x91\x4d\x1a\x95\x2d\xde\xeb\x95\x61\x74\xba\xef\x6d\x3e\x7a\x06\xb7\x3d\x9c\x93\xeb\xcf\x7d\xc7\xef\xc0\xfb\xb4\xe7\x1d\xfa\xa7\x3b\x07\x30\x20\xee\x52\x39\x6f\x5b\xfa\x81\x9a\xdf\x70\x02\x16\xba\x86\x0e\xcf\x7e\xbb\xa3\x0b\x54\x77\x9b\xf4\x67\xd5\xf7\xaf\xbb\xea\x3b\xf0\xe2\x49\x16\x52\x5b\x3a\xe5\x39\x07\xf5\x19\x10\xeb\x40\x85\x4e\x68\xad\xd5\xe9\xdd\x9e\x6f\xe0\x17\x90\xfe\x32\x7b\x01\x59\x58\x6c\xc0\x8a\xd2\x72\x9e\xd4\x56\xf9\x8e\x0d\x37\x52\x0d\x8a\x78\x40\x1d\xbc\x85\xd8\xfe\x28\x1a\xd9\x77\xba\x57\xe2\xab\xa0\x76\xf0\xd4\xd0\xe6\xe1\xad\x6e\x2e\x27\x15\x0d\x65\x30\x04\xb6\x7d\x74\x76\x23\xa1\xcc\x61\x0f\x21\x66\xe6\xbb\xd0\x2c\x9d\x04\xbf\x0f\xfd\xaf\x79\x69\x77\x3f\xca\x7f\x8e\x16\x8d\x3e\x2c\xc5\x39\x17\x23\xd5\x6d\x67\x20\xbd\xef\x1e\xe0\x74\x88\x45\x66\xcf\xf5\xe7\x3f\x4f\xcb\x31\x69\x88\xfe\xa1\xe6\xe1\xf6\xf1\xf7\x60\xfb\x78\x08\x4a\x99\x3c\x87\x51\xf6\xfc\x80\xfe\xce\x9e\x44\xb8\x72\x7e\x0e\xbe\x85\xd7\x22\xa4\x38\xf5\x9d\x43\x95\xf8\x9d\x96\x0c\x3b\x45\xd7\xa3\x43\x6a\x0a\x73\xe4\x45\xe7\xc3\xbe\xc2\x0f\x7b\x01\x44\x7b\xfe\x65\x6f\x3a\x8b\x83\x20\x64\xec\xe5\xbf\xd6\xd7\xd5\xb1\xa5\xc5\xb6\xe1\xea\xf2\x4b\x31\x4d\xca\x84\x8c\x49\x4c\x48\x4c\x8e\x09\xc3\x47\x36\xd5\x2d\x3d\x9d\x7a\x78\x8e\x29\xaf\x00\x43\xc8\x10\xad\x33\x1b\x02\x71\xca\xc6\x58\xbf\x5f\xc4\x09\x3d\x4f\xd3\x7f\x9f\xa7\xf3\xc7\xe7\x73\xd6\xd2\xf3\x73\x96\xd0\xf4\xdb\xeb\xf9\x7a\x4d\x9b\x86\x25\xed\x59\xd5\x9e\x9d\x25\xfa\xbf\xf6\x45\xd5\xbe\x78\x01\xff\x24\xfa\xbf\x76\xb9\x5c\x26\xcb\xa4\x5d\x56\x49\x7b\x9b\x56\xed\xed\x3c\x69\x7f\x4e\xab\xf6\xe7\x79\xd2\xfe\xa3\x4a\xda\x5f\xe1\xff\x5a\xff\x6f\xfb\xeb\xaf\xed\xd5\x15\xbd\xba\xba\x4a\x58\xd2\x7e\xf3\x0d\xfd\xe6\x9b\x6f\xf4\x2f\xd9\x7e\xdd\x66\xed\xb3\xf6\xfa\x3a\x69\xbf\xfd\x36\x69\xdf\xbf\x4f\xda\xf5\x3a\x69\x9b\x26\x69\xdf\xee\x4e\xf9\xdf\xf6\xed\x5d\xfb\x4b\xfb\xe1\x43\xd2\xfe\xeb\x5f\x49\x3b\x61\x27\x57\xfc\xb7\xc1\x8a\xbf\x7a\xf7\xb6\x7d\xf5\xae\x7d\xf5\x2a\xd1\xff\xb5\xc5\xee\x94\x7f\xbe\xd7\xd9\x7f\xd4\x93\xf3\xbb\x4e\x67\x7c\xdb\xa7\xf7\xad\x67\x87\x43\xa6\x86\x6d\xc6\xb0\x79\x29\xad\xe7\x54\x8b\x43\x19\x45\xf4\x3b\xdd\xa5\x15\xfa\x4b\x7f\x97\xaa\x74\x3a\x1f\x82\xed\x7c\x43\xab\x61\xa1\xca\x55\x7a\xaa\x05\xc5\x93\xb9\x2e\xb0\x84\x42\xca\xa1\x12\x60\x2e\xa3\x0a\xf8\x22\x53\x19\x65\x93\xaa\x5e\xe6\x65\x56\x3c\x58\xb2\x64\xfb\x90\xd9\xb7\x17\xde\xe9\x74\xb5\x84\x2a\xf1\x13\x30\xe7\x84\xa5\x33\xfe\xa3\x1e\xd8\xfa\x9f\xae\x79\xdd\x4d\x0d\x5e\x09\x69\xc8\x09\x7f\x41\x09\xa6\xc4\x94\x97\xa2\x72\xe1\x11\x4f\x4b\x08\x91\xf8\x2e\xad\x52\x35\x9f\x27\xfa\x5f\x61\x2e\x62\xb8\xa0\xb5\xd0\x7f\x2d\xc7\xe1\xc9\x79\x9a\x9e\x37\xe7\x6f\xe7\x27\x2c\xa9\xbd\x19\xfb\xdf\xe7\x69\x7b\x3e\x7f\x84\x26\xec\x38\xb8\x71\x7e\x8e\x69\xb3\xbe\x15\x5b\x59\x6d\x2b\x17\x84\x04\x2a\x93\xd9\xe9\x8c\xc5\x2b\x5a\x69\xb5\x28\xd1\xff\x9a\xcd\x8e\xde\x87\xe9\x4b\x5b\x58\xbe\xdf\xeb\x15\x49\x37\x80\xde\xfe\xc5\xdd\xe6\xb1\x1b\x5a\xd0\x6c\x83\x56\xfe\x29\x14\x60\x7f\x0d\x4d\x7b\x01\x5a\xe1\xa4\xa8\xca\x2b\xfd\x24\x6e\x87\x91\x8f\x1e\x62\xb0\x7f\x03\xd2\x1b\x38\xd2\xd7\x5a\xfd\x97\x62\x1a\x45\xbf\xd9\xd8\x64\x04\xbe\xb2\x5f\xff\x1b\xaf\x19\xef\xe4\xe7\xe5\xb1\x38\xed\xaa\xf8\xff\x14\x27\xe7\xcb\x13\xfe\xab\xfe\xa3\x7f\x7c\xa3\x7f\xec\x3e\xdb\x9f\xf0\xef\xe1\xd7\xe7\xfb\x13\xfe\x48\x9c\xa4\xe3\xe3\x79\x72\xbe\xdc\x7d\xb1\x3f\xe1\xff\xc0\xbc\xc9\x09\xff\x3b\xfe\x32\x57\xff\xf2\x57\x26\x45\x4a\x28\xe3\x94\xeb\xf2\x94\xbd\xd0\x45\x96\xd2\x97\x79\xca\x75\xa9\x35\xdc\x1e\x9f\xf0\xca\xdf\x1a\x9f\xf0\x5c\x8a\x93\x7f\xb5\xfa\x5a\x97\x19\x27\x50\xcb\xab\x9c\x67\x9d\x74\x9a\xc4\x78\x8b\x25\xfa\x66\xa3\x8b\x98\x1e\xff\x6d\xbe\x9b\xf2\x27\x7f\xfd\x62\x9f\xfe\xaf\xec\xf8\xc3\xf9\x76\x3a\x7d\x36\x3d\x3e\xdf\x4e\xff\xfa\xf2\xe5\xf9\x76\xfa\xbf\xa7\xfa\xe2\xc5\xff\xd6\x17\x2f\xff\x06\x17\x2f\x5f\x3c\xd7\x17\x2f\x5e\xc2\xc5\xcb\xe9\xff\xd6\xff\x9e\xe2\xc5\xd7\x2f\xe7\xbb\x53\x28\xad\x4d\xcf\xb7\xd3\x2f\xe0\x81\xe9\x17\x2f\x5f\x9e\x9f\xd8\x1b\xf4\xbc\x79\x9c\x74\x6f\xda\x5b\x4c\xff\xdd\x9f\xe4\x7c\x21\x3b\x82\xa6\x90\x56\xbe\x2f\xa4\x16\x13\xaf\xa8\x62\x49\x07\x24\xb2\x0e\x43\xcc\xcb\xa4\x8c\x55\xc0\x43\xbe\x95\x9d\x39\xbb\xa5\x0b\xc9\x25\x4b\xa0\x2c\xbf\x85\xe5\x7e\x6b\x18\x63\xd4\xcc\xd5\xd7\x77\x1b\x0a\x84\x03\x76\xb0\x90\xf3\x73\xc2\x43\xfe\xd2\x93\xf3\x73\x7a\x9e\xb2\x56\xff\x99\xb3\xf6\x3c\xa5\xe9\xbf\xcf\xe7\x5a\xa4\xb2\xf3\xb9\x4e\x05\x51\xdb\x85\x87\xee\xd2\xe1\xa8\xb6\x45\x38\x84\x6a\xcf\x18\x0b\xcd\x8f\x72\xf8\x34\x2a\x3d\x3e\x3f\x39\x3f\xff\xf7\xa3\xc7\xe3\x64\x42\x59\x9b\x9e\xcf\x77\xfb\xb9\x9e\xc0\xe7\xe7\x8f\x22\x82\x8a\xe5\xaa\xdb\x7e\x4b\xd9\xd5\xcc\x14\xcc\xe5\x81\xe5\x1d\xe0\xfa\x52\x39\x67\xbc\xc1\x8d\x58\xdd\x83\x4a\x02\xf4\xa4\x0b\x60\x33\xe1\x3d\xbb\xac\xde\x30\xaf\x64\xaa\x97\xf0\xb9\x08\x54\xa9\x6b\xf3\x72\xa8\x44\x07\xcd\xcc\xb4\xc3\xe4\xe2\x56\xe8\x7f\x80\xbf\x58\xe9\xce\x9c\x5c\xdc\xc2\xbd\x7d\xd8\x1e\x97\x6e\x10\x18\x3d\x30\x8a\xb6\x74\xa5\x7b\x32\x8a\x56\xd8\x95\xbc\x9c\x5c\x64\xe0\xef\xec\x1f\x5b\x87\xcd\x78\xa6\x2f\x92\xcf\xbe\xf8\x22\xfe\xec\x8b\xbf\xfa\x3c\x67\x9d\xa6\xfe\xcb\xe7\x42\x68\x81\x21\xff\x72\x3a\xd5\xbb\xd3\x69\xdb\xca\xbf\x7c\x3e\x9d\xea\xd4\xfd\xb7\x94\xfc\x4a\xf8\xff\xcb\xdc\xbf\x70\x37\x8d\x6b\x8d\xe3\xf0\x57\x49\xf5\x1c\x32\x52\xa3\xa4\x49\x5b\xca\xe0\x22\xb2\x3a\x94\xdb\x1c\x42\x99\x69\x19\x06\x42\x4e\x97\x1b\x2b\x8d\x21\x91\x33\xb6\xd2\x52\xea\x9c\xcf\xfe\x2e\x6d\x5d\x2c\x3b\x4e\xe9\x9c\xf3\xbc\xcf\xff\x07\x6b\x35\xd6\x6d\xeb\x2e\xed\xbd\xb5\x2f\x5d\xda\xa5\xeb\xaf\xc6\x70\xb5\xdc\xf0\x30\xc5\x05\x87\xe0\x09\x7b\xfc\xf8\xf1\xe3\x3e\x42\x2d\x1e\xa0\x16\x6a\x01\x03\xf1\x15\xee\xd2\x21\xfa\xf8\x11\xd1\xdd\x51\x05\x92\x7f\x4b\x69\x50\xaa\x15\x7e\x21\x55\x6c\x5f\x15\x43\x2a\x1d\xf9\x09\x1f\x11\x7d\xb8\x21\xe5\x23\xa2\x07\x74\xab\xeb\xa7\x7e\xc5\xfa\x8b\xa2\x1b\x44\xe8\x2f\x36\xd4\x23\x74\xc6\xa1\x97\x09\x37\x9f\x1f\x11\xfd\x8d\x7e\xb4\x01\x15\x94\x9c\xfe\xb3\x08\x7f\x44\x54\x70\xfa\x0f\x2f\xc2\xc5\x44\x1c\xbb\xb6\xd9\xa4\x11\xed\x42\x82\x81\x55\x91\x3a\x52\x57\x3f\xd3\x36\xa2\x8d\xa2\x64\xaa\x19\xb4\x67\xd7\xc9\x71\x7c\x19\xcb\x8f\x6a\x58\x38\x09\xf4\x32\xb4\x90\xea\xe1\xd4\x17\x75\xa5\xea\x0b\x41\x91\xd7\x42\x2d\xc5\x5e\x17\x32\xd7\x80\xa9\x7b\xef\x54\x2d\x6a\x61\xf5\xf7\xe9\xc1\xcf\xfd\xde\xe3\x6e\x37\xd8\xe5\x7b\x44\x63\xe8\x97\x9c\xde\x70\x76\xc5\x31\x7a\xb1\x9c\xcd\x3e\xc2\x58\x6f\x75\x3d\x01\x91\xab\xf2\x31\x55\x23\xa2\xa2\x17\xbe\xe8\xe3\x73\x6e\x8d\x9e\x0a\x52\xc7\xfc\xb1\x8e\x99\x49\x70\x64\x73\x12\xef\x40\x3c\xe2\x1b\x91\x18\xde\x39\x8f\xb4\x77\xaf\x96\x63\xc9\xf5\xd1\xfb\xb3\x67\xe0\x98\xb4\x25\x47\x9a\x51\xe5\x31\x76\xdc\xb6\xf4\xc0\x38\x8b\x4f\x80\xe4\x17\x1d\x66\xc0\xeb\x51\xdb\xcd\x2c\x6e\x62\x4d\x78\xce\x13\x21\xa7\xaa\xe0\xee\x63\x6b\x85\x9e\xbb\xe6\x64\x77\x34\x47\x50\x57\x98\x5e\x73\x3f\x08\xc8\xc6\x0f\x8b\xfb\x47\xcc\x35\x77\x72\xb5\x86\xc1\x4f\xf2\x5c\x7f\x39\xc6\x6d\xe3\x6d\xf8\xf6\xd0\x1e\xa4\x58\x3e\xc0\x82\xf5\x76\x49\x4b\x90\x07\x4e\x4f\x85\xb7\x18\x96\xed\x94\xec\xf4\x76\x29\x30\x84\xfa\xfa\xdc\xd9\x7d\x1c\xec\xfe\x1c\xec\xf5\xda\xe9\x83\x47\x0f\x76\x57\x97\x7c\x8d\x29\x6d\xd4\x4e\xd7\xf8\xd2\x26\xbe\xc6\xef\x97\xc1\x17\x0f\xe5\x13\x8d\xd8\xda\x37\x32\x49\xac\xe1\x58\x39\x52\x03\x6a\x5b\x6f\x8d\x7c\xb6\x7b\x2b\xfa\x0a\xa3\x01\xa2\x43\x34\x18\xc0\x41\x84\x06\x49\xad\x71\x29\x63\xb4\x0e\xc6\xb4\xd5\xd3\x47\x11\x1a\xa8\x42\xe5\x63\x90\xdf\x81\x63\x43\xf1\xec\x74\x0a\xbe\xc3\xcd\x7a\x74\x80\xfe\x03\x48\x3e\x90\xaf\x18\x41\x24\xa2\x68\xa0\x0f\x32\x13\xfc\x59\x1f\x48\x03\x44\x7f\x33\x5f\x03\xef\x20\x83\x7a\xeb\x8d\xb6\x48\xbf\xbd\xbf\xf3\x4b\xfe\xcd\x1c\x1a\xa6\xdc\x0f\x0b\xfa\x65\xe0\x04\x1c\xa8\xc6\x0d\xd6\xcd\x7f\x2a\xaa\x05\xee\xd3\x76\xaf\xc8\x3b\xd0\xb9\xd7\xf3\xfb\xb4\x96\xb0\xd8\x8a\xa9\xf2\x9d\x3a\xa0\xc0\x42\xaa\x70\xdc\xf7\x43\x7d\x60\x24\x7d\xa8\x26\x09\x22\x2c\x48\xe9\x21\x4a\x5b\x2d\x00\x8b\x52\x9c\xed\x1c\x0f\x93\xe3\x51\xdf\x10\x85\x9f\x47\x8a\x2c\xcc\x3f\x67\xa4\xa5\x9a\xd2\xdf\xa1\x27\x9c\xa1\x5f\x43\xb1\x0c\xd3\x9b\xf3\x17\xfc\x22\x85\x8f\x41\x98\x8e\xa7\xe7\x47\x8b\x34\x9e\x9d\x0f\xc2\x9b\xf3\x5f\x97\x82\x9f\xff\xba\x9c\xdd\x9c\x1f\x2d\x2f\x97\x99\x3c\x3f\xe5\x0b\xc9\xe7\x17\x3c\x3d\x3f\x19\xcb\x44\xfd\xbe\x4d\xae\x74\xc4\x31\x1f\xc3\x87\xb3\xd8\x78\x8e\x08\x3d\xd3\xb5\xa8\x1a\x14\x70\x05\xda\x02\x56\x70\x15\x58\x05\x53\x41\x53\x90\x14\x10\xbf\xbc\xa7\xe3\xcd\xeb\x0c\xda\x6b\xbe\x85\x1a\x37\x9f\x25\x12\x4f\xf0\x96\x66\xb4\x7b\x83\x09\xaf\x02\x6b\xb1\x6c\x38\x32\x4c\x7d\x45\x7d\x0c\xea\x12\x32\xb5\x6c\x2a\x29\x9a\x70\xea\xed\x1e\xb6\x5a\x29\x89\xd9\x04\x0f\x77\xf9\x1e\x4d\x47\x64\x43\x99\x61\x3a\x62\xc5\xc6\x33\x3b\x27\x06\xdc\xb3\xa6\x03\xf5\x2d\xaa\xc0\xd8\x5c\xbc\x30\xfc\x04\x8b\x4f\x9d\xd2\xfd\x76\x6f\x8b\x31\x9c\xb0\x4b\xef\x15\x6b\xbd\x99\x34\x24\xa4\x9f\x00\x67\x2e\xa8\x2f\x51\x69\x93\x5f\xe0\x3f\xa9\x2c\xcf\xff\x76\x35\xf7\x2e\xb0\x09\xf6\x1d\x9d\xf6\x34\xfb\x7d\x1c\x1b\x16\x94\x77\x1f\x16\x96\xcc\xea\xed\x56\xaa\xc3\x7a\xe7\x5f\x9f\xa3\xd6\x3f\x76\x34\x95\x2a\x09\x91\xec\xdc\xb9\xa1\x55\xe0\x32\x6c\x55\xe6\x2a\x67\xa1\xde\xf9\x92\x78\xb5\x38\xa5\x16\xef\x91\x44\xdf\xa8\xea\x8e\xb4\x97\x2f\x95\x04\x9e\xce\xef\xba\x22\x11\xf4\x1b\x01\x72\x5d\x12\x49\x78\xc3\xd7\x1f\xc7\xfb\xf8\xad\x43\x37\x6a\xd1\x12\xeb\x51\xb2\xc0\x4b\x0c\x7c\x4d\xb6\x3c\xe7\x2c\xe3\xf4\x54\xfd\x2d\xf6\xf1\x33\x8e\x3d\x01\x57\x5e\x39\x6f\xcd\xe3\x8e\xc5\x15\x57\x05\xc7\x71\x38\xa2\x89\xfa\x13\x3b\x4e\x2a\x5c\x93\xbd\x5d\x60\xa6\x08\xbb\x05\xe5\x08\xd0\x3b\x60\xaa\x56\xf7\x9b\x50\x1b\x86\x58\x5b\x1e\xfe\x56\x32\x29\xf1\xdf\x48\xf1\x41\x6a\x5e\x8a\x96\x70\xe3\xaa\x02\xfb\x15\xbb\xaf\x52\x6b\x81\x39\xba\xe0\xc0\x24\x25\x34\x31\x21\xe0\xf9\x78\x5d\xdb\xdd\x87\xcc\xb1\x49\x8e\x21\xd9\x3f\xc0\xe0\x5a\x62\x1e\x71\x8b\xfe\x85\x51\x2b\x36\xaf\x1a\xb9\x9a\x6e\x82\x28\x8a\x91\x3d\x50\xaa\xd7\x20\x5b\x83\x56\xce\x08\xd7\x4e\x7d\x2d\xc9\xbd\x6a\xb9\x0b\x42\x5a\x03\xa1\x58\x8f\x5f\x79\x41\x5c\xab\x93\x5e\xef\xc4\xac\x20\xc4\x7a\xe0\x34\xfd\x29\xeb\xf6\x71\x56\xbc\xa6\xf2\xd6\x7e\xb7\x5b\x2a\x47\xdd\x53\x24\xb8\xa3\xb3\xb8\x2b\xe0\xaa\xf0\x0a\xe0\x62\x38\x21\x81\x0f\xaa\x0c\x26\xf3\x78\xea\xbc\x40\xd8\xe2\x09\xf6\xda\x62\x59\x5c\x77\xbc\x3a\x15\x9c\xc8\x43\xa1\xa8\x13\xd3\xe2\xa2\x5e\xb0\x99\xf4\xfe\xec\x99\x2f\xea\x26\x88\xd7\x0f\xd0\x27\x7b\x7f\xf6\xac\xd4\x15\x30\x3c\xe1\x47\x72\xf3\x5a\xf6\x03\xc8\x9e\xe0\xb8\x73\x95\xe5\x71\xfd\xcb\x97\x2e\x7b\xd4\x92\x6d\x8b\x17\xb7\xf1\xa3\x96\x1a\x09\xda\xa5\x29\x31\x4d\x3a\x0e\x6f\x30\x69\x4b\xf2\xe0\x51\x2b\x6d\xf7\x0a\x38\xc7\xdc\x67\x95\x80\x8a\x08\xf8\xd2\xea\xb5\x1e\x6d\x63\xd9\xee\x91\x16\x7e\xd4\x12\xed\x54\x15\xfc\xc0\x8d\x61\x78\xe7\x97\xe6\x09\xeb\xf6\x43\x36\xe7\x38\x66\x5c\xe5\xcd\x82\xec\x29\xf0\x01\xfa\x2a\xa6\xd5\xa3\x21\xcb\xda\x10\x41\x02\x15\xa3\xc2\x84\xde\xaa\x53\x31\x88\x69\x14\xde\x9c\x4c\xd4\x90\x04\xa1\x47\x33\xfd\xb2\x8e\x4e\xb0\x0f\xfe\x59\xaa\xce\xc7\x90\x79\xcf\xdf\x70\xe6\x1a\x50\x98\xb4\xe3\x76\x8f\xec\x3c\x22\x2d\xc7\x5a\x0c\x9f\xf4\xfa\x29\x0b\x5b\xef\x38\x4e\x98\x85\xd3\xee\x01\xa4\x20\x7c\xfa\xae\x02\xbc\x8f\x53\x16\xb6\xab\xb1\xb4\x28\xda\xea\x91\xc0\x83\x44\x53\x16\x12\x7a\x7b\xcd\xf9\xd7\x20\xa5\xd0\xb7\xc4\xeb\xcf\xbb\xca\x4c\xb9\x99\xa3\x09\x7c\xb7\x74\x43\xec\x7b\x09\x8c\x56\x3b\x6d\x25\x64\xe7\x51\x01\xe4\xcf\x2a\x21\xa9\xdf\x5e\x25\x7d\x44\xac\xc2\x64\xe1\x0a\x48\x12\xb2\x7a\x85\xd1\xb5\x22\x39\xae\xaf\x35\xc9\x71\x9d\x20\x8a\x54\x13\x81\x5b\x81\x3e\xa8\xb4\x0f\x1f\x74\xda\x07\x95\x16\x67\xc9\x07\x9d\xfc\x15\xeb\x8c\x14\x5d\xeb\x90\x4d\xa2\xe8\x83\x46\xfb\x75\xf2\x43\xf8\x76\x89\x0f\x35\xd6\x7e\xed\x88\x00\x55\xb5\x23\x02\x3e\xb8\x68\x55\x2b\x44\x4f\x15\x0e\x7e\xad\xaa\xb9\x06\xd0\x54\x25\xd5\x22\xe2\x72\x98\x16\xd6\xb2\x7a\xc4\x32\xc6\xa0\x27\x91\xa2\x69\x50\xa4\xba\x10\x85\x37\xba\x77\x51\xf4\x77\x08\x1d\x23\x0c\x96\x0d\x62\x51\x21\x99\xa2\xff\x0c\x50\x1d\xf5\x15\xfd\x87\xb0\x2a\x60\xb8\x86\x81\x4c\xb2\xee\xee\x73\x13\x69\xa6\x42\xc7\x7f\xc5\x30\x1e\x14\x45\xc5\x94\xea\x08\x5e\x9a\x55\x1d\xf7\x5c\x4f\x2c\x04\x7a\x3d\x37\xc9\x7e\xd8\xcf\xdf\x33\xbc\xab\xc8\xcd\x2a\x77\x5f\xcf\xdd\x97\xea\xf1\x26\xf2\xcd\x1b\xf4\x2a\xdd\x17\xdd\xa7\x5c\x2d\xc5\x18\xdd\xab\xa8\x5f\x0a\xd6\xa0\x2a\xa4\x6b\xd5\x10\xee\x45\x0c\x5a\x68\x77\x93\x83\x9d\xa8\x42\x0d\x9a\x21\xd4\xf2\x8d\xba\x76\x98\x12\x35\x05\x9b\xd6\xbe\x5b\xef\x40\x40\x7e\xe1\x0c\x9d\x2e\x45\x14\xde\x9c\x0f\x12\xf8\x39\x5b\xf2\x4c\xfd\x7e\xe0\x91\xd0\x5f\x67\xd3\x65\x0a\x1f\x2f\xd2\x58\xfd\x9c\x86\x72\x99\xaa\x99\xf3\x09\xc0\xdf\x35\x20\x05\x45\x81\x50\xc5\x55\x41\x55\x46\x15\x28\xe5\x7d\x0d\x79\xcf\x07\xc9\xf9\xd9\xf2\xfc\x03\x3f\x3f\x9b\x9e\xbf\x48\xcf\x4f\xc3\x7a\x8a\xf0\xd5\x7f\x44\x11\x96\x46\xd4\xa3\x09\x4b\xf1\x15\xe2\xef\x43\x7d\xda\x3c\x16\x6b\x29\x9a\x30\x7c\x54\xa6\x0b\x7b\x23\xa2\xee\x0e\x9c\x92\x0d\x25\x1d\x69\xe7\x9f\x12\x3f\x22\x0f\xd7\x9b\xb6\x06\xe6\x7e\x74\xe6\xf5\x9d\x30\xee\x45\x67\xc2\x8a\xbe\x83\xf6\x2b\x55\x51\x22\x1a\x7f\x50\x70\xbd\x93\x3f\xa6\x05\xab\xa3\x5b\xad\xef\xef\xb5\xf4\x4e\x32\x72\xad\x9e\x4d\xb9\x7f\xd4\xa6\xbf\x3f\x06\x9b\x6a\xba\x77\x07\xee\x6a\xd2\xfd\x4b\xfc\xd7\xcd\xb8\x73\x86\x81\x00\x7c\x01\x74\xe4\x7b\xf8\xfb\x47\x99\x9a\xfc\xf8\x9f\x51\x93\xe6\xac\x18\x8e\x68\xa6\xfe\x8c\xd5\x9f\x59\x99\xb0\x7c\x54\xa6\x2b\xed\x16\x96\xc4\x38\xeb\x2a\x6d\x55\x20\x03\x69\x52\xb7\xf9\x74\x52\x5c\xd9\x53\x3a\x36\xd4\x54\x65\x4a\x68\x66\x85\xd8\xe8\x58\x7f\xc5\x84\xce\x5c\xea\xcc\xa5\xce\x6c\xaa\x76\xb9\xee\xc8\xcb\xcc\x7d\x8d\xdd\xd7\xac\x42\x7c\xea\x1e\x65\x86\x9c\xcc\x80\xf6\x1c\x9b\xd0\x18\x42\x33\x13\x9a\x79\xa4\x66\xe9\x3e\x5b\x23\xe2\x66\x9b\xc9\xc0\xf5\x3b\x94\xd5\x40\xac\x64\xb6\x17\xf5\x3d\xb2\xde\x45\x5b\x8e\xef\xd9\xac\xbb\x60\x64\x3f\x86\x31\x88\xc5\x5d\x10\xc2\x3b\x29\xdc\x97\xbc\xc2\x93\x9f\x26\xcb\x34\xc3\xe4\x41\x6f\x37\xcf\x7b\xbb\x45\xc6\x7f\x9a\x65\xfd\x0a\x68\xad\xcd\xef\x8b\x65\x5e\x92\x51\x13\xc0\x3e\x68\xdd\xfc\x79\x2c\x96\x92\x43\xb0\xfc\x24\xfb\x8f\xea\xfe\x39\xb7\x50\x60\x5b\x2a\x6c\xff\x95\xc2\xe8\x5f\xbd\x32\x2f\x9d\x48\xc1\xd5\xd8\xe1\x54\x25\x4c\xa7\x26\xe1\x25\x87\xc8\xaf\x2a\xf2\xeb\xd7\x1f\xbc\x8b\x9a\xc6\xe5\xf9\xee\xbe\xc1\x3f\xa7\xf3\xf9\xfa\xa3\xac\x11\x62\x43\xad\x97\xbe\xe6\x33\x69\xbd\xc3\x95\x5e\xed\x92\x02\x4c\x96\xfd\x57\x80\x6c\x5c\xc6\xc7\x89\x88\x4a\xc0\x5f\xdd\xd9\x46\xbf\x63\x77\xb4\xf0\xd5\x0f\x5a\xf8\x23\x30\x9b\xda\xf7\x4f\x0e\x26\x07\xb6\xba\xfa\xf3\x08\xd1\xad\x1e\xa0\xe3\x30\x61\x14\x4d\x35\x22\xae\x43\xbd\x3d\x8d\xd7\x86\x88\xfe\xc3\x3c\x11\x1f\x15\x9f\xaf\x1c\xa2\x3d\x75\x5f\x5f\xdd\x97\x5a\x0a\x8e\xfa\x52\xd3\xef\x02\x6a\xda\x8b\x14\x35\x58\xbf\xba\x6f\xd5\xe7\x4f\x06\x80\x97\xf2\xca\xa5\xc0\xc3\xc9\x2b\x44\x15\xfc\x11\xdd\x33\x11\x8a\x36\xfc\xfa\x75\x1d\x81\xb5\x34\xaf\xc2\x5f\x0f\xe5\x70\x6f\xc4\x76\xf7\xe1\x9d\xae\x1b\xa4\xee\x19\x26\x44\x14\x1d\xd5\x95\x15\x9d\xf3\x38\x7b\x37\xf7\x90\xee\x38\x7b\x37\x50\xc7\xa6\x28\x36\x80\xc6\xa4\x01\xd0\x54\x8d\xdf\xb4\x0e\x12\x54\xad\x1a\x41\x01\x17\x37\xda\x34\x6c\xab\x6b\x1f\xa8\x61\x18\x36\x34\xde\x09\xb6\xef\x1e\x5a\x38\x05\x35\x9a\x12\x42\xe5\x70\xbf\x14\xab\xe2\x36\xd7\xa3\x06\xf2\x47\x35\xed\x03\xb7\xe1\xef\x56\x4b\x77\x21\xf6\x61\x29\x36\xd9\xdc\x98\x57\xff\xcb\x9d\xf6\xe0\xfe\xdf\x77\xd2\x92\x47\xbf\x71\xfa\xab\x7e\xfd\x57\xbd\xcd\xf4\x56\xfb\xc4\xd9\xad\x5a\x40\x22\x0a\xd3\xe0\x36\x0b\xe7\xfc\x38\xbc\x09\xd0\xf0\x2c\x89\xc2\x9b\x46\x28\x47\x8d\x37\x67\x88\x0a\xfe\x4d\xda\xf8\x79\x92\xa6\xc9\x75\x29\x49\x61\x42\x1a\x4b\x6d\x0c\x6d\xfc\x2c\xcc\x4c\x91\x8f\x3c\x93\x3c\xf5\xc1\xa9\x34\x5d\x66\xf8\x26\xcc\xe4\xa8\x51\x2e\xaa\x5a\xf1\x7c\x96\xf1\x00\xbd\x41\x2b\x5a\x96\xb0\x0b\x6e\xdf\x9c\x9d\x06\x68\x1a\xcc\xe7\x41\x96\x35\x8e\x10\x7d\x73\xa6\x83\xf0\x1d\xa0\xc1\x60\xe7\xf8\x78\x47\x8b\x75\xbc\x81\xf0\x60\xd0\x38\xa6\x0d\x1b\x53\x89\x6a\xb8\xa2\x90\xa4\x1a\x42\x1b\x75\x19\x56\xd4\x93\x13\x0c\x90\x51\xef\x6a\x44\xda\x2a\xbe\x96\xdf\x0c\xd0\x83\x08\x69\xe6\x1d\xbc\x29\x9c\xe8\x68\xb8\x89\x02\x2d\x53\xb7\x0b\x12\x74\xda\xed\xef\x59\x3c\xe7\xc1\xed\x64\x29\x97\x29\x0f\x50\x2c\x1a\x0f\x32\x44\x17\x61\x26\x03\xf4\x20\x6b\x84\x97\x09\xa2\x59\x80\xc2\xc6\x84\x5f\x37\xcc\x69\x89\x68\x96\xa9\x5a\x8a\xf0\x5c\xe5\xd0\xe7\x2b\xa2\xf3\x39\x24\x9a\xe3\x16\xd1\x69\x80\x42\xd1\xd0\x47\xe6\x74\x0a\x69\x53\x3d\xf7\x91\x2a\x06\x1c\x8b\x28\x82\x78\x85\x1b\x20\x3a\x00\x68\xfa\xed\x7a\x30\xd0\xc0\x80\x35\x8e\xe8\x8d\x4a\xd2\xf2\x39\x37\x37\x90\xa2\x02\x19\x5a\x51\x9d\x23\x38\xe1\xd4\x63\xa3\x07\x67\x1c\x14\x25\x83\xdb\x28\xb9\x0e\xba\x34\x4a\x6e\x82\x83\x95\xd5\x9d\xcc\x82\x2f\x9c\x7a\x28\x49\xf0\xba\x08\xea\xe2\xbf\x73\x5a\xba\xc9\x83\x9d\x61\xb8\x18\x7d\xee\xf4\xe7\xfd\xcf\x9d\xfe\x4e\xbc\xa2\x5c\xb2\xdb\x15\x95\xb2\x24\x67\x26\x64\xc9\x1a\x70\x45\x46\xbc\x90\xa2\x3b\x47\x14\xb5\x11\x09\xbc\xe7\xa4\x54\x16\xf6\x1f\xac\xb1\x84\x2d\x2e\x87\x72\xb4\x41\x63\x86\x1b\x53\x6a\x46\x3b\x9c\x68\x35\xf5\xdf\x78\xe7\x3c\xbc\xb8\x48\x3d\xef\x2f\x56\x3a\xcb\xe9\x6a\x38\xa3\xda\x93\x58\xa8\x11\x8e\x96\x33\xde\xf8\xc9\xd5\xf1\x13\x52\x98\x2c\x58\xc4\xed\x8c\x93\x88\x33\x34\x38\x39\x7e\xff\xe6\xf9\xf9\xdb\x93\xb3\xf3\x17\x27\xef\xdf\x1e\x23\xca\x57\x98\xd0\x04\x4c\x36\x3a\xbd\x77\xa7\xc3\xa8\x1a\xed\x29\x98\x4b\xff\x5d\xb0\x10\x52\xc4\x58\xb0\x10\x4b\xd2\x07\xc1\xd5\x20\xd6\xd9\x48\xff\x37\xce\x44\xf0\x9f\xeb\x08\x69\x9a\xbb\x81\x5a\xbc\x85\xc0\xee\xf5\x24\x59\x8a\xa8\xd3\x38\x8e\xa3\xc6\x4d\xb2\x6c\x4c\x92\x14\xbc\x66\x24\x8d\x59\x12\x46\x8d\x58\xf6\x11\x21\xd4\x0e\x9b\xa7\xb9\x2e\x4b\x26\xe6\xc0\x1e\xb7\x93\x1f\xfc\x04\xef\x98\xb2\xa3\x8a\x30\x6e\x94\x3f\xb9\x1c\xf2\x11\x79\x8b\x91\x6e\xb9\x6e\xc8\xc9\x15\x4f\xd3\x38\xe2\x88\x82\xca\xbe\x56\x70\x34\x0f\x83\x3a\x07\xd6\x77\xe8\xdb\x70\xce\x69\x43\xdb\xcf\x26\xaa\x79\xc6\xfb\x63\x28\x1a\xfc\x5b\x9c\xc9\x58\x5c\x36\xcc\x6d\x6b\xa1\xf8\xf5\xd4\x42\xd1\x36\xda\x1a\x89\x98\xdd\x34\x2e\x78\x63\x99\xf1\x48\xf5\xbf\x01\xd6\x41\x14\xc0\x10\xcc\x9b\xe8\xa2\x8d\x53\xce\x1b\x53\x29\x17\xc1\xce\x8e\xae\xe0\x4b\xd6\x19\x27\xf3\x9d\xcb\x65\x1c\xf1\x6c\xe7\x7f\x76\x8c\xca\x55\xb6\xa3\x2b\x6e\xeb\x72\x3b\x00\x72\x9e\xa4\xbc\x11\x8b\x49\xd2\x01\xd7\x54\x30\x16\x9d\x73\xdd\x10\xf7\x84\x6b\x9d\x6d\x6b\x4f\xc6\xba\xe1\xc4\xc5\xab\x75\x53\x4a\x1a\x91\xb4\x26\xb2\x04\xb5\x50\x72\xc6\x82\xa9\x2d\x54\x86\xed\x5e\x84\xe5\x1a\x98\x3c\xc7\xeb\x91\x6c\x38\x22\x74\x3d\xda\xb8\x32\xd0\x1e\x6c\x8c\x8d\xf3\x40\xae\xb4\xd6\xef\x61\xaa\x10\x21\x1d\xe9\x6d\x01\x3e\x82\x0d\x77\x8a\x9f\x63\xd0\x7a\x55\x60\xf9\xa8\xd9\x84\x9f\x7a\xf7\x18\x6a\xc9\x75\xc0\x32\x16\x18\xb7\x53\x53\x08\xda\xd6\x40\x91\x02\x48\x0b\xdf\xe8\xfc\x40\x1c\x2d\x3f\xc3\xc3\x6e\xf2\x9e\xda\xd4\x11\x61\xd0\x34\xef\x53\xaf\x76\x90\x76\xad\xc4\x11\xba\xe5\x64\xa5\x7e\x83\x65\xbe\x95\x80\xa9\x2b\xb5\xe0\x19\x50\xc7\x85\x28\x15\xc8\xca\xae\xaa\xf2\x7a\xbe\xda\xb0\xe5\x1d\xb0\xee\x61\x5c\x88\xca\x12\xe3\x62\x1b\x27\x4c\x1d\x99\xc3\x78\xe4\xbc\x37\xb5\x91\xf3\x8c\x4f\x85\x9a\x55\x9d\xa1\xd5\x1b\x11\xd2\x17\x5e\x2e\xe0\x76\x1c\xca\xa7\xdd\x43\x68\x5b\xaa\xda\x96\x78\x6f\x2d\x86\x94\x54\xf0\x9c\xfb\x4b\xb0\x13\xd3\x6c\x5a\x3b\x59\x4f\x99\x6c\x36\xaf\x71\x42\x85\xc2\x46\x9e\x32\xd9\xee\x11\xf0\xd4\x76\x28\xdb\xed\x55\xdc\x6a\xad\xdc\x40\xac\x4a\x8a\x5e\x99\xf4\x15\x95\xd4\xc8\x39\xce\x5e\xb3\xd9\xde\x65\x0c\x34\xec\x9d\x2e\x3c\xe8\xf9\x88\x61\x6f\xf4\xa4\x9b\xe7\xea\xf7\x69\xaf\xd7\xef\x05\x62\xb8\x3b\x7a\xd2\x53\x31\xbb\xa3\xa7\xd7\x1c\x83\x3f\x37\x95\x4c\xfa\xbb\x81\x18\xee\x99\xec\x7b\xa3\xa7\xbb\xfb\x8a\xd6\x63\x8c\xa9\x50\xb3\x89\xbb\x5b\xea\x73\x7f\x94\xe7\xfa\xeb\xa1\xfb\x3a\x18\x91\xfe\x5e\xa0\xd2\x74\xe1\xfd\xd1\xd3\x87\x8f\xfb\xfb\x81\xca\xa3\x63\x1e\x42\xcc\xc3\x40\xe5\xd5\x31\x07\xa3\xa7\x8f\x1f\x3f\xee\x1f\x04\xed\x1e\x85\x76\x9f\xdb\x86\x1f\xdb\xe7\x3b\xd5\x03\xed\x0c\x63\x57\x6b\x2d\xed\x92\x4a\x56\x85\x51\x65\xcd\x26\xb8\xe0\x93\x90\xe5\x51\x5d\x16\xd0\xf4\xf7\x32\xfd\x6c\x32\xd9\x3c\x4c\x96\x84\x2c\xc6\xb2\xe2\x55\xd5\x0a\x5a\x70\xab\x0c\xd7\x97\x81\xa7\x24\x3b\xf3\x27\x46\xf3\xac\x80\x61\x65\xe4\x51\xce\x23\xbd\xf2\x92\x1a\xa3\xb2\xee\xd1\x37\xd5\xfe\x77\x3c\xfb\xc4\xe7\xcb\x8c\xbf\x3f\x7b\xd6\x1f\xae\x3f\x24\x53\x1b\x35\x30\x22\x98\xd2\x3d\xec\x4a\x50\x0b\xd3\x65\xaa\x05\x4a\xb9\x4d\xd6\x15\x6c\xf3\xce\xf9\xb5\xd6\x42\x06\xbb\x0d\xe1\x70\x77\x54\x0a\xf6\x46\xcd\xe6\x06\x2d\x1a\xdd\x59\x0a\xde\x87\xf4\xe0\x80\xc0\xcc\xf9\x35\xe9\xbc\x7c\x69\x55\x9c\x65\xe7\x43\xf1\xf9\x9c\xc4\xac\x47\x43\xb6\x4f\x05\x1b\xab\xc3\xf3\xe5\x4b\x0a\xb5\x74\x47\xf4\x17\x8e\xbf\x4b\x4c\x68\x8f\xee\x13\x78\x50\x55\xc7\x3a\x64\xfa\x40\x7b\x84\x62\x9c\xe8\xd0\x73\xda\x23\x44\xad\xe2\xe4\xe9\x23\xb5\x34\xc6\x6c\xab\x6b\x3c\x1b\xc5\xfe\xd9\xa2\xf0\xab\x4e\x94\x5c\xc3\x83\x43\x35\xf6\xe6\x50\x3b\x0d\xb4\x95\xc6\x34\x24\x87\xa6\x4d\x97\x97\xae\x4d\xb3\x72\x43\xae\xe9\x0c\xf8\x83\xd6\xfa\x82\xec\x44\x7d\xd5\x2e\xd9\x89\x88\x5a\xac\xc9\xd3\x03\xd7\x22\xbb\x5c\x3a\xbc\x0f\x39\x78\x2b\xa6\x58\x76\x38\x2c\xea\x0e\xf7\x72\x92\x20\x61\xf1\x2a\x55\x5d\x4a\x9f\xbe\xe3\x58\x40\x6b\xfa\x35\xab\x9d\x6d\x75\x0d\xd8\x71\x4d\x72\x14\xde\xa8\x0c\x38\x63\xc7\x0a\x88\x13\x8b\x30\x9d\x61\x5a\xbc\x1d\xc4\x8f\xec\x2e\x63\x59\xf1\x60\x4e\x60\x39\x14\xca\xf2\xde\x4e\x0c\x55\xf7\xed\x98\x24\xc3\xee\x88\x50\xec\x67\x79\x3a\xe7\x38\x24\x79\xae\xcd\x24\x15\xf1\xaa\x8b\x1b\xf6\xb7\xea\x38\x15\xec\x2f\x8e\x43\xda\x2d\xb5\xc9\x34\xb8\x37\x62\xa2\xb2\xd2\xcd\xf2\x74\xf1\x7a\x19\x5b\xde\xe9\x5e\x69\xd9\xca\x11\x88\xe4\x9a\x6f\x06\x2c\xd5\xc4\xba\xb8\x71\x9c\xd6\x52\x72\xa9\x74\x7f\x17\xb8\xfd\xbd\xa0\x1b\x58\x78\x70\x1e\x42\x40\x1d\x89\x5d\x1b\xd8\xf7\x03\x0f\xfd\xc0\xc1\x48\x9b\x7f\x31\xe4\xa4\x36\xd9\x0f\xc5\x59\x57\x8b\x81\x31\x5c\xec\xf5\xbf\x78\xf0\x95\x13\x5f\xf0\x23\x23\x60\xa7\xcf\x66\xb0\xc6\x0b\xac\x10\x47\x60\x23\x20\x54\xcc\x9c\xfc\x3e\x87\x8b\x37\x32\xf2\x26\x03\xc3\x8d\xf2\xca\xdb\x28\xd2\xe6\xc6\x34\x44\xd1\x4c\xdd\xe6\x50\xf3\x68\xec\xf9\x50\x4f\x10\x74\xce\xaf\x3b\x11\xd4\x75\xdd\x89\xb6\x18\x8b\xed\x7c\x57\xcc\xaa\x80\x62\x34\xb0\xf6\x97\x92\xed\xfc\xeb\x73\xb6\x8d\x71\x3f\xd0\x4a\x52\xb7\x07\xab\x1c\xf4\xb9\x48\x1b\xf7\x83\xcf\xd1\xe7\xa8\xad\xfe\xe4\x1f\xcc\xa7\xfe\xc8\xb5\xee\x16\xfc\x10\x82\xfb\x01\x3e\xcb\x1b\x04\x5b\x1d\xab\xca\xef\xb0\x43\x47\x9f\xa3\x16\xe9\xc3\x7f\x3c\xfc\xdc\xfa\xbc\xa6\x8f\x95\x7f\xce\xb6\x3f\xa9\xf4\x7f\xec\xd0\xc5\x1d\xad\x32\x8d\x2a\xda\x74\xbf\x26\x95\x7f\xfe\x6e\x83\x26\x72\x93\x16\x19\x8d\x24\x1b\x5a\x0d\x93\xf6\x60\xd0\x3e\x3e\x46\x74\xc7\x35\xba\xed\x06\x70\x67\x64\x14\x51\x5c\x26\xe8\x4f\x25\xc3\xcb\x97\x2f\x5f\xb6\x87\x1f\x46\x1f\x3e\xb4\x9f\xbb\x2c\x76\xe8\x2b\x39\xca\xe9\x3b\x74\xab\xe7\xaa\x38\x2e\x55\x70\xbb\xb7\xf2\x6b\x2f\x55\xed\x17\xfb\xf8\x71\x30\xf0\x9b\xdf\xeb\x16\xe5\x4c\xca\xe7\xe8\xf6\xe7\x95\x6b\x07\x34\xc3\xb5\xf3\x43\x51\x93\x4b\xf4\xd3\x76\x57\x7e\x65\xae\x89\x8f\x56\x3b\xa3\x11\x9d\xc2\x30\xbe\x7a\xa5\x19\x2b\x9d\xd3\xd3\xd3\x53\x48\xfe\x1c\x05\xee\xcf\xe7\xce\xe7\xa8\x05\xf0\x6d\x3e\x5a\x9b\x8f\x56\xb3\xad\xe5\x28\x52\xfd\x24\x13\x3b\x9f\x97\x1b\xe0\xfe\x7b\xd5\xab\x3c\xb4\x26\x0f\x2d\x67\xa9\xa4\xba\x14\x2f\xde\xc4\x99\x18\x35\x14\x17\xb0\xfa\x77\xfa\xea\x38\xfd\x8c\xf1\xe7\x76\x5f\x2d\xd5\x9d\xb8\xe0\x32\xcc\x65\xed\xcd\x0f\x56\x4b\xe8\x98\x2d\xa5\xf6\x67\x9b\x91\x3c\x5f\xb8\x6f\x85\x15\x8c\x35\xf6\x03\x67\x42\x9c\x25\x60\x19\x08\x54\x6d\x23\x59\xd5\xb5\x8d\x27\x38\x52\x74\xfc\xb0\x37\xd2\x10\xc6\x0a\x2f\x25\xb7\x09\xd3\xd1\xdd\x11\x4d\xd9\x56\x6f\x8b\x99\xf0\xee\xa8\xf0\xdb\xac\x4f\xee\x84\x78\x36\xda\xb0\x67\xec\x68\xab\xa7\x1b\x33\xdc\x1b\x59\x3a\x40\xb5\x61\x5a\xd7\x86\x69\xa5\x0d\x7b\xaa\x0d\x31\xc3\xe3\xe1\xee\x28\xcf\x51\x03\x91\xd6\xd4\xb4\xa7\x5a\x7f\x7c\x47\xfd\xe0\xca\x39\xb5\xd6\x5e\xee\xca\xa9\x5b\xba\x3f\xd2\xe6\x2c\x27\xd2\x36\x64\x7f\x44\xee\x2a\x15\x32\xf4\x09\xad\xc0\x7e\x50\xd2\xc2\x71\x9e\x23\x44\x5a\x38\x84\x5f\x7a\x24\x9d\xac\x61\xa9\x18\x1c\xc9\x03\x35\xfd\xea\xf8\x1a\x24\x22\x3f\x5b\xf2\xfc\x03\x8f\xf2\xb3\xe9\x32\x7f\x91\xc6\xf9\x69\x28\xf3\xd3\xa5\x20\xb4\xff\x39\x23\x7d\x6c\x78\x7a\xe4\x73\x86\x7f\x0d\x45\xfe\x82\x5f\xe4\x83\x30\xcd\x8f\x16\x69\x3e\x08\x6f\xf2\x5f\x97\x22\xff\x75\x39\xcb\x8f\x96\x97\xf9\x29\x5f\xe4\x27\x63\x99\xbf\x4d\xae\xf2\x63\x3e\x56\x45\xd4\x9e\xa4\xfb\x2b\xfd\xf9\x39\x22\x81\xfe\x51\xc7\x9b\xfe\x22\xfd\xcf\x99\x6a\xc9\xfb\xb3\xfc\xe5\xe0\x2c\x1f\x3e\x7f\x36\x78\x37\x1a\x9e\x1e\x8f\xce\x48\x8e\x87\x9f\xbe\x8f\xd4\x8f\x3e\x2b\xf6\x57\x84\xfc\x63\xa7\x58\xa2\x97\xc5\x12\xad\x68\x93\x39\x99\xc9\x27\x6c\xff\x71\x7f\x97\xef\xb5\x64\x20\x41\x49\x10\xf4\xc5\x54\x08\xc6\xe1\x46\xb2\xdb\xf7\x67\x41\x97\xbe\x1c\xa8\xbf\xcf\x8f\xcf\x82\xf6\xee\x7e\x97\x3e\x3f\x3d\x0b\xda\x7b\xdd\x2e\x7d\x76\x6c\x3f\x20\xe6\xa0\x4b\x07\xc7\xf6\x43\xc5\xec\xef\x76\xe9\xbb\x63\xfb\x01\x31\x3f\x77\x3d\x5e\xdd\x95\xd7\xc4\x81\x99\x57\x35\x1d\x9e\x6a\x2b\x1e\xfe\x8b\x8c\xb6\x3f\x93\x7c\xf8\x59\x7c\x96\xa0\x63\xda\xf0\x75\x5f\xf1\xe7\xec\x73\xd6\x22\x6b\xf1\xff\x52\xf1\xdb\x3b\x15\x45\x59\x15\xa7\x9d\x8d\xc0\xaa\xaa\xb1\x1b\x5a\xc8\xcf\x5a\xc3\xde\x43\x18\x48\x7a\x56\x78\xad\x94\x84\xba\x01\x15\x6a\x40\x8b\x60\x5a\x0e\x26\x2a\x58\xa8\xa1\x37\x9b\xe6\xf1\xdc\x65\x88\x55\x06\x42\xc3\x15\x96\xc3\xfd\x11\x95\xc3\x3d\x6d\x40\x00\xd8\xf8\x54\x0e\x0f\xd4\x9f\x47\x23\x2d\x0b\x54\x7d\x34\xb0\xe6\x39\xf3\xfc\xf7\xa2\x71\x9c\x28\x1a\xd5\x12\x52\x52\x9d\x12\x85\x59\x02\x87\x1b\xe5\x39\x86\x97\x8f\x75\xb4\x84\x0a\x7f\x3f\x50\xb5\x53\x31\x00\x00\x17\x3e\xba\xca\x43\x85\x0e\x31\x41\x8d\x31\xad\x6a\xbb\x62\xd5\x0a\x6b\x71\x55\x0e\xf9\x48\x8f\xb5\x35\xb6\x64\xac\x9e\x56\x86\x30\x61\xe9\x83\x5e\xd7\x5a\x0b\xc2\x69\x3b\x21\x3b\xbd\x6e\x77\xfb\xa0\xdb\x4a\x54\x0b\x7e\x56\x5d\x78\x0c\x9d\x51\xd8\x36\xe0\x8a\x7f\x71\x1f\x39\x54\x8d\xd2\x09\x7f\x07\xcd\x83\x93\xd8\xd8\xf6\x63\x5b\xdd\xba\x33\xa1\xd0\x59\x94\xc6\xa8\x9f\x3a\x55\xb6\x18\x4b\x3b\xaf\x4f\x4f\xce\x7f\x3e\xe8\xf6\x88\x1f\xf9\xfb\x8b\x67\xe7\x0a\x1c\xb9\x85\x71\x1a\x8e\x74\x25\x60\x87\xcf\xba\x73\xf5\x69\x63\x84\x5a\xe6\xde\x70\xae\x43\x66\xc6\x3c\x54\xc2\xde\x03\x5c\xea\x08\x36\xe2\xec\x34\xe4\xf9\x70\x64\x30\xfd\xc4\x77\x63\x19\x03\x5a\x4f\xb1\x60\x38\x33\x99\x97\x1c\xc7\x6a\xfa\x54\x11\xa2\xa8\x95\x66\x13\xe3\x90\x65\xc5\x83\x52\xe6\x16\x90\x20\x8e\xfb\xf3\xb4\xdb\x6c\x42\xd3\x3d\x8b\x8c\x7a\x01\x87\x84\x66\xaa\x38\xb0\x7a\xfc\xb2\x2d\xe1\x4c\x5c\xcd\x5a\xac\x08\xbc\x1e\xc6\xa3\x3e\x16\x7d\x7f\x24\x7a\x81\x07\xdc\x18\xf8\xb3\x72\x24\x17\xaa\xc5\xb0\xe4\x02\xcf\x58\xe0\x96\x28\x35\xa8\x5c\xe6\x10\x52\x4a\x36\x04\xd9\xb8\x3d\xa3\xd9\x0f\x7b\x93\x11\x4b\x86\x3c\x61\xbd\xdd\x66\x73\xab\x6b\xd9\x47\xe6\x65\x10\x30\x7a\x95\xae\x60\x60\x3f\x85\x59\x1f\x40\x10\x59\x31\xe2\x08\x44\x8f\xe5\x87\x99\x2c\xc5\xe3\x6c\xf1\x50\xeb\x88\xa0\xda\x67\xc1\xc3\x92\x11\x4d\xd1\x97\x81\x25\x6c\x6c\x79\xd5\x90\x7e\x39\x08\xba\x32\x2e\x63\x9c\xbd\x1b\xf4\x31\x4e\xcd\xa7\x36\x77\x23\x9f\xa8\xbe\x62\xd9\x62\xbd\x5d\x42\xd3\x3c\xef\xed\x2a\x4a\x26\xcf\x15\x36\x40\xa8\x24\x81\x5c\x15\x56\xeb\x6c\x1b\xa9\xd7\x6e\x42\x67\x5a\x90\xa7\xb8\x4d\xe1\x48\xd7\xdc\x66\xc0\x91\x3c\x25\x5d\xe9\x7b\x0f\x3a\xd7\xce\x83\xce\x27\x1e\x8b\xc7\x98\xc7\x73\x5f\x79\x0e\xb2\xdb\xe7\x33\x4d\xca\x31\x68\x9c\xb3\xfc\x28\x9a\x4d\xa4\x05\xd0\x2e\xf0\xad\x67\x07\xb4\xbb\x22\x41\x9d\x7e\x93\xa6\xe2\x62\x26\x3d\xe6\xc7\x22\xe5\x0b\xab\xb9\x44\xaf\xb0\x24\x7d\x75\x72\xde\x60\xad\xfd\x14\xe0\x31\xf8\xe5\x57\x47\x8d\x0c\x12\x2c\x48\x7f\x23\xdf\x47\x1d\x71\x86\xcc\x9d\xd8\x45\x6f\x39\xc5\x80\xeb\xf9\x46\x33\xd5\x31\x6b\x51\x96\xaa\x55\x3d\xb3\xed\xbb\x87\xc9\x13\x0f\xd6\x61\x02\x1b\x5b\x21\x8b\x03\x6d\xd2\xaa\xa0\x6e\x35\x31\xac\x66\xd2\x7e\x17\xb1\x84\x4a\x85\x00\x29\x48\xc3\x64\xa4\xd0\x1e\x49\xe8\x54\xdb\x55\x88\x5b\x60\xa8\xb0\xbc\x63\x68\xdc\x62\xbd\xee\xb6\xb6\x62\xb9\x6e\x79\x93\x42\x42\x36\x4e\x52\xce\x62\x6a\xd0\xbc\x34\xcf\xe3\x27\xa9\x36\xd5\xa0\xa6\x55\x12\x72\xb8\xc0\x9c\x8a\x3c\x97\xc0\x43\x09\x44\x1f\x8e\xce\x1a\x1f\xbf\x6a\x4a\x0e\x43\x37\xcc\x6b\x1c\xc0\x60\xbc\x9e\xe6\xec\xd3\xaa\xf4\x9a\x99\x5e\x9f\x25\x76\xe1\x61\x17\x5a\x06\x19\x56\x0e\x86\x35\xaa\x0d\x19\x16\x67\xbe\xda\xe2\x86\xbb\xef\xe2\xe8\xd5\xbd\x73\xa6\xc6\xf4\xfb\x8b\x34\x99\xc3\x9a\x7c\x11\xce\x66\x17\x21\xf8\xac\xb0\x0a\xe1\x45\x67\x5a\xea\x72\xd5\xa3\x94\xa8\xae\x02\xab\x81\xcd\xb0\x2c\xce\x8d\x3a\xb1\xf8\x75\xfb\x00\xb0\x15\x49\x10\x2b\x20\xa5\x27\x0d\xc7\x76\xd5\x43\xf1\xc1\x0c\x82\xa9\x67\x28\x35\x13\xcc\xa8\x0d\x53\xd9\x89\xc2\x9b\x3c\x97\xa0\xab\x47\x25\x08\xf2\xa8\x44\xb8\x38\xa9\x34\x52\x3b\x10\x33\x9b\xc5\x3a\x34\xaa\x77\xc5\xda\x6c\x6e\x68\xe5\x0a\xba\x9b\xd5\xcc\x2c\x09\xee\x1a\x3d\xe0\xc7\x4d\xb1\x35\xa7\x19\x01\x83\x8a\x80\x19\xfd\x42\x7f\xbe\x30\x4a\x6c\xf5\xaf\x98\x73\xe3\xbf\x05\x1c\xfa\x66\x13\xa8\x26\x01\xae\xa4\x05\x15\xee\x0c\xc7\x31\x06\x4b\x1e\xe5\xd1\x33\x46\xd2\x2e\xb9\xf4\x8c\x35\xbf\x0d\xe7\x3c\x73\x28\x4d\x61\xa3\xae\x26\x97\xda\xfe\x66\x17\x7b\xfa\xf2\xda\x08\x19\xa0\x0d\x15\x9f\x1f\x85\x7d\xd6\x9e\x6b\xf6\x0a\x3a\x9d\x40\xf3\xba\x9e\x5d\x0a\x30\xdc\xec\xda\x9f\xad\x9b\x5c\xdd\x52\x57\xbb\x3d\x16\x32\x6b\xdf\x34\x54\x91\x33\x26\xa0\x04\xe3\xea\x67\xc2\xa4\xfa\x31\xd6\x53\x53\x5a\xcf\x9d\x87\xa3\x11\x4e\x72\x4f\xf5\xca\x67\x94\xc9\x4e\x18\x45\xb8\xa7\x75\x2b\x8a\x14\xd7\x44\xb9\xc2\xbe\xe9\xf3\xef\xf2\x4e\xab\xd2\x3d\xb2\xda\xb8\x1e\xd8\x09\xd6\xf6\xab\x1b\x0b\xed\xf2\x28\x6a\xc4\x19\x3c\x37\xc7\xa2\x11\x36\x52\x3e\x4e\x2e\x45\xfc\x9d\x47\x8d\xdf\x5f\x3c\x53\xe8\x58\x23\x49\x1b\xaf\x4f\x4f\x1a\x13\x38\x83\xed\x13\x6e\xc3\xb9\x57\x06\x23\xd7\xe1\x6c\x96\x35\x14\xf8\x86\x4c\x1a\x5f\x32\xbd\x2c\x09\x6d\x5c\x4f\xe3\xf1\xd4\x56\x90\xf2\x59\x1c\x5e\xcc\x78\x23\x1c\xa7\x49\x96\x35\xc2\xd9\xac\x71\x91\x26\xd7\x19\x4f\xb3\x46\x28\xa2\xc6\x15\x4f\xb3\x38\x11\x59\xa7\xf1\x36\x11\xb6\xfe\x1d\x55\xb9\xda\x55\xa6\x05\x59\x23\x4c\x79\x23\x8a\xb3\x71\xb2\x4c\xc3\x4b\x1e\x41\xd1\xeb\x58\x01\xe3\x0d\xed\x81\x3e\x82\xce\x88\xc6\x72\x31\x4e\xe6\xb1\xb8\x6c\xcc\xc3\x2f\x49\xaa\x1a\xc0\xc3\x8c\x77\x1a\xef\xe0\xb7\x91\xf2\x09\x4f\x55\x8b\xef\xf7\x78\xfc\x25\x6b\xab\x76\xac\x3d\x1b\x57\xfd\x23\xf9\x5b\x53\x1d\x1a\x2d\x8f\x39\x8b\x1a\x56\x3f\xd7\x58\x27\xb1\xa8\x70\xd9\x33\x54\x81\x0d\x97\xe2\x61\x27\x9c\x48\x35\x87\xba\xad\x98\xa8\x23\x46\x0d\xb0\xb5\x5c\xc8\x23\xda\xf0\xde\xeb\xe7\xe1\x37\x30\x19\xc9\xc3\xa8\x73\xcf\x6e\xce\x63\xd1\x9e\x87\xdf\x76\x50\x8d\x9d\x9c\xef\x1b\xac\xf2\x1f\xfa\x42\x9e\x9e\x2d\x91\x92\x7d\x12\xb0\x73\xd1\x57\x7f\x02\x1e\x5c\x60\x18\x80\xb3\x4a\x67\x54\x73\x37\x77\x46\x75\xf5\xff\x91\xce\x3c\x5d\xef\x8c\x67\xc0\x40\x96\xac\x36\x29\x2c\x07\x1e\x0e\x9d\x21\xee\x04\x48\x4c\xfd\x20\x09\x5f\x74\x4b\x56\xf0\x9f\xef\x12\x1b\xab\x98\x90\x83\xa6\xac\x77\x98\x3e\x91\x85\x9d\x90\x94\xc8\x61\x3a\x2a\x59\x6e\x51\x11\x43\x3e\xc2\x42\x1d\xf5\x02\xcc\xe1\x7a\xd6\x26\x55\x6b\xde\x4a\x36\xb4\xb6\x83\xfe\x5a\x86\xa9\xe4\xea\xcb\x1a\xe1\x30\x5a\x7a\x5a\x83\xcb\xc8\x8f\x5a\x19\x29\xa4\x2f\x2d\x88\x71\x57\x18\xf2\xac\x5c\xbf\xf1\x30\xd5\x0f\xf0\x04\xc4\xf4\x25\x99\xe7\x5d\xf0\x57\x68\xea\x53\xc1\x84\x99\x8b\x53\x05\x62\xa6\x55\xa9\xd4\xf5\x69\x74\xc2\x54\x74\xc8\xcc\xa5\xda\xa5\x19\xd3\x37\xaa\xfa\x1e\x33\x7b\xad\xaa\xd0\x8c\xd9\xbb\x55\x85\x96\xac\x74\xc1\xe6\x79\xd7\x48\xb6\x5b\xb2\xb4\xf6\xa5\xdf\xdd\x29\xf0\xba\x6b\x35\x16\xde\x4a\x2a\x89\xb3\xaf\x0c\xd2\x4c\xc6\xb2\xcc\x50\x8e\xbc\xbb\xc6\x39\x19\x00\x0b\xa2\xa0\x12\xf4\xb6\x34\x4b\xea\xb2\x1a\xbe\x55\x73\xa1\x79\x71\xa2\x28\x0b\x17\xfd\x8b\x59\xa2\x10\x76\x9b\x05\x4c\x16\xbb\x10\x58\x54\xde\xea\x5a\x4f\x4f\xea\x4a\x93\x85\x66\x91\xeb\x69\xc6\x5a\xcb\x56\x8f\xef\x6d\xcf\x5a\x07\x7c\x7f\x7b\x0c\xdf\xd9\xf6\x41\x77\xfb\xa0\x6b\x0d\x59\x87\x37\x19\x6b\x85\xad\x47\xdb\x71\x49\x79\x9b\xb5\x92\xd6\xde\x76\xda\xea\xed\x6e\x0b\x97\x55\x86\x20\x23\x66\xcc\x2d\x00\x7d\x11\x4a\xa7\x44\x74\xb1\xbc\xb8\x98\x95\x8c\xfe\x3d\x97\x9b\x8c\xd4\xbe\xf1\x54\x8c\x4f\x65\xc5\x02\x75\xbb\xb7\x0d\x5a\xb7\x69\xb2\x14\x11\x6e\xf7\xb6\x39\x09\xbc\x08\x9f\x0e\x7a\x26\x37\x4b\xc6\x7b\x36\xbc\x96\x72\x6c\xac\x16\xa8\xf5\x87\x5a\xa8\xd0\x22\xef\xc2\xa5\xdf\xe6\x2a\xbe\x8d\x08\x15\xad\x77\xf8\xdf\xff\xc6\x7c\xe7\xa0\x0b\xf2\xd5\x12\xc2\xfc\xc1\x41\x57\x4b\x56\xaf\x9e\x49\x8c\x3e\x21\x8a\x02\x44\x28\x7c\x7f\x02\x0b\x72\x20\xbf\xfc\x09\xd1\xd0\x48\x4d\x7f\x32\xdf\x20\x31\xac\xb2\x7c\xfa\xb4\x41\xf6\xd8\xe0\x13\x9a\x5b\x24\xbf\xcf\xd9\x5f\x12\x87\x9c\x16\x9a\x78\x5f\x25\xdb\x31\x8f\x3a\xfa\x39\x68\xe7\xd2\xe3\x9e\xff\xe5\x9f\x2a\x0c\x4b\xe0\xc9\x1a\x56\x05\x27\x87\x8e\x7f\xcc\xca\xbe\x8b\x34\xdf\x08\x63\x31\xb4\x7c\x85\x76\x6f\x04\x2c\x8d\x56\x51\xfe\xab\x5a\xeb\x43\xd4\x06\x01\xf5\x11\x4d\xd8\x41\x77\x3b\x1d\xf6\x46\xad\x73\x9c\x0e\x77\x8b\x53\x44\x61\x51\x49\xbf\x1b\xa0\x16\x78\xd5\x19\x76\x47\xfd\x24\x68\x27\x9e\x1a\x79\xe9\xe8\x4b\x3c\x6c\x47\xdb\xa7\x50\xc7\x92\x76\x30\x8c\x09\x4d\x18\xbe\x02\x14\x6d\x8c\xb9\x42\x6a\x1d\x81\x12\x28\x0c\x87\x78\x04\x4b\x5b\x14\x01\x35\x7a\xc0\xac\x02\xeb\xeb\x10\x70\x69\xad\x64\xcd\x7c\x85\x00\x81\x78\x61\x61\xc2\x72\xf6\xd7\xee\xb1\xbf\x2a\x7b\x0f\xb7\xdb\xfe\x0a\xf4\xec\xbc\x7f\x4f\x84\x05\x49\x76\x7a\x0f\x3d\x08\xbf\x14\xbe\xdb\xb6\xb6\xaa\xb7\x86\x3d\x80\x80\xd8\x04\xdf\x0b\x10\xa1\xad\xe0\xaf\xca\x6d\x5d\xbf\xec\xdf\x01\x53\xfd\x73\x3b\xff\xdc\x22\x7d\xdc\x0f\xf0\xe7\x68\x9b\x0c\x3b\x8d\x11\x30\xd1\x5b\xe4\x73\x00\x3f\xb8\x1f\xd8\xaf\xcf\x1d\x95\x45\x3f\xff\xfd\x09\xa5\x75\xe1\x77\xaa\xf4\xb0\xdd\x1a\xf5\x87\xdd\xf6\x63\xda\x19\x6d\x93\x8f\x1a\x64\x39\x72\x50\x17\xf9\xa1\x2e\xf2\x18\x22\xcf\xd6\x13\x5e\xdd\x1b\xee\xa9\x6e\x68\xb1\xc6\xbf\xc8\x8a\xaf\x04\xaa\x95\xfc\xb5\xbc\x9a\x9e\x23\x38\x6c\xfa\x31\xbb\x9d\x67\x8a\x2a\xf4\x8f\x41\x1a\x05\x5a\x04\x20\xa3\x03\x48\x83\x23\x6e\x15\x64\xc6\x82\x80\x3a\xd4\xfa\x60\x65\x83\x07\x71\xa7\x74\x80\x72\x12\xe0\x90\xbd\xb3\x14\x2f\x21\x6a\xa9\xa2\xb6\x5a\xe6\xe1\xb0\x37\xea\xb7\x7b\x41\x8f\xc6\xec\xf6\x26\xe8\xd2\x28\x38\xc7\xa1\xda\x16\xdb\x82\x4e\xe1\x7b\x0f\xbe\xe7\xf0\xbd\x0f\xdf\x19\x7c\x3f\xd4\xf1\x2a\x70\x2a\xb1\x3a\x95\xc3\xe1\xc1\x88\x90\x6d\xb1\x82\xfa\xfe\xbc\x47\x7d\xbf\x4b\xa8\x8c\x0a\x42\x07\x3a\xb0\x07\x81\x6b\x1d\xd8\x87\x40\xa4\x03\x0f\x21\x30\xd5\x81\x03\x08\xcc\x75\xe0\x11\x04\x32\x1d\xf8\x59\x05\x56\x9a\xd3\xc5\x58\xac\x06\x73\x15\xac\x9b\x7a\x8f\x9b\x4d\xac\x5d\xd3\x29\xcc\x2b\xcf\x91\x4c\xe0\x8b\x94\x2d\x03\xd7\x48\xc9\x96\x76\x40\xd9\xd2\xee\x07\xa9\xbd\x15\xaa\x3c\xbf\xf0\x49\x92\x72\xe0\x20\xb1\xd7\x7a\xea\x03\x8c\xe1\x5b\xe5\x21\xe5\x29\x6a\x8b\x52\x98\x0a\x63\x9f\x05\x12\xe0\x0b\xf6\xf9\xad\x9f\x29\xe8\x5a\x39\xeb\xee\x6a\x85\xbf\x4b\x1c\x83\x97\x30\x42\xe1\x53\x26\x44\xd1\xaf\xec\x76\x45\x3a\xf3\x8c\x25\x65\xf8\x71\x67\xa0\xa2\x0c\xe4\x14\xb0\xfa\x37\x12\xc7\x84\xc2\x12\x6c\x36\x97\x98\x53\x64\x2e\x48\xf0\x06\x94\xae\xb3\xe3\x08\xf5\x64\x73\x7f\x2f\x1d\xe1\x96\xd4\x37\x18\x40\x21\x65\x4d\x11\x45\x1d\xe4\x68\x45\x6c\x2d\xf2\xf5\xbb\x81\x20\xdb\xde\x8d\xfa\xba\x04\xcf\x11\xec\x0d\x37\x32\xd2\x9a\x7f\x6b\xf3\xc2\x10\xdc\xee\x36\x96\xd6\x68\x85\x33\xe7\x47\xb9\x3d\x96\x81\x16\xb5\x10\xc0\x32\x5b\x27\xce\x8e\x26\x92\xa7\xc0\x01\x6b\xbb\xd1\xa6\xe5\xf9\x60\x2d\xd9\x6e\xdd\x01\xc5\xf7\x09\xf1\x4a\x6e\xb0\x98\xe8\x34\xe3\xcb\xfc\x5b\xe0\x96\xc1\x28\xb4\x52\x85\xdc\xbe\xc5\x92\x16\x64\x03\x6a\xc9\x16\xc2\x0b\x9e\xc6\x49\x44\x1b\xda\x75\x16\x29\x13\x12\x8e\xe8\x2b\xe8\x09\x57\x50\x17\xa0\x0d\x0d\x80\x74\xfe\x86\x40\x71\x18\x45\xed\x58\x5c\xf1\x54\xf2\xa8\x0d\x9e\xfd\x6b\xa4\x8a\x13\x60\x97\xa4\x34\x65\x09\xa1\x2f\x8c\x21\x87\x2f\x52\xed\xf7\x35\x36\x9c\xe8\xb7\x44\xa0\x46\xc1\xba\x20\xf1\x0c\x7f\xbc\xb0\x34\xbe\x35\xac\xc2\x64\xe5\xf8\x0b\xd9\xa9\xc4\x52\x9f\x80\x84\x66\x26\x64\x56\xf0\x61\x69\x57\xe2\xc4\x08\x2a\x25\x79\x9e\xd0\xac\xd9\x04\x33\x58\x60\x5f\xd2\x5a\x76\x6a\x65\xdb\x82\xd0\xb0\xd9\x04\x4b\x91\xe8\x18\x74\x36\x8e\x8a\x6f\xd2\x0a\x55\x86\xb8\x90\x12\x82\x1b\x99\x97\x6f\xe4\x58\xe5\x49\x9a\xcd\xca\xb5\xcc\x69\x98\xe7\x19\x21\xab\x2f\xb2\x33\x11\xec\x8d\xe7\xa8\x80\x7e\x71\xee\x92\x6a\xcc\x80\x7f\x91\xc0\xf2\xd5\xf7\xe3\x7b\xc9\x5e\x49\xdc\xa3\x28\x8c\x22\x44\xe8\x1f\x10\x6c\xf7\x28\xca\x96\x17\x32\x0d\xc7\xd2\xb7\x22\xf0\xb1\xb4\x5b\xea\xb7\x41\x0b\xd7\x6c\x19\xed\xc3\xb3\xb4\xb0\x0d\xd1\x94\x39\xdb\xdb\x6d\x2c\x5a\x58\xb6\xd3\x27\xdd\xbe\x36\x21\x89\xd3\x76\xa5\x8c\x6a\x97\x2d\x45\x02\x93\xab\x92\xa7\xe5\xe5\x69\xa7\x84\x90\x3c\xf7\x4c\xf3\xbf\xf4\x64\xa4\xbd\x47\x7c\xed\x48\xae\xef\xe3\xeb\x5a\x26\x3a\x28\xe4\x29\x41\xbc\x9a\x58\x3f\xe4\xce\xa9\x8e\xb1\xea\xb5\x4a\xad\xb7\x42\xc3\x6b\xf7\x44\x7e\xce\xac\x38\xca\x27\x44\x2b\xd9\xde\xcb\x71\x6d\xce\xe1\xa7\x91\xf6\xee\xf7\xcf\x32\x7d\x3f\x0b\xc5\x25\x5e\xdb\x99\xaf\x35\x4d\x4f\xcb\x7b\xd3\xd7\x71\x6d\xc8\xa4\x01\xca\x0f\x53\xde\x50\x30\x96\xe1\x25\x37\xca\x02\xcb\x54\x7b\xb6\x6f\xbc\x5f\x2f\x8c\x7d\x7d\x04\x5b\x2e\xab\x72\x6c\x36\x0c\xa4\x5f\x7f\xe0\xc5\x18\xcb\x19\x85\x2a\xad\xac\x28\xb9\x9a\xb1\x2d\x66\xed\xb7\xd2\x61\x87\xf9\x03\xd9\x92\xe4\x81\x77\x8c\xff\x5a\x15\x16\xf6\x6d\x5e\xad\x1b\xbc\x22\xed\xde\xee\xc1\xee\xee\xa3\x9f\xbb\x3f\xf3\x87\x41\xd9\x8a\x95\x87\x34\x17\xf0\x3f\xdd\x05\xdf\x9a\x8a\xda\x04\xbf\x48\x87\xb4\x02\x2a\x17\x96\x24\xeb\xd2\x21\xa7\x96\xb9\x3a\xa2\xdd\x92\x33\x3e\x29\xd6\x0c\x42\x95\xcf\x76\xde\xff\xc5\x98\x94\x53\x39\x60\x23\x06\x58\x3e\xc5\x31\x7b\x67\xed\x43\x69\x4e\x49\x4c\xa8\x10\x9e\x67\xae\x02\xac\x57\x9d\x58\xaf\x8e\x95\x6c\x52\xd1\x90\xfd\xc5\x71\xac\xf9\xf7\x5d\x1a\x7b\x92\xab\x87\x6b\x36\x9c\xc3\x75\x03\x5c\xd4\xb3\xaa\x1a\x96\x25\x4b\x4d\x1a\xd8\xeb\x0b\xab\xc2\xa5\xea\x2c\xd7\x66\x9d\x2f\x2f\x7f\xa0\x26\x7d\xcd\xf9\xd7\x8f\x35\x26\xa4\x5f\xbe\xfc\x41\x41\xc3\x3e\x29\x97\xe5\x02\xa3\xcb\x4b\x55\x29\xb2\x80\x51\x11\x5b\x13\xfd\xf2\xa5\xaa\x08\x79\xc0\xbc\x84\xf5\x14\x63\x0b\x48\xdb\x45\x56\x9d\xf3\xad\x01\x99\xd8\x97\x2f\x0b\x43\x4f\x1f\xad\xb1\xea\x5f\x2a\xb9\x8c\x0d\xa0\x97\x85\xfd\xea\xcb\xe2\x53\x55\xec\x94\x8c\x55\xab\x5d\x40\x37\xaa\xb0\x6b\xad\x3b\x55\x84\x4d\xab\x0b\x3b\xd7\xa6\xdb\x3a\x02\x4c\xe6\x98\x71\xb0\xe3\x61\xba\xa9\x0b\xfe\xd8\x80\xd4\xae\x67\x40\xca\x80\xd3\x5d\x5e\x2f\x9a\xa8\xa2\xc9\x5d\xd6\xad\x5f\x61\xf4\x1b\x58\xa0\xfa\x2d\xf1\x78\x74\x30\xa4\x05\xc3\xee\x37\x3d\x9a\x2e\xe2\x91\xee\xd8\x6f\x88\xfe\xa1\x35\x66\x7f\xab\xb1\x8f\xdd\x1b\xb1\xbd\x6d\xac\x4d\xd6\xda\xaa\x8e\x11\x1d\xa2\xe3\x63\x6d\xb6\xeb\x58\xdb\xbc\x92\xdc\x5a\x7b\x02\xbe\xdf\xb1\xb5\xe4\xa4\x42\x8f\x75\x45\xc7\x4e\x2b\x5c\x95\x75\x33\x71\x9c\x6c\x32\x96\xc4\xfb\xd2\x88\x66\xaf\x69\x78\xe6\xb9\xec\x9c\x27\xbe\xca\xe7\xc6\xac\x6f\xb8\x88\xb9\x90\x4e\x3f\xfb\x58\x35\xef\x18\x8d\xe8\xae\xee\x75\x4d\xfd\x72\xb8\xab\x15\x7b\x35\x9f\xe3\x37\x90\xe3\xb0\xfc\x96\x54\x80\x5e\xaf\x46\x6c\xb6\xba\xe4\x50\x8d\xc8\xb1\x19\x13\xf5\xbb\xa7\x46\xe5\xd8\x8c\x8b\x39\x25\x9c\x29\x2c\x13\x84\x1c\xce\xda\x95\x8d\xdc\xb7\xc3\x73\x8c\x28\xe7\x2e\x70\x8c\xe8\x4b\xdb\xf8\x63\xdd\x7c\xe8\x40\x1d\xbb\xa8\x90\xae\xf7\xac\x93\xcd\x55\xe3\xe6\x73\x6b\x95\xc1\x70\x67\xb5\x29\x65\xcb\xa9\x9d\x1b\x5b\xca\x26\xdc\x33\x6d\x99\xbb\x49\x53\xe5\x61\xd2\xa0\x21\x73\x55\x64\x8e\x46\x74\x5f\x8f\x4a\xa2\x47\x65\x60\xb5\x61\xb7\x7a\x30\x30\x99\xaa\x39\xcb\x6c\xcd\x86\x01\x0c\x35\x3b\xd6\x70\xa6\x6b\xb6\xe1\x9e\x31\xe1\x96\xb9\x9a\x55\xf9\xa2\xe6\x4c\x15\xc9\xd0\x88\x3e\xd4\x35\x87\x82\x66\xba\xf2\x53\xab\xa7\xab\x2a\x9f\x24\x29\x7e\x85\xd1\xe9\x26\xeb\x09\xff\xfe\xb7\x35\x97\xe0\x50\x61\x0c\x62\x50\xa4\x38\x3a\x4f\x4f\x37\x1e\x9d\x9b\x8a\x97\x4a\x9f\xc2\x62\xe8\x96\xb9\xdf\x5e\xf2\xa9\x31\xed\x5f\x73\x32\xf7\xba\xdb\xeb\xf0\x4b\xb0\x55\xe9\x87\x1b\x4b\xdf\xa3\xf8\x29\xa2\x07\x9b\xca\xf3\xbd\x7b\x94\x3f\x45\xf4\xd1\x46\x00\xfb\xf7\x01\x70\x8a\xe8\xcf\x1b\x21\x3c\xbc\x17\x84\x53\x44\x1f\x6f\x04\x71\xb0\x01\x04\x2c\xfc\x62\x4a\x28\x9a\x67\x76\xf9\x7b\xb1\xbd\x03\xbd\xfe\x4e\xd5\x6e\x54\x87\x24\x04\x74\xe8\xa3\x0d\xe9\xe0\x4b\x42\x43\xc1\xf4\x9c\x1e\x86\x96\x67\xfa\x84\x3d\x3e\x0c\x45\x8b\xa1\x53\x44\x66\x1c\x87\x82\xa6\xdc\x43\x02\xc7\xee\xb8\x39\x50\xc7\x8d\x1a\x74\x8c\xba\x1d\xd4\x82\x57\xf6\x24\xc5\x00\x72\x03\xbc\x08\xe0\x8d\x85\xde\x04\x33\xbb\xfd\x0a\xba\xce\xed\xc1\xef\xc6\x30\xdf\xf7\x44\xf0\xa3\x8b\x0b\x63\x90\xe5\xbb\x1f\xfd\x36\x9c\x73\xa4\x21\x2d\x05\xf3\x2c\x93\x16\x8d\x5d\x94\xe4\x0d\x56\x4b\xa1\x48\x0f\xf6\x5e\xd2\x25\x60\x57\x60\xd4\xa0\x8e\xbb\xc3\x78\x9e\x83\x96\x53\xc2\x3e\x48\xac\x5f\x0b\xc0\x7d\x5e\x2a\x4f\x26\xd8\x58\x4b\x8c\x59\xea\x80\x18\xef\x3e\x80\xac\x25\x24\xcf\x91\x35\x51\x80\x68\x08\x6a\x74\x6f\xb0\x1c\xc6\x23\xd2\x57\x7f\x3d\xc4\x4e\x90\x00\xe2\x4b\xf8\x98\x7e\xfe\xc5\x61\x9e\xaf\x9b\xc0\xb1\x15\x62\xfd\xb6\x41\xbf\x4b\x10\xc8\x5b\x41\x8f\x14\x79\x55\x43\x47\xea\x87\x79\x4d\xfd\xa8\x7c\x51\x3c\x99\xd4\x8b\x92\x59\x49\xa5\x0a\x6f\xd7\x77\x2b\xa0\x52\x71\xca\x34\xf7\x5b\x81\x24\xf5\xf9\xb2\xeb\x58\x5d\x43\x09\x3b\xe0\xfb\xdb\x38\xf5\xdf\x2b\xda\xd5\x07\x0c\x42\x25\xfb\x0b\x4b\x42\x6e\xc7\x61\xc6\xf5\xab\x5d\x10\xb3\x8f\x66\x40\xc1\x4b\x81\x96\x1d\x3f\x84\x0c\xfa\x15\xaf\x94\xc3\x4f\xb6\xc8\x42\x19\xc4\x9e\x9f\xc5\xec\x96\x20\x66\x90\x0e\x8e\x10\x78\x29\x87\xb9\x53\xfc\x1c\x07\x7c\xdf\xcf\x01\xcf\x86\x7e\xfa\xde\x01\x7f\xe8\x67\x50\xcb\xa4\x48\x6f\x27\x64\xe7\xe7\x83\xfd\x72\x16\x78\x87\x2c\xe7\x39\xe8\xee\xff\xec\x32\x59\x67\xfd\xda\xd4\x56\x3b\x5d\x39\xeb\x74\x71\x70\x84\x63\x3d\x9f\x5c\x44\x27\x93\x75\x75\x49\x35\x55\x8e\xd4\xc3\x9c\xfd\x85\x41\xc2\xb3\x74\x5c\x28\x22\x30\xcf\x37\x4c\xb7\x8a\xd5\x6e\x24\x98\xc7\xdb\xef\x7f\x92\xc1\xaf\xd2\xce\x2f\x2f\xcd\x99\x64\xda\x0e\xa8\xb3\xf6\x4a\xbb\xb4\x47\xda\xbd\xda\xd9\xa9\x64\xf6\xa9\x0d\xb3\x44\x4c\xe0\xc1\x5e\x6b\x6f\x0d\x8c\x59\x03\x77\x01\x69\xf5\xd6\x4a\xe9\xf1\xbe\xab\x90\x47\xd8\x98\x56\x18\x19\x68\x4c\x5a\x8f\x2a\xd0\xac\x01\xd7\xfb\x03\xc4\x3e\xf1\x02\x40\xdb\xbd\x75\xb8\xb0\x70\xcc\x97\x5a\x83\xf7\x05\xdf\xaa\x76\x57\x2f\x51\x69\xa6\xcf\xe3\x55\x51\xd9\x62\x6a\xb9\xb6\x7f\x93\x58\xb6\xb0\x3f\xbd\xdd\xe0\xc0\xde\x83\xa5\x2d\xaa\xb2\x57\xe7\xc0\xec\x91\x0d\x15\x1c\xf0\x7d\x80\x4f\x0f\xf8\x7e\xa5\xa4\xdd\x7f\x1b\x4a\xf6\xf8\x9e\x2e\xd9\xe3\x7b\xa4\x5d\x38\x2b\x35\x79\x2d\xff\x4d\xde\x6d\xc1\x1d\x36\x87\x3e\x4c\x4b\xbb\x83\xe7\x39\x36\xaf\xa8\x71\xf6\x5e\x8e\x31\xe9\xaf\x73\x7b\x82\x4a\x94\xbe\x68\x24\x7b\x61\xcd\xca\x1e\x6e\x34\x53\xb6\x48\x32\x69\xce\x70\xa9\x77\xe8\x24\x4d\xe6\xac\xde\xb6\x6a\xe5\x11\x0d\x9e\x09\x4b\x12\x18\x70\x13\x71\xff\x94\xed\x7f\x91\xf8\x56\x26\xc0\xaa\xa1\x0a\x74\xc0\x57\x8e\x11\xe4\xf3\x6f\x08\xe9\x4c\x97\xf3\x50\xc4\xdf\x39\xde\x92\x25\xde\x4e\xad\x6b\x3b\xdb\xd4\xb7\xc9\x75\x9d\xeb\x20\x7d\x39\xa5\xc9\x5c\x6b\x00\x73\x5d\x40\x56\xdf\x47\xfe\xdb\x9e\x41\x8f\xa0\x6f\x32\xf9\xdf\xec\x99\x4c\xee\xea\x97\x4c\x4a\xbd\xba\xe4\xb2\x2e\xeb\x1b\xed\xaf\x46\x1f\xa6\xea\x3a\x87\xd0\xc8\xf0\xcd\xa0\xa4\xa9\xf8\x48\xd6\xdc\xc4\x91\xbe\x85\x9d\x2a\xbd\x2e\xa0\x9f\x1c\x6a\xf1\x90\x2b\x78\x2e\xd6\x0f\xba\x56\xd8\xaf\x7a\x3b\xe7\xf9\x96\xf0\xc6\xb0\xd9\xc4\xd5\x23\x1e\xeb\xeb\xb5\x72\xf6\xeb\xd6\x17\x1b\xef\xa9\xf7\xf2\x1c\x78\xdf\xda\x6b\x8f\xe5\xdd\x5a\x24\x48\xfa\x8f\xd6\xa6\x1f\xfa\x91\xeb\xff\xf3\x8e\x3c\xf1\x3b\x52\x6a\x3c\xdc\x94\xa5\xa6\xfb\x79\x8b\x6e\xc8\x6b\xce\xd7\xb5\x7e\xac\x25\x63\xbf\x2f\x34\x66\x57\xda\xd3\xdf\x77\x59\x78\xbc\xdd\xda\xc2\xd5\xe5\x9f\xf8\x81\xb8\xd2\x4d\x0c\x9d\x4b\x59\x9a\xe7\x08\x13\xa4\x48\xf7\xbe\x01\xa0\x9f\xa3\x12\x85\x29\xda\xe1\x32\x6f\x89\x2a\x0e\x4a\x13\x2d\xa1\xd0\x73\x65\x4c\x86\xd8\x2f\xa4\xe1\xa8\x28\xdb\xcd\xd3\x70\x5e\x3b\x57\x34\xbd\xef\x6c\xa5\xff\x1b\xb3\x05\xde\xc8\x8b\xf9\xc2\xc2\x0f\xd2\x1f\xae\xbd\x27\x4c\x34\x9b\xe2\x09\xfb\xc1\x3c\x97\x7a\x7d\x92\xd6\xed\xb8\xf2\xb9\xa5\xf2\x41\xbc\xc1\xc2\xed\x08\xaa\xa8\x12\xa8\xda\x45\xff\x23\x58\x66\x86\x3c\x60\x7f\x6c\x78\x04\x9a\x7a\x88\xfb\x2c\x14\x97\xec\x9f\x40\xbd\x98\x57\x8d\x97\x5e\x40\x1d\x7c\xec\x1f\x10\x31\x0f\xbf\xb1\x33\xfd\x15\x0b\x76\x02\x5f\x8b\x30\xcd\x62\x71\xf9\x62\x16\x5e\x66\x35\xf5\x80\xaf\x69\x73\x3e\xe9\xda\x4a\x62\x1a\xd6\xd0\xd2\xfa\xd3\xb9\xb6\x37\x5d\xd5\x93\xb3\xf2\x71\xc6\xfc\x2c\x24\x6b\xf1\x33\xa3\x53\x73\xbb\x14\xb1\x0c\x04\x5d\xa4\x71\x92\xc6\xf2\x26\x38\x1e\x8a\xd1\xca\x13\x1a\x06\x3b\xaf\x1b\x78\x6c\x1d\x5b\xaa\x2d\xdd\xa7\x22\x91\xe5\x0a\x73\x10\xc9\x23\x46\x40\x4d\x38\x97\xca\xad\x16\x81\xc3\x5a\x0c\xd3\x51\x47\xd5\x3d\xc2\xdc\x0b\x14\x4e\x6c\x2a\x47\xbc\x8f\x0c\x83\x03\xc7\xd2\xc5\xaf\x07\x4a\x2f\xcb\xff\x17\x31\x70\xc0\xbf\xff\x5b\xec\xbb\x02\xe2\x1e\x98\x77\xa5\xc4\x7f\x85\x75\x93\xff\x3f\x60\xdc\xe4\x7f\x03\xdb\x26\xf7\xc4\xb4\xdb\xec\x6f\x22\xd9\xf7\x46\xb1\x35\x64\x40\xaf\xef\x8d\x5c\x9b\x32\x0a\xb1\xfe\x6f\xd0\x6a\xfb\xea\xcc\xfe\x90\x1a\xb7\x02\xef\x30\xac\x56\x56\xd1\x6c\x98\xa1\xf3\xfa\x51\x78\x43\x74\x2e\x9f\x38\x88\xbd\xea\x34\xe8\x32\x7c\x5a\xf6\x17\xc4\x7a\xec\xb0\x91\x41\xe8\x8c\x12\xc3\x5d\xb5\x82\xc7\x94\x2c\x70\x75\x1b\x19\x99\xa2\x09\xaa\x01\x81\x6b\x07\x58\x3f\x0c\xb8\x33\x2e\x6c\x2c\x25\x06\xdc\x33\x51\x6b\x05\x6e\xb8\x67\xa2\xb6\x24\x89\x53\x6a\x6d\x86\xc9\xca\x34\x57\x21\xa3\x1b\xf8\x33\x5a\xbd\xa5\x74\x31\x5a\xac\xf5\xf5\xe9\x89\xf6\xec\xce\xaa\x6a\x3b\xf5\x87\x86\x93\x85\x94\x0c\xf4\x59\x38\x15\x4c\xf6\x4b\xf7\xe3\x52\x11\x3d\x81\x37\x4a\x0d\x61\xc6\x07\xcc\x4d\x99\xef\xa7\xe0\x16\xf6\x05\x16\x54\xf6\x4b\xf6\x33\x86\x67\x23\xdf\x0e\xc4\xf0\xd3\x08\x05\x77\x65\xf8\x84\x48\xf0\x46\x7b\xea\x29\xdc\x07\x79\x1d\x23\x7d\xd3\x3e\x3d\x44\x98\xf8\x89\x98\x04\x1b\x06\xa8\x75\xd0\x5d\xdb\x42\xdb\x6a\x61\x97\x8b\x17\xd2\x46\x9f\x10\x55\xbd\x41\x9f\x10\x21\x81\xd7\xaf\x1f\xf4\x6a\x53\x9f\x0c\xba\x9f\x2d\x2a\x6b\x70\xe3\xd4\x18\xf1\x00\x4b\x22\xe0\x9d\xed\x86\x31\x87\x7c\x1e\xb7\x50\x63\x7b\x87\x68\x59\x02\xce\x4c\x4e\x44\x25\x43\xe8\xd0\x00\x7b\xa3\x05\x3a\x81\x7a\x75\xf2\x95\x5e\xdf\xfb\x16\xfe\x52\x8e\x51\x60\x03\xf0\xfc\xf6\x29\x11\x1c\x80\x7d\x32\x1c\x53\xc1\xd0\x10\xb5\x78\xeb\x27\x8c\x46\x3f\xa9\xcb\xf2\x89\xef\x1a\xd8\x08\x73\x9a\x25\x61\xdc\x03\x83\x81\xd4\xc0\xf9\xce\x4d\x98\x6c\xfd\x34\x44\x64\xf4\x53\x1d\xf3\x52\xb4\xd2\x16\xaa\x1d\x38\xd4\x4a\xec\xca\xfe\xf5\xf4\xe4\xed\x26\xf7\xf7\x85\x24\x9d\x59\x19\xa5\x05\xb1\x9c\xcd\x0c\x8c\xea\xd6\x28\x43\xb1\x0b\xde\x90\x8d\x88\x0b\x44\x6c\x13\x51\x14\x45\x0d\x30\xe4\x7a\xac\x0d\xb9\xda\x56\x36\x86\x2f\x07\x67\xa3\x4f\x76\x86\x97\x22\xfe\x56\x03\xdf\xf3\xa2\x54\x5e\x96\x3b\x70\xb6\xaa\x92\x26\x6a\x53\xe3\xfc\x83\xb9\x0d\x6c\x52\xe9\x49\xcc\xe6\x79\xd7\xb0\x75\xc1\x14\x64\x22\x00\xbf\x5b\x03\x75\x1b\x83\x5a\xab\x59\x45\x54\xf7\xcd\x04\x27\x54\xf7\xdb\x04\x8d\xa2\x2e\xdc\x40\x81\x77\x1b\x51\xad\xd4\x65\xa2\x74\x40\x1f\x59\x6a\x01\xb0\x1b\xae\x31\xd4\x37\x3c\x5c\x94\xbd\x0a\xfb\x3e\xab\xbd\x05\xa3\x9b\x6d\x1f\xc0\x6b\x29\xee\x8a\x70\x83\xbd\xf0\xed\x05\xeb\x2e\x7f\xba\x4e\xd8\x17\x66\xca\x36\xa7\xdd\x58\xac\xda\xbd\xb9\xdf\xb7\x15\xa6\x88\xad\xd9\xc7\x1b\xc0\xce\x1a\xc0\x35\x48\x14\x2b\x3e\xb3\x3a\xf8\x56\xe8\x03\x56\xca\x98\xc7\x33\x8c\xcb\xec\x49\xb2\xb3\x67\x08\x54\x1d\xb5\xb7\x8d\xc1\x17\x58\x19\xfd\xd2\x75\x42\x90\xbd\x81\xb9\x88\xc2\x9b\xec\xb5\xd0\xde\x51\xd7\x27\xe3\x9a\x6f\x44\x5f\x8a\x99\x61\xe6\x37\xab\xc1\xd9\xd7\xc7\x15\xe6\x06\x48\x83\xaa\x40\x8b\x59\x35\x61\x14\xe1\x47\xaa\xf5\x92\x80\x6a\x9f\x3f\xfc\xac\xf8\xac\xab\xcd\x8a\xc4\x80\x15\x3b\x55\xd1\xdf\xa9\x02\xba\xf0\x5a\x54\x97\xa5\xa7\x27\xb1\xbe\x3e\x2c\xfc\x77\xe5\x71\xe2\xb0\xa6\xf8\xda\xea\xa9\x01\x5f\x0f\xc0\x2d\x0f\x85\x4a\xb0\x54\x98\x99\x62\x66\xc2\xfe\xc6\xed\xbd\x65\x24\xb3\x02\xeb\xc7\x59\x96\xd0\x7f\x7b\x78\xf8\x96\xcd\xbc\x38\x88\x38\xac\x80\xc3\xf5\x14\xaa\x15\xcb\xf4\x4c\x94\xf5\x79\x60\x1d\x4b\xf7\x91\x16\x18\x2d\xa8\x3d\xcc\x99\xac\xfa\x6f\x22\xc4\x98\x7a\x0c\x2a\xea\xbc\xe6\x85\xa8\x34\x05\x66\x3d\xaa\xc9\xe4\x6d\x09\x13\x49\x02\xe9\xe6\x32\xf2\x71\xc8\xff\x64\x9c\xb0\x41\xd0\x81\x5d\xdf\xbe\xe3\xf4\x20\x0f\x1e\xdd\xb1\xd0\x6c\xdb\xfc\x85\xf0\x5f\xb4\xad\x30\xa0\x6b\x57\xfd\x5d\x93\xe1\xd1\xd6\xfd\xf5\xd1\x7e\xf0\x28\xcf\x1f\x15\x53\x04\x03\xcf\xeb\xc7\xba\x74\x31\x83\xa3\x17\x37\x38\x0f\x1e\xa9\xee\xb6\x1f\x95\x89\x80\x48\xdb\x7e\x79\x64\x96\xb1\x95\xca\x58\xdf\xb4\x9e\xe6\x08\xae\x65\xd1\xe8\x37\xd2\x76\x7d\x9a\x76\xee\x6f\x9e\xc3\x3c\x6f\x83\x3f\x9a\x08\x85\x94\x33\xf3\x9b\xb1\x5f\xb9\x61\x70\x2c\x25\x67\xee\x2b\x63\x89\xd0\xdc\x0b\x85\x7c\x33\xf7\x95\xb1\x4c\xe8\xfc\x0e\x33\x67\xcb\x8a\x58\xf7\x0c\x72\x38\x8c\xaa\xf6\x8d\x34\xb1\x6e\x6f\x8a\x6b\xfa\x8e\x17\xd3\x3b\x57\x42\xad\x9f\x5d\x4e\x0a\x83\xc9\xc0\x33\x30\x9a\x53\x25\x9e\x80\xb6\xa5\x01\x93\x10\x5e\x64\x98\x93\x27\xbd\x03\x6d\xfd\x04\xf3\x6d\x76\xe0\x4c\x38\x6d\x79\xc7\x46\xb3\x29\x41\x16\xfa\x58\x1a\x26\x0f\xf5\xbb\xc1\xcc\xfa\x31\x0a\xe0\x5b\x5d\x63\x3f\x22\x31\xa8\xa0\x9a\x8b\x44\x0b\xdc\xc4\x8a\xa6\x68\x36\xf1\x96\x34\xec\xac\x73\x2d\x77\xfa\x5a\xbc\x4b\x93\xcb\x94\x67\x59\xdf\x13\xfd\xe6\xed\x58\x17\x03\x5b\x41\x41\x7d\x81\x3c\xc7\xf5\x09\xaa\x21\x77\xd1\xa2\x35\x25\x40\xe7\xdf\x50\xaa\x25\x6c\x4b\x1f\x9e\x71\x60\x07\x60\x65\x26\x7b\xe3\x93\x40\x81\x5a\x77\xed\xb3\x00\x6c\xaf\x8d\x05\xec\x40\xe3\x9a\xe2\xe5\xe1\xed\x51\x6e\x06\xd6\x12\xd2\xd8\x36\x0b\x46\xcb\xa3\xb4\x1d\xfe\x5e\x21\x31\x8c\xb5\x54\x80\x2a\xbf\xcf\x49\xa5\x4e\x97\x40\xb7\x7a\xd4\xda\x7b\x6d\xd4\xbb\x76\xd6\x2d\xb3\xd7\xe6\x5f\x12\xc7\x6e\x35\x58\x87\x7c\x46\x54\xb8\x80\xcf\xcd\x5c\xfa\xbd\x2c\xd4\x37\x0b\xe6\xd8\x34\xcc\x8e\x66\xf1\xa5\xe0\xd1\xab\x64\x99\xae\x6d\xac\xcd\xea\x64\x98\x33\xde\xd7\x0f\x44\x1e\x8d\x13\x74\x69\x75\x74\x49\x9b\x93\x07\x07\x8a\x20\xea\xda\xf3\xfa\xf8\xf4\x6c\x13\xd2\xed\x95\x7b\x5a\x3a\x9d\x34\x8a\xd4\x2d\xd5\x66\x16\xf8\x0f\xca\x3c\x2c\x95\x31\x4d\x78\x53\x5e\x29\x9b\xfb\xe9\xef\x51\x53\xf6\xfd\xfa\x09\x74\x2f\xb5\xbb\xa2\x38\xfb\x45\x9a\xef\xb3\x67\xe6\xdb\x4a\xd2\x6c\xa4\x46\xca\x6e\xb5\x57\xb6\xcc\xdb\xd2\x33\x41\x7d\x99\x67\x89\x16\x6b\x94\x3c\x6a\xbc\x17\xf1\x15\x4f\xb3\x70\xd6\x38\x8b\xe7\xdc\x81\x52\x3b\x38\x63\x27\x5a\xbc\x32\x6b\x84\xe3\x31\xcf\xb2\x24\xad\x4a\xc8\xbf\xcf\xb8\xb6\x81\x60\xd5\xdf\x11\x4d\x05\x71\x08\x70\xa6\x85\xec\xd5\xd7\x9d\x20\x20\x8b\x85\x81\xe8\x1b\x4e\x2c\x39\x03\x10\xe0\xe3\x4e\x00\x2a\x47\x51\xfe\x46\x97\x57\xc3\x51\x92\xf2\x57\x11\x9b\xd5\xf8\xb1\xb7\x2e\xfe\xae\x3a\xbf\x82\xbc\xb3\x49\xc6\xd4\x21\x75\x35\xe8\x9b\xd1\xfd\x35\xe7\x8d\xb7\x5f\xa9\xd5\x80\x08\xd6\xe4\x6f\x56\x84\xb8\x7d\x73\x3a\x8d\x27\x92\x47\xaa\x9b\x7e\xb8\x3a\x46\x7f\xc3\x13\x41\x26\xdb\x99\x06\x52\xd1\x18\x52\x94\x6a\x9c\x88\xb2\xc5\x02\x75\x97\x86\x8e\x57\x5a\x34\xa0\x74\xff\x95\x93\x0c\xcf\xe4\x76\xa5\x6e\xd7\x81\x95\x4b\xa2\x98\x33\x6d\x89\xa4\x73\x1e\xfa\xe6\x84\x60\xc9\x82\x39\xb6\x50\xab\xca\xaa\x8f\xc3\x75\xb0\xac\xba\xd3\xae\x21\x2b\x95\x96\xdb\x89\x09\x79\x6a\x0c\xc2\xd5\x94\x76\xd6\x59\x6a\x12\xad\x58\xee\x44\xb0\xd3\x3a\xb9\xb5\x68\xed\xcd\x11\x94\xd2\x63\x36\x51\x68\x14\x97\xe0\xaf\xc0\x82\x4f\x86\x62\x04\xe6\xdb\x0a\xd5\x80\xa9\x6f\x6b\x2f\x83\x77\x77\xac\xae\xf8\xc2\x14\x0c\x67\x3c\xcf\x11\xb2\x66\xb9\x9d\x2d\x2a\x5b\xb1\xe1\xf2\x1b\xe9\x61\xf0\x52\xaf\x1d\xc2\xc3\xb3\x4a\x6f\x17\x1e\x54\x92\x61\x3a\x62\x50\x24\xf5\x8b\xd8\x76\x15\xed\xb9\xf0\xfa\x83\x2e\x92\x64\xc6\x43\x51\x42\x73\x71\xa6\x6d\x4e\x09\x26\xa9\x2c\x8c\xc1\x30\xad\xfa\x1d\xa8\x78\x68\xfe\x56\x8f\xde\x99\xf3\xd0\xa2\x68\x30\x5e\x21\xe3\xfd\xb8\x40\xf9\x83\x6e\x81\x7e\x09\xaf\xc7\x92\x62\xd1\x0a\xc9\x83\x47\x34\x35\x9e\x90\x01\xcc\xd8\xf6\x59\x5b\xdb\x7a\x04\x36\xb6\xc6\xc3\x04\xba\x2c\x29\x4e\x2a\x65\x0c\xc0\xf1\x6a\xb2\x41\xb8\xb0\x70\xe4\x64\x50\x17\x93\x69\xc8\x47\x0e\x93\x32\x51\x1d\x2b\x3f\x78\xe8\x04\x0f\x52\xd2\x4f\x0d\xbf\x82\x0a\x12\xa4\x2b\x3a\x51\xf8\x88\xef\xfb\x68\x13\x2d\x7f\x5e\xce\x06\x1e\x29\x36\xa4\x74\x64\xf2\x7e\xb1\xb0\xee\x70\x9c\x69\x4a\x99\xe7\x5b\xa2\x2f\x03\xbc\x01\x1e\x13\x85\x15\xcd\xc1\x60\x30\xc8\x07\x83\xfc\xf8\x38\x8f\xa2\x28\xda\xb9\xac\xb7\xfe\x64\xec\x57\x69\x01\xfd\x0d\x60\x09\x74\xd2\x13\xe5\xd8\x7c\x11\x15\x79\xa0\x8c\x11\xb3\xdf\x8c\xaa\x99\x0c\x05\x73\xf8\x41\x84\x00\xcb\x9b\x08\x67\xf6\x8d\x2d\x04\x04\x9d\x3c\x8f\x89\xf0\xfd\x33\x6d\x94\x12\xd0\xd5\xf8\x59\x87\x62\x54\x4c\x67\x42\xfa\x89\x2b\x12\x24\xc5\xf0\x3d\x88\x76\x62\xd7\x90\x30\x93\x2f\xc0\xfd\x53\xad\x50\x45\x4d\x15\xfc\x69\xb7\x8f\xb4\xc7\x28\x14\x20\x55\x1e\x79\x95\x0a\xd2\x17\x58\x92\xc0\x9b\xad\x07\xd9\x4e\x0c\xaf\xd0\x93\xea\x8b\xaf\xb3\x60\xa7\x8d\xb3\xe8\xd7\xdb\x37\xea\x1c\x19\x0a\x2b\xfa\x22\x46\x4c\x13\x6b\x43\x74\x8e\x5a\x2a\x64\x0e\x52\xad\xb2\xe6\xa8\x8a\x3b\xb5\x1c\x7c\x1f\x93\xf8\xae\xfc\x9d\x2c\x59\xa6\x63\x6e\x37\x4b\xb2\x9e\x44\x5a\x28\x47\x2d\xe7\x49\xcb\xc6\x42\xef\x0c\x02\xb1\x41\x6b\x23\xb1\xee\x60\xb5\x0a\x69\xdf\x0f\x0d\xdd\x6b\xd1\x28\x28\xc5\x97\xca\x74\xe2\x4c\x2f\xdc\x3c\xff\xce\x49\x47\x72\xb0\x12\xd8\x47\x7a\xe9\xa0\x00\x65\x32\x14\x51\xa8\x50\x47\x34\xf2\x41\xde\x55\x75\xa9\xbe\x4e\x01\xc1\xeb\x11\xb8\xc3\xba\x5f\xb7\x20\x6b\xb9\x02\x88\xda\xd4\x41\x9d\xf8\x9d\xff\xc7\x9d\xd9\x54\xe1\x7a\x2d\xf5\x7d\xd3\x2e\xa8\xef\x94\x55\xf6\x21\x41\xf6\xe7\xdf\xc2\xb1\xbb\xd0\xbe\xf1\xaa\x1a\x9d\xd6\xb2\x58\x2b\xe5\x48\x50\xbf\x62\xe7\x15\x5b\x9d\x4c\x83\xba\x04\x70\xf4\x5b\x4e\xb1\xb2\x07\xe6\x92\x54\x57\x70\x62\x3d\xee\xa6\x23\x42\x85\xc3\xf9\x2b\x50\x87\xe9\xc8\xd3\x5a\xad\x26\x95\x3d\xb1\x22\x8f\x49\x9c\x29\xca\xdc\xb3\x63\x8c\x3a\x60\xbe\xa5\x85\xfe\x51\x72\xf0\x5a\x6d\xea\xdd\x30\xb5\xa3\xdf\xbb\x01\x13\x30\xe1\x58\x1d\xb5\x61\x3a\xca\x73\x1c\xb3\xda\x46\xb6\x50\xbe\xb1\x1e\x5a\x07\xca\x6f\x62\x5c\x6d\x89\x6d\x45\xb3\x09\x3e\xfb\x90\xf6\x59\xb3\x69\x04\xf5\x2a\xe6\x6b\xbe\x86\x50\xb5\x68\xcd\x48\xd5\x96\xdd\x12\xb6\xc4\xfc\xee\xcc\x2b\x6f\x49\x6b\xb7\xba\x1b\xef\xa5\xea\x42\xee\xe3\xa5\x5e\xbc\xe8\xdc\x2b\x8f\x48\x9e\x3f\xf3\x96\x36\xa1\xbc\xbc\xc9\x0a\x0f\xbe\xa5\xad\x06\x31\x24\xd8\x08\x13\xaf\x65\x66\xa7\xbc\x3c\x31\x1e\xe8\x66\xf3\xef\xd4\x5a\x3d\xb2\xfe\x6f\x06\xa2\xe2\x11\x79\xfd\xe0\xd9\x30\x24\x45\xda\xda\xb8\x78\xad\x7f\x5e\x1d\x9c\x4a\x75\x6b\x23\x74\xcf\xe6\xc0\x58\xc1\x3b\x4d\xcd\xf8\xfc\xc2\x2d\xb7\xb7\xf2\x16\x56\x3c\x7f\x41\x59\x00\x32\x89\x53\xf0\xb3\x59\x65\xe5\x56\x46\xdb\x96\xac\x94\xf9\x50\x6a\x42\x7d\x99\x6b\xd7\xd8\xca\x33\x47\x81\xa8\x24\x15\xff\xe9\xf6\x46\x70\xce\x1e\xcb\xc1\x21\x6f\x36\xb5\xe8\x82\xdd\x5f\x36\xc5\xdd\xb1\x3f\xb8\x91\x9c\x61\x4c\xd0\x72\xff\x93\x63\x51\x19\x30\x12\xf0\xbe\x18\x72\xcd\xf1\x1e\x05\xa2\xd4\x87\x41\x2c\xea\x58\x54\x0e\x58\xb9\x4d\x83\xb8\x0e\xf8\x5a\x9e\xa2\xb2\xb5\xa4\x52\xe5\xd5\xeb\xfc\x47\xd5\x43\xfe\x1f\x36\xc0\x5e\xf3\xb5\x4d\x80\xc4\x52\x23\xee\x7d\xef\x96\x0a\x94\x6e\xde\x57\x77\xde\xbc\xa5\x72\x6e\x7f\x95\xab\x77\x97\x6c\xd5\x45\x7f\xe5\xfa\xdd\x90\x36\x59\xce\x66\xd5\x24\x7b\x37\x3f\x5a\xbf\x9a\xad\x33\xfc\xd4\xbf\xa1\xd7\x60\xf8\x77\x74\x5d\x62\xed\x8d\xea\x3c\xe4\xd7\x5c\xa7\x9f\x3f\x77\xfa\x1b\xee\xea\xbf\x05\x7b\xe3\x7d\x5d\x5f\x41\x75\x48\x7f\x04\x7e\x10\x8b\x7b\x00\xaf\xfa\x92\xaf\xc7\x07\xca\xc3\xe1\x61\x04\x35\x7d\xa9\x49\x75\x4d\xd9\x50\xd9\x7d\x31\x06\x45\x9c\x96\xae\xfd\xba\xf9\xdc\x88\x33\x54\x0b\xd7\xce\xd8\x1d\xa5\x4b\x85\x6b\x66\xe3\x07\x08\x47\xb5\xd3\x1b\x50\x0e\x9b\xed\x07\x77\xed\xfa\x2e\xf6\x6e\xdb\x12\x0c\x75\x19\x7e\xac\xbd\x6f\xdd\xe4\xad\xdd\x6e\x25\x00\xfe\x4d\xbb\x06\x19\xd7\x14\x60\x2f\x78\x75\xa6\x6b\x2f\xd8\xfb\xd6\xbf\x7e\xd8\xfe\x5f\x0e\x4e\xfd\xfd\xbf\xde\x9c\xba\x61\xaa\x45\x49\x6a\x7a\xf2\x7e\x7d\xc0\x36\xa2\x25\x7f\xbf\x61\xd5\x9b\xf2\xff\x70\xf4\x06\xb1\xd8\xdc\x44\xdb\x94\xba\x91\xb3\x69\x35\xe3\xe6\x7a\xf0\xc7\xda\xa8\x95\xab\x5b\x1f\xb3\xfb\x35\x47\xb3\xb0\xb2\x77\x83\x9a\x31\x42\x0b\xd0\x93\xe0\x60\x9f\xb2\xec\x88\x7a\x3c\x0d\xd3\x23\x89\xbb\x06\x6d\xb6\x5e\x21\xaa\x57\xb2\x25\xf4\x9f\xf6\x7a\x7d\xd1\x47\x8b\x39\x0a\xd0\xbb\x01\x0a\x44\x1f\x85\xea\xfb\x68\x80\x56\x34\x91\x20\xf9\x46\x6f\x7f\xe0\x79\x1c\xcb\x69\x9e\xc9\x5c\x44\x79\x1a\x91\x1d\xe7\xb4\x7c\x9d\xab\xc8\x1f\xf4\xba\xce\x02\x5e\x0b\x4c\xfe\x9e\x63\x15\xd9\xdd\xe9\x75\x49\x1f\xc9\x29\x0a\xc0\x0e\x70\x1f\x65\x12\x05\xda\x33\x20\x12\x11\x0a\xf6\xf4\x67\x1a\xa1\x40\xe5\x22\xab\x15\xa1\xa9\x56\x6c\x70\x0f\x2b\x10\xac\x7f\xd5\xd1\xc9\xda\x19\x72\xf1\x42\x94\x48\x0b\x04\x64\xe4\xca\x80\x54\xd4\x0f\x81\xe9\x4c\x0e\xa0\x55\xf7\x9b\x0b\x66\x1f\xd9\x0b\xe6\xfc\x60\x8d\xd5\xf7\x45\x02\x4f\xd6\x73\x55\xe1\x8b\x15\xb4\x58\xba\x9d\x54\xcc\x97\x19\xdb\x8d\x26\x09\xcc\x38\x3a\x23\x8e\x36\xbf\xb6\x27\xc7\xeb\xac\xd0\x5e\x8a\x8a\x7d\x59\x4f\x18\xd1\x5a\x96\x05\x81\x33\xff\x51\xe0\xc6\x2f\xb4\xff\x73\xb7\xbb\xcd\x77\x7a\xfb\x07\xdd\xc7\x8f\x8a\x3c\x57\x7e\x1e\x9d\xb8\xcd\x77\x54\x66\xcf\xcb\x8d\x9f\x67\x03\x6d\x10\x66\x60\xc6\x5f\x0d\xcf\xb9\x60\x47\x02\x6b\x63\x05\xd7\xfa\x5b\x7d\x7e\x37\xd1\x88\xd0\x13\xfd\x39\x45\x84\x9e\xe9\xcf\x08\x11\xfa\x4d\x7f\x5e\x23\x42\xdf\xea\xcf\x01\x22\xf4\x8d\xfe\xfc\x0d\x11\xfa\x5c\x7f\xde\xf8\x86\xcf\x4e\xef\xd1\xb6\x8a\x64\x29\x18\x01\x1e\xf2\x51\xf0\x36\x7c\xab\x5b\xfc\x4c\xb0\x53\x51\xd2\x66\x52\x0d\xfe\xaa\x63\x8b\x88\xbf\x6c\x36\x6d\x3d\x84\xd0\x0f\x3a\x42\x3b\xd0\x27\xf4\x58\x07\xc1\x6f\x3e\xa1\xbf\x98\xdc\xc6\xe2\x19\x7d\xa7\xc3\xda\x45\x3e\xa1\x7f\x0a\x4f\xa6\x86\x7e\x11\xec\x36\xcb\x82\xfd\x7d\x9a\x05\xfb\x0f\xe9\x5c\xfd\x99\x06\xbb\xbb\x34\x0a\x76\x0f\xe8\x20\xe8\xf5\x3c\x2f\x59\xbf\x97\xec\x40\xd9\xc7\x97\x12\x93\x1a\xcb\x3c\xef\xd1\xad\x2d\x41\x39\x4d\x09\x74\xf2\x75\xdd\xd2\x7e\xe5\x0d\x1f\xe6\x4f\xbb\xa4\x8d\xf9\x93\x2e\xc9\xf3\x96\x67\xe4\xeb\xc5\x9d\x32\xce\x35\xfa\xb0\x25\x55\x4c\xfd\x58\xa7\xda\xcb\x5e\x0b\x4b\x56\x7b\x23\x0d\xe2\xb3\x34\x2d\x12\xb5\x85\xbf\xc4\xcb\x6d\x8d\xfc\xb1\x23\x2c\xc0\xa6\xb1\x64\x47\xc6\xba\xb1\x78\xc0\x0e\xba\x94\xab\xbf\x87\xda\x22\xd6\x11\x4e\x76\x7a\xbb\x84\x86\x2c\x79\xc0\x7a\xbb\x34\x63\x29\x1d\x33\x49\x67\x8c\xd3\x25\x13\x7d\xd1\x91\xc9\x8b\xf8\x1b\x8f\xf0\x9e\xef\x09\xac\xd3\xef\xb6\xb4\x27\xb0\x00\x21\xba\x60\x66\x55\x9f\x5a\x91\x7e\xc0\xc6\x16\x56\xae\xfb\x5d\xf7\x58\x4b\x6e\x4f\xd8\xe2\x49\xb7\x8f\xda\x48\x95\x8a\xd8\xab\x4a\x9b\xb7\x98\x8a\x5a\x10\x9b\x63\x5a\xe4\x80\x6e\x56\xd3\x2f\x3c\x08\xfe\x18\x55\xf2\xd9\x83\x67\xd2\x42\xef\x50\x0b\xc7\xfd\xa8\x15\xb7\xd0\x47\xb0\xbe\xdf\xc2\x61\x3f\x6a\x85\x2d\x34\x30\xc1\xac\x3f\x6d\x65\x2d\x74\x6c\x82\xe3\x3c\x9f\xe5\xf9\xb2\x8f\xce\x6c\x44\xff\xa2\x35\x6e\xa1\x57\x26\x38\xeb\x5f\xb4\x66\x45\xe9\x65\xff\xa2\xb5\x6c\xa1\x53\x08\xc2\x42\x7a\x5f\x36\x69\x68\xdb\xf2\xfe\x2e\xa5\x36\xdd\x25\x93\xbe\xa2\xef\x85\x5a\x86\x1b\x04\x38\x61\x7f\x96\x9f\x52\x4b\x42\x5b\xf3\xda\x11\xf2\x6d\x81\xcf\xcb\x4b\xc9\x9f\x11\xaf\xb4\x31\x7e\x5a\xd6\xdd\x50\xe9\xe5\x98\x42\x2d\xc5\x24\x7a\xf1\x56\x02\xcd\x14\x82\x80\x55\x6d\x31\xb1\xf0\xe9\x34\x60\x6c\x56\x57\xb7\x96\x50\x80\x48\xf8\xb4\x72\x40\xef\xb5\xe5\x92\x5a\x26\xff\x40\x14\x34\x76\x8f\x40\x5e\xa7\x9d\xf3\xc3\x02\x6d\x53\x22\xbc\xaf\x7c\xaa\x13\xb5\x54\x07\x0e\x5b\x1f\x79\xb5\x31\xcc\x4b\x70\x59\xe9\xcd\x6a\x9e\x69\x85\x37\x2d\x03\xa8\xbe\x89\xd1\x63\x73\xda\x4a\xea\x5e\x4c\xb5\x6c\xa0\x7b\xa6\x34\x37\xe3\x8d\xc0\x92\x50\xab\xf1\x66\x14\xd1\xac\x50\x44\x45\xc1\xcd\x46\xef\xec\x1d\x7a\xfa\x71\x2e\xb6\xb7\xab\x5f\xee\xeb\x6a\xf7\xa4\x1b\xaf\x2a\xeb\xa3\xa8\x5d\x2b\xb5\xd9\x75\xb9\xf3\xa8\x95\x5a\xd3\x1d\x85\x56\x99\x4d\xb5\xfd\xf1\x75\xc5\x4c\xda\xee\xfe\xb6\x4a\x06\xdb\x21\x25\x8d\x2f\x77\x09\xef\x77\x21\xc7\x01\xdf\x2f\xab\x77\x99\x0c\x3f\x1f\xec\x77\x75\x8e\x1e\xdf\xb3\x20\x0a\xfd\xc2\x60\x5d\x5d\x01\x9a\xb2\x2d\x49\x2b\x75\xf6\x45\xe4\x34\x4d\xae\x41\x11\xe9\x79\x9a\x26\x29\x46\xef\xc5\x57\x91\x5c\x8b\xc6\x52\xc4\xb2\x81\x5a\xea\x32\xd7\xcb\xc4\xb7\xd6\xc3\xce\x85\x8e\x34\xc7\x22\xbb\x16\x36\x93\xde\x08\xdf\x4d\xf8\x15\x6c\x80\x13\x13\x3a\x56\x9b\xf2\xcc\x04\xb4\x58\xf8\x37\x5b\x50\xef\x8a\xb7\x26\xf8\x9b\x95\xae\x7f\x63\x22\x3e\xc2\xfe\x78\x0e\xa1\x1f\x68\x57\x54\xaf\xf9\x12\x4a\x66\x86\xa0\x98\x72\x7f\x92\x1f\xf4\x76\xb7\x77\x1f\x3e\xde\xe5\x07\xad\xbd\xde\xc3\xbd\x03\x7e\xb0\x7d\x5e\x5a\x05\xea\x42\x01\x74\x41\x35\xc3\xa0\x67\x6b\xa7\x57\xe1\x29\xb2\x66\x97\xd0\xd0\x5b\x6f\x34\x2b\xad\x72\x75\x3d\xad\x1d\x7c\xf1\x53\xd6\x6d\x36\x43\xf8\x9b\x3d\x65\xdd\x3c\x8f\x9f\x40\x0c\xfc\xcd\x9e\xa8\x18\x1c\xb7\x98\xee\xd8\xa5\x50\x0b\x37\x23\xad\x50\x5d\x7c\x5d\x9a\xb1\x2e\xa1\xe3\xf2\xc9\x16\x3f\x50\x17\xad\xba\x44\x63\xd0\x58\xa1\x63\x77\xae\x81\x6b\x80\xe2\x52\x1d\xbb\x83\x4d\xaa\x04\xc1\x8e\xb0\x34\x09\xfa\x64\x13\x0f\x76\xf7\x69\xd8\x82\xfb\x78\x77\x5f\x5d\xd6\x47\xf8\x46\xe0\x90\x10\x9a\xb5\x58\x42\xc3\x36\xd3\x2d\x4a\x40\x31\xf7\x08\xc3\x08\xd2\x0c\x2e\xe4\xb1\x96\x8e\x0f\x55\x35\x7a\xf6\x33\x3a\x36\x07\x61\x5a\x1c\x7f\x9b\x8c\x1b\x7d\x71\xd2\x9c\xef\x37\x5a\x6d\xd0\x87\x10\xad\x59\x16\x43\xde\x42\x19\x1a\xe1\x62\x3a\x4b\x63\xf4\x0c\x16\x9a\x0d\x7d\x15\x3a\x83\x1e\x8b\xbf\x20\xa4\x07\xe0\x03\x7c\x43\x3f\x8e\xe1\xb3\xa2\x5a\xe1\x5a\x72\xe4\x44\xb0\x33\x4c\x76\x1e\xe9\x56\x9b\x6e\xff\x02\x25\x75\xc7\xdf\x69\xe0\xc6\xc4\xc5\x3d\x8f\xe6\xfb\x60\x5e\x35\xda\x1d\xb4\x6a\xe9\xc0\x4a\xa9\x7c\x01\xe1\xcb\xf0\x22\x03\x43\x58\x7f\x0a\x9c\x2a\xbc\x5e\x61\xef\x84\xc6\x45\x18\xc4\x55\xc3\x22\x3c\x55\xe1\xac\x08\x47\x2a\x3c\x2e\xc2\x03\x15\x9e\x15\xe1\x1b\x15\x5e\xb2\xe4\x09\xfb\x22\x3a\x59\xd6\x6c\x82\xb9\xbc\x64\x94\xe7\xc9\x13\x15\x03\x11\x26\x26\x7e\xc2\x7a\x2a\x3c\x47\x10\xf8\x22\x3a\x73\x08\xce\x11\x8d\x47\x79\x1e\x9a\xe4\x29\x82\xc0\x17\xd1\x99\x42\x70\x8a\x68\x38\xca\xf3\xcc\x24\x47\x08\x02\x5f\x44\x27\x82\x60\x84\x68\x36\xca\xf3\xb1\x49\x1e\x20\x08\x7c\x11\x9d\x01\x04\x07\x88\x8e\x47\x79\x3e\x33\xc9\x37\x2a\x79\x88\x6e\x6e\x10\x9d\x39\xd9\x8a\xe5\x70\x77\xc4\x24\x5d\x0e\xf7\x46\xac\xc5\x9f\x76\xe9\x72\xb8\x3f\x62\x82\xfe\x2e\x7c\xd7\x3b\x4b\xb2\x32\xf2\xcb\xdc\x13\xe0\xe2\x5a\x9c\xc9\x93\xf6\xc0\x70\x1e\x51\x41\x08\x95\xbe\x39\x19\xa1\x17\x8c\xaf\x13\xfa\x42\xe8\x98\x4a\x10\x54\xeb\x74\xa0\x30\x15\xf0\xbe\x6a\x2a\x40\xc3\xca\x6c\xe1\x13\x8c\xbc\xe0\xba\xf9\x62\xcf\xb0\x78\x49\x1f\xcf\x52\xce\x0d\x2c\x12\x19\x8f\x39\x58\x2f\x1e\x87\x8b\x58\x86\xb3\x8c\x20\xfa\x42\x10\xa8\xdb\x98\x2f\x78\x85\xd1\x9f\xc6\x8e\xdb\x52\xc4\xdf\xb4\x69\xb7\x6f\x26\xc6\x9c\xea\xc6\xfb\xc8\xb7\xc2\x2c\xea\x9f\xc6\xed\x79\xff\x73\xd4\x02\xdf\x0f\xb7\x3d\xba\xb7\x22\xfd\x1d\x6d\x11\xf3\x4f\x54\x6f\x5a\xb2\xf0\x50\xd5\xe3\x7b\xdb\xbe\x15\x7a\x70\xad\x6b\x2c\x6c\xaa\x8a\x7e\x50\xfc\x5c\xe1\x31\xda\x95\x95\x71\xdf\xc5\xd0\x6e\x67\x77\xbf\xd3\x45\x54\xb2\xef\x92\xa6\x9d\x89\x60\x4b\x41\x53\x30\xba\xb0\x86\xcc\x0e\x47\x5a\xe2\x49\x33\xb8\x9c\x13\x26\x5a\xf8\x5b\xfe\x26\x31\xb2\xa6\x21\xb4\x2c\x52\x0a\x96\x1c\xfe\x63\x50\x60\xb1\xc2\x42\x12\xbe\xf1\x1b\x77\x20\x81\x52\xae\x48\xae\xfb\xf6\x03\x93\xa0\x65\xfb\xac\x8a\x81\x80\xbc\xfa\x2d\x69\x41\x16\x67\xeb\x77\xed\xec\xc1\xb4\xf6\x0e\x11\x1b\x23\x93\xe8\x28\x60\x95\x3f\xce\x40\xa8\x6b\x4c\x53\xbb\x4a\x13\x35\x8e\xd6\x24\xfa\x05\x4d\x3b\x91\x31\x7b\xcd\xbe\x40\x4a\xa6\xbd\xd7\xb1\x2b\x9a\xd6\x3f\x39\x7a\x4c\x31\x27\x75\x88\x6c\x4e\x5d\x6b\xad\x44\xbd\xeb\x4e\xbd\xab\xac\xa2\x10\x06\x18\xde\x3e\x0a\x75\xc3\x8e\x6d\x43\x9f\x4b\x37\x12\x77\x88\xe6\x94\x87\x03\x32\xea\xd6\xd5\x3f\x42\xfe\xa0\x63\x83\x58\xe8\xd2\x11\x9f\xc4\x82\xbf\xd1\x83\x19\x4b\xa7\x3c\x61\x62\xd6\xec\x79\x58\xf9\xcf\xc2\x0f\x09\xfb\xc4\x8d\xcc\x3f\x4e\x59\x6a\x6d\xa9\x27\x2c\xb5\x42\x5d\x8a\xde\x7e\x8e\x13\x2a\x09\xc5\x02\xf6\xc7\x29\x96\x04\x46\x88\x0b\x69\x2a\xe2\x20\x65\xc8\xb5\x6c\x20\x4d\x0a\x07\xb0\x46\x76\x59\x25\xa8\x63\xaf\x08\x95\xca\xf7\x75\xc9\xf5\x84\xa0\x54\xde\x3a\xd7\x04\x59\x41\x77\x9c\xaa\x50\x31\x47\x75\xd7\xf0\x19\xe6\xb2\x34\xd8\xeb\x13\x75\xe7\x70\x7b\xd3\x25\xd4\xc9\x3c\x8b\xbf\xf3\xf7\x22\x96\x19\xfb\x8b\xa6\x25\xce\xcb\xef\x8a\x8a\xa8\xea\xee\x1b\xb8\x9e\x1d\xf6\x3f\x45\x80\x6c\x0e\x5f\x30\xb6\xd9\xc4\x7f\x0a\xc6\x41\xb3\xa2\x02\xf9\x6c\x9a\xf2\x6c\x9a\xcc\x36\x50\x85\x1a\xf8\x16\x63\x5f\x84\x1e\x6a\x57\x9b\xec\x43\x54\x80\xe1\x87\x49\x8a\x32\x20\xc4\x9a\x4d\x0c\x17\x30\x93\xed\x1e\x51\x35\x42\x95\x65\x0b\x97\xf5\xc6\x32\xc1\xa2\x24\x96\x54\xf3\xba\x40\xdb\xc4\xd2\x59\x4f\xda\x07\xfd\xc2\x18\x66\x20\x9e\xb4\x7b\x7d\x34\x0b\x33\xa9\xcd\x78\x88\x27\x5d\x1d\x3c\x56\xe4\x92\x78\xd2\xd3\x99\x4d\x68\xb7\x8f\x8c\x7f\x48\x15\x7a\xa4\x43\xba\x60\x01\x13\x76\xb4\xe5\x3e\xe8\xf3\xf7\xd5\xd9\xe0\xcd\xc3\xf3\x17\x83\x33\x76\x7b\x7c\x74\xf6\xfc\xec\xf5\xe0\xf9\xf9\x9b\x93\x67\x47\x6f\x82\x35\x13\xfe\x88\x96\x73\x9c\x9f\x3e\x7f\x76\xf2\xf6\xf8\x74\x3d\x67\xa0\x70\x90\x4a\xe6\x41\x7d\x3e\x50\x73\x87\xbc\x7e\x32\xa2\xaa\x64\x80\x4c\xbd\x00\xc6\xd5\x56\x54\x01\xf1\x03\x2f\x4a\x43\xfb\xf0\xfc\xf9\x3f\x03\x30\xd4\xdd\x1e\x7e\x18\x7d\xf8\x80\xe8\xe0\xe4\xed\xd9\x2b\x57\x81\x1a\x87\x15\x26\x2b\xe2\x5b\x17\xc5\x07\x7b\x04\xae\x2d\x5a\x5d\xda\x48\x5d\xe2\x5a\xd5\x1b\x19\xc7\x59\x02\xef\x81\x07\x0f\xfc\x50\xa1\x77\x02\xf7\x1e\x2a\xb4\x4e\xe0\xae\xc2\xe6\x44\x47\xe1\xf3\x74\xac\xe2\x15\xf6\xa6\xc2\x63\x85\xb6\x09\xbc\x4f\xe8\x02\xc2\x4b\x42\x27\x4c\x60\x45\x01\x44\xea\x97\xd0\xa9\x71\x7b\x8a\xe3\x4e\x48\xf0\xed\x8a\x4e\x3a\x67\x69\x28\xb2\x58\x35\x45\xcd\xda\xe2\xec\x66\xc1\x33\x7a\x3b\x9e\xc6\xb3\x28\xe5\x22\x98\x75\xc2\x0e\xb8\x9f\x52\x09\x78\xa8\x82\x61\x9a\x86\x37\x27\x13\xac\xbe\x45\x12\x29\x74\xc0\x7c\x8d\x08\x95\xe1\x65\x10\x75\xbe\xd2\x8b\x30\xe3\xcf\x66\x61\x96\x01\x04\xad\x16\x51\x44\x1e\x8d\xd5\xae\xf1\x93\xc6\x2a\xfa\x6d\x38\x2f\x47\x66\xd9\x20\x89\x96\x33\x1d\xa9\x2d\x1d\xd1\x58\x08\x9e\xfe\xce\x27\x75\x4d\x33\x59\x3c\x10\xea\x53\x8d\xf5\x88\xac\x08\xbd\xb8\xb3\xfb\x86\xf6\x7e\x97\x26\x8b\x8c\xde\xaa\x8e\xa0\x28\xbe\x42\x5e\x57\xd0\x24\x8c\x38\x5a\xeb\x06\xca\xa6\xc9\x35\xa2\x32\x9e\xf3\x64\x29\x83\xa8\xc3\x3b\x2f\xc2\x88\xd3\x70\xb1\xe0\x61\x1a\x6c\x75\x29\x17\x92\xeb\x8f\x6f\xb1\x54\xbf\xb1\x00\xc7\xd7\x05\xa7\x77\xee\xbb\x58\x96\xe1\x25\x78\xdb\x76\x15\xd1\xd8\x0f\xe9\x6a\x69\x08\x9e\x41\xcc\xb0\xd1\xb1\x0a\xd9\xf1\xa2\x33\x15\x32\x73\x48\x97\x8c\x77\xec\xa8\x15\x4b\x20\x51\x63\xc0\xe9\x10\xc9\xf0\x12\x51\xe4\xa0\xfb\xdf\xba\x26\x44\x91\xab\x47\x7d\xdb\x5a\xd4\xb7\xa9\x03\x51\x64\x6b\x40\x23\x6f\xa0\xa3\xce\x17\x82\xa7\x34\xea\x8c\x09\x9d\x17\x91\xb1\x8d\xb4\xe7\x52\xd6\x09\x8d\xdf\xd8\xe7\x33\x0e\xba\x3a\xfe\xd4\xd0\x8b\xb2\xc8\xba\x7e\xe5\x41\x30\xaa\x5c\x9b\x6c\xa2\x93\x02\xfa\x94\xe0\x05\x26\x38\xa4\x82\x26\xcd\x66\x4c\xe8\x5d\xf5\x48\x6a\xca\xa5\xb0\x26\x8a\x75\x38\x59\xd1\x39\xbd\x4d\xf9\x24\x58\xae\x08\x9d\x81\x63\xbe\x79\xb1\x47\xd8\x94\xce\x4b\x4b\x86\x5d\x50\xd9\x09\xd9\x7c\x45\xef\xde\xdc\x5b\x6e\xce\xb9\xe6\xdb\xa3\xa5\xd0\x58\x42\xe4\xe9\x0d\x9d\x9f\xff\xfe\xfc\xe8\xd9\xd9\xf9\xf1\xf3\x3f\xce\x4e\x4e\xde\x9c\x9e\xbf\x7c\x73\xf2\xcb\xd1\x9b\xf3\x57\x27\x27\xff\x3c\x3f\x6f\x36\xeb\x6e\xa7\xbb\xcb\x74\xc6\x53\x3e\xfe\x7a\xfc\xec\x39\xb9\xed\x1e\xca\xf4\xe6\xf6\x9e\xd9\x15\xa6\x30\x06\x13\xf6\x92\xdc\x8e\x13\x91\x25\x33\xde\xe1\xc0\x95\x92\x64\xb5\x5a\x81\xaa\x3e\xff\xb6\x48\x52\x99\x31\x81\x0f\x1e\xde\xef\x74\xcb\xb0\xc0\x8f\x1e\x11\x75\xc2\xa9\xcf\x9f\x77\x81\x88\x55\x9f\xfb\xfb\x40\xbf\xc2\xe7\xae\xef\xef\x24\x2b\x3b\xab\xe6\x9d\xf3\x73\x6e\x96\x62\x9f\x07\xb7\x96\x77\xc6\x57\xab\xa2\x41\xb7\xc5\x2a\x0a\x42\x3b\x5f\xb4\x88\x7c\x99\x26\xcb\x45\x10\xbb\x94\xdf\xf5\x8b\x83\x57\x2a\x71\x69\xcf\x4e\x4f\xbd\x78\x67\x8f\x74\xf5\x83\xfe\x8a\x4e\xa4\xee\xe2\x10\xd5\x99\x17\x4f\x9c\x47\x00\x75\xde\xef\x7b\xbd\x4d\x0c\x73\xc1\x5b\x1e\xc5\x54\x9f\xde\xcc\x2f\x92\x99\x76\x12\xca\x18\x1f\xea\x70\x27\x96\x3c\x0d\x65\x92\x6a\x7f\x9f\xa0\x14\xd5\x89\x33\xad\x1c\xa5\xbd\x70\x33\x7f\xb5\x73\x42\xec\xa1\xd3\xa5\xa2\xec\x03\xd0\x58\x33\xc9\x02\x41\x45\x50\xc3\xd2\x7b\xea\x7c\x5a\xf7\x6f\xa3\x44\x70\x75\x9e\x05\xe6\xab\x47\x81\x6a\x0c\xf8\x50\xb6\x5a\xa3\xd5\x8a\xf2\xd2\x9b\xb5\x66\x6e\xf2\x15\x9d\x04\x62\xb5\x2a\x58\x9d\x6a\x5f\x19\x76\xe7\x6b\x4d\x71\x34\x42\x29\xf9\x7c\x21\x1b\x32\x69\xe8\xbe\xf1\x86\x48\x44\x1b\xbe\x2f\x66\x85\xbf\xcf\xce\x67\xf1\x5a\x34\x92\x34\xd2\x6e\x95\x2f\x78\xc3\x66\xa1\x50\x00\xee\xac\x86\xbe\x1e\xb2\xc6\x7c\x99\xc9\xc6\x34\xbc\xe2\x8d\xb0\xb1\x36\x74\x98\x34\xe6\x5c\x4e\x93\xa8\x63\x1e\x54\x12\x1a\xd3\x10\x1c\x73\x17\x3a\x64\xb7\x99\x3f\x26\x49\xcd\x0c\x28\xb2\xa4\x34\x70\x9a\x54\x4c\x3a\x0a\x67\x2a\xec\x41\xa8\x43\x5c\x0d\x1a\xe5\xd5\x51\x02\x5d\xeb\x98\xc1\x30\x79\x60\xd4\xce\x0d\xed\xc4\x27\x1d\x0d\x26\xcf\xed\x17\x26\xab\x49\x2c\xc2\xd9\xec\x06\x54\xcd\x88\x1e\xdd\x78\xa5\xfe\xdd\xbd\x4c\xdd\xc2\x4b\xcb\xef\x3d\xce\xdf\x76\x92\x82\x35\x0b\x9e\xc6\x57\x3c\x3a\x95\xc6\xc7\x37\x9c\x7d\x9a\x8b\xb6\x80\x9b\x13\x3e\x33\x95\x6c\x75\x95\x15\x2a\xeb\xd0\x5f\xa7\x67\xcd\x25\xc0\x28\x3d\x89\x27\x7a\x79\xf8\xc9\xae\xcd\x65\x2d\x9b\x7b\xb5\xca\x67\xea\x98\xa6\x08\xaf\x29\xa2\x2f\xb4\xe5\xa2\xce\x45\x2c\x9c\xa9\x45\xd7\x98\xd8\x18\xd6\x4f\x6f\xfc\x8a\x75\x27\xcd\x4b\x0b\x74\xf3\xb0\x88\xb7\xfa\x35\x10\xcf\xac\x14\xe8\x79\xca\xc3\xb1\x7c\xad\x6e\x2b\x11\xce\x4e\x45\xb8\xc8\xa6\x89\x7c\x31\x0b\x2f\xd5\x14\xdf\x95\x47\xd7\x72\xc9\xa5\x8d\xd0\xcc\x88\xf7\x40\x42\x82\xcb\x3a\x37\xdb\x5e\x23\x84\xdf\x88\xd4\x73\xe3\x16\xfa\x48\x46\xf1\x42\x08\x1c\xcc\x3c\xdf\x92\x9d\x38\xfb\x5d\x35\xe3\x59\x32\x5f\x24\x82\x0b\x49\xd6\xde\x21\x9e\x85\xa2\x91\x88\xd9\x4d\x63\x91\xcc\x6e\x26\xf1\x6c\xd6\x80\x1b\xb3\x31\xb6\x45\x32\x04\x6f\xb1\xc5\xfd\xe4\xe9\xc2\x6e\x9c\x29\xff\x3e\x2b\xf2\xcb\x4d\x3d\xb7\x0c\x56\x6e\x4c\x67\x69\xde\x80\xfe\xd1\x06\x07\xca\x4d\xf0\x54\xeb\x3b\xae\xa1\x1f\xe2\xd9\x6c\x90\x2c\x85\xec\x0b\x86\xd6\x63\x51\x2d\x01\x28\x3b\xef\xdf\x9e\x1e\xbd\x78\x7e\xbe\x5e\x00\x98\x86\x68\x63\x32\x22\xf4\x1e\x0d\xfa\x9d\x8f\x79\x7c\xc5\x61\x50\xfa\x61\xa5\x5d\x7e\xe2\xdf\x69\x9e\x5f\xae\xd9\xc4\x61\x7d\x2b\x4b\xd0\xef\xd5\x58\x3d\x19\xfd\xac\xd2\x4c\x1d\xfd\x77\x1a\xa8\x4b\x34\x9b\x38\xab\x6f\x9a\x81\x48\xa8\xdd\xc4\xd6\x3b\x36\x0b\xdd\x57\xa6\x57\xf6\x18\xa8\xdf\x6c\x31\x0b\x6f\x14\x16\x97\xe7\xbc\x23\x14\x7a\x3c\x63\xb5\xf4\xfc\xc6\x15\xd9\x47\x1b\x4f\x15\x82\x02\xb4\x69\x4b\x12\x74\xa8\xb7\x8c\x7b\xb6\xcb\xc2\x09\x6f\xcc\xf8\x65\x38\xbe\x69\xcc\xe2\x09\x1f\xdf\x8c\x67\x3c\x6b\x5c\xab\xad\x23\x12\xa9\xae\x2a\x45\x20\xf2\x08\x74\xb1\x8b\x6d\xd4\x58\x66\xb1\xb8\x84\xad\xe7\x22\x1b\x47\xef\x5e\x67\x9d\xcf\xe2\xb3\x40\xad\x71\x0b\x35\x96\x19\xcf\x1a\xa8\x35\x6b\xa1\xc6\xc5\x52\x36\xc2\x59\x96\x34\xc6\x89\x90\x61\x2c\x32\xe0\xf9\x4e\x92\xd9\x2c\xb9\x56\x70\xd6\x5a\x10\xa0\x16\xb6\xc3\xd9\x47\x9f\x45\xa3\x81\x5a\x42\xcb\x14\xd8\xb1\xb5\xd1\x61\x29\x3a\xb3\xd1\x19\x44\x23\xd5\x9c\xb3\x29\x6f\x84\x17\xc9\x15\xf7\xbb\x98\x4d\x93\xe5\x2c\x52\x1d\x4c\xf9\x3c\xb9\xe2\x51\xa7\xf1\x86\x87\xa9\xd0\x0a\xe7\xe1\x45\xb2\x94\xf0\x44\xd2\x30\xaa\xe9\x8d\x29\x4f\x79\xf0\x59\x4c\xa5\x5c\x64\xc1\xce\xce\xe4\xa2\x33\xe7\x3b\x70\x2e\xb6\xc3\xec\x46\x8c\xdb\x6e\x20\xda\xae\x9a\xf6\x34\x49\xbe\x66\x88\xac\x36\x6c\xf8\xbb\xce\x1c\x5c\x77\x1a\xb0\x94\xde\xb1\x27\x59\xb2\x69\x67\x6c\x3a\xaa\x6e\x37\x1c\x86\x5e\x25\xc7\x71\x64\x32\xd7\x1d\xb7\x6a\x91\xb8\xc3\x76\xe3\xba\xab\xae\x1e\x39\x0d\x65\x23\x4a\x60\x89\x69\xf4\xb1\xb1\x5e\x1f\x26\x8d\x44\xc0\x42\x71\x97\x01\x22\x87\xb5\xbb\x9c\xc5\xda\xb1\x0b\xab\x6b\xf7\x61\x5d\xe4\x9d\xaa\xd6\x9b\xaf\xc4\xfe\x5d\x19\x02\x71\xb8\xac\x68\x31\xa4\x64\x65\x6d\x9c\xf0\x95\xe8\x28\xa2\x84\x1a\x8c\xdb\x8e\x5a\x2d\xe2\x1d\xea\xa7\x83\xf3\xf3\x6c\xb9\x58\xa4\x3c\xcb\x8e\xcd\xc3\x4a\x9c\x88\x0f\x7a\x41\xaa\xdb\x39\xf9\x61\x8e\xf8\x47\x39\xee\x8f\x77\xf9\x4c\x60\xc6\xec\x35\x67\x1c\x72\x6b\x66\x70\x2d\xc3\x78\x43\xde\xdb\x15\x8d\x0d\xbe\xdf\xf9\xca\x6f\x14\xf9\xe4\xd9\x0c\x88\x7d\x53\xcc\x82\xc5\xc3\x74\x44\x65\x27\x16\x11\xff\x76\x32\xc1\x82\xc0\xa3\x36\x4e\x86\x62\xa4\x15\x8c\x0b\x33\x02\x1a\xaf\x8a\x27\xd8\xc0\xbe\xe4\xf2\xe4\x5a\xa8\xfd\xc1\x53\x79\xa3\x11\xe1\xcc\x7a\x40\xbc\x2b\xcf\x7f\xd0\x20\x03\xae\x30\x5b\xba\x30\x20\x5f\x67\xcf\xc5\x72\xae\x71\x7e\xbd\x44\x38\x15\xc0\x29\x77\x3d\x58\xb9\x1e\xdc\x49\x92\xa5\xab\x1f\x32\xe8\x0a\xfa\xb2\xaa\x6d\x4e\x81\x5a\xa0\x99\x7e\x17\x36\xe8\xd6\xb8\x64\x78\x5a\x92\x31\xf3\xb6\xf8\x20\x16\xf1\x24\xe6\x51\x83\x7f\x1b\xf3\x85\x46\x83\xc7\xe3\x65\x9a\xf2\xe8\x50\x3f\xed\x4d\x35\xd1\x33\xb7\x19\x23\x7e\xd5\xe0\xe2\x2a\x4e\x13\x31\x57\xb7\x82\xda\xfa\x70\xda\x2f\x67\xb3\x06\x50\xe6\x8d\x39\xcf\xb2\xf0\x92\x37\x42\x11\x35\xc2\x28\x02\x8a\x35\x9c\x35\xa6\x7c\xb6\x98\x2c\x67\xf6\xc4\xcd\x3a\x48\xdb\x21\x82\x56\xce\xd8\xd0\xeb\xc0\x88\x2e\x59\xf7\x10\xfb\x4d\x95\x25\x2d\xf5\xcb\xba\xb1\x9b\x0d\x97\x8a\xe2\x23\x84\x10\xb8\x77\x19\x50\x72\x69\x1c\x0a\xd9\xf8\x23\x4e\x66\xda\xc0\x88\xa1\xf9\xc6\x9d\x49\x1a\xce\x79\x76\x96\xbc\x4b\x16\xac\x47\xc7\x3f\xa4\x51\xfc\x27\xc1\x94\xdc\x96\xe9\x06\x43\x00\x25\xb5\x37\xbd\x5e\x71\xcd\x26\xca\xe0\x63\x2d\xc5\x11\x6e\xfd\x3a\xc9\x79\x73\x97\xac\x82\x3a\x61\x86\x7a\x66\x8c\xad\x90\xfb\xa4\x0a\x63\xcc\xc5\x6f\xd9\xef\x62\x31\xf7\x6d\xeb\x02\x57\x23\x29\xd1\x47\x86\x24\x29\x0c\xbc\x77\x0f\xc5\x13\x69\xf7\x8d\x68\xb5\xdc\x29\x0b\xb6\x0d\x3a\xdc\x6d\x09\xe6\x07\xf2\x7c\xab\x47\xd3\x8e\x73\x63\xab\xd2\xb7\xec\x5b\x2f\x8a\x45\x23\x05\x8f\xe2\xd7\x69\x2c\x4d\x1a\x31\x5c\x32\xf3\x9e\x65\xf7\xb1\x9a\x06\x75\xb4\xc0\x29\xec\x93\x19\xa5\xf7\x1a\x09\xa6\x0a\xfa\x9b\x20\x48\x7a\xab\xd9\x05\x82\x16\x4d\x0c\xb6\xba\xd4\x6f\x9f\x0a\xdb\xf6\x00\xeb\x34\xe0\x43\x39\x62\x82\x7a\x82\xb0\xc0\x1f\xb2\x63\x23\x59\xef\x50\x3e\x71\x0f\x86\x76\x8c\xa4\x1d\x23\x4d\x35\x6c\x31\x97\x63\x28\x47\x7d\x3f\x10\xdc\xae\x68\x5a\x3a\x3e\x05\x39\xac\x9b\xe9\xbb\x4e\x38\x35\x8e\x0c\x46\x7a\x1c\xca\x3b\xcf\x4b\x2c\x48\x67\x12\xcf\x24\x4f\x71\x9d\x79\x8e\xda\xa2\xc7\x3c\x1b\xa7\xf1\x42\x26\x29\x16\x94\x13\x6f\x86\x61\x07\xd2\xb4\x33\x49\xd2\xe7\xe1\x78\x8a\x4b\x64\xb4\x99\x9f\xa1\x04\x7f\x94\xc5\xed\xe9\x06\x72\x5c\xef\x22\x9d\xd7\x72\x95\x1c\x31\xb6\x02\x16\x53\xdd\x83\xd4\x70\x44\x53\xb8\x4c\xd9\x56\x8f\xc6\xc6\x48\x0c\xf0\x20\xed\x6c\x85\x34\xab\xe5\xa1\x1c\x6e\xe1\x94\xe1\x90\x65\x86\x6d\x42\x80\x59\x02\xf6\x66\xb4\xdb\x82\x50\x8b\x9d\x11\xaa\x28\x58\xeb\x5d\x40\x61\x59\xe4\x50\x55\x49\x0e\x0d\xef\x72\x4c\x6e\x13\xcd\x50\x19\x17\x24\x73\x7a\x73\x9b\x5a\x56\x4a\xe6\x58\x29\x59\x2d\x2b\x25\x29\x58\x29\x96\xa3\xb0\x32\x3e\x24\x7c\xee\xcc\x3d\x99\x59\x11\xd7\x47\xc2\x32\xdd\xc0\xd0\x42\x64\xe5\x2b\x18\xcc\xea\xc4\xe8\x37\xcc\x87\xb7\x05\xba\x54\x3f\x08\x9b\x34\x33\x3c\xe4\x50\x3e\xe1\xfe\x86\x50\x4b\x81\xa9\xfd\xe4\x98\x25\xab\xea\x64\x42\x55\x95\xf9\x51\xdb\xda\xb0\x13\x55\x66\x34\xd4\xfc\xb5\xc6\x91\xdd\x45\x23\xb5\x4b\xd6\x6e\x6c\x2b\x1b\x63\x6e\x69\xb7\x80\x74\x47\xc0\x9f\x11\x27\x95\xfa\xef\x3f\xb2\xd9\x22\xe5\x61\x74\xd7\xa0\x9a\xcb\xff\xa2\xf6\xf2\x3f\x01\x1f\xaf\x26\xcb\xb8\x36\xcb\x91\x9f\xa5\x1e\x85\xb8\xf6\xb3\x44\xb5\x59\xbe\x4b\xcb\xf9\x5d\x96\x18\xaf\x74\xa1\xf0\xb6\x89\xfa\x13\x69\x8e\xc6\x94\xdd\xce\xc3\xf4\x6b\xb0\xa4\x73\x1e\x66\xcb\x94\x07\xcb\x15\x6c\x9e\xda\x87\x83\xeb\x58\x44\xc9\x75\xb3\x89\x17\x4c\x7f\x12\x5a\x9b\x2f\x4a\xc6\x30\x49\xcd\x26\x9e\x30\x1b\xd8\x90\x77\xb0\x94\x70\x71\x9f\x5c\x64\x3c\xbd\xe2\xea\x76\x88\x58\x35\x72\x43\xd9\x05\x4f\x41\x58\x4a\x8c\x15\x81\x3f\x65\x5e\xd8\xbe\x2b\xbc\x95\xe4\x16\x38\xad\x17\x0c\x2f\x3a\x22\xbc\x8a\x2f\xd5\xf2\xca\xf3\xdb\x15\xe9\x2c\x33\x9e\x1e\x5d\x72\x21\xe9\x9c\x39\x14\xea\xa2\x8f\x50\x70\x41\x07\x6c\x41\x2f\xd9\x84\xde\xb0\x88\x5e\xb1\x29\x3d\x62\x78\xd0\xb1\x7d\xa1\x5b\x5b\x97\x2e\x60\x5e\x7b\x9a\x4d\x15\x39\xe5\x61\x54\x7f\x69\x5f\x76\xc2\x28\x7a\x7e\xc5\x85\x7c\x13\x67\x92\x0b\xd5\xd5\xfa\x7c\xa5\x47\x24\x42\xcf\xd9\xbf\xe7\x0e\x55\x45\x83\xd3\xd7\xcf\x11\xc9\x73\x3f\xee\x2c\x8d\x23\x2e\xe4\x0e\x22\xf4\x9a\x0d\xd1\xab\xb3\xc1\x1b\x44\xd1\xab\xe7\x47\xc7\x88\xa2\xd3\xb3\x8f\x6f\x9e\xab\xdf\x67\xbf\xbf\x7e\x77\x86\x46\xf4\x3b\xab\xb0\x7c\xad\xce\xb9\x37\x64\x26\xaa\x07\x4f\x30\x27\xec\x76\x12\x66\x01\xca\x92\x59\x1c\x21\x3a\x09\xd3\x00\xa5\xfc\x72\x39\x0b\x53\x15\x9a\x05\x68\x16\x5f\x4e\xa5\xfa\x8e\x02\x14\x2d\x13\x09\x16\xe8\x27\xe1\x45\x80\x2e\xd2\x10\x5c\x7d\x4e\x42\x5b\x7e\x45\xcf\xd8\x2d\x7c\x06\x68\x12\x66\x88\x1a\x50\x2a\x94\x22\x0a\xa0\xd4\xf7\x0c\x51\x03\x0a\xde\x46\x11\xd5\xa0\x54\xe0\x02\xad\xe8\x37\xb6\xf3\x22\x11\xb2\x71\x74\xcd\xb3\x64\xce\x1b\x0f\x1b\xf8\x54\x01\xcd\x7f\xd7\xe0\xf2\x37\x0a\x50\x7e\xac\x41\xe4\xbf\x40\xe1\xfc\x45\xca\x79\xfe\x2e\x4d\xc8\x0e\x7d\xcb\x6e\x1f\x77\xbb\xa6\x0d\xfb\xfa\x2b\x45\x54\xcb\x78\x98\xc0\x9e\x8e\x9e\xa1\x15\x7d\xc3\x86\x3d\xba\x4b\xf7\xe8\x3e\x7d\x48\x0f\xe8\x23\xfa\x33\x7d\x4c\x7b\xdd\x11\x7d\xce\xde\xd8\x3b\x78\xd8\xeb\xd1\xde\x2e\xed\xed\xd1\xde\x3e\xed\x3d\xa4\xbd\x03\xda\x7b\x44\x7b\x3f\xd3\xde\x63\xba\xdb\x1d\x11\x7a\xca\x86\xfa\xb9\x53\xbb\xa4\x0e\xdb\x8b\x94\x4f\xe2\x6f\x36\x14\x8f\x13\x61\xbf\x27\x61\x5b\xa6\xa1\xc8\xd4\x82\xf6\xe2\xe6\x61\xf6\x15\x8d\xe8\x33\x76\xfb\xf2\xf7\x93\xf7\xef\x02\x74\x99\x26\xcb\x05\xa2\xa7\x1f\x8e\xde\x9d\x9f\xbc\x3b\x7a\xf6\xfa\xec\x63\x80\xb2\xeb\x70\xd1\x4e\x16\xe1\x38\x96\x37\x88\xbe\xfb\xfd\xf5\xe0\xe8\xf7\x8f\x01\x5a\xa4\xf1\x3c\x4c\x6f\x10\xd5\xa2\x08\x10\xa7\x05\x5e\x55\xec\x8a\x7e\x65\x43\xf4\x0d\xdc\x17\xab\x2a\x67\x97\x88\xa2\xc9\x35\xa2\x68\x39\x53\xc1\x18\x51\x74\x01\xcf\x20\x88\xa2\xc5\x72\x36\x6b\xcf\xf8\x44\xda\xef\x54\x2f\x01\x94\x2d\x62\xa1\xe3\x32\x8e\x28\x4a\x13\x19\x4a\xde\x7e\xdc\x2d\xbe\x7b\x3f\x7b\x81\xdd\x47\x2a\x30\x99\xc5\x8b\xf6\x34\x49\xe3\xef\x89\x90\x6a\xe6\x75\xcc\x15\x4f\x65\x3c\x2e\xc2\x17\x89\x9c\xaa\x2a\x64\x38\xfe\x6a\x7f\xdb\xbd\x6f\xee\x73\xf7\x1b\xbc\x15\x5f\xf1\x14\xea\x9e\x85\x37\x3c\xcd\xdc\x47\x5b\xf2\x6f\xb2\x08\x8d\x93\xa5\x00\x91\xb9\x67\x1d\x18\x4a\xfa\xac\xe3\x0f\x22\x7d\xd6\x31\xe3\xa6\x12\xec\x78\x8d\xec\x54\xbf\xe9\xcc\xc3\x45\x1d\x36\x85\x90\xcd\xc2\x29\xfa\x86\x14\x16\x44\x6c\xcc\xf3\x8d\x85\xae\xdb\x45\x31\x28\x42\xff\x62\x83\x8e\x5a\xe0\x66\x7d\x3f\x03\x7c\x55\x1d\x5b\x8a\xde\xbb\xdc\x74\x74\xfc\xb5\xe4\xe9\xcd\x29\x9f\x71\x45\x11\x90\xdb\xe1\xd0\x2e\x9c\x79\x3c\xbb\x29\x56\x9b\x0e\xbf\xd3\xc1\x11\x35\xb9\x0c\x05\xa6\x4e\x9d\xb6\x5d\xa5\x5e\x9c\x7e\xc1\x77\xb9\xc3\xa5\x4c\x6c\x91\x76\x76\xa5\x16\x8b\x8a\x32\x8f\x9c\xa7\x57\x97\x95\xac\x61\x14\xb5\xc7\x00\x53\x05\x8f\xa2\xe8\xd9\x1a\xb4\xb0\xd7\xbb\xb1\xe9\xea\xd3\xa5\x66\x3c\x4c\xc7\xd3\xf6\x22\xe3\xcb\x28\x69\x73\x7d\x32\xc2\x42\x85\x84\x77\x10\xff\xdc\x46\xbb\x62\x89\xbe\x3e\xda\x73\x73\x9d\xa8\x12\x26\x6e\xe0\xa2\x5c\x6e\xc8\xc5\xdb\xe1\x62\x91\x26\xe1\x58\x2d\x34\x1d\x73\x64\x23\x5c\xce\xaf\x9c\x2f\xda\x49\x1a\x5f\x2a\x14\xae\xad\xed\x8e\x21\x8a\x54\xf4\x89\x89\x3d\xd5\x91\x05\x70\x7d\xbd\xb6\xbd\x2b\x4a\x55\xa0\x63\xdf\x79\x91\x45\x9f\xa7\xc9\x75\x7b\x1e\x67\x59\x2c\x2e\xe1\x64\x80\xfe\x4e\x93\xeb\x81\x8e\x7b\x0d\x51\xa3\x51\x0d\x1e\xee\x5e\x62\x14\xb2\xbd\x4b\xa8\x60\x72\xd8\x55\x78\xb2\x1c\xf6\x46\x25\x46\x4f\xb1\x6a\x8d\xaa\xce\x24\x54\xfb\xd6\x58\x7d\x46\x32\x5d\x72\x93\xa2\xd0\xa6\xf5\x0a\x2a\x2b\x0e\x23\x4d\x34\x80\xbb\x11\x34\xd2\xcf\x35\xce\x4a\x08\x90\x18\x47\x52\xa6\xf1\xc5\x52\x3f\xce\x61\xa1\xf0\x14\xfb\x66\x96\x34\x9b\x86\x0f\x9c\x34\x9b\xf8\xaf\x61\x3a\x62\x09\x50\x11\xaa\xae\x0f\x2c\xc3\xb7\x2b\x7a\xeb\x2f\x5d\x75\x36\xab\xfb\xa3\xbc\x44\x03\x94\x5d\x5d\xb6\x63\x31\x8b\x05\x6f\xb7\x55\x8e\xf2\xba\x54\xe4\x5e\xb1\x04\x5d\xa8\xd7\xbb\x51\xdf\x75\x2b\x2a\xd8\xea\xd1\xea\xba\x51\x79\xcb\xeb\x23\x40\xc0\x49\x46\x74\x7d\x1d\x40\xe6\xb5\xb9\x56\x60\xab\x13\xaa\xe8\x4f\xfa\x17\x39\xfc\xd0\x29\x37\x3a\xcf\xf1\x87\x4e\xb5\x0d\x6c\xab\xa7\xd1\xbc\x63\x3d\x38\x1f\xc8\x61\xcd\xa1\xc1\x8e\x21\xcf\x2f\x6c\x00\xc7\xc7\x2f\x9d\xf3\xf3\xf3\x17\x27\x6f\xcf\xce\x8f\x3e\x3c\x3f\x3d\x19\x3c\x3f\x3f\x3f\xcf\x73\x5c\x17\xcd\x6e\x57\x84\xd6\x25\x74\x32\x79\x33\xe3\xd9\x86\x62\x26\x75\x73\x69\xe0\xab\x6f\x2a\x0c\x89\x77\xd4\x3c\x8d\xe7\x9b\x2b\x56\x89\x6c\x38\xd2\xa3\xf2\x8e\xd5\x65\xa2\x7f\x2a\x9a\xf1\x0b\xdb\xea\x79\x6a\xb5\x6a\x45\x1f\x35\x9b\xf8\x4b\xdf\x38\xc6\x4a\x96\xea\x00\xef\x92\xe0\x4f\x4d\x0b\x72\x42\x56\x2a\x03\xfe\xc2\xf0\x1a\xea\xd7\x89\x92\xd3\x71\x9a\xcc\x66\xfd\x9d\x7f\xcd\x92\x30\xe2\x51\xfe\xaf\xf1\x4e\x50\x04\x62\x15\x36\x66\x02\x2f\x3b\x8a\x88\xb8\x81\x07\x03\x42\xf2\x7c\x1d\x2f\xc4\xe8\xf8\x64\xf0\x2c\x11\x12\x24\x61\x15\x04\x0f\xcb\x07\xc9\x1e\x05\x63\x9e\x5c\xf1\x1f\x16\xe3\x84\x7e\x61\x3d\xfa\xe7\xa6\x8b\x47\x41\x5b\x81\xa8\xbb\x1e\xb2\xd7\xf4\x55\x99\x62\x78\xc1\x6a\x31\x6f\xde\x6c\xd6\xc7\x2b\x5a\x6c\xcc\xb3\xac\xfe\x82\x72\xc9\x1d\x3e\x8f\x25\x7d\xcf\x6a\x05\x50\x52\x6f\x12\x82\x94\xfe\x01\xb6\x59\x6d\xf7\x3f\xe2\x82\x08\xe5\xac\x7b\xc8\x9f\xfc\x61\xc9\x4d\xde\x6a\x91\x3f\x86\x7c\x34\xec\x8e\x30\xfc\xf6\x46\xe4\x50\x95\xa6\xaf\xd9\x56\xaf\x20\x78\x5f\x6a\xfe\xc1\x1f\x7a\x66\x87\x9c\xca\x11\xa1\xaf\xf3\x1c\xbf\x56\x54\xfc\x7b\xfc\x91\x76\xfd\xb7\xfa\x7f\xfa\x2f\xdb\xc9\xb5\xe0\xa9\x3a\x50\x3b\xe7\xf0\x06\xae\x0e\x55\xad\xbd\x45\x13\xe0\x04\x83\x38\x9d\x9c\x72\xb1\xe9\x99\x38\x21\xb7\x82\xa1\xc9\x72\x36\x89\x67\x33\x1e\x21\x20\xb7\x52\x96\xe0\xd4\xa7\x59\x3e\xe1\x98\xbe\x95\x64\xb5\xfa\x07\x8e\x69\x4a\xf2\x1c\x7b\x45\x18\xc8\x1a\xfc\x06\x29\xea\x8a\x56\x44\xb0\x8b\xfe\x04\xd1\x5e\xfb\xff\xe1\xb1\x4b\xa0\xb2\x78\x82\x39\xf0\x8a\x6b\xe9\xde\xa3\xc6\x22\x4d\xe6\x71\xc6\x33\x78\x3c\xbc\x08\xc7\x5f\x1b\x63\xfd\x54\xe4\x74\x8f\x42\xd9\xc8\xc2\x39\xb7\x39\x3b\xe6\xa0\x57\x57\x46\xdd\x03\x56\x9e\x7b\xae\x24\x13\x2c\xad\x68\x90\x1a\xbb\xbb\x86\x2a\x75\x16\x6e\xac\x31\xdc\x62\x09\xa7\xe4\x56\xe4\x39\x16\x20\xe6\xc0\x18\x4b\xfb\xbf\x02\xe3\x36\xf8\x0d\x7e\xc8\x8a\xd0\x12\x63\xca\x65\xfe\x04\xc3\x01\xda\x1d\x5b\xdd\xd5\x1a\xcd\xd3\x10\x79\xae\xb2\xbc\x95\x90\xee\x08\x21\x37\x9c\xbf\xe9\xe1\xe4\x5b\x60\xd3\xe7\x1f\x86\x4f\xf3\xab\xf6\xef\xe9\x72\xe9\xf0\x2d\x5a\x70\x10\x09\x87\x4b\xd4\x2c\x99\x66\x13\xdb\x4f\x86\x32\x2e\xe5\x0c\x76\xaa\x5e\x45\x4c\xd2\x97\x58\x82\x13\x88\x02\xd8\xa7\xff\x06\x98\xa8\x00\xe3\x1c\xfc\x62\x77\xce\xd5\xc8\x33\xf3\xeb\x90\x88\x7f\x7a\x39\xa5\xcd\x69\xc0\x17\x0b\x90\xf2\xb2\x6c\x8d\xe0\x6a\x88\xa5\xcb\xe9\x96\xa4\xca\xa8\x06\x52\x76\xce\xa7\xa1\x88\x66\x3c\x6a\x36\x5f\x34\x9b\xe5\x73\x00\xa3\xa5\x30\xa9\xbf\x43\x41\x30\x14\x6e\xb7\x95\x3f\xaa\x29\xd4\x53\x2d\x9d\xda\x42\xaf\x34\x10\x54\x2a\x93\x70\xbc\xf9\xa5\x94\xd7\xef\x81\x77\x7a\x5d\x37\x52\x9e\x25\xb3\x2b\x9e\x36\x00\x9f\x69\xc4\x19\xbc\x79\x86\x8e\x4d\x66\xd6\xfd\x34\xce\x1c\x1f\x48\xed\x70\xb5\xbb\xb6\x7a\xf5\xa0\x5f\x84\xf1\x8c\x47\x0d\x09\xaf\xe9\x9a\x51\xd7\xf8\xc9\xd4\xf7\x53\x50\x52\xbb\x9a\xf2\xc6\x4f\x82\x5f\xff\xd4\x48\x16\x9a\x29\x46\xf5\x9b\xb6\x61\x85\x79\xbc\x7f\xbb\x41\x8b\x07\xff\x30\xf3\x9a\xa9\xf6\xa7\x7e\xfa\x84\x39\x1f\x8e\x68\x99\x93\x5a\xcc\xa3\x1a\xaa\x4f\x58\x52\x4e\x56\xea\xa4\xe0\xe5\x3b\xe3\x37\x9d\x42\xa8\xf0\x8f\x2a\x81\xe1\xa0\xb2\xb6\xd8\x57\x89\x27\xff\xc3\x6e\xbd\x56\x06\x09\xa7\x7a\x85\x04\x6e\x29\x53\x68\x12\x88\x4a\x51\x98\xef\x40\xa3\x83\xd4\xae\x17\x85\x24\x41\x96\x3a\xe6\xef\x2d\x1c\xc7\xc6\x81\x38\xc0\xe1\xd7\x8d\xaa\x0c\x17\x7e\x45\xa8\x5b\xba\x01\xa7\x76\x71\x06\x72\xe5\x5c\xa7\x34\x9b\x5b\xce\xd4\xb0\xa9\xd8\x59\x0f\x32\x61\x78\xc5\xf0\xcf\x5a\x63\x0b\x4c\xef\xc2\x17\xcd\xe6\x4b\x9c\x9a\x21\x80\x77\x7c\xef\xb0\xf6\x72\xe6\xf9\x26\x18\xfd\x97\xf8\x9f\x54\x58\xaf\x29\xb0\x29\xe1\x7e\x12\x84\x0a\x38\x25\x57\x14\xc6\xbc\xee\x9d\x08\xca\xa8\x3c\x5a\x95\x09\x34\xb8\x13\xde\x09\x67\xb3\x35\x75\xd2\x35\x96\x6e\xed\x2a\xfd\x98\x2c\xb5\x24\xe3\x22\xcc\xb2\x46\x28\x1a\x5a\xc8\x51\x26\x0d\xb3\x54\x15\x6c\x4c\x3a\x85\x29\x74\x05\x20\xf1\xd7\x8b\xf7\x2e\x3f\x54\x44\x47\xf7\xd0\x7f\x6a\x2a\x84\x54\x5b\xad\x62\x35\x0a\x72\x9b\x6a\x2d\xa2\x76\x3b\xc9\x73\x89\xe1\xed\xc7\xe3\xe3\x77\x0f\xb3\x82\xbd\x9c\xb5\x5a\x04\x87\x8c\x0f\xb3\x11\xa9\xc7\x37\x42\x18\x94\xbe\xfe\xc1\x31\xce\x08\x98\x53\x1f\x66\x23\x16\x1e\xda\x0a\x08\x81\xc1\x4a\xc3\xf1\xba\xf2\xed\xff\xd6\x68\x29\xe0\xf7\x18\x2e\xdb\xd5\x94\x6a\x3b\xf4\xae\xab\x89\xea\x6a\xca\xf8\x30\xd9\xd4\xd5\x54\x77\x55\xff\x68\xb3\xf1\xa5\xde\xe9\x93\xac\x56\x63\xba\xd9\x2c\x5d\xcf\xda\x73\x7f\xf9\x65\x31\xe1\x7d\x1e\xac\xb7\x99\xdc\x1a\x7e\x85\xa9\xa3\xec\xa1\x95\x97\xbc\x9e\xae\xf7\x56\x98\xb2\xda\x7a\x0b\xaf\x7d\x5b\x35\x03\xd8\x37\xbf\xea\x08\x09\x39\xeb\x1d\xd0\x8c\xb3\xdb\x2c\xfe\xce\x83\xde\x01\xfd\x16\x74\xe9\x4d\xd0\xa5\x9a\xa7\x14\x74\xe9\x64\x16\x2f\xfe\x54\x27\x87\xfa\xf8\x18\x6c\xf9\x26\x74\xc6\xf6\x3e\xe0\xcd\xe6\x51\x41\xc7\x96\x25\xf7\x11\x90\x30\x20\xb0\x92\xf9\x34\x2b\x02\x39\x16\x8a\x24\xff\x26\x77\xc6\x59\x86\x08\x88\x11\x08\x9e\xbe\x3a\x1b\xbc\x61\xbc\x70\x80\xcd\x34\x2f\x58\x6b\x4a\xbc\x4d\x22\x9e\xd1\x54\xf3\xdc\x13\x66\xdf\x92\xda\xbd\xc3\xe4\xa9\xfa\xd3\x6e\x5b\x91\x06\x31\x4c\x46\x34\x64\x38\xee\xc8\xf0\x52\x4b\x99\x69\x7b\x61\x9e\xa5\xfe\xc3\xa1\x63\xea\xbe\x79\xfd\xf6\x9f\x68\xe4\x38\xc1\x21\x79\xda\xee\xc1\xbb\x60\xec\xde\xde\x4c\x3b\x62\x91\xf1\xd4\x08\xf6\x60\xa9\x10\x47\xee\x3d\xab\xce\x78\x09\xad\xee\xed\x6a\x67\xa4\xbc\xdd\x6e\x3c\xed\x1e\x12\xd9\x62\xa8\xdb\xdb\xdd\xdb\x7f\x78\xf0\xe8\xe7\xc7\xe1\xc5\x38\xe2\x93\xcb\x69\xfc\xe5\xeb\x6c\x2e\x92\xc5\x5f\x69\x26\x97\x57\xd7\xdf\x6e\xbe\x1f\xfd\xf2\xec\xf8\xf9\x8b\x97\xaf\x5e\xff\xfa\xcf\x37\x83\xb7\x27\xef\x7e\xfb\xfd\xf4\xec\xfd\x1f\x1f\xfe\xfc\xf8\x09\x0d\x0f\x76\xb7\xb5\xad\x8d\x50\x44\xc9\x1c\x93\xbc\x5b\x78\x1c\x28\x1a\xb2\xe4\xe5\x87\xd6\xe1\x88\x0a\x86\x79\x9e\x0f\x47\xc4\x8c\xda\xd3\xa7\x4f\xbb\x87\xa2\xdd\x3e\x24\xd2\x8a\x5f\xd4\x00\x5a\xf0\x92\x03\x02\xe0\x67\x29\x4a\xa9\xaf\x6a\x28\x82\x24\xc0\xbc\xcc\x96\x30\x0c\x5a\xa2\x07\x3e\x5b\xcc\x14\x8a\xd1\x40\x77\xbe\xa0\xf2\x95\x8f\x61\x4d\x78\xd9\xc3\xbe\xb4\x50\xda\x88\xd0\x84\xa5\xc3\xae\xa2\x12\x52\xe7\x14\xa1\xf3\x25\x89\x05\xa4\x3a\x39\x98\x2d\xcd\x8d\x51\x1b\x21\x06\xc4\x35\xa6\xff\xfe\xea\xc9\xab\x18\x5f\x70\x71\x51\x69\xc4\x6b\x79\x90\x9e\x9d\xa3\xe6\xce\x25\x45\xcd\x70\xbe\x38\xf4\x2c\x7b\xee\x20\x88\xfd\x6b\x99\xc8\x52\xf4\x4f\x10\xfd\x3f\x7b\x8f\x4b\xb1\x4f\x20\x76\x56\xce\xfa\x14\x22\x2f\x55\xa4\xe7\x95\x84\xaf\x3f\x30\x6b\x39\x21\xfd\xf4\x92\xf2\x68\x39\x5e\x3b\x11\x9c\x0d\x95\xa2\x07\x82\xa2\x40\x8d\xbe\xed\x90\x22\xb1\x90\xaa\x8a\x50\xe4\x57\x78\x51\x9e\x6f\x75\x34\x6c\x31\x96\xe9\xaf\x3c\xe7\x9d\x6f\x3a\xf8\x4d\x7d\xdf\xe8\xef\x1b\xf5\xad\x0f\x0d\x1d\xa1\xbf\x55\x2c\x9c\x20\xf6\xe3\x63\x51\xcd\x9c\x97\x94\xa9\x2c\x87\x1e\x54\xaa\x8c\x78\x24\x4f\x3f\xc4\x91\x9c\xd2\x94\xf1\x4e\x3c\x4e\x84\x0e\x25\xec\xd6\xe5\x0e\x10\x7c\xce\x42\xb5\xdc\x5c\x47\x77\x76\x29\x6a\xec\x3e\x3c\x20\x88\xac\x68\xcc\xea\xf2\xec\xed\x6e\xcb\xce\x37\x8a\xa8\x37\x22\x10\x77\x43\x11\x69\x20\x42\x43\x86\x32\xed\xfd\xd6\x26\x4b\x18\x80\x9d\xde\xc1\x36\x96\xba\x57\xfd\x76\x2f\xe8\x91\x32\x90\xb5\x5c\x1f\x6d\x2e\x00\x9b\x31\xc3\xaf\xf7\xe1\xea\x18\x8a\x1a\xdd\x46\x97\xb8\xb5\x7b\x9b\x2c\x25\x4f\x83\x44\xeb\xd2\x05\x7e\xa7\x5d\xd9\x98\x22\xaf\xee\xb0\x14\xca\xc8\x8a\x2e\x42\x39\x0d\x7e\x30\x5c\xe9\xce\xee\x76\xbb\x47\x51\xa3\x6d\x86\x4c\xdb\x73\x1b\x70\x76\x6b\xaf\x83\x6b\x35\xf0\x01\xea\x75\xbb\x0f\x10\x9d\x72\xfd\xb0\x04\x21\xef\x3a\xb8\xf4\x26\x74\x0b\x57\x65\x3a\x9e\xf6\x3c\x99\xfe\x42\x82\xa3\x37\x22\x79\xee\x07\x0b\x73\x80\xa1\x3d\x48\x32\x20\xcd\x8a\xa0\x3a\x3f\x66\x79\x0e\x0e\x6d\xd6\xe2\x19\xba\x98\x85\xe3\xaf\x88\xf8\x32\x27\x37\xa5\xb5\x06\x2c\x60\xe0\x3c\xcc\xc3\x58\x1f\x2b\xf3\x30\xfb\x4a\x13\x90\xb7\xe7\x93\xf8\x1b\xb0\x1e\x54\x36\x50\xda\x0b\x4b\xeb\x73\xcc\x78\x47\x0b\x00\x81\xfe\x9e\x8c\xe5\x8c\x83\xf2\x1e\xff\x26\xd3\x90\x2e\x18\xef\x5c\x2b\xec\x12\xd4\x5a\x26\xcc\xf5\x79\xd1\x6c\x2e\x68\xc4\xd2\xce\x24\x59\x8a\xa8\x9f\x06\x82\x4e\x59\xd4\x81\xa1\xa5\x17\x2c\xea\xe8\x71\xa5\x73\x86\x26\x61\xdb\x7b\xc6\x28\xec\x12\x4e\x77\x2e\xb6\x7b\x07\x84\xd0\x01\x1b\x1e\x77\xaa\xdc\x5a\x1a\xf7\x8b\x85\x71\xdc\xf1\xd9\xbb\x54\x1d\x89\x6e\xcd\x80\x71\xb6\xf9\xe8\x8e\x63\xb8\xdd\x63\x8c\x2d\xf5\xd9\xce\x33\x77\x5a\x02\x92\x61\xc1\xb8\x64\x7b\xea\xaa\xe5\x7d\xc9\x0a\xa5\xd4\xe1\x88\x16\x73\x13\x00\x5b\x75\xe9\xcd\x16\xbd\x2d\x3d\xdc\x05\x89\xff\x74\x17\xc4\x5a\xd7\x34\x18\xd0\x34\x99\xf1\xc0\x2f\xd8\x51\x31\x79\x8e\xe2\xf9\x25\xa2\xdf\xe6\x33\x91\x05\xc8\x38\xd5\xba\xbe\xbe\xee\x5c\xef\x75\x92\xf4\x72\x67\xb7\xdb\xed\xee\xc0\x63\xca\x55\xcc\xaf\x7f\x49\xbe\x05\xa8\xdb\xe8\x36\xdc\x00\x4d\x4b\x7b\xe5\x82\xac\xc8\xea\x70\xd2\x6c\xe2\x4b\xaf\x26\xf7\xe6\xd3\x8e\x77\x15\xa8\x11\x43\x88\xd0\x59\xb3\x79\xe9\xd4\x36\x35\x65\xa1\xf5\x50\x61\x29\x20\xbf\xd3\xb7\x71\x14\x94\x01\x86\x69\x1c\xb6\x67\xe1\x05\x57\x14\xcd\x05\x18\x45\xd1\xe5\x8a\xf9\x56\x18\x04\x59\xd1\x62\x1c\x67\xa3\x95\xe6\x29\xde\x68\xe6\xf4\x25\xbd\xd5\x83\xa6\xce\x06\xb3\x48\x83\x98\xaa\xc5\x1c\x08\xaa\x96\x72\x90\xd2\x62\xcf\x87\x54\x2f\xd7\x60\x4c\x35\x3b\x39\x58\x1a\xbe\xf2\x8a\xd0\x2b\xbb\x20\x9b\x4d\x61\x56\xe6\xda\xdb\x84\x3e\x92\xad\x9e\xaa\x3a\x8c\xbd\x59\x54\x9b\x06\xb6\x51\x0c\x1f\xd9\xd7\xb5\xed\x92\x98\x35\x3e\x63\x09\xec\x29\xba\x64\xb1\x89\x5a\xb0\x58\x47\x4d\xd8\x9c\xe3\x5b\xbf\xcd\xe5\x2b\x20\x58\x52\x77\x01\x04\xe3\x15\xa1\x11\xd3\x63\x9e\x2a\x64\x7b\x6d\x9d\x0d\x38\xbd\x55\x87\x41\x80\xae\xa7\xb1\xe4\x68\x45\x56\x74\xca\x66\xae\x13\x7d\x5f\x75\xda\x4d\xe5\x3c\x5c\xe0\x4b\x4e\x56\xc1\xed\x8a\x5e\x18\xf8\x97\xeb\xc0\x27\x1a\x4d\x25\xde\x0c\x5d\x72\x9c\xe9\x45\x30\x03\xb5\xe0\x6a\x91\x99\x3f\x62\x93\x8e\x3a\x95\x55\x8b\x08\x19\xad\xe8\xfc\xae\x9a\xe0\x0a\xf0\x6b\xba\x18\xad\xe8\x80\x21\x35\xd0\x95\x15\x43\x2f\x19\x1a\xcf\xe2\x45\x35\xfa\xc6\xc0\x87\xf7\xee\xda\x91\x8a\xa3\x60\x00\xcb\x06\x8c\x31\x04\x68\x99\xf1\xf4\x74\x11\x8e\xf9\x89\x78\x9f\x71\x04\x49\x86\x1b\x5e\x9f\x63\xe5\xb7\x30\xa2\xf3\xd1\x8a\x5e\x99\x5a\x23\x3e\xc9\x90\x97\xaa\x63\x55\x3b\xdf\x85\x72\xba\xbe\x59\xbc\x75\x8f\x25\x5b\x50\xa4\x5d\x6e\xaa\x51\xed\xcb\x4e\x01\x47\x8e\xc8\x8a\xde\x8c\x56\x8e\x0a\xd4\x1b\xf1\x8a\x6e\x5e\x16\x7a\x41\x80\xcc\xae\x90\xcf\x92\x59\x92\x82\xca\x74\xbc\x68\xab\xf9\x40\x01\x5a\xa6\x33\xfc\x3f\x6e\xf4\x2e\x29\x22\x88\xe8\xed\x54\x49\x1a\x40\x92\x1a\x3c\x85\x3c\x15\x6b\x49\xf8\x35\xa6\xab\x15\xbe\x21\x75\x66\x80\x8b\xbd\x24\xca\x7b\x29\xb5\x7b\x29\x29\x6d\xa1\x98\x29\x1c\xd0\xec\x59\xe0\x93\x59\x21\xec\xa7\x5d\x90\xb1\x83\x14\x16\x13\x7a\xc1\x71\x62\x38\xc2\x61\x65\x47\x25\xd5\x1d\x95\x9a\x3d\x58\xec\x2b\x13\xb3\x52\xb4\x9a\x77\xac\xd5\x2c\xcc\x70\x7d\x61\xde\x91\x77\x6d\xbb\x40\xde\x14\x76\x3e\x6c\x17\x97\x62\xe2\xdc\xf8\x54\x61\x99\x74\x6f\xc8\x42\xb3\x99\x46\xab\xd1\xca\xd8\x4a\x31\x8d\xd7\x79\x1d\x32\xe5\xea\x90\x3e\x54\x01\x93\x44\x8f\xd8\x55\x51\xe9\x39\xbb\xf2\x6a\xb0\x0b\xec\xc6\x65\x60\x47\xf4\xc6\xcb\xc0\xce\xe9\x78\xfd\xcc\x2c\x50\x09\xe1\xa3\x12\xa9\x3f\xfb\x49\x79\xf6\x63\x87\x58\x98\x3a\xcd\x98\xc2\x25\xe6\xef\x13\x98\xee\x00\x19\x05\xaa\xa0\x21\x12\xc1\x0f\xd1\x6a\x6d\x32\x8c\x98\xf2\xda\x28\x26\xb0\xe5\xc1\x33\x86\x8f\x32\xc8\x12\x96\x70\x07\x02\x21\x48\x10\xfb\x5b\x3e\x85\xd1\xbf\xd7\x62\x37\x08\x17\x2f\x10\xae\xea\x00\xc0\x22\x2f\xdf\x21\x6a\xc5\x5f\x70\x1c\x12\x77\x47\x35\x9b\x5b\xe6\xda\xb2\xfa\x64\xb7\xdf\x02\xa1\x97\xef\x8e\x30\x98\xd4\xce\x2e\xbd\x09\x3a\x0f\x57\x87\x89\xd9\x20\x53\x38\xa5\x57\x34\xa6\xb7\xc8\x01\x37\xd2\x07\xc8\x43\xaa\xc7\x9d\x6f\xad\xb0\xf3\x6d\xa7\x77\x40\x11\x9f\x7b\x58\xc2\xb8\x73\xd3\x0a\x3b\x37\x26\x01\x79\x72\xb9\x1b\xa6\x2a\x29\x06\x49\xea\x21\xf2\x8c\x46\x97\x70\xd2\xb1\x3e\x5f\x61\x90\xae\x1d\xd1\x63\x50\xc2\xea\x71\x60\xb1\xce\xd0\x61\x9d\xe3\x12\xd6\x39\x2b\xb0\xce\x71\xb3\x39\xa6\x4b\x66\x76\xa2\x3f\xd8\xfd\x5b\x00\x12\xc4\x70\xdf\x69\x93\x0a\x41\xe8\x70\x3e\x87\xd3\xad\xc8\xe1\xac\xd9\xc4\xcb\x5a\x64\x08\xd0\x92\x85\x05\x6f\x4f\x28\x38\x86\x9a\x4d\xbc\x28\x5a\x5d\xe3\x64\xb1\x4a\xf4\xd9\x6e\x3b\xf9\x41\xd1\xef\x1d\x04\x7a\x9b\x98\x81\x88\x8b\xc4\x44\x25\x26\x30\x04\xe0\x21\xfd\x99\xb1\x33\x41\xb3\xa2\xf3\x61\xb3\xa9\x86\xa6\x30\xf5\x3b\x6e\xb1\xac\xd9\x3c\xef\xd7\x91\x41\xb2\xf3\x6d\x27\xe4\xed\x54\x11\x8f\x7c\x5e\x26\xe9\x6e\x54\x4a\xac\x53\x14\x19\x17\x64\x3e\x88\x71\x38\x1b\xe3\xf6\xc3\xee\x83\x46\xab\x51\x01\x07\x05\x68\xa3\x94\xa3\x02\x17\xb2\x00\xd0\xcd\xad\xaa\x6f\x91\x6d\x0d\x1d\xb7\x36\x11\xab\x21\xbf\x0f\xb1\x5a\xe4\x2a\x13\xab\x0a\xee\x66\x6a\x35\xe2\x97\x2a\xd7\xaa\x7c\xcb\x94\x26\x03\xf4\x01\xe0\x6e\x11\x96\x6c\x4c\x57\x84\x2e\x86\xa8\x7d\xcd\x2f\xbe\xc6\xd2\x93\xcc\x1b\x31\x6f\xb9\x18\x47\xaf\x6a\xcb\x2e\xc8\xe1\xc4\xbf\xee\x0c\xf2\xca\x26\x3a\x4f\xc4\x86\x8e\x66\x8c\xfc\x6b\x2b\x5b\x84\xa2\xb4\x19\x97\xd4\x47\x1f\x56\x84\xc6\xcd\xe6\xdd\x25\xcc\xa6\x40\x59\xda\x4e\xc4\xec\xa6\x74\xc4\xc6\x0a\x42\xe4\xd9\x77\xdf\xb8\x9d\xf5\x5e\x4d\xdd\x5e\x4d\x98\xb9\xcb\xbc\xdd\x28\xec\x6e\x14\xfe\x6e\x4c\xeb\x76\xa3\x46\x07\xd2\x02\x1d\xf0\x07\x27\x71\xb8\xc0\xa1\x46\x02\x8a\xc1\x09\xef\xec\x6a\x52\x1d\x1c\xd1\x6c\xde\x5d\xe2\xae\xc1\x11\x0a\x42\xa8\x0d\xd9\xf3\xb2\x18\xc4\x35\x67\xc7\x9d\x75\x09\x9e\x66\xf3\xaa\xd9\xbc\xea\xcc\xc3\xf4\x2b\xfc\xea\x0c\xfd\xab\x40\x4b\x55\x9f\x73\x27\x56\x7d\xce\x57\xf4\x3b\x67\x3f\xbd\x38\x6a\xa0\x87\x9d\xde\x6e\xa7\x87\x7e\xa2\x27\x65\x7e\xfc\x35\x07\x48\xb8\x38\xd3\xbf\xf3\x12\xbd\xa7\x42\x1c\x0c\xd2\x13\xaa\x32\x6b\xd8\x77\xe4\x27\xf4\x4e\x58\x17\xfc\x32\x16\xa0\x90\x7d\x8f\x1a\x57\xf4\xac\xf6\xf9\xe0\x5e\xad\xb6\x35\x11\x5a\x23\x16\x0f\x6f\xc9\x2b\xfa\x6d\xa3\x7f\x55\xad\x35\x56\x51\x37\xa4\x63\x66\xb9\x34\xfe\xd5\xe1\x2b\x59\xd5\x29\x9a\x18\x35\x34\x9f\x35\x6c\xfc\xec\x9a\x84\xd5\x0a\xd8\xe3\x81\xd4\xbc\xfc\xe2\x58\xc7\x09\xeb\x51\x78\x6e\x1a\x76\x47\x23\x12\xe0\x84\x75\x69\xc8\x04\x39\x4c\x9e\x8c\xe1\x85\x26\x64\x33\x1c\x52\x3e\x8c\x59\x36\x4c\x46\x23\x1a\x53\x5e\x18\xe3\xf0\x78\x4e\x6f\x2b\x4c\x6e\x84\xa8\x56\xb7\xe2\x25\x75\x2b\xd9\x62\x18\x75\xbb\x5d\xd4\xe2\xe0\x22\xe4\x59\x12\xf1\x23\x85\xc8\x38\x35\x07\xdc\x3b\x20\xc4\xf0\x91\xdb\xfb\x85\x43\xfe\x62\x83\xbf\xf1\x79\xd1\x6c\x8d\xbd\xb5\x5b\xcb\xde\xda\xf5\xb5\x95\x76\x8d\xb6\x92\xe8\x64\x5f\xe3\xc5\xab\x24\xf9\xaa\xc8\xe7\x62\xbc\x9b\xcd\xb4\xa2\x0a\x2a\x6b\xd8\xbb\xdc\xd3\xd2\x2d\x18\xf6\x5b\x5b\x1a\xdf\xed\xf3\x61\xea\xd0\xcd\x11\xd3\xdf\x01\x1f\x8a\x11\x4b\x29\x57\xd4\xca\xca\xd7\x8f\x2a\xde\xef\xdf\x69\x71\xb1\x4e\x18\x45\xef\xc2\xf1\xd7\x3c\x4f\xfa\xef\xcc\x19\x33\xe4\x23\x7d\x64\x79\x11\x79\xae\x10\x29\x12\x54\x8a\x61\x4e\x63\x42\x41\x12\xfc\xff\xc7\xdd\x9b\xf0\xb7\x6d\x2b\x8b\xa3\x5f\x45\xe2\xff\x96\x25\x2a\x88\x21\xe5\x9d\x32\xac\x97\x26\x69\x9b\x7b\xb2\xf4\x26\xe9\x76\x14\xbd\x94\xa6\x20\x9b\x8d\x0c\xaa\x24\x94\xd8\xb5\x74\x3f\xfb\xfb\x61\xb0\x72\x91\xed\xf6\xf6\xdc\x77\xde\xeb\x39\xbf\x58\xc4\x8e\xc1\x60\x30\x33\x18\xcc\x48\xe7\x78\x2f\x68\x00\xa6\x85\x5c\xda\x1e\x3e\xa3\x44\x37\x82\xdf\xc2\xef\xcb\xfc\xaa\xc2\x4f\x28\xb9\xdd\xe2\x8f\xf0\xef\xef\xf0\xef\x4f\x6d\xd7\xd0\x5d\x5b\xe6\x9a\x06\xcf\x28\xae\xe9\xbe\x05\xae\xeb\xd5\x9b\x96\x33\x72\x4d\x03\x86\xa9\x98\x37\xe6\x72\xfe\xdb\xf1\x13\x4a\xea\x20\xad\xe9\xcc\xa7\x7b\x33\xdf\x0f\xe8\x54\xfc\x98\x11\x86\x04\xdc\x90\x18\x5d\x47\x1d\xbd\x10\x23\xab\xb8\x14\xb0\x66\xbb\x5e\x75\xc9\xf7\x70\xa2\x3d\xaa\x5f\x96\x70\x02\x26\xf2\x39\xeb\x3d\xa3\xe3\xdf\xa9\x18\xf0\x5b\x8a\x3b\x17\x9c\x4d\xa3\x19\x2e\x08\x9b\xc6\x33\x9c\x13\x66\x7b\x85\x16\xfa\x84\x14\x9b\x0d\xdf\x6c\xe0\x75\x65\x2a\xc8\x11\x44\xf6\xea\xd2\x16\x6d\x35\x32\x38\x9b\xe9\x29\x75\x37\x7a\xf0\x84\xaa\x75\x46\xe2\x44\xf8\x49\xfb\x42\xfe\xda\x2e\xa1\xad\xfa\x7d\xfd\xce\xa0\x03\x69\xcd\xce\x59\xd0\xa6\x6c\x21\x9f\x29\x7f\x2d\x40\x83\xb4\xd8\x44\x38\x3c\x79\xed\xe5\x8b\xe0\x29\x18\x70\x7e\x43\x79\x76\xf9\xf6\xd3\x85\xef\x4f\xe5\x43\x03\xf9\xae\x40\x3e\x6f\x90\xcf\x1a\xe0\x3d\x83\xf8\xd7\xb9\xc7\xe3\xe8\x6c\x18\x77\xb5\x6a\x60\x2a\xca\x83\x19\x90\x2c\x32\xf9\x5d\x2c\xe0\x66\xa3\x81\x06\x17\x8d\x06\x6e\xe0\x88\x26\xb9\xdd\x8e\xad\x4c\x47\xec\x7e\xdb\x6c\x18\x36\x5d\x95\xea\xc7\x66\xa3\x93\x94\x78\xda\x27\xa4\xad\xbc\xf5\x7d\x41\x02\xec\x43\x6a\xa5\x03\x86\x0b\xe4\x92\x56\x4a\xa6\x75\xbc\x1f\x8b\xd5\xdb\x39\x44\x2c\xaa\x24\x53\x21\x12\x9b\x25\xfa\x99\x3a\xd1\xed\xa9\xef\x0b\x70\xcb\x7f\xa7\x6c\xa6\x1f\xa6\xab\x16\xb9\xd3\x1c\x56\x14\x04\xca\x39\x17\x9d\xbf\xd1\x2e\x67\x78\x35\x6d\x86\x43\xf2\x6f\xb7\x8a\x93\x37\xe2\x60\x8d\x97\x9f\xce\x92\x42\xa3\xb2\xf4\x09\x58\x0b\x74\x0f\x57\x72\x89\x77\xea\xca\xaa\xce\xb9\xb8\xfb\x25\xe6\x5f\xbc\x28\xfb\x92\x78\x5f\x9a\xd6\x45\xe7\x02\x44\xf8\x4b\xaf\xf7\xa5\xba\x2d\x0b\x79\x99\x5f\x05\x68\x1b\x94\x08\x7b\x67\x8e\x6e\x1d\x94\x88\xbf\x51\xad\x13\x17\x1c\xc1\xe9\x23\x87\xe1\x86\xd2\x40\x0a\xdf\xd4\x19\x23\xbb\x97\x9e\xbb\xf7\x8f\x4d\x60\x34\xee\x58\x27\xcd\x2b\xd7\xba\x8c\x86\x00\x1b\x64\x7f\xdf\x51\x72\xab\xb0\xae\x4b\x4e\x17\x94\x85\x11\x3a\x8d\x67\x3b\x2d\x5c\x61\xc5\xb7\x48\xcf\xed\xbd\x36\xda\x52\xae\x66\x5f\x15\x73\xea\xfb\x5c\xaa\x86\xbe\x7b\xf7\xf2\x05\x72\x7e\x13\x36\x08\x9e\x86\x6d\x7b\x6e\xdf\x07\xa1\xb9\xaf\x74\x7c\x02\xe5\xea\x21\xbd\x26\xde\xfb\xeb\xbd\xac\x3f\x1c\xba\xa2\x95\x69\x16\x7b\xbd\xe1\xf0\xfd\xf5\x1e\x85\x88\x33\xc8\xec\x6e\x77\x4c\x7a\xa3\x6b\x53\xe3\x96\x81\x82\xe0\x6c\x41\xe7\x65\xaa\xe8\xed\xf9\x44\x20\x6b\x50\x62\x88\x94\xe5\xcc\x65\xbb\xc5\x4c\xec\xb0\x3b\xe1\x28\x60\xf3\xdf\x2b\x2a\x0e\x71\xbd\xab\xdb\xfb\x1e\x39\x81\x3f\xf5\x3d\x30\x35\xbe\xe6\x9c\xd0\x92\xbb\x6f\x76\xc2\xaf\x3c\x84\xc6\xca\xa9\xaf\x38\x21\xdc\xbb\x12\x20\xd4\x78\x47\x66\x3e\x1f\x4b\x27\x8d\xcd\x0c\x60\xed\xdd\x1b\xfb\x6e\x82\xae\xf7\x0e\xe9\xa2\x68\x9b\x0d\x0f\xaf\xc0\xb4\xad\x44\x13\x78\x4f\xfa\xe9\x42\x53\xb1\x44\x7c\x03\xa0\x55\x82\x3c\x8d\x64\x5a\x32\x9d\x61\x28\x0d\x04\x6c\xdc\x39\x36\x52\xa8\x06\x8d\x60\xa4\x02\x17\xb1\x3f\x85\xbd\x4d\x9b\x14\xf5\x56\xa7\xd0\xa3\x33\xad\x23\xdc\x2c\x5a\xdf\x68\x32\xb0\xa6\x63\xbf\x92\x6f\x9d\x1d\xfd\x8d\x34\xff\x74\x9f\x0a\xff\x50\xe3\x26\x3b\x6d\x7d\x27\x3c\x79\x03\x6e\xbf\xc0\xd9\xb1\x7e\x15\xcc\x02\xc7\x19\x44\x49\xbe\xa1\x63\xf5\x58\x02\x16\xa1\xfe\x8e\x02\xec\x57\x5e\x86\x25\xfd\x7d\x4d\x2b\xfe\x98\xe5\x57\xf0\xda\xe1\x9b\x12\xce\xaa\x6f\x28\xc2\xee\xed\x9f\xb9\xbb\x8d\xa0\xa9\xfa\xab\x89\x89\xc5\xcf\xe4\x3b\x3a\x6d\x66\xcf\x36\x1b\x5b\x00\x97\xe4\x1d\x0d\xd4\x9b\x1f\xb1\x29\x61\x4d\xc4\x1e\x0a\x10\x66\xd2\x4c\x1e\x48\xd2\x8f\xb4\xf6\x76\xe0\x17\x1a\xa0\x5b\x48\x83\xdc\x6f\xa9\x74\x12\x66\xcd\xc7\xb5\xbd\xd1\x8d\xef\x3f\x6d\x3d\xe1\x70\xd5\x4a\x94\x3e\x51\x06\xd7\x70\x28\xb1\x62\x6e\x13\x84\x20\xbe\xaa\x3d\x4a\x31\x59\xe2\x7c\x6a\x36\xfb\xa6\x28\x1a\x7a\xa7\x8b\xa4\x18\x8b\xb1\xd1\xcf\xbd\x9b\x3a\xa6\xfd\x48\x37\x1b\x30\xbb\xe9\x7e\x49\x94\x2f\x02\xe9\x8a\xf5\x45\x5e\x71\xc9\x73\x88\xb5\x16\x47\x7c\x3a\x9f\x53\x69\xdb\xe4\x48\xf3\x7d\x71\x12\x38\x59\xd3\x68\x86\x7c\x3f\x78\x1a\x76\xbd\xac\xf1\xfd\x32\x10\xc7\x70\x79\x41\x39\xc2\xdc\xfe\x46\xd8\xb3\xbb\xa7\xde\xab\x2c\x51\x23\xdf\xf7\x37\xee\x52\xd6\x5d\x4d\xc3\xc0\x55\xff\xbe\xff\xdf\x6f\xed\x0d\xb2\xdd\xc9\x82\xd4\x23\x04\x30\x81\x5d\x07\xd5\xeb\xb9\xca\x85\xec\xf7\x34\x58\x51\x77\x42\x39\x29\xb4\x76\x3d\x55\x97\x8a\xa2\xfc\x38\x77\x26\xd5\xb1\x5b\xf5\xa3\xbd\x1c\xe1\xf4\xee\x92\xf2\xf9\x68\xaa\x9d\xaf\xdb\xbe\xe5\x0b\x0f\xfc\xd8\xf7\xbf\x35\xa8\x12\xe4\xea\x0a\x48\x2c\x2b\x3c\x82\xb2\x4a\x92\x7e\x84\x85\xbc\x99\x66\x9c\x96\x4f\x53\x9e\xc2\xbb\xa8\xf5\xb9\xc0\x50\xf0\x8f\xe1\xf0\x53\xff\x41\x9d\x0b\x57\xc0\xd2\x8e\x93\x5d\x4d\x01\x01\xaa\x76\xe4\xc3\xc0\x91\xc1\xd7\x3e\xd1\x4e\x85\xdf\xd1\x6b\x3e\x71\x7e\x2b\x06\x26\xf1\x3c\x9c\x6a\x00\x23\xc3\x5d\x96\xbe\x5f\xf8\x7e\x90\x1a\x5e\x16\xa7\x96\xdf\x2d\x10\xd6\x19\xbe\x6f\xb4\x4f\xf1\xc4\x29\x12\x70\x92\xd6\xee\x3f\x74\xb7\x38\xf8\x28\x38\x49\x29\x55\xb0\x19\x4a\x6c\x4b\x31\x21\x44\xb7\x06\x7d\x9b\xd6\x9e\x52\x33\x12\x2c\x04\x7e\xdb\x1c\x42\x5a\xcd\xf4\x5f\xb4\x43\xc3\xdc\x32\x6b\x6c\x59\x33\x1a\x43\x47\x73\x91\x48\x27\x0d\x06\xe4\xfe\x63\x50\xf9\x9d\xec\xae\x36\xf4\x10\xb6\x82\x5b\x97\xa5\x5a\xbe\x08\x4a\xdf\xf7\x20\xf2\x57\x61\xfc\x74\x48\xa5\x2d\xe9\x47\x98\xea\x12\x9f\x3a\x4a\xfc\x62\x4a\x14\xc4\x09\xd3\x51\x20\x9c\x57\xaf\xd2\x57\x41\x61\x3d\x7f\x8c\x55\xd0\xae\x52\x85\xe2\xba\x28\x8b\xcf\x5e\x22\xcd\xba\x88\xfc\x33\x28\xc6\xe7\x25\x4d\x3f\xaa\x90\x59\x97\x65\xce\x3e\x36\x8a\x0c\x6b\x45\xe0\xdd\x72\x42\xc3\x6b\x42\xc3\xeb\x7a\x96\x7c\xc6\xac\xf3\xea\x2d\xaf\x57\x22\xe3\x86\xd0\xf0\xa6\x5e\x69\x5e\x7c\x66\x26\xab\x5e\x47\xae\x94\xc8\x94\xbf\x88\xfe\x31\x28\xb6\x8e\x50\xc4\x51\xc2\x9d\xa3\xf7\x3f\x1d\x29\x05\x76\x18\xd8\xfd\x38\xf7\x71\x5c\x63\x56\x41\x38\x48\x5a\x38\xef\xbc\xab\xa8\x6f\x36\x65\xd4\x8a\x99\xa3\x60\xe5\x2a\x20\x8d\x5a\xf8\xf1\xbd\xf8\xa2\x0a\x26\xdd\x18\xe2\xee\x45\x57\xc5\x0b\x22\x7d\xa1\xf0\x27\x31\xa2\x08\xd2\x02\x3d\xc2\x6c\x2b\xe6\x99\x76\xe9\x4b\xfe\x8b\xb6\x8c\x34\xdb\x6f\xe4\x11\xf8\xf5\xc0\xd5\x03\xe0\xa0\x2b\xab\xab\xc6\xa6\x1f\x57\x78\xc7\x04\x3c\xcd\x66\xc3\x65\xab\x59\x47\xab\x60\x48\x6a\xa9\xe6\xdd\xec\xa6\x3a\x2e\x80\xb4\xb1\xf4\x0a\x24\x08\x58\x0d\x27\x25\xa0\x53\x0e\x3f\x67\x84\x6b\xd7\x33\x0a\x3c\x40\x8f\xea\x93\x90\x76\x3b\x66\xec\x92\xb7\x79\x1c\xc7\x37\x62\x41\x27\xbc\xc3\x68\x87\xb8\xec\x78\xcb\x0e\xcb\x1b\x2a\x8b\x1e\x54\xb3\xc4\x48\x02\xdd\xd4\x65\x3e\x9f\x53\x26\x9a\x81\x67\xc1\x98\x87\x8b\x22\x5b\x57\xe0\xc5\x49\xbd\x1b\x16\x1c\x27\xc0\x6b\xf9\x27\x56\x01\x4c\x3c\xcc\x3c\xf8\xe4\x7b\x1a\x70\x97\x7c\xed\x7c\xba\xa8\xc5\x59\x84\x50\xf2\x00\xad\x82\x18\x98\xbe\x57\x77\x14\x05\xf2\x06\x63\x07\x74\xb1\x6a\xb6\xd3\x32\xa9\x92\x66\x16\x4b\x0c\x37\x24\xea\x6a\x01\x6e\x25\x94\xc5\x52\xee\x1e\xaa\xd9\xd6\x39\x36\xff\x49\x8d\x37\x62\xe9\xca\xcc\x79\x03\xec\x49\x17\xbb\xca\xcd\x1a\xd8\x01\x8b\xe4\xde\x9a\xa5\x9f\xd2\x7c\x29\xe0\xed\x19\x2f\xbc\xd9\x47\x12\x18\x2f\x6a\x48\xa6\x6c\xff\xe9\xbe\xc0\x51\x3a\x05\x29\x3e\x06\x50\xce\xe6\x22\xec\x96\xad\x19\xfd\xff\x53\x7a\xc0\xa5\x9c\x74\xd9\xa0\x6c\x31\xe7\xe4\xd6\x4c\xef\xdd\xcd\x8a\x26\xde\xcf\x2f\x5f\xc0\x73\x6c\x9a\xf2\x27\xc5\x9a\xf1\xc4\xcb\xe5\xf3\xce\x9c\x53\x0f\xcf\xd7\x65\xe2\x8d\x2a\x6f\x8b\x19\x57\x76\x36\xab\xa6\x35\x0d\x28\x6c\x29\xc7\xb7\xf3\xc4\x7b\x19\x1f\x1c\x86\x07\x78\x7f\xff\x28\x3c\x5a\x0e\xe3\x51\x78\x88\x47\x27\xe1\x41\x36\x8c\x8f\xc3\xa3\xe1\x49\x78\x30\xdc\x3b\x08\x4f\x86\xa3\x38\x1c\x0d\x0f\x62\xf1\xb9\x1f\x9e\x2c\x47\xa3\xf0\x68\x28\xfe\x79\x12\x8f\x8e\xc2\x43\xbc\xbf\x17\x85\x07\x38\xde\x8f\xa1\xa9\x08\x3b\x8d\xfe\xd1\x7b\xb9\x1f\x89\x56\x8f\x46\xdf\x1d\x87\x07\xbd\x2c\x0e\xf7\xb1\x68\x0e\x1f\x84\xfb\x78\x3f\x0e\x8f\x70\x2c\xfe\x39\x8c\xc3\xf8\xc5\x41\x84\xf7\x44\xde\x93\xfd\x83\x30\xc6\x7b\xd1\x81\x68\x25\x0e\x8f\xf1\xe8\xf8\x04\xeb\x66\x4c\x8b\xfb\x91\x68\x4c\x8c\xf4\x18\x1f\x84\xa3\xe1\x1e\x34\x15\x0f\x0f\xf6\xc3\x78\x39\x14\xd3\x80\x09\xf5\x9e\xc4\xfb\xa2\x97\x93\xfd\x70\x0f\xc7\x11\x1e\xc5\x87\xe1\x11\x3e\x0e\x0f\x44\x0b\xdf\x89\xa6\xfe\xe8\xbd\x3c\x84\x4c\x31\xec\xec\x28\x3c\x1e\xc6\xfb\xe1\x09\x8e\x8f\xc2\xd1\x70\x74\x0c\xdd\x87\xf1\x50\xcc\xee\xc5\xe1\x49\x78\x84\x4f\x46\xe1\x5e\x36\x8c\xf7\x44\xab\x07\xe1\xe1\x70\x24\xc6\xb9\x37\x0a\x8f\x01\x3a\x58\xc0\xa9\xf7\xc2\xb6\xf8\x47\xef\xe5\xde\xc9\x11\xde\x8f\x4f\xc2\x43\xa8\x76\x82\xe3\x91\x18\xdf\x3e\x1e\x8d\xc2\xbd\xe1\xfe\x21\x4c\x36\xdc\x5f\xc6\x71\x78\x22\xe0\x7f\x9c\x8d\x22\x00\xff\x09\xde\x3b\x09\x8f\x05\xa8\x0f\xf1\xc1\x61\x78\x32\xdc\x3b\x0a\x0f\x5f\x98\xd6\xfe\xe8\xbd\x8c\xe3\x03\x31\x9e\xfd\x5e\x26\x1a\x1e\xc6\x23\x51\x7f\x5f\xd4\xd8\xc3\xa2\xe1\x21\x34\x3c\x14\x2d\x0f\xa1\xe5\xa1\x68\x1a\x9f\x88\xb6\x4e\xc4\xd4\x46\xe1\xe1\xf0\xe0\x30\x3c\xc6\xd0\xb4\x6e\x4e\x00\x59\x2c\x1f\xde\x3b\x38\x10\xe8\x70\x14\x1e\x63\x01\x94\xa1\x00\x8a\x80\xc7\xb1\x80\x4c\x2c\x56\xe7\xa0\x07\xf8\x20\x5a\x3a\x12\x83\x38\x1a\x0a\xa0\x60\x01\x94\xe1\xde\x48\x4c\x41\xd4\x13\x40\x79\xe1\x34\x29\x3a\x38\x02\x5c\x38\x1a\x65\x43\xf1\x43\xac\xe3\xf0\x20\x1c\xe1\xbd\x23\x31\xdc\x18\xc3\x3a\x8a\x65\xc4\xb0\x8c\xd9\x51\x78\x20\x10\x31\x16\x9f\xa3\xe1\xfe\x9e\xc8\xd8\x0b\x0f\x87\x87\x87\xe1\xf1\x77\xd0\x98\x80\x34\xe0\xd6\xfe\xa1\x68\xf4\x20\x3c\xc2\x30\x86\x11\x3e\x16\x35\x4e\xc2\x11\x3e\x09\xf7\x3f\xed\x8d\xc2\x38\x03\x94\x8e\x15\x0e\x0e\x05\x32\x0a\x14\x14\x3d\x1f\xbd\x30\x8d\xfc\xd1\x7b\x39\xda\x8f\x30\x34\x0e\x7b\xe2\x58\x54\x19\xee\x89\x0a\x23\x40\x34\x18\xaa\xbb\x73\x60\x84\x47\x02\x71\xf7\xe4\xc8\x47\x58\x0c\x10\x86\xfa\xa3\x1e\xe5\xfe\xe1\x08\xc7\x27\x51\x78\x9c\x1d\x60\x18\xe6\xb1\x98\xf7\x48\x8e\x0f\x8b\x81\x5e\x8a\x41\xf6\x00\x32\x6a\xf7\x85\xfb\x43\x18\xaa\x18\xe1\x10\xb6\x8b\x69\xe5\x8f\xde\x4b\xb1\x68\x78\xef\xe4\x28\x1b\xc6\x23\xc0\x31\x40\x01\xc0\x32\x40\x01\xc0\x32\xd8\x15\xc7\x62\x97\x9c\x64\x02\xb9\x00\x15\x00\xb9\x00\x17\x04\x06\x00\x9a\xf5\x5e\xe8\xe6\x04\x00\x8e\x46\xb0\xf7\x32\xd8\x68\x02\x62\x7b\x87\x02\xcb\xc5\x16\xde\x17\xab\x21\x00\x20\xe6\x0f\x5b\xee\xc9\x5e\x2c\xd6\x18\xb6\xdc\xe8\xe4\x40\x6d\xb9\x23\xb1\x02\x07\x3f\xaa\xcd\x06\x63\xc6\x07\x51\x2f\x13\x73\x1f\xc2\xde\x19\x0d\x05\x08\xc4\xcc\x87\x27\xe1\xfe\x8f\xc7\x02\xe9\x60\x15\x62\x35\x6f\x41\x2f\x60\xda\x40\x2f\x5e\xe8\x36\x00\x51\x05\xb2\x8b\x4d\xf9\x02\x76\x05\x8e\xe3\x83\x0c\x5c\x04\x89\x29\x8a\x3c\xd8\x6b\x40\xa3\x04\x14\x7a\x02\xa9\x8e\x61\x4b\x3c\xd9\x3f\x8a\x70\x3c\x12\xc4\x60\xff\xe0\x08\x06\x0b\x0b\x60\x5a\x54\x7b\x57\x80\xc3\x52\x3d\x40\xad\x43\x20\x00\x43\xd8\xf6\x80\xeb\x96\x3c\x5a\x6c\xe8\x3d\xd9\x3b\x8a\xc2\x7d\x7c\x34\x12\x5b\xfc\x78\x3f\xdc\xc7\xc7\x82\x48\xea\x36\xff\x00\xfb\xd3\x92\xcb\x4b\x34\xce\xf1\x6d\x4d\xcc\x4d\x3c\xed\x5f\x68\x8b\x70\xc1\xad\x39\xa8\x73\x9f\xce\x95\x5d\x63\x96\x97\x59\xc3\xc6\xd8\x10\xfa\xec\x3a\xf1\x46\x07\x87\x1e\xce\x6e\x12\x6f\xef\x70\xdf\xc3\xe2\x94\x38\xae\x5b\x67\xca\x66\x52\x50\x05\x75\xb4\xd3\x31\xb8\xd2\x93\x71\x22\x2a\xd1\xd8\x38\xde\x1f\x8f\x8e\xc7\xe6\x07\xcc\xec\x9e\x36\x4b\xed\x3a\xb2\x4a\xbc\x78\x1c\x8d\xe3\xb1\xfc\x57\xd4\x9d\xe9\xda\xbb\xcf\x2f\x05\x9c\xc4\x8b\x3d\x2c\xce\xb2\xd1\xa1\x20\xc9\x7b\xf1\xe8\x72\x18\x1f\x66\xc3\xc3\xf0\x10\x47\x62\x3b\x08\xcc\x11\xbb\x62\x94\x45\xc3\xa3\x18\x1f\x1d\x09\x4c\x12\xc8\x01\xbf\xe2\xe8\x28\x3c\xce\xa2\xe1\x28\x12\xc4\xed\x78\xb8\x1f\x89\xdd\x26\x72\xc4\xaf\x4c\x60\x75\x8c\xa3\xe1\xbe\xa0\xe7\x27\x82\x58\x9e\x48\x0a\x78\xd4\xcb\x86\xa2\x91\x03\x49\xad\x0e\x87\xf1\xa1\xc8\x00\x6a\xbb\x17\xc6\xc3\x13\x51\x59\xe0\x89\xd8\x8c\x82\x76\xc7\xb1\x40\x15\x81\x38\x47\xe1\x48\xd2\x9f\xd1\x11\xd0\x19\xd1\x97\xd8\x30\x27\x22\x4d\xfc\xca\x0e\x04\x02\x46\xf8\xe4\x48\x50\x48\xb1\x37\xe1\xd7\x71\x14\x8e\x7a\x59\x84\x0f\x8f\xc2\xc3\xa1\x18\x3c\x3e\xdc\x0b\x0f\xe4\x2f\x98\xc6\x93\xd1\x91\xa0\x26\x7b\xd1\x21\x9c\x95\x51\xb8\x27\xc0\x81\x0d\x60\xfe\xf8\x53\x4b\xde\x5c\x1e\xf9\xbf\x3f\xbf\x3c\x91\x5a\x9e\xbd\x11\x90\xec\xfd\xf0\x60\x79\x84\xe3\xc3\xe3\x4c\x8c\xef\x30\xdc\xc7\x07\xb0\x69\x81\x5c\xc2\xdf\xcb\x93\x4c\x24\x47\xb0\xd5\x87\x07\x40\xf2\x05\xf8\x0e\x96\x47\x43\x55\x6f\x78\x28\x4f\x0b\xb1\xd7\x0e\xe4\xea\x86\x07\x97\xc3\xd1\x5e\xef\xc9\x68\x0f\x28\xd0\x68\x84\x47\x40\x52\x05\x8f\x72\x84\x9d\xde\xff\x3a\x14\x22\x83\xa4\x91\x82\xc2\x6c\x8b\x73\xde\x71\xed\x09\x96\x21\x6d\xcd\x3f\x2e\x49\x16\x50\x25\xc9\xed\x23\x1c\xa3\xa9\x79\xa2\x77\x0b\x66\x8b\xd6\x30\x8a\x6b\xc3\x28\x75\xd1\x56\x7f\x27\x5b\xa2\x49\x97\x61\xad\xb6\xbd\x79\xc8\x73\x0f\xe5\x94\x0b\xb5\xed\x43\x5b\x8b\xfa\xe7\x9a\x35\xae\xbc\x10\xee\x32\xad\x9e\x27\xe5\x34\x9a\x6d\x77\x62\xd0\x9f\xeb\x4c\x79\x10\xdb\xdd\x55\x3c\xdb\x6e\x67\xdb\x64\x57\x67\x3b\xaa\x6d\x5d\x51\xa2\xe2\xb5\x6b\x0d\x21\x0c\xe4\xae\x10\x6a\xcc\x68\x72\xa2\x57\x31\x56\xab\x78\x10\x8f\xf4\x3a\x8a\x9f\xb0\x92\x05\x07\x0f\x63\xd4\xf7\xb9\xef\xe7\x1c\xae\x5b\xe1\xcf\x94\xea\xfb\xd6\x1e\x0b\x52\x1e\x98\x44\x34\xae\x3d\x1f\xae\x79\x20\xfa\x47\xce\xa5\x13\x22\x04\x02\x6f\xe3\x8a\x54\x3a\x91\xec\x2c\x1f\xf2\xe2\x23\x65\xbe\xdf\xdd\x9a\xcc\xc5\x72\x90\xfd\xa7\x61\xd3\x8b\xd2\xa4\x04\xa1\xe8\x9f\x34\x90\xa2\x53\x5e\xf5\x94\x27\x2d\x70\x68\x2d\x85\xba\x5e\xed\x5e\xf6\x73\xce\x2f\x7b\x02\x02\x3d\x21\x90\xd5\x8c\xa8\x10\x4a\x58\x90\x1b\x4f\x54\x59\xd7\x9e\x5a\x3a\x7b\x0a\xb4\x37\x6a\xe3\xfc\x37\x97\xf6\x73\xad\x57\x49\xde\x42\x08\xe7\xd6\x2f\x1d\x9a\xec\x50\xcf\x29\x3b\x3c\xee\xd8\x9d\x16\x44\xb5\x8a\x73\x37\x3e\x89\x58\xb7\x0f\xb2\x66\x25\xd5\x6a\xcf\x19\x0f\x2e\x28\xc4\x5c\x59\x73\x3a\x7f\x2b\x06\x2d\x15\xfd\x8c\xbf\xcd\xff\x80\xb0\xb8\x60\x85\x7b\x41\xf9\xd7\x2a\x7a\xe5\x93\x65\x4e\x19\x7f\x43\x33\x1e\xa0\x71\x4e\x32\x65\x9f\x5c\xe1\x94\x64\xda\x46\xb9\xda\x76\x68\x1d\xfa\x0c\x4c\xf9\x5a\xef\x86\x1a\x7a\x03\x84\x73\xf3\x1c\x3d\x98\x52\xfc\x89\x06\xb7\xca\xf0\x30\xa1\xf6\x2e\x4a\xa1\x68\xae\x11\x34\x75\x24\xf0\x52\x09\xed\x4c\x49\xde\x05\x36\x56\xc4\xa0\x9f\x9e\x21\xe9\x3e\xb7\xd3\x67\x44\x43\x8f\x26\xe1\x5b\x58\x8d\x5a\x5e\x03\x75\x4a\xb8\x7e\x37\x57\xe9\x17\x77\x4b\x0d\xfe\xf1\xae\x3d\xc7\xf1\x1a\xdd\xe6\xd2\x49\xc2\xb4\xe2\x01\xc3\x05\xc2\x15\x0f\x2a\xdb\x77\xa5\xfa\x43\x33\x24\x9f\xec\xdb\xda\xea\x52\x68\x4d\xb2\xa0\xc2\x23\x84\x57\x64\x2d\xa8\xf4\x82\xac\xa7\xf1\x6c\xcc\x05\xd0\x6e\x68\x00\x3a\x8c\x2a\xb9\x85\x07\x54\x2b\xa9\x8a\x58\x6c\x71\xdb\x6a\x86\x39\x90\xcb\xb5\xee\x22\x55\x15\x14\x24\x4b\x05\xc9\x65\x1b\x92\x70\x77\xb0\x6d\xb8\xb7\x59\x3b\xe8\xfe\xe0\x37\x93\x13\xf7\x23\xd1\x18\xfb\x58\x2f\x4c\xdb\xad\x96\x79\xa5\x8d\xcb\x4e\xaf\x02\x61\x3a\x9f\x3b\x77\xcc\x9e\x40\xeb\x54\x92\x0a\x73\xc3\x39\xac\xed\xe4\x6d\xa7\xf7\xbb\x1e\x53\xfe\xb4\xfe\x6c\x63\x39\xa9\x9b\xf9\x4c\x5c\x03\x8e\xd7\x28\x71\x3f\x33\x8e\x70\x4a\xa6\x5e\xe8\x74\x51\x27\x01\xd8\x4b\x58\xc1\x83\xa9\xed\xa4\x75\x5f\x3b\x43\x1e\x9a\xd5\xcd\x36\xba\xdc\x49\x86\xae\x13\xca\x07\x35\x0a\x6e\x2a\xa5\x76\x16\xf7\xa4\x7a\x1f\x96\x4f\x5f\xe0\x2a\xaa\x32\x9d\x81\x07\xa9\x4a\x2a\x3f\x6b\xbe\xff\x1e\x2f\x97\x41\x8a\x6a\x7e\x77\xf3\x45\x60\x6f\x06\xd1\x6d\x19\x18\xb7\x2f\x08\x17\x01\x44\xf6\x59\x52\xb8\x6c\x95\xcf\x21\xde\xd1\xc0\x2b\xd8\xbb\x92\x0a\x2a\xb1\x04\xb7\xd9\x5d\x1a\x55\x1b\x35\x6b\xc9\x03\x8e\xc6\x0c\x1c\x0a\x49\x5f\x29\x4e\xf7\x7f\x6c\x36\xaf\xb8\xeb\x97\xe7\x9f\xd4\xf7\xeb\x41\x06\x5f\x71\xe4\x6a\xe1\xa7\x33\xb4\x73\x4b\x83\x3d\x9b\xda\xd2\xcb\xd6\x96\x65\xe8\xf6\x07\x1a\xb0\xba\x33\xe6\xc0\x4b\x65\x8c\x4b\x84\x4b\x77\xb6\x62\xee\x16\x10\x9d\xb7\xe8\xbe\xcf\x03\x84\xb3\x00\x61\xe3\xa0\x2d\x94\x33\x73\x7b\xc8\xec\xcd\x34\x42\x35\xa6\x60\xf5\x37\xed\x4f\x38\xd6\x9a\x93\xa5\xe8\x96\xfa\xfe\x0f\x82\x7a\xcf\xb0\xbc\x5d\xb4\xbe\x0f\x78\xcd\x42\xc0\x6b\x21\x5d\xdd\x87\xe7\xd0\xc0\xc1\xb1\xd4\x57\x06\x25\x5e\x22\x77\xdc\xee\x35\x29\x71\xe1\x04\xb6\x6e\x2a\x98\x99\xb9\x44\x2a\x03\x6d\x68\x21\x9d\x3f\x28\x8e\xf2\x6e\x97\x0e\x3b\xb4\xd5\xf5\xf1\x7b\x48\x2c\xda\x16\x09\x56\x19\xa7\xe4\x65\xd8\x3e\x6d\x31\x17\x47\x6c\x2a\x72\xb4\x6f\xfd\x1f\x05\xcb\x2e\x29\x8c\x72\xcd\x0a\x6a\x6e\xb1\xbc\xd7\x02\xf1\x77\x16\xfe\x0c\x67\xa1\x87\xf0\xba\xb3\x8c\x3a\x46\xe5\xf6\xcd\x7d\xbf\x9f\x21\xc7\xb8\x51\x10\x38\x69\x1a\x94\x83\x51\x83\x28\x94\xf9\xbe\xc7\x0a\x06\xd7\x10\x6b\xdf\xf7\xe0\xaf\x5c\xbd\x15\xf9\xef\xa9\xf7\x56\xba\x7c\xf6\xde\x68\x77\xcf\xde\x0b\xe5\xe7\xf7\xa9\x76\xf3\xec\x49\xd7\xca\x8e\xf5\x62\x36\x8d\x67\x68\xf2\x6e\x2a\xfe\xd6\xaf\x17\x67\xc9\xab\xe9\x52\x9c\x64\xaf\x68\xb0\x07\x8f\xb5\x55\x98\xc7\x75\x58\xad\xcf\x2b\x5e\x06\x31\x8e\x51\xb2\x46\x78\x4e\x9e\xd2\x60\x85\x17\x08\x5f\x92\x39\x44\x91\x9b\x6f\x36\xb9\xef\xe7\x77\xdd\x2f\x13\x78\xaf\xde\x59\x44\x5e\x31\x13\x42\x2e\x51\xa9\x6d\x51\x68\xfd\x12\x9d\xe1\x4b\x78\x5d\xd1\x84\xd5\x58\xba\x0f\xbf\xad\xdf\x2a\x28\x0e\x44\xfc\x74\xaf\x1e\xec\x51\x5b\x51\x7d\xd6\xf6\x63\x79\xd8\x4a\xdf\x4c\xf5\xbb\x82\xe9\x4c\x5f\x16\xdc\x6e\x6b\xac\xff\x76\xbb\xc5\x57\xe4\x5c\x31\x1a\x57\x9d\xef\xbb\x1b\xb8\x38\x23\x5c\x30\x19\x73\xbc\x6a\x6d\xd9\x42\x8b\x00\x37\xea\x35\xd9\x39\xae\xf1\x0f\x85\x1c\xe1\x43\x6e\x51\xf4\x74\x57\xb6\xc0\xa5\x9a\xd5\x55\x83\x7b\x10\x07\x5e\xdb\xb3\xce\xa7\x0b\x0f\x8d\xbd\xe4\x1c\x5c\xd1\x00\xd1\x83\x2b\x7e\xc7\x3d\x4d\x8a\x69\xb8\xc8\xcb\x8a\xc3\x12\xa0\x84\x86\xe9\x4a\x10\x0a\xb9\x22\x29\xd2\x2f\x39\xa5\xcd\xd2\x9f\xb1\x9d\xc2\x7a\x71\x5d\x32\x21\x36\x83\x25\xb0\x05\xda\x4a\x03\x0a\x99\xea\x78\x58\xe1\x4e\xdb\x9a\xb9\x5b\xc8\x23\x56\x4d\x06\x61\xf5\x9d\x2e\x38\x2d\x3d\xc1\x3e\x59\x8f\x28\xbc\x46\x5d\xac\x3d\x4a\x9f\x58\x23\x3f\xe9\x3e\xbe\xff\xdf\x9f\x1d\xdb\x13\x6b\x60\xe8\xf8\x00\x42\xbe\xdf\x7f\x28\x89\xf2\xfd\xa0\xef\x76\xb8\xd9\x68\xeb\x45\x37\x55\xf7\xe3\xfa\x54\xe1\x3a\x0e\x04\xda\xcd\xe9\x1a\x93\xe4\x6e\x96\xc0\xfb\xca\x43\x86\xd0\x5e\x72\x79\x9d\x37\xe7\x08\x17\x70\xdc\x77\x3a\x70\x46\xe3\x1f\x21\x68\x8c\x02\x72\xd9\x42\x67\x74\x5b\x04\x08\xff\x42\x03\x84\x79\xb0\xe3\x70\x34\x25\xec\x09\x69\xbd\xb8\x70\x63\x9e\xdf\x72\x16\xcc\x49\x43\xa4\x67\x1d\x66\x82\xb8\x24\x5f\x56\x9f\x2e\x80\xb5\x4a\xca\xa2\xe0\x28\xac\xb7\xd3\xbb\x7d\xcf\x7a\xbd\xe2\x13\x2d\x17\xcb\xe2\x73\xd2\xfb\x94\x57\xf9\xf9\x92\x8e\xdf\xb3\xed\x7b\xf6\x9e\x75\x96\x36\x4f\x63\x55\xc6\xf9\xb2\xc8\x3e\x8e\x45\x0e\x10\x7f\x30\x0b\xe9\xe5\xec\x92\x96\x39\x87\x64\x25\x1a\xf5\x62\x7a\x35\xde\xd5\x5d\xaf\xa7\xbd\xa8\x0f\xd3\x65\x7e\xc1\x92\xde\x30\x0a\xe3\xd1\x01\x54\xd9\xb6\x46\x12\x0a\x9e\xf4\x42\x8e\xa7\xa3\xe2\xe8\xce\x8a\x9f\x87\xb1\xac\x29\x65\xb7\x5e\x14\x46\x87\xf7\x54\x18\x35\x2a\xdc\x3d\xb2\xcf\xc3\xbd\x66\xf9\xe3\xa3\xbb\x2b\xec\x37\x2a\xdc\xd3\xfe\x41\xa3\xf8\xde\x7d\x03\x3a\x6c\x56\xb8\x67\x3c\x47\x8d\xf2\xfb\xf7\x55\x38\x6e\x54\xb8\xbb\xf4\x49\xb3\xf4\x7d\x0b\x10\x47\x8d\x1a\xf7\x56\x68\xae\xf1\xe1\x7d\x4b\x10\x37\x17\xf9\xbe\xf2\xcd\x45\x3e\xbe\x6f\x11\xe2\xe6\x2a\xdf\x3b\xa4\xe6\x3a\x9f\xdc\xb7\x0c\x71\x7d\xa1\xe3\xbb\x0b\xd7\x57\x39\xbe\x7f\x1f\xc4\xc7\x8d\x1a\xf7\x4e\xf9\xa4\x59\xe1\xbe\x39\x8f\xa2\x46\x8d\x3b\x7b\x30\x01\x1e\x64\xa5\xab\xb4\xbc\xc8\x99\x8c\xf2\x00\x68\xae\x48\x8e\x6a\x4c\x08\xc1\x77\x37\x05\x35\x6b\x6d\x89\xc6\xff\x6c\x53\x32\xfe\x84\x6c\xc6\x50\xbf\x3b\xb7\xc4\x32\xaf\xcd\x7a\x74\x47\xd1\xc5\xe7\x9d\x00\x7a\xcf\x42\x23\xac\xf7\xaa\x4f\x17\x9d\xf4\xfb\xbc\xe0\xbc\xb8\x4a\x7a\x11\x4c\x47\x4d\x6f\x6c\x67\x6c\xe6\xd6\xeb\xad\x0a\x15\xe9\xbd\x97\x9e\x57\xc5\x72\xcd\x25\xa9\xd6\xe0\x85\x0f\x5e\xac\xe4\xcf\x66\xff\xf7\x1c\x16\xcd\x53\xc1\xf6\x55\xd2\x65\x2a\x04\x52\xd9\x3c\xbd\xe6\x9a\xb2\x67\xf0\xf2\xf9\xbe\xd3\xa2\x03\xf9\xef\x07\x4a\xeb\xc9\xb4\x72\x5d\xa0\x3b\x75\xfb\xd6\xff\xdd\x5f\xb6\x01\x12\x1d\xcc\x03\xf7\xc2\xba\x4e\xe5\x3e\x58\xed\x58\x87\x4e\xd8\x34\xfb\xb4\xed\xcb\xa5\x3e\x88\xbe\xb0\xeb\xa6\x3f\x5a\xd3\x4f\x7a\xf6\xbd\xfc\xf0\x20\xfa\x02\xf7\xc4\xbf\xa8\x7b\xfe\x77\x15\xfe\x5f\x05\xac\x42\xf0\x34\xfb\x78\x51\x16\x6b\x36\x1f\x66\xc5\xb2\x28\x93\xde\xff\x59\x2c\x46\x07\x7b\xe9\x58\xa2\xbf\xd8\x9b\xc3\x32\x9d\xe7\xeb\xca\xa2\x9f\x1e\xe7\x79\x71\x2d\x58\x98\x9c\x5d\x24\xba\xe8\x79\x71\x5d\x1b\xde\x1d\x45\x6c\x7f\x8b\x71\xd7\xe6\xef\xf5\x60\x65\x4d\xb2\xda\x76\xd7\x43\x85\xb2\xba\xd4\x55\xce\x86\x66\x7f\x1f\xb4\xf8\x26\xa9\xab\x96\xa8\x91\xce\xe7\x30\x12\xc3\x33\x34\xf7\xa7\x40\x12\x5b\x95\x2e\x97\xf9\xaa\xca\xab\xfa\xde\xed\xc4\x00\xe9\xf5\x40\xb4\xbb\x73\xdd\x9b\x45\x76\xaf\x36\x2f\x56\x72\x5c\xf7\xac\xb4\x5b\xae\xb9\xca\x92\x72\xb9\x34\xba\x4e\xcb\xda\x74\xc9\x50\xb2\x7f\xf5\xf4\xe4\x40\x1e\x34\xc3\x46\xd1\x1d\x93\xb4\x67\xda\x6e\x7a\xad\xe6\x6b\x26\xf9\xff\xca\x94\xc5\x80\x1e\x36\x63\x55\xb2\x45\xa0\x8a\x95\xbb\xa4\xdd\x87\xcb\xff\x37\x10\x54\x4c\xc5\x2e\xdc\xbd\x4b\xf5\xbf\x37\xb1\x07\x2c\x92\x53\xcc\x4e\x4b\x89\x58\x8e\x60\x17\x87\x7b\xe6\xbf\x2e\x92\x66\xd8\xe6\xce\x33\x3a\x3a\x3c\x3c\xaa\x33\x2b\xd7\x55\xab\x0b\x97\xf3\x96\x85\xaa\xab\x8e\x42\xc7\xcd\x52\xf1\x75\x7b\xb4\xf5\x12\xa3\x76\x89\x51\xbd\xc4\x5e\xbb\xc4\x5e\xbd\xc4\x7e\xbb\xc4\x7e\xbd\xc4\x41\xbb\x44\x63\xa4\x87\xed\x12\x87\xf5\x12\x47\xed\x12\x0d\xc0\x1d\xb7\x4b\x1c\xd7\x4b\x9c\xb4\x4b\x9c\x34\x20\x16\x75\x80\x2c\xaa\x97\xd1\xec\xe6\x0e\x46\x6c\x27\x17\xba\x5e\xaa\x5d\x90\x57\x7c\x08\xca\xc3\x21\xbf\x59\x51\xe5\x51\xab\xc5\x60\x8f\xcc\x31\xa7\x4e\xb4\xa1\xdd\x3e\x5b\xd3\xe2\x59\x4f\x33\xca\x9d\xec\xa2\x45\xdc\xdc\xdd\x82\xc3\x51\x8b\xc7\xbc\x9f\x8f\x6a\xf0\xe2\x0d\x34\xb7\xfa\x0d\xd3\xa7\xcb\xf4\xcb\xdf\x49\x0f\x02\x08\xf6\xa2\x30\x3a\xa6\x57\xbd\xff\x43\x29\xed\x62\x41\xa2\x30\xae\x4f\x1d\x0e\x73\x7a\xa5\x8e\x74\x91\xdf\x80\x6d\x43\xea\x59\x2c\x8b\x94\x27\xad\xdd\xdb\x14\x68\x54\xb1\x26\xf1\xaa\x35\x88\x21\xa9\xea\x48\x2b\x3b\xd2\x96\x1d\x69\xe7\x0f\x16\xcb\xb6\xf5\xee\x21\xb7\xd9\xbf\x93\x58\x76\x25\x2e\xbb\x12\xcf\x1f\x2c\xce\x59\x0a\xb3\xca\x59\x5d\x12\x48\xf5\x8b\xce\xa4\xa7\xf3\x47\x55\x2f\x67\xd2\x4e\x1c\xb0\x21\xad\xb3\xad\x0f\xad\xe1\x2e\x50\x45\xef\xed\x35\x76\xda\xa8\x38\x5d\x55\xc1\x31\xba\xaf\xdf\x1d\x75\xa0\xe7\xff\x4b\xf7\xf5\x91\xde\xc8\xe8\xe3\xbd\x1a\x00\xa2\x2f\xe4\xdf\xce\x93\x49\x79\xac\x8a\xe6\xf4\xa2\x3e\x88\xda\xe1\xd4\x2a\xb5\x15\xff\xc4\xd1\x43\x9a\xde\x3b\x7c\x58\xe3\x6e\xb9\xad\x9e\xda\xff\xdf\xa6\x24\xb0\xc4\xc4\xa6\x54\x98\x72\x55\x0d\xa5\x9e\x3a\xe9\x79\xab\xb2\xb8\xc8\xe7\xc9\xd3\x9f\x9f\x5f\xa5\x17\xf4\x9d\x6e\x31\x7c\x99\x67\x65\x51\x15\x0b\x1e\x7e\x9d\x56\x79\x06\xb9\x01\x34\x94\x17\x8c\xc4\xc8\xdb\xc5\x79\xa8\x91\x9c\xb4\x07\x7c\x47\x21\x83\xd0\x36\x74\xe6\xdf\x36\xd6\xd1\xbd\x63\x8d\x8f\x1f\x32\x58\x5b\xaa\x39\xda\xd1\xd1\xdf\x37\xda\xbd\x7b\x47\x3b\x3a\x7a\xc8\x68\x6d\x29\x7b\x0e\xd7\x83\x8f\xfe\x6d\x43\x8e\x70\xef\x2a\x2f\xcb\xa2\xbc\x0b\x2d\x24\xb7\x39\x8c\x71\x2f\xbe\x87\x23\x35\x65\xea\x03\xd7\xbc\xe0\xdf\x87\x17\x0f\x1f\x76\x8c\x7b\xc3\xfb\x86\x6d\xca\xd4\x87\x7d\x5e\xf0\x4b\xa9\xad\x69\x80\xff\xdf\x62\x62\xc3\x87\xcc\x6c\x58\x9f\x1a\x5c\x03\xf5\x6a\x74\x05\x77\xa4\xc6\xc7\x9d\xc9\xa3\xa3\x7a\x72\x03\x2a\xed\x3c\x0d\x9e\x76\x8e\x00\x6d\xfd\xec\xd3\x80\x33\x0c\xa2\xfe\xaf\x91\x61\x0f\x6d\x9e\x66\x1f\x1f\xaa\x67\x6c\xf3\x80\x35\x3d\xa3\x66\xf6\xc2\xa6\xe8\xa1\xa2\xf7\x62\xf7\x53\xcb\x11\xff\x5a\x55\x6a\x5b\xf5\xab\x07\xd3\xd0\x2c\x37\xd4\x9e\x77\x6b\xcc\xeb\x33\x68\x42\x67\x17\x18\x54\xb8\x62\x59\xa9\xae\xe5\x52\x83\x95\x9e\x0a\xeb\xec\xaf\x9c\x56\xb6\xcc\x57\x02\xda\x19\x0f\x22\xdc\x53\xff\x47\x75\xfd\xd8\xea\xba\x06\xb6\xa1\x4e\xb8\x47\xe7\x75\x17\x68\x35\x38\xa0\xa5\xda\x20\x87\xe6\x45\x68\x22\x4d\x9f\x70\xaf\x23\x0b\x7e\xa9\x09\xc3\x0c\xcc\x5a\xea\x51\x9b\x04\x3d\xec\xe8\x8e\xfb\x4d\x3b\xca\x4a\xec\xf4\xac\xfb\x32\xa1\x7d\xe7\x0a\x8c\xa2\x8c\x88\xad\xd8\xf8\x7c\xb9\x4c\x7a\x9f\xd2\x32\x18\x0e\x6d\x9e\x54\x75\xe2\x9e\x6b\x85\x2d\x61\xac\x1f\x11\x28\x6d\xa3\xf9\x6c\xb5\xa0\x72\x6a\xf4\xbb\x63\x30\x26\x14\x77\xe7\x70\x4c\xee\x03\x06\x14\x85\xfb\x3b\x86\x64\x5b\x31\x83\x8a\xc2\xfd\x5d\xc3\x82\x51\x39\xb1\xc4\xdb\x30\xfb\xdf\xe9\xb2\x01\x99\xbf\x13\xf0\x57\x69\xf5\xd1\x9d\x16\xbe\xa3\x48\xe7\x02\x41\xe0\x0e\x67\x47\xcf\xef\xdb\xd5\x5f\xca\x70\x97\x29\xb8\x8f\xda\x6c\x58\x9f\x10\xe3\x34\xc4\xf5\x9d\xf4\xfe\x7d\xcd\x54\xd4\xc3\xde\xfb\xf7\x43\x0f\x61\xef\x02\x7c\x65\xd4\x8b\x0e\x87\xbb\xcb\xa6\x3b\x9b\xa5\xb2\xc4\xb8\x24\xa5\x31\xbb\x2b\xb0\x63\x3e\x2a\xbd\x6b\xdb\x60\x3f\x39\xf6\x9c\x9e\x9a\xb9\xa9\x5b\x95\x19\x37\xd3\xbd\xd2\x5a\x5e\xbc\xe4\x01\xba\x55\x56\xe3\x10\x7f\xd9\xf7\xfb\x1f\xb8\xef\x07\x19\x0d\xae\x78\x80\x10\xfe\xc0\x49\x3f\x72\x6c\x35\x2e\xea\xef\x1b\x94\x49\xad\x8c\x1a\xab\xed\xdf\x02\x8a\xbd\xf4\xbc\xe2\x65\x9a\x71\x0f\xdf\x5e\x50\x9e\xf0\x2d\xc2\x3b\xcb\x5e\xf2\xab\xa5\x2a\xd7\xf6\x47\x4a\x43\xdd\xd4\xbd\x96\x45\xdb\xbb\x3a\x61\xc5\x9c\xb6\x3b\xb1\x16\xcf\x1d\x51\xc7\xe6\xf9\x27\xe7\x25\xbc\x1b\x58\x2c\x14\x43\xc6\x36\x96\xc0\x56\x74\xed\xc6\x8a\xe1\x9d\x4e\xdc\x8d\x03\x20\x3e\x11\x68\x91\x70\x13\x95\x48\xba\x9e\x59\x04\x26\xc6\xea\xcf\x34\x78\xac\xa6\x01\xe4\xb4\x02\xa7\x94\x9b\xcd\xcf\x34\x30\xce\x2f\x45\x0a\xbc\x81\xf8\xc4\xf1\x63\x2e\xd0\xca\xb5\xb8\x31\x83\xa1\x01\xba\xed\xd7\x6d\x76\xf3\x45\xd0\x0f\xa8\x6b\x8d\xcb\x77\x04\xd3\x7b\x22\x43\x59\x66\xe9\x72\xd9\x4b\x7b\x60\x27\x57\x8f\x66\xe9\xa1\x2d\x44\x66\xc4\x14\xc9\x67\xf0\xce\x98\xc9\xad\xf4\xd1\x04\xce\x68\x0c\x20\x09\xc5\x01\x23\xd3\xdb\x8f\xf4\x26\xf1\xd2\xf9\x5c\xbd\x0d\x74\x97\xc5\xc6\x3e\x93\xc1\x24\x5b\x56\xb3\x98\xc1\x2e\x92\x0f\x9c\x38\xc2\x25\x89\xc6\xe5\x29\x1f\x97\x83\x01\x62\xd3\x72\xe6\x58\xd2\x96\x33\xed\xa0\x4c\x1b\x30\xcb\x98\x8e\xab\xf5\x72\xf9\xd4\x81\xef\xed\x16\x8d\x5d\x0b\xf1\xa2\xcb\x03\x13\xc4\x3b\x75\x66\x38\xe5\xca\xad\x69\x33\x15\x7c\x9b\x16\x53\x3e\x43\xf8\x05\x0d\xb8\xfa\xf9\x93\xb2\x1f\xde\x62\x39\xfb\x92\x56\x94\x77\xcc\xbf\x0b\x90\xba\x4e\x73\xe0\xad\xea\xb5\xd7\x15\xda\x33\x8e\x7d\x67\xa1\x7f\x4f\x6e\xa3\x84\x6f\x13\x3e\xee\xf0\x76\xc8\x9a\x7e\x1e\xb8\xf5\x1e\xca\x67\xb8\x30\x8e\x29\x21\x72\x9a\x13\xe4\x48\x7e\x8c\xe9\xb4\x98\x6d\x36\x81\xf8\x03\xb1\xc3\xc5\x8f\x69\x3e\x23\xa9\x74\x5a\xba\x9d\x21\xdf\xcf\x03\x6e\x7d\x1d\x60\x86\x70\x09\x69\x32\x16\x9e\x26\x3d\x31\xfe\xcc\xc9\x2d\x98\xc6\x27\x2d\x5f\xae\x2d\x53\xea\xa8\xd3\x94\x3a\x72\x4d\xa9\xa3\x59\x72\xbb\x55\x0f\x1d\x04\xf5\x1b\xeb\x4d\x2a\xe8\x43\x7d\x8b\x5e\xa8\xfd\x99\x59\xd7\x5e\x26\xd7\xf1\x6b\x8c\x6e\xb7\x49\x69\xfd\x7e\x74\xbb\xbe\x3a\x17\x14\x18\xaf\xe5\xdb\x93\xad\xb5\x5a\x94\x41\x1a\x03\xef\x35\xc4\x94\x95\x41\x75\x7f\x5f\xe7\x25\x15\x5b\xec\xe9\xeb\x97\xbd\x62\xd1\xab\x8a\x2b\xda\xfb\x98\xb3\x79\xe8\xa1\x2d\xce\xaa\x2a\xb9\xe2\x58\x5a\x68\x3e\xa9\x2a\x17\x2c\x1f\xf8\x66\xd3\x22\xdd\xd2\x0a\xf4\x6f\x84\x1e\x16\xe0\xaa\xbb\x6e\x03\x07\x67\x6c\x87\xe7\xb3\x71\x3f\xee\x70\x06\x07\x4e\xc8\xea\x49\x62\xb8\xb8\xed\x94\x8d\xf4\x23\xfc\xa6\x66\x4c\x78\xcd\x83\xdb\xf6\x00\xe0\x90\xf9\x07\x04\x2c\xb1\xbe\xdb\x92\x35\xc7\xae\xeb\xb6\x64\xc5\x71\xb7\xe7\xb6\xe4\x9c\xe3\xae\xe1\x27\x6c\xab\xf6\xec\x1f\xdc\x8d\x1a\xb7\xc3\x33\x8e\x28\xf8\x9a\x93\xe0\x13\xef\x70\xba\xf2\x17\x8d\xff\x6f\xb7\xe0\x71\xc8\xbe\x83\xaa\xb9\x45\xad\x28\xb8\x45\x35\x2f\xa3\x1c\xc7\x5d\x85\xef\x17\xf0\x68\x0a\x5e\x4a\x65\xb6\x56\x2a\x23\x16\xa6\xf0\x7a\x4a\x87\x1f\x33\xb9\x4b\x99\xbb\xc4\x2b\xc2\xf5\x53\x39\x13\x86\x8c\x10\xb2\x9a\x4c\x67\xc9\x0a\xcf\x09\x77\x7d\xb5\x5e\xda\x02\xf3\xc9\xed\x36\x99\xe3\x73\x31\x28\x79\x56\x5d\xd9\xcc\x73\x91\x79\x0e\xcf\x1a\x25\x5c\x5e\xda\x33\xf2\xc2\x0d\x74\x72\xa3\x3e\xf4\xe6\xba\xe0\x10\x21\x09\x9c\x9b\x80\x05\xf9\x56\x1c\x3a\x41\x9b\x67\x10\x1b\x1b\xd7\x5c\xf0\xac\x27\x97\x7f\x9f\x0b\x9e\xcb\x1d\x2e\x78\x2e\x3b\x5d\xf0\x34\x1f\x87\xa5\x3c\xb8\x51\x21\x81\xb2\x09\x04\x04\x81\x18\x33\x49\xf3\x39\x28\xd8\x79\xeb\x77\xbd\xda\x02\x5c\x5a\xa2\x2b\x9b\xef\x97\xd6\xe6\xfb\xc2\x35\x75\x17\xe7\x51\x45\x05\x21\x55\x26\xef\xb9\xb2\x8f\x5f\x6b\x7b\x77\xc7\xb4\xfd\x52\x5b\xbc\x5f\x61\x6d\x05\xbf\xd8\x6a\x8c\xff\x7b\x31\x58\x3b\xd1\x95\x3e\xc6\x13\xc1\x24\x41\x82\x89\x9e\xe7\xb8\xab\x0a\x4a\x12\x94\x4e\xf1\x52\x14\x97\x09\x08\x7f\x12\x74\x54\xfa\x1a\xc0\xb7\x32\x56\x19\xd8\x14\xe3\x77\x9c\xdc\xb2\xe2\xf1\x9a\x17\x2e\xbd\x6b\xd3\x99\xb8\x93\xcc\xc4\xf8\x5b\x0a\x4e\xf9\xe6\x79\x95\x15\x8c\xc1\xa3\xcb\x2d\xce\xe0\x91\x6b\xf2\x14\xcf\x8b\xab\xe4\x33\xc7\xcb\xfc\xbc\x4c\xcb\x9b\xe4\x31\xc7\xf0\xac\x33\xf9\x83\xe3\x45\xce\xe6\xcf\xb3\x82\xd9\x73\x39\xb9\x91\x0e\x90\x93\xd7\x1c\x73\x7a\xdd\xe5\xe7\xf5\x5f\x4b\x0d\xe4\xae\xae\x79\x9d\x84\x5d\x2d\x09\x82\xde\xd5\x35\x9a\x30\x9d\x25\x29\x5e\xd7\x77\xf5\xca\x16\x58\x8b\x8d\xbb\xc6\x0b\xbb\xab\xe7\x36\x73\x21\x32\x17\xce\x56\x55\x1b\x55\xbe\xa5\x33\x4f\x4a\xb7\x3b\xf7\x6b\xed\xe5\x69\x37\x3a\xab\x60\x33\x1d\x58\xbc\xd2\x58\x3c\x37\x58\x3c\xbd\xe3\x55\x78\xed\xa9\xaf\x79\xc1\xb7\x0c\x32\x10\x22\x20\x82\xb2\x32\xb5\xfa\xfb\x97\x4d\xbd\x20\x76\x96\x0c\x96\x45\x2e\x9a\x5e\x96\x96\x63\x6b\x58\x34\x67\x59\x2a\x77\xdd\x6e\xb7\x49\x8a\x33\xbb\x2c\x0e\x29\xcf\x44\x66\xd6\x5e\x16\x35\xbd\x07\xad\xcc\xe3\xda\x9b\x60\x13\xed\x00\x35\x5e\xab\xba\xeb\x51\x99\x30\x81\x7f\x66\x3d\xf4\xa0\xdc\x25\xc9\xed\x92\x40\xa9\xbf\x7d\x41\x34\xc8\x6b\x4b\x32\x9d\x25\xac\x0d\x34\x18\x80\x57\x07\x94\xc3\x44\x5a\x37\x7e\x8d\x48\xfd\xcd\xb8\xe5\x13\xda\x96\x65\xb9\x18\x8a\xd2\x03\x18\x91\x57\xcc\x3b\xd9\x99\x83\xa7\x77\x87\x55\xb9\x1f\xe2\x35\x48\x97\xc8\x89\xc2\xb9\xad\x47\x9d\x12\xe0\xe7\xc5\x77\xfc\x6a\x99\xfc\x46\xb7\xf8\x9a\xb7\x23\x2b\xfc\x0b\xf8\xc9\x3a\x33\x3e\x0e\x5c\x11\x45\x4b\xc1\x26\x0e\x75\xb4\xd9\xd4\x9f\xff\x22\xdf\x7f\xec\xfb\x6d\xbe\xf3\x1d\x0f\xe7\xc5\x55\x08\x42\x45\x70\x2b\x98\x43\x60\xf1\xb6\x48\xc5\x1e\x11\x12\x27\x0b\xe2\x13\x84\x59\x70\xb4\x8f\xc2\x8a\xf2\xe7\x57\x57\x74\x9e\xa7\x9c\x22\xf7\x4c\x94\x9e\xf0\xbd\x75\x45\x7b\x15\x2f\xf3\x8c\x7b\x63\x1e\x7e\xf8\x40\xab\x97\xc5\x7c\xbd\xa4\xa4\x1f\x29\x1f\xdc\x79\xc0\x82\x08\x21\x5c\xc0\xaf\xa3\x08\xa1\xee\xe8\xfb\xe0\x50\xd7\x36\x30\xa1\xc9\xed\x9c\x2e\xd2\xf5\x52\x6c\xcf\x2d\xa8\x03\xc4\x07\x29\xf5\x2f\xa5\xb1\x80\xc0\x8a\xd7\x7c\xb3\x29\x74\x06\xa6\x21\xbd\x5e\x15\x25\xaf\x88\xa9\x56\x1f\xba\xa3\x20\xa8\x69\x5b\x74\x35\xa6\x5d\xd5\xa5\x55\x95\x5f\xb0\xcd\xc6\x45\x56\x1b\x2c\x25\x1e\xf3\xd3\xe6\xca\x8f\xf9\x60\xd0\x8a\x71\x32\xe5\x33\x13\x8e\xbd\xec\xe5\xac\xc7\x90\xea\xc0\x3a\xbc\xbb\x4c\xab\xd7\x9f\x99\xd6\xda\xc8\xe5\x60\xb8\x44\xda\x63\xa5\x90\xec\x9d\x27\xc2\x98\x85\xe9\x6a\xb5\xbc\x91\x4b\x66\x7a\x42\x5b\x67\x16\xf7\xac\x17\x0b\xe7\x01\xc7\x5e\xea\x75\x11\xbf\x42\x47\xd7\x28\x89\x58\x3f\xf0\xac\xc9\x82\x12\x85\x69\x1d\xee\xc1\xed\x16\x35\x81\x6b\x87\xd0\x4c\xdf\xe5\x0b\x90\xbb\x7e\x00\x77\xb9\x01\xa4\x58\x20\x08\xe4\x7d\xf8\x40\xf8\xf6\x9e\xe9\x99\x25\x2e\x65\xef\xf0\x36\x57\x7a\xd2\x3c\x33\xde\xc0\x7d\x3f\xe0\xd6\x37\xb8\x13\x33\x3f\xc2\x65\x4d\xcb\x32\x66\xa7\x1c\x62\xe1\x94\xcd\x48\xef\x8e\x4a\xb1\x30\x1a\x26\xe5\xad\xba\x1d\x8a\xc1\x3e\x04\x16\x45\xc7\xb2\xb3\x16\x32\xe8\x73\x46\xa2\x01\xd5\x81\x75\x8e\xf1\xd0\xf8\x35\xf5\x5e\x1b\x4f\x27\xf0\xea\xdc\x81\x14\xf8\x51\xad\xa5\x80\x6b\x47\x84\xbd\x97\xe9\x0a\x2a\x6c\x36\xde\x5b\x2a\xeb\x4e\x24\x81\x5e\x94\xc5\x55\xc0\x50\xe2\x3d\xd6\xa8\xa4\x0a\x3e\xfa\xbf\x83\x49\xf2\x43\xbe\x79\x8e\x18\x0f\x26\xc9\xf1\x26\x3e\xdc\xec\x8d\x50\x30\x49\x9e\x2c\xd3\xab\x15\x9d\x23\xd9\xc2\x7f\x3c\x0a\x39\xad\x84\xa8\x3f\x91\x73\x4b\x24\x05\xdb\x6e\xef\xc5\xb3\x7b\x16\x52\x63\x61\x1c\x1d\xa2\xb1\xc5\xad\x6f\x54\x1d\x07\x6c\xe7\x39\x9b\x6f\x36\xe5\x03\xdb\xdb\x3f\x10\x68\xdd\xf5\xe8\xfd\x2d\x88\x0e\xbe\xaf\x23\x40\x36\x73\x02\x6f\x51\x14\xa0\xfa\xde\xb9\x72\x38\x25\x12\xb0\x35\x5c\xce\x52\x6e\xa3\x47\xd5\xf5\xb4\x38\x23\x95\xef\xb7\x4e\x96\xdb\x2d\xb8\x39\x30\x44\x47\x50\x8f\x2a\xa0\xd8\xbb\xf6\xf0\x2d\x65\xeb\x2b\x5a\xca\x47\xae\xb1\x52\x85\xd1\x2d\xc2\x1a\xcb\xfa\xb1\x8d\x06\x7e\x4d\x08\xa1\xca\x27\x81\x09\xdb\xd1\x8f\xb7\xdb\xa0\xee\x23\xb5\x16\xee\x6a\x1c\xf4\x03\xe8\x92\xa2\xcd\xa6\x03\x52\x41\x41\x04\x85\xf2\xa6\xd2\xed\x4e\x4f\xaf\xc9\xcc\x03\x67\xd4\x80\xbd\x05\xf2\xfd\x12\x9e\x89\x06\xd9\xa4\x82\x0e\x6e\xa5\x58\xb1\x56\x43\x8f\x70\xd7\x44\x18\xfe\x5c\xe6\xdc\xbc\xe0\x4d\x64\xe4\x1f\xb4\xc5\x6b\xd2\xa5\xee\x6b\x07\x94\x6a\x45\x8e\xca\x49\x29\x76\x72\xe1\xfb\x41\x4e\x52\x39\xba\x5c\x6b\xcd\x2f\x28\x77\xe8\xaf\x5c\xe7\x2a\xe0\x08\x59\xaa\x50\x91\x68\x5c\x9d\x6a\x1f\xdb\xe3\x6a\x40\x62\xb4\x0c\x28\xce\xa7\xd5\x0c\xf3\xa9\xf8\x33\xc3\x4c\xfe\x45\xdb\xf1\x3a\xac\xd6\x2b\xc0\xd5\xa7\xb4\xca\xca\x7c\xc5\x8b\xb2\x22\xfd\x7e\xe6\x1c\x50\xeb\x36\xae\x3a\x04\x3c\x38\xda\xbb\x6f\x73\xb8\xa5\x8f\x0f\xd1\x16\xdf\x5d\x3c\x68\x72\x90\x8c\x78\x6b\xe9\x19\x95\xce\x9d\x68\x56\xd2\x1f\x92\xef\x77\x66\xea\x37\xc2\x3b\xb2\x59\xfa\x29\xbf\x48\x79\x51\xba\xbe\x52\x5c\xbd\xf6\xd4\x7b\x36\xbf\xa0\x1e\xf6\xde\x95\xf9\x9c\x32\xee\x61\xef\x9b\xbc\xa4\x8b\xe2\xda\x9b\x61\x4e\xa2\x31\xb7\xe1\xc7\xb8\x00\x72\xbe\x08\x98\xef\x9b\x76\xc3\x75\x45\xcb\xc7\x17\x94\xd9\x70\x3f\x10\xfb\xe8\x8c\x44\x9a\xbc\x1a\xc4\x8f\xb6\x8a\x45\x2d\x04\x99\x54\x6e\x9e\xbe\x2f\x8b\xab\xbc\xa2\x1d\x51\x67\xed\x8e\x71\x35\xd2\x9b\x4d\xc0\x09\x78\x1c\x73\xab\x1b\xd7\x41\x1d\x8f\x82\x41\x7d\x2b\x15\xde\x68\xbb\xed\xe0\xdb\xef\xee\xa8\xa2\xfc\x5d\x7e\x45\x8b\x35\xdf\xd1\x2a\x2e\x45\xbb\x3b\x39\xa9\xee\x0d\x79\xbb\x6d\x1d\x2c\xf6\xec\x4a\xcd\xd9\x15\x4b\x47\xd0\xc5\x1c\x7c\xe9\x2a\x88\x4e\x67\xea\xac\xa2\x61\xf1\x99\xd1\xf2\xa9\x7e\x27\xae\x18\xac\x1f\x73\xfa\xb9\xcb\xe5\x04\xc4\xcf\xb1\x1e\x95\xd9\x94\xcf\x12\xe6\xb8\x0c\x73\x5c\xc5\x7c\xf7\xee\xe5\x0b\x19\xc5\x40\xf4\xfd\x2a\xbd\x12\x4c\x60\xfd\xb5\x38\x0d\x2f\x8b\xca\x89\x29\x97\xa9\x83\xb6\x6f\xce\x55\xf3\x7e\xfd\xbc\x98\xdf\x68\x8f\xed\xb6\x45\xe5\xba\x1d\xba\x4a\xe0\xe7\xd7\xaf\x9f\xfe\xe2\x25\x86\x4c\xd6\x27\x07\x8d\x40\xb1\xff\xa3\x1b\x76\xca\x8a\xdc\xad\x12\xc3\xb4\x67\x74\x6d\x18\x00\x7a\x1d\xfd\xf1\x33\xc8\xb7\xfa\xeb\x17\x05\x8e\x47\x81\xe0\xce\x37\x55\x56\x16\xcb\xe5\x46\xe4\x2e\xd3\x1b\xa4\x8f\xd1\x41\x31\x28\xd1\x84\x26\x59\x50\x81\x87\x1f\xeb\xdf\xab\xc9\x34\x97\x74\x41\x4b\xca\x32\x2a\x60\x34\x69\x7c\x27\x74\x2b\x3d\x38\x31\xdf\xef\x07\x7d\x85\xc1\x2f\xdf\x3e\x67\xab\x35\x7f\x49\xf9\x65\x31\x37\x1c\x74\xdf\x00\x4f\xff\x78\x09\x41\x2a\x56\xa2\xf2\xa3\x97\x6f\x9f\x3f\xeb\xc5\x91\x1e\x5f\x7b\x33\x3a\x8c\xfd\xc2\x19\x63\x1c\x8b\x35\x9d\xac\x93\x18\xe2\xb0\x4c\x56\xc9\x7a\xb3\x59\x39\xce\x0c\x76\xaf\x61\xc3\x0b\xd3\xd8\xb2\xde\x8b\x20\x8e\xd0\xa4\xb6\xd8\x52\x51\x08\x08\xba\x58\x54\x94\x7f\x0f\x78\xb3\xd9\x80\xf7\x18\x46\xc0\x99\x3a\x0d\x19\xbd\xd6\xcd\xbd\xcd\xcf\x97\x39\xbb\x18\x23\x46\x02\x4a\xba\xb2\x50\xad\x29\xcd\x38\xf8\x3e\x33\xf8\xe4\x68\xed\x24\x26\xc9\x38\x84\x12\xc1\x20\x06\xe4\x50\x6c\xa7\xa9\xf7\xee\x3b\x41\xef\x9e\x8a\x7f\x1e\x7f\xfd\xe2\x99\xe3\xa3\xc4\x36\x26\x3d\xd3\xa5\x3c\x87\x60\x34\x69\xc0\xb0\xa7\x2d\x4a\x3c\x34\x99\x0b\xf6\x8c\x25\x62\x85\x1b\x3b\xb0\x0e\xa5\x64\x17\xf8\x1c\x07\x10\xae\xc3\x29\xed\xb1\xc6\xee\xb3\x89\xd8\x31\x4e\x94\x92\xc4\xb9\xdd\x3d\xb7\x97\xa8\x74\xb3\xe9\x5b\x3a\xb1\xd9\xf4\x05\x0a\xf1\x26\xe1\xd8\xbd\x9a\x9a\x9e\x64\xc5\x95\xe8\x4c\xcf\xe7\x7b\x35\xe5\x80\x23\x1f\xbc\x41\x3c\x7d\xfd\xe4\x87\x97\xcf\x5e\xbd\xfb\xf0\xfd\xeb\xb7\xcf\xdf\x3d\x7f\xfd\xea\xc3\x37\xaf\x5f\xbc\x78\xfd\xd3\xf3\x57\xdf\x0a\x26\x7d\x42\x13\x2e\xc4\x93\x09\x4f\x28\xce\x9b\x51\xaa\xde\xa4\xec\x82\x06\x68\x9c\x0b\x51\xf6\x2d\x4f\x4b\x1e\x94\x38\x42\x18\xbe\x9f\xb1\x79\x50\xe0\x48\xc7\x7a\xcd\xc5\x50\xae\x0a\xf6\x98\x65\xb4\xe2\x45\xf9\x44\x07\x7c\x07\x7d\xbd\x8c\x87\xcc\xc5\x9f\xcd\xa6\x0c\x55\x34\xf8\xca\x89\x10\xd1\xe5\x68\xbe\x81\x28\x06\x49\xc0\xb3\xbf\xa6\x78\x7c\xb3\x99\x07\xca\xd1\x88\x82\x8e\xf4\x37\x22\x36\x0c\xda\x06\x29\x9a\xa4\xc9\x3c\x48\xe5\x40\x2b\x72\x69\xbd\xfa\xf5\x2a\x20\x89\x93\xf3\x40\xfe\x10\x8c\xb7\x58\xa3\xcb\x80\x23\x48\x70\x7d\x4d\xfc\x8f\xd5\x46\x1e\x2f\x56\x1e\x66\x04\xfe\xca\xbb\x7c\x49\xbe\xde\x15\x2b\x2f\x51\xbf\x5f\xd0\x05\xf7\xe0\xf6\xd0\x4c\x5e\xc8\x42\x30\x73\x42\x48\xb9\xd9\x98\x89\x6b\x3e\xb3\x7d\xaa\xd4\x71\x05\x62\x76\xd7\x4b\xc8\xbe\x72\x76\xa1\x8a\x6c\x36\x3a\x00\x5e\x2f\x9f\xb2\xd9\xd6\x89\x26\xe9\xd8\x7c\xfc\xa5\x10\xa4\xbe\xef\x7e\xe1\x92\x5c\x09\x79\x46\x80\x40\x08\x10\xf0\x01\x71\x3c\xc0\x16\x06\x02\x40\x5b\xb6\x9b\x17\xab\x01\x29\xbf\xca\xb1\x38\x2e\x38\x2f\xae\xf4\x97\xa8\x31\x20\x05\xfc\x06\x0b\x41\xf5\xe1\x98\x9b\xd4\xfc\x57\x5d\x2b\x78\x03\x74\x13\x4f\x00\x1c\x97\x44\x7e\x82\x1c\xe7\xbd\x91\x01\x43\xbc\xaf\xa1\x1f\x13\xb3\xdb\x89\x6a\x42\xa7\x9e\x34\xdb\xf3\x06\x6c\xe0\xfd\x94\xcf\xf9\xa5\x37\x43\x83\xee\x12\xa5\x2d\xe1\x18\x77\x58\x01\x41\x6b\x49\x53\x7e\x19\x5e\xa5\xd7\x01\x9f\x7a\x92\x5a\x7a\x03\x2a\xd8\x61\x85\x0d\xf0\xc5\xa6\x5e\x06\xce\x1c\xf5\x97\x53\x92\xd5\x4a\x4a\xc2\x6e\x5c\x46\xd6\x8a\xaa\x91\x8a\xf4\x72\xea\x49\x83\x3c\x6f\x10\x78\xdf\x49\x5f\x54\x70\xba\x78\x12\x13\x01\x2c\xe8\x61\x35\x14\xbc\x12\x05\x40\x34\x43\x89\x6b\xf5\xf3\xc9\xdd\xce\xe2\xa0\x81\x33\xa6\x89\xa0\xa5\x3c\x92\x7c\xbf\xc5\x03\x31\x13\xea\x41\x5d\x68\xdd\x98\xfe\x15\x28\xd5\xa5\xd7\x4d\xa0\x00\xae\x92\xa5\xfd\xc8\x63\xf2\xaf\x34\x5f\xc1\x1f\x48\xb7\xd9\x8c\xd4\x92\x59\x75\xc8\x98\x9d\xf2\x5a\x48\x60\x37\x82\x6e\x68\xe5\x37\xe2\x7e\x6c\x36\xfd\x18\x03\xa9\x34\xd2\x9e\xe0\x6e\x3d\x10\xf0\xbc\x5c\x5d\x76\x85\x5a\xce\x83\x3b\xf0\x5d\x46\x4c\x65\xf8\x91\xde\x00\x54\x9a\xd4\xb6\x8e\x8f\xcc\xf7\x69\x87\x75\x05\x95\xd6\x15\x1c\xe4\xdd\xcf\xa4\x29\x24\x69\x06\x15\x64\xdd\xc9\xae\x31\x68\x1f\xc7\x09\xab\x49\xac\x11\x6e\xca\xb3\x5d\x92\x2b\xa6\x5b\xfc\xc7\xbf\xbf\x62\xd1\x32\x71\xaf\x1d\x2e\xe1\x0f\xb0\xf3\xc1\xb7\xd2\x96\x59\x51\x2f\x2a\x1d\xb2\x62\x65\x22\x2d\x89\x1d\x55\x9e\x59\xdd\xd0\xa9\xef\x9c\x90\x52\x52\x9f\x91\x2f\x02\xd8\x2f\x42\xa6\xd9\xed\xf3\x55\xce\xf6\x2a\xa0\x9a\xda\x96\xf2\x43\x52\xdb\x31\x97\xd4\x95\x61\xae\xa8\x69\x89\xb9\xa1\xb2\x22\x55\xd1\xd5\x52\x05\x8e\xdd\xdd\x93\xd2\x8b\xcc\xd1\xed\x56\x9e\x47\xb7\x60\xe8\x2d\xdb\xc5\xbc\x58\x25\xd0\x97\x76\x39\x2d\x1b\x1e\xaa\x6c\xb5\xad\x75\xd7\x43\x28\xba\xc5\x39\xe9\x92\x68\x3e\x05\x8d\x83\x0c\x25\xb7\x5b\x5c\x91\x5c\xc2\x52\x88\x38\x92\x52\xfe\x24\x3f\x0b\x05\xe3\x8c\xe4\x0a\xb0\xb6\xc8\x77\xea\xbb\x50\x39\x78\x69\x98\x5f\xa8\x3d\xac\xf0\xda\xa4\xc8\xc2\xc3\x4c\x9c\xc5\xcb\xcd\xc6\xb8\xd6\x13\x92\xcb\x78\x39\x24\x17\xc1\x0a\x7b\xd7\x1e\xc2\x6b\xf5\xfb\x46\x9c\x6e\xb2\xf7\x21\x59\x62\xdd\xc9\x90\xac\x35\xb2\xbc\x0e\x0a\x67\x91\xaf\xff\x9e\xb3\x15\xd0\x02\x17\x16\x78\xdc\x00\x0f\xe7\xe4\x9d\x0c\xac\xf4\x2e\xe0\x08\x2f\x89\x10\xff\xf0\x9a\xa4\xe2\x6b\xe5\x86\xef\x5a\x87\xf2\x14\x7b\x57\xac\x00\x12\x08\xcf\xbb\xb2\xc5\x29\x21\xf3\xc7\x4c\x46\x6c\xab\xc4\xda\x11\x73\xa6\xc1\xa7\x60\x17\x2b\x58\x6a\x37\x03\x96\x3e\x52\x4a\xf2\x4b\xf2\x3a\xb8\x15\x68\x92\x8b\x0a\x43\xa8\x36\x5c\x61\x40\xa2\x1c\x8a\x0e\x65\x8d\xe1\x5c\x7b\x13\x56\xeb\xaa\x90\x27\x37\xbb\x46\xac\x8f\xe8\x43\x1c\x55\xef\x8a\x15\x89\xb0\xfe\x12\xa3\x25\x11\xee\x97\xbe\xaf\x9c\xe8\x9d\xd7\x27\x65\x2a\x21\x7c\xd5\x95\x23\x1a\x40\xe3\x4b\x18\x1c\x59\x0d\xcf\xf1\xa5\x46\x59\xf5\x05\x23\x24\xf3\xe1\x15\xbe\x54\x28\xae\x3e\xec\x70\xce\xeb\xc3\xb9\x52\xb8\x10\x94\xbe\xdf\x67\x13\x6e\xd9\xe2\x25\x4a\x38\x21\x64\xe9\x08\x46\x4b\x57\xd2\x09\x2e\xc9\xcb\xe0\x12\x73\x84\xf0\xa5\x45\xa2\x57\x7f\x81\x45\x75\x51\x28\x9e\xe1\x0e\x15\x45\xeb\xac\xbe\x06\x27\xaa\xb8\xb0\x0b\xca\xdc\x6d\xa7\x15\x3d\x60\xf5\xaa\x36\xa2\x90\x19\xda\xc5\xe5\xae\xaa\x95\xd7\xbb\x32\x42\x38\x25\x7c\x12\x25\x57\x01\x13\x38\xab\x7e\x1a\x5e\x31\x23\x80\x31\xe9\xb0\x04\x32\x56\x5a\x20\x4b\xbc\xa9\x86\xa5\x24\x6b\xa5\x03\x70\x85\x3d\x85\xc1\x1b\x13\x77\xef\x75\x90\x39\x9b\xf1\x45\xa7\x0c\xe2\xb2\xe1\xdc\x61\xc3\xb9\xd5\x17\x83\x41\x78\x7e\x4d\xe7\x52\x04\xa5\xae\x08\xaa\x4b\x45\x8a\x30\x57\x56\x0c\xe9\xf7\x99\xef\xbf\x08\x98\x33\x84\x67\x46\xae\x07\x39\x51\xca\x93\x86\x59\x5f\x04\xe8\x4f\x88\xfb\x8d\xea\x63\xae\x9d\x85\xc2\x20\x05\x33\x6e\x83\xaf\x8d\x11\x27\xbc\x51\x5e\x1f\xef\x9b\xcd\xfd\xc2\xf1\xdb\x86\x0e\xbc\x8d\x88\xfb\x9d\x88\xb8\x5f\x43\xc4\xfd\x19\xce\xe5\x02\x47\x72\x39\xa3\x2d\x4e\x49\x31\x11\x50\x01\x01\x6d\x19\x70\x04\x9b\xdd\xfb\x94\xd3\xcf\xab\xa2\xe4\x52\x20\xca\xc9\xab\x20\xc5\x85\x13\xa4\x56\x5b\x34\x8c\x15\x9f\x2c\xb5\x11\x50\x7a\x62\x96\x33\x00\x1f\xdd\xa0\xaf\x36\xeb\xed\xfb\xc1\xfa\xbe\xcd\x80\x92\x35\xf1\x24\xfa\xca\x16\xef\xd3\x2e\x94\x63\x79\x6e\x5c\x07\x6b\x0c\xe3\x14\x53\xd0\xea\x8e\xb5\xe9\x7b\xb3\x79\x11\xa4\x08\xe5\x64\x65\x27\xb2\x20\xed\xd3\x0f\xcf\xc9\x42\x1f\x5f\x97\x64\x21\xa9\xe2\x38\x97\x27\xfb\x4a\xd2\x51\x67\x67\xe4\x8a\x62\x91\xf9\x00\x32\x71\xae\x8e\xfe\x95\x24\x5e\x2b\x77\xaf\xe4\x92\x88\x91\xcb\x81\xcc\x95\x0c\xf5\x15\xf1\xd8\xfa\xea\x9c\x96\xce\x35\x06\x23\x4c\x6c\x58\x23\x40\xaa\x46\xaf\x26\x2c\x61\xf0\x7b\xb3\x89\xb0\x1a\x94\x4c\xe4\xc5\x4a\xa6\x29\x3a\x29\x53\x4b\xb5\xf5\xcd\x38\x75\x86\xfc\x82\x1c\x8b\x69\x4f\x6a\x6e\x38\x61\xe6\x5f\x19\xf6\xc9\x94\xfa\xa8\xf1\x11\x1b\xd7\xa9\x2d\x8c\x3c\xe8\xc4\xc8\x03\x57\x7a\x3f\x98\x25\x91\x58\xab\x21\xa8\xe3\xac\xf3\xff\x74\xcd\x0b\xcf\x09\x72\x29\x55\x21\x6f\x05\x8b\x88\x73\x70\x16\x2f\xd1\xf8\x56\x52\x9e\xb4\x7e\x6e\x01\xaf\x33\x4c\x25\xc7\x23\x99\x43\x53\x50\x33\x49\xf2\xd5\xbe\x76\x9e\xaf\xe7\xa7\xb9\xc6\xee\x76\x53\xcb\x4c\xc9\x1f\x5b\xb9\x8b\x6e\x35\x07\x06\xab\x9d\xd6\x18\x30\xd3\xf4\x16\x67\xc4\x35\x97\xa8\x76\x47\xee\xfb\x23\x00\xc3\x72\xba\xc5\xd5\x94\xce\xf0\x6d\x5a\xd2\x34\x79\x12\x88\x0f\x04\x96\x37\x61\x55\x94\x7c\x57\xdc\xee\x50\x14\x1f\x52\xf8\xb3\x45\xc0\x91\x74\x3a\x72\xd6\x44\x4c\x4e\xb1\x24\x7a\x91\x0d\x5d\x3a\x23\xb5\xf3\xc7\xf7\x4b\x9b\xf2\x9d\x62\x0c\x04\xa7\xb3\x34\x06\x1f\x93\xe5\x34\x9a\x89\xe9\x25\x99\xfa\x81\x57\x84\x3a\x41\x53\xa7\xb1\xb9\xa1\x5e\x0f\x82\xd5\xc4\x1b\x7a\x83\x55\xe2\x79\x0e\x85\xfe\x5d\x4b\x3f\x52\x96\x6b\x61\xd5\x5e\x27\x56\xed\xb9\x58\xb5\x27\xbd\x73\xe3\x82\x94\x93\x67\x01\xe8\x9e\x38\x5e\x06\xcc\xba\xca\xbe\x0e\x18\x2e\x84\xdc\x66\xba\xfd\xc9\x05\xc9\x9f\xb9\x4c\x40\x98\xb9\x6c\x0d\xb7\x74\x41\x6c\xde\x41\x47\xd6\xd7\x7a\xdb\x09\xd1\xa1\x23\xff\x85\xdc\xda\x9d\x75\xdf\xe8\x63\x5c\x8b\xef\x12\xf5\x6a\x1c\xf6\xa0\xd4\xc8\x57\x67\xb3\x07\xcc\xf1\x80\xfe\xd4\x91\x7e\x00\x89\x55\x68\x57\xb5\x5f\x24\x3f\xa0\xb7\x83\xd4\xb0\x89\x0d\xe7\xc9\x14\xcf\x46\xd6\x35\xaf\x9b\x1e\x01\x49\x92\xc4\x46\x51\x16\x5e\xac\x1e\x5d\xe0\x2e\x14\xe7\x53\x3a\xab\xb9\x9c\xfd\x5a\x2f\x3b\x23\xcc\x45\x98\x68\xa6\x34\xdc\x62\x81\x70\x41\xd4\x84\xcb\xfa\xce\x2c\xcd\x06\xce\x89\xd2\x6d\xab\xe9\xc8\x89\x38\x8a\x6d\xc1\x00\xe5\x13\x98\x91\x9e\x65\x25\x12\x64\xd0\x5b\x39\xd3\x4c\x24\xc8\x16\xbd\xc4\xfb\x2c\xf5\x1f\x4b\x91\x28\x7f\x27\x3a\x53\x43\xa1\x98\xa6\x33\xc2\xa7\xe9\x6c\xc0\xa7\xd9\xec\xd1\x68\x58\xc2\x1f\x5c\x4c\xab\x19\x61\x84\x90\x6a\xc2\xa7\xd5\x6c\x58\x4e\x97\xb3\x84\x4f\x9f\x06\x15\x9a\xe1\xc2\xce\xfe\xfb\xda\x16\x6e\xde\xd1\x2f\x72\x36\x9f\xc8\x3f\x32\xcc\xbe\xda\xce\x5c\x80\xc7\x36\xf2\x73\x5d\x6f\x10\x38\xd6\x73\x34\xd1\x81\x8b\xa2\xd6\x55\x6c\xbe\x08\xba\x3a\x7c\x2e\x00\xe6\x84\x25\xd6\x49\xdd\xde\xe0\xa7\x7c\x26\x3a\xb2\xf6\x39\x62\x46\xf7\x95\x34\x8d\xeb\xc5\x29\x21\x90\x86\xc7\xd2\x2b\xea\x61\x26\xb8\x86\xce\x90\xeb\x34\xd4\x5f\x36\x60\xc1\xe7\xb4\x64\x81\xf7\xeb\x55\x31\xcf\x17\x39\x2d\x4d\x89\x5f\x7b\x79\xd5\x9b\xd3\x55\x49\xb3\x94\xd3\x39\xee\xad\x2b\xda\x73\x8a\xb1\x5f\xfb\x1e\x32\x5a\x7f\x5d\x4b\x88\xb3\x0b\x36\xa6\x21\x65\xe9\xf9\x92\xce\x7d\x3f\x0f\x18\xd8\xe5\xa8\x1d\x55\x85\xab\x62\xb5\xa2\x25\x79\xdd\x4a\x42\xd8\xa6\x98\x5b\xaf\x5a\x39\x93\x8a\x30\x27\x2c\xe0\x98\xca\x00\xe4\xce\xf9\xfa\x9b\x7c\x0a\xd7\xd7\x71\x4c\x39\x0d\xf3\xea\x29\xad\x78\x59\xdc\xd0\xb9\xb1\xc3\xd0\x0a\xb7\x04\x0c\xae\x1c\x4f\xe9\x65\x59\x7c\x7e\xdb\xed\x38\x1d\xc2\x64\xaf\x28\x18\xb6\xab\x11\x25\xb7\xdb\xed\x98\x76\x8c\xfa\xf7\xc0\x0e\x40\x3e\x26\x93\x73\x94\xbf\x4d\x39\xf9\x59\xac\xc0\x6c\x3b\xd4\xbc\xf9\x37\x82\x63\x07\xcb\x29\x6d\xc6\x4f\x3e\x06\xf5\x92\x3a\x03\x77\x74\xfe\xe0\xfe\xf4\x62\x56\x10\x3b\x3b\x3c\x2f\xd6\x6c\x9e\x96\x39\xad\xb4\x68\x75\x57\x69\xf5\xa4\x5b\x0c\x53\x3a\x24\x4b\x97\xdf\x9b\xe1\xd2\xda\x08\x6b\xf3\x22\xbb\xa7\xec\x4c\x46\x21\xc9\xd7\x81\x3b\x97\xae\xb9\x3a\x3d\xa1\x56\x7d\xd3\xfc\x1d\x9d\x4e\x94\x80\x94\x78\xfa\x2d\xba\x87\x29\xf9\x59\x76\x6c\xe6\x6c\xde\x04\x6a\x94\x7a\x02\xf7\x51\xf3\x49\xad\xe1\x82\xfd\xb0\x9a\xa7\x5c\x1c\x6e\x49\xd0\x55\x9c\xf4\x23\xdc\xa8\x21\x73\xe0\x52\xd8\x62\xf1\x9b\x1a\x59\xa3\x61\x55\x5c\xd1\x36\x13\xc2\x54\x84\x67\x4b\x0f\xcc\xae\x63\x2a\x7c\x84\x6d\xf2\x79\x5d\x29\x39\xed\xc7\xd8\xbb\xaa\x3c\xec\xfd\x04\xbe\x1c\x3c\xec\xbd\x2c\xfe\xf0\xb0\xf7\xda\x93\x42\x77\x76\x99\x96\x8f\x79\x10\xa1\xba\x7f\xf8\x01\x35\x21\xb9\xf5\x53\x45\xad\xd2\x2c\xb5\x4a\xb3\x20\x7c\x5a\x0a\x89\xa9\x98\x78\xde\xa0\x18\xb0\x44\x0a\xab\x77\x59\x9f\x80\x2e\x5e\x1a\xc2\x4e\x73\x13\x10\x2c\xdf\x3a\xf7\x9a\x76\x2e\xdf\x59\x8b\xb3\xee\x7d\x2e\x1f\x5a\x35\x96\xd0\x03\x13\xcb\xb7\x32\x56\xb9\x20\x49\x16\xb5\x5a\xce\xfb\xbd\xeb\xa1\xc1\x2b\x0f\xb9\x3b\x4a\x8e\xd1\x62\x96\xe7\x75\xe4\xf2\x62\xd5\x9d\x01\x7a\xa7\xce\x1c\x29\xdc\x74\x66\x29\x21\xa9\x33\xef\x73\xbe\x5c\x3e\xb9\x4c\xd9\x05\xed\xcc\x9f\x3e\x0f\x5c\x69\x7a\x46\x3c\x3d\x9b\x79\x0e\xcf\x7b\x9e\x7d\xa2\x8c\xbf\xc8\x2b\x4e\x19\x2d\xab\x00\xd5\xd1\x53\x82\xe5\x35\x53\x80\xf5\x7d\xb7\x03\xc7\xc5\xbf\x1b\xd8\xc2\x29\x22\x5b\xb3\xeb\xf6\xcd\x4e\x5e\xd1\xda\x94\xd4\xd8\xc6\x44\xca\xb2\xb6\x85\x1f\xac\x38\xcf\xc2\x35\x6c\x36\xd0\x00\x93\x12\x8b\xc6\xc3\x74\x3e\xaf\xcd\x28\xf0\x4a\x5a\xe5\x7f\x88\x53\xd1\x2d\x8e\x6f\x57\x69\x55\xe5\x9f\xa4\x4a\x5f\x59\x14\x65\xce\x3d\xac\x73\x77\xd2\x90\xd6\xac\xca\xc5\x6a\x32\x05\x63\xc4\x77\x33\xbf\x09\x1f\xa7\xed\x91\x89\x56\x6b\xc3\xc0\xf9\x66\x43\x83\x2c\x48\xdd\xdb\x7a\xd5\x39\x2e\x64\x20\xa2\x14\x6d\x83\x02\xeb\x2b\xb6\xc6\xa4\x58\xe8\xaa\x14\x2a\x64\x12\x14\x3d\x27\x05\x66\x21\x15\x83\xa8\x9e\x49\x42\x21\xf6\x89\x63\xbf\xf3\xa3\x7e\xb0\x2b\x37\x54\xad\xe8\x66\xe3\x50\x34\xf2\x43\x70\xc7\xc1\x82\x9b\x67\x5f\x95\x5d\xd2\xf9\x7a\x49\x25\x75\x74\xa9\xd2\x2f\xda\x34\x12\xf3\xf1\xae\x9e\x7d\x3f\xc8\xc4\x59\xbd\x7c\xac\xdd\xa6\x7d\x53\xa6\x57\xea\xf1\x73\xa3\x69\xa7\x6b\x12\xc8\x37\xd7\xee\x20\x89\x33\x32\xc0\x17\x89\xb8\x3b\x50\x86\xbb\xd0\x15\xdc\x49\x0d\xbc\xbb\x58\xac\xce\x26\xf5\x82\xd5\x9b\x04\xde\xa5\x86\xc6\x32\xd6\x4b\xbd\x23\x32\x9d\x99\x24\xbd\x92\xaa\x5c\x63\x31\x63\xcc\x5d\xe0\x7e\xeb\x98\x63\x41\x54\x0e\xdf\xef\xe7\xd5\xab\xf4\x55\xe0\xde\x11\x23\xe4\xfb\x79\xf5\x0d\xb8\x9e\xab\xd9\x90\xfd\x43\x1e\x42\xae\xec\xcd\xbb\x18\x4b\x23\x72\x7a\xde\x58\xc9\x10\x8a\xf3\xd7\xdc\xbe\xbc\xf0\xc1\x46\xb4\x50\xb2\x50\x87\x8c\xe1\xfb\xdf\x06\x7c\xca\x66\x08\xde\xcd\x79\xab\x6b\x08\xad\x22\x49\x19\x9b\xc1\x05\xe5\xa0\xd4\x01\x13\xff\x03\x2c\x99\x94\xb1\xe1\xa3\xfc\x21\xa6\x4c\xff\x55\x17\x92\x77\x32\xdb\x32\x7a\xbe\x3c\x43\x71\x41\xfa\xfd\xd2\xf7\xbb\x8e\xe1\x66\x79\x30\xde\x36\xa7\xb0\x60\x8d\xe6\xb4\x3c\x2d\xe5\xdf\xad\x54\x11\xf6\x2d\x2d\xf9\xd5\x1b\xf0\x81\xf7\xab\x87\x53\xf8\xcd\xc4\xef\x71\x8d\x33\x4f\x07\x5e\x4f\x1f\x61\x82\x23\x57\x8f\xaa\xe7\xbd\xf3\x9b\x9e\x37\xc8\x6b\xb9\xac\x27\x1d\x5a\xf2\xa2\xf7\xb9\x28\x3f\xe2\xde\x39\xed\x55\xeb\x92\x8a\x84\x9c\x65\xcb\xf5\x9c\xf6\x72\xde\x93\x31\x65\x64\xed\xbe\x67\x2e\x0b\x0b\x80\xe9\x7f\x92\x29\x28\x91\x86\x15\x4f\x4b\xb1\x56\xa0\x51\x92\x7f\x86\x94\xcd\xe5\x5a\x9a\x5c\xb9\xae\x22\x45\xe6\x49\x2d\x91\xce\xd5\xeb\x2d\x53\x65\x09\xa5\x09\x72\x3f\x6c\xaa\xae\x08\xfa\x20\x59\x44\x4a\x9a\x32\x45\x66\xcf\xf0\x3f\xc9\x7f\x2a\x2e\x64\xcf\x59\x5b\x4a\xff\x8e\xeb\x86\x7f\x5a\x2b\x54\xc1\xe1\xfc\x53\x75\xc4\x06\xb1\x79\x3c\xfb\x4f\x23\x12\x3a\x9a\x11\x3e\x11\x5c\x04\x78\x67\x09\x50\x52\x4a\x4b\x42\x4a\x3c\xc1\x2c\x7b\x98\x51\xe2\x65\xcb\x22\xfb\xf8\x39\xaf\xa8\x87\x4b\xf1\x29\x9f\x88\xd9\x54\x3b\x93\x82\x36\xb5\xd6\xd3\x08\x47\xb3\x7b\x65\xf4\x52\xc8\xe8\x5a\x6d\xf4\x28\x78\x3f\xd8\xbc\x1f\xa2\x47\xbb\xf5\x65\x34\xe4\x65\x7e\x05\x76\xad\xb8\x22\xa9\x69\xe7\xfb\x20\xed\xda\x16\x43\x69\x4b\x2a\xfd\x02\x04\x8f\xf0\xe6\x7d\xf5\x08\x6c\x62\xc7\xe9\xb4\x9a\xf9\x3e\x28\x23\xc5\x4f\xab\x8f\xc4\x82\xd3\xaa\x8b\x9a\xaf\x25\x8b\xde\xab\xe8\x2a\x2d\x05\x53\x2c\x50\xf9\xf3\x25\x38\xbe\x5c\xa5\x19\x0d\x2a\xd4\x4b\x4b\xda\x92\x3d\xd3\x5e\x56\x5c\x5d\xa5\xbd\x00\x23\xb0\x97\xa0\xe9\x3c\x34\x11\xfe\x1e\xbd\xaf\xbe\xc2\xef\xab\xaf\x36\xef\xab\xc1\x23\xbc\x94\x70\xaa\x26\xd3\xd4\x2c\x55\x65\x96\x6f\x0a\x43\x94\x40\xca\xd0\x34\x9a\xcd\x10\x6e\xa4\xc5\x33\xf3\x9a\x4c\xb7\x50\x0d\x62\x84\x66\xc9\x34\xd5\x8a\xb8\x60\x49\x96\x4d\xc8\xda\x05\x0b\x62\xd0\xbf\xf7\xf3\x24\x47\x6d\x95\x48\x4a\x5c\x63\xfe\xee\x68\x84\x9a\x70\x13\x42\xe8\x54\x5b\x50\x0f\x63\x80\x33\x20\xc1\x00\xc2\xd8\x59\x60\x73\x34\x09\x6a\x25\x09\x17\x1d\x45\x98\xa2\x24\x6d\x64\x0d\x64\x5e\x2c\xf2\xa8\x71\xbb\x83\x64\xac\xc2\x9d\xf8\xb2\xe3\x5d\x01\xa1\x2a\xc8\xdc\xa3\x20\x98\x24\xef\x87\x9b\xf7\x03\x34\x79\x3f\xff\xea\x7d\x28\xfe\x45\x41\xf8\x15\x7a\x84\x70\x4e\x06\x85\xd8\x62\x29\x29\xa6\xa3\x19\x10\xc2\xdc\x2a\xaa\xf3\x45\x00\x2f\x40\x2d\xea\x7c\xe1\x21\x1d\x1d\x52\xdd\x98\x28\xfb\xdf\x54\x99\xfd\x7e\xb1\xf2\x92\x8a\xb0\xf1\x79\x49\xd3\x8f\xd2\xae\xf7\x0b\x65\x06\xfc\x45\xe9\x25\xfa\xbd\x59\x45\x4a\x7b\xc5\x5d\xa1\x29\x9f\x3d\x8a\xa3\xe8\xab\x7c\x0b\xb7\x35\x97\x70\xe9\xb4\xd9\x78\x9f\xe0\xc6\x24\x35\x4a\x20\x9d\x35\x31\xb7\x84\xbb\x2e\x9b\x1e\x72\x79\x98\x3c\xb4\x95\x3b\x6e\x2c\x91\x1a\xb7\x91\x8d\x02\x8a\x0b\x38\xcd\x64\x18\xaa\x4e\xa5\x8f\x7c\xa9\xd5\x71\x68\x8b\xd5\xfb\x56\xea\x66\x8a\x29\x9f\x0d\x08\xfb\x2a\xf0\x86\x12\xdb\xca\x61\x3c\x03\xcb\x37\xa4\x9a\xc6\xf2\x70\xc8\x29\xb9\x35\x62\x91\x51\x69\xe2\x9a\x3c\x9d\x08\xa4\x72\xd9\x92\xa4\x1f\xe1\x86\x1c\x01\x1a\x14\x25\xf9\xba\xcf\xdb\xb7\x58\x4b\xd0\xf5\x54\x23\xc3\x25\xb7\xd5\x65\xbe\xe0\xc9\xad\x74\x57\x17\x47\x11\xa6\xb6\x97\x05\xeb\x30\xcd\x77\x55\x11\x8c\xf0\xba\x8a\x14\xec\xba\xeb\x5a\x76\x70\x5d\x64\xed\x18\x25\xb1\x12\xb2\xac\xc3\x47\xa6\xa4\xd0\x3a\x89\x4a\x93\x64\x73\x94\x89\x23\xb1\xa6\x36\xcd\x48\x55\xd7\x92\x2e\x45\x42\x43\x21\x8a\xd7\xe4\x16\x8e\xb7\xe4\x73\x70\xbb\xc5\x19\xce\xa7\xd9\x0c\x61\xca\xe6\x6e\xc2\x20\x9f\x2e\x67\xc3\x74\xba\x9c\x21\x57\xef\xa4\xb4\x25\x60\xd6\x93\xe2\x75\xdd\x04\x68\xab\x94\x55\x1a\x68\xa3\x3b\x80\xe6\xfa\xdb\x91\xb5\xe0\x7e\xc3\x42\xb0\x09\x13\x05\x85\xb4\x06\x9e\x8a\x94\x0d\x30\xeb\xb7\xf9\x9a\xe6\x65\xe4\xdb\x60\xc0\xd0\x64\x3a\x60\x38\x9a\x25\x05\x0d\x18\xce\x71\x8a\x2b\xa4\xce\x34\xd0\xfc\x06\xea\x8e\x2e\x13\x4d\x28\xc3\x0b\x02\x41\x20\xb5\xd2\x7d\x57\xb1\x81\x2e\xa6\x2c\x5b\xa1\x90\xce\x80\x52\x60\x35\xa1\x0a\xa9\xa5\x13\xe5\x7c\xbf\xa3\xa0\x6a\x0d\x34\x59\x00\xe8\x1c\x53\x03\xd5\x08\x9c\x58\x08\x84\x7f\xad\xbd\x08\x2a\x40\xef\x3d\x10\xd0\x2d\xbd\x9b\xb4\x1f\xd6\x2a\x4a\x2d\x4b\x8f\x9d\x24\xab\x68\x04\x96\x33\x60\x64\x0e\xb7\x34\x92\xab\xad\xcb\xfc\xb0\x66\x8d\xc6\x24\x47\x0d\x2b\xc8\x8b\x15\x2c\x1f\xdc\xbd\x55\xa4\x98\x96\xb3\x71\xa1\x15\x18\x85\x51\x58\x88\x74\xc1\xe0\xcb\xe3\xf6\x6d\x7b\x7c\xb8\x6b\x78\x98\x6b\x3d\x21\x66\x4d\x45\x20\x52\xdd\xe4\xba\x97\x54\x76\x52\x61\x17\x24\x24\x83\x2e\x97\xe0\x00\x2a\x2f\xca\x9c\xdf\x38\x66\x50\x46\x35\xb8\x22\xb7\xca\xcf\x5e\x8b\x04\x30\xb2\x9e\x52\x7b\x7b\x36\xa5\xb3\xd3\x6c\x4a\x67\xbe\xdf\xe7\x21\xad\xb2\x74\x45\x7f\xca\xf9\xe5\x1b\x3d\x64\x80\xa6\xa1\xd6\xa2\x38\xce\x20\x1a\x3d\xfe\x2c\xad\xe6\x18\xda\x62\xe3\xb0\xaf\xa3\x37\x8b\x9a\xb4\xbe\xed\x4b\xb2\x76\x1e\x9a\x8a\x96\xcf\xee\x19\x48\xa9\x06\x92\xb3\x40\x54\x85\x81\x0c\x03\xb7\x83\xb5\xbc\xce\x49\xd6\xea\x1e\x07\xe9\x71\x4a\x93\x53\xdd\xd9\xb2\x5b\x58\x95\x14\x52\x11\x30\xc5\x68\xd7\xc9\x17\x45\x13\x4f\x01\xd6\x4b\x3c\x33\x6d\x6f\xbc\x96\xd4\x66\x8d\x57\x53\x3e\x0b\x94\x1e\xbe\x45\x91\xd6\x62\xa3\xe8\x75\x4b\x4c\x1f\x65\x4d\x2a\x54\xdb\x6f\x86\xb5\x97\xd0\x03\xdc\xda\x12\x49\xdd\x5a\x62\x8b\x3f\x52\xba\x7a\x57\x5c\x50\x7e\x49\x4b\xbd\xe1\xf6\x1f\x74\x1c\x68\xf2\x05\x3e\xc5\x24\xf6\x88\x53\xc0\xe2\x6c\xe1\x52\xbc\x06\x21\x53\x46\x43\x8b\x65\x51\x08\xaa\xa7\x40\x57\x9f\x87\x01\x1e\x5c\xb7\xa7\x13\x35\x5d\x7b\x5e\x66\x22\xb1\x7e\x20\xa4\x3b\x6f\xc8\xd8\xb4\x9a\x9d\xe6\x41\x29\x8e\x03\xdf\x0f\x9a\x20\x9e\x66\x33\xa2\x72\x87\x4c\x9c\x0b\x98\x4d\xb3\xd9\x99\x48\xaa\xee\xac\x50\xcd\xa4\x03\x33\x79\xe5\xa1\x41\x78\xf0\x10\x9a\x05\xbc\xdb\x7f\xb9\x24\xc0\x55\xb2\x8a\xe6\x3c\xec\xb9\x0b\xd4\xb4\x48\x10\xf0\x56\x51\x44\xc7\x9d\x0f\xab\x4b\x65\x19\x5d\x76\x90\xae\x5a\x24\xd0\xa0\x44\xb6\x6d\x69\x18\x0a\x46\x4a\xad\x5a\xc6\x92\xad\x34\xe5\xeb\x62\xc9\x4f\x8f\xdf\xbc\x7a\xfe\xea\xdb\xa4\xf7\x2b\xcc\x40\x8f\xef\xd7\xde\xd5\xba\x12\x32\x73\x0f\xbc\x48\xf4\x8a\x45\x2f\xe7\x55\x4f\xb6\xda\x53\x85\xfa\x1e\xc2\x74\xac\x79\x86\xdd\xb8\x63\x91\xaf\x22\xb9\x46\xbe\x8c\xe4\x0e\xf2\x2d\x1b\xdb\x51\xe2\x4e\x0d\xa7\xd6\x64\xd9\x96\x28\x56\x22\xd1\xb1\x96\xc7\x0b\xb0\xb7\x71\x62\x24\xe3\xb9\x28\xe2\xa2\xdd\xa5\x48\x38\xd7\xf6\xf2\x6a\x53\x9e\x93\x9f\x82\x12\x4d\xd7\xb3\x71\x36\xbd\x9c\x0d\xcf\x4f\xab\xe9\x62\xd6\x85\x47\x8b\xd9\x90\x88\xbc\x61\x20\x0b\x22\x84\xb3\xe9\x62\x36\x38\x3f\xab\xa6\x97\x3b\x6a\x88\x93\x54\x14\x19\x8a\x22\x1d\xf4\xe2\x75\xab\x92\x3c\xd3\xae\x64\xbd\x6c\xba\x9e\x3d\x1a\x0d\xcf\x1f\x8d\xf0\x4b\x92\x76\x9c\x91\xf8\xc2\xb5\x0b\x78\x69\x1f\x09\xac\x66\x08\xdf\x34\xf2\xf4\xd3\x88\x95\x7d\x1a\x81\x3f\x91\xab\x61\xd7\x4c\x2f\x86\x37\x7a\x43\x7e\xb2\xa7\x83\xa1\xce\xd5\x74\x3d\x1b\x9e\xe3\x4f\x08\x47\x62\x56\x80\x41\x5a\x55\xe7\xde\x5b\x41\x06\x09\x3e\x07\x8c\xdc\x6e\xf1\x02\x43\x03\x10\xf8\x2c\xf8\x04\x94\x9b\xe1\x39\xf6\x3c\x84\x99\xd8\x9b\x98\x6a\xe2\x37\xbd\x1e\x42\xd5\x99\x27\x6f\x21\xf5\x76\x3d\xbc\x67\xbb\xe6\x8b\xe0\xcd\x8e\x7d\x0a\xb2\x85\xbb\x31\xf3\x45\x40\x43\x75\xc5\x09\x81\xef\xcd\x6d\x9e\x10\xfa\x5b\x77\x7c\xf5\x1d\xcd\xfe\x0a\x4b\xd0\xc1\xfa\xb4\x98\x84\x3a\xff\xd9\xd8\x51\x05\x79\x1a\x94\x08\x36\x56\x67\x91\x78\xb6\xd9\x78\x42\xda\x9e\xce\xb4\xf0\xc8\xc3\x73\x7a\x99\x7e\xca\x8b\x52\x4a\x91\x3d\x4e\x93\x94\x4c\x4b\x5c\xcc\x1c\x41\xb2\xc7\x44\x2a\xa5\x41\x89\xdc\xd4\x52\xa7\xe2\x7e\xa4\x33\xb4\x98\x99\x12\xdb\xb4\x66\xbe\xd3\x8e\x63\xb7\xc2\x19\xac\x4b\xd9\x27\xa4\xda\x6c\x52\x25\x93\x13\x42\xb2\x41\x6c\x81\x7a\xff\xb4\x15\x5f\xd4\x62\x85\x5c\xee\xc8\x42\x7d\xe5\x1e\x5c\x0b\x62\xb8\xec\xd2\xf7\x57\xc1\x52\xde\x3e\xa1\xb3\x55\xb0\x06\x5e\x0c\x6d\x36\x96\xcb\x50\x45\x20\xfd\x54\x94\x90\x85\x37\x1b\xcd\x5d\xab\x02\x92\x92\xc8\x46\x78\xb1\x12\x05\x2c\x67\xad\xca\x88\x74\x68\x43\x15\xc6\x73\xe2\xb6\x2d\xcd\xf3\x10\xbe\x24\xb5\x41\x29\x53\x3c\x84\xcf\x89\xd3\x08\x98\xed\x81\x71\x74\xad\x73\x66\xda\x7e\x59\x9b\xe6\xbc\x31\xa7\xcb\xda\x04\xce\x9b\xa3\xbd\xc2\x17\xf7\x1c\xef\xa5\x20\x29\xfd\x3e\x87\x4d\xf3\x63\x5a\xe6\xd2\xfb\x9a\xef\x07\x17\xf2\xe9\xa7\x34\x02\xcd\xa1\x6b\x91\x44\xd9\x5c\x25\x5c\x6e\x36\xfd\x66\xa1\x73\x95\x66\x4b\x5d\x09\x7a\xd4\xee\xe0\xeb\x9b\x27\xd2\x85\x55\x47\x4f\x97\xcd\x9e\xe6\x1d\x3d\x5d\xb5\x7a\x3a\x47\xf8\x31\xb9\xd9\x6c\x3e\x8d\x83\xc5\x66\xf3\x72\xb3\x79\x2c\x59\x07\x45\x0e\x48\x3f\xc2\x90\x21\xd5\xf2\xe9\x34\x1b\x08\x79\xe8\x31\xb8\x5e\x68\xeb\x89\x74\xc3\x74\xa2\xba\x4d\x6c\xf7\x74\x02\xb9\x09\xdd\x06\x39\xaa\xdb\x38\x94\x83\x20\x07\xc3\xb6\x3c\xf1\xbc\x8e\xc3\x41\xbe\x5a\x69\xa2\xfb\xd7\x9d\x74\xe7\x6e\x43\x01\x04\x37\xfc\x9d\x74\x91\x62\xa9\xb1\x55\x0c\xed\x16\xeb\x3d\x9d\x28\x4d\xee\x9d\x4c\xaa\x31\xfe\xc5\xf5\x25\x4b\xfa\x31\xde\xb1\x88\x49\x3f\xde\x62\x20\xc6\x9a\xa8\x1f\xb9\x44\x3d\xfe\x6b\x5a\x0d\xcb\x69\x80\x87\x5b\x09\x96\x1c\xbc\x71\x5b\x25\xc6\xdd\x9c\x06\x98\xb9\x83\x4a\x57\xef\x80\xd6\x6d\x8d\x63\xc5\x55\xe3\x2c\x66\x24\x9f\xb2\xd9\x30\xa8\x26\x90\xd3\xe0\x6c\x67\x49\x54\x5f\xf8\xa7\x41\x87\xed\x06\x79\x2d\x78\x1d\xc1\xa0\x5e\xe6\x73\xaa\x61\x73\x7c\x27\x8b\x7f\x17\x5f\x2a\x5a\xf1\xb0\xd7\x90\xd5\x9b\x9c\x29\xef\x24\x9e\x8c\x7c\xdf\xdd\x6a\x87\x92\xb4\xd5\x83\x7c\x31\x94\x5e\xd1\x2d\x42\xce\x81\x27\xce\x5b\x6d\x0e\x7b\xaa\x2c\x90\xa5\x21\xec\x99\xb1\x3c\x06\x7b\xdc\x33\x6b\x6f\xac\xac\x6f\x4f\x15\x99\x84\xf9\xc2\x33\xfc\x50\xcc\xce\xce\x44\x7e\x83\xea\xd7\xf1\xb4\x37\xf5\xae\x87\xc5\x9a\x0f\x8b\xc5\xd0\x0e\x03\x5c\x87\x02\xe3\x0c\xad\xc5\x77\xb4\x16\x3f\xa8\xb5\x7e\xec\xaa\x9e\x32\x69\xf3\x09\x46\x17\x66\x0d\x0f\x1e\xa6\x17\xb9\x06\xb9\xec\xc6\xd5\x39\x59\x4c\xfe\x13\x0b\xe2\x98\x7d\xd4\xd6\xe2\x62\xb5\x7e\x9c\x65\x74\xa9\xfc\x15\x8f\xcd\xfd\x50\xde\xbc\xb2\xb0\xb2\x41\xa3\xce\xaf\x3d\x79\xe5\xdd\xbb\x2a\x3e\xd1\x79\x8f\x17\xbd\x5f\xdd\x19\xff\x6a\x2f\xe7\x52\x36\xef\x7d\xce\x97\xcb\x1e\x2b\xb8\xbc\x97\x03\x67\x32\x74\xde\xcb\x59\x6f\xb1\xe6\xeb\x92\xf6\x3e\xd1\xb2\x12\xb4\x41\x08\x19\xdf\x4b\xb1\xe5\xb7\x4a\x5b\xd9\xa5\xd6\x17\x6e\x3e\xc9\x13\xde\x1c\x3e\xae\x48\x97\xd6\x08\x67\xe4\x5d\x50\x21\xbc\x24\xb7\x26\x9e\x45\x61\x78\xac\x5d\xee\x77\x2c\xf9\x28\x09\xd3\x40\x97\x7e\xc7\xf5\x9e\x50\x92\x30\x30\xaf\x38\x75\xb9\x8b\xaa\xe3\x48\xe8\xd1\xad\x10\x74\x02\xf5\x04\x4d\x8c\x27\x0f\x4a\xfd\xb1\xbe\x87\x14\xd5\x8c\xbc\x56\x44\xdd\x43\x59\xf6\xc8\xdc\x19\x0c\x3d\x84\x17\x84\x4f\xd6\x9b\xcd\x6a\xb3\xc9\xbe\x18\x11\x42\x96\x5f\x8c\x26\x79\x92\x26\x15\x9e\x13\x3e\xc9\x93\x4a\x5b\x00\x83\xf5\xee\x22\x90\xa5\x62\xdf\x5f\xea\x1f\xfd\x95\xef\xf3\x89\x7c\xaf\x33\x8c\x93\x52\x31\x25\xbc\x58\x25\xf3\xa0\x94\x5c\x87\x32\xf0\x15\xdf\x9a\xdd\x90\x06\xc0\x8b\xa0\x54\xdc\xca\x76\x1b\x50\xad\xc9\x9f\xd3\x4f\x79\x46\xbf\xcf\xaf\xe9\xf2\x8d\x58\xae\xd3\xd1\x66\xd3\xff\x0f\x31\x19\x87\xeb\x60\xda\xba\x56\x2b\x0a\x16\x8e\x32\xa9\x34\x14\x56\x09\x6a\x97\x4d\x3d\xdf\xb9\xc2\x10\xe3\xa1\x58\x90\x98\x2b\xb7\x83\xd5\xc4\x3c\x12\xaa\xec\x23\xc6\x61\x55\xbb\xc1\x18\x68\xe6\x2c\x19\x66\x4a\xab\x64\x93\x80\xb3\xc3\xe7\xce\xb8\x16\x77\xb7\x29\x0d\xab\x15\xcf\x28\x5a\xfc\x5c\x4b\x90\xec\x26\x4e\x7d\xff\x12\x2d\xa7\x97\xe0\x80\x58\x05\xa6\xde\x9b\x07\xde\xe0\x7c\xe0\xad\xae\x71\xcf\x1b\x5c\xc9\x1f\x11\xf2\xf0\x72\xba\x9a\x91\x08\x2f\xa7\x0b\xf8\x53\x33\x81\xb2\xf0\xb0\x0f\x55\x5e\xd6\x41\x30\x8c\x93\x18\x5f\xd4\x66\x00\x8f\xfc\xa1\xd9\xab\xaf\x5e\xca\x86\xcf\xbf\xba\xa8\x37\xbd\x1a\x78\x62\x1c\x0b\xb8\x08\xb9\x21\xb7\x35\x0b\xb1\xc4\xc1\x46\xc7\xc2\xdb\x52\x4b\xc9\xbc\xdc\xd4\x28\xa8\xb1\x6c\x50\xb9\x4b\xf3\x6d\x64\xc8\xb7\x4e\x76\x43\x8a\xac\x17\x01\x56\xa5\x41\x11\x04\x71\xbd\xb6\xc8\x74\xa3\x31\x67\x8b\x2d\x45\xd4\x34\xf9\xe4\x7e\xd5\x19\x36\x6e\x44\xff\xd1\xc9\x72\xe9\xa1\xf3\xb6\xce\x06\x0c\x0a\x1d\x97\xaf\x0d\x07\xfd\x9d\xba\xc9\xbe\xd8\xe4\x6c\x4a\x67\x13\x1e\x56\x94\x5b\xd3\x3c\x8a\x45\x2a\x4a\x78\xcb\x68\x8f\x2a\x25\xa4\x2b\x7e\xfb\xbe\xdb\x59\x1d\x66\x4a\xf4\xf2\xfd\x7f\x04\xf5\x4a\x1d\xb0\x2d\xd8\x8b\x22\x9d\x27\xcd\x1b\x50\x6b\x17\xf6\x7b\x50\x60\x8e\x29\x66\x4d\x01\x36\x25\x1f\x03\xe6\xb0\x6b\xb9\x2a\x76\xaf\xf5\x6d\xab\x88\x36\xb9\xb5\x81\x3c\x6a\x80\xa9\x61\x24\x4e\x11\xfe\x47\xc0\xb1\xa5\xfa\xec\x5e\xbb\xd7\x2d\xc2\xac\x8d\x45\xda\xf1\xdf\x16\xa7\x74\x87\x7b\x01\xc7\xa2\x46\x3a\xb0\x7c\xf8\x8b\xe1\xa6\x5b\xb7\xf1\xe3\x7a\x0c\x8e\xba\x7d\x17\x69\xbb\x1c\x2c\xe9\xef\x6b\x5a\xf1\x86\x6d\x58\xa9\xac\xaa\xd0\x56\x36\x23\xbf\x48\x11\x38\x5f\xe0\x60\x10\x12\x50\xdd\xec\x51\xef\xb7\xa7\x52\xb4\xaf\x04\x2c\x1d\xbb\xb2\x5b\xc7\xd0\x54\x30\xe8\xc6\xba\x57\x7c\xd4\x2c\xb7\x92\xe9\x6c\xdb\xb0\xc0\x26\xdc\xf7\x79\xf8\x1b\x28\x31\x27\x7c\x1a\xcd\x12\xee\x5a\x6d\x4a\x7f\x44\x2a\x9b\x89\x6c\xb6\xc3\x0a\x9b\xdc\x6e\x6b\xfb\xa8\x31\x66\x87\x27\x4a\xed\xef\xce\x3b\x62\x8e\x6e\xcb\x76\xfb\x53\x3e\x6b\xc2\xa1\x96\x09\x61\x41\x9c\xa6\x27\x69\x2d\x3b\xb9\xdd\x4a\xf3\xb6\x9a\x0d\x6e\xed\x21\x57\xf7\xbc\xee\x7c\xdd\x25\x58\xb7\x84\x6e\x71\xd7\x78\xe1\x8d\xd7\x9d\x2f\xbc\x94\x39\xd6\x90\x1b\x73\xac\xc6\xf0\x76\x99\xf4\x39\x8f\x19\x68\x28\x29\x01\x02\xeb\x2e\xf8\x19\xb8\x52\x95\x11\xb6\xcc\x10\xb1\x48\x04\xcc\xb1\x00\x91\x08\x18\x68\x0f\x40\x35\x48\xd4\x2e\xcf\xc7\x95\xb2\xb9\x95\x43\xe8\xb6\xd6\xed\xb0\x99\x24\x95\xe6\xc2\x3f\x04\x14\xab\x08\x35\xb2\xd7\x8e\x20\x2d\xaa\xe8\x6f\xd6\x6d\xb0\x0d\xec\x32\x97\xa8\xbe\xbb\xd6\x77\x5d\xb5\xba\x86\xbb\xbb\x89\x1f\x3b\x3b\xee\x32\x50\xde\xdd\xc6\x2f\xb5\x36\x66\x32\xf4\xca\x38\xa5\xe1\x0f\x3c\x5f\x56\xa4\xdb\xfa\x5c\x72\x67\x13\xf9\x27\xa1\x28\x94\x6c\x37\x54\xc1\xa9\x73\xa8\x57\xe4\x3f\xc5\xb7\xde\x09\x24\xa7\x98\x87\x29\x49\x69\xdb\xd7\xf2\xc3\x1c\xa0\xde\xe5\xa7\x12\x17\x6d\x4f\xa4\x75\xbf\x1f\x5d\xbe\x4a\x57\x2a\xef\x79\xf5\xcc\x78\x33\x19\xbb\x0e\x01\x41\x5e\x94\x6e\x73\x09\xdd\x6c\xcc\x2b\x27\xda\xed\x70\xa6\xe6\xdb\xa4\x97\x49\xf7\x33\xe7\x14\x3c\xd0\x50\x21\xcc\xf0\x4b\x30\xcb\xef\x15\x65\xcf\xc2\x16\xd5\x83\xf0\x88\x33\xb9\xc3\x81\x30\xba\x55\x6e\x43\xfa\xb5\x5e\xec\xc3\x75\xf9\x4c\x47\x8c\x48\xb9\x68\xf7\xd2\xf3\xcc\x03\xf3\x49\x3a\x3d\x98\x11\x0f\x84\xf9\x03\xc1\xbe\x75\x42\x52\x30\xa1\x55\x40\xd1\x34\x9a\xd9\x46\xed\xeb\x07\x70\x98\x1e\x8d\xd9\x69\x1c\x81\xff\x1b\x3e\xf5\x3e\x78\x03\xe5\x4c\x71\x51\x16\x57\x4f\x2e\xd3\xf2\x49\x31\xa7\x01\x43\x33\x02\x17\x5e\x5e\x14\x8f\xf6\xf6\x0f\x0e\x8f\x8e\x4f\x04\x02\xdd\xd1\x2b\xdf\x4d\xc2\xd4\xeb\x3d\xe5\x9c\xdc\xbe\xc1\x8f\x15\x56\xdc\x6a\xe6\x51\x4c\x77\x4e\x17\x17\x97\xf9\x6f\x1f\x97\x57\xac\x58\xfd\x5e\x56\xdc\xd3\x6a\x1e\x6f\x07\xcf\x54\x4e\xe9\x8c\x08\xd9\x16\x77\xd7\xb7\xd0\x02\x02\x5c\x83\xbd\x20\xf5\xa5\x33\x34\xe5\x44\xa5\xa8\x3b\x97\x9d\xd4\xea\x34\x04\x77\xe3\x60\x08\x57\x38\x93\x4e\x14\x97\x24\x1e\x2f\xdb\xde\x6f\x96\x83\x81\x2d\xbe\x06\x57\x37\x6a\x64\x81\xe5\x07\x96\x33\x84\x0a\xed\xe1\x66\x0d\x1e\x67\xa7\xeb\x19\x61\xd3\xf5\x0c\x29\x33\x9d\x8a\x94\x01\xb3\x2e\x5d\x57\x24\x1a\xaf\x4e\x4d\x2f\xab\xc1\x00\xe5\xba\x81\x6a\xba\x9a\xc9\x36\xc4\x2f\xd1\x0c\xfc\xb5\x1e\x88\xb2\xfb\x5c\x50\x37\x3c\xa2\x63\xeb\xc5\x9c\x87\xcf\x7e\x7e\xfe\xee\xf9\xab\x6f\xc5\xaf\x57\xef\x9e\xbd\x79\xf6\x54\xff\x52\x89\x3f\x3f\x7f\x07\x69\x3f\xbc\x7a\xf9\xfa\x87\x57\xe2\xb7\x12\xd1\xe4\xba\x37\x94\x58\x0d\xef\xe9\x4d\x15\x95\x0c\xfb\x24\x5d\xfd\x51\x64\xa0\x2e\x3d\xfb\xe6\x8b\xe0\x41\x4e\x83\x28\x66\x48\x33\x6d\x9d\x1e\x92\x0c\xe7\x5c\xc7\x71\xeb\xfd\x76\x72\x4f\x3e\x74\x21\x58\xba\x52\x14\xd9\x6c\x4a\xc1\xae\xee\xf0\xc6\x24\xcd\x09\x13\xae\xdd\x71\x6f\x0d\x8b\xab\x61\x4c\x31\xdf\x06\x2c\x88\xc1\x1e\xbb\x52\x6e\xe8\x73\xf8\x35\xda\x43\x10\x8c\x30\x18\x1d\xa2\x31\x0b\xf6\x5d\xa3\xe0\xea\x4f\x38\xa5\xb7\x8b\xe3\xad\xd9\x15\x98\xe7\xce\xc5\xb2\xab\xd5\xf3\xe8\x75\xae\x53\xf4\xd2\x7a\x94\x71\x0a\x97\xd7\x63\xbb\xf4\x32\xd1\xd6\x95\x05\xaf\x73\x0e\xe5\xa4\x05\x4d\x97\x78\x65\x06\x5d\x3a\x1c\xf5\x58\x07\xee\x92\x47\x8c\xc8\xd8\x6c\xc4\x4f\x79\xdf\x8c\x73\xc2\x64\x00\x15\x60\xed\xbf\x2d\x8b\xf5\x0a\xa7\x24\xf7\xfd\x7e\x1e\xe6\xd5\x4b\x31\x8b\x9c\x5d\x4c\x78\x08\x83\x4a\x78\x98\xae\x56\x34\x35\x61\xbe\x4a\xf5\xfd\x96\xa7\x7c\x5d\xe9\x77\x05\x39\x9b\xa4\x93\xa0\x30\x53\xc6\x8d\x62\x76\xda\x28\x29\xec\x7c\x93\x82\xf0\x50\x81\xee\x35\x7b\x76\x9d\x83\x0e\x53\x7f\x8a\x42\x13\x07\xb2\x89\xd3\xba\xe2\xac\x2b\x68\x3e\x29\x04\x87\xc7\xe8\x35\xd7\x11\xad\xe4\xb8\xca\x2d\x23\x14\x07\x9c\x94\x68\xa7\xef\x79\xe6\xfa\x9e\xe7\x3b\x7c\xcf\x73\xcc\x1d\xdf\xf3\x4c\xe9\xd7\x4a\x5b\x7a\x6c\x2e\xf0\x2e\xa8\x74\xde\xa8\xdc\xaa\xb6\x05\x90\xdb\x06\xf0\xe1\x05\xfd\x56\x4c\xe0\x82\xf2\xa7\xb4\xcc\x3f\xd1\xb9\x80\x1a\xfd\xa6\x2c\xae\x04\xbe\x37\xfd\xe8\x3b\x8f\x79\xc1\x05\xb3\x06\x0f\x3c\x31\x92\x00\x99\x68\xc0\x68\x88\x6d\x65\x2f\x38\x05\x77\x9b\x05\xa3\x8c\x3f\xcd\xe7\xb0\xd8\xb5\x43\xd6\xf2\x9a\x72\xe1\x02\xfd\xfe\xd0\x5d\x4d\xd4\x6c\xa7\x29\x6b\x99\x5b\x07\x70\xbe\xaa\xbc\x67\x4a\xa1\x45\xcc\xc7\x68\x6c\x2d\x2f\x2a\x87\x3b\xb6\x65\x04\x46\x59\xa4\xe9\x83\xd5\x9a\x41\x1b\xf9\x19\xf0\x1a\x5a\xdd\x59\x1a\x3c\x2b\x9b\x2d\x85\xb6\x1d\x13\x8d\x31\xaf\x4f\xec\xa7\x7c\xb9\xfc\x41\x42\xb7\x05\x23\xf9\xbe\xe8\x95\x83\x71\x01\x54\xbe\x30\x9e\x9b\xab\x56\x98\x10\xa9\x00\x70\xe0\x10\x72\x59\xd4\xe8\x7f\x08\x27\x8c\x94\x58\x12\xea\xd2\xf7\xb5\xa7\x12\xcb\x7f\x96\xbe\x1f\x80\x93\xbd\xeb\x9c\x63\x0e\xde\xf6\x38\xa8\x4b\x8c\xac\xac\x37\xde\x44\xff\x48\x38\xc2\xb7\xa2\x7c\x42\xb1\xda\xd2\x58\xe5\x30\x21\xa3\xd7\xc0\xd0\xf6\x36\x68\xb9\x3e\xe8\xba\x1f\x23\x35\x3e\xc2\xef\x80\x85\xba\xe3\xcf\x4d\xb4\x8e\x45\xce\xe6\x4f\x5f\xbf\x7c\x25\x58\x24\x60\xb9\xc7\x76\xbd\xc0\xb3\xa5\x04\x0b\x2d\x17\x45\x79\x05\x3b\x3f\x60\x98\xa2\xa4\x96\x7c\x9d\xf3\x80\x21\xe5\xce\xcd\x82\xb1\x46\x40\xc4\xc2\x4b\x9c\x27\xa4\x8d\x61\x4a\x38\x92\xce\x60\x39\x0d\xcc\x3e\xb1\xdb\x68\x0b\x0b\xe9\x8e\xa4\x53\xe3\x0d\xc4\xb5\xb6\x9a\x72\x29\x0a\x99\x94\xc9\xed\xdf\xa4\xb4\x93\xbb\x32\x1d\xf2\x9b\x70\x9c\xcb\x86\x1c\x8c\x0a\x10\xf8\x10\xca\xf5\xc2\xe6\xb2\xcb\xb1\x38\x2a\x27\x81\x33\x92\x42\xd2\xce\x80\xe2\x42\x4b\x7c\xe9\x82\xbe\x6d\x4d\xda\xac\x40\x3d\xae\x0f\xab\x37\x23\xb8\x69\x68\x89\x85\x05\x7b\x67\x86\xfc\x8c\xcd\x03\x8a\xd3\x46\xcd\x3b\x3a\x12\xb0\xbd\xab\x1f\x3a\x87\x6e\xb6\xda\x86\x5c\x2d\xfe\xff\xb0\x45\x19\x3f\x29\x75\x71\xa8\x83\x50\x49\x69\xac\xb6\x9a\x62\x87\x95\x1d\x6b\x30\x66\x4d\x58\x0b\xb4\xa4\x77\x03\x5a\x11\x9e\xfa\x68\x79\xad\x09\x00\x33\xb8\x34\x68\x01\x59\xed\xf7\x7a\xdd\xdd\x3d\xb5\xc0\x52\xef\xc8\x40\xe5\x01\x50\xfe\x13\xad\x09\xd2\xd9\xa2\x04\x2e\x11\xd4\x64\x43\x74\xe7\x9e\xd5\xfa\x65\xb5\x9b\xa6\x9a\xd2\x0a\x8b\xd6\xd1\x0e\xdd\xb9\x63\x6e\xec\x51\xfd\x70\x93\xf2\x1a\x5d\xe2\x7a\x95\xf4\x4c\xa9\x22\xfa\x8d\x82\xbb\x31\xa4\x6f\x4c\xd2\xdb\x03\x33\x95\x4a\x74\x2b\x8d\xac\xc5\xa1\xd2\xc1\x97\xd0\xa0\x44\x5a\xd1\xd8\x31\xeb\x1a\xd0\x48\x3f\xee\x28\x29\xc6\xdc\xc0\x93\x96\x53\xd3\x4e\x08\x30\x13\xd6\x47\x86\xc3\xf1\xfd\xbe\x83\xcc\xe9\x7c\xfe\x8c\xcd\xb5\xf2\x64\x4c\x7d\xbf\x5f\xa7\x2c\xf5\x02\xfa\x79\x77\x47\x56\x40\xdb\x83\xd6\x27\x07\xf7\x7d\x27\xc2\x41\xab\x18\xe6\x08\x25\x77\x16\x88\x60\xcd\x4a\xca\xe6\xb4\x6c\x47\xe3\x6a\xb3\x15\xd2\x97\x80\xc3\x27\x19\x09\x09\x18\x14\xbb\xc0\x72\x2a\x32\x36\x9a\x8a\x01\x86\x9b\xe4\xdf\xe8\x44\x74\x23\xb7\x5b\x79\xda\x61\x41\xfc\x21\xce\x48\xed\x06\x41\x4a\x9b\xd2\xf5\x41\xee\xba\x3e\x60\x24\x9f\x96\x33\xcc\x1d\xfb\x88\x33\x12\x6d\x36\x41\xa1\x85\x1a\x6b\x2f\xb1\x0d\x38\x9e\x7a\x7a\x4c\x9e\x94\x67\xe7\x74\x49\x39\xed\x95\x61\xce\xb0\xf9\xed\x32\xcf\x36\xb5\x76\x44\xda\x64\x79\x90\xd8\x6f\x5a\xaf\x45\x6b\x85\x15\xb7\xe2\xd4\xae\xad\xb8\x4d\x2f\x9a\xbd\xdb\x83\xa4\x95\x46\xe7\xb5\xa4\x5a\x87\x86\x2e\x36\x93\xe8\x1c\x77\xc5\xed\x61\x66\x55\xe1\x61\xdd\x58\xde\xb3\x98\xc0\x60\xe1\x13\x05\xbe\xb0\x60\xcb\x1b\xd7\x1a\xc5\xc6\x14\x5b\x16\xcc\x04\x41\xcf\x71\x89\xb6\xb8\xdc\x06\x4e\x0b\x9a\x37\x74\x04\xc6\x65\x80\x6e\xb7\x99\x3e\xd3\xdf\xdd\xac\x68\x45\x5a\x3c\x7e\x19\xca\x88\x1c\x5b\x9c\x49\xcc\x7a\x72\x67\x71\xf7\x31\x93\xa8\x22\xd0\x52\x15\x15\x9f\x6a\x38\x52\x38\xb8\xcd\x59\xd2\x8f\xb1\xbb\xee\xe2\xbb\xb6\xe2\x22\x41\x31\x0d\xfd\x58\x71\x81\xfd\x08\x03\x57\xd8\x8f\xb0\x5a\x8b\x64\x89\xed\x4a\xd9\x0f\x3a\x97\xbf\x45\x61\xfd\xc3\x14\x80\xd5\x48\x96\x62\x54\x56\x1a\x8e\x70\xa6\x65\xe0\x58\xfc\xd4\xc2\xef\x48\x7f\x3c\x7b\x4a\xf6\x54\x19\x91\xbe\x3f\x96\x8e\x0e\x83\x48\x1c\xd4\xc5\xf2\x66\x91\x2f\x97\x28\xc8\xd0\xd8\x8a\xf3\x1d\xa1\x72\xee\x51\xb6\x80\xcb\x6b\xd0\xb0\xbd\xbd\x4c\x57\x14\x02\x50\xca\x43\x5c\x7e\xbb\x0a\x95\x71\x00\x21\xa6\x10\xf2\xfd\xd2\x69\x68\xdc\xac\x03\xf4\xa2\xdd\xb4\x14\xae\xfe\xa2\x32\xa8\xa6\xd8\xa9\x3a\x54\x16\xa0\xa7\x00\x7d\xc5\xf1\x5f\xd3\x54\x98\x2a\x99\x91\x42\x83\xec\xdf\xdf\x17\x35\xda\x11\xe3\xce\xd9\x7a\xb4\x21\xa3\x38\x9a\x69\xf3\x2e\x46\xa9\xa7\x45\x2b\xbd\xcb\xb4\x62\x5f\xf2\xde\x39\xa5\xac\x07\xd1\x6a\xd3\x65\x5e\xd1\x79\x6f\xd8\xab\xd6\x2b\x5a\x06\xa8\x56\x42\x6a\xae\xad\x8a\x5a\x07\x53\x51\x13\x83\x9b\x85\xaa\x0e\xb9\x9a\x32\x5b\x9f\x00\xed\x88\xf2\x8e\x8f\x2e\xe0\x9d\x56\x0f\xd7\xef\xe0\x82\x04\xbb\x54\x3c\x28\xbc\x4c\xd9\x7c\x49\xe5\xb6\x94\xf7\x95\x4b\x19\xdf\x12\x59\x05\x8e\xd2\x9d\xb8\x45\x93\x02\x43\xf8\x89\x37\x70\xa6\x26\xfd\x68\xfb\xaf\x55\x9e\xe4\x5d\xca\x93\xfc\x2f\x28\x4f\x6e\x1d\x99\xa9\xef\x68\x2a\xe8\x7c\xbb\xdd\xe2\xfc\x01\xea\x0e\x5d\xde\xb8\x5a\x52\x7c\x02\x11\x40\xc8\x1f\xa6\x0e\x30\x55\xe2\x3f\xa1\xc7\xd1\x66\x6b\x0e\xa7\xc1\x6b\xeb\xa7\xed\x8e\x6c\x38\xd2\xd0\x59\xa4\x09\x50\xcb\x0b\xca\x9f\x4b\x3c\x06\xc0\xbd\x4c\x57\xab\x9c\x5d\x20\x38\x00\x13\x5d\x02\x38\xc0\x46\x36\x44\x1e\xa8\xad\x79\x0c\x00\x73\x07\xd0\x39\x60\xdd\x68\xbd\x41\x87\x11\xd4\xc3\x45\x63\x2a\x36\x00\xd0\x82\xcd\x26\xa0\x0d\xb1\x01\x9e\x0c\xd4\x05\x09\x8e\x6a\x2b\xd0\x14\xd6\x6b\x3b\x48\x0e\x26\x83\x48\xd8\x4e\x97\xda\xa9\xb0\x64\x18\xd8\x14\x86\x30\xc3\x16\x86\x6c\x0b\x41\xb9\x70\x7e\x37\xff\x28\x19\x41\xae\xe2\xd3\x00\x02\x28\x2f\x57\xf9\x72\xfe\x4d\x2a\x10\xfb\xe6\xdf\x85\x35\xa4\x82\x35\xd4\xa3\xf4\xb0\xe7\x8e\xd1\x9b\x89\x13\x64\xed\x3a\x17\x33\xc0\x02\xb2\xd4\x82\xd9\xc3\xb8\x42\x75\x2d\xc8\x27\x79\x52\x34\x42\xb2\x6a\xfe\x89\xe3\x12\xe7\x77\x70\x50\xab\x87\x70\x42\x36\xde\xab\x64\xa0\xc2\xbc\x7a\xa3\x3c\x9a\x6c\xf1\xaa\xce\x18\xad\x1a\x8c\x91\x81\x49\xe2\xcd\xf3\x4f\x1e\x76\xe1\x92\x74\x9a\x1c\xca\xe5\x5a\x08\x1c\xcf\x1d\x46\x64\xe5\x32\x22\x8b\xfb\x03\xcc\xee\xb8\xc2\x6d\x3a\x7f\x04\x3f\x11\xb8\x20\x2c\xd8\x3f\x44\x75\xdc\x00\x0f\x51\x1d\x43\xcc\x85\xb0\x9d\xb0\x20\x8e\x62\x84\x6b\xd6\x11\xe3\x34\xac\x2e\xf3\x2b\x17\x9d\x9d\xdc\x49\x0b\xcb\x5d\x44\xb4\x67\xeb\xd8\xe5\x27\xcc\x43\x93\x26\x03\xb0\x0d\x62\x3c\x42\x9b\x8d\x1b\x95\xb8\xcb\x86\xb3\x08\x28\x9a\x54\x41\xa9\xc3\xcd\xa1\xa4\x02\x65\x41\xe2\xd6\x4b\xc7\xed\x33\x73\xb3\x49\xb7\x0e\x98\xd3\x3f\x73\x43\xde\x0e\xc6\x39\xee\x8a\x48\xab\xe5\x7a\x33\x38\xcc\x88\x89\x9b\x67\xa2\xa0\x42\xe0\x3c\xa3\xa0\x15\x64\xac\x56\xaa\x4c\x6f\x66\x2a\x9c\x93\x0e\xa4\xe5\xfb\x5e\x61\x42\xb3\xea\xb0\xaf\x56\x95\xeb\x24\x1a\x6b\x32\xfd\xeb\x8c\x44\xbb\x62\xf7\xe9\x51\xc2\x1f\x4a\x11\xc2\xec\xbe\xdb\x47\x17\x28\xb8\x20\xe6\xa2\xbe\x0b\x1a\x86\x74\xf5\x81\xfa\x49\xc2\xdb\x27\xa4\x54\xd6\x4e\x96\xab\x2a\x02\xef\x0d\xbd\x78\x76\xbd\x72\x9d\x98\x2e\xd3\x8b\xaa\x77\x41\x39\xa7\xa5\xbe\xed\x2f\x58\x8f\x15\x6c\xa8\x40\x81\xd4\xfd\xbc\xe7\xd5\xb4\x27\x17\xcb\xe2\x3c\x5d\x0a\xee\x6f\x40\xbc\x0b\xed\x68\x2e\xbf\x60\x45\x49\x9f\xa4\x15\x55\x39\xb9\xce\xb9\x5a\x2f\x79\xbe\xcc\x99\xce\xb8\x32\xbe\xe9\x0a\xfe\x78\xa9\x1b\xaa\x74\xea\x9a\xe5\x59\x31\xd7\x85\xd7\x9e\xb1\x7e\xc9\xb3\x8f\x37\x2a\xf5\xc6\x93\x6f\x06\x1e\x00\x4a\x16\xec\x1f\x41\x24\xe4\x60\xef\x10\x75\x05\xf7\xb4\x5b\x78\xd7\x0d\x27\x4e\x1f\xb0\x0e\xfd\xc2\x81\x77\xba\x13\xde\xca\xb1\x53\xd5\x4b\x7b\xbc\x5c\xd3\xde\xb3\xb7\x07\x3d\xca\x3e\xe5\x65\xc1\x04\xea\xf6\xf8\x65\xca\xb5\xd5\x78\xd5\xd3\xc6\x1e\xbd\xb9\x1d\xaf\x34\x8f\xf0\x2e\x72\x30\x74\x7d\x94\x3e\xba\xc8\xaf\x64\xe3\x9a\x48\xe4\x41\xb3\x73\xec\x41\x01\x65\x59\xe1\xfb\x5d\x72\x38\xc4\x59\xf1\x7d\xef\xbc\x28\x96\x34\x75\x72\x1e\xa5\x8f\xd4\x52\x59\x77\xb7\x17\x94\x6b\x8e\xbf\xfc\x73\x31\x9d\xa5\x39\x25\xce\x71\x2a\xad\x43\xa4\x69\x14\x9d\xe6\xb3\x20\x05\x27\x1a\x92\x41\x57\x76\x09\x4b\x43\x95\x40\x5a\x60\xc1\x12\x6d\x05\xe2\x30\x3a\xe1\x41\x86\x92\x66\x54\xcf\x4c\x85\xf5\x2c\xb1\x1b\xe5\xa4\xe8\x72\x6e\xd3\x50\x11\x1a\x6a\x69\xc8\x06\xfd\xdc\x53\xcd\x3b\x3c\x4c\x81\x73\x59\x31\x25\x54\x0b\x3a\x98\xb5\xe4\xbb\x20\x85\x39\x56\x38\xc3\x1e\xa3\xd7\xdc\xc3\xae\xcb\xb5\xac\x55\x06\x50\x07\x0a\x55\x4a\x2e\x02\xed\xec\x5f\x09\xc3\xdc\x6f\xcd\xf0\x76\xeb\x60\xad\xe0\xeb\xab\xfc\x6a\xb5\xa4\xdf\x80\x97\x64\x97\x19\xb2\x31\x95\x58\xdb\x25\xba\x13\x70\x49\xba\x60\xa3\xca\x25\x0d\x96\xdf\x3b\x1a\x52\xea\x63\xe5\x3a\x48\xfa\x55\x50\x5f\x2d\xdd\x27\x78\xf4\x57\xdc\x97\xe0\xbd\x22\x9c\x93\xe9\x0c\xa7\x44\x3b\x1f\xc5\x15\x89\x70\x46\x22\xbc\x24\x42\x88\xa1\xf0\xee\x73\x0d\x6f\x17\x2a\x0e\x1f\x2b\xc2\xc2\x2c\xad\xe8\x5b\x0a\x0c\xc9\x27\xea\xfb\xea\x85\x8d\xf3\x46\x7a\x4c\xdb\xa5\x20\x50\x69\xbd\x94\x16\x8c\x17\x24\x1a\x2f\x4e\xd3\xf1\x62\x30\x40\x25\xe1\xd3\xc5\x0c\xaf\xa6\x8b\x19\xf8\xd0\x29\x66\x93\xa0\x24\xcb\x41\x39\x58\xe3\x62\x40\x62\x9c\x0d\x48\x3c\xc8\x50\x22\x46\x59\x0d\x48\x86\xf3\xa9\x66\x12\x67\xc4\xdc\xc7\x17\xf0\x44\x45\x26\x4f\x82\x8a\xac\xe0\xcd\x5c\xfc\x28\x4a\x2a\x7c\x2b\x59\x5c\x3a\x4f\x72\x63\xa6\x83\xab\xac\x28\x69\x52\x6d\x91\xba\x12\xe6\x6a\x81\x6a\x50\xaf\x47\xd4\x8a\xfa\x84\x30\xdd\x87\x7e\x7c\x6f\x2f\x25\xe9\x84\x25\x41\x49\x4a\xb0\xf0\x64\x6d\xef\x54\x4c\xef\x52\xb9\x43\x8b\xb1\xe0\x21\x79\x99\x66\xdc\xf7\x83\x8a\x98\xaf\xa0\x40\xda\x3d\x97\x5d\xe5\x0a\x97\x86\x2b\x91\x28\x90\xf9\x7e\xc0\xa6\xcc\x80\xe2\x56\x0e\x28\xc9\x42\x3d\x5d\x35\xc7\x2c\x84\xbf\x18\x98\xe8\x24\xc7\xfa\x49\x72\x52\x80\xe1\xb2\x74\x5d\xd5\x65\xfe\xa9\x25\x33\xa8\x3e\xa4\xf2\xaf\xc3\x04\x28\x3f\xda\x43\xc5\x9f\xc3\x2d\xca\x74\xb6\xdd\x06\xf7\x99\xf2\xb5\x7d\x20\x4a\xd0\x74\x2b\x75\x1a\x46\x3e\x92\x7d\xcc\x2b\x19\x93\x9e\x22\x57\x4d\x13\x61\xe6\xc4\xab\xb7\x11\xed\x6b\xa1\x94\x07\x88\x4d\xb9\x10\x1f\xb8\x71\x2a\xc2\xb6\xdb\x80\xa2\xba\x0a\x23\x5f\x04\xd2\xae\x30\xcc\x39\x2d\x53\x5e\x80\x3a\xc7\x98\xe7\x6d\x36\x3b\xd8\xa4\x7b\xc3\xd8\xa3\x9a\xd7\x75\x08\x39\x4f\x51\xa3\x7f\x21\x50\x77\xd8\x16\x3e\x67\x9f\xd2\x65\x3e\xef\xa5\x9c\xd3\xab\x15\xef\xf1\xa2\x57\xad\x4a\x9a\xce\x81\xcb\x80\x71\x9e\x2f\x6d\x58\x3c\x0f\x89\xb5\x68\x50\x49\xad\xf7\xfa\x2b\x21\xdf\x0d\x28\xba\x98\x72\xbd\x0d\xb6\x9d\x42\x45\xf7\x19\xa9\x3b\xac\xab\x4a\x08\x31\xe9\x7d\xfd\xdb\x02\x74\xa2\x47\x97\x98\x1e\x91\x80\x60\xda\x61\xe5\x5e\x37\xb6\x17\xdb\xd9\x39\xc3\x52\x5c\x49\x4e\x83\x4d\xd3\x99\x72\x7f\xae\x7f\x19\x17\x6b\x79\x90\xc2\xab\x75\xb9\x21\xc5\x7a\xd4\x03\x0b\x2e\x72\x36\xef\x5d\x81\xba\xb1\xf7\xa5\x37\x48\x07\xde\x97\x1e\x1a\xcb\xd5\xcb\x42\xc1\x78\x11\xef\xe5\xeb\xa7\x3f\xbc\x78\xf6\xe1\xd5\xeb\x77\x1f\xbe\x79\xfd\xc3\xab\xa7\x1e\xce\xb6\xf2\x15\xba\xe8\x99\xdc\xaa\xa3\x04\xbc\xa2\x8b\x11\x4c\xa3\x99\x44\x96\xa5\x3e\x65\x3a\xbd\x6d\x16\x01\x14\x8e\x67\x53\x3a\xdb\x6c\x84\x44\x81\x97\xd8\x56\xd1\xce\xe6\x8c\x2f\xe8\x69\x3a\xd3\x99\x5b\xbd\x67\x72\xd2\x8f\x71\x4a\xa2\x71\x7a\x5a\xea\x2d\x92\x0e\x06\xa8\x08\x4a\x01\x0a\x47\xbc\xbe\x8d\x93\x69\xeb\x7c\x09\xcf\x6f\x38\x7d\x21\x05\xa4\xb6\x50\xa1\xe4\x09\xae\x3c\x86\x39\xc1\x38\xf6\xbe\x0a\xd8\xa0\x44\x8f\xf6\x87\xa5\xa0\x95\xbc\xf8\xfa\x86\x53\xd8\x10\x5d\x1a\x40\x5c\xca\xa6\x52\x52\x8a\xa6\x2a\x52\x4e\xe3\x19\x96\xab\x91\x07\xcd\x41\xd9\x2e\xf8\x80\x89\x2e\xd8\x36\x88\xc0\x49\x16\xc2\x6b\x12\xe1\x15\xa9\xce\xa2\x49\x3a\xdc\x4f\x52\x38\x91\xa4\x45\xeb\x6a\xcc\x06\x64\x1f\x71\x52\x4c\xa5\x13\xef\x27\xc5\x9c\x3e\xe6\x01\x43\xb3\xd3\xd3\xf8\x78\xd3\x4c\x1e\xc4\x90\x31\x6a\x67\x8c\x44\xc6\x61\x3b\x7d\x0f\xcd\x70\x36\x5d\x0f\x06\x33\xc2\xcf\xce\xe2\x43\x7f\x74\x70\xe0\x24\x1c\xbb\xdf\xa3\x83\x03\xdf\xc8\x5b\x23\xe5\x61\xab\x7b\x6c\x1d\x23\x88\xd1\xec\xec\x6c\xbf\xd6\x16\xc2\xf1\x9d\xad\xc4\xd1\x8e\x19\xee\x77\x4e\xf0\xec\x6c\x74\xe7\xd0\x11\xce\xc4\xba\x0a\xe2\xd6\xbd\xb2\x86\x66\x83\x3a\x49\x31\x23\x05\x61\x5f\xec\x69\x16\x25\xc2\x15\x61\xc3\x62\x9c\x9e\x56\xe3\x74\x40\xe2\xc3\xbd\xe3\x3d\x94\x4b\x77\xce\x6b\x30\xb9\x48\x07\x90\x78\x56\x4d\xaa\x44\xfd\xb6\xfa\x5d\x31\xdd\x62\x12\x70\x42\xa7\x6c\x18\xcf\xb0\xaa\x59\x4e\xf9\xd9\xd9\x68\x36\x28\xa7\xfc\xf4\x74\xdf\x3f\xdc\x9b\x0d\x3c\x42\x3c\x84\x12\x01\xe5\x02\xe0\x13\x88\x2a\xa3\xd9\xe9\xe9\x31\x1a\x74\xd4\x8e\x23\xa8\x7e\x76\x26\xab\x43\x4b\x23\xd5\x92\x87\x10\xb6\x4c\xc6\xd6\x5e\x05\x88\x39\x15\xe2\x9f\x9c\x74\x5a\xd4\xff\x90\x33\x7e\x0c\x60\x9a\xd8\x9f\x09\xfc\x8b\x53\xe2\x3d\xfe\xfa\xc9\xd3\x67\xdf\x7c\xfb\xdd\xf3\xff\xfc\xc7\x8b\x97\xaf\x5e\x7f\xff\x5f\x6f\xde\xbe\xfb\xe1\xc7\x9f\x7e\xfe\xe5\x9f\x5d\x06\xcb\xeb\x4f\x9f\xaf\x6f\xfe\xb0\x86\xd7\x83\x47\x9e\x62\xf4\xb4\xdb\x8c\x71\x75\x9a\x8d\x07\x83\x0a\x95\xd3\x6a\x06\xbe\x47\x71\x31\x4d\xdd\x65\xae\xd0\x8c\x54\xe3\xfa\x1d\x83\x7e\xe9\xad\xda\xc8\x17\x01\xff\x62\xff\x2c\x72\xe4\xb4\xc6\x39\x25\x59\x92\xb0\x27\x29\x84\x71\x09\x94\xf6\x40\x84\x5d\x2d\x69\xaf\x58\xf4\xf6\x9d\x78\x18\xe6\x45\x2a\x31\xd7\x0d\xf0\x94\x5e\xda\x11\x70\x84\xa7\x0c\x83\x8f\xfe\x49\x94\xec\x0f\xd9\x17\xfb\x4e\x38\x92\xb5\x26\x00\x1a\xe8\xc0\x53\x08\x98\x57\x84\x8f\xab\x53\x36\xae\x06\x64\x0f\x15\x62\x7d\x2b\x81\xf2\x87\x7e\x7c\x78\x14\xc7\x87\xc7\x11\x1a\x88\xb4\x41\x2c\xd6\xdc\x3f\x3c\x18\x41\x8a\x40\x64\x91\x3a\x9a\x21\x9c\xea\xf5\x0f\x72\x52\xa0\xb3\xb3\xf8\x58\xad\x7d\x7e\x76\x16\x8f\xec\xef\x43\xf5\xf3\x70\xcf\xcf\x2d\xf5\x4c\x2d\x46\x14\x53\x6f\xe8\xb9\x70\x8e\xd0\x8c\x1c\x8e\x70\x31\xf5\x3e\xb4\xd3\xf7\xb6\xf8\x76\x3b\xc3\xa3\x36\xe5\x95\x19\x7b\xed\x8c\x96\x76\xb8\x24\x34\xf0\xce\xd3\x8a\x1e\xee\x0f\x7f\xab\xa4\x5f\xbb\xc0\xcb\x29\xa5\x47\x07\xfb\x10\xad\xf9\x4e\x4e\x60\x67\x5e\xb8\x28\xca\x89\xfd\x19\x78\xac\x98\xd3\xdf\xaa\x70\xcd\xf3\x65\x98\xb3\x6a\x05\x17\x24\xeb\x8a\x17\x57\x9e\x64\xb2\xdb\xaf\x2a\xe8\xd9\x28\xde\x3f\xda\x3f\xde\x3b\xdc\x3f\x72\xef\xac\x52\x76\xa1\x58\x9e\x2f\xdf\x5d\xd2\x1e\x08\xb0\x3d\xef\xcb\x01\x1d\x7c\xe9\xf5\xf2\xaa\x97\x2b\xfc\x5a\x14\xa5\x7e\x49\xee\x81\xef\xf1\x2f\x35\x2a\x89\x66\xec\x46\x72\x3c\xd4\x2b\xf6\xac\xa2\xfc\x7b\xcd\x50\xbc\x5e\x04\xcc\xbd\xb6\x41\xae\x6f\x77\xee\x84\xad\xe9\xd0\x5e\xc9\xf4\x96\x23\x2e\xde\xf9\x36\x04\x26\xa3\x0b\xf7\xb4\x80\x6c\xb6\x85\xa8\x77\xb3\xa2\x66\xd7\xbc\xa1\x19\xcd\xe1\x7d\xbc\x48\x95\x7d\x7f\x69\x26\xb2\x16\x3c\x8f\xfa\x5d\xa9\x41\x6e\x5d\x06\x5a\xf2\x3b\x9d\xc3\xa3\xed\x60\xed\x7a\x8a\xad\xb2\xcc\xf7\x3d\x6d\x3c\xca\x88\xb7\xe6\x8b\x63\x0f\xe1\x3e\x0f\xf3\xea\x19\xcb\x8a\x79\xce\x2e\x02\xb6\x23\xf8\xf2\x0f\xec\x23\x2b\x3e\xb3\x1e\x55\x05\x93\x9e\x37\x30\xa6\x37\xd1\xe6\x52\x07\xa0\x4c\xa5\x3b\xa2\x02\x82\x20\xc3\x53\x55\x1b\x85\xae\x0f\x6e\x65\x82\x82\x14\xc6\x27\x71\x0e\x9e\x55\x65\x31\x2d\x11\x7c\xbd\x5e\x2c\x68\x19\xe6\xd5\x8f\x39\xfd\xec\x70\xd9\x2b\xb1\xf6\xce\x8d\x44\xe7\x38\xc5\xba\xc0\x25\x50\xc7\xa2\xb0\xe6\xc2\xe0\x9e\xec\x0b\xf7\x9c\x8e\xd5\x07\xee\x15\xa5\xfc\x35\x5c\xe6\x1f\xa9\xc6\xb6\xc6\x52\x7a\x03\xc1\x8a\xc3\xb0\x7e\x0b\x28\x76\x9a\x41\x9b\x0d\xf5\xfd\xdf\x02\x1a\x9e\xcb\x66\xdd\x3c\xb3\x68\x6a\x6d\x77\x06\x07\x79\x7b\x99\x96\x74\xee\x54\xf5\x7d\xe8\xa8\x95\xde\xea\xae\x5d\xa2\xbb\xd7\x8e\x8d\xb0\x1b\xe1\x65\xa0\xeb\x06\x68\xd5\xab\x28\x0d\x5a\xd9\xe0\x4e\x9c\xd7\x3e\xe2\xa0\xa9\xd7\x0b\x21\x30\xa8\x9f\x01\xb2\x8f\x3a\x0a\xdf\x2f\xfa\x8e\x59\x13\x97\xd2\x55\x21\xc7\x2d\xd9\xdd\x86\x88\x27\xd0\x58\xce\x14\x44\x49\x49\x3c\x22\x70\x24\xaa\x84\x47\x5c\x92\xd4\xb9\x1e\x8a\x40\x0d\x2d\xf3\x20\x08\x71\xb1\xba\x09\x4a\x1c\xe1\x08\x62\x6c\x6f\x5d\xed\x5a\xd4\x77\x94\x12\x6d\x2b\x66\x6a\x9a\x79\x63\xbb\x9b\xa4\x41\x84\x12\x81\xb5\x89\x27\x07\x26\xbd\x6f\x88\x3a\xbe\xdf\x10\x7e\xc3\x79\xca\x53\x34\x59\xe9\x5f\xfa\xd1\xb1\xc2\x79\x2b\xc4\xec\x46\x15\x45\xe7\x25\x00\x15\x39\xe7\xc5\xf7\x65\x7e\xa5\xf4\x38\x9d\xaa\xcd\x69\xbb\xe4\xac\x01\xf5\xce\x32\x86\xbe\x20\xb9\x26\xff\x46\xbb\xb1\x6d\x4f\xd1\xb1\x62\xdd\x58\x2e\xcf\x9e\xdd\x04\xdd\xa0\xb1\x38\xf2\x4e\xa3\xbf\xe9\xa4\xab\x71\x3e\x46\xec\x91\x82\x92\xe8\x66\x12\x25\x80\xc8\xee\xd4\x56\x75\xb3\x16\x8d\x75\xb6\xb0\xc1\x7a\x26\x03\x4a\xab\x58\x45\xe3\x72\x40\x62\xc4\xa6\xa5\xe4\xef\xe9\xb4\x74\x74\x27\xa6\xf5\x85\x73\xe8\xb0\xd3\x48\x6c\x0f\x2b\x1f\x9e\xb2\x1d\xf3\xf6\xa4\x7f\x06\x98\x6e\xb1\xe6\x55\x3e\x07\xc8\x49\x8a\xd4\x83\xf7\xfd\x95\x82\x5d\xad\xb9\x41\x50\x82\x7b\xef\x1d\xad\xca\x89\xdc\xd7\x2a\x10\x16\xab\x44\xb4\x21\xec\xf4\xbb\x7b\x70\x21\xd2\xe2\x26\x92\x3b\x32\x31\x43\x49\x3b\x0d\x97\x26\xaa\x7f\x83\xf7\x28\xea\xbc\x87\x13\xa5\x6f\x6e\xd8\x24\x72\x1f\x9f\xe4\x3d\xb6\x2a\xa1\x74\xb9\x2c\xb2\x94\x53\xb5\x33\x7a\xcb\xb4\xbc\xa0\x65\x8f\x5f\xa6\xac\x77\x95\x5e\xe7\x57\xeb\xab\x9e\xc0\xa1\xa4\x17\x5d\x7b\x03\xdb\x72\x68\x54\x55\x41\x7c\x88\x06\x5e\x4f\x40\xbb\xb2\x76\x3f\xd1\x86\xda\xb1\x5d\x1a\x96\xa1\x4e\x42\xcd\x8d\x86\x15\x12\x3a\xcf\xe7\xcd\xa6\x79\xf4\xd9\xaa\x76\x95\x5d\x37\xa7\xf7\x6e\xc3\x7b\xb8\xab\x3b\x48\x87\x26\x13\x6a\x90\x0d\x02\xf1\xa5\x3a\xae\x15\x37\x6d\xa5\xd5\x2e\x6f\x0d\xe0\x58\xca\x75\xce\x20\x43\x97\xf8\x3e\x20\x8b\x9e\x63\x34\x76\x15\x30\xe3\x31\x52\x6e\x16\x99\xf2\xd1\x9f\x56\x59\x9e\x2b\xa7\xfc\xcb\x94\xe7\x2c\x56\x1f\xe7\x39\x03\x9f\xc2\xfa\xae\x48\xfa\xef\x07\xa6\x2c\xd1\x3f\x87\xc7\x26\xff\xeb\x80\x6a\x77\x1d\xaa\x64\x56\x8d\x74\xc9\xac\x1a\x8e\x6c\xad\xf8\x70\x49\x9d\x36\xe4\xa7\xd6\x40\x7c\xa5\x3a\xba\xa4\xd7\xb6\xef\xb3\xb3\xb3\x58\x26\x4b\xf1\xc2\xe4\x7c\xef\xf4\xaa\xed\xef\xdc\xe3\xa8\x98\x0c\xe3\xc4\x1d\x1a\x23\x81\x27\x38\xc3\x86\xe7\xd5\x9c\xf4\x23\xc7\x6c\xef\xbc\x1e\x84\x46\xc6\xe9\xb6\x56\x6f\x7c\xb3\xe1\xa7\x11\x44\x28\x23\x11\xc2\xfc\x0c\xae\x39\x15\x3d\x53\xcf\x83\xbd\x7a\x15\xb6\xd9\xb0\x5a\x31\x29\x66\x3a\x09\x98\x9d\x92\xa8\x5e\x9b\x9d\x9d\x9d\x91\x08\x9d\x92\x80\xcb\x5f\x36\x5b\x2c\x2a\xdd\x6c\x02\xaa\xf9\x64\xbb\xb2\x54\xad\xac\x0b\xc1\x17\xd6\x70\xed\x9e\x75\x7c\xd7\x2c\xa9\x10\x44\x65\x5f\x37\xb3\xef\xc2\x99\x57\xcd\xc2\x8d\xd5\x7b\xdd\x1a\xd5\x5f\xc2\x99\x67\x4e\x33\x0e\x12\x94\x0f\x97\x14\x28\x1a\x53\x12\xd0\x81\xe7\x35\x11\xa3\xac\x23\xc6\x55\x1d\x31\x40\xb3\x4f\xa5\x8e\x9f\xcd\x30\x44\x40\x2a\x6d\xe9\x97\x92\x1c\x63\xb8\x79\x54\xf1\x33\x68\x1d\x4f\x86\xf1\x0e\xff\xca\x93\xa0\x20\xa5\x38\x14\x51\x52\x3a\xb2\xeb\xa4\x74\x08\x74\x52\x9e\x0e\xcd\xd7\x31\x78\x7e\x74\xbe\x11\x7e\x13\x94\x64\x50\x4a\x97\x90\xf9\x24\x4a\x6c\x78\x11\x84\xcb\xd3\x08\xd2\x75\xda\xa0\x44\xb8\x3c\xb3\xc3\x73\x55\xd3\xc3\x78\x6c\x0b\x0e\x63\xe3\xc5\xb9\x3c\x8d\xa4\x32\xbb\x56\x30\xda\xee\x92\xee\x04\xc6\x4b\x96\x8d\xe1\x02\x22\x6b\x19\x7a\xce\x0c\x51\x86\xdd\xa2\x59\xd9\x61\x9c\x5c\x38\x40\xec\x96\x08\xac\x19\xba\x2f\x78\x86\x4e\x53\x75\x7b\x44\x3a\xf7\x25\x4a\x07\x34\xc9\x27\x77\x65\x9b\xd7\xd8\xb8\x44\x49\x67\xc1\x65\x5a\xf1\xe7\x1d\x85\xc5\xd0\x05\x5e\xa8\xc1\x77\xa2\xe3\xa7\x74\x69\x0e\x0e\x7d\x58\xc8\x19\x8a\xb3\x42\xf1\xe5\x0e\x5f\x75\xd1\x72\x6c\x84\x53\x12\xe3\xca\x9e\x16\x99\xb9\x73\x1d\x1b\x53\x5d\x25\xda\xca\x0d\x46\x08\x09\x4a\xa2\xce\xdf\xb2\x81\xf1\x68\xb3\x51\x7b\x4f\x9c\x22\xe2\x43\x6d\x3e\xfb\x39\x34\xdf\x48\x32\x0d\x9a\xb7\x1b\x49\x07\x89\xf2\xb7\x45\x89\x94\x8c\x70\xf5\x88\x8c\x70\x26\xfe\x61\x8f\xc8\xa8\xc6\x01\x3b\x4f\x6c\x21\x3c\xd1\x44\x6c\xa8\x84\x86\x25\x4d\xe7\x3f\x3c\x67\x3c\x3e\xfc\xfa\x59\xc0\xbf\x4a\x91\xc0\x2b\x35\xe9\x35\x19\x4a\x6f\x11\x39\x61\xe3\xfc\xb4\x1a\xe7\x83\x01\xca\x17\x81\x68\x2e\x47\x84\x90\x65\xc0\x31\xe8\xf3\xd6\x93\x28\xc9\x87\x6b\x39\x52\x99\x02\x71\xfa\x73\x84\xf3\xe1\x7a\x20\x12\x32\x8d\x3f\xeb\xaf\x52\xc0\x6d\x70\x5f\x27\x8a\xe5\x43\x22\xea\x82\xfb\x3b\x89\xf5\xa0\xc6\x1f\x64\x67\x15\x60\x73\x35\xcc\xc0\x5e\x7c\x9c\x9f\x91\x68\x9c\x0f\x87\x96\xe5\x5d\x91\x7e\x84\xe5\xf5\x73\x06\xd7\xcf\x7a\x74\x83\x05\xea\xcb\xf1\x2d\x10\xba\x5d\x89\xc3\x05\xfc\x14\x8b\xd9\xad\x9a\x61\x35\x87\xb1\x05\xd5\x8d\x13\x59\x91\xbc\x02\x14\x09\x18\xda\x6c\x22\x23\xb3\xaa\x0d\xca\xc6\xe5\x24\x28\x75\x91\x12\xa1\xb3\x02\xb6\x7a\x81\x92\x92\x14\x4a\x3a\xb5\x41\x41\xcf\xf2\x47\x23\x49\x22\x1e\x8d\xec\xcd\xb9\xba\xa9\x19\x0f\x06\xe6\x1e\x19\x9c\x73\x3f\x67\x3c\xe0\x61\xb5\x3e\xaf\x78\x19\x8c\xbe\x4a\xf1\x08\xe1\xf8\x10\x76\xe6\x9b\xa0\x32\xbb\x38\x1d\xd3\x29\x1b\xa4\x33\xeb\xe6\x26\xb5\x33\xf9\x64\x67\xa2\x32\x7f\x0e\xbe\x0e\x38\xb6\x33\x40\x58\x6e\x21\x5b\xe7\x71\x47\x9d\x6e\x0b\xfa\xe9\x4c\xb9\x0e\x31\x9c\xe1\x60\xc0\x10\x97\x7a\x55\x90\x29\xea\x77\x12\xd6\x5b\xd7\x16\xdc\x9c\x36\x3a\xfe\xd0\xea\xd8\x0e\xc5\x96\xfa\xdc\x31\xbc\xef\xbb\x9a\xfb\xe3\xce\x79\xd4\x9d\x74\x00\xdd\x50\x77\x14\xe3\xf4\xd4\x1a\xb0\xf5\x83\x80\x0f\xc9\x08\x9d\x46\x08\x16\x48\x87\x83\x55\x73\x4a\xc5\xb9\xc5\xce\xce\x8e\xe1\x9e\x63\x74\x70\xa8\x6f\x15\x0a\x64\xee\x17\xac\xda\x6b\x7b\x0f\xe4\x5f\x37\xae\xbb\x80\x03\x92\x01\x6c\x8d\xca\xa1\xac\x5f\xc0\x08\xb9\xa5\x95\xa4\x94\x6a\xa2\x29\xa7\xf5\x77\xd6\x82\xc4\x38\x6b\x37\xa4\xcc\xf1\x1c\xa2\xee\x35\xf8\xb8\x38\x65\x63\x43\xf9\xc0\x04\x67\x09\xc6\x1c\x78\x2d\xdf\xfa\xad\xc8\xf2\x6c\xb4\x77\x32\xd9\x4f\x96\x67\xa3\xd1\xde\x64\x2f\x59\x9e\xc5\x27\xf1\x64\x94\xc0\x51\x5b\x0c\x56\xa7\x84\x69\x5e\x69\xa5\x7c\x8c\xc7\xc9\xf2\x34\x1e\x1d\x03\x65\x58\xd6\x3c\x8a\x8f\x92\x78\x74\x2c\x28\x66\x7c\x32\xf2\x83\x5c\x74\x35\x88\x67\x08\x1c\x95\x90\x60\x2f\xf6\x97\xe8\xf4\xf4\x70\x73\xb8\xe7\xe7\xe8\x2c\x1e\x1d\x41\x13\x59\xad\x89\xbd\x44\x57\xc3\x29\xfc\x18\xcd\xb0\xd3\x68\x8e\x7c\xdf\xf9\x4c\x55\xd3\xf1\x01\x34\x1d\x8f\x36\x01\x34\xae\x7a\x49\xd1\xd9\x28\xda\x17\xdd\x64\xa7\x07\x07\xa3\x93\xc3\xcd\x26\x3b\x3b\x38\xda\xdb\xdf\x43\x1d\x5d\xef\x77\x74\x5d\xc1\x8f\xbd\xfb\xc6\xe0\x7c\x56\x8d\x21\x1d\x9b\x21\xa9\xd1\xa5\x7a\x74\x15\x3a\x3b\x3c\x38\xd8\x3b\xf0\xfd\xec\x34\x8e\xe3\xfd\x38\x1e\xa9\x51\x6d\x95\x01\xf3\x7a\x12\xac\x89\x28\xb3\x87\x57\x24\x46\xc9\x5a\x57\x08\xd6\x43\x48\x3f\xc4\xa5\xba\x7a\x13\x5c\x7f\xe4\xc7\xd1\x68\x6f\x03\x33\x15\x74\xf8\xe0\x70\x6f\x14\x6d\x44\x9a\xbf\x46\xa6\x24\xc2\xc5\x80\xac\xb6\x1d\x66\x1c\x1d\x17\x49\xa7\x64\x3f\x3a\x39\xd4\x84\xaa\xc3\xa5\x90\x32\x0e\x93\x39\x98\x5a\x1c\x84\x58\xc2\x5a\x4f\x81\xd8\x80\xdc\x5f\x59\x21\x7d\x89\xcb\x81\xec\xd6\xda\xd6\x6c\x03\x77\x97\x5d\xd7\x39\x4b\xcf\x1b\xdf\xb3\x21\xf4\x5e\x18\x0c\x0a\x54\x76\x0e\x25\x10\xe8\x28\xb6\x86\x7d\x8a\x62\xfb\x7b\xf5\x2f\xe8\x6f\x57\x5f\x2f\x1a\x5c\xb3\x5e\x8d\xa0\xdf\x90\xa4\x82\xbe\x90\x93\x4e\x23\x21\x2c\x95\x52\x44\x2a\xdd\x11\x78\x1e\xce\x09\x1f\xe7\x30\x8c\x1c\x15\x03\xf2\x7c\x4a\xa7\xf9\x6c\x66\xad\x07\x4c\xa7\xcf\x9a\x97\x74\xa2\x63\x4b\x82\xb0\x6a\x2d\x1a\xe7\xd6\x1e\x21\x1f\x90\x91\x68\xb5\x6b\x72\xe5\x34\x9f\x0d\x46\x07\x87\x5f\x95\xd3\x5c\x50\x80\x8e\x2e\xdf\x3a\x37\x38\xf4\x0b\xc1\x44\x44\x9b\xcd\x4e\x35\x9c\xd2\x46\xf5\xf2\x0a\x54\xd4\xeb\x9c\x71\x65\xe5\x39\xe0\x67\x3b\x54\x58\xde\xbb\xf2\x26\x67\x17\xa0\x7b\xc9\x32\x5a\x55\xbd\x73\x7a\x53\xb0\xb9\xd6\x36\x29\x55\x94\x83\x57\x4f\x2c\xfb\x8c\x53\x65\x7a\x52\x53\xa3\x74\xeb\x19\x65\x7b\x1d\xca\x8d\x54\xeb\x7a\xb4\xe9\x8f\x54\x98\xb1\xb3\x5c\xac\x5c\xba\x4b\x47\xd6\xd4\xcc\x4b\x5d\x19\xe8\xc9\x1c\xb5\x5b\x39\x28\xce\x8c\x04\xd2\x0d\x00\xe0\xb3\x75\xdd\x52\x64\xb8\xb3\xfd\xe8\xda\xa9\x4a\xed\xe0\xa0\xfc\x2b\x4d\x8e\xa5\x62\xf1\x2f\x0d\xe2\x77\x33\x88\xdc\x9a\x2c\x91\x01\xc7\x52\x9e\xc7\xf9\x66\x23\xc6\x19\x61\x86\xf7\x11\xb6\x57\x51\xb2\xce\x68\x4f\xa4\xb2\xc1\xbe\x6d\xf0\xa7\x87\x37\x78\xdc\x6e\xf0\x60\x24\x52\xd9\xe0\x78\xcb\x42\xb9\x76\x84\x63\x16\xbe\x5d\x16\x9f\xd5\x67\xdb\xe2\x67\x40\xfb\xca\xff\x48\x24\xc4\x34\xd0\xf3\x05\x03\x8a\xb6\x98\x85\xcf\x5f\xbd\xfd\xfe\xd9\x93\x77\x1f\x5e\x3e\xfe\xf9\xc3\xd7\xbf\xbc\x7b\xf6\x96\x1c\x44\x98\x85\x1f\x5f\xa6\xd7\xca\x3e\xc7\x4a\xa8\x98\x87\xef\x7e\xf9\xfe\xd9\xd3\x0f\x8f\xdf\xbc\x79\xfc\xcb\x87\xb7\x3f\x7c\xff\xfd\xeb\x37\xef\x9a\x6e\xe6\xac\x2f\x39\x47\x93\x19\x23\xcc\xc9\xed\xa2\x28\x3a\x5c\x09\xee\x8f\x6c\xe4\xac\x6e\x55\x27\xc7\x5d\x92\xda\x2e\xc5\xa8\xe0\xbb\xf0\xfe\x08\x38\x9a\x45\x51\x04\xda\xb7\x1a\xab\xfb\x56\xeb\x9e\x8d\x10\x8a\xcc\x7d\x87\x95\x38\x95\x83\xf2\xcd\xc6\x8a\xa3\xfd\x66\x66\x48\x05\x3e\x6d\x36\xb5\xcf\xc0\x7b\x77\x99\x57\xbd\xf3\xb2\xf8\x5c\x81\x4e\x35\xfb\x58\x81\x7a\x70\xde\x4b\xc5\x74\x7a\x81\x9d\x1a\xd2\x06\xe7\xbd\xcf\x97\x79\x76\xd9\x8c\x3f\xfc\xab\xdc\xc6\xbf\xf6\x3e\x1d\x84\xd7\x61\xef\x87\x8a\x3a\x49\xfb\xe1\x75\x2f\x5f\xf4\x6e\x8a\xb5\xae\xd3\x2b\x96\x73\xd3\xaf\x6a\x38\xf4\x0c\xd0\x9a\x1e\xc1\x5c\x23\x75\x19\x10\xdd\xc3\xb7\xd4\xb8\x36\x4c\xfa\x11\xbe\xa0\x3c\xa9\x1b\xdb\x3b\xc4\x47\x3e\x75\x70\xdf\x27\xc8\xb1\x6d\xb7\x0f\xea\x52\x29\xf3\xff\xa7\x5d\xde\x70\x2a\x03\xde\x8a\x6e\x1f\x7e\x73\x55\xad\x68\x96\xd3\xca\xf7\xf9\xb4\x9e\x32\x93\xec\xf1\x2e\x2f\x6a\xf5\xc2\xf8\x56\x7a\xcb\x04\xce\x35\x2b\xd8\x22\xbf\x58\x9b\x99\xb8\xf3\x8a\xb1\xd8\xd4\xea\xf7\x16\xde\x7e\x16\xc5\xf2\x6d\xfe\x07\x25\xc7\xf1\xc9\x08\x4b\xbd\x4a\xcb\x2c\xbb\x79\x6b\xbf\x03\xff\x5d\xb8\xfe\x99\x7d\xe3\xee\x32\x43\x27\x76\x0d\x62\x47\x32\x5c\x23\xd1\x53\x12\x4d\x52\x7b\xdd\x21\x80\x3f\xe9\xd0\x21\x41\x99\x70\x91\x2f\x97\x70\x88\x27\xce\xa7\xfc\xd8\x9a\x99\xaa\xd1\xfc\xc0\xaa\x74\x41\xbb\x1e\x4b\x81\x59\x43\xbd\x98\xa0\x89\x77\x15\xd5\x78\xd4\x55\x46\x79\xfb\x53\x7a\x79\x1a\x7e\xd0\x85\xa5\x6d\xa9\x03\x62\x78\x40\x59\x5c\x89\x2d\x43\x5a\x66\x11\xbf\x05\xee\x12\xc0\x4b\x6d\xad\x34\xa3\xc6\xc3\x38\x76\x6f\x2e\x10\xc2\xbf\x05\xac\x51\xc9\xd1\xb4\x31\x5d\x89\xd5\x2b\xd5\xf9\x80\xcd\xa6\x5f\x57\xc7\xed\xbe\xf8\x38\x5f\x2f\x62\x0f\xc3\xdf\x91\x3d\xd2\xab\xce\xfb\x0f\xc5\x2c\x14\xa5\x43\xda\xd5\x15\x1b\x21\x84\xb5\x6f\x29\x6a\xd7\x1e\x5a\x0f\x28\xf8\x34\x1d\xc2\x40\xf0\xa7\x25\x2e\xd0\x38\x3f\x4d\x81\x0b\x04\x8f\xa3\xf9\x0c\x9c\x91\xe7\x33\x74\x5b\xc2\x93\x14\x51\x7b\x9a\xab\x90\x51\xe6\xc1\xcb\x29\x5c\x08\x14\xa7\xe5\x24\x4e\x22\xb9\xa2\xda\xb4\xa4\xb6\xa6\x4a\x3c\x54\x3a\x32\xda\xd4\x91\x39\x0a\xf6\x1d\xda\xf4\x87\xdd\xad\xd4\x94\xe2\x7f\x5d\x03\xde\x8f\x8c\xde\xdb\x1e\x57\x80\x64\x2c\x4b\x9b\xaf\x3b\x04\x07\xd8\xb2\x6c\xef\x66\x02\x97\x79\xc5\xbb\x58\x40\x65\x51\x2e\x16\x59\xae\xaf\x62\xdf\x3a\xf4\xdb\x3d\xcd\x3c\x28\xc3\xe6\x72\xec\xba\x0f\x60\x48\x99\xc5\x2a\xa9\xca\xd1\xd8\x94\x42\xbe\xa2\xd3\x72\xa6\x93\x94\x0c\xe2\x6e\xd7\x80\x21\xe0\xe0\xed\xa3\xde\x5a\x03\xfa\xb1\xcf\xb4\x9c\x49\x03\x98\xb4\xb1\x49\x52\xbd\x49\xd2\xc6\x76\x48\xff\x16\x88\xa4\xd2\x64\x43\x70\xa2\x38\x1f\x18\x8b\x48\x1b\xce\x1f\x73\xd7\xaa\xf9\xb2\xf6\xa0\xdf\x90\x0f\xe9\xbb\xc2\x79\xc4\xfa\x39\x5d\xc5\x87\x3b\x5e\x51\x5b\x31\x97\x7e\x31\x12\xf2\xc7\x0e\x06\x56\x6d\xcb\x2a\xff\x83\xee\xb0\x95\x8c\x0f\x87\xe7\x39\xaf\x3c\xe4\x38\xe5\x8d\xc6\xfc\x94\x8e\xb9\x10\x92\xae\xf4\x9d\x0b\x1f\xc4\xc8\x7d\x63\xb8\x6d\x0d\x76\x6f\xf4\x80\xc1\xee\xff\x8f\x06\xbb\x37\xba\x63\xb0\xfb\xee\x60\xf7\x10\xd6\x5f\x83\x18\xf3\xc1\xe8\x9e\xc1\x1f\xee\x3f\x60\xf0\xc7\xff\xa3\xc1\x1f\xee\xdf\x31\xf8\x63\x77\xf0\x47\x8d\xc1\x1f\x3a\xdf\x23\xcc\x07\x07\xce\xf7\x1e\xe6\x83\xfd\x3b\x26\xa7\x2f\xe0\xef\x9e\x9e\xa3\xf2\xa3\x13\xcf\x4b\xa2\x8e\xc7\xc9\x13\x75\x65\x08\x61\xec\xcf\x77\xb8\x10\x69\xf4\xfd\xa2\xc8\xd2\x25\x55\x23\xe8\x1a\x56\xad\x3c\xfd\x7d\x9d\x2e\xab\xa6\x41\xd5\x03\xe4\x58\xef\xf1\x2e\xf1\xd5\xab\x81\x46\xfa\xdb\x06\xc5\xa6\x3e\x99\x75\x90\x83\xfa\xc8\x95\xb5\x69\x1b\x68\x9e\x87\x39\xe9\x90\x8d\x1c\x57\x93\x02\xac\xc6\xec\x01\x0e\x0f\x1c\x61\x8e\xc2\x92\x82\x13\xf3\xe0\x51\x10\xde\x8e\xb6\xe8\xd1\x05\xf6\xfe\x23\xee\x79\x28\xe4\x65\x7e\xa5\x1d\xb2\xa9\x6b\x7f\xae\x5e\xd1\xf6\xc2\x30\xec\x79\x08\x7b\xa7\x0a\xbf\xbc\x01\x1d\x78\x67\xde\x16\xe7\xbe\xef\xb2\x73\xd3\x7c\x46\x3a\x26\xd0\x74\x1e\xd2\x66\x46\x1c\x11\xfa\x2f\xb1\x24\x0f\xd1\x32\x00\x37\xc1\xd3\xf2\x82\x76\x11\xd5\xfb\xd8\x88\x5d\xc6\x13\xb5\x03\x06\x58\xa1\x08\x61\x6b\x45\x23\x6f\x3d\x27\xfa\xa4\x48\xdc\xcc\x02\xcc\x3f\xdd\x94\x1c\x22\xe8\x35\xee\xe9\xa3\xcd\xc6\x2a\x15\x36\x9b\x42\x24\xe4\xb5\xdb\xfd\x1d\x0a\x1f\x47\x61\xd0\x83\xdb\x45\xa9\x68\x28\xce\x44\x3f\xec\xcc\xb5\xda\x50\xc9\xb5\x6b\x62\xb7\x04\x24\x68\xdc\x6d\xb3\x51\x29\x09\x72\x69\x33\x30\x0c\x0a\xf9\x03\x57\x24\x28\x75\x9a\x32\x2d\xc0\x4b\xcb\x54\x41\x70\xf7\xb5\xf2\xe6\x06\x7a\x32\x38\xb9\x56\x46\x6d\x26\x3d\x98\xc0\x95\xd6\x72\x3c\x18\x2c\x04\xe7\xb5\x9e\x2e\x04\xe7\xb5\x9a\x2e\x66\xe8\x36\x25\xe2\x13\x57\xf0\x59\xe7\xbc\xd2\xd3\x4a\x70\x5e\xd5\x69\xaa\x39\x2f\x17\x27\xb3\xe5\x7a\x4e\xab\x1d\x82\x03\xdc\xc6\xc9\x87\xea\x3a\xda\x94\x61\xf1\x5b\x97\xb5\xbb\x84\x8f\x97\x6a\x3f\x83\x4e\xa4\x1f\x35\x2a\x3b\x17\xb8\x0f\x6b\x20\x6e\x34\x00\x1a\x97\x46\x55\x65\x9e\x66\xad\x46\x50\xa9\x8c\x35\x70\xcd\xf2\x03\x0b\x72\xaf\xaf\xd4\x5d\xcc\xed\x32\xf6\x06\xdd\x4d\x67\x6d\x79\x11\x5f\x7d\x93\xb3\x9c\xd3\x80\xa3\xf6\x5b\x09\x65\x73\x24\xb5\x43\xfa\xae\x59\x9b\x41\xe0\x9e\xdc\xc7\x53\xac\x94\x88\x33\x24\x35\x93\xbd\x65\xc1\x2e\xac\x3e\x00\xdc\x33\x71\xa5\x77\xd2\xbd\x31\x34\x51\x18\xd5\xdc\x68\xca\x3a\x05\x25\x41\x49\x98\x71\x9b\x8b\xb6\x8a\x9b\xb3\xf3\x18\xf2\x0e\x83\x99\x42\x8a\x32\x05\x32\x17\x54\x67\x91\x48\x11\x1b\xee\xff\x61\xef\xcf\xbf\xdb\xc6\x95\xc4\x51\xfc\x5f\x71\x30\xdf\x71\x8b\xd7\xb0\x9b\xa4\x76\x29\x8c\xbf\xce\xd6\xc9\xbd\x9d\x4e\xa6\x93\xf4\x72\x1d\x4f\x3f\x88\x84\x24\x76\x28\x52\x06\x21\x2f\x1d\x6b\xfe\xf6\x77\xaa\xb0\x92\x92\xd3\xe9\xe5\x7c\xde\x9c\x77\xde\x2f\x12\xab\x0a\x4b\xa1\x00\x14\x0a\x40\x01\x90\x0f\xc3\xe0\xee\x4e\x7e\x41\xb7\xf3\x1c\xd6\xb0\xec\xd6\x4b\xaf\xe1\xa2\x07\x23\xc2\xdd\x9d\x63\xf9\x1e\xbf\x29\xb1\xc7\xbb\xe6\xd6\x6b\x1b\xbf\xe7\x5f\x73\xb5\x1b\xb6\xe9\x61\x73\xb6\x1b\xe0\x73\x3e\x36\xbf\xec\x06\x6f\x79\xd9\x5c\xef\xe1\xee\x4f\xf9\xd9\xfc\xd6\x48\xa8\xe1\x6e\xf5\xc5\x9e\x36\x22\x98\x0a\x74\xc1\x6a\xfb\x1d\x68\x17\xac\x96\x9d\xf0\xcf\xb7\xaf\xbf\xdb\x77\x29\xd5\xed\x9a\x5b\xa7\x65\x9a\x31\xc9\x26\x7b\xef\x7a\x71\x77\x76\x9d\xfc\xc2\x84\x50\x77\x76\xd1\x30\x68\xe5\x83\x61\x5b\xd3\x24\xf7\x58\x92\xdd\xad\xe0\xc9\xff\xfc\x0f\x0f\x1e\x86\xa7\x30\x04\x8b\x00\x1d\x68\x78\x12\x06\x13\xfe\x48\x5f\x13\x1d\xd0\x4e\xe9\x79\x76\x9e\x8a\xc9\xff\xfc\x4f\x89\x31\x4a\x1b\x03\x86\xa3\x49\x89\x31\x4a\x88\x51\x3e\xe4\xf8\xc9\x8d\xef\xb9\x52\xc0\x9b\x19\xb3\x4e\x9e\x9f\x5f\xea\xdc\xf1\xea\x6c\x94\xcd\x78\x51\x7c\xfb\x6c\x47\xb3\x71\xd5\x63\x75\x67\x2e\xef\xee\xd4\xfe\x85\xdf\xa1\xbc\x69\x39\xa0\xcf\x39\xcc\xab\x23\x9c\x74\x1d\x1d\xe5\x0f\xc1\x1c\xa9\xfe\x91\xc4\xfd\x41\x30\x0d\xc4\x91\x0e\x73\x94\x5f\xfc\xa3\x72\xdb\x40\x7b\xd9\x79\xfc\xf7\xb0\x73\x74\x7c\x2c\x91\xa5\xa9\x44\xcd\xb0\x87\x19\x08\xf1\xbb\xec\x8c\xee\xb9\xf2\x5d\xb3\xa4\x78\x89\x1a\xbc\x50\x2d\x90\xfd\x09\x46\x83\x96\xc0\xef\x49\x33\xde\x9b\xe6\x9d\xe6\x1d\x8f\x89\xdd\x97\xc1\xe3\xbf\x90\xc1\xc3\x87\x23\x97\xc7\xfe\x0c\xba\xf1\x97\x95\xa0\xd7\xcc\xa0\xb3\xaf\x08\x06\x88\xf1\x30\x5c\x70\x14\x0d\x86\xc3\x61\x1c\x0d\xfe\xa1\xf1\xdd\x7b\x79\xf8\xb2\x42\xb6\x78\x68\x25\x7f\x71\xd4\xf1\x98\x89\x06\x3e\x37\x96\xb5\xee\x45\xb0\xcb\xc3\xff\x93\xfd\xe6\x51\x02\x41\xa2\x78\x84\xfe\x7b\xc7\xca\x4e\x5b\x57\xd7\x9d\x98\x8e\xfe\x21\x83\x80\xee\x69\xca\x7f\x4b\xc7\xd2\x9c\xda\xee\x23\x2e\xa6\xa2\xd9\xb9\xf2\x23\x9f\xea\x78\xce\x1b\x3c\xe7\x7b\x78\xce\xf7\xf2\xfc\x67\x7a\x5f\x14\x8f\x0e\xb5\x68\x4f\x8f\xa3\x7f\x74\xe2\x7e\xff\xd8\x54\x77\xa4\xee\xd8\xde\xdb\x39\xf7\xf7\xcd\xcf\xf5\x99\xa9\xbb\x7f\xbe\xdd\xae\xed\x21\xf3\x78\x38\x18\x1d\x96\xa7\xbd\x78\xdc\x1b\x87\xd1\x70\x10\xde\x95\x93\xf2\x9e\xcc\x77\x9a\xf4\x17\x67\x7e\x14\x99\xec\xff\x64\xe6\x7f\xb2\x4f\xff\x7e\x97\x76\xbd\xe8\xe1\xc3\xb8\x77\x4f\xde\x7f\xaa\x2f\xdb\xf2\xc6\xbd\xbb\x2f\xe9\xc5\xbb\x79\x3f\x2f\x2a\xd6\xee\xc6\x5f\x96\x77\x85\xf1\x8d\xd5\xf3\x20\x54\x7b\xb3\xf7\xe4\xf0\xa7\x4a\xd7\xca\x21\xba\x2f\x87\xa7\xd5\x66\x56\xf0\x2f\x2b\xc4\xe8\x77\x0a\x81\xfb\xc1\xf7\x65\xf1\x65\xa5\xf8\x7c\x16\xd1\xbe\x2c\xd0\xf2\xde\x6b\x88\xc0\x3c\x89\x27\x47\xdc\x2a\x28\xf5\x27\xee\xee\x9e\xf8\x73\xae\x86\x2e\x29\x83\xe3\x88\x86\xc6\x62\x8a\xec\x2a\x30\x36\x03\xa9\x8f\x0e\xa1\xaa\x2d\x7d\xc5\xa5\xc8\x47\xf9\x45\xc2\xbf\xae\x0e\xe3\x7e\xdf\x2e\x02\x1d\x95\xf7\xb0\xbb\xa3\x4f\xff\x3a\xbb\xe5\x31\x30\x1c\x79\x0c\x1f\x55\x86\xe5\xe3\xe3\x0a\x6f\xa5\xeb\xe4\x2d\x9e\x2b\xe0\x39\xff\x32\x9e\x47\xf7\x4d\x62\x1b\x7c\x37\x18\x8e\x68\xdc\xef\xd3\x50\xf7\x37\x23\x41\x2a\x8f\xa2\x7b\xf2\xd8\x51\xa2\x5f\x94\x4d\x4c\xd1\xdb\x6b\x4f\x46\xaa\x94\xd1\x45\x02\x2d\x6d\x44\xe5\x51\x7c\x6f\xc6\x7b\x86\xb8\x3f\x93\xb1\xce\xc8\x66\x6c\x4a\x7c\x5f\xc6\x3b\xca\xf3\x8b\x32\xee\x51\xd4\xcb\x83\x61\x3c\xf6\x72\x3f\xea\xaa\xfc\xe3\x9e\x41\xc4\x0a\x11\x0d\x76\x45\xd1\xaa\x91\xde\xbd\xfc\xfd\x19\xc1\xec\xe7\xaf\xcd\x5d\xd4\xe6\x2e\x6e\xc9\xaf\xfb\x79\xfe\xee\xeb\xf7\xb8\x0f\xe8\x58\x7b\xa0\x37\x6d\xaa\xa6\xe5\x50\x1e\x47\xc1\xb4\xd1\xbb\xaa\xe3\x88\x1e\x57\x6a\x19\x41\xed\x0d\x46\xb4\xfe\xac\x0e\x60\xa6\x3f\x71\x98\x85\x85\xea\x8a\x92\x50\xaf\x2c\x81\x4e\x38\x8e\x2e\xf0\x76\xac\xc8\xd6\x51\x7e\x91\x74\xf8\xd7\xec\xd1\xa3\x30\x38\xae\x7f\xbf\xe7\xdd\xa7\x2c\xfe\x9e\x32\x82\xd2\xd8\x2d\x25\xf0\x68\x14\x47\xae\x14\xc7\xef\x16\xf4\xe8\x6f\x28\xe8\x9f\xd2\x30\x51\x3c\xa4\xc7\x60\x1c\x52\xae\xe7\xce\x71\xbf\x7f\xc4\x8f\xa2\x2f\xd3\x3a\x7f\x41\xe9\x80\x89\x34\xa4\xc7\x68\x29\xfd\x39\xcd\xf3\x17\x14\xcf\xfe\xcc\xff\x88\xf6\xf9\x0b\xca\xc7\x73\xc5\x6a\x1c\x0d\xfa\x1d\x19\xdc\xa3\x93\x3c\xad\x75\x5f\x37\xff\xb3\x5a\xe8\x3e\x46\x4d\x53\x71\x5a\xaa\xd9\x62\xfe\x5e\x3d\xb5\xcf\x56\xf4\x0a\x70\xe9\x38\x7e\x10\xee\x2c\x41\xbb\x14\xee\x17\x81\x9f\x42\xb4\x3f\x85\xbd\xb6\x9e\x97\xc4\x8f\xbf\xcf\xc4\x5e\x5b\xee\x9e\x24\x76\xb9\x48\xab\xf5\xed\xce\x5e\xd0\x17\x6f\xb9\xd9\x7d\x9c\x7a\x59\x6d\x8a\xac\xb5\xe9\x96\xcf\x3b\x6a\x95\x35\x0c\x68\xa5\xb6\xdc\xaa\xbb\xbb\x4e\xd5\xda\x62\x71\x07\xd1\xd4\xda\x98\xa3\xe0\xdd\x20\x10\x19\xa6\xa4\xd5\x43\x75\x61\x87\x08\x68\xd5\x3c\xf4\xda\xf2\x46\xd0\x9b\x7b\x3b\xc7\x34\x55\xc8\xfb\x1d\x3d\xd5\xe6\xd4\x5b\xc9\x84\x6c\xfa\xab\xea\xa2\xa8\xad\xa0\xe4\xf7\xd7\xa0\xef\xf3\x31\xad\xee\xcd\xba\xae\x36\x22\xe5\xcf\xca\x6c\x27\xe3\xca\x5f\xf3\xc6\xf2\x37\x84\xe7\xce\x72\x3c\xac\x8e\x95\x7c\x1c\xea\xc8\x3d\xd3\x72\x2c\xfc\x2d\xa4\xfd\xd7\x2f\xec\x3d\xee\x06\xed\xe3\xc7\x5c\x2e\xf3\x12\x8d\x53\x0f\xee\xa8\xa6\x62\x77\x33\x5c\xe2\x02\x06\xe1\xf2\x61\x15\xb8\x0d\xaa\xfc\x38\x9a\xb2\x47\x49\x38\x3d\x3e\x66\x01\x3f\x67\x47\xe5\x85\x1a\xa3\xd8\x91\xb8\x50\x49\xec\xcd\xbe\xe6\xd2\x9c\xb2\x6b\x2e\x95\x0a\x7c\x33\xcd\x3b\xd8\xd2\x68\xd5\xf3\xbc\x28\xf6\xb7\xea\x7d\xb7\xd6\xdc\x73\x43\xcd\x69\xa7\xc2\x6d\x8c\x90\x36\xd6\x86\x83\xc9\x9e\x13\x9c\xaa\x65\xb6\x02\x52\xeb\xdf\x56\xb9\x0d\x1e\xe7\x6a\x58\xed\xef\x53\x66\x05\xdd\xdb\xc6\x36\xb7\x5b\xec\x3f\x3e\x5a\x1d\x1e\x36\xef\xcd\xa9\xfe\xc0\xbd\x39\x15\x26\x1a\xf9\xce\x3c\xea\xbc\x4d\xf3\x94\x51\x18\x4c\x3b\x6a\x9f\x43\xed\x9c\xe6\x0f\xa3\x78\x74\x77\x67\x76\x2b\x00\xa9\xf6\x8a\xf3\x60\x8b\x87\xe7\xf6\xdc\xe5\x72\xca\xf1\xc8\xe6\x64\xf7\xea\xe2\x03\xe5\x7e\xac\x0f\xb1\xe9\x7d\x5d\xb5\xf1\xe3\xc4\xf9\xb0\x6c\x82\xe2\x9e\xbe\xf4\xfa\x9e\x8d\x57\xf1\xd0\xb9\xa0\x49\xf3\x62\x2b\x53\x5b\xad\x6a\x56\x97\x78\xd7\x2f\x78\x39\x4d\xc4\xa3\x47\x8f\x42\xaa\x4e\x60\x87\x01\xdd\x77\x4d\x0d\xb4\x74\x96\x94\xf6\x14\x9d\x6a\xdb\x17\x09\x57\xdb\x75\xea\x4c\x5d\x43\xa1\x9e\xf2\x89\xdd\x57\xaf\xd4\x8d\xca\xce\xcd\x24\xc4\x93\x8a\xf7\xee\xa3\x7f\xf6\x3e\x0f\xab\x93\xb5\x1f\xfe\x57\x6a\xc1\x4f\x9f\xf1\x3b\x2e\x3d\xfe\xa0\x17\xd6\xe7\xec\x3f\x53\xf7\xc2\xef\x32\xaf\xd5\xc5\xbe\x4f\x93\xaf\xcf\xff\xfb\xe8\xeb\xf0\x78\x7c\x76\xfc\x6f\x76\xfc\xdb\xf1\x2f\x17\x5f\x2f\xdc\x5d\x5b\x8f\xbd\xcb\x5c\xa7\x32\x91\x77\x77\xd1\xd7\xf7\x39\xf6\x6d\x8a\xc2\x3f\xda\xa6\xcf\x19\xe2\xa1\xf7\xf6\x59\xb6\xe0\x51\xbf\x1f\x8f\xfb\xa0\x3e\xfa\xc3\x6e\xaf\x67\xee\xec\x46\xef\xfe\x47\xfd\x41\x37\x1a\x07\x9f\x3a\xf2\x38\xe9\x06\x8f\x8e\xa3\xc3\x43\x7d\xc2\x2d\xee\x8e\x69\x34\x8e\x68\x34\x1a\x07\xd3\xb4\x2a\x65\x5e\x6e\xf8\x36\x9f\x77\x18\x1e\xfa\x14\x5f\x1e\xa7\x4a\xca\x46\x02\xe5\x43\x3c\x85\xf4\x7b\x09\xd0\x46\xbc\x52\x1d\x6e\x3a\xea\x54\xc7\x78\x98\x09\x2f\x42\x2c\x8f\x55\x4a\xea\x6c\x29\xde\x09\xf8\x59\x96\x60\xc0\x50\xb2\x2b\xa1\xb3\x29\x81\xc9\xe3\x24\x0a\x1e\x86\x81\x3a\xf6\xa5\xa3\x99\x57\x3b\x91\xdd\x38\xec\xb9\xb0\xf1\x6e\xd8\x47\x8f\x06\x77\xd1\x38\xa6\x83\xee\x61\x79\x07\xe9\x7a\x71\x91\x6b\x1b\xb9\xbb\x2f\x72\x14\xdf\xc5\x71\x8f\x96\xea\x52\x3a\x48\xa0\x95\x12\x56\x58\xa7\x34\x27\xc2\xf6\x6c\x4d\x9b\x6b\xfc\xd2\x2a\xe3\x07\xeb\xca\x1e\x85\x81\x3c\x7b\x7b\xf3\x1c\xdd\xc5\x3d\x5c\x7c\xc1\x4b\xf1\x30\xd3\xfd\x0c\x6c\xed\x70\x60\x1b\xea\x1b\xcf\x6d\x57\xf8\x57\x82\x76\x5a\x2e\x46\x1d\x9e\x74\x78\xc2\xcd\xab\xee\x09\xc1\xe7\xea\xb5\x63\x8e\x75\xdc\x79\x4a\x09\x09\x82\xf6\xc1\x67\x7d\x49\xc3\xd4\xb4\x7a\xe5\xe2\x36\x0d\xf8\x51\x42\x12\xe2\x5e\x38\x6a\x5e\x9b\xf3\x93\x9b\x37\xba\x63\x4f\xe1\x14\x0d\x9d\x07\x9d\xea\xa8\x7c\x64\x4f\xee\xde\xdd\x55\xde\x79\x7d\x3c\x97\x25\xcf\xab\x23\x7c\xaf\xa4\xda\x77\x22\xea\xd7\xe6\x8a\x9e\x3d\xc1\x53\xcd\x0f\xe4\xdd\x9d\xf5\x5f\xd6\x1f\xfe\x3d\xb9\x7b\x91\x27\x25\x5b\xf1\xd6\x85\xba\x88\x43\x37\x2a\xf8\x70\x59\x7f\xef\x5f\xd0\xfb\x20\x49\xd4\xc3\x4e\x2f\xfd\xad\x5d\x53\x5c\xee\xdd\xab\x0c\x13\x59\xaa\xbc\xe1\xa2\xc1\xf4\xe8\x48\xba\xb7\xd4\x93\x68\xf0\x0f\xa9\xdd\x46\x91\x26\x02\x7e\x5e\x1e\x89\x8b\x84\xb8\xeb\x28\xd5\x95\x95\xe4\x5c\x5e\x1c\xed\xc1\xba\x9b\x85\xf8\xb6\x13\x6c\x03\xef\x85\x27\xde\x31\x27\xa0\x02\x7d\x66\x26\xd8\xd2\x4f\xde\xe5\x86\x93\x88\xaa\x00\x93\x2e\xd5\x37\x1c\x4e\xba\xf1\xf6\x82\xf6\x76\x2f\x4a\x94\xf6\x06\xf7\x4f\x5c\x3d\xd5\x82\x2f\x99\x4d\x3e\xb1\x42\x2e\x8a\xdb\xf5\x72\x42\x58\x21\xbf\x81\x2f\x42\x0d\x2e\xe3\x73\x87\x7e\xca\xe7\x8e\x92\x4b\xbe\x72\xa4\x97\x92\xaf\x08\x65\x65\xbe\x62\x92\xa7\x55\x51\x89\x09\xd1\xd0\x13\x80\x2c\x6d\x55\x01\x4f\x96\xf8\x0a\x41\x4b\xc5\x67\x60\xe6\x95\x58\xd9\x00\xef\x0c\x86\xd0\xb4\xc8\xd7\x6b\x26\x97\x13\x02\x5f\x6f\x98\x5c\x12\x3a\xe7\xb3\x82\x97\xd9\x84\xcc\xf9\x63\xf8\x00\x0c\x66\xbf\x62\x52\xe4\x37\x80\xc7\xfc\x5f\x21\xa8\xa8\xfa\x75\x18\x95\x17\x17\x2a\x8c\x46\xbe\xd3\x48\x1b\xb2\xce\x25\xb7\x21\x00\x50\x94\xf2\xaa\x2a\xae\xb8\x9f\x89\xc2\xb8\x7c\xb2\x7c\x3e\xdf\xd4\xbc\xc8\x17\x4b\x7c\xa5\x8a\xcc\xf9\x53\x85\xfa\x56\xa3\x54\xa8\x1a\x7b\x2f\x54\xc7\x8a\xad\x55\x28\x87\x7a\xc5\xd6\x3a\x94\x64\xa5\xc4\xb4\x74\x10\x80\x31\x21\xa4\x8b\x6a\x5d\x2f\x59\x56\x5d\x23\x55\x54\xeb\xb7\x08\x01\x6d\x5e\x54\x15\xca\xe7\x39\x7c\x20\x66\x53\xa6\x0c\x31\x9b\x32\x3d\x33\x98\x99\xc1\x3c\x36\x98\x85\xc1\x7c\x63\x30\xc2\x60\xbe\x07\xcc\x82\x6d\xea\x3a\x67\xe5\xac\xd8\x20\xe1\x1b\x0d\x3f\x2e\x36\x28\xbf\x7c\xc5\x16\x28\xbb\x97\xf0\x01\x98\x15\x17\x0a\xf3\x0a\x3e\x2c\xa6\xac\x32\x87\xfd\xae\xca\x14\xa5\x12\xeb\x65\x55\x54\x8b\x5b\x24\x59\x08\x68\xca\x47\x08\xf0\xaf\xf5\xe9\x9b\x39\x47\x75\x6d\x25\xf4\x06\x20\x2b\x9f\x7a\xcd\xd3\x4d\xc1\x84\x5f\x19\x6f\x35\xce\xaf\x8d\x7a\x5d\xb9\x24\xde\xae\x2b\x97\x82\xcc\x0b\x64\xf1\x5d\x5e\x20\x77\x72\x23\x66\x9b\x82\x97\xa9\xc2\x5a\x88\xd0\x79\x25\x78\xbe\x28\xd5\x55\xe9\x13\xa2\x41\xe5\x33\x41\x28\x76\x1d\x01\x9d\x0a\xbf\xbe\x87\x1e\x55\xe4\x25\x67\x62\x21\x58\x96\xe3\xa3\x45\x0a\xfe\x46\xc3\x84\xc2\x07\x2b\x1c\x5d\xc1\x8e\x2e\xf9\x8d\x54\xfd\x02\xbe\xb0\x5f\x6c\x29\x93\x52\xe4\xb3\x8d\xe4\xba\x93\xe3\x09\x20\x7c\x60\x69\x23\x8a\x09\x71\xe0\xfb\xef\xbf\x25\x2e\x34\xe8\xcb\x09\x69\x44\xf6\xa8\xca\xe1\xc5\x82\x60\xfb\x11\x0a\xda\x68\x2e\xf8\xe5\x86\x97\xe9\xed\x04\x95\xd3\x73\x03\x2a\xea\x5a\x54\x73\x94\x1f\x00\x6f\x14\x40\x68\xca\x8a\x74\x85\x35\x0f\x5f\xaf\xb0\xda\x4d\x17\xdf\x94\xb9\xac\x5d\x3f\x7f\x0f\x20\xa1\xba\x4b\xa1\xa2\x67\xea\x79\x27\x44\x3c\xd1\x08\x42\x79\xb6\xe0\x2a\x4d\xf8\x52\x69\xaa\x67\x0e\x74\x8a\x0a\xd0\xe9\xed\xab\x0c\x23\x66\x4f\x13\x19\x94\xa7\x8a\x0c\x4a\xa7\x6a\x40\x9d\xee\x47\x2e\x4a\x5e\x18\xe5\xa0\x20\xa3\x18\x14\x04\xf1\xb4\x09\xaf\xe9\x10\x55\x79\xad\x42\x98\x5b\x6c\xcd\x35\x10\x6f\xb1\x29\x63\xaa\xb7\x60\x00\x94\x5c\xa1\xdf\xaa\x6f\xc4\xcb\x7c\xa5\xb1\xef\xe0\x8b\x50\x95\x36\xcb\x7e\xdd\xd4\xd0\xa0\x10\x3a\x43\x08\x9a\xdb\x0a\x1f\xf2\x4c\xab\x92\xb3\x72\x01\xf5\x62\x50\x4f\xaa\x92\x9f\x01\x8a\xd0\x15\x13\x1f\xb9\x58\x72\xd5\x1b\x14\xf4\x82\xab\xee\xa0\x20\x5d\x76\x05\xe8\x92\x2b\xe0\x3a\xcf\xa0\x60\x0a\xf8\x11\x00\xa0\xd4\x1f\xf1\xad\x54\x2b\x34\xc0\x3c\x51\x18\x1b\xbb\xfe\xe8\x11\x35\xb6\xdc\xac\xaa\x54\xb2\x2b\x28\x61\xb9\x59\xbd\x56\xdf\x84\x42\x3b\x31\x32\x84\x6f\x23\xbd\x35\x93\x92\x8b\xb2\x99\x99\x46\x36\xf3\xd3\x48\xaf\xaa\x35\xc6\xab\x69\x8d\x69\x26\x63\xe2\x63\xcd\x30\x79\x33\x21\xea\xf3\x4c\xfe\xe4\xb0\xb7\x0e\xfb\xb3\xc3\xfe\xe6\xb0\xff\x26\x74\x2d\x78\xcd\xc5\x15\x67\xc5\x7a\xc9\x26\xc4\x80\x67\x00\x7a\x54\x74\x96\x16\x4c\xe6\x95\x17\x06\x91\xdf\x03\x12\x42\xea\x0b\x27\x0d\x9f\x06\xd6\x9c\x0a\x3e\xbf\x99\x10\xc1\xe7\x3f\xe1\xf7\x2d\x7e\xff\x0c\xdf\x6b\xce\x64\x5a\x6d\x50\xaf\x20\xf0\x04\x00\x43\xc9\x40\xb3\xab\xcf\xa7\xa0\xd4\xcd\xa9\x4e\x7e\x23\x79\x59\xe7\x55\x59\x03\x59\xe1\x9e\x59\x9c\x0b\x37\xe7\x4c\x6e\x04\xf7\x42\x3d\xd7\x18\x42\x8d\x52\x76\xdd\xd9\x60\x5c\x7f\x36\x18\xb0\x5c\xd4\x8b\x6e\x06\xf3\xec\xc6\xbc\x7b\xa7\x1e\x84\x58\x71\xb9\x84\x71\x4e\x41\xaf\x10\x22\xb4\x96\x4c\x48\x33\x5a\x20\x60\x06\x8c\x5a\x66\x19\xbf\xca\x99\xb2\x46\x6a\x99\x3d\x35\x10\xd0\x72\x99\x2e\x41\xe5\xd7\x40\x02\x00\xf4\x3e\xf0\xbc\x11\x73\x96\xf2\x3a\x65\xd0\x6d\x34\xf4\x16\x20\x42\xeb\xdb\x5a\xf2\x55\xc1\xca\xc5\x06\xc7\x3d\x05\x7f\xab\x61\x42\xf1\xd8\xa4\x7a\x3b\x74\x42\x10\xf8\x01\x01\xa0\x88\x05\x87\x56\xa4\x3e\x7e\x32\x98\x5b\x83\xf9\x59\x29\x79\xd3\xda\xe1\xdb\xb4\xf6\xab\x9c\x5f\xcf\xaa\x9b\x09\x81\x8f\xc7\xd5\x8d\xc2\xa8\x68\x0a\xf9\x4e\x79\xb6\xd3\x9b\x74\xc9\xca\x12\x26\x42\x05\x07\x23\x79\x42\x6e\x9e\x28\xcc\x5b\x8d\x21\xf4\x76\x27\xcc\xed\x4e\x98\xdf\xaa\x6a\xc5\xca\x6c\xcd\xca\x09\x81\xef\xb3\x32\x7b\xc3\x4a\xb2\xdd\xaa\x2b\xba\xfb\xbb\x96\xa7\xbd\x95\x3b\xab\x56\xda\xf4\x84\x91\xc4\x5c\xcd\xcd\x4b\x99\xcb\x9c\xd7\x78\x37\x37\xef\x90\x93\xaf\xf5\xa0\x89\x43\xd7\xc9\xaf\x75\x55\xc2\x34\xec\xc4\xb7\x5a\xfd\x97\x45\x71\x12\x7f\xd2\x1c\xf0\x5a\x74\xb5\xa2\x92\x7c\xb2\x58\x75\xd4\xb5\x96\xb7\xea\x8c\xab\x7a\x1b\x0b\xbe\x6e\x56\x6b\xf8\xcb\xe7\x02\x46\xc2\x07\x21\x2d\x2b\xbe\x9a\xf1\x4c\x7d\x22\xb6\x86\xef\x75\xc1\x72\x7c\xc0\x50\x11\x6c\x02\x5b\x5a\xef\x64\xc3\x04\x67\x10\x0c\x86\x3f\xf3\x3f\xaf\x4a\x8c\x3a\xc3\x17\x99\xd3\xaa\x50\x7f\x2b\x10\x2d\x9e\xba\x35\x99\x5a\x46\x96\x18\x32\x5f\x2d\xf0\xaf\x5c\x6f\x30\x7e\x5e\xab\x67\x6e\x1e\x84\x30\x10\x2c\x78\x09\x5f\x45\x5e\x7e\x84\xff\x15\x97\x98\xf1\x9a\x09\xb6\xc2\x72\xe2\x6a\x2e\x7c\x49\xc1\x52\x0c\x73\x3d\x53\xef\xbe\xa6\x89\xdc\xf3\x5c\x1e\xcc\xd4\xda\xc7\xf4\xf0\x16\xe0\x25\xe7\x22\xaf\x70\xe1\xe9\x9c\x5f\xc0\xf4\x48\xe2\xcb\x4b\x8d\x4b\x4a\xd4\x9c\xd1\x9e\x86\xab\xcc\xfb\xc1\xb9\x9a\x1b\x12\x51\x55\xf8\x5e\x5e\x8e\xb7\xfd\x9e\x96\x47\x49\xda\xc9\xdd\xc3\xa8\x32\x98\x88\x93\xbc\x7e\xc7\x16\x9d\x3c\x00\xea\xa6\x93\x03\x52\x05\xc7\x7b\x89\x9f\xe6\x82\xa7\xa0\xe8\x80\xbc\xee\xe4\x0d\xe2\x93\x6a\x05\x0d\x06\x48\xcb\x36\xe9\xe9\xd9\xbb\x33\x20\x64\x40\x28\x8f\x92\x39\x26\x6d\x9f\x0e\xd9\xd2\x22\x39\x27\xab\x9c\x50\xb2\xaa\xe0\xa7\x84\x9f\x1a\x7e\x24\xbe\xc6\x45\xf0\x35\x14\x54\x18\xc7\x37\xab\x82\xd0\xb6\xa5\x47\x32\x5e\xa7\x84\x12\x09\x23\x3d\xb9\x98\x36\xaf\xed\x0f\x3e\x99\xf0\xb8\x58\x77\x72\xb3\x2a\x5e\xe9\x37\xeb\xd4\xe4\xb5\xd9\xdc\xcf\x15\xf6\x02\x44\x0f\x1f\x94\x9f\xa8\xa3\xee\x87\x87\x85\x3b\x8f\xa0\x71\x18\x22\x50\xdb\xb0\xb2\xf9\xdc\x33\x3e\x9b\x4a\x3f\xe9\xdc\xf0\x0c\xb7\x3a\x24\x63\xf3\x3f\x27\xf5\xd5\x02\x8a\x09\x66\xe4\x85\x97\xf6\x17\x27\x6a\x0b\xb6\x0d\x8c\xdf\x18\x79\x48\x8e\x34\xe3\x7b\xde\x4e\xd5\xf7\xe3\x94\x14\xef\x7f\xb1\x2b\xf3\x07\x79\x79\xc0\x83\x32\xe1\xe7\xec\x82\xa2\x1b\xff\x51\x42\xf0\xb4\xd1\x3d\x92\x63\x49\x5b\x0b\x9c\xb3\x8b\xbb\x3b\x16\x50\x71\x94\x30\xaa\xef\xcc\x4e\xbc\xfb\xdd\x6d\xec\x40\x25\xff\x55\x42\xbe\x3a\xea\xc8\x93\x8c\xa7\x55\xc6\x9f\x69\xbd\x74\x5a\x9d\xe0\xba\x34\xff\xe9\xd5\xb7\x9d\x32\x98\x94\xee\xac\xd4\x07\xf2\xf5\x82\x92\xc3\xcb\x4d\x25\xa7\x24\x08\x8e\xbe\x22\x5f\x79\x37\xcf\x6c\x3b\x5c\x33\x54\x53\xe9\xf0\x87\x87\x9d\x12\x8b\x72\x24\x7c\xd9\xab\x6e\xa5\x9a\xbe\xda\x2a\x77\xb0\x7d\xe8\x0b\x22\x3e\x22\xd4\x0f\xd9\xc1\x6e\xc3\xfd\x6e\x13\x50\xdb\x62\x70\x05\xde\xe6\x80\xf1\x1f\x7e\x6d\x6a\xe3\x88\x3c\x22\x01\x36\x7f\xf2\xf5\x23\xe2\xbf\x02\xb0\x76\x2b\x25\xaa\xf2\x32\x26\x19\x1e\xed\x6a\x5c\x7e\x6c\x1f\xcd\x52\x01\xee\xee\xec\x4b\x8f\x0f\xda\x52\x84\xe2\x99\x36\xdb\x68\xa9\x50\xcf\x0c\xf7\xd3\x9a\x72\x6e\xbc\x4a\x90\xf9\xfc\x3c\x38\xc7\xee\x7b\x0e\x7c\x99\x52\x9f\x87\x17\x9a\xc7\x8b\x0b\x9f\xcb\xa5\x17\xf1\xc3\x4d\x37\x7d\x70\x7c\xec\x8a\x73\x7c\xfc\xe1\xa6\xcb\x09\x8c\x5c\x7b\x47\x9d\x49\x8f\x36\x87\xac\xc9\x80\x9a\xd1\x6a\x12\x87\xdb\x0b\x3a\xd8\x1d\xed\xf6\x5f\xb9\x50\x52\xe2\xde\x69\x27\xe6\xc2\x85\x07\xe1\x36\xa0\xa5\xd2\x71\x7b\x4e\xf3\x13\xc9\x16\xee\x36\xf4\xbb\x3b\xa2\x86\x99\x26\x0a\xc6\x30\x87\xd9\xd2\xf2\xe4\x1d\xbf\x91\x09\x51\x7a\xaa\x74\x2a\x32\x21\x99\xf9\x04\xbc\xd6\x8e\x09\x49\xd5\x07\xe0\xde\x62\xfa\x89\xc9\x07\x30\x90\x7c\xa2\x73\x81\xb4\xd9\x22\x41\xb6\x20\x05\xa8\x85\x84\xa4\x20\x4c\xcc\xa9\x4a\x51\xc1\x92\x4c\x7d\x10\x65\x11\x0c\xff\xba\x8c\xa6\xd6\x84\x38\xf9\xba\x84\x59\x5d\x30\x2d\x4f\xbe\xab\x32\x9e\x08\xfc\xa3\xe5\x89\x7e\x7e\x38\x11\xe6\x0b\x18\x62\x92\xe9\x50\xe6\x93\xaa\x78\x3f\xe6\x72\xf9\x44\x37\x1d\x9d\x86\x8f\xd2\x2e\x72\x5f\x7f\xa8\x8f\xbe\x5e\xd0\x3c\xf9\x54\x56\x62\xc5\x8a\xfc\x37\xfe\xe3\x32\x97\xbc\x5e\xb3\x54\xdd\x86\x91\xcb\x25\x6e\xcb\xbe\x2c\xb3\x3c\x05\xcb\x40\xe1\x9e\x95\x99\xc3\x6c\x69\xe3\xa5\x2e\xdb\x34\xb9\x5d\x99\x53\x6f\x99\xae\x92\xf3\x0b\xb5\x97\xf8\x4b\x56\x95\x3c\x79\xa0\x7d\x8d\x7f\x91\x6c\xf1\x56\xb2\xf4\xa3\xa3\x17\xac\x96\x58\x30\xb4\x2f\x14\x0e\xef\x45\x14\x0a\xb3\x6f\x13\x55\xaa\xfb\x18\xa8\x4c\xf2\x80\x7a\x8f\xd5\xa6\x1d\xae\x6e\xbe\xe2\x94\x9b\x83\x51\x3a\xc9\x94\x15\xc5\x0c\x32\xe6\x6a\x61\x56\xa3\xd5\xbd\xec\x35\x8c\xf8\xb9\x46\xe9\x3e\xf2\xe4\x31\x9e\x98\xda\x14\x85\x7d\xce\xdf\xdb\xfb\xac\x4a\xc5\x63\x5e\xe6\xb2\xd1\xda\x1b\x05\xe0\x5b\xda\x8c\x04\x13\x9e\xdd\xb7\xd7\xff\x2e\x79\xf9\x80\x66\xbd\x95\x3f\x2f\xb3\x9d\xdc\x31\xc7\xbb\xbb\x8e\x9f\x7d\xb8\xa7\x22\x10\xa3\xde\x56\x7f\xa2\x85\x89\xe3\x50\x10\xec\xe4\x22\x44\x25\x76\xa5\xd2\x8a\xcb\x77\xe2\xa5\x45\x55\x73\xc9\x16\xbb\x2c\x36\x0a\x3d\xf5\x4e\x55\x5b\x01\x9d\xac\xab\x75\x27\x98\x72\xfd\xe2\xba\xe6\x1c\x1a\x83\x5f\xcf\x27\xcd\x16\x8d\x36\x0a\x47\x90\xdf\x34\xc4\x67\xb1\x41\xbb\x55\x98\x0c\x2c\x02\xb7\x1b\x5a\x25\xa9\xd6\xbc\x6c\x14\xc4\x1b\x5f\x4a\x7e\x7d\x60\x7b\x36\x12\xa6\x98\x22\xcb\x32\x28\x62\xa7\x0c\x68\xbb\x68\x7a\xff\xa9\x95\x09\x68\xc5\x3d\x2f\xb7\x35\x0b\xbc\xa7\xb7\x9b\xe3\x8e\x56\xaa\xb8\x3d\x7b\x78\xa8\xd4\x2c\x5e\x16\x8c\x07\x9f\xe4\x69\x89\x83\x4b\xd2\x51\xff\x47\xdc\xed\xd0\x54\x14\xec\x97\x89\x26\x98\x1d\x58\x3c\x4c\x9d\xf0\x56\x28\xe3\x1f\xa1\x0a\x6e\xb4\x57\x47\x6b\x75\xde\x2a\x7e\x1e\xb4\x1b\x7a\xbe\xdd\x69\x28\x5a\xdf\xb7\x36\x97\x9a\xf1\x0e\x0f\xed\x70\x60\x3c\x55\x2c\x4d\x17\xb0\x89\x6b\x14\x45\xc9\xb2\xcd\xb2\x1d\x5f\xda\x5c\xcb\x1d\xae\xe5\x7d\x5c\xef\xed\x83\x8d\x06\xbe\x13\x11\x38\xc3\x29\xff\xee\x31\xf9\xfd\x42\x25\x04\xa6\x31\x8a\xd6\x1e\x10\x3a\x66\x94\x83\xc9\xce\x4e\x29\x8c\x3d\x93\xc8\x76\x81\x76\x94\x19\x26\xf3\xc7\x4b\xb3\x16\x55\xca\xeb\x3a\x2f\x17\xb9\xde\xe5\xca\xab\xf2\x33\x3d\xe5\x8d\x0d\xff\xd2\x85\xdf\xdb\x6f\x9a\x39\x35\xd5\x4d\xbb\xad\xec\x1d\x56\x1a\x23\x45\xd0\x04\x8d\x73\x4c\x56\xad\x9c\x3b\x8e\x79\xcd\xa0\x25\x1b\xcd\xd2\xbd\x9d\xd3\xf4\xec\xf3\x56\x47\x37\xf7\x81\x5f\x40\x17\x3d\x95\xd6\x22\x9c\x98\x9c\xa9\x48\xdc\xbb\xb1\xc7\xd1\xc5\xf4\x77\x95\x9d\x3f\xa4\xa3\xba\xab\x35\xa2\xad\xf0\x1c\x3e\xa0\x7f\x55\x67\x82\x21\x88\x4a\x8b\x07\x38\xdd\x01\xd9\xf0\xab\x44\x50\x71\x52\x82\xd2\xe2\x01\x95\x0a\xad\xdb\xda\x4e\xef\xd9\x6d\x38\x2c\xcb\xac\x0d\xb4\x33\xb4\x98\x36\xc0\x77\x12\x82\x9a\xd9\x76\xc0\xc6\x7a\x5a\xad\x5e\x60\x93\x10\x09\xa3\xe5\x89\x3e\x6d\x9b\x30\x65\x31\xa3\x29\x36\x19\x6d\x2f\xe8\xe8\xbe\x55\x1f\x69\xdf\x95\x3f\xf9\xe5\x17\x5c\x36\xcc\xea\xc6\xbb\xaf\xaa\x47\x5a\x84\xe7\x1f\xd8\xe1\xc9\xde\xa3\xa6\x77\x77\xde\x02\xcb\xf9\xc5\xd6\xdb\x40\xc6\x25\x8a\xc3\xc3\xd6\xc1\x26\x6f\x31\x48\x6e\xfd\x47\x6f\x1b\xf7\x1c\xc3\x3c\x44\x06\xf2\x64\xc9\x6a\xef\x11\xf7\x4e\x89\xde\x43\xe7\xe5\x45\x22\xcf\xcb\x8b\x60\x1b\x20\x8b\xf6\xde\xbf\x26\xe3\xd6\xb6\x13\xa6\x5b\xfb\xcf\xbc\xca\xad\xbe\xf4\xd3\x73\x08\x4b\xf4\x85\xb4\xe5\xa9\x2e\x6b\x2a\x38\xc3\xb3\xec\x93\x8e\xf0\x83\x79\x77\xa3\x61\x17\x0f\xb6\x50\x43\x7f\xca\x90\xae\x50\x49\xbc\x62\xeb\xce\xf9\xb9\xb2\xe5\xa3\x0b\x7a\x6e\x8d\x7e\x05\x28\x83\x1f\xbf\xbd\x69\x03\xc2\x4a\x5d\x76\xe1\x53\x6b\xc5\x1e\x7e\x1b\x3d\x3f\xba\xb8\x08\x68\x7e\x9f\xcd\xab\x05\x83\xa5\xd2\xea\x41\xb7\x68\x67\x31\x61\xcb\x77\x20\xb6\x7f\x07\x7a\xbd\xd1\x21\x6d\xef\xf2\xad\xcf\xfd\xe2\xe1\xfe\xfd\x7d\xd0\x86\xd5\x46\xd6\xa7\xd6\x9d\x7d\xc6\x75\xe1\x64\xc1\x65\xc7\xf2\x1c\xdc\xdd\x45\x5b\xda\xbc\xec\xaf\x75\x65\xde\xbd\x17\x07\xf2\xdd\xbb\x0a\xd5\x76\xe7\x3d\x59\x7b\xc2\x31\xa6\x69\xed\x07\x34\xb2\xd4\xf2\xe3\x7f\x0f\x5f\x82\x5f\xe5\xd5\xa6\x7e\x9b\xcf\x0a\xdc\x17\xfd\x2c\x73\x82\x5f\x7d\x9e\x35\xa8\xc9\xbf\x87\x31\x68\x05\x5f\xc4\x14\x04\xfc\x2c\x53\x4a\x9f\xfe\x3e\x53\x5a\x09\x2a\x83\x4a\xaf\x21\xfb\x89\xd9\x66\x2d\x3b\x8d\x8b\x85\x9d\x07\x87\x0c\x94\x6b\xa0\x5d\xfc\x51\xc6\x61\xe9\x1e\x4e\x13\x1d\x49\xf9\x17\xdd\x34\x09\x2d\x15\xb7\x0c\x3e\x5f\x7a\xc8\xe0\x9e\x72\x63\xde\x5f\x50\x6e\xb9\xed\xe4\xa8\xfd\xcd\xd8\xc1\xa6\xca\x4f\xf0\x8f\x15\xbe\xb1\xde\xb0\x23\x08\x5c\xe6\x94\x3b\x82\x90\xdb\x0e\x83\xbc\xf7\x5a\x30\x49\xad\xdf\xa5\xfe\xab\xb5\x60\x8c\x84\x3f\x57\x13\xf8\x58\x1b\x9a\x86\x9f\xaf\x0a\x6f\x71\xca\x4e\x2d\xff\x54\x3f\x68\xe4\x0e\xc3\xf4\x1f\xc9\xbc\x01\x39\x33\xe8\x6f\xe4\x08\x13\x87\x86\x52\x7f\x19\x4b\xf7\x34\x4f\x5b\x29\x7f\xa0\x89\xee\x2c\xe6\xa4\x53\xf5\xd2\xf8\x1f\x6c\xaa\x6e\x65\x4d\x9e\x1a\x60\xe2\x16\xd7\xf0\x1a\x50\xf8\x9e\xa8\x01\xf3\xfc\xe2\xde\xf6\x6c\x96\x7c\xa1\x69\xf9\xdf\x7f\xbc\x99\x49\xb6\x50\x0e\x18\x9f\x55\x76\x6c\xc5\xef\x53\x73\xc0\xd1\x97\xc9\x32\x05\x59\x9a\x25\xb4\x42\xad\xdb\x8d\xff\xde\x75\x3b\xc9\x16\x50\x2c\xbc\x61\xce\xd4\x47\xe5\xcf\x5c\xf4\x8b\xd1\xe6\x56\x4e\xb9\xef\xed\x30\x01\xe6\x99\x9d\x94\xa1\xaf\xb2\x31\x88\xa7\xf9\x34\x28\x4f\x36\x65\xbd\xcc\xe7\x12\x66\xc4\x79\x92\x1b\x92\x7a\xa3\xa5\x19\x59\x06\xa7\x72\x22\xbd\xc8\xd5\x67\x22\x9b\xb7\x48\xf0\xfd\xfa\x24\xa9\xce\xd9\xc5\x34\x60\x47\x47\xc6\x25\x9a\xb9\x0b\xb1\x94\xa6\x2c\xcf\xd9\x31\xbe\xd9\xee\x9a\x35\x55\xcf\xdf\xd3\x8d\x8a\xae\x23\xa4\x76\x8f\xa5\x08\x1e\x39\x60\x13\x9c\xd6\xd8\xee\xe2\x70\xd2\x9b\xe0\xf1\x85\xd3\x28\x9c\xc4\xdb\xf2\x44\xf0\x55\x75\xc5\xdf\x6e\x66\x35\x97\xf5\xfe\x47\xc6\xdd\xe5\xf6\xc7\xc7\xf2\x51\x12\x4e\xed\x3a\xfd\xb9\x44\x01\xe3\x3d\x25\x8d\x1b\xa7\x3a\x25\x95\xc7\x51\xf0\x28\x09\x03\xe5\x69\x8a\x37\xd4\x47\x7a\xda\xe6\xdc\xa7\x4b\x23\x16\x31\x15\x89\xd0\x00\xde\x7e\x6a\x79\x17\xc1\xa3\xe3\x08\xec\x6e\x3f\x19\x75\x0f\x97\x5d\x16\xdc\xd2\xd2\x5c\xf8\xf6\xb4\x4a\xd1\x2d\xfc\x4d\x55\xa3\x47\x52\x52\x51\xa8\xc7\xfc\x72\xc3\xdf\x56\x42\xee\x59\x17\xc7\xf5\x12\xe5\xca\xd3\xb9\xe7\x39\xfc\x07\xa5\xbd\xd0\xab\x83\x47\xf9\x82\x6d\x10\x04\x27\x75\x25\x64\xa7\xb3\x6f\xde\xac\x9a\xa2\x7d\x82\xfe\xb0\x3c\x3d\x8e\x26\xbd\xc3\x12\x2f\x0a\x0b\xc0\x16\x50\x73\x1e\xdb\x8c\x27\x51\x7f\x7b\x41\xa3\x70\xb7\x97\x78\xb3\x00\xbf\x52\xf4\x86\x56\x7b\x82\x01\x83\x53\xa7\x54\xaf\x77\xc9\x8b\x60\xfb\x87\xf7\x0f\x44\x07\xfb\x97\x3a\x7d\x91\xcf\x6f\x49\x60\x71\x52\xb0\x2b\x2e\x6a\x56\x78\xb8\x15\x2b\xf3\xf5\xa6\x50\xbe\x0e\x0e\x7d\xb9\xe1\x78\xa9\xbf\x87\x2a\xf8\x82\xa5\x7e\x72\x4b\x5e\xac\xb9\xa8\xfd\x0c\x6c\xa7\x0e\x94\x78\x4c\x90\xc9\x98\xba\x14\x26\x51\x44\xdb\x39\x4f\xa2\x98\xfa\xd9\x4e\xa2\x2e\x6d\x94\x62\x12\xf5\x68\x4b\xde\xb4\x51\xa4\x49\x34\x80\x0a\x88\xfe\x5e\x35\xe5\xe4\xa0\xbc\x13\xf6\x2b\xae\xdc\xdf\xa4\xd1\x2b\x80\x7a\x03\x46\xbb\x1a\x48\xb6\xf8\x05\xbd\xe9\xf6\x6c\xeb\xec\x59\x46\xe1\xa7\x6e\x26\xe9\x4d\x3d\xd4\xee\xb7\x0c\x0e\x0f\x79\x47\x6f\xec\x6e\x27\xe4\x1f\x98\xdd\xa9\x26\x4f\x7e\x27\xa6\x34\xee\xd0\xd0\x84\x81\x2d\xdc\xc9\xfa\x0b\x6c\x01\x2b\x38\x15\xda\xee\xcb\x5a\x9a\x5d\x76\x93\x5d\x5a\x95\x92\xe5\x65\xfd\x57\xb2\xcc\xad\x0c\xf0\xdd\xdf\xbd\x19\xe7\xba\xb4\x68\xe5\x62\xf6\x5b\x57\x61\xb5\xef\x75\xbe\x77\x1d\xcb\x65\x5b\xee\x88\xb1\x84\x84\x3b\xa5\x19\xce\xcf\xf9\x85\xcf\xc2\xfe\xf0\x7e\x68\xc8\xc6\x7b\xbf\x2f\x6d\xb8\xc0\xef\x49\x87\xe3\x93\x5a\xb2\x53\x06\xdb\xd6\x33\xbd\x4a\xbd\xeb\x06\xfe\x91\xdf\xd6\x1d\x1e\x9c\xac\xd8\xba\xb3\xf3\x0e\xbe\x56\xf6\xa6\x56\x70\x9b\xf5\x94\x9d\xcb\x8b\x4e\x19\x4c\x6a\xb5\x8a\x11\x34\x9e\x79\x36\x2e\xfd\xa7\x60\x18\x4e\xe4\x89\xe0\xd9\x26\xe5\x9d\x34\xd8\x96\x27\x92\xd7\xd2\xd8\x07\xfb\xd4\x67\xe1\x9e\x9c\xc7\xd7\x53\x3a\x12\x5f\x69\x58\x70\x13\xab\x7d\xaf\x22\x3e\x1c\xd7\xbc\xf1\x32\xfa\x3a\x34\xcb\xde\x5e\x72\x07\xf9\xa9\x30\xca\x3e\xd7\x31\x27\xe7\x17\xcd\xd4\x1f\xdf\xbe\xcc\xee\x3b\x66\xda\xba\x86\xf3\x41\x18\xd0\xa6\x4b\x0b\x6a\x60\x99\x80\xf6\xa5\x90\x55\x99\xbd\x2e\x79\xa7\xee\x90\x3c\x23\x38\x25\xc1\xb3\xa9\x8d\xc2\x3c\xbe\x7d\xa7\x8c\xb3\x3d\xa5\x6a\x67\xeb\x0a\x47\x6d\x41\xd8\x89\xd1\x0f\x1d\x95\x01\xad\xf6\x66\xf1\x0e\xba\xd2\xef\x67\xe1\x4a\xf6\x05\xb9\x42\x83\xf7\x72\x55\x7a\xbb\xad\x87\xdb\xc3\x5c\xfc\xb7\x6c\x74\x2b\xd3\x65\xb7\x1d\xe9\x07\xfc\xd6\x82\x5f\xd9\x95\x4f\x3d\x4b\xc7\xbf\x80\xaa\x7f\xe5\x1f\xc3\x6f\xa4\x5e\x57\xc0\x3f\xb7\xfe\xee\x1e\x5a\xd2\xfe\x05\xc6\xf4\x9a\x4a\x6b\x8b\x34\x6c\x1e\x1e\xd0\x08\x24\x60\x5d\x3a\x3e\xd7\xc4\x1b\x99\x4e\x51\xe4\x8a\x47\x69\x06\x10\xe9\xf3\x3c\x45\x9f\x15\x15\x47\xda\x5b\xf5\xec\x5a\x8d\x35\x3c\xed\x6b\x82\x79\x52\x39\x86\xf3\xf3\xbc\xc5\xe9\x05\xee\x8e\x94\x27\x6c\xbd\xe6\x65\x86\x66\xec\xae\x2f\x8d\x4b\x9f\x46\x4d\x0f\x12\x5c\x5a\x96\x81\x73\xd8\xb0\xf3\xc3\x1d\x37\x93\xe3\xf8\x62\x6a\x8a\x46\x75\xa9\x4b\x2a\xdd\x32\x9c\xc7\xc7\x5e\x49\x99\xc2\x51\x61\x64\x81\xac\x61\x7c\x61\x52\xe4\xba\x4e\x55\x1e\x7a\x05\x50\xdf\x54\x61\xc4\x66\x26\x6b\x55\x52\x3a\xd1\x54\xa6\x2e\xab\x86\x84\x44\x80\x17\x19\xab\x43\x9e\x07\x25\x28\xe0\x76\xe1\x81\xed\xb5\xe0\xbf\xcb\x37\xee\xed\x99\x69\xa2\x97\xb3\x30\x39\x8b\x76\x2b\xc2\x9c\xf7\x36\x60\x75\xc9\xb1\x29\x5e\xa3\x0d\x19\x91\xa2\x3b\x17\x96\x57\xfb\x50\x46\xdd\xff\x43\x53\x2f\x5a\xd2\xdc\x59\xa8\x0c\xa6\x60\x75\x12\x4e\xeb\x87\xf6\x5d\xc6\xda\xf8\xec\xa5\x89\x3c\xaf\xd5\xe4\xac\x93\xe2\xb5\xf5\x4a\xaa\x69\x40\x8f\x8f\xf3\x87\x49\x18\x98\xd3\x71\xb8\x2f\xda\x9c\x6b\x41\x84\xb4\xdd\xcc\x1e\x85\x2a\xe5\x02\x6d\x6f\x47\x46\xa6\x20\x19\x96\x30\xfd\x78\x40\xa7\x08\x68\x27\x3f\x4e\x0a\x73\xce\x0c\xf2\x6b\xce\x28\xd8\xb6\xd4\x6a\x6e\xcf\xe5\x27\x5f\xa0\x2f\xd5\x45\xb1\xa8\x2f\xef\x1f\x1d\x2a\xf7\xe6\x22\x2d\x71\xa4\xc0\xc9\x8a\x1e\x32\xf6\xf5\x49\xe7\x0f\x19\x4e\x4b\x27\xd6\x52\x3d\xc5\xc9\x3b\xb8\xa9\x60\x0f\xff\x9e\x97\xee\x99\x79\x5c\x9c\xb1\x69\x27\xde\x12\xfa\xfe\xd1\xf3\x41\xe8\x5f\x16\xab\x1c\x4f\xf1\x54\x6b\xe9\x1e\x6c\xcc\xa7\xcc\xd4\x27\x4e\x51\x2f\xa6\xc6\xc1\x12\x1f\xd7\x93\x9d\x3a\x38\xcd\x93\x7a\x52\x1d\x1e\xee\x2c\x19\xe1\xe5\x7b\x79\x02\xd9\x3b\x5a\x10\x04\xee\x64\x23\x2d\x4f\xf8\x4d\x5e\xcb\x7a\x97\xdf\xf6\x39\xc2\x72\x8f\x4f\x68\x79\x5e\x61\xfb\x72\x3e\x9f\xc8\x52\x1e\xdc\xdd\xe5\xfb\x98\x81\x84\x73\x9f\x13\x6d\x7e\x84\x9a\xa3\x07\x91\x91\xdf\x59\xf3\xcc\x7d\xa3\x5a\xd4\x7b\x8e\xfa\x6e\xe9\x60\x5a\x19\xc6\x9c\x4e\x56\x6b\x02\xc1\x34\x87\x56\xed\xb1\x96\x7b\x4e\x78\x7b\x19\xb4\x0b\x0a\xfa\x36\xfa\xca\x67\x97\x72\x4c\x45\xeb\xa6\x3c\xf0\x7c\x4f\xf7\x4f\x34\xf7\x1c\xe9\xdb\xb3\xc5\x96\xaf\xd6\x95\x90\x4f\xd5\x3e\x9d\xbf\xd7\xe5\x6c\x4b\x98\xf8\x3b\xa5\x71\xca\xf1\x70\x10\x5e\xa2\xcb\xb7\xdb\x3f\xbb\xa3\xd4\xd2\x33\x34\x4f\x70\x86\x98\x55\xab\xe3\x9a\x8b\x1c\xbd\x29\x04\x09\x82\x29\xda\x38\xaf\x37\x92\x8b\x17\xef\x5e\x7d\x9b\xe4\x66\x4f\x51\x19\x3f\x2f\xcb\x52\x13\x9a\xf5\x65\xed\xeb\xf6\xf2\x8f\x93\x7b\xd3\x08\xf6\x5e\xc4\x69\x64\x88\xc9\x6d\x83\xe0\xe4\xd7\x2a\x2f\x3b\x84\x04\x13\x42\xb4\xe1\xf5\xce\x77\x0d\x81\x66\xeb\x9e\x5a\x6d\x29\x84\x53\x89\xb9\x71\x2f\x15\x37\xe1\x3a\x25\x33\x75\x02\x1f\xa7\x5d\xa7\xe4\x43\x49\x26\x60\x77\xd8\x9a\xc7\xb0\xe8\x3b\x07\xa1\x77\x49\xc0\x87\xca\x04\xaf\x14\x26\x64\x4f\x83\xa0\x6d\xc9\x4e\xb0\x8d\xec\x71\xbe\xff\xf3\xe3\x46\xdb\x5b\x7f\x7a\xbf\xa3\xe2\x81\xe9\x18\xea\x6d\x36\x5d\xbc\x7d\x1e\x8d\x6a\xc3\xb0\xe1\xae\xa8\x4a\xbc\xd7\xfd\xb1\x39\xb3\x56\x29\xef\x71\x63\x31\x69\x3b\xcf\x15\x17\xc3\x6b\x30\xfb\x18\xd7\xe2\xf1\x3d\x20\xfc\xd5\x19\x73\xc5\x07\x31\x55\x44\xd0\x60\x6e\x7b\x85\x82\xec\xf7\xb8\x82\x36\x17\x82\xac\x47\x9c\x49\x4b\xaf\xc0\xfb\x43\xb2\x17\xaa\xb1\xef\xe7\x2f\x3c\xf8\xa7\xa7\xcd\x1c\x13\xfa\xb4\x99\x6e\xca\x8b\x3f\xbe\x86\x84\x1d\xc0\x39\x44\x2a\xf8\x8d\xb2\x5a\x2a\x05\xe9\xad\xb7\x7a\x8f\x83\x46\xe5\xcd\xd6\xe4\xa9\xe8\xc8\x60\x82\xb7\x9e\x62\xbc\x33\xe3\x92\x8d\x7b\x57\x49\xae\xea\x44\x61\xf7\xf6\xf2\x07\x0f\x54\x21\x75\xfc\xd6\x2c\xcb\x2b\x3b\x2e\x7d\x6b\x8b\x69\x8f\x93\xe9\xff\x22\xed\x68\x97\xde\xd6\xf5\xd7\xc6\x81\x58\x1f\x6c\xb1\xaa\x52\x93\xd5\x92\x99\x25\xb2\x06\xf1\x66\x55\x58\x4a\x6d\x28\xca\xcf\xfa\x17\xf8\xd1\x77\x16\x78\x66\x5e\x7a\xef\xa2\x81\x52\x5d\x77\x24\xa0\x65\xb2\x41\xa7\x13\x74\x0b\xf8\x9e\x2f\x9e\xdd\xac\x3b\xe4\xb0\x73\x3a\x21\x47\x1d\x79\x94\x90\xbb\xff\x38\xbf\xf9\xe9\xe2\xfc\xc3\x87\x8c\x1d\xcf\xcf\x8e\x9f\x5f\x1c\xdd\xfd\xc7\x87\x0f\xd9\x11\x09\x8e\x48\x30\x25\x94\x2c\xdc\x3b\x26\x7b\x44\xea\x9e\xaf\x32\x2e\x6e\x02\x26\xd4\xdb\x52\x7b\x88\xff\xf4\xea\xdb\x24\xed\x30\x33\x10\x04\xd4\x10\x40\x5f\x43\xe4\x54\x26\x69\xa7\xb2\xf4\x9d\x0d\x1e\xbf\x43\x3c\x94\xa7\xd1\xe4\x38\xda\x36\xce\x5b\xec\x2e\xb5\xb8\xa5\xa0\xff\x50\xba\x3a\x5d\x32\x71\x26\x3b\x51\x70\x4a\x7e\x6a\x60\xe2\xe0\xee\x8e\xdc\xb4\x50\xa7\xb5\xe1\xa6\xb3\xfb\x1c\x79\x17\x9f\x22\x0f\x26\x9f\x0b\x13\x07\x34\x0a\x83\x60\xc2\xcf\x8d\xe9\x11\xd1\xe3\x28\xb8\x70\x52\x69\x0e\x82\xfe\xc5\x04\x7e\x3d\xda\xe1\x53\x2f\x6d\x17\x01\x6d\x56\x74\xb5\x1b\xc0\x3c\x74\xd5\x32\x47\xf9\xb9\xc0\x75\xaa\xf3\xf2\xe2\x14\xcd\xd2\xa3\x84\x4c\x4f\x09\x15\x47\x47\xc1\xc4\xc0\x44\xef\x82\xef\xb6\x14\xe9\x1a\xd4\xd1\x9e\x16\x33\x3d\x55\x6d\x66\x7a\x1a\xa8\x06\x43\xeb\x64\xe3\x57\x6a\xb3\xc5\xea\xca\x99\x12\x9c\xc4\x6a\xa1\x1d\x47\x81\x7e\x78\x66\x0a\xf1\x61\xb0\xf9\x23\xad\x8e\xd1\x14\x9d\x66\xd4\x68\xba\xd3\x6b\x26\xd1\x88\xee\xef\xa3\x93\x38\xa6\xfb\xba\xe7\x24\xee\xd2\x9d\x9e\x39\x89\x7b\xa0\x8f\xbe\xcc\x21\xea\x7f\x83\x3e\x52\x82\x30\x6a\x65\xea\x9c\xbc\xda\xcb\x33\x8f\x12\xbc\x32\xe6\xf0\x90\x3f\x4c\xf0\xa9\xef\xbb\x3b\xfe\x48\x5d\xa6\x12\x99\xdb\x46\x3e\x6c\xe6\xf3\x79\x46\xa6\x78\xaa\xc3\xd6\x2e\x7a\xb8\x5a\x08\x5d\x28\x95\x4a\x22\xee\x06\x12\xfb\x00\x37\x37\x0f\x70\xcb\x7b\x9e\x77\xde\x7d\x90\x9b\xfb\x0f\x72\xf3\xe0\xde\x98\x66\xb1\x6b\xa7\xdc\x93\x38\x82\x4a\xdb\xb3\xe3\xf9\xbf\xa8\xd2\xd2\xce\x3d\x43\x81\xd3\x9c\x79\x52\x74\x2a\xa8\x43\x7b\x90\x26\x59\xe2\xfb\x39\xba\xdb\x36\x93\x68\x8f\x44\x2e\x9d\x3a\x29\x3a\x6c\x7f\x9f\x3c\x68\x0d\x23\xa8\x55\x02\xb3\x56\xdc\xd9\xe7\xc8\x77\x20\xcf\xf9\x79\x79\x71\x91\x90\x43\x72\x54\x1e\x91\x29\xa1\x72\x1b\xd0\x4f\xdb\x60\xef\xe2\xf6\xf9\x05\x85\x69\xd9\x74\x7f\x7e\xf3\x4a\x3c\x63\xe9\x72\xaf\xa9\xef\x5f\x16\x76\x2a\xd5\xcc\x8a\x7c\xf8\x40\x8e\x78\x30\xb1\xce\x95\x5b\xf4\xb4\x34\x5b\xbd\xe4\xdc\xa9\x2e\xd0\x5c\x17\x30\x1e\x3a\xe5\x56\x7a\xc3\x24\x68\xad\xad\x11\x2d\xaa\xe7\x25\xbe\x56\x84\xb2\xdd\x24\x5f\x9f\xff\xf7\x87\xf0\xf8\xc3\xcd\xf0\xf9\xc5\xd7\x0b\xba\x4e\xbe\x3e\xff\xb0\x79\x3a\x0a\xc3\xe3\x0f\x9b\xa7\x8f\x9f\x3f\xbf\x00\xf0\x89\x02\x9f\x3f\x7f\xde\xb8\xb2\x6a\xee\xa9\xbc\xc3\xff\xb8\x51\xe7\x9a\xbc\x1b\xce\xdc\x83\x5d\xd1\x00\x80\xf7\xeb\xb5\x79\xb0\x04\xa4\xd9\x38\x26\xe5\xed\x72\x60\x52\x9d\x28\x8c\x7b\xff\xe8\xb4\x52\x54\xb7\x3f\x05\xcd\x8c\xa2\x40\x5d\x04\x75\xa4\x6e\x5b\xfa\xe2\x5c\x97\xbf\xb7\x9d\xe1\x4e\xcc\x49\xda\xd9\xb7\xa1\x04\x36\x6b\xe0\x34\xf5\x9a\x66\x0e\xd8\xd0\x79\xb0\xc5\x5d\xb5\x99\x6d\xdd\x75\xca\xd6\xf7\x18\x85\x26\xda\x8c\xce\x3f\x9b\xa0\x53\x04\xf7\x2b\xfb\x96\x52\x8f\xf7\xec\xf5\xfe\x95\x65\x39\xa5\x81\xdc\x46\xa3\x6a\x59\x44\xe9\xe0\xb4\xe9\xb3\xeb\x04\xac\x9f\xab\x4f\xc2\x53\xe1\x0c\xa8\x89\xf0\xcc\x86\x40\x4f\xc3\x14\x46\x5b\x50\x7f\x2e\x29\x15\xd9\x24\xa8\x18\xfc\x9d\xa4\xbc\x53\x7c\x93\xca\xeb\x2d\x98\x88\xde\xde\x69\x17\xd7\xa9\xab\xdc\x7d\xd3\x46\x5f\xcb\x3d\x80\xda\x26\x90\xeb\x8f\x46\xd8\xde\x4e\x60\x0b\xf4\x1b\x24\xad\x15\x1b\x95\x31\xf5\xcd\x52\xe6\xbe\x1b\x56\xa9\x25\xe8\x0c\x76\xec\x55\xb6\x83\x6a\x84\xea\xdd\x9f\x40\xff\x7e\x52\xef\xcb\x12\xef\xff\x7e\xb0\x9f\x76\x18\xfd\xe9\xd5\xb7\xbe\x5d\x44\x26\xd1\x90\xba\x3a\x9a\x44\x63\x68\xff\x7b\xb6\xda\xbd\x5b\xa5\xc2\x09\xe8\x8d\x2e\x8d\xe2\xd1\x64\xd4\x1d\xf4\x68\xd4\x0d\x27\xa3\x38\x1a\xd1\xa8\x1b\x4d\x7a\x61\x4c\xa3\x6e\x3c\x19\xc5\x31\x7c\x74\x27\xa3\xb8\x1b\xd2\xa8\xdb\x03\x0c\x84\xed\xc3\x47\x9f\x46\xdd\xc1\x64\x18\x01\x65\x38\x19\xc5\x3d\xf8\x18\x4d\xba\x7d\x88\x33\x06\xc4\x98\x46\xbd\x70\xd2\xed\x8e\x68\xd4\x8b\x27\xdd\x51\x44\xa3\x1e\x44\x8d\x06\x34\xea\x0d\xe0\x63\x48\xa3\x1e\xc4\x8d\x43\x1a\xf5\x46\xf0\x01\x61\x20\x72\x3c\xa0\x51\x1f\x79\x8a\x68\xd4\x8f\xe0\x23\xa6\x51\x3f\x9e\x0c\xbb\xf0\xdf\x9d\x8c\x7a\x23\xf8\xe8\x4d\xba\xfd\x2e\x8d\xfa\x90\x6e\x3f\xa4\x51\x7f\x30\xe9\x76\xc7\x34\xea\x8f\x26\x5d\x0c\x30\x9e\x74\x87\x03\x3d\xf5\x8c\xf7\x6c\x8d\x79\x52\x39\x63\xe9\x46\xf2\x09\xf9\x70\x93\x46\x84\x32\x0b\xf1\x88\xd0\xb3\x99\xe0\x57\x00\x6d\xc2\x28\x8c\x09\x65\x3e\xdc\x25\x94\xa5\xf0\x1d\xc7\x5d\x0e\xdf\x99\x06\xe6\x00\x3c\x33\x94\x0f\x9b\xb0\xdb\xed\x12\x7a\x96\xe6\x22\xc5\x6c\x20\x21\x03\x70\x04\x74\x96\xb3\x1e\x04\xbb\xc5\xf4\x7b\x51\x08\x14\x0d\x74\x43\x42\xcf\x9e\x15\xf9\x02\x13\x18\x10\xca\xb8\x06\x38\x00\x73\xcc\x2c\x1c\x00\xcb\x73\x01\x40\x36\xea\xf6\x3f\x6c\xb2\x2c\xec\x01\xb9\x81\x8a\x38\xa1\x67\x0b\xc1\xae\x54\xa1\x21\x1b\x0b\x71\x80\x0a\x3e\xaf\x6f\x57\x98\x64\xd4\xed\x23\x62\xbd\x74\xe0\x99\xba\x0b\x05\xca\x35\x06\x89\x39\x70\x06\xf9\xaf\x58\x2a\xb4\x84\x20\x31\x0f\x8c\x10\x2c\x16\x98\x14\x43\x31\xad\xd6\x13\x72\x48\xe8\xd9\xab\x37\xf8\xcf\xca\x8c\x95\x4a\x8c\xac\x0f\x59\x59\xa0\x8b\x44\x25\xd3\x78\x88\x80\x21\xa5\x08\xd5\x45\xb5\xe6\x1a\x33\x42\xcc\x95\x86\x18\x40\x0b\x1d\x35\x44\x40\x05\x1c\xb3\x1e\x42\x05\x6f\x10\x57\x75\xc6\x98\x0e\x30\xb2\x98\x99\xc6\x8c\x2d\x26\xd5\x18\x66\x31\x99\xc6\xcc\x2c\xc6\x64\x94\x5a\xcc\x5c\x63\x32\x8b\x59\x68\x0c\xb7\x98\xa5\xc6\xcc\x0d\x46\xf3\x17\x21\x2c\xa4\x02\xa3\xb9\x06\xaf\x14\x6f\xf1\x8c\x5b\x84\xe6\x64\xac\x72\xa9\x75\xf5\xc5\x71\xac\x60\x89\x35\xdf\x47\xe0\x37\x26\xb0\x82\xe2\xee\x30\x25\xf4\xac\x5a\x54\xa5\xae\x2f\x90\x8e\x07\x42\x7d\x54\xeb\xb9\xdf\x94\xba\x20\x9f\x16\xae\x0f\x79\xac\xa1\x81\x2b\xf9\x0f\x80\xcd\xb5\xca\xbf\x07\xe1\xd7\xaa\x6b\xb0\x21\x88\x5b\xd7\x59\xdc\x03\x29\xae\x73\x5d\xd2\x1e\x48\x70\x5d\xd5\x13\xf2\x15\xa1\x67\xeb\x75\x71\xfb\x5c\x77\x60\xd7\xd0\xd9\x7a\x2d\xaa\x1b\x3f\x5d\x80\xf9\xa5\x4b\xef\x4c\xe0\x55\x62\xba\xa4\x06\xe0\x50\x8e\x3a\xf5\xbb\x44\x3a\x86\xfa\x69\xe1\x66\x03\x08\x57\xe7\x0b\x95\x67\xdc\x07\x71\x80\xe4\xfe\x01\xff\xb7\x2b\xbf\x48\x00\xda\x9c\x33\x42\xcf\x64\x5e\x64\xaa\x7b\x41\xc3\xb5\x10\x07\x3d\xb0\x59\x15\x48\x81\xf4\xf4\x37\x87\xef\xeb\xb4\x2a\xf3\x52\x57\x2e\x68\x0c\x76\x6d\x40\x16\x45\x84\xce\x58\xfa\x31\xad\x4c\x4b\xee\xa5\x0a\xc3\xd7\x75\x5e\xe8\x3a\xea\xce\x07\x0a\xb9\x16\xf9\x4a\x09\x36\x84\x1e\x0b\xa8\x3a\x5f\xe9\x94\x33\x8b\x30\x2c\xa7\x19\xa1\x8f\x01\x55\xb0\x5a\xb7\x94\x68\x00\x28\xa1\xfb\x10\x1f\x42\x1c\x71\xc5\x75\x6d\xcd\x30\x0d\x71\xcd\x55\x7d\x75\xa1\x6d\x3c\xf6\xe1\x81\xa1\xeb\xae\x86\x21\x66\x33\xf1\x51\x41\x33\x0d\x49\x87\x81\x18\xcd\xd2\x3d\xb6\x9a\x10\x0a\x6f\x35\x21\x00\xd9\xe5\xa6\x52\xc5\x03\x65\x36\xe3\x29\xdb\xd4\xba\x74\x7d\x03\x73\x87\x78\xdc\x46\xcc\xf8\x6a\x2d\x6f\x55\xe1\xc6\xb3\x10\x10\xeb\x3a\xf7\x64\xc8\x45\x59\x6d\x94\xca\x8b\x81\x15\x84\x8b\x22\xaf\x7d\x9c\x34\x5a\x30\x86\x18\x06\x9a\x29\xc8\x28\x4c\x4c\x4d\x5e\x73\xae\x9b\xd1\x00\xa2\xb6\x74\x34\x70\xd4\xd2\xd1\x73\x42\x67\xf9\x22\x35\x1d\x07\xc6\x0c\x80\xd5\xa8\xb1\x89\xfb\x5c\x07\xd8\x98\x00\x5d\x84\xab\xac\xd2\x2d\x06\x94\x2f\x20\xd6\x85\x16\x0d\x03\xfd\x0b\x18\x7d\x19\x19\xa2\x54\xb2\xf5\xa5\x49\x87\x61\xcd\xe5\x8b\x5a\x32\xd5\x7d\x07\xc8\x5c\xbe\x90\x22\x47\x4d\x99\x55\xd7\xaa\x20\x7d\x6c\x03\x8e\xa0\x13\xe8\xcf\x14\x23\x1b\x2f\xdf\x1e\x62\x6c\xe3\x49\x15\x1f\xae\x71\xc4\x30\x06\xcd\x3e\x32\x51\x5d\xab\x1a\x09\x21\xe9\x82\xa5\x1f\x8b\xea\x37\x6e\xb5\x35\x9f\x69\x6c\x7d\xb9\x61\x42\x21\xfb\xa0\x7d\x11\x69\xf8\xd0\x5c\xf4\x5a\x68\x8f\x6f\xde\x22\x15\x7c\xae\x64\xd6\x47\x29\xfb\x24\xa1\x6e\x57\xc3\x68\x23\xa4\x95\xaa\xbd\xf6\x62\x28\x66\xf1\x31\x8a\x15\x15\x9b\x40\xf1\x31\xea\x69\x30\x42\xb0\x6b\x40\x0c\x5c\xa5\x2a\x6e\x7f\x04\x49\x95\x7c\x42\x12\x68\xc1\xa0\x8f\x66\x25\xbf\xdc\xe4\x57\xba\x85\x44\x16\xfd\x9d\xa9\x4d\x0e\x12\x29\x35\xd4\x05\xd3\xe0\x71\x5b\x15\x8f\x09\x9d\xb5\x55\x31\xe4\xab\x23\xc5\xac\x8f\x80\xac\x56\x3e\x7c\x2d\x73\x53\x09\xc0\x55\x75\x33\xd3\x3a\x75\x9c\x62\x82\x37\x59\xa1\x98\x86\x3c\x01\xfc\x56\x81\x7d\x8c\x7d\xf3\x54\x53\xfb\x03\x05\x1a\xea\x50\x05\x56\x6d\xa8\x1f\xa6\x0a\xfc\x5e\x53\x63\x15\x58\x53\x15\x97\x37\x4f\x0d\xb5\x87\xe0\x52\x47\x55\xd9\xbe\xd0\x34\x05\x2d\x95\x9a\xe9\xc7\x2a\xdd\x17\x1a\x1c\xe8\x98\x4f\x35\xa8\x58\x7c\x61\x40\xc5\xe2\x52\x75\xeb\x7e\x57\x05\x7e\xa1\xc1\x81\xe2\x78\xf9\x5e\x83\x4a\x18\x2f\x0c\xa8\x64\xb1\xca\x4b\xa3\x67\xc6\x73\xc4\xd8\x56\x1e\x8f\x39\x22\x5c\xe7\x8a\x99\x62\x76\x63\x04\xa8\x92\xdc\x18\x11\xcd\x10\x7c\x6f\x04\xa8\x8a\xf2\xde\x50\x33\x15\x58\x8b\x28\x52\xcc\x6e\x8c\x88\x54\x52\xef\x8d\x00\x15\x77\xef\x0d\x95\x21\x78\xa5\x05\xa8\x84\xfd\x83\xa6\x45\x8a\xa6\xa5\xdb\x55\xb9\x5e\x69\xf1\x0e\x54\xcc\x1f\x34\x75\xa0\x58\xfc\xc1\x50\x75\x60\xcd\x71\xac\x78\xba\xd2\x1c\x0f\x54\xca\x3f\x68\xea\x40\x67\x6b\xa8\xaa\x8e\xaf\x4c\x79\x74\x52\x86\x63\x25\xbb\x1f\x4c\x79\x94\x6c\x7f\xd0\xd4\x01\xc8\xb1\x3d\xa2\x59\x3b\x3c\xce\x46\x84\x3e\x6e\x82\x33\x71\x35\x43\xfd\x75\xc3\xa0\xd2\xdb\x03\xfb\x90\xd0\xc7\x1a\xa7\x54\xf9\xac\xe6\xab\x5c\x25\xde\x83\xbc\x9b\x63\x65\x6d\x72\xc6\x71\x72\x56\x57\x85\xb6\x05\xc1\xac\x00\x70\x42\x3e\x7c\x50\x5f\xcb\x7a\xa3\x68\x43\xec\x4d\x9b\x42\x49\x23\x04\xbb\x0b\x20\x2e\x7d\xd8\x9a\x10\x5c\x41\xda\x2e\x62\x1a\x34\x96\xd1\x9c\xd0\xc7\x1b\xcf\xbe\x30\xe4\x4b\x47\x7f\x62\xa6\x10\x60\xa7\x0d\x08\x4d\x7d\x78\x08\xf0\xda\xda\xd5\xbd\x1e\xc2\x33\x61\x75\x7e\x6f\x8c\x18\x33\xd8\x30\xb0\xbe\xec\xc8\x13\x8f\x21\x79\x0d\x64\xb1\x0a\x69\x63\xaa\xb4\xed\xa0\xd3\x0b\x31\x70\x2e\x59\xf1\x34\x9f\xcf\xb9\xe0\xa5\xcc\x59\xa1\x7a\x60\xd4\xeb\x63\xe8\xda\x24\xfc\x61\x33\xe7\xd0\xbf\x53\x26\x8c\x60\x7a\x11\x82\xda\x9e\x89\xd3\x21\xa4\x77\x5b\xf0\x5b\x33\xf0\x66\x84\xa6\x36\x0d\x06\xb6\xd6\x13\x17\x3e\x02\x45\x93\xfa\x30\xd2\x79\x96\x2b\x8b\x0b\xb8\xb5\x10\xd8\x34\x4f\xcc\x80\x1a\x46\xe1\x08\x88\x0e\x84\x62\x37\x0c\x32\x60\x34\xdd\xd8\x9c\x53\x0d\xd6\xaa\xa9\x30\x50\x4d\x4f\xb4\x20\xc2\x28\x64\x84\xa6\x0e\x02\x81\x9a\x7c\x61\x20\x79\x02\x40\xc1\x0c\x98\x36\xcc\x11\x90\x31\x5e\xa5\xf8\xe1\x86\xe9\x6f\x2e\x54\x5a\x37\xd0\x76\x9f\x20\xe2\xa9\x43\xa4\x4d\xdb\x01\xa6\x31\x4f\xe6\xc2\x09\xec\xc9\x0b\x63\x3c\xc1\xcc\x29\x5d\x1a\x08\x6b\x6f\xc9\xf5\xb0\x34\x8c\xba\x1a\x5c\x31\xe1\xa1\x9e\x2c\xb5\x61\xc4\x30\xb8\x06\x50\x96\x46\x5a\x31\xcc\x48\x01\x32\x6d\xb2\xaf\xa9\x05\x67\x42\x54\xd7\x76\x84\x8d\x66\xac\x41\x70\xe3\x6b\x34\x9b\x19\x4a\x86\x56\x36\xea\x54\x87\xb3\x96\x4f\x3c\xb6\x49\x64\x99\x35\x57\x61\xa2\xf3\x04\x91\x4f\xcd\x78\x37\x1e\xdb\x70\xdf\xa3\x2c\xb9\x85\xdf\xaa\x31\x1c\xfa\xa8\x8a\xf4\xca\x53\xec\x03\x83\x7c\xe3\x74\x7b\xdf\xe0\xde\x39\xf5\x3e\x56\x65\xd4\x96\x83\xe2\xf4\x99\x56\x0c\x5d\x84\x78\x43\x18\xf3\xd2\x59\xf3\x21\x62\x56\x7a\xba\xc3\xc0\x98\x4b\x73\x51\x9b\xe4\xc6\x60\x88\x3c\x01\x83\xe1\x3a\xc7\xdb\x73\x65\xb5\x11\x2f\x4b\xc9\x17\x82\x15\xba\x39\xaa\x10\x35\x7f\xb2\x11\xc5\xad\x7a\xc8\xe7\xbf\x36\x95\xd4\x3a\x32\xca\x7c\xb2\x4f\x00\xa9\x14\x9b\x99\x2a\xc4\x00\xf4\x32\x82\x9b\x5c\x7a\x98\x0a\x67\x14\x13\x42\x9f\x54\x7a\x6e\x11\xc7\xdd\xa1\x06\xf5\x2c\x7b\xd8\xd3\x01\x4d\x31\x2d\x7c\xe9\x23\x56\x2b\x36\x21\x54\x7f\xc9\x09\xf9\xff\xe3\xa7\xd6\x27\x60\x92\x02\x34\xd7\x79\xc0\x18\x09\xb0\x72\xdd\x68\x86\x29\xf8\x8d\x16\x3d\x2e\xc5\x78\x73\x85\xbe\x82\xac\x16\x1a\x40\xe1\xab\x72\x21\x36\x36\x91\x01\x26\xe2\x7a\x73\xcc\x31\x88\x83\xe7\x08\xef\xca\x19\x02\xa6\x6d\xb3\xaa\x07\x81\x15\xce\x30\xb3\x16\x95\x9e\xbb\x42\xe5\x3e\x41\x78\x93\x4a\x87\x4a\xab\xf5\x2d\x36\x43\x50\x2c\xaf\xdf\xfc\x6c\xbe\x01\x5f\xeb\xce\x1a\xa1\x88\x37\xd0\xbd\x7f\xa7\xf6\xa1\x92\x84\x99\xb8\x47\x30\x9d\x4a\x45\x55\xd7\xba\xd7\x42\x32\x16\x64\x58\xb6\xf6\x84\x17\x8a\xd5\x1e\x17\x41\xf8\x66\x00\x63\xe9\x5c\x41\xba\xb6\xb3\x08\x41\xad\xf7\xb3\x50\x41\x86\x08\x22\x90\x46\xfe\x31\x36\xe7\x4d\xc6\x84\x50\xec\x8e\xbb\x23\x83\xd0\xed\x1b\x86\xf0\x74\xc3\xd7\x42\x0f\x2b\x1c\xc1\x5a\xf7\xf0\x0c\xe3\x17\xae\x78\x03\x03\xaf\x75\x74\x18\x05\x36\x30\x84\xd9\x21\x0b\x73\xf0\x86\x30\xe8\xc5\x9b\xb5\x1d\xb8\x7a\x2a\x86\xae\x53\x86\x44\x9d\x59\x57\xc5\xb4\x43\x1a\x43\xd8\x16\x66\xa4\x62\x56\x7a\x35\x03\x1b\xdb\xc6\x8e\x61\xcc\x8e\x61\x1b\xaf\x3a\x86\x06\x5e\x69\x7e\x53\x44\x14\xb7\xfc\x72\x2d\x78\xea\x17\x1a\x91\xf5\x26\x6d\x14\x5d\x14\xb7\x6e\xb6\x64\x82\xf9\xf3\x25\x15\x4a\xe0\x9c\xf2\x86\xf5\x10\xba\xda\xd1\xb5\x03\x1f\xef\xab\x5a\xe4\xaf\x95\x83\x99\xbb\xab\xc4\x9b\x6b\x11\x50\xbd\xd7\x0e\x84\xa6\x70\x5b\xa4\x12\x87\x91\xb8\x0b\x43\x4c\xc6\x16\x0b\x2e\xb4\x71\x13\x12\xfa\xd4\x87\x23\xa0\x17\x6e\x4a\x3c\x02\xd8\x08\x0b\xe6\x46\x4f\x2d\xc4\x20\xec\x99\x81\xa0\x6e\xac\x8e\x0f\x23\x4c\xb7\x5e\x9a\x35\x89\x9e\x22\xea\x59\x13\x83\xb0\x8d\x49\xe4\x1c\x10\x05\xd3\x43\x54\x96\x11\xfa\xd4\x37\x0d\x38\xa1\x99\x0f\xcf\x81\x6e\x56\x1c\x20\x6d\xbb\xe2\x00\x40\xd6\x2e\x90\x2b\x41\xca\x08\x7d\xea\x99\x38\x7a\x61\x32\x82\x36\xf8\xf4\x69\x25\x05\xd3\xf3\x95\x71\x84\x11\x2b\x59\x6b\x15\xc9\x86\x43\x42\x33\x8e\xcb\x52\x33\x28\x1d\xd7\xfd\x1b\x6c\xb6\xa7\xbc\xb0\x0b\x0c\xc0\x81\x03\x67\x08\xfa\x26\x03\xa4\x3b\xcf\x6b\x5d\xc1\xe3\x21\x94\xa5\xb5\xc6\x00\x39\xb5\xec\x04\x88\xf5\x42\xcf\xf3\xc7\x30\x5b\xca\x96\x4c\x77\xd9\x08\x86\x30\x00\x4d\x19\x63\x42\x9f\xe6\x2c\x15\xb9\xcc\x53\x56\x9c\xf9\x2b\xd6\x1e\x5e\x0f\xbe\x61\x9c\x8d\x5b\x78\x18\x9f\xce\xac\x51\xaa\x6a\xc3\xd1\xbf\x51\xeb\xcf\xff\x57\x03\xf9\x4e\xaf\x9a\x41\xf0\x94\xd0\x2c\x67\xda\x2a\x4f\x7b\x0a\xaa\xcc\x82\x70\xaa\xb8\x68\x22\x74\x08\x6f\x64\x1b\x28\x64\xed\x83\x58\x0a\x36\x82\xf8\xbb\xf6\x2a\x86\x58\x30\x1c\xc2\x40\xf0\xc0\x75\x96\xd7\xb9\x1e\xad\xe6\x31\x80\x50\x07\x37\xf3\x21\x7e\xe6\x6a\x99\xcf\x41\x55\xe9\x4d\x08\x53\x85\xae\xca\x1b\x07\x3f\xfd\xa7\x69\x66\x30\x8e\x64\xbf\x1a\x08\xe6\xc8\x59\x91\x56\x42\xe5\xd5\x8d\x38\xc2\xa2\x52\x6a\xaa\x0b\x96\x6d\x56\x15\x05\x54\xdf\xff\x8f\xd0\xa7\xed\xd5\x80\x19\x90\x5b\xc3\x56\x1f\xc2\x49\x53\xe0\xac\x51\x57\x95\x34\x86\x53\x88\xc2\xae\xa4\x1d\xc6\x43\x0d\x5a\x95\x08\x93\xc8\xa7\x95\x7c\x76\xb9\x31\xe3\x91\x0e\xe3\xcd\x8f\xbb\x2a\x07\x37\x3f\xc6\x2e\x55\x49\x6f\xed\x26\xc6\xce\x8e\x2d\xa3\xb5\x56\x08\x1d\x07\xf1\xfb\x87\xe4\xb9\x21\x7b\xa5\x31\x88\xeb\xf2\x4c\x18\x15\x80\xfa\x43\x3f\x93\xc8\xe7\xd2\x27\x84\x3e\xe1\x7b\x50\x8d\x3e\xb5\xe7\x53\xdf\x69\x3d\x89\x0a\x47\xa3\xab\x72\xd1\x4c\x71\x38\x1f\xb5\x89\xad\x54\x87\x73\xe6\x87\xd8\xa1\x8e\x0d\x75\x87\x9b\xb8\x41\x31\xec\xc4\xae\xd4\xef\xd7\x7e\xf0\xc8\xa1\xdb\xe2\xe8\x1b\xd2\x0f\x5c\x60\x17\x7b\xac\x7b\x7f\x1c\x23\x49\x87\x36\xd8\x31\x98\xff\x59\x75\x5d\x32\x97\x06\xaa\xeb\x66\xb2\x06\xc5\xda\x82\xd7\xa1\x1a\xec\xcd\x75\x46\x6e\xc6\xde\x45\xad\x58\x5d\x97\x36\xa7\xda\xe9\x55\xc0\x2d\x99\x58\x57\x55\xe9\x06\xb6\xb4\xdb\x20\x78\x23\x1b\xaa\xa9\xea\xba\xb4\xf2\xff\x41\xdf\x92\x0e\xa5\xe9\x87\x8e\xf8\x8e\xf3\x06\x89\x3b\x92\xc2\x5b\x19\xf4\x07\x6d\x92\x1e\x44\x33\x85\x37\x95\xd2\x48\x6e\xee\xd1\xda\xe9\x0d\x77\x68\x9a\xf7\x48\x11\xde\x71\xee\xc9\x8b\x0d\x2d\x56\x57\x3b\xf4\x23\xe1\x0f\x74\x30\x2e\x66\xc2\x53\x15\x73\x84\x9d\xaa\x48\x09\x7d\xda\xb6\xff\x20\x4c\xdb\xfe\x83\x26\xf8\xd6\xaa\xa3\x3e\x86\x30\xea\x08\xa1\x4a\xdb\x73\x73\x90\x49\x2d\x45\xf5\x51\x8d\x9d\xc8\x81\x0f\x43\x8d\x3a\x7b\x70\x8e\xa0\x50\x2b\x2c\xfd\xd9\x5c\x41\x73\x0d\x82\x62\xdb\xd8\x81\x06\xda\x47\xb6\x59\xda\x51\x09\x02\x5f\xbb\x85\xdd\x31\x83\xac\xff\x6d\x99\x04\xf2\x6f\x96\x49\x84\xf2\x85\xb5\xc4\x86\xf3\x39\xa1\xcf\xdc\xfe\xee\x98\x50\xee\xf6\x77\x11\xaa\x25\x37\xfb\x54\x9c\xd0\x67\x9e\x41\x10\x31\x42\xb9\x0f\xcf\x80\x6e\xf6\x70\x91\x68\xf6\x70\x35\xa0\x75\xe1\x00\x20\x37\x6f\x02\xd1\x3d\xb3\x13\xf0\x0c\x88\x66\xfe\x0d\xc0\x53\xa3\x77\xd1\x18\x78\x66\xd7\x0c\x22\x48\xc6\x41\x43\x08\xea\x2b\x60\xdd\x1e\x22\x98\xc4\xf3\xb9\x23\xc5\x84\x3e\x6b\x0d\xfd\x23\x08\xd1\x1c\xfa\x63\x42\xb9\xde\x87\x85\xf9\xf4\x33\xb7\x1d\x0c\x81\xdd\x76\x30\x42\x7a\x1e\x01\x33\x63\xbe\xa8\xed\x34\x6b\x0c\xc4\x42\x7f\x8f\x09\x7d\xd6\x98\xb5\x21\x31\x87\xa9\x8c\x8a\xde\xe5\xc0\xa8\x5e\x10\x8b\x40\xb3\xf0\xc2\x24\xdc\x47\xc0\x25\x0c\x82\x70\xfb\xc6\x11\x30\xeb\x81\x10\x15\x8c\x1f\x9d\x51\x5f\x83\x35\x97\x0e\xf3\x0c\x30\x6f\x57\xac\x28\xde\x7a\x9b\x05\xf3\x99\x0e\x7b\xd5\x0a\xf9\x03\x17\xbb\xa1\x19\x86\xae\xd7\x51\x57\x8d\x8b\x61\x4f\xc3\x3d\x0d\xf7\x15\xac\xa1\x2e\xa1\xcf\xbe\xfb\x46\xf1\x08\x93\x08\xae\xe6\xa7\x61\xd4\x83\x74\x4a\x1b\x0e\x2a\xc8\xed\xaa\xc2\x8c\x97\x7b\x20\xc8\xb1\x3d\x96\xa7\x10\xa4\x35\x96\x43\x5d\xac\x8d\xf6\x06\xc5\x0e\x50\xad\xfb\x27\x07\x11\xb9\x0d\x98\x21\x34\x17\xbb\xbf\x05\x93\xc5\x67\xfe\xa6\x21\x8a\xdf\x47\xcc\x34\xe2\x4a\x81\xd0\x25\xf9\xa5\x5b\x80\xc1\xbc\x2f\x5b\x2d\x9c\x5f\xda\x45\xd3\x5e\x8c\x60\xc1\x4a\xb9\x90\xc2\x6b\x3b\x0a\x57\xf0\xda\xab\x77\x67\x44\xb0\x21\x26\xb3\x61\xd0\x2c\x12\x4d\xb1\x36\xa0\x49\x76\xc3\xcd\xe2\x10\xf4\xf6\x67\x97\x9b\xbc\xc8\x67\x22\xdf\x68\x77\x85\x34\xc5\x40\x6e\x2b\x45\x83\xda\x3e\x67\x43\x10\xf7\xe5\x95\x2f\x2b\xc8\xd5\x6a\x8c\x31\xca\x4a\xb8\xee\x04\x92\x74\x6b\xc5\x90\xa5\x85\xba\x21\xd0\x9c\x55\x14\x02\x51\x0b\x81\x0d\x31\xa2\x2f\x92\x67\xd6\x9a\x87\x8e\x60\x6d\x79\x68\xeb\xef\x5e\x40\x67\x03\xa3\x44\x4d\x92\x6e\xe6\x90\x96\xd9\x27\x86\xe6\x63\xf6\x89\xf1\x5b\xe8\xbd\x4f\x06\x85\xbd\x49\x8b\x09\x79\x00\x1f\xb9\x91\x0c\x36\x45\x3c\xe7\xe7\x60\x7e\xb3\xe6\xa9\x64\x76\x0b\x5d\x71\xaf\xdf\x68\xc9\x59\xe1\x69\x93\x67\x0e\xfb\xcc\x61\xe7\xac\x28\x72\x5c\x64\xa9\xad\x65\x18\x13\xfa\xdc\x6a\xb6\x1e\xa1\x73\xab\xd9\x7a\xf8\x42\x98\x49\x76\xd0\x0b\x09\x9d\xcf\x73\xe5\xb2\xb2\x99\xcf\x80\xa3\xf9\xdc\x81\x48\x2e\x1c\xdc\x23\xf4\x79\x4b\x89\x8d\x21\x48\x53\x89\x75\xf1\xed\x28\x1b\x29\x22\xf4\x79\x5e\x14\x3c\xdb\xed\xf7\xa9\x21\xed\xef\xe8\x8c\xd0\xf9\xaf\x98\xd0\xfc\x57\x42\xe7\x05\x33\x33\x86\x0c\x20\x97\x43\x0c\xa0\x2c\x6b\x3d\x72\x45\x84\xce\xcb\x6a\xae\x7a\xee\x18\x84\xd1\xee\xb9\x10\xbf\xdd\x73\x87\xf8\x04\x19\x2b\xcc\x54\x2f\x84\x78\xe2\xcc\x87\xe7\x95\x5e\x80\x8d\xc1\x14\x05\x48\xcf\x79\xc1\x54\x7f\x5e\x6d\x44\xce\x85\x14\x7a\xfd\x09\xa6\xe3\xf3\x35\x13\xd2\x2e\x2f\xc2\xdc\x60\x2e\x58\x8a\x9b\x93\x37\x33\x03\x29\x35\x16\x41\x93\x46\xb8\x87\xd4\x54\x43\x7d\x4d\xed\x6b\x78\xa0\xe1\xb1\x86\x47\x1a\x9e\x29\x38\x36\xa9\xf5\x34\x6c\xe2\x0f\x14\xdc\x55\xa9\x73\x0d\x19\xea\x50\xc3\x26\x35\x9d\x7b\xcf\xd0\x47\x0a\xee\x9b\xdc\x99\x86\x4d\x78\x5d\x96\xa1\x81\x55\xfa\xba\x2f\x87\xd8\xec\x84\xd9\xe9\xed\xc2\x28\x37\x6f\x1b\x39\x33\x42\x9f\xbb\x2e\x1c\x11\xba\xf0\xf6\x4a\x40\xd5\x7d\xe3\xe6\x7b\x60\xd9\x7a\xd3\xbf\x59\x57\x53\x33\x05\xc3\x44\x69\xe1\xc3\x19\xc0\x7a\x1d\x69\x34\x20\xf4\x1b\xcf\x5d\x0c\x26\x70\x0b\x1f\x9e\x13\xfa\x8d\xd9\x14\xd8\x84\x11\x30\xfb\x8d\xdb\x7f\x88\x20\x6d\x0f\xcc\x80\x6a\x56\x27\x80\x2d\xbb\x3a\x01\x4c\x59\x3b\x21\x0e\x09\x5d\x38\x08\x8a\xa7\xd5\x27\xcc\xef\x17\xda\x29\x6d\x30\x84\x6f\xad\x76\x47\x90\x93\x59\x78\xc8\x66\x00\x5c\x7a\x51\xf8\xe5\xa5\x17\x49\xeb\x70\xad\xe3\xa0\x48\xbc\xd6\x6b\x57\x8c\x8d\x11\x6c\xd0\xec\x98\x3e\x0a\x0d\x5c\x69\x44\x6c\x11\x86\x91\x1e\x62\x2c\x27\x66\x69\x0d\x70\x26\xd9\x71\x8f\xd0\x6f\x5a\x9a\x81\x11\xba\x68\x69\x06\x48\x49\xaf\x0e\x0f\x66\x84\x7e\xa3\xbf\xa1\xfb\x2c\x16\x3e\x90\xaf\x74\xc9\xa3\xee\x90\xd0\x6f\xdc\x64\x1c\x44\xec\x26\xe3\x00\x15\x4c\x17\x13\xa4\xa2\x99\x04\x93\x6d\xa1\xb5\x24\x03\x0d\xb0\x28\x7e\xd5\xa1\x80\x85\xd2\x36\x06\xa6\x20\xeb\xb1\xa4\x31\x7a\x66\x39\x1a\x01\x60\x2a\x67\x8c\x94\x4b\x9f\xe4\x2a\x01\x89\x76\x5c\x01\x9b\xea\x9b\xb6\xd2\x01\xc9\xb7\x95\xce\x08\x9f\xc4\xd3\x6b\x2c\xdf\xe0\x0d\xb6\xc2\x9b\xbf\x43\x4d\xfb\xd8\x6f\xcd\x18\x8d\x0d\x42\x53\x9e\x6f\x8a\xc2\x8f\x33\xb4\x14\xfd\xa7\x4b\x1e\x5b\xbc\x4b\x66\xe8\x02\xbf\x85\x06\xe4\x0f\xfb\xdc\x92\xbc\xd1\x1e\xc6\xcf\x6f\x5a\x7d\x17\x52\x5e\xd8\xbe\x8b\xf5\x6e\x25\x01\xe1\x17\x76\xa7\x96\x8d\xb8\x02\x8d\x79\x0a\xcd\x48\xda\x86\x3a\x44\xc8\x38\xa8\x0d\x21\x21\x39\x21\x8f\x08\xfd\xe6\x9d\xfa\x93\xae\xed\x2c\xdc\x3c\x26\xc3\x78\xc5\x1b\x33\x39\x01\xfb\x65\x21\x9d\x49\xc2\x86\xd0\x95\xa4\x68\xd4\xf3\x40\xa1\xac\x7d\x31\x42\xb8\x95\xa6\xe0\x97\x45\x43\xe4\x88\x72\x38\xd5\x49\xa5\x28\x1a\x02\x5d\x48\xd1\x2c\xff\x15\x17\xd2\x6f\x2b\xb6\x07\x5d\xb9\xc6\x65\x70\x2f\x58\xca\xd5\x74\x0d\xd7\xa1\x96\x2c\x17\xd6\x44\x65\x00\x17\x73\x33\x7a\x2c\xd9\x2a\x2f\xf4\x0c\x3b\x9c\x11\xfa\xe2\xec\x7b\xbb\x52\x1a\x63\x58\x61\x17\x4b\x7b\x0a\x16\x76\x2b\xab\x37\x52\x08\x15\x1d\xfa\xef\xd2\xad\xef\xf6\x14\xcd\xcc\x75\x33\x60\x4b\x4e\xc8\x7f\x13\xba\x9c\x31\x53\xcf\x73\x42\x5f\x38\x4d\x08\x7d\x7b\xe9\x81\x7d\x42\x97\x9c\x09\x69\x56\xf5\x2c\xec\xd6\xfd\x10\x55\x14\xb9\x2e\x5e\x3c\x00\x58\xa4\xc6\x7c\x85\x79\xef\xb2\xa5\x40\xfa\x84\xbe\x30\x5b\xa8\x30\x7f\x7e\x91\x17\x33\x2e\xe4\x5b\x7c\x57\xc4\x0a\x62\xf9\xb1\xe6\x6e\x1e\x8e\xac\x7c\xac\xaf\x3d\x0c\xe4\x54\xb9\xb9\xed\x1c\xc0\x95\x5c\x9a\x85\x74\x48\xa2\xaa\x3e\x16\x7c\x2e\xbd\xc5\x13\xd0\xa3\x80\xc6\x75\x0d\x1f\x0f\xa2\x6d\x77\xec\x31\xa1\x2f\xdc\x56\x14\x54\x56\x25\x8c\xe8\xc2\x08\x8a\x51\x89\xfc\xb7\xaa\x94\xac\xf8\x36\xd7\xfa\x06\x9d\x6a\x96\xed\x81\x11\x84\xef\x3a\x17\xb0\xe6\xdc\x01\x55\x25\x78\x33\x7c\x2c\x99\x0f\x0f\x09\x7d\xb1\x59\xe1\x8a\xd3\x8b\x86\x63\x03\x40\x9e\xd6\xe8\x81\x0c\x6e\x9d\x67\x44\xaf\x0b\xf0\x7a\xa9\xdd\xe3\x70\x91\xff\xa5\x9b\xb1\x67\x84\xe6\x6e\xc6\x0e\x90\xea\xc3\xe1\xa0\x4b\xe8\x4b\x3b\x1b\xe7\x40\x30\xb3\x71\x0e\x14\x33\x54\x8e\x80\x62\x86\xca\x11\xa1\x2f\xed\xe0\x08\x06\xf0\x4b\x3b\x31\x07\x51\xe5\x76\x66\xde\x45\x08\x4d\xeb\x0f\x37\x2c\x22\x34\x9f\xcf\x5d\x93\xcd\x5b\x8d\x65\x40\xe8\x4b\xd3\x58\xa2\x88\xd0\x97\x6e\x36\x9d\x12\x9a\xbb\xd9\x34\x40\x6a\x15\x24\x82\x6e\x91\xe7\xb9\xb3\xd9\x90\xe6\xf6\x23\xa1\xa8\x79\x39\xd7\x4b\xcd\xe3\x0c\xc9\x95\x9a\x35\xc4\x51\x3c\x26\xf4\xe5\x3f\xb5\x61\x1a\x46\xdd\x98\xd0\xfc\x57\x07\x82\x6c\xdc\x84\x19\xba\x68\xee\x81\x33\x04\xb5\x5d\xa0\x18\x5e\xb1\x45\x5e\x32\x71\xfb\xd2\x63\x6e\xc5\x16\x85\x69\x31\xb8\xc2\x03\x18\xb0\x33\x5d\xbc\x7c\xc5\xd4\xa6\x4e\x88\x96\xd4\xcb\x95\x4f\x52\x86\x71\x1c\xc3\x0c\x27\x5f\xad\xd5\xf6\x52\x88\x7b\x95\x2f\x57\xeb\x22\x37\x9b\xb9\x19\x30\x5f\xa6\xc6\x1a\x47\x3f\x63\xb3\xc2\x1e\x02\x23\x56\x0a\x31\xd8\x50\x08\x1a\xa7\xb5\x31\x98\x5c\x79\x59\xb9\x4a\x85\xac\x4b\x99\x9a\xe6\x36\x63\x08\x6b\xa1\xce\x08\x7d\x69\x81\x14\x29\x7c\x61\x16\x28\x50\xb3\xb4\x56\x9a\x67\x2a\x8c\x68\xa4\xf7\x12\x17\x35\xb8\x73\x47\x46\xef\xcc\xbc\x94\x05\x13\x4b\x65\xb7\xb3\x68\x88\x18\xbb\x2b\xcc\x60\x12\xff\xb2\xbc\xca\xeb\x1c\x97\xb5\xb5\x4d\xa9\xdb\xb1\xc1\x3b\xef\x82\x70\x10\x13\xfa\xf2\xb5\x35\x47\xa0\x58\x95\x35\x47\x40\xd6\x6e\xcd\x20\x06\xa9\x78\xe0\x1c\xa8\x4d\x35\x01\xf3\xaf\xbc\xad\x3a\xa0\x28\x95\x9d\x94\x8e\x21\x84\x9d\x95\x02\xd4\x64\x3e\x37\xe3\xdc\xcd\x6c\x4e\x68\xde\xd6\x1e\xd0\xe9\xac\xf6\xc0\xd6\x52\x37\x2a\xb1\xce\x4b\xb7\x1e\xd8\x57\x08\x3d\x26\xcd\xc7\x0a\xd4\x23\xdb\xbc\xa7\x41\x3d\x87\x9f\x77\x15\x7c\xe5\xa5\x26\x3d\x21\x49\xbb\x4d\x14\xc5\x48\xf3\x60\xe8\x26\x9b\x8f\x56\x8a\x03\x42\x73\x07\xc2\x54\xe5\xa5\x99\x64\x43\x99\xcc\x24\x7b\x4e\xe8\x3f\xdd\x08\xd3\xed\x11\xfa\xab\x07\xf6\x81\x6a\xb4\xc6\x18\x68\x46\x69\x8c\x09\xfd\x67\xcb\x36\xcd\x08\xfd\xb5\xa5\x2d\x86\x84\xfe\x6a\xfb\x0d\x7a\x55\xfc\xb3\x5d\x5b\x11\xa1\xbf\xb6\x6b\x6b\x46\xe8\x3f\xdb\xf6\x50\x9f\xd0\x5f\xdb\x15\x01\xcc\xd7\x5c\xd8\x32\x8f\x20\x8c\x83\xc1\x12\xfc\xa7\x27\x12\x28\x9c\x27\x92\x1e\xa1\xff\x62\xeb\xb5\x69\x14\x8c\xd0\x8f\x0e\x9c\x19\xd0\x2c\x0c\x85\x84\xfe\xcb\x9b\xc2\x74\x07\x84\x7e\xf4\xe1\x21\xd0\x8d\xa8\x20\xb2\x15\x15\x23\xf4\x5f\x2d\x51\x71\x42\x3f\xb6\x44\x35\x22\xf4\xe3\x42\x68\xd7\xe9\x10\x37\x8e\xff\xe5\x7c\x99\xfa\x84\x7e\x74\xbe\x4c\x7d\x42\xff\xe5\xcc\xf7\x94\xd0\x8f\xce\x7c\x4f\x09\xfd\x57\x5b\xc6\x31\xa1\x1f\xdb\x32\x86\x70\x6d\x19\x43\x99\x5a\xb8\x34\x24\xb4\x38\xb3\xc3\x7a\xc6\x08\xfd\xd6\x9b\x44\x42\x3b\x28\x7c\x98\x01\xdc\xd8\xaf\xed\x01\x66\x21\x98\x5e\x8b\x89\x62\x48\x61\x35\xcb\x8c\xdc\x67\x40\x77\xf0\x0c\x61\xed\xef\x32\xe4\x23\x08\x6d\x21\xa6\x68\xe6\xc4\x47\xa4\x40\xbd\xf2\x82\x81\x0b\x3b\x0d\xe9\x43\x4c\x3c\x64\x69\x97\x0f\x20\xef\x82\x29\x7f\xfa\x1b\x86\x19\x09\xa1\x7c\x40\x22\xde\xd3\xe0\x5c\xf5\xcd\x31\x4c\x5a\x9d\x5f\x06\x58\xd5\xdf\x3a\x88\x83\x54\xac\x50\x42\x15\xd2\xc6\xcc\x14\xac\x15\x24\x1a\x39\x00\x17\x6b\x0d\xeb\x9c\xd7\xc6\x65\x44\xd3\x8d\x81\x3b\x06\x03\x17\x10\x52\xcf\xd7\x18\xf2\x2d\x59\xae\x23\x40\x57\x2c\xce\x3c\x18\x13\xd4\xa3\xab\x4a\x5d\xfb\x40\x31\x96\x29\xa8\x36\xa0\xb1\x89\x8b\x99\xb5\xd3\xa1\x05\x15\x8f\x1d\x08\x85\xb3\xe7\x17\x86\x43\xc8\x7c\x26\xd0\x18\xfc\xa4\x3f\x3f\x4e\xc8\x39\x7e\x7e\xd4\x63\xd3\x68\xa6\xc0\xba\xd0\x75\x33\x9a\x1b\xc4\x46\x23\x32\x42\xbf\xf5\xb6\x18\xba\xc0\x98\x0f\x73\xa0\x7b\x1d\x0a\x52\xf4\xe1\x14\x61\x5d\xe4\x2e\xf4\xf5\x22\xdd\xcc\x90\xa7\x6f\x6d\xc7\xc3\x48\xa6\xe3\x01\x90\xa5\xfa\x78\x13\x74\xd8\xc2\x3b\x4b\x91\x6a\xd0\x98\x8f\x50\xe8\x4c\x64\x6e\x37\x66\x88\x88\x4d\x6d\x31\x3d\x4c\xcf\x58\x89\x33\x10\x8b\x59\x6f\x80\xb6\x63\x66\x1d\x03\x42\x71\xbf\x14\xda\xe5\x63\x90\x95\x5e\xab\x57\x6d\xd9\xec\xa4\x9a\x3d\x32\xd5\xee\x9a\x46\x31\xb6\xb5\xe6\x26\xae\x41\xb1\xe6\xbe\xae\x0d\xd5\xde\x48\x4d\x07\x5e\xaa\xb6\xa1\x60\x43\x82\x38\x4f\x78\x5e\xe4\xba\x57\xa1\x28\x01\xa9\xb6\x4b\x9b\x2c\x0f\x0c\x09\x77\xe5\xfc\x7d\xbf\x41\xe4\x48\xed\x6d\xbf\x71\x9b\xa4\x99\xea\x2a\xfc\xf3\xa2\xd2\xa8\x2e\x4c\xbf\x80\x4f\xbd\xbd\x69\x4f\x2e\xe0\x96\xa3\x47\xd0\x1e\x4b\xd1\x2c\x55\x68\x5b\x36\xb3\x7f\x3a\x54\xf8\xf6\x3c\x02\xe6\x60\xfb\xb6\xbd\x0d\xbe\x1d\x3e\xeb\xb5\xd3\xa9\x9b\x02\x45\x82\x66\xca\x90\x66\x1e\xa9\xbe\xdc\xe4\x0b\x7f\x22\x93\x79\x0c\xf8\xf2\x83\xf9\x82\xde\x9d\xf5\xb7\x40\x7b\x16\xab\x9a\x13\xeb\x5a\x44\x63\xd7\x55\xcb\x4d\x2e\x05\xe7\xbe\xdb\xc5\x4c\x07\xd7\x87\x3a\x6c\x9d\xc0\xa0\xef\x13\x54\xf0\x59\xdc\xc4\x7a\x93\x97\x99\xe6\x44\xed\xac\x37\xf2\x8e\x0c\xa5\xdd\x24\x42\x43\x68\x37\x88\x51\x93\xa0\xeb\x52\xb3\xd4\x0e\x1c\xfb\x68\xaf\xda\x9f\xe9\x4d\x3c\xd4\x35\xdc\xac\x6c\xa1\x20\x2e\xbd\x7e\xe8\xd6\x04\xb0\xca\x1a\x8b\x78\xd8\xa8\xdc\x22\xde\x08\xc1\x06\xcd\x2e\xe2\x0d\xe7\x06\x36\x8b\x78\x91\x45\xe8\xc5\x94\x51\x17\x31\x96\x13\xab\x5a\x79\x6d\xd7\x06\xc7\x2a\x4c\xdd\x58\x27\xe9\x2b\x9c\x5b\x18\x19\x28\x04\xbf\x34\x9b\x48\xba\x5c\x80\xb2\x38\x2c\xf8\xb7\xbc\xae\xb1\x96\xfc\x75\x28\x0c\x0d\x94\xf6\xb2\xd5\x40\xa1\x1b\x61\x87\x3a\x33\x9b\xd5\x50\x87\xb2\x2b\x58\x8c\xa9\xa2\xd6\x6e\xc5\x25\x56\x41\x76\xd6\xb3\x32\x85\xf7\x17\xb3\x40\x2f\xfa\xfe\x59\x50\x75\xf3\x66\x8f\xff\xb6\x65\x0e\x81\xa8\x5b\xe6\x10\x8c\x70\x0b\x8f\xe1\x85\x59\x78\x04\xd6\x9c\x23\x17\x64\xb6\x64\x22\xf3\x94\xc6\x92\x89\x8d\xd7\x6a\x00\xd4\xc3\xe4\x00\x64\xba\x9c\x15\xe6\x68\x12\xb4\x70\x67\x46\x41\x8e\xce\x8c\x02\xc8\x8d\xfe\xa8\x5e\x8c\x50\xa1\x00\x66\xe1\x16\x5a\x10\x7a\x2e\x69\xe9\xa2\xef\xd2\xb7\x2d\x7d\x8e\x75\xe9\xd8\x1c\x0f\xa0\x01\x17\xd6\x49\x60\x0e\x09\xae\x72\x37\xaf\x03\x71\x78\x30\x4c\x68\x8a\x55\xb5\xa9\x25\x4b\x97\xda\x6d\x68\x66\x71\x1e\xec\x96\x60\xc7\x0a\xf2\x9a\x1c\x62\xcc\x82\x21\x94\xc6\xae\x92\x8d\x90\x72\xe9\x93\x5c\x17\x42\xa2\x5b\x82\x85\x9a\xa8\x9c\x39\x96\x22\x68\x97\x7c\x40\xfa\x95\xb5\x1b\x54\x60\xd0\x2a\xbe\x30\x86\x30\x21\xda\xe7\x53\xa4\xd1\xed\xd0\x23\x97\x48\x4b\x57\x0f\xe7\x43\x97\xd2\x8e\x8b\xd1\xd0\x25\xb7\x13\x8f\xa9\x34\x57\x6c\x5d\xeb\xce\x3d\x9c\xa7\x0a\xb7\x13\x76\xa0\xd2\xd9\x49\x5f\xe3\x77\xc2\x83\x9c\xab\x6a\xdd\x72\x4f\x45\x9b\xcc\xa0\x3d\x1f\x1e\x86\xd9\x9a\xbd\xed\x31\xda\xac\x6d\xe3\xbd\x8b\x41\x9a\xc6\x3b\x4a\xda\x6d\x7a\xc7\x08\x7b\x67\x1d\x61\x1e\x57\x54\xd7\xf6\x70\x01\x4c\xd1\x8b\xea\x1a\x17\xcb\x7e\x81\x3c\xae\xb9\x68\x5b\x18\x63\x8d\xdf\x19\x2a\xb1\x0a\x7e\x53\x6d\x35\x45\xd9\xb9\x83\x8a\x06\xa1\x4f\x7a\x73\x28\x27\x16\xa7\xa3\x3e\xf4\x52\xea\x18\xd5\xa0\xf3\x1a\xc6\xd1\x54\x34\xfa\x0d\x34\x7a\x61\x6c\x2d\x35\xa6\x0a\xaf\xcb\x40\x09\xb5\x8b\x71\x88\x06\xaa\x30\xfd\x27\x86\x71\xa4\xa8\x99\x35\xed\xd0\x9c\x6e\x4f\x63\x60\xcc\x72\x73\x76\x50\x1b\xd6\x90\x83\x51\xcb\x07\x8a\x86\xda\x2b\xbc\x85\xf6\x4c\x81\x66\x1c\xc2\x7c\x2f\x67\xca\x16\xae\x9d\x69\x39\xd2\xa0\x31\x2d\xa1\x7f\x7b\xeb\x87\x30\xe5\x2d\x7c\x18\x72\x71\x0b\xf6\x03\x84\xec\x82\x3d\x14\x46\x4e\xc8\x43\x42\xbf\x7d\xa7\xfe\xa4\xd3\x43\x85\x6c\x8e\x21\x68\x0e\x38\x4b\xa0\xf0\x2d\x03\x4c\xa8\x70\x8b\xf3\x18\xde\x5f\xd0\xc7\x08\x46\x29\x81\xad\x06\x10\x77\xd6\x40\xe1\x1c\x99\x52\x64\x59\xb8\xdd\x01\x48\x6c\x23\x32\xcf\x58\x66\x88\xf1\xbc\x9b\x20\x48\x6b\xd1\x7e\x64\x47\x4c\xb7\x68\x6f\x71\x7a\x15\xef\x86\xcd\xe1\xdb\xee\xae\xc7\x08\x69\xfb\x34\x0e\x15\xc4\xf5\x81\x67\x44\xbc\xd2\x6a\x70\x1c\xf6\x81\x6a\x26\x5d\x03\x04\x4c\x8f\xf7\x60\x67\x74\xb2\xa1\xc1\x79\x5d\xb7\x67\x70\xc6\x06\x65\x98\xac\xf8\xa8\x9b\x6e\x9f\x71\x42\x57\xa9\x5d\xe6\x62\x30\x76\xbd\xb2\x33\x92\x14\x88\x66\x46\x02\x80\xe7\xe4\x0d\x49\x5b\x9f\xa8\x18\xe6\xce\x2b\xce\xea\x8d\xe0\x99\x7f\x53\x43\x44\xe8\x2b\x9e\xe5\x9b\x95\x5b\x91\x0f\xfb\x73\x40\x16\x45\x5e\xba\xbd\xf1\x2e\xa1\xaf\x5a\x27\xab\x41\x3c\xad\x81\x15\x32\x59\x6a\x19\xc4\x50\xde\x3c\x45\x1f\x8b\x9b\x19\x14\x2b\xcf\xcc\xb1\xff\x55\x9e\xd9\x46\x38\x0f\x11\xd6\xfc\x74\x11\xf0\x0e\x69\xa1\x2b\xac\xbe\x97\x61\x3c\xd7\xb0\x56\x3c\xb1\x06\xcd\x7d\x21\x23\x03\x6f\xb4\xb0\x18\xa1\x78\x22\xc9\x9d\x40\x8a\x20\x83\x22\x35\xc7\x2f\x66\x00\x65\xc6\x1d\x1d\x6a\xad\x5c\x37\xc3\x56\x99\x71\xaf\x8a\xa1\x06\x5f\xb5\x35\x28\x88\xb9\xad\x41\xa1\xce\xd6\x5e\x1a\x6d\x7d\x11\x13\xfa\xca\x6d\x9d\x63\x08\x89\x97\x34\x7c\xd0\x57\xa0\xbc\xc2\x02\x84\xdd\x31\xd4\xa9\xfe\x9e\xe1\x37\xf4\x3a\x73\x16\x63\x06\xe5\xdd\x34\xc0\x92\xcd\xf4\xf6\x2a\xba\xbe\x7f\xe7\xad\x9e\x80\xae\x2f\x7d\xb8\x07\xb0\xbb\xcf\x03\x3d\x96\x63\xc0\x99\x4d\x87\x31\x02\xf6\x92\x09\xbc\x7f\x05\xf3\xf0\xae\x97\xf0\x90\xaa\x00\x61\xa4\xe3\x79\x97\x4a\x20\x42\x6e\xcc\x72\xf0\x60\xc0\x2d\x42\x4f\x73\xa2\xbe\xc6\x78\x01\x66\xb8\x8d\x76\xc3\x42\xf8\xf6\xb6\x42\x6c\x96\x8d\xb3\x9d\x16\xeb\x8e\xae\x74\x09\xfd\xce\x5b\x04\xe8\x0d\x91\xea\xe0\x11\xd0\xdd\x22\x40\x0f\x78\xf0\xe1\x01\xc0\xee\x74\xd4\x50\x83\xde\xf1\x28\x97\xa9\x3d\xf5\x12\x43\xa2\xa6\x7f\x66\x40\x32\xfd\x13\x00\xaf\x7f\x42\x75\x70\xbb\xd0\x3d\x8e\x7b\x0a\x36\x8b\x40\x90\x1b\x77\xab\x40\x43\x4d\xb5\x03\x27\x22\xb4\x5a\x03\x09\x71\xcf\x7f\xca\xb0\xf5\x1d\x5f\x30\x99\x5f\xf1\x9d\x1e\x1e\xce\x1c\xf1\xdd\x32\x4f\x3f\xde\x4f\x2b\xef\x21\xfd\xc0\xc5\xed\x1e\x72\xe3\xfc\x3d\xb4\x26\x5e\x73\xa3\xa5\xe3\x11\xc2\xce\x97\xcb\xf1\x59\x4b\x9e\xed\xd9\x03\xc7\x8d\x63\x45\x6d\x4c\x22\x70\x7c\xfa\x8e\x5f\xeb\x9d\xb8\x12\xd2\xf5\xdc\xb6\x7a\x06\xae\x1d\xe2\xbb\x96\xf6\x8a\x08\x2d\x5b\xda\x0b\xd8\x77\x9e\x1d\xb6\x6e\x8d\xe3\xc7\x30\x42\xe0\xb2\x09\x5d\xee\x09\xdf\xf4\xed\xf0\x08\xf5\x0e\xce\x79\x54\xb8\x60\xce\x44\x80\x16\xe9\xf6\xd0\x6d\x0f\x5d\x18\xd4\x1c\x01\xe1\x41\xdf\xc8\x2b\x17\x5c\x27\xe8\x76\x8d\x61\x34\x29\xdd\xb6\x71\x8a\xa0\xb1\x10\xd9\x1c\xd2\xd6\x76\x0f\xd6\x65\x6e\x76\x12\x52\x04\x74\xa7\x07\x13\xb7\x34\x75\x8c\x4d\xc2\xcd\x73\x80\xe4\xe6\x39\x00\x79\xab\x9c\x08\xba\xcc\xa1\x3f\x38\xdd\x0b\x45\x75\xcb\x5c\x96\x77\x33\x50\x0d\x43\x04\x9a\x4b\x59\x90\x60\x6b\xe1\x4a\xa5\xba\x67\xf1\x05\x8b\xbe\x6f\x55\x06\x85\x60\x67\xf9\x3a\x1f\x37\xcd\xf7\x38\x69\xce\xf6\x3d\x42\xbd\x0f\x67\x5a\x2a\xe6\x6b\xa7\x74\x2e\x84\xab\x65\x68\xae\xce\xf0\xb2\xb5\x5c\x48\x2f\x05\x6b\x3c\xc5\x9c\x69\x50\x4b\x06\x26\x4a\xe5\xb7\xb6\xda\x99\xcd\xc1\x0d\xaa\xd0\xfc\xab\xc7\x82\x33\xa5\x6b\x42\x50\x18\xdf\x55\x25\x62\xf2\x72\x61\xba\xb0\x52\xb5\xed\xc1\x6c\x0e\x61\xcd\xc6\x38\xe8\x69\x77\x97\x06\xe4\xac\x4f\x8e\xa4\x88\x6f\x1f\x16\x8d\x15\xd6\x3b\x3f\x08\xb6\xf6\x77\x95\xbc\xef\xf4\xc4\x00\xa9\x4d\x07\xe8\xb1\xc2\x79\x2b\x0f\xa1\xc3\x34\xfc\x5a\xad\x3e\xa9\xe4\xb3\x76\xf7\xaf\x64\x53\xb1\xcc\x7d\x9c\x97\x38\xf4\x6b\x47\xd8\x71\xd5\xf1\xb2\xd8\xaf\xaf\x76\x03\x78\xce\x3b\x63\x1f\xbf\xeb\xbf\xb3\x1b\xd7\x5f\xfb\x50\xa2\xdf\xe7\x1c\xe0\xc5\xdb\xf1\x12\xb0\xcd\xa1\x92\x76\x1f\x71\xac\x41\x6f\x23\xb1\x11\xcc\xee\x27\x36\xb0\x57\xac\x15\xdd\x5c\x97\x05\xf3\x61\x85\xd0\x8e\xcd\x73\x55\x8d\xf7\xac\x15\x7a\xdc\xee\x2e\x1a\x42\xeb\x6e\x11\xbc\xe2\xf0\x54\x53\xfd\xde\xa5\x11\x7e\x1d\x86\x16\xdb\x5c\x9d\x1a\x59\xbc\x3f\x94\x34\x18\xda\xb7\x0e\xd5\x0a\xe0\x57\x8a\x6a\x5a\xf7\x0e\x60\x8c\xf9\x8d\x72\xcf\x48\xc6\x58\xe4\x09\xd9\x6a\xdf\x54\x83\x56\xe6\x16\x61\x64\xce\x0d\xc2\xc8\x5c\x75\xac\x37\x82\xa7\x3c\x33\xf3\xb2\x51\xd8\x40\x7a\x85\x62\x7e\x35\x18\x7a\xab\xe4\x31\x57\xd1\xbf\xe7\x57\x5c\xd4\xbc\xd9\x2b\x55\x4d\xa8\x43\x3b\xed\x3a\xce\x42\x2f\xf1\x46\x10\x9d\xee\x6c\x97\xe2\x67\xab\x8a\xa2\x3c\x8b\xd5\xeb\x9f\xba\x38\x3e\xd3\x3e\xd9\x8f\x1c\x37\xa8\x6b\xe0\xdc\x5c\x64\x10\xee\x89\xae\x02\xf8\x09\x74\x15\xdd\xcf\x37\x36\x4a\xd9\x12\xbc\x08\x23\x9d\xe0\x26\x4d\x39\xcf\x8c\xe4\xa3\x06\xd2\x93\xfc\xac\xc1\x85\xa6\xef\x48\xbe\x19\xdd\x6f\x71\x0d\x19\x34\xca\x37\xea\x36\xd8\xdc\x29\xd9\x48\xa9\x1f\x5f\x65\x46\x0e\xe3\x6b\x8d\x9e\x43\xb7\x34\x20\x58\xc1\x86\xe4\x27\xa4\x92\xde\x55\xe8\x30\xb6\xad\x99\x60\x45\x61\x3c\x63\x41\xc7\x97\x6b\x5f\xe3\x97\xee\x14\x01\x9b\x67\xe6\xce\xa6\xd2\xba\xc8\xc4\xa1\xed\x44\xe5\xba\x2a\xdc\xed\x0f\x98\xb8\x70\x4d\xbd\x5c\x8b\x74\xc3\x5d\xdb\x2d\xdd\x21\xf1\x91\x01\xcd\x62\xa4\xeb\x00\x80\xde\xc1\x09\x26\xf4\x31\x8d\x71\xb7\xdb\xc0\x6a\xdb\x03\xec\x23\xe1\x8c\x99\xb9\xa6\x1a\xd3\xc4\x99\x02\x3b\xbb\x46\x10\xf3\xfb\xb6\x11\x82\xf1\xdd\x18\x3f\xd3\x20\x77\x3d\xa2\x34\xa7\xfa\xa1\x69\x95\x75\xea\x4a\xaa\x60\xbe\xd3\xbc\xda\x3b\xf0\x63\x0c\xd7\x9c\x8a\xc2\x2c\xa4\x5e\x56\x42\x36\xac\x05\x85\xda\x53\x6f\xce\x78\x8f\x14\xc4\x5d\x8b\x29\xbd\x8b\xf0\x14\xdc\x4a\xb3\x59\xe9\xf5\xa5\xbd\x14\x01\x3b\x2d\x22\xcc\x7c\x8e\x23\x5f\xfa\x0a\x85\x78\xd4\x53\x90\x9e\x8a\xa6\x6e\xb4\x72\x49\x8c\x34\xb8\xa7\xd3\x6a\xb4\xe1\xcd\x0b\x69\xec\xbc\x66\x92\x69\x43\xd0\xd0\x05\x2f\xdb\xb2\x2d\xcd\x0d\x0e\xf1\xa8\xaf\x20\xc3\xdb\xc0\x0f\xc2\x5d\xc7\x03\x70\x4f\x4f\xd5\x68\xcb\xdb\xd8\x43\x5d\xee\x24\x29\xad\xbf\x34\xf4\x37\x7b\x1b\x62\x06\x8c\x5a\x68\x8e\x90\xdd\xe0\xc0\x78\xed\x1b\xda\x94\x15\xe9\xa3\x0d\x07\x68\xd4\xed\x5e\xdb\xa6\x9a\x64\x03\x6f\x63\x80\xba\x36\x0b\x16\xd0\x50\xcd\x82\x05\x7e\xaf\x26\xe4\x3f\xf0\x9f\xeb\xd3\x36\x78\x20\xaf\xdc\xb8\xf3\x5e\x60\x3d\x5c\xb9\xfb\x25\xac\x64\xae\xdc\xad\x34\x60\x5e\x96\x57\x4f\x1d\x0c\x49\xff\xe0\xd1\x61\x34\xfc\xc1\xa3\x43\x77\xba\x72\x1e\xfb\x2e\x4d\xf4\x4f\x76\xe0\x0b\xe7\x98\x00\x6d\xec\xca\xf7\x14\x84\x34\xaf\xec\x7c\x65\x1c\x62\x04\xb7\x2b\xef\x12\xc1\x25\x54\x1f\xf4\x56\x36\x1d\x5a\xb8\x94\xba\x08\x7b\xc1\x3c\x06\xdd\x95\x59\xa9\x45\x5e\x7b\xcb\x04\x5d\x05\x1b\x35\x04\xb2\xbc\x76\xcb\x04\x03\x4d\xb5\xca\x06\x11\xa5\x9b\x82\x0f\x09\x7d\x6d\xfd\x40\xb3\x2e\xa1\x95\x85\xe6\x08\xf9\x57\x06\xbd\x36\xae\xa0\x59\x8f\xd0\xca\x00\x73\x0d\xe8\x70\x0c\xc2\x99\x05\x0f\x0e\x24\xb3\xe0\x01\x40\xf3\x66\xa1\xd7\xee\x1e\x89\xa8\x1f\x02\xd9\x83\x23\x80\xf5\xbc\x92\x41\x73\xb7\x77\x30\xe2\x15\x44\x55\x56\x57\xc6\x01\x64\x96\x12\xfa\xfa\x99\xf5\xd3\xec\xc7\x84\x56\xdc\x81\x50\x90\xb9\x75\x9c\x9e\xcd\x09\x7d\xdd\x9a\xfd\x43\x84\xd6\xec\x3f\x25\xd4\xfa\xfe\xa1\xeb\xf8\x6b\xeb\x6f\x0a\x95\x50\x59\x68\x8e\x90\xde\x7b\x48\x81\x6b\xeb\x63\x3d\x9e\xf5\x01\x5c\xa9\x0e\x00\x0a\xb7\x6a\xdc\x94\x53\x79\x77\xb1\x30\x00\x1d\x93\x48\x75\x77\xcf\x8c\x67\x33\x40\x18\xbf\xd1\x10\x85\x69\x36\x3c\xd2\x90\xd0\xd7\xce\x11\xb5\x07\xac\x7b\x20\x08\x7a\xc5\x17\xcc\xe3\xc2\x81\xe9\x18\xa8\x79\x2a\xec\xa9\xc5\x39\xd0\x3d\xc4\x4c\x21\x8c\xa8\x07\x08\x35\xae\x75\x7a\xdd\x5e\x04\x85\x30\x2d\x1c\x4c\xd2\xdc\xe6\xd3\x0c\xda\xdd\x9a\x97\xf7\x5c\xb2\x94\x7a\x54\x1f\x0f\x8d\x60\xcd\xcd\x6d\x35\x33\x28\xc9\xba\x71\x99\x54\xe5\x5d\x16\x03\x55\xa6\xad\xee\x3e\x34\x51\x33\xd8\x40\x22\xc2\xdc\x71\x9c\x21\xc0\xcd\xda\x6b\x4f\x83\xd5\xbc\x81\x40\x8f\x7d\xc6\xf0\x7b\x85\x2b\xd1\xf8\x9d\x2f\xac\x2f\x2e\x94\x58\x98\xbd\xfa\x3e\x42\xfe\xc5\xc9\x43\x40\x98\x7b\x93\xa1\x26\xbd\x9b\xb2\x5e\xb7\xc7\x65\x48\xdb\x2d\x07\xf7\x20\x84\x76\x18\xbf\xc9\x80\x79\x0b\xcd\x11\xd2\xc7\x7c\xe2\x31\xa4\xe5\xc6\x00\x90\x86\x1b\x03\x14\xb4\xe2\x35\x33\xbb\x76\x03\x0c\xed\x76\xf1\x86\x26\x84\x4e\x0d\x6a\x48\x3b\x6e\x82\x1a\xa9\xf4\x37\xcc\xe5\xaa\x2b\xd3\xc0\xbb\x5d\x68\x5c\x57\xdc\x7a\x54\x60\xc3\x44\x84\x30\xeb\x80\xdd\xcc\x43\x19\x6f\x1f\xbc\x6b\x05\x90\xea\xa9\xad\x25\xaf\xf5\xe2\x12\x1e\xfe\x02\x4b\x03\xc5\x3c\x50\xdf\x9e\xd5\xd1\x47\x4c\x03\xb0\x67\x43\x41\x63\x35\x6c\x47\x04\xad\xd1\x48\xe8\x1b\x26\xdc\x35\x24\x0a\x63\x55\xd5\x9c\xd0\xb5\x55\x55\x00\x70\x91\x42\x5f\xfd\x4f\xfc\xcc\xab\x6c\x42\x4e\xf0\x73\xa5\x1d\x9c\xc2\x6e\x88\xb0\x1e\xa9\x58\x1f\x21\xc9\xf5\x4d\xa6\x61\x37\x22\xf4\x4d\x4b\xcf\x00\x83\x2d\x3d\x93\x11\xfa\xc6\xde\x04\x07\xe5\xb5\x37\xc1\x29\x40\xfb\x84\x42\x7d\xae\x97\xea\xaa\x2f\xb3\x4d\xb0\x5e\x9a\x4b\xc2\x06\x21\x27\xf4\x8d\x49\x05\xf8\x32\x89\xe0\xb7\x4c\x97\xcd\xa3\x8f\x6b\x9b\x2c\x64\x52\xb0\x52\xdf\x55\x87\xe7\x11\x14\x6c\x0e\x28\x70\x85\xd0\x27\x25\x75\x80\x4d\xed\xee\xa1\x86\x21\x08\x30\x66\x53\x86\x2b\xd0\xd1\x63\x85\x98\x90\x23\xf5\x91\xa9\x81\x1f\x6f\x2e\x41\xd8\x6c\xcf\xf4\x15\x6c\xee\x41\x83\xea\x29\x36\xb5\xb9\x43\xee\x66\x16\x29\xfa\xaa\xf4\x21\x5b\xfb\xf1\x40\x21\xe4\xb5\x76\xa2\x81\xc1\x6d\xbd\x32\x61\xdf\x54\xca\x19\x1e\x0a\x63\x3c\xe2\xa1\xa9\x81\x46\x76\x53\x08\x60\xa1\xad\xb9\x30\xb2\x5d\xf1\x1a\x43\x88\x0d\x5e\x88\x73\xc3\xa0\xe8\xc2\x6c\x30\x80\x52\x7b\xa3\x0b\x0d\xda\xc7\x4c\x45\x86\x0c\xbe\xad\x7d\x3e\x84\x5c\x05\x4f\x7d\x97\x09\x88\xea\x26\x27\x2a\x02\x4f\xf5\x2d\x56\x2e\x5a\x73\x36\x0f\xc1\xf6\x4e\xe5\x1d\xba\x3d\x8f\xf4\x13\xf1\x27\x91\x5c\x65\xe8\x26\x43\x0a\x6e\xb8\x75\x80\xba\x45\xa4\xb5\x44\x61\x74\x43\x8c\x73\xda\x18\x21\xc6\x4f\x45\x1b\xc2\xb3\xae\x0a\xeb\x96\x39\x31\x4f\x77\xf9\x28\xd4\xb6\x07\x76\x35\xb5\xf6\xc4\x2e\xac\xd3\x89\xe2\xa5\x7c\xe6\xf3\xd1\xe6\xc2\xdc\x1b\x17\xa2\x3c\xbc\x5b\xe3\xb0\x09\x8b\x6a\xce\x0a\xa3\xc5\x62\xae\x30\x76\x7c\xed\x82\x45\x00\x98\x7a\xa3\xb7\x3c\xbb\xd8\x77\xcd\xdd\x1f\x71\x94\x61\xa2\xeb\x4a\xc8\xbc\x2a\x8d\x78\x9b\x58\x85\xeb\x0e\x55\x3c\x59\xb9\x30\x6b\xd1\x12\xc3\x46\x18\x05\x37\x0b\x09\x7d\xd3\x1e\x11\xa0\x31\xb5\x67\x6a\x7d\x08\x67\x7a\x3c\x14\xd8\x00\x30\xa6\xac\x37\x65\x6a\x0d\xea\x11\xa1\xff\xd5\xd2\x43\x3d\x42\x2f\x5b\x7a\x88\x13\x7a\xd9\x38\x35\x73\xd9\xee\x07\x31\xa1\xff\xe5\xfa\x01\x23\xf4\xd2\xab\x3f\x18\xe2\xfe\xab\xcd\x37\xa4\xd2\xe6\x7b\x40\xe8\xe5\x86\x49\x2e\xca\xdc\x7a\x35\x86\x99\x42\xba\x7e\x88\xa1\xd0\x5d\xe0\x54\x7f\xd9\xc3\xf1\x73\x40\x54\x72\xf2\x15\xf9\x8a\xfe\xd7\xfb\xd7\xef\xf0\x43\x78\x6e\xe3\x33\x42\xed\xe0\x13\x77\xd5\xcc\x3b\x22\xf4\x7b\x6f\xb3\x13\x0c\x02\xe1\xc3\x7d\x80\x33\x7d\x08\x2a\x86\xc2\x89\xa6\x67\x79\x17\x30\xd6\x19\x69\x0c\xc9\x59\x68\xa6\x68\xc6\x53\x3c\x56\xa0\xb9\x58\xa5\xaf\x40\xeb\x38\x3e\x06\x58\xfb\x85\xcf\x30\xaa\x30\x2a\x64\x3c\xec\x2b\xd8\xf8\x89\x1b\xd0\x78\x7b\xc7\xa1\x42\xd8\xa5\x08\x05\xaa\xd0\x90\xf1\xf7\x6e\x6f\x07\x82\xba\x99\x40\xac\x42\x5a\xb7\x71\xae\x60\xeb\x36\xce\x14\x6c\xdd\xc6\x53\x05\x1b\xb7\xf1\x9e\xe6\xc4\xb9\x8d\xf7\x54\x66\xd2\xb8\x85\x0f\x54\x00\xeb\x46\xae\x59\xb3\x0b\x20\x00\x7a\x5e\xe4\x90\x9f\xef\x55\x8e\xf9\xc9\x5c\x77\x92\xee\x40\x83\xa5\xdb\x12\x86\x18\x9e\x1f\x39\x24\xe8\xf9\x91\xcf\x09\xfd\xde\x81\x11\x14\xde\x73\x2b\x07\x66\xb4\x5b\xf9\x56\x7f\x7e\x9c\x90\x0b\xfc\xb4\x6e\xe5\xa9\x02\x9d\x5b\x39\x37\x08\xed\x56\x3e\x0e\x09\xfd\xde\xdb\x31\xee\x8f\x08\x15\x3e\x0c\xcd\xc2\xdb\x31\x06\x3b\x50\xf8\xf0\x10\x61\xeb\x56\x0e\x2d\x01\xdd\xca\xb7\x10\xcf\x1c\xbf\x00\xd6\xed\xe9\x0b\x00\x9c\x5b\x39\xc4\xcf\x0a\xcf\x6f\x1c\x52\xf0\xfc\xcc\x33\x0d\x0a\x1f\xb6\xee\x46\x20\x04\xce\xcc\x45\x31\xa9\x82\xdc\x49\xb4\x99\x42\x78\x27\xd1\x74\x10\x53\x01\x19\xa1\xdf\x73\x9f\xa4\x15\x6a\x1f\xa6\xdf\x42\xdd\xb6\x07\x33\xef\xef\x9f\x7d\x63\x3f\xf7\x2d\x15\xcf\x1c\x7e\xe7\x9a\x11\x47\x7b\xbf\x6e\x53\xf1\xd2\x22\xe1\xbb\x7b\x42\xbe\xbe\xbb\x27\x14\xa1\xa5\xd6\xa0\x5d\xd8\x33\x84\xc0\xb5\xf3\xe7\x04\x1d\xe0\xfc\x39\x61\xe6\x26\x9c\x3f\x27\x18\x4e\xc2\xf7\xe7\x4c\x09\xfd\x5e\xf9\xb2\x84\x5d\x86\x61\x35\xa0\x22\x56\xe6\xec\x0e\x68\x1a\xf4\x6a\xdb\xf5\xc9\x1f\x1b\x52\xd3\x29\x1f\xba\x56\x7b\x51\x30\xf6\x83\xb6\x70\xac\x79\x87\x99\x0b\xd7\xf2\xb2\x4b\x7b\x7e\xc2\x9e\x63\x7e\x57\x47\x6a\x7a\xe6\x1b\xee\xf6\xb9\xe6\x0f\x2d\x6d\xc7\x37\x1f\xa6\x50\x96\xd6\x76\xaf\xee\xef\xd0\x34\x6b\x86\xef\xe7\xad\xda\xf3\x3c\xde\x9d\xab\x14\x4a\xd8\xa3\x18\xe7\x28\xac\x23\xc0\xef\x78\xe8\xf7\x3c\x42\xcb\x81\x3e\xd5\xa4\x5d\xaf\xfb\xb1\xa6\xb4\xdd\xea\xc7\xa6\x84\x2d\xf7\xf9\x81\x43\xab\x96\xcd\x62\x87\x69\x88\xc8\x94\x6c\xc7\x83\x3e\x35\x11\x76\xb7\x4c\x5a\x14\x6d\x1d\x74\x5b\x68\xdf\x89\xde\x08\x7b\xd7\x8b\xbe\x37\xb7\xa4\x36\x6b\xa9\xa5\xb4\xeb\xae\xd7\xa2\x68\x2d\xc2\x35\xba\x1d\xbc\xdb\xc0\xfb\x15\xa4\xef\x6b\x42\xc7\x71\x91\xd7\xed\xcb\x6e\x40\x2d\x79\xde\xcf\x50\x75\x85\xf3\xcd\x84\xea\x2a\x8c\x2f\x26\xf4\xff\xb6\x73\x72\x64\x70\x1e\x5c\xba\x1b\xa0\x41\x87\x7b\x5e\xc4\x19\x82\xd6\x8b\x18\xa9\xce\x8b\x18\xf4\xab\xe7\x21\x3b\x40\xb0\x69\x04\x41\x31\x9d\x11\x84\xc9\x79\xbe\xb1\x98\x9e\x3f\xab\x86\x3a\x81\xd9\x82\x7f\x32\x77\x3c\x04\xb1\x60\x36\x81\xfa\x30\xab\x47\x63\x28\xfc\xba\xb1\xa7\x01\xe3\xb6\xe7\xcb\x0a\x9d\x74\xe7\x1c\x09\x34\x2f\xdf\x27\x15\xe4\xdc\x36\xbb\xa0\x07\x3b\x9f\x54\x8c\x61\xc6\x05\xd0\x58\x3e\x20\xd0\xcf\xf4\x02\x3f\xec\xd0\x32\xd6\xa0\xf0\x60\xdf\x03\x14\xea\xc9\x6f\xd9\xc0\x83\xbb\x9a\x6e\xac\x20\xee\x5a\xaa\xf0\x6e\xaa\x1b\x29\xd0\xfa\x34\x8c\x53\x68\x64\x9b\x82\x3f\xe5\x05\xbb\xd5\xf7\xe7\x8e\xe7\x20\x9c\x4d\xe1\x79\x79\x42\xbc\x1b\x5d\x22\x4e\xe8\x5b\xdf\xa0\x63\x84\xd6\x3e\x3c\x23\xb4\x9e\xb9\xe2\x00\xd9\x7a\x86\x01\x03\x6f\xbd\x71\x7c\x10\x22\xd5\xc1\x11\xd0\x75\xd8\x14\x68\xaa\x1c\x43\x48\xd4\x6d\xbc\xc0\x70\xe4\xed\xbb\x00\x60\x26\x28\x3d\x48\xc0\x33\x04\x38\x86\x74\xf0\x1c\xe8\xf6\x28\x6c\x1f\xf3\x70\x20\xa6\xeb\xe6\x3e\xc8\xbb\x9d\xfb\x0c\x10\x72\x73\x9f\x31\xc0\x8d\x26\xd4\x05\x8c\x9b\x70\x60\x5e\xc6\xd8\x88\x80\x66\x8c\x0d\x00\xb2\x4a\xea\x89\x3c\xd3\xa0\xae\xd0\xbe\x82\x74\xf1\x06\x90\xad\xef\xae\xd6\x57\xb0\x31\x45\x47\x00\x3a\xeb\x73\xa4\xa9\xbe\x9f\x77\xad\xec\x87\x1b\x36\x84\xef\x55\x3e\x21\x53\xf8\xa8\xaf\xed\xe2\x34\x14\x85\xfb\x97\x9f\x46\x03\x85\x29\x7d\xf0\x46\x0f\x52\x60\x33\xbe\x6d\xcd\x73\x20\x40\x13\xd5\x0d\x11\xd5\xb8\xcb\xa8\x86\x21\x02\xc1\x01\x98\x18\x6f\x5f\x78\x17\xfb\x03\x0f\x4b\xef\x6a\xff\x31\xd0\x2d\x75\x84\x54\x43\x83\x66\xb4\xac\x84\xdc\x73\x8f\x27\xe2\xf7\x9c\xb3\x6b\xed\xb5\x75\x35\x66\x77\xd1\x0b\x13\xd8\x67\x12\x20\xa1\x71\x15\xe8\x18\x2a\x6e\xa9\x2e\x45\xcf\x08\x7d\x9b\x2f\xcc\x45\x4b\x30\xf2\xd7\x0e\x4c\x0d\x38\xd7\x70\xac\xe1\x2b\x1f\xb6\xfb\x0f\x08\x38\x6f\x47\x86\xb0\xd9\xf0\xeb\x2a\xe8\xb2\x01\x9a\x9b\x10\xb9\x82\xcc\x3b\x1c\x21\x82\xe6\x0a\x99\x4c\x41\xe6\xcc\xcd\x1c\x41\xe3\xcb\xd8\x1b\x20\xe8\xa9\xd8\x1e\x22\xbc\x8b\x5f\x80\xc9\xe6\xd9\x59\xbc\x88\x4c\xbd\x2b\xa0\x1b\x0a\xd4\x13\x20\xf7\x34\xa7\x15\xab\x97\xba\x67\xc1\x74\xaa\x5e\x35\x2e\xfc\x83\xdc\x9a\xd5\xb3\xca\x75\xaa\x5d\x05\x9a\x93\xb0\x0c\x01\xb3\xf4\x91\x2a\xc8\x38\x75\xa4\xc6\xd1\xfc\xed\xeb\xe7\xef\x6c\xeb\x81\x40\xd5\x5c\xda\xf6\x83\x70\xe1\xd6\x56\xe7\x0a\xd6\x3a\xb1\x87\xd0\x84\x7c\x4d\xe8\xdb\xf6\x82\x3b\x64\xde\x1e\xa9\x20\xfc\x9a\x99\xd5\xa2\x01\x2a\x35\x84\xdd\x05\x2e\x0a\xe5\xad\xa6\xd6\x97\xf6\x7d\x12\x68\xb5\x08\x9a\x05\xe1\xae\x29\x83\x7b\xd5\x2a\x86\x01\x0b\x41\x13\xa8\x67\x0b\x7a\x69\x9f\xd3\x03\xe6\x2e\xdd\xe6\xed\x5c\x83\xba\x6e\xb0\xb5\x5e\x36\x76\x6a\xe7\x0e\x63\x1a\x94\x09\x65\xf2\x0d\x35\x68\x12\x89\x35\xec\x39\x77\x38\x8c\x4d\x04\x43\x79\xf7\xd3\x81\x5e\xdf\x0b\xef\x5e\x45\x81\x9d\x78\x8f\x07\x4a\x13\xeb\x99\x63\xe3\xc8\x91\x9a\x5e\x27\x6d\xbc\x1f\x29\x36\xc4\xf7\xa5\xcb\xba\xa7\xd9\xd6\xe3\x25\x36\xb5\xcb\x8d\xe3\xb9\xbe\xdc\xf8\xa4\xe6\x8a\xc0\xdb\xf6\xa2\x0c\x74\xc6\xb6\x75\x00\xfd\xa3\xad\x58\xdb\x2d\xbd\x96\x86\x03\x7c\x96\xe4\xad\x79\xc9\x0c\x21\xef\x5d\x33\x0d\xcd\x35\x08\xad\x4a\x0a\x86\x3b\xc4\x8d\x27\xf5\x3c\x82\x5d\xf3\xce\x14\x12\x8d\x75\x3c\x8c\xe1\x9a\x0d\x14\xc5\x00\x60\x1d\xd7\x9b\x99\xd5\x45\xb3\x0c\x61\xeb\x0f\x80\x90\xd9\x6c\x1f\x28\xc8\x06\x46\xad\xb7\x99\xad\x36\x85\x41\x44\x88\x30\x23\x2a\xcc\x41\x01\x34\xf1\x19\x82\x4e\x03\xcd\x14\x5b\x9e\x06\x1a\x23\xc2\xf3\x34\x40\x56\x2d\xac\xb9\xf5\xb7\xf5\x07\x0e\x73\xe9\x98\xde\x75\x25\xb2\xe1\xec\xe3\x1f\x9a\x1d\x85\xba\x6c\x70\x6c\x57\xc2\xc1\xd8\x03\xd8\x3c\x39\x91\xf5\x35\x6c\x8e\x39\xa0\x04\xd2\xe6\x0a\xf4\x48\xe1\x26\xce\xb2\xd9\xa4\xad\x15\x68\x18\x4c\x1a\x5e\x4d\x10\x6c\xaf\x4b\x93\x43\xef\xac\x40\x7b\x89\x34\xdc\x98\x54\x86\xce\xb5\x42\xc1\xcd\x15\x68\xa6\x91\x6e\x05\x7a\xa0\x31\x4d\xfb\x67\x93\xb6\xec\x9d\x4d\xba\x7c\xb7\x64\xde\x02\x44\xad\xd7\x14\xe2\x08\xba\xa9\x0f\xd4\x1b\x3d\x59\x18\xe0\x08\xb7\x59\x47\xb8\x50\x87\xc9\xae\xd5\xc5\x8f\x31\x7e\x77\xf1\x1b\x45\x69\x7c\x3f\x40\x47\xd8\xf7\x2f\x30\x2d\xf7\x84\x13\x4c\x9c\x00\x76\xb5\x82\x12\x77\x8e\x22\x08\x99\x46\x37\x54\x90\x6b\xb4\x3d\x4c\xba\xe1\xdd\xe5\x30\x7e\x93\x51\x31\x97\x66\x5b\x70\x98\x8e\x35\xc2\xe6\xab\x42\x78\xa7\xb3\x50\x1e\x6b\xaf\x43\xa8\x02\xda\x0e\x91\x2a\xd0\xf0\xa6\x82\xbb\x0e\x91\x62\x5d\xad\xdb\x9c\xb9\xf6\x1f\x19\xba\x6d\xc4\x43\x87\xb9\x6c\x94\xbf\xd1\xd4\x67\x1e\xea\xb2\xc1\x8b\x6b\xea\x4a\x88\xae\x70\x3d\x0d\x9b\xa6\x0e\xc9\xfa\xfe\x12\x1a\x36\x0a\x12\x84\xe3\xf9\x4b\x8c\x35\xd5\x3f\xa8\x58\x5f\x97\xce\x24\x85\x26\xf1\x9b\x7e\x21\x38\x9b\x13\xfa\x0e\xdf\xaf\x95\x84\x4a\x26\x16\x66\x6f\x13\xd4\xe7\x3b\xa6\xdd\x5e\x58\x0f\x88\x1a\x80\x6a\xf4\xde\xe6\xec\x11\xfa\xce\x9f\x67\x00\xd5\x87\xfb\x40\x77\xd3\x84\x41\x0c\x74\x0f\xee\x02\xdd\x58\x13\x48\x34\xa6\x04\x00\x99\x7d\x78\x60\x46\xa8\xe4\x85\xd9\x5f\xea\x46\x90\x6e\xcb\x52\x1e\x12\x2a\x5b\x96\x72\x44\xa8\x5c\x72\xc1\xd5\xb5\xcc\x71\xb7\xa7\xe1\x79\x65\x1e\x1a\x00\xd4\xbb\xbd\x28\x7b\xfd\xd1\x08\x23\xd9\xfb\x8f\x0c\xa8\xdf\x41\x0e\xbb\x59\xa4\x31\x57\x3e\x9c\xa7\x1f\xdb\xcf\xd0\x22\xb2\x61\x8d\xb6\x4f\xaa\xf4\xe7\xe6\x92\xbd\xf6\x41\x94\x31\x46\x77\x57\x45\x23\xfc\xd1\x7f\x3c\x57\x2e\x5b\x69\xbf\x78\xfd\xfd\x77\x58\xc9\x1c\x88\xea\x0e\xf8\x9b\x39\x00\xcd\xd7\x33\x3c\x1d\xd6\x35\xa0\xef\x1f\xd9\xd5\xb8\xb6\xdf\x64\x5f\xe3\x7d\xa7\x49\xe0\x03\xa6\xd0\xc6\x02\x64\x58\x05\x88\x51\x21\xc0\x72\x36\x93\xec\x1b\xe8\xc7\x08\x98\xcb\xa4\x90\xe8\x5f\x74\x26\x2b\xae\x57\x8e\x61\xa2\x22\xab\xb5\x79\xb3\xb2\x0b\x73\x25\x59\xad\xdd\xa1\xbb\x08\x61\x9d\x0b\x54\x61\xdb\xc2\x9c\x61\x80\xa6\x85\xd9\x57\x38\xb3\xb3\xcc\x32\x06\x88\xda\xe4\x09\x52\xf6\x77\xf8\xa0\xfd\x08\xa6\x4b\x8b\xf7\xb2\xbe\xfb\xfe\xec\xe9\x33\x07\xb6\x9e\x1a\xed\x3b\x8c\xf7\xca\xe8\xdc\x61\xbd\x07\x46\xbb\x4d\xac\x51\x21\xb3\x9e\xc3\x9b\xf5\xa6\xd4\xa1\xfc\x67\x48\xc7\x2d\xb4\x4d\x42\xb1\x61\x3a\x53\x9f\xab\xf8\xbc\x91\x9a\x9b\x54\xb0\x2e\xb4\x3f\x91\xaf\xdd\x8b\x69\xaa\xff\x01\xca\x86\x51\x99\xd5\xc6\xb4\xcf\x10\x94\xf6\xf0\x6f\x17\x23\xac\xf9\x6f\x66\xe9\xbb\xcb\x41\x5a\x6d\x4b\x0e\x44\xd1\xb6\xe4\xc6\x84\xbe\x73\xd3\xfb\x01\x86\x30\x4a\x01\xd4\x92\x9b\xbc\xc2\x30\x28\xdd\xec\xb5\x3f\x83\x1c\xdc\x49\xe1\x01\xc6\xf5\x60\x68\x6e\xd7\xf9\x8d\x39\xcb\x01\x05\xbf\xae\x96\x9c\x65\xed\x63\x38\xdc\x52\x76\x0e\xdd\x84\x84\xbe\x77\xee\x66\x8c\xd0\x8d\x73\x37\x43\xc8\x2a\xe6\x08\x42\x5a\x68\x4e\xe8\xc6\x69\x69\x4d\xab\xdc\x5d\x98\x63\x42\xdf\xcf\xdc\xdd\x5c\x9c\xd0\x8d\x03\xfb\x1c\xa9\xf6\x86\x60\x60\x7d\xe3\xc3\x19\xa1\xef\xad\x6b\xdb\x8c\xd0\x8d\x75\x6d\x9b\x01\xc5\x08\xb3\x0b\x14\x23\x4b\x00\xbc\xa7\x8a\xfa\x84\xbe\xf7\x9c\xd7\x86\x21\x90\x3d\x38\x02\xd8\xad\x5c\x01\x83\xfe\x46\x06\x70\xd8\x52\xc8\x23\x08\xd2\x54\xc8\x31\xa1\xef\x9d\x13\xda\x98\xd0\x8d\x73\x42\x03\xc8\x6d\x6d\x00\x77\xee\xcd\x21\xe8\x33\x1b\x77\xea\x0b\x2c\x91\x8d\x77\x35\x05\xf0\xea\xbf\x88\x93\x1a\xd8\x9e\x97\x57\x18\xf7\xf0\x05\xa4\xe7\xdd\x29\x31\x22\xf4\xbd\xf3\x37\x03\xb3\x69\xe3\x81\x20\x50\xe5\x3b\xc4\x20\x60\x99\x69\x6f\xa1\x5f\x0c\xe0\x79\x0a\xcd\x3d\x9c\x73\x15\xea\x6b\xec\xae\xaf\x10\xd4\x9c\x9b\x28\x81\x16\x40\xd0\x9d\xef\x1d\x81\x64\xdd\x1d\x7e\xc3\x98\xd0\x8d\x07\x42\x84\xb6\xa6\x83\xc2\xb6\x35\xdd\x80\x50\xbd\xc4\xe2\xde\x70\x81\xa4\xd6\xac\xb9\xec\xb2\xb3\x0e\xf3\xde\x0f\x91\xb9\x10\xad\x25\x22\x68\x3f\x60\x2b\x36\x9f\x84\x81\x72\xb7\xdf\x9a\x51\xc8\x56\xc8\x0c\x91\xbb\xfb\x65\x50\xd1\xeb\x9d\x67\x5e\xb0\x39\xac\x77\x1f\x79\xc1\x76\xb1\x6e\x8a\x6e\xbd\xde\xbd\xbc\x61\xa0\xf1\x3b\xab\x51\x43\x88\x6f\xdd\x10\x90\x27\x03\x65\xb1\xa2\x2d\x1d\xf8\xde\x9f\x0d\xb2\xbe\xa2\x5b\x84\x8a\xde\xda\x71\x31\x38\x3d\x4e\x61\x1c\x5d\x07\x66\x13\x07\xba\x8d\xff\x66\x4b\x66\x60\xdb\x98\x15\xc6\x35\x66\x28\xa6\xdd\xa4\x88\x50\x66\x1e\x08\xb2\x72\x0b\xd9\xd0\xcd\xde\xb7\x6f\x06\x84\xfe\xd3\x56\xc3\xd0\x07\xbc\x87\x5a\x40\xef\x79\xf7\x27\x0e\x80\x4b\x1f\x86\xde\xeb\x56\xcb\xfb\x0a\x32\xcb\xe3\x3d\x42\x37\x4e\x33\x42\x09\xdf\x1b\xc7\x3c\x68\xab\xc6\x31\x0f\xbe\x1b\x2f\xba\x0c\x09\xbd\x62\xe5\x42\x98\xcd\x85\x14\x60\xb1\x33\x09\xbf\x62\xc2\xbb\x8b\x10\x58\xbd\x62\xa2\xac\xc0\x60\xd2\x3e\xe3\xa1\x0a\xd5\x98\xa5\x03\x6c\xc0\x81\x02\x5b\x4e\x2e\x57\x4e\x7d\x43\x78\xa7\xbe\x55\x6c\xbb\x7f\x0a\xb6\xc7\x15\x13\xfe\xba\x64\xac\x30\xed\x99\xaf\x59\x5b\xf2\x69\x76\x0a\xdc\x20\xb6\xe6\x11\xfb\x68\x76\x42\xe1\x11\x3d\x4b\x35\x53\x5c\xed\x7a\xca\xcf\xe2\x06\xc1\x73\x89\x87\xb9\xe0\x95\xd1\x0f\x8c\x8f\x08\xfd\xc1\x5a\x72\x7c\xa6\x68\xe6\x8d\xbd\x31\xa1\x3f\x58\xd7\x43\x48\xd1\xba\x1e\x02\xe0\x79\xb2\x03\xe8\x39\xb2\x43\xa2\x1e\x15\x92\xf1\xa8\x33\x4d\xd5\xf3\x70\x0e\x15\xc3\xb9\x61\x22\x9e\xcd\x10\x56\x00\x98\x84\x3f\xf8\x4f\xc7\x5f\x71\x6e\x6d\x24\x06\xa0\xbd\xd9\x39\xe6\x1c\x60\x75\xff\xf1\x1d\x44\xf3\xae\x42\xc6\x3c\xa0\x8d\x29\x82\x74\xe8\xdd\xd3\x3f\x5d\x87\x54\x47\xb5\xef\x1c\xe2\x2d\x5f\x33\xc1\xcc\xd6\xe1\xb0\x3f\x72\x24\xdf\x46\x0e\x11\xbd\x73\xd4\x9c\x11\xfa\x43\x6b\x00\x1d\x13\x7a\xd5\x1a\x40\xa1\x82\xdc\xc9\x59\xac\x49\xef\x54\x89\x3d\x20\x72\xe5\x1d\xe7\xb0\x27\x33\x7e\x68\x8f\x13\xd0\xc4\xdb\xe3\x04\x74\xb9\xa6\x93\xd8\x95\x77\x77\x0c\x14\xbf\xad\x3c\x40\xf0\x6d\xe5\x01\xd5\xd4\x58\x90\xb2\x4d\xb4\xb1\x2e\xe5\x61\xbd\xb9\x7a\x03\xcb\xdb\x3d\xe0\x07\xbf\x6d\x41\x2d\xff\x96\x2f\x7e\x63\x0b\xad\x21\x18\xa1\x3f\xba\x7d\xa7\x61\x8f\xd0\x6b\x0f\xec\x13\x7a\xcd\x33\xdb\xa4\xfb\x73\x84\xcd\xa9\x8a\x78\x48\xe8\x8f\xde\x53\x9a\xa1\xa6\x9a\x26\x35\x06\x38\x37\xee\xb2\xf8\x3e\xcf\x8f\xad\x1a\x63\x84\x5e\xb7\x6a\xac\x47\xe8\x8f\x6d\xc1\x73\x42\xaf\xdb\x82\x1f\x11\x7a\xed\xa5\x7c\x2d\x5c\x73\xb9\x16\x5c\xdf\x0a\xab\xe0\x1f\xdb\x55\x10\x13\x7a\xdd\xae\x82\x94\xd0\x1b\xbb\x14\x0e\xfa\xe8\xc6\xbe\xd3\xd3\xe7\x73\x00\x4d\x0b\x01\xa3\xe3\xc6\x7b\x85\x2b\x23\xf4\xa7\x56\xb9\x66\x84\xde\xb4\xca\xd5\x27\xf4\x66\xe9\x9e\xd3\x1a\x02\x78\x66\x41\x46\xe8\x4f\x5a\xb9\x82\x35\x7d\x63\x5e\x18\x82\xef\xc2\xc5\x82\x44\x0a\x17\x6b\x44\xe8\x8d\xb9\xfd\x03\x2f\x99\xba\x71\x27\xf6\x81\x05\x7b\x7e\x82\x41\x4b\xf8\xa9\x2d\x56\x28\x55\x5b\xac\x63\xc4\xd9\x79\x4b\x18\x01\xec\xe6\x29\x21\x08\xc6\x7b\x15\x6c\x00\xa0\x63\x68\x4c\xe8\x4f\x6d\x61\x83\xb4\xda\xc2\xce\x00\x67\x37\x15\x58\x08\xc9\x6c\xbc\x5c\x7b\x00\x3b\x09\x43\x12\x57\xbe\xe6\xba\xb9\x6e\xb6\xbb\x9f\xdd\x14\x23\x23\xf4\xd6\x4d\x31\x32\x42\x7f\x3e\xb3\xf6\xfc\x1c\x69\xc6\xa0\x9f\x13\xfa\xb3\xd7\xd8\x07\x84\xde\x7a\xe0\x10\xa8\x26\xe2\x0c\x68\x26\x1e\x00\xfa\xbd\xd8\x3e\xa1\x3f\xb7\xaa\x3e\x25\xf4\xb6\x55\xf5\x03\x42\x7f\xb6\xf7\xa8\x87\x43\x42\x6f\xed\x45\xea\x7d\xc8\xa6\x7d\xe0\x3e\x24\xf4\xb6\x5d\x2f\x8c\xd0\x9f\xdb\x92\xed\x11\x7a\xdb\x96\x2c\x27\xf4\x67\x37\x81\xe1\x84\xde\xba\x19\x0c\x42\xda\x76\x80\xc2\xab\x6f\x28\xec\x88\xd0\x7f\x7b\x7b\xe7\xc3\x31\xa1\xbf\xf9\x30\x23\xf4\xdf\xde\x32\xd5\x30\x23\xf4\x37\x1f\xe6\x40\x37\x83\xdb\x10\x88\x66\x70\x1b\x12\xfa\x6f\x7b\xd7\xdc\x70\x46\xe8\x6f\x0e\x4a\x09\xfd\x8d\xbb\xfb\x73\x61\x7c\xfa\x37\x17\xd5\x8f\x79\x26\x97\xad\x5b\x45\xfe\xed\xd6\x97\x06\x10\xcb\x2e\x2f\x01\xd4\x12\x37\x64\x69\x1f\x6d\x87\x34\xed\x04\x18\xc6\xa8\xdf\xec\xfc\x17\xea\xc5\x7f\xe3\x2e\x82\xb6\xf3\x5b\x5b\xf0\x90\xb9\x75\xff\x88\x7b\x84\xfe\xbb\x5d\x0d\x7d\x42\x7f\x6b\x57\xc3\x9c\xd0\xdf\xae\x7f\xd5\xfc\x43\xb2\xd7\xa5\x81\x52\xb2\xdd\xd2\x4f\xdb\x0b\x1a\x77\x27\xe7\xf3\x4d\x89\x5b\x4e\x1d\x4e\x25\x2d\x83\x4f\xf2\x84\xdf\xac\x2b\x21\xeb\xe4\xd3\x99\xbb\xbb\x3f\x22\x94\xb9\xbb\xfb\x23\x42\xcf\xec\x7d\xfd\x31\xa1\xcc\xde\xd7\x8f\x80\xf7\x9e\xec\x99\x3e\x21\x75\x93\x0e\x08\x65\xfa\x7c\xd4\x0d\x18\x09\x67\xee\x62\xfd\x90\x50\xe6\x2e\xd6\x07\x68\xb5\x9e\x90\x43\x42\xcf\x5e\xbd\x51\xff\xda\x38\xbe\x01\x0b\x9d\x19\x80\xf7\x09\x3d\xb3\xc7\x4d\x40\x27\x32\x0b\xf1\x2e\xa1\x67\xe6\x3e\xf0\x1e\xa1\xcc\xdc\x07\xde\x23\x74\x26\xf4\x59\x92\x1b\x36\x20\xf4\x89\x7d\xcc\x1f\x9f\xc1\xb7\x10\x1f\xb6\xde\xf9\x6f\xbc\xe3\x7f\xdf\x03\xe0\x8d\x87\x9c\xbd\xd7\x80\x9b\xef\xc9\x7e\xee\x19\xc3\xfb\x9f\x25\xfc\xdc\xc3\x7e\x7f\xec\xd9\xb1\x3d\x0f\x4a\x35\x1e\x90\x72\x0f\x3e\x35\xdf\x52\xf9\xdc\x63\x0e\xf7\x3f\xe0\xd0\x78\x7c\xe1\xb3\xef\x29\x34\xae\xa5\xbf\xef\x3a\xf7\xe6\x05\xd7\x8d\xab\xe3\x1a\x57\xaa\xb5\xee\xfd\xf2\xee\xf3\x6a\x5c\xeb\xe4\x5d\x1e\xf2\x99\xc3\xac\x9f\x3b\xb0\x78\xff\x11\xc5\xcf\x1e\xdf\xbb\xe7\x88\xd7\xe7\x0e\x5e\x7d\xee\xa8\xd5\x7d\x07\xa7\x1a\xe7\x9a\x9a\x27\x59\xfc\x23\x25\x7b\xdc\xdb\x1b\x0e\xe3\x7b\x5d\x6d\x1b\xee\x34\xce\xfb\xe3\x8b\x36\xb0\x1a\x3b\x1a\x9f\x59\xf9\xf6\x56\x9e\x3f\xb7\x8c\xf7\x99\xc5\xb4\xcf\x2d\x5f\x79\x8b\x44\xf7\xcc\x6f\x3f\x37\xb0\x7b\x83\xb0\x37\xac\x19\xe5\xda\xfb\xac\x72\x35\x3a\x4e\x5d\x5a\xf6\x95\xed\x6a\xba\x45\x9b\xfa\x30\x89\xf5\x77\x13\xbb\x62\xe2\x40\x24\xaf\x67\xbf\xf2\x54\x9e\xa4\x78\xe3\xc7\xdd\x9d\x0b\xa4\x02\xc8\xc4\x62\x82\x4f\xdb\xa9\xe0\x72\x23\xca\x03\x79\xb2\x16\x95\xac\xe4\xed\x9a\x27\x9c\x96\xfc\xfa\x40\x6e\x69\x65\xd2\xfa\xc8\x6f\xeb\x7d\x29\x9d\x5f\x4c\xe7\x95\xe8\x00\x50\x1e\xe4\xe5\x01\x0f\x74\x04\x9b\xd8\xc9\x92\xd5\xaf\xaf\xcb\x37\xa2\x5a\x73\x21\x6f\x4f\x52\x56\x14\x1d\x4e\xcb\xe0\xf0\x50\x9e\xac\x37\xf5\xb2\x53\x06\x86\x87\x72\x4b\xf3\xe4\xb9\xce\xc4\x4b\x62\x96\x97\xd9\xbe\xdc\xe5\x32\xaf\x4d\x5c\xaf\x4c\xb6\x44\x6c\xbd\x2e\x6e\x3b\x9c\x32\xb1\xd8\xac\x78\x29\xeb\x60\xbb\x9d\x9a\x80\x07\xac\x13\x7c\x82\x14\x4e\x7e\xe1\x57\x40\x3c\x3c\xfc\x22\xde\x21\x0a\x25\x3a\x0e\x09\xee\xee\x3a\x7e\x22\x89\xe8\x94\x9b\xa2\x08\xa8\x8f\x7c\x52\x6d\x4a\x99\x84\x06\xb9\x62\x37\xdf\xe6\xb5\xe4\x25\x17\x75\xb2\x8b\xba\xbb\xbb\xaa\xf2\xec\x20\xdc\xba\xa6\xc1\x28\x3b\x79\x06\x49\x3d\x5b\xe5\x52\x72\x81\x08\xc7\xa6\xc9\x5b\xc5\x6b\x92\x1a\x99\xa9\x00\x53\x90\x5e\x4d\x8b\x24\x0a\xa7\x52\xdc\xa2\x30\x37\xc9\xa7\xed\x54\x97\x3f\xe3\xf3\xbc\xe4\xa6\xd4\x56\x2c\x4d\x74\x67\x43\xc9\x0d\xa1\x9f\xae\x58\xb1\xe1\x93\x70\x1b\xd0\x3a\x09\x93\x24\xd9\x9c\xdc\x6c\x53\x26\xd3\x65\xe7\x3a\xf8\x54\x27\x0f\xa2\xad\x15\xf8\x1a\x6a\x4e\x57\x8e\xe2\x24\x49\x92\x16\x8b\xa7\x0c\xf2\x61\x9b\x42\xbe\xf2\xb0\x93\x56\x28\x97\xe6\xdc\x34\xfd\x7c\xde\x91\x01\x57\x55\x54\x06\x53\x5e\xd4\xfc\xc0\x34\x4d\x91\xf0\x93\x82\x97\x0b\xb9\xa4\x55\xf2\x4b\x87\x53\x11\xd0\x3c\x09\xa7\xf9\x43\x31\x3d\x3a\xca\x83\xea\x3c\xbf\x30\x31\x5d\xd2\x99\x4a\x9a\x8a\x56\xe2\x54\xb4\x92\xaf\x5c\xf2\x39\x26\x5f\x05\x94\x25\xe1\x94\x3d\xac\xa6\x47\x47\x2c\xc8\xcf\xd9\x85\x8b\xeb\x32\x58\x9a\x0c\x68\xb5\x93\x05\xad\x5a\x99\xe4\x2e\x13\x86\x99\xe4\x28\xf1\x69\xfd\x30\x9f\x1e\x1d\xd5\x01\x3b\xaf\x2f\xfc\xd8\x2e\x9b\x99\xcb\x86\xe6\x7b\x32\xa2\x79\x2b\x2b\xe6\xb2\xaa\x31\x2b\x16\xd0\x34\x09\xa7\xe9\x43\x36\x3d\x3a\x4a\x83\xfa\x3c\xbd\x68\xc6\x77\x99\xad\x76\x84\xa6\x3a\xe1\x9f\x94\x9a\x8b\xec\xb2\x78\xa5\xb3\xa8\x94\x1a\xc8\x29\xa3\xf5\x34\x9f\x77\x88\x09\x41\x1e\x24\x09\x34\xfe\x6a\x7e\x50\x06\x72\x29\xaa\xeb\x03\xd0\x67\xef\x6e\xd7\xfc\x99\x10\x95\xe8\x7c\x45\x0a\xdd\x92\xc8\x81\xd1\x0d\x07\xab\x4d\x2d\x0f\x66\xfc\x80\x59\x55\xf2\x55\x00\xc9\x76\x40\x1c\xba\x87\x05\xa7\x1d\x76\x52\xf2\x6b\xd3\x10\x0f\x0f\x3b\xfc\x84\xaf\x72\xd9\x21\x1e\x96\x00\x7b\x27\x26\x8b\x53\xf7\x39\x29\xa1\x88\x2e\x35\x5a\x27\xec\x5c\x5e\x04\x13\x3f\x0f\xab\x41\xf8\x8e\xfa\xa8\x51\xa8\xae\x9c\x89\x2d\x67\x7d\xaa\x92\x4a\xaa\xd3\xf3\x92\xd6\x17\x93\xf3\x9a\x96\x17\x93\xea\xb4\x3e\xd9\x94\xf5\x32\x9f\xcb\x4e\x19\x4c\x6a\xa3\x70\xe9\x83\xfa\xe4\x9a\x89\x92\x67\x87\x87\x9d\x3c\x81\x8e\x19\x1c\x1e\xe6\x8f\xc2\xc3\xc3\x5a\x57\xca\xa3\x3c\xf8\x64\x02\x25\x0f\x94\xce\x28\x12\x90\xa3\x92\x21\x79\x53\xd5\xf8\xaa\xd1\x81\xaf\x98\x0e\x56\x7c\x55\x89\xdb\x83\x82\xb3\x8f\x07\x19\x97\x3c\x95\x3c\x3b\x39\x20\x47\x26\xd9\xa3\xaf\x0e\xc8\x57\x47\x6f\x25\x58\xec\x1d\x19\x1c\x7d\x45\x0e\x8c\x74\xea\x03\x96\x65\x10\xfa\x7d\xcd\x0f\xb8\x4a\xef\xa4\xe6\x0d\x45\xd0\x09\x0e\x64\x75\x90\x97\x30\xb6\xd5\xfc\xa0\xc8\x57\xb9\x3c\xf9\x2a\x98\x16\x27\x25\x5b\xf1\x84\xf8\x61\x9f\xdd\xa4\x9c\x67\x3c\xfb\x91\x89\x32\x2f\x17\x84\x16\x27\x3a\xd5\x84\xd3\xe2\x04\x47\x3a\x49\x8b\x93\x14\xc5\x6b\x18\xa4\xa4\x42\x75\x07\xc2\xed\x90\x4d\xa9\xb4\x5e\xe6\xc9\x3a\xad\xca\xba\x2a\xf8\xa9\x47\x9c\xa4\x1d\x8d\x05\x39\xea\x4f\x14\x5e\x13\xea\x90\xff\xac\x27\x07\xff\x59\x03\x2f\xc0\x30\x2d\x4e\x56\xbc\xae\xd9\x82\x07\xdb\x2d\xf6\x0e\x5d\x8d\x25\x3d\x3a\x6a\xd6\xbf\x19\xe7\xb8\xeb\x08\x8b\x0e\xb6\x87\x07\x38\x84\xcc\x73\xc1\xb3\xa0\xbe\xce\x41\xf5\x22\x46\xf9\x82\x9c\x08\xbe\xaa\xae\xb8\x91\x8a\x26\xdd\xae\xb9\x1a\x8c\xae\x05\x5b\x3f\x2f\xf5\xc8\x84\x69\x24\x0f\x42\x37\x60\x6a\xa1\x04\x9f\x52\x10\x77\x38\x31\x43\x2b\x84\x36\xf5\xe6\x86\x45\x9d\x65\x30\xc5\xd0\xd1\x97\x85\x76\x99\x9d\x87\x17\x3a\x6a\xfc\x27\xa2\x7a\x40\x64\xd2\xe9\xfe\xd5\x74\x3c\x20\xbe\x08\xa6\x7a\x68\x9a\x18\x1d\xc6\xb1\x43\x9c\x09\xc1\x6e\x3b\x3b\x32\xa3\x32\x09\xa7\xf2\xa1\xd1\x72\xd3\xa3\x23\x19\x70\xa8\x5c\x97\xa6\xbc\x98\x36\x39\x53\xfa\xce\x67\x0d\x5a\x86\xad\xf1\xdb\xa6\xa1\xf7\x09\x2b\x6c\xf2\x20\xa2\xaa\x1a\x27\xda\x00\xd0\x5e\x40\x9c\x42\x3d\x4f\x24\x75\xfa\x07\x4c\xba\x5c\x95\x7f\x01\x1a\x59\x8b\xa7\xb2\x1c\x24\x25\x15\xba\x51\x24\x15\xad\x5c\xd6\x57\xcd\xac\x6d\xe3\x04\x15\xf9\x40\x04\x2a\xa1\xf3\x8b\xa9\x52\xed\x02\x8a\x66\x12\x3f\xdd\xa7\xb1\xaa\xd3\xf2\xf4\xdc\xe5\x7b\x77\x57\x5d\x4c\xce\xab\x8b\x49\x79\xea\xdb\x79\x46\xd0\xd2\x13\x34\xb7\x02\x2e\x93\x70\x5a\x3e\x94\x4e\xc0\x65\x20\xcf\xcb\x8b\x84\x9f\x97\x17\x5e\xca\x00\x5a\x33\x77\xdb\xa9\x82\xc9\x2f\x9d\x8a\x56\x26\x99\xc9\xf9\x85\x2b\xe6\x59\xd3\xba\xf4\x4b\x29\x15\xa1\x4c\xe4\x39\xbf\x98\xde\xa3\x88\x4b\x2d\x89\x83\x08\x42\x58\xa8\xd4\x99\x6d\x35\x1c\xba\x1c\x61\xe8\x93\xae\xa4\xa5\x57\x52\x19\x50\x91\x84\x53\xf1\x50\x4e\x8f\x8e\x44\x50\x9e\x0b\x28\x9b\xb8\x70\xf6\x72\x7d\xba\xdf\x38\x63\x94\xec\x31\xa3\x08\xfd\xc4\xf1\xce\x23\x36\x2b\xf8\xe4\x41\x48\xa1\x95\xec\x1a\xce\xc5\x96\xd6\x3e\x81\xab\x61\xa7\xdc\xac\x66\x5c\x78\x83\x2b\xbf\xbb\xe3\x0f\xc3\xbb\x3b\xfe\x20\x49\xf8\x3d\x03\xed\x3e\x2e\xbc\xa1\x76\x5d\xd5\xb9\xcc\xaf\xf8\x81\x4a\x1c\x34\x79\xc2\xb7\xdb\x60\xb2\xd7\x0c\x4c\x8a\x86\x6d\xdb\x1a\x1b\x92\x2f\x66\x38\xaf\xbf\x63\xdf\xc1\x98\xb7\x9f\xe7\x72\xaf\x55\xb0\xcb\xaa\xaf\x5b\x9a\x76\xb6\x52\xae\xdb\x06\xb7\x8b\xfb\xb8\xb5\x72\x5f\x63\xc7\x0f\x9a\xd1\x60\xc8\x4a\x76\xa6\x3e\xc6\x9c\x03\xdb\x27\x21\x1c\x18\x87\x46\xc8\xa1\xd1\xb1\x46\xcb\x0d\xea\xa4\x3e\x3c\x04\x8b\x22\x49\xd8\x09\x86\x54\x76\x18\xf4\xdb\x5a\xb7\xcf\x07\xd8\x5a\x95\x79\xd1\xd6\x63\x8f\xa2\xc3\xc3\x8e\x4c\x1a\xda\x95\xca\x83\xbc\xac\x25\x2b\x53\x10\x2b\xca\x4d\xcb\x52\xa2\x02\x48\x3d\x43\xe1\xab\xf7\xe5\x92\x95\x59\xc1\xb3\x03\xcd\xe8\x01\x72\x76\x72\xd0\xf9\xea\x48\x1e\x91\x80\x04\x53\x15\x37\x3d\x49\xab\x52\xf2\x1b\x99\x48\x9a\x6e\x81\xbf\x4e\x99\xb0\x73\x7e\x11\x38\x36\x95\x19\xb2\xb7\xe7\x4d\xf5\xe0\x27\x92\x7b\x86\xaf\x68\x32\xef\x94\xb4\xc0\xba\x09\xa6\x33\xc1\xd9\x47\x33\xdc\x64\x96\xd0\x1a\x46\xbc\x50\xdd\xc9\x72\x7f\xa8\xd6\x20\xe1\x45\xe9\x4d\x66\x5f\x10\xc5\x03\xba\x36\xbe\x3f\xd4\x54\x9e\x4e\x10\xc7\x11\x4c\x5e\x22\x9c\xbc\xe4\x47\x47\x30\x79\x39\x8e\xfc\x41\x25\xbf\x98\xae\x5c\xae\x55\xa0\x75\xce\x83\xb0\xd9\xb0\x58\x96\x99\xc6\x98\xf8\xeb\x08\xb6\x39\xbe\x52\x53\x5d\x50\xfb\x0f\xa2\x56\xab\xac\xca\xe4\x9e\xb4\x1a\xc1\xd6\x82\xaf\x79\xf9\x07\xf2\x09\x77\xf2\x49\x79\x2b\xd6\x3d\x96\xbe\xfc\x8b\x96\xbe\xdf\x99\x31\xab\x5b\xcb\x56\x10\xec\xe9\xce\xba\x68\xaf\xcb\x94\xdf\x53\xbc\xff\x03\x8c\xb6\xe4\xfb\xfb\x5c\x37\x8d\xc1\x16\xc3\x38\xfc\x18\xad\x72\xdf\x8c\xea\xaf\xb2\x8f\xdd\xba\x6a\xaa\xa8\xc0\x2b\xd3\x54\xf7\xfb\xca\xeb\xf7\x96\x50\x42\x77\xbf\xbb\x73\x33\x2a\x80\x83\x30\x49\x92\xe3\xe3\x9d\x05\x97\xd3\x7d\xeb\x32\x93\x4e\xc6\x0b\x2e\xf9\x01\xa4\x4f\xab\x96\x40\x0e\x0f\x31\x8e\x9a\xd1\x35\x49\x84\x72\x6f\x52\x77\x77\x27\x83\xc0\xea\xd1\xfd\x33\x4f\x1c\xd2\xf3\xe4\x38\xa2\x2c\x31\xe3\xff\x71\x34\x65\x8f\x60\x92\x7b\x7c\x1c\x40\x79\xce\xd9\x85\x2e\x12\xcc\x76\x1b\xa5\xfa\x54\x27\x0d\x24\xcd\x13\xa6\x74\x03\xa8\xc6\xfc\x61\xd8\x10\x0e\xc8\x20\x3f\x2d\x4f\xd4\x5c\x2f\x98\x34\x6b\xd6\x19\x17\x92\x8a\xa4\x3c\x8a\xa8\x9b\x7d\x4f\xc5\xc3\x6a\x5a\x1e\x25\x11\x15\x47\x49\x14\x70\x65\x40\x89\x8b\x29\x3f\x59\x57\xeb\x4e\xb0\xed\x94\x34\x0f\x68\x94\x24\xb6\x14\x87\x87\x1d\x10\x5f\x52\x82\xc5\xfe\x47\x85\x58\x83\xec\xb6\x1e\xef\xfb\x5a\xe8\x59\x51\xec\x1f\xd7\xcd\xe8\x97\x9b\x76\xf2\xf9\x86\x54\xb6\x78\x33\x01\x40\x5c\xed\x51\xe2\xf4\xcb\x17\xf2\x26\xe5\x39\xbf\x38\x3c\xec\xfc\xa1\x96\xa7\x1b\x1e\x44\x55\xa9\x02\x87\xfb\x18\x51\xa5\x84\x91\xbd\xea\x94\xc1\x54\x35\xa3\x70\x9a\x3f\xac\x9d\xa5\x9b\x07\x6d\xd1\x3e\x48\x92\x0e\x4b\x40\xfd\x07\xba\x06\x76\x45\xd9\x61\x4d\xfd\xb1\x27\x44\x3b\xd9\xa6\x00\x3e\x27\x15\xa5\x6e\xf6\xdb\xc5\x1d\x99\x60\xb9\x03\x2f\x5b\x4f\x6b\x49\xd7\x97\x64\xa0\xca\x2b\x5d\x8f\xc9\xa1\xc7\xe4\xc7\xc7\xf7\x45\x86\x22\x4f\xef\x6d\x50\xc5\xde\x76\x64\x96\x21\x8d\xba\xdc\x19\x79\x04\xbb\xde\xdf\x02\x77\x62\xaa\xb1\xd1\x64\xa3\x84\xb1\x6f\xa0\xdb\x67\xb4\xf0\x66\xbc\xd3\x16\xdc\x91\xc1\xe4\xcc\x2c\x99\xcb\x60\x7f\xc1\x54\x8e\x67\x4d\xab\x11\x2a\xe6\x3b\xb6\xe2\xfb\xec\xcc\x9d\xba\x7b\x14\x9e\x7e\xcf\xe7\x05\xcc\x23\xaa\xeb\xf2\x5f\xfc\xb6\x6e\x74\x05\x9c\x21\xe9\x4d\x87\xc1\x7d\x9b\x0e\x10\x41\xb7\xbb\x5f\x7e\xe1\x37\x92\x97\x99\xbf\x63\xa0\x82\x79\x63\x39\x46\x55\x0c\x75\xb8\xd9\x66\xa8\xb9\x7c\x63\xca\xf0\x7a\x7e\x77\xf7\xe9\x97\x5f\xb0\x4c\xbf\xfc\x02\x2c\x78\x26\x27\xda\x42\x87\x87\x4d\x31\xf3\x13\x1b\x3c\x91\x5b\x7f\xc3\xa0\xa1\x03\x0f\xf2\x12\x46\xb1\xd6\xe2\x7e\xa7\x0c\x0e\x0f\x3b\xa8\xfd\x60\x0e\x19\x6c\x03\x64\x71\xbb\xb3\xbf\x80\x8c\xdb\xd9\x9b\x30\x9b\x08\x69\x55\xd6\x52\x6c\x52\x59\x89\x44\x6e\x39\x06\xa3\xfe\xa6\x8a\x32\xc1\x93\xf2\xb4\xb1\x3d\xd3\x29\x83\x49\x47\xf8\xc1\xdc\x37\xee\xc2\x88\x60\xbb\xed\x04\xb4\x6a\x0a\x38\x5f\xad\x2b\x21\x9f\x2a\x1b\xb1\xb9\x35\x62\xd6\x89\x0e\x0f\x41\x1e\xbc\x7e\x55\x65\x9b\x82\x9f\xf2\xc9\x27\x63\x52\xf2\xed\x3d\x4b\xfd\x9d\x92\x12\x17\xc5\x2e\xee\x3f\x08\xb7\xc1\x54\xad\x41\x37\xe6\xe6\x46\x06\x12\xa7\xc6\x66\x41\x5f\xe2\x74\xe1\x93\x8e\x52\x26\xdc\xdb\x36\xe9\xec\x9d\xdb\x53\x91\x9c\x5f\xd0\x2a\x89\xa6\xd5\xc3\xb6\x2e\x9c\x56\x47\x47\x81\x38\xaf\x9a\x26\x6e\x75\x31\x2d\x55\x1b\xd7\x4b\x9a\xe7\xfc\x02\x6a\x20\x65\xb2\x23\x82\x80\x96\x27\xbf\xa4\xb3\x5a\xe9\x68\x99\x28\x28\x80\x30\x7a\x7d\x85\x8a\x60\x1b\x04\x77\x77\xfe\x06\x92\x0a\x95\x48\x6a\x52\x06\xa6\x4a\x33\x50\x89\x8e\xa4\xbc\x51\xa1\x27\x55\x29\x78\xcd\x1b\xbb\x69\x6a\xe0\xb3\xb1\x55\x65\xa5\xb3\xda\x84\x35\xf5\xe7\xa1\x3a\xc1\xb6\x91\xaa\xe0\xb5\x64\xa2\x91\x2a\xf6\x9c\xe9\x97\x25\x36\x75\x2b\x26\xe1\x54\x3e\xf4\x18\x32\x02\x95\x47\x47\x76\x21\xc3\x51\xcf\xe5\x05\x58\x06\xe7\x21\x54\x44\x79\x52\x17\x79\xca\x3b\x51\xe0\x72\x3d\x17\x20\x4c\x9e\x58\x44\x70\x2e\x2e\xec\x0e\x5b\x15\x6c\xb7\x54\x6e\x3b\x55\x87\x77\xc8\xc9\xd7\xaf\x36\x85\xcc\xd7\x05\xbf\x79\x81\x33\x3f\x41\x82\xc0\xcc\xe7\x83\x69\x79\xf2\xa4\x2a\x40\xd9\xe4\xe5\x42\xd3\x93\x7c\x4b\x3f\xed\x8b\x37\x89\x47\xa0\x75\x86\xff\x9f\xd6\xf9\x7f\x83\xd6\xa1\xf9\xbe\xf4\xde\x4a\x26\x9a\x89\xe5\xf3\x4e\x2b\x21\x63\xb7\xf1\xa9\x6a\xdb\x9f\xb6\x38\x1d\xd8\x14\xc5\x83\x84\x07\xfb\xb7\xa0\xef\xdf\x78\xee\xd8\x55\x42\x67\x37\x98\xf6\x99\x70\x2a\xff\xa4\x7a\x64\x09\x36\xff\xac\x5a\x2d\x6d\xb3\xa7\x75\x92\x6b\xe4\x46\xe6\x45\x0d\xa8\x22\xc1\x4e\xf2\x86\x89\x1a\x0d\xac\xcd\xbd\x6a\xd5\xb5\x56\x6f\x57\x22\xed\xc8\x40\xad\xe8\x3c\x50\xda\xb6\x4c\xa4\xde\xd9\x0d\xa8\xaf\x6d\x21\xba\xd2\x71\x9f\xd5\x62\xbc\xcc\x76\xb4\x4d\xf2\x69\x4b\x65\x32\xef\xac\x94\x0e\xcb\xaa\x55\xa0\x96\x40\xd1\xbc\xe3\x7a\x3f\x04\xf7\x30\xac\x32\x39\x49\x97\x79\x91\x09\x5e\x4e\xb9\xda\x5c\x21\x4c\x56\x2b\x42\x67\x1d\x4e\x49\x9e\x11\xf5\x53\x06\x0a\x21\x73\x09\x32\x34\xff\xa5\x12\xa1\x48\x96\x1d\xb2\x14\x7c\x4e\xe8\xbc\x43\x8a\xbc\xfc\x08\xa4\x60\xaa\x76\xda\x00\x4e\x84\x4e\x20\xe3\x75\x2a\xf2\x35\x1a\x54\x94\xd4\x9b\x99\x4d\x89\x76\xaa\x24\xeb\x90\xcd\x3a\x63\x12\xdf\x28\x08\xb0\x93\x9d\x68\x04\x2e\xa6\x3c\x85\x5e\x50\x05\x3a\x2d\xb6\x91\xcb\x4a\x10\x4a\xf8\x8a\xe5\x05\xa1\x25\xd8\x83\x94\x9f\xe4\x92\xaf\xea\x64\xdd\x21\xbc\x94\xe2\x16\x52\x3a\x59\xb1\x75\xa7\xb3\xeb\x8a\xf0\x69\x4b\x71\xa8\x33\x22\x98\x75\x64\xbb\xd0\xf2\xcf\x14\x5a\x9a\x42\xeb\x85\xf5\xec\xff\x66\xef\xdf\xfb\xdb\xb6\xb1\x85\x51\xf8\xab\x48\x7c\xfa\x72\x88\x08\x92\x25\xe7\xd2\x96\x0a\xac\x5f\x9a\x76\x66\x32\xbb\x49\xba\x9b\xb4\xb3\xbb\x65\x4d\x36\x4d\x41\x16\x27\x34\xa8\x21\xa1\x38\x89\xa9\xef\xfe\xfe\xb0\x70\xe7\x45\x76\x32\xe9\xec\x39\xcf\x39\xff\xd8\x22\xee\x58\x58\x00\xd6\x0d\x6b\x45\x41\xb5\xbf\xba\x4a\xe4\x68\xea\x7a\x1d\x05\x20\x34\x63\x1c\x9a\x2b\xa0\x8a\x03\x1a\x52\xe8\xab\xdb\x87\x88\xc6\xfb\x0c\x2a\xec\xf6\x17\x02\x20\x16\x32\x19\x42\x98\x1f\x10\x02\xa5\x14\x4c\xb1\x98\x33\xb2\x89\x82\x74\x9b\x30\x46\xf3\x00\xdb\xe5\x46\xe6\x17\x56\x0b\x2f\x11\x63\x52\xed\x2f\x2a\x5e\x46\x53\x7c\x1f\x60\xb9\x26\x41\xd0\xb3\xf6\x32\x59\xce\xdc\x00\xa0\x6b\x99\xbd\x2f\xb3\xd2\x79\x52\xf1\xef\xf6\x59\xbe\x16\x63\xff\xa4\xf5\xbe\x4a\x58\x72\x99\xb1\xcb\x1f\xd6\x19\x17\x09\xad\x85\x17\x3f\xfc\xc9\x7e\x32\x02\x5c\xee\x8f\xa2\x80\x4c\x6e\xcf\x9d\xdf\x32\x77\x85\x3a\xeb\x28\x50\xab\xe7\x2e\x6b\xd9\xbd\xac\xa5\x5e\x56\xa9\xee\xa3\x74\xad\x44\xd5\x13\x79\x62\x3d\x4d\xf2\xfc\x22\x49\xdf\x46\x7c\x21\xce\x97\x58\xa9\x7a\xd3\x62\x9f\xaf\xd9\x1f\xf8\x60\x93\xb1\xf5\xa0\x2c\x0a\x3e\x28\x36\x03\x38\x06\x10\x82\x7b\x3f\xb1\xd7\xbb\x6b\xee\xe1\x48\xf9\xaa\xc9\x25\xd5\x21\xb4\xaa\xef\x3e\xbc\x4e\x2e\x05\x7b\x12\x69\xa9\x9f\x6f\xd0\x71\xb7\x5a\x78\x86\x96\xd3\x55\xcb\x60\xa3\x6d\x63\xc2\xe0\x90\x1c\xce\x10\x86\xf6\x5e\xd3\xf7\x3c\x3a\xd2\x32\xc3\x33\x84\x26\xbc\xcc\xae\xa2\xa6\xb5\x86\xe5\xa1\x16\x7c\x92\x70\x5e\x66\x40\x66\xc6\x02\x5a\x9d\x16\x17\x0e\x61\x2c\xf6\x66\x21\x46\x61\x36\xa4\xb2\xf3\xc8\x80\x04\xe0\x2b\xd2\x30\xa4\x30\x67\x7f\x59\x55\x20\xdd\xaf\x6b\x73\xf6\x8a\xdf\xe5\x7a\x13\xff\xfc\xfd\x1f\xe1\xf3\xc0\x26\x7f\xa4\x74\xad\xe9\xa9\x3d\xf4\xf1\x9c\xdc\xbc\xbf\xca\x9f\x17\x6b\xb8\xa4\xe6\x6c\xb2\x13\x57\x8e\x28\xd7\x94\xfc\xf9\xc4\xfb\x73\x4d\xbb\x0b\xc4\xd9\x47\xdc\x1a\x68\xd1\xeb\x41\x3e\x91\x17\x57\xc4\x30\x47\x13\xca\xd6\x11\x15\x04\xb7\x18\xd8\x41\x52\x71\xea\x62\x8b\x4f\xbf\xc5\xf6\x2e\x8c\xbf\xc6\xfa\x0e\x8c\x67\x53\x41\xd4\x7d\xd3\x26\xea\x3e\xeb\xda\x2d\xdd\xdb\xcb\xc0\x8f\x0a\xf8\x49\x3a\x43\xa4\x11\xaa\xef\x40\xea\x5d\x7e\x72\x0d\xf7\xbc\x29\x65\xb6\x35\xa3\xc0\x29\x15\x60\xc9\x87\xfb\x8d\xa4\xeb\x84\x27\x2d\xb2\xdd\x6f\xc2\x96\x09\xba\xeb\x37\xae\xe1\x8e\xda\x94\xad\xdb\x75\x41\x5f\xe2\x1e\x47\x7e\x45\x91\x1d\x60\xda\xaa\xb6\x2b\x8b\x94\x56\x55\xc6\x2e\x33\x45\x41\x8a\xcb\xe2\x18\x0c\x3a\x6b\xf4\xc0\xa3\xb8\x12\xdb\xea\xc8\xb0\x54\x89\xae\x91\xa9\xac\xe3\xe0\x30\x65\x3a\x80\x99\x17\x15\xe5\xc9\xe5\xb1\xde\x55\x91\xae\xee\x8b\x1d\x65\x7e\xed\x36\x28\x54\x99\xee\xc9\xab\x4c\xb0\x47\xe9\x1f\x82\x53\xaa\x6b\x14\xa0\x28\x3b\x52\x5d\x2a\xd2\xba\x2a\x1e\x03\x5b\x27\xbc\xe0\x4c\x28\x33\x96\x1d\x5b\x2f\x5b\xa8\xab\xd3\x6e\x3e\xd8\x54\x86\x6c\xe8\xf8\x10\x09\xf6\x4f\x53\xda\xa5\x92\x29\x7d\xfb\xff\x71\x77\xff\x37\x70\x77\x9f\x2b\x53\x52\x32\x83\xd7\xc5\x5b\xca\xb2\x8f\x92\x6b\x4a\x04\x8b\xa4\x4d\x6c\x71\x05\x17\xd1\x2b\xca\xa3\x65\x90\xb1\xdd\x9e\x07\x38\x28\x34\x59\x54\xec\xf8\x65\x59\xec\x77\x82\x09\xa0\xb9\xe0\x91\x70\x70\xb1\xe7\x5c\xd2\x4c\x09\x4f\xf2\xac\x12\x69\xe2\x24\x4c\x4a\x9a\x04\x2b\x84\x53\xa7\xc1\x9d\x48\xc8\xc9\x0d\x2f\x63\x9b\xc8\x05\x71\xc8\xb7\xe2\xcf\x3a\x00\x71\xbd\x9b\xb9\x85\xa4\xb5\x97\x44\x93\xb5\x5f\xe5\xa2\x58\x7f\x70\x4a\xa8\x02\x8a\xce\x93\x94\x1c\xf4\x9c\x39\x85\xf2\x4c\x24\xed\xe2\x14\x6f\x67\xe2\xcf\xa9\xf8\x73\x5f\xfc\x79\x20\xfe\x3c\x14\x7f\x1e\xc5\x29\x96\x13\x8d\x2b\x0c\xd0\x88\x2b\x5c\xec\xb9\xfc\x21\x67\x1e\x57\x58\xcf\x3c\xae\xb0\x9e\xb9\x28\x07\x50\x73\x7a\x54\x60\x5c\x21\xac\xe1\xe8\x67\x6a\xd0\xda\x72\x6b\x77\xde\x6b\x01\xd9\x35\xcc\x77\xcd\xbb\xd3\x93\xf5\xba\xa4\x55\x15\xa7\x38\x29\x79\x96\xe6\x54\xfc\xaa\xb2\xb5\xf8\x7f\x91\x17\xe9\xdb\x7f\x40\x68\x9d\x14\xaf\x29\x4f\x04\x75\x90\xe2\x75\xf6\x4e\xfc\xcd\xe3\x14\x6f\x32\x9a\xaf\x2b\xca\xe1\xe7\x65\x9a\xc8\xf1\xc3\xc7\xbe\x14\xb5\x36\x45\xc1\x69\x09\x3f\xca\x2b\x01\x1f\x9a\xac\xe1\x7b\x2b\xfe\x5c\x25\x99\x28\xcd\x12\xd1\x60\x21\x1a\xdc\x41\x2d\xed\x54\x2f\xc5\x1c\x6c\x61\x52\xbc\x17\x99\xa5\x3b\x87\x52\xcc\xa1\x04\xf4\x28\x77\xdd\xe9\xbc\xb1\xc8\x06\x0d\x44\x3a\x14\x10\xc3\x3b\x52\xe0\x80\xf7\x0e\x2a\x02\x7a\xe2\xe0\x22\xa9\xa8\xfa\xb7\x29\x18\xe0\xb3\x40\xc7\xb4\xc8\xe1\xef\xd5\x55\xc2\xd6\xc0\xab\x5e\x08\x5e\x2e\xd8\x94\x70\x89\x04\x5b\x51\x28\xbb\xba\x14\x7f\xd5\x26\xc9\xaa\x8c\xad\xe9\xfb\x00\x07\x6f\xe9\x87\x4b\xca\x2c\x02\x5e\x51\x2e\xba\xda\x25\x65\x72\x25\xf0\xb1\xd8\x97\x29\xb0\x25\x65\x92\x8a\xfc\xeb\x8b\x12\x50\xd1\x19\xdd\x55\x02\xd8\x5d\xbd\xbb\x14\x39\x1b\x37\x27\x13\x2d\x16\xe2\x8f\xe8\xe2\xaa\x12\x7f\x24\xe5\x11\x24\x8c\x15\x1c\x7c\xe8\x8f\xdf\x5f\x89\x09\x6c\x8a\x92\x66\x97\x4c\x1e\x16\x8a\xad\x31\xfc\x90\xc0\x23\x72\x72\x5e\xd5\xe7\x27\x27\x78\xdb\x27\x17\x01\xf3\x62\x6d\x43\x6c\xe4\x1d\x0d\x79\x6e\x31\x79\xa3\xaf\xe1\x20\xc0\xc5\xe4\x8d\x24\xe2\x5a\x09\x70\x1e\x79\x29\x15\x9c\xab\xe2\xbb\xe2\x49\xfa\x16\x84\xd3\x93\x37\x6a\xdc\x4f\x15\xc9\x05\x89\x40\xcf\x3d\x13\x20\x26\x53\x5c\x08\x62\x58\x7e\xa8\xfa\x70\x6b\x3e\xdd\xee\xd9\x5b\xe2\x8a\x5c\xae\xcb\x8c\x53\x5c\x4c\xd6\x05\xa3\x5e\x06\x65\x6b\xd1\x93\xdc\x6b\x15\x29\xeb\xfa\xe6\x20\x12\x52\x31\x24\xfd\xf1\xbf\x3d\xa9\x37\x79\x71\x4d\xcb\xa7\x49\x45\x15\xcf\x54\x91\xc0\x4d\xaa\x82\x0c\x80\xaf\x66\xb1\x18\x0e\xed\xc7\xc4\x2b\x18\xbb\x39\x8a\x51\xf1\x3a\x78\xa2\xc9\xee\x66\x37\x7e\xc6\x9d\x3a\xf4\xab\xf4\x75\xcd\xf5\x25\x24\xb0\x3b\x72\xca\x98\xdb\xa9\xae\x33\xc3\xeb\x3a\x05\x70\x81\xd4\x4a\x79\x24\x55\x18\x76\x24\x46\xa2\xec\x11\x91\xdc\x1b\x29\xb8\xf8\x09\x0c\xce\x3c\xaa\x1c\xdd\xa8\x1b\x5f\x4a\xee\xd5\xca\x28\x75\xb3\x19\xfb\xe4\x8d\x3a\xde\x5e\x89\x95\x7c\x4c\xa8\x2c\xe0\xae\x6b\xdc\x4c\x39\xda\xc4\x98\x76\x97\xd7\x03\x18\xcd\xb0\xf7\xdd\x6a\xed\x92\xf2\x27\x17\x55\x91\xef\x39\x85\x02\x4d\xa5\x47\x2f\x1b\xe3\x43\x22\x9a\x21\xbf\xa3\xf1\xd8\xd3\xb1\x88\x46\x7c\xad\x88\x48\x89\x68\xab\xb7\x3e\x1a\x3d\xdb\x28\xc5\x67\x0b\xc7\x41\xf7\x41\x27\xbc\xf8\x51\xe7\x44\x48\x6b\xc1\x75\x4b\x14\x4b\x53\xec\x26\x62\xdd\xf1\x61\x51\x8e\x29\x42\x56\x7d\xa3\xde\xea\xe4\x4b\xba\x12\xc5\x23\x6d\x90\x0a\xdb\x77\xe9\xfc\x36\x8a\xf2\x95\x52\xd7\x58\x06\x27\xe2\x08\xcd\xfb\x06\xb5\x87\x66\xa9\x7d\xc1\x24\x5b\x03\x7d\x1a\x45\x78\xa7\xb2\x15\x76\xf9\x27\x85\x2c\x35\x9c\xa2\x78\xa3\x8a\x69\xb8\x77\x96\x9b\x19\x58\xc9\x65\x71\xe0\xef\xaf\x97\x93\x21\xc6\xd0\x91\x15\x86\x6a\xb4\xfa\x58\xbb\x39\xf4\x2d\x6f\x27\x2f\xd4\x83\x51\xba\x39\xd3\x7c\xa3\xd3\x8e\xc4\xc8\x5b\x7d\xbf\x99\x46\xab\x44\x1a\x4d\xf4\xad\x84\xdb\xb8\x5e\x3a\xbd\x3e\x5e\x27\xa8\xbb\x6c\xa3\x50\x03\x2d\x83\xa0\x09\x9f\x4e\x16\xd9\xe0\x7e\x1f\x84\xee\xb8\x27\xa2\x9d\xc1\x2b\x8d\x1b\xbd\xc8\x51\xec\x22\x03\x15\x17\x97\xeb\xfa\x36\xa4\x45\x9d\xf9\x75\x2d\x48\xa5\x21\x21\x34\x0c\x83\x1d\xfc\xd0\xd8\xdd\x87\x5b\x02\x14\x4f\xe1\x8d\x36\x7f\x9d\x5c\x46\xca\xaa\xcb\x33\x01\x57\x23\x4b\x2a\x79\xf6\xbd\xdc\x44\x14\xb4\x21\xe3\xd9\x90\x10\x50\x89\x74\x2d\x0a\x6c\xe5\x46\x13\x72\xa3\xf2\x39\x1f\x8f\xe7\xe8\xc8\x4a\xaa\x9d\x28\xc0\xa3\x2c\x63\xda\xcd\x10\x0e\x39\x66\x9a\x3d\x00\xf9\xc4\xd9\x1f\x9a\xb8\x52\xd1\x7c\x23\x8a\x65\xec\xd2\xc3\x18\xbd\x9f\x5a\x1d\xfa\xc9\x25\x4d\x8b\x4b\x71\x09\xbc\xa2\xf9\xe6\xa9\x6c\x47\x97\xf1\xb1\x61\xd9\x89\x22\xe6\x6c\x5b\xf4\x8c\x38\xf6\xe7\x47\xd9\xba\x79\xb9\x34\xeb\xb4\x95\x5d\xde\x7e\x99\x77\x34\x88\x6f\x3d\x7a\x09\xe0\x5c\x27\x22\xf4\xec\x59\xea\xb5\xaa\x16\xbb\x09\x7d\x87\xbc\x6b\x5f\x8e\x3d\xb4\xcd\xb1\xab\xca\x69\x8f\x76\xf7\x25\xf8\xc6\x8e\xbe\x1c\xb2\x72\xd4\x57\xb5\xf3\xbc\x95\xb3\x36\x02\x54\x1f\x18\x26\x39\x6a\x0e\x0f\xb7\xba\x6d\x1d\xd4\xc3\x3b\x3f\xd7\x35\x95\x5a\x50\x40\xcd\xeb\x64\xd9\x2c\xb1\x22\xb7\x8c\x44\xd3\xde\xad\x62\xad\x83\xf7\xcd\x25\xe5\xcf\xac\xec\xf4\x45\x73\x55\xe5\x99\x43\x27\x15\x4d\xca\x74\x1b\xad\x11\x66\x84\x3f\x9e\x2e\x68\xec\xe8\xd2\x78\xe3\xdd\x41\xd7\xa9\xcc\x08\x6b\x2e\x3f\x6b\x2e\xd9\x9a\xa6\x79\x22\x83\x9b\x75\x5f\x03\x8a\x6a\xed\x92\xfa\xfa\x2f\x64\xda\xb3\x12\xe7\xe3\xad\x8d\x44\xc1\x30\x18\x71\x2c\xfe\xd2\xf6\xb1\x73\x9b\x7c\xfa\x5f\x3a\xd0\x05\x0c\x74\xd1\x39\xd0\x7e\x59\x77\xe3\x1e\x7d\xe0\x93\x33\xaa\x5e\xe3\x70\x90\x89\x4d\xd2\xc7\x8a\xbb\x3b\x8b\x77\x9c\x79\x4a\x63\x70\x77\x8a\xfa\xce\xe7\xf8\xd3\xef\x9f\xbc\x7e\xb2\xf0\x0f\x3a\xa3\xda\x68\x0c\xcf\xa4\x47\xe8\x6e\x74\x3a\x6e\x55\x6f\xcf\x59\xa5\x46\xc8\x1c\xfd\x1a\x6a\xc1\x12\x06\xb7\x0c\x46\x74\x14\xac\x56\x41\x0b\x26\x7d\x52\x75\xd9\x32\xe4\xfa\x9d\x41\x52\x07\xff\xd0\x38\xe9\x8e\x51\x00\xee\x0d\xe3\xde\x19\x73\x7a\x36\x9d\xdf\x46\x02\x2c\xc7\x63\xba\x42\x3e\x8e\xb6\x20\xd2\xb1\xfc\x3d\x02\xf9\xdb\x8c\xc7\x70\x93\x6f\x6b\xa4\x5b\xc9\xc3\x6d\x07\xa0\x92\x36\x38\x53\x69\xda\xc3\xb9\x3c\x72\x77\xba\x7e\x0d\xe5\x4e\x4c\x4a\x54\x8a\xab\x5d\x4e\x79\xc7\x95\xe8\x8d\x57\xaa\x26\xfd\xfa\x20\x7a\xe9\xc0\x00\x3b\x65\x28\xd1\xaa\xe7\x2d\x78\x47\xad\xae\xbe\x76\xc9\xbe\xa2\xed\x45\xb0\x95\xa0\x40\xc7\xd2\xed\xaf\x8e\x56\x93\x25\x22\xad\x78\x77\x9f\x5f\xa3\x39\x53\xda\x59\xb2\x95\xba\x58\x2b\x55\x8f\xef\x4f\xb1\x94\xa8\xc7\xa7\x0f\x0f\x2b\x7c\x7f\x7a\x27\xb5\xcb\xff\x8e\x56\xa0\x20\x65\x44\xc1\xec\x26\xe3\x19\xad\x4e\xf2\xec\xe2\x64\x4d\xd3\x62\x4d\xdf\x88\x3f\x10\x2e\x39\x40\x08\x67\x1d\xe5\xae\x92\x5d\x75\xa2\x53\x26\x7f\xaf\x0a\x26\x35\x0a\x3d\x25\x73\x7a\x99\xa4\x1f\x4c\xb9\xaa\xaf\xdc\xfb\xab\x5c\x17\xb2\x36\x0e\xa9\xa3\xa5\x1f\x68\xbd\xfc\x39\x33\xbf\xb8\xf9\xb5\x31\xbf\xe4\x4b\x3d\xab\xe9\xcf\x9b\x2f\x6b\xbd\xab\xdb\xbc\xfb\x26\x84\x94\xce\xdb\x58\x5c\xa0\x9b\x02\xd2\x28\xec\x30\x4e\x09\x8f\x23\xf3\x9b\x61\x3a\x79\x93\x49\x19\x09\x3a\xd8\xe7\x20\xd2\x05\x84\xa8\x57\xd7\xe2\x1f\x5d\x14\x4e\xf5\xc2\x56\x2f\x9c\xea\x76\xac\x7b\xe7\xa5\x50\xdf\x48\x4d\x5f\xa5\x1e\x23\xab\xeb\x02\xfa\x2a\x9d\xbe\xcc\xef\xfb\xb8\x74\xfb\x12\x6d\xef\x48\x1e\x05\x4f\x03\x7c\x7a\x1f\xcf\x1e\x21\xbc\x11\x9f\xdf\x07\xf8\xf4\x01\x7c\xae\xc5\xe7\x93\x00\x9f\x3e\x84\xcf\xad\xf8\x7c\x1d\xe0\xd3\x47\xf0\x79\xa1\x73\xbf\x86\xcf\x2b\xb2\x8f\x82\x9f\x03\x7c\xff\x01\xc2\xcf\xc5\xef\x67\x01\xbe\xff\x10\xe1\x4b\xf1\xfb\xa7\x00\xdf\x7f\x84\xf0\x07\xf1\xfb\x75\x80\xef\x7f\x8d\xf0\x3b\x51\x5d\x94\xff\x16\xcf\x10\x7e\x22\xbe\x9e\x05\xf8\xc1\x54\x7c\xbd\x11\x5f\x3f\x05\xf8\xc1\x4c\x7c\x5d\xab\x7e\x1f\x9c\x8a\xaf\x8f\xa2\x8d\xdf\x02\xfc\xe0\x01\xc2\x2f\xc5\xef\x1f\x03\xfc\xe0\x21\xc2\xaf\xc5\xef\x1f\x02\xfc\xe0\x11\xc2\xef\x45\x0d\x51\xe6\x1b\x51\xe3\x85\xf8\x12\xa5\xa0\xa7\x1f\xc5\xd7\x0f\x01\x7e\x08\x3d\xfd\x20\xbe\xfe\x4f\x80\x1f\x9e\xe2\x87\xf7\x11\x7e\x25\x3e\xff\x2b\xc0\x0f\x1f\xe2\x87\x0f\x10\x7e\xda\x67\xf1\x60\x55\xd5\x12\xb4\x4a\x2e\xf7\xe6\x62\xbf\xd9\xd0\xd2\x1e\xd2\xae\x70\x4f\x3d\xdc\x50\x4b\x60\xbe\x64\x95\x97\x9b\x8d\xb8\x49\x4c\x62\x52\xd1\x57\x5e\xcb\xd5\x8e\xa6\x59\x92\x9b\xef\x72\xcf\x58\xc6\x2e\xc9\x50\x57\xa1\x6c\x4d\xd7\x64\x38\xb3\x87\x3f\xe1\xea\xb7\x22\x35\xc8\x30\x1a\xd2\xba\x1e\x52\x4d\x7b\xe8\xfb\x46\x6e\xf8\x1f\xd4\x4e\xb4\xc5\xfc\x74\xd4\x65\xd8\xd1\x73\x01\xfe\xdb\x41\xc5\xd7\xa4\xcb\xf1\xbd\x6e\x8a\x42\x83\xc7\x70\x62\x68\xa2\x0b\x46\x74\xd6\x1e\x72\x07\x45\x65\xe8\xde\x57\x54\x01\xc2\x61\x3a\x39\x25\xa7\x5d\x33\x77\x7a\x51\x24\x56\x63\x25\xc2\x70\xa6\x45\xd0\x7a\xa6\x61\x18\x84\x81\xc7\x03\x7f\x91\x51\x76\x40\x16\xbe\x1e\xce\x6e\x1b\x78\x17\x60\xbf\x83\x00\x21\x8a\x4f\xf2\x21\x7c\x22\x21\xec\xf5\x11\x37\xe0\x7e\x37\xb8\xf6\x42\x32\x38\x53\x37\x00\x48\x8d\x5c\xe0\xd5\x75\x6a\xe5\xac\x0a\x45\xe3\x60\xe8\x75\xae\x92\x1f\xde\xd2\xcd\x68\x86\xe2\x60\xd1\x55\xf3\xeb\x3b\xd4\xf4\x6a\x78\x7b\xb4\xae\x83\x4a\xcb\xd5\x5e\xc1\x8f\xc5\xfd\xf8\xfe\x67\xad\xc2\x33\xd6\xb5\x02\x91\x5a\x82\xba\x36\x70\x4a\xa5\xe4\x50\x3f\x45\xba\xca\x38\x10\x33\x4d\xeb\x19\x1f\xa3\xbf\x71\xb7\xad\xb8\x4f\x7a\xf1\x40\x09\xa3\xba\x06\x93\x4a\xa9\xb8\x1a\x49\x63\x61\x5a\xcb\xb7\x08\x8c\x75\xde\xab\x76\x85\xfb\xa7\x3e\x58\x67\x8d\x01\xfa\xb9\x8f\x6e\x83\x68\x0f\x48\x8f\x4c\x26\xba\x0b\x40\x8d\x45\x94\x0f\xcd\xaf\xef\x00\xcd\x27\x1b\x4e\xcb\x23\xfd\xab\xee\x4d\xbf\x3e\x18\x8e\xa0\x63\xff\xd2\x79\xf2\xae\xae\xce\x16\x5d\x42\xfc\x86\x24\xef\x6e\x83\x88\xbb\x8e\x86\x07\x71\xda\xd0\x9b\x70\x4a\xbe\xfd\xbc\xcd\xe0\xc8\x45\x5f\x37\x24\xf2\x9d\x93\xf1\xe5\xb1\x9f\x31\xa1\x8e\xa1\xdf\x65\xd3\x3c\x63\xfd\x50\x8f\x02\xa2\x77\xc0\x2d\xbb\xd8\x15\xfb\x81\x28\xfa\x8e\x27\xe9\xd8\x3f\xff\x67\xd3\xbb\x22\xe6\x11\x54\x21\x1d\xbb\x7b\x16\x37\x67\xb0\xe8\x18\x79\x1b\x93\x9a\x10\xf4\xa1\x7c\xbc\xee\x67\x21\x4e\x63\x23\xfc\x0a\x02\x47\x77\x7a\x7f\x08\xfe\xd0\x71\x0b\xdc\x76\xe1\x03\xc6\xff\xa1\xeb\xfe\xb8\xff\x79\xa8\x35\x7b\x70\x4b\xbd\x4f\x43\x3d\x98\xa7\x0c\x0d\xff\x9f\xfb\x82\xd3\xea\xd8\x9c\xbd\x13\xce\x4a\xb7\x03\x5f\xcc\xd4\xbb\xa4\x7d\xc4\x4f\x93\xd2\xb9\xad\x1b\x4b\xc4\x38\xcd\x7f\x01\x72\xa6\x09\x96\x57\x19\xbb\xec\x04\x4b\x63\x41\xff\x5f\x06\x96\x17\x45\x07\x48\x24\xa6\x36\xb6\xf8\x3f\x09\x98\xe6\x11\xf0\xef\x0d\x26\x79\x80\x7c\xdf\xa3\x05\x70\xdb\x0f\x96\x12\x4a\xa7\xa7\x71\x30\x96\x3f\x67\xdf\xc4\xb3\x47\xdd\xc0\xef\x6b\xb1\x49\x06\x48\x60\x3a\x5a\x88\x5b\x99\x95\xcf\x24\x19\x9e\xb1\x9f\x8c\x54\xff\x59\x8f\x2e\xa1\x7b\x70\xdd\xda\x80\xdf\x69\x98\x8a\x28\xed\xd0\x26\x68\xa0\xfb\xe7\xea\x6d\xb7\x86\x38\x8f\xbd\x0a\x3d\xeb\x75\xa4\xc7\x06\xc9\x76\x3a\x3d\x42\xff\xc9\x56\x66\xfd\x48\xa4\x26\x71\x3a\x8b\x67\xdf\xde\xd6\xcc\xe9\xed\x64\x90\x96\xf9\xab\x4d\x02\x6c\xb9\x52\x92\x81\x67\xc9\x16\x6c\xbc\xdd\x79\xfa\xe9\x6b\x26\x70\x7f\xd8\x41\xc7\x7e\x7b\x6c\x35\xc5\x4e\x7e\xe4\x4f\x66\xd9\xb1\x98\xa7\xdf\x7c\x2a\x73\x36\x7b\x74\xa7\x7b\xf3\x69\x4b\x09\x14\xac\x3a\x97\xb6\x7b\x16\x72\x4d\x44\x1b\x47\x16\x56\x36\xb8\xb8\x3f\x8d\x4f\xbf\x39\xde\xc8\x5d\x96\x55\x94\xfb\x57\x2e\xea\xaa\x6b\x51\x4f\xbf\x39\xb2\xa8\xaf\x94\x6c\xc7\x9b\x4b\xaa\x89\xc6\xa7\x1d\x1c\xe0\xfd\x38\x30\x72\xe0\xd7\x1d\xdc\xc4\x7d\x7f\x6d\xef\xdf\x99\x85\x55\x43\xf9\xa1\xa1\x9c\x38\x6d\x0b\x18\x82\x54\x73\xef\x4f\x15\xf7\xde\x51\x86\xeb\x32\xaf\x65\x19\x9f\xef\xf5\x86\xfc\xb5\xf7\x79\xbf\x73\xe1\xd5\x18\xc1\xd2\xfd\xe1\xa7\x31\xfb\x5a\x7e\x76\xea\xaf\x68\x03\x32\xbd\xd8\xd6\xd5\xa7\xd7\xd3\xa2\xd1\x8f\xcf\x5d\xdc\xc6\x84\x8f\x9b\x9b\xcf\x3f\x68\x8f\xc0\x82\x7f\xc8\xe9\x83\xcf\x03\xc5\xfd\xcf\x04\x45\xbb\xcb\x2f\x09\x89\x87\x9f\x02\x09\x50\xde\x09\x3e\x6c\x0d\xe4\xd0\x87\x57\xbc\xcc\x52\xde\xa9\x48\x75\x3b\x1c\xcd\x1e\xbb\xc4\x8c\x67\xb3\x73\x87\x33\x62\xe4\x49\x5c\x10\xe6\xbe\x64\x6b\x51\x69\x73\xde\xd8\x18\xf6\xce\xef\x66\x59\x82\xa9\x2f\x4d\xf9\x29\x29\x79\x96\xe4\x11\x37\x1e\x9e\x8e\x53\x01\x5d\xe0\xf9\x11\xb4\x51\x12\x3e\x7d\x86\x4a\xcd\xd9\x79\x2b\x42\xc1\x03\x08\x3f\x7b\x04\x2f\x39\x1f\xa1\x39\x3f\x23\xa7\x73\xcf\xe3\x87\x0f\x35\xe9\x7e\x29\xdb\x44\x77\x9a\xb4\x79\xe8\x8b\x99\xe7\x6d\xcb\x87\x80\x29\xb5\x64\x2b\x84\xdf\x15\xd9\xba\x6b\x61\x08\x1f\xcd\xd0\x9c\x8f\xc7\x4d\x48\xa8\xdb\xcb\x41\x15\x1f\x81\xe7\xde\xcd\xd1\x8d\x56\x51\xd7\x0a\xf8\xa8\x14\x86\x43\x0f\x15\xb4\x68\xba\xb5\x10\x0d\x4a\xbf\x41\x98\xa3\x38\xa2\x8f\x83\x24\xa8\x6b\x7a\x16\x7c\x0c\xe0\xc9\xd7\xe3\xe0\x89\xfc\xfe\x6f\xfd\x3d\x95\xdf\xdf\x06\x16\x67\x1a\xa6\x16\xfe\x40\x8d\x84\x1d\x86\x5a\xd7\x91\x95\x3b\x9a\x9e\x17\x01\x51\x47\xf6\x71\x48\xc4\xbd\xf3\x3a\x3a\xb1\xe3\xf7\x90\x64\x6c\x5e\xec\xaf\x68\x99\xa5\xad\x55\xb2\x5a\xc2\x8e\xc9\x81\x9b\x52\x36\xf4\x66\xe8\x2a\x9f\x3b\xf6\x35\xf3\x37\x71\x46\x60\x32\xcf\x18\x8f\x4a\x81\xbe\x6d\x14\x2c\x34\x0a\x4a\x5f\x06\x47\x37\xe3\xc1\x35\xb1\x74\xed\xde\xc7\xf3\x23\xe0\xe9\x41\xda\x1e\x80\xb4\xd0\xb6\x03\x7e\xd1\x29\x9e\x4d\x3b\xf1\x76\x24\x91\xac\x1f\x89\x16\x47\x06\x1a\xdf\xad\xc3\xe3\xa4\xe4\x9f\xe9\xfb\xcf\x9b\x93\x54\xe1\xf6\xcf\x49\x6d\x9c\x4d\x63\xe3\xfc\xf1\xf6\x8d\xf3\x99\x73\x76\x07\xd4\x33\xe7\x34\xa7\x09\xdb\xef\x3a\x14\x88\xee\xc3\x8a\xe9\xc2\xa3\x54\xad\x22\xd1\xd5\x12\x8e\xfa\x84\x5d\x64\xaa\xf7\xa5\xd2\x0e\x86\x61\xe4\xe8\xd5\x60\x7f\x77\x9c\x9a\xfe\xae\xe9\xd5\xa6\xf9\x47\x7c\xbb\x19\xab\x62\xfb\xe7\xc6\xee\x6d\x29\x6f\x68\xff\x34\x70\xfc\xfa\x77\x9c\x96\xb7\xae\x1d\x67\xcf\x91\x41\x74\xb5\xe3\xab\x84\x1b\x68\xd2\x67\x4c\x04\xca\xdd\x2e\x43\x32\xe5\x4e\x43\xd9\x18\xa1\x41\x22\x28\xb4\xc1\xba\x60\x74\x18\x34\x16\x64\xa4\x1d\x73\xc8\x53\x3b\x6a\x62\x28\xa4\x7a\x66\x00\x45\x19\xcd\x9d\xc9\x3f\xf6\x00\xa6\xfd\x76\x7a\x08\x37\xef\xa4\xa5\xd2\x6d\x52\x3e\xe1\xae\x16\x17\xcd\x9b\x78\xe9\xfc\x7e\x2d\x2d\xf7\xe2\xd9\x69\x7f\x99\x63\x02\x5c\x51\xf7\xdb\x3b\x55\x55\x06\x9b\xf1\xec\x68\xf1\xa7\xc6\x84\x32\xfe\xa6\xbf\x5c\x87\x1e\x49\xd4\xb8\x7f\xac\x65\xe3\x22\x04\xc5\x8f\x8e\x8e\xc0\xd3\x85\x89\xe2\x47\x40\xe3\xe9\xa4\x61\x76\xd3\xfe\xc2\x6d\x8d\x06\xd4\x38\x3a\xea\x7e\x19\x31\xd4\x3d\xb2\xb2\x5d\x2a\x06\x51\xe7\xe1\x6d\x55\xda\x00\xf8\xfa\x96\x39\xb5\x6b\xdc\xbf\x75\x60\x8a\xf9\x05\xf8\xde\x06\x33\x2d\x9e\x82\x29\x3f\xb8\x3b\xb8\xb4\xec\x58\xd4\x3b\x5a\xcd\xd7\xe2\x41\x37\x47\x71\xc4\x91\x92\x42\xe1\x5b\x61\xda\xa8\x70\x7a\x04\x3c\x9e\x24\x0d\x5a\xbf\x75\x23\x38\x9b\xe6\xfe\xad\xc8\x6a\xa5\x0e\x50\xbe\xd9\xb8\x76\x8c\x8a\xe2\xfb\xcd\x8d\xfa\xc4\x64\x3d\x68\xae\xd8\x1b\x5b\xab\x89\xce\x57\x36\xab\xb9\x06\xcf\x6d\x56\x13\x82\x97\x36\xab\xb9\x12\x1f\x6c\xd6\x11\xc4\xf4\xc4\x17\x80\x00\x4d\x98\x5f\xdb\xe9\x1c\x01\x9a\x2b\x91\x80\x66\x9a\xf3\xfb\x68\x9a\x39\x3d\xb2\x50\x4a\x98\x07\x2d\x34\xc1\xf0\xd2\x0e\xa4\x09\x86\xd7\x36\xeb\x08\x42\xba\xe2\x09\xe8\xa1\x09\x97\xf7\xb6\x99\xe6\x18\x5f\xd8\xac\xe6\x7a\xff\x68\xb2\x1e\xde\xb6\x43\x6d\xdf\xb3\x23\x6b\xd2\x23\xcb\x87\x53\xe9\xe8\x29\xe8\x30\x45\xb0\x7d\x9a\xeb\xb5\xb3\x23\x6d\xae\xf2\x0f\x76\x79\x9a\x5d\x6c\x6c\x56\x73\x49\xd6\x36\xeb\xc8\x75\xe5\x08\x58\x61\x2f\xdd\x7a\x8e\x81\x18\x15\x66\xd0\x5c\xe8\xad\xed\xb0\xb9\xd0\x17\x36\xeb\x56\x7c\x97\x22\x6b\x00\xe8\x91\x33\xc9\x61\x07\xa0\xe8\xd1\xb3\xd1\xa7\xbe\x45\xf1\x26\xf4\x5f\x99\x01\xf6\xd2\x4c\x7b\xf6\x96\x15\xd7\x6c\x20\x6b\xf8\x66\x2a\x1e\xd1\x37\x1a\x1d\x54\x23\x92\x86\x6f\x52\x4e\x3d\x56\xd9\xc6\x42\xaf\x21\xb4\xea\x33\xc7\x6e\x59\xf4\xdd\x4a\x74\x29\x3a\x0e\x77\xd0\x88\x9b\x8c\x65\xd5\xb6\x39\xd2\x6e\x9b\xf3\x5b\x89\x4b\xd0\x4c\x36\x49\x4b\x2d\x22\xd0\xd6\xed\xbe\x19\xe2\xd4\x37\x53\x3c\x3e\x2c\x95\x7c\x0b\x6f\xe4\x00\x45\x37\x27\x1d\x81\xbd\x2e\x93\x2c\xcf\xd8\xe5\xf7\xe2\x30\xf3\x35\xab\xea\x21\x83\xd7\x59\xbb\x52\x9f\x54\xec\x56\xd6\x60\xde\x3c\x5e\xeb\xba\xb9\x37\xeb\xba\x67\x0b\xba\xda\x89\x0e\x12\xb4\xae\x9b\x24\x48\x5d\xf7\x5c\xd1\xcd\x87\x3e\xf1\x43\x47\x14\x2f\x6b\xca\x0f\xcd\xe4\x3e\x7c\x70\x4b\xfe\xc3\xe3\xf9\x8d\xe6\xc3\xf0\x9b\x66\xc2\x6c\xd6\x4a\x99\x36\x53\xbe\x6d\x15\x69\xb5\x3b\x3b\x6d\xa5\x3c\x68\xa6\x3c\x6a\x26\xb8\x40\x51\x8f\x80\xe2\xcf\x10\x26\xf8\xf8\xd6\x61\xc7\xd8\x14\x6a\x75\x21\x23\x3a\xda\x75\x9f\x6c\xe6\x0b\x77\x7d\x44\xf8\xf8\xe5\x3b\xf5\x37\x5b\xd3\x4b\x43\xaf\xeb\x78\x8f\x7b\x76\x46\xd2\xd8\xbb\x56\x47\x7e\x4b\x4b\x77\xd6\xf1\x35\x4f\x07\x63\x3c\xd1\xfd\xa8\x6b\x49\x57\x77\x37\x30\xeb\x68\x5a\xc9\x12\xbd\xc6\xbb\xc4\xb0\x2e\x12\x5b\x13\x8e\xa8\x71\x9f\x19\x5f\x14\x0d\x37\x68\x4f\x0f\xf8\xe6\x96\x97\x2e\xf1\xec\x1b\x7c\xeb\x23\x97\xf8\xf4\xb4\xab\x90\xfb\xbe\x25\x3e\xbd\xdf\x55\xc4\x3c\x6d\x89\x4f\x1f\x1c\x56\xf8\xfe\xac\xfd\x32\xc8\x71\x4e\xe6\xba\x6e\x97\x0e\x97\x59\xd3\xef\x19\x47\x75\x1d\xb1\x25\x5f\x11\xba\xe4\x2b\x74\x90\x4f\x7a\xf8\xff\xc5\xbe\x9f\x33\xdf\xa7\xb3\x7d\x87\x95\xa9\x1f\xca\x43\x74\xc3\x3f\xf4\x9c\x4d\xbe\x2f\xae\xb4\xd7\xce\xc4\xf9\xc0\x6c\xa2\x1e\x5d\xf5\xe4\xc2\x41\xf1\xfd\xcb\xe7\x9d\x42\x77\x46\xaf\x07\x6e\xf9\x48\x47\x06\xf4\x5c\x79\x66\xdd\xae\x3c\xd7\xc5\xd5\x01\x33\xe5\x4c\xee\xfb\xe2\xea\x15\x2f\x69\x72\x45\xba\x1f\x8b\xb5\x7a\x92\xb9\x9d\xdd\x94\x98\xa3\x83\x8c\x3e\x4c\x9a\x3e\xdf\xe6\xcc\xfa\xd8\x21\x46\x27\xa7\xa2\x89\x69\xbf\xda\x54\xfa\x6b\x15\x3b\x34\x40\xa2\x8a\x72\xe0\xfa\xfa\xc3\x8e\x92\x14\xb3\xc9\x0f\xbf\xfe\xf0\xe2\xf5\x2b\x72\x63\x1e\x96\xc7\xa7\xd8\x3e\x43\x8d\xa7\x58\x3f\x1f\x8d\xa7\xe0\x16\x2d\x9e\xe1\x4e\x2b\x1f\x51\x4d\x5e\xd1\xf1\x0c\xdb\x67\xb6\xa2\x01\x65\x29\x1d\xcf\xb0\xb2\x2b\x8e\x4f\xb1\x63\x8f\x1e\xcf\x30\xd0\x63\xe2\xbf\xa8\x70\xc0\xa5\xf4\x6f\xe7\xb8\x67\x15\x14\x99\x4a\xfd\x6b\x99\x81\x07\x32\x09\x63\x27\xa3\xe5\x23\x5f\x4c\x58\x46\x3f\x2b\x1a\x0e\xc5\x25\x12\xfd\x22\xbe\x48\x3e\x97\xd1\x9c\xdb\x5d\xce\xd9\xe4\xe7\xaa\x32\x0e\x62\x5d\x77\xb1\xf2\xa9\x60\xbb\xc7\xf8\xf4\x11\x6e\x34\x13\x9f\x7e\x8d\x7d\x17\xaf\xad\x47\x86\xed\x59\xc5\xa7\xd8\x5f\xbc\xf8\xd1\x31\xcf\xb0\xf7\x4f\xdb\xe7\x0f\x9b\x94\x34\x59\x37\x70\x50\x39\xd8\xd5\x41\x80\xc9\x37\xf7\x8a\x71\x39\x9e\xe1\x94\x44\xb3\xc7\x8f\x2b\x34\x9e\xe1\x9c\xa4\x67\x67\x33\xbc\x27\xe3\xaf\xf1\x8e\xb0\x45\x31\x9e\xc5\x53\xbc\x21\x6c\x31\x9e\xc5\x33\xbc\x16\x07\xd4\x68\x27\xa3\x98\xef\x46\x64\x83\x33\xb2\x0e\x45\xed\xf1\x5e\x54\x5f\x9f\x9d\x91\xf1\x1e\xef\x47\xa4\x9a\xef\xcf\xa6\xf3\x8c\x9c\x3e\x7c\x74\x2f\x1b\xc9\x5a\x18\x6a\xec\xc7\xe4\x1b\x19\x77\x21\x21\x99\x53\x37\x33\x75\x4b\xa8\x9b\x40\xdd\xa4\xa3\xae\x8a\x03\x94\xa1\x8c\xcc\xc6\xb9\x74\x40\x92\x6d\xa2\x8c\x10\x92\xea\xd3\x2f\x59\xbc\x48\x5e\xc4\xb3\x93\xe9\xbd\x68\x0d\x63\x47\xf3\x64\x44\x9e\x27\x7c\x3b\xd9\x15\xd7\xd1\x29\xc4\xb4\x1e\x93\x5c\xbd\x86\xd2\x85\xee\x25\xf7\x9c\x32\xd9\xb8\x44\x62\x6b\x37\x25\xd7\x6e\x7c\x68\x15\x7b\x08\xa7\x38\x27\xdf\xdc\xcb\xc6\xc5\x58\x80\x4f\x4c\x2b\x17\xb3\xda\x91\xbd\x00\xe8\x86\x00\x37\x5c\x2c\x9c\xd6\xc7\xa7\x0f\xd0\xd8\xfd\xfe\xfa\x6b\x14\x4f\xf1\x9a\x94\x8b\x69\x9c\x8d\x67\x78\x4b\xca\xc5\x2c\x1e\xcf\xf0\x05\xe1\x8f\xa7\x75\xad\x3c\x0e\xcf\x4e\xf8\xe3\xe9\x62\x16\x4f\xa5\xea\x5a\x4e\x2a\xb9\xa8\x22\x8e\xb0\x0c\xd5\x28\xee\x13\x4e\x08\x99\x9d\x4c\x17\x51\x45\x74\xa2\xa8\x83\x13\xb2\x87\x00\xca\x50\x6b\x93\x17\x45\x19\xc1\xcf\xbc\xb8\x8c\x38\x3a\x81\xdf\x3f\xbe\x38\x45\x98\xdf\x8b\x52\x17\x60\xe3\x04\xa1\xc7\xb3\x30\x8c\x92\xf1\x18\xa7\xf7\xc8\x29\xc2\x11\x1f\x91\x64\xb4\x3b\x23\xb3\xc5\xe6\x24\x8d\x37\x2e\xec\x66\xe3\x1d\x42\xf7\xd2\x33\x72\x2a\xaa\x8c\x46\x38\x3d\x11\x55\xa0\xf8\x5e\x8c\x4a\x0d\x45\xd5\x8f\x2a\x12\xf1\x7b\xe9\x78\x86\xdc\x46\x0a\x51\x81\xec\x50\x1c\x55\x84\xbb\x19\xbb\x8e\x82\x64\x8a\xd0\xbc\x38\x23\xdf\xcc\xe9\x92\x8d\xd6\x2b\x72\xfa\xf0\x61\x58\xe1\xf5\x88\x6c\x71\x75\x22\xb0\x09\x17\x0e\xee\x25\x8f\x1f\x17\x75\x85\xf3\x11\x29\xe6\xf9\xd9\xd4\xad\x94\xc8\x4a\x89\xac\x94\x43\x25\xc8\x1e\x6f\x57\x35\x99\x9d\x7e\x73\xef\x42\x05\xf8\xb9\x7f\xbf\xb1\xf7\x4a\x74\xd3\xf2\x76\xce\x48\xb0\x94\xf1\x08\x06\x4f\x74\x4c\x96\x55\x80\x0b\x9b\xac\x83\xf8\xaf\x02\x9c\xd9\xd4\x3f\x51\x46\xcb\x84\x17\xa5\x93\x9d\xd8\xec\xe7\xc9\x6e\x15\xe0\xca\x26\xbc\xa2\x7c\x15\xe0\x9c\x9c\x9c\x5f\xdf\xfb\xea\x04\xef\xc9\xc9\xdf\xce\x75\xde\x64\xb4\x78\x6a\xdd\xa3\x9e\xaf\xbe\x3a\xc1\x3b\x72\xf2\xb7\x68\x11\x4f\xeb\xe5\x6c\xfc\xed\xea\x7c\x7d\x0f\x7d\x75\x82\x37\x82\x5e\xd8\x88\x3b\x7f\xb3\x74\x46\x5d\x26\x1f\x56\x41\x3b\xed\x3b\xa0\x47\x1b\x39\x82\x5a\xfe\x35\xa3\xd7\x8d\xe4\xef\x8a\x22\xa7\x09\x6b\x17\xa6\x8d\xa4\x3f\xe6\x45\xc2\xef\x9f\x76\x75\x0a\x59\x8f\x1e\x74\x65\x3d\x63\xfc\x9b\x9e\xf4\xd9\xa3\x9e\x0c\xaf\x93\xc4\xcb\x7d\x01\x51\x4b\x1b\x55\x24\xa9\xd3\x48\xfc\x99\x5e\xfe\xf0\x7e\x27\x13\x2b\x2f\x47\x86\xed\x6e\x14\x7f\xf5\xe1\xea\xa2\xc8\x1b\x89\xbf\x64\x3d\xa3\x87\x8c\xa7\x79\x72\xb5\xa3\xeb\xbe\xfc\xee\xe9\x89\x1c\x67\x7e\xc3\x29\x76\x32\x41\xf8\x21\x2b\x14\x5e\xad\xbf\xd2\xe4\x2d\xe0\xd5\x8a\xa8\xe8\xa1\x6b\x62\x63\x69\xa4\xe0\xb8\x0c\xe8\x4d\x09\x0a\x42\x94\xdb\xe0\x30\xa4\x78\xeb\x94\xec\x0e\x05\x5e\xd1\x7c\xd3\x88\x03\x2e\x92\x10\x0a\x43\xf1\x5f\xfe\x6d\x37\x2d\x52\xf1\x05\x59\xd7\xf5\xb6\xae\xf5\x5e\x88\x02\x87\x33\x0a\x50\x84\xf0\x95\x37\xd2\x12\x85\x61\x19\x86\xc3\x72\xc2\x8a\x35\x15\x14\x4f\x18\x96\xf8\x39\xb9\x0a\x43\xb7\x18\x47\x61\xc8\xc3\x70\xc8\x9d\x62\x1c\x5f\x92\xe7\x61\xf8\x7c\x42\xdf\x0b\xa2\xbb\x22\x84\x5c\xd9\x37\xec\x1f\x3c\xc7\xf6\x10\x56\x37\xe2\xcb\xe9\x0a\x73\x08\xf5\x4a\x1b\x31\xa0\x9d\x92\xc9\x7a\x2d\xce\x68\xea\x85\x4f\xd6\xe1\xff\x25\xcd\x2f\xee\x41\x42\x17\x3a\xd8\xa0\x3a\xe3\xcb\x30\xcc\xc0\x4f\x0d\x5d\x8e\x46\xc5\x0a\xcd\x47\xa3\xe2\x71\x36\x47\x8c\xf0\x88\x61\xba\x2c\x56\xb8\xc0\xd4\x12\x91\x5e\xb4\x64\xed\xd4\x45\x06\xad\x55\x7c\x40\x18\xba\x41\x18\x4d\x74\x35\x5e\x48\x9c\x45\xbc\xfc\x70\xc3\xc9\x70\x18\xd1\x51\x10\xa0\x43\x9a\xf0\x74\x1b\x31\x74\x63\x02\x11\xda\x2e\xae\x6d\x17\xe3\x19\x66\x44\x47\x9d\xae\xb2\x8f\x76\x48\x74\xb2\x29\xca\x1f\x92\x74\xeb\xc6\x82\x10\xd3\x66\xcb\xd1\x88\xaf\xc8\xb2\xc4\x74\x75\x00\xc7\x3b\xa6\xe1\x8f\x1e\xf8\x4c\x35\x1b\xb0\x80\x46\x3c\x62\xc8\x7d\x6f\xff\xf2\xb3\xc7\x62\x46\x42\xe5\x28\x44\x23\xaf\x65\x7d\xc7\x1b\xf4\x7b\xa2\xd1\xcf\x49\x7c\x41\x9a\xa6\x60\xf8\x47\x72\xb1\x0c\xde\xbc\x49\x8b\x92\x8e\xff\x5e\xbd\xa9\xb6\x49\x49\xd7\x6f\xde\x04\x2b\xfc\x43\x5b\x1e\x77\xb2\xfc\xdb\x64\x35\xfa\xea\x64\x42\xdf\xd3\x34\xfa\x31\x0c\x7f\x9c\xbc\xa5\x1f\x2a\xfd\x7f\xf2\xec\x87\x37\x3f\xfd\xfc\xf2\xf5\xcb\xba\x0e\x02\x3b\x89\x45\x20\x4f\x92\xa8\x2a\x53\xf4\x66\x36\x09\x46\x34\x0e\x82\x43\x84\xf0\x2b\xf2\xde\x2c\x24\x7e\x4a\x5e\x34\xb8\x3b\xfc\x96\xbc\xb0\xf9\xff\x20\xf2\xfc\x8a\x82\xbf\x05\xa3\x57\x92\xf3\x7b\x8a\x26\x25\xdd\xe5\x49\x4a\xa3\x93\xe5\xf9\xf9\xdf\xbe\x9a\xdc\x1b\x2d\x22\xb4\x3c\x5f\xdd\x1c\xea\xd5\xc9\x25\x0e\xce\xcf\xbf\x0a\x03\xa7\x94\xdf\x43\x6d\xe0\x8a\x26\xf7\x16\xd1\x82\x9c\x9f\x9f\x47\xa8\x1e\x6c\x8a\x52\xdc\x43\x32\x61\x85\x44\x43\x5f\xcd\x26\xf7\x16\x01\x1a\x05\x5f\x05\x08\xff\x95\x5c\x2e\x2e\x26\xf2\x4e\xd1\xb1\xd9\xbf\x27\x17\x13\x39\x51\xfc\x1d\xb9\x98\xd8\x83\x12\xff\x44\x3e\x6a\x1b\xbc\x4b\xcf\x67\x39\x96\xa9\x08\xff\x17\xf1\xfc\x7c\xe3\xbf\x93\x17\x62\x8d\x60\x8c\xcf\xaa\x1f\x4c\x68\x6f\xfc\x33\x79\x3d\xa9\x76\x79\x96\x52\xfc\x8c\xd8\x36\x9d\x29\xc9\x21\x54\xf8\xcf\xe4\xaf\x8b\xbf\x4e\xb2\xca\x1f\xe4\x1f\xed\x50\xc4\x8a\x99\x01\xfc\x42\xae\x68\x74\x81\x03\x7d\x23\x06\x08\xff\xaa\x92\x9e\x27\xbb\x00\xe1\xdf\xd4\xd7\x4f\x65\x71\x95\x55\x34\x40\xf8\x4f\x2a\xe5\x15\xe5\x01\xc2\xff\xa1\xbe\xd4\xb1\x1c\x20\xfc\x95\x48\x91\xed\xe3\x40\xce\x2b\x40\xf8\x3f\xc9\x13\x1a\xfd\x82\xf0\x5f\xc4\xff\x5f\x11\xfe\x6f\xf1\xff\x37\x84\x29\x15\x3f\xfe\x84\x30\x87\x1f\xff\x81\x30\xa3\xe4\xfb\xc5\xf7\x16\x55\xf5\x14\x4a\x4a\x18\x5d\x30\x3a\x01\x46\xfd\xe5\x46\xa5\xdb\x63\xaf\xa0\x8d\xbd\xd5\x3a\xa5\x40\x52\x91\xe6\x34\x29\x23\x71\x42\xf1\xc7\x6c\x6e\x9c\x74\x98\xd0\xfd\xe2\xb4\x2c\xc5\x69\x59\x8a\xd3\xd2\xd9\xba\xd9\xef\xdc\x7e\xf2\x3b\xb7\x5f\x39\x11\x34\xde\x08\xae\xf9\xcd\x1b\x60\xf6\x61\x5e\xb6\x58\x4a\xad\xdc\xa1\x24\xd7\x54\x3a\x7e\x6c\x7b\x89\xb9\x53\xd2\x70\x48\xfd\xdb\x8c\xa2\x03\x5c\xd1\x1f\xa9\xf9\xf9\x54\x4b\x73\x02\xf1\x9f\x52\xb0\x0b\x1b\xfe\xbd\x95\x5a\xd7\x6f\x55\x1a\x22\x84\x41\xe5\x45\x8f\xf7\x7e\x01\xbf\x52\x9f\xad\x02\x54\xec\x31\x9d\xa3\x12\xfc\xf6\x47\x4e\x50\x9d\x43\xa4\x21\x8c\xd5\xb5\x12\x43\xe0\x42\xad\xea\xc1\x19\x19\x0e\x0b\x13\x82\x2f\x91\x22\xa9\xa1\xb8\x8e\xcd\xa8\x13\x54\xd7\xe2\xee\x0b\x64\x95\x80\x90\xa4\xae\x3f\xd0\x28\xc1\x05\x42\x75\x5d\x4a\x8f\xa9\x89\xd3\xa9\x75\x14\x43\x1b\x9e\x62\xc4\x22\x3e\xb5\xe1\x41\xc3\xf0\x0d\x8d\x4a\x29\xe5\x92\xd8\x3e\x04\xdf\x2b\x4a\x4a\x57\xd7\x32\xca\x0c\x73\x56\x6f\x4f\x9b\xa0\x30\x61\x81\xd9\x78\x3c\x47\xd9\x26\x7a\x43\x21\x82\x01\x10\x04\xc6\xe4\x97\xa9\xe1\x8d\x67\xb6\xad\x9d\x1c\x5e\x89\x53\xbc\xc7\x3b\xbc\x96\xc3\xdc\x8a\x4b\x3a\x0d\xc3\x68\x4b\x76\x8b\x34\xa2\x2a\x0f\xde\x8a\x4a\xd3\x60\x18\xe6\x56\xb7\x0c\xe5\x87\xef\xc5\x7a\xfb\x82\xbf\x0b\x89\x5c\x22\xfb\x02\xc4\x84\xdb\x4e\xe7\x79\x6a\x25\x20\x16\x93\xe5\x0f\x9c\x18\x36\x3c\x0c\x03\x29\x6c\x0e\x6c\x18\xd6\xe5\x74\xe5\x62\x96\xf4\x9a\x2e\xe0\xc8\x26\xd2\x1e\x8d\xca\xff\x58\x7c\xef\xf6\x1c\xbe\x77\x7b\x2e\x6e\xd6\x88\x22\x3c\xe4\xa8\x85\xd4\x56\x1a\x07\xe8\x65\x00\x0b\x5b\xb3\xae\x23\xae\x30\xae\x44\x12\xe5\xca\x39\x32\xb2\x49\x33\xd8\x43\x44\xf1\xd6\x09\xc3\x75\x45\x2e\x41\x7f\xf7\x9c\x5c\x11\x52\xd4\xf5\x15\x21\x10\x0a\xf9\xa5\x0b\x30\x7f\x0c\x10\xb7\xcd\x52\x77\x10\xd9\xd1\x0d\xf0\xe3\x03\x4a\x0f\xd3\xa1\x2e\xd2\x62\xf7\x21\x62\x72\xaa\xca\x56\xbc\xc5\x41\x10\x72\x05\x83\x61\x75\xfd\x3c\x0c\x87\x3b\xe8\xf6\x8d\x33\xa6\xdd\x82\xc6\x52\x72\xbb\xed\x08\xa7\xdb\x49\xbc\x39\xc3\xaa\xeb\x77\x62\x82\x8b\x9b\x43\xfc\x9e\x46\x9c\xfc\x24\x5a\x5e\xfc\x57\xc4\x91\x68\x14\xd6\xfe\x10\x3d\x17\xd9\x47\x16\x43\x63\x98\xc0\xd3\xe7\x52\x0b\x2a\x8e\x05\xdc\x59\x8a\x86\xe1\x96\x46\x1c\xbf\xa0\x40\xe2\xa2\x43\xb4\xc5\x54\x07\x44\x13\x28\xba\x59\x5e\xad\x1a\x93\xdb\xb6\x44\x2a\x8a\x0c\x16\x34\xb0\x3b\x9d\x79\x75\x9d\x09\x02\x94\xa3\x9b\x34\xa9\x68\x37\x0f\x1a\xab\xc6\xd7\x80\xf6\x5e\x39\xc3\x7a\xc6\x5e\xb2\xe4\x3d\x63\x57\xf4\x1a\x8d\x9a\x75\x2d\x37\x1b\x1f\x41\x59\xbe\x10\xdd\x4e\xa4\x7e\x06\xc5\xfa\x97\x2b\xd6\xf5\xf1\x86\x61\x3a\xb9\xf8\xc0\xa9\xd4\x0a\xa9\x8f\x1f\x25\x2a\x1d\x80\x34\xf6\x87\xe1\x33\xc5\x71\x3b\xcf\x70\xc5\x7e\x9e\xc3\x16\xb7\x32\x0c\xe3\xd8\xca\xe9\xe9\xc8\x65\x53\x3b\x72\x7c\x3e\xb5\x5d\xa0\xa7\x3f\x8f\x53\xfd\x7d\x81\x9c\xb7\x00\x3c\x48\xba\x7a\x74\xa2\xa2\x3d\x89\xf8\x82\x45\xd7\x70\x6a\x4d\x51\x0c\x3f\x3e\xe0\x56\x5f\xb2\x4d\xcc\x1a\xcb\xa6\xc5\x08\xfe\x8c\xb5\x60\xc0\x47\xbd\x26\xe6\x69\xc1\x42\x7b\x80\xfa\xf8\xee\x3a\x8e\x64\x68\x0a\x9c\x4b\x6e\x82\x22\x47\x6d\x63\x5c\x32\x8b\xc3\x55\xff\xc6\xe2\xcc\x54\xb0\xa8\xee\x04\x8b\x97\x1a\x16\xf0\xe3\xdd\x9d\x61\xa1\x25\x1f\xba\x93\x82\x50\x5c\x52\x15\x8b\x27\x2a\x55\x68\x8a\x02\x89\x33\xea\x20\x9a\xb8\xc2\x3b\x88\x18\x75\x58\xd7\x75\x24\xe3\x12\x56\x54\x1e\xc5\x97\x64\x2d\x28\x74\x75\xc1\x5d\xea\x83\xe5\x52\x7c\xad\x81\x48\x13\xf7\x00\x1e\x5e\x20\x51\xfa\xa3\xe7\x0a\xae\x83\xa0\xf2\xdc\xf9\x45\x96\x55\x84\x2b\x74\x51\xc6\x47\x09\x21\xed\x75\x19\x17\xf6\xd2\x52\x17\x14\x5d\x16\x23\x15\xcd\xc8\xdc\x0f\x07\x41\x73\x88\x85\x11\x53\x7c\x21\x8e\x56\x20\xb6\xe2\x17\xd4\xe9\xf8\x68\x87\x1e\xe5\x0a\x3d\x85\xe1\x10\x14\xad\x40\x7a\x60\x86\x29\x9a\xa3\xf9\x21\xfa\x58\xd7\xd4\x09\x22\xcd\x70\x81\x6e\x3e\x2a\x41\x42\x41\xd8\x0a\xe1\x9c\x46\x5b\x5c\xe0\x1d\x8d\x98\xa2\x45\x0a\x4c\xf1\x1a\x21\xc1\x05\x6f\x9d\x30\x83\xd4\xa1\x3a\x15\xbd\x01\x77\x32\xc5\x3f\x84\xe1\x0f\x32\x9e\x93\x20\x00\x5e\xcb\x1c\x71\x95\x2d\xfe\x11\xef\xd1\x84\xd3\x8a\x47\x4f\xe0\xba\x55\x17\x8f\x69\x74\x4d\x8f\xa3\xb2\x73\x24\xba\x7b\xfc\xbb\x88\x23\x58\x62\xf9\x41\x21\x48\xa3\x69\x74\x4b\xed\x65\xc2\xea\x3a\x62\x10\x5b\x5b\x43\x50\x49\x58\xb8\x5d\x27\x10\xa4\x48\x29\x3e\xe1\xcb\x62\x85\x2b\x52\x2e\xca\x88\x2d\x93\x15\xa6\xe2\x4f\x02\xf0\xd4\xfc\x50\x2e\x20\x95\x60\x13\x01\xb0\x5a\x88\x42\xb1\x75\xab\xe6\x08\x30\x2e\xa8\xef\xfe\x4f\xf3\x05\xed\x45\xd6\x50\x48\x2d\x0a\x38\x44\x57\x5d\x07\x0c\xce\x11\xf5\x51\xc1\x46\x52\x1f\x17\xf2\x6e\x13\x5f\x8b\xc0\x04\xdf\x82\x77\x4e\xb1\x8a\x7e\x41\x0f\x11\x47\x0b\xb6\x6c\xd1\x71\x7c\xa1\x93\xe2\x60\x9b\x54\xdb\x60\x15\xb3\xc9\x55\xb2\x73\xc2\x2a\x7a\x53\xe8\xbc\xf9\x65\x27\x74\x21\x41\x12\x0b\x9a\x59\x11\x3e\x7a\x9a\x34\x62\x68\xc1\x14\x04\x0f\x85\x6b\x37\x00\xec\x56\xdb\x36\x4a\x33\x50\x5f\x2d\xbe\x02\x89\x15\x1c\x09\xd8\xab\xb9\xa6\x2d\x9f\xa6\xae\xa9\x84\x8e\xb2\x20\x8b\x0d\xbc\x66\x97\x74\xd5\x68\xec\x92\xf2\x0e\xea\xd8\xab\x24\x4e\x96\xaf\xcc\x4d\xb4\xa4\x7a\x43\x07\x6f\xde\xe4\xc5\x3a\xa9\xb6\x6f\x04\x04\xdf\x18\xe1\xe6\x9b\x37\x01\x84\x1a\x53\x60\x31\x91\xd1\x9f\xda\xd7\x90\x0b\xd1\x8c\x06\x8b\x3f\xa0\x6d\x52\xdd\x3a\x20\xd5\xe0\x57\x0b\xc3\x15\x40\x7b\x4e\x07\x8d\x46\x3d\x1f\x7f\x5e\x74\xce\x06\x74\xc8\x57\x61\x68\x63\x5c\x2e\x8e\x4c\x31\x96\xf6\x26\x07\x9c\x7d\xc2\xaa\x2e\x57\x8d\xf2\x1d\x6b\xd9\x31\x61\xcc\xc8\x9e\xc2\xbc\xe6\xfa\x20\x62\x8f\xa7\xc0\x75\x10\x62\x5d\xdf\x2f\x54\xa0\x84\xf8\x67\x0d\x08\x86\x67\x70\x61\x35\x7a\xbd\xc3\xa2\xb7\xba\x1c\xb0\xc7\x53\xbd\xa4\xe2\x54\x5f\xce\x9a\x73\x69\xae\x9c\xaa\xb7\xd7\xbe\x9b\x74\xcb\x14\x9d\x8d\x67\x8d\xba\xed\x05\x72\xdf\x04\xea\x9a\xa5\x18\x13\x73\xc6\x54\x3e\x9e\x2e\x98\x0e\xec\x8f\xf9\x0a\xc5\x6c\x59\x8a\xa1\x11\xbd\x3a\xc9\x27\xac\xce\x8d\x58\x64\x88\xc1\x55\x50\x7c\x95\x40\x28\xaf\xe8\xd7\xba\xce\x28\xc2\xf2\xb4\x50\x99\x87\x46\xbb\xfd\x3b\xf2\x82\x6a\x8b\x55\x55\x08\xec\x7a\x92\x63\x8b\xd1\xae\x29\xaf\xfb\x46\xb5\x1e\x68\x3b\xd5\xe4\x41\xd0\xa8\xd6\xbb\x13\x9c\x8a\x92\x88\x50\x4f\x9b\x0e\xb8\xfa\x04\x10\x4a\xb9\x4f\xa3\xce\x2d\x07\x96\xae\xec\x42\xa8\xba\x03\x84\xfc\xca\x1a\x48\xd5\x1d\x80\xe4\xd7\xd4\x70\xaa\x3e\x19\x21\x41\xad\x30\x70\x22\x43\x66\xd4\x58\xbb\x78\x85\x86\xbf\xd6\xb5\x96\xfd\x3c\x9e\x7d\xfb\xad\xa6\xda\x4a\x17\x77\x01\xdc\xf3\x46\x17\xd2\x6c\x86\x46\xa5\xbd\x66\x1b\xeb\x23\x03\xf8\x52\xf2\x6c\xf1\x31\x7a\xa6\x05\xb0\x71\xcb\x8e\x4e\x1c\x3d\x97\x9d\x8b\x60\xa4\x5f\x07\x47\xd5\x43\x5d\xe4\x18\x0e\x23\xae\x42\x48\xf2\xc5\xb7\xd3\xe9\xd7\xb3\x6f\xbf\x3d\x7d\xf8\xe0\xeb\x07\xd3\x6f\xbf\x9d\xc5\x5c\x1c\x44\xce\x3d\xad\xb8\xf2\xba\xde\x49\x12\x08\x9c\x14\xd0\xb3\xf1\x2c\x0c\xe9\xff\x6f\x46\xc8\x34\x0c\xe9\x63\x87\x6e\x79\xe7\x10\x43\xa0\x61\x73\xf9\x5f\xc7\xa9\x71\x64\x79\x7f\x7b\x8f\x87\xa1\xa3\x7d\xa8\xeb\x17\x8e\xc8\x0a\x48\xaf\x1b\xc7\x02\xec\x86\x97\x1f\xf4\xa4\x5f\x99\x49\x4b\x0d\x0f\x47\x37\x07\x27\x9b\x8e\x82\xc0\xc9\x51\xb0\x0f\x02\x47\xbf\x44\x7d\x29\x00\x01\xa2\x84\xaa\x57\xd6\xe2\x4a\x3a\x44\xbf\x84\x61\x07\x37\x3d\x24\x97\x14\x28\xb8\x5f\xe0\xaf\xc3\xca\x47\x33\x84\x50\x5d\xff\x1a\x86\xaa\xc4\xaf\x68\x48\x92\xba\xfe\xcd\x69\x47\x09\xcc\x55\x33\xbf\x4d\x4a\x5a\x15\xf9\x3b\x1a\x89\x8a\x7f\x32\x15\xff\x84\x86\xa4\xaa\xeb\xff\x70\x2a\x1a\x05\xa7\xe9\xff\x3f\x80\x6e\xbd\xec\xba\x7e\x0c\x4e\x60\x47\x85\x6f\x45\x38\x7c\xe1\xad\x92\x11\xa5\x13\xb6\x78\x02\x51\x45\x15\xcd\x98\x6d\xa2\x12\x29\x11\x46\x29\x45\x18\x83\xff\x54\x5c\x50\x07\x64\x24\x2f\xf6\x17\xcd\x26\x25\xf2\xfb\xbf\x9b\x15\x0c\x08\x64\x3e\xa5\xba\x42\x25\x13\x38\x6d\xd6\x30\x73\xb7\x5a\x3c\x49\x93\x5f\x53\xa5\xe9\xca\x2a\xf8\x6f\x77\xc0\x47\x87\xee\x1f\x18\xdd\x61\x87\x40\xaa\x85\xf8\x6d\x64\x27\xcd\x3d\x63\xe5\xc3\x28\x0c\x87\xc0\x39\x80\xde\xed\x25\x25\x7f\xf6\xe2\xd6\xaa\xfd\x37\x73\xb6\xe6\x6b\x67\xbb\x00\x37\xb2\x30\x8b\x15\x07\x81\xe1\x79\x41\xe8\xc7\x09\xc9\x2c\xca\xbe\xa7\x9d\xf4\x36\xc8\xd2\x23\x2b\x4c\x17\xb4\xb5\xbb\xd3\x9c\x2d\xf5\xc2\x05\x0a\x40\x68\x91\xc2\x2b\xbc\x86\x61\xe6\xf0\x9d\x2b\x65\xfc\x63\xa4\x78\x57\x4e\x96\xab\xb9\x67\x87\xa9\x58\x60\x8a\xd0\x53\xd7\xf6\x32\x70\x90\x2b\x18\x12\x06\xbb\x5c\x9c\x94\x56\xc6\x0e\xcc\xfb\x81\x1b\x4d\x75\xc7\xc1\x06\x72\xe6\xe1\x14\x08\xa0\x03\xb2\x51\x5e\xb0\xa3\x88\x1f\x9a\x75\x63\x0b\x16\x77\x66\x80\xee\x5e\xfc\xe9\xce\xbe\xce\xd8\xba\xb8\x5e\xc8\x7f\x31\x04\x19\x03\xfb\x98\x07\x77\xb2\x8f\xe9\x56\x33\x96\x5a\x37\xc9\x94\x54\x03\xe1\xe2\xce\xd6\x08\xd9\xef\x6a\x8d\x90\x08\xbc\xca\x8e\x59\x23\x54\x2d\xad\xb0\x55\xba\xe6\x24\xd1\x4a\xcd\x3d\xc9\x17\x79\x5b\x1d\xb7\x23\xfb\xc5\xde\x54\x68\x29\xe3\x36\x0a\xc3\xda\x92\x79\xab\x04\xc8\x36\x51\xc7\x3e\x35\xbc\x63\xda\xa3\x79\xea\xd5\x29\xb5\xe4\x38\x84\x54\xe6\xfa\xf0\x24\xd7\x3b\x77\x27\xaa\x1b\x6d\x64\x36\x65\x30\x0d\x94\x19\x1b\x25\x64\x3c\x3b\x99\x2e\x82\xf1\x34\x88\x79\x0f\x16\x43\xfd\xb9\x89\x52\x2d\xef\xdf\x88\x13\x8a\x16\x41\x10\x6f\x22\x10\x3b\x94\xfa\x8e\x5d\x50\xa3\x94\x66\x5a\x4d\x1d\xd3\xff\x05\xbc\x7f\xd8\x13\x2d\x02\x17\x38\xeb\x32\x22\x48\xda\x46\x04\x15\xc9\x7c\x94\x69\xe8\xf1\xf7\x1a\xfe\x5a\xdd\xbc\x23\x89\xad\xb0\x21\x51\x49\xba\xf5\xe3\x85\x4a\xc7\x1d\xa7\x45\x19\x15\x20\x9b\x42\xf3\xee\xe5\x00\x51\xfe\x5d\x91\xa6\xae\x5b\xb7\xe6\x90\x18\xec\xf0\xb1\xef\x77\x31\x52\xb1\x68\xa9\xac\x99\x38\xd1\xd1\xe8\x74\x64\x50\x9d\x3f\x55\x2a\x9e\x5c\x73\x8d\xde\xe9\x8b\xc4\xd9\xdb\xa6\xc8\x3a\x68\x31\x16\x86\x1e\x31\xcc\xc2\x50\x2d\x13\x43\x84\xec\xb5\xdd\xe0\xa3\xbe\x68\x22\xfd\xa7\x46\xd1\xb8\xa4\x8f\x9d\xfa\xed\x83\xa1\xae\x87\x05\xec\xe3\xcf\xda\xf2\x4a\x60\x4d\x48\x69\xb6\xbc\x9a\xc8\xd7\x77\x3b\xe0\x8f\x5a\x22\x16\x5d\x96\x88\x19\xbc\x5c\xe8\x37\x0b\x6c\x66\x39\x66\x81\x59\x8f\x59\x60\xd6\x67\x16\x98\xf5\x99\x05\x66\x7d\x36\x7a\xcd\x8c\xa6\x8d\x5e\xd6\x6b\xa3\x97\x1d\xb3\xd1\xcb\x96\x5d\xa6\xa2\x5e\xa5\xae\x86\x1a\xc6\x98\x59\xa7\xd5\x65\xd6\x6d\xa2\x99\xb5\x8d\x31\xb3\x0e\x4b\x41\x17\xdc\xc6\x1c\xd5\x4b\x56\x76\x83\x59\x97\x11\x65\xd6\x65\x44\x99\x75\x19\x51\x3a\x89\x60\xcf\xea\xa7\x18\x8b\xca\xec\x98\xcd\x62\x72\x67\x2a\xa1\xfa\x5d\xa9\x84\x5c\xb0\x2d\xd5\x31\x2a\x61\x7f\x07\x9b\xc5\x1d\xd9\xdf\xc5\x66\x71\x43\x76\x61\xb8\x73\x6c\x16\xf7\x78\x4d\x36\x61\x98\x4c\xd4\x93\x0d\xec\x3f\x42\x2d\x3f\x28\xfb\x33\xa8\x56\xd2\x7f\xec\xb3\x92\x3a\x3f\xa3\x60\xcf\xb3\x3c\x40\x13\x01\x08\x13\x26\x9c\xd6\xf5\x3a\x0c\xd7\x93\x8b\x8c\xad\xe1\xed\xab\xf9\xa9\xcb\xbb\x0c\x63\x84\xf0\x05\xd9\x86\xe1\x76\x92\x55\x62\x9c\xeb\x06\x7b\x71\xa5\xcf\x3e\xc5\x1d\x31\xcd\x0f\x48\x26\x69\x1a\x5b\xa5\x3a\x1c\xca\x4a\x4f\x35\x6b\xa6\x63\xb6\x9c\xae\x54\xe6\x69\x67\x26\x66\xcb\x99\x2e\x71\xbf\xbf\x04\x66\xcb\xd3\x95\x13\x22\x25\xd9\xed\xf2\x0f\xa2\x80\xe4\x4c\x9e\xe3\x4b\xfc\xa1\x65\x15\xf8\xae\xeb\x42\x7f\xd2\xbe\xd0\xdf\x90\xbc\xc7\x2a\xf0\x9a\xbc\xb3\xe7\xfc\x47\xf2\xa4\x79\xd5\xbf\xbc\xcd\x6a\xf0\x4d\x18\xbe\x51\x56\x83\x6f\x3e\xcf\x6a\xf0\x35\x79\x62\x87\xf0\x9e\x5c\xfb\xa4\xc5\x0b\xd7\x4c\x50\xe5\x7d\xfc\x5f\x32\x13\xfc\x91\x6c\x16\x79\xc3\x4c\xf0\x07\x92\x6b\x8a\xfa\x15\xc9\x5d\x33\xc1\xa7\xe4\xc7\xc5\x8f\x93\x24\xcf\x8b\xf4\x17\x56\x25\x1b\x43\x62\xbf\x25\xd1\xf3\x1e\x02\xe9\xf2\x08\x81\xf4\x3c\xba\x94\x04\x12\xfe\x47\xc3\xbc\xf0\xaf\xe4\x49\xb7\x79\xe1\xf7\xe4\x83\x36\x2f\xfc\x8e\xfc\xb0\xf8\xc1\xc0\xf9\x75\xa2\x49\x7b\xfc\x53\xf7\xde\xcc\xad\xb1\x9f\xff\xc0\xce\x59\xd3\xe8\xe6\x80\x83\x00\xdf\x1c\x10\xa6\x8d\xcd\xf7\x5f\x30\xf9\xa6\xb9\xe2\xdf\xe5\xb3\x8e\xab\xe4\x3d\xfe\x99\x88\x33\x7f\xc2\x8a\x6b\xfc\x4c\x74\x96\x6b\xcb\xc4\x3f\xbb\x5d\x1b\x3b\xc3\x3f\xf6\x44\x52\xb2\x34\x97\xc9\x97\x96\x34\xc3\x27\x34\x32\x66\x50\xd2\x9e\xe5\x1f\x9a\x51\xf8\x87\xd8\xcf\x8e\xb4\x91\x70\xd7\xca\xc6\xda\xd3\xd8\x02\x6a\xfc\x4c\xcc\xcd\x1e\x22\xbf\x34\x0c\xfb\xb4\x42\x6a\x1a\xfb\x36\x44\xff\x94\x79\xdf\xaf\xff\x8a\x4e\x7e\xfb\x57\x74\xf2\xa7\x1e\x5d\x07\x80\xfd\x57\x13\xe2\xb3\xca\x3e\x52\xc2\xe1\x9f\xad\xfb\x1f\xae\x10\x58\x46\x46\x2e\xc9\x90\x85\xe1\x05\xfc\x2e\xe0\xf7\xb0\x04\x01\x1c\x45\x38\x33\xdf\xc3\x22\x0c\x41\x99\x8e\x13\xc2\xea\xba\xac\x6b\xc1\x3f\xe3\x8a\x24\xbf\x8f\x91\x61\x4a\x2a\x17\x62\xf0\x10\xd0\x31\x2f\xfc\xa8\xc5\x2c\x39\xaa\xeb\xc4\x33\x2f\xcc\xeb\xba\x00\x41\x10\xd8\x8c\xc8\x84\x60\x97\x94\x94\xc1\x87\x36\x47\x94\xa6\x27\x2a\xdb\x2a\xaa\x9d\x84\x97\xa6\x01\x54\xd7\x7b\xb1\xb5\x52\x84\xea\xba\x92\x22\x9c\xdc\xcc\xa0\xb2\xe0\xfd\x4a\x5f\x87\x8e\x3d\x62\x18\x0e\xb7\x14\x2c\x11\x31\x43\x75\x6d\xd4\x72\x22\x23\x52\xa6\x8a\x28\x0c\xff\x5b\x55\xb5\x8d\xfd\x67\x87\xf5\xe3\x47\xd7\xfa\x71\x7b\xdc\xfa\xb1\xdd\xe2\x5f\x6e\x35\x7e\xdc\xde\xd5\xf8\x51\x37\x7e\xe3\xa8\xac\x41\x2a\xf0\xd3\xe2\x27\xc8\xba\x49\x0b\xb6\xc9\x2e\xf7\x70\x82\xc6\xc3\x29\xa6\xe6\x3c\x15\x5f\xf2\x39\x31\xc3\xd7\xea\xe5\x24\xbc\x2c\x8e\xa5\xbd\xe6\xe1\x97\xbb\x6b\x6a\xfe\xbc\xf8\xb3\x51\x30\x63\x8b\xf7\xd3\x03\xfe\xe5\xce\xfa\xc9\x5b\x54\xcd\x5e\xfc\x61\xd1\xfa\x98\x70\x78\x89\xc7\xfd\x4e\xee\xa8\x83\xfe\xf3\x17\xd0\x41\x7f\xec\xd3\x41\xff\xf2\x79\x2a\xe8\x3f\x37\x54\xd0\x1f\x5d\x15\xf4\x2f\x9f\xac\x4f\x6a\x02\x6c\xe4\xc2\x79\x31\x8d\x67\x98\x2d\xe9\x8a\xfc\xf9\x93\x95\xd4\xbf\x7e\x8a\x8e\xda\x47\x87\x5f\x3f\x47\x5d\xfd\x97\x4f\xd0\x56\x7f\xef\x69\xab\xc7\x63\xd3\xbb\xd4\x5c\xff\xfa\xc9\x8a\xeb\xbf\xdc\xaa\xb7\xfe\xf5\x76\x1d\xe1\x5f\xba\xb5\xd6\xbf\x7e\x86\xd2\xfa\x2f\x2d\x9d\x75\x34\x1a\xd9\x59\x7a\x0a\xec\xb6\x06\xfb\xb7\x5b\x97\x4e\xae\x14\xee\x53\x66\xff\x62\x74\xd9\xcf\xea\xfa\x57\x4f\x95\xfd\xcb\xc1\x6f\xbf\x77\x7d\xd3\x0e\x3d\xf6\xb1\xed\xfd\xdb\xed\xea\xdb\xb4\xad\xe0\xfe\xed\xf6\x65\x49\xdb\xfa\xed\xdf\xee\xb0\x24\xb6\x1a\x2e\x09\x83\xd1\xce\xbb\xf5\xa9\x6a\xdf\xc9\x32\x04\x5e\x24\xcf\xd4\x4a\xfc\xe9\xd3\xf4\xe0\xbf\xfa\xfb\xe8\x4f\x9f\xb3\x8f\xf8\x11\x70\x2b\x1a\x05\x33\xbf\xed\x4f\xd2\x96\xff\xe9\x73\x95\xe5\x7f\xfa\xa7\x75\xe5\xbf\xf6\xa8\xca\x9f\xdd\x55\x55\x2e\x81\x30\x1a\xc9\xa5\xea\xd7\x9e\xff\xd6\xaf\x3c\x97\x4d\x38\x0d\x48\x6d\x3a\xa5\xb8\xf5\xea\xdd\xde\xfe\xa5\x20\xd0\xb4\x24\x59\x12\x7b\x4c\xd2\x77\x99\xa6\x0a\x12\x41\x15\xdc\x48\xff\x15\xd9\x92\xd2\x45\x12\x8f\x46\xe5\x0a\xe6\x07\xde\x9e\xa2\x62\x59\xad\x70\x85\x0b\x84\x2e\x4a\x9a\xbc\x35\x7c\xb7\xa3\xe8\x63\x4d\x0d\xa4\xb5\x35\x03\x57\xca\x56\x98\xa6\x4f\xfc\x55\x10\x3b\x12\xa8\x3c\x5f\x05\xf1\x77\x61\xf8\x9d\xa7\x68\x5b\xb4\x91\xce\xd0\x46\xdf\x21\xcc\x08\x5d\x7e\xb7\x9a\x0b\x3e\x4c\xfc\x50\x8c\xc7\x5c\xce\x7b\x38\x55\x5c\x56\x86\x6e\x94\xab\x96\xd7\x5a\x2a\x6a\x8e\xb7\x30\x8c\xf8\x02\xea\xb2\x58\x11\x06\xe2\x0b\xe1\xe2\xd0\xd4\x14\xaa\x2a\xaf\x5d\x65\x8a\xa5\x94\x4a\x77\xfe\x6f\xa8\x2f\x97\x75\x64\x84\x84\x30\xff\xa5\x51\xe1\x9b\x6c\x3e\xe9\x7b\x6a\x34\x1c\xbe\x0c\xc3\x97\x40\xf5\x1d\x54\x28\x85\x0f\xa0\xd3\x7c\x11\x33\x65\xbe\xd9\x50\x00\x74\x59\x12\x5c\x7f\xa6\x25\x01\xf0\xd2\x66\xcc\x99\x36\x56\x90\xc3\x6d\xbf\x4b\xd0\x8b\xb5\x5c\xf5\x3a\xb5\xb1\xca\xd4\x6e\x6d\xa9\xd2\x03\xec\xa8\xd4\xeb\x3b\xba\xd8\x52\x92\xbe\x51\x43\xef\x5a\xd6\xb5\x60\x1a\x0c\x7e\x94\x02\x46\xea\xba\x2a\xbb\x1e\xdd\x26\xd4\xf5\xb7\x41\x87\x40\xd8\x72\x1a\x71\xc7\x16\x37\xc3\x09\x4c\xb4\xa8\xeb\xa8\x20\xd2\x58\x01\x3f\xa1\x51\x86\xd0\xb0\xf9\x2a\x02\x17\x18\x8a\xcb\x9d\xb4\xa1\xa0\x1e\xc6\xa9\xf8\x25\xb6\x24\xe8\x86\xc4\x51\x96\x82\x62\x23\x47\x82\x8d\x60\x38\x47\x73\xf3\x0c\x66\x8f\x77\x24\x5b\x64\x51\x85\x53\xcc\x46\x41\x80\x45\xcb\x89\x36\x50\xc0\x1b\x62\x36\xd4\x0e\xf4\x86\xb2\xaf\xb5\x60\xf1\x52\x84\xb7\x64\xb8\x06\x96\x2e\x45\xf8\x02\x7e\x0f\xb7\xc0\xce\xa5\x68\xbe\x23\x29\x96\x0f\xb3\x2f\x16\x57\x34\xaa\xd0\x62\x47\xaa\xf8\x0d\x8d\xf6\xa4\x42\x61\xf8\x9c\x46\x7b\x91\xd4\x75\x30\xfe\x53\xcf\x7c\x2a\x14\x6f\x17\xd1\x86\x0c\x67\xb8\xd9\xfa\xb1\x07\x3c\x86\x57\x2c\xc9\xd3\xc5\xd3\x88\xa1\xb8\xe3\xd5\x40\xf3\x2d\x4f\x89\x70\x79\x88\x52\x41\x88\xa1\xf8\xa2\xa7\x57\xfd\x44\xe1\x6e\x56\xfa\x3d\xa6\xcd\xaf\x5c\xd3\xe6\x57\xca\xb4\xf9\x0b\x3d\x79\x50\xe3\xdf\x91\xe5\xaa\x65\xa8\xf0\x86\xf6\x69\xeb\x18\xed\xd0\xa1\xbd\xbd\x45\x87\xf6\xf1\xcb\xeb\xd0\xae\xad\x0e\xed\xfd\x21\x4a\x51\x5d\x5f\x08\xfc\x5b\x44\x3b\x52\xe1\x0b\x85\x78\xb7\xda\xf8\xdb\x87\xf6\x43\x36\x6f\x5b\x87\x67\x02\x27\x13\xd7\x3a\x3c\x7b\x9c\x98\x2b\x8c\x2f\xb3\x15\x4e\x95\x75\x78\xb5\xc2\x54\x5e\x5e\xae\x75\xb8\xd9\x46\x69\x18\x46\x29\x11\x25\x10\x2e\x16\xff\x1d\x31\x5c\xe1\x14\xc5\xff\xa9\x7e\x58\x63\xf1\x88\x62\xb0\x20\x41\x80\xd2\x4f\xc4\x44\xc2\x70\xf8\x41\xfc\xaf\xeb\xa8\x6b\x4a\xb7\xbf\xfd\xda\xe9\xb7\x5f\x7f\x8c\xde\xca\xa6\x53\x84\x50\x2c\xd0\xf6\xb0\x09\xc3\x28\x01\x14\x4b\xf1\x0e\xe1\x22\xda\xe1\x14\x97\x70\xbe\xe0\x44\x93\x59\x29\x42\x58\x1e\x22\x3b\x04\x2f\x31\x38\x58\xc1\x27\x14\x4e\x34\x7b\xac\x48\x53\x79\x38\x90\x12\x24\xda\xd0\x47\x4b\xd1\x86\x48\x15\x86\x51\x45\x32\xd9\x70\x82\x2b\x74\x38\x20\xfc\xd1\xbd\xb0\x2a\xdf\x96\x6c\x4d\xa3\x26\xed\x61\xac\x7a\xfe\x1e\x39\x9c\x1f\x35\xcc\x54\xcc\xf1\x14\x61\x57\x44\x69\x88\x95\x44\xdf\x94\x58\x3d\x01\xf8\x7b\xa4\xe9\xab\x31\xd4\x4a\xd4\xb9\x93\x19\xef\x0a\xc9\xb2\x58\x91\x72\xc9\x47\xc5\x6a\x2e\x2a\x19\x34\xa9\x54\x51\x88\xc7\x22\x0a\xf3\x39\xaa\x64\xe1\xc2\x9c\x51\x15\xc8\x22\xa2\x04\x61\x50\x72\x08\xb2\xbb\xd2\xc0\x7c\x4f\x11\x96\x3a\x6b\x33\xf9\xf4\xff\xf9\x6f\x05\xf2\x2f\xf0\x56\xa0\xf0\xdf\x0a\x98\xb6\xf7\x5e\xdb\x9e\xd9\xd6\x27\x18\x65\x32\x0b\x10\x30\xa7\x2a\xee\x66\x9a\xb9\xfb\x82\xa6\x99\x4f\x90\xff\xa8\x46\x5d\x58\x4d\x9a\xc3\x37\x3f\x1b\x3a\x2f\x6f\xf9\x4a\x10\x80\xee\xe2\xd9\xcb\x4e\x80\x13\x2e\xee\x2e\xa6\x6a\x8a\x19\x99\xb6\xd0\x49\xb3\x1f\x3f\x47\x08\x17\x64\xf6\x68\x1c\x95\x63\x26\x0f\x77\x52\xe2\xe2\x6c\x0a\xc3\x1b\x8d\xf8\x19\xf9\x66\x3a\x35\xde\xb5\xf4\x6e\x5a\x4e\x57\x2a\x1a\x8c\x6d\x5b\x6b\xcd\x14\x71\x61\xca\x0a\xec\xff\x69\xd1\x89\x17\x3f\x45\x14\x07\x5a\x2b\x12\x1c\x17\xfe\xcd\x94\xf0\x2f\x62\x84\xe3\x96\x91\xe0\x80\x1d\x90\x2f\x15\x94\x77\xd2\x21\x7e\x4f\x1d\x9d\xc1\xf6\x76\xbb\x55\x78\x44\x4d\x49\xe9\x1c\x43\xa6\xbc\x99\xd3\x21\x42\x68\x51\xd2\x2e\x7a\x5e\xd1\xea\x1f\x3b\xde\xdf\x0f\xff\xda\x4a\x3c\xe0\xab\x5e\x23\xcc\xe7\x9d\x46\x98\xef\xa8\x67\x3e\xf9\xc1\x98\x4f\x5e\x52\xf2\x5f\xb7\x99\x4f\x7e\xe8\x24\xb4\xcd\x05\xcf\x1c\x56\xbb\x43\xed\x2f\xd1\xf3\x88\x9b\x2a\xbf\xc0\x93\xea\x03\x4b\xfb\x32\x7f\x2a\x8b\xf7\x1f\x20\xb1\x69\x0b\xfd\xcf\x58\x96\x36\xcc\x9f\x5b\x27\xa6\x05\xe3\xdd\x4c\x3e\xdf\x74\x2e\x41\xc3\x66\x46\x99\xd2\x5e\x1c\x7d\x6b\xc8\x5d\xf7\x35\x62\x4b\x5c\x74\x72\x83\x0a\x7b\x1a\x8b\x3c\xcc\x96\xb0\x34\xab\x43\x8f\x89\x2e\xa0\xca\xe2\x3f\xc0\xe2\x13\xc5\x99\x63\x52\x8b\x5f\x53\x12\xbd\x6c\x7b\xb1\x43\x37\x96\x5d\x01\xf3\x7f\xcf\x43\x8f\x4f\xac\x3b\x2f\x1d\xcb\xb3\xd9\x82\x2f\xcb\xf1\x4c\x0b\x8f\x71\x46\xca\xb3\xd3\x05\x5f\x9e\xae\x8c\xb9\x62\x51\x46\x05\x79\xa9\x27\x70\x76\xdf\x35\xe8\x32\xeb\x59\x2c\xa2\x72\x3c\xb6\x24\x03\xce\x5c\x1b\x25\x79\xf1\x2b\x44\x65\x0d\x44\x2d\xc1\x18\xc2\xde\x04\x16\x57\xca\xc5\x73\x51\x3c\x0c\xe1\xf9\x8e\x31\x2b\x88\xed\xb5\x56\x86\x21\xa8\x3a\x98\xd4\x84\xb0\x25\x5f\xc1\xb3\x75\xe3\xca\x09\x67\xe2\xf2\x28\x48\xf9\xf8\xbe\xbe\xaf\x0a\x5c\x92\x19\xc2\xd4\x4a\x3d\x34\x8b\x62\x1e\x10\xb2\xd5\x3c\x09\xc3\x97\x40\x12\x61\x86\x0b\x6b\x4b\x70\x40\xc8\x39\x80\xde\xbb\xab\x46\x1d\xdb\xc7\xd7\xf4\x5f\x6f\xac\xf8\x4d\xdb\x18\xcd\xe3\xf9\xcd\xa8\x79\x53\x03\x34\x75\x58\xb8\xf1\x6c\x5e\x9e\x89\x6b\x60\x3c\xd6\x54\x36\x5d\x96\xab\x79\x30\x09\xc0\xf5\x21\x55\x4a\xf0\xa8\xc4\x33\x14\x07\x13\x95\x1c\x79\xe9\x98\x8d\x46\x28\x66\x61\xd8\x4c\x1e\x8f\xd1\x01\x38\x3b\x88\xdc\xc3\xc6\xe3\x39\x43\x74\xb2\x67\xd5\x36\xdb\xf0\x48\xb4\x66\xd9\x36\x47\x7a\x62\x6e\x58\x3a\xd9\x64\x39\xa7\xa5\xe5\x0c\xe5\xb7\x40\x20\x3b\x9f\xe5\x0a\x97\x62\x0a\x8f\x0d\x5f\x5a\x8e\x46\x88\x47\x62\x22\xb8\x84\x08\x86\x8a\xf3\x17\x29\x0e\xf3\xcf\xf4\x13\x84\x66\x90\x21\xd9\x6e\x10\xe0\x42\x70\x8d\x99\x25\x44\x2d\xd4\xb2\x33\x22\xce\xb3\x61\x31\xcf\x34\xe8\x12\x92\x9d\x91\xe9\xc2\xde\xb3\xd9\x2a\xa6\x93\xf4\x7a\x1d\x49\x7f\x12\x0a\x8d\xed\xd2\x26\x88\x6f\xcb\xe2\x1a\x38\xc2\xd7\x1f\x76\x54\xb9\xb7\x37\x02\xa2\x01\x2f\x06\xbb\x84\x6f\xf5\x30\x07\x57\xfb\x8a\x0f\x2e\xe8\x40\xb6\x54\x05\x48\xe0\x6d\xc4\x48\x32\x0a\x4e\x82\x11\xc3\x05\x91\xa1\x36\x13\x1d\xe1\x68\x8a\x34\x2e\x47\xc5\x22\x38\x09\xe2\x20\x40\x23\x71\x09\x47\x65\xc4\x60\xad\x78\x14\x9c\x04\x08\x77\x98\x1d\x0f\x87\xe0\x56\x6b\x58\xa0\xc9\xdf\x8b\x8c\x41\x39\xc1\x6f\x4e\x82\x03\x66\x13\x56\x94\x57\x49\x9e\x7d\x6c\x53\x2d\x19\x61\xe2\x3a\x54\x5e\xb6\xa5\x78\x51\x0e\xab\x88\x28\x1e\xcf\x90\x35\x0c\x16\xc3\xa0\x77\x1c\x46\xe6\x0f\x23\xab\xeb\x88\x92\x60\x12\x80\xe3\x7f\x01\x06\x3a\x22\xb2\x8d\xcc\xcc\x94\x8a\x91\xda\xb1\x74\x31\x66\x32\x34\xa9\x85\x97\xa8\x21\xfa\x69\x1b\xef\x34\x2c\x88\xa4\x90\x42\x45\x8c\x34\x8c\xca\xd4\xa2\x97\x05\x91\x98\x25\x8e\x5a\x02\x8f\x36\x42\xd0\xbb\x22\x84\x18\x61\x07\x36\x38\xc7\x96\x03\x2c\x31\xa5\x92\xe6\x09\xcf\xde\xd1\x06\x89\xef\xee\x39\xc7\xe5\x35\x99\xce\xb9\xd9\x4d\x61\x18\x00\x8c\xc0\x4a\x61\x34\x72\x77\x9e\x73\x8a\xb0\x33\x71\xad\xab\x92\x6c\x25\x36\xbb\x15\xe1\x9d\xb1\xc5\x52\xec\x05\x29\xd7\xe1\x98\x8d\x05\x1b\x76\xa0\xc4\xec\xc0\x88\x22\x1d\xd6\x60\x86\x30\x77\x32\xb8\x93\xe1\x3c\x09\xf7\x11\x07\x89\x9b\x2c\xe2\x5e\x8a\x72\x97\x7a\x95\xb1\xa8\x30\xce\x8b\xf4\xa5\x82\x2b\x92\xe0\x94\x4c\xe7\xe9\xe3\x64\x9e\x8e\x46\x28\xdb\x44\xc5\x32\x5d\x0d\x09\xc9\x96\xe9\x0a\xdd\x54\x24\x9d\x4b\xf9\x36\xd8\x21\x68\x91\x63\x4a\xaa\x79\xfa\x58\xb7\x07\x35\x73\x79\xb6\xb8\xa7\x59\x94\x93\x5c\x30\x1c\x69\xc2\xa3\x4c\xcd\xba\x42\xee\xa2\x88\x35\xa9\xe8\x4e\x60\x2c\x66\x82\x85\xcf\xae\x32\x4e\x4b\x12\xc4\xf0\x9d\x95\x2c\xb9\xa2\x4d\x23\xee\x0e\x84\x51\x78\x1f\x20\x0c\x92\x75\x3d\x3d\x85\xdc\x93\x60\x6e\xd7\x54\x22\xf9\xd3\x62\x4d\x01\xd1\x31\x23\x32\x04\x0e\x56\x5a\x81\xe1\x14\x5c\xb8\xb8\x27\xdc\x6c\x3e\x1e\x67\x02\x34\x50\x32\x6a\xb4\x91\x21\x24\x6f\xf9\x02\xdd\x94\x24\x53\xe0\x92\xac\x85\x38\x38\x8d\x09\x01\x11\x77\x3b\x93\xbb\x72\x12\x88\x8b\x42\x26\x89\x04\x8d\x14\x53\x2c\xdd\xf6\x5e\x24\x15\x6d\xcc\xbd\x8b\x3f\x45\x37\xc7\x80\x21\x29\x62\x2c\xaf\x3a\x35\x39\xe5\x78\xd7\x99\x20\x17\x17\xdf\x78\xcc\xcd\x04\xbd\xd9\x71\x3b\x39\x46\xf8\x68\xe6\x4e\x4f\x4e\x09\x28\x8d\x21\xd0\x58\x23\x73\xaa\xa9\xd9\x06\x76\x66\x40\xa3\xb9\x5a\x30\x71\x1d\x29\x94\x1e\xcf\xee\x69\xfa\x0c\x49\x47\xc1\x11\x23\x26\x77\x6a\x88\xa0\xb1\x29\x85\x30\x13\x60\xa2\xef\x79\x0b\x43\x8e\x42\xc4\xe2\x01\x58\x29\x4d\xbd\x55\x9f\xe2\xc4\x05\x4c\x22\x01\x63\xa4\xd7\x1e\x5c\x12\xb8\xcc\x1e\x7c\x3d\x24\xa4\x42\x4d\x40\x24\xa3\x19\xc2\x10\x85\xa9\x5a\x40\x1e\x5f\x70\x92\xc4\x33\xb1\xad\xc2\x30\xca\xc8\x0c\xc5\xe3\x99\x14\xae\x47\x19\x11\x97\x01\xa0\x8b\x01\x74\x62\x01\xed\xc0\x93\xd7\xb5\xec\x49\xfa\x53\xce\xea\x5a\x7c\x65\x61\xc8\x45\xa2\xb8\x87\xc5\x0f\x36\x9a\xb9\x70\xe7\x02\xee\x73\x79\x5a\x04\x17\xe2\x60\x0a\x92\x8b\xc0\x42\xde\x77\x95\xe6\x88\xaa\xa8\x09\xb0\x82\x19\x3a\xc4\x7d\x02\xad\xc7\x53\x08\x3f\xac\xe1\x36\xe2\x08\xfb\x35\x3d\x9a\x90\x46\xc1\x1b\x65\xd3\x0b\x47\xf2\x8d\xfe\x8a\x1f\xdd\x17\xe4\xdc\xb7\x3d\x6f\x0b\xe6\xcc\x09\x13\x20\x56\xcb\x06\x55\x70\x14\x5c\x45\x5b\x76\x80\xd9\xdc\x39\xdd\xf5\x16\xd2\x07\x14\xf8\x0e\x33\x83\x03\xdf\xd3\xdb\xac\x92\x76\xc3\x24\x48\x78\x09\x11\x00\xd8\x81\x11\x8a\x23\x4e\x4a\xe4\x58\xf4\x79\x16\x94\x91\x63\x3f\x8b\xb0\xfb\x06\xc2\x11\x8e\x10\x8e\xf9\xc4\x88\x3f\x08\x53\x63\x2e\x6d\x69\x23\x4b\x9a\x24\xbb\x9d\x17\x15\x48\xbf\x26\x02\xa5\x27\x2b\xd6\xb4\xaa\xeb\xc8\x7e\x90\xe5\xca\xbd\x91\x9a\x94\x1a\x96\xde\xfb\xa5\xec\x8f\x21\x5c\x90\xe9\xbc\x78\xcc\xe6\xc5\x68\x84\xca\x65\xb1\xb2\x15\xac\x18\x10\x16\xd5\xce\x43\x0e\x48\xae\xa5\xb1\x2d\x5e\x8a\x11\xac\xf4\x19\x5f\x8a\x15\x2d\x26\xbb\x92\xfe\x9b\x8d\x5d\x8d\xe8\xf6\xc1\x97\x87\x28\x8a\x4a\xe9\x52\x3f\x2d\x18\x4f\x32\x06\xee\xf8\xc3\xb0\x74\xf0\x6f\x51\xc6\x37\x3a\x92\x78\x79\x40\x1a\x13\xdd\x48\x1f\x05\xb6\x6c\x91\x49\x95\xce\xf7\x6d\xbb\xf1\x83\xd9\x61\x85\x1f\x4c\xff\x9d\x70\x5e\x45\x40\x10\x48\xaf\x29\xb8\xdf\x05\xf7\x3d\x50\x0b\x34\xf8\xc2\x50\x86\x26\xe3\x07\xdf\x08\x00\x77\x04\x39\xb9\x13\x68\x4b\x92\xc9\x08\x0d\x6b\x1b\x92\x51\x90\x54\x85\x4e\xd7\xc0\x72\xb9\xe3\xcc\x65\x8e\xfd\xf0\x26\x0b\x6a\x67\x44\x5d\xff\x9e\x2d\xd6\x74\xce\x1e\x1b\x4d\x8e\xe0\x2a\xb5\x7f\x27\x50\x24\x4e\xac\x48\x91\xb8\x1f\x75\x2d\x2e\x9f\x89\x2b\x80\x14\x53\x0b\x40\xe6\x18\x64\x52\xb3\x5f\x4e\xb4\x84\x91\x0c\xa7\x08\x77\x47\x40\xa1\xb8\x9c\xbc\xa5\x1f\xc4\xcd\x71\x50\x9a\x5b\x47\x06\x04\x63\xc4\x99\x9d\x72\xe5\xc4\xfa\xd1\xbb\x4b\xe0\x96\x15\x9f\x4a\x1c\x3b\x64\x84\xe3\x88\x91\xaa\x1f\x95\x32\x17\x95\x58\x0f\x2a\x31\xcc\x1c\x54\xca\x64\xe4\x10\x9c\xe3\x3d\xde\x91\xaa\x7d\x98\xee\x80\x32\xed\xd2\xb0\xd1\x89\xb4\x8e\x25\x72\x2b\x98\x13\x49\xb1\xc9\xda\x7f\xc6\x6e\x42\x93\x74\xdb\x0e\x3c\x94\x27\x15\xff\x21\x49\xb7\xfa\x34\xd3\xdf\x44\x47\x8f\x02\x47\x92\xf6\xb4\x53\x9f\xe4\xe6\xa0\xf2\x75\x85\x11\xd1\xd2\x4b\x2f\x59\x50\x18\x6e\xc5\x25\x5f\x69\x2b\x31\x18\xa6\x83\x32\xb8\x9c\x37\x4a\x3e\x76\xa6\xa3\x39\x98\x48\x59\xd7\xd8\x52\x18\x9c\x6f\xc1\x3e\xb4\xe5\xc1\x11\x17\x42\x68\x8e\x1a\xa5\xc5\x38\x8d\x8a\xcb\x5a\x8c\x3a\xcd\x95\x07\x01\xae\xeb\x24\x7f\xdb\x6b\x89\x44\x7d\xf7\xd5\xce\x79\x07\x46\x17\x44\x5a\x06\x58\x3b\x95\x6c\x23\xb0\xa2\xa8\x78\x5a\x55\x2f\x8a\x35\x25\x1c\x67\x93\x8a\x27\xe9\xdb\x30\xe4\xea\x75\x75\x18\x9e\x9c\xb3\xf3\xea\xe6\xc1\x21\xe1\x83\x13\xa9\x1a\x51\x85\x90\x16\xe8\xe8\xb2\x73\x95\x41\xd4\x7f\xfb\xc6\xc3\x69\x02\x07\x5f\x85\xc1\xa8\x90\xae\x3f\x27\x9b\xb2\xb8\x1a\x05\xb1\x48\x80\xe8\x32\x93\x3c\x63\xd4\x4b\x48\x8b\x7c\x7f\xc5\x46\xa2\x16\x3a\x48\xee\x35\x3b\x68\x81\xdf\x50\x8a\xec\x00\x2c\x62\x0b\x12\xf9\x13\x74\xe4\xe5\x41\xdc\x3b\x12\x64\xdf\xd3\x34\xaf\x7a\xdc\x1c\x2d\xa8\xab\x55\x96\x2f\x5a\x64\x34\x2a\x68\xca\xf5\x94\x56\x4a\x2e\x49\x1c\x5a\x60\x43\x0b\x27\xbb\x38\x89\x00\x2c\xb0\xa9\x76\xc6\x3e\x85\x4b\xc2\x1c\xa9\x00\x56\x77\x6d\x4c\xb6\x22\x98\x85\x76\x43\xe0\x5a\xad\xab\x35\xaa\xe4\xa1\xa6\x35\x0a\xad\xd9\x16\x44\x81\x03\xb2\x00\xf9\x79\x9f\xd3\x2f\x07\x10\x20\xe6\xba\x00\x52\xd1\x9c\x82\xf3\xbf\x4f\x04\x4a\xb3\x41\xdb\xd2\xe7\x02\x46\xb7\x78\x1b\x60\x9e\xf0\x2f\x0b\x1a\x45\xe9\x76\x01\x47\xf0\x57\x9f\x0a\x98\x76\x73\xb2\x9d\xcf\x05\x8b\x6d\xef\x36\xc0\xa8\xf0\xc6\xfd\x76\x90\x8d\x2e\xb4\x88\xde\xd0\x3d\x82\xcd\xf2\xfa\x50\xc7\x91\xec\xa2\x4d\x95\xeb\x13\x98\xb6\xe9\x56\xee\xd0\xad\x60\xaf\x25\xae\x75\x0a\xf7\x39\x98\x05\x59\xba\x95\x39\x86\x5c\x64\x8a\x0b\xc2\xe7\xa5\x95\xae\x94\x9a\x00\xc8\x48\xb1\x2c\x57\x38\x21\xea\xa8\xd6\x72\xb5\xcc\xde\x26\x5a\xa2\xe3\xa9\xe3\xa2\x0a\xe1\x9c\x48\xd6\xbf\x22\xe9\xa2\x8a\xab\xa5\x7c\x71\x36\xc9\xb8\xd4\x7f\xad\x22\x34\x57\xaa\x80\x3d\xb8\x71\x06\xa8\xe4\x67\xe6\x2d\x8a\xb4\x72\x9c\xef\x49\xb5\xcc\x47\xa3\x95\x71\x8e\x1b\xe5\xa4\x9a\x30\xfa\x9e\x47\x08\x4d\xd6\x05\xa3\xa6\x60\x2e\xfd\xb1\x03\x01\xb1\x23\xfb\x79\xf3\x7a\xdd\xa1\xc3\xc1\x59\x19\x01\xde\x0e\xce\xe1\x4b\xc1\x57\x11\x50\x84\x4f\x4a\xfa\x8e\xca\xf8\xac\x8d\x57\xe9\x51\x89\x70\xa6\xc0\x54\x92\x62\x51\xc6\xe5\x11\x30\x25\x02\x4c\x85\xbc\x9e\xce\x8c\x5f\x70\x35\xfb\x84\x94\xcb\xcc\x03\x53\x46\xca\x2e\x30\x25\x24\x73\xc0\x24\xd7\xae\xb1\xba\x8a\x30\xd9\x64\x65\xc5\x71\xa0\x40\x04\x4f\x13\xf5\x3c\x72\x92\xe2\x7d\x63\x2e\x39\xc2\x3b\x35\x97\x9c\xec\x17\x79\x9c\x1f\x99\xcb\x46\xcc\x65\x0f\x73\xd9\x9d\x91\xdc\x9f\xcb\x86\xe4\xcb\x9d\x37\x97\x1d\xc9\xbb\xe6\xb2\x21\x3b\x67\x2e\x6b\xb2\x71\x97\x5c\x6b\x3b\xd6\xe8\xa0\x97\x74\x0b\xae\x37\x1d\x02\xc2\x27\x37\xb6\x2b\xd2\xf8\x1e\xa5\x6a\x64\x4d\xbc\x81\x00\xc0\x3f\x27\xd7\x2d\x7f\x0f\xbc\x61\xf0\x0d\x85\x5c\x71\x04\xf2\xc8\x29\xc7\xea\x19\x52\xf4\x2b\x2e\x03\x55\xc5\x7e\x8a\x19\x30\x52\x2e\x58\xcc\x8e\x40\x35\x93\xde\x93\xc0\x54\xf2\x8c\x30\x1f\xaa\x19\x61\xcb\xc2\x83\x6a\x41\x58\x17\x54\x33\x52\x28\xa8\x66\x76\x0a\xe0\xc4\x40\xcc\x3c\x63\x15\x2d\xb9\x0c\xe8\xdc\x25\x2b\xc4\x25\x99\x12\x42\x22\xea\xc0\x52\x1a\x8d\x18\x4c\xc2\x45\x13\xe3\xb8\x03\x94\x25\x5d\xe1\xd2\x45\xb6\x8c\x14\xda\xe0\xc8\x80\x25\x13\xc7\x8e\x04\x4b\x46\x92\x45\x16\x67\x47\xc0\x92\x0a\xb0\x48\x0b\xd2\xea\xcc\x58\x5c\xab\xd9\xa6\x24\x5b\x56\x1e\x58\x2a\x92\x75\x81\x25\x25\x95\x83\x6c\x39\x49\x5d\x64\x53\xda\x37\x8a\xa7\x38\xb7\xf8\xb6\x6f\xe1\x1b\x7d\x4c\x9a\x24\xf1\x7e\x85\x74\x94\x55\x9b\x44\xd8\xa8\x68\x3a\x4b\xd7\xb8\x27\x57\x00\x62\x76\x37\x16\xa0\x01\xf3\xb9\x5e\x90\xe3\xd0\x46\xde\x01\x55\xe2\xac\x01\x6b\x19\x2e\x4c\x29\xa8\xb3\x45\x11\x17\x47\x60\x5d\x09\x58\x4b\x1a\x3a\x39\x23\x85\x0f\xeb\x8a\x14\xcb\xc4\x83\x75\x42\x8a\x2e\x58\x57\x24\x71\x60\x9d\x92\xaa\x0b\xd6\xa3\x19\x9e\xe2\xd4\x42\x3b\xef\x80\x76\x13\xd8\x79\x1b\xd8\xb9\x00\x76\xd9\x07\xec\x92\x5e\x15\xef\xe8\xd3\x6d\x96\xaf\x3b\x3c\xed\xf8\x01\x42\x7d\xe8\xfb\x40\xd6\x7c\x9f\x8e\x95\xd9\x81\x3a\x33\x9f\x87\x43\x11\xf7\xc7\xce\x56\xe8\x0c\x8c\x30\x1a\xa9\x84\x5b\xdd\x5e\x63\xdc\x4f\xf2\xbc\x27\xa4\xb5\x3c\x6d\x78\x63\xa9\xd5\xa5\x26\xa6\x45\x09\x5f\xd0\x98\x1e\x59\xea\x12\xb8\x45\x69\xe4\x7e\x66\x55\x20\x72\x05\x4b\x42\x97\xcc\x5b\x6a\x46\x68\xd7\x52\x97\x84\xa9\xa5\x2e\x7d\x18\xb9\x47\xae\x11\xdb\x61\x3b\x3f\x60\xa1\x7e\x15\x35\xab\xd6\xbb\x0b\x2d\x48\x02\xa3\x55\x8e\xb9\x65\x80\x0d\xd7\xe3\x90\x64\x25\xba\x81\x63\x7b\x57\x85\xa1\x14\x7b\xcb\x2f\x09\xe3\x97\x9b\xa8\x94\x1c\x4c\x5d\xf3\xc9\x26\xa9\xb8\x2a\x55\xca\x71\x9b\x52\x32\x13\xd5\x75\xa4\x72\x4c\x09\xcd\xef\x09\xda\x11\x9c\x45\x1b\x2e\xff\x1d\x2d\x3f\xf4\x52\x8e\x12\x3f\xa0\x0c\x3c\xa0\xd9\x4d\xaa\xe2\xaa\xdf\x29\xa6\x42\xa7\xe2\x8a\xaa\xd2\x99\x1f\x68\xb9\xc3\x4a\xc8\xe8\x2b\x16\x34\x76\xda\xd0\x33\x92\xcd\x74\x68\x9c\x0d\x0b\x9d\x01\x36\xcd\x3d\xef\x5a\xc6\x9a\x0f\xd9\x37\x3e\x60\xbf\x63\x45\x36\x57\xc9\xce\x25\x89\x9d\x1c\x18\x80\xc0\x71\xb5\xe4\x54\xff\x42\x08\x6b\x09\x80\x76\xdb\xce\x0f\xe0\x17\x3c\x0a\x26\x27\x10\xb0\x36\x40\x11\x47\xaa\xb4\x51\x6f\xf8\x08\xce\x91\xb1\x3e\x11\xec\xb9\xd4\x80\x89\xbb\xc4\x2f\x96\x20\xd0\x51\xca\xd8\x87\xd5\x22\x89\x93\x23\xfb\x20\x17\xd3\xaf\x60\x1f\xa4\x67\x24\xf1\xf7\x41\x4e\x92\x65\xea\xed\x83\x94\x24\x5d\xfb\x20\x27\xa9\x73\xe4\xed\x49\x3e\xdf\xab\xfd\x10\x86\xfa\x97\x7b\x1a\x45\x7b\x1c\x64\x97\xac\x28\x69\x80\x94\xee\x0f\xf8\xb9\xa2\x70\x59\x8a\x1b\x49\x0b\x8b\xc9\x2a\xf4\xd0\x53\xde\x34\xa6\xbc\x43\x78\xad\xa6\xbc\x23\x9b\xc5\x2e\xde\x1d\x99\xf2\x56\x3d\x7c\xc8\x36\xd1\xfa\x8c\xec\xfc\x29\x6f\xc9\x6e\xb9\xf6\xa6\xbc\x26\xbb\xae\x29\x6f\xc9\xda\x99\xf2\x05\xd9\xce\x2f\xcc\x94\x2f\xba\xa6\x7c\xd1\x35\x65\x35\x53\x4e\x96\x7c\x35\xb7\x89\xb0\x63\x81\xd1\xea\x72\x54\xc3\x65\xc7\x8e\xda\x5f\xa9\xfc\xe1\x40\x19\x6c\x32\x9a\xaf\x07\x59\x35\xb8\xca\xaa\x8a\xae\xc1\xf4\xa9\x58\xd3\x01\xc8\x0c\x41\x26\x3b\x6f\x2b\xfd\x54\x9b\x80\xbc\x72\xff\xbf\x52\x71\xc7\x55\x67\x08\x73\xb2\x14\x7d\x95\x5a\xf6\x1b\x71\xb4\x72\x26\x62\xc4\x02\xb2\x9c\x44\x6d\x60\x44\x91\x40\x6d\x77\x7a\xc0\x24\xbb\xc5\x12\x3e\x6e\x96\x04\x35\x2a\x9f\x70\xfa\x9e\xb7\x27\xfa\x0b\x7b\xcb\x8a\x6b\x35\x2f\x31\x83\xae\x49\xaa\xf1\x16\xde\x78\x7b\x76\x71\x5b\xc8\x29\x78\xfa\x8e\x55\xa4\x08\x77\xae\x09\x9d\x94\x82\x56\xbe\x00\xd2\x32\x0c\x59\x18\x76\xdb\x73\xf9\xc5\x22\xaf\x1a\xf1\x72\x1d\x97\x2b\x7f\x3b\xaf\xc0\xcb\x4a\x80\x10\x36\x42\xd8\x0c\x53\x60\xb3\x53\x52\xe1\x28\x27\xcb\x9b\xb7\xf4\x43\x1c\x00\xdf\x13\xe0\x4b\xca\x5d\x97\xb8\x5a\x32\x2a\x8f\x97\xd6\xb9\xbb\x9c\xae\x0e\x07\x2c\x1b\x10\x6c\xf1\x27\xd7\x6f\x09\x4f\xc7\xb3\xd5\xe1\x20\xc8\x95\x24\x4a\x1d\xbf\x38\x39\xc2\x7b\x48\xc3\x7b\x84\xab\x43\xa4\x14\x03\x4a\xa1\xd1\xa5\xb3\xa8\xfa\x75\x16\x1a\x69\xe2\xfb\x10\x6b\x59\x8b\x24\xe2\x07\x10\x69\xd9\x55\x42\xc4\x0f\xee\x63\x47\xc9\x81\xcd\x99\x1b\x3f\x80\xaa\xb2\x99\x87\x8f\x0e\x2b\xfc\xa0\x33\xc4\xf2\x9d\xb4\x1f\x89\x98\x4c\xb5\xdf\xc1\x60\xc7\x69\x91\x17\xa5\x54\x7f\x40\x46\xba\x4d\xf2\xb7\xd2\xe6\x24\x91\xb3\xe6\xb4\xbc\xca\x58\x92\x8f\xb7\xd9\xe5\x36\xcf\x2e\xb7\xbe\x66\x24\xf9\x74\xcd\x48\x65\x2d\x60\x5d\xf3\x4b\x8d\x7c\xcf\x93\xdd\x42\xec\x88\xe7\xc9\x4e\x1b\x6e\x2a\x25\x57\x8b\x13\xd4\x6f\x04\x80\x06\xa1\x18\x48\x06\xe3\xfa\x48\x9b\x6f\xeb\x87\x3a\xe6\xca\x0d\x96\x0c\xec\x85\x06\x69\xb1\xa6\xab\x00\x35\x02\x55\x31\xb8\x6a\xbb\x6c\xdd\xbb\x2d\x98\x5e\xed\x77\xb4\x1c\xd0\xf7\xbb\x92\x56\x15\x38\x91\xda\x57\x7c\x40\x33\xbe\xa5\xe5\xe0\x82\x82\x75\xee\xa0\x28\x07\x89\xb1\xb9\x0d\xa4\xcd\x5c\xd7\xce\x53\xcf\xc5\xd4\x83\x5e\x83\xc3\x3a\xb6\x08\x57\x0f\x65\x4b\xf7\x41\xa6\x55\xd4\x40\x80\x32\x63\xaf\xb5\x8b\xa4\x0e\xd0\x8b\x84\x62\xdf\xed\xf6\x28\x6b\x1c\x15\x2b\xd8\xbd\x1b\x6f\xc2\x2a\x64\x7e\xd9\x30\x7e\x77\x6c\xdb\x71\xc3\x4c\xfe\x70\x40\x78\x1f\x95\x98\xa2\x03\xf2\x83\xce\x45\xfd\xd7\xc6\xcf\x74\x23\x4e\xe8\xba\x1e\xaa\x5f\x76\xfc\xd6\xd8\x36\xdb\x44\xad\xdc\x49\xb5\x4d\xae\xbc\x22\x5d\xd8\x05\xe6\xdd\xf6\x7d\x98\xf3\x24\x14\x1c\x0f\xb5\xdd\x1c\x4a\xf4\x69\xf5\x16\x89\xe2\x78\xb9\xc2\xae\x35\xfe\x01\x21\x84\xcd\x73\x5c\xea\x58\xba\x3b\xaf\x52\x7c\x02\x3a\xca\x49\x1a\xa1\x45\xab\xfd\x96\x69\x86\xdc\xbd\x4b\x81\x4d\xab\xb9\x7c\x76\xad\xd4\x72\x25\xe6\x48\x69\x8d\xc5\x55\x65\x36\xc0\x45\xc6\xd6\xaa\x08\x3c\x12\x35\xd6\x7b\x61\xb8\x8f\x0a\xec\x29\x78\x8b\x03\x52\x45\x45\x07\xee\x1b\x09\xfb\xe4\xc5\x95\x47\x47\x7b\x8d\x36\x95\xe7\xaa\xca\x7d\xd0\xeb\xc5\x9a\xb5\xaa\x3d\x2e\x6e\x04\xc8\x75\x5e\xb4\x58\x60\x45\xbb\xee\x96\x17\x9d\xae\xb1\xba\x4c\xd5\x9d\xce\xea\xba\xb3\x56\xa4\x31\x12\xe4\x64\xc7\x75\xed\x49\x64\xdf\xbc\x56\x5a\xd8\xa1\x86\x9a\xf6\x68\xdd\x41\x2c\x1e\x3c\xad\xaa\x57\x1f\x18\x4f\xde\xc3\x41\x11\xe0\x74\x52\xd2\xa4\x2a\x04\xb7\x94\x85\x61\x94\x4e\x36\x59\x4e\x49\x86\x70\x01\x5f\x92\xe2\x26\x05\xc2\x15\x7c\xef\xf2\xfd\x65\xc6\x48\x85\x7a\x6c\xae\x7b\xee\xee\x12\x2a\xe7\x19\xa3\x84\xe1\x54\xe9\xb0\x48\x89\x70\x2a\x00\xfa\x9c\x56\x55\x72\x49\x23\x84\x61\x50\x93\x34\xd9\xf1\x7d\x49\x5f\xf1\x24\x7d\xfb\xba\x4c\x52\x1a\x86\x3d\x19\xcd\x47\xd7\xf6\xc9\xbb\x73\x2c\xfe\x4c\x37\xb4\xa4\x2c\xd5\x67\xa3\x00\xc7\x60\x9b\x54\xec\x0f\x7c\x70\x41\xa9\xe0\xe1\x33\x9e\x25\x79\x26\x28\xbe\xf1\xa0\x12\x47\x67\x84\xbc\x12\xf0\x00\x65\xed\x1a\x7c\x46\x29\xc2\x82\x5b\xd0\x06\x3b\xc9\xef\x60\xb0\x53\x91\xa4\xad\x63\xae\x1c\x88\xb5\x9c\x4a\x5c\xa9\x74\xf8\x90\x6b\xb5\x70\x7e\x8f\x82\x78\x10\xc4\x41\x80\xdd\xc2\xca\x71\x8c\x58\xf7\x85\xf9\x15\x07\x8f\xd3\xaa\x1a\x80\x52\xf2\x2c\xe8\x5e\x6c\xa9\x0a\xc8\x98\x11\x4d\x98\x06\x83\x38\x18\x99\xdc\x91\xf9\x92\xcb\x8e\x70\xb3\xf0\x40\xe5\x4b\x4c\x3c\xe0\x6a\x52\x6d\x8b\xeb\x57\x80\x7a\x4f\x8b\xce\x77\x5a\x9a\xfb\x1c\x4a\xd7\x0c\xd2\xf1\xb5\xe2\x72\x83\xb9\x23\x5d\x35\x9a\x58\x75\xe9\x87\x61\xf7\x09\x0f\x14\x25\x31\x04\xfa\xa4\xe2\xeb\x62\xcf\xc1\xd6\x39\x62\x24\x9a\x62\xd3\x02\x8a\x40\x63\x2d\xb9\x49\x6d\xd3\x7d\x72\x5e\x2e\xce\xd9\x89\xe0\x28\xb5\xdb\xb8\xc8\x40\x60\x7c\x1f\x4f\x05\x63\x69\xcc\x63\x2d\x6c\x4e\xb1\xe1\x1b\x71\xae\xf9\x86\x14\x99\xf7\xde\xf6\x9c\xf3\xa2\x08\x1a\xc2\x7c\x52\xd2\xf5\xc2\xfb\x9a\x5c\x14\xf9\x3a\xe2\x28\x76\xdf\xe6\xf5\xd5\xbe\x2c\x93\x0f\x0b\xff\x53\x56\xd5\x4f\xb8\xb4\x2d\x2d\x4e\x51\x93\xec\xb7\xe7\x7f\x35\x9a\x49\x5b\xf8\x41\x30\x8a\xc4\x9f\x12\xa9\x7a\xe3\x1c\x8d\x82\x41\x3d\x08\x40\x40\x0d\xec\xa9\x98\xb6\x96\x21\xec\xa2\xc2\xd1\x89\xaf\x05\x9d\x3e\x08\x10\x1a\x59\x1b\x55\xad\xef\x1e\xcf\x90\x47\xd4\xf3\x95\x2a\xac\xb7\xc5\x3e\x0a\xce\x02\x34\xda\x45\x05\x1a\xd1\x51\x70\xce\x06\xc1\x28\x1b\xed\xa3\xe0\x6f\x81\xa6\x2f\xc4\xc8\x64\xbe\x35\xd7\x3e\x67\x01\x12\x08\xa7\x2f\xd6\x1e\xa9\x99\x8f\x8f\x91\x3d\x07\x00\x6b\x82\x73\x76\xce\x02\xd9\x6d\xa0\xe5\x7f\xc9\x15\x1d\x59\xd4\xd6\xd8\x4e\x0f\x38\x39\x44\x55\x04\x47\x11\x72\xa9\xf5\x4d\x3f\xb5\xde\x41\xed\xc6\xa7\x18\xa8\xe2\xf8\x14\x37\xe9\xe6\xf8\x54\xd0\xe2\xf7\xff\x9d\x4c\xbd\x40\x0b\xff\x7f\x93\x9d\x57\xd3\x61\xff\x27\x72\x3a\xbb\x84\x6f\x1d\xfe\x66\x72\x92\x56\xd5\xb8\x82\x6b\x79\x4c\xe1\x5e\x76\x99\x9d\x5d\x49\xdf\x65\xc5\xbe\x1a\x5f\x25\xbb\x2f\xc0\xe6\xfc\x7b\x1b\x80\xe5\x64\x8a\xf7\x3d\x0e\x34\xf5\x3b\x0e\xfb\xac\x1d\x0c\x82\x6f\x0e\x08\x5b\xa6\xcb\x3e\x37\x54\x5e\x8d\x87\xae\x33\xf4\xa6\x34\xe4\xa7\xa2\xe2\x4f\x5f\xbd\x1a\x94\x34\xa5\xd9\x3b\xba\x1e\xc0\x36\x06\xa3\x06\x9a\xac\x07\xc5\x66\x20\x72\x95\xc8\x47\x39\x7d\x4c\xab\x8a\xd8\x36\x23\x84\x83\xf3\xfd\x86\x6e\x36\x70\x9b\xa8\x02\xcb\xe9\xaa\xae\x45\xfa\x66\x43\x1b\xe9\x0b\x79\xfc\x6f\x93\xea\xbb\x97\xcf\x05\xd4\x4c\xa3\xfa\x87\x3a\xfd\x66\xda\xf8\x41\x17\x9d\x61\x69\x20\x14\x86\xd1\xc9\xdf\xce\xaf\x47\xf1\xf9\xc9\xf9\x89\xb2\x41\x92\x39\x10\xec\x59\x9f\xe6\xce\x9b\x20\x95\x6b\xef\x77\x22\x53\x62\x9b\x50\x3a\x97\x88\x7a\x08\x22\x2b\xb9\x61\x7d\x33\x2b\x10\x52\x63\x55\xb1\x7b\x99\x94\x36\x29\x2a\x24\xd9\x19\x93\x63\x06\x5b\x56\xe0\x4d\x84\xa0\xa3\xf9\xd0\xf4\x19\x86\x85\x26\x1d\xe4\x98\x54\xe5\x9f\xd5\x00\x0a\x84\x0e\x26\xb7\xae\xa3\x7c\x44\x66\x4a\x55\xb2\x26\xc1\x63\x20\x4e\x06\x82\x4c\x09\x46\xf9\x48\x1c\xff\x58\xb7\x60\x28\x92\x64\xe7\x34\x0d\xd3\x39\xa8\xd3\x0c\x27\x78\xef\x9a\xee\x9a\x8b\x64\x02\x3b\xb0\x27\xea\x6e\x66\x7d\x35\x00\x8a\x83\x67\x0c\x25\x58\x16\x5d\x14\x65\x76\x99\x49\x39\xb9\x3e\x1a\x33\x92\x2c\x7c\x61\x1a\x15\x97\x7e\xc6\xc4\x3f\x79\xbb\xe1\x44\x8b\xb6\x13\x18\x2e\x2e\x15\xc1\x26\x3d\xaf\xb8\x35\xc5\x58\x2c\xec\x35\x70\x6c\x05\xa4\x62\x49\xdf\x88\x0e\x62\x8e\x65\x07\x31\xc3\xb2\x83\x58\xd7\x3d\x60\x67\x19\xa2\x4c\x9b\x9f\x59\x58\x65\x39\x45\x38\x3b\xe0\xbd\x9a\x53\xdb\x7f\xcc\x50\x83\xd8\x7f\x6f\xca\xcc\x3a\x3a\x4b\x0f\xae\xd4\x64\x43\x49\xfe\x53\x51\x65\xa2\xa5\x3f\x16\x65\x24\xc7\x49\xf5\x38\xf9\x01\xd0\x69\x58\xfa\x34\x9d\x6a\xba\x20\x37\x40\x9c\x36\x11\xc5\x94\xc6\xd0\x5a\x29\xa1\xab\x9a\x2c\x15\x90\x0f\x38\x23\x3a\x46\xca\xd3\x82\x71\xca\xb8\x18\x80\xa9\xab\x11\x40\xb0\x41\x85\x66\x7c\x04\x23\x24\x60\x60\x3b\xeb\xd0\xab\xb4\x36\x23\x45\x0b\x31\x8a\xd6\x86\x6a\xc3\x45\xf5\xf3\x73\x51\x70\x78\xe9\x07\xce\x20\xb9\xb8\x1f\x99\x11\x4b\x96\xc5\x55\x4b\xaa\xe8\xca\x11\xe5\xee\x50\xfb\x42\x8a\x0e\x2b\xd7\x1e\x01\x33\x84\x13\x48\x13\x1c\x0b\x3d\x44\xee\x85\xb7\x3f\x62\x3e\xde\xbc\x94\xe2\x07\xa7\xb8\x79\x1f\xc5\x0f\x4f\xb1\xb8\xce\xe2\xfb\x70\x31\x76\x44\xf4\xf0\xf4\x6d\x77\xa4\x3e\xf6\xf2\xe6\xbb\x4a\x76\xe3\x4b\xfd\x70\x5e\xde\x89\x2a\x47\x9e\xc8\xd9\xe6\x83\x7c\x78\xa6\x52\xaf\x93\x92\x8d\x0b\x96\x8a\xab\x1f\x57\x3a\xb5\xa4\xd5\x3e\xe7\x22\x29\xd7\x49\x4a\x6d\x84\x5c\x02\xfb\x93\xef\xd2\xdd\xbf\xf3\x5d\x6a\x46\xb9\x71\xf4\x7f\xcd\xab\xb1\x4b\x16\x45\x27\x7c\x4b\x99\x36\xac\xe9\xbc\x87\x5d\x1f\x41\xc6\x72\x58\xaf\x48\x46\xd7\x70\x53\x01\xd7\x29\x5f\xdc\xc8\x14\xaf\x77\x86\xc2\x50\x7a\x08\x20\x2c\x0c\x8d\xf6\x4a\x1a\xf1\xa1\x82\x30\xa3\xf2\xf0\x7c\x1c\xd1\xba\xf6\xbe\x2b\x43\xc3\x89\x9b\x46\xb4\x82\x99\x3a\xff\x3b\xb9\xbc\x52\x65\xc2\x7f\x20\x1c\xe0\xd7\x24\x63\xe2\xc4\x00\x0d\xae\xfd\x24\xc3\x99\xce\x17\x28\x4f\xa0\x65\xc7\xb1\x4f\x46\x72\xdd\xfd\xbc\x9c\xc8\x9d\x02\xaf\xac\xf4\xc7\x04\xd0\x4c\xb4\x01\x3f\x4a\x95\x29\x3f\x10\xce\xe4\x2f\x48\x55\xbf\x11\xc8\xfe\x0a\x92\x49\x93\x45\x29\xb2\x4b\xd4\xb5\x2a\xef\xa5\xe4\x70\x50\xcc\xb2\xc0\x6a\x19\xef\xd9\xde\xca\xb8\x10\xf5\xf4\x15\xb7\xc7\xeb\xae\x2b\x6e\x3d\x11\x1b\x25\x63\x97\x15\xe9\x39\x52\xaa\x0f\x2c\x8d\x90\x29\x16\xa1\x03\x5e\x77\xf2\x48\x6e\x25\xb8\x55\xd6\x80\x3e\x9d\xe6\xa2\xc1\xae\x2c\xd6\x7b\x23\xc0\x16\x7b\xe0\xdd\xe4\xc5\xcb\xef\x7f\x78\xf3\xc3\x8b\x5f\xc5\x8a\xc1\x49\xa7\x6d\x39\x8a\x1d\xaf\xea\x3a\x9a\x82\xc3\x25\xc5\x78\x07\x7f\xcd\xf8\xb6\xd8\xf3\xc1\xff\x88\xa2\xff\x33\x28\x76\x80\x91\x9a\x88\x4b\x8b\x7d\xbe\x1e\xa8\x03\x83\x0e\xae\xcb\x82\x5d\x0e\xe4\x01\x3b\xb8\x4a\x76\x83\x84\xad\x07\xd7\x59\x9e\x0f\x58\xc1\x07\x9b\x8c\xad\x07\xdf\x95\xc5\x75\x45\xcb\x2a\xcf\x2a\x3e\x90\x3b\x70\x32\x78\x45\xf9\x20\xe3\x03\x5e\x00\xed\x27\x4e\x57\x78\x03\x3c\x28\x4a\x91\xf6\x3f\x06\xaf\xfe\x07\x5e\x07\x97\xf4\x1d\x65\x1c\xc6\x3c\x50\xf0\x9a\x04\x4a\xd5\x3f\x49\x14\x20\x05\x4c\xa4\x74\x11\xaf\x27\xb0\xaa\xbd\xda\x7c\x5d\x45\x8b\x6b\x45\x8d\x8d\xb8\x35\xf3\x7e\x83\x81\x46\x37\xb2\xd2\x36\x61\xeb\x5c\xca\xbc\x1a\xcb\x21\x70\x4c\x6f\x5b\x89\x54\x14\x37\x05\x83\x43\x42\x28\x30\xb1\x75\x4d\x35\x6d\xa1\xec\xdc\xa4\x81\xfc\xaf\xb4\xac\xb2\x82\x81\x79\x57\xff\xb2\x1a\x4b\x37\x5d\xed\x27\x68\x0a\x17\xa4\xd9\x10\x96\x26\x05\x0a\xaf\xf5\xd1\x51\x94\x93\x77\x2a\x3f\x21\x85\x7e\x6e\x3c\x09\x10\x04\x7e\xb2\x9f\xf3\x28\x59\x4e\x57\x43\x42\x24\xe5\x0d\x9b\xe9\x19\xe3\x51\xb2\x9c\xad\xd0\x99\xf9\xac\xc4\x27\x0a\x43\x71\x01\x17\x39\x95\xb3\xb7\x3a\x51\xf8\x1c\x08\xdc\x32\x38\x25\xa7\x3e\x19\xfc\x56\xec\xcb\x41\xba\x2f\x4b\xb1\xd8\x3a\x53\x0d\x6d\x90\x55\x20\x6d\x08\xf0\xe0\x62\xcf\x07\xc1\x88\x8d\x82\xc1\xbe\xa2\x22\xb5\x18\x05\x93\xc1\x4f\xb4\xdc\x26\xbb\x4a\x22\x49\x26\xfe\x53\x8d\x97\x20\x47\xa3\xaa\xe7\x0b\x9a\x17\xd7\x13\xa3\xe4\xd6\x80\x6f\x41\x8f\x7a\x52\x53\x75\x4c\xa4\xe8\x46\x4d\xab\x31\xbf\xe6\x74\x53\x74\x10\xf8\x01\x48\xf3\x3a\x4b\xdf\xf6\x3a\x64\x35\x67\xbb\x1c\xc6\x19\x71\x0f\xf5\x42\x93\x9c\x95\xff\x06\x7a\xd0\x3c\xf9\xa7\x98\x46\xf2\x5c\x53\xb7\x61\x67\x23\x4b\xa7\xa3\x95\x36\x14\x2c\xf7\x82\x68\x98\xbb\x12\x4c\x32\xc3\x9b\xa8\x40\x8b\x42\x22\xbb\xab\xe8\x60\x76\x4a\x72\xaf\x21\xbd\x8b\x3c\x31\x31\x73\x77\x06\x28\x21\xa4\xd6\xc1\x8e\x17\xfc\xdd\x6a\xe6\xab\xd1\xa6\x79\x2c\xd2\x9e\x26\x8f\x32\x07\xb2\xdd\x92\xa4\x79\x27\x90\x80\x3f\x50\xa1\x2a\x9b\x26\xe3\x6a\xd5\x16\x2c\x52\xbf\x50\xcc\x23\x6a\xae\xdb\x0f\x11\x52\xa6\xed\x4e\x8b\x19\xbb\xd4\x2f\x81\x6c\x0a\x39\xd2\x09\xb8\xfe\x90\xad\x6b\x19\x8d\x49\x98\x1b\x34\x9c\x62\xea\x80\x43\x19\xab\xb7\xd7\xc1\x5a\x03\x78\x48\xe0\x0e\x19\x74\x52\x8d\xf1\xc1\xa1\xd5\x84\x9c\xc1\x40\xdd\x94\x87\x65\xf2\xac\x98\xb7\x0a\x19\xae\xda\x69\xbd\x6d\x08\x51\xd1\x81\xca\x8f\xd2\xaa\x52\x13\x49\x2f\x90\x38\xd6\xaf\x8b\xf2\xed\xe0\x3a\xe3\xdb\x01\x4c\x58\x1d\x03\x95\x54\x92\xda\x83\x53\xb5\x6a\x13\xe6\x8e\xd0\xb0\x75\x92\xa9\x46\xfe\xbd\xac\xef\xd4\xcb\x60\x30\xec\x89\xcc\xae\x2b\x10\xfa\x52\x10\x3b\xb4\x57\x4c\xac\x74\xb9\x67\xed\x77\x6e\x0a\x64\x79\x52\x71\x79\xd4\x11\xea\x6a\x43\x15\x0b\xa5\x4a\x01\xb9\xe7\x24\x38\x5e\x75\x9d\x65\x71\x37\x3b\x07\x33\x6c\xd8\xa3\x06\x19\xbb\xb0\xcd\xa1\x65\xbb\xf0\xad\x4d\xef\x2a\x74\x93\xd7\x70\x07\x0e\x08\x62\x06\x73\x62\xc4\x27\x73\x6a\xe9\x45\x4e\xf4\x87\x1d\x14\x72\xb6\x4b\x06\x84\x23\x94\xb2\x29\x08\x73\x5b\x1a\xb2\x9d\x6f\x57\x62\xe3\x98\xf0\xe0\x63\xc0\x83\x21\xa2\x89\x26\x9e\x22\xdf\x87\xb8\x2a\x93\x56\x15\x81\x28\x50\x6e\x22\x48\x7b\x96\x33\x2f\xb1\xc9\xc3\x9a\x3d\x70\x94\x91\x6d\x6e\x18\x63\x58\x23\xc6\x76\x97\x9a\xa2\x9c\xa9\x94\x56\xc7\xeb\x38\xc7\x11\x90\xae\xa6\x9e\x94\x0d\xdc\xbd\xae\x2c\x6f\xea\x0b\xae\xf8\xae\x75\xaf\x92\x9d\xa9\x07\x3c\xd0\xd1\x8a\x92\xc8\x13\xe5\x6c\x67\x92\x08\xb8\x65\xa6\xb2\xa2\x2e\x2b\x45\x04\xbb\xa6\x88\x60\x0f\x69\x78\xdf\x12\x11\xac\x3b\x45\x04\x47\x7d\x2d\xb4\x78\xf7\xf8\xc1\xd7\x6d\xd3\x21\xc9\x97\xc7\x0f\x1f\x60\x8f\xa3\x8f\x1f\x82\x99\x91\x65\xe6\xe3\x47\x33\xec\x7b\x6f\x78\xd0\x11\x19\xf2\x8e\x02\xf8\x1b\x20\x1a\x5b\x96\x0c\xf6\x55\xd4\x52\x90\x1f\x41\x80\x33\xc1\xb4\x26\x64\x8a\x2b\xf1\x23\x15\x7f\x72\x32\x9d\xe7\xd6\xeb\x55\xae\x59\xfc\x3d\xa1\xcb\x7c\x35\xaf\x16\xe9\x42\x94\x8b\x83\xf3\x73\xc1\x74\xee\xc5\xd7\x34\xde\x1b\xc7\xae\xc3\x19\x8a\xff\x10\xfc\x41\x64\xd5\x75\xf0\x07\x59\xa6\x22\xfb\x38\x88\xe4\xef\x64\x44\x66\x71\x80\xd4\xc7\xd9\x34\x0c\xa3\x64\x4c\x66\x28\x9e\x12\x42\x92\x30\x94\xae\x3c\x8c\xd1\xd0\x1e\x01\xf3\x38\x9c\x22\x9c\x2d\xa2\x40\x90\xdf\x45\x18\x2a\xf7\xf7\xc5\x84\x97\xd9\x55\x04\x6a\x06\x35\x1d\x14\x17\x23\xb2\xd7\x0e\xaa\x58\x5d\xcb\x2a\xa8\xa3\x4e\x79\xc0\xd5\x2e\x49\x3b\x9d\x36\x96\x8a\xf0\xa6\x78\x19\x0c\x02\x1c\x9c\x33\xf1\x87\x07\x2b\x74\xc0\x69\x71\x75\x95\xdc\x56\x09\x07\x2b\x19\x69\x19\x8b\x9b\xe7\x76\xed\x8b\x58\xf1\x66\x08\xcd\xcf\x94\x2c\x49\x4b\x33\xa0\xbd\x95\x3e\x45\x2b\x5a\x94\x52\xe6\x73\xd4\x2b\x8d\x97\xeb\x4d\xa5\x85\x18\xab\xbf\xf5\xf5\x33\xc4\xab\x64\xf7\x72\x07\x93\xbd\x4a\x76\x75\xad\xc3\xeb\x88\x2d\xae\x82\x7a\xc0\x99\x46\xa4\x3c\x86\x77\x31\xf3\x7c\x92\x55\xcf\x93\x5d\x9b\x29\xef\xd7\xd9\x8b\x26\x45\x87\x8b\xe1\xd0\xfb\x8e\x15\xcd\x24\xc5\x7b\x91\xd6\x42\x9f\x4d\x0f\xa0\x83\x93\xc9\x77\xa2\x6b\x65\xd1\xe7\xc9\xae\xb2\x74\xa8\x4d\x33\x71\x63\xc4\x3c\x5b\xef\x24\x15\x9b\xa9\x9f\x5b\xeb\x5f\x4a\x42\x7d\x95\xec\x2c\x4f\xd9\xcc\x99\x83\xb1\x1d\xf5\x3a\x33\x9b\x85\x21\xb0\x4b\x75\xb3\x94\xe7\xfb\x83\x4b\x8e\xda\x6c\x31\xeb\xac\x7a\x26\x65\x41\x3e\x95\xd0\x0f\x5b\xb5\xa2\x4a\x84\xe4\x51\x0f\x7e\x96\x4b\x25\xe8\x9c\x84\xb1\x82\x83\xdd\xa5\x56\x1e\x74\xdb\x2a\xd4\xf5\x50\x1a\xb9\x84\xa1\x92\xc2\xb7\x16\x4d\x09\x84\x9d\x74\x78\x20\xd0\x6d\xb6\x2b\x47\x24\x5f\xb7\x8a\x39\x4b\x55\x77\xa5\xa4\xe4\x9f\x82\x5a\x7a\x26\x95\xd7\xc2\xe2\x48\x5e\xfc\x25\x26\x20\xe8\x4e\xd5\x5e\x24\x5f\xd0\x72\x19\x76\xe5\x89\x81\x68\x63\x05\xe1\xad\x7c\x0f\xf0\x4d\xa8\x04\x8a\xd5\x53\x1c\x40\x54\xdf\x48\x57\x7a\xb3\xe2\xe3\x31\x72\x5f\xf4\xea\xe7\x6f\xb6\xc2\x92\xaf\x90\x7a\x9a\x2c\x3d\x86\x71\xfa\xde\x9e\xe0\xc1\xff\x51\x82\x80\xe7\xc9\x6e\x97\xb1\xcb\x5f\x7e\xfe\x91\x80\x0f\x78\xd3\x88\x6b\x41\xcd\x61\x62\x15\xe5\xfd\x0b\x64\xb1\x0a\x5e\xbf\xcc\x7b\xf7\x99\xe4\xfa\x4c\xd0\x78\x13\x60\xc5\xdb\x53\x9b\xb2\xb8\x02\xd3\x8d\x30\x1c\xf2\x65\xb9\x42\x37\xe2\x2f\x19\xea\xd3\x94\x1a\x3f\x77\x11\x30\x8a\x57\xc9\xce\x0e\x4f\x2f\x48\x81\x1b\xad\x0a\xde\xe1\x70\x50\xcb\x04\x06\x7e\x3f\x95\xf4\x1d\x9c\x0c\xdd\xe6\x17\x16\x09\xfe\xfd\x78\xa7\x84\x94\xb8\xd2\xc4\xbe\x82\x45\xa2\xd4\x67\x29\x49\x00\xf6\x75\x6d\x28\x7f\xed\x6a\xce\x94\xc9\xf5\xfd\x24\xa3\xbd\x1c\xd9\x44\x51\xee\x53\xf4\x93\x57\x1a\x73\x9e\x6a\x7d\x52\x22\xd5\xb0\xa8\x51\x35\x0c\xa3\xbc\x91\x44\x9a\x09\x0d\xf3\x1e\xcf\x8f\xaf\x38\x19\xe2\x9c\x24\xae\x42\xcf\x28\xb3\x60\x01\xcd\x50\xa2\x1c\x57\xd8\x87\x46\x8a\xc4\x4d\x0f\xfa\xe8\xce\xdd\xa8\x54\x7c\xf2\x1c\xd0\x07\x6e\x84\xea\xfa\x0e\xc7\xac\xdd\xb4\x8b\x9e\xf4\x2f\x72\xbe\xd8\xe6\xf4\x21\xc9\x8b\xef\x92\x8a\x3e\x7a\xd0\x25\x93\x2d\x17\x25\xec\x9c\x88\x22\x6b\x26\x10\x5c\x40\xf9\x00\xc5\xd2\xb3\xec\xe4\x82\x17\x49\xb4\x67\xb4\x4a\x93\x1d\x8d\x28\x4b\x8b\x35\xfd\xe5\xe7\x67\x4f\x8b\xab\x5d\xc1\xc4\xbe\xa1\xaa\xab\x64\xbd\xee\x06\x1c\xec\x90\xb9\x7e\x7e\x68\x00\xb7\x08\xd6\x09\x4f\x62\xb1\x2e\x59\x0a\x95\x4e\xfe\x5e\x15\x6c\x2e\x07\x80\x95\x45\x92\x9e\x80\xd5\x4a\x5a\x8b\x06\xd7\x05\xf0\xe7\x82\x5d\x52\x16\x7b\xbe\xdb\xf3\x3f\x66\x39\x8d\xd0\x28\x10\xc5\x02\xe5\x7e\x46\x10\x8d\xf3\xb1\x39\x84\xd3\xca\x5e\xd4\xc1\x79\x79\xce\x02\x78\xaf\x49\xd4\x6f\xa3\xf2\x1e\x11\x3e\x0a\x4e\xee\x75\x9d\x9a\x60\xb8\x71\xef\x24\x10\x20\xb3\xfd\xf6\x29\x2b\x80\xe6\xe1\xc5\xc2\x47\x55\x37\x4b\xc9\xff\xe0\x4b\xac\x66\x6f\x51\x30\x2b\x88\x03\x5e\x88\x01\x42\xf7\x9a\x8b\xee\xa4\xcb\x64\xff\xba\x88\x31\x22\x51\x8b\xe8\x9f\xec\x91\xbe\x0a\x5a\x67\x7e\xd4\x20\x58\x1c\x6a\x4d\x55\xf1\x0e\x56\xdb\x81\x45\x25\xd3\xb8\x87\x60\xb6\xa4\xc1\xa7\xa5\x86\xfe\x2a\x36\x3f\xcd\xfe\x5f\x89\x09\x77\x78\x3b\x85\x53\x56\xde\x78\x66\x61\x1f\x07\xce\xb3\x86\x6c\xd3\xb6\x62\xa1\x8d\x67\x0f\xea\xfa\xd5\x8b\xd5\x3e\x45\xfd\x05\x0b\x26\x41\x2b\xd8\xc3\x2d\xf8\x0b\x58\xd6\x6e\x37\x6b\x2b\xef\x71\x1f\xb5\x80\x10\xa6\xc4\xad\xa0\x31\x04\x53\x84\x15\x2b\x68\xb3\x2b\xba\x5b\x38\x0f\x94\xce\xcf\x4f\x2e\x71\x70\x12\xa0\x98\xc2\xdd\x0e\x8b\xfc\x53\xc2\xfb\x15\x44\x7a\x04\x16\x27\xdd\x94\xd8\xc7\x52\xda\xbe\xcf\x91\x8b\xa1\xc7\xac\x1e\xad\xb5\x93\xb1\x18\x4e\x76\x7d\x57\x90\xf1\x6f\x1f\x39\x26\x1a\xee\xf6\x3f\x18\x27\xa1\xb8\x24\x33\x9c\x91\xd9\xbc\x21\x0e\x31\xa4\x8a\xf3\x7c\xa1\x80\x28\x28\x52\x3e\x0d\xdb\xbf\xc0\x49\x18\x06\x94\xc1\x8d\x50\xc9\x38\x2d\x8a\x53\xd0\xbf\xa4\xa3\xa4\x85\xa4\x46\x92\xf5\x5a\x1d\x12\xd1\x8d\x32\x81\xa1\x0e\x94\xa3\x04\x61\x0d\x8b\x75\x2c\x8d\x51\x4a\x6d\x39\x92\x8d\x67\x07\xac\x8d\x56\x54\xa6\xdf\x89\x67\x68\xd2\xc8\xd2\x86\xab\x87\x03\x8a\x7b\xc7\x12\x3c\x66\x85\x3a\xcb\xce\x82\x66\x5f\x33\xdd\xf2\xf4\x70\x7c\x90\x07\x84\x70\xc4\x49\x31\xb9\x02\x01\xe8\xc9\x39\x3b\xb9\x44\x68\x11\x95\x23\xeb\x8d\x9e\x91\x02\xe4\xaa\xcf\xcc\x29\x2b\xce\xd5\xcc\x3c\xd5\x1f\x33\x14\x67\x23\xf3\x09\x60\x86\x89\x00\xa0\xd5\x1b\x03\x92\xa8\x27\x74\x75\x7d\x53\x26\xd7\x55\x7c\x73\x38\xcc\x95\x97\xa5\x21\x21\xc9\x44\xc6\xef\x48\x86\x84\xa4\xd0\x5b\x5d\xa7\xf2\x61\x5e\x45\xaf\xb2\xb4\xc8\x0b\x08\xa5\xdb\xb1\x66\x94\xad\xbf\xc8\x8a\x9d\xf6\xaf\x18\x65\xeb\xee\xf5\x12\x19\xff\xda\xd5\xd2\xc4\xaf\x2e\xd7\x25\x84\x6e\xf0\x2f\xf6\x5c\x16\x54\x16\x42\x5d\x97\x09\xe4\x28\xc6\x32\x08\xe6\xdd\x52\xc7\xae\x6d\xc6\xd1\x0d\x1d\x11\x2e\xf0\x68\x49\x57\x87\xa6\x04\xb0\xfb\x25\x61\x43\x02\xa8\x82\x3d\x23\x15\x74\x1e\x1d\xf0\x8d\x4c\x8a\xef\x6b\x0b\x21\xec\x4a\x5e\xe2\xaf\xc1\x62\xe8\xa8\x5b\xfd\xbb\xcb\x75\xaa\x63\x86\xb4\x95\x6f\x34\x94\x81\xa7\x4d\x9c\x34\xd3\x3f\x78\xe2\x9f\xea\x93\xc4\x3f\x79\x9f\xf8\xa7\xf1\x2e\x05\x0c\xc6\x8d\x57\x02\xb1\x35\xc8\xcd\x01\xdf\x62\x1a\xa1\x4d\x67\x86\xc6\x70\xa7\x8b\x30\xee\x78\xd5\xac\x15\xd5\xc0\x89\x0e\x1c\xe3\xe9\x41\x92\xa6\x74\xc7\xab\x81\x6c\x19\x83\x49\x44\x30\xfa\xcb\xab\x97\x2f\x1c\x54\xa1\xc8\xf1\x63\x2c\xe3\xfe\x89\x61\x2f\xf9\x8a\x98\x30\x3a\x3d\x42\xa9\xb6\x11\x65\x9f\xe9\xae\x44\x4f\x87\x0b\x55\x06\x84\x3b\x65\x25\xf8\xdd\x07\x1b\xbe\x62\xe0\x14\x56\x57\x1a\x55\x6a\x5c\x26\xf7\x36\xd3\x26\x95\xdc\xc6\x0f\xf3\x4d\x28\x61\xe3\x5d\x27\x25\x6b\x79\x8f\x50\x02\x62\x01\x2c\xb8\xbf\x0e\xd6\xfd\xb9\x0c\x82\x01\x4e\x60\x99\x13\xbf\x8a\x42\x43\xd2\xf3\x31\xd6\xbc\x7a\x1f\xc9\xa7\x1f\x47\x3b\x1f\x3e\x77\xbf\xcd\x2a\x4d\xd5\xb5\x9c\x86\x48\x9e\xa3\x79\x5d\x0b\x88\xf9\xa8\x65\xad\x65\x5c\x8d\x2b\x64\xd1\xa6\x86\x88\x3b\x87\x84\x0a\x7a\xeb\xb1\x3f\x7c\x44\x20\x14\x00\x97\xe2\x94\x82\xd1\x63\x3d\x6b\x4b\x58\xdf\xf9\x83\x85\xab\x58\x06\x3f\xb4\x9d\x07\x5d\xf0\x0a\x0e\x6f\x4c\x5f\x5e\x33\x63\xd2\x56\x20\xe3\x6f\x62\x59\xac\x70\x42\xd2\x28\x43\x73\x1b\x6a\x9e\x14\x6e\x80\x19\x92\x2c\x04\x41\x27\x97\x49\x30\x31\x80\x28\x32\x82\x06\x24\x66\x71\xe6\x9a\x8f\x81\x08\x41\xe5\xf4\xfa\xa6\x50\x8e\xad\x11\x8a\x23\xb7\x27\x63\xbf\x26\xfd\x6c\x43\x50\x4a\x2c\x9b\xb2\x0f\x5a\x0f\x72\x51\x1b\xfe\x62\xba\x62\x35\x6a\x08\xb7\x1c\x2c\x1d\x81\xb3\xba\x26\x0a\xd6\x8a\xf9\xab\xb0\xcb\xf5\xd9\xa4\x5f\x66\x38\xab\xd9\x74\x25\xf4\xcf\x77\x05\x2d\xfa\x3d\x29\x4a\xf7\xaf\x99\x4b\xd2\x3a\x8a\x7d\xa8\xfe\xbf\xe1\xdd\x6e\x7e\x1c\x52\x19\xd2\x76\x76\x62\x87\x46\xc8\xf7\x04\xc6\x41\x30\x74\x6c\x42\xae\xf8\x4a\xf7\xb1\xa6\xef\x15\x42\x74\x40\x50\x79\x0c\x1a\xcd\x56\x07\x2d\x6f\xff\x3d\xda\x1f\xab\xf6\x2f\xda\x88\x76\x27\x0c\x32\xbe\x6a\xf9\x24\x69\xe1\xcf\x5d\x10\xc3\x69\x80\x17\xe2\xc2\x69\x73\x1f\x37\x07\xff\xda\x81\x39\x69\x00\x34\x4e\x08\x0e\x1e\xc6\xe4\x79\x20\xee\x42\xf7\x0e\x59\xf2\xd5\x9c\xb5\x37\x3c\x85\xa8\x83\x7d\x6e\x2c\x5a\x56\xb2\x54\x8d\x73\xa1\x7f\x44\x82\x59\x43\x28\x6e\x5b\xb4\x9a\x92\xb2\x07\x5b\x1c\xbe\x6d\x94\x23\xb1\x2f\x92\xeb\x4e\x2b\xc9\xc8\x7b\x67\x81\x44\x39\x05\x37\x2c\xc5\xbf\xa0\x1c\x72\x89\x0d\xb3\x73\x80\x69\xd3\x4e\x2e\xe6\x48\x9c\xf8\xea\xb7\xdb\x71\xb7\x0b\x3b\xd7\xcb\xae\xe3\x49\x03\xb7\xd2\x61\xd1\x31\xad\xeb\x8e\x1a\xfc\x9a\x52\x06\xc8\xab\xee\xee\x67\xac\xca\x1a\xef\x37\x6d\x5c\x04\x25\x86\x32\x12\x10\xef\xc5\xa6\xc7\x44\x69\x57\x66\x6d\xd6\x4b\xba\x68\xa7\xe0\xa2\x5d\x70\x34\x82\xb2\x58\x16\xab\x45\xc4\xc8\x0c\x97\x23\x32\x43\x31\xb3\xbe\x84\x1b\xc4\x38\x3b\xb8\x63\xfd\xee\x43\x5f\x90\x75\xb7\xdb\x39\xb0\xa2\xb0\xd5\x10\xf7\x09\x15\x39\x59\x93\x6b\x2c\x98\xe9\xe4\xba\x28\xd7\x1e\x6d\x63\x67\x6d\x7d\x2e\xc9\x52\x52\x26\x26\xc5\x12\x5d\xad\x33\x64\x4f\xa2\x16\x9d\x9e\x7f\x96\xa6\xbe\xcf\xce\xdf\x25\x97\xe3\x87\x5f\xb7\x95\xf4\x0d\x9d\x7c\x47\x44\x85\xcf\xd6\xd0\x2a\x53\x01\xff\x21\x1c\x10\x7c\x5f\x46\x45\xeb\x58\x3a\xfa\xef\x9a\x20\xde\x7b\xd2\x30\x9d\x61\xd2\x7e\x31\x91\x46\xda\xc6\xe2\xb2\x52\x86\x46\xb7\x51\xef\x0d\xd3\x5a\x42\x88\x7c\x1f\x1a\x86\x10\xf8\x52\x3f\xe9\x3a\x9f\x54\x69\x55\x7d\x75\x92\x79\x2f\xba\x16\xee\x53\xe9\x73\xf6\x5b\xb1\x1f\xf0\x32\xa3\x6b\x19\x9a\xa8\xac\xe8\xe0\x95\xa0\xf0\xc1\xf2\x0a\xec\x4a\x79\xc2\xd6\x49\xb9\x06\xe3\x65\x09\xc4\xf9\x80\x97\x1f\x06\xc9\x65\x92\x31\x5b\x4e\x59\x94\x8e\x45\x9f\xaa\x5c\x10\x8b\x31\x24\x55\xf5\xe9\x43\x48\xaa\xea\x9f\x18\x42\xe2\x0f\x21\xa7\x6d\x30\x84\x61\x74\xeb\x28\x7e\xa4\xff\xcc\x28\x44\xaf\x03\x8b\x75\x95\x7d\x03\x0d\x16\x37\x9f\xca\x0e\xb7\xb6\x99\xc4\xde\xf8\xc1\x03\x6c\xb1\x3b\x7e\x38\x6d\xec\xa2\x87\x1d\x31\x1a\xee\x68\xd9\x92\xf7\x84\x10\x50\xe9\xbc\x78\x4b\x59\xf6\x91\xca\x2d\x95\x37\xe3\x0a\xe0\x44\xa7\x59\x8f\x52\xb8\xd2\x69\x60\x9c\x84\x10\x4e\x4d\x82\x2c\x31\x77\x5d\x88\x7c\xc2\x56\xec\x7d\xe2\xa9\x2c\x25\xe4\x23\x36\xea\x98\x43\x78\x0f\x1d\x94\x3e\x40\x9a\x63\x5b\x8d\xab\xe2\x25\x77\x49\x4a\xad\xd0\xd2\x48\x9e\xcc\xb3\x14\xf9\xc8\xf8\xb5\x82\x87\x51\x66\x81\x96\x54\xbd\xfb\xba\x81\x01\xc4\x14\xc3\xa1\xdf\x94\xf0\xcc\x0e\x87\x63\xbc\x6f\xa3\xfd\x96\x97\x06\x6e\x72\xa2\x29\x2e\xec\xf3\x06\x3b\x73\xb8\xe8\x01\x47\x3a\x6f\x7a\xf5\x86\xd2\xb4\x33\xa1\x6c\xfd\x72\x23\xe5\xac\x73\x54\x5d\x67\x60\xf4\x4c\x49\xa3\x94\x20\x59\x61\x54\x11\x42\xcb\xe9\x0a\xdd\xa4\x49\x45\x03\x00\x57\x10\x3b\xa0\x1b\x11\xba\x9c\xad\xe6\xca\xfd\xa9\x28\x33\x57\xf9\x9b\x92\xd2\x57\x1a\x9e\x82\x13\x70\xca\x1c\x54\x19\xca\xd6\x8d\x1c\xe3\x5e\x4a\x42\x5f\x7e\x35\xca\x24\x7c\x2c\xee\x3f\x55\x46\xba\xe1\x6e\x14\xb9\xd1\x1d\x5c\xed\xf8\x87\x9f\xbd\x7c\x8d\x5d\x52\xea\xcc\xb7\xb4\x14\x7c\xbe\x1e\x8e\x12\x40\x83\x33\x01\xe8\xbb\xe3\xa2\xf7\x6e\x01\x1d\xe1\x20\xe3\x11\xc7\x74\x79\xba\xc2\x74\x79\x7f\x85\x8c\x7c\x5e\x34\xaa\x5e\x58\xd2\xe5\x83\x95\x46\x0b\xba\x7c\xb8\x3a\xe8\x18\xfa\xcb\xd9\x4a\xbd\xe3\x3d\xc5\xe3\x53\xa4\xd4\x1d\xd5\xbd\xaf\x94\xaa\x83\x21\x24\x5d\xb4\x01\xa2\x4a\x0a\x2a\xa7\x1b\x4e\x98\xfe\x2a\xb3\xcb\x2d\xb0\xe8\xe6\xc5\x51\x09\x54\x2b\x88\x78\xff\x16\x9d\x57\xf7\x50\xb4\xfc\xdb\xea\x1e\xf8\x38\x43\xf0\xfd\xd5\x09\x9a\xab\x56\x4b\x31\x6c\xb7\xdd\x12\x6c\x34\xdd\xa6\xcb\xe5\x7d\xc9\x0b\x18\x88\xf6\x00\x26\xbd\x03\x60\xb4\x3f\x7a\x3b\x1b\x45\x0f\x9a\x8d\x68\xb6\x2b\x68\xe8\xc4\x22\xf5\x10\x86\xc3\x19\x66\x10\xae\x1a\x97\xe2\x77\x21\x7f\x67\x64\xb9\xc2\x89\xf8\x53\x11\x3a\xaf\xe6\x52\x8d\x0f\x0f\x3e\x70\x22\x4d\x79\x2a\x84\xa5\x25\x1d\xab\xeb\x60\x09\x3f\x50\x51\xd7\x51\x41\x2a\x78\x6e\x05\x61\xe3\x64\x81\x45\x80\x82\x38\x58\x05\x96\x4c\x83\x40\x57\xda\x24\x00\x8c\x7c\xe6\xb2\x85\x1b\x70\xae\xac\x76\x37\x9c\xb8\x30\x1d\x71\xce\x46\x89\xc2\xc0\x83\x28\x7f\x23\xcb\xb7\x4a\x02\x2e\xcb\x30\x5e\xc1\x41\xb5\xd9\xd8\x9a\x17\x49\xfa\x36\x4a\x26\xbb\x62\x17\x81\xbb\xc0\xe1\x54\xb5\x1b\xc4\x50\x01\xde\x1a\x0f\xa7\x48\x3e\x0c\x61\x62\xa8\xcb\xcc\x3a\x8c\x83\x27\xbc\x50\x19\xbb\xd3\x80\x38\x61\x02\x78\x08\xcd\xab\x23\xa7\xc1\x41\xf3\x56\x9d\x27\x0a\xd0\xa2\x60\x63\xd8\x54\x31\xee\x59\x9a\x17\x15\x5d\x7f\x57\x26\xe9\x5b\xca\xa3\x02\x61\x1e\x86\xa5\x5c\xcb\x79\x62\x47\xa1\x0e\x19\x42\x48\x54\x91\x64\x99\xd8\x91\x8b\x73\xa8\xae\x5d\x13\x9a\x4a\x47\x03\xe9\x81\xce\xdc\x85\xbe\x8a\xab\x2d\x07\x03\x8f\x78\xfe\x5a\x94\x6b\x91\x21\xb0\xb0\x89\xd1\x54\x36\x31\xbf\x1d\xb3\xa7\x2b\x89\xdc\xd3\x95\xc2\x6f\x0f\xa3\x9d\xb3\xf2\x09\x5b\xeb\x48\x00\x7f\x2c\x8b\xab\x1f\xe0\xf0\x33\xc2\xdd\x88\xe3\x40\xef\x8c\xc0\xf8\x00\xf7\x36\x82\x98\x48\xcf\xb6\x2b\xbb\x06\xa7\xbd\x3b\x17\x84\x2e\x6d\x08\x39\x29\xf8\x90\x18\x5b\x2c\xa7\x2b\xfd\x00\xde\xb9\xfc\xa6\x98\x6a\xfc\x2a\x96\x0f\x56\x8b\x8e\xc3\xac\x70\x0e\xb3\x42\x1c\x66\x71\x67\xa1\x53\xa7\xd0\xfd\xd5\x61\x1e\xc0\xc9\x3d\x24\x04\xe0\x35\x5d\xcd\xd1\xcc\x89\x8d\x68\x70\xc5\x2e\x0f\x75\x20\x2a\xb8\xcc\x11\xa1\x13\xe9\xb4\x1d\x2d\xd5\x54\xb8\xc7\x75\x99\xc3\x56\xae\x8b\x39\x6f\x61\x79\xa4\xb4\xa4\xd8\xc1\x51\xa9\x85\x3d\x5a\xd2\xa3\x87\x24\xf6\x1e\x6c\xa5\xac\xae\x2d\x36\x66\x3e\xea\x65\xca\xc2\x47\xb6\xe7\x8f\xea\x20\x47\xd5\x38\xd9\xdc\x0e\x4d\x17\x60\x38\xa4\x6a\xca\x8b\xd6\xaf\x37\x02\x7b\x79\xbd\xc1\x01\x78\x62\x8f\xc3\xb2\x9d\x9c\x5f\xeb\x0b\x62\x39\x5b\xa1\x0e\xe0\x2d\x59\x0b\x21\x65\x83\x87\xe0\x0d\x48\x40\x60\xf0\xd0\x58\x70\xcf\x4b\xa8\xeb\xa8\x01\x76\x93\xa5\x41\x28\xff\x59\x07\x14\xad\x8e\xfa\x51\xff\x95\x58\x28\x83\xfc\xbb\x92\xa6\x5b\x9a\xbe\x7d\x0e\x8e\x54\x3d\x9a\x41\x1f\xf4\x8d\x10\x88\xd3\x79\x32\x1e\x4b\x28\x0e\xb3\x2b\x41\x5d\x27\xca\xa6\x4e\xdc\xa6\xc9\x4a\x2c\xc2\x84\x17\x3f\x16\xd7\xb4\x7c\x9a\x08\x36\x4c\xc0\xd5\x94\xd4\x46\x69\xea\x9c\x93\x9c\xea\x1f\xc1\x0a\x07\x27\x68\x1e\x0c\x9c\x46\x87\x70\x0e\x39\x53\xb1\x5b\x77\x54\xc1\x79\x27\x67\x6d\x1b\xaf\xdc\x73\xde\x1b\x1d\xeb\x18\x96\x9e\x61\x4a\xa8\x75\xbc\x9b\x8b\x8b\x70\x4f\x92\xf9\xfe\x6c\x3a\xdf\xeb\x18\xc6\x3b\x92\x2e\xf7\x1a\x43\xc5\xd9\x9d\x2b\x13\x6c\x6b\x35\x31\x0c\x50\x18\x2a\x9c\x1d\x12\xb2\x73\x1c\x07\xc3\x7e\x5e\xce\x56\xa3\xfc\x70\xa4\x6e\xe4\x83\x09\xb7\x66\x97\x63\x4a\x52\xb8\x05\x6c\x37\x12\x1d\xcd\xee\x50\x29\xb2\xef\x83\x7b\xbe\xc9\x77\xea\xe2\x70\x53\xd6\xe9\xbe\x77\xec\x20\x36\xf6\x8c\x3d\x08\x01\xa2\x44\xde\x3a\xac\xad\xb5\x80\x38\x0b\x13\xe7\xa9\x35\x78\xb2\x73\x08\xac\x19\xc2\x10\x07\xb7\xd4\x5c\xb5\xdc\x32\xe2\x63\xfd\x44\x52\x92\xa5\x39\x7c\xe1\x14\x2d\x1d\xe2\xc5\x89\x71\x0b\xb1\xa7\x87\x33\x5c\x91\xe5\xea\x38\x8d\x6d\xe9\x83\x3b\x90\xd9\x65\x17\xd9\xe8\x1e\x63\x70\x86\x35\x8f\xeb\x26\x61\x41\xa1\xad\xcc\xcf\x39\x38\x39\x9b\xa8\x32\x17\xb4\xc4\x41\x4e\xaa\x25\x23\x8e\x63\xd9\x39\x37\x98\x04\x92\x32\x71\x56\x8b\x42\xe3\x31\x83\xbc\xa8\x63\xa8\xdc\xb9\x14\xb8\xb8\x14\x2c\x61\x6d\x08\xf0\x03\x74\xee\xc6\x32\xeb\x06\x1c\xba\x29\xec\xf8\x0f\xe5\xa7\xdc\xaa\x15\xc2\x7a\x22\x8b\xa8\x74\x64\x91\x2f\x04\x36\xdc\x76\x2c\x55\xce\x9d\x5c\xe2\x60\x97\x94\xc9\x55\x15\xe0\x4a\xfa\x39\xa4\xa4\x5a\x3a\x50\xc2\x9d\x0b\xd6\xa0\xf3\x3d\x5e\xd3\x9f\x09\x2e\x9b\xd7\x04\x42\x71\x7b\xcc\x41\x20\x3d\x03\x24\x57\x15\x04\x14\xce\x00\xfe\x9e\xc7\x7b\x43\x2a\x48\xfd\xa2\x17\xb1\x46\xb3\xca\xaa\x88\xf6\xa0\xde\x4e\xb3\x64\x98\x97\xe7\x9b\x65\x10\x1f\xff\x50\x2f\xef\xec\xd6\x96\x0a\x80\x8e\x66\x21\xa3\xae\x83\x00\x8d\x1c\x30\x75\xb2\xe7\xba\x9e\x94\x54\x2f\xfc\xc6\xee\xba\x6f\x3c\x49\x80\xdf\xa2\x32\xe3\xdb\x33\xfa\x7e\x47\x53\x4e\xd7\x4f\x05\xc9\xaa\x8e\x1d\xc5\x1c\xb6\x38\x74\xbf\x89\x26\xb5\x9b\x17\xe9\xdb\xc8\xa7\xe5\x7e\x17\xe8\xff\x33\xb0\x3e\x80\xaf\x28\x87\x5b\x6f\x05\xac\x69\xf2\xfb\x1d\xf3\xf1\xa4\xe0\x5e\xce\xb2\x77\xa2\xfa\x94\xd1\x71\xb4\xb8\x32\x7e\x1f\xaa\xe1\x16\xd7\xcc\x8c\xc9\xde\xb4\x6e\x2a\xe9\x47\x19\x65\x48\xcc\x32\xde\x52\xde\xfb\xeb\xa6\x4e\x22\x6a\xe4\x39\xae\x1c\xc7\x7a\x45\x3a\x60\x29\xe7\xb1\x92\x97\x03\xf6\xfd\x8a\x1f\x41\x5f\xf7\x6e\xa4\x6a\x96\x2d\xaa\x7b\x86\xba\x94\x3d\xde\x8b\x33\xf0\xe2\x9a\xe0\xca\x04\xee\xc1\xa9\x68\x3e\x17\x57\xf5\x9e\x9c\xfc\x2d\x5a\x4e\xea\xff\xb3\x42\x8b\x68\x79\x7e\xbd\x42\xa3\x93\x0c\xe2\x2d\xed\x1e\x57\xf3\xdd\x88\xcc\x90\x3b\x8c\xa8\x20\x51\x49\xd8\x72\xb7\x42\x8a\xb1\x82\x65\x30\x03\x5c\xb8\xd4\x6e\xe1\x52\xc2\x45\x18\xee\x04\xf3\x35\x9e\x2d\x72\x32\x9c\xc5\xe9\x08\x04\x06\x71\x94\x88\xe6\xc4\xa1\x98\x89\x1f\xa3\xd9\x0a\x5b\x1a\x21\x91\x34\x82\xf9\xce\xe0\x7b\x2f\xe9\xd7\x44\xd2\xaf\xea\x2b\x13\x5f\x0b\xdd\xaa\xe8\x42\x3a\x7a\xca\x55\x5c\x28\x08\x40\xbf\xde\xa7\x9e\x05\xb6\xeb\xac\x77\xc4\x05\x89\x2b\x6e\x7a\x34\x97\x4b\xb4\xe4\x2b\xa2\xfc\x3f\xa7\xb8\x4c\xae\xe3\xcd\xe1\x00\x8a\xb6\x14\x2c\x29\x7b\x2e\x92\x6e\x99\x03\xf6\x88\x79\x9f\x63\xe5\x3e\xa7\xd5\xe6\x58\x39\x9a\x23\x41\xf2\x1b\x6a\x8c\x19\xaf\xc6\xbd\x23\x81\x6b\xe9\xf3\xc6\x32\xed\x1b\x42\x83\x8d\x6a\x8f\xe1\x28\x08\xfc\x4e\x6d\x9f\xcd\xc9\x0b\x8a\xc1\x99\x2b\xf7\x6c\x18\x2c\xd9\xdd\xd0\xb5\x58\x2f\x49\xe2\xda\x03\xc5\x3c\x75\x15\xf3\x62\xf0\xcb\x72\xe5\x8c\x9b\xea\x08\x39\x1c\x9b\x01\x70\x88\xc6\x0e\x6a\xc1\xc6\x89\xe6\x40\x0f\x97\xb8\x20\x10\x65\x7d\x9e\xd9\x4e\xb2\xd1\x48\x52\x6d\x91\xe2\x29\x00\x96\x99\xdc\x28\x61\x18\x15\x62\x2f\x61\xf9\xf6\x52\x1c\x4c\xc5\x58\x7c\x4f\x95\x89\x49\xec\x8a\x82\xa0\x19\xcd\xb6\x95\x72\x0f\xec\xca\xe2\x32\x53\x09\xb3\x15\x4a\x0b\xc6\x33\xb6\x37\x42\xe1\x4c\xd2\x4c\xeb\x62\x7f\x91\xd3\xa7\x40\xf8\x72\x74\x28\x09\x37\xa1\x3b\xc5\xb4\x1a\xf2\x94\xc6\x5d\x6f\x9e\xb4\xbb\x86\x4f\xc1\x2f\xaa\xce\xe0\x42\x56\x0a\x1c\xd2\x56\xb6\x69\x58\xc7\x3b\xb6\x27\x7d\xa1\xc0\xfc\x5a\x92\x10\xd9\xa2\x77\x95\xde\xb1\x55\x5d\x67\x70\x68\x8f\xd0\xb9\x57\x7b\x5e\x00\x35\x08\x02\xa9\x8a\xbd\x1d\x24\xa2\xc5\x40\xa0\x4f\xc6\x28\xa6\xda\x01\x31\x88\x5d\xec\x4a\xdc\x69\x02\xdf\x43\xf9\x01\x20\x5e\x7b\x02\x0e\xab\xd1\xf4\xb5\xd3\xd3\xde\x13\xa9\x64\x01\x35\x54\xb1\xe7\x03\xd1\x42\x80\x39\x08\x6d\x75\xbb\x3d\x3c\xb4\x0b\x22\xd8\x0c\x47\xcb\xf8\xaa\x6c\xc3\x84\x9b\x27\x70\x5e\x68\x5f\x69\x34\x33\x9e\xcd\x8b\x33\x32\xf5\x4f\x1e\xc1\x84\x17\xb0\x5b\xea\xfa\x14\x22\xf9\x8a\x0d\x83\xe6\xc5\x78\x8c\x7a\x57\x42\x8e\x6a\x60\xee\xc3\x00\x33\x31\x43\x06\x33\x6c\xa9\xaf\x8f\xf8\xa2\xfb\xe4\x80\x15\xa0\xb0\x8a\x1f\x3e\x74\x63\x54\x60\x57\x0b\x16\x3f\xfc\xf6\xb0\xc2\x0f\x3f\x3f\x62\xf7\xba\x47\xdd\xb6\xd6\x5e\x5b\xb5\xcb\x03\xd0\xb7\xad\x3b\xfd\xd6\xad\x5b\x5a\xb8\x4a\xa7\x39\x5a\xb8\x54\xa7\xbd\xa3\x6c\x2d\x1b\xcc\x4d\x37\xca\x93\x1d\xde\xeb\x94\x3c\xab\xa0\xa5\x9d\x4e\xd0\xcd\x6c\x4c\x82\x54\xe6\x59\xdd\xdd\xfa\xd3\x9d\xdf\x6d\xbf\x60\xc4\x4c\xd5\xb3\x8c\xc0\xa5\x2f\xa0\x46\xfc\x26\x75\x4a\x73\x60\x5a\x11\x6e\x46\xa7\x39\x6c\xb5\x93\x9a\xc6\xb5\xa3\xc7\xab\xcf\x13\x46\x74\xe0\x70\x65\x5c\x69\xa3\x0a\x98\x0b\xd3\xf7\xb6\x44\x28\x66\x0d\x5f\x55\x24\xf2\xfa\x47\xc6\x47\x95\x7c\xa7\x5d\xea\x96\xba\xdd\xf4\x31\x1c\xa8\xe6\x02\x7c\xd3\xed\xb6\xa1\xac\x6b\x41\xc7\xc9\x87\xf8\x07\xc7\x41\x91\x4f\x45\x96\xa6\xc2\x36\x5a\xb2\xa8\x44\x2b\xa4\x0b\x2a\x6f\x63\xec\x80\xb7\xce\xb3\x73\xa3\xe1\xc2\x5b\xa5\x5e\xcc\x9d\x14\x89\x5e\x24\x75\x92\x04\x32\x91\xbd\x93\xd0\xa5\x41\x73\xec\x6c\x13\xcf\xce\x76\x3b\x49\x78\x4b\xad\xe4\x94\xae\x1a\xa5\x5b\xb2\x70\xa7\x6c\xd9\x28\xdb\x92\x17\x39\x65\x77\xcd\xb2\x9e\xc9\x94\x5f\x76\xe3\x96\x85\xad\x7d\x41\xb6\xce\xa1\x74\xf1\x05\x0f\x25\xd8\x9a\xf1\x83\x47\x2d\x57\x18\xf6\xb0\x88\x1f\x1e\x3d\xbe\x5a\x5e\x32\xd4\x91\x10\x3f\x9a\x8a\xd3\xac\x23\x02\xcf\x67\x1b\xd3\x37\x9d\x24\x54\xae\xe7\x6a\x65\x3b\xbf\xa9\x7e\x0f\x93\x79\xac\x1d\x09\xe7\x45\xe2\xbe\x4c\xb3\x22\x3c\x78\x92\xaf\xe4\xbc\x49\xc9\xff\x9a\xf1\xad\xe4\xbc\xec\xb3\x2c\x2c\x5f\x41\x06\xda\x19\x0e\x3c\x70\x5d\x70\xe3\xce\x51\x85\xf1\xd1\xa6\x65\xa2\xab\xe7\xc9\x4e\x99\x9b\x80\xfb\x5e\xcd\xcd\x49\x75\x2a\x3a\xaa\xf1\x57\xef\x62\x7b\x5d\x23\xaa\xfc\xa7\x49\xba\xa5\xda\x25\x82\x97\x78\xeb\xd3\x5e\x33\x14\xed\xaa\xc0\xab\x0e\x36\xed\xf6\x11\x7c\xd7\xf3\x5a\xbf\xd3\xa8\xfd\x46\xf8\x78\xbe\x15\x2d\x4a\x3a\x5f\x81\xbd\xd3\x86\x71\x38\x84\xd5\xaf\xf6\x17\x15\x2f\xc1\x8b\xbf\x52\xab\x8a\x13\x5e\x54\xf7\x17\xb6\x83\x58\xa1\xe6\x29\xd3\xc9\xf9\xbd\xf3\xaa\xeb\xc1\x67\x34\xb9\x87\xce\xab\x7b\xe7\xf7\xce\x4f\x4e\x10\x08\x2f\x1b\x18\x40\x38\x88\xe6\xa5\x43\x13\xa5\x6a\x2b\xd6\xb4\xe9\xd0\xc1\x8a\x9a\x49\xf7\xc3\x59\x1c\x38\x4e\x4e\x35\xb6\x41\x48\x47\xed\x4f\x93\xb6\xdf\xee\xea\xc9\x9b\x60\xbc\xca\x02\xa0\xd9\xc3\xb9\x7c\x9b\x9b\x6e\xc5\x71\xc0\xc9\x9e\x6f\xc6\x8b\x6f\xf4\x53\x5d\xf3\x2a\xb2\xae\x7b\x6b\x36\x8b\x9a\x87\x41\xc4\x8c\x41\xc6\x65\x87\xf7\x58\xcf\x05\x54\x4d\xc4\x09\xf3\x50\x99\x63\xf3\x3c\xd9\xb1\x4d\xd4\x2f\x95\x13\x5e\x5c\x44\x26\x9c\x8f\x59\x9a\x9e\x01\x45\xcb\xbf\xe1\xd5\x08\xe1\x13\x60\x42\x3b\xe2\xcf\xa9\x78\x05\x82\x2e\xb4\xbe\x39\xe1\xfd\x73\xc6\x2e\x07\xc1\xa8\x40\x1a\x45\xbc\xf7\xb3\xc6\xed\x34\xd0\x09\x5e\x4c\x25\x99\xd1\x15\x89\x52\x03\xa3\x2f\xf2\x92\x35\x17\x56\x44\x31\x0b\x43\x73\x87\x4d\xe8\xfb\xac\xe2\xd5\xab\x0f\x2c\xed\x4e\x8d\x2c\x0e\x24\xce\xfb\xcf\x04\x84\x8a\xb2\x00\x0e\xc4\x92\x7e\xe3\xc1\x55\xe1\x64\x17\x6c\x12\xc1\x64\xf0\x62\x20\x66\x3f\xd0\x6f\x7b\x1d\x38\xc5\x83\x60\xc4\xdc\x97\xda\xa0\xba\x77\x4d\x9c\x8f\x9c\x21\x7a\xac\xc7\x9e\x6f\x02\x3e\xd8\xd7\xfc\xdc\x1d\xf7\xfc\x0e\x7d\x99\x86\x6c\x98\xb0\x46\x03\x5b\xf3\x88\x8d\x1b\xe8\x35\xde\x1d\xf1\x4e\xd8\x58\xbc\xe9\x00\xcc\x60\x53\x94\x57\x09\x87\x80\x1b\x2d\xf8\xd8\x4b\xc3\x7b\x36\xe7\x9e\x07\xcd\xc3\xc3\x8e\xd5\x49\x73\x3d\x58\xb6\x7c\xb5\x40\x30\x90\xd2\x79\xe9\x0b\x11\x46\xda\x4f\x8b\x29\xc2\x25\x72\x4c\xce\x3a\x5e\x1f\x97\x08\x0f\xa3\x61\x17\xc6\xd5\x75\x67\x72\x54\x22\xe4\xa2\xa8\x87\x83\xe5\x11\x1c\x54\x8e\x19\xfc\x8d\xd6\x6b\x09\xdf\xb1\xc5\xe0\xad\xa4\x38\x92\xab\xba\xee\xca\x7d\xa3\xb3\xd1\xe7\x59\x2b\x1f\x7b\x55\xb8\xa9\xe2\xd3\x23\x4f\x0b\x1f\x76\xc4\x40\xf9\x0c\x6a\x08\x67\x24\x2a\x64\x54\x91\x3c\xf9\xf8\x61\x6c\xdc\x89\x87\x61\xe1\x12\x38\x85\x25\x70\x8a\x03\x4e\xfa\x0d\x1c\x1b\x8f\x6c\x96\x2b\x85\x0c\x8a\x89\x20\xc1\xd7\x93\xe9\xe4\xf4\x6b\xa5\x1f\x51\x7e\x14\x9b\xb1\xbc\xe9\x51\x7a\x64\x5f\x1d\x79\xd9\xe1\x36\xa8\x5d\xb8\xa6\x05\x4b\x13\x1e\x35\x3a\x59\xd2\x15\xb2\xaf\x35\xda\x2c\x88\x33\x33\xee\xbe\x98\x52\x1c\x16\xac\xa1\x13\xb5\xad\x75\x22\x74\x90\x4b\x6e\x60\x8d\x03\xe6\x87\x1e\x71\x70\xc7\x3b\xc2\xa9\x76\x9f\xe2\xbb\xa5\x0d\x43\x65\x49\x29\xc3\x0f\x79\x5e\x15\x6f\x33\xdc\xee\x7a\x65\xd9\xf2\xb1\x7b\x9d\x94\xcc\xff\x8a\x82\xdf\x8a\xfd\x60\x9d\xad\xe1\x55\x65\x45\xf9\x20\x61\x1f\xb4\x43\x4c\xac\x6c\x8c\xf1\xa0\x28\x07\xce\x68\x26\x83\x9f\xb3\xcb\x2d\x1f\xb0\xe2\x1a\x1b\x07\xc3\xeb\x82\x56\xa2\x91\x6d\xc6\x2e\x27\x83\x9f\xb2\xf4\xad\x6e\x46\x9c\x77\x83\x0f\xe0\x94\x38\xa9\xe8\x40\x70\xe4\x9c\xef\xaa\xf8\xe4\xe4\xfa\xfa\x5a\xb3\xab\x62\xe2\xbc\x3a\x01\xc7\xd7\x7b\xb0\x93\xa2\x57\x83\x8c\x69\x93\x67\xe5\x73\x7e\xf2\xf7\x6a\x12\x48\x96\xda\x8f\xef\x81\x95\x17\x5d\xcc\xbb\x62\x41\x1b\x5a\x6d\xb9\xc2\x82\x49\x2e\x1a\x9e\x79\x18\x02\x11\xec\xa6\x28\x23\x46\x8a\x05\x8b\xd9\x11\xcf\x3c\x89\x38\x6e\x0b\xb8\xc6\xb3\x33\xa3\x08\x51\x96\x0e\x09\x61\xcb\xcc\xf3\xcc\x93\x11\xd6\xe5\x99\x27\x21\x99\xe3\x99\xa7\x22\xd0\x6a\xa5\xa1\x01\x2e\xf8\xcc\x17\xf2\x1d\xd2\x57\xa8\x29\x72\x30\x88\x84\x10\x27\x5c\xef\x10\x9b\x6a\x0c\x07\xbb\xe8\x8a\x0a\x71\x6d\x92\x68\x42\xf2\x7a\xaf\x78\x2b\x54\xd7\xc3\x4a\x7b\x80\x1f\x3a\x0f\xb4\x5b\xaf\x78\xab\x51\x30\xc8\x00\x0d\x06\x49\xc3\x2f\xb5\x0a\xda\x79\xd4\x03\x77\xef\xa3\x60\xf9\xe6\x83\x56\x83\x14\xee\xb2\xc1\x05\x15\x48\xb2\x1e\x24\x95\x46\xb2\xc9\xe0\x99\x0c\x84\x83\x07\xbb\x9c\x0a\x3c\xdb\x03\xae\x19\xb7\xd5\xb2\x09\x65\xcd\xee\x3e\x18\x51\xae\xd9\x2b\xd1\x58\xb1\xe7\xe2\x86\x85\x68\xca\x80\xb1\x26\xe8\xce\x9e\x31\x5a\x0e\xd6\x45\x0a\x27\x04\x5c\xa6\xe0\xfd\xba\xf7\x81\x4b\xf2\x59\x96\xf7\xee\xb1\x1d\x3f\x78\xd8\xb4\xb8\xff\xec\x60\x4e\x18\xb4\x6d\x26\xf2\x04\x84\x08\x3a\x1a\x72\xca\x72\xca\xd9\xbf\x73\xec\x08\x69\x9c\x75\xbb\x3b\x43\x23\xb5\x30\xee\x0c\x95\x87\x51\xcf\xc1\x9f\xef\xc8\xd0\x46\x3b\x72\x1e\x37\x83\x63\x11\x15\xfd\xdf\x2a\x71\x92\xae\xbb\x2d\xb9\x5b\x18\x82\xa4\xfd\xc2\xdb\xb9\x78\x9d\xc7\xe7\x6a\x3b\x2b\x6f\x50\xd6\xf1\xb0\x62\x87\x6d\x82\x2f\x14\x04\xcd\xb5\xf6\xce\x7e\xac\x60\xb7\x2f\x5e\x31\x1c\xef\x8d\xa6\x86\x9c\x76\x49\x88\x99\x9e\xc3\xb1\x30\x0d\xa6\xd6\x26\xcb\x39\x2d\x3b\x5f\x33\x6a\xcc\x24\x5a\x07\x2c\x5d\x4f\x78\xee\x79\xef\xe2\xf2\x16\x5c\xe4\xae\x50\x18\x66\x4d\xc7\xb1\x25\xa4\xe1\xb2\xe5\x38\xb6\x7b\xb7\xc2\x96\xd4\xa3\x8a\x1f\x9d\x8a\x2d\xd8\x11\x36\xe6\xdd\x67\x45\xab\xd3\xfc\x1c\x2e\xed\x5e\x2b\xf4\x55\xe5\x44\xab\xe3\xee\x91\xd1\x88\x56\x27\x1d\xf1\x32\x69\xd5\x50\xd7\x11\x33\x36\x39\x62\x59\x4a\xc2\x05\xe4\x8a\xfe\xe0\x75\xa5\x1b\xbc\x8e\xf5\x04\xaf\x63\x98\x39\xc1\xeb\xa4\xdf\xf0\x8c\x14\x6d\x84\xcf\x5c\x1f\x01\x2e\x42\xfb\xec\x88\x7c\xfc\x6b\xde\x66\x0f\x99\x74\x37\x58\x2a\x3c\x76\x2d\x34\xce\x66\x5a\x56\x22\x4d\x39\x66\xab\xb6\xc5\x83\xcc\x29\xbd\x1c\x3f\x12\x9f\x33\x2a\x0f\x96\x07\x9c\x75\x52\x0b\x4e\xcc\x18\xe2\xb6\x63\xca\x7a\xad\x00\x2b\x8e\xe4\xdd\x46\x77\x94\x49\xcd\x2a\xea\x98\xcb\x82\xf5\x8d\xde\x9f\x57\xac\xde\xab\x7a\xc5\x6d\x60\xfd\x2d\x04\x52\x2a\x2b\x3e\x04\x3d\xaf\x5a\x0e\x9c\x34\x88\x9a\x0c\xe1\x4a\x11\x35\x19\x49\x16\x59\x9c\x1d\x21\x6a\x52\x31\x8b\x44\x5a\xe6\x9d\xd9\xb7\x05\xea\x49\x0b\xc9\x96\x95\x47\xd4\x54\x24\xeb\x22\x6a\x52\x52\x29\xa2\x26\xed\x8f\x78\x6f\xee\xcc\x42\xc0\x9f\x17\x3f\xcb\xe8\x30\x1d\xee\x0c\xba\x82\xe7\xd1\xeb\xa8\x83\xbf\x89\x4c\xba\xa7\xcb\xe2\xf2\x75\xbf\xe7\xce\x1f\x17\x4e\xec\x45\x71\x9a\x24\x19\x83\x67\x74\x5f\x32\x00\xa3\x6d\x37\x7e\x30\xc3\x1d\xf7\x7a\x53\x90\x2e\x4e\x96\xcf\x77\x14\x9d\x45\xad\xd9\xe0\x42\xa7\x2a\x25\x9b\x77\xa1\x7f\xaa\x0a\x2d\xf9\x77\xa7\x01\xaa\x6e\x7b\x5c\x9c\xe1\xca\x4e\x3c\xfd\xc4\x58\xa0\xa0\xcd\xe8\x3f\x5d\x95\x62\x46\x46\x08\x4d\xbf\x74\x84\x50\x92\xe2\x28\xd3\xb7\x9e\x7e\x98\xd1\xeb\x3c\xdd\x8a\xb7\xc0\xab\xb5\xb6\xed\x92\xb5\xd0\x01\x57\x6e\xad\xc6\x93\x71\x55\x6a\xe1\x7d\x69\xc9\x29\x3e\xaf\xee\x9d\xa0\x18\x9e\x35\x31\xc2\x17\x7c\x39\x5d\xc5\x81\xf6\xcc\x58\x26\xd7\x51\xa0\x6c\x47\x03\x1c\xc8\x0d\xfe\x72\x47\x99\x0e\x40\x69\xde\x5a\x51\x29\x63\x62\x48\xde\xcc\x89\x7b\xf5\xe0\x0c\x62\x76\x27\x51\x89\x2b\x84\xd3\x43\x54\x76\x6d\xb7\xee\xa7\xac\x3d\xdb\x4d\x69\xaf\xc4\xb6\xea\xf0\xc6\x7d\x57\xff\xeb\x60\x08\x10\x07\xf1\x20\xc0\xe2\xd2\x62\x3c\x0e\x06\x83\xff\x3f\x7b\x7f\xc2\xdd\x36\x8e\x25\x80\xc2\x7f\x45\x42\x57\x33\x40\x08\x6d\x76\x96\x2a\xca\xb0\xda\x95\x4a\xaa\x32\x93\x38\x35\x89\x6b\x99\x91\x59\xfe\x68\x0a\x92\xd8\xa1\x41\x85\x84\xbc\x94\xc5\xf9\xed\xdf\xc1\x4a\x70\x91\x93\x74\xcf\xf2\xe6\x9d\x77\x72\x62\x91\x20\xf6\xe5\xe2\xee\xb7\xd7\x03\x58\x0d\xf4\x07\x1a\xa7\x81\x74\x29\xae\xde\xdf\x6f\x53\xea\xbe\x8b\x89\x08\x80\xcd\x2e\x55\x50\xdc\xef\x5a\xc9\x4a\x25\x49\xdd\x48\xf5\x28\x6d\xdc\xbe\xcf\x16\x77\x01\x00\x58\x8b\xea\xde\xd0\x25\x97\x75\xe9\x77\x49\x81\xcb\x04\xab\xb1\x10\xf4\x27\x25\xce\x3e\x63\xad\x7a\xb9\x4d\xd2\x05\xcd\x09\x7d\x88\x27\xd3\x11\x71\xc2\x4a\xba\xe6\x0a\x35\x0b\x61\xb7\x93\x07\xdb\x4e\xb6\xb8\x53\x6a\x8d\x95\xe6\xa7\xbe\xe0\x75\x17\xa0\xfb\xe9\x33\x26\x8f\x76\xb3\x51\x0c\x52\xba\xe4\x95\x46\xa3\x98\x17\x60\x1d\x32\xe8\x2c\xd2\x66\xb0\xca\x23\xe7\xca\xec\x48\xd3\x3a\x18\x3d\x06\x3e\xf7\x95\x93\x63\x9f\xf9\xe0\xf1\x48\x87\x34\x6c\xca\x76\xeb\x91\x86\x4c\x1b\xd5\xae\x57\xea\x22\x08\xe7\x6a\x32\x37\x3e\xb3\x87\xe3\x57\x01\xd8\x44\x6e\x05\xe1\xd0\x94\x56\xa6\x0c\x02\xd4\xf9\x84\x36\x0c\x1c\x76\xbb\x9a\xf9\x87\xb4\x52\x13\xf9\xc0\xd4\xb8\x16\x35\x03\xc8\x75\x6f\x5b\xd2\x65\x95\x4b\x6a\xfe\x52\xdc\xea\x89\xb5\xf1\x42\x76\x71\xea\x7a\xae\x5d\x6b\xe4\xe6\xc0\x14\x4b\xa7\x86\xdd\xc6\x10\xd5\x64\x81\xbf\x01\x5f\xc5\xe5\x52\x33\x23\xb5\xc7\x67\xad\xfe\x68\xfd\x76\x14\x00\x29\xbb\xea\x76\x17\xd6\xd0\x47\x9f\x31\x3b\x71\x36\x2d\x10\x77\x07\xf3\x09\xe8\x01\x31\x30\xa5\x14\x5c\x9b\x0a\xe6\xe7\x4e\x48\xbc\x8c\x40\x5a\xd3\x7d\x57\x7a\xc9\x90\xcf\xc0\x14\x04\xa0\xb9\x5d\x98\x9f\xfb\x99\x98\x71\xe9\x90\x26\x5b\xdc\xed\xd1\x4c\xa4\x6d\xdf\xdb\x63\xc7\x36\x45\x92\x36\xc6\xd9\xb6\x3c\x48\x53\xc4\x07\x64\x52\xb9\x5d\xaa\x6d\xb2\x4a\x1b\x49\x6c\xaf\xb1\xd4\x44\x74\xeb\xaf\x1c\x05\x65\xb6\xde\x3c\xb4\xf1\xc9\xa2\x1b\x98\x19\xa8\x0c\xd0\x34\x69\x2c\x6e\x62\x54\xe7\x2d\x7a\x94\x61\x81\x54\xe6\xbb\x1d\xd3\x03\xad\xeb\xb9\x55\xab\x6b\x64\xd1\xad\xc3\xd0\xbe\x02\x4c\x6b\xdc\xcf\x7d\x70\x0f\xc4\xf6\x51\xce\x1a\xed\x32\x09\x1c\xc4\x1d\x95\xd6\xac\x37\x20\xa4\x3e\x25\x72\xc1\x01\x42\x41\x57\x32\x06\x16\x76\x0a\xa0\xd0\x18\x2f\x6b\x9c\x20\x50\x82\xda\x66\xee\x52\x7d\xbe\x36\x91\x23\x99\x40\x00\x08\x97\x07\xb2\x6b\x93\xc2\x8c\x58\x5d\x5f\x2b\x2c\xca\x34\xb1\x64\xbd\xdb\x88\x1d\xae\xd7\x43\x2b\x6f\xf6\x93\xdd\xce\x06\x95\x4c\xb4\x6e\x76\xa2\x10\x7c\xe9\x38\x5f\xd7\xa5\x8e\x47\x3f\x31\x55\xe7\x02\xd3\x32\xb6\x69\xa2\xbc\x92\x59\x45\xa2\x0f\x46\x76\x5f\xbd\x48\xe4\xb9\xf3\x6c\x55\x79\xe6\x2c\xac\x44\x84\x4e\x62\xb3\xd3\xbb\x9d\x9e\x6d\xd7\x84\x58\x4d\xac\xcc\xa4\x1c\x28\x09\xaa\x4f\x59\xb9\xe1\x98\x80\x3c\xba\x01\xbe\xa0\x1b\x18\x9a\x8f\xc3\x21\xcf\x7e\xd9\x6c\x8c\x11\x9a\xef\x44\x91\x76\x39\x0d\xf3\x38\x9c\xa9\xe8\x6a\xf3\x38\x84\x11\xa6\x28\x88\x9a\xae\xe1\xe9\xde\x18\x07\x5d\xeb\xd1\x9f\x94\xa8\x36\x0d\x15\x17\x34\x93\x06\xc8\xb9\xb4\x58\xac\x8d\x9e\x64\x38\xd3\x9b\xe3\x01\x95\x45\xd7\xcb\x5e\x47\x07\xf7\x6c\x74\xcf\x53\xfe\x48\x95\x09\x6a\x54\x18\x03\x84\xce\xf1\x70\x03\xf2\x2a\xdb\x8b\xda\xb0\xb8\xee\xe5\x4b\x73\x02\xfe\xf1\x5e\x8e\x2b\x30\x55\xf5\xf4\xc1\x3e\xa9\x4b\xbc\xb3\x3f\xaf\x25\xe6\xd4\x25\xe3\x31\x77\x9f\xcc\x30\xab\xbd\x05\xb0\xd5\xc7\xca\x3b\x9f\x73\x98\x72\xcf\xcb\xfb\x52\x3c\x95\x5b\x0b\x18\xf3\xa4\xc4\x56\x9d\x9b\xbe\x46\x90\x1a\x00\x5a\x4b\x34\x01\x1b\xcf\x05\x1c\xb3\x7a\x0a\x90\x93\x6c\x9e\x55\x3a\xe6\xa8\xf2\x8e\x2c\x5d\x1b\x8c\x56\x18\x00\x84\xfb\xca\xcf\xad\xd6\x43\x30\x13\xf1\xbd\x8b\xf4\x75\x01\xd5\xfa\xf2\x18\x15\xfc\x2f\xda\xed\xbd\x9a\x29\x88\x5e\x07\x69\xe4\x28\x69\x1c\xf7\x9b\xe3\xbc\x5c\xb9\x2e\x67\xd2\xa0\xa1\x1a\x06\x0b\xfd\x6f\x46\x62\x1c\x72\x20\xfb\x0e\x0c\x9b\x39\x00\x98\xcb\xa8\xf6\x06\xfa\x0b\xbc\x18\xa0\x80\x75\xd4\x6d\xa6\x48\x2b\xc7\xdb\x59\xf9\x61\x0f\xca\x55\x9f\x12\x91\xeb\xff\xe0\x7c\xbc\x97\x5a\xad\x5f\x35\x1f\xdd\x1e\x2e\xf6\x9e\x5f\x13\x21\x43\x9f\x5f\x68\x8e\x88\x38\x1a\xbb\x1d\x75\xd8\x45\x5f\x74\x20\xdc\xe9\xe2\xf5\x73\xd1\x9e\x2e\x4e\xf8\xc3\xd3\xc5\x3b\x32\x55\xe3\x6e\x9c\x8e\x96\x9a\xfe\x3f\x01\x5e\x25\xe6\xf5\x39\x7c\xb2\x31\xd8\xda\xa7\xff\xde\xb1\x0a\x24\xe9\xab\x87\x6a\x1d\x58\xd3\x2f\xba\x2b\x34\x62\xd6\x0d\x99\xdb\x26\x05\x1d\x3d\xf8\x47\xce\x9c\x6a\xd3\xd1\xee\x72\xd3\xeb\x73\x13\x38\x30\xd3\x74\xcd\x41\x23\x3a\x61\x02\x23\xce\xb5\x29\x6d\xc5\x1c\x4c\xb0\x03\x10\xd5\xb1\xef\x87\x0a\xbc\x30\xda\xed\x81\x83\xf0\xf0\x7d\xb9\xf5\xb9\xde\x57\x97\xd8\xca\x00\x39\x6e\x3e\x0d\x16\x28\x5d\x01\xe6\x26\x96\xb8\x14\x83\x2a\x4a\x20\xf3\xc9\x04\xe7\x24\x77\x2e\x38\xe5\x63\xaf\xbe\x11\xad\x9f\xd9\x66\xc3\xea\xee\x54\x92\x56\xcb\xc3\xad\x7c\x18\x8c\xa7\xd1\x51\x36\x8d\x94\x09\x53\x52\xba\x46\x57\x86\x22\xeb\xa4\xe4\xe8\x9c\x87\x92\x86\xd3\xe8\x94\xd9\x20\xe2\xf2\x55\xfc\x5e\xe9\xa6\x46\x5a\x0d\x07\xac\x25\x09\x7d\x20\x54\xda\xd3\x0e\x97\xda\x5f\x2d\xd0\xac\xfb\xca\x7e\x88\x8d\x8b\x93\xc6\xf8\x9a\xba\xf9\x35\x87\xd2\xae\x1f\xb5\x64\x3f\xf3\xa9\xe1\x7b\x50\x8c\xaa\xc3\xbd\xe0\xfe\x51\x7d\x4e\xf0\xa7\x9d\xa8\x9c\xe1\x5b\x7c\x8a\xdf\xe0\x97\xf8\x03\x7e\x81\x3f\xe2\x4f\xf8\x37\xfc\x03\xfe\x1e\xff\x8c\x7f\x27\x32\xe0\x80\x5a\x89\x77\x4b\x88\xf0\xdf\x09\x1f\x26\x2b\x96\xe5\x2a\x98\x68\x81\xdf\x93\xdf\x8d\xb9\xc3\x6b\x32\x98\xe0\x9f\xc8\x04\xbf\x22\x63\xfc\x0b\x99\x87\xf8\x57\x32\x0f\x2b\x26\xe9\xbf\x57\x41\x49\x69\xcb\x4a\x09\xf8\x1c\xff\x84\x5f\x0d\x5e\x1b\x0d\x99\xfb\xcb\x28\xfe\x58\xe3\x2c\xfe\x6a\x2c\x5a\x4b\x6c\xbd\x0b\x04\x0d\xe8\xf1\x6b\x23\x0e\xf3\xaf\xda\xd9\x8d\x20\x70\xe0\xab\x63\xf2\x1e\x19\xc6\x8f\x56\xcf\x55\x83\x31\xdd\x98\x1a\xb7\x61\x90\x91\xdf\x87\xf1\x3a\xca\x5f\x64\x0b\x7a\xc2\xe1\x2b\x84\x08\x21\xc5\x6e\xc7\x08\x21\xa9\xfa\xd9\x78\x5e\x3d\x8f\x3f\x41\x32\x4c\x80\xe7\xc1\xd7\xe4\x15\xfe\x49\x1a\xd3\x31\xe5\x61\xac\x57\x04\xf2\x27\x56\x3f\x5b\xf5\xb3\x51\x3f\x69\x70\x46\x5e\x4d\x17\xd9\xfd\x99\x38\xa6\xcd\xb6\xcf\x54\xdb\xb2\xd6\x33\x55\x6b\x79\xb3\x4e\x52\x0a\x45\x2f\x62\xd5\x19\xdd\xb5\xad\xee\x9a\xee\x28\x9a\xfe\x4c\xe6\xda\x7e\x09\xff\xae\x89\xa1\x57\xf8\x0c\x85\xf8\x15\x39\x1b\x4c\x1c\xcf\x62\xbd\xa5\xea\xcb\x42\xfd\x5c\xa9\x9f\xb7\xea\xe7\x5a\xfd\xac\xd4\xcf\x65\x20\xa6\xf0\x47\xa2\x44\xd0\x52\x59\xf2\x85\xee\x2e\x64\xb2\xc9\x1f\xf1\x8f\x6a\x35\x5d\x07\x6a\xbd\x75\x90\x2c\xe1\x0f\xe4\x17\x43\x8c\xff\x62\x0d\x28\x03\x00\xf0\xf7\xa4\x35\x9b\x18\x6c\x73\x09\x8c\x7f\xf0\xbc\xef\xfb\x52\x90\xf7\xbd\x0a\xef\x28\x7e\x62\xf5\x53\xa8\x9f\xad\xfa\x49\xd5\xcf\x06\xdd\xeb\x29\x4d\x96\xf0\x13\xe9\x4f\xb0\x8c\x8a\x07\xcf\xc8\xef\x15\xc4\x43\x00\x9f\xf9\x13\x84\xe4\xce\xf9\xfb\x6e\xc7\x55\x21\xe5\x98\xe1\xdf\x21\x30\xc6\x84\x48\xba\xbd\xf9\x8d\x9c\x4d\x6b\x3d\xfc\x6d\x30\x11\x0b\x93\x4c\xd1\x6f\x03\x32\xc1\x9f\x48\xff\x93\x5e\x97\x4f\x6a\xde\x75\xf9\xa2\x36\xf5\x62\x58\x72\x6a\xf0\x4f\xf8\x6c\xf0\x5a\x2e\x84\x72\xe0\xd4\xec\x9b\x9c\x81\x97\xa4\x51\x56\x8e\xe3\x6c\xb7\xfb\x53\xe9\x3a\xbf\x44\x33\xd1\x14\x04\x58\xfc\x57\x73\x1e\xc0\x7a\xeb\x2f\x5b\x0d\xba\x2e\xe5\x7a\xb9\x5a\xd5\x2c\xb8\x25\x62\xd3\xe4\x33\xf0\x08\x04\x8f\xc0\x23\xfc\xd9\x19\xbc\xed\x9a\x3f\x7f\x52\xcd\xa0\xd6\x85\xfc\x47\x26\xb0\x35\xf0\x53\xf2\xd2\x25\x9d\x30\x7c\x43\x4e\x2d\xbd\x84\x8e\xc7\x33\xf8\x82\xfc\xe4\xbf\xc1\x1f\xc9\xd9\xe0\x74\xfe\x26\x34\x90\x20\x10\xe9\xf8\x23\x79\x8d\xb0\x3c\x0c\xaa\x4b\xdd\x4b\xf2\x02\x9f\x0d\x3e\x86\xf8\x35\xf9\x88\x7f\x22\x2f\xc4\x4c\xb9\x13\x75\x12\x5c\x54\xd1\x43\xc4\x40\xf1\x85\x5a\x84\xdf\x11\x3e\x23\x02\xb4\x3a\xdf\x67\xbf\xdb\xce\xb9\xc5\x06\x07\xb2\x17\xc6\xd3\xdf\xe7\x76\x86\xdb\x7c\x12\x88\x59\x3c\x23\xaf\xf0\x07\xd2\x1f\xd7\xa7\x52\x14\x56\x53\x29\x41\xc8\x07\xd2\xff\x20\x59\x4b\xa4\x95\x0b\x7f\xf0\x3c\xd6\x57\xbe\xdb\xd5\x21\x62\xea\x10\x31\x75\x88\xc4\xcf\x46\xfd\xa4\x9e\x07\x65\x75\xef\xf4\x30\x65\x5d\x0a\x22\x69\x07\x3f\xd3\xd6\x27\xb1\x21\x54\x2f\x3a\x7b\x18\xeb\x3a\x51\x29\xa6\xe1\x6b\xe6\xc0\x5c\xb6\x4c\x39\x9e\x6f\x01\x0b\x42\xc8\xdd\x4c\x7a\x0f\xaa\x9f\xf2\xc7\x23\x71\x94\x0e\x90\x3f\x11\x80\x59\x6c\xd3\xd9\x99\xbd\xb4\x82\x7f\x87\xc0\x31\x3c\xfc\xef\xda\x74\xa6\x09\x7b\x14\xdb\x1b\x0d\x05\xf0\xa6\xb1\xbb\x6e\x1a\xbb\xeb\xa6\x7b\x77\xdd\xb4\x76\xd7\xe7\xa7\xf5\x17\x75\x97\xfe\x8c\x64\xd3\x06\x61\x7b\xe5\xfb\xf8\xe7\xb2\xc4\xd6\x59\x4d\x87\x3c\x50\x74\xe4\x57\xcb\xbb\x11\x57\x6a\x89\x8d\x7b\xe6\x8e\xec\xaf\xca\xb2\xd4\x42\x2f\xf0\x08\xb8\x6b\x36\x46\x38\x23\x8f\xc0\xa3\x46\x5a\x42\xc0\xf9\x79\x33\x63\x44\xc0\xa8\x99\x56\xc8\xf0\x69\x8d\xc4\x98\x80\x5e\x33\x2d\x25\xe0\x7c\xd9\x4c\xdc\x12\x70\xce\x9b\x89\x1b\x02\xce\xf3\x66\xe2\x92\x80\x79\x33\x6d\x41\x40\xd8\x4c\x5b\x13\x00\x9b\x69\x97\x04\xa0\x66\xda\x15\x01\xf7\xcd\xb4\xb7\x04\x94\xcd\xb4\x15\x01\xd3\x66\xda\x1d\x01\x8f\x9b\x69\xd7\x04\x04\xcd\xb4\x13\x02\xfe\xd6\x4c\xbb\x20\xa3\x79\xef\x9c\x9d\xf3\xf3\xfc\x7c\x79\x5f\x42\xf4\x08\x9c\x9f\x4f\x47\xf3\xf3\xf0\x2f\x82\x52\xba\x71\x3f\x43\x74\x5f\x06\xd3\xbf\xf5\x45\x96\xf3\x70\xfe\x97\x70\x77\x3e\x82\x33\x72\xfe\x18\x8d\x56\xf8\x4f\x32\x1a\xce\xcf\xcf\x47\x10\x3c\x3a\x67\xe1\x08\xbf\x23\xa3\x79\x34\x58\x8e\x07\xdf\x85\xa3\x64\xba\x17\x23\x7f\xf6\x8f\x3b\xf5\xbd\xdf\xe4\x74\x99\xdc\x76\xc8\x99\x69\xe5\x0a\x74\x70\x7e\xe3\x0f\xd0\xa8\xe2\xa9\x69\x89\x32\x28\xf1\x96\xa9\x0a\xe8\xa2\x2b\x28\xb3\x13\x88\xec\x0f\x59\x89\xa4\xbb\x4b\x17\x49\xcf\xf7\x13\x1a\xcf\xbe\xca\x78\xba\xd6\xfc\x9c\x86\xbb\x1d\x14\x3f\x52\x57\xe1\x1f\x55\xb4\xa6\x08\x99\x23\x76\x5f\x3e\x30\xff\x1d\x76\x91\x5f\x38\xff\x0f\x98\x28\x3e\x10\xce\x46\xa9\x3a\x18\x25\x37\x5c\x99\x11\x52\xac\xbc\xe5\x78\x9e\xfa\x6d\x06\xbe\x51\x89\xf5\xd0\x37\x4a\xbf\x30\x61\x94\xe8\x18\x37\xc6\x92\x7f\x7b\xc5\x88\x89\x77\x53\x5a\x8a\x58\x05\x53\x91\x1c\xfe\x3c\x24\x7c\x9e\x87\x36\xee\x80\xa3\x26\xf1\x39\x2d\x4a\xd1\x8f\x99\x7d\xd2\x34\x8b\x1d\x07\xbe\x57\xba\x8f\x81\xa3\x70\x2f\xa5\xf9\xb7\x41\xa5\x8d\x86\x05\x2c\x56\xef\xe2\xa9\xb4\x11\xe8\xdd\x52\x33\xe7\xd9\x07\xd2\x7c\xc7\x34\x12\xd8\xa7\x16\xf5\xfb\xd0\xa6\xec\xb0\xfa\xb0\x6e\x76\x48\x55\xec\xbe\x74\xdd\xc8\x1b\xea\xcc\x51\x93\x2e\x28\x3f\x4b\xae\x68\xb6\xe5\xbd\x75\xa4\xd4\xaf\x2f\x29\x65\x3d\xb3\x53\x51\xe9\xd8\xbd\x76\x94\x97\xf1\xbb\xbe\xb4\x86\x58\x13\x71\xb9\xa0\x67\x6c\xc3\x86\x94\xab\x52\x20\xc5\x63\x49\xd2\xc9\x9c\xd1\x6e\xd7\xcf\x91\xe7\xb5\x4b\xe4\x4e\x2d\xb8\x59\x9c\xe7\x77\xd6\xd0\x5c\xa6\x68\x7f\xf6\x82\x46\x75\x3e\x29\x25\x1e\xc9\x04\xa9\x67\xaa\x67\xd0\x96\x02\x63\x54\x96\x65\xdf\xd9\x4d\xb2\x2a\xd2\xa9\x1c\x6f\xfb\x33\xab\x1e\x83\x48\x37\x20\xc0\x03\x89\x4a\x51\x3c\xeb\x2c\xee\x4e\xec\xcc\x7d\x09\x8a\xaa\x8a\x8c\x14\x65\xa9\x5d\xbd\xa6\x78\x2b\x48\xf2\x8d\xc0\xe4\x97\x64\x30\x71\x1d\x1f\xa0\xfb\x8d\xe7\x09\x6c\x4f\x7e\x4d\x0d\x7d\xb6\x25\xa9\xd1\xf8\xdf\xa2\x40\x14\xc2\x5b\x7b\xf3\xaf\x21\x42\x75\x4f\x08\x82\xc6\xde\x18\x87\x25\x31\x5c\xa0\xe9\x46\xe0\xa9\x95\x04\xdb\x14\x9e\xf2\xa9\xc2\x1e\x53\xb2\x95\xbd\x9a\xfa\xfe\xf2\x88\x4f\x51\xea\x79\xe9\x7c\x19\x0e\xf3\x2d\x83\x68\x2a\x1b\xac\x4a\x95\xa9\x72\x81\xac\x46\x50\x27\xfb\x33\x81\x59\x3a\x93\x60\x76\x80\x9b\xa6\x6d\x1b\x65\xde\x62\xb7\xeb\x67\xc8\xf3\xba\xca\x64\xb5\x9a\x70\xb3\x0a\xb9\x24\x90\x76\x6f\x97\xcc\xdd\x2e\xed\xcd\x92\xd5\x95\x44\xcb\x52\xd4\x53\x4d\xe2\xa5\x63\xf5\xbd\xdc\x32\xa3\x50\x1e\xe5\x79\x74\x47\x78\x95\xef\x4a\x5c\xcf\x4a\x4d\xf2\x2c\xa9\x49\xd1\x5d\xc7\xb9\x4a\x57\xb3\xe9\x94\x62\xa0\x5c\x4e\x35\x93\x8f\x27\xa8\xd2\x13\x98\x4c\xd9\x51\x33\x83\xf1\x5a\x31\x98\x34\xfc\x56\x6c\xb5\xb6\x36\xbd\xd1\xfd\x47\x78\x22\x28\x09\x1b\x61\x78\xb3\xdb\xc5\x70\x8d\x4a\x7c\xe9\x2a\xce\x6e\x59\xcb\xdf\xdc\x72\xcb\xb4\xcd\x94\x9c\xbf\x6a\xec\x52\x9d\x96\x27\x3c\xa5\x04\x5c\xe6\xd9\x4d\x41\x73\x80\x93\xa1\x7e\x14\xf7\x56\x32\xa4\xec\x9a\xdc\x8b\x7c\x51\xbe\xba\x16\x1b\x3d\xa9\x4c\xc9\x40\xf5\x52\xa8\x4c\x19\x23\x57\x22\xef\x62\xf1\x26\x29\x38\x65\x34\x97\xef\x19\x8b\xa9\x7a\x58\x2e\xe5\xaf\xd2\xef\xad\xe5\x51\x49\x27\x69\x6a\x52\x0b\x99\x4c\xaf\x12\x2e\x1f\xb4\xaa\x6e\xad\x8c\x4e\x7b\xc7\xe2\x7a\x5d\xa9\xad\xa2\x8d\x96\xcc\x43\xd1\xd1\xcb\x84\x2d\x9a\xc1\xce\x5a\x40\x56\xeb\x7b\x9a\xcc\xc6\x4e\xc6\x9a\x8a\x02\x39\x81\xf1\xcd\xa2\x23\x88\xfd\x08\xc8\x6f\xeb\x45\x92\x7f\x59\x23\x32\xeb\x9e\x26\xb6\x57\x51\xf1\xb1\xe3\x32\x1d\x97\xfa\x5a\x6a\x5a\x99\xe4\xae\x31\x22\x45\xf7\xfd\xa6\x4c\x36\x23\x95\x81\x52\x0c\x05\x98\xcf\x3d\xaf\xaf\x1c\x44\x9e\x49\x29\x45\x2e\x28\x06\x27\x0f\x47\x32\xa2\x48\x9f\x3b\x79\xb8\x20\x20\x9c\x3c\x32\xa0\xd1\x34\x1a\xae\xd2\xec\x32\x4a\x15\x31\x1c\x0d\x95\xa1\xb7\x79\x2b\x68\xba\xec\xcb\xdb\x05\x32\x12\x19\x85\x03\x01\x45\x0f\x26\x4f\x9e\x3f\xf9\xf6\xf0\xd9\x93\xe7\x78\x43\x46\x7f\xdc\xb2\xc1\x60\x84\x97\x64\x34\xff\xe3\xfc\xf6\x60\x3c\x38\xbf\x7d\xfe\x32\x1c\xe1\x05\x19\xcd\xcf\x6f\x0f\x5e\x9e\x6f\x0f\xc7\xe3\x83\xf3\xed\xab\x57\xe3\x97\xe2\xef\xb3\x89\xc0\xb6\xd7\xe4\x3e\xbb\xa6\xf9\x32\xcd\x6e\x02\xf0\xce\x3c\xf5\xa4\xdf\xa0\x1e\xa3\x74\x51\xf4\x6e\x92\x05\x15\x78\x0c\xa7\x2b\x9a\x17\x32\xc0\x87\x36\xe9\xc1\x80\x65\x7c\x70\x19\x15\x49\x0c\x02\xf0\x3a\x4d\xe9\x2a\x4a\x75\xd9\x63\xd2\x1b\xdf\x7e\x3b\xee\x41\x65\x29\x25\x33\xf5\xe2\x6c\x41\x7b\x9b\x2c\x61\x1c\x01\x0c\x12\x76\x1d\xa5\xc9\x62\xa0\x63\x71\x80\xd7\xea\x5d\x55\x00\x4a\x7c\x49\xde\x46\x7c\x3d\x5c\xa6\x59\x96\xe3\xab\x2e\x2e\x5f\x75\x77\xbc\xad\xef\x95\xf7\x11\x5b\x29\xce\x30\x5c\xcf\x69\xe8\x5c\x10\xab\xa6\x9e\xaf\xf1\x49\x86\x73\x71\x01\xb0\xc1\x60\x8a\xf2\x39\x0b\x09\x87\x52\x5d\xc4\x4a\x02\xaa\x2a\xee\x6a\x92\x03\x43\x96\xff\x4d\x2a\x30\x55\x31\xfc\x98\xab\xe0\x9f\x4b\x7f\xbd\x3e\xf8\x1b\xc0\x54\x3a\x29\x46\x38\xf7\x57\x50\xc6\x01\x34\x48\xff\x02\x83\x21\x40\xc8\xd4\x37\x04\x08\x73\xa4\x74\x4a\xc5\x4b\xd5\xfe\x75\xcb\xc5\x9a\x80\x33\xca\xcb\x9a\xf5\xb0\x96\x1d\x25\x53\x24\xa5\x64\x0e\xf5\x95\xf9\x3e\x42\xc7\xe4\xe9\xd3\x83\xef\x9e\x79\x1e\x3f\x22\x4f\x9f\x1d\x4e\xbe\xf3\xbc\xec\x28\x99\x3d\x7d\x76\x78\x30\x26\x04\x3e\x7b\xf2\x74\x72\xe0\x29\xbd\xe1\x46\x49\x34\xcb\x15\x90\x85\x70\x32\x3e\x38\xf4\x38\x3a\x3a\x9a\x8c\x91\xaf\xde\x18\xf2\x9f\x3d\x7d\x7a\xf8\x4c\x7a\x57\x95\xd9\x38\xc2\xd9\x60\x80\x02\xfb\xda\x31\x99\x27\x0e\x01\x24\xd6\x06\xb6\x2f\x11\x27\x2e\xe2\xb1\x68\xe1\xa9\x40\xef\x7d\x72\x05\x21\x1d\x10\xd5\xe4\xf1\xf1\xf1\x64\xec\x89\x6e\xec\xe4\xe0\x10\xa6\x44\x0e\x68\x27\xbb\x46\x11\x96\x05\x28\x2a\x91\x99\x52\x77\x46\x2f\x1a\xde\x0d\x0f\x0e\xfc\xe7\x4f\x1f\x43\x7a\x74\xf0\x0c\x0d\x20\x1c\xf7\x89\x18\xea\x53\xa7\xc4\x4d\x3d\x4c\xa5\xc2\x2e\x28\x61\xb3\x4b\x48\x47\xcf\xc7\x63\x14\xd0\xe3\xe3\x09\xa6\x3e\x11\x09\x1c\x4d\xe9\xf1\x93\xa7\x4f\xa7\xb9\x4f\x0e\x9f\x21\x2a\x13\x0f\x9f\xda\xf9\xb8\x84\xb9\x7f\xf8\xec\x31\x1d\x41\xea\x1f\x7e\xeb\xe2\x33\x7f\xd6\x95\xbd\xb5\x73\x4a\x1c\xe3\x14\x6f\xf0\x12\x2f\xc4\xca\xaf\xab\x3d\x7c\x45\xc6\x78\x45\x26\x07\xdf\xe2\x3b\xf2\xfc\x40\x76\x4a\xae\x64\x2d\xd6\xf0\x00\x20\x74\x34\x96\xa2\xfa\xb1\x51\xba\x63\x53\xdf\xcf\x51\x6d\xc9\x73\x74\x2c\x6a\xf2\xbc\xb7\xd0\x39\xe7\x08\x2f\xb4\xf8\xa3\x9e\x57\x49\x01\x33\xc2\x8e\xc7\x33\xe6\x4f\x82\xf1\x34\x3b\x5a\x6b\xf4\x2a\x21\x57\x38\x22\x13\x5c\x90\xc3\x67\xd3\xec\x98\xac\x65\x9d\xf5\xe3\x8f\x30\x84\x31\x81\xcb\x8e\x6d\x37\x78\xf2\xed\xd1\x64\x3c\x5b\x0e\x0e\x0e\x82\xe5\xe0\xd9\xd3\xa3\x83\x67\x33\xf1\x1b\x2c\x07\xdf\x3d\x57\x2f\xdf\x3d\x0f\xc4\x2e\x20\x87\xcf\x76\xbb\xf8\xf8\x12\xc2\xed\xe0\x0a\x8d\x22\x84\x64\x4b\x06\xc2\x01\x84\xaf\x7c\x12\x3f\x8e\x70\x1f\xc6\x47\x30\x25\xc5\x11\xb9\x9b\x4d\x82\xe2\x98\xdc\xf9\x07\xcf\x66\x07\xcf\x82\x62\x70\x87\xd0\xb4\x90\xcb\x14\x1d\x5f\xc2\xed\x08\x6e\xc8\xe1\xb3\x41\xda\xae\x2a\x7a\x4c\x36\xd3\x3b\x72\x03\xaf\x06\x09\xe6\x64\xa1\xd7\xc0\x9f\xe0\x31\x21\x09\xc2\x97\xf0\x6a\xc4\xd1\xf1\x76\xb0\x6a\x96\x5c\x89\x5d\x21\x3e\xe2\xab\xbf\x12\x8e\x17\xc6\xb7\xe2\x95\xef\xe3\x31\x5e\x59\x36\xd8\x09\x5c\x38\x5b\xe1\xdd\x67\xb6\x02\x5e\xe3\x15\xbe\xc3\x27\x52\xd6\x95\xe5\x70\x41\x20\x25\x02\x56\xa0\xca\x0f\x98\xd8\x19\x4c\x02\x8a\xe7\x07\x58\x89\x4b\x17\x53\xdf\x8f\x90\x98\xf8\x79\x14\xa2\x23\xb9\xe2\x27\x6a\x89\xaf\xe0\x52\xaf\x6b\x4e\x32\x72\x62\xaa\xc9\x6c\x06\xb1\x95\xa6\xf9\xd1\x42\xaf\x73\x41\xb6\x9d\x95\x1e\x0b\x8a\x7c\x79\xa4\x6c\x7e\x97\xaa\xc6\x62\xc0\xd5\x3a\x31\x34\x82\x6b\x92\xfb\x93\xf6\x0c\x33\x9f\x88\x7c\xe8\xb1\xe8\x7a\x51\xab\x5a\x20\xd0\xa6\xcb\xdc\xf3\x7c\x9f\x1d\x6f\x9b\xc5\x97\xd6\xa1\x5e\x4c\x18\x4e\xc5\xe6\x93\xeb\xbe\x21\xe9\x11\x49\x66\x93\x20\x3d\x26\x89\x5e\xf7\x74\x90\x20\x34\x4d\xe5\xba\xdf\x91\x78\xb0\xc1\x2b\xb1\xec\x1b\x6c\xa7\xe2\x02\x6e\xfc\xbb\xbf\xae\xf0\x18\x49\x27\x70\x97\xf0\x6e\xb4\x42\x53\xe7\x73\xac\x3e\x25\xe4\x06\x32\x2c\xae\x13\x92\x49\x5f\x6b\xd8\xf7\xf3\xd2\xf7\x19\xf6\x7d\x6e\x57\xb6\x02\x42\xc9\x12\x16\xe4\x5e\xa3\x85\x01\x98\x0c\x9f\x0c\x27\x00\x6f\xe3\xe2\x20\xb8\x57\x3e\x31\x82\x6b\x2c\x1d\xb2\xd0\xe0\xa4\xc4\x3a\xe9\x4f\x93\xf4\x0e\xf3\xec\xe4\xc3\x8b\xd7\xaf\xbb\x38\x4a\x77\x4d\x80\xaa\xd3\x97\xc6\x3f\xcd\x0c\x08\xac\x01\xf8\x62\x6f\x05\xda\x18\x31\xfb\x85\x25\xb2\xea\xaf\xa8\x70\x63\x2b\xfc\x13\x1a\x2f\xfb\x4f\x50\xc3\x13\xbf\x6a\xa0\x14\xfb\x27\x51\xf1\x65\x0d\xf9\x4f\x32\x94\xd8\x97\x42\xd9\x81\x49\xba\xac\x97\xb0\x5e\x81\x5a\x61\x26\x53\xe9\x23\x74\x9e\x86\xa4\x98\xa7\xa1\x36\xfe\x66\xc3\xcd\x96\xdd\x89\x9e\x93\x42\x87\x7a\xad\x19\x23\x77\x6b\x05\xcd\x58\xd0\xf9\x41\xa0\x5d\x33\xf1\xa7\xfb\xb3\xc2\xd1\x66\xea\x27\xb8\x2f\x91\x46\x2c\x3b\x6c\x27\xed\x01\xce\x6b\xb7\x8c\xb6\xa0\xa9\x48\x91\xfa\x18\x55\xc7\xa5\x05\x42\x35\x4f\xf5\xaa\x71\x82\xee\x39\xe1\xbb\x1d\xf0\x00\x66\x52\x6b\x95\x00\xad\x30\x7b\x5f\x4e\x1d\x27\x3c\x8e\x02\xcb\x6e\x37\x76\xc2\x81\x58\x6d\x58\x1d\xad\x61\x74\xee\x8f\x56\x53\x6a\xb1\x1a\xad\xdf\x17\x93\x09\x3d\x9c\x26\x9e\x07\xd8\xf6\xea\x52\xe9\xc5\xea\x0a\x93\xe1\x55\x74\xfb\xaf\xf4\x4e\x1c\xee\x98\xd8\x37\x4d\xeb\x57\xf8\x48\x7c\x3c\xf6\xbc\xf4\x38\xf6\x3c\x98\x92\xb8\xd2\x19\xd9\x92\xf1\x74\x7b\x94\x4e\x7d\x7f\xab\x63\x30\x68\x58\x76\x49\xe8\x7c\x1b\x5a\xec\xa8\xc0\xe0\xaf\x07\x63\x01\xc1\xc9\xa5\x95\xa9\x30\x34\xbd\x3a\x26\xe3\x19\xdc\x90\xcb\xca\xc1\xd5\x95\x38\xfa\xf6\xfd\x4a\x40\x96\x40\xe4\xc0\x4b\xe9\xd9\x7d\x41\x3a\x5c\x44\x6d\x10\x5e\x77\xa5\x2f\x11\xce\x61\x84\x17\x68\x96\xc1\x68\xbe\x08\xd1\x4c\xfc\x55\x87\x7e\x8d\x02\xf1\x42\xe6\xe2\x2f\x5e\x87\xea\x6d\x6d\x43\xd5\x95\xda\x1e\xb6\x66\xb4\xb8\xdb\x75\x98\x05\xcf\x15\x4d\xa0\x48\xe5\x50\xcc\x6e\x6b\x77\x18\x16\xa1\xde\x17\xc8\x50\x32\x1d\x26\x75\x0d\x5e\x29\x45\xf7\x5a\x9b\x40\x10\x1c\x26\xce\x98\xda\x18\x81\x41\x79\x54\x50\xaf\xcb\x2c\x4b\x69\xc4\xaa\xe4\x19\xe0\xf9\x96\x82\x00\x2c\xa3\xb4\xa0\x40\xe5\xd2\x7b\xc0\x64\x4a\x8a\x57\x09\x4b\x38\x15\xa7\x9f\x06\x00\x58\x01\x99\xd1\xea\x2e\x5d\x66\x70\x63\x0b\x17\x15\xa3\xb3\xb9\x93\xa5\xc6\x8f\x75\xcc\xa2\x98\xbb\x0d\x3f\x11\x14\xcd\x12\x18\x41\x8a\x1c\xa0\x14\xa9\x09\x28\x88\x02\x90\xb5\xd5\xcc\x61\x84\x50\xe5\x10\x3a\x83\xf2\x02\x99\x25\xf2\xb7\x13\xb0\x15\x7e\x67\x35\x14\x55\x98\x24\x47\xc1\xbe\x5c\xa2\xf6\x7a\xc6\x59\x67\xc6\x42\xf4\x6a\x6f\x4b\x01\x00\xff\xbd\x5b\xa9\xe5\x09\x41\x2a\x1c\x5e\x45\x1b\x64\x79\xd5\x57\xd2\x43\x94\x63\xc3\x31\x0f\xad\xb9\x86\xeb\x38\x5a\x63\xfa\x90\xce\xf3\x10\xe7\x95\xb6\x3b\xd3\x7e\x0c\x74\x67\x3e\xd2\xbb\xa2\xde\x7d\xe3\xbd\xa4\x19\x9d\xfb\x0b\xc1\x24\x43\xd2\xb5\x8c\xb2\xd7\xaf\x9c\x60\xeb\x43\xd2\x69\x20\xa7\x4e\xbb\xd2\xb5\x2e\x28\x31\xfe\x63\xb3\x05\x15\xa8\xc7\x50\xad\x06\x61\x8e\xa9\x98\xcc\xa2\xd2\x81\xf6\x66\xa1\x0b\x04\xcf\xa4\xc1\xab\xfe\x16\x3c\x7b\x26\x5a\xed\xd0\xfc\xd2\x5a\x72\xa2\x9e\x2d\x4f\x52\x80\x70\xd6\x5e\x9f\xfa\x08\x71\x42\x3a\x6f\xa0\xb7\xd1\xa6\xc9\x33\x4f\x8a\xe1\x85\x62\xd2\x19\x97\x0f\x17\x05\xe5\x24\x99\x09\x92\xf8\x6d\xb4\x09\x1a\x56\x9b\xdb\x34\x45\x65\x24\x29\x6a\xb9\x5d\xf6\x7a\x09\x97\xce\x44\xb5\x43\xe2\x6a\xbd\x8f\x32\xbd\xe6\xd1\x62\xa1\x16\x9c\x3b\xeb\x8d\x23\x67\x48\x45\xcd\xfc\xdc\x9e\xae\x64\x66\x7b\x29\xb3\x98\x0e\xae\x28\x77\x66\xe0\x34\xba\xa2\x05\xb4\x39\x0d\x3a\x5b\x6f\x21\x5a\x2c\x3a\x35\xfb\x92\x19\x0d\x72\xb1\xe5\x29\xd7\x9e\x8c\x28\xc2\x11\xd1\x2d\xaf\xa3\x42\x60\x3e\x0e\x3f\x54\x36\x81\x19\xc2\xda\x27\x93\x9a\x50\x33\xe6\xc8\xf3\xfa\x5c\xbb\xa7\xd0\x5f\x4c\x74\x83\x68\xb7\x83\xb5\xf1\x50\x0e\x29\x2e\xb4\xf2\xa4\x48\x9a\xb3\x90\x14\xa8\xde\xed\x75\x54\x34\x63\x41\x24\x35\x83\x13\x59\x97\xea\xa6\x8e\x94\xd6\x1c\xcd\xb4\xcd\xd4\x55\x83\xe0\x8d\xb6\xf4\xad\xd9\x6e\xcf\x35\x41\x94\xed\xad\xa8\xe1\x52\xf3\x63\x32\xb6\xfd\x29\xad\x69\x19\x6b\xf7\x22\x59\xc2\x8e\x69\x6c\x8d\x65\xce\xc2\xb2\xc9\xd3\x7b\x04\x1e\xf9\xd4\x7f\x64\x1d\xeb\xc8\x20\xe3\xb4\x27\x7a\xf2\xa8\x31\x86\x88\x37\xbb\x4f\xa5\x73\x6c\x7a\xd4\x5e\xad\x7a\xdb\xf2\xcb\x9c\x76\x38\x41\x3c\xcd\x7a\x34\xa5\x57\x94\x89\x96\x17\xf4\x96\x2e\x7a\x97\x77\x3d\xe0\xd3\x46\xdb\x3c\x6b\x9c\x92\xba\x90\x4e\xb7\xad\x90\x5f\x54\x62\x36\x94\xd9\x3f\x50\x4e\x22\x05\x2c\xe4\x91\x0f\x9e\x3f\x17\xc0\xa1\x43\x81\xd2\x01\x0e\xc6\xff\xe3\xd4\xc2\xa1\x0e\xe3\x6f\x02\x80\x6b\x0c\xeb\x08\x92\x8f\xc6\xb3\x89\x0f\x07\xf4\xe8\x68\x82\x82\xb1\x0f\xe5\x43\x29\x56\x69\x91\xdd\x73\x72\x38\xf1\x32\x0c\xb3\xe3\xe3\x63\xf2\x14\x09\xbc\x0c\xf2\x1d\x39\x3c\x90\x04\x57\xae\x1b\x84\xdc\x28\xf7\x65\xc7\x63\xf7\x58\x5b\xc0\xd9\x69\x47\x26\x88\xd2\x8a\x1d\x51\x90\x31\x8e\xc9\x58\x2b\x6f\xf1\x63\x12\xb5\x1d\x20\xbd\x34\xae\xe8\xaf\xb2\x9c\xf6\x16\xc9\x2a\xe1\x85\xd8\x01\x62\x0a\x7a\xcf\x9e\xf4\x7e\x7d\xf3\x6f\x3d\x15\xc4\x4a\x69\xfd\x2a\xed\xaf\x84\xe4\xba\x1f\x75\x46\x04\x97\x7c\xaa\x76\x2b\x86\xb7\xa8\x26\x56\x35\x13\x88\x35\x36\xfa\x42\x7c\x20\xfd\xa7\x93\x7e\x1f\x1e\x1e\x78\x09\xc2\x85\x4f\x60\xe2\x91\xc3\x09\x3a\x3a\x8a\x71\xec\x93\xa7\x66\x3e\xc4\xaa\x5c\x37\x54\x89\xad\x1e\xc0\xf1\xf1\xc4\x75\xa1\x0d\x27\x1e\x45\xb3\x01\x0f\x78\x09\x0b\x71\xad\xe4\xb4\xe0\x44\x5e\x4c\xd5\x32\x07\xcf\xc7\x65\x88\x9f\x77\xe8\x25\x68\x85\x95\x93\xef\x5f\xfc\xf0\xf2\xd5\x8f\x3f\xbd\xfe\x97\x7f\x7d\xf3\xf6\xf4\xdd\xcf\xff\xf6\xfe\xc3\xd9\x2f\xbf\xfe\xf6\xfb\xbf\xff\x47\x74\x19\x2f\xe8\x72\xb5\x4e\xfe\xfe\x31\xbd\x62\xd9\xe6\x53\x5e\xf0\xed\xf5\xcd\xed\xdd\x9f\xe3\xc9\xc1\xe1\x93\xa7\xcf\x9e\x7f\xfb\x9d\x3f\x02\x86\xa9\xb8\x6f\x47\x25\x4b\x38\x3e\x12\x98\x16\x3d\xca\x1b\xa7\x27\xaf\x9f\x99\xb3\xbb\x8d\x66\xac\x82\xb7\xdb\x42\xfa\xa9\xd2\x5a\xef\xbd\xb1\x74\x6d\xf6\xec\x30\xd0\x67\xa7\x63\xa7\xd8\x2d\xfa\xec\xa9\x6e\x8e\x7c\x37\x9e\xd1\xc1\xb3\xa7\xc1\x77\xcf\x4d\xca\xe4\xe0\x60\x46\x07\xdf\x3d\xf7\x0f\x9e\x05\x4f\xbe\x35\xa9\x4f\x9f\xcf\xe8\xe0\xc9\xb7\xfe\xd3\x83\xe0\xc9\x21\x21\x74\xf6\xec\x20\x78\xf2\x5c\x3e\x1c\x06\x83\x89\xbe\xea\x9f\x77\x6a\x41\xfc\xf8\xfe\xe5\xc9\xd9\xcb\x0f\x67\x17\x6f\xde\xfd\xf6\xf2\xfd\xc5\xf7\xef\x7e\x39\xfd\x81\x4c\x30\x1b\xbe\x79\x79\xf2\xe1\xec\xe2\x97\x9f\x7f\xb6\xa9\x07\x98\x0d\x0b\x1a\xe5\xf1\xba\xe1\xdd\x1b\x2b\x87\x68\x63\xc7\x2f\xba\x35\xac\xd0\x36\x90\x8e\x4e\x02\xaf\x38\x34\xda\xfd\x88\xc3\xcc\x86\x30\x1f\x70\x34\x3a\x40\x3e\xc7\x29\x89\x60\x86\x93\x79\x1c\xe2\x7e\x75\xce\x64\xfc\xb8\x59\x1c\xa4\xc7\xe3\x59\x3e\x88\x8f\x27\x33\x0a\x63\xa7\xca\xa0\x20\xa4\xa3\xf7\xb3\xfc\xc8\x28\xc5\xcf\xf2\x60\x30\x09\xe2\x20\x1e\x70\x59\x9a\xe3\xf8\xb3\xa5\xe3\x80\x1f\x8d\x67\x83\x89\xd8\xac\x83\x89\x75\x14\x8c\xf5\xf8\x77\xbb\xee\x99\x54\xca\xf8\x47\xe3\x6a\x3a\xa4\x46\x5e\x32\x98\x48\xd0\x2c\x3d\xdf\x40\x3e\x4f\x42\xcc\xe7\xc9\x60\xa2\x06\x8a\x06\x83\xa4\x8a\xc7\xa1\x17\xaf\x43\x33\xa4\x85\x31\xb9\xae\x84\xf6\x21\x3d\x52\x14\x24\x83\xeb\xc9\xf7\x34\x2a\x38\xb9\x5f\x29\x67\xa8\x74\xf1\x26\x61\x34\x18\x4c\xb0\x4d\x78\xa1\x02\x10\x8d\xcb\xd2\x71\xf9\x33\xdc\x32\x55\xcf\xab\x2c\x7f\x19\xc5\x4d\xdf\xca\x2e\xc8\x5f\xaa\x1c\xda\x5f\x40\xb6\x17\x2b\x71\xe5\x4a\x35\x11\x42\xad\x6b\x38\x23\xbc\x91\x92\xb8\x79\x54\x6f\x71\xe4\xe6\x52\x69\x16\x13\x38\x66\xbb\x5d\x26\x8d\x6f\xa3\x63\x92\xec\x76\xf9\x30\xce\xae\x36\x51\x4e\xbf\xbf\xfb\xd1\x14\xf9\x59\xab\xb5\x14\xaf\xd9\x32\x15\x09\xb2\x4b\x47\x64\x5c\xc2\x6a\xd6\x30\x45\x33\x58\x9f\x54\x1d\x7a\xac\x8e\xfd\xa0\xc0\x29\x64\xe4\xc5\x8d\x2c\xf5\x99\xf9\xdc\x65\xaa\x9a\x33\xde\xb9\xcd\xdd\x9a\xe5\x1c\x7e\xd1\x60\x50\x73\x2b\x20\xb7\x4f\x02\x36\x69\xe7\xd5\x6f\x92\x82\x93\xac\x75\x3f\x3f\xef\x50\x5c\xa9\x33\x72\x9c\xcd\x39\xe7\xe1\x54\xc6\x3a\xa2\x73\x16\x62\x69\x52\xeb\x48\x38\xb2\x8a\x5b\x93\x2c\x21\x3b\xd2\xf8\x56\x44\xc4\x49\x11\x55\xc1\x2d\x61\x78\x43\x12\x2c\x21\x44\x9e\x6d\xd9\x02\x6e\x7d\xf5\x12\xb1\x45\x76\x05\xd1\x63\xb8\x19\x6c\x25\x77\xb1\xa2\xc1\x0a\x19\x31\x07\xc7\x84\x4d\xe3\xa3\x64\x1a\xfb\x3e\x12\x74\x57\x1c\xe2\x42\x2c\xa3\xe7\x89\xba\x23\x9f\x4c\x70\x8c\xa6\xea\x59\x3e\x2a\xc6\x4c\xe4\x4f\xa6\xa6\x67\xe9\x60\x82\xb0\x7a\x49\xfd\x09\x4e\x94\x37\xd3\x2d\xde\x94\x6c\xf8\x69\x9b\xc4\x1f\x3f\x64\x79\xd3\x8a\x43\x65\x1f\x57\xd1\x80\x26\x86\x25\xf1\xbc\xc3\x85\x5f\x17\xdd\xa3\x10\x9d\x84\x45\xf9\xdd\x40\x41\x5c\x80\xc4\x4e\x97\xf1\x36\xc4\x2a\x0d\x0a\xca\x01\xb2\x58\x94\x40\x2c\x2a\xdc\x68\x70\x9d\x7e\x02\x02\x4b\x97\x69\xb2\x97\x03\xb1\xd8\x00\x55\x5d\x76\xfd\xe2\xb8\xe7\x4d\x9f\x93\x0e\x0f\xb9\x52\x28\x92\x2b\x8a\xd0\x7a\x51\x7e\xcd\x36\x52\xe5\x02\x49\x8e\x44\x5f\x90\x84\x54\x56\x5b\x48\xc2\x6a\x03\x19\xe6\x28\x10\x8f\xa9\x7c\xac\x96\x3e\xad\x37\xfb\xd5\x0d\x6a\xaa\x3f\x17\x08\xf9\x49\xbe\x82\x0c\x03\xcd\x28\x06\x82\x88\x71\xd3\xb5\x7f\x78\x39\x25\x6e\x3a\x13\xc4\x13\xc0\xf3\x10\xe1\xb8\xa3\xc0\x7b\xe5\x5e\x4d\x50\x82\x38\xed\xaa\xf0\x85\xf1\x46\xa7\xf2\x6c\x6b\x79\x8c\x3b\x61\x80\xf0\xa6\xf6\x61\x99\x48\xbf\x42\xa2\x88\x24\x0c\xfa\x9a\xb8\xd0\xbd\x6f\xe3\x67\xae\x43\x69\xc3\x0b\x97\xde\xc7\xa7\xb1\x64\x2c\xe6\x8e\x23\xdc\x58\x86\x3c\x88\x24\x4f\x42\xd1\x1f\x48\x3e\x3b\x79\x54\x42\x17\x43\x27\xf6\xbc\x7c\x98\x14\x27\x97\x45\x96\x6e\xb9\xa8\xac\x91\x40\xd1\x2c\x1f\xe6\x34\x8d\x78\x72\x2d\x2e\x5d\xcd\x18\xd7\xe0\x43\x4e\x27\x49\x2a\x9a\x19\x16\x6e\x3f\x70\x05\x68\xf4\xfc\xd5\xf2\x46\xce\xf7\x48\x37\xf8\x41\xe7\xab\x95\x32\xe0\x11\xee\x1f\x88\x02\x83\xb6\x82\x5f\xde\xbf\x11\x9d\x35\x3e\x62\xa5\xd3\x0b\xbb\xc2\x24\x76\x53\xcc\x9a\x12\xad\xdb\x62\xbd\x42\x93\x6d\xad\xef\x6f\xa3\xcd\x2f\xef\xdf\x18\x8f\x91\x62\x49\xc9\xa6\xda\xdb\x5b\x73\xfb\xd6\xae\x2a\xa2\xef\xdc\xc6\xcd\x64\x92\x75\x00\xc0\x4a\xaf\x26\xcb\x93\x55\xc2\xa2\x54\x96\x6d\x27\xeb\xd2\xd5\x07\x19\x6d\x56\xbc\x56\x1d\xd9\xfc\x0f\x1e\x32\x7d\xee\xc1\x3f\xbd\xab\xeb\x7b\x44\x7a\xfb\xad\xed\x30\x99\xa2\x99\xf2\x2a\x4e\xe2\x60\x62\x02\x25\x8e\x4b\x53\x5c\x77\x47\x9f\x85\xb6\xcd\xf0\x36\x4f\xdb\x9d\xfa\xa0\xba\x24\x7d\x16\x6f\xf3\xb4\xb7\x4c\x68\x2a\xdd\xc1\x9a\xea\x14\x0d\x7e\xb5\x51\x34\x31\x5d\x0c\x6d\xd8\x0e\x3b\x17\x14\x83\x6c\xb9\x94\xf0\x19\xd7\xa7\x4e\xf4\x55\xc2\x71\x37\x51\x75\x5c\xcf\xda\x91\xd2\x9f\x95\x18\x0a\x51\xcf\x9e\x97\x1c\x19\x25\xda\x8e\x0e\x53\x7d\x91\xca\x16\x8b\xde\x95\xa6\x3b\xb2\x7c\x41\x73\xba\x90\x54\x07\xcb\xd8\x20\xbb\xa6\x79\xaa\xb6\xf2\xb0\x72\x69\x50\x10\x86\x2b\xdc\xef\x9d\xac\x23\x68\x20\x83\x99\xdf\xc6\x06\x13\x7f\x52\x62\x13\x80\x43\x42\xf7\x18\xba\xe3\x97\xa1\x58\xc4\x71\x2b\x11\x2a\xe3\xba\xa7\xfe\xce\x38\x1c\xbd\xb4\xe1\xce\x5f\xa1\x8b\xb1\x83\x14\x99\x9d\x44\x0e\xeb\xc9\x17\xb6\x73\x6f\xcd\x51\x95\x47\xa2\xdb\x73\x9c\x53\x14\x83\x76\x51\x80\xef\x5d\xf7\x74\x41\x7f\x8c\x2b\xff\x75\xe2\xed\x01\xbf\xa3\x1d\x3d\x31\xdc\x30\x79\xba\x4c\x22\xac\x03\x96\x26\x3c\x32\x30\xb0\x5d\x5b\x59\xa2\xc6\xd0\x0d\x28\xf8\xfa\x91\x37\x4b\xfe\x73\x03\x6f\xd6\xf6\x4f\x8d\xbb\x59\x59\x6b\xd8\xf1\x3a\xca\x5f\x17\xfa\xf3\x07\xba\x89\xa4\x3b\xcb\x6e\xdb\x65\xcb\xc2\x30\x7b\x5e\xc5\xc2\x66\xbb\x1d\xc0\xf2\xa1\xb1\xc9\x6a\x3d\xee\x8c\x90\x57\x83\x16\x97\x71\x1a\x15\x05\xd5\xe7\xce\xc2\x85\x5e\xbd\x1e\x20\xb7\xf2\x8f\x2f\x4f\x5f\xbe\x3f\x39\x7b\xf9\xc3\xc5\xbb\xf7\x3f\xbc\x7c\x2f\x70\xcf\xe1\xbb\xf7\xaf\x7f\x7c\x7d\x7a\xf2\x46\x27\x1d\x88\x6c\xdd\xf4\x78\xdc\x49\x8f\xbb\x7d\xa7\x51\xbc\xd6\x2d\xee\xe3\x3f\x11\xbe\xdb\x89\x2d\x62\x4c\x68\xd9\x6e\xd7\xea\x97\x36\x85\x6d\xa5\x07\x99\x86\xe8\xad\x7d\xe9\xda\xbf\x35\x87\x64\x4b\x35\x57\xb5\x61\x30\xd6\x71\x3d\xa8\xe8\x8e\x12\x90\xf5\xb2\x65\x4f\xb9\x2d\xd5\x8e\xb7\x15\x91\xd0\xd8\x41\xd3\xac\x0d\xea\xb5\xaa\xad\x96\x96\xe9\xcc\x33\xf1\x1e\xd4\x91\x8a\x48\x86\xc2\x51\x36\x0e\x7a\xab\xdc\xab\xd7\x80\x93\x0e\x7c\x22\xc2\xbc\x03\x21\x40\xb8\x0e\x3c\x9b\xe4\x6b\x13\x90\xb6\x49\x57\xf7\xd2\x0f\x68\x0d\x07\xc0\xf5\x9b\xdf\xf9\xaa\xcb\x8a\xeb\x31\xb0\x63\x65\xd2\x55\x5a\x35\x52\x79\x79\xaa\x71\x8a\x47\x01\x9c\xe5\x08\x90\x43\xa3\x27\x0d\xa0\x1b\xa5\x69\x9b\x8e\x7c\x95\xe5\x1d\xdc\x3d\x17\xfe\xeb\x8b\x8e\x11\x33\x85\xee\x47\x95\x24\x2e\x47\x77\xa8\xbc\x39\x3a\xb7\x88\xbe\x23\xf1\x18\x49\xd1\x3d\x33\xb8\x92\x1a\xd8\x32\x61\x0b\xb5\x30\x52\x8d\xcb\x7e\x46\xd8\x3c\x59\xfe\xcb\x3c\xd4\xec\xa8\x79\x88\x23\xa7\xb8\xde\x95\x50\x7b\xfd\x6e\xed\x56\x0c\xdc\xce\x82\xea\xf5\x85\xee\x99\x43\x78\xbf\xd3\x9f\xec\x7c\xe1\xac\x7d\x76\x95\x82\xf7\x31\x19\x1b\x89\x6c\x77\xbb\xf3\x48\xfa\xdf\xaa\x02\x71\x18\x44\xc0\x10\xba\x31\xa9\xe3\x89\xd3\xc2\xf3\x1a\x98\x23\x21\xf1\x14\x25\x8a\xd5\xa0\xd0\x25\x3b\xb5\x05\x06\xb5\xfd\x69\x28\x99\xb8\xb1\x04\x6e\x3e\x33\x62\x4d\x17\x45\x05\x6f\x2e\x58\x81\x81\x48\xfe\xb1\xb3\x44\x59\x49\x8f\x5a\x83\xf5\xfd\x28\xac\x14\x5c\x14\x2d\xde\xc4\x77\x3b\x07\xc8\xdd\x34\x8d\x17\x93\xf4\xff\xd0\xa8\x4b\xcb\xed\xc3\xac\x1d\x0e\x89\xc4\x38\xdd\xeb\x5f\x36\x76\xfd\xcb\xa6\x0d\xff\xb2\xed\xd2\xad\xe3\xd2\x29\x3d\xa1\xf2\x98\x49\x8a\xbe\x01\x64\x35\xbd\x60\x89\xc0\xc6\x67\xcc\x50\x83\xc8\x93\x02\xba\x96\xb0\x4b\x7f\x73\x94\x55\xc4\x92\x73\x32\x9e\xf2\xa3\x4e\x1a\xd0\x48\x19\x7d\x9f\x23\xe3\x06\xbb\x99\x67\xce\x43\x42\xaa\xc8\x49\x53\xc3\x73\x2d\x71\xfa\x20\x0e\xaa\x70\x85\xfa\xb4\xa6\xee\xb4\x66\x84\x75\x91\xb7\xd4\x00\x55\x4b\x91\x4a\x1a\x36\x12\xb9\xbb\x48\x5c\xda\x41\xc3\x4a\x86\x2f\x73\xe9\x51\x9b\x4b\xcd\x67\x93\x30\xa5\xd5\x0d\xfc\xa1\xf6\x05\xb2\xae\xea\x59\x0d\xc5\x62\x8a\x54\x95\xbb\x20\xa5\x98\xb5\xc8\x59\xd6\x26\xbe\xbb\xaa\xfd\x1a\xca\xdb\xed\x81\x21\xc2\xa7\x15\xfc\x72\x22\x2f\x39\xf5\x6b\x49\x21\xde\x88\xe6\x3b\x50\xfc\x79\x88\x97\xf2\x53\x0b\x05\x9e\x87\x78\x41\xc6\x78\x4d\x62\xb3\x65\x16\x47\xeb\xe9\xc2\x78\xca\xbc\x24\xf1\x7c\x11\xe2\x2b\x49\x45\x6e\xa7\x57\x0d\x12\xfd\xb2\x71\x61\x5f\xb5\xa8\xf5\xcb\xd6\x95\x7d\xa9\x07\xe8\x79\xf0\xca\xdc\x4c\x91\xdd\xda\x97\xf6\x36\xba\xaa\x83\xad\xcb\xfa\xe5\x7e\xd5\x04\x60\x97\xcd\xeb\xfd\x52\xde\xdb\xb2\x15\x49\xea\x67\x4e\x1b\xf2\x46\x47\x78\xa9\x55\x2e\x11\xc2\x1b\xf3\x68\x60\x4b\x01\xbb\xe6\xeb\xc1\x9b\x4b\xfa\x25\x4b\xbb\x89\xb0\x6e\x2a\x23\x75\xa9\x0c\xc3\x77\xdb\x17\x3c\xb6\xfb\xa0\x1b\x21\x71\x59\x07\x67\x0f\xa2\xe6\x55\x64\xe8\x0c\x27\x4a\xed\x97\x4c\xf0\x92\x8c\xf5\x5e\x18\xe3\x4b\x32\x96\x1a\xe0\x6f\x2b\x09\xec\x8a\x8c\xf1\x1d\xb9\x2f\xb1\xb4\x4a\x3a\x11\x3b\xe7\x82\xcc\xc3\xe9\xea\xe8\xed\x54\x7a\xf4\x9f\x2a\x97\x51\x9a\x84\x58\x21\xb4\xf1\x7d\xbc\xf2\x7d\x51\x71\x15\x54\x07\x37\x73\xad\x7c\x5f\x39\x9a\xd5\x2a\xe6\x72\xa7\xa1\xc6\x46\xdb\xe0\x98\xac\xa6\xf1\xd1\x5b\xcf\xeb\xab\x79\xe8\x26\x6b\x20\xc5\x31\x92\x0c\x6c\x29\x49\x22\x77\xf3\x8c\x18\x2d\xd2\x15\x8e\x51\x88\x56\x3e\x31\x3e\x09\xab\x66\x13\x35\x90\x78\x8a\x22\x2b\x0b\xc6\x2b\x7c\x8d\x70\x4a\xae\x95\x84\x16\xaf\xc8\xb5\x14\xb9\x62\x7d\x4d\x2a\x7e\xe4\x81\x74\x44\xaa\x85\x78\x2d\xb4\xfc\x55\xb6\x65\x8b\x5e\xa4\xe3\xd9\xe1\xde\xe5\x96\xf7\x58\xd6\x13\x17\xac\xe4\x35\xb8\xdc\x8c\xc3\xaf\xa8\x49\x16\x96\x36\xc3\xa6\x4a\x5b\xd3\xdd\x3c\x0b\x49\x52\xb2\xd6\x49\x5c\xfa\xc9\x7c\xac\xe0\x40\xf3\x48\x26\xae\x81\x89\x45\x17\x2f\xfd\x64\x3e\x09\xf1\xa5\x4f\xe4\x2f\xab\x9f\xc7\x85\x9f\xcc\x0f\x04\xf0\xa8\xa7\x37\xb2\xf9\x52\x36\xda\x38\xaa\x6b\x3f\x99\x1f\x86\x78\x4d\x9a\x5f\xaa\x8e\x3c\x91\x1d\x91\xe7\xf6\xca\x4f\xe6\x4f\x42\x7c\x25\xba\xf1\x24\x44\x08\x5f\xd8\x60\x2a\x6d\x1d\xd2\x7a\xeb\x56\xbb\x9c\xa1\xb2\x80\x17\xf8\x41\x79\xcf\x0f\xb4\x2e\xef\xe9\x00\xa3\x17\xb8\x80\x27\x9f\x01\x01\x7b\xc8\x72\x72\x52\xb6\xf1\x8a\x6e\xfa\x53\x7a\xe2\x57\xe1\x25\xe8\x9c\x85\x47\x64\x8c\x3a\x85\xe6\x62\x84\x96\x83\xb5\x92\xf7\x70\xde\xe3\xeb\x48\x50\x81\x3d\xfa\x69\x1b\xa5\x3d\x9e\xf5\x26\xb8\xb7\xca\x78\x0f\xf8\xca\x06\x49\x56\x9a\x87\x47\x7b\xea\x54\xeb\xf0\xf9\x5a\xc7\x55\xad\x79\xe8\xe8\x0d\x29\xe9\x8b\x1c\x87\x18\x43\xd9\x40\xb1\xe4\x5d\xa7\xda\xf8\xb0\x89\x58\x2d\x00\x4e\x15\x75\x7c\x3c\x35\x3a\x38\xad\x25\xa8\xf0\x9a\xba\xbb\xf3\x76\xce\x39\x95\xb4\x00\xf5\x27\x9f\xa9\xab\xe6\xaf\xbc\xab\x1e\x7f\x22\x6b\x6a\x48\x52\x09\x71\x0f\x92\x48\x41\xf7\x7c\xd8\x81\xd3\xb6\xcf\xdb\x60\x32\x8d\x33\xc6\x13\xb6\xa5\x65\xd9\x5d\x66\x32\x1a\x97\xf5\xc9\xcb\x1a\x5b\xad\x9b\xac\x6c\x70\x23\x3b\xa8\xcc\x26\x4d\xdd\x41\x38\xa2\xd2\xb8\x91\xae\x51\x7b\x86\x82\x6f\x4d\x51\x8b\x40\x68\x13\x02\x5f\x74\xf2\xb0\xdb\x97\xcb\x24\x2a\xc0\x1e\x06\x8f\x0a\xba\xcb\x2c\x3d\xb8\x97\xd7\xa2\x1d\x32\x67\xad\xa5\xe3\xcd\xa5\x53\x74\xae\xed\x40\x66\x09\x6f\x2d\x7a\x52\xd8\x3d\x49\x3c\x0f\x26\xa4\xc5\x0b\x49\x14\x9b\xba\x85\xcc\x35\xd1\xfd\xa4\x8b\x09\x82\xb4\xa2\xbd\xdb\xb8\x80\x7c\xa6\x69\xa3\x30\xa5\x7a\x10\x79\x1e\x34\xb4\xb8\xe5\x51\x44\x08\x61\xc3\x3c\x48\x70\x9d\x7e\xcb\x9a\xd4\x78\x37\xf9\x96\xb5\xa9\x74\x95\x51\xb2\x49\xa2\xd2\x44\xa2\x31\xcd\x48\xde\xa9\x6c\x49\x3e\xe9\xea\x54\xe8\x0b\xc3\x58\x69\x6c\xe1\x75\x64\x90\xef\xe2\xdd\xf2\x24\x4d\x0d\xca\xdc\x42\x75\xfa\xfd\x0e\x19\x93\xf6\x4f\xde\x1d\xbd\xba\xb1\x24\x45\xf2\x27\x85\xc8\xe0\x0a\x8d\x22\x45\x76\x45\x3b\xb1\x71\xc5\x0b\x52\xb6\x2b\x6e\xbf\x55\x79\x5d\xfc\x55\x8b\x77\x9a\x2c\x61\x57\x3b\xc8\xa9\x75\xea\x82\x98\x26\x03\x86\x56\xbb\xd9\xc5\xf4\xea\xb5\x19\x07\xe6\x19\x4e\x1e\x26\x37\x93\x87\xc8\xcd\xc4\x4a\x9e\xdb\x05\x33\x92\x0f\xb7\x79\xfa\xb3\xc0\x1b\x9b\x05\x11\x32\x9a\x06\x89\xe3\x59\x46\x10\x45\xc1\xf9\xe8\x7c\x24\xbd\xcb\xa8\x50\xcc\x49\x4a\x01\x21\xd9\xb0\x88\xd7\x54\x60\xdf\x6d\xe2\x36\x42\x0f\x0d\xb3\x9b\xe0\x8d\x90\x3c\xc7\xb0\x9f\x0d\x37\x11\x5f\xef\x76\x60\x24\x5b\x11\x2f\xa8\xab\x11\x30\x02\x7e\xf2\x0f\x34\xa4\xca\x85\x32\xba\x70\x6d\x01\xbb\x14\x4d\x93\xb6\xa2\xa9\xa5\x99\xa5\xba\xa9\xbb\x89\x56\x4d\xb0\xf7\x79\xbe\xa0\x61\xfd\xc9\xa1\xf3\x3d\xbb\x87\x23\x64\xf9\x75\xf7\xdd\xe7\xd1\xe1\xbf\xc8\x53\xa9\x77\xa3\x65\xd8\xd6\x59\x8b\x1d\x77\xc6\xe7\x79\x8d\xa8\xc4\xd9\xff\x18\x83\xf0\xeb\xae\x89\xcc\x5e\x13\xc9\x3e\x9e\x52\x16\x2a\x27\xb0\x1a\xf1\x15\x37\xbb\xa6\x42\xdd\x79\xb5\xcd\x26\x5f\xc8\x11\x4b\xbe\x8a\x23\x96\x3c\xc8\x11\x2b\xbf\x6a\x85\x4b\xcc\x86\xdf\x47\x45\x12\xb7\x99\x63\xa9\x20\x75\xbf\x84\x39\xb6\xd9\x13\x7c\x29\xae\x7d\xf9\x2c\x89\xbb\xf9\x22\x12\xb7\x42\xfe\xe6\x21\x76\xf9\x5a\x46\x92\x6c\xfd\xac\xf8\x3e\x6a\x44\xd6\xaa\xe5\x9b\xf3\xd0\xb2\xf2\xcc\x91\x77\xfd\x7d\x50\x6d\x56\xf2\xd9\x42\xae\xc5\x3e\x15\xd4\xf5\xe6\x7f\x11\x19\xb3\x88\xb5\x95\xa2\xe8\x9e\x63\xf8\x05\x6a\x80\x03\x07\xdb\x51\x52\xeb\xfa\x77\x8b\x61\xec\x76\x2d\x09\xcb\x43\x65\x55\x8e\x52\x5a\xaa\x36\x26\x94\x59\xbf\xc7\xc9\x2c\xa9\xe6\xb6\x63\xde\x34\xbb\xb9\xd1\xa5\x01\x4c\x1e\xee\xf3\x60\x62\xcf\x5b\xab\x47\x9f\x2d\xdc\x46\x00\x67\x0f\x94\x30\x48\x7b\x30\x46\x58\x80\x9b\x80\x0e\xc5\x4f\x89\x82\xaf\xc4\x85\x36\xff\x08\x2e\xd4\x6b\x9c\x03\x7a\x4d\xf3\xbb\x4e\xf4\xa5\xe2\x61\xef\xab\x1d\x22\x89\xdb\x6c\xbe\x1c\xb7\x79\xe8\xa8\x75\x45\xb4\x6b\xee\x82\xe6\xb1\xaa\x1a\x82\x54\xf2\x72\x93\x25\xcc\xad\x7e\xf8\x97\x5d\xbb\x1d\xf6\x1d\xf5\x6b\x77\xf3\x35\xd7\x6e\xe5\xcb\xe9\x61\xa0\x53\xa3\x12\x1d\xc0\xe1\xf8\x1d\xb7\x63\x6d\x5d\xd2\x5d\xb7\x3a\xaa\x42\x69\xd8\x82\x5d\xbd\x35\x16\x31\xb5\xbb\x28\x93\xca\x2e\x3e\x64\x5f\x7c\x4a\x32\x2d\x0b\xfb\x6c\x19\x22\x10\x2b\x51\xfb\xec\x81\x8c\xce\x99\x28\x1f\xbe\x9b\x1a\xfb\xfe\x33\x2a\x03\x7b\x18\x2f\x56\x1f\xbb\x8b\x81\x3d\xfd\xd2\x4d\x6a\xf2\x65\xed\x7d\x8a\x13\x92\x39\xeb\xd7\x26\x71\x95\xc7\x80\xc4\x5a\x6f\x99\x1d\x11\x93\x64\x1e\x85\x38\xad\x15\x77\x28\xc3\xd8\x4a\xc9\xd3\x2e\x02\x31\x6b\x1e\x10\x89\xa6\xa7\x9d\xb2\xf2\x06\xd5\xb9\x58\x40\xa9\x69\xd9\x8d\xc8\xa6\x8a\xaa\xdc\x4a\x61\xfe\x34\x36\xbc\xf0\x6d\xad\x9f\x96\x7e\x54\xdf\x6b\x9a\x89\xb2\x81\x2d\xc2\xdb\x1a\xad\x69\xaa\xdf\x6a\xaa\x75\x63\xb1\xc8\xb4\x21\xcb\x8f\xeb\xbb\xca\x77\x89\xf0\x7d\x5b\xb5\x79\x1d\xc6\xcd\x0d\xf7\xd9\x5a\x08\x21\x8d\x86\x67\x0f\x94\x70\x21\x7b\x0d\x07\x8e\x1f\xd4\x24\x88\x3b\x35\x09\xb6\x46\x97\xae\x83\xd3\x24\x71\x8e\x4d\x17\xc3\x72\xd3\x60\x58\xee\xd9\xe6\xa6\x86\xd2\xe8\x05\x75\x6c\xd1\x2f\xe4\x6e\xda\x1a\xbe\x4e\xb6\x21\x50\xca\xd7\xca\xa6\xad\x8d\x54\x6e\x94\xd6\x7b\xa5\x6b\x1d\x3c\xfb\x16\xd7\x15\xac\x83\x67\xdf\xe1\x96\x96\x76\xf0\x5c\x46\xa0\x74\x74\xae\x83\xe7\x87\xb8\xa1\x3f\xbf\x2f\x88\x74\x87\x0e\x77\x56\x53\x0c\xff\x02\x0d\x70\x2d\x4b\x1b\xa8\xb8\xaf\xae\x26\xff\xd4\xf1\x02\x49\xd1\x3d\xdd\xed\x20\xad\x1c\x81\x4a\x81\x20\xc9\x1c\xb0\xee\xe8\x29\xd7\x4e\xaa\x14\x52\x66\x2d\xf8\xef\x6a\x4b\xeb\xec\x1f\x93\xcd\xaf\x51\x9a\x2c\xa4\xda\x4e\xbd\x48\xed\x13\xc0\xfd\x49\x53\x35\x78\x8f\xda\x67\x53\x2b\x57\x59\xdf\xd6\x8a\x1a\x3c\x41\xa9\xc2\x16\xdd\xa8\x7d\xb1\x57\x20\x5c\x79\xad\x75\xa5\xb0\xb2\xa1\x02\xde\x4b\x0e\x01\x95\x52\x54\x5c\x7d\x0f\x78\x59\xa1\xd6\xae\x22\x56\x5b\x19\x29\x77\x90\xe8\x40\x5d\x30\x4d\x25\xa1\x78\x8f\x6e\x50\x59\x6a\xa6\x1d\xad\x04\x8e\x06\xca\xda\x34\xc3\x0d\x71\xbf\x65\x0e\xff\x04\x9b\x54\x84\x70\x85\xbe\x12\xd3\x93\x1a\x94\x88\xbb\xf5\x8c\x4a\x6c\xba\xa1\x61\x70\xae\xe4\x1a\xd4\x48\x21\xa5\xd5\xb3\x99\x81\x5c\x2a\x5d\x53\x4b\xba\x18\x65\xa3\x6a\x66\x72\xcb\xac\x34\x4c\x49\xc5\xf6\xa9\x77\x5b\xd6\x5b\x63\x89\x24\x68\xb7\x63\xf5\xfb\x23\x41\x36\x28\x5e\x0b\x3d\xcb\x0d\xcf\x33\xf2\x3c\x36\x2c\x28\xff\xe0\xe6\x80\x39\x8e\x64\x4f\x59\x89\x8b\xba\x95\x52\x5b\xa8\x61\xf6\x88\xbb\xa5\xed\x62\x49\xc5\x27\xf7\x8b\x99\x3d\x73\x3a\xf2\x8e\xd3\x63\xbe\x25\xb5\x6f\x2e\xd3\xb4\xeb\x4c\x19\x3d\xcb\x6b\x95\x42\x2b\xc6\xb6\x94\xb9\x18\xd6\x98\x8c\xab\xac\x7d\xc4\xc1\xbc\x4b\x3f\x23\x47\xa6\x2a\x77\x36\x73\xcb\x5c\x53\x5c\x62\x5d\x43\x52\xbf\x56\xcd\x52\x34\xaf\xda\xc4\x6a\x82\x58\xf9\xbe\x48\x6e\xd0\x90\x5c\x79\x0a\x6e\x5e\x94\x5c\x23\x77\xf5\x5b\x4c\xdb\x98\x88\xf5\x4b\x3b\xae\x31\xe7\xb3\x2e\x6d\xd4\xcf\xd4\x85\x96\x94\xa8\xbe\xb8\xcd\x4d\xd0\xad\x43\x3a\x75\x18\x8c\x17\x0d\x4d\x98\xac\xc1\x9a\xbc\x68\xa8\xc2\xe8\xa2\x33\xd8\x09\xa2\xac\x09\x57\x13\x74\x75\x38\x23\x40\xdd\x50\x6e\x9e\xd5\x8c\xcd\x19\x0a\x09\x47\x41\x67\x56\xcf\x83\x3a\xb4\xfc\x17\xd6\x84\xc7\x95\x8b\x8c\x8f\xf4\xae\xe8\xee\x2c\xb2\xee\x66\xf7\x0c\x46\x75\xbf\x71\xac\x36\x9b\xf4\xae\x5b\x1f\xa7\xba\x0e\xb9\x61\x0b\x4b\x67\x55\xf6\x59\x81\xdf\x96\x44\xf9\x91\xad\x4e\x23\x0b\x59\xbe\xb7\xc1\x5e\x4e\x3f\x6d\x93\x9c\x16\x3d\x9a\xf0\x35\xcd\x7b\x11\xeb\xd1\xdb\x4d\x9a\xc4\x09\x37\x12\x69\x09\xe3\x7b\x59\xae\xec\xed\x55\xda\x55\xb4\x39\x7f\x54\xf4\xd4\xdd\xd8\xdb\x18\x47\x1b\xbd\xef\x33\xbe\xee\xdd\xd0\x9c\xf6\xb2\xab\x84\x73\xba\x18\x3e\x42\xd3\x5c\xf7\xd4\xd5\x56\x75\xf6\x47\x05\x8d\x60\xee\xee\xa3\x48\xfa\x06\x51\x5a\x81\xea\xce\x8b\xb5\xc9\x43\xe3\x34\x35\x8c\x30\x1d\x88\xaa\x66\x8b\x57\xec\xbf\xdc\xf3\xf4\x4e\xac\x41\x78\x03\x78\x3b\xf9\x3f\x96\x8f\xd1\x75\x27\xf0\xe6\x9d\x60\x80\x6b\x52\xdd\x4d\xb6\xfd\xa4\x7e\x37\x31\xf7\x5b\xa6\x23\x83\x63\x5e\xdd\x4b\xd5\xc4\xf0\x8e\x2b\x2c\x72\xb3\xd6\x7b\x47\x12\xed\x77\xbc\x29\xa0\x4f\x0c\x40\x30\x9d\xd4\x37\x17\x57\x37\x57\xa2\x6f\xae\x52\xe9\x1c\x9a\xfa\xa7\x6a\xbf\xa5\xbb\x9d\x82\x72\x29\x12\x4f\x8a\x4e\xd1\xc4\x88\xaa\x40\x67\xdc\xee\x76\xb1\xcc\xb8\x45\xe2\x49\xd1\x1b\x46\xcb\xb6\x81\xdf\x14\x35\xdc\x26\x7e\xf0\x82\xe4\x16\x3f\x6c\xdf\x6a\xdc\x4c\xbc\x0c\x80\x5c\xcd\xaf\x33\xb1\xf5\x19\x6d\x4c\xa5\x35\x88\x6a\xde\x87\xf2\xca\x35\x9d\xaf\x1f\xde\xe6\x7d\xd3\x12\xf7\xab\xed\x57\xb9\xc4\xaa\x3c\xb3\x70\x6d\xd3\xd2\xf5\x65\x9f\x8d\x8b\x59\xcb\xa1\xd5\x32\xb1\x29\xaa\x48\x2f\xca\xa9\x64\x9e\xa8\x4a\x8b\xde\x60\xd0\xbb\xcb\xb6\xe2\x7c\x5e\x46\x97\xe9\x5d\xef\x8a\x46\x8c\xf7\x78\x26\x4f\xa7\x3c\xcf\xa6\x86\x9e\x3e\x4d\x3d\xca\x78\x92\xd3\xf4\x4e\xd5\xcf\x44\xa1\x68\x23\xb3\xda\xab\xa9\x67\xbc\xdd\x0f\x7b\xaf\x97\xbd\x22\xc3\xbd\x4d\x54\x14\x92\xad\x23\x0d\x86\x3a\xeb\x4d\x58\xc1\x69\xb4\xe8\x65\x4b\x01\x63\xb4\x03\xa2\x9b\x84\xaf\x7b\x32\x56\xb1\x80\x2f\xb2\x02\xa9\x92\x53\x68\x3f\x0e\xb0\x0f\xc5\x1c\x49\x9e\x6a\xc2\x7a\x54\x86\x90\x96\xcc\x53\xf5\x46\xe5\x54\x1c\x8f\xc5\x93\xfa\x70\x4c\xc6\xe2\x0a\xde\xed\xd8\x6e\x97\x23\xcf\xfb\x4c\x05\xdc\xf9\xc8\x6b\x1f\xf9\x9e\xda\x3d\x8f\xdb\x64\xee\x26\xb3\x07\x3c\x4a\xe8\x49\x08\x7a\xc0\xff\x97\x0f\xef\x4e\x9d\xf8\x6a\x0e\x12\x6c\x10\xe9\xa0\xba\xec\x03\xae\x2e\xec\xbc\x6c\xde\x1b\x17\x05\xcd\x13\x69\xc6\xd8\xe6\xb8\x38\x4c\x77\x65\x54\x8c\x23\x32\xc6\x05\x99\xe0\x98\x8c\x71\x4a\xc6\x78\x4b\xc6\x78\x43\xc6\xd2\xd9\x19\x5e\x90\x06\x3c\xad\x94\x26\x95\xc2\x98\xf1\x5a\x39\x5d\x1f\x5d\x4e\xd7\xbe\xaf\x14\x58\x44\x51\xc8\xc9\x62\xbe\x0e\x1b\x3a\x5d\x32\xae\x98\xe8\x42\x44\xc6\x53\xde\xfe\x36\x45\x54\x46\x72\xc7\x85\x56\x10\xeb\x25\x4b\xb8\x3e\x1e\x2b\x81\x6b\xf6\x45\x76\xe8\x1c\x2f\xe6\x32\xf4\x2c\x32\x0a\x17\x53\x51\x29\x06\x25\x75\xfd\x93\xb4\x38\x02\x11\xea\x32\x8a\x37\xe8\x49\x05\xb3\x9b\xaa\x00\x86\x3d\x62\x41\x2e\x76\xdb\x49\x06\x1b\x24\xad\xb3\xeb\x8d\xbb\x20\x79\x30\x19\x28\xa6\x4e\x23\x75\x4f\x11\xdd\xdd\x18\xe1\x98\x34\x53\x6d\x6f\x35\xf0\x66\x9d\x8c\x1c\xae\x39\x3f\x6e\xfd\x6c\x20\xf9\x3e\x02\x21\x5b\xfa\x84\x1a\x8d\xc8\x65\x63\x6f\x75\xeb\xd5\x76\x1b\xac\xd1\x4e\xb3\xc2\x7e\x37\x86\xe4\x32\x80\x2b\xfa\xac\x41\x98\x19\x73\x4b\x81\x54\x76\x7b\x31\xfa\x22\x7f\x5f\x9d\x3d\xc0\x0c\xcd\xba\x91\x3e\x16\x2a\xa6\x66\x27\xa0\xe7\x99\x38\xb6\xee\x09\x53\x22\x2d\xeb\x92\x93\xbb\x36\x9e\xfa\x1c\x17\x0d\xcb\x1a\x47\x17\x59\x2c\x54\xcd\x1a\xa5\xfa\x66\x4e\xa1\x75\x09\xd5\x38\xe6\x10\x95\x75\xbd\x91\x8a\x6b\x21\xa6\x52\xe9\x35\x57\x69\x35\xad\x80\x3a\xd2\xee\x12\xf6\xad\xef\x7b\xb0\x6c\xa7\x98\xdd\x16\x75\x0d\x9d\x86\x2e\xb6\xcd\x8d\x69\x4d\xeb\x00\xd3\xe6\x0c\xef\x8d\x6e\xd2\x80\x98\xb2\x39\xb5\x20\x10\xa1\x9a\x9d\x80\xc5\x77\x49\xf1\xc5\x6c\xab\x1a\x9f\x28\x78\x7e\xd0\xe4\x51\xed\xf5\x9d\xa8\x82\x6e\xca\xa6\x07\x57\xd1\x66\xb0\x32\x8d\x03\xd4\xd1\xa3\x16\x03\x6b\x04\xcf\xf3\xd9\x39\x43\x23\x1c\x11\xf0\xcd\x37\xdf\x24\x85\x2a\x74\x9a\x2d\xe8\x37\xdf\x7c\x03\x6a\x5c\x2a\xad\x3c\x98\x69\x46\x7a\xbc\x4e\xd2\x45\x4e\x99\xe5\x9e\xd7\xb0\x21\x19\x36\x40\x26\xa7\xc6\x60\x9a\x10\x6d\x01\xd5\x08\x45\xa3\x48\x0a\x6d\x1c\xd5\xb2\xbe\x26\x84\xa9\x4f\xac\x61\x57\x4d\x48\xa6\x3e\x64\xf2\xc3\x3c\x92\x31\x81\x2c\xfa\x25\x33\x2b\xba\xb9\xd4\xfc\x25\xb9\x7a\xbf\x25\x7c\xfd\x39\x52\x47\xb2\x97\xa4\x7b\x28\xe5\x8d\x28\x41\xfa\xd2\x6a\xef\x0b\x0a\x91\x0f\x29\x44\xbb\x1d\x70\x3d\xbe\xd0\x2a\x47\x7c\x14\x19\x4f\x37\xd1\x3c\xf6\xfd\x30\x50\x06\x44\x65\x89\xb7\x64\xa2\x6f\x40\x09\x8c\x8c\x44\x6e\x3f\xcf\xca\x2a\xe6\x90\xa5\x82\x70\x70\x7b\xd4\x60\x58\xd9\x70\x9d\x90\x91\x68\x1e\x87\xb2\x63\x95\xcb\xd1\xb6\x04\x76\x63\x21\x9a\xc8\x4e\x98\xc9\xdb\x95\x13\x6f\x3a\xfc\xbb\x2c\xe0\x12\x73\x84\xc5\xa8\xe0\x92\x50\x54\x8a\x84\x14\x22\x84\xb7\xbe\x2f\xc6\x27\x83\x0c\x4d\x5b\x3d\x9d\xa2\x5c\xa1\xef\x3a\xab\xc0\xb5\x36\x47\xad\xfa\x0d\xe5\x6f\x06\x33\x55\xa5\xd8\x03\x63\x42\x08\x7f\x66\x2c\x9d\x23\x29\x97\x84\x5a\x02\xa1\x5a\x36\xcf\x83\x4b\xcf\xb3\x83\x52\xcd\x47\xc6\x15\x76\x5c\xb9\x69\x97\x14\xd0\x7e\xc2\xc1\x12\x78\xbc\x43\x5a\x69\x29\xb6\x1a\xe1\xe0\x50\x64\x8a\x45\xd8\x22\x0c\x28\x4e\xa4\xe3\x4e\x9c\xbb\xe1\x69\x8c\xe2\x98\x31\x3f\xdc\xed\x1c\xa3\x35\xa3\x7b\x22\xc7\xc1\x95\x4f\x62\xdd\x33\x36\xab\xda\x33\xf9\x02\xf3\x64\x26\x5e\xf2\x5e\x1b\xcc\xc9\x96\xf5\x63\x82\x39\x36\x2c\xc8\xb2\x6c\x71\xf1\x9a\x3e\xbd\x6a\xee\x42\x21\x45\x88\x76\x4f\xa0\x3d\xd5\xd4\x52\x43\xaa\xff\xe2\x30\xd0\x79\x14\x7a\x5e\x87\x2b\xe1\x6e\x65\x64\xeb\xcf\x2d\xea\x55\x50\x0f\xf7\x54\x71\xc9\x6b\x88\x04\x31\x93\x47\x77\x82\x5e\xa8\xb2\x14\x92\x2a\x51\xd9\x8a\x61\xef\x47\xa5\xa8\x8c\xa6\x46\xbc\x62\x00\xa3\x0d\xbe\xeb\x48\xda\xeb\x13\xa1\xa3\x9c\x7c\x76\x32\x2a\x21\x72\xe5\xc4\x66\xca\x8f\x05\x62\x3b\x18\xc8\x98\x5d\xa6\x2a\x48\xe7\x3c\xfc\x7f\xce\x94\xd4\xe7\x63\xcb\x8a\x75\xb2\xe4\x0f\x4e\xc9\x4d\x94\x7e\xec\x16\xa0\x4b\x0f\xe5\x5a\x07\xc0\x56\x69\xc4\xaf\x47\xb9\x14\xc1\x1a\x35\x36\xf3\x7d\xce\x42\x34\x8f\xc2\x19\x57\x01\xdc\x29\x0a\x00\x50\x1c\x6d\x81\xe3\x59\x0d\xb5\xea\xca\x51\x6a\x16\xf6\xde\xb2\x0c\x96\xea\xbe\x52\xb4\x90\xbd\x8a\x9a\x4c\x4c\x71\x7a\xba\x8c\xf8\xf6\xf5\x3c\x59\xc2\x5c\x10\x1d\xca\xe0\x6e\x1e\x62\x25\x65\xce\x07\x13\x15\x3f\xc8\xd1\x27\x72\x07\x85\xb9\xd9\x5d\xd3\xfd\x59\x6a\xb7\x34\xdf\x3f\xe7\x5a\xe5\xf2\x7d\xb2\x5a\x77\x33\x5d\xeb\x75\x77\x8d\x63\x30\xb1\x1a\x39\x4c\x4c\x38\xab\x55\x2a\xeb\x0a\xda\xfe\x4e\x74\x18\xb7\xcf\xd5\x4c\xaa\x38\xf5\xb2\xa2\x8e\x53\x06\x40\x2d\x8b\x1a\xfc\x57\xb1\x97\x3b\x50\x98\x79\x13\xf5\x0f\x09\x6f\xef\xd6\x0f\x75\xb4\x67\x8f\xf2\x07\x66\xdd\xeb\xcf\x8f\x98\xd4\xff\x68\x4c\x44\x28\xcf\x6d\x33\xb1\xa3\x3d\xe3\x6d\x35\x6f\xb3\x86\xeb\x83\xb1\x36\x9d\x98\x91\xbc\xd9\x3a\x85\x99\x42\x91\xec\x60\x73\x01\x47\xba\xf0\xba\xb9\xf8\x12\xb6\x48\x93\x36\xe2\xac\x88\x93\x2a\x24\x8a\xac\x4b\x1e\xc3\x1a\x2f\x8d\xfa\x84\x97\xfb\x51\xf1\x7d\xe8\x9a\x55\x82\x93\x01\x00\x00\x50\x07\xd7\xf1\x3c\xa3\xa5\x84\xe2\x6a\xc5\x19\xe9\x4f\x70\xa2\xfc\x71\x44\xea\x47\x7b\xe7\x88\xeb\x98\x57\x47\x17\x29\xce\xd1\x3d\x1f\x8a\x66\x7c\x62\x98\xa6\x24\xb7\x44\xba\x4d\x50\xac\x34\xfb\xaa\x3a\x32\x83\x09\x71\x73\x47\xa4\xca\x5a\x90\x2a\x9f\xe7\xc5\xf2\x4d\x80\x94\xdd\xae\x26\xb2\xab\xac\xf6\x35\x88\xb2\x7c\x19\xa3\x37\xea\x42\x2a\x53\x61\x89\x9b\x82\x4d\x5e\x87\x68\x36\x9f\xe2\xed\x68\x60\x26\xed\x0c\x74\x3b\x91\xee\xa9\xf4\xd3\xa5\x81\x5f\xac\xfb\x28\xa6\x74\x8c\x82\x4c\xda\x51\xb9\x9d\xfd\xc2\x56\x65\x4b\x72\x05\xc4\xda\x54\x16\xa8\x8a\x2f\x64\x3d\x37\xa7\x47\xdb\x69\xea\xfb\x68\x32\xb6\x56\x7d\xda\x7d\x6a\x8a\x66\x50\xd5\xed\xfb\xd8\x54\x2b\x70\x74\x7f\x42\x08\xd9\x8a\x79\xaf\xaa\x17\xfd\xfc\xdf\x9b\x53\x64\x3f\xf8\xbe\x75\x79\xd5\x71\x92\x1b\xba\x96\x1d\x52\x51\xe3\x34\x4b\x6d\x7a\xb5\x29\x05\xad\x1e\xb0\xb2\x22\x41\x4f\x55\x5c\x09\x49\x7a\x76\x52\x86\xc1\xf3\xa7\x4d\xfa\xb2\xd3\xed\xb8\x92\x7c\xb6\x48\xa4\x64\x09\xb9\xf2\x78\x6e\x48\x20\xad\xa6\x76\x48\x08\x69\x06\xc1\xb3\xcc\x96\x4e\x55\x3b\xae\x55\xed\x22\x23\x01\x5a\xf4\x4c\x05\xc3\x47\x36\x44\xeb\xe8\x0f\x38\x0b\xe0\xfc\xfc\xc6\x3f\x1f\x0c\x43\x1f\x05\x68\x76\x3e\x3a\x1f\x89\xc4\xf3\x1b\x3f\x38\xbf\xf1\xd1\xdf\xd0\x4c\x64\x18\x0e\xc2\xc7\x08\xce\x82\x00\x9e\x2f\x7c\x84\x66\x70\xf8\x18\x7d\x33\xc2\x19\x19\xfd\xb1\x88\x78\x14\x0c\xfd\x73\x3c\xf4\xbf\x19\xd5\xdc\xc8\x37\x03\xe3\xe6\x4e\x3c\xdc\x7b\x65\x67\x10\xf0\xf9\x24\xc4\xd1\x96\xaf\x03\x3e\x3f\x08\xf1\x3a\x2b\x78\xc0\xe7\x87\x21\xde\x64\xb9\x78\x7a\x12\xe2\x4d\x24\xbf\x3e\x0d\xcb\xa0\xee\xf5\x2b\xea\x8c\x0f\x65\x2d\x18\x20\xf7\x89\x79\xf3\x41\x00\x64\x00\x28\x30\x1a\x01\x4c\x87\xa2\x45\x93\x43\x3c\xfb\x32\x76\x17\x1d\x8a\xf6\x4d\xba\x78\x16\x69\xa2\x27\x2a\x0d\x04\xc0\x57\xef\x32\x3d\xaa\xea\x90\xf6\x0c\x98\x97\x75\xdd\x13\x3d\x7c\x9c\x93\x44\x2b\x03\x2a\x91\x41\x3f\x57\x05\x6c\xe4\x05\x4e\x54\x8a\x0d\x1a\x9b\x09\x30\xea\xba\xa4\xe3\x8a\x53\xa8\xa8\xe6\xd1\xf9\xc8\x1f\x21\xcd\xea\x8d\x2b\xc4\x75\x2b\x10\xd7\xed\x60\x80\xc0\x50\xe0\x02\x30\x23\xf1\x7c\x1b\xa2\x59\x6c\x48\xaa\x2d\x9e\xa0\x00\x0c\xe5\xd7\x6c\x96\xfa\x7e\x90\x4a\xdf\xcf\x40\x25\xc0\x2a\xa3\x3f\xc1\x92\x9f\x39\x46\x81\x93\x8a\x0f\x10\x4e\x07\x03\xeb\xd3\x5f\x96\x83\x9c\xc4\x9a\x52\x1b\x01\x84\xa4\xf0\xa5\x98\x81\x11\x08\x64\x00\xb3\x7c\x06\xd5\xe0\x08\xc7\x11\xcc\xc5\xa1\x2d\x9b\x4e\x19\x65\x3d\x2a\xc8\x83\x2c\x23\xdf\x55\x08\x5f\x50\xb9\x1e\x4b\xc4\x2c\x38\x73\x29\xf3\xe7\x95\x61\x09\xc2\xcc\xf3\xfa\x4c\x2f\xb9\x55\x4e\x55\xa6\xb1\x32\x4d\x80\x60\xf5\x11\x47\x90\x29\xf3\x9d\xdd\x8e\xeb\xfd\x99\x55\x76\x27\xba\xfe\x7e\xae\x77\x44\x63\xc5\x54\xb2\x1e\x90\x0e\x8f\x22\x2d\x5b\x08\x37\x06\xd2\x63\x34\xe3\x81\xa0\xe6\xac\xd9\xcd\xf9\xc8\xff\x46\x1a\xdc\xf8\x60\x04\x7c\x27\x12\x9a\x9d\xa0\x58\x4f\x50\x5c\x32\x6b\xd1\x43\x12\x2c\x5f\x0c\xb3\x9c\x44\x98\x55\x4e\x0e\x49\x81\x99\xc2\x8c\x63\xec\xee\x97\x0e\x7f\xcb\xaa\x7f\xb4\xea\xdf\x6e\x97\x9b\x90\x3d\xa5\xf4\x4a\xad\x58\xb4\x0d\xec\xad\xb9\x34\x6e\xb8\xba\xd1\xf9\x48\x8d\xa8\xa6\xc9\x39\x16\x74\x80\xe5\x53\x53\x31\x5a\x34\xad\x44\x7b\xb5\x38\x64\x23\x25\x08\xca\x8f\xc6\xb5\xa9\x97\x41\xf1\x94\xf1\xf7\x18\xe7\x08\x55\x91\xb5\xe7\x7f\x9c\x8f\x42\x3f\x38\x1f\x09\x50\xf5\xf8\x9b\x91\xb3\x64\xbe\xcf\x6c\x6c\x25\x49\xdf\x31\x7f\x62\x83\xe7\x0d\x47\x00\xf9\xbc\xe2\x5a\x98\x40\x5d\x1a\x16\xa6\xa4\x0f\xc1\xc5\x85\xc4\x92\x2e\x2e\x40\x62\x99\xd0\x35\xd5\x84\xa9\xe3\xf9\xd0\x51\xdf\xae\xf9\x21\x54\x07\xdc\xec\xbe\xfe\x64\x5a\x27\x2f\xa5\x41\xea\xd1\x77\xd5\xe7\x64\x09\xbf\x7b\xda\x6f\xdc\xc1\x7c\x30\x41\xbb\x5d\x57\xfa\x01\xda\xed\x26\x93\x49\xfb\xc3\xa1\xfc\xf0\xac\xfd\xe1\xc9\xbe\x12\x4f\xe5\x87\x27\xed\x0f\xcf\xe4\x87\x83\xf6\x87\xe7\x7b\x3a\xf5\xed\x9e\xf4\xef\x50\x35\xce\x6a\x87\xf0\xc1\x64\x3c\x65\x02\x54\xb1\xc1\x00\x89\xeb\xad\xd5\x6b\xe6\x14\xd4\x0f\xe3\x6a\x96\x97\x75\x09\x85\x38\x75\xb3\xb1\x75\x08\x35\x9b\x98\x47\x3e\x1b\x4c\x02\x7a\xcc\x67\x93\x60\x30\x29\x99\x4b\x72\x90\x74\xb6\xed\x0a\x6e\xb5\x91\x01\xb1\xbe\x01\x3e\x0d\xa8\x38\x14\x35\xd4\xfd\xc1\x42\x66\xbf\x4e\x90\x2a\xb9\x5f\x23\x73\x0f\x6b\x74\x69\x99\xe9\x95\xe0\xdf\xfa\x02\x17\x88\xef\x6e\x27\x7e\x60\x4e\xea\x1c\xa2\x41\x43\xd7\xa1\x23\x9b\xb5\x08\xa9\x27\x20\x29\x46\xb5\xb9\x1f\x30\x20\xb1\xf9\xdb\x99\x9b\x76\x2a\xb2\x0f\xb3\x3c\x58\x6a\xff\x5b\x58\x0b\xaa\x6a\x73\xb2\x5f\xcd\x75\xcf\xe4\x7c\xa6\xc1\x7d\xf3\xf4\x25\x43\xaa\xa6\xa0\x6b\x05\xba\xa6\xf3\x9f\x9c\xf5\xaf\x9f\x1c\x23\x16\xdd\xe3\xfb\xef\x8b\xa7\xc6\x0c\x95\x7d\xcd\x6a\xb3\x07\xe7\x85\x7d\xd9\xbc\xb0\x2f\x99\x17\xd6\x39\x2f\x1d\x2e\x5b\xbb\xa2\x09\x48\x31\x92\xcc\xeb\xde\xb9\x7f\x9c\xa3\xb0\x7c\x34\xff\xe3\x9c\x85\x8f\xcf\x99\xbc\xab\xec\x64\xbb\xfa\xfc\x9d\xb8\xb8\x8c\x46\x05\xb0\xb8\xfc\xc0\x08\x08\x18\x35\xaf\xb8\x84\xa1\xe7\xa9\x44\x3e\x1f\x87\xe2\x7a\x14\xb8\xa5\xc0\x31\x09\xf5\x39\xaa\x76\x6e\xa2\xf1\x8c\x7e\xde\xd6\x1f\x70\xcd\x04\x7a\x71\xb6\x4d\x17\x3a\x26\x7d\x4f\x0e\x64\xa1\x2f\x47\x85\x7a\xdc\x1b\x1f\xb5\xe2\xad\x7d\x8b\x66\x52\x4b\xc1\x60\x12\x3a\x97\xba\xee\x04\x5d\x36\xc6\x99\x3f\x41\xa8\xe4\x24\x86\x91\x54\x8e\x74\x1c\xe6\x70\xeb\xb7\xbb\x23\x5e\x51\xa7\x00\x4e\x0a\xbb\xd2\xe4\xf2\x2b\x24\x64\x5d\x0e\xbf\xba\xaa\x31\x56\x0e\x6e\x2d\xa6\x40\x9d\x14\x6b\x96\x66\x32\x28\x93\x93\x43\x91\x6a\xfb\xea\x0f\x9e\x3f\xc1\x0f\x8d\x42\x53\x73\xcd\x06\x82\xe7\xcf\xc4\x4c\xed\x0d\xde\x32\xfa\xe3\x7c\x21\x28\x21\x13\x54\xaa\xbd\x57\x65\x48\x5e\x1d\x8d\x03\x83\x0e\x27\x53\x9a\x01\x53\x56\x34\x0d\xcf\x93\x2b\x88\x2c\xfa\x5f\xf8\x23\xd4\xc5\xc6\xd7\x3b\x57\x9e\x75\xb3\x61\x2a\x44\xca\xf1\xd3\x8e\x93\xfa\x66\xc6\x11\x91\xbd\x7d\xcd\x38\xcc\xf0\x64\x8c\x70\xa1\x12\x5e\xa5\x59\xc4\x61\xa6\x8c\xc4\x6f\x04\x2e\x98\x78\x9e\xc6\x1b\x33\x84\xf8\xf0\x26\x59\xf0\x35\x89\x2a\x3f\x41\xeb\x8e\x4c\x6b\x2a\x39\xa0\x91\x65\x9f\x83\x5b\x71\x74\x92\xdd\xee\x54\xaa\x32\x0d\x93\xe2\x34\x3a\x85\xc5\x03\x3a\x36\x45\x1e\x17\x94\xf7\x16\xb4\x88\xf3\x64\xc3\xb3\x3c\xe8\x81\x61\x9c\xb1\x38\x52\x1e\x9c\xf9\x70\x41\x59\x91\xf0\x3b\x52\x94\x32\x48\x51\x8f\x0b\xb4\x99\x28\xc7\xdd\x25\x42\x48\x85\x0e\x40\xc3\x65\x92\x72\x9a\x37\xa7\xad\x5b\x1a\x4d\x51\x9f\x90\xa6\x84\x5a\x46\x9e\x97\xee\xbd\xe4\x42\x09\x78\x52\x05\x08\xeb\x00\x4d\x85\x94\xec\x7c\xa0\x1c\xee\xd1\xa6\xd8\xe3\xa5\x59\x40\x85\xa4\xb0\x14\x3c\x30\xd1\x9f\xe6\x32\x7f\x58\xed\x0e\xb9\x06\x36\xf8\x19\xa8\xe6\x45\x7d\xc1\xe0\x06\x48\xdd\x74\xb5\x0c\x9d\x19\xd5\x27\x0c\xd6\x2a\xa7\x9e\xcb\xce\xac\xfa\x1b\x06\xb7\x40\xca\xe5\x14\x86\xdd\x03\x62\x46\x6c\x68\x65\x2c\xde\x15\x50\xf9\x76\x6f\x50\x1b\x0a\x81\x89\xd7\xd9\xb4\x01\x71\x19\x09\x9a\x85\x2c\x91\xf3\x38\x4b\x1d\x57\xe0\x45\x1a\x15\x6b\x5a\x38\x29\x82\x98\x77\x5e\x25\x99\x56\xbd\x0a\xd2\xbd\xf1\xd5\x4a\xbd\x75\x52\x54\xb8\xe5\x75\x18\x98\x2a\xe1\xd3\x96\xe6\x77\x6e\x8d\x11\x5f\x37\xaa\x90\x00\xd8\xa9\x31\xa7\x4a\x0a\x5d\x1a\x88\x70\xad\x62\x00\x65\x69\x8b\xd8\xd2\x2b\x7a\x0d\x29\xee\x4f\x70\x7f\x8c\x4c\x3e\x01\xa2\xab\x52\x8a\x36\xd9\xa3\xb0\x33\x6b\x97\x56\xf9\x21\x17\xa4\xb7\x40\x6a\x05\xf5\xd8\x79\x89\x66\xc3\xa4\xb0\x3c\x79\x15\x73\x51\x06\x3d\xa0\x52\xbf\x2f\x62\xb1\x0c\xf7\x39\xa3\xba\x0a\x88\x82\xc4\xe1\x2c\xab\x44\x1b\x52\x10\xb3\xe1\x2f\x79\x4a\x12\x6d\xaa\x20\x88\xb7\x68\xf0\xe7\x78\xf0\xdd\xd0\x1f\x84\x7e\x80\x46\x09\x2e\xc8\x28\x98\x8f\x07\xdf\x85\x8f\xbf\x19\xe1\x54\x64\x39\x1f\x9d\x8f\x66\x70\xd6\x3f\x1f\xa1\xf9\x1f\xe7\xb3\xf3\x22\x7c\x8c\xe0\xf9\x6c\xfe\x87\x7c\x9a\x7d\x33\xc2\x5b\x32\x07\xf7\x00\x83\x12\x60\xb0\x03\x18\x9c\x9f\x03\x0c\xfe\x00\x18\xfc\xff\x40\x68\x36\xe9\x1c\x1c\x01\x0c\x8e\x01\x7e\x04\x1e\x89\x0f\x18\xf4\x44\xce\x5c\xfc\x61\xe2\x0f\x07\x21\xc2\x1b\x32\x07\x8f\xaa\x42\x5b\x84\x97\x64\x0e\xfe\x0a\x30\x18\x01\x0c\x66\x00\x83\x29\xc0\xe0\x2f\x55\x8e\x0d\xc2\x0b\x32\xb7\x5f\xff\x02\x42\xbc\x26\xa3\x3f\xe6\xbe\x1a\xd7\xc9\xe0\x3f\x2e\x06\xe1\xfd\x18\x3f\x3b\x2c\xbf\x19\xe1\x4b\x39\xe4\x8e\x6f\x48\x73\xcf\xae\xc8\xfd\xdf\xa3\xeb\x48\x01\xb4\xa0\x3f\xc6\xc0\x79\x05\x41\x7f\x5c\xe2\xb7\x9f\xcf\xb2\x22\xf7\x6b\xce\x37\xe2\xa3\xf8\x2d\xc4\xc3\x52\xbd\xaf\xb2\xcd\x9a\xe6\x32\x21\x51\xee\xad\x81\xcc\x0a\xec\x63\xa1\x9f\x97\x36\x55\x97\xd1\xc9\xa2\x98\x6a\x46\x86\x3e\x94\xbb\x5f\x0b\x9b\x9c\x23\x7a\xed\x60\x4d\xd4\xf3\xc4\x2e\xd2\x5b\x4e\xec\xa2\xfa\xe6\xa9\x98\x5e\x95\x46\x88\x8d\x02\x94\x1b\x0c\x4e\x56\x87\xf3\xd2\xdd\x5e\xcd\xeb\xd4\x36\xd9\xaf\x6d\xdb\x6e\xf9\xeb\xcf\x51\x1e\x5d\x51\x4e\xf3\xde\xa3\x6d\x9e\x3e\xb2\x8e\xb2\x22\x2b\x82\x65\x52\xb4\x1a\xdb\x70\x00\x09\xa1\x95\x77\x91\x99\x0c\xaa\x21\xcd\x85\x13\xcf\x4b\x8e\x9c\x4f\x7f\x01\x68\x06\x66\x20\x00\x7f\x01\x92\xc1\xae\xee\xe8\x02\x4d\xb7\xf3\x71\x48\xc4\x1f\x87\x5f\x72\x3e\x5a\x61\x89\xae\x89\x16\xae\x09\x25\x5b\x05\x2f\x0b\x79\xc1\x5e\x93\x6b\x7d\xd3\xe3\x3e\xf3\xbc\x89\x52\x2a\x50\x88\xc2\x5f\x00\xaa\xf9\xbd\x3a\x21\xe9\x90\xde\xd2\x18\x5e\xcb\xa2\x27\x35\x97\x29\x12\x04\x5d\x3b\xf0\xe7\xba\x01\xad\x4e\xe6\x93\x10\x9f\xcc\x0f\x42\x6d\xb1\xa1\xe1\x9c\x48\x71\xe1\x1c\x9f\xdd\xe9\x15\x71\x72\x19\x26\xca\x04\x69\x81\x61\x47\xb2\x31\x92\xd0\xf5\x02\xe0\xd6\x6a\x8c\xf1\xa4\x1a\xfa\x05\x89\xdc\x71\x5c\xa8\xd1\xdd\x10\x78\x41\x2e\xe6\xe3\xb0\x11\x40\x7a\x5a\xbf\x09\x6e\xb0\x98\x32\xdd\xf0\x85\x99\x9f\x52\xb1\xf5\x2e\x76\xbb\x6b\xcb\x38\x12\x70\x65\xfe\xc7\xdf\xce\x47\xa1\xff\x37\xfd\x3b\xd2\x0a\x3d\x7f\x4a\xa6\x30\x21\x55\x4d\x63\x7c\x80\xa6\xfd\x3f\x77\xbb\x0b\xcf\x7b\x3b\xbf\x08\x77\x3b\xe8\xb4\x73\x80\xea\x97\x4f\x7f\x2c\x5b\xec\x8b\x9c\x9e\x07\x55\xb1\xfe\x6a\x7e\x11\xa2\x4a\x50\xf9\x0e\x9f\xe1\x5b\x32\x98\xe0\x53\x32\x9e\x9e\x1e\x59\x9d\xdb\x53\xdf\x47\x72\x5b\xc1\x37\xe4\xda\x6e\xaa\xc5\xfc\x34\x94\x9c\x54\x19\xe9\xee\x76\xb7\x7b\x73\x74\x2b\x5e\x6f\xc9\x1b\xc5\x6b\x53\x45\xce\x88\xfa\x3e\xbb\xae\xd3\x03\x7f\x03\x28\x68\x25\xe1\x5b\x59\xe3\x3b\x31\x10\x8d\x10\x9e\x21\x35\x7f\xf2\xf5\xcc\x37\xc6\x89\xf2\x0e\xed\x08\x84\xfc\x0e\x21\x77\x0c\x4b\x77\x0c\x72\x26\xdf\x4c\xdb\x43\x59\x3e\x30\x94\x52\xa5\xc9\xb7\x6b\xb3\x7a\xce\xc5\x5d\xf5\xf4\xd6\xed\xe9\x2d\x32\xbb\x39\x2f\xe8\x4f\x59\xc1\x21\x6a\xdc\xe7\xb5\x37\xa9\xda\x24\xba\xf7\x92\x80\xb9\xe4\xd1\xba\x5f\x25\xf5\x06\xc2\x76\x7a\xed\xcd\x11\xc6\x8b\xa5\x7e\x69\x15\x47\x3e\xd4\x4b\x59\x0c\x7d\x38\x42\xf8\x05\x81\xa7\x64\x8c\x3f\x98\x91\x4d\x4f\x8f\x5e\x54\x93\xf5\x91\x7c\x98\x9f\xca\xea\x3e\x7a\x5e\xff\xa3\xde\xa9\x6b\x67\xcf\x7c\x12\xe7\xe6\x37\x32\xc6\x3f\x90\x8f\x66\xae\x7f\x3b\xfa\x61\xfa\x9b\xef\xa3\x8f\x2e\xbb\xec\x37\x74\x3c\x39\x78\x3e\xfb\xe4\x13\x70\x0b\x82\x4f\x3e\xf9\x38\xff\x4d\x75\xf4\x93\x53\xad\xa8\xf2\x7b\xf2\xc1\xce\xe9\x29\xc2\x3f\xdb\xd7\x53\xb1\xfa\xbf\x13\xd3\x8d\x4b\x34\xfd\xdd\xf3\xe0\xf7\x0a\xfb\xfb\x7d\x3e\x09\x11\xfe\xd9\xaa\x99\xfc\x3e\x3f\x08\x91\x48\xb0\x6a\x5c\xd7\x82\xf8\xf5\x7f\x36\xdc\x56\x80\xfc\xeb\xe6\x9a\x7c\x5f\x7d\x54\x4e\xf1\xcb\xb2\xec\x9a\xe3\xe3\x83\xa7\x4f\x67\xf5\xa2\x00\x04\x0f\xac\x6f\x1d\x42\xe0\x97\xc6\xda\xcc\xe6\xce\x87\x3a\x3e\x7e\x3d\x5d\xc3\xf9\xbf\x13\x8b\x1a\x0a\x28\xee\xdb\xb7\x00\x00\xfc\xbe\x63\x2b\x55\xfb\xf3\xbd\xff\xf7\x0a\xc6\xfa\x55\x56\xfc\xd2\xc0\xbf\x3d\x3d\x36\xa0\x12\x77\x6e\xb2\x03\x84\x15\x6b\xe1\x5a\xb1\x16\xd4\xe4\x5e\x23\x05\x66\xae\xe6\x37\xa1\xdc\x7e\x62\x6f\xbd\x20\x1b\x7b\x0a\xdd\xcd\xf5\x9a\x6c\xf4\xe6\x92\x27\xb2\x3a\x8e\xaf\xf5\x46\xf8\xa9\x2b\x36\xf6\x6b\x34\xfd\x89\x10\xf2\xda\xf3\xe0\x4f\x84\x16\x71\xb4\xa1\xa2\x80\x3a\x7a\x72\x63\xbf\xd6\xf8\xfd\x4f\xa8\x94\xd0\xfb\x95\x53\xb5\xb8\xa2\x14\x00\x78\x65\x87\x2f\xb0\x69\x0b\x38\x5f\xb9\x87\x78\x8c\x5f\xe9\x05\xf8\xc5\xad\x63\x66\x22\x7c\xf6\x09\xf9\xa5\x7e\x39\xd9\x7a\x7e\x41\xee\x6d\x52\x25\x4b\x00\x66\x9a\x56\x1f\x6b\xd7\x97\x4c\x42\xf5\x4e\xfc\xf2\x45\xb7\xd5\xb5\xc9\x61\x2f\xd0\x6b\x84\x57\xf3\x1b\xa3\x49\x62\x56\xd0\x38\xae\x33\xd9\x5a\xc5\x14\x8b\xc8\x4d\xd2\x06\xa5\xaa\x69\x74\x6f\x76\xa3\xfd\xaa\x61\xd7\xaf\xc4\xc9\x56\x6d\x43\x79\xd1\xff\xdd\xff\xd5\x55\x41\x52\x37\xbe\x7c\x32\x68\xba\x56\xda\x69\x23\xeb\x6d\xb5\x12\x7b\x03\xc8\x46\x94\xe0\x07\xd2\xae\xdd\x42\x11\xaa\x30\x9b\xbf\x1e\x9e\x8c\x12\x2c\xa5\xac\xd4\x27\xe2\x06\x9a\x3a\x5e\x3e\xcd\x85\x2d\xf9\x69\xac\x3d\x44\xa3\xc3\x25\xf6\x8b\x7c\x4f\x48\x7f\x82\x23\xe2\x9e\xb6\x59\x42\xa8\x6f\xdf\x82\xc6\xbc\x43\xf1\x55\xdd\x31\xf5\x33\x65\x77\x56\x00\x50\x1d\xac\x04\x60\x0e\xfc\x5a\x8a\x0f\x42\xbb\x3c\x4a\xe8\x9b\x28\xa1\xaf\x4d\x42\xee\xd6\xab\x61\xba\xce\x0e\xf3\xbc\x96\xc6\x90\xfa\x50\xc1\xcb\x88\xdc\x35\x75\xde\xf5\xee\x9c\x3a\x71\x12\xcc\x6a\x47\x9e\x07\x66\xc0\x8f\x94\x92\xae\x5e\x69\xcf\x03\x81\xe4\x3f\x9a\xfd\x3f\x98\x20\x2b\xa6\xae\xa3\x28\xbb\x1d\xec\xf3\xdd\x6e\x35\xe7\x21\xf2\xbc\xbe\xc4\x62\x67\x30\x91\x78\x8f\x0f\x13\xa9\xc8\x8c\x99\x61\x68\xb2\x4a\x44\x28\xad\x4f\x04\xf0\x61\x08\x05\xc9\x6e\x27\xca\x00\x84\x73\xcf\x03\x7f\x01\x4a\x19\xc7\xc9\x9a\x13\xf0\x17\xe0\xe7\x08\x17\xb2\xbf\x7d\x42\x8a\xda\xf7\x82\x88\x51\x14\x08\x73\x3f\xf1\x21\x73\x94\xcf\x46\xf3\xd9\x5f\xc2\xd1\xaa\x33\xfc\x7e\xe7\xce\x2b\x11\x42\x3e\x2c\x48\x61\xab\x10\xe8\x37\xf8\xeb\xc1\x21\x40\xc8\xcf\xeb\x5b\xbd\x4d\x6b\xd7\x7d\x34\xd5\xa9\xe4\x8a\x7c\x46\xf6\xfc\x74\xd6\xd7\xa2\xc2\x25\x31\x52\xa7\x45\x4c\x60\x16\x65\xd7\x6a\xa9\x1b\x55\x3f\xa6\x84\x97\xf5\x08\xeb\x09\x6e\xab\x9b\x21\xed\xc3\x26\x6f\xf9\xb0\x29\x48\x3e\x8f\xc2\x29\x9b\x17\xa1\xdc\x30\xf3\x42\x3a\x40\x64\x0a\xee\x4a\xbb\x99\xb5\x92\xa5\x53\x09\x14\xac\xce\x88\x66\x4a\x54\xf0\x81\x49\x97\xbb\x66\xbf\x78\x5e\x9f\xda\x33\x5b\xe1\x23\x71\xad\x6b\x54\xaa\x07\x4c\xd3\x23\xeb\x80\x3e\x35\xfd\xda\x92\x78\x9e\x86\x53\x60\xaa\x10\x5b\x61\x2b\xf6\xd2\x7c\x1b\x12\x3a\xdf\x86\x96\xf7\xbc\x9a\x33\xdb\x50\xe8\x79\xcc\x85\xa4\xcc\x05\xa3\x4c\xb3\x55\x1a\xa0\xb4\x63\x24\xa5\x1c\x89\xa9\xd4\xf3\xaa\x67\xb9\xb7\xab\x61\x89\xcb\x74\x35\xaf\x3e\x87\xd5\x48\x37\xcd\x91\x2e\xc9\x78\xba\x3c\xb2\x77\xed\xd2\x8c\x74\x41\x36\xf3\xa5\x58\x81\x85\x18\xd8\xc2\x06\xb8\xd8\xd3\xaf\xaa\x79\x52\xb5\xab\xd5\x4e\x76\xbb\xb7\xb5\xce\x38\x43\xa5\xf6\xb1\xf2\x7c\x2e\x5a\x5f\x13\x48\x6b\x70\xd4\x70\x88\x25\x89\xb9\xb6\xe0\xa6\x0f\x55\x13\x64\x3d\x54\x08\x1c\x42\x53\x34\x35\xcd\x9a\x8f\xc0\x6a\xc0\xa8\xea\x20\x75\x31\x30\x84\xa5\x82\xef\x5a\xa2\x24\x6b\x8b\x0a\x8a\x0f\xa6\xa1\xa3\x83\xe6\x17\x67\x0c\xeb\x4a\x45\x44\xcd\x84\xbe\x6c\xa9\x7e\xc0\x4c\xdf\xb7\x54\xfd\x62\xb5\x17\x88\xe9\xa5\xb8\x38\x14\x65\xa2\x34\x76\x70\xb5\x57\x88\xdb\x6b\xf5\x2c\x5a\xce\x72\x51\x5a\xfc\x38\xfd\xd8\xed\x98\xbd\x6b\x55\x9c\x04\x56\xbf\x89\xae\x08\x73\x6f\x59\xbd\xef\x2e\xfd\xab\x6a\x69\x2d\xd7\xb1\x82\xaf\xf6\xe8\x74\xee\x48\xd1\xd0\x1d\x71\xf7\xb3\x52\xc6\xa8\x52\x2a\x38\x89\xaf\xed\x90\x69\xab\x00\xed\x2a\x70\x42\xae\x77\xbb\x3b\x31\x30\xa5\xab\x52\x65\xc2\x17\xe4\x04\xdf\xd4\x1a\x76\x9a\xac\xb6\xca\x6e\x37\x0f\xf1\x9f\x04\xae\x89\xdb\x24\xdd\x9b\x95\x39\xc7\xab\x5f\x3b\xc2\x12\x79\xfb\x53\x9e\x57\x67\xef\x98\xd5\x50\x8e\xf5\x8c\x92\x95\x04\x4c\x37\xf3\x71\x38\x13\x7f\x88\x4a\x0f\x6e\xec\x06\x52\x09\xd2\x1f\x8a\xde\x9f\xd8\x3d\xd7\xee\xf6\x94\x15\x53\xa7\x11\x5a\x6b\x44\x6c\xda\x99\xf8\xa3\xa7\x36\xa8\x76\x29\x35\x8d\xd0\x8a\x57\x2c\xa6\xf4\xc4\x2d\x2b\x76\x82\xee\xab\x40\x1f\x51\x6b\x6b\x2a\x08\x2b\x90\x14\xdd\x00\x33\xbb\xb0\x73\x8f\x3a\x05\x64\xf4\xaa\xea\x31\xa8\x4a\xe0\xcf\x1f\x91\x1b\xb2\xae\x0c\x6c\x0d\x95\x79\xb3\xdb\xc1\x1b\x32\x0f\x11\xbe\x19\x6e\xb2\x0d\x44\xf8\x86\xdc\x18\x0e\xe6\x1a\x7d\xbe\x5a\x5b\xa5\xe4\xab\x9d\x6e\xd3\xf4\x5d\xfe\x0b\x53\xde\x41\x17\xd0\x94\xb2\x8a\x37\x8d\xd5\xd6\x73\x73\x63\x20\x0d\x86\x6f\x48\xbf\x0f\xcd\xaa\xab\xdf\x0a\x2b\xfb\x1b\x40\xc7\x02\x39\xd0\xe9\x7a\xa3\xfd\x4d\xe9\x91\xe9\x03\xff\xc6\xd6\xa5\x2b\x77\x9a\xb3\xdf\xd0\x17\x8c\x0c\x9b\x01\xc1\xea\x18\x20\x85\xc5\xe9\x54\x3d\xb6\xdd\xce\x5c\x38\x4e\xce\x59\xf5\x18\x00\x80\x7c\x9b\x7d\x66\x1e\x44\x72\xe7\x9d\x24\x69\xf1\x9b\xa6\xe6\x66\x43\x78\xe0\x54\x27\x9b\x96\x78\x97\xa9\x99\x39\x62\x85\xae\x06\x2c\x9f\x49\xcc\xbc\xa4\x6d\x06\x13\x34\x1f\x87\xf8\x8c\xe8\xb9\x37\xa0\x71\xb7\xbb\xb1\x51\x23\xc4\x24\x2b\x5d\xc1\x77\xbb\x9d\xd6\x0b\x7c\x87\xf4\x06\x7d\x87\x6f\xc9\x18\x9f\x92\x1b\x4b\x61\x1e\x93\xf1\xf4\xb4\x52\x2f\x7c\x47\x6e\xe6\xa7\x21\x9a\xdd\x18\xfd\xc0\x53\x47\xbd\xf0\xdd\x0c\xd6\xd2\xf1\xad\xef\xa3\xe0\xd6\xf3\x9a\xc9\x83\x81\x92\x8f\x9f\x78\x5e\xff\x42\x12\xb6\xd3\xdb\xc1\x60\x7a\x8b\x2a\x48\x20\xaa\x44\xd3\xfe\x89\x73\x0e\x77\xbb\x1b\xc5\xb9\x19\x99\x14\x57\xb1\xed\xa6\x76\x0b\x9d\x19\xcc\xf6\xa6\xba\x83\x6a\x48\xf3\x8d\x11\x72\x29\xec\xfb\x0d\x7e\x49\xbe\xa8\xa1\xe9\x83\x47\xe0\xe5\x0c\x80\xc0\x4c\xde\xcc\x1e\x88\x00\x80\xff\xc1\x33\x01\x4f\xc8\x49\x75\x35\xd8\x2d\xe8\x79\xfd\x97\xe2\xd5\x9d\x26\xdb\x55\x67\x63\x3a\x33\x16\xc0\xf6\x86\xb5\x7b\x12\xfd\x4f\x1d\x2d\x07\x03\x90\xda\xfc\x0a\x13\xf8\xea\x1b\x19\xb7\x04\x0b\x3f\x89\x49\xec\xa6\x86\x25\x28\xe7\xa4\x50\x7c\x6a\x8a\xa6\xf2\x62\x91\xc4\x17\xe4\x52\xff\x03\x59\x42\x5f\xdc\x40\xdc\x61\x85\x4b\x7d\x49\xc7\x9e\x52\xb3\x78\x8c\xff\x7b\x91\xa1\xc5\x2b\xa2\x52\x72\x6a\x15\xc9\xbf\x9d\x60\x23\x25\x0d\x9e\x3d\xc1\x8e\x0c\x26\x78\xf6\xbc\x0c\xf1\xb7\x93\xb6\x7c\x95\x0f\xe9\xad\xe8\x4b\x41\xee\x0d\x39\xd2\xa1\xb9\xd6\x11\x27\xb9\xc4\x86\xa2\xed\xca\xaf\xfc\x7a\x88\xfc\xb1\x14\xed\x68\x9b\x0c\x59\x4a\x2c\x73\x97\x76\x9c\xd1\xcb\x33\x79\x9c\xcb\x64\x7f\x76\x5a\x1a\xe1\xf1\xc1\x43\x83\xeb\x74\x44\x7d\x5f\x6a\x47\xd4\x4d\x95\x79\xd7\x1d\xac\xfd\x36\xe7\x95\x1f\xd2\xac\x97\xb0\x1e\x43\xb9\x12\x61\x32\x9c\x49\x19\xe8\x3c\x0b\x09\x9b\x67\x15\xd1\x42\xcb\xba\x61\xd0\x3e\x47\x05\x7a\x04\x87\x0f\x88\xbf\xd7\xfc\x2a\x95\xdb\x2f\x3f\x30\x12\xf0\x5b\x4e\xd9\xc2\x38\x41\x4c\xb3\x45\x54\xac\x87\x8a\x17\x97\xd3\x15\xbd\xdd\xc8\x88\xd4\xd5\xa7\x38\xcd\x18\x5d\x50\xba\x31\x91\xf0\x75\xfa\x15\xcd\x57\xf4\x26\xe1\x6b\x80\x70\xec\xa4\x27\x85\x91\xdf\xe1\xb4\x96\xbc\x49\xa3\x84\xe9\x05\x46\x78\x2b\xbe\x29\x9d\x0b\x19\xd9\x9d\x42\xb0\xc9\x0a\x1e\x17\x05\x10\xd4\x10\x85\x60\x9b\xd7\xc4\xf4\xda\x34\x96\xd6\x99\x1f\xb4\x4b\x4d\x45\x2c\xa1\x8c\x90\x83\x99\xf4\x6b\x6c\xeb\x58\xbb\x92\xec\xfb\xb2\xd3\xef\x03\xad\x45\xd7\xbf\x74\x35\xe1\xe6\x56\x25\x42\x74\xa6\x6e\xdd\xaa\xb6\xab\x35\x1c\x95\x0e\xf0\xaa\x7d\xf4\x56\x2e\xe8\x15\x19\xfd\x31\xff\xe3\x7c\x7c\xce\xcf\xd9\xf9\xf2\x3c\xef\x8d\x8e\xc8\x71\x58\xb3\x6a\x78\xeb\xae\xe0\x9d\x40\x49\xaf\x09\x70\x8c\xf9\x4f\x9a\xc6\x7d\x8a\x7f\xc5\xa3\x15\xd1\xb6\xf9\x11\xe7\x79\x72\x59\x10\xbe\xdb\x19\x3b\x7e\x1e\xad\x8c\xaa\x1f\xb9\x33\x51\xbb\xd4\x17\x7a\xcb\x2d\x3b\x72\xbb\x59\x44\x9c\xfe\x1c\xe5\x94\xf1\xd3\x6c\x41\xcf\xc4\x47\xe7\x04\xbc\xa9\xd8\x4b\x6f\xe6\x6f\x2a\x89\x85\xac\xc5\x27\x4c\xfe\xa2\xb2\xe4\x33\xc8\x49\x06\xdf\x0e\x75\x50\xda\x02\x73\x84\x14\x10\xcc\x67\x9a\x47\x91\x93\x0c\xae\xb0\x79\x41\x81\x4d\x5e\x05\x90\x93\xaa\x28\xb2\xe9\x72\x06\x2f\xf0\x0d\xfe\x93\xf0\x21\xcb\x98\xe8\xdd\x59\xb4\x2a\x76\xbb\x39\x50\xf2\x6a\x80\x41\xc1\xef\x52\x0a\x30\x10\x3d\x89\x72\x1a\x81\x70\xca\x87\x51\x9a\x66\x37\x74\x71\x22\x27\x66\xcb\x69\xe1\x79\xf0\x42\x9c\xe2\x1b\xf1\x67\x01\x3b\x72\x34\xbd\xa7\x5f\xcc\x79\x48\x74\xd0\x53\xb9\x0f\xf6\x18\x39\x2b\xa8\xe5\x30\x05\x1f\x03\x74\x4c\xc6\x33\xbd\x31\x12\xb1\x5f\x1d\x61\xed\xf9\xe3\xd1\x0a\x83\xe1\x63\x80\x50\x20\x9a\x70\xb7\xcf\x8d\x68\x92\xd1\x9b\xde\x7b\xba\x7a\x79\xbb\x81\xe0\x0f\x28\xd0\x35\x75\x5d\xee\x00\xf2\x01\xfa\x46\xa9\xc4\x4c\x15\x5e\x76\x5f\x4e\x9d\xb1\xbc\x50\x01\x95\x5b\x03\xf1\x3c\xb8\x86\x17\x98\x8b\x7b\x52\x8f\x0a\xe1\xaa\x6d\x20\x03\x31\x8b\xab\xf0\x9d\xf8\x48\x8d\x12\xd2\x19\xbe\x35\x0d\xf0\x3c\x62\x85\xb8\xea\xc4\xec\x77\xba\x99\x9f\x02\x93\xe8\x42\xfe\x19\x23\xb4\xc3\x92\x54\x79\xa0\x79\x3b\x2c\x64\xd4\xe7\x33\x53\xb9\x54\x0b\x01\x8f\x65\xc6\xd9\x19\x61\xc1\xad\x9c\x0f\xd3\x9f\x53\x32\xc6\x6f\xc8\x3c\xc4\x2f\xc5\x1a\x7e\x10\x7f\x5e\x90\xfe\x04\x7f\x24\x63\xfc\x49\x99\x0f\x0e\xa5\x79\x43\x0e\xef\x33\x96\x6d\x28\xe3\x91\x7b\x43\x69\xc9\xfe\x0b\xf4\xd1\x04\x99\xab\xb4\x05\x4e\xe4\xe7\xe9\x1b\x35\x23\xda\xfe\x22\x53\x2c\xe3\x98\xf4\xfb\xb9\xdc\xe8\x02\xa7\x5c\xc3\x5b\x2c\xf5\x58\x32\x72\x3b\xa7\xa1\x2c\x87\x73\x7b\x04\x19\xc9\xcc\x33\x56\x56\xfc\x7d\x42\x32\x59\x5a\x6a\x52\x26\x8c\xd1\x5c\x9e\x32\x95\x88\x30\x55\x19\xa2\xd5\x69\xdd\x23\x68\x95\x88\x3f\xcc\x4f\xc3\xea\x15\x49\xec\x13\x66\xe4\xec\xa1\xc6\xff\x91\x6a\xab\xad\x24\xd6\xd9\xf3\x14\xeb\xdb\x4d\xab\x4c\x30\x04\x46\x9f\xd3\x78\x9b\x17\xc9\x35\x7d\x29\xef\x12\x65\xab\xb2\x48\x0a\xa7\xc0\xdb\x6c\x41\x3d\xaf\xdf\x69\x67\xab\xec\xd2\xe4\x9c\x4a\x33\xe0\xb6\x7a\x3e\x7c\x29\xf1\xd3\x84\xf4\xc7\xf8\xa5\xe8\x6d\x7f\x8c\xc1\x22\x29\xe2\x28\x5f\xec\x6f\x4d\x0a\x7a\xfe\x74\xba\xea\x79\xf0\x85\x28\xfa\x91\x4c\x90\xa9\x07\xe1\x53\xdf\xc7\x89\xdc\x12\x9f\xab\x52\xf7\x6c\x7a\x4d\xee\xb0\x00\xd0\xe5\x9d\x4f\xc0\x11\xf0\x29\x86\xfd\x8b\xdd\x4e\x1c\x2e\x31\x1f\x17\x73\xf0\x18\x08\xbc\x6d\x01\x99\x73\x48\xc4\x9d\x2f\x5a\xb9\xb2\xca\x8b\xca\x7f\x83\xd8\x58\xd2\x56\xa3\xaa\x43\xf7\xfd\x62\x4e\x43\xdb\xfd\xcc\xd6\x6c\xbf\x8a\x97\xda\xf7\x35\xbc\x91\xa5\x6f\x44\x41\xdd\x8a\x20\x32\x54\x29\xf5\x6b\x5b\x8f\x49\xbf\x0a\xc1\x78\xe1\x79\xa2\x35\xd5\xa5\xb7\x62\x92\x56\x62\xcf\x5f\x13\xb5\x79\xa7\x3c\xbf\xb3\x0b\x76\x82\xff\x94\x5d\x9b\x7f\xb8\xbb\xba\xcc\xd2\xa1\x0a\x2b\x9e\xe5\x21\x44\xd3\x3e\x7c\x4b\xe0\x09\xf9\x73\xc8\xe8\xad\xa0\x12\x86\x8b\x8c\x51\x34\x15\x35\xaa\xba\xcf\xc8\x89\x8a\x9d\x28\x46\x9c\xc2\x33\xe4\x79\x67\xda\x1b\x95\xfa\x25\x84\x64\xe8\x5e\x76\x4e\xe4\xbf\x15\x77\xa0\x98\x9c\x31\x21\xe4\x6c\x78\xb5\x4d\x79\xb2\x49\xb5\x22\xeb\xa9\xc0\xca\x15\x09\xd3\x03\x08\xbf\x91\xfb\x43\xf4\xfb\x43\x57\xbf\x5f\xe0\x8f\xe4\xb4\xbb\xd3\x6f\x08\x7c\x41\x3e\x36\x3a\xfd\xc6\x76\xfa\x13\x79\xa1\x3b\x2d\x67\xfe\x6c\xa8\x5d\xcd\x99\xb9\xff\x84\x0c\x4b\xe7\x76\x76\x4b\x3e\x05\xb7\x3e\x01\x3d\xe0\x7f\x42\x65\x19\x4b\x99\xf7\xcf\xe8\xfe\xa5\xe8\xdc\x07\xf2\x73\xb9\x4c\x58\x94\xa6\x77\xf7\xa2\x6b\x6f\x54\x30\x79\x42\x3e\x0e\xd5\xde\xda\xed\xcc\x13\x44\x36\x67\xb2\x84\x2f\xb5\xea\xd1\x87\x52\x6b\xa0\xb6\xfa\xc0\x90\xd2\xd2\xbe\x25\x0c\x4d\x19\xb9\x2d\x9d\xb6\x57\xa2\xed\xeb\x46\xdb\x6f\x4d\xdb\x7f\xda\xb6\xff\xec\x6c\x7b\xa5\xdb\xbe\x2e\xcb\x32\x59\xc2\x58\xee\x62\x39\x11\x16\x26\x7c\x90\x96\x6f\xc5\xc9\x66\x93\x26\x74\x71\x96\x55\xd7\xa9\xb3\x3f\x3d\xef\x07\x09\xa9\x0c\x93\x42\x2e\x91\x76\xa7\x6a\x81\x97\x8e\xbb\x03\x92\x65\x1e\x5d\x51\x6d\x20\x26\xb0\x45\xa0\x36\x86\xd2\x34\xe8\xab\x95\x85\x09\x59\x6a\xc1\x07\x33\x82\x15\x45\x39\xc8\xb8\x99\x9a\x04\x36\xaf\x86\xbf\x37\xfb\x9e\xac\x21\xc7\x40\xf6\xfd\xb5\x6c\xe7\xbd\x36\x50\xfb\x25\x4f\x0b\x80\x66\x7a\x5c\xed\x6f\x41\xdf\x0e\x59\x7d\xfc\x49\x13\x56\x45\xb0\xef\x83\xe7\xc1\xef\xc9\xbe\x8f\xc3\x65\xc2\x16\xdd\x81\x3b\xec\x08\xb4\x3d\x32\xd2\xcb\xf9\x3b\xba\xff\x9e\xf4\x27\x52\x5e\xff\xfd\xe7\xa6\x52\xe4\x32\xa8\xb6\x9c\x3f\x31\x6b\xc9\x12\x2e\x60\x42\xb6\x66\xe6\x50\x1d\x9f\xfd\xc1\x96\xc0\x4a\x79\x58\xf2\x43\xe9\x75\x92\x4a\x75\x24\x84\x70\x1f\x26\xe4\x12\x26\x5d\x22\xb5\xbe\xca\x29\x75\xa2\xeb\x2c\xa9\xbd\xab\xcd\xc8\xd6\x91\x57\x7e\xbe\x5e\xec\x96\x26\xac\x9a\x96\x2f\x99\x0b\x85\xe3\x88\xa9\xf0\xbc\x3e\x64\xdd\x7a\xae\x7c\xa6\x8c\x04\x1d\x8d\xf8\x2e\xd5\x6e\x93\x5f\x1f\x85\xea\x9e\x29\xad\xaa\x72\x0f\xa0\x80\x96\x90\xe1\x77\x02\xb8\x7e\xf1\x94\xc8\x55\x93\xf8\xac\xbb\x68\x02\x02\x42\xd6\x25\x6a\xa4\x43\x96\x2d\x68\x31\x1f\x87\xea\x61\x98\xd3\xc5\x36\xa6\x4d\xe3\x74\x9b\x5b\xf9\x1e\x11\x07\x62\xe3\x4b\x19\xb4\x02\x26\x08\xd3\x12\xe1\x79\x68\x7a\x3f\x05\xa8\x84\x1d\x71\xed\xea\x7a\x96\x0c\xe7\x24\x52\x0e\x1b\xaa\x7e\xe8\xbb\x1b\x32\xc2\xe7\xd9\xb0\xa0\x29\x8d\x05\xb0\xf5\x3c\x2e\x2f\xa1\x59\x01\x23\x58\xfb\x82\xb0\xfa\xd2\xc4\x2a\xbb\x3c\xeb\xb8\xb1\x6d\xe2\x88\x43\x69\x5f\x1f\xd4\xaa\xdb\xed\xb8\xb9\x85\x05\xca\x53\x9b\x1d\x92\xd5\x67\xa9\x63\x42\x2b\x5f\x17\x8e\xfe\x7e\x93\x06\x57\x22\xb7\x8d\xc0\xfa\x95\x9c\x62\x13\xee\x8f\x23\x48\xd5\xbd\xcb\xf4\x4c\x97\x02\x50\x71\x1b\xb4\x96\x97\xa5\xf8\x99\x87\x62\x7b\x97\x70\x63\xa4\xb9\x3e\xe8\xdd\x03\x9f\xf9\xa0\x04\x08\x57\xd0\x56\x6c\x8d\xe2\xcb\x8f\xd8\x97\x1f\x91\x3b\x75\x71\x65\x58\x39\x08\x37\x34\xdf\x9d\x4f\x1e\x11\xf0\xc8\xff\x4d\x80\xd9\x31\xf2\x1f\x81\x47\x48\x5d\x43\x5d\x95\xec\xfd\x80\x10\xd6\x67\xa5\xa0\xe9\xf2\x45\x9a\x15\x09\x5b\x39\xe7\x66\x26\x9b\x1f\x1d\x83\x40\xb4\x08\x8e\x01\xee\x3b\x98\xf2\x6e\x17\xef\x76\x5c\x62\xcb\xaf\xe4\x59\xdc\xed\x44\x36\x27\x07\x42\x38\x11\xbd\x25\xd7\xfe\x6f\xf0\x0e\x49\xfa\x19\x95\x25\xce\x98\x28\x14\x34\x4d\x23\x5e\x68\x9a\x05\xe7\xa4\x46\xd4\x1a\x03\x70\x46\x72\x81\x14\x63\x4a\x2c\x06\xef\x34\x36\x73\x9e\x03\x8a\x2a\x7c\xb4\xdf\x8d\x3c\xee\x76\x86\x56\xed\x13\xc2\xa4\x7b\x27\x71\xc0\x5d\x73\x9a\xdf\xa4\xf8\x1e\x4d\xdd\x41\x8a\x39\x71\xdf\x61\x86\x82\x3b\x9f\x64\x6a\x96\xef\x7c\x42\xa7\x9f\x21\xce\xa9\x9a\x82\x38\xcd\x0a\x5a\xa7\x84\x34\x1d\x24\xaf\xf3\xc1\x47\x83\xdd\x0a\x62\xaa\x54\xd4\xee\x1b\x25\xe5\x91\xb6\xec\xe8\x5e\x52\x59\xa7\x83\x81\xe6\x50\xbd\xd4\x5a\x60\xca\xef\x80\x5e\x6f\x91\xf8\x59\xd4\xbc\xb6\x5f\x59\x27\xf3\x01\xa2\x0a\xcb\x16\xf4\x89\xd4\x15\x12\x0f\x58\x37\x24\x9e\xc5\x91\xa0\xb7\x71\xba\x15\xb4\x87\x9a\x1e\x71\xa8\x1a\x49\x90\xa1\xd9\x1d\xb9\xab\x38\xa5\xcc\xe5\x8a\x48\xde\x73\x77\x0f\xb0\xa6\x7b\xba\x37\xab\x3a\x16\xe0\x68\x04\x7c\xea\x8b\xbd\x9a\xb7\xb6\x9e\x72\xa2\x66\x39\x1d\x86\x83\xf4\x69\x78\x93\x27\x9c\x0a\x90\xf9\x69\x48\xd9\x02\x22\x7c\x57\xb1\x79\x7e\x73\x6d\x86\x3a\x7c\x80\x69\x7b\x40\x09\x0f\x54\xc5\x3a\x3a\xf9\x4b\xc6\x13\x9e\x48\x84\xa3\x66\x48\xef\x8d\x56\x18\x78\xd1\xd5\x66\x0a\x1c\x0e\xc4\x91\x4c\x4d\x79\x2d\xf1\xfc\x58\xa6\xae\x44\x2a\x66\xcd\x8a\xce\x81\xfc\xfa\x69\x9b\x89\xef\xa8\x61\xaf\xef\xc1\x59\x7f\x1e\x0d\xfe\x3c\x19\xfc\xc7\x78\xf0\xdd\x5f\xc2\xfb\x09\x3e\x18\x97\x53\xf4\xdf\xd4\x3a\x76\x4c\xe3\x15\x5a\xa9\xc9\x78\xc8\x48\x43\xff\xe7\xfc\x76\x3c\x1e\x9c\xdf\x1e\x8c\x43\x5f\x54\x01\x5c\xdd\xb2\xa3\xf3\xfe\xf9\xe0\x7c\x30\x7c\x3c\x13\x3f\xaa\x07\xa0\xe6\x14\x40\x0d\x29\xf4\xd1\x79\x30\x32\xd6\x96\x26\x22\x2d\xb3\xf9\xe6\xe7\xa3\xf3\xf3\xf0\xfe\xa0\x1c\xc9\x08\xb3\x0a\x52\xff\xac\x11\x4e\x83\x41\x4e\xb5\x99\xe5\x5c\x9c\xcd\x9a\xea\xb9\xde\x19\x6b\xd8\xc4\xa8\xbf\xbf\x3b\x13\x10\x08\xcd\xea\x34\xb8\xfb\xb5\x4e\x24\x3a\x18\xaa\xce\xb4\xdb\x75\x96\x75\xca\x28\x7d\xcb\x15\xb9\xaf\x6f\xa4\xa0\x3f\x2e\xa7\x15\x3f\x8e\xdc\x3b\xc7\x38\x98\x83\xf5\x21\xc0\x60\xfd\x44\xfc\x79\x2a\xfe\x3c\x03\x18\x5c\xa6\x59\xfc\x51\x2c\x11\x05\x18\x6c\x00\x06\x11\xc0\x60\x9b\x02\x0c\x32\xf1\x87\x89\x3f\x69\x22\x32\x02\x0c\x12\xc9\xb5\xcb\x33\xb6\x02\x18\xd0\x2b\xf5\x96\x7c\x14\x45\xa5\xd9\x16\x06\xeb\x5c\x64\x15\x7f\x16\xc9\x35\xc0\x80\x47\x97\x8a\xc7\xb7\xa6\xd1\x42\x64\x8b\x36\x2a\xf8\x0d\xe0\x97\xd9\xe2\x4e\xfc\xe6\xf2\xb3\xf8\x23\x32\x6c\x72\x91\x5d\xd3\x12\x21\x6e\x83\xa2\xc0\xc2\x2a\xdc\xe2\x04\x06\xf7\x91\x18\x66\x4e\x97\xc0\xc4\x11\x01\x3c\xca\x57\x94\x83\x10\x27\x57\xab\x60\x2e\xe9\x92\xb0\xc4\x0e\x84\x08\xe6\x20\xb9\x5a\x99\x6e\xcb\x01\x48\x6e\x24\x06\x97\x51\x41\xf5\xcf\x32\x63\x5c\xf4\x8b\x6d\xb6\x5c\xce\x08\xfb\x08\x30\xb8\xa2\x3c\x02\x21\xae\x2f\x93\xe8\x01\xe7\x62\x2a\xa5\x4d\x0d\x90\xf6\x34\x22\x73\x94\xa4\x3c\x6b\x65\x97\x3b\x22\xb8\x2f\xf1\x67\x09\xb3\x6a\x68\x62\x10\x18\xc4\x09\xa7\xa6\xba\xe6\xc6\x55\xf6\x42\x4d\x3e\x5d\xcb\x5e\xc6\x88\x59\x88\xf5\x5b\xc9\x76\x3b\x86\xb9\x66\x48\x57\xd1\x6a\xb0\x26\xe4\x12\x75\xb3\x08\x02\x3d\x91\x61\xfb\x50\x36\x4f\x42\xc2\xe7\x49\xa8\x38\x13\x19\xe1\xfa\x6c\xdc\x6b\xf6\x54\x40\xb1\xc6\x28\x82\xac\x94\x92\x1c\x47\xce\x11\x1c\x4e\x70\x5b\x78\x11\x1c\x1e\xe2\x4e\x69\x47\x70\xf8\x04\x77\x0b\x29\x82\xc3\xa7\xb8\x25\xd5\x08\x0e\x9f\xe1\xb6\x08\x24\x38\x7c\x8e\xb5\xf8\x22\x78\x3a\xc1\x8a\x74\x0a\x9e\x7f\x87\xb7\x79\x1a\x7c\x3b\xc6\x52\xe6\x12\x7c\x7b\x50\x86\x25\xbe\x2f\xf1\xfc\xdb\xc3\x10\xc1\x6f\x0f\x51\x89\x6b\x22\x2f\x8e\x3c\x0f\x6c\x8d\xf4\xca\x05\xf8\x33\x6a\x65\x09\x11\x44\x01\xcc\xc8\x3c\xc4\x76\x86\x61\x42\x3a\x58\xae\x30\x27\x11\x9a\xe5\x2a\x64\x07\xe4\x38\x43\x41\x8e\xa4\xda\x95\xa9\x4a\x3a\x20\xad\xdc\x5d\x63\x06\x27\xdf\x21\xe4\x2c\x92\x5e\x53\xb0\x2d\xa8\xb4\x63\x8a\x39\x30\x66\x55\xf0\x50\x20\xfb\x0c\x3e\x95\xfe\xc0\xe0\x18\xe1\x88\xb0\x21\x83\x09\xc2\x05\x61\x70\x82\x70\x2c\xdf\x0b\x84\x53\xc2\xe0\x13\xe9\x38\x7c\xc8\x60\x8a\xf0\x86\x30\x78\x80\xf0\x92\x88\xf5\x0c\x36\xc3\x8f\x58\x52\x64\x72\x65\xe3\x61\xa4\x09\x41\x1c\x17\xe2\x74\x6e\x53\x95\xa8\xe6\xa9\xc4\x8b\xce\x18\x53\xb6\x02\xcc\xc4\x9b\x29\x89\x13\x42\x25\xfa\x66\x42\xc1\xc0\x6c\x18\x21\x48\xf1\x1c\xd8\x12\x62\xdb\x9b\xfc\xf2\x70\xaf\x40\x28\x3a\xaf\x0b\x6c\x86\x6b\x04\xb7\x10\x41\xae\xcf\xea\x60\x95\x67\xdb\xcd\x40\xe0\x55\xe2\x8a\xaa\x7c\xf0\x0e\x23\xed\xcd\xe5\x65\x4a\xaf\x28\xe3\x30\xd1\x91\x6f\x61\x2e\x1a\xbd\x2f\x71\x81\xef\x9d\x91\x96\x08\x95\xd3\x85\xa4\x19\xce\xee\x36\xb4\x20\x4b\xbc\x30\x80\x56\x90\x17\x85\x9a\x1f\x50\x6c\x22\x06\x04\x0a\x11\x91\xc5\x67\xd6\xa6\x65\xe5\xcd\x5c\x01\x8e\xa0\x28\xbb\x76\xd7\xdb\x68\x63\xb0\xb1\xb7\xd1\xc6\x75\x85\xec\x08\x9b\x06\x13\xc7\x03\x56\x83\xc0\xc1\x79\x45\xe2\xcc\xc7\xa1\xf6\xad\xc4\x48\x8e\x35\xb3\xc0\x3a\xce\x71\x05\xaa\xa6\x19\x0e\x6d\x80\x47\xca\x78\x9e\xd0\xe2\xe2\x82\xcc\xad\xaa\x63\x77\xf4\x60\x5e\x8b\x1e\x9c\xfc\x49\xdb\xa1\x83\x6b\x61\x52\xab\xaa\x35\x6e\x5c\x62\xca\xb6\x57\x34\x17\xb7\x49\xd0\x1f\xe3\x38\x63\xcb\x64\xb5\x35\xef\xa5\x44\xad\x9c\x68\xa1\x8e\x28\xac\x72\x8d\x01\x9b\x95\x63\xe9\x41\xaa\x99\xea\x44\xbd\xcd\x3d\x4f\x5c\xfd\x65\xad\xf6\xa2\x56\xbb\x2b\xc0\xed\xa8\x7f\xfa\x9f\xf9\xac\xd5\x40\x1e\xce\x27\x21\x31\x8e\xe4\x9d\xc1\x4a\xe2\x72\xce\x31\x0b\x51\xbd\x4d\x85\x42\x77\x0c\xaa\xd5\xa4\xe8\x07\x53\x0d\xcb\x88\x5f\x4a\xb9\x26\xc7\x93\x46\x8d\xeb\xa8\xa8\x55\x67\x10\xa4\xff\xec\x1c\x46\xbd\x6c\x9c\xd2\x28\x77\xf7\x6a\x6b\x20\xba\xd9\x71\xa3\xa0\x16\xc3\x35\x3d\x97\x18\xc8\xa8\x7c\x7c\xa9\xc8\x5f\x8e\x0f\xa9\x8e\x35\x9a\xb2\x4a\x01\xda\x06\xae\x15\x78\x1a\x0b\xa7\x54\xc3\x48\x9c\xcd\x27\x21\xce\xe6\xe3\x50\x90\x53\xbc\x84\xa8\x84\x62\xbd\x3b\x4f\xd5\x4d\xc2\x16\xd9\xcd\x1e\x80\xbe\xc8\x62\xa9\x1e\xe0\x79\x2a\xdb\xd0\x24\x10\x42\xcc\x23\xce\xba\x2b\x96\xaa\x93\x6f\x23\xbe\x26\x84\x88\x9f\x19\x0d\x3a\xf3\x09\x84\xc4\xf3\xc4\xdf\x5a\x6e\x91\xd0\x5d\xc0\xf4\x58\x77\xc9\x2d\xa4\x92\x82\x57\x66\x96\x81\x73\xb8\x00\x82\xe2\x0e\xe8\x12\xfa\xe5\xf4\xd3\x96\x16\xfc\x84\x25\x57\x32\xd0\xda\x2b\x81\x83\xcd\x3a\x53\x87\x97\x09\x5b\x08\xdc\xb5\xcb\xc1\x01\xe5\x67\xc9\x15\xcd\xb6\xdc\x81\x3a\x8e\x23\xf7\x1f\x22\x4e\x87\x2c\xbb\x81\x32\xd2\xce\x84\x1e\x8e\x9e\x8d\xb5\xe3\xad\x88\xcc\x01\xcf\x04\xb2\x94\x27\xab\xb5\x40\xb4\x2e\x33\xce\x33\x81\x68\xa6\x74\x29\xde\xa5\x0b\x03\x81\x5a\x51\x9d\x41\x41\x13\x70\xa3\xde\x43\x5c\x74\x2f\xc3\xdb\x2d\x97\xbd\x7f\x77\x59\xd0\xfc\x9a\xe6\x38\x26\x5d\xd0\x8d\x9a\xcd\x1c\x67\x8c\x49\x17\xcd\x17\x82\x84\x96\x49\x57\xba\x8a\x97\xd7\x94\xf1\xe2\x64\xb1\xe8\xfa\x58\x98\x06\x2e\x1c\xa3\xff\x4c\xa7\x15\x17\xd6\x89\x7f\xc6\x24\x52\x26\x09\xda\x97\x6c\x71\x41\x3a\x53\xd5\x34\xf3\x2a\x92\x52\x4e\x97\x39\x2d\x5a\x07\x48\x9e\x93\xfe\x04\xe7\xe2\x4f\x46\xc6\x53\xc7\x2b\x22\xba\x67\x12\xbc\xf7\x27\x98\x4a\xbf\xea\x9e\x17\x43\xe4\xfa\x26\x44\xf7\x09\x8c\x90\xeb\x86\xcf\x28\x3c\x55\x4b\xa5\x19\x0a\xc9\x12\xd2\x41\x76\x74\x60\x38\x0f\x39\xe9\x8f\x15\x5f\x83\x91\xfe\x58\xb5\xef\xac\x7f\x21\x00\x51\x56\xc5\x1e\x89\x4b\xe8\x0e\xc3\x1d\xde\xc1\xb8\xd2\xa8\xa9\xfb\x30\x37\x33\x5a\x43\x25\xfe\xb3\x31\xb1\x35\xf1\x66\xf3\x9b\x16\xd4\xe3\xc6\xca\xea\x8c\x3a\xe1\x02\xa2\x12\xd3\x9a\x61\xc7\x55\x76\x4d\x3b\x5b\x77\x8c\x99\xaa\x66\x30\xab\xb1\x94\xa7\xff\xc9\x3c\x8f\x1b\x48\xc8\xf0\x04\xe1\x3e\xb7\x7c\x9f\x46\x57\x74\x82\xa0\x6c\xf6\xf6\xa6\xb1\xf2\x7a\xa3\x2a\x46\xc8\x3b\xdb\x0b\x88\x74\x5d\xba\x40\xb3\x9e\x66\xfe\x3d\x5a\x6e\xce\xec\xed\x67\xa3\xf7\xe8\x70\x15\xf1\x35\xcd\x4f\x62\x19\xce\x45\xea\x4d\x47\x85\x79\x2b\x91\x13\x1f\xb4\x53\x03\xc3\x7e\xbd\xcc\xb3\x68\x11\x47\x05\x77\xca\x5a\xfd\xb8\xe3\x71\x7d\x08\x66\x8a\x6a\x61\x22\x8c\xb1\x9d\x3b\xa7\xd0\x00\x67\xb1\x8d\xe4\xb1\x7d\x93\x14\x9c\x32\x9a\x43\xc0\xed\x41\xa3\x6c\x01\xba\x0f\x25\xc2\x1a\xb8\xb6\x8b\xe7\x54\x01\x1e\x77\xaa\x11\x2e\xb4\x8d\x62\x17\x34\xa0\x37\x2d\x20\x04\xeb\xa5\xf7\x14\x35\x6b\x61\x47\x83\xef\xa3\x8a\x26\x14\xc8\xd0\x3a\x49\x17\xa2\x6b\xea\x25\xca\xa3\x98\xd3\xfc\x87\x88\x47\x22\xa1\xd8\x5e\xf2\x9c\x2a\x2c\x09\x05\x0f\x4d\xc9\x0f\xef\xde\x7e\x50\x99\xdf\x66\x8b\x64\x99\xd0\x45\x73\x7c\x0f\xc0\xc1\x71\xeb\x78\x49\xd9\x53\x6d\xe1\x9c\xed\xdd\x58\xbb\x07\x96\x4e\x1d\xc3\x7f\x66\xf5\x3a\x6b\xe8\x5e\xc0\x3d\x4b\xa0\x3b\xd8\xb1\x36\xd5\x90\xe0\x03\xd3\xe3\x79\x0f\x0f\xe7\x2b\x67\xbe\xf3\x92\x79\xf0\x7a\xaa\x5d\x67\x8d\x55\x69\x5d\x45\x5d\x24\x9b\x89\xfa\xa8\xa9\xb6\x0a\x65\x9b\x01\x10\xf0\x69\xb4\x57\x8c\xd2\xef\xff\x27\xab\x0b\xda\xba\xe0\xd3\x8a\xf2\xd7\xda\x2d\x48\x47\xf0\x17\x99\xdf\xb8\x0d\xb9\x30\x16\xdd\x36\x41\x9e\x2d\x03\xde\x6d\xaa\xa8\xd6\xc9\x22\xed\x40\x04\x02\x98\x36\x2e\xcf\x3a\xa2\x59\x33\xb7\x43\x0f\xa1\x99\xdd\x94\x0e\xc5\x19\xbe\x97\x02\xa3\x80\xcf\xb3\xb0\x46\xb6\x4c\xf0\x4d\x9e\x70\xf3\xdc\x22\x61\x2a\x85\x52\xbc\xed\x14\x19\x0a\x4c\x32\xbb\x61\x34\xff\xc1\xe2\xa3\x8d\x04\x43\x90\xfe\x9a\xd0\x9b\xdd\x2e\x2b\xf1\x86\xbc\x85\x63\x2c\xff\x39\xda\x99\x4b\xd7\x5d\x65\xe5\xd7\x4b\xfa\xe7\x2b\x5d\x1d\x4e\xd7\xb5\xbe\x8c\x99\x30\x99\xb2\xb6\x22\xad\x0c\xa0\x20\xdd\x60\x39\x8a\xb4\x15\x11\xc5\xdb\xb2\x4d\x97\xf7\xc4\xfd\x25\xa4\x73\x70\x99\xe5\x0b\x9a\x0f\xa4\xe8\x6c\xa0\xb0\xbc\x50\xe0\x87\xe3\xba\x46\xa8\xcb\x44\x48\x28\xe3\xbf\x49\x97\x56\xcc\xbe\xff\x24\xf1\x40\xc9\xf4\xe5\x9e\xd7\x67\x86\x54\xde\x68\x4e\xc8\x16\x52\x24\x76\xdb\x0b\xe5\xf2\x4f\x09\xe6\x94\x28\xb4\x53\xd3\x89\xdc\x97\x3a\x20\xc6\xc3\x98\x69\xf8\xc0\x56\x91\xee\xd5\xc0\x26\x5a\x2c\x12\xb6\x1a\x00\x3f\x0b\xa7\x62\x6f\x90\x25\x4c\xaa\x08\x1d\x25\xcc\x55\x20\x64\x51\x9d\x9f\x0d\x65\x33\x38\x92\x61\xd1\x36\x7e\x36\x54\xcd\xe1\x82\x2c\x61\xae\x1c\x79\x21\x81\xc3\xc2\x5c\x3b\xeb\x52\x3e\xd9\xf4\x2c\x5e\x66\xb7\x40\xfa\xb9\xbf\xcc\x6e\x3f\x24\x7f\x26\x6c\xe5\x79\x50\x90\x06\xc3\x3c\xdb\xb2\x05\x2c\xfc\x04\xe9\x88\xd3\xc5\x80\x2c\x60\x6e\xf1\x6b\x35\x3a\xe4\x27\x08\x3b\xf9\x63\x3f\x42\x4a\x06\x06\x63\x9d\x5f\x4d\x86\x9e\x04\xe4\x47\x08\xe1\xfe\x1e\xa5\x08\x39\xe7\x16\x00\x9a\x07\xcd\x77\x29\xad\x61\x6c\x4a\x1a\x3d\x1c\x70\xbc\x26\x8d\x5e\x0c\xd8\x74\xd2\x57\x64\xce\x30\xba\x2c\xa0\xd4\x75\x28\x06\x24\x45\xb8\x96\xbe\x46\xaa\xaf\x6b\x3b\xc3\x6f\xa1\x9a\x5b\x2c\x67\x14\x17\x38\x56\x91\x4f\x2f\xbb\x09\x86\x0f\xbf\xfe\xf8\x63\x1e\x6d\xd6\x49\x5c\xe8\x9e\xce\xba\x86\xe7\x7a\x33\x92\xe3\x6c\x97\x2b\xbb\x88\xa4\xce\x82\xba\x80\xe7\x75\xaa\x64\x8a\x6d\xfb\xfd\xf7\xd9\x6d\x59\x1d\xe4\x2b\xa7\xc6\x7c\x76\x09\x29\x9a\x75\x01\x6f\x5d\xb0\x92\x5a\x28\xa0\xa0\xdd\xf5\x61\xe3\x91\x0f\x89\xb5\x08\xc4\x21\x0b\x36\x65\x53\xc9\xb9\xe2\x1a\xdd\xdf\x06\x14\xdf\x05\x1c\xcb\xd2\x01\xc3\xaa\x74\x90\x1b\xa1\x44\x37\x61\x65\xa2\x0a\x59\x54\x4f\x1e\x5d\x32\xc6\xf5\x54\x75\x80\x4d\x72\xac\x3c\xf2\xbf\x97\x28\x43\x05\xca\x8c\xa6\x74\xbe\xa2\xbc\xa2\x2e\xdc\x4b\x2d\xd1\x58\x68\x1b\xbd\xbd\x82\x4e\x61\x54\x0b\x49\x51\x6b\x8d\x62\xed\x30\xaf\xaf\x9d\x08\xd4\x3b\x2e\x0d\xa8\x64\x5f\x5b\xdf\xd5\x10\xea\x97\xac\xfd\xf8\xbe\x66\x25\x5e\xc3\xb9\xdd\xe6\x6b\xfd\x6a\x4c\x99\x71\xe4\xd7\x39\x71\xd6\x79\x1f\x2d\xd5\x7d\x77\xd7\x49\x2c\x76\x6d\x93\x5b\x09\x47\xef\x70\x6e\x5b\xc8\xaa\xea\x92\xee\x63\xf2\xc3\xbb\xb7\xa2\xbf\xef\x69\xb4\x78\xc7\xd2\xbb\x59\xe3\x3d\x50\xb7\x24\x8e\x1a\xc1\xbd\x1d\x83\x1b\xbb\x04\x29\x8c\xf0\xfd\x6d\xc0\xf1\x5d\xc0\xf4\xde\xca\xcd\xde\xca\x30\xcf\x36\x01\xc3\x12\x3c\x05\xdc\xcf\xb1\x82\x3c\x41\xe6\x33\x2c\x4e\x75\xc0\x4b\x84\xa3\x52\xdc\xd9\x9a\x3d\x7e\xaf\x56\x38\xa0\xd8\x99\xd7\x80\x95\xa8\xc4\xd7\xfb\xb6\x28\xe6\x26\x8c\xaf\x54\xce\x97\x3b\x48\xe1\x5a\x0a\xef\x72\xe8\xf7\x5a\xaa\x40\x40\x18\xae\x4e\xed\x67\x03\x40\x9d\xad\x69\x2f\x8e\xd2\xf4\x32\x8a\x3f\xf6\x36\x79\x76\x9d\x2c\xe8\xa2\x17\x15\xe2\x3a\xd6\x9e\xc9\x26\xbd\xa4\x90\x6e\xc8\x22\xcb\x87\x1d\x02\x13\xea\x49\x17\xbd\x20\xb4\x3a\x27\x79\x96\xa6\x02\x25\xd4\xb1\xfd\x4c\x9e\x17\xfc\xf6\x82\xe4\x5d\x67\x44\xd3\x15\x4d\x9f\x05\xfd\x56\x70\x89\xce\x21\x4c\x6c\x0c\x09\xeb\x93\x12\xf7\x2e\xb7\x5c\xc5\x11\x1e\xf7\x36\x39\x2d\x04\xbc\x57\x2e\x5c\x3a\x37\x8f\x85\x77\xfa\xc1\x85\x89\x6a\xbf\xe8\xe8\x7b\x6d\x68\xa9\x4b\x74\xfb\x77\x7b\xd4\x31\x8b\xd9\xb2\x27\x5a\xed\x01\x5d\x12\x0c\x1f\xd5\x9c\x92\xd4\x16\x74\xca\x65\x44\x6b\x81\x10\x41\x3e\x2c\x28\x87\x14\x8b\x26\xa4\x17\x87\xd6\x8c\xbb\x4c\x0a\x97\x59\xe3\x66\xb1\xd8\x2e\x2a\x1b\xf4\x38\xfb\xff\x96\xe1\xb3\xcb\x20\x83\x96\x2b\x1e\xb8\xe4\xe3\x0c\x05\xed\x56\xb1\x6f\x9c\x59\x76\x59\x36\x6a\x2d\x9a\x13\x5e\x51\x6c\x2d\x5e\x8a\xe4\x6b\x5b\x5e\x46\xbb\x3f\x2a\x03\xec\x5c\xde\x76\xc3\xf5\x66\x5d\x46\x49\x37\xfc\x9f\x7e\x59\x1f\x3a\x23\xa5\x73\x7b\xe1\x41\x69\xd2\xd2\x01\xba\xb4\x0a\xa1\xb4\xb1\xea\xbe\x9a\xda\x9d\x33\x90\xd0\x61\xea\xd4\x6f\x2c\x07\xc6\x60\xbd\x82\x5d\x4d\xb7\xfc\xdc\x1a\xb9\x33\xbd\xe9\xdd\x41\xaa\x2f\x63\xdc\xb8\x26\x25\x83\xb8\x09\xf1\xac\xdd\x17\xb6\x0c\x3d\x77\xc6\x1a\x8b\xed\x7c\x6b\xad\x76\x57\x47\x1d\xb9\x05\xad\x0b\x4b\xda\x95\xb8\x37\x74\x57\x5d\x0e\xf3\x4a\xdc\xc3\x27\xdd\x17\xe8\x6f\x34\xfa\xf8\x36\xda\xcc\xc4\x54\xe8\xe7\x40\x5d\x27\x15\x21\xde\xa3\xd0\x1c\x41\xd1\x9a\x7b\x0a\xf7\x79\xb8\x7c\x11\x31\x71\xdc\xc4\x64\xf5\xa2\x9e\x94\x63\x8a\xeb\xa5\x7e\x97\xfc\xb7\x40\x19\x85\x5f\xc4\x2e\x49\x2f\xc5\x2e\xa2\xc6\x6b\x41\xf9\xe9\x70\x92\x27\x12\xae\xca\xab\x3a\x47\xe5\x74\x0e\x34\x1c\x04\x18\x58\x98\x08\x94\x62\x9a\x3a\xae\x20\xec\x66\x22\x5e\x54\x0b\x35\xa7\x61\xf3\x6c\x19\x6d\x04\xc8\xc9\x89\xe8\x93\x06\x0a\x73\x1a\x5a\x51\xbb\x9d\x02\x54\x1a\x8b\xa5\x9b\xee\xc5\xca\x86\xef\x25\xdb\xc8\x1c\xf4\x59\x33\x21\x10\x30\x2b\x22\x37\x5f\x2f\xa8\xef\x10\x06\x57\xda\x06\x8e\x2c\x49\x9c\x6e\xed\x6b\x88\x68\xa4\xca\xf3\xa8\x6c\x95\xfd\xe3\xea\x01\xdf\x3d\x43\xc3\x17\xd9\xe6\xee\x2c\x7b\x91\x26\x9b\xcb\x2c\xca\x17\xd3\xbc\x99\x42\x72\x5c\x69\x23\xe4\x25\xc6\x75\xc4\x92\xb6\x0d\x71\xeb\xf1\x51\x8d\x16\xe1\x7d\x69\xb4\x90\x71\x26\xe8\xeb\xa4\xe1\x5f\x47\xca\xfe\x72\x32\x9e\xe6\x47\x89\x21\xa9\x73\xdf\x47\x8c\x24\xf3\x3c\xc4\xbc\x6e\x40\xb1\xdb\xc1\x6c\xce\x42\x42\xe7\x2c\xb4\xb8\x64\x56\xb6\x07\x6e\xc6\xfa\xe4\xa9\xd2\x85\x98\x8c\x0f\x94\x36\xc4\x64\x7c\x28\xf5\x21\xe0\x64\xfc\x44\xeb\x43\x8c\x9f\x4b\x8d\x08\x38\x99\x1c\x22\x9c\x2a\x39\x48\x4d\xbe\x7c\x96\x5c\xd1\x5a\x00\x98\xaa\x8d\x05\x61\xbb\x9d\x75\xd7\xde\xef\xc3\xc5\x50\x4d\xf7\x2c\x51\x71\x15\x65\x8c\x12\x81\x5a\xf4\xe9\x6e\xd7\xe7\xbb\x9d\x59\xe8\x9a\xd4\xb0\x9d\xc8\x67\x1d\x35\xb9\x4a\xb2\x55\x1f\x12\xbc\x90\xb1\x65\x74\x6d\x4e\x1d\xb5\x58\x33\x1b\x89\xe2\x6c\xa0\x6b\xc2\x55\x39\x4c\x12\x45\xa4\x6a\x6c\x85\xab\xbb\xb9\x32\xe5\x0f\x3d\xab\x95\x56\x8e\x88\xa4\x72\xf9\x25\x89\xa0\x62\x4b\x08\x12\xea\xb2\x56\x76\xbd\xdb\x5d\x22\x47\x43\x41\x86\xa1\x26\x4e\x4c\x7e\xb1\x0f\x08\x21\x85\xae\x41\x99\x6a\xc6\x55\x53\xbd\xd4\x78\x96\x26\x84\xe8\x67\x8e\xb4\xe1\xee\x52\x34\xff\x96\x2c\x75\xe1\xab\x3e\x21\x6f\x6b\xcd\x5f\xed\x76\x6f\x95\x30\x4b\xef\x2f\x39\xcc\x9a\x6a\xb6\x0e\x52\x93\x90\xf1\x34\x39\xaa\xe2\xf5\xf8\x3e\x12\xc5\xe6\x49\x28\x83\x3d\x24\x61\x87\xed\xdb\xe7\x26\x9e\xe7\x77\xf7\x8a\x52\x96\x51\x13\xef\x48\x2e\xae\x65\xa5\xf1\x7d\x6d\xf9\xa6\xd2\x5e\x64\x55\xf5\xef\xae\xb3\x7f\x2b\xed\xc7\x1e\xdf\x99\x87\x84\xac\xaa\x18\x60\xc9\xb1\xe8\xbf\x0a\xac\xb3\x92\x9d\xbe\xab\xf5\x59\x0d\x71\x4f\x81\x05\x11\x45\x70\x7f\x0b\xe9\x7c\x11\x62\x2e\xfe\x74\xc6\xe2\x91\x3b\x6f\xe1\xda\x6e\x6f\x3a\x4c\xfe\xdd\xe0\xc8\x65\x17\x2f\xb2\x2f\x0f\x44\xc7\x61\xd8\xed\x00\x93\x91\x01\xdc\xc4\xca\x79\x05\xec\x66\x97\xc4\xd9\xe6\x6e\x1f\x2b\x45\x3a\x45\x51\xae\xb0\xcc\x35\xed\x79\x1d\x8d\x48\x1f\x3f\x65\x05\xd9\xb6\x5f\x08\x4f\xc7\x12\xc4\x0c\x99\x62\xea\x31\x78\xa0\x21\xcc\xd3\x43\x01\x60\xda\xc4\xb7\x64\xae\x4a\x1e\x75\xde\xe5\xc6\x20\x6f\x05\xfc\x13\xd5\xd3\x1b\x1d\xda\x4a\x36\x22\xf6\x69\x2e\x37\xa8\xd4\xc8\xab\x38\xb1\x49\x38\xe5\x24\xc3\x6c\xb7\x83\x8c\x74\x4a\xf3\x6b\x72\x7a\x66\x7c\x26\xa9\xeb\x51\xad\x99\x0a\x88\x88\xca\xca\x35\x77\x2c\x2e\xf6\x5a\xa4\x76\xc9\x1d\x94\xa9\x8d\xda\x19\xd2\x83\x43\x25\xce\x4b\x05\x57\x91\x0e\xb4\xd5\x21\x55\xd5\x53\x3f\x75\xb6\x4f\x5f\xc6\x1c\x73\xee\xc3\xdd\xce\x5d\x57\x8e\x4a\xbc\x15\xb3\xfb\x04\xe1\x4d\xfb\xda\xac\x54\x2b\xb4\x82\x45\xeb\xfe\x14\xa9\x78\x49\xb6\xc3\x68\xb7\xdb\xec\x76\xfb\x15\x27\x16\x1d\x08\xe0\x72\x58\x89\xc9\x4b\xbc\x26\xcb\xa1\x32\x58\xc4\x97\x2d\x97\x10\xf8\x8a\x5c\x36\x4c\x52\xf0\x5b\x72\x69\xa3\xb0\xe2\x15\x59\xcf\xd6\xf6\xf5\x2c\x5a\xe9\x20\xf6\x53\xe5\x61\xa0\x3d\x5b\x57\x06\x1f\x5e\x89\x49\xa6\xf3\x55\x28\xc1\x8b\x78\x20\x4e\x51\x29\xa7\x57\x10\x26\x41\xf7\xa5\xe2\x4d\xbf\x35\x20\xd4\x51\x77\x82\x7c\x26\xcb\xb2\x40\x6b\xed\x8b\x37\x84\xb3\x12\x5f\xb7\x1d\x5c\x98\x7e\x4e\x95\x0b\xf2\x0e\x04\xff\xba\xf2\xff\x7f\xf1\xd0\xd0\x6e\xba\x0a\x6b\xac\x61\x56\x81\x8d\x19\x98\xab\xc5\xed\x59\xaf\x21\x21\x08\x6c\xe2\xe9\x36\x4d\x43\x10\x5c\x78\xde\x45\xcf\x06\x6d\x93\x56\x2a\x90\xa2\xe0\x44\x74\x63\xaa\x7c\x7c\xef\x69\x4d\xee\xb3\x36\xda\x55\x6a\xa3\xfd\x76\x29\x50\xc8\xa5\x06\x2e\xac\xfa\x53\xde\x55\xb6\x53\x6a\x33\x84\x80\x90\x1b\x39\x0f\x67\x64\xf4\xc7\x79\xe1\xef\xce\x0b\xff\x9b\xd1\x0a\xdf\x92\xd1\x1f\xf3\x81\x1f\x8e\x6f\xe7\xe3\xc1\x77\xd1\x60\x19\xfa\xdf\x8c\x12\x7c\x4a\x46\x7f\x8c\x2f\xe7\xe3\x89\x7a\x7d\x23\x5e\xb3\xf9\x78\xf0\x5c\xbd\xbf\xb4\x01\x5a\xa6\xca\xef\x74\x83\x79\x60\x40\x99\xc3\x87\xb2\x16\x60\xc9\x12\xbe\x73\x6c\xb2\x4e\xa3\x53\x65\xd8\x5b\x39\xa8\xac\x9d\x2d\x03\x32\xa5\x50\xeb\xdd\x72\x66\x9f\x20\x0a\xe8\x94\x12\x71\xef\xce\xb8\x0f\x40\xc0\x95\xed\xa2\xb1\x7f\x68\xb6\xac\x56\x90\x06\xbe\x28\x55\x99\x09\x9c\x61\x60\xa9\x86\x53\x13\x82\xd0\x1e\xfe\xdd\xee\x8d\x49\x9b\xbd\x84\x26\x7a\xcd\x01\xc2\x6c\x76\x10\x7c\x8b\x82\x5b\xfb\xf5\x34\x3a\x0d\x7c\x5a\xe2\x17\x4a\x08\x70\x15\xdd\xe2\x8f\xfa\x31\x61\x53\x65\x13\xdc\x89\x12\xe2\x0c\x27\x38\xc2\x05\x8e\xf1\x96\x8c\xf1\x86\xf4\x27\x78\x29\xfe\xac\x49\x7f\x2c\x99\x26\x0e\x5f\xef\x8b\xe3\xba\xdb\x32\x8e\xdc\xed\xb2\xd2\xdb\xcb\x71\x42\x32\x7b\xee\x48\xa6\x0f\x2b\xde\x12\x8e\x23\x62\x80\x6f\x82\x99\x73\xa9\xba\xdc\xfe\x2d\xa1\xb8\x20\x8e\xaa\xcd\x0a\x73\x84\x37\x52\x06\x10\x44\x35\xee\xbd\xd5\x7f\x1c\xc4\x53\xd7\x8c\x47\xac\x47\xbc\xdb\xb1\x63\x01\x4e\xd9\xd1\x78\xb7\x5b\x7a\x1e\x1d\x6c\x8f\x49\x52\x95\x5f\x59\x16\xc5\x42\x29\x01\xbd\x75\xb6\x8e\x38\x56\xd3\x46\x2f\xda\x64\x0c\x1f\x40\x3a\x88\xed\x92\x2e\x67\x1f\x21\xc3\x89\x48\xdc\x22\x14\x30\x29\x00\xaa\x1a\xbc\x73\x35\xc9\xcc\xac\xac\x3d\x4f\x89\x37\x02\xe8\xcc\x95\xab\xb3\x74\xed\xf6\x13\x33\xf2\xd6\x84\x05\xad\x2e\x42\x9c\x49\x06\x05\x8e\x89\x71\x28\x61\xa7\xa1\x30\x23\xba\x82\xb1\x2c\x66\x9d\xa3\x4a\x06\x82\x55\x67\x42\x1d\x73\x7e\x09\x63\x2b\x63\xaa\x2a\x94\x0e\x6e\x1b\x59\x11\x8e\xac\xb8\x8f\x7c\x80\x82\x04\x18\xe3\x14\x32\x81\xc2\x6c\x48\xbf\xcf\x86\x29\x8d\x16\xe2\x1a\x48\x08\x5c\x12\x70\x15\xdd\xfe\x16\x25\x1c\x48\x37\x44\xb3\x17\xf0\x03\x64\x43\x9d\x26\x8b\x72\x14\x24\x78\x4d\x00\xcf\xa3\x24\x15\x67\x4e\x64\x9c\x89\x7a\x4c\x4a\xb0\x46\xf8\xba\xe3\xaa\xb6\xd6\x71\x85\xe7\x35\x47\xb8\x95\xd2\xce\x98\x64\xc4\x4c\x7f\x89\xaf\x87\xcb\x74\x5b\x57\x3e\x6a\x8d\x78\x16\x05\x77\x70\x01\x05\xc9\x79\xad\x00\xe6\x6f\x7b\xc2\xf7\xf5\xc7\x32\xac\xf5\x7f\xc5\xd1\xb2\xa2\x03\xa6\x5d\x0e\xeb\x19\xac\xa6\x42\x27\x04\x82\xd6\x7c\x68\xa6\x32\x84\x3f\xc9\x6e\xde\x57\x25\xf4\x64\x07\x1c\x57\xd9\x4a\x54\xe2\x1f\xc8\xfd\x82\x5e\x66\x5b\x16\xd3\xe0\x13\x16\xdd\xe5\x3c\xa5\xc1\x6f\x25\xfe\xbe\xeb\x8e\xe8\xc2\x40\x4b\xfc\x73\x7b\x36\x1d\x9e\x03\x69\xe8\x79\x3a\x42\xbf\xdf\x9d\xd8\x61\xbf\x77\x2a\x72\xaa\x2b\xc7\xf3\xaa\xdb\xa9\xfe\xc5\xba\x52\xe8\x12\x69\xda\x1e\x76\x8a\x2d\xbb\x11\x6a\xd3\xa0\xd4\xcd\x2a\x78\xbe\x8d\x79\x96\x13\x42\x6c\x7a\xdf\x3c\x57\xd8\xc3\xcc\xf4\x2e\xb0\x2d\x22\x71\x41\xda\x71\xfe\xbd\xb2\x5f\xae\x73\x9e\xf7\xb0\x9b\x3f\xcf\xf3\x02\x4e\xed\xef\x5b\xda\x1f\x53\x76\xc4\x5b\x12\xfc\x9c\x70\xa9\xca\x30\xac\x14\x39\x88\xfb\xb2\xdb\xf5\x27\x38\x1f\xba\xca\x1c\xd2\xd5\x89\xbc\x23\xc5\x36\xcb\xa5\x39\xb3\x51\xfc\x90\x7a\x52\xfb\x34\x47\xf2\xe1\x47\x7a\x87\x73\x54\x56\xbd\x7c\xed\x9a\x81\x37\x58\x05\xbf\x2b\x0b\x94\x0e\xa1\x53\x5d\x54\xed\x02\x3a\xf7\x70\xbd\xa7\x4b\x9a\x53\x16\x9b\xe9\x93\xac\xc5\x75\x54\xb0\x47\xbc\x77\x49\x29\xeb\x25\x2c\xe1\x49\x94\x26\x05\x5d\xf4\x06\xbd\x62\xbb\xa1\x39\x44\xb5\x1c\x62\xaa\x65\x28\x32\xab\xba\x22\x60\xb4\x13\xd1\xf9\x27\x67\xaf\xfe\x64\x10\xc8\x82\xf2\x9f\xcd\x2e\x78\xb7\x9c\xe9\xd4\x55\x2d\xb5\x73\xf3\x0d\x6d\x4c\xde\xdd\xae\xb3\x94\x54\x30\xaa\x6d\xa2\x57\xee\x04\xc2\x57\xdd\x5d\xd8\xed\xea\x1c\xab\x76\x7b\x84\x63\xb9\x3d\x05\x1d\xa4\xa2\x14\xd4\xb4\x45\x5c\xe3\x08\x5d\xf8\xef\x8a\x0b\xc7\x11\x56\x81\x26\xf0\x4f\x90\x23\xc3\x72\x14\xef\x15\xd7\x51\x55\x29\xd9\x61\xd3\xa6\xe5\x85\x39\x02\x9d\xcb\x6c\x5d\xee\xf1\xee\x03\xf1\x41\x2c\x59\x8f\xde\x6e\x72\x5a\x14\x12\x83\xd8\x16\xbc\x47\x13\xbe\xa6\x79\xef\x92\x4a\x94\xb7\x97\xe5\x75\x90\xea\x30\x7f\x1a\x42\x5b\x15\x2b\xce\xd2\x32\xf7\xce\x59\x0f\xb4\xce\x13\x75\x54\x9c\xda\x56\x1a\xa5\x8c\xc8\xa0\x96\xa4\x84\x92\x83\xcf\x08\xc7\x30\x27\xf3\xfb\x8f\xf4\x2e\x00\x39\x65\x0b\x9a\x03\xac\x2a\xdb\xc3\x6b\xdf\xe4\xd9\xa6\x18\x4a\xa5\xc7\x9c\xb2\xb2\x0c\x91\xe7\xbd\x37\xce\xb4\x65\xcf\x72\x84\x33\x99\x86\x33\x84\x79\x09\xf3\xe1\xcf\xdb\x9c\x5a\x8f\xf1\x0e\x46\xf6\xab\xb3\x3f\x7f\xfd\x7f\x31\x2c\xfd\xf7\xff\x13\xd0\xee\x47\x67\x35\x7e\xfc\xdf\x80\x16\xff\xfa\x3f\x0e\x2f\x6d\xd3\xdf\xd4\x00\xd5\x37\xff\x15\x80\xca\xd6\xfd\x6f\x0d\x73\x4f\xe5\xbf\x6b\xb6\x6f\x65\xb8\xd1\x60\x64\x0f\x5b\x5d\xb9\x67\xbd\x44\x01\x95\x3e\xdf\x30\x95\xd0\xec\x5f\xf6\x01\x48\x43\x16\x4c\xfb\x2d\x18\xf7\x5f\x78\xcd\x5b\xe0\xdb\xed\x2f\xa6\x71\x93\xfe\xfa\xc0\x4d\xfa\xaf\xea\x46\x53\x15\xfe\x28\x60\x78\x25\x62\xa1\x08\xe1\x7f\x83\xff\xfa\xff\x67\xef\x5d\x98\xdb\xb6\xd9\x46\xc1\xbf\x22\x71\x3b\x1c\xe2\x08\x52\x24\xbb\x4d\x5b\x2a\xa8\x4e\xe2\xd8\x6f\xdc\xda\xb1\x1b\x27\x4d\x52\xbd\x3a\x1e\x9a\x82\x6c\xd6\x14\xa8\x82\x90\x2f\x91\xf4\xdf\x77\xf0\xe0\x42\x80\xa2\x9c\xf4\xfd\xbe\xb3\xb3\x3b\x7b\x26\x13\x0b\x77\xe2\x8e\xe7\xfe\x44\x0c\xe1\x40\x01\xd9\x6f\x12\x36\xcd\xe5\x0d\xe6\x51\xd4\x7a\x4a\xd8\x58\x67\x86\x61\x2d\x41\x03\xe8\x60\xce\xb7\x29\x03\xcc\xfa\x7a\x19\x9a\x9a\xe6\x7c\x9e\x27\xb3\x83\x9c\x26\x6c\xeb\xcb\xc9\x0c\xbe\x97\xcc\xbc\xaf\xd8\xa8\x6a\x3b\x99\x6d\xb7\x28\x8a\xeb\xeb\xdc\x32\xb6\x02\xdc\xe0\x93\x96\xc9\x03\x65\xf4\x27\xc1\x10\xae\xe9\xa7\xa9\x36\xa6\x93\xc6\x44\xc5\x87\xb6\xdf\xaa\x9a\xf1\xfb\xaf\x30\x3a\x65\xa9\xa5\xc4\xc2\x58\xee\xbe\xd0\x36\x63\x40\x52\x49\xf1\x8e\x5f\x17\xf3\xc3\x1c\x18\x9a\xe7\x11\x52\x8c\x6b\x83\xc2\x59\xc9\x43\xaf\xae\xe6\x0d\xc8\x0b\x2b\x2a\x08\x47\xce\xc6\xd3\x5d\x59\xaf\x0b\x77\x3b\xbe\x79\x7f\x7a\x62\xe4\x6c\x2d\x06\xcc\xb5\xb9\xc1\x84\xb0\x1e\x35\x62\x14\x9a\xee\x94\x81\xa9\xa8\xd7\x67\xa7\x6f\x8b\x29\x45\x91\x2d\x00\xdf\x4d\x90\x55\x44\x5d\x80\x11\x0b\x23\x2c\xe8\x4e\x8b\x7a\x77\x3f\x80\xc6\x46\x6d\x4f\x19\xfa\x48\xcf\x2c\xbc\x5d\xc8\xb2\xc9\x7b\xb0\x11\xe8\xe2\x95\x40\x57\x61\xe6\xb5\x57\x30\xc5\xc4\x1c\xbe\x02\x93\x5f\x45\x24\xe4\x0b\xca\xe4\xdd\x73\x21\xe4\xc3\xbf\x52\xd2\x58\xa2\x92\xf4\x53\x7a\xa2\xf2\x7b\xdb\xfd\x7d\xe7\xee\xd4\x1d\xfb\xa6\x94\xed\x62\x4e\x84\x15\x34\x13\x95\xa0\x99\x59\xef\x84\x64\xbd\x1b\x68\x46\x49\xf9\x96\x36\x5e\x49\xf9\x26\xeb\x75\xa9\x9a\x4d\x09\xeb\x79\x13\x16\xa1\x5d\x86\x3f\xf5\x9c\xe8\x37\xd6\xc8\x86\x81\xc6\x7b\x66\xbb\x94\x57\x5d\x5a\x92\x24\x0c\xb9\x72\x51\x5c\x86\x61\xd1\x26\x24\x1f\xb6\x59\xaf\xbc\xcd\x16\x67\xec\xb4\x58\xca\x55\x5f\x86\xa1\xdc\x7b\x61\x98\x9a\xf9\xca\xcc\x7c\xe5\x1b\x98\xce\xaa\x34\x69\x0f\x36\x08\x79\x6b\x2d\x17\x61\x56\x9b\x2d\xbb\x65\x94\xdf\x62\xe7\xb4\xbc\x03\x40\x49\x5e\x8a\x5f\x3b\x30\x0a\xa4\x02\x49\x3e\x03\x32\x99\xd7\xe7\x55\x24\xd0\x48\xc3\x5c\xf2\xfa\x0f\x62\xb9\x01\x46\x01\x94\x33\x34\xf0\x20\xb6\x6a\xd1\x59\xf9\x47\x92\x67\x53\x23\xf3\x53\x95\x0d\x62\xdf\xe0\x93\xcd\x80\x68\x10\x07\x6a\x8b\x07\xb5\x41\xbc\x87\x93\x6b\xc1\xb2\xff\x60\x24\xa0\x31\xce\x8a\x29\x95\x33\x01\x87\x50\x6d\xac\x92\xe8\x25\x48\xf4\x62\xea\x85\x48\xf4\x8a\x6e\x86\xe5\x7d\x26\xd2\x9b\x08\x6e\xb0\x6a\x32\xe5\xd5\x91\x26\x25\xf5\x26\xc5\xd3\x6c\x8e\xb8\x32\x53\x60\x27\x01\x68\x26\x06\x7a\x95\x1b\xbf\x3b\xa5\x02\x6e\x98\x60\x83\x86\xd0\x58\x6d\x3e\x9f\x6e\xaf\x88\x4a\xe4\xd6\xfb\x6a\x79\x5c\xba\xc5\xf5\x8c\x1b\x36\xf8\x2e\xc9\x9b\x76\xdb\x9a\x66\xde\x6a\x91\xe2\x12\xe4\x6e\xb4\x2e\xc1\xf6\xf7\x5d\xb5\x79\x14\x65\x95\xd4\x04\xb8\x17\xaf\x76\x39\x4e\x89\xd5\x5b\x3b\x2d\xa6\x14\xe7\x55\xfc\x9d\x5c\xa6\x65\x15\x3f\x03\xb3\x20\xe5\x50\xaf\xa0\x59\x3f\x43\xff\x53\xcb\x67\xc8\x51\xfe\x59\x2a\x9c\x17\x0c\x57\x47\x46\x47\x97\x6c\x2e\x4b\xd1\x29\xd1\xdc\xe9\x05\x79\x3d\x4e\xad\x72\x42\xfd\x61\x5d\x8c\x16\x91\xb9\x47\xbc\x8b\x0c\xe7\x78\x89\xe2\xe6\xac\xfa\x03\x07\xac\xb9\xa4\x97\xd4\xdf\x73\xe3\xfd\x85\xe1\x14\xe7\xff\x7f\x40\xf5\xbe\xdb\x42\xf5\x52\x83\xea\xa5\xe6\xd8\xbf\xce\xa6\xb0\x8e\x0d\x58\x9f\x12\xd4\xf6\xe0\x90\xc8\x8a\x09\x81\x59\x7c\xbf\xa9\x8f\x59\x9e\x7f\x50\xeb\xfd\xad\xad\x55\xa2\x46\x46\xc3\xb6\x7a\x4f\xb5\xe0\x99\x03\xd7\x99\x44\x67\x53\xf5\x6d\x37\xbe\x86\xbc\x16\x5b\x26\x27\x3e\xe0\x15\xa7\xb3\x58\x6b\xaf\xbd\xa3\x33\x6d\x02\x7c\xfb\x6e\x04\xb9\x51\x89\xe8\x7e\xf6\x10\xdd\x14\xe1\x1c\xd2\x70\xde\x8c\xe8\xfe\xea\x18\xac\x58\x39\x6f\x69\x9c\xf6\xae\x8a\x22\xc7\xee\x73\x6a\xd2\x9c\xb3\x65\x92\x9c\x43\x1b\xa7\x3d\xc5\x5b\xc2\xce\xc9\x8e\x53\x63\x06\xc4\x3f\xce\xe6\xed\x48\x7b\xe5\x4d\xb2\xa0\x28\xb2\xc4\x55\xdd\xb0\xa5\xab\xaa\xf8\x06\x61\x0f\x48\xab\xda\x75\xa0\xbc\x38\xed\x25\xec\x11\x1b\xa8\x25\x4e\x7b\x72\xae\xb1\x9a\x7e\x13\x33\x2f\x84\x2e\x6c\xde\x08\xd9\xfb\x62\x4a\x37\xf8\xd7\x9a\xed\x0e\x77\x6e\xda\x03\x7f\x5e\xda\x03\x6f\x4e\x24\x0a\xec\xcc\xc7\x80\xee\x7b\x53\xa1\xaf\xac\xda\x44\xe8\x54\x7f\x74\x4a\x79\xcf\x19\x19\x24\xd8\x81\x29\x79\x00\x35\x2c\x5d\xdf\x0e\x4b\xdd\x6e\x66\x54\x60\x6c\x49\x11\xdd\xff\x24\xbf\x82\x30\xd8\x9f\xdf\x28\xa9\xa0\x85\xa1\xf6\x95\x9c\xc2\x8f\x5a\x10\x6a\xaf\xd9\x2e\x4c\x1f\x0d\x59\xb4\xff\x13\xf2\x24\x9f\x9e\xe2\xa0\x3a\xf2\x4c\xca\x7f\xb5\xe9\xb2\x27\x2a\xe2\x20\xbe\x80\x99\xdd\x64\xd3\x29\x85\xeb\x0f\x44\x7f\x83\xbb\xac\xcc\xae\x94\xe5\x3d\xd9\x7a\x9a\x67\x0b\x95\xe9\x89\x91\xe8\xeb\xd3\xd7\x04\x7b\x41\x7b\x65\xca\x8b\x3c\x57\xd1\xf5\xda\x53\x1c\xb3\xb9\x10\x33\x0c\xab\x6d\xf5\x30\xac\x6c\x52\x18\x5d\xb2\x88\xf5\x8a\x3b\xca\x67\x79\x71\xff\x19\x8c\xb3\xbb\x29\x9f\x20\x65\x1b\xdc\x6c\x24\x51\x7c\xbb\x3a\xdf\xe8\x89\xbc\x1e\x58\xcb\xd2\xb7\x0a\x6c\x8d\x4d\xc5\x43\x6d\xb7\xc1\xac\xc6\xd3\xb3\x22\x9e\x98\x15\xd9\xd6\xc6\x0a\x25\xd9\x19\x9f\x1a\xbd\x20\xc3\x3f\xb5\xc3\xca\x5e\xd0\x30\x4c\x7e\x11\xeb\x75\xf6\x8b\x0c\xbd\x10\xa3\x7e\x9c\xbd\x90\x6b\x57\xbe\x20\x6c\xbd\x4e\x7e\x21\x22\x0c\xcb\x5f\x08\x1b\x65\x5d\xda\xe5\x71\xf2\x8b\x8c\xbf\x60\xeb\x35\xd4\x2d\x7f\x61\xa3\xa4\x2b\x3a\x45\xdc\xdf\x28\x81\xb2\xbe\xcb\x44\x7d\x9a\xb3\x32\xa2\xf1\xdc\xe5\x99\xa2\x55\x4d\x97\x09\xad\x8c\xa3\x92\x30\xf4\x1f\x5f\xcd\xaf\xd4\xa3\x07\x90\x45\xa2\x28\x60\x22\x0d\x50\x94\x8c\xe5\x19\xa3\x80\x24\x5c\x15\x4b\x36\x4d\xf8\x23\x4e\x64\x05\x79\x3d\xe8\xf5\x7f\x03\x9b\x57\x2f\x46\x89\xcb\x46\xaa\x62\x36\xca\x1a\x69\x56\x12\xc7\xd8\x00\x1a\xbb\xdc\xe9\xbc\xfe\x98\xdd\x49\x30\xbc\xa5\x0d\x9b\x55\xa6\x52\x52\x6b\x8c\x44\x8f\x20\x63\xd7\x16\x97\xdd\xa5\x7f\x87\x73\x32\x9e\xe0\x05\xa1\xc3\x65\xb4\x40\x61\x58\x46\x0b\x34\x84\x83\x14\x2d\xc8\x42\x23\xa7\x80\xc1\x12\x42\x52\xb4\xca\x95\x1c\xf9\xc2\xb8\x6d\x5e\x38\x36\x50\x7a\x57\xc5\xf4\x31\x0c\x67\xd0\x50\x7b\x16\xed\xfa\xa6\x3c\x1f\xd1\x02\x27\x28\x0c\x6d\x73\x9b\xca\x8d\xa1\x56\xdb\xbe\xcb\xca\x65\x92\xcb\xfd\x0d\xde\x98\xfd\x68\x4f\xa3\x58\x8c\x51\xae\xb0\xc3\xab\x6f\xab\xa7\x41\x49\xa8\xa8\x76\x3f\x9e\x9b\x9a\x6a\xd6\x3e\xad\xd7\x8b\xe4\x9a\x7e\x3a\x9b\xcd\x4a\x2a\xf0\xa9\x9f\xfb\x59\xe5\x7e\xd6\xb9\xd7\x5a\xbd\x4e\xee\x86\x8c\x5d\x1f\xc0\x29\x52\xc2\xeb\xf8\x91\x5c\x1b\x0c\xf2\x8e\x5c\x6b\x4c\xe4\x25\xb9\x06\xfd\xc3\x4b\x72\xad\x75\x3c\xef\xc9\xb5\xd1\xee\xfc\x02\xa2\x78\x33\x81\xcf\x48\x50\x8a\x84\xc3\x15\xca\xd7\xeb\x80\xd1\x84\xd3\x52\x45\x47\x2f\xe3\x80\xb2\xa9\x0a\xdf\xc7\x2f\x3b\x8f\xcf\xf6\xf0\x7b\x12\xa4\x94\x09\x10\xf9\x20\xc5\xe8\x4b\xe7\xee\xd9\x9e\x2d\x56\x8c\x2e\xe3\x2f\xf8\x41\x2e\xb4\x72\xd6\x9e\x6f\x3b\x6b\x27\xf9\xf8\xed\x04\x1f\x92\x93\x9d\xc3\xb9\x20\x87\x66\x38\x07\xe4\x50\x0f\xe7\x96\x1c\xc2\x70\xfe\x26\x87\x7a\x38\x1f\xc9\xa1\x19\xce\x6b\x72\x08\xc3\xd1\xe6\xc1\xbb\x8c\xd2\xa9\xe2\x6d\xb2\x30\x7c\x09\xc6\xcf\xbf\xc0\xdf\xfb\x17\xe4\x2a\x0c\x2f\x5f\x90\x1b\x48\xbf\x85\x94\x8f\x90\xfb\x1a\xd2\xff\x36\xe4\x92\x87\xa1\x32\x27\xbe\x75\x47\x9f\x20\x7c\x6e\x85\x62\xa2\x57\x3d\xa5\x09\x7b\x42\x67\x5a\x45\x78\xd0\x47\xf8\xd3\x76\x81\xf7\xc5\xa2\xca\xff\x6b\x3b\xff\x9d\x1c\x53\x55\xe2\xdd\x76\x89\x57\x30\xd6\xaa\xc8\x31\xe9\xe3\x37\xa4\x8f\x8f\x48\x50\xc0\x1e\x81\xac\x20\x63\xad\x93\xd1\x49\xcf\x49\xea\x9e\xb8\x97\x6e\xf7\xbc\xfb\x57\xdc\xc7\x1f\x4c\x2d\xb5\x37\xfd\x6a\x2a\xcd\xd6\xd3\xd1\x4f\xdd\x77\x31\x30\xd3\x53\x42\xc8\x09\x3a\x76\xb7\xce\xe8\xcc\xd9\x2b\x67\xdd\xab\xd8\xdf\x49\xd3\xe8\x14\x9f\x76\xae\xf0\x15\xfe\x84\xdf\xe1\xd3\xce\x99\xfc\xdf\x79\xc4\x8f\x28\x3e\xeb\x5e\x3d\xdb\xc3\x6f\x9c\xc6\x8a\xd1\xfb\xd8\xdb\x64\xef\xbb\x37\xde\x26\x7b\xdf\xbd\x89\xa7\xd1\x1c\xcf\x3b\x37\xf8\x06\x9f\xe3\xbf\xf0\xbc\xf3\x5e\xfe\xef\xdc\xe1\x3b\x39\x31\x46\x30\x27\xea\xe3\xe3\xce\x29\xc2\x6f\xdc\x94\x37\x9d\x39\x52\xce\x3d\x6a\x23\xe8\xde\x76\x3f\x79\xa3\xf8\xd8\x79\xd7\xf9\xb0\x35\x92\x5b\xfc\x11\x5f\xc8\x71\x74\x3e\xe0\x33\x6c\x47\x11\xdd\x76\x2e\x9e\xed\xa1\xce\x87\xed\xd1\x74\x5f\x77\xcf\xeb\x23\x8a\x5e\x77\x0e\x64\xf1\xa3\xda\xc8\xfe\xee\xfc\xd5\x39\x8a\xa7\xd1\x6b\xfc\x37\x3e\x90\x63\xeb\x1c\xe1\xf7\x58\x8d\x4c\xbb\xe4\x3e\xd1\x37\x84\xdc\x73\xf8\xb3\x8d\xbe\x2f\x16\xc3\xb3\x0e\xf9\xdc\x8d\xbc\x09\x30\x92\x49\xd1\xe7\xce\x31\x3e\xf1\x9e\xe3\xee\x45\xe7\x03\x42\x08\xbf\xef\x90\x3f\xba\xd1\x9b\xc6\x5a\x7f\x74\xde\xd8\x5a\x6a\xff\x1c\x74\x8e\x10\x42\x9b\x07\x75\xa1\xae\x68\x1e\x9f\x80\xd2\xe4\xb1\xd2\x8f\x7c\x53\x19\x18\x78\xd8\x44\x14\xaf\xcc\x03\x16\x0b\x0c\x0f\x5c\x35\xa1\xb8\x7a\xff\x62\xe7\xd8\x6e\x9a\xbc\x37\x39\x14\x46\x9a\x83\xfe\xa8\xbc\x0d\x38\xa1\xea\xe0\x8b\x6a\x12\x08\xc3\xc2\x99\x21\xc2\x3d\x67\x4f\xd7\x3e\x43\x83\x80\x8c\xa7\x22\xcf\x25\x19\x2b\x0d\xa9\x4e\x86\x23\xe1\x8b\x0b\x55\x9e\x6c\x6c\x2a\x57\xe2\xa8\x9e\x68\x8b\x2b\x49\x55\x38\xb2\xb5\xc5\xb6\x6c\x6d\xe6\xc8\xd6\x16\xc6\xe1\x72\x01\x9e\x96\xb3\x71\xe2\xca\xd6\x26\x93\x21\x07\x79\xa3\x1d\x46\xaf\x9a\x85\x69\x33\x24\xd1\x63\xbb\x1e\x85\x91\xd0\xe1\xb8\xf0\x25\x9a\x2a\x37\x66\x5b\x7d\x14\x4e\x1f\x01\xb9\xee\x0f\xd9\x0b\x6a\x6c\x31\x34\x5b\x62\xf0\x58\x32\x96\x15\xb8\xd5\x34\x77\x9a\x66\xbf\x0c\x46\xac\x3b\x88\x41\xa0\x79\x30\x2c\x5e\xb0\x61\xd1\xe9\x20\x3e\x2e\x7c\x73\x0f\x85\x63\xee\xa1\x66\x0a\xc4\xb1\xd2\x1f\x86\xc2\x9f\x89\x31\x9d\x18\x93\xf0\x1c\x2c\xfe\x2c\x38\xbd\xa3\x4c\xbc\x2e\xee\x95\x2f\xc2\xd7\x0a\xca\x05\x6d\x6b\xdf\x94\x7b\xc0\xc0\xd0\x29\x98\x3b\x09\x40\xe9\xcd\x49\xd8\xd5\x0e\x50\x5d\xed\x14\xbf\xfc\xdf\x3b\xc5\xa2\x59\x57\xaf\x09\x1e\x14\x23\x01\x7c\x26\x05\xa9\x2f\x39\x07\xa2\x2f\xf2\xbb\x7b\xe9\x9e\xb6\xac\x3c\x5b\x50\x06\x27\x4e\x99\xd0\xa7\xd3\x63\x41\xe7\x70\xf4\x38\x2d\x97\xb9\x38\x00\x1a\x5c\x41\xd4\xa4\x66\xc5\xb2\x7c\xe7\xa4\x67\xb2\x0d\x41\xe7\xef\x8d\x0c\xaf\x59\xa3\x11\x1f\xf1\xb6\xbc\xf4\x78\x27\x68\xa9\x96\x82\x4e\x34\x80\x5b\x36\x68\x65\x65\x10\x07\x65\x2b\xe1\x34\x40\x9d\xa0\x95\xdc\x25\x59\x9e\x5c\xe5\x14\xb7\x24\x72\xb9\x5c\xb4\x12\x36\x6d\x4d\x8b\x7b\xd6\x4a\xb8\x84\x5d\x6f\xe9\x63\xd9\x12\x45\x8b\x25\x77\xd9\x75\x22\x68\xaf\x75\xce\x69\x59\xb6\x0e\xe5\xa5\x2b\x73\x65\xa6\x1a\x40\x2f\x88\x83\x20\x0e\xde\x16\xfa\xab\xf0\x95\xea\x0b\xbd\x20\x66\xa3\x2c\x62\x28\x0e\x82\x6a\x4e\xee\x3d\xb6\x5e\x44\x49\xdd\xf5\xc0\x88\x8e\xfb\x93\x58\xe2\x91\x62\x24\x62\x07\xef\xfc\xf2\xa4\xe7\xc3\x9e\xf0\x90\xd4\x33\x0f\x6b\x03\x9a\xf4\x46\xf9\xc6\x19\x07\x37\xd9\xf5\x4d\x2e\xef\x6d\x3a\x3d\x66\x53\xfa\x60\xcc\x04\xff\x01\x4c\x71\x1c\xa8\x95\x0a\x70\xe0\xae\x53\x80\x03\xf9\x85\x60\x52\x5d\x5a\x0f\xb0\xbc\x96\xf3\x0c\xd6\xb4\x57\x1b\xa3\x1d\x6b\x15\x8a\x5a\xef\x9b\x9d\xe8\x6d\xfb\x3a\x00\xb5\x59\xab\x1a\xb5\x41\x08\x3b\x92\x39\x6f\xdd\xcd\x74\x4b\x1f\x61\x27\xdd\xd2\xc7\x83\x62\x5a\x89\xde\xff\x42\xf6\x7f\x0c\x43\xf6\x82\x7c\xdf\x0f\xc3\xbe\xe7\x33\x23\x78\x29\xd7\x37\x40\x23\x1d\xe8\x08\x57\xee\xe7\xa4\xa6\x74\xd5\x1d\x0c\xa3\x6d\xf5\x0a\x89\x78\xbe\xe8\xaf\xd7\xe2\x17\xa2\x3a\x4b\xe8\x2f\xfd\x51\x77\x10\xf3\xce\xc0\x50\x94\x45\xc7\x76\xa7\x78\xd1\x1f\x15\x84\xc7\xc5\x2f\x1c\xbc\x68\xc9\x3b\x09\x56\xe1\x90\x3c\x7a\xb7\xee\x41\x84\xc0\x92\xfe\x81\x62\xee\x90\x20\xd8\x20\xfc\x43\xdf\x35\x81\x73\xe1\x62\x7c\x07\x91\x40\x43\xe5\x57\xde\xad\x46\xf1\x61\xe4\xbe\x51\x07\x0d\x0b\x64\x30\x1b\xb3\x4c\xd4\x61\x89\xbe\x7a\x3c\x9e\x46\x41\x32\x18\x3c\x76\x4b\x91\x88\x65\xd9\x9d\xd3\xb2\x4c\xae\x69\x25\x00\x20\xd6\xeb\x28\x02\x6b\x36\x1e\x61\x10\xe8\x39\x08\xf5\x4a\x2a\xac\xf9\xe7\x28\xc8\xa6\x01\x6e\x6e\x0e\x8b\x5a\x51\x5e\x80\x79\x5c\x55\xae\x21\x3f\xe1\x59\xd2\xcd\x33\xd0\xb0\x5c\x14\x79\x26\x9a\x1a\x81\x42\x9c\xe6\xf4\x2e\x01\xe3\xd7\xc9\x74\x0a\x46\xa2\xca\x96\x36\xa7\xab\x69\xc6\x49\x59\x66\xd7\x2c\x12\x3d\xf0\x8f\x20\x21\x0b\x09\x17\xc7\x41\x3f\xc0\x69\x9e\x2d\xe2\x80\x4b\x04\xa2\xdf\x82\x7f\x28\x30\xd4\xfc\x60\xb0\x78\x08\xf0\x3c\xe1\xd7\x19\x8b\x83\x2e\xc4\x0c\x11\x25\x36\x34\x20\xac\xcd\xe6\x40\x6b\x0b\xed\x01\x20\x0e\x92\xab\xb2\xc8\x97\x82\x06\xda\x50\x04\xb4\xb5\x91\x0f\x88\x44\x41\xe5\x1b\x43\xd9\xf4\xe0\x26\xcb\xa7\x91\x40\x46\x68\xeb\xd6\x10\xb9\x67\x9c\xd2\x2f\x34\x5a\x59\xa9\x09\x45\x4e\x5b\xb2\x5b\x56\xdc\xb3\xb8\x8f\xe7\xc5\xb2\xa4\x1f\x16\xf1\x00\xcb\x2b\xf2\x54\xc6\xe0\xc2\x8a\xf7\xf0\x2d\x7d\x94\x8f\x0a\x6c\xfa\x0f\x8b\x78\xdf\x4b\x90\x81\xf8\x7b\x93\xa4\x7c\xab\xc5\x3f\xd8\x38\x34\xf1\xdc\x44\xdf\x14\x73\x1a\xff\x58\x65\x4e\xe3\x9f\xe4\x7c\xa5\xb7\xf2\x7e\x88\x7f\xc6\x57\xf9\x92\x1f\xcb\x8b\x24\x1e\x80\x59\x37\x76\x4d\x75\x74\x60\x2a\x5d\x2c\x92\x94\xbe\x5a\x0a\x51\xb0\x78\xb0\xa7\x6a\x9b\xe8\x3e\x34\x60\x62\xdf\x63\xab\xae\x3e\x95\x37\x84\xe2\x91\x4e\x2f\x9c\x2b\x29\x1e\xfc\x80\x45\xb1\x4c\x6f\x64\x57\x06\xcf\x37\x08\xff\xbd\xad\xa8\xbe\x43\xaa\xa3\x32\xb2\xeb\x88\x47\x08\x6d\x8a\x71\xc8\x7a\xd9\xd4\x72\x9b\xb3\xe9\x7a\x1d\x4c\xcd\xbb\xdc\x0d\x3a\xea\xfd\x89\x6e\x3a\x1d\x84\x59\x6f\x4e\xd9\xf2\xb8\x2a\xad\xa2\xeb\xb5\x6c\xa2\x13\x74\x65\x34\xc0\xac\x97\x27\x57\x34\x77\x8a\xe9\xb8\x2d\x07\x71\x59\x10\x6e\x62\xa7\xa0\x8e\xdb\x82\xda\xa0\x3b\xf0\x01\xe5\x24\x38\x45\x6d\x8a\x4f\xcd\xb3\x8c\x23\x55\x5f\xd0\x79\x37\xe8\xd0\x8d\xf9\x96\xe1\x3b\xc9\x8c\x12\xf4\xba\x20\x08\x8f\xae\x75\x94\xbc\xfd\x1e\x13\x70\x72\xa1\x20\xc8\xe3\xa9\xa9\x28\x37\x0c\x4b\xf2\x0b\x0b\x5c\x36\xd8\x72\xe1\x3b\x61\x4f\xb7\x3d\x37\xf2\xa4\x45\xc7\x36\x01\xc8\x1c\x83\x0d\x46\x2c\xd0\xd0\xab\xa9\x9d\x2c\x6e\x94\x74\xc0\xb1\x1d\x98\xcf\xb5\xae\x06\x0c\xf3\xb2\x64\xcd\x65\xfd\xa2\x40\xb6\x54\xed\xbe\xa9\xbd\xa8\xbb\xec\x05\xab\x2b\xd8\xac\x97\x26\x88\xd6\x2b\x23\x5c\xb3\x2f\xbc\x92\xe3\x22\x0f\xf2\x62\xf0\xa6\x58\xc9\x3a\xb8\x96\xc7\x57\xf5\xa7\x3d\xa6\x1b\x2c\x10\x0c\x1f\x70\x0b\x75\x7c\xb2\x82\xd5\x27\xa0\xde\xea\xca\x7d\xfb\xd5\x6d\x53\xc1\x08\x71\x10\xe0\xad\x2f\x7d\x65\x54\x58\x41\x15\xf5\x62\xc7\x90\xba\xc1\x54\x2f\x91\xfc\xa8\xfc\xa4\x2f\x89\xcf\xd1\xea\x1b\x27\xe0\xa9\xaf\xfc\xf3\x3e\x7b\x93\x40\xdd\x19\xb0\xc7\xd3\x81\x48\x41\x5b\x4a\x20\xcc\x6b\x63\x79\x29\xb6\x37\x85\x1c\x92\x82\x17\xf4\xc9\x1b\xd3\xc9\x50\x91\x79\x0b\x30\x83\x6d\x6b\x47\x05\x94\xae\x9a\x74\x7b\x59\x9f\x29\xe7\xb4\x6f\x7d\x5f\xc9\x0e\xa8\x39\x43\xbd\xfa\x5c\x60\x60\x7c\x36\xcc\x6f\xd3\x09\xc6\x19\x4e\xc8\x6a\xb3\x83\x56\x6c\xe0\x9f\x36\x60\xc1\x75\x2c\xc8\x01\x35\x95\x4f\x63\x2d\xd2\x73\x6c\xd3\x0f\xe0\xe9\x88\x68\xaf\x2a\x8a\xbd\x45\xde\xe0\x6a\x28\x2f\xd9\xf4\x0d\xcd\x17\x94\x97\x11\xc2\xab\x0d\x88\xb8\x39\x92\x40\xbe\xd1\x11\xe2\x4c\x81\x86\x80\x52\x52\x8e\x64\x24\xa6\xc3\xd4\x9e\x4c\x60\xe9\xbf\x03\x23\x80\x3c\x12\x38\x45\x98\x93\x74\x6b\x24\x1e\x78\x6c\xf4\x43\x57\x1b\xbc\x74\x60\x5f\x1e\x86\xa9\x87\xef\x18\xdf\x54\x36\x01\x9c\x8e\xfa\x65\x10\x4e\x01\x9c\x27\xea\x67\xbd\xee\x63\xd7\xe0\x40\xba\x83\xae\x21\xc6\x74\xd2\x26\x24\x05\x19\xb6\x28\x19\xd3\x09\x84\x91\x86\xdc\x15\x03\x21\x5a\x9a\x74\xb9\xd6\xe5\x81\xf7\xc8\x2a\x03\x42\xb9\xad\x09\x30\x78\x29\x87\xf0\x1f\xaf\x62\xfa\x1f\xad\x62\x8a\x10\xce\x37\xc8\x13\xb0\xb9\x8a\x04\x8a\x90\x37\x13\x89\x71\x4f\xf6\xcb\xc0\xed\x04\x34\xa9\xbf\x9f\xec\xf8\x0a\xd8\x95\x76\xaa\xc0\xf4\x47\x35\xdc\x74\x57\x55\xab\x8e\x94\xb9\x6d\xe8\x2f\x66\x3b\xab\x55\x45\x3f\x94\xca\xb4\x4e\xc1\x76\x77\x70\xa3\xee\x6d\x5e\x14\xe2\x1d\x9d\x35\x6a\x80\xf6\x2e\x65\xee\xdb\x62\x4a\xd5\xc3\x75\x4d\xc5\xbb\xa2\xd0\x2c\xe2\xed\x73\x2b\x4f\xad\xa3\x9b\xba\xda\xc4\x14\x97\x24\xe9\x71\x3a\xfb\x8d\x3e\xe2\x94\x38\xca\x51\x01\xa7\xb3\x20\x2e\x71\xae\xf2\xf1\x92\xb8\xde\x26\x12\x3c\x0e\x54\xad\x00\x43\xc9\x09\xc2\x0b\x12\x39\x56\x56\x57\x9b\x58\xa0\x5e\xb9\x5c\x80\x80\xc7\x3b\x3a\x03\x66\x10\x9e\x55\x8e\xce\x16\x61\xb8\x18\xfa\x7d\xee\x29\x79\x63\xd2\xee\xd7\x06\xa3\xbb\x48\xd2\x7a\x7a\xfd\x03\x64\x36\xd4\x26\x2d\xdc\xcb\x4e\xbd\x0a\x43\x5f\x30\x08\x76\x61\x14\x65\xf2\x7d\x1d\xa7\x13\xf2\x32\xca\xab\xe9\x46\x38\xeb\x49\x9c\x84\x04\x69\x31\xbf\x2a\xae\x8a\x87\x00\x67\x63\x85\x61\xd0\x87\x45\xc2\xa6\x74\x1a\x4c\xc8\xd4\x26\xde\x24\xe5\xa2\x58\x2c\x17\xc1\x84\x04\x79\x56\x0a\xaf\x86\x04\x1e\x65\xe9\x91\x01\x17\xf5\x8b\xaa\xb3\x01\xf8\xcb\xe9\xf4\xea\x31\x98\x10\x0b\x2b\xe2\x0c\xe1\x25\x6c\x01\x03\x7f\x2b\x99\x8e\x92\xac\x2a\xd8\x7d\x9b\xae\x09\x00\xac\xb6\x89\xa1\x48\x4a\xea\x71\x33\xa2\x20\x5b\xd3\x52\x41\xc2\x00\xe0\xfe\x46\x1f\x47\x3f\xc4\x03\x65\xc5\x68\x5e\xdc\xd1\xfa\xab\x18\x31\xbc\x92\x17\x4a\xfc\xfd\x46\x7b\xe8\xd3\x76\x6c\xeb\x20\x84\x7e\x8b\xdb\x7d\xac\x8b\x37\xc8\xcb\x09\x03\xb5\x02\x4c\x15\xa1\x21\xfd\xa5\x0f\x56\xc8\xb7\x81\xaa\xe8\x24\x1a\x60\xf1\xf4\x1b\x86\x9c\xae\xc9\xe3\x63\xb0\x9e\xff\x3d\xd3\xd4\xfd\x21\xee\x7e\xcb\x44\xed\xff\xb3\x89\xda\xff\xaf\x4f\x54\xf7\x1f\xcf\x94\xc2\xf5\x9a\xe7\xc9\x69\x49\xd9\x8c\x57\xe0\x14\x27\x62\xab\x61\x30\xbb\x6f\x64\xbf\x38\x5a\x6d\x4f\xaf\x21\x93\xc0\x54\x00\xe4\xc3\x27\x38\xb3\xdf\x91\x43\x94\x17\xda\x11\x2f\xe6\x6a\x34\x5c\xd9\xf2\x07\xdd\xfa\x62\xbd\xce\xc2\x30\x03\xfb\x56\x15\xde\x3f\xcd\xca\xe4\x0a\xf4\x14\x8c\x99\x7f\x68\xad\x11\x5c\x8a\xd4\xb0\x9f\x6f\xd0\x66\x83\x35\xc2\xeb\x8e\x7a\xd7\x7e\xe0\xb4\xa4\x42\x57\xfe\x01\x7f\x05\x3a\x86\xc6\x59\xef\x0a\x70\xd9\xdf\x6a\xa7\x77\xeb\x11\xac\x1d\x6f\xbc\x0a\x5a\xc1\x37\xf5\x49\xc9\x86\x9d\x52\xb6\xd4\x1d\x1b\xec\xc9\x2f\x23\x83\xda\xfd\xf3\x2f\x03\x8a\xef\xc1\x14\x60\x4d\xcd\x4c\xe1\x51\xc6\x4b\x71\xc6\x4f\x92\x52\x83\x94\x14\xb7\xfb\x7a\x23\xfd\xb8\x81\x5d\x34\xfd\x87\xd5\x07\xba\xfa\x4f\xa6\xe7\xd7\x54\xbc\x87\x71\x29\x4a\x40\xfd\x2d\x33\xfb\xb2\xfe\x8e\x65\x44\xc8\x27\x38\xcf\xd2\x5b\x9c\x90\x48\x46\x80\x70\x8b\x65\x48\x4f\x04\xc2\x25\xd1\xd1\x0f\x0b\x9c\x42\xf8\x55\xbe\xe4\x38\xf7\x1e\x37\x81\xc7\x81\x6e\x2a\xc0\x81\x6e\x07\x42\xba\x1d\x13\xfe\xb0\x80\x90\x6c\x42\x3e\x80\xcb\xa6\x47\x07\x2f\xc8\x4a\x37\x16\xdf\x01\x6c\xa0\x76\x85\x9a\x73\x48\x47\xd8\xb6\x1c\xdf\x01\x3c\xe0\x16\xb1\x7d\xd7\x9f\x8c\xef\xa2\x72\xbb\xc8\x87\x85\x2c\x20\x7b\x12\xdf\x45\x69\x2d\x5f\x26\xa3\x0d\x9e\x91\xbc\x67\x8e\x8a\x9c\xb4\x45\xd3\x83\xa8\x56\x23\x50\xd5\x03\x2c\xdf\xc0\x2a\xe6\x3c\x57\x41\xbc\x1c\x05\xe0\xf0\xb3\x05\x34\x8e\x38\x28\x16\x94\xa9\x30\xae\x3d\x89\x31\xf8\xd2\x4f\x44\xd2\x55\x3b\x36\x00\x67\x6f\x33\x09\xe8\xe5\x68\xd3\x34\x18\xf2\xf4\xf6\x6f\xa8\x23\xe7\xa8\x61\x9b\xbc\x8d\x28\x1a\xee\x38\x89\x63\x01\xba\x1e\xbb\xf2\x14\x61\xc8\xea\x46\x24\x28\x62\x48\xe3\xa9\x5b\x4b\xf8\x95\xfe\x5a\xc8\x8f\xb2\xbb\x8c\x17\xcc\x93\x31\xd1\xb6\xf8\x34\x29\x95\x10\xf2\x64\x61\x25\xb1\x62\xb4\x48\x7a\xb3\x22\x5d\x96\x11\x6a\xa4\xbd\x34\x79\xb3\x61\x0d\x97\xc6\xfe\xc6\xc0\x9a\xf5\x4d\xd3\x68\x75\x57\x7d\x79\xf8\xd5\x2f\x4a\xf4\x02\x28\x91\x72\x5e\x95\x23\xf8\xf6\xd3\x63\xf3\x26\xa2\x82\xac\xbf\x5e\xb6\x97\x4d\x61\xde\x1c\x62\xd9\x3f\x98\x6f\x21\xcb\xbb\xf7\xfb\xe0\x7b\x3b\x23\xd7\x54\x9c\xc8\xed\xbe\x7d\x0d\x35\x9d\x9d\x1b\x31\xcf\x8f\x0a\x1e\xdb\x9e\xe0\x6c\x1a\x5b\x80\xce\x50\x39\xc0\xd0\xe0\x62\xb9\x05\xa6\x3f\x7d\xb5\xe9\x0d\x0a\xe2\x5b\xfa\xda\x52\xb7\x99\x42\x3b\xf4\x75\x06\x0d\xe3\x5c\x5d\x80\x2a\xe7\x3d\x7d\x10\x78\xfb\x7e\x73\xef\x32\xb8\xc1\x64\x40\xd5\x80\xe0\xb1\xf6\x1c\xe9\x36\x13\x4c\x10\x52\xe8\x2d\x08\xa6\xe3\x99\x77\xe3\xe1\x29\x99\xb9\xd8\xde\x8d\x8c\xaa\x4b\xf0\x8a\xcc\xb6\x41\x85\xea\x36\x5a\xaf\xa3\x68\x21\xe1\x70\xdb\x69\x22\x6f\xb9\xd4\x3c\x64\xfa\xa4\x41\x0e\xc2\x8b\x6a\x36\x88\xba\x52\x9d\x42\xf6\xba\x5c\xe8\x59\x22\xea\x4a\x75\x8a\xc0\x75\x88\x97\x64\x81\x1a\x2f\x40\x75\x79\x25\x4b\x51\xa4\xc5\x7c\x91\x53\x41\x83\x18\x40\x7a\x73\xaf\xa9\xfd\x33\xa5\x65\x4a\xd9\x34\x61\x22\x88\x6f\x2a\x5b\x5c\x15\x19\xe4\x2a\x0c\xaf\x7e\x21\xfd\x91\x43\xaa\x8d\xae\x90\x82\x16\x54\x43\x9a\xc2\x5d\x06\xf1\x4d\x0d\x33\xd8\xc2\x0b\xaa\x5d\x84\x65\xcf\x0e\x74\xcf\xe2\xa0\x98\xcd\x8c\x04\xb7\xde\x6d\x7a\xeb\x6d\xf0\xb2\xba\x60\xb7\x27\x68\xd7\x5d\x09\xe7\xae\x09\x7a\xd0\xb7\xe5\x8e\xac\x27\x2e\xcb\xad\x15\xfc\x2a\xed\x51\x1d\xc2\x01\xae\xe0\x62\x07\xba\xb2\x57\xdf\x9d\xda\x64\xff\x90\xa6\xb7\xa9\xf7\xc9\xbf\xe7\x6a\x1d\x6a\xba\xd7\x3c\x45\x9f\xc6\x1b\x26\x0c\xdb\xed\x7f\x72\xd1\xfd\x93\xd2\x3d\xf9\x8e\x96\xf4\x9f\x5d\x8f\xba\x8e\xbe\xfb\x65\x55\x4b\x38\xf0\x22\x95\xc8\xca\xb7\x37\x2e\x9f\x57\xef\xa2\xa7\x5b\xd7\x69\xdf\x5e\xa7\x72\x8f\xd7\x89\x19\xac\x77\x29\x93\x3d\x2a\x86\x7c\x9e\xfe\x3f\x44\xc5\xb0\x8f\xab\xdb\xf5\x3a\x31\xa3\xca\xf0\x89\x19\x55\xfa\x36\x31\x03\x3f\x49\xab\xd0\xb3\x59\xd1\x2a\xb6\x08\x0f\x1e\x65\x61\x19\x86\x4b\x37\x3d\x98\x8c\xe4\x65\xe3\x5c\x2d\x99\xe2\x7b\xa9\x9b\xa8\xa2\x3f\xe8\xfb\x6b\xc7\x7b\x85\xb3\xad\xe5\x48\x48\xd6\x2b\x18\xec\x89\xd3\xe2\x8e\x82\x22\xa4\x8e\xc3\x1b\x96\x42\x5c\x01\xeb\x39\x89\x32\x0b\xac\x67\x8a\x5d\x2f\x6f\xe7\x0c\xb0\x43\xbc\xa8\x1a\x5f\x6a\xc3\x6a\xf1\x12\xcf\xbc\x75\xcc\xe0\x41\xb3\x9f\x83\x47\xcb\x7e\x4c\x3d\x61\x5b\xc0\x7c\x66\x24\x1f\x04\x9d\x07\x13\x34\xb4\x5f\xc9\x47\x91\x26\xc9\x1b\x49\x5f\x9c\x1b\x22\xbd\x15\x26\x58\x20\x14\x1b\xc2\x7d\x3e\x21\x0b\x4d\x74\x4a\xf1\x0d\x89\x22\x21\x21\x7e\xdb\x1b\x00\xe9\xdd\xfb\x23\x6f\x13\xf2\x24\x29\x1e\xf8\xfa\x4d\x78\x7d\xae\x71\xa5\x3d\x40\x94\x12\xd9\xe5\x0b\x23\x37\xad\xb6\xd9\xb7\x02\x81\xf5\xba\x83\x0d\xc2\x7b\x3f\xf4\x15\xc1\xd7\x99\x3c\x40\x36\xa2\xaf\x00\xe3\xe0\xe6\x57\xcf\x31\xb9\x8b\xa6\x35\x8d\xee\x6d\x46\x84\x19\xc7\xcf\x4a\x2d\x57\x20\x80\x0f\x2a\xd4\xc4\xed\xc0\x8d\xbb\x71\x36\xf1\x4d\xe3\x93\x0d\xef\x5e\xf5\xca\xe6\x48\xe3\x2d\x85\xf1\xdd\x0d\x9b\xde\x20\xed\x41\xfc\xe4\xf4\xcb\x3d\xb0\xc1\x57\xf2\xf1\x9c\x55\x9c\xb3\x63\x60\x8f\x6e\xb1\x02\x4b\x32\x9e\x6c\xb0\xbe\xef\x9e\x66\xfb\xad\x36\x08\x53\xf2\x00\x92\x59\xdb\x8f\x9e\xc7\xa8\xd0\xa6\x2d\x3c\x62\x74\xf3\xc0\xff\x5b\xd9\x5d\x5f\xe3\x6f\x49\x24\x92\x6a\x51\x40\xec\x62\x12\xff\xed\x03\xdf\x4d\xb0\xb5\xc4\x32\xbe\xc1\x3c\x0c\xb7\x39\x9e\x5f\x7b\xff\x15\x93\xa8\xc6\x5b\xd0\x52\x3f\x2e\x30\x5b\x10\x6e\xa0\xd7\x8c\xf0\x6d\xe8\x15\xd8\x74\x3e\x4d\xce\xb5\xc9\xea\xa8\x4e\x28\x7e\xde\xf6\x71\xce\x30\x45\x58\x71\x35\xf4\xf3\x28\x51\xe8\xda\x7c\x36\x43\x48\x16\x32\x32\x38\x05\x60\xe2\xff\xa8\xea\xc0\x54\x55\x0e\x16\x2f\x40\xf2\xa6\x26\x97\x64\x40\x1d\x67\x5a\x44\xc5\xb0\xdc\x9a\x93\x09\xd6\x73\xe8\xcc\x49\xa5\x1e\x2f\x33\x5e\x0e\x06\x8f\xea\x4b\xa7\x4a\x14\xa8\xc6\xbd\x75\x76\x5b\xe3\x16\xc4\x0d\x92\x08\x71\xa3\x7c\x02\x76\x64\x0a\x63\xee\x9d\x05\x41\xe7\xb1\x00\x4e\xe1\xb0\x59\xb4\x81\xe3\x0b\x40\x2b\x76\x83\x40\x72\xff\xec\xf5\xfb\x48\x3b\x81\x35\x5a\xdf\x12\x0c\xd9\x75\xb8\x52\x92\xf4\xb4\xc1\x95\xad\xbc\xbc\x7a\xe4\xd2\x51\x19\xa7\x78\x59\x35\x74\x6c\xc8\x48\xb6\xba\x4e\x99\x55\x95\x16\xa3\x65\xbc\xc0\x53\xa7\x48\x85\x85\xcd\xab\x62\xd3\x51\x10\xc4\x53\x7c\x5a\x95\x73\xc5\x69\xf0\x75\x55\xf2\x54\x41\x06\xa7\xf8\xd2\x5d\xfd\xed\xc3\x96\x1b\x18\x7d\xe6\x5e\x1e\x73\x9f\x3e\x7a\xbd\x41\xbe\x6d\xdc\xcb\x1a\x03\xb4\xf2\xe5\x6f\x85\x5e\x6a\xa3\x08\xc3\xe8\xd2\x41\x2d\x49\xe3\xf5\xe4\x37\xab\xf8\xc0\xc0\xc1\xbe\xc4\x6c\xa3\xf7\x59\xa2\x10\x60\x6a\x0c\x78\x3a\x4a\xc3\x15\x14\x67\x0e\xcd\x81\x23\x8e\x5d\x6e\xb9\x63\x70\xe5\x53\x9a\xd8\xb1\x9e\x30\x37\x55\x2f\x9d\x5f\x4f\xbf\x1d\xd7\xdb\x9c\x76\x8f\x4b\x51\xb7\x5c\xa8\x6e\x55\x45\xe2\x96\xf5\x7c\x9e\x28\x45\xdb\xee\xeb\x1c\x67\x58\x2d\x36\xe6\x13\xb8\x61\x6b\xac\x5f\x8e\x46\x42\xcd\xea\x98\x4f\x62\x3a\xe6\x13\xcc\x36\x08\xaf\x34\xc2\x54\x2b\xde\x68\x3b\xd7\xc0\xc4\x95\xd5\xab\x31\x9d\x38\x00\xe4\x96\x38\x8d\xe3\x99\x43\xc1\x57\xc6\x78\xbe\xbb\x5b\x6c\x36\x54\x1f\xd1\x5a\x42\xdc\xf0\xd9\x2a\xb7\x9a\xaa\x5a\x06\xc2\xd4\xe9\x99\xc7\x71\x68\x1a\x9b\xd3\x44\x23\x4a\x54\x13\xa2\x74\xb9\x19\xc7\x53\x30\x18\x2a\x77\xa3\xd2\x99\xf0\xaf\xa2\x63\x26\x8a\x3f\x32\x7a\xbf\x63\x5e\x1a\x59\x22\x75\x0e\x55\xfd\x5c\x6a\x1f\x24\x5a\x98\x01\xbe\x6a\x3e\x13\x69\x07\x4c\x16\xe7\x52\x78\x59\x03\xfb\xaa\xd1\x0d\x97\xdb\x27\xc3\x89\xca\x66\x11\xfb\xa5\x6f\x1e\xd1\x13\xf3\x85\xa7\xd8\x4f\x0c\x19\x16\xcd\xf6\xb3\xc8\x25\x78\x21\x3b\xb5\x93\x6f\xb0\xc3\x4c\x67\x43\xdf\xba\x83\x21\x7f\xd1\x5f\xaf\xdb\xcd\x3c\xbd\xf5\x7a\x27\xff\xaf\xa9\x67\x62\xd4\x8f\x39\x66\x96\x32\x58\xe3\xd9\xef\x5e\xc1\xea\xf1\xdc\x7e\x34\x41\x8e\xd9\xa1\x9a\xf1\xba\x80\x7c\x51\x09\xcf\x67\xf5\xad\x6c\xdf\xc5\x44\x9f\x8a\x29\x2e\xed\x57\x2d\x97\x1c\xa7\x36\x6d\x8b\xb5\x82\x73\x9b\x57\x11\x3a\xf1\xd2\x26\x5a\xec\x14\x2f\xaa\x09\xb6\xd4\x4b\x3c\xf3\x66\x5d\xa5\x4d\xb5\x67\x24\x0d\xcc\xe0\x1b\xed\x7b\xc7\x80\x28\xf8\x8a\xd4\xd8\x57\x78\x4e\x1c\x8e\x1d\x8c\xfa\xb4\x9e\xa2\x91\x07\x7c\x4d\x76\x33\xf7\xf0\x23\xd9\xb5\x78\xf8\x8e\x54\xce\x77\xac\x18\x1c\x7e\xe9\xa4\x02\x88\xaf\xef\x9e\x95\x3b\x7f\x71\x89\x9b\xa6\x2e\x4e\xb1\x37\x6b\x71\x8e\xdd\x09\x8b\x97\xd8\x9b\xab\x78\x81\xdd\x69\x8a\x67\x18\x90\x86\xb8\x62\x2f\x62\x33\x65\xf1\x14\xdb\xd9\x8a\x6f\x70\x35\x51\xf1\x15\xae\x66\xc4\xbe\xb3\xce\xf4\xc4\xa7\xb8\x71\x66\xe2\x6b\xdc\x30\x29\xf1\x23\xf6\xe7\x23\xbe\xc3\xd5\x54\xc4\x2f\xb1\x2b\x07\x19\x9b\xa9\xb5\x29\xd8\x17\x94\x8c\xb5\xa9\x09\xaf\x88\x91\xc4\x8a\x1b\x79\xdf\xd8\x83\xf8\x32\x9c\x4d\xe3\x64\x1b\x6f\x11\x1e\x66\x62\x40\x8e\xc2\x87\x32\x38\xdc\x19\x5b\x56\x3a\x76\xb8\xae\xaa\xa9\xb8\xab\x5b\xc4\x82\x21\xca\xff\xbc\x06\xef\xb8\xf6\x26\xdc\x7c\xf3\xeb\xfd\x32\xa6\x15\x15\x0d\xd3\xea\x76\x9d\xec\xf4\x33\xdc\x92\xcf\xb8\xd2\x22\x5b\xaf\x59\x18\x5e\x83\x89\x41\x9f\xb4\xa6\xf1\x02\x77\x0c\xd4\x25\xb6\x11\x89\x00\x38\xd4\x4b\xb6\x95\x3f\xc0\x6d\x11\x31\xe3\x3c\x32\x0c\xe9\xf6\x25\x28\x13\x3d\x72\xdd\xa6\xc9\x70\x17\xb5\xb2\x4b\x67\x4b\x41\x39\x20\xfb\x11\x7d\x42\x72\xa9\xa8\xf7\xfa\x7d\xb1\x4c\x6f\x4e\x8b\x3b\x4a\x24\xee\x91\x3d\x91\xdd\xdf\xe0\xc4\x1b\x94\xbe\xdf\xed\x40\x70\x7b\x80\x86\x5e\xa5\xf5\x9a\xaf\xd7\xed\x86\xd1\xad\xd7\xb5\xd1\x3d\xff\xef\x19\x5e\x49\x9a\x41\x82\x61\xd9\xe0\xa8\x1c\xc4\xf3\xa7\x40\x8c\x62\x08\xef\x2c\xb1\x5c\x04\x98\x37\xe7\x83\x9c\xbb\xd2\x05\xc5\xc5\x13\x45\xe6\x40\xff\xca\x9e\x28\x01\xfe\xc7\x13\xc7\x15\x19\x5b\x2e\x6a\x6b\xd1\x04\xfe\x82\xaf\x7c\x17\x55\xac\xec\xf1\x95\xcd\x3e\xc2\xeb\x83\xde\x5d\xc8\x8e\xbb\xd9\x75\x7a\x7d\xe8\xbb\x4b\x39\xa3\xdf\x5d\x48\x4f\x00\x5c\x17\xe5\x4d\xb1\xcc\x35\x21\xac\x11\xde\x71\x88\xc1\xd5\x72\xd7\x2f\xa8\x51\xed\x9d\x8f\xab\xb2\x0d\xb0\x0f\x77\x1b\xdd\x6e\x8b\xc6\x62\xbb\x92\x85\x88\xb5\x2f\xf2\x86\x43\xdc\xa6\x76\xc7\x33\x90\x89\xaf\xdd\x86\x4a\x81\xa2\x36\x48\x75\x29\xd7\x51\x81\x9a\x64\xab\xfe\xa6\x86\x26\x9d\x2c\xc5\xce\x99\xd6\xa5\x26\x77\x94\x36\xed\xec\xe2\xf7\xfc\xe0\xde\xf2\x3b\xe0\x9c\x68\x57\xdb\x1b\x84\x15\x8c\xe7\x53\x36\xf5\x27\xdd\x65\x06\xec\xcf\xa4\x3f\x05\x90\x5b\xdb\x49\xce\xa6\x57\xa2\x07\x4d\xf6\x9b\x1a\x7d\x33\xb2\xe5\x42\xd5\x50\x46\x71\xb6\xdf\xa2\xfb\xa8\xc1\x42\x30\x9e\xa3\x61\x0d\x2a\x71\xa4\xd2\xb6\x85\x25\x07\x0d\x79\x9a\xc5\x60\x9c\xe1\x6c\xe5\x6f\xb1\x1a\x6a\x25\xb7\xb9\x18\x83\x86\xbc\xe6\xaf\x3c\xc1\xd0\xa8\x95\xac\x60\xa7\x86\xcf\x54\x90\x53\x95\xa9\xdf\xed\xfb\x88\xfa\x38\x90\x77\x3f\x57\xca\x6a\xa3\x5d\x93\xa6\x5d\x71\x2e\x1a\x7b\x39\x12\xf1\x97\x48\x20\x6d\x6e\x36\xca\xeb\x06\xf4\xb6\xa7\x33\x3a\x8b\x04\x42\x48\xa3\xa2\xca\xa0\x0d\x16\x9b\x28\xef\x39\xa6\xad\xec\x4b\xe3\x1b\x72\xda\x41\x2f\x52\x7c\x60\x8f\x06\x14\xb7\x07\xb8\x89\x86\x16\x5f\xfa\x60\x54\x93\xa4\xb0\xf6\x4c\x13\x04\xb1\xa3\xab\xe0\x49\x4a\xc7\x73\xbc\x2d\xbe\x0d\x89\x95\xb0\x32\x44\x9d\x1c\x05\x37\x42\xb0\x7a\x36\x6b\xe4\x1f\x7d\x49\xc4\x8d\x6a\x0a\xe0\x6f\x6c\x83\x9d\xf7\x33\x7e\xc2\xa7\xc0\x68\xb5\x89\x55\x08\xbb\x12\xfa\xcd\x4d\x8b\x0d\xae\x2f\x2c\x18\xc6\xf2\xb0\xe1\xf8\x74\x83\xa9\xa2\xa2\x68\x29\x07\xb0\x3c\x76\x0b\x1e\x30\x87\x69\x2f\xe9\x25\x5a\x3d\xf7\x9d\xf1\x22\x29\x13\x95\xc5\xae\xc6\x00\x58\x09\x93\x01\x6d\x74\x6c\x77\xd0\x96\xdc\x0e\x24\xec\xb1\xf1\x57\xdb\x16\xdb\x1d\xb4\xdd\x68\x4a\xfb\x96\x00\x98\x3d\x8b\x56\x75\xd8\x21\xb6\x85\x1a\xde\xd5\x2a\xd3\x00\xc5\xb1\xd3\x94\x4f\x19\xa9\xca\x7a\x90\x6e\x6c\x46\x79\x55\x4c\x1f\x4d\x64\x83\x36\x68\xf8\xc4\x76\x58\xaf\xd5\x2f\x98\x0f\xfb\x7b\x83\xbf\xc5\xbf\xa3\x03\xf0\xdd\xd3\xab\x45\x92\xde\x9e\x17\xf9\xe3\x2c\xcb\x73\xa0\x05\x4c\xe9\x82\xd3\xd4\x7b\x27\xd1\x0a\x5c\xab\x26\xe2\x06\x94\xdc\x2a\x5b\x9e\x50\xc1\x44\xc8\x78\xb2\xdb\x72\x78\x90\x17\xc9\x94\x4e\x03\xbc\xf2\xcd\x53\x5f\x53\xd1\x60\x76\x8f\xf6\xf2\xcd\xe6\x89\xc6\xb2\x6f\x6f\x28\xdb\x80\x8a\x69\x6d\xa4\x64\x80\x30\x6d\xf0\x37\xd9\x68\x6e\xed\xfb\x01\xc2\xc5\x93\x86\xe6\xb5\x6d\xf7\x59\x01\x2e\x82\x46\x55\x34\x0a\x38\x4d\x52\x61\x0c\x5c\x06\x28\x7e\xde\x1f\xf4\xf7\x71\xd2\x58\x4a\xae\x54\x92\xeb\x42\xcf\x71\xd9\x58\x68\xc6\x93\x6b\xa7\xad\x1f\x71\xda\x58\x4c\x0d\xe2\x72\x5e\x4c\xa9\x2e\xf9\x13\xce\x9b\xbf\xca\x8b\x59\x96\x53\xae\x8a\x0d\xbe\xc7\xcb\x5d\xc5\xee\xb2\xa9\x29\xd6\xff\x19\x2f\x1a\x8b\x81\x71\xde\x07\xdd\xbb\x41\x1f\xcf\x9a\x07\x51\xf0\xfb\x84\x4f\x2f\x39\x9d\xe9\x92\x7b\x78\xda\x3c\x8e\x65\xb9\xa0\xac\xd4\x83\x18\xec\xe3\x9b\xc6\x62\x73\x3a\x2f\x74\x91\x1f\xf0\x55\x63\x91\x3c\xf9\xf2\xa8\x8b\x3c\xc7\xf3\x6f\x59\x4f\xe3\x26\xa0\x52\x41\x3f\x75\xcd\x70\x08\x12\xdc\x08\xb1\x28\xe3\x67\xcf\xe0\x0b\x7f\x95\xbd\x82\x5f\x3f\x9b\x16\x69\xf9\x8c\xca\xcb\xb6\x3b\xa5\x69\x31\xa5\xbc\x77\x23\xe6\xf9\x28\x63\x77\x09\xcf\x12\x26\x48\xd0\xa1\x98\x91\xc1\x90\xbd\xa8\xdb\xaf\x50\x86\x2a\x3a\x24\x08\x13\x7e\x5d\x8e\x27\xb2\x28\x93\x6d\x7c\x78\x77\x5c\x19\x96\x74\x8d\x58\x98\x47\x35\x38\xcd\x58\x36\xcb\xe8\xb4\xf5\x4e\xf6\xa5\x05\x1d\x68\xfd\x5f\x41\x87\x76\x82\x61\xeb\x2e\x2b\x33\xd1\x0a\x3a\xa2\x13\xb4\x66\x05\x6f\x89\x1b\xda\x9a\x2d\xf3\xbc\xa5\xd5\xd1\x5b\x05\x07\x63\x10\x32\x9d\x15\xac\x3b\x37\x8d\x4d\xe9\x5d\xcb\x79\x9a\xa0\x32\x54\x84\xf6\x4b\x30\x1d\x61\x74\xcc\x93\xbc\x75\x43\xf3\xc5\x6c\x99\xb7\xee\x13\xce\x32\x76\x5d\xf6\x82\x8d\xf2\x9a\xb9\x02\x94\x9c\x09\xf7\x15\x74\xdc\x66\x62\xca\xfe\x5e\xd2\x25\x3d\x2a\x78\xaa\x6d\x41\xc7\xfe\xf5\xa3\xf2\xdf\x29\x07\x64\x8a\x9c\xd2\x54\xc0\x40\xd4\x5e\xe6\x06\x3f\x92\x95\xe3\x8d\xe7\xce\x1c\xf7\x0a\x02\x72\x9d\xf2\xd3\x07\x61\x1c\xf2\x73\x3a\x2b\xc9\xa3\x0b\x04\x73\xc2\xd6\xeb\x6b\xdf\x1e\x89\x67\xee\xe3\xbf\xda\xf2\x9d\xe3\xac\x4f\xbe\xb9\x49\x5a\x99\x14\x25\xab\x0d\x76\xf3\xcb\x66\x05\xc5\x6c\x16\x35\xbb\xa7\xb5\x5b\xde\x4b\xd6\x36\x20\xb5\xe5\x3a\x65\xb1\xee\x34\xfa\xe9\x07\xe3\xc7\x5b\x77\xaf\x57\x9b\x62\x6d\x4f\x1f\x0b\x1c\x98\x7e\x04\xc8\xef\xdf\xac\x5a\x4e\xb2\x25\x13\x5f\x6b\xd6\x59\x7a\xd3\x72\xe0\xd4\x97\x4d\xbf\x74\x6c\xdf\x3a\x9f\xd1\xde\x08\x1d\x9f\xd2\xca\x08\xcc\xf0\xde\x73\xc7\x71\x89\x79\x74\xef\x76\x0f\xe1\xfb\x5e\x56\x9e\x2f\x39\xad\xcd\x72\xbb\xaf\x5d\x0e\xae\xb4\x59\x17\x0d\xce\x9e\x6d\xbb\x53\xac\x39\x86\x7c\x4f\xc0\xae\x6c\x1b\x6c\x89\xca\x9f\xcb\xcb\x92\xe6\x26\x04\x7e\x72\xe3\x76\x7f\xe3\x19\x10\xf1\xdc\xda\xc9\x15\x4e\x94\xce\x79\x09\x3f\x46\xf1\xa3\x4d\x04\x02\x1f\xcb\xad\xcc\x65\x33\xc9\x7d\x04\x7e\xcb\x20\xe4\xa8\xe5\x01\x2b\x2c\x0c\xa3\x84\x04\x41\x07\x22\x08\x0b\x74\xa6\x55\xfd\x31\x47\x61\xd8\x7e\x5f\xd7\x69\x94\xa9\x51\x01\xdc\xb1\x31\x9f\x18\xed\xd0\xfa\x25\xd5\xdd\x93\x9d\x1a\x80\x6d\xc1\xa2\x7a\xfe\x19\x58\x02\x6b\xc9\xac\x17\x69\x75\x4b\xe6\xca\xbc\x4b\x94\x82\x9b\xb2\xe1\xf2\x45\x3a\x5c\x76\x3a\x28\x1f\x2f\x5d\x6b\x3c\xcb\xce\xde\x64\xe8\x34\x96\x6f\xb2\x59\x04\xd6\xde\x5d\x54\xa1\x9a\x81\x94\xd4\x72\x2c\x3d\x41\x76\xdf\x8c\x22\x85\x51\x68\x72\xf6\x77\xdf\xa9\x2d\x1f\x67\x4a\xc7\x88\x62\xb9\x54\x09\xac\x54\x89\xe1\xac\xc6\x05\xbe\x04\x8b\x9d\xf1\x17\x63\xd1\x67\x53\x33\xbf\xa2\x6f\xdb\x26\x6b\xa9\x95\x89\x4a\xda\x33\x1f\x23\x84\x64\x1b\x65\xac\xef\xd9\xbf\x9f\x75\x9e\x5d\xe3\x43\x32\x9e\xd4\x6c\x9a\x60\x60\x4e\x66\xb3\xe8\xd0\x38\xc8\xd5\x8a\xd1\x87\xbd\x45\xb1\x88\x2a\x0f\xd9\xda\x4a\x10\xa1\xb8\x90\x2b\x7a\xce\xe9\x2c\x7b\x20\x02\x17\x00\x4f\x12\x86\x0b\x7b\xcd\x70\x08\x2b\x2b\x05\x85\xb6\x5a\xb5\x52\xd5\xd5\xc8\x55\xe5\x58\x00\x0c\x14\x33\xac\x2b\xc6\x1c\x43\xb5\xb8\xbf\xa9\x59\x51\x31\x36\x8a\x8c\x79\xac\xaa\x03\x3a\x41\xf5\x41\x85\x4d\x37\x6c\x54\xf5\x64\xd0\xff\xc5\x8c\x31\x0c\x0f\x95\x74\x99\x6b\x12\xf6\xb6\xe6\xf5\xc4\x20\x6d\x7d\x7b\x9f\xb7\x68\xa4\x2d\x98\xaa\x49\x2a\xad\x61\x9a\xa1\xef\xfe\xbd\x0c\xc3\x40\x62\x13\x34\x81\xeb\xae\x5c\xaf\x23\xd5\x1d\xb3\xad\x95\x5b\x69\xed\xe9\x58\xa0\x54\x1e\x7b\xd8\xc1\xda\xce\x7c\xa9\xed\xca\x6b\x43\x43\x31\x44\xb4\x68\x4b\x0c\xa5\xc1\x9a\xa6\x32\xe4\xae\xf7\x43\xac\xeb\x0a\xbb\x01\x54\x23\xad\x0c\xaa\xb7\x12\xa8\xb8\x91\x9b\x3b\xb5\xfe\x28\x40\xbd\x3d\x00\x13\x8b\xa3\xa0\x17\x74\xfe\x8e\x04\xee\xa3\x98\x21\x3c\x50\x26\x02\xfb\x98\x91\x2a\x3f\x66\x9d\x20\x0e\xb0\x6f\x34\x49\x20\x54\x1d\xb8\xfe\x30\xaf\x1c\x05\xe5\xc6\x5c\xe4\x92\xb0\xce\xdf\xf2\xa6\x18\xe7\x13\x9c\xa3\x61\xda\x21\x34\x2a\xf1\x12\xe6\x72\x63\xce\xae\x99\x8f\x26\xa7\xce\x62\xb4\x84\x19\x8c\x97\x4d\xd0\x53\xb4\x24\xf3\x30\x14\xe3\xf9\x64\xbd\x16\xe3\xe0\x7f\xfe\x4f\x03\x3e\x05\x13\x34\x5a\x6a\xa1\xee\x06\xa0\x6b\x09\x3d\x17\x64\x69\x3c\x82\x63\x39\x82\x36\xdc\x69\x8c\x3e\x88\x08\xa1\xde\xb4\x60\x74\x88\x54\x8f\x49\xa9\xe5\x9e\xf5\x80\xb0\x1c\x21\x0c\xc2\x5e\x40\xce\xf1\x2c\xf5\xb3\xc6\xe1\x1e\xc4\xe6\x75\xdb\x1f\x60\xeb\xed\x55\x5d\xea\x13\x65\x94\x50\x57\x6d\xdd\x67\xe2\x46\x59\xc2\x5a\x05\x1d\x57\xb8\x40\xa0\xde\x5f\x45\xc6\xa2\x00\xb7\x02\xd4\x09\x36\x41\xcc\x71\x10\x54\x14\x97\x74\x23\x31\x94\x00\xb6\x71\xb5\xb1\xff\x76\x11\xf3\xaf\xdc\x1e\xfa\x3d\x96\x9f\x1b\x6d\xcb\x43\xac\x02\x12\xc4\x01\xe9\x07\x38\x88\x65\x60\x2f\x30\x9a\xf6\xc1\x77\x41\x27\x0a\x82\x0e\x88\x3f\x28\x47\xad\xcf\xc6\x24\x9e\x3c\xbb\xc6\x4d\xcc\x17\x31\xa6\x93\x0d\x42\x9b\x08\xbe\x84\x62\x61\x1d\xfd\x46\xfb\xcf\x9d\xae\x7f\x34\xa8\xa4\x4c\xd1\xbe\x81\xcd\xf9\xc6\xc2\x1c\xee\x4e\xc7\xa9\xf2\xda\xe7\x4a\x9b\x9b\x03\xf8\xb8\xf6\xda\x00\x8f\xb2\x5f\x6b\x13\x6f\xd9\x06\x7b\x15\x51\xcc\x31\x6b\x1c\x12\xdd\x20\xa5\x5d\xa0\x9c\x4f\xbf\x05\xaf\xbe\x51\x1d\x3c\xda\xf5\x1e\x80\xa5\x01\x78\x14\x04\x3c\x0a\xe0\xe8\x40\x3f\x0c\x9a\x39\x62\x9e\x07\xda\x53\x81\x8d\x5c\xec\xa2\x13\xb5\x61\x5c\xeb\x35\x58\xcb\xbb\xa5\x8f\x60\x37\x5b\xae\x5f\x10\xc4\xb0\x24\x30\xc5\x76\x59\x4e\x70\xf0\x5d\xf8\x4c\x6e\x1f\xf9\x87\x21\x84\xb9\xb9\x0b\x9d\x59\x7c\x55\x59\x6b\xd6\x62\xdf\x24\x08\xb4\x85\x0c\x06\x36\x13\x64\xd3\x6c\x47\xb3\x58\xde\xa5\xaf\x31\x78\x2d\xc5\x19\x34\x82\xf0\x41\xa4\xed\x2a\x9d\xd7\x60\x1b\xd7\x55\xa5\xa1\xcc\x9e\x9b\x37\xd0\xb9\x27\xeb\x50\xe2\xfe\xde\x00\x39\xae\xb1\x64\xc5\xbf\xc8\x4a\xc1\x53\xaa\xf2\xeb\xac\x5c\x24\x22\xbd\xa1\x3c\x3e\xc7\x6e\xc6\x2b\x99\x7a\x00\x3e\x08\xe2\x95\x41\xf3\x34\xa4\xe5\x96\x3b\x53\x0f\x32\x3e\x2e\x2f\x8a\x39\x55\x8e\x3f\x14\x35\x8e\x5d\xc7\x76\x14\x12\x89\x50\x46\xad\x62\xbe\x19\x8a\xde\x81\x81\x24\x56\xf3\x64\x11\xd7\xf1\x7c\x3b\x20\xc7\xc7\xb2\xda\xab\xe3\x49\xe5\x6a\x05\x36\x1a\xd8\x7b\xc7\x0c\x61\xbe\xc1\x5a\xc8\xe9\x9b\x9a\x93\xd3\xff\x11\xa6\x5f\x59\x10\x32\xed\xe8\x45\xd0\xaf\x6c\xc3\x26\x96\x15\x9b\x24\x96\xe5\xc4\x20\xac\x7d\xb2\x8b\x02\x0e\x44\x83\xb6\xb2\x3f\x00\xa1\x3e\xbc\xeb\xb0\x60\xb1\xc1\x05\xcb\xfd\x76\xb2\x59\xd4\x7e\x5b\x99\xb2\x36\x4b\x3d\xf8\x7e\xdf\x5d\xea\x0d\x16\x15\x69\x97\xdc\x61\xd1\x3b\xd2\x94\x09\x52\x62\xd1\x3b\xd7\x54\x05\x92\xcb\x88\xeb\xe1\x80\x5c\x62\xd1\xbb\x00\xf2\xc4\x69\x31\xa5\x24\x95\x51\xbd\xfc\x64\x8a\x45\xef\xf2\xf2\xe2\xf0\xe0\xdd\xe1\xfb\xcb\xe3\xb7\xef\x0f\xdf\xbd\x7d\x79\x72\x71\xf9\xfa\xec\xf2\xed\xd9\xfb\xcb\x0f\x17\x87\x97\x67\xef\x2e\x3f\x9f\x7d\xb8\xfc\x78\x7c\x72\x72\xf9\xea\xf0\xf2\xe8\xf8\xdd\xe1\x6b\xf2\x17\x16\x1e\x89\x7a\x4b\x3c\xc6\xd9\xc1\xeb\xf5\x96\xab\x38\x33\xc4\xbd\xe7\x3f\x82\x4c\xa4\x82\xbe\x78\xa4\xe8\x5e\x00\x5f\x82\x87\xe7\x5b\xfa\x88\x4b\xe5\x00\x05\x1c\xa5\xa8\x4b\xc0\x05\xd1\x2b\x4f\x74\xdb\xd0\x39\x4e\x89\x05\x2b\xbf\x02\xa9\xab\xbb\x08\x94\x1c\x25\x96\xe1\x43\xba\xf0\xc6\x37\xe4\x80\x51\xf1\xa5\x84\x8e\x1d\x40\x7f\xd9\x08\xe8\x2f\x15\xa0\xbf\x9c\x54\xf2\x8e\x62\xbc\x9c\x18\x39\xc4\x36\x21\xf9\x48\x42\xe8\xb1\x4c\x55\x37\xc6\xf2\x09\x3c\x60\xb9\x0b\x0f\x58\xa2\x95\x81\xff\x97\x95\xd1\xf3\x05\xe9\x0f\x17\x2f\x96\xc3\x05\xe0\x01\x0b\x17\x0f\x58\x6c\xe1\x01\x5f\xbf\xad\x77\x80\xf0\x29\x6c\x51\x65\xa4\xef\x40\x83\xa3\x8d\x64\xf2\x9a\xad\x29\x38\x61\x38\xa2\xa4\xfa\xe6\x02\x5f\xa6\x49\x9e\x2e\x73\x4b\x24\x9f\xbe\xca\x44\x19\x0b\x7c\xa9\xd7\x53\x2b\x66\xf9\xf1\x3d\x99\x20\x6e\x38\x4d\xa6\x4a\x3a\xa4\x8f\xcf\x35\x15\x4d\x81\x43\x07\x05\x2b\x97\x73\x1d\xdb\xa0\x9e\xc9\x75\x3e\xbd\xc4\x97\x06\x32\xa7\x72\x37\x9a\x2a\x84\x56\xa3\x33\x9b\xfe\xc1\xa6\x1c\x25\x12\xe5\x7d\x6c\x10\xa7\x7c\xe8\x5d\x65\x6c\xaa\xee\xa4\xca\x67\xbb\x50\xc6\x76\xa8\xbc\x0f\x84\xf5\x97\x33\xdb\x76\x77\xec\xbf\x1a\xb2\xb0\x26\xe5\x35\xdb\x67\xa9\xc6\x31\x33\x5e\x31\xd4\xcd\xe1\xfb\xa5\x22\x6f\xb1\xa2\xcf\x3d\xd9\xc4\x15\xbe\x04\x17\x1c\x14\x5f\x2a\x23\x89\x71\x77\x80\x2f\x35\x4e\x63\xfb\x33\xa7\xf3\xe2\x2b\x0f\xfe\x8d\x41\x00\xd3\x62\xbe\x48\xb8\xf1\xff\x01\xea\x4e\x00\xdf\x0a\x68\x69\x59\xd2\x83\x24\xcf\xaf\x12\x4f\xb9\xd9\xd9\x38\x9f\x22\xe4\x16\x52\x8e\x73\x74\xc5\xa7\x36\x9c\xa9\xa7\xca\xb8\xd5\x5e\xd3\xab\xe5\xb5\x92\xef\xf5\xa8\x5b\x90\x79\x38\x9b\xd1\xf4\xe9\x26\x55\x11\xb7\xc5\xe3\xf9\x42\x42\xe1\xd9\x9d\x76\x68\xb4\x75\x33\xfa\x0d\xd4\x8b\xeb\x52\xba\xb1\x93\xe4\xb1\x58\x8a\x6f\xe8\x87\x5b\xd0\xed\xcd\xe9\xae\xc5\x31\x15\x65\x01\xb7\x82\xe6\x6f\x7d\xa5\xd7\xc6\x4e\x95\xd7\xd9\x1d\x16\x83\x6c\x95\x99\x32\x56\x26\x23\xdb\xb2\xc7\x7e\x61\x45\xef\x52\xc5\xef\x28\x2f\xb3\x82\x91\x60\xf0\xbc\x37\xd8\xef\x0d\x82\x6f\xe4\x22\xf4\x95\xd3\x96\xef\x07\xca\x6b\xcb\xf3\xe7\x8e\x65\xd3\xe4\xff\x90\x95\xff\x29\x59\x59\x02\x29\xdc\x7b\xbe\x93\x68\x6f\xef\x47\xe4\xcc\x6a\x59\xf7\x76\x82\x53\x75\x0b\xea\x27\xc9\x25\xa4\xe6\x59\xaa\xcd\x60\xda\x59\xc0\xfb\x68\x28\xf8\xe3\xca\x98\xbf\x66\x38\x47\x9b\x54\x02\xad\xd1\x52\x93\x30\x0b\xa6\x3e\xbd\x44\x9b\x8d\x21\x2a\xe0\x5c\x11\x3d\x96\x32\xbc\x50\xe1\x19\x59\xe9\xa2\x1e\xa0\x95\x92\x76\x1f\xe7\x84\x6e\x1c\xf0\xbb\xee\xa2\x65\x89\x17\x50\xd0\xb6\x5b\xea\xee\xcc\x1c\x6f\xd4\xda\xe3\x0a\xe4\x5f\xa9\x9f\xb9\xa2\x1e\xba\x9c\x0b\x1f\x25\x53\x66\xd5\x02\x6d\x40\xb5\x0b\x02\xc0\xc1\x90\x1a\x00\x45\x39\xb3\x22\xf3\x88\xa1\xda\xfe\xd6\x5d\x2b\xf1\x0c\xdf\x00\xbc\x33\x6d\x76\x91\x2d\x67\x5b\xae\x52\x5a\x5b\xa5\xc1\xcf\x3f\x69\x10\xeb\x8a\xe4\x43\x6f\xca\xd6\xeb\x68\x29\xe7\x64\x41\xae\xd0\x66\x13\x71\x2c\x34\x98\x84\xa9\x84\x89\xfc\xae\xc1\x8d\xaf\xb8\x0b\x50\xbb\x4e\xe3\x87\xaf\x5f\x5b\xb2\x08\x95\x80\xd1\xa3\x79\x06\x1f\xc1\xfa\x1b\xb9\xb6\xea\x8c\x14\x84\xb8\xdb\x51\x77\xf0\x82\xa1\x5a\x8f\x7f\x7e\x0e\x50\xa1\xcc\xbf\x94\x67\x03\x86\x25\x7a\xf4\x41\xf0\x24\x15\xc0\x08\x2e\xeb\x55\x14\x20\x69\x3e\x0e\x34\x4b\x59\x97\x08\x30\x1f\x04\xb3\x0d\x8c\x76\x43\xea\x33\x66\xe6\x09\x1b\xf3\x09\x2e\x89\xc0\x29\x01\xc8\xf2\xbe\x0e\xbb\xa5\x5b\xdd\xfb\x19\xa7\x08\x0d\xef\xc7\xe9\x84\x64\xda\x06\x5f\xd6\x5b\xdc\x24\x25\x9d\xbe\xa3\xd7\x59\x29\xe4\x8d\x5e\xb0\xb7\xc9\x9c\x82\xc1\xa7\x5c\x5d\x36\x85\xec\x54\x8e\xf2\xfa\x07\x0a\x14\x86\x2f\xa3\x7c\x5c\x4c\xe0\xc8\x0c\x0b\xd2\xee\x6b\xfa\x50\x8f\xd7\xda\x1b\x45\x2f\xa3\xed\x54\xa8\x87\x65\x3d\x14\x17\x9a\xd0\xd6\x2e\xea\xdd\xfe\x09\x73\x39\x49\x9b\x8d\x67\xde\xbd\x02\xd8\xbf\x8c\xe9\xa4\xbe\x77\xfa\x7d\x98\x57\x99\x45\x04\x3e\x83\x1f\x67\x36\xc7\x6c\xd2\x9b\xd2\x85\x84\x34\x58\x9a\x51\x65\xf0\xfb\x92\x8c\x27\xf8\x9e\xac\x36\xf8\x8b\xfc\x73\xe6\xed\x93\xf7\x95\x12\x2f\x93\x3d\x05\x5a\x14\xf8\x5a\x46\x60\x1a\xab\x36\x37\x02\xd9\x13\x34\x16\x13\x18\xd7\xe3\x76\x99\xf5\xfa\x71\x2c\x26\x6d\x42\x14\x59\x57\x46\xb6\x06\xb2\x87\x05\x42\x43\x99\x45\x38\x06\x31\xd6\x0d\x0b\xc3\xbb\x48\x1d\xe6\x07\xd2\x8e\x9e\xe4\xfb\x3f\x91\x69\x05\x73\xbf\xad\x54\xcd\x39\x24\x7e\xab\x8e\xd3\x89\xfa\x39\xac\xdd\x23\x17\x1a\x43\xa4\xe4\x4a\xa2\x88\xbb\x9c\x1f\xbe\xad\x5f\xcd\x3f\xf5\x51\x65\x6f\x1b\xa4\x4d\xde\x16\x53\x3a\x54\x20\xf7\x4d\x24\xbf\x1b\x39\x19\x1a\x03\x02\xcb\xad\x35\x3a\xf4\xc9\xe8\x70\x64\x49\xc7\xf1\x21\x19\xd3\x49\x7c\x42\xa8\x4b\x44\x86\x6e\x9d\x18\x3a\xc6\x09\x16\xe4\x50\x2e\xd5\x21\xd1\x83\x92\x83\xc0\x8a\x9f\x42\x49\x7f\x48\x2b\x6a\x29\xed\x74\xd0\x45\x24\xe4\xce\xdb\xec\xa0\xde\xb5\xa8\xe7\xcd\xe2\xa3\x4b\xa5\xa9\x4a\xe8\x14\x97\x26\x86\x56\x1b\xe5\x08\xe7\x6f\x7c\x2e\x6f\xbd\x4f\xb0\xdf\x4c\xfe\x5f\x91\x72\x72\x45\x08\x39\x51\x34\x40\x42\xc8\xe1\x7a\x1d\xbd\x8e\x10\xbe\xf5\x8c\x9a\xbf\x73\x0e\xc9\x27\xe4\x7e\x13\x0d\x3f\x91\x76\x1f\x9e\x2d\x9f\x08\x80\x36\xb3\x8c\x25\x79\xfe\xb8\x92\x5f\xc5\x7f\x45\xfa\xc5\x3a\x26\xcf\xfe\xd7\x38\x7e\xd9\xfd\xf3\x32\xe9\x7e\xf9\xf7\xb2\xdf\x3f\xe8\x77\xe5\xcf\xeb\xe7\xf0\xf7\x27\x88\x1c\x41\xe4\x08\x22\x7b\x47\x47\xff\x5e\xf6\xf7\x7f\x84\x62\xfb\x3f\xbe\x86\xbf\x47\xdd\x7f\x2f\x07\x47\x32\x67\xaf\xdf\x3f\xe8\xc2\xcf\x6b\xf9\x17\x8a\xed\x0d\x7e\x92\x39\x07\x7d\x88\x1c\x1d\x1e\xfd\x7b\xb9\xdf\xef\x0f\xba\xff\x5e\xbe\xfe\x51\xd6\x39\xfa\x19\x72\x8e\x5e\x1f\xc8\xc8\xeb\x23\x88\x1c\x1d\xbd\x9e\xfc\xbf\xb5\x63\xff\xee\xf6\xfa\xdd\x9f\xe5\xa7\x5f\xfd\x28\x3f\xd3\x57\xdf\x7c\x0e\x9f\xd9\x3f\x82\xcf\x7c\xdf\x9f\xfc\x8f\xef\x9e\xe1\x37\x5f\x65\x19\x1e\xc9\x3b\xe9\x83\x77\x27\xfd\xe1\x3e\xb4\x1a\xd4\x48\xd2\x94\x2e\x44\xf9\x4a\x71\x34\x4a\xb2\xa7\x88\xf4\xfb\xea\xe7\x7b\xf9\xa3\x98\xc9\x89\x31\x0a\x27\x2f\x62\xc2\x1b\x12\xcb\x45\x92\x52\x52\xa8\x9c\xf9\xb2\x14\x1f\x4a\x2b\x5d\x43\x58\x25\xbb\x2a\xe3\xd0\x88\xe6\x60\x03\x8a\xa8\xbf\x52\x26\x2c\x13\xd9\x17\xfa\xe1\xdd\x89\x66\x70\x7d\x96\x43\x08\x0c\xe2\xde\x9a\x4a\x2c\x99\x17\xcb\x32\x7f\xbc\xa0\xe2\x18\x5c\x77\xbd\x3f\x3d\x69\x19\x17\x78\x12\xc7\x31\x91\x83\x1b\x9a\xde\xd2\x69\x2b\xb3\xa5\x8c\xd8\x9a\x36\xeb\x7f\x38\x55\x5e\x4b\x3f\x2a\xf8\xcf\x66\xbf\x79\x9c\xaa\x47\xc7\x66\x88\xc7\x9c\x06\xbd\x72\x91\x67\x22\x0a\x5a\xc1\x0e\x33\xb1\x9f\xe5\xbb\xc1\xe8\x3d\xcc\x74\x1f\xb7\x07\x58\xb9\x0b\xc4\xed\x01\x28\x29\x8e\xc7\x81\x9a\xef\x83\x9b\x84\x97\x14\xcc\xde\x40\xbc\x9b\xea\x84\x09\x1e\x07\xe0\xc6\x5e\x4e\x50\x80\x55\x18\x52\xb5\x01\xa4\x00\xb8\xd7\x3a\x45\x2c\x0e\xff\x5e\x66\x77\x01\x86\x70\x97\x42\x64\x32\x79\xd2\x37\xcf\xb8\x3f\x19\x7e\x06\xf7\xfc\xd0\x4f\x81\x07\xd0\xcf\xf1\x60\xe2\x77\x35\x48\xfd\x39\x0a\x70\x30\xe5\xc9\xf5\xb5\x0e\x97\x0b\x9a\xe7\x30\xc1\x01\x0e\x80\x6f\x12\xec\xf8\xae\x37\x29\x7b\xf0\xb1\x9e\x28\x4e\x8a\x7b\xca\x0f\x92\x12\x0c\x1f\x7a\xdf\x4d\x96\xa2\x78\x47\x25\x3a\x24\xbf\x43\x1f\x94\x48\xf3\x3b\xaa\xd8\xdc\x56\x5a\x10\x26\x22\x5d\x96\xba\x3f\x72\xdd\x28\xbf\xa3\x2f\xf3\xc5\x4d\xf2\x0f\xba\xe2\x7d\x3c\x48\xf2\xbc\xb8\x3f\x5a\xe6\xf9\x45\xca\x29\x65\xad\xa4\x7c\x64\x69\x4b\xf6\xe8\x48\x7e\x0b\x42\xe7\x79\xf2\xd8\x32\xf6\x85\xcc\x56\x93\xbf\x94\xb7\x8c\xa1\x05\x13\x38\xcf\x52\xb1\xe4\xf4\x98\xe9\x80\x44\x48\xe6\x6f\x0b\xa0\x51\x24\x82\xb6\x94\x67\x83\x56\x5e\x14\x8b\x16\x2b\x4e\x8b\xe9\x32\x97\x18\x8d\xcd\x07\xc3\x6f\x8b\x3c\x79\x2c\x8f\xc1\xdd\x60\x8b\xd3\x64\x7a\xc6\xf2\xc7\x16\xd7\xd3\xd0\xe2\x6a\xaa\xa6\xad\x32\x2d\x16\xf2\x87\x26\xf3\x9c\x96\x65\x2b\x13\x74\x7e\x21\xd3\xfe\xe1\xbe\xdd\xff\xfa\x12\xa5\xea\x60\x05\x38\x98\x2f\x73\x91\x2d\x60\x05\xe6\x4b\x01\x49\xd6\x16\xc4\xb7\x2c\xc2\x3e\x6e\xf7\xeb\x87\x24\x48\x93\x85\x9c\x2c\xb9\xe3\x8a\x7b\x96\x17\xc9\xb7\xb5\xf5\x7d\xc3\x81\x0b\xd2\x22\x2f\x03\x1c\xf0\xe2\x5e\xfe\x94\xd9\x17\xb5\x79\x13\xf6\x4d\x4d\x3e\x6f\x6a\x92\x17\xf7\x17\xb2\x01\xac\x3d\x88\x7d\x4b\x43\x3f\x7c\x65\x52\x01\x84\xf9\x17\x79\x36\xfe\x77\x37\x9e\x44\xe3\xa4\xfb\x65\x82\x9e\x5d\x57\x57\xf7\x6f\x2e\x81\x7d\x3c\x98\xf4\x44\xf1\x61\xb1\x30\x2d\x6d\xe0\x1a\x61\xa2\xab\xdc\x69\xb4\x92\x3c\xbb\x06\x04\xb8\x7b\x95\x94\x14\x36\x4e\xc2\x93\xab\x2c\xed\xca\xfd\xd7\x32\x89\x5d\x30\xb7\xda\x4a\x93\x85\xa9\x98\xe6\xd9\xa2\xbb\x48\xc4\x8d\x0a\x71\xb9\x1d\xd3\x22\x2f\x78\x17\x54\x0b\x16\x45\x0e\xd7\x62\x53\x5a\x57\x79\x12\x28\x75\x9e\x96\xfe\xd3\x31\x45\xa3\x93\x37\xe9\xb4\x98\x67\x2c\x71\x7b\x46\x99\x3c\x29\xdd\xab\x24\xbd\xbd\xe6\xc5\x92\x4d\x5b\xb3\x2c\xcf\xbb\xc5\x22\x49\x33\xf1\xa8\x22\xd0\x91\x59\x5e\x14\xd3\x2e\x34\xa8\xc3\xb6\x4c\xc1\x44\x77\x96\xcc\xb3\x5c\x87\xe5\x3a\x57\xa1\x6e\x32\xfd\x6b\x59\x0a\x9d\x20\x38\x15\xe9\x8d\x89\x3c\xe6\xba\xa0\xa6\x76\xa8\xc8\xbd\x9a\x8e\xeb\xfc\x71\x71\xd3\x65\xc9\x9c\xea\x60\xc1\x33\xca\x84\x1a\xef\x4d\xc1\xb3\x2f\x05\x13\x49\xde\x90\x79\x47\xb9\xc8\xd2\x24\x6f\x41\xa9\x6e\x32\xbd\xeb\x3e\xe8\x70\xc1\xb3\xeb\x8c\x75\x1f\x5a\xd9\x3c\xb9\xa6\xce\xd4\xe4\x54\x08\xca\xbb\xf2\x19\x85\xa8\xec\x42\xc6\xae\xf5\x88\xe7\x09\xbf\xa5\xbc\x4b\xd9\xd4\x04\xe7\x99\x0d\xc2\x46\x6c\x15\x77\x94\xc3\xba\x1a\xe7\x28\x55\x8a\xb8\xc9\xd2\x5b\x26\xaf\x85\x45\x92\x31\xd1\x05\xb7\x2c\xad\x45\xc2\x8a\x92\x76\x07\xad\x45\x01\x6b\xa9\xb0\xf5\xb2\x65\xfb\x04\x4b\xcc\x44\x0b\x04\x8e\x9d\xae\x96\xa2\x58\xe8\x7e\x41\xd0\x2c\x44\x29\x78\x76\x4b\x25\x88\xbe\xbc\xbe\xa9\xba\xe1\x27\x57\x7d\x29\x05\x2f\x6e\x69\x77\x9a\x94\x37\x20\x0c\xee\x26\x28\x37\x87\x26\x45\x0e\x22\x4d\x16\x6e\xf4\xaf\x22\x63\x26\x3e\xcf\x84\x1c\xe8\x3c\xb3\x15\x9c\x1e\xc9\x28\xb8\x86\x01\x5f\x35\xdd\x84\xa5\x37\x05\x57\xe1\x29\x4d\x0b\xf5\xd2\xab\x78\x35\x42\x89\xe0\xd4\x26\xb3\x4a\xaa\x46\xb0\x64\x59\x5a\x4c\x69\xf7\x2a\x9b\x66\x36\xc2\x25\x8c\x22\x63\xa2\xec\x2e\xe4\xac\xce\x5b\x77\xdd\x44\x3e\x4c\x57\x54\x64\x69\xeb\xae\x7b\x93\xb0\x6b\xf9\x95\xbb\x6e\x36\xa5\xc5\x35\x4f\x16\x37\x90\x3e\x4f\xc4\x0d\x9d\x27\x6a\xeb\xdc\x81\x67\xe8\x2e\x05\x6a\x67\x4b\xee\x28\xd8\x47\x8f\x2a\x68\xb7\x91\x1b\x7b\x6c\xdd\x17\x7c\x6a\xb7\xd0\x3d\xcf\x60\x07\xcd\x8b\x29\x6d\x3d\xcc\x73\x56\xc6\x0f\x79\xc6\x6e\x5b\x0f\xfa\xc0\x7f\xfd\x69\x30\xa8\x95\xe1\x05\xff\x0b\xff\x86\x9a\xe0\x07\xff\x1d\x85\xaf\xc4\x49\x2a\x96\xf2\x15\xd3\x31\x9e\xf2\x22\x37\x31\x27\x58\xde\x14\xf7\x3a\x28\x32\x61\x93\xc1\xb2\xfe\x7f\x5f\xff\x00\x44\x8a\x9f\x3d\xbb\xbf\xbf\xef\xdd\xef\x03\xe9\x73\xf0\xf3\xcf\x3f\x3f\x83\x8f\x05\xd5\xed\xfe\x30\xcf\x63\x79\x37\x05\x18\x82\x79\xc2\xae\x75\x10\xe0\xdb\x5d\xb7\xfd\x7f\xa5\x1f\x9f\x4e\x4f\x64\x5f\x7e\x7a\xc6\x0c\x14\xed\xf4\x47\x24\x57\xc6\x95\x58\xca\x8b\xb2\x3c\x83\x95\xfe\xa6\x47\x67\xf0\xb5\x97\xfc\x73\x0f\x46\xff\x86\xd3\x99\xae\x14\xd8\x84\x40\x55\xd7\x4b\x79\x03\x29\x5f\x9b\xc3\xbe\xec\x70\xc9\x53\x59\x52\x55\x48\x14\x02\x0f\x40\xeb\x5c\x69\xba\xfc\x57\xbb\xde\xb7\xef\xe5\x77\x84\xff\x07\x4c\xdd\xea\x51\xfd\xbd\x12\x92\x53\xc4\xb2\xcf\xdb\x24\x97\x91\x5c\x43\xe0\x02\x0d\x35\x33\x96\x14\x23\x90\x07\x04\xbc\x25\x6e\xf3\x30\x8c\xf6\x2c\xa2\x1f\x86\x51\x50\x00\x4d\x64\xdc\x9f\xac\xd7\xc1\x99\x09\x83\xf3\x72\x25\x9e\x34\x1e\xc8\x9c\xb7\x26\x8c\x10\x5a\xaf\xa3\x3a\x2d\xd4\x65\x2d\xef\x22\xb8\x08\xd7\x1b\x51\xad\x5a\x1b\x74\xad\x95\xe5\x17\x10\x4a\x35\x32\xd1\x43\x23\x4a\xa6\xdb\xd0\xd2\x68\x96\xd6\xa2\xe4\xd1\x4a\x90\x54\x0f\x62\x5d\xab\xaf\xa4\xd1\x8c\xdc\x9b\x49\x96\x63\x37\x1f\x1b\xb5\x59\x1d\x99\x8c\x95\x65\xe2\xa0\x4d\x48\x44\x49\x6d\x35\x15\x6d\x3c\xea\xe3\x1f\x10\x0a\x43\x65\x46\x4c\x79\x72\x1f\x6a\x98\x3a\xb6\x62\xdc\x1b\x3b\x3c\x64\x3b\x94\xcd\x22\x5e\x0d\xca\x19\x35\xd2\x03\xd4\xe3\x56\x72\x72\xfb\xa6\x31\x01\x23\x69\x7d\x6f\x1b\x97\xd3\xa9\xd2\x7e\x88\x8d\xd3\xf2\xf2\x6d\xf2\x36\x12\x48\x25\x3f\xaf\x27\xaf\xd7\x83\x5f\x44\xe5\x05\x1d\x68\x32\x05\x48\xbe\x46\x4c\x73\x79\xb9\x32\xca\x0b\x0e\x63\xb7\xd9\x3f\xed\xf6\x1b\xc5\x13\xf8\x80\x29\x5a\xaf\x4d\xec\x08\xb4\x27\xa3\xe3\x9e\xa0\xa5\x88\x28\x1a\x7d\x90\x27\xa2\xdd\x8f\xa3\x23\x15\x90\xc7\x16\x6d\x22\x81\xf4\xb4\x83\xe4\x1e\xd5\xfa\xb8\x95\xd1\x76\x81\x62\xea\xbb\x6f\x13\x18\x04\x7a\x50\x5c\xd4\xf1\xf2\x11\x1d\x17\x1e\x52\x3e\x21\xb6\xe5\xfd\xb6\xd9\xe5\x61\x18\x04\x31\x8b\x23\x41\x0a\x1f\xe5\xc7\xbc\x9e\x02\xd7\x17\x7e\xba\x77\x11\x23\xfb\x84\x90\xa8\xd0\xcd\x23\x45\x68\x28\xc2\xb0\xdd\x57\xd2\x88\x41\x2c\x3b\x8c\xf9\xc8\x1f\xc8\xdb\x0b\xa0\xdd\xb3\x86\x01\x32\x84\x10\xda\x7c\xb7\xe5\x4d\xa5\x59\x64\x28\x90\x47\xee\xbb\x5e\x73\x66\x4d\x84\x09\xe1\xa7\x5b\x75\xe4\x8d\x1a\x9a\x75\x72\x49\x4d\x1a\x49\x5d\x62\xbf\x92\x67\xff\x2b\xea\xfd\x0f\x34\xfe\xf7\xbf\xff\xfd\x6c\xf2\x0c\xff\xf9\xad\x1a\x41\x94\x92\x3f\xbf\x41\x25\x48\x34\x17\xab\xe9\x04\xb1\xe6\x52\x5b\x4a\x41\xbc\xb9\x5c\x93\x56\x50\xb1\xe3\xc3\x75\xb5\xa0\x6c\x67\x39\x5f\x2f\x28\x69\x2e\x57\x57\x0c\x2a\x77\x16\xd3\xab\xea\xf4\x72\x30\xc0\xe9\x8e\x81\x37\x28\x12\xe5\x3b\xc6\x5e\xd7\x24\x5a\x3e\x5d\xee\x12\x0c\x1e\x43\xe1\xbd\x3e\x5e\x34\x17\xf6\xf4\x8e\x66\xcd\x65\x3c\xc5\xa3\x69\x73\x19\x70\xe7\xac\x3f\x36\xc0\x37\xf4\x3f\x53\x4f\xba\xa2\x5b\x0a\xaf\x84\x36\x49\xf2\x52\x25\xe7\xd0\x24\xc5\x4b\xc9\x0d\x0d\x43\x3a\xbe\xa1\x93\xf5\x9a\xd6\xe5\x78\xf5\x91\xb0\x5f\x9c\x53\xcd\x0f\xa8\xc9\xbf\x19\xd5\x85\x46\xe7\x58\xa8\xd2\x03\xce\xca\x45\x9e\xc0\x85\xb6\x5e\xd3\x1e\x83\x5f\x5b\x77\xdb\xc5\x6b\x25\x5e\xa7\x1f\x0f\xf3\x6e\x30\xaa\x6f\xff\xc0\x48\xa1\x05\xea\x55\x10\x36\xe3\x5c\x9d\x24\x95\x5c\x54\xc9\x66\x9f\xab\x0c\x6e\x33\x2a\x11\x35\x9d\x95\x57\x59\x66\x2b\xa9\x8c\xe5\x56\xc6\x89\xdc\x3a\x1b\x5f\x12\xd9\x8e\xc1\x74\xbd\x2e\x23\x9e\xd8\x66\xb4\x64\x88\x15\xf6\xd1\xdf\xc9\xb6\x0a\x18\x81\x21\x5d\x20\xa5\x71\x05\xdf\x4a\x2c\xc8\xca\xf7\x10\xe1\xcf\xb5\xd0\x73\x1d\x04\xb8\xb6\x0a\x51\x00\xfb\x64\x14\x1c\x59\xc1\x9e\x08\x38\xfc\x28\x88\x9d\xb4\x40\xbf\xba\x0b\xd3\x27\xd8\x0a\xea\x99\x50\x39\x53\x3f\x47\x75\x48\xe7\xcd\x68\x0c\x3c\xa4\x01\x08\xca\x6a\x71\x9e\x11\xed\xb9\xd2\x3c\xc8\xa9\x6d\xfd\x6e\xfb\xbb\xef\x94\x56\x20\x7d\x10\x0c\xa7\xc5\x8a\xc6\x76\x76\x45\x72\x6d\x81\x0a\x0d\x4b\x68\x38\x01\x7e\x7e\x54\x3f\x83\xbe\xfa\xfd\x39\x56\xd6\x2e\x82\x40\x89\xf5\xb7\xa8\x05\x6f\x0c\xc7\xfc\x72\x4a\xaf\x96\xd7\x20\x8e\x0a\x92\xcc\x2a\x7e\x01\xe4\x4e\x9c\x11\x67\xfc\xda\x85\x38\x80\x5d\x32\x9d\xab\x74\x84\x39\xc9\x70\x46\x82\x00\x17\xa3\x8c\x04\xad\x28\x11\xad\xa0\x53\xf4\xe4\x06\x94\xb3\x6f\xb1\x92\x5f\x71\x10\xa0\x4e\x10\xcb\x4c\x89\xc9\xbe\x05\xb5\x03\x58\x03\x25\xf9\x1b\xb4\x22\xc5\xb6\x9b\xb6\xae\x1e\x5b\x41\x87\xc9\x3c\x84\x19\x09\xfe\xcd\x5a\xad\x56\x2b\x63\xad\xa0\x13\xf1\xf5\x3a\xf8\xa0\x18\xfc\x01\xea\x64\x1b\xd1\x21\x0c\x53\xd8\x1d\x72\x36\x37\xf7\x37\x59\x2e\xa7\xd0\x6e\x13\xc7\xb9\x3b\x4c\xad\x0f\x83\xea\xc3\x56\x81\x97\xbe\x4a\x84\xab\x07\xb1\xad\x39\x51\x01\xc6\xb1\x3d\xc4\x3e\x00\x19\x04\x0e\xcb\xed\x91\x7a\x0e\x17\x2a\xe3\x84\x00\xa1\xb2\x62\x0a\x13\x26\x21\x52\xe5\x0e\x14\x36\x92\x07\xb8\x4a\x40\x1e\x08\xa0\x57\xc5\x43\xa0\xa1\x73\x9e\x4c\x33\x05\xf6\x3b\xec\xb4\x3b\xaa\xd4\x5b\x2e\x81\x3c\xfe\x9e\x27\xe9\x2d\xe5\xa0\xda\xec\xa5\x34\x08\xd3\x41\x27\x47\x96\xcc\x1a\x6b\x02\x3b\x66\x86\xeb\x73\x4d\x85\x03\x8f\xbc\xa6\x65\xca\xb3\x85\x28\xb8\x92\x76\x37\xaa\x69\x15\x73\x08\x7c\x27\x92\x20\xe8\x58\xee\x72\x03\x07\x3a\x0c\x7d\x4d\x17\xbd\x3a\xcc\x55\xf0\xab\xee\x1b\x30\xd3\xb6\x2b\xab\xa4\xa2\x72\xc2\x78\x4d\x05\x98\x2a\x2d\xa9\xf0\xcd\xce\x6e\x6b\x60\x0b\xbc\x4a\x01\x56\x5a\x7e\x45\x01\xbb\xa8\x7c\xcb\xa2\x0d\x2e\x69\x4d\xe2\x19\x86\x8a\x33\xc7\x01\x2d\x45\x4f\x69\x7e\x0b\x4f\xed\x9b\xf5\xaa\xc8\x06\xe1\xd5\x35\xd5\x72\x98\xdb\xfd\xe0\xf0\xf1\x5a\xae\xed\xc1\x06\x97\xa2\x58\xc0\x3a\x7b\xd6\x23\xb6\x76\x05\xd1\x26\x29\x72\x2a\x68\x4b\xae\xd1\x66\x23\x91\x1e\x97\x39\xfb\xd2\xbc\x88\x6d\x07\x97\x33\xfb\xd8\x6b\x0c\xd6\x57\x54\x98\x92\x31\xc7\x69\x86\x11\xa9\xbd\x30\x74\x8c\x65\x71\xbd\xe5\x68\x4f\xef\xb9\x51\x20\xf8\x92\x06\x71\x30\x4b\xf2\x92\x06\x31\x55\xba\x31\x20\xbf\xca\x91\x42\x2e\x23\x70\x91\xa5\x9a\xa4\x08\x10\xf3\x4a\x61\x95\x7a\xa6\x0d\x4d\xb3\x56\xe3\x2c\x5a\x6d\xe4\xa4\xfb\x8c\x3a\x2d\x2f\x89\x5d\x5e\x9e\x49\xbb\x73\x23\xba\x35\xad\x92\xc1\x46\x2c\xa6\xbd\xcb\x7b\x9e\x2c\x16\x94\x83\x4c\x9d\x31\x73\xaa\x1b\xde\x38\x3d\xbb\xf7\x7a\xa6\xc0\x0b\xd1\x73\x3f\x29\xd1\x0f\x3f\x05\xab\x05\x6a\x57\x03\x19\xd9\x50\x55\x54\x7f\x6c\xc8\xc8\x35\x35\x82\xdb\x6a\xda\x46\xfa\x37\x66\x08\xd7\x7a\x4a\x56\x7e\x57\x63\x8e\x75\x82\xb1\xc9\x56\x39\x6b\x8e\xfd\x7b\xc7\x88\x5a\x55\x97\x0f\xa4\x8c\x6a\x5d\x8d\xbd\xae\x38\x57\xe1\x17\x3d\x13\x2a\x3f\x12\x55\x15\x14\x86\xbf\x47\x14\x57\x7c\x1e\x30\x0b\xe6\xb8\xc0\xd7\x35\x75\x0b\x7a\x87\x5d\xd3\x48\x98\x6d\xc2\x75\x67\x2a\xc4\x9c\x21\xc7\x7e\x33\x1f\x45\xda\x1a\x5c\xa0\x6e\x58\xa8\x26\x41\x35\x08\xb4\x95\x0f\x78\x1d\x23\x80\xbc\xc6\x36\x0f\xe2\xf5\xec\x4a\x47\xab\x5c\x5e\xcd\x33\xb8\xb8\xe5\x33\x05\x06\xca\x20\x82\x5c\xb1\xec\x6d\xbc\x54\xdf\xb1\x68\x28\xb6\xb0\x3d\x9d\x33\x7a\x80\xe1\x2a\x01\x12\x86\xe2\xed\x82\xee\x9e\x09\x50\x18\xba\x15\x60\x76\xdc\x02\x08\x61\xb3\xfb\xf4\x3c\x1b\x15\xad\xfa\x8e\x82\xb1\xfa\x49\xa4\xdd\xae\x97\x72\xd6\xe7\x3d\x75\x24\x39\x76\x8e\x47\x42\x6b\x4f\x8f\xa0\xb2\x1a\x6e\xd6\xb2\x6d\xe7\xb7\x4d\x08\x0f\x43\x3d\xbf\x6d\x98\x6c\x47\xf5\xe0\x4e\x99\x16\xd6\x34\x19\xb3\x2d\xac\x0f\x39\xb8\x1d\x9b\x8f\xac\x3a\x70\x6c\xbd\x16\xee\xc6\xb0\x8b\x2d\xe4\x09\x72\x7b\x49\xc4\x06\x20\xcb\x88\x11\x05\xe8\xab\x9d\x23\x43\x24\x08\x9c\xd2\xd5\xcc\x3d\x7d\x59\x60\x68\x8e\x55\xad\xb8\xfa\x76\x0f\x76\x66\x5d\x6b\xe4\x61\x48\x7b\xa0\x1c\xf0\x7a\x97\x23\x24\x39\x04\xb5\xda\x6c\x54\xeb\xff\x57\xa6\x22\xf6\x8b\xbb\xdb\xbf\xde\x0c\x73\xdf\x8b\xb7\xd4\x17\x2e\x22\x45\xb4\x32\x52\x14\xfa\x1e\x05\x97\xca\x91\x68\x00\x40\xaa\xd7\x81\x5b\x8d\x27\x4b\xb5\xa5\xbe\xda\x4f\xa5\x17\x27\x3a\x44\x1b\x63\xde\x44\xc2\xea\x5a\x20\xb5\x20\x56\xf5\x02\xec\x03\xdb\x6e\x9e\x50\x8f\x74\x29\x81\x30\xe5\x5a\xa0\x04\x23\x6a\x20\xbf\xa2\x85\x1d\x0b\xd2\x1f\x16\x2f\x98\x11\xa9\x2a\x3a\x1d\x24\xc6\xc1\x77\x41\x87\x8d\x8b\xc9\x84\xb4\xfb\x50\x92\x91\xfe\x90\xbd\xa0\xae\x84\x72\x41\xb6\x37\xfa\x77\x12\x16\x62\x13\x73\x5f\x41\xd8\x70\xae\xdb\x40\x8b\x8a\xbc\x34\x52\x20\x5c\x84\x21\x37\xe9\x7a\xee\x8d\x95\x6f\x22\x5f\x3f\x79\x05\xad\x54\x1f\x82\xa0\x23\x1f\x01\x30\xea\x2e\x9f\x76\xd5\x77\xea\xf6\x1d\x86\x3b\x2e\x74\x17\xe4\x6d\x68\xb1\x50\x99\x5a\x56\x2d\x83\xb0\x6a\xa4\x3e\x5d\x34\x7e\x1a\x0d\xcd\x49\x93\xb8\xb5\x2c\x53\xb9\x7f\x12\x44\xa6\xa0\x8d\x29\xa1\x1f\x6e\xa7\xdf\xd5\x6a\x1c\x52\x6b\xe9\xc1\x5e\x45\xcd\x02\x37\x75\xa1\x4b\x47\x5d\xcf\x3c\xee\xde\x93\xdd\xf4\xa6\xdb\xed\xf8\x95\x23\xe0\x3e\xdf\x17\x35\xc0\x02\x3e\x52\x29\x12\x6a\x95\x2c\x52\x6d\x3f\x2c\x6a\xcf\x3b\x36\xef\x91\x33\xca\xfa\x68\xf6\x94\x58\xae\xaf\x24\xca\x94\x58\x62\x3b\x1a\xfc\x42\xcc\x2e\xdc\x92\x99\xdd\x47\x80\xa6\x8d\xfb\x93\x8d\x20\x6c\xa3\x6f\x78\x90\x46\x0c\x00\x91\x12\x9b\x5d\x10\x80\x9a\x1b\xd8\x36\xae\x6c\xa2\x37\x60\xff\x8d\xdd\x7e\x53\x1c\x35\x4e\xb5\x0b\x99\x04\xd6\xa8\xb9\x8f\xed\x35\xca\xaa\xc7\xc7\xad\xef\x18\x46\x30\xb7\x4d\xc3\x55\xc3\xf4\xd3\xd5\x26\xbc\xf1\x1e\xe2\xae\xe6\xbd\x8f\x6f\xd1\x07\xa1\x65\xaf\x86\xea\x7e\xdf\xbd\xea\x12\x36\x50\xfb\xd5\xd9\xb9\xd5\x33\x00\xc2\x61\x7f\x53\xb2\x93\x27\x75\x23\xe6\x79\x80\x3f\x36\x96\xd8\xeb\xf7\xfb\xcf\xca\xbb\xeb\xa0\xa2\x71\xbd\x76\x11\x53\x83\x91\xca\x22\x06\x8b\x7c\xaa\x15\x28\x3c\x4f\xc4\xcd\x13\xa5\x81\xc3\x77\x9a\x88\x1b\xf8\x73\x7a\x12\xd4\xd1\xd4\x27\x07\xe2\xec\x88\x57\xfe\xcd\xae\x29\x64\xeb\xf5\xd3\x0d\x80\x0b\xa1\xd7\x40\x7f\x7f\x6a\x28\xca\x08\x7e\x30\x2b\x38\xcd\xae\xd9\x59\x45\x65\x1a\x3d\xdd\x7c\xac\x94\x74\xcf\x29\xfe\xd4\xa4\xf1\xd2\x88\x59\x9e\x5e\xbc\x5c\x2c\xc2\x10\x7e\x7a\xf4\x81\xa6\x1f\x58\x99\xcc\xe8\x49\x91\x26\xf9\x91\x6e\xa2\x62\x9f\x58\x61\xd8\x27\xcb\x37\x39\xe5\x51\xfc\x81\x0d\x42\x9b\x98\x6e\xa2\x68\xcb\xa8\x8d\x7a\xe7\x81\x73\xf1\xe1\xdd\x71\x9b\x90\x8f\x72\x36\xad\xd4\x60\x00\x52\xdb\x72\x73\xea\x04\x22\x86\xf6\xaa\x8f\xce\x29\x39\xa7\xeb\x75\xb3\xd4\x73\x14\x4c\xb3\xbb\x00\x21\xa7\x6e\xf0\xa2\xbc\xbb\xfe\x25\xe8\xe8\x63\x7c\x36\x8b\x50\xa5\x20\x8f\x3a\xc1\x8b\x67\x90\x8f\x05\x39\xa7\xbd\x59\xc6\x4b\x01\x0f\xf0\xd0\x8b\x20\x03\xbf\x42\x34\x72\xf3\x94\x72\xc0\x50\xd4\x8a\xcb\x43\xc6\xa6\xaa\xb8\x9b\x27\xd1\x62\x47\xb7\xe5\xaf\xea\x01\x10\x95\x5b\x66\xa7\x29\xed\x84\x18\xce\x6e\x9e\xe8\xd4\x30\xdc\x07\x46\x23\x2b\xa6\x60\xe6\xcf\x05\xb5\x23\x95\xfc\x87\x39\xb6\xde\x25\x40\x1c\xca\xd0\x3b\xef\xa2\xab\xfc\xfc\xb3\x71\x8d\x00\x33\x91\xf0\xa8\xcf\x18\x1e\x07\x1f\xe9\xd5\x6d\x26\x82\x0e\x9d\x90\xe0\x5e\x87\x85\xcc\x38\x2d\xbe\xa8\xd4\xb9\x0c\x08\xcc\x94\x7c\x32\x25\xab\x84\x65\x73\x90\xfd\xa0\x6c\x1a\xbf\xa3\x51\xf0\xd2\x24\x04\xb8\x0a\x1f\xb2\x69\x80\xb0\x2d\xab\x88\xd6\x59\xc1\x76\xd7\x38\x36\x45\xdc\x7a\x20\xa1\xb3\xbb\xce\x05\x48\x92\x21\x2c\x78\xc2\x94\xb8\x89\xe9\xd4\x7b\x9b\x12\x60\x27\x02\xdd\xda\xe0\x37\x94\xac\x36\xf8\x88\x7a\x72\xbe\x1f\x0c\xa9\xe0\x0d\x1d\xd3\x89\x59\x0c\x88\x00\x0c\x7f\xec\x26\x2b\x05\x75\x81\x19\x81\xe4\x4a\x51\x81\x21\xb9\xd6\x4d\x64\x22\xc8\x3e\xa2\x5e\xc3\x84\x8d\xc5\xa4\xd2\xe2\x7e\x08\xc3\xe8\x88\x92\x27\x4f\x45\x0f\xa4\xaf\xdc\xa9\x06\x5d\xa1\x8c\x59\x65\x84\x48\x53\x44\x8e\x69\xcf\x5d\xac\x2a\x82\x1b\x0a\xd8\x15\x7a\xba\x18\x2c\x48\x15\x45\xde\xe4\xd6\x3b\x52\xd5\xf7\x16\xc8\x89\x29\x24\xf8\x0f\x4a\x3e\xd0\x28\x70\x3b\x1b\x20\xfc\xb9\x96\x9a\x39\x1b\xe4\x5f\xb5\xbc\x52\x6f\x84\xdf\x54\xba\xf7\xb9\x00\xe1\xef\x28\x09\x92\xab\x82\x8b\x56\x9a\xb0\x05\x48\xa2\xaa\x5f\x2d\x5c\xd5\x9a\x2e\x55\xd3\x29\xa8\x13\xb7\xe8\x7c\x21\x32\x3a\x6d\x51\x96\xf2\xc7\x85\x80\xd0\x54\xfe\x05\x7d\x3b\x65\x3c\x71\x9a\x88\x44\x07\xe7\x54\x24\x36\xaa\x84\xca\x16\xc9\xb2\xa4\x20\x83\x0a\x7f\x32\x76\xdd\x5a\xf0\xe2\x9a\xd3\xb2\x6c\xf1\x44\x50\xfd\xa1\x92\xd2\x5b\x90\x3e\xa5\xb7\x4a\x40\x0c\x8c\xc1\xb6\x14\xd3\x6b\xda\x12\xd9\x9c\x2a\xc3\x5c\xad\xbb\x22\x5f\xce\x4d\xb5\xfb\x04\x24\x94\x5c\x39\x1f\xfc\x3b\xd8\xd9\x6a\x64\xf1\x7c\xa4\xc9\xed\x69\xb2\x18\xe9\xdf\xf8\x34\x59\x38\x97\xd7\xaf\x0e\xac\xf1\x3b\x58\x18\x77\x68\xd0\x75\x6d\x6c\x7a\xdf\x3a\x4d\x16\xf8\x77\xe0\x24\xc3\xcd\x23\xf1\x16\xdb\xd6\x9f\x2e\xdc\x82\x19\xa1\xca\xa3\x7d\x92\x83\x38\xb2\xa0\x48\xdf\xb2\x1a\xa3\x45\x82\xd8\x30\xbc\x0d\x94\x88\xe1\xb4\x58\x49\x6c\x38\x1a\xf4\xf7\x9e\xcb\x6f\x52\xd4\x53\xc2\x5c\xef\x93\x6b\x25\x2d\x60\xea\x20\x4c\x6d\xd8\x52\xcf\x0d\x6f\x62\x5f\x91\x76\x92\xeb\x11\xab\x71\xc9\x60\x80\xf2\xa0\x0f\xf6\x15\x9d\x3a\xb9\xae\x60\xad\x39\x9d\x17\xd9\x17\x3a\x05\xc8\xca\x35\x49\x54\x09\x6d\x00\xba\x55\x0d\x09\x26\xa6\x56\xd1\x82\x7a\xc4\x50\x14\x5b\x12\x64\xbc\x01\x09\x79\x3a\x6d\xe6\x9f\x08\xd3\x2f\x98\xc5\x76\xdd\x20\x42\x12\x0d\x7e\xfa\xc9\xc5\x55\x99\x29\xdf\x8e\x9a\x5c\xf5\x38\x7d\xd4\xb4\x4d\x47\x38\x26\x12\x04\xbe\x52\x87\xc4\xe1\x13\x96\x01\x21\xfb\xa0\x78\x93\x74\x63\xf0\x49\x46\x28\xe6\x44\x0c\x87\x15\xa9\x5a\xaf\x60\xd5\x7a\x81\x94\x31\x26\x65\x26\xa5\xf0\x3b\xa2\xcb\x64\xae\xd0\x4d\xc4\x49\x61\x16\x15\xad\x18\xe1\xc3\xb4\x60\x22\x63\x4b\xba\x81\x96\x36\xd9\x2c\xd2\x76\x08\x64\x55\x15\x52\x7a\x73\xb2\xfd\x54\x3d\xb2\x43\x68\x32\x73\x91\x42\x21\xa2\x02\x61\xf8\x6e\xe6\x92\xb3\x54\xba\x18\x66\x24\xeb\x95\xd9\x55\x9e\xb1\xeb\x4d\xd3\x64\xc3\x65\xae\x69\xc2\x84\x70\xd3\x47\x46\x0a\xcc\x49\x56\x01\x34\xca\xf8\x55\x7b\x80\x53\xdb\x9d\x54\x75\x27\x85\xee\xac\x4a\xf0\x87\xa8\xab\xd9\x31\xa5\xd0\x27\x95\xc9\x49\x81\x99\xcd\x4c\x49\x6a\x3b\x26\x57\xaf\x54\xa3\x4d\xcd\xe0\x9b\x9b\xcf\x64\x2b\xbb\x9a\xcf\xe4\xf7\x77\x36\x5f\x1f\xfd\xcf\x08\x6d\xd4\xf0\xed\xea\x81\x0a\x5d\x5d\x7d\xb4\xaf\x66\x69\x1f\x9c\x48\xca\xa3\xf4\xc4\x86\x62\x95\x4a\x99\x51\x1f\x55\xf2\x2e\xb1\x00\xba\xbd\xc7\xaf\xae\x34\xb0\xe9\x50\x8d\xf5\x07\x73\xa4\xd7\xeb\xe7\x26\x68\x17\x74\x08\x44\x3b\xb5\x31\xf4\xaf\x5e\x2d\x22\xb0\x30\xa8\xad\x5a\x31\x59\x14\x0c\x8e\xa8\x6d\x0a\x97\x52\x5b\x98\x09\x19\x1a\x95\x52\x55\x7d\xbd\x36\x21\x52\x67\xa9\x57\xd7\xd7\xc6\xd6\xb6\x1f\xd5\x01\xf8\xb6\x99\xea\xe6\x83\xcf\x85\x47\x3f\x20\x5b\x98\xf5\x7e\x1f\x79\x1e\xcb\xe4\xb1\x14\xf1\x96\x31\xa6\xba\x11\xb2\x51\x44\x41\x33\x4f\x6b\x04\x03\x3f\x8b\xa2\x58\xa7\x46\x2a\xb6\x55\x69\x4c\x27\x20\xf7\x91\x08\x89\xf5\x8c\x29\x16\x93\xaa\xab\x85\x30\x94\xbc\xad\xaf\x53\x4b\xea\x52\xb2\x46\x61\x28\x14\x27\x89\x61\xaa\xf0\xce\x4c\xd4\xd4\x17\x13\x73\x83\x39\x97\xd6\xe5\x54\x8b\x14\x19\x6b\xce\x25\x38\x24\xb2\xc9\xc7\xf2\xb1\x67\xa9\xd2\x9d\xdd\x69\x76\x8d\x93\xfe\x90\x3b\xf2\x85\xe0\x8c\x40\x82\x63\xc9\xb5\x86\x1c\x8b\xc5\x82\x4e\x23\x34\xe4\x9d\x0e\x02\x75\x6c\x70\x30\x06\x26\x0a\x81\x28\x2e\xc2\xd0\x68\x69\x0f\x9b\x7a\x65\x8c\xe9\x6d\x77\xcc\xe4\x64\xe5\x39\xe5\x25\x94\x17\x11\x5a\xaf\x7d\x2e\x23\xa7\x39\x95\x70\x38\x75\xc9\x16\xa5\x70\x04\x38\x94\xfd\xb1\x28\x13\x84\x8b\x28\x13\x58\xbe\x2a\x94\x64\x02\x67\xc6\x92\x1f\x14\x85\x25\x49\x04\xc2\xd9\x16\x41\xe6\x07\x45\x90\x59\xea\x74\x4a\x16\x9e\x22\xbc\xcb\xd6\x48\x45\x85\x76\x2a\xb1\x43\xd0\xeb\x96\xbd\x2e\x79\xaa\x41\x50\x63\xe0\x1a\xf5\xd2\x82\x73\x5a\x2e\x0a\x36\xcd\xd8\xf5\x87\xb2\x72\x1d\x0d\x75\x77\xe4\x22\xac\x1e\x5c\x83\xf0\x8c\x68\x6f\x91\xc8\x4b\x40\x5e\x08\xb1\x43\xde\xcc\xed\xcb\xf6\x50\xe7\xda\x45\x94\x04\x05\x0b\x3a\x14\x65\xac\x55\xf3\x79\xd3\x12\xeb\x75\x14\x89\xa7\xe1\x67\xe4\xcb\xc0\x51\x1c\xe8\xe7\x4b\xe2\x11\x8d\x82\x3e\xa0\x7f\x8a\x85\xb2\xbb\x23\x3c\x83\x91\x0b\xa1\x98\xd5\xa2\x58\x9c\xd0\x3b\x9a\xbf\x07\x73\xa7\x6a\xf9\x19\x18\xee\x00\xa0\xd8\x24\xa9\x39\x95\x1b\xc5\xa4\xc0\x86\x11\x05\x37\xb6\x21\x94\x55\xc6\x65\xb5\x71\x97\x62\xdb\x2e\xe3\x4c\x78\xd4\x5f\x5b\xda\xbc\xc8\xb2\x8e\x6f\xa9\xd2\xeb\x1f\xc5\x85\x52\xd2\xbe\x78\x2c\x05\x9d\x1f\xe5\xc9\x75\x09\x16\x2a\xdd\x1e\x0b\x5c\x78\xdd\xad\xcc\x56\xba\x6d\xc5\x14\xd7\x5b\x8a\x39\x76\xda\x89\x05\xae\x5a\x89\x19\xb6\xe3\x8d\xc7\x13\x67\xf7\x4d\x85\x47\xef\xb2\x35\x30\x53\x00\xa1\xdc\x0a\xe0\x4b\xa8\x9a\x2f\x98\x15\x86\xf4\x7b\xa6\xed\x7a\xc8\xdd\x2e\xf7\x18\x57\x4f\x03\xe1\xee\x83\xa3\x5c\x89\x53\x7e\xcc\x66\x45\xf5\x72\x0f\xb9\x85\x46\xb9\x7d\xe0\x87\x9c\xec\xb7\x75\x33\x0a\x00\xda\xd9\x92\xb6\x7d\xa1\x5e\x92\x1f\xda\x00\x5a\xa9\x87\x30\x0c\x9f\x6b\xda\xf2\x76\xb7\x31\x23\x0f\x2c\xe2\x48\x83\xad\x0c\x79\x54\xf8\xfa\xae\x00\x7a\xfc\x0a\x40\x3a\x93\x33\x66\x13\x6d\x18\x4b\x9e\x5c\x77\xe9\xd0\x10\x0c\x4a\x38\xab\xa4\xe1\x30\xaf\x14\x58\xd0\xaa\xaf\xdd\xd0\x38\x9b\x4a\xd6\xe4\xf9\xf7\x95\xc1\x04\x7d\xa5\xa5\xa4\x3f\x4c\x5f\x5c\x9a\x4e\xa5\xc6\x96\x65\x4e\x2e\xc7\xe9\x64\x98\x87\x61\x94\x93\xdc\xb7\xc4\x00\xa2\xa7\x19\x2e\x70\x02\x1c\x8d\x52\xde\x65\x25\xce\x11\xda\x94\x22\x2a\xdd\xbb\xef\x46\x38\xec\xb7\x36\xa0\xd0\xa0\xd3\x5e\x27\x2e\x82\xbf\x84\x20\xfe\x97\x88\x04\x36\x31\xdc\xee\x23\xd7\x00\x28\xe8\x38\x6a\x51\x97\xab\x7c\xc9\x4d\x71\x95\x0e\x22\xf7\x2a\x01\x32\x21\x0e\x92\x16\x91\x4e\x50\xf2\xc8\x3a\x49\x57\x82\x34\xf7\x23\xca\xdf\x90\xfe\x0a\xb8\x47\x0b\x62\xb8\xb9\xc2\x10\x1a\xa7\xf5\x5e\x65\xec\x2e\xc9\xb3\xa9\x91\xc7\x51\x1c\x41\x15\x51\x0c\xc1\x58\x15\x36\x14\xce\xee\x80\x10\xf2\x1d\x75\xac\x62\x84\xe1\x67\x6d\xc1\x87\x69\x04\x4c\x59\xa0\x83\xfd\x7f\x25\xf0\x5c\xe0\x53\x81\xaf\x85\xbc\xe4\x1f\xe5\x55\x85\xef\xf4\x55\xf3\x52\xff\x5e\xea\xdf\xfb\x0a\x99\xfb\x52\x05\xcf\xa0\xce\x7b\x41\x2a\x67\x49\x2d\xed\x11\xa9\x05\xbe\x8a\xd4\x98\x5b\xc6\x6f\x51\xab\xf2\x85\xd4\x4a\x96\x0f\x69\x9e\xa5\xb7\xad\xe9\x55\xae\x02\x5a\x3f\x4a\xd7\xd1\x31\x68\x53\x87\x97\x8b\xd6\x94\x27\xd7\xb2\x21\xf9\xab\xda\x99\xf2\x62\xd1\x02\x8f\x36\x16\x85\x77\xa3\xaa\xd0\x2d\x7d\x84\x86\x6e\xe9\x23\xe8\x1e\xcb\xc0\x72\xd1\x02\xe9\x23\x50\x4a\x02\xc7\x21\x2d\x58\x95\x96\xee\x40\x5a\x2c\x1e\x5b\xe9\x52\x22\xe7\xa5\xa0\x2d\xd5\x47\x8d\x51\x6b\x79\xd8\x39\x65\xcb\x16\xac\x45\x4b\x2f\x8f\x8b\x62\x3f\xc8\xf7\x01\x34\x5a\xe5\x2e\xd1\x5d\x17\x54\x85\x72\x9a\xdc\x51\x35\x59\xc5\x1d\xe5\x3a\x24\xbf\xa6\xc6\x0a\x89\x26\xbc\x14\xad\xeb\x42\xd8\xf9\x01\xc5\xcd\x56\x5e\x94\xb5\x24\xf7\xeb\xd5\xa3\xf3\x56\x6c\x1b\x39\x58\x81\xc8\x2a\x9d\x9e\xb1\x98\x62\xef\x86\x16\xdb\x37\xf4\xfe\xde\x9a\x79\x97\x74\x81\xed\x95\x16\x73\xe7\x48\x9e\x68\xc0\xb4\x76\x04\xb7\x4f\x97\xde\x65\xee\x66\xb7\xb3\xa3\x0b\xda\x39\x0a\xe2\x97\xdb\xa5\xed\xbc\xe9\xd2\x66\xf6\x82\xf8\x72\xbb\xb0\x33\xa3\xba\x78\x35\xaf\x41\x7c\x2f\x31\xed\x9c\x0a\x1a\xc9\x67\x10\xd2\x8f\xa7\xde\x39\xdc\x9a\x7a\xdd\x4a\xc3\x02\xc4\x5f\x1a\x5b\x73\x99\x7f\xc2\xb7\x0f\xb0\x25\xef\xeb\x5d\xbb\x6d\x42\xb2\x51\x44\xc9\x5b\x11\x55\x75\xb0\xc3\xaa\x31\x08\xb1\x20\x6f\x99\x04\x68\xc3\x70\x2e\xe1\x70\x03\xb8\xd7\xd7\x72\x4d\x38\x76\x41\x83\x0b\xe7\x21\x7d\x60\x91\x79\x4b\x91\xa3\xea\x61\x89\xc5\x7f\xd2\xc8\xcb\x00\xd2\x25\xd0\x44\xec\x13\xe6\xe1\xe8\x82\x50\x11\xb1\x0a\x4b\xa3\x3d\xbb\xe9\x88\x36\x0d\x94\xf5\x96\xf2\x80\x5e\xe5\xf4\x92\x2f\xd9\xc7\x4c\xdc\x9c\xf3\xac\xe0\x99\x78\x04\xbf\xa6\x2a\xe8\xd9\xd3\x3c\x95\x4d\x6e\x50\x65\xf2\x78\x5f\x11\x5b\x5c\x54\x51\x93\x4d\x3c\xfa\xb8\xfb\x71\x45\x46\x87\xa7\x7a\xd7\x2b\xad\x64\x58\x37\x6e\x2d\x1f\x07\x3b\xa8\x43\xde\x55\xc9\x3a\x08\xfa\xab\x7c\x70\xdd\x33\x86\xb7\xd7\x05\x3b\xdf\xc7\xb5\xe7\xb9\x61\x29\x60\xad\x7d\x2f\xc3\xf2\x1d\x9e\xcb\xc9\xc1\xfe\x3c\xb7\x07\x46\x89\xa6\xef\xf0\x0b\xed\xdb\x79\xa0\x1e\x20\x66\x77\xad\x6b\xf6\x58\x44\x8a\x8a\x00\x0f\xc4\xb0\xff\xe2\xd1\x5a\x5a\x31\xd6\x59\x1e\xc5\xb8\x3f\x19\x36\x4f\xc3\xaa\xa2\x7f\xbd\x65\xee\x02\xc8\x5d\x7a\x05\x54\xc3\x0a\x18\xfb\xaf\x4f\x93\x99\xa3\x91\x37\xfe\xf8\x51\xf4\x40\x01\x3b\xb2\xbc\xf9\x3b\x11\x86\x07\x22\xba\x03\x0d\x9f\x3b\x63\x32\x52\x67\xbe\x54\x99\x2f\x21\xf3\x65\x2d\xf3\x52\x65\x5e\x42\xe6\xa5\xc9\xbc\x17\x16\x93\xbd\x15\x08\x7f\xf1\xa2\x8e\xa9\x19\x61\x4c\x31\x57\xdd\x33\xec\x56\x7f\x97\xe1\x6b\x89\x98\xc8\x49\xef\x63\xe7\x84\x94\xe9\x0d\x9d\x2e\xf3\xca\x62\xa1\x93\xf7\xb6\xe0\xf3\x24\x37\x87\x07\xff\x2d\x90\x4b\xf9\x7b\x0d\x9b\xb5\x22\x1c\x46\x15\x5f\xf3\x23\x40\x1e\x40\x92\x71\xd6\x17\xad\x3e\x8a\x08\xd6\x16\xd3\x0a\xac\x53\xe6\xe9\xaa\x4d\xc0\x0c\x40\xc7\xe5\x3e\x60\x93\x21\xf7\x86\x06\x22\x8f\xb5\xa1\xc9\x9b\x50\x02\xae\xd5\x4a\x7c\x94\x2b\x81\xa9\xb7\x00\x1f\xe5\x02\x38\x69\x97\x2a\xed\x12\xd2\x9c\xe9\xf6\x67\x5b\x48\x28\x59\x02\xc4\x67\x5e\x0f\x23\x4e\xce\x64\xef\xd0\xd7\x3b\xa7\x28\x3b\xfd\xaa\x01\x6b\xca\x27\x62\xb2\x91\xbe\xdb\xc8\x10\x5d\xc0\x71\x33\x5a\x58\x55\x4e\x18\x9e\x55\x9b\x0e\x8c\x06\x81\xef\x8f\xf3\x0a\x6e\xfa\x54\x05\xff\x12\x64\xac\x98\x0d\x01\x36\xbf\x7f\x50\x5c\xf1\x2a\x0e\xd9\x34\xc0\x9f\xdd\x94\x8a\xf5\x85\xff\xe5\xa6\x2b\xf6\x16\x0e\x34\xb3\x42\x85\xce\x6d\xc8\x61\x60\x54\x59\xef\x6d\x82\xcf\xd3\x70\x12\x0e\x4c\x82\x66\x73\xf8\x21\xc3\xf2\xd8\x0a\x4f\xfd\x5f\xce\xc1\xac\x8a\xf9\xdd\x7e\x53\x21\xed\x5c\xa5\x1d\xd8\x34\xb0\x4b\xe1\xfd\x28\x56\x8a\x8d\xbc\x76\x23\x86\xb3\x62\x13\x4e\xfd\x04\xed\x85\x13\xc2\x17\x36\xbc\xf5\x8a\xab\xc4\xad\xbe\x68\xce\x8c\x1f\xd2\x5c\x1a\x3f\xa8\x19\x34\x7e\x48\x31\x6b\xfc\x90\x62\xdc\x78\xa1\x8a\x89\xa3\x23\xda\x85\x0a\xfe\x8d\x62\x87\x53\x05\xdb\x22\x30\x9c\x9d\x2a\xe4\x50\x1b\xde\xe9\x1b\xa7\x3a\xbf\x35\xa1\x2d\xb2\x57\xd9\x43\x63\x13\x5c\xc8\x9f\xce\x60\x82\x33\x45\x33\x89\x8a\x71\xbf\x66\x03\xa3\x53\x68\x8d\xd2\x01\x42\xc3\x8c\xac\x76\xd8\xa9\x8b\x57\x57\xcb\xab\xab\x9c\x4e\xe3\x0c\xeb\x49\x9d\xc6\x59\x27\x30\x73\xb9\xc1\xae\x9d\xb7\x78\xcc\x27\x0a\xea\x34\x17\x58\x2c\x36\xf8\x13\x08\x3e\x83\x37\x75\x7c\x6e\xc2\x19\xc2\xaf\xc4\xb8\x98\x90\x6c\xb3\x79\xa7\xd1\x2f\x05\x5d\x1b\xa0\x5d\xff\x28\x60\x5d\xff\x05\xa0\x5e\xfd\x75\xe0\x76\x1d\x3e\x55\x61\x09\xeb\x1b\x80\x5f\xfe\xb7\xe8\x49\xb2\x7c\x38\xf0\xf1\x94\x69\xb1\xbc\xca\xa9\x4e\x74\xf0\x91\xc3\x1a\x5e\x92\x5c\x5f\x54\x18\x0a\xfc\x51\xd8\x80\xfa\xab\x70\x0f\xf3\x17\x30\x3d\xfb\xeb\xa0\x2b\xaf\xeb\x68\xcb\xb9\x83\xbf\xdc\xd2\xc7\x0f\x8b\x56\x0d\xf7\x7a\xed\x62\x61\xf0\xfb\x61\xa1\x71\x18\xf3\x17\x98\x8d\x3e\xcb\xb1\x19\xfb\x3a\xd8\x89\x8b\xbd\xf6\xf1\x32\x1d\xfa\xb0\x70\xd9\x95\xdc\x5a\x5c\xd6\x48\x92\x46\x95\x2a\x2e\x26\x30\x2f\xaf\xc0\xa2\x84\xfa\xd9\xc2\x1a\x0f\x9a\x30\xc8\x43\x1f\x95\x84\xa0\x9a\x6b\x8f\xef\xa9\x22\xfa\xfe\x72\x31\xb3\x3e\xc2\x72\xf7\xc8\x25\x6a\xd9\x3f\x15\x6e\x76\x68\x43\xf4\x21\x53\x2b\x79\x68\x02\x0a\x6f\x93\xa1\x13\x1b\x02\x5c\x4d\x06\xce\x2c\x26\x37\x2f\x0c\x76\x77\x6a\x43\x12\x8d\x83\xc0\x99\x09\x54\x98\xdf\x99\x83\xee\x41\x5d\x1d\x3e\x75\xc2\x0e\x76\x78\xd6\x8c\x28\x42\x2b\x8a\xc6\x61\x7e\x94\xef\xf5\xea\x47\x7b\x19\x56\x21\x68\xfd\xfe\x86\xd2\x5c\xfd\xf5\x26\x69\x00\x93\xf4\x97\xc0\x7b\x15\x08\x70\x2c\x48\x60\x79\xd1\xda\xe7\xba\x8e\x3b\x58\x74\x1d\xfb\xde\x8d\x9d\xeb\x8b\xce\xfd\xec\x1b\x41\xfa\xc3\x37\xe2\xc5\xb1\x7d\xc5\xdf\x88\x4e\x07\xe9\xeb\xe0\x58\x8c\xdf\x88\x09\xd6\xae\xcd\x8f\x04\x71\x80\xa0\x0f\x25\xe5\xaf\xe4\x23\x9c\xb1\x6b\x0b\x0a\x7d\xf0\x8a\xd4\xb0\x0c\xfc\x07\xf8\x8b\xb2\x37\xa6\xa6\x96\xac\x0c\x3d\xc6\x15\xc7\xff\x97\xf0\x8d\xb0\x7e\x02\x5d\x0f\x09\x87\x6b\x74\xd7\xf2\xbe\xf9\x68\x2f\xe6\x5a\x7b\xad\x1f\x73\xf2\x9b\x70\xcc\x76\x0b\x3c\xc0\xd4\x45\x2f\x5b\x83\x98\x93\xef\x76\x16\xb1\xe2\x6b\xe4\xf7\xed\x32\x1b\x36\xa2\xdb\x7e\xb2\x05\xe6\xb8\xdd\x47\xf1\xae\x2c\x77\x54\xbf\x39\xb4\xe1\xf3\xf5\xfa\x75\x64\xec\xe7\xff\x2e\x70\x46\xce\x87\xe7\xc6\x22\xe1\xc7\xa8\xc0\xa6\xa4\x35\x47\x18\x9d\x93\x0c\xad\xd7\x60\x90\xd0\x36\xf9\x9d\xd3\xe4\x07\x11\x1d\x09\xec\xf5\xdc\x1a\x19\xa8\x6a\xfc\xee\x13\xa8\xff\x10\xc8\x07\x47\xc3\xb0\x3b\x78\xf1\x5e\x38\x84\x2d\x04\x28\xb1\xd7\x1e\x7e\xb4\xa4\x6f\x45\xad\x55\xe3\xf8\xb5\x6a\xdb\xe3\x38\x03\xad\x82\x57\x1a\x0d\xcd\x5f\x28\x76\x36\x2f\xeb\xb4\xb7\x6d\xeb\x56\x5a\x77\x3e\xf1\xc3\xe0\xa2\x82\x1c\x2a\x80\xd7\x56\xc0\xc6\xee\x83\x43\x01\xd1\xa5\x5f\x42\xe9\x97\x8d\xa5\x1d\x0a\x88\x2e\x7d\x09\xa5\x2f\x1b\x4b\x7b\x24\x10\xc3\x66\xb7\xf4\x09\x83\x49\xde\xab\x33\x96\xe1\x43\x11\xdd\xab\xed\x2d\x97\xd7\x9d\x66\x70\x44\x62\x5a\x6d\x20\x8c\x18\x2b\x0e\x6e\xf3\x12\x48\xb7\xed\x7e\x79\xb2\x5d\xc7\xe0\x43\x35\xf5\x68\xa5\x17\x0b\x53\x02\xbc\x0c\xe3\xd8\x43\x99\x78\x7e\x17\x4d\x01\x85\x31\x9b\x12\x98\x2c\x9e\x5d\xda\x5f\x45\x93\xe5\x8e\x08\x68\xea\x8c\xa4\x22\xe2\x08\x21\xc3\x0d\xf9\x13\xc8\xeb\xee\x56\x51\xd8\x41\xb5\xa9\xe4\xe0\x44\x72\x3d\x34\xe4\x8f\xac\xd6\x2a\x15\x51\xe1\x30\xa7\xb5\x42\xa9\x47\xb1\x50\x55\x8a\xdd\x44\x8b\x7d\x65\xfc\x24\xb9\x1e\x15\x4f\xd2\x28\xbc\xc6\x0b\x2d\x49\x6c\x71\xad\x6a\xbe\x9e\x9e\x2c\x97\xcd\x2c\x47\xf8\xa7\x70\x04\xf7\x2c\xba\xa1\xdc\x20\xb4\xfb\xf8\x0a\x0c\x5b\x1d\xcf\x93\x6b\xf9\x94\x95\xb4\x9e\x78\x21\x41\xc4\x5a\xda\xc7\x6c\x2a\x6e\x54\xda\xc3\x51\x4e\x1f\x9c\xe0\xbf\x78\xb1\x5c\xe8\xf8\x19\x9f\xca\x9e\xd9\xa4\x54\x3e\xe1\xd5\x97\x55\xb4\x94\xc1\x99\x6e\x64\xa6\x5a\xb8\x37\xe1\x73\x78\x5a\xee\xa8\x89\x5f\xdc\xf0\x8c\xdd\x9a\xd8\x5b\x7a\x9d\xb8\xb9\x67\xb2\x83\xa0\x01\xc9\xb3\xe9\x4b\x4e\x13\x13\x7e\xa7\x5a\xd4\xc1\x43\x36\x75\x62\x17\x8b\x84\xb9\x51\x90\x3a\xd4\xf1\x03\xe8\xa1\x1f\x73\x6a\xab\x04\xb7\x01\x9d\x62\xda\x98\x15\x4c\x7c\x04\xb3\x51\x32\x96\x67\x8c\x1e\xe4\xc9\x7c\x61\x22\x6f\x6c\x96\xb6\xbd\x05\x41\x33\x88\x82\x2f\x6e\x12\x35\x3d\x22\xb9\xba\xc8\xbe\xc0\x38\xef\xb3\x69\x71\x0f\x89\x5f\x94\x6b\x6e\x19\x2a\x8a\x39\x7c\x2e\xcb\xf3\xb3\xaa\x25\xb0\xf8\xe6\xc4\x4b\x51\x2c\xbc\x28\x2f\x6e\xe9\x6b\x63\x49\xcc\x4f\x52\xb6\xc4\xaa\xb4\x53\x6b\x2e\xac\x4a\xdb\x6a\xcb\x6c\x8b\x0d\xa6\x8c\x58\x01\x53\x1c\xcc\x25\x1a\x75\x5a\x7c\x09\x70\x70\xe6\xe2\x34\xa2\xee\x44\x40\x4b\x40\xac\xd7\x56\xb1\xd9\x33\xdd\x13\x68\xb1\xea\x20\x66\xeb\xb5\xd1\x26\x6a\xbb\x25\xfa\x4a\xbb\xf8\xcf\x2d\xed\x15\x8a\xc2\xf0\x4f\x31\xa6\x93\x51\x14\x04\x1d\x81\x7a\x82\x67\xf3\x08\xc5\xa2\x13\x2c\x1e\x02\x47\xae\x8a\xd5\xd0\x2c\x30\x40\x0d\x86\x92\x1f\x73\x99\xd3\xa4\x1e\xc6\xac\xda\x97\xb2\x1e\x64\x1e\x9e\xa0\xdb\x0d\x10\x2e\x88\x60\x11\xc3\x42\x62\x65\x1c\x0d\x83\x59\x5e\x24\x20\x20\xae\x4e\x77\x90\x96\xe5\x11\x24\x21\x63\xbd\xa5\x6a\x18\x17\x28\x96\xe8\x1c\x29\x36\x1b\xd7\xf5\xd9\x9f\x62\x87\x71\x2f\x47\xe9\xa8\x4a\x07\xb5\x20\xd1\xa1\xbd\xf4\x26\xe1\x2f\x45\xd4\x47\x35\x44\x90\xf6\xca\xe5\x95\xd2\x11\x8f\x06\x08\xff\x29\xc6\x62\x42\xfe\x34\x6e\xc9\xb4\xed\x28\xce\x48\x11\xad\x24\xb6\x95\x09\x3a\x87\x65\x5e\x25\xfa\x90\x5d\x25\xa5\xba\x23\xb8\x3e\xd8\xf2\x87\xce\xaf\x28\x9c\x95\x1b\x48\xcd\xe6\xd7\xf0\x23\xc1\x4a\x19\xb8\xa5\x8f\xd7\x94\xe9\xb3\x00\x67\x5a\x62\xfc\xf2\x77\x91\xf0\x04\x36\xb4\xf5\xd3\x89\x05\x4f\x52\x28\x73\x0f\x9f\xd8\x38\x2c\x11\x47\x2c\x5d\xfd\xe5\x6c\x4c\x27\x96\x9c\x2e\x1c\x1f\xd9\x5f\xd3\xd0\xa9\xcb\x2f\xed\xff\x88\xa9\x72\x29\xf7\x0d\xea\x3d\xae\x0a\x90\xd5\xe4\xf2\x1b\x7c\xde\x57\x4d\x35\x38\xf4\xdb\xd5\xec\x7a\xdd\x8e\x82\xcb\x4b\xd0\x18\xc8\xd8\xee\x72\xf5\xbe\x3f\x1f\x68\x09\x36\xdd\x23\xd8\xbf\x61\xd8\xf4\x65\xc8\xaa\x57\xdf\x83\x71\x3b\xef\x6e\x52\x4d\x73\x57\x19\x8b\xa8\xb6\x79\x60\x1e\xc8\x6d\x43\x21\xa2\x97\x95\x35\x13\x21\x41\xc2\x58\xa1\xad\x3e\x3e\xcc\x2d\x13\xd5\x35\x82\xa9\xd3\xb4\x95\xca\x74\x2b\xde\x2d\x79\xba\x95\xb6\xe4\xd9\x56\xda\xac\xe0\xf3\x44\x6c\x25\xb3\x64\x6e\xda\x9c\x67\x65\x99\xb1\xeb\x2e\x58\xa4\xb4\x76\xba\x06\x75\x93\x5a\x7d\xc5\x67\x2d\x19\xf9\x9b\x56\x7b\x2f\x65\xae\x04\xfe\xaf\x34\xa2\xe4\x67\x4f\xcc\x65\xbd\x1e\x0c\x6a\x72\x2f\x71\x4d\xf3\x11\x0d\x05\x39\x1b\x8b\xc9\xb0\x59\x7e\x09\x84\x94\x6e\x44\x04\x32\x4a\xd4\x73\x65\x98\x33\xcf\xe5\xf1\xd2\xf8\x0c\x6b\x32\x7d\x16\x51\xd0\xa8\x6c\xd4\x2a\x31\x32\x33\x23\xeb\x32\x5f\xa1\x3f\x35\xa1\x3c\xc7\x96\x39\xf5\xd5\x35\xd7\x6b\xda\xbb\x2a\xa6\x8f\xda\x29\x87\xa3\x43\xa9\x92\xab\x3e\x2e\x98\x71\xb0\x32\x04\xd5\x29\x4f\xe5\xc2\xd7\x9b\xb0\x92\xf1\x95\xec\x8b\x3b\xdb\x98\x13\x68\x6c\x68\x6c\xc7\x73\x25\xbb\xa7\x44\x40\xac\x5e\x85\x52\x6e\xa3\x1d\xee\x2a\x51\xe8\xa9\xc5\xf4\x05\xb0\x9b\x7e\xb1\x92\xba\x2b\x59\x2f\xe6\x58\x3f\x7f\xa2\x4b\x37\x43\x4a\xd8\x86\xc6\x5a\x5e\x44\x7d\x83\x83\x3b\xcc\x0b\x25\xd8\x87\x56\x9c\x78\x09\xc6\x6c\xc9\x46\xa6\x57\x42\x4e\x1b\xae\x5d\x4b\x6c\xa0\xe7\xdc\x3d\x5c\x53\x16\x55\x6f\x0e\x25\x4a\xd2\x0a\x0b\xb2\x64\x11\x1a\x8a\x56\xa6\xc5\xcb\x8a\x59\x8b\xf6\xe4\x69\x3f\x3e\xe2\xc9\xdc\xcc\xfe\x10\xad\xe4\xd2\x68\xab\x29\x0d\x27\x50\xdb\xa5\xfe\xa8\xbc\x0d\xe4\x45\xaa\x84\xfd\x6f\x38\x9d\xe9\x15\xe3\x68\xc5\x48\x7b\xb0\x51\xb2\x36\x0a\x59\x85\xaf\x47\x94\xd4\xea\x23\xeb\xae\xc0\x82\x9a\x8e\x10\xf8\x8d\x2b\x84\x2c\x17\xd8\xd8\x07\x71\xc3\xbe\x2e\x8a\x15\xe0\x0a\xc3\xa8\x32\x21\x02\x31\x30\x53\xa5\xe4\xb4\x95\xe2\x7e\x49\x13\x9e\xde\x78\x49\x82\xe6\x5e\x7c\xc9\xfd\xf8\x22\x29\xcb\xfb\x82\x4f\xab\x44\x04\xb5\x1e\x84\x7c\xbc\x8c\x39\x12\xb0\xdd\x00\x25\x6a\x46\xbc\x15\xd1\xff\x4a\x33\x73\xe6\xac\xee\xcc\x85\x35\x72\xc9\xaf\x96\x42\x58\xcb\x80\x6a\x4c\x5a\xf0\x03\x08\x2d\x3a\x62\x3b\x61\x2e\x99\xb6\xe8\x59\xcb\xd9\x15\xf6\x54\x59\x82\xf1\x1c\x35\x79\x63\x00\xdb\x52\x0b\x23\xbc\x26\x63\xac\x50\x26\x4e\x4c\xbc\x69\x5f\xd8\x87\xd1\x55\xcd\x6e\xc8\xdd\x32\x9d\xb4\xf3\x19\x72\x14\xd8\xbf\x52\x62\x67\x81\x9e\x7a\xed\x60\xde\x1f\x59\xa3\x54\x5e\x49\xc5\xfb\x6c\x4e\x8b\xa5\x18\x55\x41\x6b\xf7\xa2\xb9\x4e\x9a\xd3\x84\x9b\x5a\x6e\x44\xd7\xab\xd6\xf4\x65\x75\x47\x69\x4d\x6d\x70\x90\xea\x1d\x79\x23\xae\x66\xee\x19\xe3\x7f\xcf\x38\x02\x50\x67\x68\xb3\x7d\x87\x5d\x2a\x30\x8d\xd0\xde\x82\xd3\xbb\xac\x58\x96\xe6\xd6\xa8\x64\x9e\xfb\x43\xaa\xee\x99\x9f\xbc\xa7\xa3\xd2\x2e\x9b\x26\x22\x01\x38\xe2\x3b\x80\x23\xd7\xeb\xe0\xbb\xb6\x0d\x8d\x02\x62\xb4\x7a\x01\x1c\xae\xd4\x96\x44\xb7\x0b\xb8\x65\xf0\xec\x3b\x0d\x7f\x8a\x4e\x67\xd3\xd0\x97\x2d\x1c\xf2\x9e\x91\xd3\x44\xdc\xf4\x78\xc2\xa6\xc5\xdc\xd5\xbf\xdb\x7f\x6e\xec\x52\xee\x21\xfc\x85\x91\xe0\xf2\x12\xec\xa8\x1d\x33\x65\x85\xde\x48\xc6\x7e\x17\x74\xee\x19\x3e\xab\x0a\x00\x2d\x4b\xb9\x36\xe3\xa5\xca\x7d\x5f\xe5\x1e\x18\xe4\x58\x55\x74\xdc\xb4\x7b\x96\xf9\xbf\x30\x60\x58\x57\x8a\x16\x0e\x7f\xd3\x15\x30\x1d\x32\x35\xa1\x82\xb0\xf1\x7b\x36\x59\xaf\x99\xac\x6a\x35\x9f\xad\x94\xbb\x95\xc6\x50\xbb\xdf\x40\x8c\x72\xaa\x4c\x48\x8b\x99\xab\x57\x07\x56\xd3\x70\xab\xf5\xa2\x31\xd5\xaf\x8a\x64\xa0\x8b\x55\xb7\x25\x23\x11\x25\x0c\x79\x6f\x43\x93\x6c\xf8\x5b\xd7\x02\xa6\x7c\xc0\x65\xbb\xeb\x35\x95\x43\x40\xeb\xf5\x0f\x6d\xad\xc1\xa2\x84\x0d\x75\x70\xb0\x5f\x85\x6d\xd0\x2a\x72\x58\xe9\x1e\x03\x2b\xfc\x60\xd4\x60\x94\x5c\x3d\x75\xe5\xea\x3d\xf7\x30\xbe\x50\xfa\xbe\x4b\xf2\x3b\xf4\x9c\x99\x8e\xcf\x60\x82\xbd\x91\x5c\x40\x89\x69\xb1\xda\x36\x79\x15\x86\x76\x1c\x95\x4f\xd3\x7a\xfd\x03\x0f\xce\x72\xfb\xa5\x5e\x2c\x17\x4c\x51\x20\xd4\x8d\x26\xfc\xb4\xb9\x97\xc9\x08\x97\xa0\x96\x35\x4e\x66\x28\x7b\x05\x03\x16\x90\xb1\x9d\xa5\x62\x07\x9e\x84\x50\xc1\x5e\x57\xbc\xa2\xa6\xb4\x7a\xf1\x53\xc3\xc0\xd9\x4e\x69\x2c\x7a\x5a\xdc\x35\xa4\x34\x16\xfd\xb0\xa8\xc7\x1b\x8b\x1d\x2a\x0a\x64\xc4\x49\x9b\x5b\x03\x07\x68\xbd\x96\x09\x91\x79\xa4\x88\xb1\x35\xab\x9f\xc6\xca\x8a\x17\x3c\xb8\xb9\xbe\xf9\x69\xed\xd5\x54\x12\xe9\x6d\xbe\x65\xa4\x8d\x6a\x40\x62\xcb\x02\xa1\x67\x16\xcb\xb1\x96\x55\x77\x50\xb4\x3f\xc0\x02\xdb\xcc\x4a\x34\xc6\x11\x79\xb1\x84\x83\x48\x10\xd8\x1b\xac\x67\x44\xf1\x95\xe5\xd0\x5d\x4e\xb7\xc6\x62\x02\xb2\xa8\xac\x49\xaa\x9f\x8b\xc6\x74\x2c\x10\x66\x4d\xb2\xfe\x7e\x79\x9b\x8e\x3d\x2b\x54\x7f\x9b\x93\xa6\x4c\x05\x7c\x53\x2f\x5d\x17\x84\xb4\x77\xe9\xc9\x44\x8f\x27\x43\x31\x44\xcc\xaa\x71\x08\x72\x01\x02\x44\xca\x75\xbb\xb5\xf5\xd1\x7f\x21\xba\xdd\x21\xba\x65\x11\x1b\x8b\x09\x36\x1e\x22\xa6\x81\x11\x02\x91\xcf\x8c\xa8\x6c\x83\x88\x4e\xa7\x2a\xac\x19\xbe\x01\xf6\x14\x14\x3e\xda\x59\xa7\x61\xc8\x40\xce\xc8\x1f\x4d\xdd\xf9\x18\x68\xc7\x35\x2f\x4f\xbd\xe8\xff\xc3\x8b\xf2\x5a\xbd\xc2\x0d\x2b\xb2\x3d\x06\x39\x6c\x7f\x0d\x94\xfe\x85\x63\x5e\x00\x5a\x03\x5d\x8c\xbf\x99\xf6\xea\xad\x01\xc6\x4f\xfa\xf7\xaf\x3a\xe0\xf8\x8e\x29\xdf\x58\x7f\xd9\xcb\xeb\x2f\x06\x57\x17\x4c\x31\xf9\x24\xf1\x1b\xb3\x38\xb8\x20\xda\x02\x51\xc6\x5a\xe7\x6c\x74\xce\xb4\x71\xac\x73\xe6\x62\x35\x38\x23\x85\x59\xce\xca\xa1\x16\x0f\x43\x36\xa6\x13\x42\x48\x31\xa6\x13\x70\xab\x05\xdf\x49\x08\xef\x52\xbd\x13\x06\x43\xf1\x82\x24\xb2\x20\xef\x0a\x55\x34\xeb\x8a\x09\x6c\x8a\xa1\xed\x1e\x31\xf2\x02\x14\x0f\x5e\x88\xd1\xa0\x6b\xf1\xc4\x6a\x2a\x8e\x2b\x23\x02\xae\x8c\xda\x1b\x27\xd9\x01\x68\x8f\x1c\x2b\xdc\xd6\x66\x0d\xb8\x4d\xbe\xc9\xca\xda\xca\x18\xdf\x47\xce\x4a\x18\x17\x48\x9e\xb6\x05\xa6\x04\x12\x5d\x7d\x1b\x00\x46\x24\xe2\x8f\xb6\x8c\xf8\x15\x72\xe3\x19\x8b\x2f\x23\x59\x73\x5c\x4c\x88\x88\x18\x8a\x03\xf5\xa5\x00\x6c\x52\x2b\xbf\x4b\xca\xdf\x21\x8f\x4d\x39\x26\x6b\x59\x04\x46\x16\xc9\xca\xd7\xc6\x11\x34\x48\x41\xd0\x29\x31\xe6\xbc\x2a\x17\xd1\x3a\x67\xb4\x9d\x14\x83\x79\x6d\xa3\x76\xa8\x2c\x94\x8c\x8e\x59\xfc\x46\x7b\x83\x6a\x52\x64\x22\x3a\xb3\x9a\xd7\x0f\xbe\x75\x73\xa8\xa9\x64\x32\x8a\x22\xaf\x29\x8c\xd4\x32\x3d\xe5\x11\x35\x91\x49\x9e\xbb\xbc\xb3\xc2\x02\x2b\xf4\x1e\x4a\x44\x15\x2b\xd1\x74\xe0\x0f\x56\xa9\xa7\xba\xd8\x2b\x58\x1f\xac\xdf\xf7\x3f\xfe\x8c\xd0\x90\xf6\xa6\xd4\xac\x57\x84\xf0\xa0\xff\x4b\x63\xaf\xc3\xb0\xde\xdf\xba\x82\xcc\x67\x75\xb4\xab\x22\x64\x3c\xc1\xa0\xda\x2c\x23\x74\x4a\x3e\x30\x4c\x8d\x06\x16\xf9\x83\x6d\x8a\xe8\x88\x39\x76\x1f\x57\x0b\xb5\x16\x7a\x19\x5d\x13\x84\x6a\x57\xd6\x97\x57\xdb\x0b\xd4\xdb\xce\xd9\x8b\x43\x65\x3e\xc6\x6f\x6f\x54\x4f\x88\x50\x6c\x5c\x7f\xba\x66\x81\xdd\x1d\x00\xcd\x38\x71\xd2\x1e\x20\xbc\x6b\xb7\x1d\x33\xa4\x8c\x28\x3a\x1b\xc5\x1d\xc4\x93\x7d\xad\xd5\x1b\x6d\xa5\xec\xea\xad\x92\xf2\x78\x05\xef\x86\x32\x5e\xe5\x24\x90\x76\x1f\x3d\xb1\x7d\xa1\xc7\x0b\xa5\x2e\xb7\x35\xdd\xae\x22\x1d\x39\x66\x1b\xec\x26\xc8\x63\x51\x6d\x9b\xad\x51\x62\xf1\xc4\x55\xa0\xae\x48\xe5\xa3\x1d\x8e\xb3\x36\xe4\x3e\xdc\xba\x52\xb6\xaf\x9d\x86\xdb\x49\x31\x31\x77\x8e\x71\xd7\x6a\x99\x73\xdd\xf0\x90\xf9\xe9\xbe\xee\xe1\x66\x83\xf0\x11\xab\x06\x43\x56\xe0\x5a\x41\x75\x02\x3a\xaa\xc2\x9e\x9f\xd6\x06\x63\x9c\xd0\x96\x16\xd7\x92\xa0\x88\xaa\xa5\x9e\xff\x52\x37\x01\x0b\xa9\xac\x7c\x42\xf3\xd9\x9c\x5e\x88\x64\xbe\x88\xb7\x6d\xd6\xb4\x68\xcf\x66\xaf\xd7\xaf\x13\x21\x91\xd7\xfb\x08\x6d\xf0\xd6\x3d\x07\x6d\x65\xe5\x7b\xbe\x2c\x4d\x74\x23\x87\x44\x1f\x04\x65\x53\x4f\xa5\xdd\x91\x75\x75\xc9\x9d\xae\x4d\xd1\x66\xbf\xb7\x5a\x33\x4c\xa6\x0e\x1d\xbf\x7f\xc4\x31\xf3\xaa\xd5\xa3\xe0\x2a\xab\xac\x71\x65\xd8\xb9\x11\x90\x1b\x21\x5e\x96\xbb\xb3\x08\xc3\xee\x82\x80\x49\x2f\x67\xbb\x81\x04\xac\x19\x1d\xd7\x01\xfc\x99\x81\xd4\xe9\x46\x06\x8e\xb4\x45\x8c\x7f\x31\x62\xe7\x21\x5a\x49\x54\xdf\x58\xd5\xff\x6d\x67\xce\x77\x8c\x8c\x7f\xc6\x83\x7d\xbc\xf7\x23\xde\xdf\x9b\xe0\xdf\x19\x79\x08\xc3\xe0\xa0\x12\xce\xa9\x19\xe8\xc0\xbf\x6a\x80\x44\x16\x33\x04\x3d\xb0\xb0\xed\xa8\x56\x86\x61\xf4\x2b\xab\x34\x2a\xdd\x62\xaa\xab\x7f\xaa\xcf\xbc\xa7\x0f\xa2\xd6\x7e\x18\xb6\x7f\x65\x98\x72\x99\x1f\xb5\x7f\x67\xeb\xf5\xaf\x2c\x0c\x7f\x7a\x21\xff\x0e\x06\xbf\x90\x5f\x19\xc2\x82\x13\x45\x44\xe8\xcd\x78\x31\x3f\xb8\x49\xf8\x41\x31\xa5\xd1\xfe\x1e\xc2\x8c\x93\xd5\x15\x9d\x15\x9c\x82\x14\x52\xfc\x75\xd9\xc4\xa0\x60\xaf\xaa\x0a\x41\x25\xa9\xe8\x67\xec\x12\x5a\x0c\x7c\xb1\xa6\x00\x07\x46\x4c\x2f\xc0\x81\x95\x86\x0a\x70\x00\x52\x77\xc1\x64\x83\x9d\x0a\x87\x6c\xfa\x6d\x3d\x3c\xf0\xea\xf8\x9d\xf4\xf3\x76\xf4\x53\xc9\x48\xd6\x44\xb0\x76\xe8\x43\x59\x49\x42\x57\x22\xcb\xeb\xb7\xe2\x53\xff\xd3\x9e\x6b\x59\xdb\x1d\x7d\x87\xdc\x6f\xed\xfd\x93\xfa\x5c\x5f\xef\xbf\x12\xa6\xfd\xc7\x03\x30\x32\xb8\x3b\x46\xa0\xb2\xbf\x75\x08\xda\x44\xcb\x3f\x1a\xc3\x06\x73\xee\x79\x9c\x2d\x78\x23\x15\x19\xda\x30\xc4\xe1\xee\xa0\x4d\xc8\x77\x15\x73\x19\x38\xc1\x07\x70\x14\x4d\x61\xf8\x90\x91\xda\xd9\xdb\xfb\x19\x08\x59\xba\x94\x2d\xa4\x36\xb5\xa3\x69\x35\xad\x28\x14\x4a\xa1\xcb\x9a\x41\xde\xf6\x2a\x63\x7b\x9c\x71\xc7\x52\x59\x9d\x3c\x0c\xe4\x84\x29\x15\x49\x96\x23\x79\xbd\x24\x22\x01\x8b\x60\x23\x45\xb9\x8c\x2d\x59\x31\x81\x69\x00\xbe\x1a\x27\xab\xca\x79\x74\xcc\x38\xf6\x34\x49\xe3\xba\x70\x96\x86\x5e\x87\xd9\x2c\xfa\x9d\x21\x1a\xd7\xa7\xae\xbe\xc9\x8c\xa0\x14\xe3\xbd\xfa\x01\xb0\x04\x8c\x7a\x45\x79\x0f\xc4\xf5\x2a\x87\x6c\xba\xb3\x82\x16\x80\xdc\xaa\xa3\x76\x94\x65\x0b\x65\x86\x0f\x04\x72\x3e\x09\x1f\xc1\xf2\x83\xfd\xde\x86\xaf\xa1\xd8\x2e\xad\x52\x75\xd8\xdb\xfb\x19\x50\x04\xbd\xb0\x0d\xb5\x60\x58\x16\x88\xcf\x46\x11\xe5\x61\x18\xdc\x16\x60\xa5\x15\xf8\x3f\x00\xa4\x25\x7c\xbd\xce\x64\xd2\x76\xe5\x11\x18\x52\xa9\x77\x25\x0c\x13\x1e\x86\x51\x41\x24\xf2\x8a\xe2\xe8\x13\xab\xf0\xd2\xe8\x9c\x11\x8e\x76\xa2\xa6\x72\xa5\xfb\x08\xe1\x8c\xfc\x8b\x55\xb0\x78\x94\x59\xa4\x62\x94\xc1\xde\x20\x45\x6c\x64\xaf\x0a\x92\xf1\x48\xd9\x42\x35\x79\x08\xbf\x62\x51\x86\x70\x41\x32\x14\x17\x0a\xe6\x8a\x28\xf9\xd3\xb1\x79\xd7\x74\x8e\xea\x6b\x6a\x26\x86\x1b\x8f\x45\xce\xb9\x30\x22\x5b\x7b\x70\x78\xee\x6f\xb2\xf4\x46\x11\x4f\x23\x79\x66\xfb\x58\x68\xc7\x09\xce\xa3\x10\x5b\xcb\x09\x02\xfa\x89\xe4\x41\xe0\x61\xc8\xb9\x26\xbb\xd6\x0e\x92\x82\xba\x36\xb0\xe6\xf1\x96\x69\xbd\xc4\x10\x2c\xeb\xdd\x56\x34\xb8\xf6\xef\x2c\x0c\xf5\x7d\x31\x8a\x28\x2c\x05\xfe\x8b\x91\x4f\x8c\x18\x9a\x03\x9c\x2a\x4c\x91\x92\x29\xab\xcd\x85\x7a\xbf\xdc\x9e\xd4\x67\x00\xb0\x36\xd1\x4b\x05\xcf\x7f\xa3\x8f\xeb\x35\x90\xc7\x75\x68\x4e\x45\xf2\x1b\x7d\x04\x43\xc8\xba\x40\x18\x9a\x02\xda\x76\x72\x7a\x23\x77\xc9\xe0\x85\x0a\x19\x6c\xd3\x5a\x42\x92\x89\xca\x5e\x0b\x4c\xae\xc9\x68\x82\x04\x4c\x91\xcd\x56\x6f\x77\xac\xa8\xb3\xcf\x85\xde\xe7\x6a\x09\xd4\xc2\x3c\xb1\x0e\x68\x14\x45\x82\xfc\xe6\xee\x4d\xc6\x7b\x0e\x08\x62\xc4\x17\xd5\x4e\xa4\x72\x23\x0a\x84\x62\xad\x51\x6d\xc4\x0b\x47\x0a\xee\x06\x31\xa5\x22\x1e\x17\x58\x4c\x36\x1b\x9c\x72\xb2\x02\xf1\x86\xb8\xdd\xc7\xf0\x64\xe9\x5f\x09\x2c\xcb\x70\x60\x22\x5d\xe8\x74\xa0\xa4\x67\x92\x0c\xc4\x68\xe6\x05\x53\xc2\x76\x8a\x47\xa7\x04\x64\x14\x4f\x53\x86\xc1\x75\x22\x08\xcb\x00\x6f\x14\x84\x65\x68\xae\x7e\x1e\x40\xd0\xc6\x7c\x65\xc9\x21\xf9\x9e\xd2\xdb\xb8\xdd\x77\xac\xdf\xe5\xfc\x3f\x65\xda\x3a\xfc\xda\x51\xbb\x9d\xf2\xb1\x22\x23\x4f\x62\x9f\xc1\xaa\xcc\x67\xc8\x59\x00\xf1\xf2\x6f\x7c\xb1\xb5\xaa\x92\xf7\x4c\x43\xda\xd3\x6f\xb3\x56\xea\x06\x8d\x0e\x57\x3b\xc3\x79\xa2\x97\x8b\xba\xc4\xbb\xff\x3e\x3b\x46\x3e\xb8\x2f\xa2\x16\x51\x09\x82\x57\x9b\x64\xc9\x7b\xaa\x01\x45\x1f\x41\x48\xf9\xe6\x0e\x8c\xe2\xd5\x81\x84\xef\x81\x3e\x88\x95\xb9\xcf\x99\xf1\x5c\xc0\x6b\x04\xc1\x1b\x58\x04\x30\x02\x53\x3d\xb3\x57\x5c\xd3\x51\x5e\xd2\x08\x58\x36\x95\x02\xae\xe3\xf9\x87\xdb\xcb\xc3\x7c\xd7\xb5\x56\xa4\x66\xff\xd4\x87\x38\xae\x79\x84\x56\x33\x79\x9b\xcf\x38\x3c\xd5\xe9\x0d\xbc\xb4\x51\x50\x30\xe3\xdc\xcc\x8c\xe1\x91\x23\xd9\x5d\xdd\x73\xa7\x77\x8f\xa6\x77\xfa\x15\x00\xfe\x91\xeb\x1a\x2d\x0c\xaf\x78\x34\xe5\x08\x81\x9d\xea\x85\x0c\x63\x8a\xc1\xdc\x0c\xc2\xe7\x08\x06\xab\x44\x71\xad\x68\xfa\xdf\xd1\x0d\x77\x65\x5a\xcf\xad\x93\x7c\xc7\x4d\x88\x5d\x14\x2d\x91\x0d\x96\x5a\x23\x39\x26\x98\x57\x1c\xcd\x38\x11\xa8\x97\x88\xaf\x8d\x0b\xa9\x4d\xa3\x5f\x56\xd9\x80\xe3\x3e\xc2\x8e\xae\xbe\x57\x34\x37\x44\x81\x67\x55\xc4\xbe\xd1\x66\xe6\xd5\xe0\x1d\xde\xaf\xbb\x50\xc0\x45\xaa\x95\x76\x55\x4c\xef\x9d\xc2\x1e\x4b\xa6\x61\x89\x55\x55\x89\x6a\x9d\x72\x92\x0b\x53\x41\x3e\x9d\xed\x46\xf4\x6d\xbd\xfe\xf9\x45\x33\x5e\xa7\x10\xbb\x2f\x3e\x38\xb6\xe4\xf8\x32\x2b\xe1\x1e\x84\xd9\xbc\x58\x2e\x16\x05\x97\x78\xfb\xe9\x37\x02\x6a\x44\x8c\x4e\xe4\x8d\x19\x6b\xf4\x33\x23\x85\x73\xcb\x14\xbb\x6e\x99\x6a\xf6\xe5\x78\x33\x97\x3b\x95\x85\x61\x00\xa2\x62\xd6\xb3\x24\x52\x64\xed\x39\xb7\x32\xfd\x39\x8f\x0a\xd8\x7c\xa7\x1c\x25\xe4\x5e\x65\xac\x12\xf2\x92\x2b\xa0\x93\xdc\x71\x00\xc2\x22\xb7\x3b\x9e\x27\x9b\xec\x69\x4f\x36\xc5\x96\x47\x09\xdd\x15\x09\x5e\x91\x4b\xa5\xa6\x90\x40\x24\x51\x16\x13\xcd\x92\x2d\x78\x94\x28\x45\x86\x32\x0c\xcb\x88\xe2\x02\x0b\x84\xdd\xdd\x18\x51\x52\xf8\xc6\x9e\x91\xbc\x8f\x2b\xe7\x16\x61\xe8\x88\x6d\x18\xb7\x83\x0f\x34\x2a\xb0\x49\xc7\x85\xb6\x7c\xbd\xd9\xe0\x33\xee\x12\x0f\xee\x32\x7a\xaf\x68\x30\x0a\x4e\x37\x84\x84\xf7\x9c\xac\x5e\xe6\x22\x0e\xd4\x93\x1e\xe0\x03\xf5\xb9\x38\xd0\xcf\x7d\x80\x4f\xa9\x48\xe2\x40\x43\x02\x01\xbe\xb8\xc9\x66\x22\x0e\x40\x45\x56\x26\x38\x97\xe7\x83\xf3\xae\x6c\x11\x1c\x2d\x40\x70\x4d\xe5\xce\xcb\x66\x99\x1e\xe5\x68\x3b\x29\xa2\x28\x6e\xb7\x23\x4a\xde\xf3\x31\x9d\xa0\x30\x6c\xb7\x41\x38\xb5\xe2\x94\xf3\x8a\x18\xf4\xc0\xe1\xc2\x3b\xe1\xa4\x8f\x0f\xe5\x9f\x0b\x80\x87\x0e\xe0\xef\x2d\x27\x67\xdc\xce\x42\x09\x3e\xeb\x3f\xa9\x89\x50\x91\xcf\x9a\xea\x95\x67\x94\x89\x4f\x6e\x44\xe7\x2c\x92\x6b\xfa\xa9\x0a\x9a\xf2\x6a\x76\x74\x4b\x7a\x2e\x54\x4c\xcd\xa4\x0a\xeb\x59\x53\x91\xfa\x28\xe3\xb7\x1c\x2b\x9e\xac\x21\xc3\xc9\xb0\x26\xc3\x71\x9a\x27\x82\x4e\xeb\x94\x3c\x97\xf4\xe6\x15\x01\x07\x10\x12\x9a\x72\x3c\x2a\x38\xd6\xbc\x46\xf2\xa4\xe9\x70\xec\x15\x44\x1b\x3c\x2f\xee\x20\xf8\xc9\xfb\x8e\x3c\x8b\x36\x47\x59\x78\xb6\x9f\xb6\xe9\xda\x4c\xc2\x89\xf5\x77\x76\xc2\xe5\x77\xd5\x3c\xe3\x0b\x3e\x0a\xac\x46\x5d\x25\x90\x35\xb2\x25\xba\x22\xee\xc7\xd1\x05\x40\xda\x7d\xa7\x27\x9f\x77\xf6\xe4\xf3\x8e\x9e\x7c\xd6\x3d\x39\xb4\x3d\x39\xac\x7a\xf2\x19\x1f\x7c\xa5\x27\x9f\x55\x4f\x0e\x4c\x4f\x36\x08\xff\xcd\xc9\x6d\xb5\x75\xac\x42\x8c\x5a\x1e\xf0\x96\xad\x82\xca\x4f\xb4\xde\x21\x12\xa4\x5e\x72\x4b\x99\x65\xd7\x94\x89\x2c\xc9\xcf\xfd\xf4\x2c\x37\x5b\x4d\x06\xf5\x96\x12\xf7\x59\x69\x9a\x51\x1f\x7b\x6f\x69\xbc\x59\x79\xce\xb3\x79\xc2\x1f\xcd\xb9\xfd\xc8\xc9\x6a\x6e\x59\xfe\xf1\xaa\xce\xc6\x8c\x7d\x91\x80\x3a\xf5\xcb\x9a\x5c\xc1\x8e\x2e\xd2\x44\xce\xff\xb2\xa4\xa0\x1b\xf9\x44\x93\x90\xff\xcd\x4d\xea\xb1\x3c\xd1\xcf\x73\xa7\xc4\x56\xb3\x8e\xb5\x17\xec\x69\x42\x55\x4d\x3f\xd1\xdf\x73\xa7\xc4\x3f\x69\x7a\x83\x5f\xfb\x2f\xe2\xc7\xaf\xbd\x7b\xb8\x40\x5a\xbf\xc8\x19\xbe\x7e\xc1\xdd\xb6\x65\x12\x4e\x48\x35\x5d\xb5\x32\x3a\x05\x8c\x98\x2a\xef\xc4\xd1\xfe\x5e\x58\x28\x76\x79\xed\xc4\x33\xef\x1c\xaf\xd7\xed\x24\x0c\xdb\x99\x27\x86\x11\x65\x84\xf7\xd4\x1b\x0c\xca\x8d\x3c\x86\x14\x5f\x20\x59\xe2\xe2\xda\x41\x41\x46\xef\xd7\xeb\x4c\x4b\x2a\x29\x01\x50\xf3\x84\x27\x68\x14\x25\x44\xe0\xca\x44\x0c\xc8\x1f\x6c\xf5\xc9\xde\x33\x68\xf4\x00\x20\x00\x40\x91\x61\x18\x89\x36\x51\x76\x68\x94\x28\x93\xa8\x44\x99\x84\xb6\xa1\x16\x69\xb3\x1c\x28\x4e\x88\x91\x22\x49\x5c\x99\x36\x93\xb8\x35\x7d\xfe\x9c\x23\xf5\xda\xdf\x72\x9c\x92\x8f\xbc\x57\xed\x6a\x9c\xdb\x38\x6c\x37\xbc\xd4\x2b\x11\x00\xa8\xe0\xae\x82\xb2\xc8\xe8\xad\x5d\x5b\x79\xa9\x29\xc9\xdf\xba\x61\x77\x03\xaa\xa6\xdd\xdd\x2e\x1b\xd7\xf1\x00\x00\x03\xaa\x9d\x69\x25\xa3\x2c\x3e\x61\x51\x82\x70\x66\xdc\x6b\xa9\x14\x81\x70\x94\x92\xd2\xc1\x37\x52\x9c\x68\x3c\x14\xf0\x8c\x65\x27\x50\x76\x95\x70\x6a\x98\xd3\x14\xa7\xfe\x1a\x90\x0c\x47\xcc\x6b\x24\xb7\xc8\xac\x69\x44\xa9\x2a\x62\x66\x1a\xc9\x70\x6d\x21\x09\xc5\x4b\x22\x70\xc4\x49\x82\xc2\x70\x89\xb4\x40\x74\x4e\x96\x38\x21\x7d\x4c\x49\x49\xf8\x90\x0e\x29\x01\x49\x2f\x94\x74\x3a\x46\x04\x01\x0b\x92\x0f\xc5\x50\x8b\xa9\x20\xaa\x73\x86\xfd\x17\x49\x97\x0e\x51\x29\xd3\x4b\x84\x93\x6e\xd7\xa4\xd3\x6e\x32\x44\xb9\x4c\xcf\x11\xa6\x26\x5d\x16\x80\xab\xbf\x24\x84\xe4\xeb\x35\xfc\x38\xa6\x98\x0d\x51\xce\x34\xa8\x1b\xd8\x94\x8e\x4e\x5d\xa9\x71\x2e\xe8\x79\x89\x4b\x32\x9e\x0c\x79\x18\xf2\x36\x21\x79\xe5\x21\x3a\x4a\x08\x77\x1a\x5e\xaf\x13\x99\x8f\x86\x48\x5b\xf0\xe3\x08\x73\xd9\x38\x57\x82\x34\x5c\xb6\xb2\x0c\xc3\xe5\x56\x2b\xcb\xc6\x56\xb8\x6a\x65\x89\xf0\x52\xb6\xb2\x54\xad\x2c\x49\x7f\xb8\x7c\x61\x8d\xfe\x2d\x3b\x1d\xf4\x91\x45\xe5\x78\xe9\x8a\xe3\xa4\xa6\x2c\xaf\xc4\x7c\x96\x72\x5e\x3e\xb2\x88\x43\xd1\x4a\xcc\x87\x59\x02\x20\x5c\x1a\xcf\xbf\x0f\x0b\x34\x1a\xa7\x93\x78\x9c\x62\x36\xd9\x6c\xe0\x7d\x7c\xc5\x1b\x65\x65\xb5\xaa\x51\x56\x8e\x6c\xa8\x46\xa8\x32\xef\xad\x96\xd4\xee\xab\xa3\x30\x78\x26\x13\x06\xcf\xe4\x91\xa6\xea\xc0\xc8\x43\x2e\x36\xf8\x9c\x1b\x47\x8c\x15\xf3\xcc\x97\xc4\xa8\xc0\xc6\x4f\x15\xe6\xf3\x4a\x05\x3d\x1f\xe6\x0d\x3e\x74\xad\xef\xf0\x46\x17\xbb\xc2\x66\x0b\xdf\x9c\x93\x75\x0e\x09\x3a\x55\xe0\x1f\xc6\x4d\xd0\xe6\x9a\xf4\x54\x83\x49\x48\x8f\x98\x25\xf1\x69\x58\xff\xfe\x90\x57\x82\x54\xbc\xd3\x91\x18\x47\xfb\x9c\x6b\x5f\x8a\xca\xb0\xec\x7a\xdd\x96\x83\x19\xcb\xc8\x04\x0b\xf5\x8b\xaa\x96\xac\xcc\x8c\xec\xd8\x5f\xc0\x37\x7b\x82\x2f\x37\x18\xfc\xd2\xcc\x97\xc3\xef\x38\x59\x29\x8c\xe9\xdb\xa8\x2c\xca\x27\x92\x4f\x65\x51\x69\x5f\xe1\x80\x54\xb6\x37\x8c\xd9\x0c\x45\x6c\xf1\xc9\x2c\xdb\xa6\x04\x9f\x24\xbc\xe0\x63\x4d\x1e\x79\xa3\x7f\x8f\xf4\xef\x07\x9f\x7c\xf1\x07\xf7\x7d\x1a\xd9\x17\x4d\x8c\xaa\xf9\x88\x7f\x06\x43\xd1\x56\xf3\x46\xc4\xc2\x7f\xe8\xcc\x01\xf9\x60\x9d\xcf\x1f\xf3\xf5\xfa\x58\x5e\x07\x4b\x16\x31\xa4\x09\xbf\x15\xfe\xaf\x58\x5f\x19\x8b\x18\x39\xe6\x28\x0c\x6f\x54\x29\xb2\x52\xbe\x2a\x58\xcf\x2f\x89\x29\x9b\xba\x89\x87\x6c\xba\x89\x19\x59\x25\x2c\xbd\x29\x38\x18\xbe\x8d\x18\x89\x98\xdf\xab\x30\xac\x25\xf8\x8f\xb1\xb1\xc2\x7b\x4d\xb5\x3f\x2b\x60\xe8\xa3\x5e\xd5\x28\x56\xc1\x33\xa5\xc3\xc2\x7a\x6e\x14\xc3\x22\xc1\xa7\x59\xcf\x86\x55\xaa\xad\xe0\xc4\x36\xf8\x88\x87\xe1\x27\x1e\x1d\x71\x6c\x27\xe4\x08\x68\x2c\x35\x4a\xd8\x3b\xae\x07\x8a\xdf\x70\x0c\x87\x56\x93\xc2\x34\xfe\x6e\x4d\xe0\x92\x63\x6e\x28\x62\x48\xb1\xe8\x3f\xfb\xb0\xd5\xbb\xaf\xc3\x56\x38\xd3\xd2\x45\x19\x69\x47\x05\xc9\xd6\xeb\xc8\x07\x6b\xfc\x4d\x50\xe9\x03\x8d\x78\x5c\x87\x76\x10\x42\x2b\x1a\xaf\x0a\xf2\x2b\x8d\x0a\xf9\x04\x9f\xf5\xcc\x11\xb0\xd2\xe4\x09\xe9\x0f\x93\x17\x99\x39\xe3\x89\x3e\xe3\x05\x18\x2a\xcd\xc6\xc9\x04\xa1\x55\x21\x77\xa8\xe1\xf1\x14\xa4\xdd\xdf\x64\xa4\x0d\x26\x62\x7d\x10\x4c\x13\xe4\xb7\x48\x22\x35\x0b\x8b\x8a\x78\xe1\xa8\xa6\x14\x5b\xaa\x29\x61\x18\x1d\x73\x52\xc8\xc3\x22\xcc\x49\xf1\x8c\x1d\x2a\x7e\xde\x11\x27\x6f\x38\xd1\x27\x6b\xcb\xf0\xa2\x62\xff\xc9\xf3\xd5\xf7\x0c\x9c\x56\x07\xdc\x65\x16\x2e\x17\x8e\x49\x47\x97\xf4\x0e\x07\x14\xff\xc1\x23\xa0\x69\x38\xba\x2e\xd5\x49\x8f\xb3\x59\xf4\x97\xb1\x96\xeb\xf3\x2c\xb7\xd9\x9d\x2d\xdd\x94\x27\x19\xbf\xc1\xff\xf2\xa8\x18\x56\xad\x1d\xe0\x7b\x25\x97\x99\x27\x8b\x92\x4e\xdf\x67\x26\x61\x51\xd2\xe5\xd4\xa2\xba\x46\x92\xc2\x6b\x26\xcd\xb3\xc5\x55\x91\x70\xb0\x3f\xd5\x80\x5b\x07\x5e\x01\xc3\xca\xf4\x6b\xa9\x45\xf4\x13\x25\xd6\xf8\x9d\x47\x70\xf0\xb1\x78\xd5\x99\xea\x56\xfb\xdd\xa5\xc3\x5b\xc6\xad\xe9\x83\xe6\x8a\xa8\xcf\xf7\x8d\xd4\xb6\x49\x46\x61\x38\xd8\x37\x36\xe8\xc8\x60\x1f\xc5\x94\x08\x3c\xe8\x5b\x5a\xd2\x60\x1f\xe1\xfd\xbd\x17\xf0\x4c\x83\x29\xee\x11\x8d\xd5\x6b\xf3\x2b\x27\xab\xc3\x32\x8d\x83\xc3\x32\x4d\x16\x34\xc0\x17\x8b\x24\xa5\x57\x09\x8f\x83\x56\x80\x4f\xe8\x4c\xc4\xc1\x4b\xce\x8b\x7b\x19\x0c\xf0\x87\x85\x8e\x7e\x58\x04\xf8\x1d\xe0\xba\x2a\x0e\xe1\x00\xbf\x2e\xee\x99\x4e\x01\xe1\x77\xfc\x9a\xe6\x71\xf0\x1a\x4c\x12\x06\xf8\x63\xc6\xe2\xe0\xec\x22\xc0\xa7\x94\x2d\x63\xe3\x3e\x5d\x46\x02\xfc\x72\xb1\x28\x6b\x49\x17\x60\xf8\x26\x0e\xd4\xef\x49\x91\xde\x06\xf8\xb4\xf8\x72\xce\x33\x06\x67\xe0\x37\xfa\x18\x07\x1f\x58\x36\x95\x78\xf5\x2c\xa3\xd3\x60\x83\xff\xe4\x64\xf5\x53\x1c\xbc\x4a\xd2\x5b\xf0\x50\x15\xe0\x9f\xe3\xe0\x7d\x72\x15\xe0\xc1\x5e\x1c\x1c\xe4\x34\xe1\x01\x1e\xec\xc7\x81\xc6\x30\x07\xcf\xe3\x00\xa8\x58\x01\x1e\xfc\xa8\xbe\xcf\x8b\x3c\xc0\x83\x9f\xe2\xe0\x65\x2e\x53\x7f\x8e\x83\xf3\x44\x62\x05\x78\xaf\x1f\x07\x07\xc9\xa2\x54\x3d\xd9\xfb\xb1\x9a\xb4\xfd\x3d\x98\xae\xfd\x7d\x59\xf6\x9a\xca\xc9\xd9\xff\x5e\x85\xd5\x34\xec\xff\x20\xbf\x38\x0d\xf0\xfe\xf3\x38\x78\x53\xcc\x65\x9d\x1f\xbd\x99\xdd\xff\xc9\x99\xd9\xff\x9b\xbb\x7f\x71\x6e\x22\x57\x16\xc7\xf1\x7f\x25\x76\x6d\xcd\x95\x6e\x84\x8f\x9d\x17\x64\x8c\x70\x85\xd7\x81\x5d\x42\x58\x60\x97\xdd\xcd\x4d\xa5\x26\x63\x25\xd1\xe2\x8c\xbc\xa3\x71\x20\xc4\xfe\xdf\x7f\xa5\xd6\x5b\x33\x0e\xb0\xe7\x9c\xfb\xb9\xbf\x6f\x15\x45\xc6\x1a\x8d\x1e\xad\x56\xab\xd5\xcf\xed\xfd\x18\xac\x3b\xc3\x08\xa8\x3b\xbb\x79\xff\x65\x25\x59\xad\x5e\xed\x79\xf8\x8e\xd4\x1c\x9f\x8f\xd4\xc3\x76\xde\x7f\xbe\xa5\x1e\x76\xf2\xfe\xf3\x6d\xf5\xb0\x9b\xf7\x9f\xef\xa8\x87\xbd\xbc\xff\x7c\x57\x3d\xdc\xcf\xfb\xcf\xf7\xd4\xc3\x83\xbc\xff\xfc\xbe\x7a\xd8\xcf\xfb\xcf\x1f\x28\x50\x0d\xf3\xfe\xf3\x7d\xf5\x30\x52\x0d\x0e\xd5\x13\x34\xad\xda\xde\x52\x6d\x8f\x54\xe3\x3b\x3b\x79\xff\xf5\xe2\x4a\xc3\x63\xa4\x46\x15\x2e\xd5\xd6\xd6\x4e\xde\x3f\x64\x4d\xd1\x5f\x11\x26\xc2\x9d\xf0\x91\xdd\xa4\x32\x1d\x40\x79\x8b\xff\x3f\xd6\xc7\xf0\xfb\x64\xb9\x84\xbf\xc0\xf9\x45\x0b\x1d\x25\x58\x31\x64\xc2\xab\x31\xbd\x48\x47\x47\x35\x65\x14\x76\x17\x9e\x98\x55\xcf\xbb\x14\x8e\x2c\x51\xb6\x5b\xe9\xae\x97\xf4\xeb\x26\xff\x30\x83\x53\x1f\x9d\x40\x66\xf7\x60\x5c\x79\xbf\xbf\x22\xd6\xc9\xf2\xef\x4b\x07\x6b\x36\x67\x85\x91\xff\x68\x55\xe6\x7a\xa9\xa1\x25\x02\x5d\xb4\xab\x03\x22\x00\x89\x7c\xb8\x22\x66\x0a\x6b\x3e\xfb\x2a\x18\x1c\x0c\x54\x5b\xa0\xaa\xfd\xae\x01\x7c\x77\x1f\x2b\x4c\x1a\x11\x0a\xe1\xa6\x45\x53\x40\x0e\xaa\x73\x56\x5b\xd2\x5e\x45\x68\xa6\x43\x8d\xc9\xd0\x32\xf2\x7d\x58\xa4\x8f\xa6\x69\x54\xb6\x76\x49\xee\x58\xc6\x8e\x55\x59\x61\x52\x8b\xf0\x98\x09\x35\x63\xdf\x73\x58\x89\x78\xce\x6c\xd6\x14\xbf\x75\x01\x5a\xbf\x71\x96\x36\xba\x5e\x1f\x62\x81\x3d\x0d\x5e\xdd\x63\x83\xa0\x4c\x2d\x1d\x54\xfd\x7d\x6d\x93\xbf\x47\x4d\xfe\x1e\x36\xf9\x7b\x47\x93\x51\x85\x8e\xf7\xae\xc7\x3f\xac\x02\x62\xd6\x14\x87\xc0\x91\xea\xf9\x72\x11\xb1\x83\x8f\x9b\x6f\x54\x31\xbd\x69\x6c\x02\x2b\xe0\xcd\xba\x98\xae\xc0\xb2\xca\x5b\x3b\xa8\x33\xf2\x67\x30\x35\xe9\xb2\x8a\x68\x33\x28\x8c\x32\xd1\xe6\xb2\x42\xde\x8d\xd1\x1f\xea\x88\x99\xd2\x2e\x63\xfc\x1c\x6d\xe9\xe8\xa2\x20\xd9\x6f\x77\x67\xe3\x14\x5a\x1e\xcb\x04\x29\x5c\x63\xad\xe5\xe5\xd7\x5d\x0c\x9a\x8f\xa2\xdd\x19\x64\x3b\xe2\xef\x18\xfd\x58\xa7\xf1\xbb\x53\x3e\x6f\x6d\x60\x6f\xf6\xd9\x45\xb2\x0f\xe2\x7c\xbb\xdf\x41\x9f\x2e\x9e\xa2\xfb\x2d\x00\x9c\x4d\x04\xce\x20\x6a\xa0\xf5\x93\x36\xf1\x02\xc3\x9f\xc1\xbc\x7d\xf0\x40\xd5\x58\x15\x36\xb6\xf1\x2b\x83\x3a\x1b\xbf\x9b\xbf\xff\x64\x39\xa3\xff\x0c\x27\xbb\xf1\x93\x2a\xaa\xa3\x21\xd8\x3c\x03\x8c\x1e\x45\x70\xd1\x71\xf5\x72\x46\x85\x88\x79\xe5\xf9\x8d\x05\xab\x03\xb8\x31\xb4\x61\xf4\xa7\xfa\xef\xc6\x1f\x0f\xa3\x7d\x45\x00\x09\x42\x38\xc6\x25\x01\x54\xc2\xb0\xe8\x77\x47\x4e\xd7\x38\xfd\x57\x9d\x04\xa9\x53\xf7\x3b\xcb\x7d\x3f\xae\x20\xcf\x99\xbf\xed\x09\x2b\x42\x24\xcd\x6a\xa5\xf6\x5b\x2b\xf7\xd3\x70\x84\xf1\xf8\x82\xea\x2c\x3d\x5e\xe8\x03\x1e\x44\x5a\x32\xd2\x7f\xab\xf3\xc4\xb0\x1a\x36\xf6\x9b\xd9\xe2\x82\x57\x1b\xef\xf8\xd5\x7c\xc6\xc2\x92\x67\x4e\xa6\x1a\x96\x6a\x53\x90\xe8\x4b\xb8\x6f\x84\x25\x81\xe1\x6f\x50\x1c\x8a\x1c\x30\xb9\x46\x98\x5c\xd2\x67\x15\x39\xa3\xaf\x2b\x72\x45\x5f\x55\xe4\x3d\xba\x6d\x8d\x22\xe7\x82\x74\x0e\x24\x7f\x5a\x93\xd6\x58\xf2\x2f\x35\x69\x0d\x27\xff\xbd\x26\xdd\x23\xca\x65\xbd\x32\x5e\x59\x82\x1e\x9f\x10\x29\xe8\xbd\x40\xda\x51\x0a\x45\xb8\x86\x8f\xa4\x00\xad\x9e\xcd\x9e\x55\x88\x63\x29\x4e\x88\xfe\xa3\xc5\x24\x52\xdc\xbb\x17\x06\x08\x11\xc6\x1e\x4e\x6c\x6e\xda\x7a\xee\x7b\xe2\x5b\x32\x06\x3a\x82\xde\xae\xc8\x5c\xd0\x5b\x53\x9e\x2f\xc4\x8a\x9c\x07\xbf\x7b\xa3\x15\xb9\x14\x74\x21\xfc\xd8\xce\x44\xec\x99\x6b\xcd\xe2\x15\x71\x01\xfa\x1d\x7b\xe8\x2e\x84\xf1\xcf\x4d\x7c\x78\xeb\x2c\xab\x07\x89\xeb\xf8\xa1\xc9\xaa\xf7\x4b\x75\x55\xc8\x8f\x4c\xa7\x62\x35\xb7\x83\x50\x09\xb0\xf6\xc3\xc3\xd6\x67\x3a\x1e\x22\xe1\x36\x49\xba\x30\x69\x3b\xc1\xe7\xeb\x58\xb8\x74\x9c\x75\x96\x21\xc4\xc2\x41\xe2\xef\x1a\x9d\x02\xee\x37\x0f\x8a\x72\x4c\x78\x60\xce\x23\x02\xad\x6e\x15\xa4\x1d\x2c\x83\x6f\x00\xb4\x38\xcb\xb4\x25\x69\x8f\xd2\xc0\x1e\xe8\x50\x20\x7c\x5b\x0a\x74\x2e\x30\x29\x05\x9a\x8b\x00\x23\x2e\x44\x90\x68\x65\x2e\x2c\x06\xf4\x28\x5d\x88\x74\x07\xef\x3d\xc0\x78\x3c\x53\x0d\x90\x06\x93\x99\x6a\x30\x0a\x3f\x73\x23\xe2\x20\x9a\xc9\x92\x32\xeb\x45\x1f\x0e\x99\x74\x79\x00\xd7\x8a\xb0\x84\x10\xf1\xbe\xf3\x56\x00\xc3\xd5\x42\xd5\xb4\x55\x13\x81\x79\x47\x0f\xc1\x7b\xd6\x0a\xe0\x34\x7c\x40\xae\xb4\x86\xa9\xff\x8b\xf1\x5a\x22\x3c\xc9\xbb\x5e\x91\xdb\x55\xe4\xbc\x76\x1d\x2e\x00\xa3\x09\x1e\x64\xd9\xfa\xa5\x65\xf5\x45\xbc\xb4\xcb\xe5\x42\xa8\x1d\xe3\x21\x4d\x34\x40\x99\x05\xe8\xb9\x7b\x03\x21\x13\xbd\xf5\xd1\xdd\xc0\xed\xb5\x92\xf1\xed\xed\x63\x3c\xae\x26\x88\x51\xb3\x2e\x97\x02\x93\xf5\x5b\xa3\x35\x54\xca\x48\x84\x33\x6e\xa0\x38\x37\xe5\x0e\x03\xd4\x88\x4e\xc5\x5d\xa1\x58\x3f\x45\x6f\xd3\x60\xf7\xe4\x4b\xf4\x5a\x1f\x6d\xee\xe5\x51\xdc\x32\xfb\x6b\xc1\x64\xf3\xa6\xe0\x55\x43\xde\x47\xaf\x2a\xf1\x89\x7c\x8e\x4a\x14\x72\x68\x60\xda\x91\x40\x02\x02\xf2\x3a\xaa\xf5\xf2\xea\x8a\x4d\x79\xd1\x30\x37\xdc\x57\xe2\xab\xa1\x67\x9f\x45\x55\x92\x10\xfd\xef\xa2\x97\xaf\xc4\x27\xf7\xe6\x49\xdc\xf3\x74\xe6\x3b\xfd\x08\xe4\xf6\xaf\x18\x52\x97\x62\x31\x9b\xfe\xce\xd9\x6c\x4a\x3e\x08\xea\x76\xf7\x91\x98\x1c\x89\xd0\x7f\x6b\x45\x9e\x1a\xfb\xe7\xc7\xe6\xef\x1b\x41\x7b\x23\xf2\x9b\xa0\xef\x05\xc2\xe4\x4f\x41\x47\x6c\xe7\xd1\x6f\x62\xf2\x5e\x74\xf8\x7d\xa9\x3a\xf7\x7e\x13\x81\xad\xce\x5b\x45\x34\x0c\x97\xfc\x59\x20\x6c\x42\xde\xbe\x16\x56\x1e\xb7\xbf\xaf\xd9\xa5\x57\xbe\xe4\x81\x2e\x79\xe6\x4b\xee\xeb\x92\x77\xbe\x64\x4f\x97\x3c\xf1\x25\xbb\x8e\xc3\x48\x63\x4a\x6c\x45\x01\xc7\x5e\x8a\x76\x7a\xf9\x8d\xfd\x7d\xdb\xce\x6b\xa1\x5b\xde\x7f\x60\x4b\x5e\xd9\x92\xfb\xb6\xe4\x99\x2d\xd9\xb3\x25\xef\x6c\xc9\xae\x2d\x79\x22\xbe\x71\x3c\x2f\x44\xa2\xfa\x82\x01\x92\x53\x5d\x1c\x38\x35\x8b\x24\xaa\xa1\xad\xf9\xc9\xbe\x08\x1c\x75\x53\x5a\x4f\x29\x7d\x2a\x26\xe8\xa9\xa0\xc7\xec\x44\xad\xed\x27\x81\x5e\x0b\xf2\xbb\xc0\x38\x7f\x2a\xac\xb7\x2b\xf9\x28\x02\x5f\x5b\x81\xc2\x98\xa5\x8f\x85\xf5\xf1\x7c\x2c\xc6\x16\x39\xbe\xa8\x7e\x56\xbf\x8b\xd0\xbe\xf1\x77\xf3\x5d\xef\x8d\x70\xd1\x4d\x9e\x0a\x7c\xab\x10\xc9\xba\xb4\x6a\x9b\x4c\x2d\x91\x79\x2a\xc6\x2f\x04\xda\xdf\x8f\x52\xb8\xe8\x48\x5e\x3e\x58\x19\xb3\x69\x24\x2a\xda\x1c\xb3\x93\xf1\x54\xdc\x56\xb4\x42\xbd\xa1\xcb\x76\x66\xf3\xcd\xac\x56\x18\x5b\x24\x36\x51\xa8\x2a\x7c\xab\x97\xc0\x8d\x26\xcb\x14\x28\x9e\x3a\xc7\xf3\xcd\x11\x06\x38\xbe\x16\xe4\x57\x81\x49\xe5\xcd\x44\x15\xf6\x87\x36\xa2\xff\x4c\x57\x61\x34\xbc\xbf\x7d\x7f\x67\xf4\x60\x6b\x74\x0f\x8d\x36\x11\x0a\x7e\xb3\xcd\xe6\x1f\xa3\x21\xfe\x07\xaa\xfe\x41\x47\x43\xbc\x1c\x62\xfc\xdf\x41\xb4\x89\x9f\x84\xcf\x7b\x0f\x11\x03\xac\x2f\xa3\x98\x4b\x1c\x05\x8a\x6c\xb4\xdb\x5f\x83\x89\xf6\x80\x09\xea\xf9\x64\xca\xc7\xd5\x49\x96\x21\xf5\x07\x22\xf5\x7b\x67\x6b\xa0\xab\x3f\x04\xec\x96\x76\x8a\xfc\xd9\xac\xe1\x8f\xe6\xef\x1f\x22\xb1\x1c\x66\x1c\xe1\xdb\x3f\x04\xfd\x51\x50\x53\x37\xc8\x2b\xcc\xbd\x48\xf9\x07\x77\xd4\x8c\x4b\x81\x7e\x10\x98\x18\x76\xed\xd4\xf0\x6b\x83\x53\xf3\xde\xa4\x9e\x0f\x7c\x2d\xb9\x0f\x8b\x19\x86\xbb\xb1\x5c\x5f\x94\xe4\xd7\x70\x2a\xcf\x3e\xcf\xb9\xd6\x3a\xbe\xe7\x57\xec\x61\x83\x3b\xcb\xbd\x01\x09\x44\x94\xe8\xfc\x12\x6c\x5d\x3a\xbf\xc5\x2e\xa7\x6b\x0f\x7d\xb5\x19\x6c\x54\x0f\x6b\xda\x5a\x05\xb1\x69\x82\xfc\xac\x66\xe6\x3f\x0b\xca\x88\x06\xb2\xb3\xf8\xb7\x8c\x59\xa8\x1f\xc5\x6e\x2f\xd9\x60\x76\x1a\xb6\xe0\x14\xcd\xa2\x2e\x1f\x81\xb0\xfe\x59\x01\xee\xd1\x71\xed\xd4\xd2\x5a\x70\x87\x82\x7f\x08\xad\x58\xef\x8d\x74\xd6\xa8\x21\xc8\x41\xf9\x39\xea\x88\xe1\x95\x65\x0e\xcb\xb7\x75\x3a\x42\xf4\x87\x9a\x47\x43\x7d\x39\x26\x0d\xbd\x35\x08\x90\x33\x22\xce\x24\xab\xaf\xd9\xf4\x31\x6f\x64\xde\x90\x4a\x95\x6a\x3c\x34\xe4\xe9\x47\x11\xe6\x92\xfe\x39\xe5\x1a\xb7\x87\x8a\x6b\xfc\x51\xd0\x86\xfc\x2c\x22\xc8\xd0\xdb\x78\xfa\xf9\x90\x84\x53\xce\x1b\x52\xdb\xfb\xa0\x16\xc4\xad\xb4\xd1\xc6\x8f\x0a\xe8\x10\x7d\x8b\x3a\x8d\x2d\x8b\x51\x55\x67\x98\xe5\x91\x8a\xb8\xe0\x3a\x0e\x80\x76\xca\xfa\x79\xc1\x16\x8c\xde\x9e\x15\x92\x69\xf9\x5c\x92\xb4\x1b\x22\x98\x42\x25\x2b\xdd\x2b\x6a\x36\xcd\x6f\xd5\xf0\x79\x75\x61\x40\xa0\x73\x91\xdb\xd1\xb9\xae\xa4\x59\x1d\x85\x0b\x41\x77\xa4\x89\x3a\xd7\x8a\x98\x66\xfd\x80\xdc\x73\x30\x18\x5d\xaa\x9b\x33\x63\x62\x03\xfd\xe0\x46\xc3\x4c\x8e\x74\xb9\x0a\x30\xa6\xe4\xe1\x69\x85\x58\x0b\xfa\x8c\xe8\x34\x25\x92\x69\x0f\x76\xc8\xd6\x79\x91\x0f\xc9\xbc\xb8\x99\x89\x62\x6a\xbd\xbf\x35\x57\xa6\x7f\x79\x6c\xc0\x7a\x41\xc2\xbc\xad\x3c\x4a\x64\x6c\xf7\x46\x30\x5b\x6c\xe9\x85\xe6\xa8\x61\x12\x78\x60\x20\x3c\x36\x08\x55\x4d\x1a\xb3\xd6\x39\x32\x4f\x15\xfc\x21\x95\x29\x57\x7b\xc5\x7c\x44\x9b\x60\x15\x16\x3c\xbe\x89\x7a\x9a\xe4\x29\x83\xe4\x90\x91\xd8\xe2\x32\xaa\xda\x83\xf4\x00\x87\x1c\xca\xee\x17\xb5\xe3\x22\xf6\x01\xaf\x1d\x61\x10\xef\x92\xc7\x52\x4a\x1e\xf7\x36\xd6\x48\xab\x55\xcc\x3c\x5c\x6b\xca\x0d\x84\x1c\x80\x3c\x60\x65\x08\xe5\x42\x37\x5c\xd2\x02\x7a\x1f\xeb\x3f\x54\xea\x21\xe9\x3f\xb4\x5c\x15\x54\x92\xb4\xc9\x98\x92\x95\x69\x66\x7b\xff\xa2\x8c\x20\x94\x65\xa8\x0c\xe0\x22\xc3\x40\xb3\x6a\x38\x6e\x28\x3a\x3f\x28\x0f\x10\x7b\x41\x87\x36\x01\xf1\xb9\xf1\x83\x71\x86\x7d\xa6\x81\xd2\x1d\xa9\x97\xb4\x34\xc9\xbf\x91\xa4\x97\x09\xf1\xc4\x0f\x0d\x44\xcf\x5a\x98\x9d\x56\x4d\x11\xfd\x72\x10\x17\x00\xde\x5f\x0e\x9a\xe2\xc2\xe1\xfe\xe5\xc0\x3c\xf9\x0d\x70\x39\xb0\x8f\xc1\x36\xb0\x58\x3b\x9d\xa0\x73\x3a\xa5\x67\x64\x4e\x67\x38\x9f\xd2\xa9\x06\xfb\x19\x91\x8f\x16\x59\x86\x16\x54\xea\x24\x77\x36\x8d\xda\x34\xcb\x90\xab\x95\x8e\xdf\xd3\xe6\xff\xe0\xc8\x31\xe1\x25\x92\x24\x6d\x11\x8f\x59\x0e\x60\xbd\xa2\x8c\x1c\xd2\x4b\x2b\x38\x97\xb4\x21\x67\xb4\x22\x87\x60\x99\x79\x6b\x72\x5d\xa8\x53\xa7\x6d\x3e\x86\xae\xe8\xa1\x1d\x05\xc6\xb7\x33\x7a\xa5\xe5\x7d\x67\x64\x46\x24\x76\x26\x12\x33\x7a\x15\x79\xd2\x6e\x6c\xe7\x57\x86\x92\xbd\x2f\x2e\xe8\xbd\x9d\xe1\xfe\xfd\x2c\x28\x59\xee\xed\x8c\x4d\x1a\x0e\x7f\xfe\x20\xd9\x65\xc0\x16\x8d\x60\x12\x75\x9f\x5f\xe1\xe5\xd2\x31\x63\xd2\x99\x0d\xce\x34\xeb\x16\x8e\x50\xf7\xb6\x95\xab\x3d\x3a\x5c\xd9\x8c\x73\x1e\x9a\xfa\x48\x77\xc3\xa3\xdb\x5b\xc4\x8f\x8a\x5b\xa2\x8c\x27\xee\x91\x1e\x5f\x9e\xe4\xc6\x88\xf0\xd2\xef\x1a\xf5\xc1\x25\xbd\x04\x64\xc0\xcb\xe5\x25\x55\x9b\xe0\x36\x9a\x63\xba\x73\x2d\x2b\x73\x49\xbb\xb7\x3b\x09\x68\x09\x5d\xbb\xf5\xf5\x9c\x00\x7d\xe7\x74\x96\x1b\x74\x3c\x27\xc1\x8e\xa5\xf3\xa8\xa9\x29\x29\x4a\xb4\x50\x14\x38\xc6\x59\xba\x20\xc9\x81\x4a\xc3\x03\xf2\x9c\x07\x52\x27\x45\x49\x0d\x40\x88\x7b\x8a\x48\x11\xc3\x3e\x40\x19\x0b\x03\x94\xb9\x04\x57\xcd\x09\x11\xb4\x76\x2b\x11\x90\x0f\x61\x02\xf4\xda\x57\xba\xe1\x9a\x0a\x22\x68\xd5\x2d\x7d\x4a\x25\x29\xfb\x23\x52\x63\x3c\x36\xf6\x7b\x02\xaf\x74\xe8\xe7\x29\xa7\x3f\x0c\xde\x42\x70\x4a\xcd\x7a\x3c\xf6\xe1\x5f\xc8\x25\xa7\xa8\x62\x9f\x36\xea\x01\x44\x12\xa8\x58\xd5\xe0\x41\xcd\xce\x65\x20\x29\x0d\x8e\x82\x8a\xfa\x13\xa8\x42\x35\x69\x68\x02\x3e\x1c\x62\x69\x35\x69\x72\x7d\xb1\x20\x90\x12\x32\x06\x74\x45\xc0\xc8\x23\x59\x11\x40\xce\x80\x6a\x07\x4b\x6a\x24\x38\x57\x9c\xde\x72\x79\x28\x16\x10\x8f\xa5\xad\xfc\x03\x87\x1b\x36\x88\xe5\x47\xcf\xf9\x19\xab\x71\x96\xfd\xc1\x10\xc3\xaa\xdb\x15\x61\xd5\x5f\xaa\x83\x77\xac\xd1\x8c\x4c\xac\x9e\xd3\x5c\x51\x47\x23\x46\x0e\xfc\xab\x44\x98\x08\x3a\xe5\x8e\x10\x8d\x91\xa0\x25\x47\x35\xfd\x5d\xa2\x9a\x30\x22\x30\x11\x18\xdb\xed\x6c\xb3\x8d\x0e\xe3\xa8\x9c\x59\x86\x44\xb0\xe6\x98\x00\x3b\x22\x30\xf9\xa7\x84\x6c\x23\x6e\x98\x6f\xd9\x7c\x56\x94\xec\x3f\x3a\xd4\xa6\xb8\xa0\x23\x22\xfe\x5d\x43\x7e\x2e\xea\xd2\x24\x8e\x4b\xac\x70\xef\x1a\x6f\xa5\xc7\x5b\xc7\xe3\xad\xd5\x78\x2b\x35\xde\x8a\x40\x16\x96\xda\x8c\x77\xcb\x8f\xb1\xf1\x41\x7c\x21\xb1\xa2\x1b\x63\x63\xc6\x58\x9b\x31\x56\x91\xab\xec\x21\x0f\xed\xf3\x48\xe1\x94\xc8\x1d\xf4\x39\x11\xad\x6b\xb1\x97\xdb\x39\x7a\xae\x13\xd6\x5d\x8e\x6a\x68\x3d\xef\x05\xb6\xc4\xcb\x65\xf8\x6b\xc0\xe5\x9b\x45\xcd\xf4\x5e\xb5\x1f\x2f\x97\xa8\xf7\x9b\xb6\x29\x5b\x2e\xd5\x93\x20\x3c\x0c\x09\x78\xc1\x63\x81\x6b\x6f\x44\x04\x5d\x08\xc2\x6d\x00\x6c\x2d\xc1\x1e\xaf\x89\x79\xb1\xc1\x1d\xd4\xf8\x84\x53\xc1\x11\xc7\x39\x12\xf4\x4a\xa0\x06\x4f\x2e\x45\x1e\x88\x80\x39\x45\xda\x18\x4f\x71\x57\x75\xdc\x7e\x24\xd4\xaf\xf1\x04\xf4\x2b\x02\xe7\x0b\xa1\x2e\x6a\x10\xa7\x08\x55\x84\x77\x90\x01\x1b\xb9\x16\xe0\x1a\x34\x62\x4a\x26\xe6\xaf\x31\x85\x30\xb4\xa1\xa6\x57\x9c\x04\x6b\x01\xec\x6d\x07\x4a\x51\x46\xfe\x55\x9d\x88\xf8\x5e\x9d\x48\x20\x7f\xb8\x09\x68\x27\xb3\x33\x22\x5d\xa6\xeb\x8d\x8e\x59\x51\x81\xbb\xca\x6c\xf6\x96\x95\x8c\x5f\x33\x90\xc1\x64\xd9\x1d\x2f\x01\x31\xd6\xb4\xf8\xcb\xeb\x77\x07\xcf\x9f\x9d\xde\xd9\xf0\xd7\xea\xe8\xf6\xcd\xc8\xf5\x0d\xfe\x8a\x0f\x3a\x88\x12\x6a\x6c\x2d\x92\x08\x01\xae\x79\x6a\xf1\x10\x2a\x05\x04\x78\x5e\x4b\x5a\x11\x93\x64\x28\x3d\x52\x88\x80\x03\x89\x5e\x72\x02\x77\x63\x13\xfa\x2a\xc6\xee\xbb\xf1\x5a\xd8\xba\x16\xbf\x79\x27\x7e\xfb\x6a\x80\xbd\x1c\x63\x02\xf7\xa0\x8a\x08\x88\xf5\xb1\x66\x7c\x5d\x84\x42\x8d\xef\x82\x35\x4f\x59\xcd\xaf\x4d\xbd\xe7\xb5\xb8\xd2\x32\xb5\x2c\x43\xe6\x50\xe5\xea\x60\x5c\xd3\xee\xba\x55\x5d\xd7\xec\x72\xd9\x55\x5f\x80\xc1\x75\x55\xcc\xe5\xa5\x68\xb4\x16\x57\x93\xa3\xb0\x7a\x2f\xa8\xde\x85\x10\x70\xd8\x76\x47\xc1\x15\x83\x76\xcd\xe5\x12\x35\x54\xdc\x81\xec\x5d\x1f\x65\x59\x57\x29\xea\x86\xc2\x9d\xc3\xbc\xe3\x25\xc2\xa4\x51\xcc\x96\x25\x36\x6b\x50\x59\xd8\x35\xd1\xa8\xfc\x2d\x58\xb0\x6e\x9c\x6e\x0c\x4f\xf9\xd4\x8c\x2f\xe6\xbe\x77\x34\x57\x73\xc0\x8d\xc9\x01\x97\xf0\xd7\x9f\x4f\xa7\x21\x13\xea\x45\x14\x95\xda\x15\xb8\x7b\x51\x3a\x13\xa6\x98\x9c\x12\x83\x53\x30\x23\x37\x21\xbf\xa3\x9f\xa3\x9e\xc9\x49\xde\x92\x8d\xed\xdb\x5c\x3a\x34\xc8\x56\xbe\xea\xd4\xe7\xed\xdc\x27\xd6\x1b\x5f\xd0\x7e\x7f\x93\x25\x29\xc2\x83\x53\x5a\xcd\x20\x9c\x40\x88\xe5\xf0\x0a\xfe\x0c\x4e\x75\x0a\x80\xb7\xec\x5c\x87\x2a\x51\x85\x39\x42\x4d\x14\x6c\x4f\x8b\x8a\x6b\xcd\xbb\x36\x94\xd2\x4b\x0e\x7e\x78\xba\x84\xde\xae\x9c\xf0\x84\x4d\x74\x9a\xf1\x8d\xe6\x58\x9c\xe4\x90\xc8\x95\xad\x70\xd8\x8b\x20\x0d\x5c\x72\x6c\xee\x81\x10\x86\x49\x0c\xd0\x07\x3b\x3a\x33\x4e\xcf\x01\x32\xa9\xb0\x3f\x04\x77\x81\x76\xf4\x8b\x4f\x5e\xee\xe4\x83\x8e\xf4\x5c\xae\x87\x64\x05\x46\xa4\x7f\xac\x57\xd4\x38\x39\x9d\x28\x68\xb5\x5c\x93\x6c\x78\x7b\xe3\xc2\x83\x27\x06\x0d\x36\x3e\xf1\xe6\x72\xe3\x23\xbb\x91\x1b\xb7\xfd\xcd\xd8\x59\x68\xf0\xa7\xe0\x15\xea\x93\x8d\x3e\xde\xec\xaf\xfa\x79\xa3\x33\xe8\xb8\x81\x7e\xe1\x69\xe2\x6e\x7b\x21\xb2\x2c\x47\x33\x98\x15\xb2\x79\x06\x38\x6d\x85\x56\xf5\xc4\x64\x1b\xd1\xc5\xb4\x22\x61\x2d\x5a\xe1\xbc\xd1\x92\x63\x53\x10\xbf\x35\x22\x29\xfb\x13\xee\x58\xc1\x1d\xfb\xc1\x2a\x0c\xa7\x68\xc3\xc5\xf6\xe2\xc8\xdd\xa1\xcc\xbf\x1e\xe3\x46\x9f\x64\x35\xad\x07\xd2\x64\x2e\xe8\x0c\x5e\x5f\x7b\x8d\x01\xb3\x09\xb2\x5d\x5e\xf7\x31\x76\xb8\xfb\x91\xdd\xe8\xac\x57\x3a\xa2\x19\x69\x70\x6e\x7f\x42\xa8\x33\x02\x31\xae\x9b\xb4\xb3\x00\x03\x44\x22\xe9\x7c\x5f\x6a\xa7\x31\xfd\x3d\x1d\x2a\xfe\x46\x7f\xac\x21\x10\x7c\xca\x91\x39\x4f\x5d\x34\x02\xfd\x4d\x4d\x74\xe0\x20\xcb\xa0\x79\xb9\xd8\x04\xa9\x99\x43\x2d\xfc\xb0\x9a\xa0\x26\x00\xe7\x16\xa9\x70\x5e\xe7\xed\xb2\x40\x99\x24\xc3\xec\x38\x2e\x25\x79\xd0\x03\xc8\x88\x83\xef\x23\x3e\xa8\xf4\x1c\x40\xac\x34\x6c\x96\x4b\xe7\x38\x0b\xa1\x8c\x5e\x95\x8a\xc3\x1f\x5c\x89\x29\x03\x1e\x5f\x57\xa7\x0a\x30\xb0\xe7\x05\xd2\xe1\x6a\x82\xf2\x40\x96\xdb\xd9\x8d\x26\x3a\xcd\x80\x69\xf3\x54\xc5\x2f\x80\x35\x23\xd8\xe9\x22\x54\xeb\x36\x35\x1b\x02\x2d\x9f\x53\x47\x73\x49\xed\x7b\xaa\xd5\x08\x6a\xfa\xb9\x44\xfa\x5b\x02\xb1\xcc\xec\x97\x26\xbc\x76\x38\xf2\xb5\xed\x04\xc2\xdf\x3b\x00\xb3\x63\x01\xb3\x5c\x36\xeb\xf2\x2f\xea\xcc\x0e\x61\x49\x5c\x19\xcc\xc1\xd4\xac\xe1\x82\x0d\xb5\xe3\x22\x00\xfa\xb3\x6f\x01\x7a\x90\x58\xe5\xf8\x64\xdd\x0a\xcc\xdd\x5d\x8a\x77\xcc\xe8\x7e\xb4\xd4\xaf\xc3\x5e\x15\xb7\xf5\x7d\x8b\x7d\x1e\x1c\x8b\x1d\x59\x62\x3a\x93\xc3\x18\x02\xa1\xf1\xac\xdf\xdf\x6c\x6c\xff\x71\x2f\xa1\xbb\x66\xa4\x96\xb2\xe8\xe4\x33\xac\x0e\x7e\xf8\x41\xbf\x36\xc2\x45\xc6\x6c\x58\xb5\x4a\x61\x4a\xa3\x31\xc5\x90\x88\x0e\x4c\xa9\x42\x4c\xd1\x57\x1c\x4c\x2a\x3f\x96\x4a\x4b\xf3\x1a\xd7\x2c\xac\xd6\x9a\x71\xab\x43\xeb\x80\x83\xdd\xd0\x19\x43\xce\xff\x54\xc3\xda\x7f\xa3\xb9\x9a\x68\xc2\xe6\x34\xea\xce\xe7\x31\x4d\xf9\x77\x0b\x86\x09\xcc\x2b\xb7\x92\xf0\xf6\x2a\x74\xa6\xe8\x89\x0c\x88\x15\x37\xa6\xdd\xf3\x34\x8d\xe8\xf7\x37\x6d\x9a\xdc\xf6\x0a\x04\x52\x08\xb7\x02\xd5\xda\x15\xd8\x80\xfd\x09\x3c\x83\xde\xb0\x6a\xd7\xb3\x89\x41\x51\xbd\x16\x0e\xa9\x21\xf2\x41\xee\x09\x48\xee\xac\x9b\x3d\xec\x83\x06\x17\x71\x45\x03\xf8\x4a\x03\x3e\xb6\xc8\xf6\x33\xf4\x9b\x03\x16\x40\x03\xbd\x5a\x03\xf4\xcb\x30\x22\x43\x27\x70\xeb\x2e\xe0\xba\xb4\x21\xb0\xe0\xda\xf6\x15\xc6\x05\xb8\xd5\xef\x6f\xaa\xf6\xba\xa1\x5b\x3b\xe8\xd6\x0e\xba\xf5\x7a\xe8\xba\xc6\xf5\xf6\xae\xe1\x44\xac\x72\xf8\x6b\xfb\xab\x23\xb8\x37\x84\x91\x3a\x85\xbb\x20\xfa\x8b\x7c\xa6\xdf\xab\xe1\x25\x60\x5f\x84\x53\xb9\xab\x37\x22\xb0\x59\x89\x5a\xaf\x44\xed\xe3\x16\x75\x81\xa3\x26\xc2\x2f\x45\x93\x7a\xed\x79\x09\x28\x12\xa4\x20\x92\x94\x3e\xda\xff\x4c\x1f\xc9\x0b\xfd\x67\x4e\x0b\x72\x46\x0b\x3a\x24\x57\x5a\x2d\x64\xe0\x38\xcf\xb2\x33\xef\x1b\x7f\xb6\xb9\x89\x6f\xe7\xfa\x0c\x7e\x74\x36\x41\x57\x74\x6e\x94\x4a\x38\xbf\xa2\x73\xc7\x29\x40\xd8\x33\x3a\x45\x82\xcc\x89\x3c\x3e\x3b\x21\x65\x98\x0a\xf8\x10\xdf\x9a\xa7\x79\x96\xa1\x39\xbd\x32\x72\xff\x15\xcb\xb2\xb9\x3b\x98\x0f\xc3\x83\xb9\x51\x4d\x61\x52\x50\x8e\x0e\x49\x41\xce\x1c\x2b\xbc\x98\xcc\xe8\x61\xbe\x70\x6c\xc6\x21\x59\xd0\x43\x32\xa7\x57\x0a\x8a\x67\x94\x52\x99\x84\x41\xac\x74\x4b\xb3\x60\x3c\x73\x63\x5d\x91\x4c\xd4\x72\x21\x73\x7a\x8e\x84\x9d\x86\x0e\x2f\xc5\xd1\xbc\x35\x8a\x79\x30\x8a\x39\x59\xd0\xb9\x33\x2f\x99\xad\x54\xf3\x73\x5a\x43\xd7\xeb\xba\xb9\xa2\x97\x68\x4e\x04\x39\x0b\xbb\x62\x0e\xa1\xaf\x42\x70\xcc\x07\xfa\x02\x60\x67\x70\x05\xb8\x74\x96\xc3\x5f\x0d\xa6\xab\xd6\x00\xaf\x82\x01\x5e\x91\x85\x02\xbb\xe7\x86\xe6\xdd\x49\x4d\x2d\x73\x86\x04\x61\x78\x85\x31\x09\x70\xea\x4a\x41\x85\x94\x64\xa6\x69\xea\x82\x9e\x31\xa4\xd7\xb9\xeb\x42\xb7\x48\x6f\x59\xbb\x43\x1c\x20\x05\x2a\xe9\x42\xb3\xfc\x25\x6e\xd9\x92\xee\x8e\xb0\xcf\x9d\x3f\xa7\x06\x65\xcf\xa8\x24\x57\x54\xd2\x21\x39\xd4\x05\x17\xb4\x04\x9e\x1b\xb9\xbc\x50\x67\x59\xd6\xbb\x18\x4c\x45\xc5\xc6\x57\x9b\x9b\x41\x05\x7c\x7b\x66\xb0\xf8\x6a\x82\x0e\xe9\x19\x39\x33\x58\x7c\x48\xcf\x22\x2c\xbe\x01\x2c\x3e\x23\x17\x3a\x9c\x17\x99\x85\x88\x7c\xe3\x10\xf9\x2c\xcb\xd0\x19\x3d\x0c\x10\xf9\xcc\x21\xf2\x4d\x8a\xc8\x67\x98\x48\xca\xd1\x0d\x91\xe4\xca\xad\xd0\x7c\xb2\xa0\x37\xb9\xdb\x42\xf4\x86\xcc\xe9\x0d\x39\xa3\x87\x0a\x91\xf5\x1c\x42\x14\x3e\xc3\x64\x11\x8c\xe4\xcc\xa0\xf0\x9a\xd9\x5a\x1c\xbb\x00\x54\xf6\x73\x51\x28\xa6\x86\x72\xd1\x1a\xca\x45\x30\x94\x0b\x32\xa7\x3e\x43\xd4\x02\xb0\xf9\x0c\xb0\xf9\x0c\x7f\xbd\xc7\x4b\x74\x46\x04\xb9\x4a\x7a\xf5\x88\x7d\x11\x82\xe7\x2c\x41\xec\x0b\x40\xec\xab\xfc\x42\x23\xf6\xf7\x8e\x15\x5a\xfc\x36\xc4\x5e\x58\xc2\x19\xc8\xf9\x6b\xc2\x15\xc5\xd4\xd4\xf2\x4e\xf9\x5c\x96\x71\x7f\x4e\xb8\x95\xe7\xe0\x3e\x39\x83\x38\xc1\x3c\x39\x35\xb4\x7c\x61\x71\x77\xb3\x6a\x85\x17\xd8\x1c\x64\xbc\xe3\x20\x33\xc1\x60\x16\xba\x2b\x32\xa3\xb5\x45\xfd\x99\xd6\xdf\xcf\xcc\x79\xbf\x70\xe7\xe1\x2c\xd0\x23\xdf\xcf\xf9\x39\x0a\x46\x8e\x6f\xd5\xb4\x67\x16\x9a\x98\xc0\xd5\x62\x46\x5a\x83\x0f\x38\x2f\x46\x5d\x22\xaa\x55\xec\xc6\x02\xdd\xc7\x57\x16\xdd\xd7\x57\xba\x09\xf9\xc9\x19\xe1\xd1\xcd\x23\xec\x6d\x05\xad\xd8\x3d\xd7\xc0\x0f\x32\xa3\xae\xdd\x55\x30\x33\xb8\x25\xbd\x2e\x51\x3a\x13\xcb\x51\x96\x04\x20\x98\x4c\x4c\xf1\xf0\xa5\x62\x82\x75\x4b\xba\x8e\x1d\x66\xc4\x04\x97\xe1\xa0\xd5\x55\x00\x62\x01\xb9\x96\x4a\x77\x2e\x4b\xc4\x3c\x77\xe0\x62\xf9\x68\x4c\xf1\x57\x7d\xad\x49\xd5\x4b\x37\x83\x5f\x3b\xc0\x32\x40\x9c\xa6\x7a\xdd\x55\x0a\x00\x1c\x95\xc4\x95\xe3\x7b\x13\xd4\x8e\x8b\xf4\xc2\xd4\xc9\xc2\xd4\x84\xaf\xbd\x39\x85\xeb\x01\xdf\x86\xcb\x11\x0b\x2b\x56\xa8\x56\x8c\x3f\x8f\x41\xe6\xdb\x09\x21\xb4\xea\x64\x17\x79\x17\xbb\xe8\x42\x3c\x70\xda\xef\x6f\x72\xab\xc9\xae\xb3\x6c\xcf\x82\x6c\x82\xd6\x4c\xab\xbd\xdc\x7a\x0e\xaa\xc2\xab\x3b\x86\x8a\x89\x34\xce\x8e\x07\x1c\x71\xc7\xa1\x9d\x39\x9a\xa1\x5e\x9d\xb1\xe0\xd5\x55\xf4\x6a\x91\x65\xc0\x39\x73\x4c\xba\x32\x06\x2b\x12\xd0\x9b\xd9\x7d\xcf\x22\xc3\x0f\x63\x87\xa1\x4f\x48\x9b\x3c\x8e\xf8\xa3\x72\x8b\xe8\xc4\x5a\xb3\x02\xbc\x5d\x97\x4b\x36\xa8\xe0\x6f\xdf\xe9\xe3\xfa\x5e\x9a\xa7\xa7\xab\xb5\xec\x47\x9c\x7e\xe1\xa8\x37\xc4\xe4\xbd\x7e\x1a\x61\xf2\x99\xd3\xdb\x15\x79\xcd\xbd\x65\xec\x67\xbe\x22\xaf\x92\xdf\xcf\xe2\xdf\x5e\xf0\xfb\x8e\x5b\x07\x73\x4a\xe9\x67\x9e\x9e\xeb\xf7\x77\xbc\x43\x48\x20\x1a\x7a\xc2\xa3\x58\xe2\x33\x81\x9e\x71\xe3\x07\xf3\x8a\x1b\xff\x8d\xd7\x9c\x7c\xe6\x98\xb0\x20\xca\x8c\xb5\x53\xd7\x20\x1a\x8d\x72\x08\x8b\xe6\x83\xd2\xb8\x58\x68\x0d\x40\x04\x02\x14\xfc\xf2\xf6\x65\xfe\x58\x9f\x36\xa4\xdf\xc7\x89\x1f\x5e\x43\x1f\x33\xd4\x50\xc4\x28\xa4\x03\x9d\x34\x41\xde\xc8\xbc\xc1\x51\x33\x86\x1f\x67\x3a\x9f\x22\x44\x33\x5d\x95\x6a\x9c\x76\xb8\xe1\xc5\xff\x23\xd7\x7e\x42\xea\x6d\xa9\x66\x05\x7f\x9e\xf1\x30\x79\x1d\x80\xee\x1d\x47\xcf\xb8\x73\x53\x31\x81\x15\xdf\x71\xf4\xda\x17\x92\x0a\x46\x69\x2c\x8a\xf1\xb8\x31\x1a\xee\x04\x5a\x55\x28\x10\xfd\x00\x8d\xbf\x72\x8d\x18\x0b\xc9\x68\x44\x5a\xa8\xff\x34\x58\xda\x30\x70\xf5\x63\x6e\x33\xb5\x9a\xa0\x19\x81\x80\x11\x04\xf1\x10\x11\x43\x63\xae\x0d\x15\x14\x69\x1b\x02\xc3\x91\x2a\x08\xdd\x55\x41\xb2\xae\xcb\x9b\x69\x5d\x34\x90\x30\xd1\x66\x55\x85\xe8\xdf\x3e\xdd\xaa\x0e\xf7\xee\x83\x10\xd8\xb8\xb3\xa3\x7d\xea\xe2\xd9\x05\x7a\x58\xdb\x35\xa8\x99\x06\x35\xbb\x66\xc5\xec\xa8\x9e\x1a\xad\x81\xaa\x83\xf6\x76\xb2\x40\xfa\xd7\xd1\x74\x15\x25\x28\xc5\xb7\xe6\xc1\x12\x86\x06\x64\xa5\x50\x34\x56\x34\x98\x57\x0b\xd0\x2f\x00\x70\x8d\xd1\x90\x13\xe8\xc2\x20\x2d\x9f\x19\x5a\x1c\x35\xa6\xb9\xe5\xd2\x3e\x85\xd1\x86\xe1\x66\xd6\xb8\x4a\x2b\xd7\x86\x1b\x84\x79\x08\xe5\xb6\xdd\x37\xc2\x37\x91\x95\xea\xad\x33\x00\xce\x19\x81\xd3\x2d\x6f\x34\x55\xf8\x2d\xb5\xbd\x79\x6a\xd2\x22\xb1\x9a\xfc\x79\x97\x5d\xce\x5b\x4e\x87\xe4\x25\x37\x41\xa5\xcc\xdf\xe7\xe6\xef\x2f\xb1\xc5\xf0\xaf\x1c\x59\x07\x04\xa7\x2f\xd8\x1a\x85\x18\xfb\x7b\x6c\xe3\x1a\x47\x14\xf3\x99\x67\x87\xe3\xca\x79\x44\x64\x59\xe5\x6d\x98\x2a\x13\x37\x48\x47\x02\x83\x30\x60\x9d\x31\xc0\xbc\x17\x03\x6f\xc5\x3c\x7a\xcb\x29\x57\x33\x6a\x48\xd3\x61\x01\x90\xd8\x1c\x9b\xa2\xc4\x58\x6b\x48\x7e\xf3\x9b\xae\x72\x91\xd3\xec\x53\xdc\xec\xe4\xb0\xc8\x2f\x0a\xc2\xc0\x4e\x49\xe0\x76\x6b\x94\xbe\x55\x23\xa3\xc3\xf1\x54\xe8\x0c\x00\xad\xee\x7a\x68\x6b\xf7\x11\x4f\x6f\x54\xdb\xe0\x22\xcc\x37\xe9\x48\xad\x88\x5d\x9c\x8e\x09\x04\xa3\xbd\xf1\x23\x31\x0e\x25\xdd\xe3\x51\x38\x1f\x7c\x76\x55\x90\xc6\x4a\xdb\x5e\x78\xd6\xf6\x05\xd7\x66\x73\x80\x25\x7a\x0c\x2f\x43\xdc\x20\x4d\x6b\xc8\xc3\xce\xc3\xe2\x27\xee\x32\xab\xdd\x46\xd0\x33\x91\x7c\x9d\x95\xb7\xfb\x19\xd8\x9a\xff\xe5\x1f\x03\xcb\xd2\x58\xe8\xfb\x9c\x4f\x5e\xf2\x64\xbd\x9f\x73\xca\xf2\xe7\x9c\x3e\xe7\xc6\x18\x9b\x3c\x0f\xdc\x48\x7f\xe0\x28\x44\xd4\x17\xdc\x0e\xf0\x25\x0f\x4c\xa3\x9d\xdd\x08\x9b\x24\xeb\xae\x87\x01\x64\x87\x59\x40\x19\xd2\xbf\x7e\x4c\xb9\x19\x4b\x40\x57\x1b\xfc\x5c\x21\xeb\x0b\x4e\x99\x73\xd6\xb0\x98\xd6\xd2\xce\x29\xe8\xb6\x40\x88\xd4\xb7\xb8\xc3\x5e\x5f\xbf\x7e\xc1\x3b\x2d\xe7\x5f\x84\xe6\xd4\x7f\xd9\x22\x78\xe8\xf0\x6a\xf8\x26\xf8\x5a\x1a\x16\x82\xf9\xe7\x88\x82\x75\xea\x60\x27\x0d\x62\x38\x0f\xb4\x38\x3f\x86\x4e\x39\x1c\xa9\xc3\xb3\xd1\x23\x0b\x2e\xd3\x69\x5a\xdc\xed\x91\xda\x2d\x15\xa8\xf7\xde\x32\x45\x24\xd9\xf4\x2d\x9b\x2e\x4a\x56\x53\x66\x94\xca\x2f\x38\x98\x45\xfa\x79\x73\x5a\x75\xd8\x8f\xf3\x50\x05\x6e\xdc\xc5\x24\xd5\x3e\x16\x63\xe3\x6a\x61\x76\x86\x99\xba\x5c\x05\xad\x52\xa1\xb3\xa0\x85\x96\xa4\x51\x7b\xc2\xb4\x05\x7c\xb7\x5b\x9b\xb1\x36\x53\x97\xd4\xec\xb0\x19\x15\x8a\x62\xe8\x0b\xe8\x2c\xd9\xc5\xc0\x9f\x3e\x7c\x6b\x90\x76\xde\xb2\x91\x4e\xeb\xa7\x96\xd2\xb3\xd4\x52\xba\x00\xd0\xe7\xb3\x81\x7e\x20\xac\xb8\x60\xb5\x81\x9f\x6a\x2d\xf8\xa9\xdf\x69\xe4\x32\x6f\x34\x72\xb5\xed\xbe\xcb\x09\x92\xb4\xa4\x73\xc2\x15\xdf\x5e\x1a\xc9\x03\x9d\x93\xc5\xa3\x97\xbc\x6d\x91\xd9\x2a\xa3\x0b\x6d\x50\xab\xad\xc3\xad\x98\xbb\x54\x5c\x90\x6d\xeb\xdb\xad\xc3\xff\xc3\x73\x06\x8b\xf1\x05\x49\x7b\x51\xb7\xab\xb8\x2d\xe0\x52\xc3\x46\x72\x86\x6a\x62\x47\x81\xc7\xea\x72\xac\x9a\x8d\x3d\x02\x67\x59\xa6\xd1\xc7\xc3\x96\xd3\x3a\x37\x50\x90\xe4\x71\x8d\xea\xf4\xc8\xc3\xcb\xa5\xf5\x9f\x4a\x0f\x43\x55\xd7\x9b\xbc\x72\xf3\x4b\xe3\x6f\x49\xe2\x6d\x64\xbe\x30\xdb\xfb\x38\x69\x2a\x48\x5e\x1c\x44\x9c\xff\xe3\x3f\xb5\x87\x7d\x6f\x44\xf8\xdd\x0b\x66\x88\xeb\x58\x57\x81\x6f\xe3\xed\x68\xb2\x1b\xd8\x7d\x08\x07\x33\x65\x88\x13\x69\x17\x81\x48\x63\x32\x6e\x16\x41\x6a\xd0\x3f\xae\x11\xff\x0e\x20\x73\xe2\x18\x46\x07\x5d\xd0\x5f\x07\x90\xc7\x9d\xc0\xe6\x16\xd8\x9c\xd4\x01\x54\x59\xe1\xa1\xaa\xce\xd4\xf1\x7a\xb2\xaa\xa3\xda\x31\x84\xdb\xc3\x0a\xfb\x57\x37\x65\x30\x39\xff\x4b\x3b\x5c\x85\x0e\x5d\xc4\x42\xda\x44\xd9\x6a\xaf\x4a\xfe\x33\x27\xad\xc1\xe7\x6c\x85\xdd\x22\xd1\xb3\x62\x70\xc6\xab\xa9\xbe\xbd\xbd\x84\xbb\x4e\x0b\x83\xc2\x54\x05\x4d\xd1\x52\x55\x33\x7a\xdb\x14\x17\x39\x23\x65\xcd\x54\xfb\x8d\x4e\x6a\x2a\x6e\xf2\x8a\x4c\xd9\x5c\xe6\x75\xc7\x89\x85\x1a\x75\x92\x87\x7e\x39\x13\xd4\xd0\x5b\x6f\xfd\x61\xaa\xc7\x95\x80\x6d\x0c\x2c\x44\x98\x39\xda\x70\xee\xef\x3e\x61\x05\x75\x4f\xed\xa8\x9e\xa3\x3a\x71\x7a\x62\xc4\xbc\xab\x93\x0e\x70\x68\x6f\x51\x15\xde\x07\x5d\xed\x9a\x18\x4e\x81\xf1\x48\x91\xaa\x4a\x01\x1b\x5e\xf2\xd0\xe2\x8b\x11\x91\x2e\x7c\x81\x46\x4b\xf5\x99\xbe\x74\x11\x67\x41\x6f\x32\x71\x85\x16\x03\xa2\xd5\xc5\x0f\x80\x70\xb4\xf5\x91\x31\x94\xd4\xe5\xc1\xb6\xb3\x2c\x55\xa1\xd8\xa3\xd6\xde\xe4\xb4\x18\x98\x65\x0c\xa4\x41\xbf\x73\x54\x13\xf5\x62\x2e\xdd\xe5\x0e\x1a\x6e\x0a\x30\x45\xe1\xa4\xc6\xab\x6f\x9e\x26\x8f\x6c\x20\x78\x11\x39\xa8\xd7\x05\xda\x1d\xed\x91\x1d\x12\xab\xfb\x8b\xb8\x96\xe8\xae\x25\x5b\xb5\x76\xc8\x56\x52\xa7\x2c\xbe\xce\xfa\xe8\x2d\x4a\x14\x07\x44\x02\xb7\x71\xad\x7f\xc4\x2b\x6c\xb3\xbd\x35\xe1\x45\xd9\x7d\xe5\xf8\x77\x16\x7d\x1c\xdd\x5d\x56\xd8\x64\x21\x0f\xcc\x57\x8a\xc4\xf7\xbb\xa2\xfe\x92\xef\x4d\xf1\x27\x60\xf1\x51\x16\x0d\x3a\x66\x27\x7a\x24\xc4\x4c\xb4\x0c\x37\x75\x03\x1e\x83\xa1\xb1\x49\x11\x25\xa2\x9d\xc7\xb0\xfa\xa9\x85\xd7\xf4\x98\x79\x54\x6c\x4c\x46\xb2\x93\x70\x5f\x9c\x17\xa1\xef\x22\x20\x62\x43\x5b\x9f\xb8\x13\x22\x46\xb6\x58\x47\x5e\x87\xd6\xfb\xbf\x83\x3a\xf6\x78\x74\x82\x27\xf5\xf1\xf0\x24\x47\x55\x7b\x64\x6a\x24\xc1\xe4\xa6\xff\x5b\x43\xd1\x6b\xfc\xf5\x01\x5d\x16\xb1\x61\xfe\x5b\x81\x30\x44\x22\x78\xf0\xa8\x9e\xec\x3f\xc8\xeb\x28\x20\x01\x83\x58\x03\x18\x13\x55\xe3\xfe\xc3\x7a\xb2\x7f\x3f\xa9\xa1\x5b\xf9\x33\xf0\x8a\x08\x9e\x3b\x66\xda\xd4\x37\xaa\xd5\x11\x26\x15\xf2\x79\xa9\xc2\x6f\xea\xd5\x2a\x94\x12\x9c\x25\x03\xee\xf0\x1b\x11\x2d\xb6\x2e\xf4\x21\x49\xf8\x3a\x61\x19\xb9\x84\x83\xd3\xa2\x3e\xcf\x65\xa5\x37\x48\x6b\xdf\x9d\x5c\x00\xa8\xb6\xe4\x06\x62\x2d\x72\xd4\xc9\xef\xc3\x3d\xdf\x72\x14\x82\xf0\xd0\x35\x94\xa8\x2b\xf6\x4b\xae\xe5\x05\x46\xed\x04\x25\x58\xdd\x99\x87\x44\xa4\x3c\xee\x5b\x4e\xda\x8c\xef\x5b\xee\x6e\x83\x6b\xdc\x97\xec\x58\x97\xcb\x21\x28\x09\x12\xff\x4f\x87\x5b\x60\x23\xde\x71\x76\x63\x6c\x63\x57\x14\x49\x05\x7d\x28\x4b\xca\x51\x41\x2a\x10\x85\x8b\x98\x81\xe5\x44\x04\xec\xab\x66\x3e\x25\x71\x92\x3e\x13\xae\xa2\xc4\xb7\x2b\xeb\xab\xa3\x3d\xaa\x0a\x7a\x5b\xb3\xc2\xfa\x30\xe4\x82\x93\x85\x74\x51\x6f\xf2\x5f\xf5\x4f\xf3\x52\xff\x32\x47\xb5\xfe\xf1\xf2\x6a\xce\x6a\x48\x91\xf4\xa2\xa8\xa6\x33\x66\x8a\x5f\x15\x37\x62\xd1\x44\x35\x0f\xd9\x95\x30\x8f\x16\x1b\xec\xaf\x73\xf3\xa4\x71\x42\x3f\x3f\x65\x67\x8b\x0b\xf0\x94\x77\xd5\xac\xa0\xcd\x56\x38\x67\x75\xcd\xa6\x61\x1d\x08\xac\x09\x29\x16\xf3\x5f\xf9\x8a\x1c\xde\x3d\xb9\x79\x11\x4e\x4e\x84\x93\xe3\x45\xe7\xe4\x52\xe7\xab\xef\xa6\xd5\xf5\x1d\xb4\xba\x05\xb7\xd8\x71\xca\x1f\x91\xee\x58\x73\x60\x8d\x6b\x6a\x32\x18\xf0\xa2\x1b\x1d\xd4\x90\xdc\x49\xcb\x56\xe1\x32\xa5\xb3\xd6\x24\xa2\xab\x7d\x3d\x6d\xd4\xe0\xbc\x21\x75\x7a\xbb\x09\x38\xdc\x46\x73\xb8\xf5\xdf\xe4\x70\x59\x07\x83\xdb\x7c\x8d\xc1\xad\xdb\x0c\xae\xc5\xbe\x0e\xfd\x36\xf3\xd2\x7b\xb6\x22\x1d\xe7\xa3\x06\x91\x61\xae\x8b\x04\x63\x17\x45\x8c\xb1\x6f\x3a\x30\xb6\x6b\xcd\xe0\x2e\x41\x6a\x5a\x1d\x0f\x4f\xd4\x55\xea\x78\xe4\xc2\xbb\xf1\x02\xa5\x27\x42\xf5\x9d\x27\x02\x04\xd4\xe9\x3a\x0c\xaa\xd5\x0a\x13\x58\x79\x4c\xea\x55\xb2\x91\xda\x96\xf6\xac\xd0\x47\x0b\x6d\x8e\x87\x27\x1e\x05\x9a\xe3\xd1\x09\x39\x9e\x17\xe8\xb2\x85\xdd\xc7\x0d\x61\x27\x18\x72\x78\x90\x8b\xbb\x37\xe5\xf9\xfa\x4d\x59\x74\x6f\xca\x59\xd1\xda\x39\xb2\x70\x5b\x63\x5a\x84\xa8\xfc\xa3\xa3\x38\x55\xe1\xd7\xaf\x1d\x6c\xea\x47\x8e\x7e\xe6\x7a\x83\xfd\x1b\x96\x55\xb7\xd6\xbd\xae\xc5\xff\x9d\x75\x35\xc3\xec\x5e\xd7\xf3\xaf\xad\xeb\xcd\xff\xcb\x75\xfd\xe3\x1b\xd7\xf5\x8f\x7f\xeb\xba\xfe\xf1\xff\x1f\xeb\xfa\xc7\xbf\xb4\xae\xd7\x3a\x8f\x15\x39\x30\x7f\x4f\x8b\x48\x03\xf5\x29\xe2\xbd\xbf\x94\x68\x57\x9b\x77\xc0\x7f\x43\x3c\xae\x22\x43\x96\xfe\xd3\x67\xaf\x9e\xbd\x7f\xf6\x14\xf2\x36\xa5\x05\xa1\x47\x67\x68\x06\x1d\x7a\x7f\x38\x7f\xfb\xe0\xc2\x3e\x41\xe1\xaf\xd8\xf3\x84\x25\x9e\x27\x2c\xf2\x3c\x89\xdf\x06\x7e\x2f\x45\x9c\x94\x3b\x30\x24\xd8\xcd\xc3\xb0\xa1\xc9\xed\x01\x35\x14\x42\x1c\x39\xd5\xba\x4e\x26\x16\x64\xe3\x74\x6f\xdb\x99\x43\xcd\xd2\x83\x91\x57\x04\x8b\xde\xd0\x18\xbe\xec\xe5\xad\xee\xfa\x26\x83\xad\x3e\x40\x8d\x33\xe0\x76\x34\x86\xaf\xb7\x3b\xda\xce\xef\xc8\x9b\x7f\x54\x18\x5b\x84\xd3\xc2\x62\xd4\x41\x01\xe9\xb0\x9d\x86\x1a\xdc\xa0\x0c\xd0\x4c\x96\x93\x86\x1e\x54\x48\x0b\x5a\xde\x19\xeb\x11\xbc\x5c\xba\x4a\x2e\x28\x52\x10\x3d\x63\x34\xdc\xda\xcd\x42\x07\xb9\x2d\x8d\x6c\x70\x11\x45\xd7\x05\x65\x78\xfc\xa9\x40\xd7\x85\x0e\xe8\x48\x99\xc2\xc9\x83\x0a\x19\x6f\x22\xf0\xc5\x35\x52\xe9\x6f\x6c\xb7\xa0\x2c\x98\xe8\xfb\xc2\xaa\xe6\x7d\x58\x2d\x17\x39\x2c\xcb\x76\xb5\x87\x56\x71\x91\x65\xdb\xfe\x71\xe4\x9e\xc7\x38\xf8\x0c\x9a\x76\x2d\x7f\xb6\x20\x64\x3d\x4a\xaf\x0b\xaf\x3e\x55\xa0\x3a\xb5\xbf\xf5\x00\x60\x6c\x43\x62\x42\xec\x34\x16\xd1\xf8\x39\x72\x03\x58\x2e\xfb\x97\xac\xd0\xe9\x04\xb2\xac\x7f\x26\xa6\x37\xe6\xb9\x77\x51\x69\x63\xff\x50\x6d\x8f\x4d\x6c\x8a\x83\x62\xdc\x8c\xb1\xd9\xb0\xa4\xd1\xa0\x0b\x17\x48\x75\xa2\xc7\xa0\xd3\x6d\x68\xb4\x87\xe5\x74\x4a\x37\xd4\x76\x7f\x84\x30\xeb\xd6\xf2\x40\xa7\xca\x6b\x09\x91\xef\x63\x08\xd3\x62\x81\x1b\xf4\x4a\x1a\x3a\x1c\x33\xad\xcb\x07\x6b\x91\xc0\x2e\xc5\x6e\x35\xc8\x84\xce\xcf\x51\xff\x1f\x3f\x80\x11\x03\xb6\x77\xb0\x06\xdf\x6a\x1c\x60\xf1\x44\xac\x65\x55\x73\xef\x1e\x20\x44\xff\x87\xbe\x66\xcf\xfb\x3f\xf4\xdc\xd3\x04\x9e\x96\xcb\x66\x73\x73\x95\x0c\x6a\x65\xa8\x9d\x89\xe7\x75\x50\xd0\xeb\x62\x02\xdd\x78\xa3\xb0\xb0\x43\xed\x32\xd0\x56\x86\xbf\x2e\x10\x8c\xf0\x3a\x24\x9e\x3a\xd7\x6b\x91\x98\x00\x1c\x7d\xaa\x58\x4d\x9e\xc5\xd4\xf5\x5d\x20\xf1\x33\x36\x12\x4e\xfb\x3d\x79\x0f\xae\x60\x40\x6c\x49\x8d\xf3\x23\x0e\x4b\x0f\x95\xa0\x24\x30\x0c\x2a\x42\x8f\x82\x0a\x1c\x48\xd5\x49\xe7\xee\xdb\x35\x3b\x77\x71\x84\x55\x33\x42\x9d\x6a\x81\x26\x9f\xab\x12\xaf\x76\x7f\x56\x44\x5e\x64\x4b\x3a\x22\x66\xa4\x46\xdf\xae\x2d\x3d\xf2\x24\x74\x58\x1a\x6a\xcc\x35\x90\xd1\x7b\xbb\xa3\xfb\xad\x10\x2d\x0f\xa9\xe8\x88\x41\x47\x87\x98\xfc\x53\xf7\x26\x42\x19\xc6\xc7\xa2\x65\x78\xe0\x94\xb6\xe6\x4e\x5d\x85\x44\xbb\xcb\xd8\xba\x58\x2e\x8f\x4a\x54\xb8\x48\x26\x3d\x0a\x22\x51\x1f\x14\xd1\x89\x10\x2a\x70\xef\x2d\x6a\x16\x54\xad\xa2\xaa\x13\x84\x58\xe8\x31\xa6\xbd\x0e\x8c\xc1\x00\x58\xc7\x71\x63\xfb\x08\xf0\x27\x2c\x30\x88\x31\x4b\xcd\x00\x84\x10\x9b\x63\x97\x68\x7f\x22\x5a\x90\xbf\xf4\x44\x0b\x33\x51\x67\x93\x56\xd8\x80\xcb\x44\x3c\xe4\x59\x86\x04\x2d\x62\x42\x40\x90\xbb\xa9\x82\xbd\x90\x99\x01\x9e\x54\xf9\x6f\x35\x46\x82\xd4\x10\x2a\xb8\x06\x6f\x5b\x18\x14\x9e\x18\x48\x73\x9c\xa7\x2b\xae\xdd\x16\x0b\xe7\xf0\x76\xc7\x2c\x02\xeb\xac\x64\x91\xe2\x03\x8d\x41\xde\xae\x84\x7c\xb5\x47\x65\x42\x10\x8e\xd4\x3c\xf1\xa4\x6d\x4e\x91\x62\x0c\x71\x93\xc0\xf9\xd3\x22\x70\x53\x0b\x0c\xbb\x8a\x38\x3b\x9b\xda\x10\x0e\x7d\xbc\xeb\x91\x5b\x7e\x66\x86\x04\xfe\x48\xb1\xff\xe3\x92\x8e\xb6\x1e\x04\x4d\x3f\x2d\xda\x09\x56\xaf\x04\xaa\x92\x10\x04\xee\xa2\x47\xcf\x04\x6a\xc0\x7a\xd7\xec\xc4\xea\x6f\xed\xc4\xea\xff\xdd\x4e\x7c\x5c\x24\x0e\x4c\x30\x5d\x3b\xf7\xde\x70\x7c\x2d\x50\x63\x4e\x6a\xb0\x67\xe2\xe7\xc8\x4d\xd6\x19\x79\xb9\x90\x1d\x1e\xe4\x28\x90\xe9\x59\xd3\x9b\x56\x41\x00\x8c\x2d\x4c\x2e\xac\xbf\x2c\xb9\x36\x4f\x9a\xb8\xf5\x86\xe3\xd0\x3e\x2d\xa4\x12\x41\xdf\x44\xa6\x36\x70\xe3\xc2\x04\xad\x90\x63\x1b\xc3\xce\x44\x8e\x20\x33\xe3\x8f\xb9\x3e\x30\xc5\xcc\x61\xd2\x6c\x32\xa3\x82\xa3\x19\xce\x67\x7a\xbd\x67\x5d\x38\x61\x6d\xdd\xab\xb5\x91\x1f\xc8\xbc\x33\x1b\xe6\xa2\x3b\x22\x44\xb1\x2e\x22\xc4\x78\xde\x1d\x13\xa2\xf8\x86\x40\x22\xdd\xdf\xad\xfd\x60\xb9\x04\xcd\x6d\xbd\x5c\x96\x90\x5d\x34\xcb\x6e\xd4\xc2\x28\x6a\x36\xc3\xc4\x07\x17\x3c\x6f\x69\x8f\x0b\x13\x7e\xe1\x9c\xcc\x41\x30\x4f\x0a\xb5\x94\x65\x5a\x8f\x98\xe6\xd5\xde\x2c\x97\x4b\x1f\xad\x7c\xb9\xe4\x7c\xd2\x15\xfd\x6d\x63\xa1\xc3\x72\x28\xf4\x58\x28\x54\x69\xb5\x89\x09\x92\x94\xf3\xe5\xf2\x50\xd7\x92\xa4\x26\xe7\xe0\xc2\x83\x27\xe8\xbb\x60\x77\x47\x3c\x8d\xa2\x3b\x9e\x46\xf7\x42\x76\x35\xda\x55\xba\x26\x8a\xc6\x9d\x83\xbb\xe3\x25\xc2\xeb\xda\xeb\x8a\x76\xd1\xc4\xd1\x2e\x70\xfe\xb5\xc9\xac\xff\x96\x24\xfb\x90\xb6\x2c\x2b\x68\x89\x89\xdd\x9c\x35\xb1\xc8\x52\x12\xb7\x41\xe9\x8c\xd4\x54\xfe\x4b\x83\xa8\x69\x6f\x64\x08\x57\x42\x27\xb4\x4d\x55\x9b\x5e\xb8\x21\x35\xd6\xa7\x22\xf2\x46\x9f\xc8\xfc\x27\x61\x5d\x85\xa5\xc2\x3c\x4f\x4f\x5a\xf4\x03\x25\x14\x06\x7f\x2f\x39\x21\xa8\x93\x5c\xa0\xbb\x28\x0c\xfe\x4e\x52\x82\xff\x2f\x51\x92\x0e\xea\xe0\x11\x23\xa4\x22\x2d\x6a\x43\x82\xa6\xcf\xff\x1e\x15\x69\xb5\x89\x09\x5a\xa4\x54\xa4\x24\xe7\x7f\x83\x8a\x68\x50\x7f\x13\xc4\x6c\xc8\x9f\x6f\xa1\x23\xb6\xd9\xce\x62\x54\xc3\x50\xbf\x83\x9c\xf8\xe6\xd6\xbf\x35\xad\x7e\x0b\x55\xb1\xcd\xb5\x76\xe5\x77\xe1\x67\xfa\xfd\xd6\xee\x5e\x4c\x98\x3a\x21\xe9\xba\xd7\x59\xbc\x13\x16\x35\xcb\xca\xb6\x15\xf2\x72\x79\xc7\x40\x7b\x5f\x1f\xe8\xdf\xef\x49\x4d\xe9\x1b\xe8\xe5\x79\x17\xbd\x3c\x4f\xe8\xe5\xe2\xff\x8b\xb0\x01\x32\x6e\x19\xee\x37\x45\xc4\x5c\x07\x96\xfe\xc9\x5d\xc5\xdc\x11\x4c\xe8\xe3\x2e\xdf\x07\x9d\xe6\x24\xcb\x7a\x4e\xa4\x23\xb2\xec\x00\x42\x59\x90\xde\x08\xfb\x7b\xc8\xb8\x8e\x4e\x8f\x57\x85\xcf\x6b\x64\x0c\xe1\x8a\xee\xcd\xdd\x49\xa7\x41\xcc\x62\x2c\x7f\xcc\xcd\x3e\xd0\xcd\xc5\xb7\x03\xcf\x4c\xc3\xcd\x41\xdf\xd0\x62\xd1\x81\x62\xa3\xb9\xbb\x3b\xe8\x97\x50\x28\xe1\x06\x65\xee\x17\x52\xd7\x49\x95\x7c\x3a\x76\x56\x30\xed\xa1\x6b\xc9\x43\xf6\xb7\x22\xcc\x1a\xeb\x03\xc2\x39\x05\xbe\xd1\x13\x4c\x2e\x04\x1a\x92\xb4\xb4\x55\xa0\x9d\x4b\x4c\x1e\x9e\xdc\x3d\x66\x99\xf9\xdc\x1e\xa8\x6a\x09\xb4\x8f\x54\xec\xec\xa7\x3d\x76\xfe\x2c\xc8\xdb\x82\xbc\x2c\xc8\x8b\x82\xde\x26\x02\x2d\x52\xb3\xa6\xbe\xd1\x21\xe0\x03\x67\x9e\xe7\xb1\xd9\x04\x11\xd4\xde\xec\xbd\x0d\x83\xe1\x02\xe8\x53\x67\xda\x4f\xa4\xb9\xf3\xa0\xba\x13\x8b\xf0\x72\x69\xdf\x6c\x65\x05\xf6\x76\x05\xcc\x5f\x3f\xd3\xd0\xab\xa4\x9e\x20\x49\x7b\xc3\xe4\x2e\xb7\xb7\xeb\xcc\x95\xbc\x77\x6d\x6b\x87\x38\xf5\x03\x1f\x9c\x1b\x7d\xcd\x72\xd9\xd3\x05\x2e\xcf\x4b\xa1\x6a\xbd\xbf\xe4\xf2\xb9\xab\x82\x8a\x25\x1d\x81\x9f\xd4\x53\x4e\x46\x59\xe1\x2f\xa6\x70\xeb\x73\x72\x11\xdf\x6c\x96\x1d\x15\x48\xb1\x49\x50\x41\x06\x6f\x08\xe2\x10\x15\x06\x2c\x9a\xc8\x30\x89\x53\xd2\x40\xc0\x58\xb4\x95\x69\xf8\x6a\x89\x66\x10\x40\x32\x76\xff\xb0\x0e\x46\xf0\x7f\x6e\x7e\x59\x5f\x4c\xef\x71\xc5\xc6\xd8\x49\x2b\x38\x38\xa0\xc5\x01\x9b\x50\xa5\x46\x24\x89\x68\x85\x4d\x69\x08\xf7\xf1\x99\x5a\x9b\xe0\x45\xe1\xf6\x0e\x27\x2e\x1f\x9d\xa0\xde\x19\x74\x9d\x1f\x8c\xfe\xc8\xcb\xf5\x20\x75\x91\xb7\xde\x4b\x57\x5d\xc1\x50\x04\x89\xb6\xb0\x1d\x94\x81\x2f\x8f\xe0\x5b\xe9\x28\x53\xb1\xb2\x60\x3d\x88\xc1\xc3\xfd\x7b\x00\x8c\x61\x84\xfa\x51\x2d\x8f\x89\x1a\x44\xa5\x85\xb7\x1c\x63\x69\x7b\xab\xc0\x9a\x37\x81\xb7\x50\x23\x14\xa1\x77\x69\x43\x2a\x07\x68\x41\xba\xb3\x60\x0c\xef\x5a\x80\x8a\x08\xe7\xc6\x15\x93\xb9\x60\x35\xaa\x36\x21\x8b\x16\xa4\x5a\xf1\x73\x0f\xe5\xbf\x81\xbc\x0e\xf5\x48\x24\xcb\xb0\xb8\x87\xff\x2f\x63\x77\x15\x9d\x9e\xb6\x9f\xef\x59\x83\x60\x13\xdc\x09\x66\xbd\x3c\xf1\xc2\x04\x79\x87\x8c\x84\xae\x25\x9a\xea\xca\x53\x42\xcd\x31\xbd\x2e\xa9\x42\xd5\xd5\x48\x5a\x48\x1b\x4c\x2a\xee\xd6\x29\x32\x24\xfd\x35\xe1\x0d\x34\x4f\x90\x6c\x50\xeb\x16\x50\xa4\x8e\x4a\xf4\x96\xcb\xc7\x45\xf9\xf1\x53\x51\x4f\x25\x64\x11\x51\x67\xb6\xb3\x80\x71\x3f\xdf\x35\x45\xdd\x98\xc4\x23\xb3\x42\x36\x79\x4d\x9a\x82\xcf\xf2\x0a\xfe\xf8\x35\xc8\x87\x50\x00\x19\x69\x05\x09\xec\xa9\xf9\x2a\x47\xc5\x20\xe8\x8c\x36\xa4\x18\xb8\xf6\x35\xfc\x83\x02\xd7\x21\x1d\x92\x02\x94\xa3\xc0\x1a\xaa\xc6\x69\x65\x1e\x7c\xb7\x50\xc9\x76\x4c\x85\xf9\xc2\xa8\x53\x43\xe9\xea\xef\x89\x79\x61\x72\x38\x0a\x08\xd5\xe8\x5c\x4b\x09\x07\xef\x73\x0e\xa1\x66\xac\x5e\x21\xda\xad\xe6\x6c\x44\x75\x70\xaa\x62\x8c\x6b\x3a\xca\xea\xe5\x56\x2c\x03\xdc\xdb\x89\x7c\xb8\xf4\xe6\xb3\xc7\x2e\x0b\x8f\x5d\x96\xeb\x7d\x67\x9d\x51\xfd\x46\x72\x8e\xb9\x5a\x25\xd6\x4d\x8e\xb3\x0c\x50\xb4\xc2\xe3\xc8\xa7\x56\x7f\x92\xbe\x72\x4d\x18\x9f\x58\x16\xfb\xc4\x32\xe2\xc8\x4d\xe4\x13\x0b\xf2\x03\x97\x00\x20\xf4\x8a\x65\x9d\x5e\xb1\xcc\x79\xc5\x32\xef\x15\xeb\x1b\x08\xd2\x07\xb1\xd4\x23\xd6\xa1\x7d\x40\x3a\x56\x75\x46\x47\x6a\x1c\xfa\xc8\xaf\x5b\x84\xab\x6b\x7f\xeb\x39\x1b\x55\xba\x30\xd9\x8c\xcf\x45\x0d\xf8\xd8\x07\x98\x57\x16\xe6\x44\x44\x41\x94\x2a\x17\x74\x11\xa2\x9e\x86\xa9\x3e\xcc\x04\xc1\x9d\x1a\x74\x1d\x15\x26\x15\x75\xa7\xc5\xd8\xfb\x06\x08\x3c\x41\xc2\x75\x10\x6a\xd1\x20\xda\xb5\xfb\x24\x38\x6a\xe0\x25\xf9\xb5\x40\x8a\x67\x04\x0a\xc9\x23\x17\x01\x1c\xe5\x52\xb6\x7b\xcb\xce\x45\x1f\x03\x9d\x3d\xda\x89\x89\x71\x12\xd2\x55\xac\x9d\x9c\x57\xfc\x09\x1b\x24\x87\x0a\x37\x66\x11\x52\x6a\xc8\x18\xc0\x56\x7a\xdc\x43\x43\xd7\xef\x1a\x7a\x23\x2e\x58\x73\xc9\xea\x7e\x6e\xe7\xea\x6d\x37\x8c\x3f\x42\xd7\xb7\xce\xcd\xbf\x63\xb5\x3d\xa5\x4f\x78\xfe\x7f\x3a\x1a\x10\x9c\x81\x4d\x9c\x6e\x29\xc9\x4b\x35\xb6\xd4\xa2\xed\x68\x37\xd4\xb6\xda\x45\x89\x6a\x77\xbf\x48\x92\x67\xc5\xc9\xaa\xa3\xed\x6f\x3e\x08\x36\x60\x1a\x38\x69\xdb\xc7\x58\x0a\x5d\xd7\xf5\x02\x2b\x3e\xca\x2d\x6f\xc2\x4f\x05\x9c\x87\xb3\x61\x71\x91\x51\x83\x4d\x1a\xec\x2a\x50\xcb\xb9\x75\xbc\x9b\x49\x1b\xc7\x48\xba\x16\xda\x3f\xb5\x2d\x58\x34\x99\x36\xfb\xef\x92\x4f\xa7\xac\xea\xe7\x60\x5f\xa0\x48\xad\x77\x05\x0f\xf1\x34\x8c\x7a\x1a\x86\xfb\xac\x68\x12\xe2\xb4\xb2\xa9\x90\x98\x39\x2c\xd4\x65\x34\x1e\x6b\x9c\x7e\x7a\xa6\xf3\xc8\xf7\xf3\x2a\x1d\x41\xbd\x86\x04\x54\xd1\x08\xea\x35\x1b\xbe\x9e\x34\x81\x5b\xb8\x6a\x38\x1a\x92\x7e\x8e\xc6\x95\xd7\x31\x48\x03\x7f\xe4\x3b\x8f\xad\xb1\x8b\x03\xe9\xad\x83\xb6\x4c\x0c\x8d\x3d\xf3\x77\xd7\x86\x1d\xb1\xa1\x35\x4c\xf4\x20\xf8\xf3\xc0\x94\x9a\x8f\x6c\xfc\x8d\x9d\xd0\xca\xc7\x18\xe8\xd8\xa2\x2b\x2b\x2b\xc6\x59\x76\x28\x90\xbe\x70\xd9\x54\x34\xa6\xce\x47\x8e\x70\x92\x17\x15\x08\x6c\x10\x03\x3f\xbe\x3e\xeb\x5c\x75\x36\x8b\x5b\x7a\xd9\x4e\x0b\x0c\x71\x8c\x6f\x95\x7e\x27\x2d\x97\xbd\xcf\x05\x84\xa1\x6c\x49\x78\xfc\x58\x77\xf3\x0f\x1c\x41\x04\x8e\x8e\x38\x1d\xdc\x88\xca\xe3\x2d\xab\x9f\xc2\x59\xbc\x35\xc2\x14\x52\xeb\x14\x23\x5a\x1b\x6b\x15\xc4\x2d\x85\xac\x4f\xbb\x57\xc7\x71\x23\x7c\x8b\x69\x7a\xda\x3d\xef\x38\x5f\x19\x8f\x61\x96\x06\x11\x81\xc9\xe2\xdb\x58\x9e\xe3\xa6\xa0\x65\x39\xa9\x0a\xd1\x06\x58\x3c\xfe\x52\x9d\xd0\x86\xd4\xc7\x47\xd5\x09\x95\x8a\x8d\x84\xcd\xc1\xcf\xeb\xe2\xca\xe6\x44\x37\x3a\x00\xfd\x83\x5d\x9d\xa9\x2d\xf3\x7b\x83\xfa\x33\x51\x4c\xfb\x2e\x6a\x90\xde\x55\xd7\x7c\xca\x84\xa9\x5a\x2c\xa6\x5c\xf4\x0d\x47\x33\x1c\xb3\x87\x3f\xb0\x30\xe1\xe5\xef\x0d\xfa\x81\x1d\xb3\x93\xa4\x05\x29\x16\x75\xc9\x74\x0f\x4c\xc1\x21\xed\x82\x5f\xd9\x2c\xfb\xfc\xaa\xb8\x70\x99\xe0\x79\xf5\x31\xf9\x88\xac\x1b\xe4\xb9\xa8\xaf\x74\xdd\x9a\x49\xd6\xb8\xba\x72\x71\x76\xc5\x9b\xb4\xf6\x94\xa9\xfd\x2a\xf5\x07\x8d\xb8\xb8\x98\xb1\xd6\x90\xaa\xf9\xa2\xe9\xe7\x9f\x18\xaa\x89\xd4\x6d\xf1\xea\xba\x98\x71\xe8\x9a\x94\x15\xaa\x48\x5f\x54\x3a\xe1\x79\x3f\x9e\x2e\xe4\x3b\xef\xe7\xf5\xe0\xf4\x53\x5d\xcc\xe7\xd6\x7b\xe2\xf6\x53\x21\x0f\x17\xb3\x86\xcf\x67\x2c\xef\xf5\xe4\xe0\xca\xfc\x58\x7d\x57\xf3\x2e\xb6\x77\xfe\xee\x1b\x07\xb7\xb2\x44\xb0\xdc\xe0\xd5\x86\xa8\x10\x57\x5f\x99\x7b\x92\xc4\xea\xda\x39\xb8\x2c\xe4\xd1\xa7\x4a\x61\x12\xab\x9b\x1b\x54\x62\x1b\x68\x4d\x1e\x97\x27\xe3\xbe\xe5\x93\xfb\xe0\x8f\xdc\x8e\x05\x35\x9b\xd4\x03\x35\x30\xd8\xce\x90\x46\x7b\x06\x6e\xa9\xc7\xfe\x4b\x32\x3b\xc1\x79\x3b\x60\xd4\x2c\xcb\xd2\x4f\xfb\xfd\xcd\xf6\xd7\xaa\xf0\x04\xe7\x5f\xda\x23\xb5\xdb\x78\x96\x65\x30\xf3\x12\xaf\x6c\x8c\x36\x8b\xfb\x7a\x31\xaf\x99\x3a\xd7\xdf\x03\xd4\xc0\x4e\xb1\x13\xaa\xba\xd6\x47\xf5\x7f\xd7\xaa\xea\xfd\x33\x07\x09\x6a\x1e\x73\x2e\x5d\x1a\x03\x39\x10\xd5\x93\x19\x87\x24\x59\xf5\x40\x54\xa5\x7a\xa6\xb3\x0a\xaf\x20\x4e\x6e\x1c\xe3\x23\xc8\x00\x9a\xd2\x39\x9d\x35\xcd\xcc\xab\xa4\xfb\x10\x75\xc7\x1b\x63\xe6\xd5\x00\xa2\xc5\x3f\x35\xd1\x95\xc0\x37\x49\x56\x00\xc5\xa7\x10\xf9\xca\x94\x4c\xfa\xb2\xac\xf9\x1c\xf4\x7f\x1c\x8c\x89\xca\x81\xf6\xb6\x35\x01\x99\x50\x7f\xca\xaf\xfb\x10\x34\xbc\x62\xf5\x8b\xf7\x87\xaf\x68\xff\xa1\xfe\xe6\xd1\xc3\xff\xf9\x87\x79\xea\x13\xcd\xe5\x5f\x89\x6b\x06\x26\x92\x88\x85\xf6\x92\x38\xef\x88\x2e\x3b\xe0\x72\xd2\xee\x8e\x93\x5b\x2e\x73\xf5\x72\x85\xf3\x8e\xe1\x70\x4c\x2c\xec\x29\xf8\x58\xa1\x92\x32\x52\xbb\xcd\x33\x29\xdd\x23\xed\x0d\xe1\xd8\xfd\x02\xd1\x93\xe0\x81\xea\xdf\x18\xe3\xbc\xd5\xf4\xeb\x77\x3a\xe6\x17\x33\x14\x93\x01\xc5\xac\xc9\x9f\xd6\x96\x31\xb0\x6b\x65\xa4\xa4\x85\xda\x38\x35\xfe\x3b\x14\x95\x61\x08\x06\xf8\x75\xaa\x3a\xa3\xc3\xf1\x2c\xa0\xaa\x33\x47\x55\x67\x27\x84\xe1\x71\xd2\x4a\x07\x65\x6d\x77\xf5\x8d\xd4\x95\x85\xd4\xb5\xdd\x4a\x8b\xc2\xb2\x98\xc2\xb6\xbf\xe8\xa4\xb2\x1d\xc3\x73\x94\x16\x62\xbd\xcd\xe8\xa9\x79\x8a\xc8\x1a\xbb\x9b\x28\xda\x0d\x39\xa3\xaf\x59\x10\xf7\x2e\xde\xba\xec\x6e\x82\x5c\x07\x04\xd9\x64\xc1\xab\xc9\x2d\x84\xc9\xb4\x9e\xb5\xdf\x37\xa8\x88\x52\x9b\xc9\x3d\xfb\xbe\xc9\x59\xd2\x32\xa3\xf5\x0a\x08\xf7\xcc\x5a\xef\x68\xd6\x56\x2a\x8a\xbe\x50\x24\x7c\x91\x12\x46\x89\x6d\xcc\x90\xc5\xb1\x3c\x19\xf7\x65\x73\x33\x63\x6a\x0f\xc9\x49\x55\x21\x46\xe6\x38\xef\x4f\x55\x67\xb5\x58\xc8\xd9\xcd\x3b\xd6\xbc\xb4\x3b\xde\xd4\x02\x62\x84\xe6\x74\x3e\x99\x0f\x4e\x4f\x2f\x9b\xab\x99\x81\x03\xce\xb2\xdf\x98\x69\x22\x3c\x19\x64\xc7\xc9\x30\x9f\xc4\xe9\x28\xf8\x72\xd9\x57\x7f\xe7\x38\xcb\xfe\xb4\x8d\xb4\x4e\x85\xb9\x79\xd9\xef\x6f\xaa\xf7\x72\x31\x9f\xd7\x4c\x4a\x73\x46\x3c\x9b\x72\x50\x1f\x7c\x28\xea\xca\xe4\xd3\x90\x59\xe6\x6a\xbd\x00\x25\x0b\x17\x55\xf2\xbe\x58\x34\xe2\xb9\x28\x17\xd2\x14\xa0\xd6\x61\x22\xb1\x99\xf5\xdc\x9c\x25\xd2\x6a\x3a\xe6\x59\xf6\x33\x62\x44\x92\x39\x29\xf1\x1d\x07\x0c\x83\x03\x86\x91\x9a\xf4\x46\xeb\x0f\x18\x06\x07\x0c\xeb\x44\x61\xdd\x5f\xad\xe3\xb3\x66\x19\xe4\x80\x38\x68\x9a\x9a\x9f\x2d\x1a\x86\xfa\x50\x0c\xc7\xe1\x05\x43\xa6\x16\x5e\x83\xee\x9e\x30\x06\xc8\x6d\x0e\x19\x54\xd9\x3e\xf0\xe4\x95\x1a\x71\x5c\x47\x0d\xdf\x0d\xc5\x60\xe1\xaf\x7a\x44\xed\xda\x71\x8d\xe0\x68\xbd\xeb\x64\x9c\x05\x27\x23\x8b\x4e\xc6\x43\x4d\x68\x3b\x0e\xc1\x2a\x4a\xf4\xd2\x61\x1f\xd9\xba\xe4\xec\xe5\x3a\x5b\x79\x9b\xd3\x7f\x59\xa0\x21\x69\x99\xb5\x2b\xd2\x61\x79\xfa\x76\xba\x96\x3a\x48\x54\x71\x37\x87\x9f\x5e\x42\x48\x17\x87\x3f\x89\xaf\x50\xa4\x6e\xd9\xf9\x54\xe6\x6c\xd2\x67\x3d\x80\x57\xcb\x28\x3a\xac\xa0\x50\x45\xd1\xd7\xf8\x02\x6c\x8e\xc0\xf7\xec\x33\xc4\x4d\x44\x35\xc6\xa6\x8b\xf0\xb8\xab\x3a\x20\x39\x72\x77\xc1\x52\xa0\xa7\xe0\xa1\x94\x5a\xb7\x74\xe9\x1d\x3b\x2c\x69\x2b\x48\xc7\xe0\xac\x86\x6b\xd0\x9c\xfb\x6c\x3a\x6b\x03\x05\x7a\x7d\x1f\x40\x2f\x0f\x92\xc7\xf1\x76\xfa\xa4\xca\xdd\xd8\xbd\x8b\x36\xd4\xd3\x32\x51\x1b\x7d\x34\xc8\xef\xab\xee\x54\x81\x23\x0f\x0c\x3d\x74\xec\xe1\xc6\x2b\xdc\xfc\x94\x60\x00\xbb\x36\xe7\x4c\x52\x5b\x5f\x70\x79\xe8\x76\x84\x31\xa9\xb2\xac\x57\x1b\xc9\x71\xa8\x24\xf3\x46\xc2\xbd\x2e\x48\xdc\xa5\x3f\x85\xb6\x46\x59\x20\xc3\x9e\x7c\x96\x94\xd2\x6b\x45\xf1\x3e\x4b\x7a\xa0\xc6\xfd\x59\xf6\x74\x09\x3c\x1c\xc8\xe5\x52\xbd\x3a\x95\x5a\x0a\xfe\x44\xba\x0b\xf8\x17\xf5\xd5\xc7\x12\x7d\x91\xe4\xbd\xc4\xe4\x2f\x78\x7a\x22\x31\xc6\x98\xa0\x6a\xb9\xec\xda\xa6\x26\x04\x3e\x60\xcd\x4e\x24\x40\x08\xb0\x69\x68\x5f\x34\xfa\xd2\xee\xdf\xdc\xff\x06\xb9\xc4\x68\x5f\xed\x6b\x83\x88\x56\x2a\xdb\x42\x48\x9c\x0a\xeb\x78\xa7\x6a\x3c\xc8\x56\x5b\x7b\xad\x85\xf6\x39\xe2\xf8\xa7\x02\x69\x62\x6e\xa5\xec\x06\x76\xa1\xd5\x76\xa7\xe4\x1f\xce\xe7\x54\xee\x2f\x53\x19\xed\x63\xae\x4e\x6a\x2d\x04\x4c\x54\x0c\xc4\x76\x4d\x42\xf4\x4d\x32\x50\xc7\x57\x08\x4e\xba\xd6\x02\x22\xef\x7a\xd4\x84\xaf\x42\xbc\xd5\xb8\x19\x61\x6f\x58\x1f\x76\x7a\x34\x8b\x7a\x8c\x25\xad\x08\xe2\xb4\xc6\xa1\x69\xc0\x56\x1b\xe7\x09\x6f\x75\x45\x78\xe4\x21\x67\x85\xc3\x14\xe0\xc1\xa3\x1c\x43\xeb\x14\x83\xad\x30\x0a\xd2\xe9\x2a\x4d\x0f\xb1\x9d\x52\x52\x18\xe8\x09\x79\x3b\xcc\x22\x8f\xe5\xc7\x46\xa8\xdf\x3d\x14\xd6\x55\xda\x1e\x5e\xcb\x79\xc0\x69\x56\x9d\xa6\x35\x1e\x70\x7a\x2c\xa5\x63\x4f\x73\x06\xf2\x3b\x2c\xf1\x53\x11\x78\xd7\x04\x1d\xc7\x97\xa7\x01\x39\x64\x3a\x74\x7d\xcf\x33\x3e\xb7\x72\x10\xfe\x24\x2e\x70\xa9\xcc\xe5\xc0\xff\x58\x75\xe6\xc9\xb2\x26\x1e\x9e\x54\x2d\xb7\xbc\x5d\x4f\xa0\xca\xd7\x0e\x53\x20\x66\xe3\xb8\x73\xf7\xe8\x70\x9b\xd1\xe6\x81\x18\x1c\x95\x73\x4c\xf9\xca\xc6\xa9\x5a\x1b\x47\x6f\xbe\x61\xb0\x83\xd4\x75\x26\xcb\xac\x94\xdb\x15\x1d\x8a\xa9\xa2\xd3\x32\x40\xdc\x96\x47\xe5\xda\xbd\xa5\x47\xd2\x3a\x27\x2a\x17\x73\x72\xeb\xbf\xff\x14\x08\xdf\xab\x3b\xd4\xa9\x8f\xea\x44\x75\x9a\x65\xa3\x87\x2d\xd9\x81\x05\x85\x23\x26\xad\xf3\xb8\x53\xd3\x41\xab\x7b\x23\x3c\xae\x43\x35\xef\x04\xb9\x15\x69\xe9\xa1\xd4\xa1\xe2\x81\xad\x67\x88\x27\x5e\x56\x2f\x73\x57\x93\xe8\xb7\x54\x46\x4c\x46\xcf\x82\x73\x02\x3e\x78\xed\xa9\xa1\xb4\x88\x2a\xc0\x6c\xee\x0e\xd5\x12\x99\xfa\xa4\x0e\xd5\xd0\xa4\x36\x32\x7a\xa7\x13\x09\x21\x1f\xad\x09\xe9\x82\x2f\x74\x90\x28\xf0\x48\x13\xda\x5c\x69\x0c\xe6\x93\x51\xd6\x2c\xb7\xf2\x51\xa6\x0e\x32\x93\xc0\x27\xd5\xfd\xec\x11\x2d\xd2\x0f\x14\xd8\x3f\x83\xc1\x5a\x67\x5c\xf1\x2b\x81\x58\x78\xf4\x39\xb7\x4d\xb7\xb0\x76\x13\xed\x0c\xf7\xf7\x32\xf0\x56\x4e\x53\xc6\x37\xcb\xbd\x1d\xc2\xc2\xc4\x43\xdb\xea\xd0\xec\x90\xe4\xdb\xe3\x0b\x45\x3d\xb4\x32\x7f\x6c\x3d\xd8\x0d\x82\xbe\xae\xe9\xcf\xca\xe2\x4d\x35\x88\x6d\x4d\xee\xe0\x22\x61\xfc\x49\xc7\xdf\x36\x9b\xd1\x7e\xd2\x94\x7f\xf5\x4d\x5c\x87\x1d\x57\xec\xa5\xbc\x91\xa8\x6b\x7e\x8c\x82\x5a\x19\x71\x00\x23\x5a\xf2\x92\x37\x44\x36\x45\xf9\x31\x3f\x64\xa8\xc1\xab\xd5\x9f\x05\x8d\x5d\xfa\xbd\x02\x2c\x39\x41\x2b\xcd\x07\xec\x52\x93\x21\x73\xb9\xdc\xb3\x8f\x98\x0d\x8a\xb9\x22\xcf\x5a\xb0\x16\xb8\xb0\x7b\x1e\x64\xc7\x66\xd6\xf4\x5e\x64\x56\x9b\x58\xc5\x4a\xff\x0a\xf4\x59\x6d\xa5\x7f\xa0\xb3\x8f\x54\xfe\x55\xa7\xca\xbf\x72\x2a\xff\x2a\x54\xf9\x5b\x77\x66\xf7\x7e\x55\xa5\x1a\x7f\xfb\x26\x54\xab\xad\x56\xe4\x6d\x0c\x29\x9b\xe1\x2d\xb5\x78\xd1\xaa\x0d\x7e\x8e\x0a\x9d\x45\x0a\x54\x1f\xa4\x24\xb3\xf0\xde\x64\x55\x1f\xc9\x15\xcb\x9c\xe6\x55\x7c\x47\x2f\xe8\x29\x43\x33\x52\xa8\x13\x09\x9e\x6a\x55\xf3\xf8\xa4\xeb\x2a\x5e\xd0\xd7\xae\xee\xeb\x35\x75\xed\x6d\xbb\xd0\x12\xa3\xa2\x25\x31\xaa\xd7\x89\x92\xd2\x96\xbc\x84\xa0\xa0\xcf\x5c\xbf\xcf\xda\xfd\xb6\x6f\xd5\xa1\x71\xb3\xbb\x55\x77\x5d\xba\xeb\xe0\xd2\x3d\x8b\x2e\xdd\x4e\x9a\x24\x74\x02\x4c\x62\x4c\x0e\x0a\x08\xd4\x5d\xb7\x25\x25\x59\x56\x74\x15\x6a\x74\x2c\x8e\xe5\x09\xd6\x57\x68\x2b\x75\x02\x7e\x18\x34\x10\x33\xfd\x7a\xd6\x25\xca\x57\x77\x0a\x54\xe9\xf4\xaa\xc7\xe5\x09\xed\xf7\x35\xd2\xaf\x15\x55\x19\xd9\x8e\x13\x43\x25\xb2\xa0\xff\x05\x89\x11\x5b\x2e\x91\x5a\x1d\x10\x5f\x33\x48\xc9\x31\x98\x2f\xe4\x25\x92\xc6\x04\xce\x4b\xea\x6a\x9b\x9c\xa9\x3e\x96\x27\x0a\xad\x67\xe6\x06\x5b\x4c\x14\x48\x0c\x6e\x90\x4e\x68\x2f\x8c\x52\x45\x7f\xb0\xb0\xd7\x8f\x19\x4e\xe1\xac\x9a\xd5\x94\x47\x43\x1b\xf7\x3a\x20\xbd\x5c\x2e\xb2\xac\x25\x33\x54\xe5\x5d\x2b\xe0\x1a\x5b\xe0\x8e\x6f\xb2\x6c\x76\x5c\x9e\xf4\x28\x5d\x1c\x97\x27\xed\x25\x54\xa5\x36\xae\xaf\x02\x95\x05\x17\x61\x0e\x4c\xea\x26\x4c\x17\x77\x2f\x34\x70\xa8\x68\x41\x17\x93\x45\x2c\x8d\x24\x33\x3a\x9b\xcc\x92\x32\x03\x25\x1d\x4b\x77\xa1\x43\xa4\x46\x4b\xb3\xc0\x2d\xe1\x25\xa4\xe6\x5a\x2e\xdb\x62\x9f\x45\x96\x59\x11\x65\x2f\xf4\x86\x6c\x35\xda\xef\x6f\x2e\xfe\x5d\xe2\xca\x4e\x5c\x43\x6e\x5e\xa5\x55\xe3\x2d\x97\x66\xdc\x1a\xaa\x1d\x58\xb8\xc0\x78\x55\xb5\x40\x60\x50\x86\x54\x98\x70\xca\x48\x7a\x91\xec\x12\xbf\xad\xc8\xcb\x36\xd9\xc6\xb7\x55\xb7\x48\x4a\x07\xde\xfb\xa3\xe8\xf4\x25\xfd\xc0\x8a\x8f\xef\x58\x33\x31\x7f\xf3\x77\xac\xf1\x16\xf0\x4c\xc6\x7e\xd3\xfa\xb0\x25\x46\x1d\x5e\x7e\x74\x66\x19\xfe\xf4\x03\xe3\x8d\x43\x48\x95\x18\x68\xd1\xae\x98\x71\x94\xd7\x76\x25\x3a\xe5\x95\xbf\xb6\x8f\xa8\x8b\xb8\x71\xc5\x90\x4b\xd9\x51\xdf\xdc\x96\xa2\x92\x62\xc6\x06\xa0\x1b\x51\x47\xbb\x8e\x74\x27\xf0\xad\x64\xc0\x1b\x8a\x45\x13\x85\xe2\xd1\x9c\x92\x58\x61\x1c\xf0\x0e\x8d\x0c\x3d\x12\x6a\x76\x1e\x85\x83\x8f\x52\xb3\x85\x39\x45\xd5\x00\x6c\x60\x50\xdd\x6f\x85\x6f\x2f\x4a\x9d\xdb\x11\xf6\x51\x12\xf9\xd3\x87\x95\x95\x91\x81\x4e\x68\x44\x92\x58\x8b\x58\x23\x92\xad\x2d\xc3\xf7\x58\x9b\x10\x7e\x8e\xb6\x76\xf7\x42\xf9\x88\x37\xc6\xf0\xb1\x33\x12\x99\x69\xcb\x46\xb5\xd1\xb1\x86\x03\xeb\x90\x35\x3e\x37\x28\x4d\xa3\xab\x25\x3e\x93\x2a\xf0\x60\xac\x30\x1c\x80\x83\xd3\xd3\x9a\x15\x65\xf3\xb2\x82\x6b\xd6\xac\xab\x39\xda\xac\xc2\xe9\x6c\xe7\x86\x1b\x35\xb2\x60\xc3\x1c\xc6\x72\xa6\x94\x55\xdf\xdb\x0e\x99\xf4\x5a\x46\xa9\x2e\xf4\x75\x2e\xbc\xd8\x45\x91\x87\xc3\x3b\x85\x09\x5a\x62\xb1\x98\x36\x3e\x06\xf5\x39\x42\x9a\x7b\x63\xd8\xfb\x88\x43\xc8\x6b\x1d\x28\x77\xec\x9e\x68\x14\xc1\x57\x6f\xb4\x1a\xe1\x55\x65\xc2\x0e\xdb\xd8\xe1\x80\x51\x01\xea\x89\xff\xd5\x61\x6b\xa1\x72\x30\xea\x6f\x19\x22\x97\xd6\x10\xca\x65\x5e\xfd\x76\x74\xd5\xc1\x82\x85\x44\xdb\xa4\xc2\x01\xee\xb2\x30\xa1\x3c\xd9\xc9\x02\x43\x73\x1c\x66\x2b\x61\x6d\xcf\x5c\x64\x24\xff\x76\x52\x9d\xe9\x9d\x13\x49\xac\xc2\xd2\xca\xa6\xe4\x8d\xe3\xe3\x8c\x59\x87\x33\x5b\x3b\x74\xfb\xb7\xe1\xb5\xbb\x2a\x43\xd4\xa2\x60\x45\x13\xa9\xc6\x39\x47\x15\x44\xdb\xc2\xc1\x8d\x6f\x5d\x75\x93\x0b\xca\x09\xe0\x82\x5b\x84\x5b\x11\x7d\x97\x08\x23\x55\x31\x5b\x29\x60\xc0\x3d\x17\xbb\x31\xea\xaa\xb0\x72\xe3\x8a\xb6\xe7\xae\x4f\xfd\x1a\xae\x9a\x9b\x23\x85\xf0\x43\xd1\x22\x66\xd9\x61\xe5\xd3\x65\xc7\x10\xcf\x32\x36\x38\x57\xdc\x1a\xc2\x2e\xb6\x55\xb4\xe3\x13\x5a\xb7\x9d\xa7\x40\x85\x75\x4e\xec\xaf\xc1\x8e\xd2\x07\x7d\x0d\x0e\x9c\x2a\xad\x9c\xbe\xf4\xfe\x5e\xc1\x9b\xa7\x8d\x3a\xa4\xb0\x1d\xe2\x68\xdf\x91\x23\x8d\xe1\x06\xf3\xb7\x46\xdf\x44\x9e\x8a\x74\x13\x75\x1d\x29\xa7\x65\x96\x9d\x96\x08\x6c\x1a\xd6\x6f\xb1\x9d\xd6\x56\x8b\x44\x6d\x4d\x82\x6a\x55\x10\xba\x29\x90\x67\x59\xa2\xa0\x43\x19\x8d\x75\xf4\xe1\x6a\xb2\x7f\x3f\xaf\x5a\xd1\x87\x19\xad\x6d\xe6\x0b\x08\xc8\x64\x88\x5f\xe8\xe5\x55\xd9\xa0\xe4\x3a\x7a\x5d\x85\xec\x91\xc8\xe1\x48\x14\x84\xe3\x95\x8b\xb3\x64\x28\x0d\xa8\xc8\xb0\x3a\x8a\x23\xbc\x6c\xa4\x82\x40\x97\xa7\x7a\x62\xc8\x18\x3b\x14\x57\x57\xda\x6d\x3f\xbe\xd8\xc3\x19\x6d\xfc\x5c\xd3\xe3\xd0\x34\xd6\x92\xd1\x36\x9d\x2d\xa3\x8e\x43\x7e\x05\x79\xca\xc3\x6d\xb5\xab\x87\x1f\x16\xed\xe4\x0b\xbb\xf8\x01\x55\x95\x11\xcf\x11\x24\xb8\x71\x17\x72\x9d\x27\x31\x10\x96\xa7\x7e\x24\xa6\xb0\x25\x17\x67\x6d\xb1\x31\x69\xc5\x4e\x61\x6d\x71\x3f\x6b\x89\xfb\x63\x4b\xe4\x74\x14\x51\x61\xa0\x94\x0c\xe8\x54\x93\x65\x52\xc1\x23\x08\xc2\x2e\x83\x40\xab\xbb\xd4\x05\x35\xdb\xf6\x8f\x3b\xf6\x31\x88\x90\x0e\x5f\x99\x18\x62\x9e\x51\x0b\x83\xb4\x99\x14\x6a\xa5\x44\x8d\x3f\x15\x7d\x2c\xb0\x20\xfd\x57\xb2\x4f\x87\xde\x4e\xa0\x89\xe8\x5b\xd5\x8a\xfc\x57\xd3\xde\x28\x5c\xda\x6d\x4b\xb7\x1a\x9a\x78\x95\xea\x20\x33\x89\xc5\x7c\xd2\xf1\x08\xe3\xd5\x68\x2f\xa6\x9a\xe8\x4f\x86\x1a\xd2\xef\xe3\xd0\xf5\x2a\xa3\xf7\x46\xf7\xf1\x98\xe5\x8d\x71\x32\x60\xe3\xb1\x49\x5d\xfb\x8d\xd2\xa0\x52\x22\xfb\x03\x43\x0c\x30\x67\x92\xbd\xc1\x56\x81\x58\x48\xbb\xee\x7d\x83\x68\x68\xbc\xeb\x25\x5b\x7b\xfe\x71\xf4\xc0\x3e\xeb\x81\x6c\x45\x07\xbb\x95\x6b\x6d\x34\x61\xce\x11\x6b\x3a\xbc\xe3\x04\x6b\x41\xbd\xf5\x52\xb2\x15\x84\xa6\x8b\x3b\xd0\xe1\xcd\x92\xf3\x6e\x83\xad\x56\xf5\xc4\x5f\x5a\x50\x94\x44\x01\x28\x2d\xe1\x54\xa1\xa2\xd0\xd2\x3d\x01\x2a\x48\xdc\x50\x3e\x09\xe8\x4d\xde\x84\x39\x41\x2b\xd9\x14\x55\xc9\x48\x35\x79\x00\x52\x70\xa7\xca\xaf\x83\x6c\x87\xaa\x1a\xab\x0d\x83\x00\xa4\x22\xaf\x3b\xca\x50\xd2\x04\x08\xe6\x7d\x2b\x38\xfd\x04\x32\x6e\xd2\x1a\x47\xe2\xc7\xc6\x6b\x1f\x6b\x5a\x0f\x34\xab\xf2\x56\x08\x50\xf9\x00\x5a\xe2\x20\x3e\x75\x1d\x84\x32\x33\xd2\xa5\xe5\x12\x55\xa1\xa4\x29\x16\x62\x0a\x7f\x90\xb8\x84\x7d\xc6\x55\xd1\x86\x58\x4a\x3d\x02\xf4\x9e\xec\x7a\xbd\x52\xd4\x93\x34\x38\xff\x8f\x2d\x4a\x17\x98\xeb\x04\x5e\xff\xf9\xf9\x05\x19\x18\xdc\xf1\xef\x1c\x1d\x88\x20\x9c\x1a\x77\x70\xbd\x59\x7a\x12\xdf\x4a\xca\x2d\x5d\xd3\x1e\x69\xe3\x68\x47\xcb\x96\x11\xcb\x10\x63\x67\x52\x4e\x65\x18\x94\x26\xa2\x5e\xc2\x51\xae\x0d\x96\xd0\x2e\x85\x2e\x31\xed\x12\x8e\x76\x6d\x30\xd0\xef\x19\xea\x20\x69\x6f\xb8\x32\xd2\x70\xee\xa5\xe1\x5c\xf7\xa4\xc7\xab\xe3\x62\x31\x32\xa3\x9c\x2c\x68\x45\xe6\x74\x36\x1e\x2b\x96\xbe\x90\xa8\x24\x73\xb2\x70\x78\x3a\xd7\x50\xce\xb2\x1d\xf8\xa1\xda\x98\xc7\xbb\x7d\x4e\xe6\xb6\x96\x33\xf6\x99\x43\x6e\xdf\x2e\x27\xb8\x79\x27\x0d\x9c\x3b\x1a\x38\xf7\x12\x71\xdf\xc0\xdc\x55\x58\xcd\x53\xba\x67\xdf\xc0\x28\xec\xd2\x8a\x09\x2a\x69\xad\xa6\x17\xc0\x5a\x6d\xe0\xd2\x6f\xe0\x32\xa4\x01\xa1\xf1\xed\x0c\xe7\x65\x52\x80\x21\x6a\x83\x2f\x09\x9a\xc5\x2e\x89\xe6\x8e\x87\x72\x90\x15\xcd\x6a\x12\xea\x70\x2c\x1d\x4b\x69\x95\xd8\xde\x21\x98\xdb\x8f\xbd\xaa\xc1\xf5\x05\x9c\x2a\x57\x97\xf9\xb4\x9f\x6f\x69\x06\x8c\x37\xba\x35\x16\xbc\x73\x7d\xb8\x5b\x1f\xde\xa1\xb1\x50\x13\x07\x4f\x76\x73\x76\xe9\x53\x06\x49\x88\xc4\xc4\xd3\x05\xb3\xd5\x60\x60\x4e\x87\xe1\xf3\x9e\x7c\xbb\xd4\xa5\xcd\x63\x87\xd7\xd9\x5a\x5d\x67\x1b\x1c\xbb\xe7\x8c\xa3\x08\xc1\xa1\xda\xc3\x2d\x59\xe0\x4b\x14\x73\xa2\xa2\x2b\xab\xa1\xbe\xb8\xd6\x63\x16\xfa\x93\xf0\x98\xbf\x87\x48\xbc\x6d\x0e\xb0\x72\x79\xf3\xe0\x40\x37\x06\xd3\x46\xb5\xa2\xed\x95\xfa\x75\x31\xe5\xc2\x68\xc7\x6f\xe6\xce\xf4\xae\x86\xfc\xbc\x59\xf6\x85\x69\xf5\x42\xa1\x18\x69\xa1\xc8\x5b\x61\xb2\x3c\x0b\x3a\x1c\x8b\x87\xdc\x9a\x3e\x8b\x4d\xba\x65\x53\xf2\xf1\x63\x71\x42\x4a\xf5\x67\x73\xd4\x32\x65\xad\x48\xf9\x35\x53\xd6\xdf\x98\xa9\x15\x0b\x7c\xff\x34\xc5\x3f\xa3\x8a\x48\x52\x2a\xca\x6a\xb5\xb1\xb1\xd2\xe8\x48\x0f\xba\x5b\x5b\xf3\xa4\xfd\xd2\x2a\x85\x14\xdf\x17\xd9\x1c\x0f\x02\x93\x63\x72\xc7\xbb\x4e\x8b\x4d\x16\x59\x6c\x56\xb1\x0d\x26\x03\x8b\xcd\xa6\x47\xa3\x4f\x9d\xbe\x20\x36\xd1\xec\xf8\xbe\x6d\xc3\x99\x77\x55\x72\x66\xf7\xc7\x27\x79\xbf\xaf\xfa\xc4\xab\x55\x74\xa9\xdf\xcb\xbf\xcd\x0f\x6a\xcb\xeb\x92\xe1\xfe\x1d\x9e\xb8\xce\xd8\x31\xc5\x68\x9c\xb8\xa5\xc1\x97\x70\xb2\x06\xf7\x37\x73\xe9\x06\x89\xb4\x79\xa6\xbd\x11\x79\xda\xa0\x34\x44\x8b\xbb\x84\xb7\x24\x03\xa0\x21\x6d\x7c\xe0\xc8\x38\x5a\x82\xe2\xd7\x73\x54\x83\x85\x89\x33\x85\xf8\x4b\x82\xc1\x80\x97\x3f\x3b\xdf\xef\x6a\xec\xb5\xbd\x5a\xcf\xcf\xc3\x08\x35\xa4\x9e\x74\xdd\x4a\x81\xd8\x28\x4c\xc7\x03\xc9\x1a\xab\x05\x98\xf0\xf0\x17\xea\x9b\xec\xe2\x7d\xd2\xaf\x44\xc5\xfa\xa4\xcf\xaf\xe6\xa2\x6e\x8a\xaa\xe9\xe3\x9c\xdb\xe4\xe3\x54\xbf\xcd\x51\xdc\xb1\xf0\x29\x36\x90\x48\xef\xb1\xa6\x73\xc7\xc0\x88\x2c\x13\xa9\x4a\xc2\x75\x8f\x27\xc2\xf6\x95\x1b\x23\x2a\xf8\xdc\x0d\xa0\xa9\x82\xb1\x8a\x80\x0b\xdc\x73\x40\x61\x9d\x18\x50\x4f\xfa\x60\xcb\x1c\x69\x84\xed\xa9\xed\xfd\xe7\x03\x97\xc1\x44\x80\x53\x75\x06\xa8\x09\xf3\x5a\xdf\x76\xd8\x85\x86\x4e\xf3\x3c\xd6\x9c\xff\x0d\x2f\x7b\xeb\x66\x5f\x75\x9c\x5f\xdf\xe1\x64\x5f\xfd\x0b\x4e\xf6\xc1\x39\x73\x0e\xa2\x84\xc4\x88\xa2\xf5\xe6\xdb\xe4\xe3\xe7\x91\xbc\x21\x39\x42\x9c\xae\xe3\xb6\x2d\x4e\x70\xa1\x34\xfc\x81\x66\x6f\x6e\x20\x3e\x8b\xae\xfe\xec\xd3\xc6\x1f\x05\x26\xcd\xe0\x5c\xd4\xcf\x8a\xf2\x32\xd0\xbd\x34\xf6\xf0\xbb\x2e\x83\x8c\x03\x10\x53\xab\x52\xe8\xaa\xdd\x46\xab\x41\x31\x9d\x1a\x09\xd8\x25\xab\x50\x4d\x6a\x0c\x22\x22\x88\xd2\x34\x95\x6b\x95\x54\x87\xc5\x7c\x62\xfe\xe6\x87\xc5\xdc\x2b\xa9\x2e\x1d\xeb\x8d\x2a\x5a\x72\xe4\x02\x9e\x34\xc5\x05\xdd\x26\xd5\x60\x5e\xdc\xcc\x44\x31\xa5\xb7\x46\x90\x1c\x64\xa3\xaa\xad\x32\xca\x79\x82\x0e\x4a\x63\xc0\x4b\x03\x19\xd9\x53\xb9\x5c\xa2\xa7\x10\x81\xe9\xb1\xa4\x35\x26\x46\x31\xb6\x22\x41\x5a\x81\xb3\x3b\xc7\x31\xb6\xd2\x38\x35\xa5\xb5\x61\xbe\xc6\x6b\x74\x51\xc1\xc5\x49\x0f\xd7\xcf\xaa\x9d\x06\xc3\x0c\x8e\xd4\x48\x18\xb0\x46\xc4\x26\xc9\x6a\xc0\xbb\x0d\x14\x78\x24\x34\x7f\x52\x34\xe5\xa5\xf6\x24\xee\x00\x4f\x97\xfd\x43\xed\x8d\xa7\xdf\xc8\xc9\x1b\x09\xa8\xf3\x8e\x35\xe8\xb8\xb9\xe4\xf2\x04\xe7\x6f\xa4\xc6\x84\x4b\x2e\x1d\x3c\x6d\x58\x17\xab\x5e\x54\x2f\xdb\xe3\x40\x56\x81\x78\xeb\x5e\xbd\x03\xe3\x1f\x4b\xef\x27\x55\xde\xef\xaf\xf0\x0a\x93\x4a\xa7\xc1\x92\xe4\x50\xd2\xc3\xa2\xb9\x1c\x94\x8c\xcf\xc8\x85\x5c\x9f\xbc\xfd\x26\x7d\xa7\x23\xb7\x5f\x4b\x3a\x24\x07\x92\x6e\x93\x53\x49\x77\xc8\x27\xf5\xf3\x8b\x91\x8d\x1d\x99\xbf\xef\x55\xe1\x67\x49\xaf\x25\x79\x6d\x8a\x5e\x49\x1a\xa4\xc7\x7d\x16\xfd\x7a\x67\xea\x3c\x51\x9f\x7d\x54\x1c\xaf\x3a\xb9\x86\xe4\x83\x29\x7f\x0a\x45\x8f\xcd\xaf\x37\xe6\xef\x6f\x50\xfa\xa7\xf9\xf5\x56\xd2\xfd\x21\x79\x69\x7e\xbd\x50\x9f\x3f\x37\x3f\x7e\x91\x74\x18\xa4\x92\x97\x1e\x3f\xe0\x94\xd9\x79\x90\x7d\x92\x78\xe2\xc6\x33\xba\x87\xd4\xa1\xf9\x8f\xd1\x70\x39\xc4\xb9\xaa\xf2\x8b\x9c\xfc\x22\xf3\x5f\x82\x31\x47\x75\x82\xf8\x2f\x0e\xf1\x4d\xdc\x7e\xb4\x95\x01\x2b\xa0\xa3\x86\x58\x23\x4c\x3f\xf5\x71\x90\x37\xcf\x7e\xb2\x93\xf9\xbc\x11\xfb\xfb\xe0\xea\xef\x3f\xf0\x39\x86\xb7\x6c\x78\x08\x34\xda\x53\x13\x70\xc9\x15\x64\x40\xe6\x2a\xcc\xe8\x3f\x05\x62\x64\xb8\xac\x06\x8d\x56\x12\x1f\xca\xe5\x72\x97\x6d\x93\xad\xdd\x21\x8e\x62\x96\xd4\xe6\x86\xb0\xbf\x9f\xb3\x60\x79\x42\x29\xe0\xfe\x83\xdc\x34\x38\xda\x1d\x92\xd1\x30\xf2\x58\xdd\xd8\x37\x0a\x83\xfd\x3d\x5b\xcb\xf5\x13\xd6\xda\xcd\x19\xdd\xba\x53\x60\xb8\xbd\xb5\x87\x53\x53\xcc\x2f\x32\xcb\xd4\x79\xf5\x5e\x66\xd9\xbd\x7b\x2c\x4c\xd1\xf8\x4f\xaf\x59\xdc\x1d\x3e\x7c\x61\x25\x07\x11\x12\xb8\xb3\x02\x2c\x06\x23\x35\xc2\x4f\x66\xcb\x59\x51\x2a\xac\x86\x9f\x3f\xa4\xab\x01\x40\x03\xa2\x64\x99\x5e\x25\x8d\x35\x7f\xa8\xb3\x26\x47\x3f\xab\x3f\x10\x24\xe6\x93\xcc\xb2\x5f\x15\xcf\x95\xfb\x32\xb4\xa3\xea\x2e\x97\xfb\x0f\xb4\xbe\x65\x7f\x5f\xc7\x58\xb7\x64\xe1\xa5\x9c\xbc\xd4\x64\xe1\xb0\x98\xa3\x63\xc8\x78\x73\x82\x73\xe4\xe2\xd5\xa1\x8a\xbe\x94\x8a\x54\x22\x86\xf1\x72\x59\x3d\x6a\x70\x96\xbd\x94\x8a\xed\xd2\x43\x0f\xae\x7e\x66\x36\xff\xbb\xf1\xa3\x1c\x4d\x37\xc7\xbc\x09\x6f\xe3\x79\x87\x3a\xcb\x7c\x5c\x21\x11\x11\x61\x40\x41\xc7\x7d\x68\x53\x7e\xe0\x3a\x68\x1d\x28\xb9\xea\xce\xd8\x27\x0d\x18\xe1\x76\xd9\x0a\x37\xa1\xd1\x45\x67\x40\x35\x33\x97\x3b\x3e\x86\x1b\xa3\x9e\x91\x1e\x7e\xad\xef\xd1\xc2\xc6\x7f\xf4\x92\xd7\x55\xed\xaa\x26\x78\x2b\xb2\x0c\x7d\x91\x54\x3f\x14\xa0\xf2\x02\xe7\x97\x53\x99\x65\x1f\x4b\x24\xc8\x7b\x89\xc1\x8b\x45\xa8\x85\x24\x22\x08\xcb\x11\xf1\x31\xa0\xb0\x50\xc3\x64\xd3\x30\x38\x8c\x95\x1f\x68\x41\x73\xef\x49\xa9\x56\x9f\x1a\x95\xc7\x1b\xad\xd2\x80\xa4\x8c\xbe\x9e\x5d\x70\xd5\xe2\x1b\x5e\x5d\x98\x06\xcd\xfb\xad\x47\x10\x84\xe8\x91\xcb\x5f\xf2\x53\x25\x3e\x55\xa6\xa5\x57\xec\x9a\xcd\xf0\xa4\xca\x15\x13\xde\xc0\x2d\x7e\x98\x07\x3b\x11\x70\xfe\xd6\x0c\xad\x35\x66\xcc\xdc\xa1\x99\x00\x3c\x38\x0c\x7c\x9d\x37\x35\x17\x35\x6f\x6e\xe8\xfe\x7e\x50\x0a\xdc\xd7\x2f\x02\xfd\x21\x43\xde\x0a\x07\x9a\xf2\x86\x02\xe4\x88\x9a\x63\xf8\xd5\xd8\x25\x53\x09\x94\xa2\x49\xc3\x56\x15\xd5\x3d\xcc\x61\xe7\xe8\x86\x91\x96\x5e\x9d\x2f\xaa\xa7\x84\x80\xd4\x74\x7f\x3f\x1f\xa9\xc7\xe5\x72\xcb\x96\xec\xe6\x35\x1d\x3e\xa2\xa8\xa6\xa3\xe1\x7f\xa3\xe0\x74\x69\xf0\xbd\xa4\xa4\xc6\x78\xb2\xbf\x9f\x6f\xed\x0e\x1f\x51\xc8\xad\xba\x6b\x1f\xef\xe7\xfb\xbb\xfe\x82\x67\xb8\xa3\xf6\x38\xd5\x98\xd6\x4e\x0c\xd4\x57\xe2\x11\xad\x9d\xfd\x6c\x8f\xd2\x8f\x22\xcb\xbe\x08\x54\xe1\xd5\xda\xef\x9a\x2e\x80\xd4\xa4\xa1\xc9\xec\x3b\xd6\x2b\x7f\x2e\x50\x4d\x7e\x8c\x4b\xc9\xad\x39\xa4\xf2\x36\x40\xd4\x81\xbb\xc2\x29\x26\x34\xab\xd0\x32\xda\x1f\x04\xea\xd0\x27\x6e\x73\x7c\xd0\xdb\x42\xad\x0d\x26\x9a\x30\x07\x0c\x3f\xa0\x8b\xdd\x50\xfa\xf0\x6e\x12\xdc\x21\x01\xab\x90\x26\xfd\xd9\xba\xaf\x4f\x94\xb3\x12\xe9\x98\x06\xea\xa8\xaa\xe0\xa8\x5a\x2e\x2b\xad\x3f\xb5\x0b\x74\x24\xed\xdd\xe0\x93\x1c\x7f\x92\x4b\x3a\xda\x73\x01\x81\x04\x15\x25\xc2\xe3\x31\x58\x5b\x95\xea\x51\x93\x16\x97\xd2\xb4\x56\x6d\x95\x10\x29\x93\x71\x84\x15\xef\x55\x93\x0b\xe9\x2c\xaf\x04\x51\x08\xf6\xd9\x9e\x7f\x0d\x7d\x2d\x89\xed\xff\xa3\xf9\xab\x27\x1f\x6a\xa5\x8e\xa4\xb5\xad\x10\x40\x37\x2a\x2e\x2f\xd9\xf4\x83\xa8\x3f\x2a\x18\xe8\xa6\xc3\x14\xb3\xae\x4a\xea\x9d\x41\x6a\xfa\x59\x3a\x5e\xd0\x72\x13\xd7\x32\xb7\xda\xee\x18\x6c\x3b\xbb\x56\xd6\xb1\x95\xc3\xfa\x6c\x3d\xac\x26\x5b\x79\xac\x64\x3e\x90\xe0\x20\x60\x81\xa8\x7d\xea\x34\x61\x79\x07\x69\xe2\xa6\x86\xb4\xc0\x56\xee\x24\x57\x74\x5e\x22\x81\x31\x89\x50\xf2\x95\xcc\xb2\xd1\xf0\x21\x12\xf4\x2f\xb9\xb9\x3b\x1c\x02\x76\x69\xf3\x93\x8f\xd2\x66\xf0\x68\x91\x48\x43\x40\xf8\x72\xc9\x1f\x29\x44\x49\x2b\xd0\xca\xc2\xdb\x2c\xdd\xca\xf2\x68\x5c\x23\x19\xce\x32\xde\xf3\x77\x6e\x1f\xe0\xab\xd6\x98\xd7\x6a\xb0\xb6\xb1\xd0\x2c\xf7\xa6\x93\x06\xd2\x9b\x0a\x9d\x97\xf1\xd6\x11\xb6\xd3\xf3\x32\xf6\xe3\xde\x38\xfd\xf7\x01\xf1\xa3\xcc\x32\xcd\xa6\x8a\x16\x78\xf0\x72\x29\x14\x58\xbe\x01\x2e\x16\x2c\xc2\x81\x45\xfc\x2d\xb0\x44\x74\xb6\x47\xe9\x33\x39\x69\xd1\xd2\x67\x52\xd3\x8e\x3c\x41\x80\x49\x4d\x87\x79\x9b\xf4\xbe\x92\xf8\x9e\x62\x5b\x87\x8f\x50\xad\x06\x08\x88\x71\x0f\x9c\x4a\x6b\x3a\x84\x18\x53\xc9\x17\x15\xbe\x27\xf0\x43\x55\x7b\xb4\x35\x7c\x54\x4f\x46\x5b\xc3\x7c\xe7\x81\x7a\xda\x79\x30\xcc\x47\x43\x78\x54\x7f\xf2\xd1\xbe\xae\xb0\xbf\x35\xcc\xb7\xd9\xf6\xa3\x7a\xb2\xcd\xb6\xf3\x9d\x6d\x28\x55\x7f\xf2\xd1\xfe\xde\xf0\xbf\x0f\x25\xaa\xff\xa1\x9e\x7c\xc7\x15\x20\xf0\xc3\x5a\xc1\xe2\xab\x98\x50\xaf\xc5\x84\xdd\x3c\x85\xd8\x2b\xef\x58\xfb\x4e\xe2\x5b\x4e\x5f\x49\x13\xcd\xe9\x1d\x5c\x24\xf4\xf1\x34\x5c\xca\xc1\xd9\x42\xde\x1c\xf2\xea\xe9\x42\xef\xf9\x43\x89\x35\x04\x85\x7b\xfb\x94\xcd\x8a\x9b\x43\x49\x6a\x85\xef\xe0\x23\x86\x12\x50\x71\x7c\x0f\xa9\xda\xf1\x55\x04\x63\xfc\x90\x8a\xc9\x30\x17\x9b\xf5\x3d\x6e\x27\x6a\xf1\xf5\x7b\x26\x1c\xcd\x78\xdd\xdd\x62\x1f\x03\x09\xd5\x94\x30\x39\x4e\x02\x86\x2a\x39\x9a\x56\x21\x5f\xe7\x8f\x9c\x3f\xbe\xc6\xa4\x35\x54\x27\xce\x6f\x02\xfc\xfb\xee\xd3\xa4\x09\x4f\x93\xa6\x75\x9a\x54\x1d\xa7\x49\x1d\x9e\x26\x32\x3d\x4d\x84\x39\x4d\x44\x74\x9a\x54\xe1\x69\x52\xc7\xa7\x49\xe5\x4e\x93\xc6\x9c\x26\x8d\x3b\x4a\x83\xfb\xd4\x51\xaa\xb7\xdd\xda\x1b\x29\xe6\xec\x5f\x38\x58\x1a\x77\xa6\xc0\xea\xea\x4e\xbb\x57\x83\x95\xa1\x99\xb6\x05\x0a\xd8\x69\x59\x91\x10\x98\xe8\x98\x64\xa3\x40\xc8\xd4\xbc\xb1\xbe\xb4\x85\x86\xd2\xed\x96\x32\x7a\x6f\x8b\xa8\x06\x1f\xfc\x9d\x06\x0d\xe8\x6e\x13\x48\x38\x0b\xa5\xce\xa9\x0f\x1d\xb3\x1e\xed\x01\x05\xef\x7b\x23\xc7\xc1\xc6\xfb\xe3\xde\x88\x5c\x57\xa1\xd5\xf9\x91\x76\x74\xa9\xe8\x91\x4c\x0c\x89\xaa\xb1\x33\x98\x75\x9a\xf5\xc8\xe9\x2f\xb4\xb3\x00\x71\x1d\xdc\x96\x9e\xf8\xd4\x2c\x32\x32\xb5\x30\x9e\x81\x91\xd9\x50\xdb\xb9\x2f\x26\x48\x1f\x78\x1c\xd6\x6a\x63\x07\x3e\x89\x0c\x38\x8d\x02\x7f\xb4\x9f\x6b\xbf\xba\xe8\xe5\x30\x6f\x54\x13\xa1\x6d\xcf\x17\x49\x19\x39\x92\x10\x63\xd2\x79\x46\x82\x0c\x92\xbc\x97\xb4\x49\x44\x53\xcf\x24\x7d\xf5\x15\x79\x54\x60\x7c\x5d\x7a\x37\xba\xf1\x58\x5b\xdd\xd9\x1d\xf4\x9b\x73\xf5\xa2\x57\x05\xf9\x85\x63\xef\x6b\xf7\x92\x77\x84\x4c\x8e\x57\x40\x27\x09\x77\x97\x60\xb8\xd9\xda\x3c\xff\x7a\xec\xce\x7c\x99\x9f\xa3\xb7\x9c\x0e\xc9\x73\x4e\x5f\x70\xfa\x92\x1b\x39\x17\x0f\x82\x56\x1c\x49\x17\x6c\xc2\x2d\xbb\xa5\x6c\x9f\x25\x1d\xa9\xd9\x37\x56\x60\x37\x66\xb9\xbd\x37\x10\xee\xeb\x93\x82\x1e\x49\x22\x75\xde\xd3\x86\xbe\x97\xa4\x88\x82\x64\x0f\x77\x1e\x90\x22\x32\xae\x2b\x3a\xdd\xe8\x8d\x77\x49\x2b\x4d\x98\xec\x16\xb8\x4a\x90\x87\x6b\xb8\x94\x54\x8e\xbd\x2c\xad\x30\x82\x34\x13\x08\xae\x08\x64\x16\xb3\x09\x2a\x22\x81\xfe\x2c\x72\x38\x2f\x12\x83\xc2\x59\x2b\x5b\x4e\x22\xd3\x98\x25\x05\x38\x4f\xda\xaf\x74\x48\xe9\xb6\x9d\xa2\xce\xb2\xb0\xa0\xed\xa8\x17\x64\x4e\xb9\xb5\x2e\x05\xc7\x8b\x73\x0a\xda\x22\x6d\x11\x02\xc5\x53\x3a\x4f\x10\xc5\x93\xd6\x29\x3e\xb7\xca\xf3\x69\xa0\x2b\xf2\x97\xcf\xcb\xe0\x63\xad\x94\x3a\xf7\xda\xb4\xcb\x20\x58\x09\xea\xe9\x92\xbb\x82\x76\xf4\x16\x18\xd8\xd7\x73\x3d\xb0\x33\x3a\xef\x52\xa5\x50\x4a\xcf\x74\x85\x2b\x2b\xd7\x1e\x5f\x81\x38\xbb\xc4\x24\xfa\x82\x5e\x69\xbb\x8b\x33\xf3\x36\x58\xd6\xb9\x5d\x56\x7e\x8e\xe6\x89\xa3\x78\x11\xd9\x06\x6e\xed\x3f\x18\xc1\xb1\x54\x68\x9d\xa5\x1b\x44\x80\x0a\xb8\xd0\x99\x24\xef\x7b\xc0\x1c\xd2\x92\x07\x6c\x8f\x89\x06\x72\x08\xf5\xb6\xc8\x8c\xa3\x82\x1c\xe2\x55\x0b\x07\x52\x19\x28\x98\x08\x19\xef\x87\xc2\x64\x30\xb9\xa0\x62\x30\xe7\xd5\xc5\x93\xa2\xbc\x0c\xa1\x72\x31\x41\xd1\x2b\x80\xce\x54\xed\x26\x03\x26\x72\x01\xe2\xbb\x92\x48\x8c\x73\x2f\xe9\x93\xf4\x02\x04\x7d\x25\x36\x99\x09\xda\xb5\x49\x0f\x82\x23\xa2\x02\xe3\x5b\xad\x3a\x28\xb4\x00\xee\x86\xde\x84\x8c\x91\x20\x25\x29\xf0\xb8\xd4\xea\xa5\x1b\x72\x83\x57\x11\x74\x77\x86\xfb\x7b\x64\xde\x12\xe6\xb9\xb9\x06\x06\x43\xc6\x5f\xc2\x58\x33\xe1\xb1\xa4\xfa\x78\x47\x57\x0c\x15\xda\x49\x69\xb9\xec\x1f\x6c\x80\xba\x60\xc3\x29\x23\xfa\x78\xb3\xbf\x21\xed\x15\x63\x03\x5a\xd9\x70\x5e\xed\x64\xe3\x6c\xd1\x6c\x54\x62\xc3\x22\xe6\xc6\x2f\x2f\x37\x3e\x15\x72\x43\xce\x59\xc9\xcf\x39\x9b\x0e\xfe\xa7\xfa\x9f\xea\x60\x3a\xdd\x28\x36\x1e\xbe\x33\x59\xc1\x5d\x6d\x3a\x18\x0c\x1e\xf9\xbe\x36\x2e\xf9\xc5\x25\xab\x37\x78\xb5\xd1\x5c\xb2\x8d\xa6\x66\x6c\xa3\x11\x1b\xf3\x5a\x5c\xf3\x29\xdb\x28\x36\x66\xa2\x50\xb4\x74\x83\x57\x53\x5e\x16\x8d\xa8\x37\x44\xbd\x31\x9f\x15\x25\xbb\x14\xb3\x29\xab\x55\x6d\xa3\x0e\x1e\xf4\x37\x0f\x99\x82\xef\x6a\xb7\xa7\x58\x20\x1d\xa6\x66\x0b\x13\x49\x7f\x2c\x90\x24\x85\xdb\xca\xe6\xd4\x9c\x07\xa7\xe6\x76\x5e\x52\x49\xbe\x05\xd2\x64\xc1\xd1\x9c\x5c\x4a\x34\x07\x4b\x0f\x1c\x5b\xad\x8d\x54\x3b\xb0\xae\xd7\x8a\x42\xdc\xcc\x19\x39\xa0\xf3\xd8\xd8\x06\x50\x66\x6f\x27\x0b\x7a\x53\x68\xd3\x45\x55\xaf\xd7\xaa\xda\x9c\x81\xe4\x41\x37\x3d\x3e\xe8\x56\x80\x59\x95\xd6\x72\xd9\x7b\xa3\x11\xf2\x00\xab\x2b\xf4\xb7\xcf\xfc\xac\x35\xf3\xd5\x1d\x48\xb7\x3a\x92\x74\x51\xa2\x23\x69\xad\xd3\x4f\xf1\x6d\x43\x4f\xbd\x46\xdb\x5e\x01\x9c\xc3\x51\xe9\x8c\xfa\x3d\x5b\x6b\xc5\x9c\x01\xa3\x7b\x55\xf8\x48\x4f\x57\x45\x28\xce\xe4\x96\x67\x7b\xa8\xae\x49\x5b\x0f\x59\x96\xa1\x57\x92\x32\x1c\x18\x7d\xb3\x87\xcf\xdc\xbb\x67\x8a\xef\x78\x27\x69\x68\x0f\x59\x94\x60\xcf\xfd\xe8\x89\xc2\xa2\x27\x32\xca\x12\xab\xd8\xf2\xdb\x50\xf4\x7d\x24\xc7\xf8\x48\xd2\x99\x9e\xa6\xb7\x24\x6f\xd7\xcb\xb2\xde\x5f\x8a\xd7\xea\xaa\x3e\x2b\xfd\x9d\xe4\x4a\x86\xc9\x44\x09\x23\xef\x65\x10\x30\x21\x8d\xf0\x12\xa5\x2b\xa8\x9c\xbf\x0b\x6a\x14\xe4\x19\xc6\xe4\x46\x46\x7e\x7e\xa4\x09\x0c\x3f\xa1\xd7\x23\x49\x99\x3d\xe3\x1a\xc5\x4a\xf8\x23\x1a\x0c\x0e\x3c\x73\xa1\x89\xff\x70\xe7\x41\x76\x24\x23\xc3\x66\x60\x36\x7e\x28\x90\x62\x4f\x20\xc4\xd3\xc8\xdc\x7e\x46\x30\xf3\x2e\x89\x7d\x18\xd6\x60\x48\x6a\x57\x2b\x54\x29\x68\x06\xa7\x6e\x85\xbd\xa1\x9d\x0a\x84\xb1\x78\xa4\x95\xfe\x02\x13\x6e\x1e\x79\x14\x33\x66\xd5\x3d\x14\x9d\x45\xc5\x99\x19\x38\xa9\x7b\xe5\x43\x33\xb9\x89\xb3\x78\xdb\x3a\x3b\x8b\x80\xa5\x02\x06\x3f\x64\xb1\x8e\x64\x14\x11\xcc\x33\xf9\x71\x38\x25\x67\x12\x12\x95\x86\x3f\xc3\x10\x2f\x69\xa3\x91\x7f\x44\xd4\x34\x26\xa3\x87\xe1\x7a\x75\x77\x35\x59\xdf\x51\x9e\x4e\x27\xed\x0c\xe3\x55\x92\xc8\x02\x35\xf4\xe7\x42\xa1\xb8\x57\x62\x44\x21\x9e\x86\x3b\xf7\x49\x08\xe0\x04\x62\x5d\xce\x1e\x09\x1b\x1b\x66\x1f\x42\x30\x63\x6b\x74\xe3\x17\x50\x61\x76\x4c\x93\x8e\xfc\x56\x8a\xe2\x99\xed\x9a\x68\x39\xde\x1c\xb3\x0c\x85\x04\x49\x94\x7f\xdb\xc1\x23\xb4\x26\x76\x13\x9e\x34\x21\x51\x3a\x0f\x1a\x03\x55\xa5\x69\xe0\x85\x40\xfb\xfb\x64\x9a\x9a\x9c\xa4\x63\x99\x1a\x9a\x36\x15\xb7\x67\x25\xc2\xf1\x8c\xfe\x94\x4e\x0e\x7e\x97\x78\xc2\x5e\x4a\xc3\x9b\x2c\xb8\xdc\x76\x5f\x63\x43\x17\x88\x34\xfe\xd9\xf7\x5d\x87\x41\x78\xe9\xae\x74\xa9\x01\xdf\x7d\xc8\xbe\xff\x6f\x50\xe8\x90\x75\x52\x50\x7d\x1f\x17\x74\x5e\xa2\x0a\xdb\xe1\xc7\x8a\x36\x2a\x48\xfd\xb0\x4b\xba\x3a\x31\x75\xa3\xc2\xae\x8a\xeb\xf4\x6e\x74\x98\x43\xcb\xed\x56\x3c\xca\xc7\x0d\xd5\xf7\x46\xd8\x8f\xc6\xcb\x4f\x1d\x25\x08\x44\xaa\xc3\xa0\x66\x20\xc2\xf2\x44\xc3\x97\xa9\xba\x56\x32\x85\x8e\x24\xfd\x12\x98\x7d\x28\xfa\x10\xf8\xa9\x4c\xec\x3d\x37\x24\x0e\xa8\x5a\x43\x1d\x40\x71\x1c\x51\xa2\x5c\xd0\x2a\x4f\x0a\x2d\xc9\x73\x59\xc6\x8d\x9c\x67\x7b\xab\x75\x3c\x9d\x55\xf4\x57\x9b\x69\x70\x5a\x69\xc5\xdc\x65\x05\x81\x68\x21\x44\x05\x18\xc5\x72\x51\x41\x80\xa5\x3e\xaf\x36\x24\xd6\xb7\xce\x5b\xa9\x4a\x72\x39\x88\xab\x10\x56\x4d\xc3\xc2\x67\xd5\x74\xa5\x15\xd8\xe6\x06\x3d\xa3\xa8\x54\xff\x64\x12\xe4\x32\xcb\x4a\x67\xcd\xca\xd9\xa7\xe5\xf2\x13\xaf\xa6\xe2\x93\x76\x42\xb7\xad\xa9\x4a\xe1\x6f\x3d\xde\x99\x0e\xe6\x37\x1b\xd4\x45\x75\xc1\x9e\x88\x45\xd5\xe0\xdb\x92\xce\x06\x45\x55\x5e\x8a\x1a\x58\x41\x13\x80\xd7\x14\x1d\x9d\x9f\x4b\xd6\x90\x39\x9d\x69\xe7\x53\xa8\x32\xb3\xbf\xf4\x5b\x1d\x53\xc0\x19\xf2\x93\xb9\x7b\x34\xdc\xd5\x7b\xd5\x49\x15\x3a\x4f\xe9\x6c\xd5\x43\x32\xa5\xf7\x46\xe4\x52\xfd\x77\x46\x87\xe4\x8a\x0e\xc9\x21\x95\xc4\x24\xbf\x68\x9c\x2b\x87\x3d\x91\x6f\xc6\x87\x3a\x43\xf5\x50\xc7\xbd\xd8\xee\x51\x7a\xe8\x7a\x5b\x2e\xd1\x94\x9e\x6f\x2e\x30\x51\xb5\xe6\xba\xd6\xac\xa3\xd6\x25\x3d\xdf\x9c\x61\xa2\xee\xcb\xbe\x3c\xcb\xd0\xf9\xa6\xf9\x0d\xb6\x99\xc6\x54\xdb\x7b\x08\xdd\xd0\xc3\x30\x0c\xf8\x18\x5f\xd0\x43\x72\x48\x6f\xc6\x81\xc7\xc9\x21\xb8\x9b\xe8\x69\x82\xac\xe3\x82\x52\x5a\x66\xd9\xe6\xe6\x19\xd5\xa1\x3a\xa6\xf4\x1c\x13\x55\x3a\x57\xa5\x57\x54\xc7\x3d\xb9\x54\xa5\x61\x47\x0a\x95\xdf\xd9\x83\x43\xcb\xa8\x2e\x28\x3a\xa4\x17\x38\x70\x93\x58\x1d\xd2\x9b\x55\x49\xef\x29\xae\x66\xba\x5c\xc2\xdf\x4b\x13\xe8\x4e\x63\xdd\x14\xd0\xec\xd2\x38\x2a\xe8\x55\x58\x95\x0a\x84\xa6\xc2\x10\x2a\x0c\xa3\x0a\xe3\xab\x8a\xde\x16\x65\xc3\xaf\x6d\x34\xf1\xa7\xac\x51\x37\x4f\x93\xd9\x11\xd6\x9e\x4d\xd5\xbb\x5c\x12\x87\xc1\x6f\x15\x52\xe5\xe5\x8a\xfc\xda\xd0\xde\x88\x7c\x90\x54\x28\xf6\x4d\x61\xc7\x65\xe9\x1c\x41\xdf\x87\x76\xa0\x1f\x52\x11\xef\xf6\xf6\x10\xe3\xf1\x45\x89\x3e\x48\xf2\x1e\xab\x36\x3e\xc8\x60\x5b\xaf\xe2\x33\xe6\x83\xc4\xe3\xb0\x1b\x1d\x94\x92\x91\xd2\xe7\x8f\xf9\x20\x0d\xbf\x76\xad\x5a\xf2\x01\xc6\xf8\x39\x1a\xed\x65\xd7\x10\x89\xf9\x43\xe8\x01\xd4\xef\x63\x32\xda\x7a\x90\x5d\xeb\xcf\x0e\xd4\x67\x11\xe3\x69\x6f\x38\xfa\xfd\x29\x3d\x80\xd8\x17\xa6\xf4\x74\xcd\x95\xe9\x74\x72\xaa\x63\x5e\xe4\xa7\x11\x59\xc1\x2b\x6b\x94\x3f\x1a\x6e\x43\xa7\x46\x8d\x39\x93\xe8\x83\x54\x00\x88\x84\x16\x91\x05\xd5\xde\xba\x4a\x64\xae\xca\x03\x56\x5d\xc1\x29\x92\x73\x6e\xed\xe4\xc9\x47\xa3\xe1\xd6\x6e\x52\xe7\x41\x57\x9d\xaf\xb5\xbd\x93\x7f\xa5\xc2\x83\x7c\x21\x91\x24\x0b\xfa\x41\x92\x12\x13\x29\xd1\x02\xaf\xda\xeb\xfc\x9f\x41\x16\x7e\x8e\x4e\xe9\x55\x45\x0e\x80\x84\x93\x6b\x7a\x3a\x08\x90\x99\x94\xf4\x74\x10\xa3\x33\x39\xe8\x51\x7a\x9d\x29\x44\xb9\x8e\xe9\xb0\xf7\x99\xd6\x7e\x78\xd6\x12\xb0\x87\x7a\xcd\x72\xd9\xab\x20\xc4\x0c\xd5\xc6\x59\xaa\x64\x1b\x22\xdd\x5a\x6a\x03\x3c\xba\xb6\x04\x0a\x22\x1a\x43\x43\xa1\x13\x63\xde\x37\x26\xfd\x52\x9d\x28\xcd\xc4\x99\xf8\x4b\x54\xe1\xbc\xd7\xd3\x4e\xd7\x45\xcd\xec\xa8\xde\x08\xc9\x35\xfd\xef\xf5\x14\x82\xaf\xad\xa0\xdd\xf4\x57\x28\x99\xd5\x60\x6a\x1e\xcc\xc6\x27\xd7\xd8\x65\x9f\x2a\xb3\xec\xb2\x42\xd7\x6a\xe8\x07\xb4\x1c\x00\xfd\x20\x5e\xdc\x74\x4a\xcb\x01\xab\xa6\xea\xf5\x29\x3d\x70\x89\x0d\xc2\x23\xf1\x7a\x82\xae\x93\x63\x90\x1e\x90\xeb\xe8\x10\xd4\x26\xa5\x57\xbc\x42\xa7\xe4\x5a\xdb\xa4\x5a\x4a\x8c\x73\x74\x4a\xd1\x01\x4d\xc6\xbc\x5c\x4e\xfd\xd9\x78\xf0\x2d\x67\x23\x3a\xa5\xa7\xc9\xf1\x48\x16\xf4\x3a\xcc\xd4\x61\xfa\x24\xd2\x8f\xc7\x4e\x79\x81\x49\x49\xdd\xbc\x61\xd2\x13\x99\x07\xd5\x58\x35\x55\x95\x7a\xa7\x03\xf6\xb9\x61\xd5\x34\xcb\xe4\xa3\x32\xcb\xd0\x82\x96\xa4\xa4\x92\x48\xba\x50\xfd\x9d\x57\xe8\x9a\x48\x4c\xe6\xfa\xa9\xc4\x64\x91\x65\xf3\x2c\x43\xea\x72\x7a\x1a\x9c\xd1\xcb\xe5\x69\x70\x42\xab\xa3\x0f\x50\xc6\x17\xeb\x73\x18\x5e\x08\x78\x54\xaf\xdc\x79\x0d\x8e\x82\xf6\x83\xe0\xdc\x86\x72\x5d\x5f\x2d\x1a\x3a\xa0\x07\x26\xd6\x09\xa0\x3e\xc2\xe0\x9a\x01\xab\x84\x74\x8f\xc4\xb6\x8f\xc9\xa9\xf1\xbf\x3b\x98\xcd\xa0\xb6\x44\x98\xc8\x47\xe5\x04\x9d\x0e\x8a\xe9\x54\x37\x70\xa0\xaa\x69\x10\x20\x3d\x02\xe2\x3a\xc4\x39\x3a\x50\xcd\x3f\xeb\x78\x47\xa2\x36\x20\x1a\xf3\x01\x3d\x3e\x81\x73\xf6\x94\x5e\x8f\xd5\xea\xf9\x4d\x32\xc6\xea\xd8\x3b\x0d\x0e\xf2\x03\x1d\x03\xca\x99\xa6\x9f\x92\x19\x3b\x6f\xf2\xd3\x81\x2c\x6b\x31\x9b\xbd\x62\xe7\x0d\x69\xc4\xdc\x15\xbc\x17\xf3\x95\x0e\x03\xd6\x2d\xed\x02\x98\x29\x02\x60\xe2\x6f\x90\x6b\xc5\xbd\x3f\x3c\xb0\xce\x5c\xd7\x9b\x9b\x58\xe1\xfc\xf1\xf5\x09\xb6\x81\x55\x82\xbe\xe8\xe9\x40\xf5\xaf\x60\x11\xbd\x7b\x2f\xe6\xf4\x74\xd0\x88\xf9\x4a\x1d\x98\xbd\xb3\x8a\x5c\x55\xf4\xcc\xc7\x30\xb0\xc7\x04\x49\x8f\xb8\x6b\x9f\xb2\xd4\x1d\x6f\x9f\x5a\xc7\xdb\xf6\x5e\xf6\x29\xcb\xb8\x44\xd7\x24\xa5\xc7\x70\xc0\x7d\xc2\xb7\x07\x06\x8d\x81\xe9\xfb\xa2\x5a\x88\xc3\x38\x7d\xd1\x6d\x1f\xd1\xf0\x84\xb4\xea\xbd\x0f\xb1\xaf\xec\x01\x3d\x4a\x94\xe5\x07\xf4\x68\xd5\x05\xd0\x2f\x93\x2f\xe8\x00\xe7\x5f\xdc\x0c\x0f\x56\xff\x6b\x07\x80\xb5\x03\xff\x20\xb4\x9a\x9a\x6b\xbe\x27\x80\xb6\x9a\xfe\x6f\x12\x3b\x93\x70\x46\xde\x4a\xda\x78\xd3\x52\x58\x8c\x00\xfa\x4d\xdc\x27\x89\x7e\x99\xce\x8c\xde\x0b\xc8\x64\xa7\x45\x65\x96\x21\x63\x8b\x9e\x18\x17\x35\x13\x75\x3b\x7a\x2e\x27\x2f\xe4\xe6\x66\x8e\xac\x1d\x32\xc3\x39\x3c\x76\xca\x58\xcb\x2c\x3b\x28\xc3\xc8\x9a\xa4\xb6\xea\xf5\xa7\x16\x82\xda\x0e\x9e\xd1\xc7\xd2\x19\xc3\x3b\xf1\x81\x37\x50\x5e\x2e\x7f\xb5\x91\xc9\xfd\xad\xff\x32\x95\x20\x3a\x1c\x64\x31\x0e\xea\xb8\xef\xbb\x7b\x19\xb8\x59\xb5\xb9\x02\x2d\xb6\xdb\x1d\x6d\x65\x0c\x2f\x97\xbf\xc9\xe5\x12\xfd\x06\xee\x20\xcf\x05\xda\xbf\x1f\xc5\x53\x31\x23\x03\x43\x06\x18\x8d\xa2\x09\xed\xe5\xf6\x6e\x23\x6a\x8c\xfc\x1c\xed\xab\x31\xbc\x95\x76\x78\xfb\xf7\x1f\xbe\x95\x93\xfd\xfb\xf9\x5b\x69\x27\xab\x8d\xfd\x5f\x08\xc4\xc8\x55\x19\x2a\xd9\xaf\x4c\x13\x06\xf7\xfe\x94\x46\xdc\xd0\x1b\x8d\x75\x63\x7f\x82\x3a\xd1\x3a\x0d\xdc\x21\xe7\xd8\x1e\x61\x1b\xe2\xf6\x93\x04\x32\x63\xae\x98\x2c\x30\x5e\x08\x2e\xa5\x61\x16\x55\xb5\xe5\x8d\x88\xc4\x49\x53\x14\xc4\xa2\xf8\x0d\xdf\x17\x61\x4a\xa2\x5d\x52\x61\x22\xf4\x5f\xbb\xd1\xa2\x0c\x6f\xa9\x3f\xa3\xdb\x67\x0a\x95\x56\x95\x91\x2a\x18\x84\x67\x2d\x7c\x67\xd4\x59\x2e\x7f\x92\xb4\x21\x80\x44\xbd\xa1\x87\xed\x61\x69\x9d\x1b\x66\x90\x5b\x9e\x6a\x77\x23\xfa\x63\x81\x2a\xd2\x84\x5b\xc0\x9b\x1e\x58\xeb\xfa\xf0\x5d\x96\x69\x03\x0e\xd7\xf0\x45\xe9\xac\x36\xbd\x8d\x38\xf4\x06\x2e\x53\x6e\x13\x5b\xa9\x53\xdb\x86\xc1\x7c\x69\x60\x79\x58\xa2\x4a\x7f\xea\x8d\xc4\xfc\x5b\xab\x6d\x8f\xf4\x28\x5d\x5b\xb2\xba\xdb\x41\x69\xb9\xec\x8e\x66\xfa\x8d\xba\x92\x1a\x63\x00\x64\x45\x18\x3d\x93\xf0\xe7\xc7\x02\x35\x84\xad\x01\x64\xa5\x00\x59\xb5\x01\xe9\x4d\x0d\x03\xfb\x07\x0f\xdb\x9b\x32\x4e\xed\xc8\x02\x65\xa5\xb7\x34\xa8\x07\x53\x36\x63\x0d\x43\x0d\x26\x60\xab\xce\xb2\xec\xbd\x84\x3c\x97\xc6\x56\x7d\xb9\x84\x87\x03\x30\x9b\x4c\xec\x28\xc1\xd2\xeb\x2f\xf9\x70\x77\x38\x9c\x80\x95\xcb\x7b\x89\xf3\x8f\x8a\x28\xe4\x4f\xb4\x0d\x57\x96\xe9\x4d\xd0\xb4\x6d\x06\xb3\xac\x79\x08\x31\x38\xdb\x26\x83\x80\x26\xa1\x63\xdf\x75\x64\x93\x93\xba\xe9\x59\x53\x7f\x3f\x15\x43\xba\x87\x9a\xab\xff\x5d\x22\x6d\x01\x4c\x98\xf1\x47\x4b\xb1\xb4\xf1\xc8\x79\x25\x93\xa8\x92\xde\x9f\xbd\x9d\xa4\xb5\x8a\x82\x11\x8a\x34\x7f\x26\x88\x09\x23\x4d\x4b\x0f\x62\x7d\x9c\x0b\x27\xc8\x7c\x56\xd0\xde\xd0\xb9\x90\xd6\x0f\x7d\xf0\x2c\xf5\x66\x14\x05\xc9\xda\xce\x7f\x2b\xd4\xec\x5e\x17\xa8\x6d\xdb\xf7\x17\xa4\xae\xd8\x31\x79\x3b\xb2\xcc\x18\x09\x89\x81\x0e\x11\x1f\xc8\xcf\xbf\x25\xe0\xba\xb6\x26\x89\x63\xa9\x85\x29\x30\xae\x45\x2b\x00\xd4\x13\x8e\xa2\xc4\x2d\x89\x7b\x73\x62\xb9\xd3\x8a\x0f\x60\xfc\xd9\x84\x09\x04\x30\x38\x35\xf9\x3a\xc9\x4c\xa0\x1f\x04\x11\x83\x53\x03\x32\x90\xf6\xe0\xb4\x20\xca\xe3\x65\x9d\xa6\x6d\x86\x9e\x38\x11\x47\x78\x6e\xba\x6c\x12\x9d\xe2\xf7\x2c\xab\x1f\xd1\x6a\xf2\xdc\x66\x49\xcd\x51\x3b\x4d\x80\xc7\xa5\x86\xba\x0c\xc0\x78\xe2\xe2\xa4\xe8\x10\x86\xe3\x8e\x0f\xa3\x01\x43\x0e\x91\xba\x7b\x35\x1e\xd1\x8a\x74\x66\xf5\x00\x94\xb1\xf3\x71\x29\xc8\xc7\x49\xc8\xfd\x50\xc3\x21\x5a\xd0\xc8\x32\x24\xd2\x7c\xe9\xc2\xe7\x93\xc5\x26\xae\x7c\x38\xe1\x5e\x1d\xca\xf2\xed\xd9\xe1\x26\xbf\x02\xcc\x35\x22\x2a\x78\xf6\x89\x64\x59\x3b\xab\x7e\x98\x5b\xd6\xc0\x40\x47\xd4\x0b\xb5\x3a\x49\x60\xaf\xa6\x5d\x10\xea\x75\x30\x61\xed\x0c\xec\x67\x02\x35\x64\xee\x77\x1e\xa9\x39\x08\x02\x88\xa0\xff\xe4\x5a\x6b\xd2\x90\x9a\x30\x22\x54\x61\x9c\xce\x89\xb4\x4d\x98\x44\xe8\x8b\xde\x75\x20\x58\xa8\x5a\x33\x39\x4a\xa9\x18\xfc\xf0\x83\x7e\x6b\xb2\x44\x80\xb9\x4a\x1a\x85\xd1\xce\xa8\x65\x73\x74\x25\xd4\xe1\x61\x44\xdf\xbd\xe1\x18\x36\xa1\x89\x69\xa2\xa0\xdc\xd5\x8e\x1a\x9f\xde\x93\x81\xb9\x9e\x29\x99\x98\xbf\x5a\x4c\x58\x28\x02\x62\x24\xe6\x75\xd7\xe1\xa7\x69\x5a\xa7\xdd\x56\x96\x9d\x29\x60\xd6\x44\x82\x3d\xba\x19\x7a\x4d\xaf\x78\x94\xca\x09\xb6\x71\x14\x5f\xf2\x39\x3f\x63\x35\x6d\xc8\xb5\xfe\x1c\xcc\x7e\x1b\xfa\xa6\xf0\xeb\xd1\x1b\x42\xa0\x16\x1b\x6b\x56\x41\x6c\x48\xde\xb9\x0a\x7a\xb1\x5c\x44\x7b\xa7\xb3\x2b\x4d\x96\x62\x96\x2b\x48\x2b\xb4\x0f\x42\x68\xfe\x9b\x71\xcb\x9f\x17\xb0\xac\xf7\x74\x28\xdf\x53\x35\xef\x85\xc4\xb7\xee\xd1\x28\x91\xd4\x59\x78\x5a\x36\xa2\x1e\x37\xb4\x41\x10\x4c\xb6\x66\x72\x31\x6b\x20\xf1\x15\x98\xec\x44\x1e\xe5\xc3\xb0\xb9\x4c\xbb\x95\x9a\x4b\x1b\xf1\x6d\x8f\xc2\x76\xf0\x0a\x93\x3b\xdb\xf0\xdf\x6d\x25\xdf\xe1\xd5\x0a\x09\x4c\x46\x80\x26\x76\x0e\x26\xa2\xb0\xad\x38\x76\x6e\x23\xae\x88\xe8\x5d\x4b\x85\x4e\x0d\x5c\x5c\xd0\x04\x2a\x5d\x78\xe3\x68\xf1\x51\x89\x18\x9e\x8c\xf2\x61\x14\x6f\x91\x85\xd1\x7e\xf9\x39\x02\x35\xa9\xdb\x41\x94\xd2\xd2\x35\x30\x1a\x8d\x4d\x54\x83\xb9\x2f\xdb\xb1\xa4\x69\x0b\xa6\xc4\xe8\x4f\x02\x09\x85\xa0\xdc\xb1\xdd\x0d\x7d\x1a\xa0\x92\xf7\x53\xf0\xa6\x38\x0d\x7d\x7c\x77\x0d\x55\xe5\xc9\xdd\x55\x76\xf2\x86\x7e\x0c\xaa\xa8\x71\x68\x22\xc7\x30\x24\x77\xf6\x21\xfc\x62\x46\x7e\xb8\x47\x04\xe9\xf7\xbd\x4b\xac\x41\x6c\x97\x3a\xc2\x51\xcb\x94\xf7\x20\x4f\x35\x39\xae\x49\x82\xfb\xe0\x56\x2c\xf2\x9f\x04\xaa\x89\xc0\x41\xc0\xda\xaf\xb6\xf8\xf8\xfb\x5a\x84\x23\x58\x33\x2c\x75\x1c\xd0\xc7\x19\xdd\x38\x43\xd5\xba\x95\xdd\x63\x4b\xdb\xc2\xa7\x29\xc9\x7d\x14\xa1\x8e\xa3\x6c\x22\x06\x61\x78\x03\x22\xb9\xb6\x55\x9f\x6b\xe2\xa2\xad\x52\x31\x69\xe7\xe6\xb2\x9f\x29\x9c\x12\x58\xb1\x57\x24\x38\xcc\x1d\x77\x06\x5d\x7a\xfe\xc6\x98\x61\x82\x80\xb5\xa0\x07\x15\x5a\xcb\xfc\x84\x7a\x28\x72\x5d\xd0\x86\x08\x7a\xaa\x18\x3f\x4c\x84\xb1\xd0\x7e\x0f\x87\x11\xb8\x4f\xe9\xe3\xc7\xc4\xc4\x1c\x57\x63\x5c\x85\x09\x48\xb6\xc3\xcb\xe4\x72\x34\xdc\xda\x89\x42\x16\x02\x99\x7c\x67\x57\xaa\x32\xcc\xa2\x23\x90\x09\x1e\xb9\xa0\xb7\x7f\xb9\xc4\x67\xfa\x0e\x70\xe4\xd6\xad\x1b\x17\xf8\xfa\x60\x4e\x1a\xf4\x54\x0c\x6c\x7c\x23\x72\x51\x01\x66\x4c\xa4\x49\x9a\xef\x82\x2e\xc0\x8b\x76\x74\xf7\xd1\x1e\x26\x1f\x4c\xe2\xdb\xb5\x0c\x6d\x47\x2e\xbf\x75\xac\x6c\x63\xd3\x66\x19\xb8\xc8\xe8\xcc\xc0\xa4\xb1\x0a\x9a\x80\xab\x09\xc1\x50\x75\x64\x8c\x71\x3c\x61\x92\xe4\xe5\x2b\x5c\x30\x69\x21\xb4\x33\x40\xb3\x4b\x7e\x14\x61\x42\x1e\xae\xa5\x3d\xe5\x2c\xe1\xf9\xea\x96\x7d\xf2\x7d\x5b\xd6\x65\xbb\x33\x9d\xa6\x43\x4d\x46\xf0\x20\x09\x65\xdc\xfd\x99\xc7\x83\xd6\x0c\x86\xea\x78\xae\x5b\x1c\x7f\x6b\x1a\xad\x04\xf3\x84\x53\x61\xa2\x80\x68\xad\x7d\xd2\x04\x68\xcf\xe1\xde\x50\xa6\xf7\x86\xa4\x80\x72\x67\xa8\x8e\xf9\x39\xe8\xef\xf5\x45\x64\xa8\xa3\xb2\x3d\xae\x51\x49\x38\x9e\x0c\xf3\xe1\xb2\x3b\x2c\xc9\xe0\xb4\x2c\x66\xe5\x62\x56\x34\x4c\x27\xcc\x9d\x3e\xe6\x8d\x9c\xac\x29\x87\xd6\xf2\xf0\x32\x0f\x47\x9b\x87\x12\xb0\x89\xf6\x47\x96\xf5\x82\xbb\xe2\x6d\x48\x94\x9c\xdd\xa4\x93\x92\x58\xc2\x58\x3a\xcc\x86\xd4\xd3\x26\x10\x4f\x83\xed\x5d\xb9\x1c\x5b\x33\xfa\x32\x0a\xa2\x1b\x5c\x68\x67\xf8\x56\xd2\xd2\xac\x95\x95\xc0\x2c\xe8\x2c\x4a\xb0\x66\xdb\x5b\x68\x39\xcc\x62\x60\x80\xaf\x9d\xfe\xe1\xc2\xb2\x18\x88\x33\xc9\xea\x6b\x3d\xf7\x8c\x63\x7c\x3b\x02\x25\x8c\x0e\x71\x87\x16\xad\x20\x31\x60\x94\x5d\x92\x05\x56\x2b\x95\x84\x20\xa8\x60\x3e\x69\x02\x4f\x7f\x01\x5b\xd0\x32\x30\x06\xcf\xb2\x45\x57\x03\x69\x21\x34\xc0\x1d\x9c\x14\x92\xa6\x1e\x00\xf0\x5d\x5a\x48\x9d\xfc\x65\x41\x17\xda\x39\x43\x2f\x85\xa4\xa3\xa1\x9f\x63\xa9\xd9\x22\x9f\x4b\x40\x51\x40\x0b\x59\x0f\x70\x89\xad\x75\x24\x2d\xbd\xdc\x4b\xd2\x32\xc9\xd5\x28\xc1\x4f\xed\x56\x06\xf6\x19\xe1\xf5\xae\xa4\x81\xfd\xda\xad\x5b\x7b\x67\x79\xa9\x1a\xd4\x1f\x05\x11\x2f\x4b\x2a\x57\x66\xe7\x8a\x78\xb3\xae\x39\x35\x5c\x98\x26\x7b\x59\xd7\x7e\x7f\xf1\xa6\xc5\xbe\x29\x7b\xd1\xaa\x69\xad\x58\x46\x8e\x04\xe1\xde\x03\x21\xc4\x10\xdc\xba\x78\xad\x27\x7f\x8e\xe4\x72\xe0\xeb\xec\x50\x92\x51\x90\x8f\x66\x66\x44\x57\xd3\x95\xb8\x61\xbb\xac\xb4\xd5\x9e\x82\x96\x7e\x75\xb4\x14\x7e\x70\xff\xeb\x94\xf7\x2b\x04\xf7\x5f\xb9\x7f\xd8\x6b\x23\x5c\x07\x27\x88\xd1\xde\x90\xc0\x55\x10\xe7\x10\x5b\xce\x82\xfb\x42\xb3\x3d\x02\xdb\xdb\x15\xdc\x95\x92\xbb\x15\xf3\xb3\x72\xcb\xea\x24\x09\x77\x24\x8e\x03\xba\x7b\xa0\x0d\x50\xc8\xa9\x31\x44\x71\xf2\xba\x4f\xa5\xcf\xc8\x02\x01\x8c\xd4\x88\x19\x81\xc7\x8f\xec\x86\x56\xfa\xd1\x25\xf0\x83\x18\x47\x70\xfa\xc1\xa3\x25\x59\x50\xc7\xdd\x1e\x75\x43\x0a\x98\xf0\x14\x42\x57\xcf\x48\x95\xf2\x6a\xca\x3e\xd3\x21\x31\xed\x9c\x07\xaf\xa2\x30\xdf\x8d\x2e\x8b\x82\x88\x43\x49\x7c\x85\x86\xa2\xf0\x22\x1e\xd5\x09\x82\x83\xeb\x72\x35\xcc\x5a\x3f\x7b\x96\xcd\x0c\x26\xcc\xf6\xa7\x7e\x47\xc9\x7a\x55\x41\x2a\x97\xf7\x50\x49\xdd\x22\xa1\xfd\x96\x24\x45\x95\xc6\xa8\xe3\x05\xa8\x5f\x82\x05\xb1\x5c\x0e\xfb\x14\xae\x93\xaf\x0b\x97\x31\x6f\x1e\x01\xb7\xae\x79\x2d\x1a\x61\xbc\x3d\x7a\x6c\xc0\xa5\x0e\x0f\x65\x25\xde\xc1\xd7\xef\x13\x51\xad\x37\xc6\x89\xb9\xab\x6a\x82\x50\x45\xd5\xb8\x20\x0e\xb2\xba\xca\x7e\x64\x37\x84\x19\x8f\xa0\x68\x79\x59\x7c\x79\xd7\x48\xc0\x6c\xe2\x05\x8f\x21\x2c\x0a\x6c\xee\x61\xc1\xe2\xd0\xf0\x38\x47\x55\x8a\x0d\x55\xb4\x60\x55\x6b\x31\xaa\x76\x28\xf9\x2a\xb5\x2e\xc6\xa4\x3b\xa8\x4c\x77\x5e\xd6\x56\x30\x9d\x56\x5e\xd6\x2a\xc9\xcb\x5a\x7d\x25\x2f\x6b\xf5\x95\xbc\xac\xd5\x1d\x79\x59\x9b\x34\x2f\x6b\xd5\x99\x97\xb5\xe9\xce\xcb\x9a\xb2\xe2\x71\x5e\xd6\x66\x6d\x5e\xd6\x26\xcc\xcb\x1a\x64\xb7\x74\xa1\x02\x49\x65\x76\x34\xd3\x7f\x49\x05\x9b\x1a\x12\x18\x85\x81\xe7\x3e\x3b\x44\x56\x94\xde\x86\x6a\xdd\xd2\x57\x48\xd6\xa9\x78\x65\x18\x10\x1d\x7c\xad\x82\x8c\xca\x36\xe3\x56\x58\x51\xd2\x5d\x6b\xeb\x19\xc7\x64\xdd\xa8\x98\x25\x9a\xaf\x4b\x1b\x52\x48\x1d\x79\x82\x70\x17\x3c\x57\xb2\x5c\xd2\x07\x44\x2c\xe9\xfd\x50\xe4\x5b\xbb\xe2\x28\xdc\xbe\xb0\x2d\x22\xa6\x76\xc7\x68\x8b\x54\xa4\x21\x0f\x96\x22\xd9\x13\x42\x21\x75\xe3\x9e\x12\x5c\xe2\x36\xf9\xe5\x2c\x69\x6e\x1b\x9a\x53\x8d\xc1\xb7\x33\xf8\x36\x68\x76\x76\x57\x63\x8b\xa4\xb1\x7d\xd7\x58\xd8\xc4\x62\x4d\x13\xd6\xd0\x40\x01\xb9\x25\x4e\x0d\x65\x3d\x2e\x0b\xa9\x97\x96\x42\xf7\x5c\x41\x6c\x34\x8c\x85\x2b\x85\x2a\xdc\x8f\xcb\x4a\xa8\x98\xc4\x02\x9f\x43\xe1\x4e\x5c\x78\x0e\x85\x7b\xa4\x8e\x0c\x5e\xf5\xbb\xa9\x7a\xb7\xb5\xb5\x46\x36\x33\xda\x1e\x9a\xbb\x1b\x9b\xb0\xdc\xce\x22\x14\xd6\xa0\x46\x01\x49\x76\xc2\x88\x59\x79\x59\xdd\x4e\x81\xcb\x43\xdf\x9a\xd7\x2d\xc2\xad\x61\x7f\x9f\x30\x52\x93\x46\x35\x9b\x06\x63\x09\x3c\x06\x5e\x39\x25\x60\xf8\xed\x9e\xd1\x83\x7d\xf5\xf3\x67\xe9\xe7\x30\xa3\x1d\xc7\xbe\x38\x7c\x9f\xf8\xc7\xfc\xf8\xc4\x90\xf2\xce\xd6\x43\x71\xf0\x6d\x74\x37\xce\xd3\xb0\xde\x86\x42\x3f\xb1\x0d\xc3\x90\xf9\xd5\x5c\x83\x11\x1a\xcd\xd9\x20\x2e\x58\x85\xb0\x7b\xe7\x86\xef\x78\x10\x73\xec\xc7\x9e\x4c\x3a\xc2\x62\xd0\xb5\x65\x55\xbc\x0f\x67\xc8\x40\xd8\x01\x05\x5f\xaf\xf5\x5a\x88\xde\x7a\x3f\x07\x3d\x9e\xd4\x79\x3f\xea\xc4\xdc\xa5\xdc\xe0\xd4\x0f\xff\xad\x0d\x25\x6c\x18\xa9\xb6\xe3\x43\x54\x1c\x3a\x38\x78\x5e\x24\x30\xeb\x77\x85\x81\x1a\xd6\xf1\x24\x6d\x77\x04\x57\x3d\x76\x3a\xf0\x6c\xcd\xba\xf2\xd0\x5b\x22\x30\x30\x78\x92\xf0\x0c\xed\x36\x9c\xe3\x5a\x97\xdb\x04\x28\xc7\xaa\x2c\xab\x1e\x69\xb7\x3c\x1a\xe0\xc0\xc7\xaf\x36\x4d\x3a\x23\xe2\x8c\xab\x87\xcd\x3a\xe7\x8a\x06\x13\x54\x3f\x6a\x96\xcb\x21\xf8\xb5\x38\x47\x89\x56\xad\xe6\x9b\x1d\x30\x9a\x6f\x77\xc0\xf0\x73\xfb\xcb\xcc\xad\x79\xd4\xb6\x51\xf2\x63\x0f\x61\xde\x84\x1e\x3c\x2d\x18\x1b\x30\xa2\xe6\x11\xad\xfe\x1d\x3e\x2b\xcd\xa3\xae\x0f\xd6\x81\x6b\x73\x84\x89\x9a\x49\x67\x6b\x77\xc4\x27\x6a\x42\x43\x81\x0f\xc9\x72\xa7\x61\x59\xc0\xa8\xab\xb2\x81\x14\x3b\xe0\x1b\xb2\xb2\x4f\x03\xda\x6b\xf5\xfb\x36\xa6\x04\xd7\x06\x05\x92\x4e\xf9\x40\x1a\x07\xe5\x31\xa7\xbf\x4b\xc4\x89\x20\x12\x8f\x19\x68\xa0\xf1\x6d\x03\x0a\xa8\x3f\x18\x24\xe1\xea\x50\x7e\x61\x1d\x11\x72\x64\x73\xca\xb4\x5c\x9b\x86\xc6\x1c\xa9\xa4\x55\xe0\x77\x5c\x26\x7e\xc7\x65\x22\x72\x64\x9f\xad\x3b\x77\x13\x64\xa4\xbb\x12\x48\x0b\x24\x30\xbe\x8d\xbf\x49\xf2\xbe\x1d\x1a\xc6\xf1\x90\xd5\x17\x4c\x67\x13\x79\x12\xb7\xba\x5a\xa9\x06\xba\x1c\x76\x4b\x3c\x4e\xe7\x30\xd2\x81\x77\x12\x63\x9c\x99\x49\x64\x37\xd6\x23\x9b\x41\x6a\x9b\x1b\x81\x2a\x32\x23\x65\x20\xe1\xaa\x68\x69\x52\xb6\xd2\x85\x48\xae\x11\x8d\x9d\xed\xa4\xf1\x64\x32\x6f\x52\x32\x5a\x11\xd4\xd0\x92\x43\x9a\x52\xdc\x8e\x86\xcc\x56\x41\x62\x19\xa7\xae\xad\x35\xb3\x5b\x6b\x01\xb5\x8b\xfa\x5b\x63\x32\xe3\x10\xb4\x91\xfc\x53\x42\xd6\x2f\xc2\x3d\xd2\x3c\x2e\x8d\xc2\x4b\x5f\x9c\xac\xec\xce\x48\xe4\x42\x1f\x38\xc7\xe6\xb4\xf3\xda\x25\x69\xc0\x59\x2b\x87\x9d\xef\xef\x8d\xc1\xf8\x2a\x48\x81\x96\x6a\xf8\xdd\x79\xed\x63\x47\x64\x19\x98\x53\xd5\x37\x41\x84\x50\xf7\x3b\xda\x05\xbf\x99\x0e\x4c\x47\x04\x7a\x08\xc5\x6c\xe6\x85\xff\xe2\xcf\xc4\xf4\x08\x22\x19\x98\x32\xa3\x37\xa8\xb2\xac\x07\x5b\xd1\x69\x51\x88\x50\xbc\xc5\xb6\xd1\xd2\xa8\xff\x74\xb0\xc4\xfb\x3a\x76\xe2\x64\x3b\x1f\xe2\x71\x1d\x44\xbc\x13\x01\x27\x51\x93\x82\x83\x8a\xef\xf8\x7d\x75\x42\x6b\x1f\xf9\x45\xcb\x21\x5b\x19\xd3\x34\x79\xf8\x91\xa1\x06\x8f\xdf\x77\x05\xf2\x66\xf8\xf6\xb2\xb1\x52\x10\x8c\xc9\xe7\x6f\xa8\xb4\x42\x43\xb2\x0f\x7a\x56\xef\x21\x90\xb3\xc4\x1d\x4c\x9f\xbf\xa7\xdc\xec\xb3\xb7\x42\x34\xb4\xf6\xa0\x7b\x1b\xdf\xbd\x99\x26\x0c\x2c\xb0\x96\xde\x4f\x7e\x8f\xd2\x0a\xe8\x41\x54\xb0\x5c\xf6\x37\x60\x6b\xdf\x83\x0c\x6f\xf7\xe6\x82\x57\xcd\x3d\x2b\x7d\xdb\xe8\xbb\xca\x5a\x3e\x1e\x2c\xe3\xcb\xe0\x4e\x65\xad\x0e\xaa\xae\xa4\x4b\x3a\x6b\x91\xc9\x97\xce\xe3\xc9\xad\xb3\xb1\x13\xf6\x8e\x26\xc6\x82\xb6\x52\xf1\x3d\x2e\x51\x81\xc7\x9a\x81\x41\x0c\xaf\x56\x4f\x4b\xd4\x90\x82\x40\xd8\x2a\xab\x8e\x5b\x33\x9a\x24\xeb\x3d\x3f\x47\xcd\x72\x89\x1a\xda\x43\x3d\xd4\x50\x36\x49\x97\x28\xf5\xa1\xb0\x6e\xca\x40\xf4\xb4\xf5\x8e\x5e\x85\x26\x80\x69\xaf\x19\x5c\x16\xf2\xa0\x69\x6a\x7e\xb6\x68\x18\xea\x4f\x8b\xa6\xb8\x07\x83\xa9\x85\x68\xfa\x18\x63\xd2\x6b\x7c\x18\xa0\xb1\x3d\x8c\xa0\xd5\x31\x8e\x53\xe6\x54\xce\x95\x57\x6d\x15\xd8\x3e\x43\xd2\x4c\x6e\xcd\xde\xc8\x7b\xc3\x95\x09\x14\x82\x57\x26\x63\x49\x0a\xe7\xce\x2b\xae\xb0\xa1\x74\xee\x00\x72\xe9\x81\xdc\x94\x51\x1a\xe1\x10\xe6\x5e\x03\x0d\x5f\x79\x24\x79\x91\xec\xf5\xed\x87\x45\x7d\x01\xe0\x94\xc6\xde\x3e\xb0\x3b\x71\xaf\x8e\xb7\x4f\x26\xe1\x0f\x00\xb3\x81\xc1\xad\xbd\xf5\xe5\x0d\x23\x1f\x99\x4e\xe1\xe0\x88\x71\xbf\xbf\x59\x13\x77\xd7\x60\x24\xbe\x42\x34\xe9\xfd\x20\xb4\x88\x7c\x1e\xf1\x06\x5b\xdf\x36\xd0\xad\x70\xa0\x5b\x66\xa0\x8a\xba\xbf\x2d\x51\x93\xda\x0e\x6f\x0d\x87\x3e\x91\x88\x85\x8c\xd6\x3a\xaf\xfe\x2c\xbd\x10\xcd\x58\x06\x45\x26\x12\x9a\xd9\x68\x11\x07\x4f\x0f\xf1\x8a\x44\x6d\x2c\x74\xca\xc6\xf6\xba\x76\x34\x02\x41\x4d\x43\x48\x8d\x9f\x96\xd6\x51\x1c\xfe\x44\xe9\xa3\x81\x88\x1a\xbb\xed\x15\x39\x6b\x52\x53\x0e\x9f\xe8\xc2\x7a\xa3\xff\x53\x20\x60\x87\x5c\x6c\x70\x13\x98\x9b\x98\xc3\x63\xb5\x22\x57\x71\x33\x61\xb2\x0c\x04\xb5\xb7\x4d\xed\x6d\xd5\xe9\xe1\x37\x74\x0a\xf1\x76\x75\x47\x60\xe2\xe9\xad\x3b\x7d\xaf\xaf\x5b\xc6\x9c\xd6\x14\x2d\x4e\xaa\xc3\xcf\xd1\x11\x43\xc6\xfc\xa8\x82\xf4\x40\xc4\x67\x0f\xaa\xa2\xec\x41\x26\x06\x58\x45\x75\x0a\x02\xef\xd8\xa2\x38\xbc\xe0\xb7\xae\x04\xd1\xbd\xea\x1b\xed\xbb\x24\xea\x83\xd9\x0c\xe9\x4e\x8f\x55\x27\xb4\xbf\xf9\xe3\xbb\xa3\xd7\x03\x2d\x74\xe2\xe7\x37\xa8\xdf\xdf\x6c\xf0\xe6\x7f\x9d\x1c\x83\x78\xc0\x8c\xe1\xe4\xbf\xd4\xb8\x86\xe3\xe6\x61\x65\xbd\x58\x9a\xcd\x4d\x77\xbe\x1e\x37\x90\xc0\xbf\xd6\x2a\x85\x5a\x1d\x55\x57\x3a\x9c\x84\xa8\xaf\x2c\xef\xfa\xac\x42\x35\xd8\x54\xf4\x44\x82\xb6\xfb\x0a\x6b\x0f\x18\xaa\x31\x39\x62\xa0\xa0\x58\xad\x56\xeb\xd2\x0b\xb1\x38\x19\xa8\x4b\x2f\xa4\x61\x03\xd9\x25\x75\x5e\xa0\x2c\x7b\xa5\x6a\xf7\x7a\x95\xcf\xd9\xd3\x90\xde\x48\x2d\xcb\x5f\x94\x95\xe4\x43\x2b\x7d\x3b\x49\x1d\xbb\x77\xc2\x78\x7b\x2f\x04\xda\x7f\x40\x58\x10\xe5\xc0\x7e\xd4\x0e\xc3\xc7\x5d\x18\x3e\xf2\x34\xdc\x21\x3a\x28\xfb\xbe\x0e\xe7\x1e\x22\xbd\x57\xa2\xbd\x74\xfe\x07\x2f\xe5\xf8\xa5\xcb\xfd\xd9\x71\xfc\x2b\x62\xf2\xa1\xd4\xa6\xdb\x3f\x43\x06\x50\x8c\x89\xee\x15\x61\x72\x56\x22\x85\xc9\x8f\x69\x17\xeb\x61\xe6\xb7\xf5\x1d\xf1\x04\xe1\x12\xf0\x4b\x49\x6f\x9f\x5d\x2b\x62\x94\x1f\xbf\xae\xc8\xab\x8a\x3c\xab\xc8\x7b\xf2\x89\x3c\xae\x22\x33\x34\xa1\xf8\x92\xa7\x15\x5e\x91\x27\xe4\x23\xf9\xb9\x21\xb2\x21\x67\x25\xb9\x35\x8c\x51\xde\x1b\xad\x4e\x56\xe3\x5e\xf8\x89\x35\x4d\x3b\xe7\xd5\x14\x6e\x26\x8f\x6f\x5e\x08\xd9\xbc\x34\x09\x07\xc7\x28\x35\xe8\x5a\x54\x53\x76\xce\x2b\x36\x0d\x1d\x67\x4f\xdf\x3e\x3b\x78\xf2\xfe\xf4\xe9\xb3\x5f\xdf\x1f\x1d\xbd\x7a\x77\xfa\xcf\x57\x47\x8f\x0f\x5e\x9d\xbe\x38\x3a\xfa\xe9\xf4\x34\xf6\xc9\x68\xe8\xdd\xb5\x75\xde\x2f\x2e\x9f\x72\xa9\x58\x95\x29\x9c\xba\x72\x31\x9f\x8b\xba\x91\xfa\xee\x64\xda\x1b\x8e\xbd\xe3\x45\x33\xe0\xd5\x9f\xac\x6c\x10\xc3\xe3\x83\x32\xa2\x22\x3a\x4f\xae\xa8\x9e\x88\xab\x2b\xde\x40\x0b\x8a\x3a\x82\xcf\x80\x09\xee\xb5\xb7\x43\xad\x9d\xad\x75\xf5\x08\xec\x6d\xbd\xf3\xc5\x6a\x45\x4e\xbf\xda\xb8\x4d\xaa\x5b\x11\x16\x7d\x1a\x3e\x63\x24\xd0\xed\x8a\x30\x72\x2b\xae\x59\x5d\xf3\x29\x7b\x21\xc4\xc7\x77\xde\x2c\xd3\x16\x87\xc6\x35\xac\xb1\x31\xb1\xb4\xf0\xa8\x36\xe5\xe5\x25\x9b\x2e\x66\x26\x4d\xb7\x2e\x2b\xd3\xec\x1e\x6f\xd9\x79\xbe\x36\xf3\x87\x5a\xfb\x70\xd1\x1f\xdf\xc0\x44\xf2\x70\xa2\xf1\xfd\x0b\x31\x5a\x41\x72\x02\x7d\x3c\x07\x1a\x98\x15\x59\x83\x49\x5d\xad\x35\x13\xd5\x88\xce\x4a\xd3\x1a\x85\x7c\x2e\xd4\xb0\x6b\x26\x2f\xe3\x89\x76\x17\x0a\xd1\x38\x38\x99\x1a\x11\x98\x2e\x98\x9d\xb9\x9e\x9c\x3d\xe9\xd0\xed\xba\x01\x7f\xae\xc8\xd9\x42\xb5\xa0\x98\xbf\x7c\x48\xae\x59\x2d\x15\x77\xd1\x1f\xed\x0d\x46\xdb\x83\x51\x9f\xe8\x03\x9d\xd5\x6f\x8a\xf2\x63\x71\xc1\x5e\x17\x57\x2c\xef\x6b\xb6\x7b\x2a\xae\xfa\x2b\x4c\x9a\xc1\xe9\xe9\xbb\x67\x4f\xde\x3e\x7b\x7f\xfa\xf2\xf5\xfb\x67\x6f\x5f\x1f\xbc\x7a\x77\xfa\xf4\xe8\xf4\xf5\xd1\xfb\xd3\x5f\xde\x3d\x3b\x3d\x7a\x7b\xfa\xfb\xd1\x2f\xa7\x1f\x5e\xbe\x7a\x75\xfa\xf8\xd9\xe9\xf3\x97\x6f\x9f\x3d\xa5\xbf\x94\xa4\x31\x4e\x9e\x6f\x44\xdd\x14\x33\xfa\x5c\x95\xa8\x71\x3e\x3d\x3a\x84\xab\x4f\xb2\x2b\x8d\x48\x3a\x0d\xb6\x32\x8a\x98\x5e\xfb\x96\x79\x7b\xd4\xb6\x60\xc2\x9b\x62\x6a\x9b\x83\x75\x36\x9c\x86\x99\x49\xe5\x16\x0f\x1e\xe0\x54\x0e\xb0\xb5\xf7\x80\x1c\x81\xe0\x7f\xf0\x91\xdd\x18\x1f\x0f\x27\xd8\x8b\x10\xaa\xe9\x44\xa8\x66\x70\x3e\x5b\xc8\xcb\x77\x37\x55\xd9\xe6\xf2\xd7\xbb\x74\x8d\x1e\xf8\xd0\x35\x5d\x91\x61\x75\xfc\x9c\xe8\x60\x09\x8e\x14\x88\x8e\x6b\xce\x12\x9f\xc3\x2d\x65\x2b\xbe\x89\x25\x7c\xe9\x98\xae\x86\xf4\x86\x8a\x2b\x24\x4d\x9b\x17\xfc\xbb\x0d\x8e\x4c\x83\x86\x31\x74\xca\xd9\x83\xa6\x0b\x51\x7a\x70\xd5\x4c\x1a\xdf\xf1\x6d\xf7\x7a\xac\xeb\x76\x95\x65\x28\xb9\x26\xd8\x31\x98\x81\xf4\x46\x11\x33\xd9\xd9\x88\x39\x53\x23\x3e\x53\x5d\x98\x86\x66\xfc\xc6\x32\xe4\x0c\xa8\xd2\x54\x93\x33\xa9\x58\x86\xe0\x65\xb4\x2b\x62\x64\xb0\x26\x7a\x9a\x01\xff\x17\x18\xfd\x78\x38\x7a\xa1\xde\x2d\xce\x9a\x9a\xb1\x97\x55\x23\xba\xaf\x9c\x5a\x5e\x68\x20\x5c\x75\x2f\x9f\xdf\xa8\xcb\xa5\xdb\x63\x9d\xbb\x30\x75\xed\x7b\x10\x2d\xbe\xee\xae\x37\x22\x35\x0c\xd5\xd0\x25\xea\xe8\xd2\x8a\xa4\x68\xd5\x5f\x48\xb6\xa1\xb8\xcd\xb2\xe9\x8f\x41\x4d\xa7\x4e\x53\x5a\xa1\xbd\xfb\xf8\x2b\xb5\x5d\x46\x5f\x52\x10\x30\x16\xeb\xe4\x00\xb4\x0b\x7f\xe8\x23\xe7\x13\x62\x1d\x32\x29\x8b\x0b\x30\x87\xab\xd8\xcc\x5e\x4e\x01\x19\xb4\xb7\x09\x59\xd0\x20\x4c\x43\xc8\x95\x95\x38\x3c\xe2\xdd\x9a\x54\xe2\x13\xc2\xe3\x12\xc1\x6e\x22\x36\x60\x8a\x3d\x5e\x35\xec\x24\x6b\xde\x6b\x55\x8b\xba\x57\x63\x52\xaf\x56\x64\x4e\x9f\x16\x8d\x22\x88\xea\xf3\xb8\xbd\x8e\x6c\x62\xbe\xee\xbd\xf9\x8a\xc4\xf7\x36\x3b\xbe\x49\xd0\x4d\x4d\x86\x84\xe1\x1c\x95\x94\x91\xa0\x78\x41\x86\x8a\x23\x14\x09\xba\xce\x68\x34\xc2\x06\xaf\x08\x0f\x07\x51\xce\x58\x51\xdb\xf7\x0a\x27\x8b\xf6\x10\x7b\xa3\x15\x58\x49\xba\x89\x9c\x8b\xba\x64\xcf\xeb\xe2\x8a\xbd\x8d\xc8\x95\xe2\x39\x5c\x74\xd4\x73\xaa\x57\x6b\x30\x67\xb5\xba\x2a\x40\x62\xe9\xa9\x2d\x54\xb3\x26\x97\xf6\x97\x1f\x23\x39\xb3\x65\xe1\xc8\x12\x84\xf0\x8b\x5e\x8a\x4a\x8a\x19\xb3\xb1\x62\xed\xa7\xaa\xaf\xd9\x41\xc5\xaf\xe0\xa2\x0e\x23\x1d\x77\xe1\x8c\xa9\x5f\xb3\xbf\x16\x4c\x36\xf1\x07\x59\x66\x1a\x1f\x30\xd8\x1f\xfd\xf7\x97\x5c\x6e\x9c\xd5\xe2\x93\x64\xf5\xc6\x54\x30\x59\xfd\x57\xb3\x61\x58\xc6\x8d\xce\x26\x06\x1b\x87\xc5\x47\xb6\x21\x17\x35\xdb\x68\x2e\x8b\x66\xe3\x46\x2c\x20\x60\xe8\x46\xb1\x31\x17\xb3\x9b\x73\x3e\x9b\x6d\xf0\x6a\x43\x07\x0a\x35\x4d\xcb\xc1\xc6\x65\xd3\xcc\x65\xfe\x8f\x7f\x9c\x9f\x0d\xae\xd8\x3f\xf4\x49\x6f\xeb\xcb\x3e\x26\x5d\x53\xb9\xfa\xbe\xf1\x76\x81\xe8\x3f\x34\xdc\x55\xa7\x4e\xfe\xbc\xdb\xb1\xe9\x5c\x6d\x05\xfc\xd5\x4d\x73\xae\x77\xcc\x2a\x0c\xc6\x3b\xfd\xd6\x1d\x67\x2a\xde\x3b\xd4\xc9\xfb\x2e\x68\x6f\x44\x6e\x34\x89\xb8\xa6\xf7\x46\xe4\x80\xee\x92\x53\x3a\x1c\x77\x6c\x85\x8d\x94\x3c\x3c\xa2\xa7\x6a\x73\x84\x5b\x80\x7c\xc3\x4e\x61\xf8\x76\xf8\x88\x2d\x97\xa3\xad\xdd\x87\x6c\x92\x2c\x5c\xfc\xd1\x46\x53\x7c\x64\x12\x96\x40\xf2\x86\x5f\xb3\x0d\x5e\x35\x1b\x67\xac\xf9\xc4\x58\xb5\x31\xdc\x28\xaa\xe9\xc6\x68\x6b\x97\x6c\xa8\xcf\x78\x75\xb1\x71\xae\xbe\x54\x7c\x84\xb4\xc1\x6b\x9b\xcb\xa2\x52\x75\x36\xce\xe7\x72\x83\xcb\x8d\x4a\x34\x1b\x8b\xca\xa0\x02\x9b\xf6\x71\x7e\x40\x87\x0f\xd9\x04\xe2\x96\x9c\xcf\x84\xa8\xd1\x88\x6d\xff\x83\xe1\x7c\x57\xdf\x0c\x3f\xe9\x34\x62\x11\x85\x25\x5f\xe8\xa7\x81\x6a\x60\x6b\xac\xff\x8e\x06\xa2\xba\xd2\x55\x68\xe7\xe5\xf7\xc6\x09\x91\x52\x1a\x7b\x4a\xd9\xe6\x01\x70\x4d\x37\x8a\xda\x32\x3c\xf9\x32\x98\x0b\xd9\x98\x1e\x4d\xb8\x24\x14\xac\x94\xbd\xf3\x54\x96\x10\x77\x7c\x40\x2a\x63\x35\xab\xbe\x4b\x49\xeb\x0d\x65\xe4\x62\xb9\x54\x6d\x0e\x49\xc7\xc7\x29\x2d\xad\xf0\xed\x35\xbd\x8c\x98\x13\x86\xd2\x89\x40\x4a\xc4\x94\xc4\x9e\xa1\x6b\x0c\x88\x15\x88\x0b\x8f\x12\x4d\xa2\x16\xbb\x30\x1d\xac\xa4\xc1\x41\xea\x7a\x23\x85\xb9\x37\x7a\xf4\xe8\xd1\x88\x08\xca\x8e\x6b\x90\xc7\xf4\xbc\x2b\x93\xc8\xb2\xe1\xc3\xd7\x3a\xd3\x97\xcf\x9b\x7a\x5c\x9f\xd0\x86\xb0\xe3\xea\x84\x0a\x52\xd1\x3a\xe8\xfd\x7d\x70\x39\xf2\x41\x7b\x18\x65\xc7\xc3\x13\xcb\x1a\x07\xe6\x4f\xc1\x05\xfe\x78\x78\x12\x79\x51\x05\x73\x98\x8b\xb9\x8e\x2c\x57\x99\x44\xa8\xc7\xc3\x13\x6a\x93\xf0\xeb\x59\x0c\x89\xf0\x93\xad\x1f\x8a\xb1\x95\xc8\x6c\xfd\x37\xaa\x37\x47\xf8\xde\x88\x14\x94\x1d\xf3\x13\x22\x29\xdf\x1c\x91\x92\xb2\x63\x19\x77\x58\x64\xd9\xf0\xd1\x6b\x54\x90\x0a\x63\x57\x58\xea\xc2\x92\x14\x78\x82\x60\xe2\x25\x51\x5f\x42\xf2\x20\x89\x73\x5d\x56\x10\xd5\x34\x94\x71\xef\x77\x13\xc0\xd1\x35\x53\xa5\x70\x0c\x9b\x73\x59\xa0\x37\x9a\xee\x6c\x11\xaf\x13\x77\x72\x51\x37\x2f\xab\x29\xfb\x7c\xaf\xf1\xcf\x61\x7c\x8d\x6a\x02\xa6\x26\xd3\x7b\xcd\x80\x4f\x81\x22\xbd\xa2\xc7\x27\xe4\x99\xfa\xef\x1d\x1d\x91\x27\x9a\x34\x7d\xa4\xdb\xe4\x2f\x08\xa6\x06\x39\x9e\x69\x6f\xe4\x4d\x62\x1f\xa3\x20\x56\x6d\x43\xdf\xa3\x67\xce\x20\xbf\x89\x92\xed\x7a\x4d\x23\xfe\xac\x2a\x79\x28\x34\x3a\xa2\x11\x68\xec\x28\xb3\x71\xe6\x54\x25\x12\x8c\xbb\xe5\xa8\x4e\x8e\xd0\x2b\xc5\x55\xe8\x4e\x43\xd5\xa1\xb9\x0a\x3c\x85\x24\x9b\x88\x61\xd2\xfb\x80\x3d\x2d\x78\x8f\x5e\x61\xfc\x41\xed\xbd\x1a\xfd\x16\x65\x59\x8b\x06\x9f\x65\x02\xbd\x21\xc1\xd8\xee\xb1\xb0\x93\xdf\xf4\xc6\xd4\x10\xc9\x32\xdd\xd9\xff\x8f\xbd\x37\xe1\x6a\x5b\xd7\x16\xc7\xbf\x8a\x9a\xff\x5d\x5c\xfb\xe2\xb8\xb2\x33\x00\xe1\xf8\xf0\x0b\x43\x0b\x85\x00\x2d\xa1\x70\x1e\x97\xc7\x53\x1c\x25\x98\x24\x72\xf0\xc0\x90\x3a\xdf\xfd\xbf\x34\xd8\x96\x13\x87\x86\x16\x28\x3d\x87\xe5\x16\x2b\xb6\x26\x6b\xd8\xf3\xde\x72\x14\x55\xa5\x23\x05\xc5\xf1\x81\xbd\xd5\x38\x58\xce\xba\x42\x54\x6d\x83\xb5\x1d\xb7\xb0\xb1\xb0\xa0\xbc\x53\x36\x26\xbe\xea\x4f\xa2\x46\x11\x5e\x58\x78\x87\x14\x55\x5d\x8d\xb5\x49\x1b\xc9\xe0\x65\x8c\xeb\xbf\xa5\xcf\xe3\x99\xda\xd0\x87\xc2\x2a\x86\x99\x11\x08\x15\xbb\x3f\xd5\xce\x1f\x16\x51\x57\xa7\x69\xce\x5c\x7d\x8b\xbd\x26\xb5\x63\xd7\x36\x2c\x3e\x88\x0b\x0b\x77\xca\x9e\xaa\xad\x2b\xb1\x1b\x2b\xfd\xb9\xca\x3f\x52\xb2\xde\xdf\x50\xb9\x52\x3c\x8e\x07\xc0\x7d\x2e\xe4\xb1\x0e\xf9\x58\x87\xd2\x58\x13\x55\xeb\x53\xd0\x29\x16\x6b\x3f\x61\x5b\x93\x25\xe9\xb1\x25\x29\xcd\xc8\x15\x9d\xf6\x09\x3b\xc6\xd8\x97\xa8\x68\xc4\x07\x73\xc5\xae\x93\x15\x38\xe1\x2a\x26\xc5\xc6\xcf\xba\x3e\x19\xb8\xbc\x3a\xa1\xb8\xae\xe0\x12\x47\xe0\x5f\x2c\x5f\x46\xfa\x3b\xed\x3e\x4e\x8c\x92\x2a\x32\x36\xde\x19\x0c\x70\xdb\xa1\x9c\x5d\xfc\xda\x90\x5f\xef\xb9\xb7\xc9\x8b\xb2\xfc\x62\x9f\x92\xaf\xfd\xe4\x5d\x49\x7e\x77\xe8\xb9\x1d\xa7\x9f\x78\xb7\x4b\x6f\x8e\x7d\xec\xad\xf7\x5d\xbb\xc7\x2c\x81\x45\x59\x33\xc3\x66\x32\x22\x6c\x63\xea\xc4\x5f\xcc\xce\xda\x96\xd7\x54\x86\xa8\x88\x43\x93\x6f\xdd\x61\x3b\xa4\x05\x64\x6c\x73\x12\x45\xd7\x51\xa4\x24\x5b\x2b\xcb\x66\xa6\xe2\xa9\x43\x79\x81\xe6\x10\x3a\xbd\xc9\x72\x1f\x98\xde\x52\xb6\x05\x9b\x2e\xc4\x16\x9d\x5c\x8e\xe0\xbb\xac\xb2\x45\x2c\x8d\x5e\xb2\x34\xc4\x8a\x10\xb6\x26\x1c\x04\x94\x26\x8f\x5a\xb2\x7a\x63\x0e\x4e\x7b\xab\x3d\x2b\xc8\xca\xb5\x53\x61\x4a\xcf\x22\xe3\x4c\xeb\x43\x14\xfa\xf9\xa3\x34\xc1\x7b\x33\xda\xfd\x10\x39\x24\xb0\xbe\x64\xde\x84\xe4\xc4\x09\x2e\x93\xd9\xcb\xf2\x56\x53\xcb\x3c\xfb\x2d\x62\x01\x8b\x05\x9e\xfd\x22\x6c\x95\xa4\x2f\xc2\xf2\x17\x05\x0f\x7d\x51\x2c\x87\xcc\x59\x33\x1a\xd1\x50\x0c\xa9\xa6\x08\xac\x5c\x12\x1c\x25\xc6\x1b\x28\x66\x97\x91\xde\xc6\x7d\x74\xbf\x6a\x5b\x05\x12\x0e\x5a\xd8\x93\x01\x10\x25\x33\xec\x35\x7f\xd1\xae\xf9\x1a\xca\xc9\x80\x62\xab\xc3\xb5\x24\x55\xa3\xf0\x80\xc3\x25\x64\xd1\xb4\x66\x5b\x7e\x6a\x6f\xf7\xcd\x69\xd7\x8e\x16\x17\xb5\x78\xad\xd7\x88\x96\x01\x9c\x35\xac\x25\xd0\xa8\x66\x6b\x13\x86\xe1\xc8\xb2\x17\x91\x96\xe0\xa6\x5a\xd1\x18\x6b\xf6\x9f\xfe\x9a\x22\x21\x5d\xcb\xd6\x0e\x94\x2d\x0d\x27\xfe\xa7\x1c\x66\xb2\x23\x7f\x95\x2d\x95\xe2\x8c\x35\x47\x51\x6b\x9b\x74\xbf\x50\xf8\x67\x17\x7d\x55\xa5\x24\x83\x54\x07\x62\x58\x0e\xab\xda\xd4\xe6\x52\x35\x9c\x9d\x9f\x4b\x37\xec\xb7\xff\x72\x70\xbf\x9d\xa3\x3b\x9d\x9c\x15\x8a\x16\x85\xe8\x90\xe1\xa4\x98\x9c\xe0\x78\x29\xc5\x50\x24\x8d\x43\x13\xc7\x3d\xb6\x93\x53\x57\x48\x06\x71\xe7\x1c\xae\x3b\x89\x74\xa2\x08\x29\xd9\x5d\x7a\xeb\xa1\x61\x2e\x14\xe2\xdb\xb1\x17\x77\x6c\xe2\x8b\xf2\xb6\xa3\x8e\x86\xc3\xfe\x3d\x3b\x75\x5c\x4b\x44\x5e\x13\x0b\x7a\x3c\x8f\x2c\xc8\x22\x4a\x75\x45\x4d\x49\x1c\x97\xee\xda\xe4\x97\x43\x7f\x39\xba\x87\x7d\x1c\x9c\x20\x8f\x24\xb6\xb4\xae\x96\xca\x9d\xa4\xee\x4a\x82\x1f\x2e\xd6\x62\x92\x26\x46\xa0\xa0\x77\x96\xe5\xc5\x1b\x87\xb2\x39\x5c\x1c\x56\xa0\x03\x42\xd9\xa9\x43\xcf\x1d\xb2\x33\xa9\xc0\x0d\xea\x3b\x6d\x14\xb8\x9e\x0f\xda\x8e\x87\xed\xa0\x7f\x1f\x73\x53\x09\x2f\x05\x5a\xf7\xec\xa0\x90\xff\x1b\x7a\xee\xb0\x48\x37\x86\xff\x7f\x60\xc8\x05\xf7\x3a\x38\xf6\x71\x5a\x9f\x6e\x5f\x62\xbb\x97\xfc\x54\x54\x10\xb8\x80\xce\x2b\xad\x60\xa0\x83\x2f\x18\xb5\xc1\xc0\xf5\x30\x40\x01\xe3\xb1\x13\x16\x3b\xf4\x71\x91\x15\x2e\xa6\xad\x14\x62\x81\xb8\xaf\x73\xdd\xef\x0e\xb9\x41\x9e\x83\x48\x00\xbe\x3a\x6e\x9f\xcd\x7e\x41\xf3\xe5\xb3\xc8\xa4\x13\xed\xc7\xdc\xed\xe6\x3a\x74\x3c\xdc\xb6\xb0\x58\x94\xdf\x90\xe7\xa1\xfb\x1a\xd6\x5a\xae\x4b\xf7\x22\x2d\x5a\xc3\x1a\xdf\xf8\x35\xac\x71\x88\xc2\x36\xa9\xe7\x90\x2e\x4d\xdc\x0f\x5a\x2c\x2b\x22\xb4\x1c\x2b\x7f\xd0\xa9\x05\x5a\x62\x0c\xa7\x49\x96\xea\x35\xac\x39\x42\x0d\xc2\x32\x11\xb7\x8d\x93\x6a\xd9\x13\x97\xe0\xf4\xce\x8a\x04\x9a\x7f\x89\xd8\x1d\xdf\x21\x3b\xa8\x05\x5a\x76\x18\x6b\x8e\x36\xb5\x2a\x6a\xee\x38\xd9\x5b\x7a\x92\xd3\x22\x94\x41\x9c\x57\x88\x59\x10\xfa\x15\xa1\x55\x39\xac\x1f\x1d\x5d\x34\xb7\x77\x8e\x72\x75\x2b\xdf\x93\x8d\x06\xfa\xc5\x05\xf6\x1b\x2e\x05\xe5\x29\xa1\x4a\x14\xa8\x6a\xae\xa5\x20\xc5\x53\x35\xa4\x10\xc5\xa0\x00\xc6\xb1\x68\x72\xc9\x50\xd5\x55\x96\x30\x55\x69\x57\x20\x89\x93\xc3\x0b\x0b\x58\xaa\x77\x0d\xd7\xbe\x25\xe8\x46\x9a\xf6\xf4\x30\xdb\x77\x0a\x06\xf1\xf8\xbb\x1d\x90\x68\x03\xe8\x26\xa0\x23\x94\x6c\x04\x42\x97\x38\x5b\x99\x08\xd8\x7d\xe4\xfb\x00\xf9\x00\x25\xe0\xa0\x20\x9f\x29\x92\xd6\x8e\xa5\xea\xbe\xe0\x0e\xf6\x30\xb1\xe3\x3a\x29\x7c\x00\x97\x88\x89\xa4\x5a\x18\x13\xe0\x10\x27\x70\x50\xdf\xf1\x71\x1b\x14\xe9\x76\xc2\x9e\xa2\x66\x72\xd0\xf6\x71\xbb\x90\xa8\x10\x82\x28\x8a\x51\x5a\x2a\x05\x0b\x64\xa9\x92\xf4\x78\x0d\xd7\x24\xbb\xed\x7e\xd2\xc9\xdc\xcc\x09\x98\x0d\xf2\x07\xe4\x88\xf6\x0e\xe0\xbb\xa1\x87\x7d\x9f\xc5\x07\x0c\xfd\x00\x60\x27\xb8\xc4\x1e\x68\x61\xc6\x0e\x02\xd7\x93\x46\x48\x63\x40\xa2\xb0\x18\xb7\xa0\xae\x4a\x5e\x6f\x96\x50\x5b\x71\xa5\x83\x12\x2c\x2c\x04\xe9\x4b\xed\x9b\xed\x12\x3f\xf0\x42\x3b\x70\xbd\xda\x37\x66\xfd\x40\x37\x11\x09\x07\xd8\xa3\xc0\xbb\xf6\xce\xd0\x6e\x3d\x27\xe0\x69\xa8\xd9\x2e\xe9\x38\xdd\x50\xbc\x83\xe3\xb1\xaa\x05\x0b\x0b\x8a\x68\xc3\xc7\xc1\x61\x5c\xf5\x41\x67\x2d\xf7\x29\x1b\x9c\x1a\x5d\x4a\xac\x17\x17\x17\x19\x8b\xcd\x30\xc5\x0b\x67\xe7\xb1\x55\x95\x4b\x32\x7a\xd7\x80\xcb\x31\xb0\x3a\xd6\xdc\x4e\x27\xfb\xca\x0a\xf4\x8e\xd3\x0f\xb0\x97\x8d\x43\x13\x13\x3f\xef\x2c\x0b\x33\xcb\xa0\x2e\x0e\x6a\xd3\x04\x26\x1e\x6b\xbe\xfc\x82\xa9\x43\xb8\xeb\xc7\xb4\x0d\x85\x54\x2d\x8f\x56\xa8\xaa\xe3\xf1\x38\x89\x6f\x93\x67\x3b\xa1\x21\x6d\x68\x15\x2e\x84\x02\x88\xdb\xdc\x15\x85\xe9\x6f\xb1\xb0\xa8\x40\xcd\x89\x8b\xab\x8a\xba\x58\xb8\xb8\x28\x68\x9d\x0c\xca\x4c\x06\x2a\xc6\x92\x81\xe6\xad\xfa\x1c\x21\x12\x55\x3a\x95\x79\x52\x71\xa4\x39\x56\x9d\x82\x4b\xc5\x55\x35\x64\xc1\x55\xf4\x87\xbb\x8a\x16\x17\x55\xe7\x0c\x9d\x4b\xaa\x24\x74\x9e\xc4\x21\xb2\x3c\xcb\xe6\x15\x73\x6e\x41\xe0\x5e\xac\x9d\xd1\x87\xe7\xba\xed\x12\x1b\x05\x8a\x43\xa1\x88\xa7\xe3\x81\x13\x04\xd8\xb3\x42\xc5\xa3\xcb\x2b\x0e\x8a\xa6\x6a\xb6\xe2\x51\x0e\x3e\x66\xf2\x98\x45\x81\x46\x24\x63\x30\xca\x34\x48\x46\xda\x53\x84\xcd\x6a\xe2\xff\xf3\x6d\xac\x9e\x0d\xcf\x85\x0f\x29\x6f\x8f\x12\x48\x72\x65\x49\x20\xc3\x13\xa7\xdf\xff\x82\x6d\xec\xdc\x70\xf3\x83\x49\x1d\x22\x77\x58\x49\x3b\xca\x6c\x49\x79\x97\x63\x55\xcd\x44\x0e\xe6\x6c\x11\x47\x7a\x13\xd1\x6c\x15\xc5\xb1\x88\x6a\x59\x96\x82\x2c\x4f\x5d\x83\xef\xd8\x39\xcb\xc6\x7b\xc7\xb2\x2c\xe3\x3d\xaa\x39\x3c\x58\x08\x62\x44\xf0\x9a\xcb\x4f\x9e\xcd\x63\xbf\x83\xb5\x80\xad\xb6\xa9\xf3\x56\xdd\x88\x85\x02\x94\xbf\x99\x1d\xaa\x96\x74\x45\xe5\x47\xf7\x39\x1a\xca\x8e\xc4\xa4\x6e\x36\x5d\xad\xe9\x77\xc5\xc6\x88\x63\x8d\x8c\x15\x4f\x4f\x7d\x62\x57\x3b\xd3\x87\x66\x5a\x8a\x42\xe2\x29\x70\xe3\x65\xaa\x73\x18\x29\xa1\x77\xba\x0c\xf9\xa1\x80\xf2\x4e\x99\x5a\xb7\xf8\xb9\xd6\x2d\x4e\xd7\x6d\x20\xaf\xdb\x20\x7f\xdd\x32\x15\xbd\x25\x20\x1f\x8b\x1d\xc6\x8c\x89\x29\x09\xeb\xe9\x2e\xe1\x0a\xdc\x89\xbd\xcc\x26\x46\x81\x91\x97\x09\x11\xa1\x2e\x04\xea\xc2\x82\x27\x22\x59\x07\x58\xc9\xab\x54\x1d\xb3\x0d\x81\x33\x1b\x22\x50\x7f\x60\x0d\xc7\xe6\x0f\x72\x17\x56\xd9\xdc\xca\x4f\x52\x8f\x80\x20\x89\x58\x14\xac\xa5\x8b\xac\x16\xcc\xd8\x3f\x9b\x4e\xbb\x31\x69\xa3\x29\x3b\x74\x9d\x0d\xcf\xc5\xaa\x4c\x1f\xe8\x74\xae\x59\x0f\xc4\xb8\xa9\xab\x92\x59\x27\x5f\x72\xf3\x76\x37\x0d\xb0\x84\xe5\xee\x3e\xb4\xdd\x8f\xa7\xad\x4a\xbf\xdf\xe3\x4e\x67\xa2\xcb\xe3\x49\xe0\xc4\x63\xad\xcc\xd8\x47\x69\x55\x6b\x93\x55\x77\x71\xa0\xa8\x93\x1d\x9e\xb5\x2b\x95\xcc\x20\x25\xbe\xb8\x6c\xe9\xeb\x8e\xcf\xb7\x00\x56\xd7\xf0\x19\x3c\xaf\x61\x55\x49\xe3\x0b\x08\xa0\xc5\x47\x7a\x7a\x23\x27\x4a\x29\x3b\xbb\x95\xd1\xac\xad\xac\x21\x55\xfb\x76\xc8\x0f\x20\xf4\x6a\x1d\x6d\xc3\x25\x3e\xa5\x06\x6a\xed\xf1\x58\xe2\x7e\x12\x3c\xf7\x1d\x5a\x34\x83\x2f\x39\x60\x2d\x5c\x5c\x74\xfb\x6e\x0b\xf5\x2f\x42\xe2\x5c\x87\xf8\xc2\x69\x5f\x5c\xc8\xc4\x70\xce\x58\x9f\x91\x73\x4b\xa1\x7f\xa3\x08\xaa\x8b\xc6\x78\xac\x72\xdb\x6f\x0e\x40\x14\x63\x45\x9d\xcb\x04\x20\x23\xa4\x91\x5a\xf4\xa6\x0b\x4f\xe4\xc7\x39\xd5\x05\x31\x6d\x95\xd2\x53\xc4\x62\xd6\xf5\x07\xb7\x84\xee\x58\xec\x05\xf7\x9a\x97\x0b\xf0\x8f\x18\x2b\xb3\xc6\x6f\xb5\x6f\x63\xcd\xb5\x3c\xdd\x09\xb0\x47\x39\xc0\x28\x2a\xfc\xbf\xff\x17\xff\x28\xb0\xd3\xde\x90\x7f\x4f\xec\x1d\xf9\x7d\xe6\x49\x41\x43\x96\xa7\x07\xee\x11\x63\x95\x9a\xa8\xcb\xb2\x48\xbf\x0b\xab\x59\x12\x3d\xe3\x1a\x96\xa1\x09\x65\xa2\x3d\x5c\x0b\x6a\xa1\xe6\x4c\xd0\x90\xae\x14\x53\x41\x43\x8c\xab\xbd\x50\xbc\x28\x3a\x3b\x4f\xd6\x1b\x33\xf1\xbf\x71\x7b\xd3\xd6\x46\x7c\x5c\x0b\xc9\x01\x9b\xfc\xc8\x86\x29\x19\x00\x73\x85\xa7\x24\x34\xe6\x02\x36\xee\xd6\xee\x49\x24\xb3\x20\x97\x3f\x62\xc2\x87\x80\x32\xcb\xa8\xef\x61\xd4\xbe\x07\x5e\x48\x28\x7b\x56\xe0\xa2\x29\x0a\x25\xfa\x38\xe0\xb6\x1e\xdc\xc0\xa5\xc0\xea\x29\xb0\xa0\x69\xbc\x4a\x27\xee\xc2\x48\x51\xc7\xcc\xfe\x59\x1f\xe0\xe0\xd2\x6d\x5b\xae\x46\x74\xe4\x75\x2d\x27\x56\x98\x21\x8b\x07\xec\xed\x8a\x73\x5a\x12\xc1\xd8\x3d\xd3\x1c\xd1\x47\x7e\x12\xf2\xa6\xaf\xc6\x02\xd5\xb8\x01\x9f\x1d\x51\x5b\x20\xf8\x2e\xe0\x16\xda\xbc\x1d\x95\xe8\x3e\x73\xec\xd5\x2f\xc4\x1d\x79\xdd\xd4\xb7\x3f\xe9\x70\x92\x9f\x9f\x06\x95\x1d\x47\x69\x8c\x3c\x4b\xfa\x70\xfe\x09\xab\x44\x6f\x0b\x8b\xc9\xad\x3b\x1b\x0f\x39\x91\x4b\xdf\x70\x29\x5a\x81\xf7\x50\x6e\x65\x61\x81\xe8\xa8\xe5\x85\xc3\x40\x89\xdf\xf2\xba\xd4\x55\xcf\x92\x26\x47\x9c\xe6\x14\xbb\x54\xb0\x71\x27\x4c\xb0\x4d\x6b\x0b\xb9\xe7\x1e\x0b\xfa\x4a\x07\xcf\x25\x78\x4d\xea\x5d\x2d\xfd\x0c\x26\xdc\x2a\x68\x21\x1b\xf1\x9c\xd1\x13\x48\x95\xbd\xd7\x68\x3d\x35\x5e\xdd\x78\x9c\x8e\x50\x28\x6c\xde\x95\xc9\x21\x10\x13\x2a\x72\x8a\x69\x0d\xf9\xf7\x8f\xc7\x42\xc8\x29\x7b\xc4\xa5\x5e\xd8\x89\x10\xea\x1b\xad\xbb\x16\x7f\x9b\x86\xbc\x6e\x0d\x0b\x58\x94\x0d\x72\x9e\xc9\x2e\x5a\xa4\xb9\xbd\xf1\x78\x8c\xf5\x5b\x0f\x0d\xc5\x49\xa9\x7d\xeb\xdb\x78\x55\xe2\x80\x64\x49\xd4\x30\xf3\xab\x43\x7f\x71\xe2\xea\xdb\x78\xb5\x7d\xe6\x9e\xcf\xc0\x4b\x5c\xaf\x7e\x19\xef\xdb\x6e\x86\x03\xd3\x5a\xd6\xe5\xc2\xc2\xa5\x72\xa9\xdc\x2a\x67\xe7\xaa\xaa\xae\xb6\x16\x16\x5a\x5c\x1f\xc6\x45\x7f\x4a\x4b\x73\x55\x76\x82\x54\x8b\x23\x96\x81\xd5\x91\x38\xca\x70\x26\x77\xd9\x96\x84\x07\x0d\x0a\x33\xcf\xf8\x32\xd7\xe2\x01\x88\xd7\xd0\x79\x3e\x43\x85\xcf\x82\x73\x2b\xcf\xc6\x56\xf8\x85\x50\x88\xc2\x8c\xd6\xc7\x63\xd9\xdd\xab\x9b\xf2\x58\xde\xaa\x9c\xd7\xca\xc2\x13\x49\xb0\x91\x89\x25\x13\x48\xbd\xf0\x34\xa4\x7e\x4b\xac\xcb\x81\xa7\x08\xab\xb1\x24\xf0\x98\x82\xcf\xdc\x73\x0d\x6b\x0e\x5f\xe4\xfc\xc3\xd8\x59\x67\x7c\x8d\x27\xc7\x9a\x79\x5d\x6d\x68\x85\x22\xd6\x9b\x68\x6d\x98\x77\xa4\xf8\x30\x19\xf7\xa1\x56\xb8\xb8\x40\xb7\xc8\x09\x0a\xea\x1a\x8b\x30\xe2\xf6\x6f\xb0\x32\xd4\xc5\x53\x75\x32\xc6\x2a\x1d\x22\x01\x4a\x34\xcc\xba\x99\x09\x9f\xca\x5f\x8b\xb1\x8f\xdf\xab\x35\xa9\xe6\xbc\x1a\x45\x9f\x2d\xac\x21\x25\x9c\xae\x50\xc4\x8f\x9a\xae\x77\xec\x2b\x7d\xbe\x99\xd8\xa0\xd1\x91\x94\xbc\xaf\x3c\xcb\x5b\xf3\x78\x6b\x48\x43\x6a\x0d\x29\xb2\xae\xf5\x3e\xab\xd6\x8e\x91\xdf\x59\x20\x36\xed\x79\xc6\xa6\x97\x88\x20\xc4\x31\x14\xe6\xda\xb1\x14\x02\x04\x32\x8c\x4c\x6b\x13\x3e\xbf\xcc\x27\x36\x86\x05\x31\x50\x0b\x18\x30\x10\xb6\xf4\xbc\x37\x79\x15\xc6\xf6\xc7\xfd\xd5\x60\x12\x9c\xf0\x1a\x26\xa4\x39\xcd\x4b\x0c\xe2\xe6\x99\x99\x14\x93\xd5\xa4\x07\x3c\xff\x9b\x15\xfe\x37\xe0\x75\x15\x52\xbe\x60\xcc\x11\x25\x3b\x16\x20\xf9\x00\xde\x86\xbc\xf0\x28\xc0\xe7\x0b\x2f\x31\x21\xca\xed\x96\xc7\xd6\xe3\xe4\x88\xf5\xc5\xd1\x90\xec\x6d\xbc\x46\xdd\x35\x97\x43\x68\x25\x38\xa3\x14\xab\x1f\xf6\x83\x7d\x34\xc0\xe7\x71\xe0\x42\x8d\x9f\x7f\x28\xdc\xe7\xf7\x5c\x3b\xd9\xd6\xef\xd2\x91\xca\x0c\x32\x5f\xa0\xf2\x10\xab\xd3\x7d\x51\x6b\x6e\x4d\x99\x6f\x54\x93\x11\xe5\xbd\x8b\xe5\xe4\x88\x00\xb1\xb9\xf2\xaa\x97\x62\xf2\xa7\x0c\x14\x85\xec\x7b\xae\x5d\xa3\x84\xf5\x78\xd5\x00\x0e\x93\x74\x32\x9f\xe9\xc0\xbe\xdc\x73\x6d\x0b\x9f\x19\xe7\xaa\x66\xa6\x6f\x84\xb6\x81\xbf\x33\xcf\x69\x0f\x3b\x01\xf6\xf8\xef\xd2\xb9\xf0\x93\x0d\xbc\xfb\x2d\x12\x78\x0e\xf6\x63\xb3\x9b\xb4\xfd\xba\xcc\xc0\x09\x0c\xe5\xb8\x24\x8a\xbe\x8d\x57\x45\x70\x95\x04\xc1\xf0\x93\x01\x00\x1b\x06\x4d\xce\x2d\x87\x8a\xb8\x60\xc2\xaf\x6c\xb3\xd6\x59\xfc\x6d\x05\xe6\xd7\x39\x3e\x97\x5c\x81\x6e\x58\x27\xd5\x38\xd6\x98\x8f\x03\xe5\x9d\x1c\x9f\xe1\x56\x88\x49\x24\xdb\x1c\x97\x6d\xc1\xf4\x70\xe0\xd8\xf9\x72\x96\x9b\x2c\x5f\x1d\xa9\xbd\xbe\xd3\x51\xde\x39\xfe\x3e\xda\x57\xd2\x63\xb6\x04\x35\x58\x34\x24\x9b\x26\xa6\x39\x60\xf6\x49\x8b\x8b\xde\x1f\x89\x41\x0f\xb3\xee\x10\x6d\x6a\x9e\x74\xa8\xae\x80\x55\x67\x1e\x9d\x09\xba\x6e\xd9\xd9\x03\xab\x13\xef\xc5\xc6\x8e\x73\x40\x2d\x18\xa7\xb4\x2a\x5b\xcd\x4e\x6c\x79\xf3\x8d\xfe\xac\x8d\x24\xe0\x34\x4a\xd0\x85\x20\x3f\x44\x6d\x8c\xfe\x78\x07\x13\x93\x9d\xa1\x84\x18\x07\xba\x24\x5a\xb5\x3a\x5a\x27\xf3\x7b\xa8\x75\xce\xd0\xb9\x35\xd4\xc5\xe1\xed\xfb\x4c\xa9\x92\xd0\xb2\x1f\xe2\xe1\xa4\x7b\xdf\x9f\x7a\x9c\x23\x08\xc8\x9d\x81\x85\x05\x2c\xb7\x9a\x98\xc7\x07\xe2\xc4\xb8\x61\x14\xe5\xb4\xc9\x0e\xa0\x90\x3b\x16\x45\x01\xd3\xfa\x50\x1e\x0b\xeb\x03\xe4\xf5\xf2\x70\xf4\xe3\x64\xc0\x1d\xa6\x04\x4d\x85\xc0\x1d\x0d\xb1\x1d\x16\x45\x0a\xa6\x23\x93\xd3\x2f\x55\xd5\x66\xcb\xb5\x07\x4c\x57\x8a\x75\xc4\x08\xab\xe9\xee\x7d\x13\x18\xb4\x86\xc7\x63\xad\xa1\x74\x65\x16\x46\xfa\x71\xe6\xcc\x24\xa9\x34\xac\xd7\x65\x96\xcb\xa2\xdb\x91\x31\x61\x92\xa4\x4b\x0a\xe3\x15\xe3\x2a\x67\x61\x41\x71\xac\x43\xcf\x1d\x38\xbe\xe0\xd3\x39\xcf\xd4\x55\xfc\xb8\x80\x4a\xa9\x89\x44\xc9\x99\x33\xe3\x0a\x51\xd7\x50\x0d\xb1\x95\xaa\xe4\x52\x01\x71\x61\x06\xb9\x85\x54\x20\x29\xc0\x64\xde\x0d\x3a\x48\x83\xec\xe0\x16\xb4\xc1\x03\x54\xa4\x36\x48\x58\xca\xe9\x2c\x85\x33\x0e\x6b\x41\x52\xd9\x79\x61\xcc\xe3\x27\xe5\x49\xaa\xc4\xa9\x6a\x0c\xc1\xb3\x99\x56\x85\x1c\x3f\xf5\x20\xa7\x64\xc9\x0d\xf6\x7c\xac\xa8\x5a\x46\x60\xc8\xa0\x41\x90\x40\x82\xe4\x54\x93\xc4\x28\xd0\xe3\x35\x26\x5a\x38\xbe\xe7\x3d\x8d\x24\x00\x21\x39\x27\x88\x24\x10\x80\x30\x81\x06\xcb\xea\x5b\xb7\xda\x85\xb4\xb6\x32\x6a\x91\x0b\xae\xf2\xab\xe5\x4b\x90\xf1\x4d\x1c\x2b\x89\x41\x11\x91\x66\x1c\x1c\xa7\x44\x59\x32\x06\x3f\x2c\x70\x63\x0c\xa3\x78\x14\x47\x19\x49\x89\x10\x8d\x19\xa4\xc9\x62\x23\xa6\xa4\xc9\x24\x72\x89\x21\x7a\x5d\xd5\xde\xe1\xc4\x6b\x3f\xa0\x03\xc2\x40\x7c\x81\x53\x9a\xba\x7d\x89\xbc\x7a\xa0\x40\x35\x21\x36\xb9\x8c\x54\x5d\x58\x10\x60\x79\x31\xd0\xfd\xbe\x63\x63\xc5\x50\x59\xd8\x90\x4b\xc7\xa7\xe4\x78\xec\xbd\xaf\xf9\x81\x3b\xac\x4d\x0a\xd7\xc4\x60\xca\x82\xbe\xb4\x73\x67\xf0\x5c\x42\x58\x59\xaa\x85\x47\x80\x13\xbc\x2a\x96\xe9\x0f\x8e\x93\x6e\x50\x7f\xac\x4d\x71\xab\xb9\x93\x40\xfb\x10\x57\x24\x04\x33\xf4\xf9\xaa\x44\xc4\xcb\xd1\x23\x91\xc0\xb0\x31\x4f\xc6\x46\x37\x21\x6a\x88\xe6\x7d\x97\x74\x79\xf7\xce\x1b\xa7\x22\xeb\xc9\x19\xe1\xcb\xb4\x68\xac\xba\x7f\x5a\x70\xb5\x58\x4c\x3c\x83\x27\x47\xc7\x3d\x67\xc1\x10\x26\x46\x88\x21\x6b\x0a\x37\x74\x8e\xbe\xd5\x94\xe0\xc6\xa4\xcd\x45\x1a\xf1\xbb\x3f\xac\x64\x15\x26\x36\x06\x7c\x72\x1d\xad\x10\x53\x30\x05\xe6\x5d\x92\x3c\x4e\xc9\x17\x5e\x97\xbf\xb0\x60\x67\x17\xf4\x1f\x4e\x42\xfd\xa4\x8d\xa7\xcf\xb4\x77\x90\x15\x94\xf3\xa7\x95\xca\x25\xa4\xa7\xe3\x58\x90\xe1\x3f\xba\xad\x24\x6a\xc6\x3b\x7b\x5a\xfc\x13\x78\xf7\x80\xc9\x41\x07\x98\x04\xe0\xd6\x09\x2e\xdd\x30\x00\xac\x38\x70\x3d\x20\x7a\x50\xf8\x81\x0e\x8f\xc7\x63\x8d\x4b\x3e\x6a\x59\xf1\x7f\x6a\x71\x3c\x73\xe6\x3d\x3e\xf3\xa9\x84\x6d\x62\xe6\xb9\x91\xb5\x3b\x3d\x8b\xc9\xe6\x74\xb3\x13\x25\x24\xd7\xac\xf3\xae\xdc\x4d\xb1\xb4\xdc\xf8\x40\x2d\x8a\x6d\x0a\x2c\x5d\xe0\x52\xf4\x42\x2c\x40\x61\xbf\xd5\x85\x05\x69\xed\x2c\x2c\x04\x7f\x58\xf2\x57\x33\x54\xc5\x0c\xd4\x05\x9e\x72\xd6\xe4\xf5\x59\xfb\x96\x10\x4d\x62\x13\x61\xb1\x7d\x02\xcd\x59\x53\x66\x41\x2f\x4e\x5e\x49\xcd\x50\x5a\x5f\x88\xcb\xb9\x74\x46\x41\xea\x58\x8b\x7f\x4c\x0c\xf7\x7c\x50\x43\xfa\x66\x96\x65\xf2\xc3\x79\x08\xeb\xb4\x3b\xac\x6c\x4d\x12\x78\x89\x1c\x4a\x02\x7d\xac\x04\xf2\x62\xce\x3b\xc9\x5f\x97\x70\x8d\x49\x85\x7c\x73\xd6\x24\xa1\x17\x16\x62\xa8\x40\x00\x53\x9e\x2f\x50\x35\xee\x27\xec\xf8\x97\x19\x68\x96\x1a\x58\xcf\x5c\x56\x01\x5f\x56\x41\x46\x45\x29\x2d\x2b\x1e\x4b\x81\xc8\x1c\x8a\xe4\x50\x9b\x1d\x71\x22\xcd\xab\x46\x12\x16\x46\xd5\xea\x0a\xa1\x5d\x1c\x6b\x6c\x13\x3d\x57\x17\xf9\x1a\xb4\x92\x03\xc8\x3c\x8b\xcc\x44\x15\x9e\x24\x59\x89\x79\x55\xda\xcb\x18\xa5\xbb\xe3\xf1\x14\x5c\x70\xfa\x14\xaf\xf6\x05\x24\x40\x41\x80\x07\xc3\xa0\xa0\x8e\xb5\x18\xe1\x32\x41\x63\x6d\x52\x3a\x2d\x0f\x55\x82\x9a\xbf\xc5\xec\x66\x8d\xb2\x45\x5a\xca\x11\xd7\x02\x4d\x70\xc0\x35\x32\xd6\x12\x89\xae\xb4\x52\xe2\xa9\x97\xb1\x07\x1d\x5b\x3c\x56\x12\xed\x83\x2a\x4c\xdc\xba\x31\x1d\xf5\x25\x24\x81\x33\xc0\x96\x27\x84\x89\xae\xfa\x2d\xa1\x03\x0b\x1e\x13\xa2\x4d\xe6\x05\x16\xf0\x0a\xaa\xe2\xa9\x39\x26\x47\xca\x24\x31\xe6\x59\xb9\xde\x6e\x94\x5d\x88\xa2\xdc\x57\x3e\xee\x77\x16\x16\xe8\xdf\xf8\xa0\x63\xcd\xb5\xe2\x3e\x49\xea\x2d\xa6\x6a\x5d\x95\xec\xe8\x78\x90\x3f\x2e\x91\x6b\xc7\xb1\x29\x2f\x98\xf3\xdd\x07\xca\xc1\x06\x92\x73\x5e\x0e\x15\x4a\x27\xd4\x51\x5c\x0e\x12\x25\x37\x3e\x4f\xb2\xfe\xd3\x64\x57\x3e\x66\x79\xe8\x63\xee\x88\x7a\x83\xf2\x4c\x8f\x27\xeb\x8c\xb3\xe6\x54\x1a\xbf\x62\xb5\xca\xcd\x58\xe2\xe7\x74\x33\x58\xfd\xc6\xd9\xae\xbe\xeb\x33\x2d\xb2\x93\x89\x7b\xe3\xe1\x8e\xe5\x64\xf4\x81\x9d\xac\xe1\xb0\xfc\x92\xd5\x31\xa5\xce\x8c\x47\x8f\x7f\x80\x17\x07\xde\x69\xb3\x4e\x62\xe2\xb9\xfd\x49\xa7\xe2\x8c\x17\x26\xa6\x79\xfb\x58\xfc\xdc\x69\xb3\x43\x9c\xa4\x27\x56\xc0\x8d\x37\xa7\x6a\x7a\x6c\x3d\x45\x83\x56\x74\xc1\xbe\xb9\xce\x8e\xf8\xb7\x02\x9d\x9f\xf5\xff\x88\x5a\x53\x37\x7f\xe9\x39\x83\x32\xfc\x28\xa8\x4c\x6e\xd9\x1b\x75\xc2\x93\x9b\x1b\xa7\xba\x61\xc0\xcc\xd8\x92\x5f\x94\x35\x62\x2e\xf3\x1a\x51\x96\x2a\xaa\x58\x3c\xb1\x21\x7f\xfe\x3e\x49\x37\x43\x26\xf3\x8c\xad\xc3\x56\x43\x36\x1f\x9d\x31\x81\xd0\xe5\x17\xf1\x1a\x9b\xbf\xf9\x6c\xf6\x87\x3a\x30\x99\x53\xea\x42\xf6\xd5\x5c\x8a\xd5\x89\x40\x32\xef\x64\x33\xf1\x09\x3d\x29\x33\xd5\xcb\x7c\xa6\x80\x41\x9a\x6b\x19\x9a\x63\x7d\x1b\x6b\xec\xb0\x48\xdf\x4a\xa3\x99\x69\x76\xbe\xe2\x62\x61\x21\xf7\xb1\x82\xd5\x55\xdb\xb2\x17\x16\x6c\x09\x98\xac\xd9\x35\xac\x25\x2c\xea\xd0\x73\x6d\xec\xfb\xe7\x14\x3a\x7f\x1b\x27\x4c\xad\x10\x27\xe9\xe2\xb5\xba\x96\x55\xf8\x72\x8e\xa0\xe9\xd8\xbd\xcc\x6a\x0a\x15\xcc\x18\x6a\x99\x17\x62\x62\x66\xc9\xcb\x6f\x61\xe1\x1d\x8b\xef\xeb\x7a\xc1\x91\xed\x39\xc3\xc0\x8f\xf9\x60\xca\x78\x5a\x38\x75\x66\x4c\xd9\xfe\x5c\xff\xc6\x80\x39\x17\x66\xea\x56\x0a\x05\xad\xf0\x9f\x02\xdd\x70\x69\x11\xa2\x05\xe3\xb1\xa2\xae\x4d\x58\x4f\x05\x56\x41\x1e\xfb\x7f\x15\x16\x99\x17\xa6\x87\x48\xdb\x1d\x28\xea\x62\xe1\x5f\x05\x4d\x12\x27\x11\xf5\x1b\xd1\x7d\x37\xf4\x6c\xcc\x4f\x11\x9a\x0e\x29\x4e\xf4\x36\x0a\xd0\xc2\x02\x0f\x81\x48\xd3\x3c\xbc\xf9\x41\x47\xa1\xbc\x64\xa8\x2c\x8a\xa7\x9c\x97\x0c\x12\x59\xdf\x78\x15\xeb\xa8\xdd\x66\x21\x80\xf6\x1c\x3f\xa0\x18\x6c\x6d\xfa\x91\x52\x10\x9f\x54\x60\xe1\x01\xd4\x1a\xd6\x51\x10\x20\xfb\x92\xe5\x52\x0a\xc9\x27\x17\xf8\xb9\x1c\x72\xdf\xb3\xc3\x14\x2c\x12\x36\x4e\x74\x5c\x6a\x58\xcf\xfa\x97\x4e\x0e\x14\xce\xf1\x41\x5d\xc5\xb3\x3d\x4f\x31\x5b\x07\xec\x4b\xd5\x8c\xf3\x67\xc0\xbb\xe1\x05\x66\xb6\x33\xbc\x1b\xfe\xc2\x42\xc1\x25\x4c\x49\xcd\xb8\x16\x9b\x1d\xaf\x53\x70\x08\xf0\x85\x24\x4b\x84\xf2\x53\x0a\x3e\x5b\x37\x85\xa9\x29\xc5\x96\x3f\x19\xf7\x6f\x35\xdb\x3e\xa7\xbc\x66\x56\xb8\x4a\xf4\xe9\x2e\x58\x99\x05\xce\x2c\x92\x72\x32\x89\x80\x52\xd9\x00\x80\x22\x32\x26\x93\xbe\x0d\x87\x98\xb4\xe3\x17\xec\x8b\xb3\x5b\x2a\x1b\x52\x40\xc3\x94\xec\xcf\x82\xdc\x8c\xc5\x45\x8e\xfd\x2c\x0b\xc2\xcb\x26\x2b\xa5\x89\x0a\x8b\x58\x4d\x8d\xc8\x02\xf6\x96\x9b\xcc\x4c\x9a\x93\x15\x0d\xda\x5d\xb8\x4a\xfe\x48\xc4\x49\x64\x71\x51\x65\xf6\x25\xa9\x35\x19\x59\x34\xce\x05\x03\xf4\x2d\x71\x1e\xc1\x94\x3c\xf0\x6b\x92\xdc\xf8\xcc\x3d\xb7\x90\xe6\x29\xae\xaa\xb9\x8b\x8b\xf4\x4b\x26\xe0\x77\x3f\x63\x14\xac\x7e\x13\xb2\x7c\xe7\x0c\x9f\x4f\x98\xbc\x32\x2b\x82\xa9\xc1\x91\x1d\x17\x69\x21\x2e\x80\xff\xc6\xce\xdd\xa5\x34\x63\x6e\x10\xac\xb8\xc3\x0c\xcc\xd0\x2e\xaf\x26\xa7\x76\x8b\xad\x98\x9c\x20\x98\x3d\x8b\xd7\xa8\x05\x0a\x39\x83\xe7\x99\x87\xa6\x78\xa8\x91\x33\x23\xfb\xa6\x24\xbf\xd1\xc8\x99\x99\xbc\x4e\x1c\xab\x84\xe9\x9d\x90\x5c\xb1\x05\x21\xc5\x09\xa3\x43\xa2\xf1\xf3\x56\xc7\xe3\x71\x7e\x48\x0e\x8a\xe6\xd6\x72\xdf\x70\x66\xae\x86\x6b\x34\x8b\x3a\x8d\xb6\x28\x42\xaf\x4e\x22\xaf\xd8\x0e\xd7\x63\xae\xc2\xb1\xf5\x8f\xac\x7e\x77\x94\xd8\xe5\x5b\x62\x26\xd2\x89\x01\x97\x88\xab\x9a\x98\xd1\x78\xdc\x2b\x49\x71\x82\xf2\xca\xcb\x24\xce\x77\x6b\xf0\xe3\x70\x48\x96\x25\xd1\x33\x31\x13\x37\x11\x11\x84\xae\x08\x96\xd3\x89\xa2\x77\x44\xa5\x74\xc1\x64\x09\x22\xd5\xa2\x4d\x16\x97\x9c\x6b\x08\x7b\x22\x58\x8e\x40\x36\x79\x00\x82\xd6\x14\x61\x72\xe4\x4c\xd9\x0c\xdc\x5a\x98\x66\x18\x8f\xdf\xc9\x48\xcc\xbb\xff\x46\x72\x55\x14\x12\xc2\x4e\x93\x35\x47\x34\x80\xd5\x6f\xc4\x72\xc6\xac\x27\xb9\xc5\xe5\x81\x5d\x93\x7f\xd4\x50\x5a\x85\x67\x21\x0a\x89\xb8\x9b\xac\xd6\xb7\xce\xce\xb5\x90\x92\x1c\x43\xab\x28\x39\x39\x77\x28\xe0\x5b\x58\xb0\x17\x16\x14\xf6\xd6\x16\xbb\x65\xad\x6f\xd9\xb1\xcd\x68\x5f\xad\xd1\x42\x5a\x3f\x89\xc6\xd3\x56\x64\x3b\x84\x36\xa7\x04\xde\x85\x09\xa4\x56\x3a\xea\x6a\x48\xb7\x6b\x0a\x9c\xfa\x49\x18\xc4\x55\xce\x51\xdb\x56\x9f\xf5\x6a\x75\x71\x71\xf8\x47\xb0\xaa\x52\x4a\xe6\x6c\x78\xae\x7b\x21\x51\xd4\x55\xd6\x60\x5a\x6a\x6c\xc7\xd1\x66\xde\x19\x93\xa7\xb7\x7a\x96\x65\x65\x98\x21\x31\x3b\x59\x0a\x9b\xaf\x19\x9a\x17\x45\xd1\x3b\x4f\x5d\x58\xc8\x2b\xe3\x65\x6a\xd2\x26\xab\x60\x53\xa2\xe0\xfc\xe5\xe2\xc9\xcb\x65\x7a\xb1\x78\xf2\x62\xe1\x86\x37\xb2\x25\xc0\xa5\xc4\x34\x76\x42\x12\x33\x8d\xcc\xd9\x47\xd6\x79\xb6\x28\xbf\xe4\x26\x24\x5a\x8e\xca\xe1\x41\x34\xc0\x0c\xb7\x26\x1e\xff\x69\xa4\x61\x6f\x2d\x63\x95\x4c\x85\x5f\x8a\x91\x45\xd1\xc8\xa0\x8b\xf3\xd5\xbe\xd0\x65\xe0\x5b\xd1\x7f\x7e\x0c\x6d\x3c\x6b\x51\x14\x46\x91\xaf\x50\x1e\xed\x52\xe6\xfe\x42\x32\xc5\xde\x75\x42\x22\xc0\x66\xaa\x11\x60\xdf\xae\x8e\x35\x57\x0f\x9c\xa0\x8f\xad\x82\x88\x8e\x52\xd0\x5c\x5d\x24\x99\x83\xa1\x8e\xc9\x0d\xa5\xa8\x5d\x0a\xf7\x6f\xe8\x42\x77\xd3\xc0\x4a\x85\xf4\x87\xcf\x33\xb9\xc4\x6a\xd1\xbc\xed\x76\x4c\x7c\xb1\xdf\x2e\xb1\x31\x4f\x74\x3a\xec\xce\xd1\x7d\x26\x0f\x7f\x54\xef\xf7\xe3\xa7\x3e\x7b\x8c\x07\x4e\xc0\x12\x43\x8f\x9d\xc0\x93\x29\x23\x9e\x1d\x10\x3b\x5b\x57\x3f\xa9\x62\x5a\xa1\x75\x76\x4e\x3b\xda\x72\x58\x44\xf4\x2c\x71\x3e\x09\x64\x05\x11\x1f\x67\x9e\xf2\x9d\x2b\xb0\x01\xb4\x6f\xdb\x39\xaa\xac\xf7\x05\xf6\xee\xb2\xed\x78\xf3\x35\xc2\xb2\xce\x68\x22\x1c\x20\xbf\x97\x23\x78\x80\xdf\x73\x07\x9b\xf0\xdb\xd2\x52\x5f\x12\xe1\x6e\xf0\x6e\x62\xc3\x4f\xf8\x64\x4d\xc6\xc6\xfb\x36\x4e\x23\x09\xa4\xaa\x21\xa1\x7d\x73\x3a\xca\xa4\xf5\xea\x84\xe5\x6a\xac\x6c\x27\x89\x9e\x5e\x14\xe0\x48\x2b\xce\x26\x73\x65\x52\xe9\x4d\xcc\xe9\x4d\xd7\x5b\xfb\xce\x7b\xd6\x04\x13\x2d\xd3\x2c\x51\xc4\x4c\xe8\xd7\x72\xdb\xe2\xfa\x52\xb5\xc6\xe8\x35\x7c\x46\xce\x25\x7f\x1b\x3c\xe6\x3e\x6d\xc2\xd2\xd7\x57\x88\xb2\xb4\xac\xaa\x9a\xcb\x92\xcb\x06\x73\x76\xa3\x49\xa8\x52\xb2\x83\xa6\xca\xa6\xaa\xae\x12\xa5\x5c\x52\x57\xb3\xe8\xf7\x71\x3e\x6f\x76\x6a\xc6\x9d\x70\xae\xc8\xf7\x9d\x2e\x89\xa2\x7c\xf1\xa9\xb1\x1a\x4c\xc3\x96\x24\x2c\x2e\x91\x60\x4b\x90\xaa\x4d\x99\x92\x93\xa8\x73\xcd\x1a\x1d\x25\x4a\x28\x9f\x79\xe7\x16\x39\xf3\xce\xd3\x60\x85\x63\x75\x86\x13\x2d\x37\x6f\xcb\x52\x4b\xe9\x38\x30\x1b\x61\x7f\xd8\x77\x02\xa5\x00\x0a\xea\x43\xfe\x50\x0a\xd4\xbc\xd4\x8d\x89\x45\x05\xa3\x74\x58\xf8\x44\x75\xbb\x39\x75\x0f\xa7\xa1\xbf\x46\x64\xfd\x9f\x34\xf8\x1a\x99\x76\x32\xf1\x24\x5c\xc1\x8e\xd5\x87\xab\xee\x1f\x64\xd5\x5d\x5c\x54\x3d\x46\xe5\x27\xf3\xe1\xc6\x8e\x26\x4a\x4c\x6b\xcf\xf0\x8b\xf2\x54\x95\x8b\x59\x54\xdd\x25\x5b\x24\xc8\x86\xda\x23\xa9\x12\xbb\x8b\x83\x8d\x3e\xf2\xfd\x7d\x34\xc0\xbe\x42\xd6\x0a\x94\x89\x42\x5e\xa1\x56\xc0\xb4\x54\x41\xd5\xed\xf8\xf5\x6a\x10\xb3\x5e\xf4\x09\xf6\x15\xac\x15\xf0\x9d\x13\x14\x54\x8d\x5b\xc5\x68\x41\xec\x66\xc1\x9b\x14\x86\xdd\xe9\x03\xd6\xf4\x58\x0b\xe2\xdf\x59\xa8\xfa\xb8\x6e\x71\x59\xde\x46\xa6\x73\x9d\xbe\x7b\x5b\x27\xed\x7a\xbb\xcd\x9e\xe7\x76\xca\x21\xdd\xa9\x7e\x39\xa4\x3b\xd9\x35\xdc\x9e\xab\x67\x71\xbf\x54\xa6\x06\x4e\x5e\xb0\x53\x2c\x27\x72\xc6\x1d\xcf\x66\x74\x2c\xb2\xe6\x2d\x16\x40\x61\xd1\xad\xb9\x39\x23\x9c\xf3\xe9\x6c\xb4\x9d\xa9\x0f\xc3\xed\xa9\xef\xc2\x6d\xf9\xb3\xee\x9c\x60\x6a\xa1\x92\x9c\x7e\xb2\x29\x7d\x78\xda\xe3\xaf\xd6\xf2\x96\x84\xd4\x4b\x92\xe9\xe5\x9d\x13\x64\xba\x78\xe7\x04\xcc\x8f\x32\xee\xdd\x24\x92\x7d\xb8\x83\xf3\x2d\x80\xa9\x1e\x4c\xce\x3f\x7f\x94\xe9\x47\x66\xee\xbf\xd7\x8d\xcc\x74\x7e\x67\x8b\x4c\x75\x66\x62\xce\xd8\x13\xd1\x95\x4c\x6b\xb9\xfd\x11\xde\x3a\x49\x26\xcd\xb3\x72\x04\x66\x9a\x6b\x79\x6b\x8a\xb7\xb0\x40\xd6\xc8\x62\xa1\x58\xa8\x15\x0a\xea\x22\xae\x11\xca\xd0\x0b\xe3\xa4\xa4\x8a\x9a\xab\x4d\x8c\x6a\xcd\x5b\x73\x17\x0b\x45\xfe\xb4\x40\x4b\x2d\x16\xb8\x38\xbd\x70\xae\x65\x3e\x5d\xe4\xa4\xcf\x44\xbe\x4d\x9a\x3c\x1f\x8f\xb5\x60\x4c\xe9\x68\x25\xb0\x3c\x75\xa6\x05\x15\x91\x4d\xa2\x82\x8c\x93\x55\x6a\xb7\x16\xb0\x60\xc0\xb1\xd1\x16\x49\xcc\x47\x93\xdc\x89\x11\x69\x76\x1a\x72\x23\x89\x33\xda\x36\x3b\xa7\xec\xe4\x76\x92\x0e\xa9\xe6\x5a\x64\x72\x9d\xd1\x1d\x3b\x31\xe9\xde\xc2\x42\xc8\x61\x8d\xcb\x53\xae\xaa\x39\x3c\xe5\x30\x9a\x6c\x6a\x61\x4e\x74\x88\x9d\x22\xc3\x24\xf5\xb6\xe7\xf6\xfb\x4d\x77\xa8\x71\x37\x6e\x51\x7a\xd2\x6b\x8b\xb3\x77\xb6\xf2\x6d\xac\xa5\x7e\x5b\xa9\xb7\x15\x97\xf3\x60\x79\x69\x24\x9e\xbd\x13\x62\x39\x14\x3f\xd7\xec\x38\x9a\x36\x07\x1d\x35\xe1\x97\xc6\x7e\x68\x09\x3c\xc9\x3c\xc6\x6d\x2d\x05\xa0\x99\x37\x0e\xe9\x6a\x7c\x3d\x27\x8f\xef\x9c\x40\x4b\xb6\x9b\xfc\x34\xcd\x2b\x55\xcf\x7e\x31\xe4\xea\x8d\x95\xb4\xf3\x92\x6b\xd9\x30\x7e\xc8\x9d\x13\xd3\x45\xec\xd7\x0a\x85\xb1\xc6\x8c\x21\x45\x2c\x84\x6f\xdc\x21\xa1\x63\x0d\x57\x25\x07\xe9\x1f\x70\x27\x8b\x43\x19\x2c\xad\xa8\x0f\x90\xcb\xd9\xb9\x15\xd3\x40\x79\x8e\x35\x29\x4d\xf9\x1e\x25\x50\x6b\xd3\x24\x45\x14\xe5\x1d\xa5\x99\x4e\xe6\x9a\x94\xb6\xa4\x34\x43\x22\x41\x8d\xa9\x3b\xa4\xf3\x55\xd8\xfb\x82\xa6\x48\x39\xb9\x4a\x46\xfc\xd0\x5b\xc8\xc7\x5f\x51\x3f\x8a\x28\x60\x60\x75\xc4\xa7\x14\xbb\x96\x47\x69\x57\xa8\xaa\xab\xdf\x1d\x2b\xfa\xa1\x53\x1e\x74\xf3\xd2\xb2\x3f\xcc\x99\xe4\xd3\x74\xd2\x88\x33\x6b\x53\x79\xd8\xc5\x61\x1e\x74\xaf\xd7\x8a\x94\x49\xa6\x44\xdf\xa2\x92\x3b\x20\xd2\x43\x36\x32\x6a\xa2\x6b\x60\xc3\xc4\x1e\xfd\x88\x57\xa2\x44\x19\x66\xfb\xed\xe1\x61\x1f\xd9\x58\xe1\x51\x25\xba\x5b\x77\x43\xa5\xa0\xfc\x6f\xf4\xdf\xff\xfa\x2a\x6b\x4f\x59\xab\xfd\xf7\xbf\x7e\xf4\x2f\xb5\xa0\x15\xba\x05\x55\x2b\xfc\xcb\x28\xa8\x49\xa9\xf7\xff\xf5\x17\xdf\x77\x35\xd6\xd1\xe4\xd9\xff\xfe\xd7\xff\x4f\xf4\x5f\xff\x3f\xff\xa2\x6f\x0a\xea\x38\x6f\x96\x1e\x5a\xa6\x1c\x8e\xd2\xd1\x9a\x7f\x51\x7a\xf2\x70\xf2\x78\x0b\xb9\x6b\xd2\x9b\x6b\x51\x32\x30\xf8\xb3\xbc\x2b\xca\x70\x67\x48\xf0\x61\xae\x45\x14\xb3\x14\x87\x21\x29\x97\x7f\x2c\xfa\x08\xb7\x7c\x7b\x90\x05\x40\xbf\x96\x05\xb8\x64\x51\xfc\x27\xd8\x80\xb4\x47\x78\xba\x3f\x44\xea\x0f\xa6\x58\x11\xae\x7a\x7f\xe0\x55\x6f\x71\x51\x25\x2c\xde\x64\xd2\x1f\x2f\x8d\xd9\x20\xda\xd9\x73\x3a\xd8\xbe\xb7\xfb\x58\x29\x08\x74\x50\xd0\xe2\x98\xed\x52\x4f\x26\xcc\x7a\x5f\xac\x33\x74\x0d\xe7\xf5\x07\xb7\x7f\x49\x77\x70\x7b\xaa\x37\x19\x42\xfd\x85\xba\x42\x89\x54\xcd\x98\xea\xc7\xaf\x98\x24\xde\x6c\x5e\x6f\x7e\xc1\x14\xb1\x56\x93\xbe\xc4\x84\x2c\x7a\x06\x42\xd6\xb7\xd0\x34\x21\xeb\x4f\x76\x2a\xd7\xa3\xd9\xd1\x50\xae\x03\xbf\x6f\x79\x29\xe9\x24\x1e\xea\x81\x2b\xa4\xd2\xea\x59\x70\xbe\x2a\xca\x9c\xe1\x73\x66\x7d\x19\xd3\x92\x67\xf8\x5c\x80\x15\x87\x71\x2d\x49\xe5\x2c\x63\xe6\xa7\xc2\x48\x18\xe9\x64\x0d\x1e\x1f\x80\xd2\x6e\xfe\x4c\xda\x35\xad\x81\x1f\xb1\x15\xf7\x98\x79\xdf\x91\xa9\x48\xef\x53\xe7\x73\x08\x92\x8e\xeb\xd2\xbe\x8d\x53\x27\x71\x71\x3e\x06\x13\x5b\xf1\x69\x77\x92\xa0\xbc\x74\xf6\x2d\x87\xbb\xea\xc4\x98\x9c\xa8\x7f\x5a\x30\x8a\x14\x37\x96\xe9\x25\x64\xb4\x3b\xa6\x20\xb5\x10\x77\xad\xa0\x15\x1c\x52\x38\x57\x99\xab\xfb\xcc\x41\x0d\x54\xcd\xb7\xd0\x19\x3c\xd7\x6c\x0b\x9d\x19\xe7\x13\x34\xb9\x9b\x50\xd4\x93\x0f\x28\x15\x3c\xf9\x0c\xb7\x33\x8f\x28\x05\x3d\xf1\x7b\xb2\x14\x5b\xad\xa9\xfc\x6b\x82\xd8\x4f\xe8\x68\xcd\xd5\xc8\x9a\x94\xab\xef\x92\x24\x93\xaf\x7d\xeb\xe1\xfb\x5a\x81\x1d\xe5\x57\xd0\x32\xec\x80\x04\x2d\xa7\x28\xff\x2c\x64\x9f\xe4\x18\x32\x70\x76\xac\xd6\x66\x34\x6e\x8b\xc6\x7d\x6c\xbb\xa4\x9d\xdf\xba\x60\x24\xf2\x1a\x4f\xb9\x89\x9c\xb6\x53\x96\x02\x8d\x15\x2f\x8f\xa5\xf0\xa7\x79\x06\x9b\x85\x5f\x8d\x89\x09\xfb\x07\x88\xbd\x69\xd2\x24\x0e\x39\xd4\x40\xc3\x21\x85\xaf\xae\x16\xe8\x03\xec\x75\xb1\xfc\xd4\xb7\x1c\x9e\x75\x87\x07\x0f\xcb\x94\xc8\x25\x7b\x5d\x45\xda\x47\x8a\x6c\x98\x22\x09\x46\xe5\xd1\x56\x15\xc2\xd8\x3d\xc1\x79\x49\xa7\xb8\x10\x55\x73\x48\xed\x1d\xd4\xb8\x9c\xa7\x86\x14\x92\xc8\x7c\x34\xac\x6a\x4c\xc4\xc3\x9f\x72\x69\x0f\x7b\x48\xb9\x3d\xfe\x8c\x21\x13\xac\x8e\xb9\x78\x94\x7d\xc6\x3e\xbe\x0b\x66\x7e\x43\x0c\xc7\x7c\x4b\xfe\x08\x55\xb3\x2d\x47\x09\xb4\x94\xb3\x95\xf7\xb8\x9d\x27\xa9\x4d\x9c\x1d\x6c\xe1\x30\xc8\x3e\xda\xf1\xbf\xa2\xbe\xd3\x4e\x3e\xdb\x51\x63\x77\x6a\x97\x39\xaa\x68\x21\x4f\xf8\xda\xd0\x0a\xce\xdc\x73\xad\x63\xe5\x96\x1b\xaa\x0b\x0b\xef\x86\x02\xc8\x3a\x64\xf5\x5d\x18\x45\xfd\x85\x85\x77\x9d\xb5\x30\x8a\xde\xf5\xa3\xa8\xb3\x16\x2e\x2c\xf4\x17\x16\x66\x96\x56\x68\xbf\xac\x9c\x99\x70\xa4\x99\x20\xd2\x4c\x38\x6c\x26\xd2\x36\xe3\x51\x76\xd2\x51\x4e\x66\xc3\x91\x66\x63\xac\xaa\xb5\x07\xda\xa2\xb3\x6b\x8c\x1f\xcc\xf2\x40\x77\xde\xc1\xf9\xbb\x31\x1e\xab\xaa\x66\x8f\xa5\x28\x80\x72\xd8\x4b\x49\x1c\x33\x81\x45\x99\x17\x40\x4a\x7e\x7b\x29\xa8\x1d\xa0\xa1\x82\x73\x9d\xc2\xf1\x58\xcd\x5b\x14\x58\xfd\x46\xce\x98\x67\x58\xbe\x77\xff\x8c\xf9\xc2\x2a\x3f\x5a\x0b\x8f\xb9\xc5\x9d\x46\xc6\x93\xa6\xc5\x92\x9b\x58\x6a\xbd\xcd\x34\x5c\xc1\x5a\x70\x46\xce\x6b\x4c\x49\x84\x2d\x1c\x45\xdf\xc6\x5a\x60\x05\xcc\xc7\x36\x36\x40\xcc\xf9\x62\xcd\x91\x3d\xd5\xb8\x4f\xa2\x8a\x78\x85\x4e\xa2\xf6\x57\xdc\x33\x74\x6e\x39\x2c\xb3\x5a\x73\xb8\xf2\x17\xa9\x82\x8a\xf8\x36\x4e\x2a\xb0\x59\x49\x86\x3e\xdd\x33\xfb\x5c\x4d\x91\x22\xfd\x29\xe3\xc5\x78\x3f\x9c\xd9\xe7\x94\x24\xf2\xcf\x44\xea\xdc\x22\x4a\x5f\x1d\xfb\x67\x36\x4d\xd9\x3c\x36\x49\x0e\x5e\xf5\xcf\x1c\x91\x9b\xde\xd5\x34\xd8\x88\xcc\x4f\x65\x8c\xdc\xc5\x71\xc6\x67\xc1\xf9\x1a\xfd\x53\xc3\x82\xa0\x08\xce\x73\x98\xbd\x9b\xf8\x04\x1d\x49\x09\xc9\xa2\x22\xe4\x07\xb4\x5c\x4b\xc1\xb4\xaf\x10\xc5\x84\xaa\x5a\x53\x5c\xeb\x8c\x25\xcf\xb5\xf4\x58\x00\x27\xcf\xae\x43\xf1\x2c\x5f\x5d\xf3\x92\xc8\x5d\xae\x5a\xf3\xd4\x28\x4a\x4d\xe6\x2d\x87\x9f\x59\x9c\x59\x62\xd3\xf1\x79\x34\x42\x29\x13\x8f\x69\xbb\x39\x8d\xc2\xcc\x4d\xbf\x8d\x57\x73\x4d\x1b\x71\xac\x1f\x8f\xa2\x3d\xa5\xd0\x70\x99\x4b\x51\xd3\x19\xe0\x91\x4b\x30\x3b\x83\xc5\xf1\xb0\x0f\xf8\x0b\xfd\xca\xd7\xc1\x11\xc6\xc9\xf9\x24\x03\xf6\xf8\x8a\xb9\x58\xbc\x0f\x44\xa9\xf7\x6d\xd7\xf6\xdf\xff\x7f\x2c\xa6\xaa\x13\xbc\x17\xca\xfa\xf7\x85\x78\xa9\x24\x4d\xc6\xfa\x2f\x9d\x79\x6b\x2d\xfa\x94\x80\xe9\xd3\xbb\x71\xbe\x9a\x35\x15\x8b\xb7\xda\x9f\x2b\xd5\x35\x5c\x5c\x5e\xaa\xe1\x3f\xab\xe5\x35\x5c\x34\x57\x6a\xb8\x58\x5e\x96\x63\x87\x24\x96\x10\xdc\xe6\x54\x6a\xc2\xb3\x98\xe9\x96\x6b\x91\x33\xe3\x9c\xf1\xf8\x8e\x65\x68\xc8\x82\x9a\x6f\x19\x6c\xf5\x96\x2b\xcc\x85\xc5\xbe\x44\xde\x86\xdb\xc6\xc2\x75\x50\x09\x2c\x43\xf3\xad\xa2\xa1\xae\x06\x7f\x78\xb2\xe6\x12\x59\x55\xf8\x1f\xb4\x18\x2a\x9e\x5c\x26\x10\x76\x79\xfc\x04\x50\x57\x2e\xe0\xbc\xb7\xaa\x50\x43\x8b\x56\xa8\xb8\x13\x45\xfe\x93\x04\xe3\x41\xff\xf1\xe5\xf0\x27\x19\x25\x2a\xad\x11\xcb\x35\xb2\xe8\x21\x43\x85\xde\x32\x46\x39\xb2\xe1\x57\xbc\xbb\x73\x8c\x00\x3d\x4e\x80\x52\xb0\x91\x50\x8d\x5e\xc6\x2e\x25\x35\xb2\x13\x43\x19\x15\x54\x8d\x58\xc1\x99\x79\x2e\xe9\x2f\x35\xcf\x0a\xce\x4a\xc9\x93\x82\xaa\xb9\x56\x70\x56\x96\xb3\x24\xe1\x8e\x14\xa2\x6a\x1d\xc5\xa3\x7f\x5c\x55\xcb\xf7\x33\x13\x5d\x65\x7d\x64\x07\x6e\x70\x13\x5e\x37\x24\x6d\x45\xc1\xcc\x18\x85\x45\xc5\xaa\xe2\xf2\x7f\x38\xfd\x8c\xcf\x82\xa2\x71\x6e\x19\xef\xe1\x58\x71\xb5\x78\x9a\x54\xed\x1b\x61\x4e\x2b\x74\xe6\x51\xab\xe5\xf9\xb5\xb6\x12\x9c\x19\xd9\xbe\xab\x9a\xdb\xe9\xf8\x38\xa0\x2f\xd9\x79\xcd\x21\x09\x9c\xbe\x5f\x73\xb5\xa1\x3b\x0c\x79\xa4\xdf\x1a\x8c\x82\xb3\xca\xf9\x58\x36\xc6\xe1\x8e\x0f\xb1\xcb\x6b\xa0\xd0\xe1\x92\x66\x61\x20\x59\xf5\xb0\x08\xc2\xc2\xac\x87\x6e\x12\x5f\x36\xeb\x69\xc8\xc3\x1c\xb8\x74\xfb\x71\x63\x6d\x85\x0d\xb5\x3e\x60\xd6\x44\xef\xff\xab\x9c\xa1\xe2\x08\x9c\x2f\xfe\x57\x7d\xef\xa8\xab\x85\x8f\x8d\x26\x73\x5c\x27\x2c\x8e\xf5\x19\x3c\x5f\xa3\xc9\x33\x78\x1e\x17\x38\xab\x17\xff\xe7\xfc\x7d\x57\x55\xd7\x88\x7e\xe5\x3a\x84\x4e\x8c\xf0\xe3\xaf\x29\x52\xc5\x2c\xdf\xb7\x92\x56\x19\xf3\xcc\x67\xf0\x3c\x3e\xc0\x7a\x61\x41\x21\x69\xf8\x0a\x66\x98\x13\x58\x8b\xb1\x7d\x52\xab\xe5\x59\x84\xa7\xf9\x08\x5a\x2c\x7c\x5c\x0c\x3f\x0e\xd8\x33\x25\x1b\xb5\x46\x0c\x08\x7d\x1f\x0f\x08\x2f\x7b\x64\xbb\x1e\x8e\x9d\x89\x69\xd5\xe2\xc1\x54\xc0\x94\x64\x91\x68\xde\xaa\x67\xd1\x25\xa0\x28\x81\x8e\x82\x22\xd6\x51\xa0\xbe\x37\x4c\x5c\x8e\xa0\xba\xaa\x2a\x9c\x21\x6f\x30\xc9\xe6\x26\x45\x77\x34\xc3\xa2\xa7\xaa\x6a\xdc\x5d\xba\xdd\x79\x72\x0d\x5b\xa4\x16\x58\x24\x41\xff\x99\xd0\x19\x19\x81\xa9\xd4\x5d\x16\xfc\x43\xfa\xbd\x96\x79\x5b\xcc\xbc\xab\xe1\xf4\xab\x58\xb9\xe4\xd7\x9a\xf4\xa6\x28\x3d\xaf\x61\x36\x4c\x7a\xba\x0a\x59\xb9\x89\x67\x6b\x53\x4f\x8a\x53\xe5\x6a\x22\x0f\x5d\x86\x7a\xdf\xb5\x51\x1f\x53\x16\x04\x79\x74\x4c\x92\x37\xd9\x70\x1d\x12\x04\x61\xe0\xa3\xc3\x4c\xa4\x73\x60\x88\x45\xc1\x87\x86\x98\x88\xe3\xcc\x3b\x67\x64\x07\x4d\x9c\xe1\x73\xeb\x1d\x9c\x88\xd8\x21\x90\x94\x30\x47\x15\x92\x13\x66\x9c\x65\xc7\x70\x4a\x00\x4e\x06\xdf\x18\xdc\xa2\x04\x85\x67\xa1\x33\x0a\xe5\xc4\x88\xb2\x56\x54\x6f\xc2\x10\x44\x21\x74\xc1\xfa\x14\x60\xbc\x83\x02\x0a\x33\x1a\x5b\xf5\x27\x73\x06\xea\xc2\x82\xcd\x89\x18\x87\x02\xcf\x78\xde\x6d\x39\x20\x08\x37\xf1\xe3\xc2\x83\x1d\x12\xf4\xd9\x21\x6b\x74\x75\x7f\x70\xbd\x01\x0a\x14\x35\x0e\x2a\xd4\x3e\x60\xae\xda\xbe\xa2\xb2\x38\xfd\xff\xe3\x12\x16\xfc\x83\x89\x70\x85\x9d\x5d\x49\x4d\xac\x9a\x47\x0a\x56\x27\x22\x8b\xac\xe6\x60\xdf\x0e\x05\x77\xa0\xb0\x88\x17\x0b\xa0\xe3\xb9\x03\x16\x06\x9d\x76\x03\xa0\xa1\xa3\x81\x56\x18\x80\xb6\xd3\x66\xe6\x58\x97\xe8\x46\x9c\x30\xd6\x46\x01\x62\x47\x8c\xe1\xb6\x5e\x48\x62\x73\x85\x22\x88\x16\x0f\xd5\x80\xa6\x44\x23\x3c\x38\x9e\x95\xec\x14\x95\x6e\xe3\x0f\x61\xbf\xff\x17\x46\x9e\xa2\x16\x4d\x8a\x36\xb3\x7b\xc9\xd3\xa0\xc6\x0d\x8c\x28\xd7\xc3\xf1\x8b\xb1\x4a\xfe\x28\x2f\xb3\x55\xa1\x04\xd3\x05\x08\x2d\x10\xef\xbd\x77\x96\xe5\x8a\x24\x33\x6f\xbf\x67\xc7\x2d\x69\x4e\x1c\xe9\x38\x4e\xe5\x6d\xe1\x2a\x2e\xab\x2a\x13\xa5\x07\x12\x66\x2b\xb3\x86\xf3\x8b\x79\x8b\x84\xf7\x77\x56\xbd\x34\x43\x95\x65\x48\x6c\xdd\xc7\x0a\x93\xab\xc4\x8b\xd4\xb6\x2e\x14\xa4\x72\xb3\xd5\x94\x20\xb5\x33\x04\xad\x38\x44\x9c\x45\xba\x68\x2a\x36\xa5\x4a\x35\x3f\x96\xac\xfb\x4c\xb2\x4e\x74\x9f\xee\x6d\x0e\x1b\xeb\x81\x82\xce\xdc\x73\x35\x31\xa6\x4c\x83\x21\xb1\xd3\x12\x94\x1b\x35\xb1\xbc\xfd\x13\xae\xf5\x29\x70\x4f\xb6\xab\x80\xd1\x72\xcc\x16\x9c\x06\xd7\x64\xaa\x35\x3d\x70\xf7\xdc\x5b\xec\x6d\x20\x1f\x2b\xb2\xd2\xe6\xfd\xfb\xae\x56\xb8\x90\x6d\xb0\x0f\xd2\xdd\xc9\xd6\x08\xfb\xc6\x1c\x82\x91\x4d\xd6\x19\x3e\x8f\x8f\x38\xc7\x59\x8a\x68\xa4\x78\x96\xe2\x5a\x6c\xab\xa6\x14\x83\x7a\x06\xcf\x55\x8d\x50\x0e\x82\xbe\xd1\x58\x28\x5b\x4f\xab\x2b\x48\x73\xb3\x94\x84\x9a\x39\x54\x8b\x29\x89\xac\x51\x7c\xaa\x03\x5d\xba\x92\x0d\x01\xe3\x55\x92\xc0\x8d\xad\x35\x94\xa3\x2e\x42\x6b\x0a\x0f\x3d\xd2\xa2\x93\x47\x0b\x5b\x2c\x14\x97\xc7\x65\x8a\xef\x2c\xab\x49\x79\x1b\xab\xa9\xd0\x27\x5a\x53\x55\xd7\x14\x85\xb7\xc2\x8b\xa9\x1c\xb7\xbb\xaa\x86\x38\x16\x77\x68\x3e\x24\x4e\x3f\x4e\x3a\x7b\x27\x03\xb7\x1f\x1d\x3e\xd7\x1a\x29\x0a\xc9\x1f\x3c\x3a\xb4\xcc\x21\x41\xe3\xba\x19\x8d\xf9\x62\x30\x92\xd6\xa3\xa3\xe9\xf2\x41\xa5\x59\x32\x27\x67\x25\x4e\x51\xa7\xdc\x41\xfb\xa2\x13\x45\x85\xbb\x38\x1d\xc7\xc7\x51\xde\x61\xfd\x02\xc5\xc7\x9b\xb2\xc8\xd0\x17\xc1\x68\x10\x45\x72\x0c\xa7\x3d\xce\x72\xcc\x3e\x35\x32\xff\x04\xc2\xcc\x61\x7c\x93\x87\x2a\xca\x48\x67\x2b\xf5\xe4\xe1\x51\x60\x53\x39\x36\xf3\xac\xe2\x76\x7e\x89\x18\x5d\x83\x5a\xd1\xa0\xa4\xa7\x14\x13\x79\xca\xe8\x99\x12\xfc\x4d\x4a\x6d\x3a\x16\xd6\xc3\xc0\x96\x0d\x8d\xd3\x30\x2c\x2e\x77\x5e\xf3\x39\x08\x66\xc8\x61\x5f\x71\x58\xe4\x00\xd4\x6e\x2b\xae\x3e\x44\x9e\x8f\x15\x47\xd5\x0a\x03\x87\x84\x01\xf6\x0b\x14\x90\x04\x23\x56\xf3\x58\xb1\xff\x30\xa3\xc8\xb4\xd8\x89\x67\xfd\x3f\xaa\xea\xc2\xc2\x5c\xdc\x14\xf8\xd3\x02\xa6\x5e\xd5\xa1\x0e\xfe\x72\x43\x80\x3c\x0c\x42\xdf\x21\x5d\x29\x47\x61\x31\xe1\x97\x16\x0b\x9c\xfb\x92\xb9\xae\x82\xaa\xb5\xe4\x20\x2e\x17\x93\x51\x5b\x24\xea\x93\xdd\x52\xf2\x8a\x72\x62\xec\xce\x1f\x71\x9a\x97\x0e\x12\x4b\xc8\x94\x99\x9f\x50\x49\xe2\x71\x4a\x58\x58\x32\x95\x31\xd6\x2e\x98\x84\xbb\x96\xa3\x96\xa4\x44\xa3\x88\x1e\xc1\x1b\x90\x50\x7d\x86\xa9\x72\x3a\x0a\xf9\xc3\xa3\x28\x39\xc6\x8d\x63\xcd\x76\x43\xee\x4b\x5f\xcb\x97\xe9\x13\x66\x10\x33\x2d\xae\x73\xd5\x07\x42\xe3\x33\x45\xbc\x4b\xb7\x1a\x23\xc8\x13\xe1\x3c\x16\xf6\x95\x74\xc6\xf3\xbe\x84\x47\x3b\xa2\xdf\x23\xf4\x1f\xf1\xd0\xf8\xf2\xe7\x69\xb6\x25\x85\x08\xa0\xdf\xca\x91\x80\xcd\x90\x00\xc5\xfd\x16\x85\xfc\x1a\xa1\xb7\x45\xe3\x9c\x2e\xe3\x33\x77\xcd\x2d\x1a\x35\xf7\x5c\x0b\xfe\x20\x0b\x0b\x5b\x3a\x33\x38\x1f\xb4\x9c\x6e\xe8\x86\xfe\x07\xd7\xbb\x45\x5e\x7b\x2d\xa0\x84\xea\x9f\x5e\xfc\x7e\x87\xb0\x53\x54\xc4\x5b\xc6\xae\xd2\x35\xf9\x87\x7f\xe6\x9e\x17\x29\x71\x9c\x10\x19\x28\x55\xe3\x02\x74\x66\x9f\x8f\x19\x47\x94\x7b\xbe\x7b\xb2\x46\xce\xe2\xd0\x92\x6d\x4c\x21\xdc\xf9\x58\xb0\x4a\x79\xa5\xf6\x94\x02\xc3\x4d\x3c\x07\x73\xfa\x11\x0e\x3f\x43\x0f\xdb\x28\xc0\x6d\x4a\x8b\x75\xd0\x8d\xeb\x01\xb7\x03\x58\xde\x30\xb0\x39\x26\x2c\xa8\x99\x15\x37\xdd\x6e\x92\x73\x66\x87\x67\x15\x1d\xcb\xd1\xae\xb2\xd8\xd7\x9a\xda\x2a\x12\xc1\xbe\xc8\xb9\x4e\xd4\xe2\x41\xdb\xf5\x6c\x87\x19\x25\xa2\x16\xe3\xcf\x55\x53\xde\x8e\x8d\x1c\x7f\x9d\x62\xdc\xb3\xff\xe5\xcc\x98\x56\x28\xa8\x0c\xbc\xd2\x4c\x82\x79\x4c\x08\xfe\xc5\xc5\xb1\xb6\x95\xba\x2f\x40\xbd\xa2\x9b\xcb\x05\x6d\x8b\xf9\x5c\x7e\x4d\xbd\x1a\xb6\xf4\x0b\xce\x44\x12\x9a\xec\x3b\xa4\xe7\x5b\x1e\x4d\x12\x66\xb7\xe7\xd0\x64\xb2\x67\x2c\x57\xdb\xa2\x50\xcc\x3a\xd0\xb6\x74\x9a\xd7\xba\xa3\x09\x17\x65\x0d\x0e\x0f\x04\x27\xe0\xab\xda\x9d\x82\x59\x46\x5f\xd5\xf2\xd7\xbf\x33\x41\xdc\xaa\xe9\x5e\xce\xe0\x33\x62\x29\x4e\x1e\x36\xd3\x03\xf7\x78\x38\x8c\xc9\x12\xcd\xb3\x9c\x09\x96\x9c\x29\xc6\x28\xfa\x1d\x30\x86\x7c\xac\x60\x3d\xf9\x1e\x75\x62\x3c\x12\xf8\x48\xc7\x8e\xb1\x95\x4d\x91\xd8\xba\x73\x7c\xc9\xe6\x04\x60\x45\x66\xe3\xda\x4e\xfb\xe8\xd2\xbd\x65\x5e\x0e\x4c\xd0\x26\x3f\xb0\xde\x41\x6d\x4f\x29\x70\x50\xab\x07\x23\xa9\x3e\xe5\xdf\xcc\x2c\xe6\xdf\xea\x77\x57\xf8\xbb\x6c\xf1\xa4\x60\x41\x55\xb5\x77\xef\x9a\x4a\xa0\xd2\x2e\x77\x43\xec\xe7\x9a\x2f\x05\x14\x29\x45\x91\x12\x58\xb7\x8a\xaa\x6a\x01\xcd\x4c\xb2\x86\x99\x09\xf9\x1e\x13\xa5\x98\x76\xc0\x51\x9d\x49\x76\x07\x33\x4e\xfe\x0c\x9f\x47\x11\x39\xa3\x94\xce\x39\x45\x6e\x9c\x06\x8a\xb9\x20\x7c\x2e\x85\x25\x63\xd4\x27\xeb\x1f\x65\x66\xac\x96\xb6\xa5\x87\x64\x88\xec\x9e\x75\x99\x24\xd7\x91\x8f\xab\xd0\x1a\xd2\x7e\x61\xdc\xf6\xf9\xc6\xb0\xf6\xb5\x3c\xc8\x44\x47\x34\x1f\xa2\x59\xef\x0c\x6d\x2b\x9d\xdf\x1c\x37\x92\x2c\x4c\x8f\xe7\x99\x96\xdf\x60\xa5\x26\xcf\x91\x63\x34\x04\x73\x04\xb1\x28\x39\xa5\x4e\xac\xb7\x77\x0a\xb6\x5c\x16\x58\x9d\x1f\x4c\x2b\x09\x87\x85\xca\x40\x6c\x05\x31\x0a\xc9\xa8\xac\x79\x4c\x11\x90\xa3\x06\xe0\x62\x26\x1c\x43\xc7\xa6\x82\x55\x09\x54\x24\x6c\xd5\x78\xac\xaa\x35\x8f\x4b\xe3\x8f\xb4\x0d\x0b\xeb\x1d\xc9\x60\xa7\x27\x4d\xfe\xf4\x20\x70\xb0\x36\x5a\x13\x77\x0e\x65\x98\xd2\x3b\x89\xc6\x4c\x7f\x48\x12\xaa\xeb\x79\xea\x8b\x1d\x9c\xf3\x3d\x24\xc6\x58\x0f\x46\xd6\x96\x86\x63\xc5\x23\x5b\x0d\xa2\x48\xc8\x8e\x0f\x10\xb3\x9e\x22\x58\x49\x76\x6e\x65\xca\x65\xe2\xd9\x06\xfa\xc5\x88\x52\xde\x94\xd2\x62\x11\xd9\x02\xfd\xc2\xf1\x8f\x9b\x1b\x2c\x14\xd9\x45\x9b\x93\x6b\x34\x89\x54\xfd\xa2\xad\x05\xec\xa7\x9a\xa1\xc7\x02\x99\x1e\x53\x35\x5a\xa5\xe5\xf2\xbb\xca\x9c\x03\x69\x4a\x9a\x87\x40\xd5\x12\x90\xee\xa9\x7f\x18\xd5\x85\x05\xc5\x7b\x6f\x55\xa1\xaa\xa5\x07\xf0\xa6\xf9\x93\x20\x66\xfa\xc5\x68\x55\x7a\xae\x14\x3d\x6e\x55\x7d\x31\xb2\x1c\x1e\xe5\x8b\xcb\x57\x28\x8f\xab\x8e\xb5\x0d\x3a\x66\xd9\xf1\xe0\x5e\xcc\x2c\x7a\x39\x67\x09\xa4\xd3\x91\xa6\x23\x7c\x51\x92\x91\xe1\x47\x40\x97\x15\x3f\x0d\xa9\x85\x01\x02\xbc\xb0\x06\xba\xfc\xf0\xa3\xc5\x02\x38\x4b\xcf\x40\x5a\x2c\x9c\xa7\x62\xd6\x78\x76\x29\x94\xd1\xe2\xa5\x93\x9d\xb2\xf8\x28\x92\x5a\x0e\xad\xca\x3d\x76\xb9\x34\xa1\xe3\x7a\xbc\xb1\x54\xf8\xff\x3d\xd9\x3f\x2d\x57\xa4\x28\xc6\x21\xdd\xf7\xba\xc0\xed\xe3\x38\x1e\xd9\xc5\x48\xcd\xf6\x92\x81\x35\x3a\x6e\xb4\x0e\x66\xcd\xd7\x53\xd2\x1f\xaa\x78\x51\x6f\xb5\xbc\xe4\x05\xfd\x41\x5f\x84\x81\x6d\x5d\x2b\xec\x4e\x7f\x32\xd9\x16\x7b\xc0\x52\x22\x87\x58\xa2\xca\x91\x25\xfd\xd4\xa6\xb7\xc4\x94\x73\x24\x8c\x83\x19\x89\x7d\xa2\x6a\x47\x33\x36\x8a\xaa\xd1\x9d\xa2\xfb\x38\xd8\x9c\x34\x13\x4d\x3d\x79\xb2\x6c\xc2\x4a\x3e\x9b\x90\x56\xa1\xa8\x33\x79\x86\x95\xf9\x79\x06\x16\x35\x43\xde\xbd\xc1\x1a\x5d\x14\x35\xbe\x89\x39\x2c\x3a\xb1\xb0\xce\x27\x54\x60\x0c\x07\xc7\x87\x4a\x26\x01\x45\x18\x4b\xc6\xc2\x89\x4c\xb9\x63\x65\x83\x8b\x9c\xa8\x6b\xca\x09\x47\x2a\x85\x8b\x51\x41\xd5\x92\x1f\xa8\xa0\xaa\xb5\x93\x85\x05\xe5\x24\x1d\x50\x7e\x38\x95\x0c\x51\x53\x95\xd7\xa7\xa3\x83\x7d\xb1\xd5\xff\xfd\xad\x20\x3e\xa9\x50\x2b\x98\xd0\x58\xb1\x0b\x1a\x23\x37\xfd\x42\xed\xac\x50\xef\x78\x8e\x8d\xde\xd7\x5b\x4e\xfb\x0a\x91\x68\xaf\xd1\x04\x1f\x1b\xcd\xa8\xab\x2f\x03\x18\x41\x23\x2a\x9a\xfd\xf6\xe9\xb6\xfe\x39\x2a\x2f\xe3\x4a\x41\x4b\xf2\xdb\xb6\x87\xe2\xdc\x60\x11\x42\x13\x46\xfa\x67\x00\x41\xb1\x17\x41\xc3\x7c\xd4\x15\x15\xcd\xea\x7a\xeb\x54\x5f\x06\xd5\x60\x44\x6f\x0d\xb2\x05\x8c\xf5\x7a\x6f\x56\x62\x03\xce\x7c\xf5\xba\xf2\x44\x65\x43\x1e\xb4\x7d\xe4\x78\x6e\xcb\x61\xc3\xb6\x55\xa7\xc3\x66\x96\x20\xfd\x5b\xae\x44\x45\xd3\xd3\xbb\xa0\x58\x82\xa0\x68\x86\xa0\x68\x7e\xa2\xc3\x58\x32\xa2\xa2\xf1\xa1\xb4\x41\x5f\x95\x36\x47\xf4\xe6\xf6\x1a\x21\x68\x7c\x38\xfd\x14\x95\x97\x32\x13\xd2\xef\x3a\xd8\xf3\xa3\xc3\x46\x13\x9c\x6c\xd1\xff\x47\x4d\xb0\xb1\x45\xff\x1f\x35\xa3\xe2\x8a\xde\xa7\x93\x63\x88\xff\x26\x9c\x9a\xa5\x52\xb9\x54\x2e\x19\x25\x9a\xa6\x09\xd3\x28\x45\x45\x93\xd8\x2e\x2d\x69\xef\xb7\xe8\x6d\xbb\x0e\x81\xb1\x42\xff\x38\x0d\x08\x0c\xc3\x86\xc0\x70\x5d\x08\x4e\x5c\x08\x0c\xcf\x86\xe0\x33\x7d\xbc\xd5\x80\xe0\xb8\x01\xc1\x66\x1d\x82\x9d\x81\x0b\x81\xd7\x86\x60\x13\x43\xb0\x72\x3a\x82\xc0\xe8\xb4\x20\x30\xd0\x10\x02\xa3\xba\x0b\x81\x79\xef\x42\x30\xd8\x1a\x42\x70\x79\xbb\x07\xc1\xd5\x1d\xad\xdd\xa8\x43\xd0\xde\x6c\x43\x60\x2c\xd1\xcc\xc6\x3a\x04\x86\xbd\x0f\x81\xb9\x79\x2f\x52\x46\x87\x3d\xdb\x83\x91\x59\x95\x47\x61\x0f\x75\x5d\x9f\x8d\xef\x49\xbd\x19\x15\xdb\x7a\x9d\x7e\x2f\x5f\xc7\xe6\x3d\x6c\xeb\xf5\xc8\x58\xc2\xd5\xb4\xc0\xba\xe3\xfb\x28\x64\x25\x8a\xd0\x60\x4b\xdf\x30\xf5\x1e\x30\x20\x5b\xfe\x26\x5f\xff\x10\x98\x77\xae\x0b\xa3\xd2\x0a\x2e\xa7\x65\x1b\x68\x18\x06\x2e\x2b\xbb\x41\x5b\x33\x91\xde\x13\x43\x1b\x15\xcd\x8f\x9f\x30\xd2\x7b\x13\xfd\xdb\xa0\x2b\x20\xda\xda\x6a\x82\x2d\x36\x2d\x26\xa4\x53\x1e\x41\xe3\x97\x5e\x51\xd1\x68\xed\x1c\x40\x70\x43\x47\xdb\xa1\x53\x63\xd0\x99\x72\xe8\x40\x13\x9a\x32\xe9\xb3\x21\x4d\xc1\xfd\x38\x55\xa5\xcf\xae\x46\x10\xf8\xa5\x36\x04\x5f\xe9\x23\x97\xbe\x34\x68\x25\xee\x41\x26\x2f\x4f\xb5\x1e\x4c\xcd\xca\x67\xd0\x75\xe0\xee\xc5\xa9\xbc\x67\x79\xa9\x97\xc8\x77\xb2\xc7\x17\xb7\xf1\x65\x04\xc1\xed\xf0\x87\x6a\xbb\xde\x83\xe0\xf4\xc7\x3a\x47\xee\xe3\x99\x72\x8d\x87\x52\xd7\xfb\xf3\xe5\xfb\x7e\x09\xfa\xc1\xec\xe5\x17\xda\x31\xfa\xc5\x07\x04\x02\x63\xd4\x86\x60\x8f\xe6\xd9\xda\x87\xe0\x43\x0b\x02\xdb\x80\x60\x99\x40\xb0\xbc\xdf\x86\xa0\xbb\x07\x01\x36\x20\x18\x10\x18\x19\x15\x79\xf3\x6d\x20\x1f\xb5\xfa\x88\xd8\x1c\x93\x2c\x42\x0a\x0c\x8d\x28\xd4\x7b\x1c\x56\x3d\x1a\x93\x3c\xf2\x8a\x8a\x66\xb7\x41\x02\x7d\x0b\x18\x25\xb8\x47\xef\x5e\x0b\x02\x0a\x78\xda\x5f\x5b\x10\xb4\xe8\x12\x6f\x9e\x42\xb0\xe5\xae\x43\xb0\xb7\x07\x41\x97\xb4\x21\xf0\x46\x10\x94\xe9\x9a\xaf\xd3\xd1\xa0\x5f\x78\x7a\x0a\x81\xb1\x31\x84\x80\x2e\xe2\x36\x05\x66\xe5\x01\x81\xe0\xe8\x7e\x5f\xca\x74\x4b\x47\xea\xc3\x3a\x04\x9b\x2d\x79\xc8\xf6\x3b\x10\xdc\x36\x20\xb0\x5d\x08\xba\x14\x8e\xba\x10\x02\x1f\x42\xd0\xae\x43\x70\x63\x0b\x68\x58\x87\x10\x60\x08\xc1\x3d\x14\x0f\xc2\x06\x7f\xb0\x19\xe7\xf0\x45\x8e\x9d\x06\x04\x27\x0d\x08\x28\xe0\xed\x36\x20\xd8\xab\xf3\xdf\x57\x75\xfe\xde\x5c\x16\x25\xcd\x2a\xcc\x7b\x42\xcb\x3c\xfe\xd5\x4f\xd4\xf3\xfd\xcc\x51\xc9\xcc\xc0\x50\x1c\x06\x28\x9a\xc6\x71\x93\xe8\x2d\xe7\x32\x4b\x2f\x74\x45\x45\xb3\xb2\x1b\x6f\xa2\x36\x83\x11\xcb\x43\x08\x4a\xdb\x74\xa5\x2c\xd1\x9f\x1d\x3a\xf9\x88\xee\x2e\x87\xce\x3a\xa2\x13\x7b\xbf\xe4\x3e\x76\x9d\x7d\x65\x78\xb0\x31\xdf\x9f\x4e\xfd\x11\x99\x27\x8a\xb9\xf1\xca\xcb\x4d\x5d\x8b\x55\x97\x4d\x3c\x36\xff\x0f\x17\x9c\x9d\xff\xa9\xbb\xf8\x72\x2d\x3d\x54\x30\x5a\xae\xe0\x52\xba\x23\xb6\xfa\x17\x75\xe4\x84\x24\x21\x63\x62\x48\xfa\x59\x6f\x30\x4a\x26\x06\xa6\x4f\xbe\xd0\xa3\xa2\xe1\x6d\x8e\x96\x74\x1b\x18\x1f\xbf\xd6\xe9\xbd\xba\x37\x6b\xc1\x1a\xf6\xfa\xfa\x1b\x3c\x7c\x0a\x78\x68\x42\x99\x0c\xfd\xe4\xb2\x00\x84\x7e\x2b\xf4\xba\xd1\x51\xfd\xa8\x09\x92\x3f\x51\xd1\xa0\xbc\x44\x4c\x64\x0a\x66\xeb\xe3\xa7\x76\x08\x8c\xfa\x15\xfd\x6b\xef\xc5\x14\x35\x25\xa6\x97\xcb\x32\xa0\xfd\x14\xb6\x50\x4c\xdd\x82\x0d\x5a\xe7\x16\x23\x73\xab\xba\x1f\x57\x2a\x55\xfc\xd0\x45\xd7\xc9\xfd\x09\x2b\x68\x8c\x76\x21\xbb\xd3\x85\xc2\x49\x4c\x46\xe4\x5f\x25\xe4\x3e\x23\x40\x97\x18\x01\x4a\xc1\xe3\x12\x5d\x43\x97\x14\xcc\x51\x8a\xc2\xb8\xa4\xf9\x56\x68\xbe\x2e\xcd\xb7\x32\xca\xd4\x32\x51\x36\x2d\xb1\x4c\x5b\xeb\xee\xcf\x2a\x9b\x69\xed\xfe\x63\x1b\x46\xe9\x30\xec\x5e\x22\x2f\x70\xc3\x41\xde\x50\x20\x7d\xf9\xb1\x43\x61\xf0\xb1\xa0\x25\xe9\x58\xb0\xfb\xeb\x1e\x0b\xb0\x7d\xb5\x07\xa3\x4a\x86\x95\x6d\xb8\xc4\x73\x6f\x1c\x14\x35\x1a\x4d\xd0\x10\x42\x83\x6d\x7d\x19\xec\xe8\x61\xc2\x39\x95\xf6\x46\x5d\xfd\x33\x30\x97\x3f\x42\x43\x1f\x44\x46\x96\x19\x6e\x5f\xa1\x01\x26\x28\xe6\xd6\xc0\x09\x5f\xb0\x50\xb7\x33\x3c\x2a\xe5\xc0\x30\x7b\x6a\x7e\x2a\xd9\xf4\x7e\x42\x09\xc9\x92\x5c\xd7\x11\x72\x2f\x9a\xee\x00\x27\x02\x09\xca\xfd\xd5\xf5\x4f\x12\x19\xc9\xaa\x81\x10\x94\x9d\x2a\xe5\x24\xaf\xa1\x3c\xc5\x4d\xcf\x19\xba\x7d\xce\x98\xc7\xf4\x04\xd8\xda\x6a\x46\xc5\xcf\xfa\x4e\xdc\x9b\x0c\xd7\x5c\xca\x99\x58\x93\xfe\x8b\x8a\xa6\xf1\xc9\xa6\xc5\x8c\x4b\xb2\x4e\xef\x37\x77\xb4\xd5\x43\x08\xee\x68\x02\xef\x43\xb0\xde\x82\x60\x89\x4e\xcf\x31\x24\x10\xd4\xe9\x58\xb7\x5b\xf1\x3e\x64\xa9\x76\x3b\x4e\xd1\xfc\x46\x8b\xa5\x0c\x18\xef\x57\x63\x3a\x5f\x5a\xf6\xda\x80\xa0\x53\xa7\xb3\x8d\x87\xe2\x59\x7d\xf7\x1a\x82\x66\x8c\x3c\xb2\xf3\xd0\x0c\x89\xc3\xc5\x06\x59\x69\xc1\x2c\x39\x41\xae\xfc\x46\xc8\x09\x8c\xe5\x21\x62\xf7\x6b\xc1\xff\x97\x9a\x76\xcc\xc0\x8f\x30\x07\xbc\x74\x7d\x51\xaa\xc6\x28\x27\xa0\xa7\xb3\x42\x29\x20\x8f\x32\x95\x9f\xe8\x82\x3c\x5d\x17\xe8\xcf\xab\x0b\x31\x03\xb9\x75\x21\xd8\x75\x33\x64\x09\x7b\x09\x1b\x10\x8c\x28\xf0\xe7\x1c\x23\xda\x9f\x89\x3d\x29\xd4\x94\x3e\xfb\xc4\x21\xed\x4b\x17\xf7\xa2\x45\x68\x94\x60\x0a\x32\xd9\x0e\x67\xc2\x83\x14\x74\xf2\xbb\x58\x48\x4c\x4e\xf2\x98\x2b\x0f\xe2\x1e\x51\xb6\x6f\x65\x87\x7e\x50\xf5\x90\xb2\x72\xa7\xf1\x30\xd1\x17\x27\xfb\x22\xc1\x1f\xa5\x2f\x1f\x4e\xfd\x64\xd1\x67\x6d\x8c\xd2\xf0\x0c\x67\x0d\x30\x17\x57\xb5\x51\x2f\xda\x3f\x6a\x82\xfd\x93\x26\xd8\x3f\x6c\x82\xf5\xa3\x26\x58\xdf\x6c\x82\xfa\xf6\x51\x13\xb0\xff\x9b\xcd\xa8\x05\x01\x62\xff\x92\x04\x82\x60\x85\xcd\x03\x7c\x78\xd4\x2b\xd5\xa5\x17\xbc\xa2\xa2\xb1\x74\x74\x0a\xc1\xf2\xed\x09\x04\xce\x3a\x04\x9f\xfb\x2d\x08\x2a\xe6\x01\x9c\xc0\xb0\xf1\x82\x1f\x4d\x3f\xa3\x29\x9f\x6e\xec\xaf\x23\x08\xf6\xe8\xd8\xad\x9f\x66\xf2\x33\x66\x61\x56\xc9\xd9\xa9\x6c\x59\x7b\x40\xb7\xca\xf5\x43\xa5\xca\x14\x6a\xd0\xfe\xf3\xd4\xcc\x59\x9d\xc8\xf7\x33\x25\x9e\xa3\xb5\x2f\x14\xc6\x8c\x5a\x10\x1c\x0c\x27\x13\x0f\xbc\x7a\x20\xf1\xa8\x52\xaf\xb5\x89\xa8\x64\x56\xe5\x6d\x48\xec\x4b\xd7\x43\x5d\x1c\x51\xd0\x57\x3f\x69\x82\xfa\xa1\xd8\x83\xf5\xed\xcd\x26\xf8\x8b\x26\x76\xd9\x9f\xcd\x66\xc4\x36\x1f\xfd\x97\x24\x56\x20\x58\x7e\x9d\xdb\xb1\x09\xe9\x76\x3c\x85\xc0\xa9\xbf\x6d\xc7\xb7\xed\xf8\x4a\x9b\x88\x4a\x30\x83\x16\x0f\x5d\x2f\xb8\x70\x3b\x17\x47\x43\xe4\x70\x76\x9e\x12\xc5\xe5\xaa\x5e\x06\x65\xa1\x57\xe8\xed\xdf\x7c\xd1\x8f\xa3\x72\x89\x4b\x00\xe2\x8d\xec\xa1\x6e\x88\x1c\x41\x4e\x17\x61\x09\x14\xa1\x19\x95\x6c\xbd\x01\x4a\x10\xcc\x45\xc6\xe5\x12\x76\xdd\xfe\xed\x9e\x6e\x83\xed\xf6\x2e\xbd\x19\xb6\x1d\x13\xa2\xad\x53\x08\xb6\x28\xd7\x7e\x44\x89\x98\x9b\x3a\x04\x0d\x4a\x72\x52\x16\xbf\xb1\x27\x12\xa3\x53\x08\xae\x69\xee\xbb\x16\x04\x26\xa5\x46\x99\x36\x61\xc3\xe0\xaf\x58\x62\x2f\x4e\xd0\xe2\xdb\xa6\x21\x64\xcb\xc1\x3a\x04\x3b\xb4\x9e\x0f\x6d\x08\x3e\x9c\xc6\xb2\x65\x9a\xd8\x5e\xe7\xa2\x82\x76\x63\x5f\xc8\x0c\x68\x37\xb8\x44\x7a\x1f\x52\xee\x80\x17\x4f\xea\x61\x52\xeb\xe4\x09\xcd\xcc\xa4\xd6\xb4\x1e\x5a\x21\xb9\x37\x58\x3d\x91\x51\xce\x92\x28\x5e\x17\x93\xc0\x21\xe8\xfd\x7a\x88\x89\xeb\x5f\xd4\x1d\x0f\xfb\xd1\x06\x1b\xdf\x72\x32\xc6\xe5\xae\xde\x00\x65\xf8\xf8\x61\xce\x91\x19\xc2\xe3\xed\x6d\xdd\x06\xc3\x5d\x42\x6f\x6c\x40\x29\x4f\xd6\x6c\x4d\x0e\xd6\x74\x82\x65\x9e\x23\x0f\x1d\x34\xf3\x6a\xc4\x13\xe5\xfe\x29\x04\xa1\x01\x41\x65\x8f\x36\x31\xa4\x23\x42\xa7\x88\x3e\x0a\xe9\xa8\xdd\xd0\x09\x9e\x4a\x70\x1e\x71\x16\xe8\x44\x3e\xe1\x42\x9d\x11\xcd\xbb\x3e\x12\x83\xdf\x3c\x15\x2a\x83\x44\x77\x90\x24\xe8\xab\x3a\x85\x1e\x61\xac\x5f\x38\xd9\xe3\xec\xd9\xd4\x54\x6c\xa0\x00\x0d\x90\x67\xa3\x27\x9f\x07\x83\xfe\x35\xfe\x71\xf3\x70\x0d\xc1\x17\x24\xcd\x83\xd7\x5f\x87\x60\x69\x1d\x82\x65\x0a\xa7\xc2\x99\xf3\xe0\x7a\x6d\xb7\xf5\x4c\xb3\xf0\xcf\xdb\x0d\x93\xb3\x30\xe7\x6e\xf8\x14\x5e\x85\xf7\x4f\x3c\x07\x94\xc5\xfd\xc7\xcc\xc0\x08\x8b\x44\xbf\x0d\xc1\xc9\x6e\xce\x0c\xe4\x0f\xfc\x1e\xba\xf8\xe2\xb8\x57\xcf\xb0\xfe\xcd\x7f\x1a\x18\xfa\x4c\x20\xb8\xa6\x94\x79\x95\x4c\xa0\x84\x39\x41\x51\x03\x93\xb6\x3b\x7a\xea\xa9\x60\xc9\x7f\xce\x4c\x84\xa6\x54\x4d\x33\x99\x85\x13\x08\x3c\xc7\xe0\xf4\xea\x12\xcd\x38\x73\x16\xbe\x38\xee\xc5\x47\xd4\xef\xe3\xae\xfb\x4c\x34\xd2\x3f\x65\x2a\x66\xd3\x48\x73\x6e\x88\x23\xd4\x0f\x9e\x0d\x33\xff\xb3\x66\x60\x16\x5e\x9e\x35\xf0\xe4\xe2\x53\x88\xc8\x1b\x56\x78\x56\xac\xd0\x86\x60\x60\x40\xb0\xdc\x7f\x78\x13\x90\x8b\xbd\xd0\x79\x6a\x58\x14\x27\x0d\x6e\x3e\xf4\x77\x9e\x0b\xa6\xbc\xbf\x16\x78\xa1\xbe\x0f\xc1\x0d\xcd\x93\x8c\xfc\xf2\x1e\x04\x4c\x51\x29\x28\x54\x96\xc8\x9f\x8b\x66\x68\x87\x83\xe7\xd8\x16\xf1\xae\xf8\xe7\xec\x8b\x07\x98\xb6\xf2\x3e\x04\xcb\xeb\xa7\xf3\xf0\x0d\xc7\xfe\x65\x88\x9c\xa7\xc7\x11\xff\x38\x30\x35\x03\x4f\xf7\xe8\x54\x0c\xf3\xf1\xf4\x46\xe8\x21\x1b\xb9\x42\x4e\x57\x2e\x41\x2e\xe2\x1b\xe9\x7b\xa0\x1c\x72\x29\x1f\x1d\xbe\xde\xd7\x25\x57\x6f\x03\x73\x79\x77\xef\x48\x6f\x47\x46\x25\x2b\x9b\xf2\x43\x62\x3b\x2e\x89\xea\xe9\x0c\x46\xa5\x03\x7d\x8b\xcf\xde\x73\x1b\x4e\x7e\xff\x8a\x8a\xc6\x5d\x65\x79\x45\xef\x01\x63\x73\xb7\x41\xef\xa5\x8d\x3d\x08\x4a\xcc\xaa\x1b\xee\x89\x09\x32\x20\x99\x4e\xb1\xc1\x4f\x15\xdb\x2c\x95\x3e\xcb\x4b\xfd\x60\x3e\xba\x69\x8c\x32\xc9\x3c\xeb\xb4\x05\x30\x63\x36\x7b\x88\x15\xa5\xb0\x90\x59\xc5\x0e\x21\x38\x6d\xc5\xe6\xb1\xec\x23\xbc\x78\x31\x24\x72\xc6\x87\x8d\x6d\xaf\xe3\xd5\x95\xa7\x3a\x75\x86\x52\x1d\xd9\x44\x20\xb7\x93\x24\x8c\x95\xd3\x8c\x22\x62\x42\x25\x21\x59\x81\xe4\xa4\x58\xd9\xce\xfa\x74\xea\xf1\x25\x7e\xa6\xec\x33\xb4\x16\x99\xc2\x55\x25\xde\x2c\x81\xd3\x73\x7b\x14\xff\x1c\x35\xc1\xc6\x66\x13\x6c\x9c\x34\xc1\xc6\x61\x13\x6c\x1d\x35\xa3\x2a\x04\x95\xf4\x1f\x33\x1b\x35\x4b\xe5\xa8\x68\x56\x9a\x9f\x69\x75\x94\xfc\x20\x2d\x08\x4a\x57\x18\x82\xe5\xbb\x12\x04\xce\x2d\x6b\xc1\x94\x5a\x58\x47\x97\x0e\xba\x58\x47\xa4\x8d\x3d\xc4\xfd\x0f\x1a\xb4\xad\xa3\x26\x38\x3c\x6a\x82\xc6\x26\x6b\x37\x5a\x32\xc0\x12\x04\x55\x08\x96\xd9\xdf\x8a\x6c\x4e\x52\x7e\xe0\xaa\x98\x3f\x76\x45\x45\xe3\xf8\xf3\x07\x08\xda\x78\x8f\x22\x6d\x9b\x8e\x91\x2d\x8c\x26\xd8\x9a\x77\x83\x53\x08\xba\x83\x7d\x08\x0e\x4d\xba\x62\x4a\x5f\xdb\x8f\x55\x09\x75\xe2\x85\xcf\xa6\xe5\x51\x3a\xa4\x79\xb4\x49\x27\xaf\x41\x77\xf5\xc2\xad\x3d\x54\x36\x5a\x2e\x67\xf4\x3e\x6c\xe5\x65\x74\x3e\xe6\xbd\x5e\xfe\x09\x9d\x4f\x7a\x31\xed\xcf\xdd\x50\x3f\x06\xdb\xed\x3d\x7a\x7b\x55\xda\x1f\xf6\x64\x2f\xae\x90\x65\xde\x8e\x8d\x49\x69\x22\x71\x4c\xc8\x7a\x28\xfc\x9c\xaa\xa8\x5f\xe1\xaf\x22\x73\x29\x03\x61\xd6\x91\xd7\x42\x6d\xe1\x79\xb4\xce\xb5\x76\xa0\xbe\xd9\x8c\x4a\x27\x7a\x00\xd8\x9f\x04\x2f\xa7\x02\x6e\xe3\x33\xdc\x31\xf4\x1b\x70\xe5\xd3\xfd\x78\xb0\xb9\x41\x7f\xb0\x2f\xc9\x03\x6c\x94\xed\x31\x4a\x2d\x06\x7b\x64\x52\x60\x1d\xf7\xf1\x20\xab\xf5\x6b\xeb\xc7\x73\xad\x00\xae\xdf\xdb\xd5\xcb\x60\xbb\xbd\x4b\x6f\xbf\x6e\x86\x13\xeb\xac\xf4\xab\x9c\x11\xb7\xe7\xa3\x50\xb4\x08\x2b\x25\xc8\x60\x68\xe5\xb3\xde\x60\xc0\x33\x94\xe1\xe7\x63\xae\x12\xb3\xc1\x34\x7b\xeb\xe1\x92\x6e\x83\xce\x21\x33\x5b\x3e\x20\x21\x30\x46\x76\x08\xbe\xb4\x42\x60\xdc\xba\x93\x09\xfa\x2a\xc9\xf3\xbd\xcc\x3f\x56\x2a\x3f\xf3\x53\x74\xac\x03\x1b\x21\xb8\x26\x10\xf4\xef\xd6\xb9\x1f\x4e\x65\x29\x0b\x45\xfa\x88\xd8\xc5\x23\xd4\xea\x53\x92\x92\xaf\xdd\xd8\x1a\x24\xe2\xfc\x40\x49\xac\x5f\x68\x96\x20\xc3\x8e\x47\x02\x3b\x1e\x7f\xa4\x84\xee\x5d\x05\x02\x27\x64\xb6\x85\x19\xc4\xe8\xa2\x8b\xaf\x8e\x1f\xc4\x20\x8a\x13\xaa\x65\xf3\x11\x84\x2a\x5b\xa4\x37\x5f\xf5\x1e\x5d\xa4\xf4\xf6\x0b\xc1\x90\x3f\x18\x4a\x30\xc2\xdc\x83\x51\xd5\x9c\xf8\xde\xae\x1b\xa0\x68\x9d\x7d\x6c\x85\x7e\x70\x54\x3e\xd6\xbb\x94\xb8\x28\x27\x76\xa8\xb8\xb5\x54\xd2\x77\x40\x69\xf9\xde\xa5\x77\x13\x13\x18\xad\x4c\x2c\x7f\xd7\xf1\x71\x44\x69\x87\xc3\x4d\x4e\x4b\x34\x4e\x9a\xa0\x71\xc8\x68\x89\x68\x19\x52\x3a\x82\x93\x12\xec\x5f\x24\xbc\x5b\xca\x3f\x48\x28\x3c\xd7\x15\x15\xcd\xaa\x71\x3d\x85\xd7\x96\xe9\x50\x7f\xa2\xfc\xc0\xf2\x9d\x09\x81\x73\x07\xc1\xe7\xdb\x47\x1b\xd1\xe4\xbc\x65\xdc\xc5\x2e\x79\x46\x83\x9d\xef\x94\xf8\x9b\x90\x20\x6f\xc6\x3a\xb9\xc6\x3a\xa6\x91\xc1\xbc\x1b\x68\xd0\xf2\x9c\x76\x17\x5f\xac\xa3\xfb\xa8\x08\xe1\xc4\x46\xdd\x14\x94\xbf\xe0\x3a\xb8\x8f\x5a\xb2\x6b\x2b\x52\x82\x63\x32\xca\x04\x54\xe6\xbb\xaa\x4b\xcb\xd5\x39\xb3\xce\x71\x71\x9b\x75\x08\xbe\x1c\xac\x48\x5b\x72\x6f\x63\x4f\x38\x7f\x8d\xba\x0f\x5a\xce\xfd\x46\x9b\xa3\x2e\x52\xe6\x2e\x04\x27\x9f\xdf\xf6\xc7\xd3\xee\x0f\xa3\x92\x41\x86\x1b\x68\x30\x74\x2f\x3e\x7a\x94\x2d\xce\xe0\xff\xd2\x86\xee\xbf\x80\xa0\x8a\x93\xb7\x7d\xfd\x96\x32\x30\xf4\xf6\xc6\xc0\xf0\x3e\xd3\x7a\x76\x86\x10\x30\x6f\xd4\x4c\x1e\xd6\x8d\xc4\xaf\x3b\xc9\x4c\x13\xd3\xfd\x49\x9a\x48\xf2\x3c\x90\x39\x9b\x10\xfd\x89\x96\x96\x26\x20\x2a\xb1\x85\x1b\x23\x85\x9a\xcc\x0b\x47\xc8\x4e\x2a\x7b\x7a\x59\x40\xcb\x72\x02\x30\xe9\xf5\x90\xe0\x84\x5f\x5c\x0e\xf2\x11\x02\xf3\xda\x74\x21\xb8\xdf\x9b\x21\xa9\xa0\xbd\xbf\x5b\xff\x35\x72\x8e\x47\x94\xd8\x6c\xc3\xa8\x5a\x9a\x18\x37\x0f\xd9\x28\xd1\x75\x95\x20\xa7\x3c\x3d\x4a\x66\xc7\x32\xe5\x58\xaa\x7c\xab\xf7\x80\xb9\xbc\xdb\x60\x51\x2e\x76\x6e\x0f\x42\xd0\xbb\x76\x61\x64\xae\x64\x08\xd0\x0d\x74\x8f\x09\x99\xd8\xb6\x81\xde\x4b\xb7\x6d\x54\x34\x07\xde\x6d\xa8\x6f\x01\xb3\x7b\xe2\x86\xfa\x56\x54\x59\xce\x30\x15\x87\x88\xa0\x01\xd7\x31\x50\xd4\x57\xb9\xd2\xeb\x7c\xde\xa2\xa2\x19\xb6\xc3\x2d\xdd\xa5\x00\x23\xd3\xe8\xa5\x63\xa3\xae\x1b\x49\x18\x33\x96\xd5\xe5\xc9\xe9\xbe\x7b\x99\x52\xba\x54\xfe\xc5\x41\x36\x7e\x26\x3c\x87\x59\x35\xfc\xe9\xb5\x11\xab\x1b\x52\x59\xb2\xbd\x3f\x97\x14\xfa\xe9\x82\x44\xcc\x6c\x8c\xf5\x72\x7b\x14\xaf\xdb\x47\x14\xfd\xb2\x9e\xca\x59\x9f\xa8\x33\x33\x53\x3f\xc8\x0d\x3c\x1f\xff\xf0\x6a\x1c\x13\x5e\x3f\x29\xf7\xc6\xe7\x3c\x1b\x1d\xb7\x62\x4e\x82\xe5\xcb\x10\x5d\x86\x28\xa3\xd8\xd8\xe0\xec\x4d\xb4\x54\xd6\x7b\x82\xab\xa9\x08\x59\x04\x23\xbf\x28\x72\xfe\x3e\x6e\x7e\xdc\xf5\x5d\x85\x86\x39\xfa\xbc\x9f\xb3\x06\xae\x7f\xa1\x06\xe3\x55\x2c\xf4\x57\xa5\xc1\x98\xe0\xa2\x5d\x3f\x40\x17\x5f\x1c\x1b\x45\x47\x9f\x1a\xc9\xda\x8a\x2a\x75\xbd\x3d\xa1\x25\xa3\x24\xbd\x71\xda\xae\x12\x7d\x0f\x98\xfd\x10\xd2\x3b\xa3\x97\x77\x87\x9c\x70\x1e\x52\xe4\x61\x54\xe8\xa3\xde\x10\x82\xc1\x1e\x8c\x8c\x89\xb5\xec\x61\x3f\x70\x49\xd4\xe0\xaa\xb9\x68\x49\x38\xb0\x51\x24\xbb\xb2\xf9\x05\x82\x72\x69\x1d\x46\x95\x52\x96\x91\x09\x1d\xd4\xca\x8a\x30\x4b\x3b\x32\x2d\xf4\xac\x0c\x4c\x47\xdf\xa2\x0c\x0c\xbd\xbd\x31\x30\x65\x8a\xa1\x7e\x3d\xdf\x52\xc9\xba\x0a\x6d\x22\x32\x40\x5e\xcf\xbf\x44\x37\x44\x56\xc5\xf0\x78\x72\x58\xdf\xe2\xea\x18\x30\x67\xac\x0c\x13\x55\x4e\x3e\x51\x32\x7d\x54\xe9\xd0\xbb\xb1\x72\x0c\x9f\x33\xc0\xcf\x4f\x94\xdd\xdc\x80\xd1\x72\x66\x24\x6e\x7d\x97\x5c\x6c\x78\x18\xf7\x12\xf9\xf5\xe1\x49\x13\x1c\x1e\x32\xd4\x91\xca\xae\xd9\x3f\xa1\x50\xf8\x01\xaa\x98\xab\xe8\x0f\xb2\x4a\x08\x03\x02\xe7\x1e\x82\xd2\xfe\xfa\xd3\xd3\x8a\x4f\x42\x25\xbf\x00\xa9\xd8\xe0\x40\xaf\x34\x35\x29\xd1\x5f\x47\x4d\xf0\xd7\x66\x13\xfc\x75\xd2\x04\x7f\x1d\xd2\xf4\x26\xb7\x4f\x38\xdc\x6c\x46\xcc\x93\x57\xfc\x5b\x12\x7f\x63\xb5\x02\x2c\xc3\x4a\xf5\x17\x5c\x6c\x8a\xf7\xc5\x14\xf3\x31\x2d\x7d\x85\xe0\x08\x7b\x74\xb2\x21\x04\xce\x48\x16\x53\x5e\x79\x75\x08\x3a\xfb\xed\x37\x02\xf7\x8d\xc0\xfd\x8e\xa0\x32\x8b\xdf\x37\x31\xb9\xc1\x1e\xa3\x09\x1a\x9b\x89\x04\x3f\x9a\x52\xb0\x19\x3f\x0c\xad\x5e\x42\x42\xe0\xcd\x58\x07\x71\xa4\x8e\x01\x81\xe0\xc0\x6b\x67\x24\xfc\x6f\x0c\xea\xdb\xfe\xfd\x0d\xf7\x6f\x1c\x54\x37\xd9\xbf\x81\xe7\x3a\x41\x56\x6e\x7c\xd2\x04\x5b\x87\x4c\x7e\x1c\x55\x6e\xf5\x56\x2a\x3b\x2e\xc7\xba\xf8\x57\xa4\x2e\x8f\x8a\xe6\x46\xd7\xf1\xf4\x7d\x30\xc4\xd7\xf4\x66\x54\xaa\x4c\x3d\x5e\x86\xc0\xb9\x81\xa0\xda\x69\x0b\x82\xe2\xd3\xdd\xa9\x01\x8e\x1a\xa7\xd2\x62\x47\x27\xc6\xe4\xb6\x7b\x72\xca\xe2\x6d\xdf\xbd\xf6\x4d\xf1\x22\xd1\x2a\xb2\x66\x6f\x5b\xed\x81\x4b\x28\x37\x1d\xcb\x85\x32\xd8\xf3\x4e\xff\x3c\x61\xa3\x92\x61\x73\xca\xcf\xa8\xf9\x7b\x24\x93\x7d\xdf\x2e\x5f\xeb\xcb\xc0\xbf\x6c\xd3\x1b\xa7\x36\x97\xda\x10\x5c\x8e\x20\x30\xdb\xeb\x99\x3d\x30\x83\x83\xd8\xf9\xb8\x2f\x21\xd6\x94\x01\x39\xfd\x3c\x7c\xae\xad\xf6\xb6\x4d\xdf\xb6\xe9\x0c\xf2\x36\x6b\x4c\xb6\xe5\x78\x21\xc1\xc3\x58\x99\x27\xcc\xd2\x36\x75\x5f\x32\x4b\x9b\x43\x10\x75\xd3\xe3\x9a\xf4\xde\xaf\xd5\xa4\xb7\x0f\x85\x6c\xe9\xbe\xd9\x86\xa0\x5d\x39\x85\x51\xc9\xc8\xb0\xbb\x5b\xfd\x8b\x23\xd4\xbf\x41\x6d\xd7\x4b\x48\x02\x26\x51\x3c\x16\xa6\xa3\x69\x2c\x54\xe3\xd4\xf9\x58\xd2\x6d\x60\x7e\xb8\xb1\xe9\x5d\xf6\xba\x48\xe2\x24\x8a\x6a\x9b\xce\x55\x88\x48\x2a\x04\x9f\x90\x6e\x44\x4b\x0d\xbd\x9c\xb0\xce\x89\x78\x83\x49\xc2\xcb\x95\xa7\x0f\xbd\xfb\x13\x17\x13\xa3\x6f\x41\x50\x3e\x3c\x85\x60\x79\xd0\x10\xb2\xf4\xa3\x18\x3c\x0c\xb7\xd7\x21\x58\x2e\x79\x10\x8c\x76\x20\xa8\x1c\x18\x22\xc4\xbd\x7d\x70\x00\x73\xa3\x17\xcf\x13\x15\x39\x49\xad\x1f\x0f\xdf\x40\xdd\xd3\xca\xd4\xc1\xb1\xf1\x3a\x41\xd1\x8b\x30\x03\x59\x68\xf7\xc1\xf5\x82\x8b\x7d\xdc\xf7\x5d\xf2\xac\x02\xc8\x67\xb9\xde\xa4\x9a\xbf\x5c\xdd\xfe\x0f\x83\x2b\x4f\x48\x42\x45\xa5\x95\x8c\x58\x8d\xed\xc4\x13\x74\x4f\x70\x9e\xe7\x1d\xe3\xcc\xb3\x56\x3d\x9c\x18\x61\x57\xee\x9e\x2c\xc3\x72\xe5\x09\xae\x19\xf6\x34\x9f\x77\x0c\xae\xbd\x7a\x41\x0b\x94\x4a\x33\x4e\x5d\x33\xaf\xe5\x89\x35\x76\xcd\xe2\x75\xbf\x51\xba\x33\x61\xff\xc4\x6a\x43\x7d\x3c\x9a\xf4\x86\x7b\xa4\x2f\x1c\xf7\x7a\xbb\xa6\x84\xee\xf5\xeb\xd2\xb7\x12\x5f\x76\x3e\xa9\x50\xde\x74\xb0\xcf\x48\xe1\xa8\x54\xce\xa0\xc0\x8f\x7d\x64\x73\xa3\xf4\xbd\xd4\x17\x2d\xf1\xe7\x29\x9d\x26\x4e\xfe\xa5\x44\x81\xfd\x9a\xd8\xf1\x1d\x7f\x07\xea\x36\xd8\xb8\x3d\xa0\xb7\x69\x27\x23\xe0\x5c\xc7\x9b\xe8\x53\xd7\x78\xc3\x0d\xbf\x03\x6e\xf8\x3b\x01\x1d\x63\x25\xc3\x6e\x7e\x74\xdb\xc1\x25\x6a\x65\x5d\x30\xaf\xe7\x74\xc1\x7c\xc6\x6d\x84\x2a\xc7\x77\x7a\x19\x98\xa3\x4a\x9b\xde\x5f\xb1\x11\xc1\xdb\x09\x43\xaf\xef\x84\x21\x63\x69\x62\x91\xbb\x3e\x47\x29\x2c\x68\xff\x66\x13\x24\x77\x11\xc0\x3f\x41\x33\x9b\x9b\xcd\xa8\x14\xea\x9f\x81\x49\xff\x94\x42\x60\xc6\xff\xa4\xc8\x32\xd9\xa3\xb8\x1e\x21\x1f\x79\x54\x20\xf0\xe5\x17\x09\x36\x6e\x56\x9a\x47\x41\x2c\x38\xde\x3c\xa5\xb8\x7f\x9b\x1d\x67\x3a\x4f\x30\x8f\xe9\x3c\x4b\xc7\xdb\x21\x70\x82\x70\xd6\xfb\xe9\xca\x58\xa2\xdf\x7e\x56\xb6\xef\xc7\x30\xe6\x91\x01\x41\x17\x86\x7f\x37\xd6\x8f\x18\xd3\x41\x2a\x36\xfe\xc6\xe8\xdd\x3e\x7d\x25\xb8\xf7\x25\xd0\xfb\x52\x35\xc3\xc5\x32\xff\xb5\x8b\x66\xe8\xf5\xa2\xdd\x46\xea\x93\x54\x3f\x6a\x46\x95\x25\x1d\x25\x4a\xe5\xa7\x44\xf4\xa5\x47\xa0\xf9\xbe\x11\x7e\xd6\x0f\x80\xb9\xbd\xbd\x4e\xef\x6f\x64\xec\xf3\x93\xb1\x95\x9d\xdf\x70\x59\x97\x96\xb2\xcb\x3a\x44\x01\x1e\xa0\x3e\xca\xa8\x48\xaa\x66\xec\x65\x97\x31\xba\x36\xcb\xbb\x97\x5f\xf5\x63\x60\xe2\xce\x29\xbd\xd7\x09\x04\x83\xa0\x0d\xc1\xfe\x08\x02\x87\xd9\xcd\x2f\xb5\x20\x18\x6d\x0a\x09\x65\x72\x3c\x57\xda\xd8\x3d\xba\x0e\x9d\x7e\xf4\x59\x52\x41\x55\x70\x26\x2e\x82\x71\xff\xf5\x68\x17\x98\xe1\xce\xde\x2e\xf0\x46\x53\x31\x56\x3e\x86\xf7\x28\x3d\xde\xa0\x5c\x11\xb4\x76\x39\x2a\x7d\xd6\xb7\x40\xe9\x13\x25\x2d\x84\x5d\x47\x54\x34\xdb\x37\xc7\x4b\x7a\x0f\x98\x5e\x75\xef\xb3\xde\x03\xeb\x77\xad\x4e\xb4\x9c\x3d\x6b\x61\x1b\xf5\x9d\x0e\xba\xcb\xe5\x91\xcb\x58\x77\xa7\x78\xe4\xc7\x5d\xaf\x86\xa3\x9e\xff\x62\xbc\xf7\xf6\x27\xbd\x0e\xee\x46\x23\x7a\x63\x11\xd3\x4a\x3b\x25\x21\x8f\x66\xc7\x97\x32\x29\xc5\x96\x21\xc4\x1e\xf7\xfb\x10\x1c\xd2\x1d\xb8\xde\x8e\x25\x22\x6d\x08\xbe\x50\xd8\x72\x6b\x88\x70\x69\xb7\xb1\xd8\x23\xfb\x24\x16\x8d\x7c\x1a\x89\x0a\x0f\xe2\x0a\x8f\x49\x26\xda\x1a\x5d\xc1\xc6\xa9\x5c\x8c\x89\x44\x62\x41\xca\x87\x4c\xd5\x49\xb1\xf5\x38\x0f\x5d\xa7\x99\x57\x5f\x3a\x92\x2c\x61\x5e\x6a\xa9\xc4\x14\xf9\x4f\x97\xaf\xea\x7c\x5f\x72\xf1\x26\x39\xff\x47\xa1\x95\xbf\x07\xf9\x14\x9f\x91\x9f\x40\xd9\x1b\x0a\xb6\xb7\x65\x3d\x7c\xc0\x3c\x81\x9f\x98\x66\x7a\x06\x68\x68\x34\x70\x18\xea\x2e\x58\x32\x47\xf4\x46\x01\x9e\x4f\xd9\x2c\x76\xb8\xe2\x7e\x5b\xf8\xba\xec\x8b\x27\xd5\xad\xa1\xf4\x8a\x26\x3e\x6d\xc6\x40\xb1\x1e\xbb\xa6\x70\x3b\xbe\x53\x99\x83\x63\x07\xc7\x3f\xbc\x85\x59\x90\xca\x7e\x72\x68\x62\x6f\x5f\xf6\x72\x9a\xbd\x0d\x3b\x89\xc2\x30\x6f\x21\xcf\x01\xf8\xa4\x76\xc9\x23\xb6\x0d\x3f\xd6\x9a\x24\x7d\xa9\xc7\x07\x5c\xcf\x91\xca\x93\x0c\x31\x1f\xbf\x39\x2c\x0e\xca\x2e\xed\x81\x9d\x49\xd1\xb7\x55\x07\x42\xf0\x85\xfe\xba\x75\x21\x38\xa6\x59\x83\xfa\xe4\x93\x24\x31\xb2\x45\x82\xb6\x73\xe0\x8a\x27\xd3\x09\x56\x3c\xff\xd5\x4f\x66\x7e\xc1\x26\x22\x33\x6b\xe4\xb2\x8d\xbd\x81\xeb\x3b\xfd\xbe\x9b\x17\xc5\x32\x5a\x22\x89\x51\xdf\x72\xc6\xa8\xaf\x34\xaf\x87\xe6\xa3\x42\x4e\x46\xd5\xac\x9f\xd5\x0e\x69\x3b\x88\xa0\xf7\xbb\xc4\xbd\x9b\x37\x9a\xe7\xf7\xd5\xfb\x3f\x10\x19\xa0\xfc\xb3\x8a\xfe\x19\x3a\xc8\xa3\xee\xbe\xa4\x7b\x7c\x16\x8d\x7f\x1e\x82\xce\xcb\xf7\x20\x29\x51\xda\x20\x10\x2c\xcf\x84\x5c\x7f\x6f\x57\x81\xd1\x72\x7c\x2e\xf9\x1b\x09\xf0\x3d\xad\x6c\xbc\x63\x1b\xc8\xc3\x44\x0a\xed\x31\xa7\x21\x40\xce\xde\x95\x14\xf9\xc6\xf3\x19\x03\x64\x37\x62\xfb\x3e\xde\x25\xa9\x21\xfe\x4f\xdb\xcf\x5c\x79\xa3\x1f\xda\x2a\x75\x7e\x88\x3d\xdf\x2a\xb8\x3a\x7c\x23\x47\x1f\xb9\x16\x0f\x71\x80\x3d\x7e\x5c\xfe\xcf\x2f\xc7\x07\x10\x08\x45\x12\xcf\xbf\x36\xc9\x55\x12\x02\xe6\xc7\x0c\xbf\xe6\x04\xaa\xa5\x0f\xad\xa7\xe2\x41\xe7\x04\xf9\x2b\xf6\x34\x9c\x75\x7f\x97\x85\xf7\x8b\xd6\x76\x13\xf7\xfb\x17\x1b\x4e\x70\xff\x24\x4b\x9b\x2e\x6c\x06\x68\x5f\x82\xda\x79\xde\x85\xbc\x7c\x4b\x72\xde\xee\xc2\x69\x73\xab\x37\xc4\xfe\x98\x05\xf7\x15\xdf\xa0\x1f\x59\x6c\x4f\x62\xc9\x37\x37\x90\xec\x1d\xae\x43\x50\xe7\x4b\xe0\xfb\x80\xaa\x4f\xde\xcc\xee\x1e\xbd\x0e\x1c\x62\x63\x42\xb0\xff\x44\x38\x35\x21\xf5\x5e\x04\x89\xa6\xa0\xa4\x0b\x87\x39\xe0\x65\xef\x47\x20\x53\xb2\xaa\x1e\xb4\x94\xb6\xd9\x21\x23\xb9\x86\x9f\x6f\xa8\xef\x31\x2b\xf0\xc4\x21\x68\x80\xec\x27\x5c\x7f\x99\x55\xf8\x02\x50\xea\x17\x44\xbb\xfb\x19\x5e\x65\x72\x91\xa2\xdf\x69\x05\xbd\xf8\x22\x0d\x6f\x9c\x1e\x0b\x12\xcd\x9d\x52\x36\x13\x8f\xd9\x28\x3e\x0f\x66\x29\x91\xa8\x95\xca\xbf\xe0\x8a\x8a\x1f\x48\x1d\x82\xe0\xe4\x58\xc8\x5d\x6f\x0f\x31\x04\xe6\xf0\x41\x2e\xf5\x4d\xe7\xf3\xda\x57\xe1\x8b\xe8\x7c\xb2\x81\x9f\x77\xae\x51\x3f\x74\x02\xb6\xda\x93\x38\x0c\x0c\x0a\x6f\x8a\x80\xbe\x42\x13\x14\xc7\x63\xa8\x40\xae\xbd\x4f\x4d\x0f\x4a\xe5\x52\x65\xbe\xab\xba\x34\x6f\xce\x39\xae\xa8\x68\x54\x77\x21\x04\x4b\x74\xb2\x9d\x9b\xbf\x67\x10\xf4\xd4\x52\xad\xfe\xb6\x11\x9e\x76\x23\x54\xb3\x46\x36\x9f\xd0\x00\x39\x36\x92\x0d\xc7\x24\xa3\xb1\x19\xda\x4f\xc9\xa6\x2b\x6c\x18\xcc\xa6\xeb\x39\xc5\xe3\xd1\x4a\x56\xc7\xf2\x29\x24\x18\x85\xdc\x75\x52\xb8\x4d\x1e\x6e\x8a\xc0\x61\x47\x4d\x50\xdf\x65\x7f\x36\xb3\x8e\x94\xcb\x10\xac\xb0\x7f\x2c\x98\xa2\x09\x4b\xb9\x57\x99\xdf\x2b\x2f\x60\x95\x2b\xdb\xe7\x1a\x4b\x4d\x53\xf2\xa3\xfc\xea\xce\xb2\xbc\x78\x36\x15\x45\xaa\xd3\x9c\x01\x34\x98\xa4\x0b\x5e\xbf\x72\xc0\xf1\x86\x41\x9f\x0f\x83\x96\x32\xe6\xf6\xbb\x98\x04\xa1\xdd\xbb\x7f\xbf\xe7\x86\x8e\x7f\xe3\xf4\xfb\x3f\xe0\x43\xf9\x30\x6f\x93\x61\x4f\x9e\x42\x93\xf2\x0c\xec\x51\xe9\x43\x1b\x82\xfd\x16\x04\x7b\x87\xb1\xda\x25\xeb\x9c\x49\x4e\x0d\x80\xe1\x29\x58\xb9\x69\xff\x9c\xf7\xf3\xa3\x45\xda\x77\x23\x08\xba\xbe\xfb\x93\x32\xf0\x8c\x2e\xe7\x95\xab\x3d\xdf\xe0\xc9\xef\xd3\x44\x94\x07\x4b\x1a\x2e\x09\x1c\x1b\xf7\xfb\x4f\xa1\x86\x7d\xf4\xf5\xfc\xd0\x22\x2b\x4c\x39\x3a\x19\xfe\xe4\xe6\xfc\x9d\x6c\x12\x9e\x73\x73\xbe\x71\x09\xcf\xb7\x39\xf7\xd0\xc5\x21\x1a\xb1\x43\x52\xd6\xd9\x39\x97\xe5\xa8\x7c\xab\xd7\x41\x89\xfe\x89\x0f\x03\x37\xee\x4a\x4b\x9e\xee\xf2\xe3\x3f\x8d\xec\x41\x2d\x7b\xce\x00\x65\x02\x3b\x55\x96\x67\x5a\x57\x46\x45\x33\xb8\xff\x78\x48\x6b\x6a\x6d\x8e\xe8\x9d\xb9\xa5\xa3\x9c\x05\x78\xe8\x09\x7f\x76\xe3\x40\x78\xaf\x57\x3f\x0e\x79\x62\x65\x99\x27\x22\xc3\xc0\x55\xb9\x27\xae\x7f\x51\x27\x5d\xdc\xc7\xfe\x64\xe0\x95\x28\x1b\x13\xe9\x75\xc5\x5c\x99\xff\x9a\x71\x9c\xa1\x80\x3b\x82\xbd\xa8\x9c\x0c\x0d\x60\x7c\x45\xa7\xa0\xd4\xae\x3f\xd2\xaf\xf3\x27\xa2\x2a\x4d\x78\x74\xce\xe1\x6f\x2b\xd9\x5c\xbe\xa0\x52\xff\x1f\x02\x33\xdf\x08\x9a\x27\x86\x99\x46\x25\x03\x6c\x1a\xc8\xc6\x8e\x9b\x0d\xf5\x31\xd0\x3f\x3f\xda\xe7\x9e\x87\xfb\x58\xd7\x97\xc1\x76\x7b\x8f\xde\x5e\x55\xc8\x8f\x76\x43\x1c\xb1\xb0\xfc\xd9\x98\x15\xfb\x63\x25\x7b\x14\x58\x03\x11\xd4\x0d\x51\xd4\x90\x62\xe1\x32\xa3\xfb\x4f\xba\x9d\x39\x6d\x92\x9d\x83\x6c\x26\xe7\x21\x1b\xd7\xa1\x83\xf5\x06\x30\xee\xeb\x0d\x7a\x2f\x0f\x08\x04\x2b\xc7\x43\x08\x36\xe9\x07\xed\x1a\x3c\xe1\x97\x3e\xd0\x5f\xdb\x10\x6c\xae\x43\xb0\xb2\x43\x20\xe8\x51\x7c\xc0\x0f\xe4\x77\x4b\x74\x25\xdf\xc3\xc8\xcc\x9e\xba\x41\x3b\x15\xfa\xd9\x33\x80\xa1\x5e\x9e\xf3\x00\x0d\x1e\x7d\xf0\x94\x1d\x44\xbe\x7b\xfa\x6b\x0f\x22\x8f\xa3\x0f\x4e\xa2\xe1\x06\xf2\x02\x87\x38\xd7\x21\x8e\x3e\x7c\x90\x0e\x00\x2f\x97\x33\xe7\x84\x44\x45\x73\x70\xd8\x6c\xea\x5b\xc0\xdc\x3b\x6c\xd1\x3b\x1d\xb8\x49\x9f\x89\x06\x0a\xd0\xc0\xf5\xc4\x79\xe2\x89\x6f\xde\xd6\x94\x67\xde\x93\x3b\x3c\xf0\x63\xf2\x3e\x5c\xc5\x22\x62\xa7\xfa\x68\xd0\xf7\x5c\xc7\xe9\xfc\x93\x43\xdc\x95\x2b\x13\xeb\x63\x84\x82\x3e\x22\xf9\x26\xfa\x15\x7d\xeb\x41\x13\xfd\x17\x3e\x92\xe9\x51\x06\xff\x2f\xbb\xa4\x5e\x13\xda\x7f\xe1\xd6\x1e\x2a\x1b\x95\xb3\x1a\x81\x06\x26\xee\xc0\x21\x38\x57\x04\xf9\x90\xcb\xc5\x4f\xdb\x0d\x3e\x11\xc9\x3e\xbf\xdd\x45\x7a\x22\x42\xb5\x6c\x40\xb0\xf2\xa9\x25\x48\xe6\x37\xea\xf6\x8d\xba\x7d\x46\x00\xbf\x9c\x55\xa0\x37\xb0\xe7\xb4\x51\xe6\x3c\x03\x46\xc3\x9d\xe8\xfe\x34\x0d\xf7\xd4\x57\xf6\xb4\x5c\xf3\x72\x04\xc1\x6d\x58\x7a\x83\xd9\xbf\xbc\xb5\x07\x61\xf6\x44\xb0\xea\x06\x0e\xfa\xa8\x47\xa9\x84\x29\x4d\x6e\xbe\x06\xf7\x7b\xba\xdb\x44\x87\xcb\x44\xb0\xf3\x9a\xef\xbe\x06\xe5\xeb\xf7\x21\xef\x25\xa5\x2d\x1f\xd8\xb8\x61\x03\x82\xab\xf5\xdf\x06\x98\x18\xe5\x09\x60\x72\xe7\xd8\x2e\x77\x0a\x98\x3c\xc0\x73\xe3\xa4\x19\x55\xeb\x7a\x3d\x3d\xc0\xb3\x92\x3d\xc0\xf3\x39\x23\x90\x3f\x44\x35\x76\xb7\x08\x0f\x92\x55\xba\x6b\x43\x40\xd1\x70\x75\xb4\x0e\xc1\xd1\x1e\x04\xb8\xd2\x16\xf1\x46\x8c\xc3\x4e\xe7\x0d\x2e\xfd\xf2\xd6\x1e\x84\x4b\x26\xcc\xca\x6d\x28\x8b\xdc\x17\x47\x86\xd4\x8f\xa4\x88\x89\x3b\xfa\x96\x1c\x20\xee\xc5\x42\xe1\x9b\x83\xdd\x5e\x47\xef\x01\x73\xaf\x59\xa7\xf7\xee\x67\xe3\x6f\x31\x2d\x6f\x94\x56\x2e\x70\xac\x1a\x59\xe0\xe8\x12\x3b\x70\x49\x44\x49\xac\xc9\x20\x40\x3c\xb2\xd7\x77\x42\x00\xfd\x86\x61\x7e\x62\x69\x8f\xb9\xe3\x6f\x43\xb0\x71\xbb\x2f\xa2\x35\x8c\xea\xee\x44\x00\x8b\xb9\x12\xbb\x71\x54\x1e\x0a\xa0\xf7\xe9\x1a\x0c\x0d\x7e\xb2\xeb\x91\xf9\x03\x81\x76\x9e\x30\x90\xfd\x8f\x29\x32\x9e\x88\x61\x7b\xb0\xb5\xd2\xc6\xf0\xb9\xda\x78\x11\x86\x92\x18\xaf\x06\xcc\xe1\xd3\xdf\x0d\x06\xbd\x08\x98\x2b\x67\xec\xc9\x1a\x2e\x09\xb0\xe7\xe1\xfb\xac\x44\xf9\x83\xde\xfd\x47\xcb\x94\x5f\x13\xbe\x7e\x4d\x44\x5b\x79\x82\x99\xa4\xab\xe7\xc6\x69\x63\x11\x14\x26\x55\xe3\xd0\xff\x25\x48\x09\x38\xfe\x17\x14\xa1\x51\x82\x94\x98\x3b\x04\xec\x8f\x40\xa0\x3c\x02\x30\x45\x0d\xc2\xb8\x3f\xef\xaa\x94\x2a\xa5\x6a\xa9\x2a\xfe\x2e\xf1\xdb\xbc\x57\x54\x34\x83\x2f\xc7\x1d\x7d\x05\xf8\x5f\x6d\x08\x96\xaf\x6c\x9a\x66\x01\xec\x8c\xb6\x1d\x52\xa0\x17\x4a\x29\xc7\xa3\x29\x63\x14\x02\xc3\x85\x0f\xa5\xae\x1b\x21\x38\xd9\x93\x13\x9d\x7a\x5c\x5b\x92\x6b\xbf\x1e\x82\xd2\xd5\x69\x08\x46\xa7\x21\xd8\xbc\xa6\x8f\x57\x4e\x43\x30\xb4\x43\x70\x35\x82\xc0\x1e\x18\x42\x43\x56\x0d\xe8\xb0\x77\x5a\x21\x28\xd1\xc2\x57\xa7\x10\x94\x6f\xd6\xb9\x35\x21\xc3\x09\x83\x41\xc8\x41\xf8\x4e\x23\x64\xe1\xa5\xca\xb6\x01\x41\xb8\x27\x23\xdc\xa3\x7d\xfe\x64\x30\x84\xc0\x5c\xde\x83\xc0\x39\x5c\x87\x20\x8c\x5f\xdd\x31\x5c\x3c\x75\xdc\x7a\x72\x86\xf9\xed\x90\x3f\xf1\x99\xde\x8e\xed\x28\x67\x18\xe3\xcd\x34\xd8\xd3\xbc\x41\xa1\xe6\x28\xc1\x22\x42\x66\xa3\x39\x36\x5d\xcf\x25\x81\x1b\xc5\xe1\x54\x85\x9b\x48\x94\x3d\xa2\xf3\x31\xd7\x6f\x69\x51\x92\x08\xa9\x2b\xcd\x2f\x71\xcc\x2c\xe3\x24\x04\x06\xa1\x6b\xaf\xb3\x09\xc1\xc9\x27\x3a\x65\x1e\x37\x83\x4d\xe3\x88\x65\x66\x33\x09\x26\x3d\x9d\x78\x14\x21\xf5\x13\x94\xd7\x8c\x4a\xca\xbd\x86\x74\x8a\xa9\x94\x8b\xc3\xa0\x9c\x3a\xae\x69\x51\x63\x33\x03\xa6\xfe\x9e\x34\xe0\x8b\xb4\xf6\xa6\x5e\x78\xed\xa4\xda\x8b\x50\x83\x95\x0c\xf0\xdd\x47\xbe\x8f\x42\x86\xcb\x13\xaf\xa4\x15\x3d\x7c\xd5\x31\x19\xa3\xa2\xd9\xdb\x0f\x0f\xf4\x10\x98\xd5\xd3\x36\xbd\xbf\x6d\xca\xb7\x4d\xf9\x3b\x6f\x4a\x33\xab\x65\xdf\xc7\xb7\x17\x7f\xb9\x5e\xef\x09\x49\xa2\xdf\xd5\xce\x36\xa1\x8a\xaa\x46\x30\x63\x5d\x31\x32\xe1\xa1\x03\x99\x5f\xec\xf0\xc3\x27\x2b\xca\x3d\x9b\xa6\x49\xa5\x97\x0a\x05\xf1\xea\xc0\xe4\x9b\x91\xf1\x1b\x48\x7e\x61\x90\x9c\xf5\x68\xd8\x77\x86\x4e\x57\x28\x07\x1e\x82\xc8\xaf\x00\xc8\x66\x58\xc8\x2f\xa4\x05\x41\xe9\x0a\xcb\xf0\x64\xe5\xfe\x8d\x9c\x79\xdb\x3b\xcf\xb8\x77\x8c\xec\xb1\x39\xfb\xee\x00\xf3\xb3\xc2\xc4\xf9\x60\xeb\x47\x4d\xb0\x3e\x15\x44\xa0\x05\x01\x62\xff\x78\x22\x1b\x44\xe0\xc1\x78\x35\x2f\x1f\x45\xe0\xe8\x14\x82\xe5\xdb\x13\x08\x9c\x75\x08\x3e\xd3\x85\x52\x31\x1f\x8c\x09\xf2\x4b\x10\x98\xdd\x7f\x0b\x25\xf0\x6a\x77\xc9\x8b\x84\x12\x58\x9e\xd8\x88\x9e\x4b\x2e\x63\x1f\x41\x26\xa1\x8f\xcc\x15\x7d\x8b\x89\xe3\x1f\x7b\x2e\xee\x81\xde\x03\xdb\xed\x5d\x7a\x7b\x55\x8e\x32\xd9\xb3\x71\xcd\x3d\x08\xcc\xa1\x70\xd4\x28\xc1\xc9\xe1\x08\x2e\x2f\x36\x51\xcf\x0d\xd0\xfb\x75\x1c\xf6\xd1\x65\x24\x02\x71\x81\xc6\x49\x13\x34\x0e\x53\xfd\x18\x37\x8a\x4a\xfe\xcd\x1d\x50\xfe\x87\xaf\x9f\xf1\x87\xf6\xa6\xf6\x87\x30\x72\x36\x21\x70\xee\x20\xf8\x7c\xfb\x46\x80\xff\x66\xb0\x6b\x2a\xe2\xe3\xdf\x1e\x76\xcd\xda\xa8\x1b\x98\x04\xd8\x7b\x99\x8d\xfa\xdc\x61\x4e\xde\x36\xea\xf7\xb7\x8e\xfb\x7b\x6d\xd4\xd7\xb5\x8b\x7e\xe5\x46\xdd\xc7\xb7\x17\x47\xa8\x8f\x07\xbf\x12\xa9\xbe\xed\xd5\xbf\x2f\x52\x7d\x08\x32\xbc\xed\xd5\xef\xed\xd5\x83\x2b\x87\xa0\x2e\x9a\xf2\x03\x68\x6c\x36\xa3\xea\xd7\xc4\x71\xb4\x22\x3b\x8e\x32\x3f\x80\x97\xf6\x1a\x35\x47\x9f\xf7\x73\x66\xff\xfa\x57\x58\x89\xfd\x93\x3d\x8f\xcd\x6c\x5c\xba\x43\x44\xba\xc4\xf1\x82\x90\x74\x59\x74\x57\x66\x32\xcd\xcd\xa5\xd9\xc1\xef\xcc\x7e\x9a\x89\x4a\x8f\x26\xa2\xbc\x96\x84\x69\xbf\x08\xf4\x5a\x91\x63\xbd\x1a\x65\xa3\xf2\xe0\x95\x88\x61\x96\x57\x9e\x50\xa8\x13\x15\x8d\x53\xa7\x01\xc1\x21\xf9\x28\xd9\x29\xff\x1e\x11\x5f\xf9\x79\x77\xf3\x02\xd7\xb7\x88\xaf\xcf\xb6\x41\x26\x9c\xad\x0e\x91\x87\x06\xc8\x73\x5a\xdc\x54\xf2\x50\xfc\x8f\xcd\x24\x4b\x51\x69\x4b\xdf\x02\xa5\x2d\xfd\x33\xfd\x53\x07\xa5\x50\xb8\x16\x94\x28\xc1\x41\x36\x8f\xaf\xf4\x1e\x38\xb9\x76\xa1\x6e\x83\x6b\x44\x4e\xf5\x1d\x60\xdc\x7f\x3d\xdd\xd7\xdd\x49\x7d\xf1\xe1\xa5\x8b\x89\x73\x27\xd3\x59\x09\x6d\x25\x48\x2a\x68\xc6\x6a\xd4\x19\x74\x4c\xb9\xde\x37\x40\x9d\x7e\x4a\xbb\x05\xc1\xd1\xc9\xf5\x29\x5b\xb3\x51\x39\x1b\xbe\xe3\xd0\xf5\x82\x22\x0a\x8b\x87\x9e\x43\x6c\x1c\x1d\x1e\x4a\x86\x23\xe5\xfd\x67\x35\x1b\x89\x8a\xe6\xf2\x97\xed\x16\x30\x3f\x90\x46\x4b\x44\x19\x99\x97\x0e\x62\xd8\x62\x66\xd0\xa4\xbc\xc3\x22\xcb\xee\x23\x4b\x38\x55\x32\x35\xb2\xed\x72\xe9\xfb\xeb\xa7\xe4\xec\xff\xc6\x8b\xde\xcc\x1e\xef\xfd\xc5\x71\x2f\xd6\x3d\x44\x6c\x37\x13\x89\xac\x7c\xa3\xdb\x73\x2e\x0e\x1e\xe2\xc5\xd7\x1b\x60\xbb\xbd\x47\x6f\xbf\x50\xba\xb8\xbf\xde\x86\xa0\x5d\x39\x85\x51\xc9\xc8\xee\x38\xd7\x0b\xdc\x8b\xaf\xb8\x7f\xe9\x66\x43\xd9\x74\x58\xac\xb6\xef\x87\xb2\xe1\x5f\xb9\xa3\xbb\x60\xbb\xbd\x4b\x6f\xbf\xee\x2b\xa3\xd2\x52\xf6\xdb\x42\x4c\x3f\xee\x8b\x63\xbb\x91\x84\xd4\xa3\xb2\xe4\xfd\x04\xa3\xa2\xb1\xd4\x3f\x86\x60\xe9\xb4\xc9\x70\x25\x05\x49\x19\x38\x11\x92\x00\x5d\xd4\x3d\x4c\x90\x1f\x1d\xa5\x2b\x81\x8f\xd2\x47\x7d\x17\xc4\x2e\x55\x11\x07\x4f\xd9\xf1\x79\x66\x5f\xbf\xa8\x68\x5e\x9b\x57\x97\x3a\x06\x9d\x4f\x75\x7a\xab\xf4\x08\xed\x93\xf1\x75\x44\x7f\x5d\x7d\xa9\xb3\x5f\xc3\x16\xfd\x65\x18\x74\x63\xb8\x74\xc4\x66\xa6\x86\x2d\x91\x22\xdb\xa7\x10\xb8\x43\x08\x5a\xfd\x11\x04\x3d\x17\x82\xcf\xd8\x15\xb4\x68\x62\xa8\x9b\xda\x58\xe7\x18\x6f\xa4\x46\xd4\x73\xda\x73\x64\xb2\xfd\xb8\x91\x6f\xde\xc9\x34\xb3\xf2\x33\xaa\x9a\x01\xe0\x1f\xb3\x27\x66\x1e\xbb\xe9\x28\xb0\xd4\xc4\x31\xc5\xf9\x7d\x7b\xec\x70\x4c\xb6\xe4\xc6\xd6\xf7\xbc\x25\x0a\xa3\x3f\xd2\x47\x5b\x7b\x93\x80\xf0\x96\xf0\x44\x99\x82\xf5\xfa\x30\xc3\x3a\x7d\x41\x0e\xb9\xbf\xf8\xe2\xdc\x60\x6f\x32\x0e\x8a\x1c\x03\xe5\x55\x19\x04\x7c\xce\x31\x08\x88\x63\x9e\xbc\x19\x04\xbc\x89\x08\x9f\x95\x48\x58\x2e\x9b\x99\xed\x43\x7a\x0e\xb9\xd8\x21\x7d\xcc\x0f\x06\xe1\x7b\x68\x93\x6f\xa4\xad\x23\xca\x26\x56\x63\xd6\xf0\xb1\xd1\x4d\xca\x4f\x19\xfd\xe4\x66\xd3\x86\xa0\x87\xc3\xdf\x80\x0b\x7c\x5b\xeb\xaf\xa3\x89\xc8\xcc\x1a\xbf\x7c\xc1\xb6\xd3\xc1\xd9\xe8\x94\x57\x94\xdb\x7b\x54\x74\x4a\xae\x72\xdf\x62\xe4\xe2\xde\xd6\x2f\x25\x17\x1f\xa9\x72\x9f\x60\x0f\x70\xd7\x21\xa9\xcc\x71\x42\x29\x10\x55\x4f\x92\xf8\x23\xd5\x94\x7f\xcd\x1f\x92\x07\xbd\xed\x2b\x51\xd1\xac\x6f\x56\x0c\xdd\x05\xe1\x36\xa6\x37\x86\xfc\x7c\x73\xef\x71\x06\xb4\xd5\x6a\x76\xff\xa6\xa4\x83\xbd\x97\x49\x25\xbb\xbb\x51\x92\x74\x02\x9c\xf2\x60\x19\xf2\x68\xbe\xe7\x70\x74\xa7\x29\x7e\x58\x7c\xdc\xaf\xc8\xc8\x86\x94\xfc\x82\x7d\xb7\x1f\x06\xf8\x59\x41\xef\x4f\x82\xe1\xa8\x78\x44\xea\x10\x7c\x3c\x39\x7a\x03\xbd\x6f\xa0\x77\x6e\xd0\x6b\xae\x48\xeb\xfc\x08\x91\x00\x79\x78\x90\x61\xd0\x4b\x1b\x7a\x63\xbe\x58\xb3\x0c\xe4\xde\xf6\x75\x9b\x82\x5c\x7a\xfb\xc5\x72\x88\xc8\xcc\x8a\x20\xe8\xe7\x39\xa8\xeb\x3e\x9a\xbb\x2e\x3d\x3f\x7f\xfd\xaa\x38\xf1\x95\xf5\x11\x04\x57\xf4\xb1\xbb\xff\xc6\x92\xff\x8d\x58\x72\x60\xec\xb7\x26\x13\xa3\xd6\x77\xd5\x7a\x79\xee\x43\x8f\x2e\xc1\x8f\x00\x7e\xca\xa2\x51\x35\x2b\x69\xa7\xfb\xdb\xbd\xd8\x74\x07\x0e\xa1\x9b\x7c\x33\x15\xb4\xd3\x9d\x5e\x62\x0a\xb7\xa8\xbc\x25\x76\x7a\x39\x8c\x65\xab\x29\x12\x2d\x1b\xe5\xa8\x68\x04\xc1\x55\x0f\x18\xfd\x4f\x8d\x1e\x83\x32\x55\x4a\xab\xed\xb5\x42\x60\x6c\xb8\x21\xb8\xdf\x0b\x81\xf1\xa5\x1e\x82\x5b\x9a\xf8\xdc\x08\xc1\xdd\x88\x26\x60\x08\xee\x4e\x43\x60\x1c\xd6\x43\x60\x94\xae\xd6\x21\xc0\x10\x46\xe6\xca\x44\x0f\xdd\x8b\x43\x14\xf6\xb3\xb1\xd7\x4b\x55\xdd\x7f\x74\xec\xf5\xc7\x5f\x1c\x3c\x7f\xd1\x6f\xc1\x76\x7b\x97\xde\x7e\x00\x3c\x0f\x9b\x6d\x08\x0e\x4f\x9f\x81\x22\x66\x4f\xf6\xe2\x0a\x59\x66\xfa\x6a\xb3\x25\x12\x59\xc7\xfd\xe9\x08\x0d\xb7\xfb\x3c\x6c\x12\x6b\x2b\x69\x34\x21\xb1\xb3\x51\x1c\x68\x85\x1f\x92\x3e\xd3\x7a\x76\x86\x10\x50\xf0\x97\xcd\xc3\xba\x71\x1b\x87\x0d\x48\x32\xd3\xc4\x74\x7f\x92\x26\x92\x3c\x0f\x64\xce\x26\x44\x7f\x26\xe3\xbd\x1d\xd9\xae\x87\xfd\xd6\xbd\x1f\x92\xb6\x6c\x82\x0c\x16\x21\x8c\x0c\x4f\xff\xcc\xcd\x90\x81\x58\xc6\x2f\x8e\x8b\xa2\xa2\x89\x2a\x27\xb7\xfa\x32\x30\x47\x15\x4c\xef\xfc\x5c\x0c\x7b\x37\x01\xc0\x0f\x1e\xa2\xf1\xf0\x39\x1b\x4f\x5d\xb6\xf3\xc8\x63\x40\xe6\x38\x7c\x24\x3f\xff\x0f\x17\x7c\xf4\x49\x25\xbf\x41\x4b\x0f\x15\x8c\xca\x15\x99\xf1\x3f\x72\x82\xde\x74\xc4\xd5\xd9\xe7\x66\xce\x71\x68\xa6\xb8\xca\x95\xea\x0b\x5e\xbf\x45\xdc\xd6\xb7\x43\x33\x5f\x31\x5f\xf6\x12\xac\xdf\x4a\xd6\xb5\xe3\x28\xb8\xf8\xe4\x5e\x12\x9f\xbb\x9d\x6d\x36\x41\x72\x17\x2e\x68\xfb\x9b\x9b\xcd\xa8\x14\x52\xa4\x43\xff\x88\xa8\x54\xec\x1f\x0b\x4c\x35\xc7\x35\x81\x3e\xca\x95\x67\xc1\x4a\xd5\x97\xc1\x7c\xcb\xae\x13\x50\x8c\x57\xa6\x5b\x85\xac\xc7\x01\x88\xba\x03\x71\xe8\xcb\xa7\x69\x49\x97\xc4\x72\xcc\x91\xfa\xe9\xb2\x79\x6f\xe1\x01\x04\x78\xf7\x94\x76\x9c\xfd\x76\xae\x67\x72\x28\xf9\xa1\x90\x92\xc4\xd2\xf1\x76\x08\x9c\x20\x9c\xf5\x7e\xba\xb2\x94\x33\x7c\xbe\x18\x03\xaf\xc3\xd3\xfe\x19\x5b\x9b\x5b\x6e\x47\x8c\x0c\x70\x3c\x81\x19\x53\xb6\xbf\x1f\xf0\xb6\x4f\x5f\x09\x64\x7d\x11\xc3\xb9\x09\xc9\xd6\xad\xd3\x09\x2e\x36\x42\xcf\xc3\x24\x98\xa9\x2b\x58\x6a\xe9\xbd\x3c\x5d\x41\x8e\x5e\x80\x6b\x03\xca\x0d\x7d\x0b\x84\xdb\x6d\x7a\x63\xd0\xed\xf8\xe3\x50\x96\xd5\xb3\x1d\x97\x27\x9c\xc8\xa6\x1c\x3f\x5e\x95\x93\x91\x5b\x33\xb2\x8e\x61\x63\xc8\x1c\xa1\x65\x93\xd9\x26\xee\x86\xb6\xd3\x45\xfd\x21\xca\x04\xdf\xac\x34\xf4\xcf\x13\xc1\x37\xa3\xa2\x71\xf2\xf1\x63\x8b\x32\x23\x5b\x4d\x9b\xde\x33\x10\xe8\x23\x1d\xe8\xfa\xde\x54\xac\xff\xe6\x65\xd8\xc7\x49\x40\x6d\x76\xea\xd4\x48\x5f\x9e\xf3\x70\xad\x27\x60\xc9\x51\xa5\xe9\x52\x74\x6a\xec\xaf\xd3\x7b\x2e\xd4\xff\xdd\xb6\xe2\xab\xd9\x27\x2f\x13\x1e\xac\x9a\x5d\x4e\xa4\x8d\xbd\x8b\x75\x74\x1f\xc5\xa7\x8f\x88\xc8\x17\xd2\x19\xc1\x52\x00\x0c\xf3\x79\x4e\x96\xfa\x11\xaf\x02\xf3\xba\x72\x44\xf7\x32\xda\x97\x62\x5f\x9c\xee\xaf\x3f\x80\xf2\x7e\xf7\x50\xcc\xbf\x23\xa2\x7b\x35\x4b\xff\x17\x20\xba\xaf\x88\xd8\x6e\x78\x83\xbd\xef\x1d\x92\xfb\x0a\x8c\xc8\x7e\xca\xf8\xec\x00\x66\x30\xae\x10\x24\xfc\x82\x30\xf0\x8f\x6e\xec\x9f\x49\x6d\xbf\x01\xa1\xbf\x31\x10\x9a\xb0\xd8\x3f\xb9\x74\x02\x7c\xe9\x7a\x3e\x8e\xfe\x3a\x6a\x82\xbf\x36\x9b\xe0\xaf\x93\x26\xf8\xeb\x90\xa6\x37\xf9\x61\x92\x87\x9b\xcd\x88\x09\x27\xc5\xbf\x25\xf1\x37\xf1\xd7\x2d\xc3\x17\x95\x49\xa6\xb2\x49\xb3\xd2\xdc\x8f\x85\x15\x6c\x0f\x97\xbe\x42\x70\x84\x3d\x0a\x66\x20\x04\xce\x48\xf6\xe2\x2a\xed\xd7\x21\xb8\xf1\xda\x6f\x7b\xe4\x6d\x8f\x7c\x77\x8f\xc8\x8c\xdb\x89\x43\x88\x33\xc4\xdd\xef\x5a\x7b\xff\x9e\xb8\x9a\x32\x6e\x3b\x0e\x47\x7b\xa5\xfd\x4d\xb1\x9f\x3e\x21\x11\x1d\x1e\x6d\x64\x4e\xc8\x0c\xd6\x33\x46\x02\x33\x11\x29\xdb\x67\x90\xee\x15\xf7\xc1\x7c\x3f\x88\xb6\xb3\x7c\x77\xd5\x11\xa7\x62\xb3\xc4\x0f\x28\xd5\x7e\xb0\x84\x74\x72\xfe\xb3\x95\xfd\x09\xa7\xb4\x1f\x2d\xf1\xd4\xad\xbd\x81\x9a\xd9\x1c\x77\x35\xc3\x13\xfc\x85\x7a\x61\x80\x02\x8e\x8b\x13\x3c\x2c\x2b\x0d\x65\x44\xfc\xb8\xa3\x1a\x5f\xe8\x62\x1a\x43\x43\xc2\xc0\xaf\x52\x63\x48\xde\x34\x86\xaf\x76\x53\xbc\xc8\xbe\xcb\xf8\xa4\xfc\x85\xfb\x7d\xf7\xb6\x47\x9c\x0e\xb7\x8b\x66\x12\x67\x21\x6d\x6e\x6c\x8a\xb0\x18\x30\x95\x37\x27\x61\x31\xbe\x1f\xb1\xe0\x79\xae\xa8\x68\x0c\xdb\x75\x08\x2e\x9d\x3b\x49\x88\xfd\x7b\x44\x2c\x78\xdb\x03\xaf\xa3\x89\xc8\x58\xe1\x64\x2e\x09\x90\x67\x07\x74\x1f\x6c\x20\x1f\xdf\xb3\x1d\xb0\x08\x97\xc1\xa2\x61\x44\x10\x14\x97\x21\x28\xb6\x64\xdd\x84\x79\x4d\x31\xfb\xe6\xd5\x11\x04\xcd\x15\x08\xca\xf0\x10\x82\xdd\x3d\xe1\xf4\x5a\x1a\x18\x30\x32\x60\xb6\xde\x4d\x74\xe3\xf8\xa2\xde\x25\xb0\x08\x2b\xb4\xde\x25\x08\x8a\xb1\x9b\x24\xab\xf7\xe6\xde\x85\xc0\x39\x0d\x20\x40\xfd\x2b\xda\xc2\xd2\x0d\x04\x5f\xd7\x21\x28\x9d\x10\x08\x76\xf7\x61\xb4\x34\x59\x6f\x38\x70\x49\xb0\x79\xec\xdd\x38\xfd\x3e\xdf\xba\x8b\x06\xa4\x95\x23\x5e\x71\x54\x3c\x86\x2e\x04\x76\xe7\x1a\x82\xd6\x87\x01\x8c\x96\x27\x6a\x68\x20\xfb\x3a\x44\x9e\x83\xa3\x3a\x3b\xf9\x91\x1b\x58\x42\xf6\xed\x45\xc4\xbe\x1c\xc4\xdf\xcf\xa2\x28\x3c\xc3\x55\x8a\x8a\xe6\xca\xd6\xb2\x50\x6b\x97\x8f\xe8\xce\x43\xf7\xf7\x10\xec\xdd\xf8\x31\x15\x48\x89\xa9\x2f\x94\xc8\xba\x75\xa5\xc4\x31\x14\x89\x3d\x4a\x66\x6d\xc0\x38\x54\xa0\x9d\x97\x60\xa5\xf2\x5f\x3d\x90\xc8\xb1\x87\x9a\x91\x9b\xf6\x83\xe5\x09\xea\x52\x82\x75\x31\x93\xe0\x35\x4e\xd0\xc0\x0f\xa7\xf2\xa8\xe6\x99\xa9\x94\xf8\x74\xdc\xc7\xb6\xc1\xfe\xa0\xa4\xec\x0c\xa2\x3c\x32\x26\x17\xd1\xad\xef\x12\xb1\xbe\xab\xf1\xfa\xae\xc6\xeb\xdb\x8c\x8a\x1b\x5b\x2e\x04\x66\xe7\xbe\x07\xa3\x2a\x5d\x81\x87\xc8\x76\x3a\x8e\xfd\xbe\x1e\xda\xbd\x3e\x22\xed\x68\xff\x7f\x1a\x4d\xb0\xff\x3f\x47\xc9\x9f\xcd\x66\x54\x6c\x85\xa0\x68\xd3\xff\x10\x14\xdb\xb1\x31\x7f\xfe\xf5\xfc\x66\x22\x0f\x5e\x51\xd1\xf8\xb8\xf1\x35\xe4\x56\xa2\x82\x45\x7c\xe8\x44\xb5\x32\x09\x29\xd3\x90\x49\xf5\x5b\x34\x4b\x3d\xa4\x30\x7b\xbe\xd4\xf5\x5e\x08\x4e\x1a\x22\x21\x5e\x1a\xad\x10\xec\x34\xc4\x6e\xf8\xb1\x25\xff\x14\xa5\xae\x73\x58\xb7\x89\x14\x8b\x73\xc5\x96\xd9\xcc\xd4\xe3\xcb\xfe\x4c\x6b\x2c\xf5\x7c\xfb\xf2\x69\xca\x3e\x6a\x4f\x3f\x6b\x4f\x23\x43\x04\xbd\x48\x01\xc1\x21\xea\x0f\xb0\xc7\x00\x01\x37\x88\x2f\x33\xa3\xf8\x38\xd6\xd5\x84\x51\x7c\xe9\x89\xf4\xee\x36\x72\x21\x20\x9b\x10\x18\x37\x6d\x7e\x32\x3a\x4b\x18\x4b\xa3\x07\x18\x2d\xe4\x13\x6e\x91\x7e\xc5\x2c\x1a\xca\x0f\x79\x97\xbc\x79\xa3\x7c\x3f\x40\x44\x79\x82\xb0\xf8\xe2\x06\x97\xd8\x43\xf1\x5a\x88\x84\x0d\x46\xd4\x3d\x70\x61\x64\x94\x26\x72\x1f\xdd\xbb\xb7\x48\x20\x10\x9a\xb7\xc8\x33\x17\x6f\x7c\x08\x23\x73\x22\x73\xd3\x73\xfb\x7d\x91\x99\xfe\xa7\x0b\x0c\x82\xe2\x13\xb9\x5c\x44\xc6\x30\x74\x21\xb8\x6c\xff\x86\x06\xda\xaf\xc5\x14\x7c\x62\xc2\xbe\xba\x7e\xe0\xf6\x62\xfa\x80\xd3\x06\x6c\x7a\x83\xab\x3a\x8c\x4c\x0a\x44\xb6\x42\xcf\x1d\xe2\xf7\x07\x7e\xdf\x8d\x36\xb6\x9a\x60\x63\xeb\xa8\x19\x15\x8d\x78\x5a\x5f\xd1\x15\x15\x4d\x74\xdb\x80\xe0\xf3\x00\x82\x93\xaa\x0b\x41\x65\xd8\x11\xe3\x31\x4b\x9a\x79\xfb\xc9\xfe\x71\x39\x69\x3c\xda\xa3\xa1\x1d\x43\xe0\xe7\xf3\xab\x78\xf3\xc9\xf8\xdd\x5a\x7a\x70\x23\x56\x4d\x2e\x5d\xf5\x1d\xf4\xfe\x8b\x73\x8f\xda\x97\xcc\x3a\x8e\xc2\xd8\x62\xa9\xaa\x7f\x4e\xe0\x6c\xf3\x66\xb3\xaa\x7f\x8e\x2a\xe2\x6c\x5a\x9a\xbf\xde\x1f\xa0\xe0\x5e\xe4\xaf\x08\xc2\x7e\x29\x2a\x56\x96\xf4\x06\x25\xec\x39\x81\xbf\xc4\xc5\x40\x39\xd7\x43\x6e\xb6\x51\xd1\x38\xb4\x59\x45\xf8\xd8\xa5\x37\xb3\xc4\x44\x37\xec\x90\x62\x86\x5a\x27\x52\x6d\xa6\xb5\x3c\xf8\xb9\x35\xcd\xc2\x32\x50\xda\xd8\x3b\xfd\x95\x2b\x3a\x32\x2a\xd2\x28\x0f\x06\x88\xf0\x03\x28\xb7\xe8\x7f\x0a\xf5\x4c\xa2\xef\x50\xb8\x27\x66\xe7\x79\xcd\x16\x67\x11\x55\xc6\xfd\x09\xeb\x87\xb1\xed\x34\xe8\x7d\x77\x4f\xb8\x10\x1b\x46\x2b\x93\x1a\xd2\xa9\x69\x33\x02\x6b\x98\xbc\x8d\x53\x9d\x03\x23\x9e\x42\xfc\xa0\x14\x9c\xd5\x02\xb3\xc7\x28\x5f\x52\x1a\xa4\x92\x50\x28\x79\x21\x0f\x19\xfd\xc2\x4b\x7c\x9f\xd2\x3f\x72\x21\xb8\x67\x14\xac\xcd\xce\xc2\xa6\x95\xb8\x49\x2a\x3b\xf5\xe9\x8c\xa5\x75\xe6\xbd\x7d\xe4\x4a\x28\xb7\x4e\x21\xd8\x9c\x22\x2d\xe6\x01\x17\x33\x5a\x7a\x0e\x48\xf3\x44\x4d\x45\xa6\xbc\xd0\x09\x6a\xdf\x7b\x1c\x9c\x18\x26\x58\x34\x4a\x60\xd1\x28\x73\x39\x53\x6b\x5f\x3f\x8e\xb9\x7c\x50\xc4\x89\xbc\xad\x34\xbd\x30\x1f\x0a\x7b\x22\xe7\x62\x10\x86\xd5\x8b\x8f\x09\xbd\x49\x10\xc6\xbc\x36\xfe\xb6\xc0\xe5\xb1\xe8\xd2\x64\xc1\x6b\x28\x50\x12\x3a\x7f\x36\x57\xd7\x81\x38\x15\x77\x11\x96\x63\xe8\x1f\x15\x4b\x7d\xbd\x0c\x8a\x65\x18\x43\xff\x7c\xc8\x2f\x9e\xe5\xcd\x0b\x9b\x14\x56\x0b\x3e\x26\xf4\x66\x96\x99\xff\xf1\xf0\xf4\xd7\xcd\xc7\xfe\xb3\xcd\x07\x85\xf3\x65\x69\x48\xdd\x16\xce\x19\xd3\x86\xbe\x35\xf7\x98\xce\xc6\xa5\xac\x1a\x7c\x4c\xe8\x8d\xaf\xf4\xd2\xe6\xdf\x18\x83\x9a\x4b\xd2\xc8\xfa\x97\x5d\xd4\x42\x41\xce\xd8\x7e\xd1\x6f\xbf\x3f\xb6\xa5\x64\x61\xd2\xec\xf8\x98\xd0\xdb\x8b\xd2\x23\x51\xd9\x90\x3e\x27\xb8\xf7\x92\xcd\x57\x92\x48\xaf\x72\x54\x2c\x79\x94\x30\x28\xc1\x94\xfc\x2a\xcf\xf8\xa8\xf2\xd4\xef\xf8\xe2\x9f\x4a\x2b\xc2\xc7\x2e\xbd\x99\xe5\xc3\x93\x5f\xbc\x07\xe7\x5b\x2e\x31\xa8\x9a\x77\xfb\xc5\x23\xba\x8e\xba\x97\x6d\xd4\x8e\xd6\x93\x21\x2d\x47\x45\xf3\xab\x5e\xe7\x43\xf9\xc3\x11\x9b\xa3\xa2\x59\x5d\xc7\xb4\x1e\xb3\xbe\x41\xe8\x9d\x13\x3f\x8c\x0c\x62\x04\x11\x1b\xc4\x74\xe5\xb0\x17\x8f\x67\xa9\xda\x38\xa6\x51\xd2\x3f\xec\xed\xcc\xd4\xaf\xc9\x17\x55\xab\x29\xba\xff\x8c\x02\xe4\x49\x5b\x92\x32\x1c\xd7\xfa\x32\xdf\x8e\x25\xa1\x15\x30\x8d\x4f\x1d\xfa\xd0\x5c\x5a\x3f\xbd\xd6\x97\xa3\x95\x6a\xba\x0f\xd6\x51\x4f\xde\x05\x6c\x5b\x47\xc5\xd2\x95\xee\xc6\xd3\x16\x6b\x17\x1e\xcb\x7c\xe4\x81\x4f\x5a\xad\x71\x75\xec\xd2\xfb\xc9\x4b\x6d\x7d\xf6\x73\xe5\x13\x4e\x16\xed\xe8\x37\x64\x9b\x29\x2c\xae\xa4\x93\x46\xba\x3d\xb7\x27\xb6\xda\x52\x54\xac\x7e\xa4\x24\xc3\x12\x67\x32\x4d\x63\xf9\xe8\xa3\x5e\xa6\x78\xb1\x9a\x96\xf0\x08\x0a\xfb\x62\xa6\xab\x42\x3f\xba\x1c\x15\x2b\xa3\x98\xc1\x04\xc5\xe5\x39\xe6\xf9\xfb\x1b\x96\x76\xe0\xa8\x32\x02\xc3\x0d\x32\x7a\x75\x0c\xe7\x70\x05\x82\xbd\xad\x57\x43\x16\x66\x0b\x2e\x6f\x8f\x20\x28\x79\x6d\x09\xa6\x62\xc7\x0b\x83\x48\xe2\x59\xe3\x6d\xfd\x8a\x2e\x3a\xe1\x88\x85\xbe\xa7\xdc\x64\x39\xe1\x44\x57\x12\x07\x6f\x27\x8e\xdc\xd8\xff\x3c\x9c\xe6\x6c\x27\x78\xdc\xec\xb3\xeb\xea\x3e\x04\x5b\x64\x46\x81\x07\x8b\xa6\xec\x71\xbb\x9e\x7a\x5d\xee\x3f\x94\xba\x59\x17\x8a\x8d\x01\x2d\x5a\x1a\xcd\xc8\x76\x45\x1b\x33\x49\x6c\xe1\x32\xd3\xae\x25\xcf\x27\x7d\x22\x95\x89\xd5\x34\x47\xbc\xa7\xfc\xfc\x3f\x5c\xf0\xd1\xe1\xa4\x7e\x83\x96\x1e\x2a\x18\x99\xa6\x04\x46\x1d\xff\xb2\x87\x7b\xd3\xb2\xb7\xf2\x09\x45\x7f\xf3\xc8\xde\x1e\x02\x83\xc6\xa1\xcd\x2a\xc2\xc7\x84\xde\x5e\x06\x14\x62\x0a\x55\x82\xd3\x8c\xce\xe9\xe1\x14\x97\xf7\x1c\x86\x4f\x3a\x25\xd1\xb2\xc4\x3a\xac\x7b\x21\xc1\x8e\x18\xe6\xa5\x12\xe4\x98\x67\x69\x93\xb2\x64\x4b\x61\x8c\x77\xa2\xa2\xb1\xbb\xd3\xa4\x0f\xbb\x9b\xf6\x8a\xbe\x15\x95\x25\xa9\xea\xae\xdb\xef\xa1\x00\x45\x8d\x46\x13\xec\x1c\x31\x1c\x56\x82\x51\xb1\xd2\xd7\x11\x28\x56\x42\x50\xac\x86\x51\x6c\xdf\x63\x8e\x0e\x02\xfa\xdc\xf0\xcc\xbd\x43\x7a\x0f\x09\x04\xdb\xeb\x10\x2c\x8d\x4e\x61\x06\x2b\x6e\x5c\x3a\x01\x12\xfd\x5a\x06\x8b\x70\x85\x99\xf5\x14\x97\xee\xf4\xcf\xdc\x1e\x69\x25\x36\xf1\xf9\x39\xea\x87\x23\xc5\xcf\xac\xde\x61\x9d\xd0\xdb\x6b\x43\x8c\xcf\xc9\x47\x3e\x09\x56\xc4\x2c\xcc\x6f\x39\x9d\x3a\xd7\x69\xa1\xbe\x2f\xa4\xba\x82\x9e\xa1\xf3\x47\xe7\x31\x2a\x2e\x6d\xc4\x34\x0d\x60\xf6\x55\x2b\xe2\xd0\x9b\xf9\x2f\xc1\xc6\x99\xf5\xc3\xed\x0d\x60\x1e\xf7\xdc\x0d\x60\xef\x52\x98\xdf\x46\xc9\xfc\xcc\x69\x14\xfc\x34\x9e\x79\xdf\x47\x29\xd5\xcb\xcd\x98\xbe\x7d\x74\x5f\x98\x20\xe3\xd2\xe8\xd0\x67\x9f\x18\x44\xe0\xa9\xa8\xb4\x9c\x4a\xac\x8e\x2e\x11\xe9\x5e\x22\x27\x76\x51\x89\xc4\x2e\x79\x88\x20\x89\x8a\x86\x6d\xde\x42\xf0\x85\x76\x8b\x45\xcf\xbc\xdd\x83\x80\x62\xe4\x65\x16\x3d\xee\xa3\x01\x41\x33\xd1\xbf\x5f\x25\xfc\x71\x82\xcc\x11\xed\x67\x70\x5c\x12\xe1\xe2\x1e\xe9\xb1\x19\x99\x25\x69\xc3\xbb\x7d\x77\xd0\x72\x19\x18\x59\x84\x95\x52\x6c\x48\xc5\x81\xc9\x95\x7e\x2b\x80\x09\x8c\x01\x4a\xc9\x28\xc5\x20\x85\xbe\x35\xbc\x0f\xad\x7d\x7a\x1f\x8d\x42\xb0\x54\x1f\x86\xc0\x2c\x31\x16\xd4\x18\x85\x80\x94\xec\x30\x83\x5f\x36\x2f\x51\x0f\x45\xdb\x0d\x01\xae\x32\x2d\x2e\x45\xc5\xca\x17\xbd\x47\xdb\x49\xdb\x5c\x8a\x83\x4b\x94\xa2\xa2\xb1\xbc\xf7\x81\x66\x30\x42\x42\xf4\x1e\x83\x5f\x83\x2a\x81\xc0\xec\xdd\xb5\x42\x60\x38\x90\x05\x7e\x48\xbe\x6c\x13\x0d\x90\x6f\x87\xfe\xa4\x8e\x63\xa8\xdb\xbf\x58\xc7\x31\x17\x87\x6f\x7c\xc2\xb4\xa7\xdb\xec\xef\x3c\x08\xeb\xee\x0b\xb3\xd1\x38\x8d\x09\x3e\xe6\x02\xc4\xb8\xbd\x94\x08\x84\x29\x25\x77\xfa\x7d\x62\x71\x5e\xa2\xf2\xbb\xf9\xf6\x69\xa2\x2e\x12\x2d\x3b\xe9\x72\x37\x4e\x95\x98\x26\xe5\xee\x14\x82\xaf\x34\xb1\x3e\x82\xe0\x88\xbe\xbb\x61\xd1\x86\x12\xb1\x46\xba\x49\x39\x46\xa0\x7f\xba\x74\x55\x23\x46\x79\x0e\xe3\x67\x9d\xf6\x0c\xf4\xd1\xce\x8a\x49\x6c\x46\x99\xe7\xc8\x9f\x66\x22\xa1\x39\xf2\xad\x24\xf6\x32\x29\x5d\x40\xf9\x80\x93\xe1\x23\xe8\xbe\xd7\x43\x3b\x3e\x77\x4b\x91\x29\x09\x6f\x36\x9d\xbe\x23\x53\x1f\x51\x71\x79\x40\x41\x42\x02\x53\x39\x37\xdd\xc7\xec\xb1\xd1\x26\xa7\xec\x4e\x28\x96\x3e\xed\xb7\xd3\x98\xeb\xac\xb2\xb0\x85\xe2\xda\xca\x51\xb1\xf4\x81\x6e\xfc\x72\x2c\x11\xf8\xd4\xf9\xa0\xdb\x51\x69\x45\x6a\x3c\xf4\x2f\x11\x49\x64\xe5\x32\xf5\x3b\xa2\x45\xe7\xa0\x7e\x39\x89\x4b\x73\xe3\x63\x42\x6f\x2f\x43\xd4\x5c\xae\xc3\x68\x49\x12\x61\x7d\x40\x03\xd4\x0d\x7d\x41\xc9\xc5\xb0\x8f\x0b\xc3\xcc\x8e\xde\x88\xe1\xdf\xf3\xc1\xc0\xf9\x2d\xec\xa2\xa2\xf1\xd5\x66\x9d\x32\x51\xc9\xee\xb0\x83\xc7\x18\x06\x1b\x42\x70\x3a\x8a\x99\xe6\xd4\x34\x2c\xdd\xc2\x13\xe1\xc9\x9e\x8f\xc2\x78\x16\xea\xc4\x2d\xfd\x0e\x42\x36\x91\xaa\x1c\x43\x60\xee\xfa\xbf\xbf\x5d\x4a\xbc\x43\x3e\xa2\x11\x4a\x84\x48\x8c\x7f\xda\xd9\x4c\x84\x49\x60\x5e\xa1\xd2\x77\xb8\x9c\x67\x92\x2d\x19\xb6\x79\x0d\x41\x85\x91\x7e\xd0\xa3\xc8\xf6\x8e\xa6\xe8\xa2\x1a\xd2\x45\x5a\x65\x54\xe3\x7a\x92\xba\x83\x60\xb8\xde\x86\xe0\xeb\x28\x8b\xac\x0f\x32\xa5\x78\xaa\xf5\x60\x6a\x56\xbe\x24\x16\x7c\xfb\x04\x82\xcb\x4e\x1c\x71\xb9\x23\x42\x26\xb7\x4e\xdb\x10\x74\x29\xe3\xf2\x19\x72\xee\xcb\xb8\x6d\xc4\x54\x69\x12\xa8\x99\xf9\x1e\xc2\x38\xa0\x40\x36\x4c\xfc\x44\xbc\xbf\x32\xc9\xa4\x48\x22\x7c\xa2\x29\x06\x34\x98\xa2\x9d\x3e\x6a\x18\x10\x6c\xc0\x87\x8c\x33\xd8\x02\x99\x57\x38\x25\x19\x80\x24\xb5\x2c\xd3\x9f\xad\x51\x8c\xfa\x19\x51\x53\xa5\xed\x3b\x7b\xd9\x5e\x33\x43\x91\xba\x01\x8e\x76\x4f\x81\x71\xd7\x36\x40\x83\x26\x28\x5d\x24\xdb\x3c\x27\x2d\x30\x7c\x69\xd2\x92\x2c\x44\xb6\x69\x3e\x80\x69\xd9\x87\xb8\x71\xca\xb3\x21\x38\x71\x27\x13\x93\xb9\xf2\x52\x8f\x2e\xf0\x13\x45\x3d\x1b\x46\xc6\x72\x8a\x7f\xb7\x71\xcb\x73\xc9\xef\xb9\x2b\xdf\xf6\xe5\xef\xb6\x2f\xd9\x91\x44\x83\x7d\xd9\x80\xab\x49\x07\x27\xde\x97\xad\x75\xe1\xac\x6c\xff\x93\xf7\xa7\x29\x59\x92\x6c\xbb\x17\x1b\x97\xce\x45\xc3\x21\xdc\x98\xf3\x30\x23\x66\x62\x22\xa6\x2a\x13\x60\x56\xf5\x30\x15\x35\xc5\x62\x26\xa1\xf3\x34\xef\x37\x58\xae\xd6\x2e\x84\x3a\x02\xc6\xe5\x52\x8b\x66\xaf\xf4\xe9\x10\x2e\xbb\x10\x94\x0e\xae\x21\xe8\x55\x5a\x10\xa0\x13\x08\xc1\x7a\xbd\xc1\xa2\x0c\xa7\x50\xc2\x25\xdd\x8b\x5d\x97\x74\x59\x1f\xb6\x77\xe9\xff\x23\xfa\xe7\xa4\x09\x3e\x51\x06\x7f\xa9\xae\x7f\x4c\x65\x95\xcb\x61\xda\x85\xa7\x60\xcb\x37\x3e\x6c\x43\x60\x04\xe8\x00\x82\x6d\x1b\x82\xbb\xe3\x10\xac\x04\xeb\xa1\xd8\x05\xc1\x66\x98\xfa\x08\x72\xaa\xc3\xfe\x3e\xf1\x33\x11\xbe\x81\xae\x2b\x76\xe0\x7d\x30\x12\x89\xd8\xe7\x81\x25\xb2\xaf\xa6\x13\x99\xcc\x0f\x94\x32\x96\x1e\x0c\xc8\xf3\x13\xc4\x71\x12\x45\x20\x57\x22\xd7\x11\x66\x96\xd1\x52\x49\x9e\xd5\x9b\xf6\xb4\x2a\xb6\x5a\xd5\xeb\xf3\x28\x63\x1f\x56\xb3\x9b\xf5\xc3\x8f\xb4\x22\xf3\xb8\xe7\xd2\xbb\x90\x59\xb6\xfe\x8e\x32\xcb\xde\x16\xe3\x8c\x32\xe2\xca\x65\x23\x15\x57\xee\x78\xbd\x30\xf0\x7b\xd1\xce\xe4\xd6\xad\x7e\xd5\x2b\x53\x9b\xf6\x67\x24\xfc\x4c\xc0\x3f\xfa\x48\xab\x1d\x5e\x9d\xd2\xdb\x9b\x80\xff\x31\x02\xfe\xa8\x0a\x19\xe8\x15\xfe\x29\x3b\x7e\x80\x48\x2b\xec\xb3\x99\x93\x39\x7a\x2e\xdc\x30\x8e\xf5\x63\x99\xab\xff\x11\xeb\xa2\x52\xf9\xa7\xfd\xe2\x4a\x51\xd1\x74\xbb\xfb\xb4\x33\xed\xd1\x88\xde\x18\x4d\xb3\x1c\xac\x3f\xa0\x0c\x2f\x51\x20\x75\x9c\x51\x68\x8f\x8e\xf6\x21\xa0\xab\x85\xc9\x2a\x19\x28\xe9\xee\x43\xb0\x7c\x4f\x73\xdd\x0f\xc5\x79\x32\xbd\x1c\x79\x68\x2a\x0f\x48\x25\xa3\xc9\xdb\xeb\xf6\x3a\x04\xa5\xe5\x3d\xa1\xb0\x6e\x8e\x20\xe8\x57\x0f\xc4\xe8\x27\xd8\xba\xb9\x2e\x14\x86\x29\xa8\x34\x12\xc5\x3d\x05\x9a\xa3\x15\x4a\x1a\x60\x08\x28\x91\x65\xb2\xe0\xa5\xcb\x09\x1c\xcf\xb3\xe9\x7e\x78\xf1\x3d\x9c\x25\xcf\x4f\xfa\xe5\xd6\xec\xc1\x5c\x05\x4f\xe9\x37\x5f\xbb\xf9\x0d\x99\xf4\x0f\xa9\xc7\xcf\x12\x8f\xf4\xca\x2d\xb3\xfd\x4d\xe4\xf5\x9f\x50\x0f\x79\x01\x8a\x4d\x78\x4c\x98\xa8\x46\x57\x18\x98\x3a\xd9\x59\x8f\x8a\x4b\x4b\xba\x0d\x8a\x4b\x3d\xae\x26\x5d\x11\xe0\x2a\x96\xc8\x95\xcd\x4a\x54\x34\x3e\xc3\x66\x0f\xf4\xc3\x06\x04\x83\xc3\xd1\x01\x58\xbe\x39\x09\x41\xb5\x37\x0c\xff\x7f\xf6\xde\x45\x39\x6d\x5d\x7b\x1c\x7e\x15\x95\xf9\x4f\x4e\xf8\xc5\xb0\x6d\x20\xd7\x1e\xce\x1e\x20\x69\x92\x06\x48\x1a\xc8\xa5\xbb\xa7\x5f\x46\xd8\x0a\xa8\x18\x89\xf8\x92\x94\xd4\x79\xf7\x6f\x24\x59\xb6\x6c\x0c\x81\x36\x6d\xb3\xf7\x61\x68\x63\x5b\x5a\xba\x6b\x2d\xad\x9b\x24\x50\x39\xbb\xf6\xc1\xd7\x81\xe9\x07\x65\x43\x2d\x77\x02\xc7\xbe\x23\xad\x9e\xac\xb0\xdd\xb2\x0e\xae\x8e\xbb\x41\x61\x77\x54\x6c\x89\x62\x76\x63\x3e\x22\x28\x18\xbe\xcf\x63\xdc\x56\x8b\x3d\x9a\x15\xe2\x07\x25\x45\xff\xf6\x1e\x39\xbe\x0b\x6d\x34\x0a\xde\xb7\x22\x39\x06\x1c\xef\x73\x61\x66\xc8\x78\xa4\x52\x36\x96\x2e\xe2\x4d\xf4\x0b\x7e\xc2\xc1\x90\x55\xb4\x33\x69\xb1\xc7\x52\x42\x4d\xb9\x59\xd7\xc1\xc1\x48\x07\x94\xc1\x73\x1e\xda\xe2\x00\x24\xbc\x3a\xc0\xf8\x02\xd9\x44\x68\x48\x94\x89\xe7\x39\x9f\x21\x6d\xa8\x83\x1a\x83\x6d\x9d\xe9\xa0\xc6\x96\xb2\x93\xb1\x0e\x9a\x8d\x90\x39\xbd\xb2\x75\x70\xf0\xa1\xfd\x8a\x64\x19\xb1\x5f\x84\xdb\x11\x10\xeb\x04\x6e\x9e\x43\x5c\x18\x61\x61\xe4\x56\x66\xcc\xc9\xe0\xee\x95\xdc\x93\xc2\x09\x16\x4f\xd1\x6f\x4a\x79\x85\x33\x14\x22\x2d\xb7\x6e\xdc\xb1\x3f\xac\x8c\x5d\x2b\x61\xb5\xe0\x39\xf3\x72\x67\xc6\x0e\x93\x76\x8e\xb8\x56\xfc\xd6\x3e\x7d\xd6\x9b\xf3\xa8\x83\x2b\x23\xfd\xf2\x72\xf0\x2f\x5d\xd2\xbc\x84\x8c\xf7\x89\x3d\x26\x20\x5b\x3f\x85\x47\x67\xa5\xac\x07\xdc\x93\xb3\xe2\x73\x7b\x80\xa1\x7f\x70\xf5\xa0\xa2\x98\x22\x4e\xe0\xc8\x1c\x40\x6f\x18\xd2\x05\xc3\x90\xbb\x47\x82\x02\x9c\x30\xb6\xb4\xa7\x2b\xe7\x43\xfc\x00\xaf\xc4\xfd\x3c\x3a\xcd\x13\x96\x29\xbe\xbf\x66\x8f\x15\xa7\xb4\xc8\xbe\x91\x1d\x75\x68\x1d\x68\x0e\xa4\xb1\x27\xb4\x29\x0b\xfb\x32\x38\x3b\xe9\x82\xb3\x13\x26\x19\x56\x5c\x6e\xc6\xf1\x43\x13\x73\xc2\x3d\xdf\x28\x47\xa7\xa8\x95\xbe\x52\x97\x41\x1a\x77\xa7\x27\x57\x45\x93\x3b\xc9\x00\xe4\x33\x1a\x74\xd7\xf2\x81\x71\x3b\x91\x9a\x09\xeb\xc4\x90\x5a\x1b\xae\x58\xf8\x72\xad\x07\xa5\x4a\xbc\xb4\x5c\x38\xfe\xe8\x4e\xd6\x6a\x2b\x28\x6c\x9e\x72\xfb\xb6\x30\x41\x19\x87\x7d\xef\xb4\x38\x0c\xca\x25\x75\xd2\x79\x83\x11\x24\x96\x9f\x68\xc9\x66\x65\x33\x28\x6c\xbe\x2b\xf6\x45\xe5\x37\xdf\x47\x4e\xcc\x03\x16\x58\x3a\x38\x6c\xf5\x8a\xfd\xc0\x50\x33\x1a\x40\x62\x4d\xfa\x53\xae\x3c\x62\xdb\xd3\x6e\xa9\x68\xa9\xee\x3c\xf1\xb6\xa7\xa5\x26\x71\xda\x41\x44\xf8\xf4\xf0\xcc\xc7\xb5\x31\x7b\xfc\x0f\x4c\xe4\xbb\x13\x1d\x4c\xda\x2f\x62\x96\xd9\xbe\xd4\xc1\xf6\xe3\x3e\xf7\x67\x2f\x45\x23\xe9\x40\x97\xd0\x09\x74\xdc\x61\x86\x80\xdc\x2b\xde\x2d\xe7\xad\xbc\x88\xd4\x76\x84\x59\xb6\x63\xa7\xc6\x1e\xff\x03\x43\xf8\x92\x52\x9b\xa1\xa8\xaa\x4e\x7c\x68\xc3\x9b\xa6\x3f\x1a\xfb\x0e\xbf\x2e\x58\x8c\xdb\x14\x6b\x1b\x14\xb6\xba\xc5\xb1\x18\xc3\x24\x6b\x1b\x7a\x68\x6d\x06\x85\x52\xbd\xcf\x81\x8c\x6d\x48\xd8\xd3\xde\xbc\x3e\x60\x3c\xc2\x29\xd8\x79\x37\xf1\x81\xe1\x52\xc3\x0f\xb6\x0d\xb5\x70\x73\x80\x43\x2d\x59\xe4\x63\xc8\xfe\x97\xa4\x3f\x98\x5d\x1c\x4a\x6f\x43\x50\xd8\x19\x66\x4b\xfd\x95\xd0\x0b\x91\x01\xf7\xf7\x7b\x67\xc5\x21\xd8\x9a\x10\x1f\xd4\xc8\x01\x30\x4e\xf5\xa1\x78\x69\xd7\x66\xbe\x4c\xc1\x8c\x6b\x43\xb0\xf3\xee\x91\x33\xff\x11\x01\x6f\x41\x33\xdc\x7b\xd4\xe8\x74\x23\x62\xc5\xfd\xa9\xb6\x27\x45\x98\x24\x56\x71\x3d\x5f\xe2\xbe\x8a\xc6\xbb\xa3\x09\xf7\x89\xbc\x3b\x61\xcf\x33\xce\x3a\x31\x9e\x6a\x53\xfa\xce\x54\x3e\x70\x5f\xee\x96\x54\x8c\x0e\x19\xd3\xea\xeb\x49\x0d\x9f\x39\x6b\x42\x32\xe0\x8a\x3e\x15\x9b\x3c\x9e\x2b\x3e\x5c\xcc\xf1\x5f\x5a\xc3\x77\x12\x21\x68\xf4\xf6\x8b\x34\x7c\x9b\xdb\xea\x08\xf7\xa1\x25\x7d\x13\xc5\x42\xc4\x38\xaa\xa0\x00\xcb\x6c\x55\x0e\x4f\x7c\x2b\x98\x2f\xe3\x5b\x6a\x9c\x99\x3c\x5f\x74\x41\xcb\xbf\xcc\x0d\xe3\x9f\x42\xc4\x40\xb9\x71\xa7\x07\xbb\x9b\xb1\xda\xb0\x05\x87\xd0\x75\xc3\x7d\x55\x2d\x85\xa5\xb8\x3a\xee\xd6\x82\xc2\x36\xdf\xd3\x26\xfe\x46\x8a\xf7\x90\x78\x71\x3e\xe5\x0b\x8b\xba\xbf\x35\x75\x30\x9a\x34\xd9\xfb\x4e\xab\x99\x3c\x8e\xa0\x05\x09\xb6\x61\x74\x21\x07\xd7\xe4\xcb\xac\x76\x95\x33\x00\x83\x82\x31\x7c\x7f\xcc\x2f\x61\x02\x26\x63\xbf\xb6\x36\xaf\x75\x30\xba\xae\xeb\xe0\xfe\x5a\x07\x97\x27\xa1\x7e\x29\xc1\x87\xb5\xb1\x49\x5d\x0c\xd3\x9e\x80\x56\xd1\x7d\x35\x9e\x80\xc2\x0d\x86\xd5\xa8\x04\xcb\x26\x7b\xae\xdc\x60\x5e\x9d\x1b\xcc\xdf\xad\xa4\xb9\xae\x30\x65\x65\x33\x41\x9b\xde\xd3\xa1\xff\x48\x90\x97\xc5\x65\x6e\xb6\x8a\xad\x97\xe3\x32\x43\xf2\xec\xb5\xf8\x21\x2c\xcd\xd6\xff\xd8\x21\x2c\xdf\x2d\xef\x6e\x6e\x26\xc7\xcb\xc5\x3d\x9c\x29\x14\x6c\xde\x17\x0f\x16\x1f\xae\xc5\xe8\x13\x97\xec\x08\xcb\x78\x5c\x7b\x77\x1f\xed\xf5\xff\x3d\x43\x36\xb2\x75\x70\xea\xbe\xea\x51\xcb\x58\x54\x2b\xa8\x9d\x5c\xf2\x4e\x47\x6e\xd6\x4e\xab\xf3\xa2\xff\xa3\xa7\x1c\x4d\x89\x74\xa5\x8a\xcb\xb2\x1d\xb7\x9a\xec\xb1\x42\xb7\xe5\x44\x3a\x45\xaf\x72\xea\x40\x7b\xc6\x11\x09\x63\xb9\x41\x7c\xde\x11\x09\x95\xb9\x3f\xb1\x25\x7c\xcc\x77\xc8\xd1\xb1\xd8\x21\x77\xf2\x02\x27\x6a\xc4\x9b\xbe\x53\x96\x24\xae\x27\x3f\xf8\x0d\x63\x93\x38\x48\xe3\x8c\x12\x0f\x43\x02\x05\x36\x9c\x29\x02\xab\xb4\xfc\x74\x6b\xa1\xf9\x67\xc0\x65\xd6\x41\x31\x65\x00\x4a\x19\x81\xb6\x82\x42\xc9\x87\x1c\xec\xfa\x40\xd7\xc1\xc8\x27\xcd\xe2\x10\xec\x9c\xc3\xb4\x25\x08\x5c\xdd\x11\x3f\x28\x29\x92\xe8\xd9\x84\x92\xfe\x04\x86\x92\xf3\x49\x87\xf3\xa2\x80\xeb\x0f\x77\x88\xf4\x27\x89\x64\x50\x7e\x84\xb4\x3f\xda\x21\x60\x77\xfb\xfa\x1c\x18\x76\xf7\xd1\x07\xa5\x53\x62\xea\x60\xab\xce\x9a\xa9\xf8\x97\x7f\xa0\xae\x07\x09\x9c\x4c\x9f\x17\x52\x41\x8c\x13\xfd\x81\xb3\x58\x84\xdf\x39\xcb\x05\x5d\x50\xf6\xf8\x47\x1f\xc5\x12\x79\xf1\x7e\x98\x3c\x4e\x6c\xea\x58\x30\xa3\x4b\xed\xe2\x87\x45\x8e\x60\x99\x4d\x34\x59\x8f\xb2\x4c\xd0\x05\xb5\xa3\xed\x89\x3f\xa5\x47\xcb\x90\xfe\x26\x34\x04\x8f\x1f\x6c\xee\x88\x13\x1f\xd6\x07\x49\x9f\x52\x12\x9c\x2b\x7b\xb4\x76\x83\xc2\x16\x2d\x36\x85\xda\x3c\xdc\x86\xc1\xc5\x3a\xcc\x42\x3b\x23\xd2\x29\x36\xc1\xf6\x97\x5d\x3f\xa8\x28\xee\x9c\x1d\x38\x1c\x40\x1b\x93\xd8\xae\x1a\xd9\x50\xf4\xa0\xb0\xeb\x4b\xcb\xaa\xb4\xa3\xcc\xde\x55\x5a\x59\x82\x80\x96\x6a\x87\x97\x2c\x6b\xa3\x4e\x5b\xfc\x79\xf7\x0e\xbe\xe2\xb5\x4e\x50\xe6\xd7\xb0\xcc\x89\x63\x16\x36\x15\xa3\x4a\x07\x8e\xa0\x33\x84\xc4\xca\xc0\x2e\xa7\x78\xbe\x08\x76\x09\x2c\x62\xc0\xfc\xcc\x9f\xf3\x9f\x89\x45\xd1\x67\x50\x56\x4c\xf1\x1d\x44\xc3\x43\x3e\x14\x52\x0e\x4e\xf6\xf9\xff\xa0\xb0\xe3\xf0\x8d\xcd\x11\x51\x0f\x15\x8c\x7e\x62\x6b\x6c\xe2\x02\x10\x1e\x22\x88\x3e\x4b\xbb\xbb\x7d\x7d\x59\xfc\x00\x8c\x91\xf1\xe8\x83\xad\x46\x4b\x07\xef\x98\x84\x3c\x6c\x4b\xc3\xb1\x78\x53\x2d\xcd\x5b\x4c\x94\x2f\x1d\xeb\x3e\x38\x65\xc1\xef\x42\x0b\x36\xdf\xb3\x19\x5d\x95\x9f\xfd\x52\xe2\x7b\xdc\x4a\xef\xb8\xc3\x61\x72\x3d\x55\x3c\x29\x3a\x0e\xb2\x08\x1a\x52\x7b\x12\x71\x98\x09\x85\x1b\x62\x6d\x7e\x41\x85\x5b\xa8\x6f\x43\x82\x58\xa2\xd5\x5e\xee\x65\x39\xcc\xf2\x66\x6c\xef\xe9\x42\x3c\x46\x62\x3b\xf1\xfb\xe4\x96\xe2\x58\x11\xb6\xc8\x2f\x28\x18\xf8\x61\x47\x07\x5f\xb8\xde\x7a\x42\x9f\xd9\x52\x3c\xfb\x8d\xdb\xd2\xeb\xd1\x46\x4c\xe1\x6c\x9e\x7c\x5b\x6a\xe3\x64\xbd\x1e\xba\x6f\xd5\x2d\xf1\xe2\xdf\x19\x53\x50\xbb\xdb\x75\x71\xd1\xfa\x76\x25\x5e\x51\xba\xd0\x1d\x0c\xe5\xdd\xf4\x49\xa1\xa9\x5e\xec\x2d\xb1\x41\x8f\x41\xa3\x0b\xc2\x1e\xbf\x6c\xa6\x46\xf7\x7f\xf2\x96\xf4\xb0\x8d\x5d\x1c\x74\xeb\xe9\x73\xa6\x4a\xd7\xac\x25\x8b\x9c\x33\x65\x64\x22\x68\xa8\x5d\xe1\xd9\x18\x5f\x2e\x08\x7b\xfe\xc2\x73\xa5\xb8\x85\x61\x5a\xcd\x57\xe2\x73\x25\xd2\x04\x96\xdb\x91\x53\xdd\x77\x6f\x22\xad\x11\xa1\x04\xe0\xae\x00\x8a\xdd\xab\x8b\x06\x4e\x68\x66\xe8\x8a\xce\xe5\x3c\x8c\x5c\xbc\xb8\xe3\x47\x79\xcc\x8f\xb3\x13\x7f\xfd\x78\x21\xab\x48\xba\x5f\xda\xfc\xa9\xbf\xa0\x50\xea\x79\xfb\xac\x78\xc3\x2a\x9b\x3a\x30\x06\x7e\xb3\x5b\x3c\x06\xdd\x6b\x5f\xa0\x95\xdb\xd6\xc1\x7d\xcd\x97\x9b\x9d\x59\xc3\x11\xd1\xc1\xb8\x5d\xd7\xc1\x45\xd4\xbd\xf1\xd9\xb7\x8b\xbc\x2d\x9a\x62\x59\xb8\xad\xca\xcf\x2f\xe3\x57\xc3\xfd\xa4\x9c\x03\x43\x31\x4a\x74\x07\x78\x34\x1e\x24\x3d\x3d\xb6\x82\xc2\xe6\x55\xb1\x26\xcf\x3f\x10\x7e\x1e\x1d\x9f\x87\x19\xf5\xc3\x96\x5b\xac\x05\xdb\xbb\xb1\x5d\xa6\x4b\x87\x13\x1a\xb0\x75\xe2\x3d\x5b\x27\x76\xe3\xfb\x97\x42\x63\xc9\x87\xf7\xef\x43\xc3\x62\x7c\x2b\x49\xfa\x16\x95\xa0\xbc\xa3\xd4\x8a\x8e\x32\x75\x8a\xfb\xc5\xb3\x1f\x51\x01\xcf\xd2\x29\xb6\x07\x2c\xe3\xf1\xd7\x47\xf6\xf8\x27\x72\x0d\xfc\x9c\xe7\xde\xc2\x4c\xfe\xd2\x4c\xfb\x87\x71\xd2\xe7\xe0\xc2\x86\x90\xf4\xa0\x72\x08\xa2\xba\x3f\x67\xbb\xf8\xb0\x88\x93\xff\x7c\x5e\xaf\x54\x3b\x3b\x62\x19\x95\x2e\x86\x94\x3d\xff\xd7\xf6\x53\xa8\xfa\xc0\x0b\xd7\x2b\xb4\x91\x93\xf6\xb3\x2a\x85\xdc\x36\x13\x74\x1f\x8a\x9d\xd8\x2a\x6a\x86\x5c\x37\x9c\x79\xf8\xce\xe6\xc2\xc7\xf1\x6c\x0a\x77\x2b\x96\xff\xb8\x36\x66\x0f\x89\x40\xbb\xff\x20\x04\xfa\x49\xb6\xbf\xd8\xd7\x4a\xe1\xbd\x2f\x6d\x68\xe1\x7b\x71\x67\x48\xac\xb5\x08\x9d\xe6\x76\x9a\xc5\xfb\x1f\x74\x98\x9b\x16\x9b\x3a\xef\x8f\x59\xb6\xd8\xbb\x66\x8f\x7f\x22\x01\xfc\xf9\x3b\x64\xf8\xd0\xf1\xfb\x7b\xa3\x95\x4b\x39\xba\x6c\xa7\x51\xbc\x7a\xd1\xa3\xcb\x84\x2d\x8c\x67\x3b\xae\x51\xf6\x58\x0d\xdb\x52\xc3\x56\x52\x74\x4c\x1f\xd1\x10\x7a\xc8\xc1\xa4\xe7\x3b\x7d\x45\xfd\xaf\xea\x9a\x4a\xc5\xaf\xa0\x50\x7e\x5f\xdc\x9c\xd2\x38\x65\x91\xc5\xc5\x4f\x34\x0b\x0a\x25\xd8\xe7\xb9\x6f\x8f\x3e\x0c\x8a\x2e\xb8\xab\xdf\xbf\x5f\xed\x53\x5b\xda\x3c\xa6\x48\xe8\x1f\x91\x83\xee\xa3\x03\xe8\x54\xb1\xf6\x6a\x71\xa1\xf6\x39\x4c\x14\x02\xee\x15\x17\x6f\xaf\x7e\xf1\xa1\xc9\xf3\xff\x54\xce\xaf\x5f\xcb\xd0\x18\x77\xe2\x6a\x05\x3e\x34\x9e\x0d\x89\x87\xcd\x3f\x6a\x8f\xd4\x41\x2e\x3f\x7f\xad\xa0\x97\x40\x41\x37\xf8\x45\x66\x57\x07\xdd\xc0\xe8\x30\x8e\x4e\x07\x86\x0e\x74\xb0\xa4\x3b\x54\x39\xf5\x7f\xd1\x54\x73\x7f\x95\x65\x19\xd3\xc5\x7f\x41\xa1\x64\x5b\x57\x3a\x80\x67\xd7\xe2\x9c\xb1\x26\x1b\xb6\x7b\x53\x07\x5d\x26\x24\xf9\x2d\x1d\x74\x5a\x6a\x08\x7b\x89\x42\xb6\xb6\x58\x67\x33\xbe\xbe\x7c\xa0\xcb\x03\x07\xb2\xae\x49\x8c\x8e\x32\x28\x1f\xeb\x53\x37\xb9\x94\xdf\x45\x9f\xf1\x0e\xbf\xf8\xf0\x83\x78\x5e\xa5\x62\xd9\xf8\xee\x9b\xf2\x42\x57\x0e\xc1\x77\x1c\x56\x74\x1d\xf4\x9b\x82\xa4\xb8\x86\xf0\x2a\xb5\xae\x85\xec\x37\xb6\xc4\x93\xc5\x33\xc1\x2f\xeb\x5b\xd9\x89\x25\x18\xdd\x19\x53\xbc\xdc\xa0\xdf\x7f\xa3\xd8\x0f\xa0\xe0\x02\x70\x77\xc7\xf6\xac\x14\x29\x16\x3f\x2b\x83\x18\xe4\xe7\x55\xb7\xf9\x77\x23\xf0\xff\xe3\x2e\x72\xf2\xf4\x0b\x49\x3f\xeb\xc8\x19\xf9\xa1\xb5\xb9\xd6\xe9\x82\xda\x7e\x37\xa8\x7c\x29\x62\x50\x09\x2f\x99\xfc\x1d\x9e\xa3\xea\x2f\x28\x18\x75\x72\x7e\x50\x3c\x04\x46\xb3\xdb\xe3\xcf\x99\x52\xf6\xa2\x57\xd1\xff\x48\xda\xd5\x35\xf6\xff\xe4\x6b\xec\xb7\x42\x0f\x71\x89\x1e\x0d\x48\xa0\x23\xdc\x5b\x18\x6b\x71\x75\xd0\x05\x57\x07\x9d\x6e\x60\x18\xc5\x9a\x60\x2c\x0a\xc6\x77\xe9\x9c\x5e\x66\xd1\x37\x2e\x3c\x78\x55\xa4\xe0\xfa\xac\xc6\x1e\x86\x5d\x3b\x89\xce\xab\x7f\x15\x0b\xd8\x6a\x45\x78\x0d\x25\xcd\x5d\x11\x36\x2b\xc9\x15\xa1\x01\xc7\xe8\xe6\x12\x39\x16\x0a\xa7\x3d\xe7\xaa\x03\x63\x52\xac\x08\x6e\x3a\x3e\xb3\xd4\xe2\xfb\xbe\x0f\xa8\x38\x75\x1d\x18\xd6\x97\x5b\x3d\xd8\xd4\x93\xf9\xbd\x83\x0e\x15\x59\x45\xd8\xe3\x14\x2b\x31\xe6\xfc\x86\x15\xa5\xe4\x77\xc8\x43\xf1\x02\x94\xae\xfa\x94\x3d\x57\x78\xf2\x9a\x67\xef\x2b\xc1\x93\xca\x6e\x72\x69\x68\x41\x0b\x61\x07\x06\xef\xc2\xb5\x41\xdc\x9f\xad\xae\x11\xdb\xca\x1a\xf1\x3d\xf3\xfd\xbb\x84\xd0\x70\xcf\xf7\xef\xf8\x71\x92\x70\xbd\x12\x42\x57\x42\xe8\x2f\x16\x42\x57\xa4\xf4\xd5\x95\x34\x5f\x08\xdd\x4e\xb2\x08\xe7\x68\x32\xfc\x02\xef\xf1\x30\x62\xb4\x19\x31\x3d\x6c\x75\x03\xc3\xfd\x2e\xf5\xdd\x8c\x1f\x77\x72\xbc\x1a\x3d\x80\xd1\x2d\x7c\x88\xbd\xb5\x8c\x66\x5d\x07\x0d\x12\xbe\x94\x6f\xaf\x75\xd0\x30\x74\x70\x24\xf4\xd8\xa7\x3a\x60\xc1\xc6\x41\x53\x07\x4d\xd6\x82\x86\x1e\x3a\x1b\xc4\x3b\x9c\xa7\x5e\x12\x0e\x09\xca\x7d\xca\xa9\xb7\xb8\x5b\x52\x61\x33\x53\xcc\xcc\x65\xa9\x14\x2f\x51\x5a\x60\x94\x92\xa3\xd8\xa1\xbe\x37\xb8\x39\x44\xd4\xe9\x63\x18\x14\xf4\x52\x50\xd2\x03\x3d\x08\xca\x7a\x02\xca\x83\xc4\x46\x13\x7e\x78\x40\x41\xaf\x80\x82\x5e\x66\x3c\x66\x50\x3e\x2b\x52\xa1\x74\x00\xa5\xa9\xd1\x2e\x2f\xa1\x84\x8d\x7f\x41\xa1\x34\x7c\xff\xb0\xc3\x56\xe1\x52\xaf\xc6\x9f\xf1\x6e\xd3\xd4\x81\x6a\xb7\xf5\xec\x37\x3e\x2d\x1a\xa6\x3c\x5a\xe9\xae\xa9\x6c\x46\x2f\x8d\xda\x73\xaf\xa6\xe2\x2f\x89\xed\xeb\xcf\x01\x27\x52\x2d\x0c\x7c\xd7\xfe\x9e\x43\x35\x13\x7b\xef\x33\xa3\x82\x92\x21\x0c\xc9\xbe\xeb\x39\xd0\xc6\xf0\x8f\xce\xc4\x22\x68\x12\xd4\x0e\x3a\x5d\x50\x3b\xd8\xef\x06\xb1\xe1\xf8\x35\xfd\x82\x42\x69\xb7\x6c\x5f\x83\xaf\xe6\x35\x30\xf4\x2f\x96\x0e\x26\x19\xce\x15\x7c\x8c\xb7\xd9\xd0\x26\xd1\x3a\xed\x4c\x24\x5e\xa6\xd1\x7a\x91\x97\x18\x65\xe6\x00\xf1\xe3\x12\x22\xa2\xc9\x18\x90\xe8\x25\x3a\x52\xe1\xfb\x6a\xb6\x14\xbd\x8f\xc3\x97\x20\xf8\x71\x64\x1c\xa4\xb0\x3c\xaf\x82\x81\xf9\xbd\xc9\xe6\xa5\x0d\x2a\xa1\x9f\x53\x84\x61\x35\x0b\xd9\x10\x5b\x28\xa8\x35\x18\x8e\x71\x5f\xe9\x5d\x1f\x14\xa0\xff\x2a\x71\xcc\x7b\x05\x38\xb6\x48\xaa\x45\x50\x6c\x1a\xd7\xa2\x29\x1d\x15\x11\xc1\xfc\x3a\x96\x6a\x85\x61\x3f\x84\x61\xd2\x91\x3a\xc2\xb0\xba\x83\xdd\x1e\x24\x68\x91\x55\xec\x7b\x16\x92\x23\x63\x16\xb9\x0e\x4a\x69\x6c\xaf\x3b\x74\x88\xc8\xcd\x11\xb6\xed\x15\xc2\xff\x23\x17\xd5\x15\xc6\xff\x7a\x8c\x0f\xef\x32\x8c\xb0\xac\xe1\x3b\x0e\x5e\x08\xdf\x7f\x3b\x82\x1d\xec\x48\x1c\xfa\xbd\x18\x36\x3d\x29\x67\x40\x3f\xd0\xc5\xd6\x54\x91\x63\xac\xce\x5b\xe0\x2d\x1e\xe4\x05\x52\xc4\xf8\x14\x2b\x0a\x17\x2d\x83\xff\x89\x55\x8b\xbf\x7b\x02\xbf\xae\x64\x73\x51\x6d\xbb\xb2\x95\xc0\xb4\x7d\xe8\x3c\x60\x32\x6f\x29\x5b\x78\x15\x89\xd4\x0b\x51\xe6\x07\xbe\x69\xc3\x60\x43\xdf\xa9\x6c\x82\x0d\x7d\xb7\xb2\x19\x14\x76\xde\x83\xc2\xee\xfb\x2c\x3c\xe6\xe5\x0c\x8f\x67\x97\xd3\xef\x8c\xc5\x14\xb6\x37\xc3\x95\x00\xbf\xaf\xe9\xe0\x50\xd7\xc1\xe3\x85\x3c\x6f\x79\x9a\x68\x07\xe5\xad\x9d\x44\xad\x8e\x68\x0f\x3a\xde\xab\x27\x2e\xdf\x41\x64\x2e\x6f\x23\x17\x41\xd6\xfa\x69\x4d\x57\x74\xcc\xdf\x8a\x10\xad\x08\xd1\xef\x25\x44\x25\x23\x45\x2c\x9a\xd4\xb1\x6e\x8e\xe8\x43\xb8\xec\x6f\x18\x7a\x99\x6f\x7a\x28\x87\x5b\x1f\x18\x92\x42\x1f\x14\x7a\xbe\xdc\xf8\x20\x75\xc4\xbf\xea\x17\x38\xb0\xc1\xb7\xd0\xfb\x62\xaf\x7c\x74\x6a\x7b\xf6\x0b\xdf\x48\x79\xd7\xf2\xc1\x55\xd3\x67\x33\x59\x79\xe1\x51\xec\xe5\x94\xf8\x0c\x23\xb2\x5e\xce\x7b\x33\xa3\xf8\xbd\xc6\x06\xd5\xe7\xbd\x45\x05\x1b\x35\x7e\x87\x7c\x18\xb4\x40\x82\x24\x58\x1c\x54\x61\xc5\x9b\x2d\xbe\x21\xf4\xd9\xb7\xdb\xda\x62\x70\x2f\x98\xf6\xf6\xf1\x57\x96\x36\x2f\x6d\x50\xae\x6c\x27\xe7\x36\x26\x16\x1a\x41\xb2\xe8\xa2\xf3\xb2\x52\xec\x34\x39\x0f\x0c\x3d\x51\xbf\x16\xb2\x7b\xd4\x77\x16\x13\xb1\x7f\xfb\x6a\xf8\x3a\x14\xc5\xcb\x2b\xb1\x62\xde\xe4\x19\x2d\xd6\x9c\x32\xbe\x4f\x8b\xb5\x52\x14\xff\xfa\x05\x4e\xde\xea\x1c\x21\xd9\x19\x72\xbc\x41\x50\xbb\x62\x08\x76\x35\xff\x92\x7e\x3e\xcb\xbf\xcc\x99\xe5\xdf\xcb\x0b\x87\x57\x5d\x36\x0e\xba\x41\xe3\xa0\x0b\x1a\xfc\x0c\x5a\x83\x5f\x6b\xf9\x7a\x10\x3d\x28\x94\xe0\x3b\xa4\x87\x57\x47\xe2\xd3\xa9\x79\xfa\xc1\x31\x75\xb0\x85\xe5\xcc\xcc\x1a\x81\x2d\xf6\xa7\xdf\x6a\xcd\x60\xd9\x52\x0c\xe2\x2b\x9e\xcc\xbf\xdb\xf4\xff\x4a\xbc\x13\x5e\x89\x1f\x44\x4e\xcb\x9d\x41\x13\xdf\x62\xf3\x8f\x03\xe8\x7a\xc8\x09\x0e\xb8\x55\x7c\x1b\x14\xf4\x2d\x50\xd0\x37\x83\xed\x41\xd1\x05\xdb\x3a\xd8\xd2\xc1\xe6\x33\x3e\x10\xbf\xd4\xf7\x38\x28\x18\x7e\xa7\x7f\x58\x7c\x00\x86\x5b\x39\x66\xcf\xe4\xcd\x43\xdc\xb0\x1e\xdf\x3c\xc4\xdf\xee\xda\xa1\x11\xdd\xb6\xe4\x49\x52\x51\xd0\x5d\x7b\x1a\x3e\x23\xe5\x0c\xf8\xd2\xb8\xb6\x70\xa2\xd8\x5d\x69\x16\x7c\xbc\xe6\xcf\xaf\xd5\x8c\xa2\x94\xeb\xdb\x8c\xe8\x78\x22\xbe\xb1\x80\x67\x3c\xa7\x6e\xcb\xf6\x44\xba\x24\x0e\x16\xfb\x30\x90\x6b\x1d\x1c\x1a\xa1\xe7\x4a\xd2\x2f\x5e\x3a\x0a\x54\xb6\x88\x0e\x6a\x2c\xaa\xdd\x4b\xbf\x3c\xf2\xeb\x76\x67\x1c\x55\x93\xf9\x36\xf7\x70\x9b\x99\x29\x9e\x3f\x17\x67\xd9\xa4\x41\x59\xe7\x7e\x0b\x8d\x4e\x77\xab\xb1\xdf\xe5\x07\x4f\x35\xf6\xbb\xa0\x71\xd5\x05\x8d\xb3\x6e\xc0\x91\x49\xfc\x13\xcb\x54\xa9\xfc\xdb\x57\xa9\xa9\x35\x6b\xcb\x70\xa7\x5a\xde\xe1\x37\x06\x7e\x2d\xeb\x00\x3f\xe8\xe0\xc3\xc3\x4b\x1c\x43\x11\xdd\x7b\xc0\x9d\x9c\xea\xd7\xfa\x6a\x43\xcd\x6a\x43\xcd\xcb\x6d\xa8\xc9\x69\xb9\x83\x83\x6e\xa0\x5c\x51\xb0\xd8\x8d\xe7\x3f\x13\xb9\x06\xfb\xf5\x15\x23\xb7\x62\xe4\x5e\x96\x91\x0b\x2f\xb5\xdd\xf7\x7b\x36\x26\xc1\x7e\x78\x49\xe6\x61\xab\x0b\xea\xe2\xe2\xff\x60\x5c\xb4\x41\x61\x52\xdc\x0f\x37\x04\x4c\x6d\x1c\x9b\x7f\x0e\xec\xdf\xf5\xc7\xc4\xaf\xaf\xbb\xac\xd9\x5c\xfd\x70\xfb\xc8\x5e\x8d\x0a\x9f\xc8\x2c\xa0\xcf\x11\x8d\x4a\x7f\x7b\xfe\x16\x5f\x30\xc4\xc3\x76\x6b\x52\x23\x8e\xa5\x92\x3f\x76\x5b\xe5\x6f\xa9\x7b\xf6\x63\x0c\xe6\x6e\xab\x33\x63\xb3\xee\xe8\x8f\x91\x72\xa9\x14\x71\xac\xdc\x49\xd0\xdf\x8a\xea\xf8\x90\x4c\x15\x4f\xa0\x54\xfa\x2c\x6b\xc3\xcc\x0a\xc4\x4d\x5b\xb4\x7a\x70\x86\xfe\x28\xa1\x94\x99\xf1\xe2\xd5\x84\x1a\x60\x57\xa7\x59\xca\xa6\xe9\x97\x39\xf9\x64\x19\x65\x1e\x17\x42\xe3\x45\xd0\xfd\x59\xfd\xd3\xc2\x6f\x29\x17\xed\x15\xa1\xfd\xed\x9d\x21\x0f\x2a\x63\x9c\x04\xfb\xbf\xc9\x1d\xcc\x45\xc0\xe6\xc1\x3e\x0f\x04\x07\xfb\x5d\x70\x70\xd5\x05\x07\x67\x0c\x00\x54\xc2\x7f\xaf\x99\xd5\xf7\x66\xb1\xfa\x15\x1d\xe0\xfb\x15\xab\xbf\x62\xf5\x5f\x7f\x11\x1c\x0d\x3d\xf3\x8f\xc3\x56\xb7\xa0\x07\x87\xad\x6e\x10\x21\x67\x18\x6a\x04\x1b\xe2\x62\xe2\x30\x5c\xea\xbe\xce\xa8\xe3\xdd\xb4\xa8\x83\xdc\xde\x24\xe0\x27\x9c\x41\x0e\x12\x9e\x55\x11\x25\x37\x02\x6e\xba\xed\xa5\xd3\x77\xa1\x03\x1f\x60\xc0\x4f\x02\x37\x45\x4a\xb1\x57\x33\x4a\x59\x0e\xf8\x2d\xc7\xd6\x54\x8d\x2a\xc1\x86\x51\x09\x0a\x28\x1d\x51\x0a\x36\x74\xc6\xba\xa4\xc3\xcb\xc1\x86\x5e\x0e\xb8\x00\x93\x08\xaf\x04\xfc\xc6\x94\x4a\x3a\x7c\x33\xe0\x67\x45\x6d\xa6\xc3\xb7\x02\x7e\x10\xd8\x96\x0c\x3f\x26\x16\x86\xe4\x8f\xc6\xc0\xc1\xae\x37\x82\x6e\xc0\xcf\x80\xde\x16\x8d\x11\xbb\x30\x64\xd2\x9d\x80\x1f\x5f\xba\x33\xd5\x8b\xd0\x86\x7e\xc0\x0f\xc5\xdc\x95\xe9\x94\x4e\xd8\x30\x02\xbe\x8d\x3b\x55\x13\xde\xdd\x86\x1e\xc0\xa9\x70\x36\x52\x46\xd0\x9b\x0a\x2f\x05\x05\xa3\x14\x98\xe9\xf0\x72\x50\xd0\xcb\x41\xba\x63\x36\x2a\x41\x41\xaf\x04\xe9\x7e\xd9\xd8\x0c\x0a\xfa\x66\x90\xee\x96\x8d\xad\xa0\xa0\x6f\x05\x5b\xe9\xe0\xed\xa0\xa0\x6f\x07\xdb\xe9\xe0\x9d\xa0\xa0\xef\x04\x3b\xe9\xe0\xdd\xa0\xa0\xef\x06\xbb\x6a\xf0\x45\xb7\x11\xb0\xff\x51\x98\x60\xd6\x6b\x23\xd7\x43\x8e\x05\x47\x41\xad\xd5\x05\x6d\x7e\x4d\xa7\xc1\x2f\x13\xd5\x4b\x3a\x37\x67\x80\xc6\x41\x37\x28\x7c\x29\x3e\x80\x82\x21\xfe\x0e\x41\x61\x28\xae\xd8\x33\x96\x93\x62\x05\x97\xff\x1b\xb7\xe7\x86\x3f\x6e\x0f\x31\x59\x63\xc4\x61\xe8\xf8\x4c\x2e\xb0\xb1\xd3\xc9\x7c\x87\x15\x53\xb2\xe2\xfc\x0c\xf6\x33\x33\x01\x51\x37\x75\xd0\x62\x71\x9e\xa9\x83\x0b\xaa\x72\x7a\x3e\xe3\xde\xd9\x8b\xab\xeb\xe0\x92\x01\xbb\x54\x07\x97\x2c\xbd\xdb\xd2\xc1\x45\x4b\x75\x30\xf2\x19\x53\xca\x92\x3b\xb5\xa9\x54\x11\xb0\xae\x83\xdb\x4b\x1d\xd4\x1b\xd7\xac\x39\x71\x41\x32\xad\x3b\xd2\xc1\x96\x6e\x0c\x57\x96\x9d\x15\x9f\xfa\x6b\xf9\x54\x71\xed\xbe\xa4\x33\xc4\xa2\x8e\x03\x83\x2b\x6e\x24\x0d\x0d\xa5\xa1\x16\x60\x7a\xb3\xe3\x4f\xfd\x05\x85\x8b\x3a\xab\xe4\xd7\xe3\x99\x3b\xb6\x57\x53\xf4\x7f\x62\x8a\x86\x87\xae\xcb\x29\xea\x7a\x0e\x1c\x0e\xb2\x0e\xba\x2c\x9b\x45\xf3\xb9\xa3\x2e\x97\xdb\x96\x6b\x9c\x99\x8e\xc9\xaf\x32\x6e\x99\x3f\xe3\x2a\xe3\xac\xcb\xe1\xc4\x01\x0b\x7f\xbf\x59\x1a\x5f\x64\x14\x9e\x89\x2e\x07\xcc\x1b\x20\xe2\x72\xc6\x45\x2a\xd7\x15\x8e\xc5\x98\x14\x3f\xc8\x8b\x80\x15\x6e\xa5\x24\x4e\x98\xfd\x85\xf4\x66\x16\x15\x2a\xc1\x2d\xe3\x6b\xf1\x03\x68\xb4\x7b\xec\x31\x22\x3a\x18\x5e\x18\x3a\xd8\xed\xe9\xa0\x7c\xe0\xea\xe0\x1a\xb2\x01\x91\xc3\x3f\x2c\x5f\xeb\xa0\xfd\xa8\x83\x4e\x63\x2c\x0f\x0e\x89\x26\x84\x50\x6e\x51\xa9\x51\x14\xd2\xe8\x21\x8b\xed\xb3\xe4\x4c\x76\xeb\x71\x61\xf7\xc3\x6a\xf5\x7e\xdd\x04\xeb\x95\x90\xc6\xf2\xa6\x8a\x69\x4d\x4a\x2c\x4a\x02\xa9\xca\xaf\xef\xa7\x16\xef\x65\x7f\x31\x1a\x88\xaf\xdf\xae\x82\x5a\xee\xc7\x15\xfa\x30\xe4\xd2\xf9\xe4\xfd\x1f\x50\xe6\x97\xce\x1f\xc3\xf3\x81\xa6\x3d\x2a\x15\xed\x7e\x4b\x07\xef\x6a\x3a\xf8\x5a\x4f\xe4\xc4\x9a\xd6\xeb\x09\xef\x51\x16\x15\xa7\x5a\x59\x02\x56\x96\x80\xbf\x1b\xe5\x7c\x25\x34\xda\xd0\xf9\x0d\x3f\x21\x8d\xae\x23\xbb\xef\x40\x0b\xbd\x1a\x3f\xd4\xa0\x60\xec\x9e\x37\x74\x50\x3e\x3e\xd3\x33\xb5\x0f\x8e\xa9\x83\x0f\x6c\x5a\xdd\x8f\xe8\x8a\x05\x79\x3d\x93\xee\xb5\x4c\xef\x92\xca\x82\xd4\x91\x63\x63\x12\x4d\x6e\xd0\x38\x68\x45\x33\x3c\xc3\x9d\xe6\xb7\x73\x16\x2f\xe0\x73\x3d\x6c\xea\xa0\x6d\xea\x60\x64\x84\x30\x9c\xc1\x37\xc7\xe2\xf8\xbd\x2f\x6c\x39\xb6\x66\xac\x6e\x68\x50\x5b\x29\xec\xfe\x2e\x58\xf0\x4a\xf0\xad\x62\xa8\xf8\x76\xe6\xc0\xbe\x1f\x2f\x26\xfc\x28\x3a\x89\x6e\x19\x4b\x4a\xe9\xb7\x21\xda\x0b\x21\x9b\xf8\x23\xfa\x86\xe1\xdc\x58\x07\x5f\x6b\x3a\x97\xca\xa7\x98\x48\x53\xe2\x62\xaf\x6d\x4e\x33\xa9\x2b\x84\x7b\xed\x68\xf0\x4a\x10\x2e\xbc\xc8\x45\x2e\x70\x8e\xef\xba\xc8\x76\x13\x2a\x72\x71\x8c\x6e\x24\x6a\x27\x0e\xd0\xd5\xcb\x8b\xff\x7e\xb7\xb6\x2b\xd4\x78\xa1\x81\xa9\x83\x32\x3f\x28\xdb\x30\xb3\x31\x75\x34\xd1\xc1\xb1\x19\xf6\x1a\x17\x13\x0f\xa4\xad\xcb\x67\x30\x3a\x55\x85\x67\x81\x90\x59\x66\xab\x99\xf2\x2c\x2c\x3f\x2b\x0b\xc7\xb9\x64\xed\x44\xff\xae\x43\x75\x27\xba\x0e\x36\xaf\xc8\x14\xfd\xe1\xc6\x37\x1c\xbd\x35\xf4\xd0\x62\x88\x10\x5d\xd9\xe3\x56\xd4\xe6\x05\xa9\x4d\x29\xb1\xbc\xd7\x7d\x73\x00\x1d\xe4\x7a\x41\x5d\x51\x9f\x07\x05\xe3\xb8\x48\x15\x96\xfa\x77\xd3\x0c\x49\x39\x8c\xaf\xb5\x31\xab\x59\x49\x6f\xb2\xc7\x79\xed\xc5\x26\x78\xed\xab\x19\x6e\xd8\x12\x38\xc5\x2f\x8e\x78\xde\xd0\xf2\xe3\x38\x75\xf2\x3c\x70\xc6\x46\x6c\xe1\x86\x75\xb0\xc2\xa9\x57\x81\x53\xc6\x6e\x12\xa7\x2c\x38\x66\x28\xf5\x5a\x34\x30\xdf\xcb\x36\xf3\xfd\x74\x7c\x67\x1d\x65\x6f\x5e\x4f\x07\x1f\x4a\x23\x1d\x94\xdb\x28\x9b\x81\xa6\xef\xa5\x6e\x5b\x2f\xcf\x43\x0e\x65\xb1\x95\x9f\x3b\x47\x50\x17\xa7\x7f\x3c\xb4\xc3\x97\x7a\x5d\x07\xcd\x47\xb6\x1a\x96\x84\xa3\x66\xa7\x7d\xbd\xba\xd3\xe5\xef\x82\x30\xaf\x05\x35\xb7\x55\xd4\xfc\xcb\x77\xb0\x39\x78\x35\x88\x19\x14\x8c\xdd\x66\xc6\x39\x8a\x5f\x0f\x9f\x9f\xe3\xab\xe9\xbd\x9a\xde\xfc\x76\xff\x4a\x3c\xbd\x1b\x03\xec\x62\x02\xfd\xa0\xd1\xea\x82\x7a\x96\x3f\x04\x68\x75\x4e\x40\xab\xb3\x1f\x14\x8c\x2e\x48\x70\x79\x52\xae\x94\xfe\x2d\x99\x57\x79\x71\xbf\xc9\xad\xed\xe9\xdf\xcf\xbf\xe0\xab\xb4\xf5\xc5\xea\x82\x87\xc3\x16\x2c\xd6\x5e\x9e\xff\x2b\x6d\xd7\x74\x50\x42\x44\x07\xe5\xdd\x7e\x7a\x71\xbb\xdc\x65\xab\xdf\xf6\xe3\xcf\xbc\x8a\xb6\xdf\xd4\xc1\x55\x2a\xf9\xc9\x34\xf3\x37\xf3\x7e\x7c\xc1\x10\xee\xaf\xd0\xf2\x55\xa0\xe5\xd6\x76\x02\x2d\xe9\x18\x91\x01\xec\x23\xf2\x6a\x56\x9e\x69\x06\xf0\xb1\xa1\x83\xee\xa3\x0e\x2e\xfd\x53\x1d\x6c\xe9\x77\xb3\x55\xa4\x1d\xd6\xd4\xa3\x9a\x30\x4a\x70\x55\x05\x77\x07\x60\x5f\x35\xaa\x03\x63\xb0\x59\x5b\x69\x25\xfe\x2e\xd3\xf8\x95\x20\x4c\xd2\xc8\x77\x88\x7b\x0e\xb4\x3d\xe8\x24\x5c\x8d\x32\x1c\x86\x7f\xae\xef\xd1\xc2\x97\xcd\xbf\xd4\x6f\xe5\x50\xf4\xca\x1d\x8a\xf4\xf7\x8f\x2b\x32\xf6\x1a\x89\xcb\x2b\x21\x63\x65\x5d\xf5\x24\x3f\x42\xb6\x8b\xc9\x10\x07\x47\x49\xdd\xea\x7e\xb1\xfd\x9b\x75\xab\x41\xc1\xb8\xf2\xdb\xac\x1e\xa7\x17\x4d\xf6\x30\x2c\x21\x77\xde\x65\xcc\xb5\xf6\x6a\xa2\xbf\x9e\xe9\xf7\x4a\x26\x7a\x72\xbd\x3e\x81\x36\x26\x98\xf4\x1d\x68\xc5\x9e\x02\x91\xec\x19\x8a\x9c\x80\xef\x17\x95\xeb\xb6\x14\x3a\xe5\x66\x8a\x69\xcf\x9d\x72\x69\x6a\xc7\xde\x32\x12\xe3\x56\xe9\x05\xbc\x01\xca\xbb\x3a\x60\x92\xa1\xc1\x24\x43\xa3\xc4\x30\x61\xdc\xeb\xfd\x0c\x39\xb0\xfd\x0f\xc4\x91\x9d\xa3\x47\x3d\xa8\x54\x54\x51\xe8\x04\xa3\xfb\xe0\x24\x24\x87\x6c\x62\x28\x8a\x89\x7d\x79\x2e\x52\xa9\x58\x99\xd6\x4a\x44\x93\x84\xef\xdb\x28\x6d\x4e\xff\xb6\x8c\x9f\xf9\xe3\x7b\x75\x78\xd5\xd0\x05\x65\x0f\x87\x3c\xea\xa0\x74\xa4\x6a\x0b\x2c\xa8\x03\xe3\xbe\x32\xfa\x99\x8a\x82\xfd\x9e\x0e\xca\xa5\x92\xfe\xac\x7e\xe0\xc3\x6b\x9e\x1a\xff\xe3\xe4\xb3\x5c\x49\x90\x4f\xec\xd0\xfb\x8c\xdd\x66\xb8\xd8\x7a\xc1\xdd\x66\x0c\xb1\x58\xa5\xee\x8e\x76\xf5\xd5\x46\xb3\xe7\xe9\x56\x42\xb3\xda\xc4\x6e\x8f\x92\xc4\xdd\xed\xe0\xea\xa0\xa5\xc8\xa4\xb5\xe2\x7b\x90\x25\x97\x2e\x31\x44\xdf\x77\xcb\xf5\x73\x10\xe1\xda\xf9\x73\xd8\xc8\x92\x8d\xf4\xd5\x35\xd7\xff\xb0\x6b\xae\xc7\xf7\x93\xb9\xc9\x56\x77\x5d\xff\xbd\x96\xa2\x57\xb2\xe8\x95\x12\xa6\xd8\xa6\xff\x15\x8d\x7a\xd4\x77\xfa\x9c\xaa\x2a\x9e\x8e\x11\x79\x15\x5f\x41\x81\x16\x6b\x11\x61\xcd\xf6\x81\x5c\x46\xcb\xb6\xb9\xb5\xb9\xb5\xf9\x13\x88\xe1\x92\x84\x73\xff\x50\x67\xed\xf2\xb6\x46\xec\xd1\x95\x36\x9c\x8b\x31\xeb\xad\x52\xd8\x6f\xce\x95\x0e\x1a\xbc\x4f\xcf\x74\x70\xbe\xab\x03\xe3\xe0\x54\x07\x17\x8c\xf1\xf3\x19\x8c\x3e\x92\x6e\x1a\x98\x3b\x28\x33\x69\x67\xf7\x4a\xda\x84\xc4\x9a\x1e\xc7\x5a\x89\x53\xaa\x78\x58\xfc\xb6\x7d\xfb\xeb\xbc\x20\xef\x6b\x3a\xd8\xd2\x9b\x53\x72\x57\xac\x30\x5c\x79\x41\xae\x68\xd1\xcf\xa4\x45\x9b\x09\xa9\xb4\x05\x2d\x07\x5b\xc1\x0c\xce\x6e\x11\x6b\x43\xe9\x37\x58\x0b\x9e\xb1\x24\x6c\x76\x19\xbe\xef\xd6\xe5\x4a\xcc\x58\xfa\x1e\xdf\x53\xba\x33\xd6\x41\xf9\xe8\x3a\x83\x24\xc4\x2c\x97\x24\x18\xf8\x98\xe8\xe0\xc8\x0a\x33\xe1\xba\x8f\x92\xae\x83\x92\x5b\x0a\x4f\xae\xdf\x84\x4d\x1d\xb4\xf8\x51\x04\x8f\x32\xc7\x98\xdc\x64\xbc\x6d\x0d\xe4\x11\x72\xd7\x47\xd7\x89\x23\xf3\x60\x74\x6a\x7b\xfa\x40\xbd\xc6\x0a\xe9\x57\x48\xff\xc3\x48\xbf\x95\x50\x5a\xb6\xa0\xed\xc1\x57\x6a\x90\x5f\xd4\x68\xef\x48\x17\xc9\x58\x72\xaf\x30\x84\xa1\x44\x07\x57\x0c\x27\xf9\x95\x00\xdb\x12\x7d\x5b\xe5\xba\x0e\x36\x5b\xa5\xc4\xc2\x9b\x30\xb1\x19\x5b\x5c\x79\x85\xa4\xe9\x8b\xeb\xb2\xd8\x1b\xf7\x4d\x61\x1d\x7b\xd8\xbd\x0a\x1d\xa5\x1b\xea\x35\x50\xfc\xe5\xa0\x95\x0e\x89\x4c\x7a\xd1\x55\x51\x66\xc4\x3f\xd8\x35\x1d\x5c\xf3\x2d\x1e\x77\xfa\x42\x97\x4b\xc4\x6f\x98\x35\x77\x37\xba\x49\x62\x85\xfc\xaf\x18\x25\x5f\x09\xf2\x57\x4a\x89\x15\x1f\x13\x77\x18\xb4\xe6\x29\xa2\x43\x7b\xc5\xe9\x2c\x55\xb4\xaa\x8e\x2e\x67\xe8\xa3\x17\x55\x2c\x6f\x73\xcd\xb2\x71\x0a\xd0\x05\x39\x05\x77\xed\x6b\x1d\x94\xfb\x1f\xd2\xbc\x71\xcd\xd6\x81\xe1\xb9\xe4\x27\xa9\x96\x43\x2d\xca\x32\x27\xa1\xbd\xc2\x39\x9e\x72\xc4\x6f\x51\x02\x4d\x1a\x9c\xcd\x56\xda\x15\x76\x8b\xf6\x8f\x6a\xed\xc4\x2f\xe9\x22\xf9\xbb\x7e\x41\xa1\x44\x4c\xca\x1a\x65\xb6\x7b\xec\x71\x54\x8b\xfc\x42\x78\x07\xb2\x51\xa6\x54\x9e\x27\x69\xea\xe0\x43\x6b\xce\xd6\xba\xe8\x08\xca\xe5\x76\xd6\xe9\xbf\x7c\x67\xdd\xad\x0e\x4a\xe7\x97\x72\x75\xe0\xc7\x13\x3f\x4e\xef\x51\xb8\x85\x2c\xf9\x9d\x14\x2f\xd1\x90\x48\xde\x98\x33\x98\x2b\xf9\x72\xb5\xda\xbc\x98\x81\x67\x47\x75\x04\x69\x51\xd7\xa4\x0f\x7c\xb9\xe1\xff\x3b\x5d\xd0\xda\xef\x88\xa5\x86\xad\x3d\x1b\xfa\x66\xc2\x5c\x1e\x14\x4a\x7e\x71\x00\x0a\xa5\xfb\xe2\x17\x50\x28\xf3\xbf\x15\xf1\x37\x5c\x7a\x36\x15\x13\xba\xf0\xd5\x36\x04\xed\xd9\xaa\x6c\x6e\x67\xd2\x86\x9d\xec\xe0\xe9\xdf\x2e\x3f\x17\xb7\xcf\x6b\x50\x1a\x4f\xae\x8a\x57\xc0\xe8\xb1\x76\x19\xd7\x3a\x38\x64\x2b\xc4\x51\x4f\x07\x26\xaf\x0f\x1e\xea\xa0\xbc\x5f\xd3\x81\xc5\xf0\x6e\xb3\xa6\x03\xd3\xd0\x41\xe9\xce\xd0\x01\x6e\x19\x3f\xc1\xcc\x34\x07\x63\xda\x42\x67\xef\x5c\xff\x7d\x91\x86\x1b\x9e\x8c\x2d\xf5\x38\x9f\x33\xe8\x60\x37\xb9\x84\x45\x9c\xca\x15\x3f\xfb\xe4\xe5\x96\x30\xc6\xc8\x6c\x96\x36\x7f\xab\xe6\x42\xac\x60\x3b\x62\x05\xdb\xf9\x9f\x5a\xc1\x8e\x87\x4c\x38\x2b\xa7\x97\xad\xcb\xaf\x3a\x18\xd4\x57\x2b\xd7\x6a\xe5\xfa\x25\x2b\x97\x61\xa8\xe4\xe7\x1c\xf7\x61\x70\xde\xea\x82\x66\x67\xae\xcf\x8e\x51\x2b\x4e\x40\xa1\x24\xfe\xce\xf2\xdc\xe1\x97\x8e\x88\x45\xa6\xbc\x95\xfa\x6d\x97\x7e\xee\x8f\x2b\x44\x1f\x59\xfd\x44\x53\x19\x31\x19\x52\x1d\xf4\xaf\x46\x3a\x98\xec\x5f\xb3\x98\x52\x8f\xc9\x5e\xb7\x07\x53\x8c\x23\xfb\xc3\x35\x21\x6e\x73\xf2\x6a\x9d\xbf\xe2\xac\x66\xcd\x84\x32\xa5\x2b\xf4\xf9\xd9\x3a\xc6\x84\x61\xe1\x9c\x8e\x5e\xcf\x41\x7c\xbf\x4f\xc5\xd8\x4a\x9e\x70\xf2\xb3\x55\x8c\xd9\x51\xcf\xa5\x8a\x42\xe2\x25\x75\xb5\x68\xbe\x76\x5c\x7c\x25\x58\x5f\x4e\xe8\x9d\x3a\x70\x04\x1d\x98\xe1\xd0\x37\x2c\x0e\x17\x71\xe8\x5b\xc4\xbd\xd9\x28\xfd\x52\x7f\xbe\xd2\xc4\x90\xa8\xfa\xb7\x99\xa1\x25\x77\x1c\x6a\x05\x4b\xc9\xd1\x71\xa0\x97\xe9\x6f\x59\x29\xe2\xf9\xc3\xb3\x9c\x3c\xf5\x33\x06\x48\x19\x96\x0c\x3a\xf2\x77\x76\xb8\x04\x9b\x3b\x86\x7a\x7d\x68\x07\x8f\x6e\x91\x43\xc7\xd4\x0e\x3a\x73\xd5\xf4\x42\x5f\xd2\x9f\xad\xa6\xaf\xcc\x55\xd3\x0b\x2d\xfc\xa2\x2a\xfb\x6d\x71\x67\x43\xa9\x0f\xd0\x05\xed\x03\xe7\x80\xe8\xa0\x74\xe7\xa6\x57\xbb\xf2\x25\x17\x45\x7f\x9a\xee\xe3\x83\xae\x83\x0a\x6a\xea\x99\xfe\xdf\xd6\x75\x78\x33\x7a\x6a\x8b\x38\x2d\x4b\xdd\xe8\xab\x18\xf4\xd9\xf0\x8c\xdb\x20\x57\x7a\x50\x2e\xab\xbc\x54\x87\xde\x62\xc8\xaf\x4f\x56\xb6\x98\xc8\x7b\x94\x13\x07\xc0\x96\x96\x3c\x15\xef\x05\x7f\x41\xc1\xd8\xda\x99\x76\x6c\x8a\x79\xf3\xd1\xc9\x91\x1c\x7b\x7e\xa5\x03\x1c\x47\x6f\x25\xf6\x36\x91\x47\xd3\xbd\x38\x9f\xb1\xe0\x69\x02\xab\x83\xa6\x5e\x31\x9f\x91\x5a\xc9\x3c\x6a\x0e\x07\xd4\x1e\xbd\x1a\x11\x23\x3a\x48\xa0\xce\x58\x86\x7d\xb4\x62\xa4\xff\x2e\xd3\xee\xb5\x4c\xf0\xc4\x7d\x23\x5d\x68\xdb\x98\x90\xa0\xdb\x4a\x10\xfd\x78\x4b\xa1\xdc\x50\x0b\xa6\xf6\x15\xc6\xdb\xc5\x0c\xbd\x2c\x36\x3f\x4c\x99\x3a\xd2\x3a\xa8\x97\xfd\x05\x85\xd2\x16\x6d\xef\x03\x0f\xed\x87\x0d\xec\x42\x1d\x54\x9c\x6b\x1b\x9c\x74\x9a\xfb\xa0\xf4\xee\x5a\x07\xa5\xf7\x53\xa7\xcd\x18\x3b\xef\x75\x60\xb8\xdd\xeb\x57\xab\x69\xca\x9c\x25\x86\x3a\xea\x9b\x5c\x29\xbf\x42\x90\x97\x47\x90\x8a\xa1\xf2\x44\x5d\xec\x40\x82\x12\x0e\xf4\x41\xc1\xf8\xc2\xc4\xcc\xdf\x70\xa3\xde\xec\x1f\x63\xd0\xed\x3a\xab\x97\x51\x19\x9b\xec\xb9\xd9\x6c\x88\x96\x8a\x13\x2e\x1a\x8c\x3b\xd1\x89\x1e\x1e\x35\xc8\x59\x40\xbe\x9b\x86\xbf\xdd\xb5\x43\x8e\xf6\x6e\xac\x83\xeb\x5e\xfa\x45\x00\xd9\x75\x15\x5c\xf1\x13\xdb\x22\x2f\x6c\x69\x5c\xad\x31\xaf\xbd\xa4\xf9\x28\x94\xf0\x04\xbb\xb0\x27\x90\xd0\x7b\x77\x98\x56\x08\x00\x7e\xef\x71\xd9\x2a\xd6\x54\xa5\x80\x44\xaa\x0c\xbd\xcd\x12\x97\xc9\xfd\x5a\xdd\x0d\xfb\xfc\x27\x98\xc6\xc3\xcb\xff\x12\xc7\xa5\x5f\x3c\x0e\xfa\xd4\xa1\xca\xb9\x03\x31\x6f\x10\x1d\xb8\x91\xe2\x0b\x92\x37\x85\x64\x28\xd7\xf4\x9f\xec\xa4\x65\x98\x77\xcd\xec\x93\x07\x46\xb6\x0e\x0c\x7e\xb1\x9f\x53\xbe\xfa\x99\xda\x03\xa3\x7d\xcb\x66\xc6\xc3\x5c\x51\x70\xb5\x85\xfc\xf5\x52\x31\x23\xc1\x08\x5c\x62\x44\xc8\xeb\xf6\x66\x7f\xf6\x38\x8e\xf2\x49\x2b\xdc\x3e\xdb\xac\xe9\xcf\x1c\xcc\x51\xd1\x75\x50\xe2\x5d\x03\x93\x4e\xe5\xb1\xbf\x45\xff\x08\x46\xdb\x49\xe6\x6d\xc4\x5d\x89\x9f\xaf\x60\xaa\xbf\x16\xa4\xda\x51\xd7\x96\x4b\x6c\x13\xec\xbb\xc1\x55\xab\x0b\x4e\x42\x16\x3b\xa1\x87\x56\x44\x50\x0a\x0a\xc6\xa3\xb2\x4f\x35\xd2\x44\x2b\xe7\x96\x94\x2a\x5c\xcd\x5c\xd9\x4a\xfd\xb6\xcb\xe9\xdf\x66\x69\x73\x2a\xec\xfb\x7e\x41\xa1\xb4\x5b\xb6\x28\xd8\x3a\x6e\xb6\x8a\x14\x18\xa7\x94\xd5\xf2\xf1\x51\x07\xad\x5b\x4b\x07\xa5\xdd\x2b\x1d\x94\xf1\x94\x02\xbb\x79\xa9\x03\xc3\xeb\xff\x14\x05\xf6\x4f\x91\x41\xeb\x53\x43\xbf\x83\xe9\x0a\x37\x5e\x10\x37\x92\x5b\x26\x2f\xa9\xdd\xa7\xfc\xc0\xa7\x29\x3b\x5a\xe9\xb2\x78\xf0\xc2\x76\x34\xe3\xf8\x8e\x65\x3a\x76\x9b\xec\xb1\xb2\xa5\x3d\xc7\x28\xef\xbe\x9f\xba\x25\xfb\x0a\x3a\x2e\x7c\xe0\xb4\x6c\xea\x88\xae\x90\x7e\x25\x54\x68\x52\x73\x50\xae\x94\x7f\xbb\xfa\x60\xae\x62\xc1\xf4\x2c\x0a\x8c\xe6\x35\x9d\xcd\x59\x70\x67\x15\xfe\xb6\xf5\x38\xd1\xc1\xd1\xd5\x99\x0e\x36\x8f\x5b\x53\xec\x05\xf7\x62\x1e\x35\xe5\x79\x5f\x9b\x91\xd7\x25\xa9\xc9\x9c\x32\xbc\x42\xf1\xfe\x75\xe8\x54\x12\xcf\x8c\x78\xbb\x5b\x14\x94\x38\xdd\x32\xf9\x22\xbd\x52\x7c\xf7\xd7\xee\x73\x9f\xb5\xdd\x67\xc5\xd0\xfc\x8d\x4a\x9a\xcf\xd0\x24\xaf\x3f\x80\x63\xea\xd0\xc7\xc1\x04\x05\x1b\x7a\xa9\xa4\xcf\x3d\x85\x6d\xf8\x3d\x67\xb0\x2d\xbc\xeb\xed\x47\x0e\x61\x1b\x02\x74\x41\x87\xc0\x61\xc4\xbe\x74\xae\xba\x6b\xee\x8c\x74\x60\xdc\xef\xc2\x5f\xb5\xe7\xe0\x44\x7f\xd6\x9c\xba\x92\xa1\x5f\x2f\x76\x6c\x8b\x63\xda\x8f\x3a\xdd\x80\xfd\x87\x7a\xa0\x07\x41\x4e\xcb\x1d\x13\x0b\x43\xf2\x47\x63\x00\xfb\xd4\x0d\x19\x9c\x4d\xb0\xa1\x6f\x05\x85\x4a\x9b\x31\x37\x9b\x3a\x28\x6c\x71\x44\x08\x0a\xa5\xaf\xd4\x65\x81\xe5\xda\x61\xb3\x5d\x3c\x08\xca\x3a\x2a\x29\x79\x50\x93\xba\xc1\x86\xbe\x55\xd6\x83\xc2\x96\xcf\x0a\xd8\xdc\xdd\x8a\xe3\x4f\x90\xd3\xf7\x91\x8d\x48\x50\xd0\x75\xce\x3f\x49\x9e\x29\x28\xb4\x0e\xf9\xed\x80\x7a\x0c\xdd\x82\x03\x14\xd6\xa7\x12\x14\xca\xef\x8a\xad\xd0\xbd\x25\x28\x94\x26\xa7\xec\x3b\xd8\xde\xe5\x3b\x8f\xa2\x04\xb6\x85\xef\x91\xcb\xf7\x1e\x71\xee\xac\xd2\x89\xf2\xa7\x76\xbf\x13\x94\x37\x79\x1f\x44\xf0\xbe\x83\x3d\x26\xf4\x84\xa5\x84\xae\x51\xa7\x2a\x33\x27\xd6\xdd\xaf\xd4\x39\x05\xe5\x8a\x4f\x4e\x81\x51\x61\x53\xbd\x34\x74\x74\xae\x77\x0f\x8c\x44\x9e\xe7\xc8\x27\x38\x3c\x3c\x4d\xd6\xfb\x43\x5c\xef\xd1\xfe\xfe\xbb\xe2\x87\x60\x47\xb0\x97\x67\xd0\xc4\xb7\xd8\xfc\xe3\xe4\x01\x7e\x81\x36\xc2\x24\xd8\x30\x0c\xb0\x61\xb0\xbe\xd9\x05\x05\xa3\x04\x36\x58\xa7\xf7\x74\x50\x80\x3a\x28\xec\xea\xc0\xd4\x41\xc1\xe4\xf5\xd2\xcb\x95\xa0\x60\x0c\x6d\xa2\x03\x38\x1c\xeb\x60\x8b\x1f\xa6\x53\x72\x26\x3a\xb8\x82\x44\x0f\x8c\x0a\xef\x9a\xd6\x41\x37\x68\x31\x5a\xf7\x2a\x15\x25\x2f\x71\x87\x29\xf7\xb5\xed\xb7\x5a\xab\xad\x21\x2b\x72\xf9\x82\xe4\x92\xe1\x4e\xa7\x1b\xb0\xff\xdb\x92\x54\xb6\x3a\xdd\xed\xd6\x3e\x0f\x04\xad\xfd\x2e\x68\x5d\x75\x41\xeb\x8c\x01\x80\xad\xf0\x9f\xdc\xf9\xf1\xdb\x51\x6b\x0a\xd1\xb6\x0c\x27\x72\x71\x92\xce\x4e\x9d\x7e\x5b\x07\x3b\x5f\x4b\x3a\xc0\x5f\x75\xf0\xe1\x61\x41\x67\xa9\xf8\xc4\x9a\x8c\x58\xd7\xd0\x81\x71\xf9\x28\x6e\x31\x33\xea\x59\x27\xdc\xcc\x48\xf9\x4c\x59\x8b\xa6\xad\x30\x42\x68\xf7\xe4\x5b\xb2\xc5\xca\x5b\x0a\xee\x47\x52\xfc\x8c\xd2\xce\x19\x49\x7c\xec\xe9\xe0\x74\x9c\x7e\x99\x13\x35\xe7\x65\xa9\x54\xaf\xb5\x88\x40\x59\x36\x1b\x03\xe8\x0d\xe0\x28\xd8\x30\x4a\xc6\x26\x5b\x2a\x2b\xec\x6f\xb9\xb2\x19\x14\xcc\x5b\x50\x30\xdf\x83\x82\xf5\xfe\xf7\x3b\x05\x04\x85\xab\xbb\xda\x2d\x30\xa0\x85\x6e\xb9\x69\x92\x8b\xc0\xe7\x53\x97\x40\x2c\xf2\xf2\x12\xa9\x38\xc5\xe3\x07\x77\x8a\x2d\x29\x19\x6f\xa9\xcb\x2c\xb2\xde\x96\x4f\xfb\x23\xa5\x61\xaa\x4f\x5d\x6b\x31\xff\x2d\xb5\xee\xff\x8a\xb4\x98\xfe\xca\xd2\xe6\xa5\x0d\xb6\x74\x5d\x41\x94\xda\x18\x8b\x1d\x1a\x05\xc3\x60\x22\xae\x61\x70\x11\x77\xc3\xa8\x30\x7c\x09\x7a\x77\xc5\x0b\xd0\xf3\x41\x4f\x07\x8c\xcd\x44\x3a\x28\x58\x52\x91\xf9\xdd\x27\x73\xec\xb7\xbe\x16\x2b\xc0\x98\x5c\xe9\xe5\x62\x05\x94\x9c\xf3\x9e\x0f\x8c\xdb\xdb\xb0\xa6\x8d\x63\x1d\xd4\x3e\xfc\xcf\x0f\x53\x79\x9b\x33\xe9\x72\x9c\xea\xd4\xef\x43\x4c\xee\xb1\x6d\xa3\x40\x8a\x01\x1b\x86\x11\x48\xf6\xbf\xd0\xe3\x0c\x46\x29\x28\x18\x5b\x57\x13\x1d\x6c\x37\xda\x3a\x28\xb5\x3e\x8c\xb9\x35\xa7\x92\xa0\x8d\xbe\x3f\x94\x79\xc8\xf4\x81\xe4\x05\xd0\xc3\x44\x07\x90\xdf\x21\x73\x79\xcd\xde\x2c\x3d\xa8\xec\x26\xea\x72\x70\x0b\xbd\x50\xfc\xe2\x32\x09\x93\x43\xac\x62\x1f\x70\x69\xc4\x9c\xe5\x6b\x15\x14\x4a\xf6\x2e\x61\x70\xa5\xce\xa3\xc9\x9e\x62\x4d\xa6\x6c\x75\xd6\x23\x47\x6b\x6e\xa8\xbc\xad\x2f\xc1\x01\x44\x4e\xda\x7c\x7b\x5e\xdb\xd2\x41\x8d\xe8\xc1\xd6\x56\xb2\xce\xc4\x42\x4e\xcf\x77\x26\x01\x93\x9d\x0a\xbc\xde\xe5\xc0\xd4\xd9\xcc\x0e\xa7\x74\x40\x8e\x4d\x1d\xd4\xb7\xaf\xf5\xc0\x50\x52\xbe\x83\x43\x48\x6f\x69\x20\xd3\x44\x09\x02\xe3\xf0\x96\xe8\x41\x65\x47\x2d\xe7\x1d\xfe\x82\xc3\xae\x29\x71\xf0\x42\xaf\x5b\x3c\x66\xdd\x22\x8b\xf9\x51\x3d\x6f\xef\xe2\x91\xe5\x58\x1e\xed\xb4\xd9\x33\xda\x0d\xc8\x96\x0f\xf2\xde\x0c\x55\xb0\x54\x57\x2e\x01\xe2\xd7\x91\x45\xf7\x92\x7d\xd0\x75\xf0\x95\x75\x55\xa7\xad\x03\x9f\x4d\xbf\x4e\x2b\x7c\xb9\xac\xe9\xc0\xd5\xb3\x5e\x4a\x3a\xd5\xc1\xd8\x0c\x5f\xa6\x43\xe6\xbc\xcc\xc9\xe7\x99\x54\xdf\x55\x44\xb0\x93\x9c\xee\x87\xd0\x86\xe3\x48\x81\x51\xd0\x37\x41\x41\xdf\x0a\x36\xaf\x8a\x14\x6c\x86\x6c\x39\x5f\x89\x8d\xc9\x65\xc7\x28\xd6\x40\xc9\xea\x3e\xb2\x67\x9f\xcd\x24\xe7\x51\x0f\x4a\x9b\x89\x99\x74\x08\x47\x3d\x8c\x9c\x30\xb7\xdd\x60\xe7\xba\xd8\x02\xbb\xa1\x10\xff\x85\xde\xea\x45\x33\x30\x4a\x9b\x6a\x0a\x1f\x5a\xd0\x36\x21\x81\xb6\xc4\x9a\xa0\x00\xf7\x8b\xad\x10\x69\x79\xba\xc9\x7e\xb1\x25\x9d\x19\x94\x84\xa3\xe0\x90\x1f\xc1\xb5\x0b\x0e\xf7\xbb\xa0\x31\x60\xa2\x7a\x8c\xf1\x4c\xf8\xe7\x58\x9f\xfa\x95\x83\x82\xb1\xf3\xe5\x44\x07\x5b\xe3\xba\x0e\x6a\x83\xba\x0e\xca\x1f\x9a\x3a\xe8\x97\xc6\x3a\x28\x8f\x77\x0d\x70\x75\x7a\x2d\xfc\xa0\x1e\x2d\x79\xdf\xf0\x58\xbc\x6c\x7e\xb5\x84\x8b\xd4\xa6\xdb\xd6\xc1\x63\xcf\x60\x4c\xc9\x35\xdf\x87\x7a\xd1\xec\x71\x55\xaa\x5a\xc7\x23\x4a\xa8\xed\xdb\x7e\x70\xd4\xe9\x82\xa3\xfd\x2e\x38\xba\xea\x82\xa3\xb3\x2e\xe0\x9a\x24\x1f\xec\xca\x7f\x61\x4d\xcb\x7a\x25\x28\x18\xde\xa0\xe9\x83\x9d\xaf\x3a\xb0\xd1\xad\x0e\x76\x1e\xae\x7c\x80\x6b\x3e\xa8\x6c\x8d\x39\xe5\x4b\x68\x40\xb0\x83\x3d\x3c\x82\x1e\x0e\x0a\x86\x5e\xd1\xe5\xfa\x14\xc0\x83\x70\x4d\x0a\x91\x17\x1e\x30\xe4\x1d\x06\x9b\x06\x57\x3c\x45\xe9\xa9\xeb\x40\x24\xd4\x27\x9c\x66\xea\xb1\xea\x64\x37\x54\x9f\x98\xa2\x6e\x06\xdf\xb9\x52\x42\x0f\x8f\x8c\xf0\x35\x74\x70\x54\x9f\x84\x3a\x14\x46\x07\xc1\xd5\xe9\x89\x0e\x8c\x9e\xf5\xc8\xc9\x8b\x5a\x48\x0b\x7e\xf1\x1d\xba\x68\x21\x33\xca\xd8\x3a\x67\x64\xaf\xe4\x8f\xf4\xa0\xb4\x93\x98\x73\x2d\xe8\xdc\xf9\xc8\x85\x72\x0e\xef\x96\xf5\x60\x17\x83\x5d\x5f\xce\x1e\x74\x18\xec\x24\x6b\x74\x06\xfb\xf4\x86\xfd\xe1\x49\x3a\x9d\x6e\xd0\x1b\x15\x5b\x40\x4e\x38\xb2\xdf\xaa\x17\x4d\xd6\xd7\x6a\xa2\x36\xf4\x1d\x5f\xce\xd1\xb2\x5c\x64\x58\x3b\xb6\x8b\x07\xa0\xd0\xf3\x45\x6b\x42\x1a\xcf\x66\xd9\xb5\x45\x58\xd4\x87\x06\xa9\x17\x0f\xc0\xf6\xe8\xce\x07\x86\x4d\x7a\x7e\x60\xe8\x89\x16\xb4\xb1\x8f\x18\x09\xe5\x2a\xf4\x90\xd3\x08\x7a\x43\xc1\x5b\x08\x05\xe2\xc9\x6d\xeb\x00\x18\xdb\x13\x1d\x06\x46\x29\x59\x2d\xea\xdc\x52\x9b\xad\x59\x06\xa7\xaa\xbc\x6a\x46\x89\xff\x95\x0b\x90\x29\xaa\x67\xfa\x89\x65\x68\xd1\xc3\x56\x4e\xfa\x3d\x13\x5c\xe9\xc6\x61\x68\x88\x62\x7f\x77\xdf\x9b\xfe\xaf\x51\xef\xbc\xac\x46\x89\x11\xac\x4a\xa2\xf7\xfc\x11\x82\xa9\xf5\x7a\x53\x50\x9f\xc4\x7a\x2d\x56\x68\x16\x53\x3a\xb8\x6b\xb1\xe7\x57\x46\x21\xce\xea\x3a\x98\x10\x1d\x1c\xa1\x33\xbe\x82\x04\xbb\xc9\xc9\x79\x86\x3d\x13\x62\x87\x04\x05\x7d\x87\x0d\xac\xbe\x13\xec\xf8\x60\x47\x2c\x91\x3b\x97\x43\x3f\xd8\xdc\x52\xc1\xe9\x80\x8c\x11\x56\x71\x45\xc5\x93\x10\x47\xe6\xa0\x61\x50\xae\x24\xca\x3f\x87\x0e\xf5\x28\xe9\x43\x46\x1f\x78\x05\x76\xcb\xe2\x58\x74\x18\x13\x9e\xd9\x22\x98\x3d\xb9\xf2\xc1\x71\x93\x8b\x41\x3e\x38\x25\x7e\xea\x85\x73\xa7\xd9\x51\x73\x5e\xe6\xa7\x0a\x8c\x72\xa2\x09\x5d\x38\xc0\x1e\x0e\xf9\x70\x3d\xd8\xbd\x2a\xf6\x45\xb5\x05\x72\x1b\xc5\xe3\x34\x13\xd7\x65\x0d\xf6\xe0\xd8\x67\x22\x6e\x89\x21\x42\x99\x13\xc5\x82\x39\x64\x8c\x86\x24\x8b\xd1\xc8\x1a\xb0\xae\x0f\x41\x89\x6c\x5a\x43\x71\x40\x15\x67\x0c\x38\x1b\xf0\xc1\x10\x2f\x8f\x57\x6d\xb1\x80\x6e\x87\x0b\x5e\xa7\xbb\x73\xb6\xdf\x0d\xce\x3a\x5d\x70\xb6\xdf\x05\x67\x57\x5d\x70\x76\xd6\x0d\x76\x74\xb0\x1d\xfe\x7b\xcd\x2a\xad\xbb\x59\x2a\x2d\x43\x07\x78\xb2\x52\x69\xad\x54\x5a\xaf\xbf\x88\x20\xa7\xe5\xae\x0e\xba\xd1\x89\xec\x81\xbc\xee\xe1\xf7\xa1\xd6\x60\xbf\xbe\x32\xa7\xac\xcc\x29\x2f\x69\x4e\xf9\xac\xe5\x6c\x4c\x86\x6e\x6e\xef\x53\xae\x76\xeb\x60\x13\xfe\x51\xeb\x61\xeb\x0b\x24\x41\xf8\x59\x87\x23\x38\xa4\x39\x6d\x66\x34\xf9\xe2\xdb\x33\xa3\x1b\x94\xc0\xa1\x33\x99\x19\xbf\x0f\x87\xd0\x99\x19\xfb\xce\x41\xc8\xa3\x0f\x64\x26\x40\x93\x8e\xd0\xcc\xc8\x36\xf5\xe1\xd0\x1c\x50\xcf\x9b\x09\x72\xea\xc3\x3e\xb4\xa8\xdf\xa7\xfe\x4c\x98\x2e\x1e\xf5\xfc\xa1\x97\x05\xe0\xd9\x90\x78\xd8\xfc\xa3\xe3\xdd\x1c\x21\x1b\x11\x18\xc3\x34\x20\x76\x68\x70\xd0\x9f\x8c\x95\xd2\xdf\xd3\x01\x24\x04\xb9\x3d\xdf\xe9\xcb\xec\x5b\xd0\x45\x8e\xff\x0c\x4c\x0f\xf6\x20\x51\x5a\xda\xe4\x42\x75\x3c\x04\x7d\x1f\xcf\x8a\x74\xe0\xe3\x23\xe4\xba\xab\x19\x10\xfb\xd4\x87\x36\x9c\x11\x79\x82\x89\x3b\x80\xee\xac\xe8\x26\xee\x39\x68\x5e\xe6\x4d\x1f\x12\x6b\x56\xea\x16\xb4\x61\x8f\xce\x88\x6c\x63\x38\x42\x93\x19\x91\x67\xd4\xf1\x68\xa1\x4d\xef\x95\xd4\x2d\x38\xf6\x3d\x1a\xb5\x9b\x0d\xcd\xc4\x41\x33\xe3\xfd\x2f\xfe\xa8\xe7\x3b\x70\x16\xc0\x21\xec\x51\x87\x92\x99\x19\x1c\x41\x07\xce\xce\xfe\x04\xf7\xa1\x8d\x67\xc5\x36\xfd\x9e\x3f\xea\x41\x77\x30\x07\xc2\x85\x43\xa5\x6e\x6d\x36\x9d\x7a\x58\x46\xd7\x2c\x0b\xbb\x37\x35\x36\x2d\x66\xc3\xb8\x23\xe8\xcc\x8d\x46\x73\xa2\xf7\xa1\x73\x83\xdc\x9b\x0e\xb4\x21\x1c\xcd\x86\xfa\x82\x7b\xd4\xf7\xf0\x4c\x80\x13\x38\x1a\x27\x66\x57\x2a\xbe\x45\xfb\xd0\xc2\xee\xc0\x9f\x86\x08\x5d\x37\x6a\xc4\x83\x04\x12\xe8\x60\x75\xb0\x53\x40\x0d\x3a\xa2\xce\xec\xe8\x16\x9c\x50\xcf\x53\x06\xab\xeb\xe0\x31\xb5\x71\xd0\xc4\xbd\x09\xaf\xdc\x08\x85\xfd\x0a\x87\x41\xf4\xe1\x0d\xa7\xe2\x2e\x3a\x7f\xd4\x6c\xe4\x7b\x18\x12\x35\x8a\x98\x03\xea\xc0\x3e\x12\xf1\xd0\x4d\x26\x74\xfa\x88\x78\x98\xb0\x49\x87\x08\x75\x6f\x6a\xd8\x41\x6e\x54\x8c\x1a\x98\x99\xaa\x01\x3d\x38\x82\x8e\x09\x83\x8c\x38\x3a\xa2\xd6\x39\xbe\x87\x16\xbc\xc7\xd9\x85\x4e\x27\x8f\x42\xb2\xe1\xa9\x63\xd1\x9e\x02\x2d\xbe\x17\x82\x3d\xa7\x2e\x74\x30\xcd\x84\x7d\xef\x7f\xf1\x27\x11\x24\xff\xca\x84\x6b\x21\x62\xd1\xc7\x38\xcf\xf0\x5b\x85\xf5\xf0\x90\x0e\x19\x01\x8e\xab\x08\xed\x9b\x23\xe8\xf4\xa8\xef\x28\x80\x8d\x01\x36\x61\x9f\xb2\x51\x69\x20\xe2\x39\xd0\x56\x23\x7d\x07\x9a\x90\x2a\x9d\xea\x27\x5a\x99\x8e\x3f\x71\xa0\x8d\x88\x85\xbf\x0c\xe7\x00\x35\xe9\x03\x72\x6e\xce\x1c\x4c\xcc\xc4\x68\xee\x23\x72\x8f\x9c\x08\xac\x33\xc0\x63\x87\x9a\xc3\x69\x88\x36\xbc\x87\x5f\xe8\x74\xf8\x45\xe7\x8f\x16\xf5\x89\x07\x31\x49\x44\x7a\x0e\xc5\x1e\x8f\xc5\xe6\x00\xf7\x13\xd3\xf2\xc0\x1a\x51\xe2\x51\x12\x34\x20\x81\x16\xcc\xca\xe0\x1d\x75\xbc\x9b\x2b\x38\x21\x28\xaa\x9b\xc0\x99\xe8\xc9\xf0\xc4\x5d\x28\xc5\x1c\xc8\x8b\xce\x1f\x07\xd0\xf5\x0a\x21\xa4\x02\x74\x04\x6d\x7c\x0b\xbf\xca\x2a\xca\x25\x35\x01\x71\x0f\x09\x0c\x1a\xc9\xd1\x91\xb5\x3c\x21\xf4\x6b\x3c\x44\x84\x7e\xbd\x39\x6e\xcf\x02\xbb\xe8\xc8\xef\x42\xc7\x83\xce\x10\x29\x80\xef\xe1\x08\x62\x13\x06\xe1\x53\x89\x39\x41\xc4\xf3\xcd\xe1\xe4\x8f\x26\xf5\xb1\x2b\xac\x40\xf1\x70\xcb\x20\x25\x41\x93\x61\x33\xe9\x23\x1b\xb9\xac\xc8\x50\x6d\xf0\x2c\x40\xa1\x8d\x1e\x14\xa0\x16\x24\xd0\x77\x03\xb6\x7e\x63\xfb\x8f\x2b\xe4\x7a\x89\xc8\x47\xc8\x7a\x2a\x68\xa1\xaf\xd8\xa4\x7f\xd4\xe1\x17\xd8\x49\x4c\x7d\x11\x71\xd3\xc0\xde\x44\x02\x1d\x22\x82\x92\x28\xd0\x46\x0f\x37\x1f\xa9\x33\x94\xe3\x83\x1c\x75\x6e\xb4\xd9\xfa\x37\x80\xb2\x0a\xfb\x28\x0c\x50\x40\xce\x20\x81\x23\x95\xb0\x4c\x46\x89\x19\x78\x36\xa0\x88\x60\xde\xf3\x35\x07\x3f\xd2\xc4\xd0\xb3\x45\xfc\x86\xde\xde\x74\xc6\x10\xc7\xb8\x5c\x63\xcc\x8c\x6d\x2f\x02\xe8\xe1\xbe\xff\x3c\xdc\x3e\x1d\x61\x92\x1c\xd2\x6c\xc0\x43\x07\xb1\x39\xf8\x3c\x9c\x0f\x2d\x64\x53\x7f\x8c\x9e\x05\x6d\x41\x07\xf7\xa9\xf7\x3c\x1c\x25\x9e\x8b\x1c\x07\x3e\x0f\xda\xf1\x6e\xea\xd0\xf1\x06\xc8\x46\xa3\xc9\x22\xd0\x27\xd8\xf3\xdc\x45\x00\x9b\xbe\x89\x9f\x6f\x7d\xc7\xbb\xe9\x0e\xe8\x08\x2e\x94\xe5\x25\xa3\x83\xe4\xf9\x46\x75\x19\x3f\xb7\xc0\x98\x5f\x62\xa7\x9f\xa0\x5f\xe7\xa8\x8f\x19\x71\x10\xd4\xa3\xc3\x56\x5e\xcf\x1c\xa0\x87\xc4\x2c\x3c\xc7\xf4\xa6\xee\x40\x62\xc6\x74\x9a\x33\x90\x37\x35\xd3\x41\xd9\x70\xe1\x9c\x4f\x01\x74\x18\x6d\x62\x0b\x4a\x63\x80\x6d\xc4\x84\x1b\x0f\x13\x44\xbc\x04\x52\x75\x20\xbd\x39\x83\xbe\x1d\x65\xc2\x30\x4b\x8d\xf7\x6e\xde\xd3\x01\x71\x65\xa5\xdb\xe8\xe1\x96\xfa\xc4\xb2\x21\xb1\x14\xb0\x2e\xfe\xe2\x33\xba\x17\x11\x73\xe2\xa6\xa7\x67\x1a\x84\x55\x0f\xde\x1c\xbb\xb0\x87\xec\x0c\x30\x85\x56\xb4\xa9\xe3\xa9\x0d\xeb\x32\xcc\xf6\x68\x62\x3e\x3a\x28\xd1\x2c\x09\x12\xd6\x7a\x9a\x5c\x5c\xb2\x8e\xf3\xd9\x5a\x15\x82\x4c\x13\xbe\xab\x01\xf6\xd0\x80\x3a\x2e\x92\x30\x1f\xfd\x21\x55\x33\xb9\xc2\x84\xe0\x31\xea\xcb\x78\x65\xd9\x76\x31\x63\x5a\x07\x7d\xd8\x83\x5e\x20\xbf\x86\x03\xd8\x83\x96\x8c\x66\x92\xd0\x90\x0e\x45\xec\xd9\x80\xd0\xd1\xcd\x19\x22\x83\xcc\xe8\x4b\xcc\xf8\x8d\x50\xaa\x62\x01\xfb\x03\x38\x84\x22\x6e\x1f\x9a\x82\x5e\xf0\x0f\xbf\x07\xb1\x08\x6f\xf9\xae\x29\x50\x94\x7d\x1d\xd1\x9b\xc6\x00\xdf\xb4\x30\x19\x88\xe8\x0e\xc4\x7d\xd1\x1a\x11\x4d\xfa\x37\x27\x94\xf4\x03\xf6\x36\xa4\xa4\x2f\x63\xde\x23\xc7\x77\xa1\x8d\x46\x22\x59\x17\xd9\x37\xb5\x7b\x7c\x3f\x1d\x7d\xec\x3a\x10\x45\x8d\x3f\x81\xde\x60\x04\x89\xe5\x07\xf2\x93\x7f\x45\xd1\xd4\x1e\x42\x2f\x6c\x41\x03\xda\xa6\xef\x79\x51\x23\x4e\x98\x8c\x77\xd3\xf4\x47\x63\xdf\x09\x2b\x8b\x49\x1f\x8e\xa9\x83\x32\x41\xa6\x62\x5b\xd0\x84\x61\xc1\xec\x95\xc6\xe1\x43\xe8\xba\x30\xcc\xf4\xe2\x8b\x4f\xfa\x37\x67\x4c\xe6\x8b\x9b\xdb\xc6\x26\x75\x31\x0c\xc2\x1d\x20\xe1\xa7\x8c\xfd\x00\x3d\x99\xba\x0e\x07\x4e\xc8\x9e\xb0\xcf\x73\x48\xfa\x94\x12\x11\xf7\x91\x7d\xc4\x51\x78\x02\xad\xb0\xd7\x6b\x16\xca\x0c\x3f\xf1\x1f\x20\x8e\x06\xab\x83\xa8\x6f\x07\xe7\xa7\x27\x51\xc0\x00\x92\xfe\x40\x8e\x6c\x63\x40\x49\xff\x0e\xc7\x95\x4e\x47\xfb\xa4\x3f\x9c\x19\xcd\x38\xcf\xb8\xde\x51\xdc\xd9\x79\x43\x86\x75\x21\x1e\x23\x1c\x9c\x9f\xc6\x21\x68\xe0\x40\x12\x1c\x3b\x30\x4a\xd8\x1d\xe0\xd1\x78\x10\xf6\x32\xfb\xe8\x45\x83\xdb\xa5\xc3\x09\x0d\xde\xc3\x71\x0c\x7d\x61\x43\x48\x7a\x30\xee\xbe\x0b\x1b\x92\x9b\x3a\xf4\xa8\x13\x81\x38\xfe\xe8\x0e\xcb\xe9\xc2\x70\x87\x47\x49\xb5\xc5\x3b\xe8\x50\x14\x28\x9f\xc8\xa1\x48\x05\x38\x47\x93\xe1\x17\x78\x8f\x87\xc1\xb1\x89\x24\x7d\x8a\x94\x1e\xd4\xf7\x06\x37\x87\x88\x3a\x7d\x36\xb8\x9e\xf9\xc7\x61\xab\xbb\x51\x62\x20\xbe\xcb\x90\x56\x8c\x8d\x0d\xb1\x85\x82\x38\x88\x27\x4b\x00\xd5\x1d\xec\xf6\x20\x51\x81\x3e\xf8\x08\x11\x57\x96\xa8\x40\xd2\x21\x22\x37\x47\xd8\xb6\x15\xe0\x8f\x8c\xf0\x3c\x60\x22\x98\x8b\x28\x78\x1f\x3a\x0f\x6c\xe9\x88\x02\x18\xd1\x4b\x96\x7c\x44\x7b\xd0\xf1\x14\x90\x2e\x74\x47\x90\xe0\x64\x46\x4d\xea\x58\x37\x47\xf4\x41\xad\x60\xf3\xe8\x38\x01\xd3\x42\x36\x93\x3d\x12\x8d\xb8\xc4\xa6\x47\x9d\x54\x66\x67\xc8\xf1\x06\x0a\x90\x64\xec\xe2\xfe\x99\x58\x04\x4d\x14\x88\x5a\xa3\x3b\x1f\xa0\x01\x49\x8f\xf1\x0e\xf3\xa1\xda\x9d\xab\x9c\x96\x0b\x87\xa9\xa0\xcb\x01\xcb\x0a\xdb\xd0\xb3\x42\x33\x02\x1d\x84\xc8\x03\x36\x07\x89\x98\x74\xa6\xd3\x19\xf2\xbf\xe9\x90\x54\x40\x2a\xeb\x8b\x6e\x83\x17\x79\xd1\xe8\xa6\x43\x08\xbe\x47\x8e\xcb\xd7\x08\x35\xfc\x2f\xdf\xf6\x95\xa0\x64\xc2\x8b\x6e\x43\xfd\xca\xc8\x42\x26\x17\x34\xab\x8e\xec\xbe\x03\x2d\x24\x69\x58\xf3\x8b\xdf\xb3\xbf\x08\x49\x66\x06\xc8\x19\xb5\xfa\xd4\x11\x7c\xe7\x0c\x90\x0e\x74\xe0\x17\xc4\xd5\x1a\xb3\x20\x86\x74\xfc\x05\xcd\x8e\xff\x0b\xf6\x1d\xd4\x8b\xe3\x1b\x03\xec\x62\x02\xfd\x40\x39\x9c\xcb\x1d\x53\x3b\x86\xd8\xf7\x7b\x36\x26\xc1\x01\x76\x94\x6c\x8f\x90\xed\x62\x32\xc4\x41\x74\x2f\xa5\x83\xd1\x00\x8e\x48\x0c\x72\xec\x7a\x90\xf4\x7c\x5b\x10\x13\xf9\x95\x11\xdf\xf5\x9d\x21\xd7\xdb\xc9\xae\xc2\x6e\x8f\x92\x80\x31\x5c\x7e\x1f\x2a\x29\x9a\x94\x58\x94\x04\x71\xcb\x6e\x05\x9f\x94\x19\x7d\xe8\x23\x87\xb8\x89\x7c\x13\xf1\xc7\xae\x8d\x18\xbb\xd8\x82\x64\x16\xc8\x7b\xe4\x64\x65\x70\x58\xcf\x08\x2a\x24\xfb\x27\xbc\x3c\xe9\xaa\xd0\xb9\x88\x03\x4f\x5d\x9b\x06\x35\xc7\x64\xb4\xb0\x49\x49\x7f\x82\xa0\xd3\x9b\x20\x92\x86\x90\xf4\xf2\x3d\x24\x37\x2d\x98\x00\x38\x73\x60\xdf\x8f\x06\xb3\xee\x40\x0f\xbb\x36\xbc\x87\xa9\xd3\xfb\xa3\xe9\xc2\x32\x70\x30\xa1\xd9\xf1\x97\xd0\xc3\xa6\xda\xfe\x70\xbf\xf5\x19\x0d\x09\xa9\x9c\x34\xbe\x83\xcd\x41\x54\xaa\xef\x62\xd2\x57\x6b\x95\x8c\xbf\x84\x96\xff\xa8\x6e\x48\x73\xb0\xeb\x8d\xa0\x2b\xc9\x42\x61\x5b\x75\x69\xf5\xcd\x21\x2b\x2c\xa8\x11\x0f\xf2\xae\x81\x7f\xb4\xcc\x96\xef\x58\xf4\x19\x28\xb1\x9a\x9c\x51\x2e\x49\x4f\x01\xb6\xff\xca\x70\x30\x6f\xff\x55\x68\x1c\xd5\xba\x53\xee\x95\x91\x9d\xde\xf1\x87\x33\x23\x3f\xc2\xb1\xea\xa2\xc8\xb9\xd9\x90\xad\x17\x1f\xc7\x72\xf9\x49\x78\x84\xc9\x8f\x0e\xc4\x62\x29\x9e\xf2\xc5\x92\x01\x9c\xc7\xf7\x68\x26\xcc\x45\xe7\x8f\x23\xf8\x00\x31\xce\xdc\x6d\x16\xbd\x65\xba\x14\x45\x7e\x49\xd8\x7a\x80\x93\xb9\x20\x1d\x38\xa2\x30\x13\xe2\xa2\x93\x11\x69\x33\xba\x11\x0e\xea\x6e\x86\xd7\x48\xfc\x4d\xe0\x18\x25\x00\x1c\xef\xa6\x45\x1d\xe4\xf6\x26\x51\x0e\x86\x9e\x70\xb2\x70\xe0\x03\x8c\xe3\x4a\xd3\x71\x91\x17\xa7\x4f\xe0\xad\x50\x29\xcf\x80\xb8\x82\x43\x34\x2f\xd6\xb6\xb1\x9b\xfb\xac\xe5\x4c\xea\x13\xcf\xc1\x48\x18\xb7\xf6\xe5\x84\xae\x11\x8b\x86\xab\xe5\x41\x10\x73\xf8\xec\xfb\x9d\x64\x95\x04\x69\xab\x1d\x06\x99\xe2\x28\xc8\x50\x41\x1c\x3f\x0b\x1a\xab\x35\x9a\x41\xe2\xec\x44\x16\xd4\x0a\xb9\x5c\xe4\xa0\x7b\xc1\xe2\x9d\x06\xaa\xe1\x03\x4c\xd9\x53\x3e\xa8\xd8\xd3\x80\x2e\x9a\x00\x25\x60\x1f\xde\x63\x37\x11\xe0\x8f\x28\xf1\xf6\x2f\x1c\xae\xad\x52\x63\x5a\xf0\xc1\xa5\x44\x0d\x39\x83\xf6\x08\x39\x6a\xc8\x39\xf5\x06\xc8\x81\x6a\x50\x67\x42\x1f\x12\x01\x5d\x87\xda\xb6\x1a\x70\x49\x5d\x8f\x0e\x41\x1a\x99\x41\x26\x6d\xa8\x9d\x67\x68\xb7\x55\xd5\x38\x98\xa9\x7d\xce\x88\xe9\x40\xdb\xcb\x0a\xe7\x5a\xe7\x8c\xf0\xae\x6f\xfa\x23\x48\xb2\xca\x90\xba\xf2\x8c\xb8\x26\xbc\x39\xc7\xf4\x4b\x76\x05\xc8\xcd\x7b\x3f\x33\xc7\x50\x9f\x3d\x23\x51\xd3\xc7\x59\x4d\x3d\xc7\xf4\xe6\x10\xda\x36\xe2\x73\x61\x2a\xfa\xc2\x1d\xf8\x50\x70\x9a\x9d\x60\x0a\xdd\x59\x70\x37\x48\x1c\xd3\xc5\x82\x2e\x82\x0c\x1e\x37\x39\x33\xcc\x3b\x9f\xb1\x02\x20\xcd\x32\x2b\x01\x0d\xdf\x49\x42\x44\xac\x30\x48\x73\xa3\x20\x93\x93\x07\xd3\x92\x80\x12\xd4\xc4\xc4\x42\x7c\x68\xa6\x84\x0a\x90\xe6\xf5\x41\x8a\xcd\x56\xbe\x0f\x7c\x53\xe0\xde\x55\x90\x52\xdd\x83\x29\xfd\xff\x75\x90\x62\x8b\x40\x06\x5b\x54\xfb\x4b\xca\xac\x43\xc6\x27\xd6\x6b\x41\x8a\x45\x03\xd3\x4c\x5e\xbd\x1e\x1b\x7d\xa0\xd3\x83\x16\x75\x59\xe8\x7e\x10\xeb\x1f\xd8\xf7\x41\xcc\x10\xf8\xae\x8b\x6c\x0e\xf4\x2e\x48\x1a\x9f\x41\xa6\x05\xbb\x7e\x18\xa8\x47\xd5\xb3\x90\xa3\x20\x16\xb3\x41\x4a\xcc\xae\x1f\x07\x09\xeb\x23\xc8\x30\x8e\xd6\xdf\x67\x12\xa2\x84\x05\xb6\xde\x7c\x86\xfa\xa5\x95\x96\xf5\x56\xcc\x17\xd5\x91\x33\xf2\x39\x4d\xab\xb7\xc3\x3e\x75\x7c\x82\x18\x41\xae\x9f\xc6\x9a\x76\x78\x73\x06\x19\x1f\x52\xff\x30\x73\x04\x13\x16\x9a\x7a\x4c\x50\x42\xbd\x75\x04\x57\x67\xd5\x00\xaa\x99\x02\xda\x48\xc1\xc8\x73\x64\xe2\x5b\xa4\x4c\x0c\xd8\xf7\x21\x26\x31\x40\x0b\x9a\x08\xc7\xe5\xd6\xe1\x00\xc7\x91\x91\xfe\x0f\xc4\x6a\xf1\xd1\x98\xde\x1c\x3a\x90\x58\x71\xae\x0d\x1f\xc3\x9e\x9a\x8a\xe1\x9d\x52\x2d\xa1\xa1\xbc\x44\xf6\x40\x29\x88\xc2\x9b\x4b\xec\x7a\x6a\x4d\x08\xf4\x63\x8a\x70\x80\x59\xd7\x8d\xe3\x52\x62\x95\x26\xeb\x92\x4e\xdc\x25\xd0\x75\x21\x9f\x31\xdd\x40\xd5\x3d\xb0\x90\xab\xec\x49\xa1\x18\xc4\xeb\x1f\x03\xf5\x12\x6b\x16\xf2\x57\xa0\xf4\x2e\x7e\x64\x50\x8d\x5a\x90\xd6\x79\x82\x94\xd9\x27\xfa\x3e\xb4\xa1\x89\x6e\xea\x30\x26\xce\x2d\x4a\x4c\x8f\xc6\x53\xe8\x90\x52\x37\x09\x51\xb7\x21\x31\x0b\x1d\xd8\xb3\x15\xb0\x50\x4d\x19\x7d\xb7\xf1\x18\xf7\xd5\xf8\x81\x4f\x2c\xe4\x24\x32\x3a\xbe\x83\xb6\x8f\x3d\xa0\x58\x35\xfa\x04\x3b\x9e\x4f\xfa\xf1\x24\x08\x6d\x8e\x20\xad\xa9\x8c\xbb\x1a\x62\x32\xb9\x39\x67\xa2\xa4\x32\x93\x5c\x6a\xfb\x9e\x32\x1e\x90\x0c\x31\xb9\x39\x26\x36\xf2\x40\x52\x89\x1d\x4f\x85\x07\x7c\xeb\xdd\x30\xba\x8a\x48\x0c\x24\x8d\x79\xea\xac\xea\x39\xd8\xea\x27\x3b\xe5\x23\xb2\x6d\xfa\x30\x24\xea\x04\x3e\x26\xfe\x3d\x1e\xc6\x09\x1d\xe4\xaa\x19\xed\x73\x06\xe0\xa6\xe1\x20\x34\x4c\x60\xc5\x4d\x1b\xd9\xae\x02\x18\x69\x78\xc1\xb4\x42\x37\x95\x1b\x1b\xfe\x46\xa0\x1e\x40\xc1\x42\xf6\xb3\x67\x56\x82\xb0\x48\x8f\x13\x90\xe5\x2b\xd1\x78\x97\x49\x8c\x22\x0f\x98\xc6\x61\x76\x7c\xc2\x09\xa6\x71\x14\x24\x24\x1d\x16\x74\x9c\x22\xaf\x2c\xec\x24\x98\x72\x73\x66\xc1\xcd\x20\x6d\x0e\x88\x27\x8e\x4f\x3c\x78\x53\x73\x10\x81\x2e\x48\xca\x16\x2c\x65\x2b\xb3\x72\x91\xff\x4d\x23\x24\x7f\x52\x7f\x08\x14\x1d\x1e\x8b\x8e\x89\x61\x9d\xf6\x29\xd7\xed\x36\xce\x15\x1b\xb8\xeb\x31\x7e\x84\x2b\x1c\x1a\x17\x41\x8c\x69\xf7\x42\x4f\xd1\xb8\x8c\x69\x6e\x03\x8e\xd1\xcd\x25\x72\x2c\xde\x1f\x53\x6b\x22\x0b\xbc\x0e\xd2\x12\x1f\x0b\xfd\x18\xa8\x2a\x5d\x51\xc3\x77\x70\x04\xfb\xbe\x2b\x2a\xf4\x57\x90\x90\x6d\x73\x5a\x6e\xff\x20\xd9\xdd\x20\x5a\x28\x1d\x1b\x13\x30\x2d\x86\xee\x47\x2b\x4e\xe8\xc6\x01\xa6\xbd\x4d\xf6\x4f\x64\xa6\x0d\x3a\x46\x64\x00\xc3\xa4\xad\x67\x16\x22\xc5\x18\xb8\x7f\x9a\x18\x48\x7a\xc3\xe3\x38\xb7\xb4\xff\x57\x34\x1d\xec\x3e\x46\x0e\x6b\xfa\x41\x43\x35\x00\x4e\xe0\x9d\x8f\x6d\x30\xb5\xd1\x89\x01\x46\xed\x0d\xef\x0e\x60\x61\xd1\xbc\xe4\x7e\x61\x2c\xe4\x48\x86\x1c\xd8\x37\x35\x88\x7d\x0e\x76\x3e\xa3\xe5\x91\x2f\xcf\x41\x27\xd6\xd1\x58\x0e\xb6\x24\x40\x03\xf9\x6c\x55\x88\xc7\x97\x40\xee\x75\x77\xd0\x9d\x95\x63\xc2\x83\xe8\xdd\x71\x9a\xe7\x61\x81\xef\x03\x75\x6b\x1d\x0b\x39\x51\x7d\xde\x20\xb1\xb9\x3e\xe5\x5d\x2b\x48\xc8\xd8\x20\x25\x38\x82\xe4\x76\x20\x96\xe2\x34\x48\x2a\xa1\x59\xd8\x79\xa0\xde\x37\x9c\xd3\x72\x87\xb5\x6c\x11\x48\xf5\x39\x3b\xac\x07\x09\xdd\x0d\x0b\xda\x7f\x66\x0e\xc4\x76\xde\xc3\x50\x00\xec\xf6\xb0\x8d\x5d\xd6\xc2\xc3\x77\xaa\x31\x1b\x11\xbe\xdc\x1d\x1e\x26\x0b\x01\xd3\x4a\xa9\xc3\x68\x38\x6b\xa6\xc9\x47\xea\x30\xea\xd2\x43\xdc\x73\x98\x3c\xc2\x68\xc0\x61\x4c\x3d\x0e\xa9\xe5\x0d\x60\x4f\x21\x9c\x64\x04\x9d\xa1\x3b\x80\xf7\x0a\xe3\x64\x0a\xb1\xda\xf5\x99\xe0\x14\xaf\x61\xa2\xf1\xad\x19\x4c\x61\xe4\x94\x79\xd8\x9e\x01\x11\xfb\x65\x1e\x9e\x3d\xd7\x5d\xaa\xb9\xfb\xf0\x43\xe6\x98\x44\x9e\x7c\x87\xd1\x28\xd6\xbc\x01\x22\x7c\x18\x3b\x41\xb6\xcd\x80\xc5\x75\x55\xa4\xf2\xd0\x48\x50\xc2\xc3\x8b\x40\xd5\xba\xb0\x90\x88\x29\xa9\xe3\x90\x73\x39\xfc\xa8\xa4\x9d\x08\x1a\x77\x74\x12\x24\x6d\x6f\x2c\xac\x1d\x9b\x99\x51\xdf\x37\x71\x1f\xda\x63\x0e\x7c\x3e\x8b\x67\x8f\xd4\xaa\x47\xdd\x44\xe7\x14\xa0\x5f\x10\xbe\x3d\x2c\xee\x22\x56\xa1\x59\x70\x2c\xf4\xf8\xc7\x21\x33\xff\x1e\x0e\xa1\xe3\x85\x04\xf2\x8c\x72\x4b\x23\x1c\x82\x84\xc9\x0c\x84\x90\x13\x38\x16\xac\xf6\x71\x44\x39\x84\x96\x96\x05\x35\x83\xa4\x4d\x90\x85\xb5\xb2\xa7\x63\x52\x07\x7a\x1c\xae\x26\xa1\x59\x90\x85\x9c\x06\x89\x53\xa5\x58\xd0\x07\x29\xc5\xf4\x07\x16\xb7\xa3\x1e\x9f\x07\x8a\x79\x8a\x05\x28\xc3\x17\xd9\x83\x58\x78\x24\x51\x9e\x0b\x27\xdc\xf7\x07\xd9\xd5\x8a\xf4\xae\xef\x63\xe2\x1c\x7b\xd9\xbc\x3f\x0d\xad\x78\x23\xe1\x39\xf2\xfe\x2c\x88\x0d\x5e\x39\x2d\x77\x72\x90\x22\x60\x2c\xec\x30\xac\x35\x76\x07\x43\xc4\x2a\x73\x72\x14\xa8\x16\x5e\x30\x6d\x00\x3e\x39\x0e\x92\x0a\x23\x30\xb5\x3d\x19\x4c\x6f\x7b\x64\x09\x5b\x69\x0a\x9a\xf6\x39\x3c\x69\x3f\x2f\xfd\x48\x27\x8c\x93\xb0\x79\x67\x13\x4a\xfa\x13\x61\x24\x3d\x09\xbb\x9c\x9b\x28\xd9\xf7\x55\xa0\x18\x33\x41\xd2\x98\x79\x12\xcf\x7a\xe1\x7c\xa3\xf0\x83\xa1\xf3\xcd\x49\x28\x9a\xd6\xec\x11\xf4\x26\x22\xfd\x87\xc9\xe3\xc4\xa6\x8e\x15\xce\xc8\x0f\x8c\x59\x20\x30\x8c\xac\xdd\x79\xb4\x87\xa2\x77\xe8\x87\xaf\xde\xc4\x91\xef\xa7\xc2\x08\xdf\xac\x65\xf4\xb3\x6a\x49\x6f\xd6\x43\x00\x84\x1d\x9f\xd5\xb7\xd9\x78\xbe\x73\xa4\xe3\x49\xf3\x38\x9b\x53\x90\x2a\xe8\x66\x88\xdd\x0d\x6a\xd3\x11\x27\x37\xcd\xf3\xd8\x91\x94\x38\x54\xb8\x40\x36\x3b\x41\x86\x2f\x35\x48\xfb\x5b\x37\x15\x95\x08\x3f\x64\x99\x85\x45\x38\xdd\xf4\xbf\xa2\x51\x8f\xfa\x0e\x1b\xa1\xe6\x65\xa0\x5c\x46\xcd\x02\x3e\x06\x49\x4f\xd2\x9c\x96\x6b\xd5\xe2\x35\xde\x85\x3d\x26\x9c\x30\xd0\x56\x23\x5a\xb1\x29\x81\x5c\x0e\x6b\x45\xba\x48\x69\xaf\xe1\x47\x82\xcd\xa2\x46\xaa\x25\xa9\xf5\xee\x99\xee\x8c\x3d\x8e\x5a\x87\x33\x26\x6e\xca\xa3\xb6\x75\x14\x24\xb7\xd2\x82\x29\x95\x34\x83\x3a\x99\xa9\xe0\x90\x36\xaa\x56\x73\xe6\x72\x14\x6e\x21\x68\xb5\x52\xc6\xfc\x56\x3b\x48\xdb\xb2\x41\x48\xc0\xef\x2d\x20\x2d\xf3\xb8\x07\x6d\x97\x4f\xed\xd6\x69\xec\x82\xc0\x3b\xed\x2c\xb1\x50\x80\x29\xf5\x7c\xeb\x83\xea\x8b\xe5\x61\x82\xef\x38\x53\xda\x3a\x9f\x51\xd7\xc4\xa6\x81\x56\xe7\xb9\xde\x56\xfd\xb6\x5a\xdd\x98\x37\xb3\x39\xc5\x6d\x5d\x04\xe9\x43\xed\x58\xe8\x65\x90\x3a\x1a\x8f\x05\xce\x90\xba\x15\x3f\xf6\xd6\xb5\xe2\x13\x1b\x79\xf7\x29\xf8\x4f\x4c\x5f\xa9\x1a\x72\xb0\x05\x13\x35\x45\x8e\x83\x14\x01\x1b\x7a\x90\x51\x30\x57\x09\x11\x5e\x85\x71\x96\x03\x3c\xf0\xe1\xc0\x8f\xb3\x39\xfd\x82\x09\xec\xc7\xdf\x47\xc8\x19\x51\x17\xdb\x8a\xb6\x23\x74\x37\x4a\x6a\x47\x6e\xea\x90\x91\x59\x2e\x44\xb4\x3e\x06\x53\x0e\x27\x92\xca\x99\x03\xe1\x64\xd1\xfa\x2b\xd9\x1d\x39\x2d\xd7\x8e\xf0\xeb\x0a\x13\x6b\x40\x39\xe1\x6f\x37\x82\xe4\x5e\x5b\x16\x76\x90\xc9\xa3\x44\x1b\x0a\xda\xef\x82\xd4\xee\x66\x16\x98\x94\x1c\x59\xc8\x71\xa0\x6a\x59\x84\x9e\xbf\x1d\xe9\xee\x6b\x23\x26\xd6\x59\x9c\x3b\x69\x9f\x06\x8a\xc9\x8f\x05\x9c\x05\x49\x97\x1d\x16\x76\x1e\x24\xf6\x7a\xb3\xa0\x98\xcf\x69\x63\x3e\x2f\xdb\x7f\x05\x53\xfa\xf2\x94\xdd\x2b\xa7\xe5\x4e\x5b\x8a\xe1\x02\x24\x5d\x93\xce\x6a\xa9\x05\x82\x85\x1d\xc4\x7a\x34\x2c\x42\xde\x05\xc9\x0d\xb0\x60\x6a\xbf\x3b\x48\x9d\xba\xc0\x52\x1d\x06\x59\x36\x1f\x90\x75\x52\x0a\x03\x3f\x92\xd8\x4a\x30\xe7\xeb\xce\x4e\x64\xb7\x38\xd0\xe4\x02\xfd\x59\xd4\x9f\xc2\x58\xc9\x82\x62\x36\xa1\xc5\xb0\xd5\x16\x36\xb4\x76\x90\xde\xf4\xcc\x42\x63\xf9\xf7\xcc\x47\x8e\x47\x99\x00\xcc\x4d\x8d\x1d\x51\xd2\x21\x7c\x0c\x97\xbc\x23\xd4\x73\x44\x4e\x11\x9a\x0a\xd3\x74\x2c\x35\xb5\xa0\x85\xb0\xa3\x88\x51\xb5\x47\x2a\x9c\xf2\xcf\xae\x82\x84\x9d\x8c\x05\xc5\x0b\x71\xcd\xf5\x89\x89\x79\xe6\x1f\x6a\x8a\xba\x35\xa7\xe5\xce\x0f\x82\xe4\x11\x94\x2c\xec\x34\x66\x1c\xcd\x01\x74\x04\xe7\x78\xde\x49\x13\x58\x16\x18\xad\x47\x27\xd0\xc6\x04\x13\x16\x01\x12\x56\x69\x30\x75\x59\xad\x0c\x39\xc1\x0e\xbd\x97\x1f\x35\xd7\x73\xe0\x70\x00\x23\xb6\x2c\x3a\x3d\x1d\x24\x2f\x25\x06\xe9\x4b\x89\x40\xe2\x4a\x69\x10\xda\xa9\x86\xd0\x43\x0e\x26\x62\x65\xe5\x1c\xc2\xc8\x0d\xf9\x81\x36\xbd\xa7\x2e\xee\x61\x47\x06\xd4\xa1\x43\xa0\x6f\x83\x90\xb1\x4b\x00\x0e\xfd\x47\x82\x3c\x19\x72\xe2\x40\x97\xd0\x09\x8c\x92\x1e\x3b\x43\x3f\x8a\x6d\x0c\xb0\x64\xa9\x3f\x42\x25\xfc\x64\x00\x89\x35\xe9\x87\x51\x97\x36\xb4\xf0\xbd\xb0\x3d\x89\xc5\xc5\xf5\x0a\x6d\x24\xab\xde\x82\x7d\x68\x31\x1a\x27\x3c\xf6\x86\x03\xd6\xb1\xe1\x97\x83\x2c\x82\x86\xd4\x9e\x44\x55\x3c\x81\x23\x73\x00\xbd\x61\x98\xb8\x46\xa0\x35\xe1\xe3\x3a\x83\x5c\x47\xfb\x7e\x3a\x35\x95\x89\x63\x01\xf5\x20\xe3\x50\x12\x16\xd1\x08\x94\xa3\x55\x59\x40\xa4\x26\x3b\x19\x40\xc7\xa3\x3e\x43\xf9\x4e\xc4\x1e\x44\x57\x6e\xb2\xd0\xc3\x69\x67\xbe\xce\xd1\xd4\xd2\x96\xb5\x4f\xad\x73\x3c\x6b\x41\x57\x9d\x5b\x3a\xef\x55\xca\x06\xb2\xdd\x1d\x3a\x27\x49\xa5\x0f\xc8\x72\x68\xe8\xcc\xe2\x0e\x94\x4d\x7e\x9d\x96\x2a\x53\x80\x2c\xbf\x87\xce\x2c\x89\x56\xee\x24\xec\x9c\xce\xd0\x78\xa8\x5b\x8d\x3a\x0a\xdd\x80\x0e\x9b\xd8\x98\xf3\x93\x9d\x98\x75\x14\xc6\xa0\x4e\xa4\x3f\xe9\x40\x7a\xd3\x15\x92\x4e\xe7\x32\xf6\xca\xb5\x6f\x3a\xd0\xbe\x87\x16\x77\xba\xeb\x5c\xcf\xb4\x4d\xa4\x37\x86\x74\x3e\x4a\x57\xd3\x11\x74\x4d\xce\x17\x74\xfe\x9a\xcb\xb7\x46\x7b\x00\xbb\x8a\x26\xca\x81\xc4\xba\xe9\xfa\x0e\x5b\xc2\xba\xd1\xbc\x69\x5b\x5f\xe0\x48\x0c\x73\xf7\x5d\x8a\x00\x81\xf4\xa9\xbf\x0c\xe8\x70\x46\xa7\x86\xfb\x2b\xbb\x49\xf1\x8a\x85\xbc\x97\x2b\x90\x3b\x80\xa4\xc7\x81\x62\x7d\x69\x78\x6e\x13\x0b\x0c\xe5\xd7\x7d\xcc\xb1\xa2\xdb\x8a\x3c\x77\xb9\x1f\x2f\x0b\x8a\x06\xb4\xeb\x13\xae\xf7\xe9\x9e\x06\x53\x47\x2d\xb0\xe0\xf3\x20\xe5\x6b\xc4\x02\xbb\xd9\x1c\x1a\x8b\xba\xcc\xf2\x29\xe8\x86\xc2\x95\x70\xc8\x64\x01\x7f\xcd\xd2\x36\xa6\x76\xc0\x5d\x44\x26\xbe\x2c\x52\x8b\x62\xc2\x19\x5e\x07\x06\xa6\x4e\x3c\x67\x99\x4c\x31\xe5\x53\x1b\xe5\x2e\x5a\xd3\x16\x5c\xa0\xfa\x3e\x80\xb4\x3f\x09\x98\xf2\x09\xb9\x50\x2c\x3d\xe1\x1e\x8f\x58\xcf\x24\xf6\x0c\xc5\x56\xb3\xe9\xfd\x2d\xd3\x71\x8c\x7d\xc4\x26\x52\xf9\xbc\xac\x7d\x42\x53\x91\x62\x03\x00\x41\xd3\x31\x57\x98\x31\x27\xe6\x54\x78\x0b\x3a\x88\xf4\xa7\x8b\x39\x43\x1e\x72\x42\x8c\x48\x17\x82\xee\x15\x0b\x48\xb8\xe9\x6b\x0a\xaa\x8b\x6c\x3b\xc9\x31\xab\x9b\x83\x14\xbe\x99\xd0\x11\x26\x28\xee\x04\xee\x37\x7a\xb3\x0f\x87\xd4\x13\x0e\xe9\x8a\x01\x24\x11\xc7\xba\xba\x03\x55\xdb\x62\x22\xba\x8e\x7c\x1b\x0e\x94\x71\x20\xaa\x29\xa5\x4e\xb1\x62\x45\x09\x37\xce\x28\xe4\x23\xda\x32\xa4\xb8\x94\x84\xbb\x0e\xa3\x90\xf7\x3e\x41\x4c\x62\x97\xa2\x35\xe6\x0b\x57\xd4\x30\xcf\x86\x43\xc6\xe0\xc7\xc6\x22\xb6\x8a\x42\x4f\xa9\xee\x48\x31\x7b\x5a\x70\x38\x35\xd5\xd8\xdc\xfa\x98\xd8\x26\x80\xee\xb1\x85\x18\xaa\x5f\xfc\x25\xbd\xe0\x47\xd0\x19\x72\x47\x0f\x81\x68\xee\x60\x28\xf6\x80\x5c\xd6\xb2\xc8\x7b\xec\xb6\x76\xb9\x80\xae\x20\xde\x51\x72\x79\xa0\xa8\x6a\x19\xb1\x65\xb4\xe3\xf2\x39\x97\x9d\x78\xa7\xc9\xe5\x73\x2e\x3b\xea\x4e\x97\xcb\x76\x86\xe2\x43\xd9\x00\xc0\x40\x62\x66\x9e\x9f\xd2\x97\xd3\x72\x57\xef\xd2\x6e\x49\x5a\xee\x2a\x76\xd0\xa8\x8d\xb9\xbe\xe2\xe3\xc1\xb4\xbe\x27\x74\x6a\xff\x38\xa5\xbe\x9f\xda\xd1\xfa\x57\x2d\x6b\xd5\x60\x11\xad\x19\xd6\x36\xb9\xb5\xf8\xaf\x19\x3c\x4c\xb8\xb3\xf9\xf3\xd3\xbf\xf2\x4f\xda\xad\x4f\x4c\x0f\x53\xb2\x8e\x34\x4f\x23\xf9\x6f\x39\xdf\x45\xc0\xf5\x1c\x6c\x7a\xb9\xb7\xf7\xd0\x01\x4e\x35\x27\x61\x72\xd5\x6a\xd5\x9b\x8c\x11\xbd\x05\x9d\xc9\xa8\x47\xed\xb5\x35\xf1\x2c\xde\x52\x47\xa3\x55\xe7\xcf\xf8\x73\x3d\xe7\x20\x68\x7a\x45\x64\xa3\x11\x1b\xcf\xfc\xde\x96\x6e\xe8\x65\x0d\x67\x42\x8d\xb9\x8d\x3e\x04\xda\xd2\x60\x26\xd0\xad\x03\xfb\x4a\x5e\xdb\x9a\x9b\x09\x26\x2a\x7f\x33\xa2\x16\x0a\x21\x77\x34\x33\xbb\x54\x87\xde\x62\x1b\x39\x02\xcc\xa8\x68\xf6\x2c\x30\x86\x03\x21\x98\xbe\xab\xf9\x99\x60\x26\x43\x96\xaf\x61\xed\x0c\x5d\x1b\x67\x42\x41\x77\x42\x4c\xa5\x72\x86\xa1\xdd\xce\xca\xce\x14\x26\xe2\x24\xb4\x95\xdd\x37\xd4\x79\x80\x8e\x75\xe3\xa0\xdb\x10\xb2\xa4\x0d\xb2\xbb\xc7\x77\xc7\x88\xb8\x32\xc3\xb2\xd6\x9b\x0b\x76\x63\x63\x37\x6c\x53\x49\xd7\x46\x99\xb0\x23\x34\xa2\x61\x76\x9b\x5a\x2b\x13\xc4\x86\x8f\x93\x10\x64\x4b\xeb\x67\x82\xf4\x6c\x6a\x0e\xc3\x92\x0c\x6d\x92\xdd\x4c\x9f\x58\x8c\xf3\x89\x26\x8b\xb1\xad\xdd\x67\x42\x3a\xc8\x1d\x53\x12\x8d\x9a\xb1\xa3\xd5\xb2\xdb\x69\xd2\xb1\xec\x8b\xdd\xb7\x72\xa6\x83\x9b\x75\x94\xff\x86\x6f\xd7\x73\xb4\xf7\x05\x99\x9e\x32\xf3\xd1\xda\x1a\xf1\x6d\xfb\x4d\xb5\x8a\xf2\xdf\x18\x82\x78\x55\x54\xfc\x7f\xff\x4f\xc4\xbe\x75\x1f\xb0\x67\x0e\xd6\xbd\xfc\x37\x13\xba\x08\xd0\xbd\x30\x00\x55\x51\x91\x81\x84\xe1\xe3\x3d\xfe\xb8\x15\x0f\x28\x1e\xa6\x78\xb8\xe2\x31\xd8\x73\x90\xe7\x3b\x04\xa0\xb7\x16\xba\x85\xbe\xed\x29\x79\xad\xad\xc5\x65\x86\x59\xfa\x22\x99\x25\x1e\x2d\xf1\x18\x89\x87\x3d\x9d\x57\x18\xe0\x3d\x3d\x71\x08\xac\x04\x3c\x45\xbd\xf0\xc0\x7a\x21\x8c\x60\x3d\x52\xad\x56\x6f\x9f\xbc\x62\x8d\xcd\xe1\x16\xb5\x50\x75\xac\x79\xc5\x46\x34\x51\x79\xd0\xad\x08\x62\xa8\xd0\xa0\xc4\xf5\x47\xc8\xa9\xfa\x71\xd8\x59\x88\x4c\x55\x5b\xf3\x8a\x07\x82\x38\x54\xa9\xe6\x15\xdf\x89\x19\x7c\x8e\x6e\xab\x16\xfb\x0c\x91\xbd\x0a\x35\xaf\xd8\x84\x8f\x93\x6a\x4b\xf3\x8a\x2d\x34\xa2\xd5\x91\xe6\x15\xcf\x38\xc1\xa8\x62\xf6\x1a\x62\x71\xd5\xd4\xbc\x62\x87\x23\x3f\xaf\x88\xcb\x3e\xc3\x59\x5c\x1d\x68\x5e\x11\xbb\x71\xc5\x63\xb2\x17\x35\x90\x35\x36\x08\xc2\x66\x8e\x9f\x78\x82\x54\xdb\x1e\x64\x60\xa2\x75\x19\x79\x85\xb9\xf8\x4f\x6a\x82\xa8\xe9\xb3\x13\xd8\x22\x81\xec\x97\x69\xc0\xb9\xf3\x51\x9d\x15\xd5\x6a\x95\x8a\xcc\x94\x8e\x9d\x5d\xb0\x15\xc2\xca\x5e\x9f\x0d\x09\x05\x24\x1f\x92\xd9\x50\x2d\x01\xc5\xc7\x6b\x36\xd4\x48\x40\x85\x83\x39\x1b\x0e\x87\x70\x72\xa4\x67\x43\x9a\x02\x52\x99\x06\xb3\x61\xdd\x10\x56\xce\x91\xd9\x90\x03\x01\x79\x09\x6d\x6c\x85\x63\xd3\x9d\x8c\xb3\x52\xe4\xd8\xea\x43\xfa\xea\xf8\x04\x41\xd6\x02\x8a\x82\x00\xb1\xde\x14\x8f\x5b\xf1\x30\xc5\xc3\x15\x8f\x81\x78\xf4\x82\xe0\x99\x51\x5f\x4f\x0c\x7b\x2b\x08\x12\xdf\xa3\xd4\xb7\x9d\xfa\xf6\x53\xdf\x56\xea\x7b\x92\xfa\xbe\x4f\x7d\xd7\x52\xdf\xfd\x3c\xeb\x2d\xf6\x79\x7a\x5b\xbd\x59\x88\xc3\x20\xeb\xc6\x76\x5e\xa3\x55\x52\x24\xeb\x4e\x5e\xc3\x55\xb2\x5e\xd2\xf3\x1a\xe4\x01\x38\xff\x76\x9d\xa5\xcd\x57\xff\xf3\xcd\xa4\xc4\xf5\x00\xa9\xe6\x2c\xe8\x21\x0f\x8f\xd0\x18\x9b\x43\xe4\xe4\x34\xa7\x9a\xcb\xf1\x25\x13\x7a\xeb\x84\x65\x95\x2b\x46\xdf\x3c\xc7\x6f\xfb\xb5\x6e\xed\xa6\x7b\x7a\x78\xd8\x3c\xd8\xfb\xd7\x27\x0b\x7a\xb0\xe0\xd1\x7e\xdf\x46\xd5\xdc\xbf\x22\x48\xed\x5f\xb9\xcf\x8c\x2b\x82\xd5\x6f\xc7\xed\xb3\x8b\xee\x9e\x92\xab\x96\x2b\x60\x32\xf6\xbd\x5c\xfe\x49\x73\xab\xdf\x1a\x47\xb5\xf6\xe1\xc1\x5e\xce\x1c\x40\xd2\x47\x11\x18\xcd\x6b\xf5\xe6\xc5\xf9\x5e\xae\x67\xfb\x8e\x1a\x7a\x72\xf0\xf1\xe2\x6c\x2f\x37\x44\x13\x7f\x9c\x0a\xdf\x3f\xbd\x6a\xf3\x18\x8b\x3e\x10\x35\xee\xdd\x69\xe3\xa2\xb3\x97\xbb\xa5\xa6\xef\xaa\xe1\x8d\xe6\x71\xe3\xe4\x86\xb7\xa8\x76\x76\xbc\x97\x33\x6d\x6c\x0e\x15\x00\xf9\x96\x2b\xf2\x76\xc2\x31\xce\xe5\xb5\x8b\xb3\xfd\x5a\xf7\x60\x2f\xe7\x8f\x59\xe7\xa9\xd9\x1d\x9c\x9f\x9f\x9e\xef\xe5\x90\xe3\xd0\x44\x95\x8f\x8e\xf7\x0f\xf6\x72\x03\x6c\x25\xa0\x3b\x47\xa7\x57\x7b\x39\x77\x40\x1f\x94\xd0\x27\xcd\xac\x7e\xfa\xd6\x68\xd6\x3a\x9d\x9b\x76\xad\x75\xb0\x97\xb3\xe0\xc4\xcd\x69\xed\xda\xe5\xcd\xbb\x8b\x76\xa3\x7b\x7c\xda\xde\xcb\xb5\x44\x40\xa7\x7b\x70\xb6\x67\x3c\x69\x09\xf8\x11\x25\xde\x60\x2a\xc5\x64\x4e\x8a\x09\x82\xce\xfc\x04\x7a\x2a\x85\x85\x4c\x68\xa1\x67\xd2\xe8\x4f\x9f\x35\xbb\xfa\xcd\x1f\xef\x95\x77\xb4\xf2\x0e\xeb\xb0\x9c\xc6\x46\x66\xaf\xa2\x6b\x15\x7d\x2f\xc7\x47\x49\xb3\xd1\xad\xb7\x57\xde\xd6\xca\xdb\x7b\x39\xf6\x9e\xd3\x1c\xdc\x1f\x78\x7b\xe5\x5d\xad\xbc\xbb\x97\xe3\x1f\x39\xcd\x83\xbd\xbd\x5d\x6d\x77\x2f\xe7\xc1\x5e\x4e\x43\xae\x09\xc7\x68\xaf\xb4\xad\x95\xb6\xf7\x72\xe2\x2b\xa7\x71\x89\x73\xcf\x28\x6b\x46\x79\x2f\xc7\x3f\x72\xda\x18\xf6\xd1\xc5\x78\xaf\x5c\xd6\xca\xe5\xbd\x9c\xf8\x12\xa1\xfb\xac\x26\xe5\x8a\x56\xae\x88\xf0\x7d\x5e\x1b\x77\x80\x6f\xbd\x3d\x63\x4b\x33\xb6\xd8\xd8\x60\x56\x1f\xc6\x90\x3a\xd4\xde\x33\xb6\x35\x63\x7b\x2f\x17\x7e\xe6\x34\x77\x0c\x4d\xb4\x57\x2e\x69\xe5\xd2\x5e\x8e\x7f\xe4\x34\x6f\x6f\xa7\xa2\xed\x54\xf6\x72\x5e\x4e\xb3\x90\x8d\x3c\xb4\x57\xd9\xd2\x2a\x5b\xac\xcf\xd8\x57\xee\x49\xf3\xab\x9f\x72\x0c\xe5\x98\x90\x23\x06\x37\x1a\x33\x39\x14\x51\x07\x7f\xd6\xc6\xd5\x6f\x4f\xda\x6d\xf5\xdb\xd3\x5b\x1b\x79\xc0\xaa\x7e\x63\x49\xff\xa2\x04\xed\xe5\x72\xda\x2d\x75\x46\xd0\xdb\x7b\x63\x68\x16\x9c\x5c\x62\xf4\x70\x84\xa0\x85\x9c\x77\x22\x38\xd7\x6a\xb5\x5a\xe0\xe3\xc7\x8f\x1f\x73\x1a\xfa\xea\x39\x50\x84\xbb\x0c\xde\xf5\xd0\x78\x8c\x49\x7f\xcf\xd0\x46\x98\xec\x43\x0f\xb1\xd0\x11\xfc\x2a\x5f\x7d\x17\x85\x9e\x95\x7b\x6f\x74\xcd\xa4\xb6\x0d\xc7\x2e\x62\xef\x36\x35\xa1\x8d\xf6\xbc\xa2\x78\x59\xcf\x6b\x21\x2f\x24\x93\x5a\xd8\x85\x3d\x1b\x59\xec\x9b\x17\x86\x48\xf2\x1b\x33\xf2\xb3\xc7\x5b\xb2\x97\xbb\x85\xe0\x16\x16\x4c\xc6\xb4\x16\x68\x4e\x63\x38\x15\x05\x72\x37\x65\xe8\xe4\x34\x7f\x2c\xc3\xa0\xe3\xd0\x87\x42\x34\x95\x12\xa1\x62\x42\x8d\x1d\x74\x8f\xa9\xef\x46\xb9\x0c\xd0\xbd\x43\x49\x41\x4c\x2e\x82\xbe\x7a\xe9\x18\x39\xc7\xa8\x05\x27\xe9\xb2\x19\x90\xa8\x99\x69\x23\xe8\xc8\xe8\x70\x34\x35\xd3\xa6\x6e\x54\x5f\x31\xaa\x4f\x9a\x47\xa9\xed\xe1\x31\x6b\xa2\xc8\xf2\x90\x02\x8f\xfd\xb3\xe0\x24\xca\xa7\xc1\x1e\xc0\x45\x36\x12\x4b\x9a\xcc\xaa\xc1\x1e\xc0\x1b\x20\x20\x69\xb2\x80\x69\xb1\x39\xb2\x97\xeb\xf0\x0f\xc0\xbf\x44\x5b\xc3\x88\xb3\xb0\xd9\x32\x8a\x35\x34\x8c\x6a\xa3\xaf\x51\x0a\x91\xd9\x47\x5e\x85\x30\x2f\xf6\x21\xb2\x12\xc1\x51\x4e\x22\x82\x65\x24\x22\x78\x3e\x22\x50\x64\xb3\xcf\xa7\x69\x94\x91\xf8\x14\x59\xc9\xa8\x28\x33\x19\xc9\xb2\x93\x91\x3c\x43\x35\x55\x03\x11\xcf\x77\x26\x4a\xb2\x30\x44\xa4\x8b\xa2\x79\xc2\x28\x8a\x75\xd4\x11\xf5\x59\xd5\xb1\x39\x04\x47\xfc\x70\x23\x4c\x4c\x87\x73\x18\x22\xe6\x58\x7e\x86\xd1\x16\x4a\x44\xef\xa3\x64\x34\xcb\xb2\x85\x89\xcf\x26\x23\xcf\x54\x7c\x28\xd9\xca\xd8\x38\x63\x09\x12\x65\x2d\x41\xe2\xcc\x25\x08\xcb\xbe\x83\x4c\x4a\xac\x30\x7b\xf1\xa1\x64\x2f\x63\xe3\xec\x25\x48\x94\xbd\x04\x89\xb3\x97\x20\x62\x41\x3e\x43\x0e\xa6\xd6\x5e\xae\xcb\xbf\x80\xf8\x94\x43\xd7\xe5\xc8\x17\x0e\x1c\xfb\x88\xc6\x94\x23\xa0\x1c\x51\x28\x48\x96\x8b\x04\x27\xc8\x49\x07\xb6\x50\x7d\xd2\xc1\x16\x0a\x09\x8f\x7b\x7a\x7b\x85\xd0\x70\x3f\x44\x7b\x16\x2a\xb1\x87\x85\x73\x94\xbf\xc7\xe8\x81\xb1\x91\x72\x3d\x63\x28\xd2\x83\xce\x99\x0d\x4d\x5e\x75\x46\x1f\x39\x11\xc9\x69\x3d\xdf\xf3\x38\x7d\x60\x4b\x63\x97\x23\x10\x2b\x75\x40\x1f\x38\xca\xc4\x1f\x0c\x5d\xde\x18\x4f\xda\x03\xb6\xfa\xc8\x3b\xa3\x2e\x66\x88\xc4\x88\xda\xb7\x01\xe5\xa7\xe8\x78\xd0\xde\xcb\x41\x6e\x16\xbf\x47\x8e\x87\xcd\xe8\x3b\x4a\x05\x39\x89\x63\x3c\xa0\x86\xfb\x84\x3a\xe8\x1c\x41\x8b\x12\x9b\x17\x3a\x44\x68\x7c\x3a\x46\x84\xbd\x73\xe6\xe1\x94\x74\x06\xf4\x81\x51\x41\x4c\x6c\x4c\x90\x04\x3a\x26\xf7\x8c\xa7\x15\x9f\x93\x3a\x26\x96\xbb\xc7\x56\xbe\x88\x67\xe3\x42\xf0\x1b\x6f\x80\xdd\xa2\x28\x38\x2f\xf8\xdc\x37\xc6\x5b\xc1\x8b\xa1\x2a\x8f\xbc\x61\xf4\xcf\xfd\xa4\x7f\x0e\x02\xfe\xdd\x47\x5e\x8b\xb2\x0e\x5a\xcf\xbf\x95\x92\x65\x9c\x49\xf1\x16\x13\x4b\x70\x27\x92\x83\xcb\x17\xb1\xbb\x9e\xdb\xbb\xc7\x2e\xee\xd9\x28\x97\xff\x93\x83\x33\x80\x75\x54\x34\x6d\x4a\xd0\x7a\xbe\xe8\xfa\x3d\xcf\x81\xa6\xb7\xbe\xad\xe5\xac\x5c\x3e\xbf\x97\x05\x04\x2d\x6b\x9d\x87\xcb\xb5\x62\x3d\xaf\xe5\x46\xb9\x7c\x5e\x7b\xa3\x3f\x09\xea\xfb\x6c\xf3\x44\x65\xd9\x70\xad\xe7\xb5\xdf\xd3\x56\xd6\x8c\x79\xcd\x8c\xfa\x62\x76\x5b\xe5\x92\x0f\xfc\x71\xee\xd5\x0f\xa9\xa1\xe5\x26\xf3\x86\xd4\xd0\x72\x83\xa9\x86\xf1\x95\xf3\xb5\x36\x2d\xac\xf5\xcc\x56\xa9\x4d\x8f\x9a\xc6\xd9\xca\xdf\xdf\xa0\xb5\xb5\xe7\x6a\x6c\xc9\x1a\x0b\xb6\xf7\xb5\x56\x39\x1c\x84\xa8\xb6\x21\x63\xfd\x5a\xab\xab\xf6\x70\x4b\xad\xf3\xfe\x42\x74\xeb\xf7\x76\x72\x54\x61\x21\xd1\x28\xb5\x0d\x6b\xa7\xd6\x78\x6d\x4d\x50\x2e\x26\x5e\x32\x22\xab\xe7\x9f\xa4\x7c\xb4\x7c\xc2\x88\x20\x08\x71\x66\xc1\x1c\x92\xad\x56\xd4\x09\x33\x5a\xad\xc2\xff\xab\xd8\xf3\x88\x50\x23\x40\x5e\x54\x35\xa7\x72\x2f\xb9\xcf\xff\xca\x17\xb9\x58\x2e\xab\xe8\x2d\x58\x29\xde\xb5\xe9\xc1\x0a\xf3\x08\x25\xb3\xc5\x32\xe2\xfc\x7a\x58\x3a\x4b\xda\xf3\xfb\x6c\x9d\x87\xb6\x4d\x1f\x8e\xc9\xd8\xf7\x04\x7f\xa5\x4a\x3e\x8c\x9f\x3a\x66\x63\x77\x0f\x6d\x57\x8d\x60\xcc\xa5\x2a\x12\x45\xdf\x8c\x3f\x92\xf2\x13\xcf\xb9\xe5\xdb\x1e\xb6\xa4\x5c\x26\x3f\x3a\x68\xcc\xbd\x8f\x9c\xbd\x9c\x96\x7b\x7a\x6b\xda\xd0\x75\xc1\x40\xa8\x73\x1c\xdf\xf4\xa8\xc3\x35\x3c\xdf\xc4\xa4\xa5\x63\xd6\x3a\x37\x9c\xc2\x7d\xe4\x9d\x8a\x80\x75\x2f\xaf\x89\xb0\xd0\xaa\x54\x45\x9a\x32\xcd\xab\x9f\x3e\xab\x9f\x42\x6a\xf4\x90\x15\x87\xcb\xda\x56\x39\xdf\xc4\xc3\x7c\xe2\x22\xaf\xfa\x46\x17\x5f\x26\x1d\x8d\x29\x61\x39\xbf\x31\x34\xa5\x4f\xa3\x4f\xdf\x45\xa5\x0a\x6f\xbd\x92\x07\x34\x3d\x1f\xda\xa2\x3c\x25\x78\x0c\x1d\x17\x85\xb2\xab\x12\x1c\x2a\x94\x2f\x43\xce\x52\x89\x69\x61\x22\x43\xdb\xfe\xa8\x87\x9c\x6a\x58\xad\x1b\xcc\x26\xc1\x93\xeb\x41\x0f\x9b\xa0\x8f\x3c\xd0\xae\xb5\x0e\xa2\xe1\x07\x44\x8d\xe2\x6a\xa1\x93\x83\x8f\x71\xb4\xa3\x46\x1f\x5c\x1e\xb4\xbb\xc9\x78\x3a\x95\xbc\x76\x76\x9c\x00\x51\x14\x49\x09\x58\xe8\xa1\x33\x8e\x32\xac\xce\x6e\x9c\xa3\xa9\x42\xc9\x36\x29\xf1\x7e\xa2\x46\xf7\x7c\x8e\xcb\x38\x57\x8d\x13\xfc\x3c\x75\xe2\x68\x9c\xa8\x80\x60\xbe\xe3\x58\x4b\xc6\xba\x4a\x2c\xca\x7f\xb3\xaa\x48\x4d\xd7\x60\x13\xb0\x0d\x47\x28\x4e\x09\x9f\x44\x2f\x87\x3a\x46\xaf\x9a\x98\x69\xbc\xfd\xeb\x39\x0f\x3a\x7d\xe4\x49\x3d\xe0\xdb\x24\x08\xa3\x19\x61\x8c\xe0\x07\xf8\x47\x32\x9f\xbd\x7b\x8a\x2d\xa0\xbf\xa9\x56\x23\x3c\x15\x50\x39\x82\x84\xa7\x60\xb5\x5a\xf5\xfe\x4c\x66\x2c\x08\x54\x98\xf5\x1e\x5a\xf7\xf2\xf9\x39\xf3\xfe\x93\xfe\xb9\x9a\xa6\x1f\xe9\xf9\x9f\x8e\x97\x94\x5c\x43\x45\xf4\xd5\x43\xc4\x5a\x97\x18\x21\x91\x31\x2e\x01\x76\xa9\xc4\x47\x59\x0f\x2a\xf1\x53\x4d\x91\x8f\xe6\x2e\xf6\x42\x5c\x14\x0c\x6a\xdc\x05\x51\xf3\x43\x02\xcb\xdf\xd5\x7e\x5c\x5b\x4b\xc2\x15\xef\xa1\xbd\x9e\x2f\x7a\x0e\x1e\xad\xe7\x8b\x36\x22\x7d\x6f\x10\x76\x96\x8b\xbc\x4b\x68\xfb\x21\xed\xbc\xe1\xc8\xc7\xc9\xdc\x7e\x44\x50\xa7\xb3\xc8\x6b\x7a\xc8\x9b\xc9\x5a\x17\x15\xa5\xd0\xda\x5a\x66\x55\x45\x60\x35\x51\x2f\xe8\x79\xce\x7a\x6e\xcc\xc4\xc2\x01\xb5\xb9\xd9\x31\x6c\x53\xba\x62\x19\xe5\x68\x7a\x3e\xd9\xd9\x45\x21\xa5\x85\x39\x08\x31\xe4\xe9\x46\x28\x6e\xd7\x43\x2a\x99\x24\xf6\x37\xb7\xd8\xb6\x79\x4b\x65\x56\x2c\x80\xd1\xf3\xf5\x7c\xfe\x29\xae\x03\xa7\xb2\x52\x8b\x1e\x13\xc0\x3f\x19\x11\xda\x53\x27\x91\xf7\x99\x2b\xee\x9c\x6a\x2e\xf7\x96\xf1\x1a\x28\x21\x19\x45\x15\x4d\xd2\xfc\xb5\x35\x43\xf6\x95\xc8\x46\x0e\xd1\xba\xaa\x9f\xcf\x42\x2c\xae\x92\xce\x6b\x39\x2d\x97\xd7\x9c\xaa\x53\x74\x10\xef\xcb\x75\x45\xff\x5e\x14\x5a\xc3\xf5\x29\x92\x1b\x26\xcb\xe5\xf2\x71\x32\x8d\x85\x29\x01\x7f\x68\xff\x75\xff\xef\xff\xfd\xc1\xc2\x54\x5c\x29\xba\x63\x1b\x9b\x68\xdd\xd3\x8c\x7c\xe6\xda\xa1\x02\xe4\xf7\xd6\x33\x96\x8c\x67\xd7\x9e\x19\x13\x3e\x3d\x25\x9d\xb0\x02\x22\xc4\x73\x70\xbf\x8f\x9c\x08\x11\x52\x0b\x9f\xda\x6b\x9a\x4c\x79\x43\xa8\x87\x6f\x27\x82\x9c\x7e\xf3\x26\x63\xb4\x37\x28\xf2\xaf\xa2\x30\x56\x68\x72\x5d\xa6\x36\x57\x6a\xee\x91\xa7\xb0\x72\x22\xbd\x9c\x60\x6c\xc0\x51\x35\x66\xef\x42\x85\x69\x72\xe4\x45\xa0\x2c\x7a\x00\xdd\x6e\xa8\xe0\x5d\xcf\xaf\xad\xa1\xa2\xf7\x98\x82\x97\xfa\xdf\xbc\x16\xcf\x11\x19\x27\xa5\x57\x96\x70\xc4\x55\x4d\xee\x7a\x0b\x7a\x83\xa2\x43\x7d\x62\xad\xc7\x81\xf9\x3f\xb2\x13\xe6\xff\x6f\x46\x78\xd1\xe5\xaa\x25\x77\x3d\x42\xb1\xd0\x8c\xb7\x8e\xf2\x9c\x89\x4e\xce\xf9\x24\x43\x11\x8d\x22\x8f\x91\xf3\x2f\xf7\xf1\xe3\xc7\x8f\x85\x56\xab\xb0\xbf\x9f\x9b\x22\xac\x51\xa7\x69\xf3\xf1\x64\x1a\x47\xfe\x63\xe4\xbf\xdd\x52\x67\x9d\x61\x1d\xaa\xea\x6f\xd1\xbf\xa7\x61\xde\xa2\x8d\x8d\xbc\xb3\x31\x85\x4b\xa2\xfa\xe8\xf3\x6c\x14\xc9\x27\x13\xc8\x6a\x4d\x33\x68\xf9\xb7\x2a\xfa\x29\x68\xf3\x84\x6c\x17\x01\xa7\x9a\xec\xb0\xd9\x25\xbe\xfd\x45\xb3\x3e\xc4\xc6\x90\x3f\x8b\xe6\xf0\x52\x28\x91\x6a\x93\x1c\x42\x05\x4d\x44\xeb\x93\x9d\xa7\x28\xd0\xfe\x5c\xa6\x34\xa4\x66\xbc\xb7\x50\x37\xa5\x06\x5c\xd0\xec\x5c\x2e\x5d\xf1\xd9\xc3\xbf\x50\x37\xcf\xae\x3e\xb7\x10\x66\xd4\xfe\xe9\x46\x98\x3f\xd7\x95\x55\x05\xad\x7b\x45\xc1\x27\xe5\x13\x6b\xad\xe6\x54\xc9\x9f\x99\x8b\x33\xc9\x73\x45\x66\x42\x22\x8d\x97\x2c\x36\xd0\x45\xd7\xa3\xe3\xe3\xd1\x08\x59\x98\xb1\x9c\x0e\x1d\xc3\x3e\x14\x22\x90\xf6\xc6\x78\x4a\xca\x08\x92\xa3\xf3\xaa\x2a\x37\xf3\xed\x49\xb3\x34\x2f\xff\x94\x24\x55\x12\x36\x1e\x85\xa2\xf7\x98\x5e\xf7\xa7\x68\x58\x64\x7c\x9f\x15\x9d\xcb\xcd\x8c\x7c\xba\xc1\xee\x81\x90\xa2\xa4\x8f\x51\xe8\x33\xf0\x26\xe1\x1c\x10\x93\x05\x6f\xe0\xd0\x07\x40\xd0\x03\xe8\x4e\xc6\xe8\xc0\x71\x28\x1b\x3a\x99\x09\x40\x5f\xc7\xc8\xf4\x5c\x00\x81\x8b\x49\xdf\x46\xc0\x1c\x40\x07\x9a\x1e\x72\x80\xc8\x18\x30\xd4\x1e\x21\x8f\x31\x25\xd2\x41\x29\x74\x44\xca\x4d\x72\xa1\xe3\x4f\x21\xa2\xca\xea\xc4\x29\x62\x62\xa1\xaf\xa7\xb7\xeb\xb9\x8f\xb9\xfc\x5b\x9e\xa2\xb5\x68\x8a\x96\x4c\x61\x3d\x93\xc2\xa3\xdc\x79\xbe\x01\x5d\xb6\xd8\x44\xe9\x2d\x99\x7e\x90\xe3\x5e\x4c\xb9\xa3\xef\xcb\x67\x20\xf3\x19\x2d\x5a\xf3\x91\x4c\xe1\x2e\x9a\xc2\x95\x29\x60\x58\xd7\xda\xf7\xd5\x15\xe6\xf2\x29\x0f\xad\x37\xc6\x53\x34\x65\xe3\xe9\x2a\x97\x32\x39\x91\x58\x23\x43\x15\x8f\x1a\x3a\xca\x0c\x75\x73\x02\x0b\x04\xbb\x38\x33\xcb\x49\x66\xe2\x56\x66\xa8\xc5\xb2\x4c\xc9\x06\xf3\x04\xa9\x3c\x67\x2e\x49\xf5\xdb\x53\x84\xf4\x5c\xf1\x11\x26\x5e\x5b\x4b\x7c\x02\x4c\x5c\x0f\x12\x93\xa1\xc6\x29\xf7\x84\x59\x5b\x5b\x27\x09\xec\x26\x5a\x22\x45\x9e\x4b\x32\xd0\x1c\x24\xd7\x3b\x6d\x5d\xf5\xd8\x11\xf5\x73\x84\x33\x49\x44\x60\x51\x91\xe1\x4f\xcd\x5b\xd7\xf3\x45\x8f\x5e\x8c\xc7\x72\x94\xf2\x31\x84\xcb\x79\x42\x23\xaf\x2e\x72\x9f\x9c\xcf\x7f\x92\x4f\xe8\x33\x7f\xdb\x13\x9a\x1a\xc0\x02\x9e\xf2\x79\x8d\x3c\x25\x88\x2b\xca\x7f\x13\xee\x80\xd5\x6a\x35\xb9\x42\x30\x0e\x48\x70\x08\xe2\x59\xc4\x6e\x87\x89\xa9\xa8\x18\x52\xdd\x7c\x10\xbc\x91\x20\x6f\xa2\x50\x39\x24\xb2\x93\x25\x85\x47\xf9\x27\xce\x9b\x5c\x88\x55\x11\xe5\xbf\xe5\x26\x4c\xc2\xe4\x4e\x43\x55\xce\xc9\xe4\x9e\xa7\xfe\xc2\x73\x44\x13\xa4\x7e\x0f\xc5\x4a\x9f\x24\xf3\x23\xd7\x4d\xb6\x2c\x30\x99\x85\xc9\xfc\xac\xc8\xa4\xb8\x82\x22\xfd\x54\x4a\x0f\xc2\x19\xbe\x11\xfc\xba\x9e\xad\x0b\xd1\x44\x3c\x26\xeb\xe5\x4c\x3d\xca\x06\x8a\x56\xb9\x59\xda\x4c\xf0\x1f\x60\xe1\xfb\x5c\x3e\x54\x1d\x16\x6f\xb1\xed\xb1\x65\x50\x01\x29\x44\xf3\xc0\xfc\x94\x55\xca\xe7\x62\xec\x4f\x92\xcf\x87\xa2\x59\x9e\xd1\xf4\x63\xb2\xaf\xfa\x0f\xc4\x2e\x61\x6f\x22\x51\x31\x96\xfd\x54\xc8\x4f\xd9\x9c\xe5\x67\x91\xe9\x01\x59\x30\x4f\xd5\x59\x61\x7e\x96\xfb\xaa\x52\x6f\xa1\x7a\x72\x48\x25\xd3\xa3\x74\xf5\x9e\xcf\x4a\x55\x1c\x66\xe4\x24\x78\x72\xee\x1f\xc6\x35\xdb\xd2\xdb\x6e\x3d\x1f\x6b\xb6\x23\x6e\x3d\xb3\x1b\xd7\xd6\x72\x16\x9b\xda\x44\x32\xd7\xd3\x43\xe2\xcd\xcb\x4c\xed\x3f\x25\xaf\x37\x71\x66\x89\xa1\x98\x9b\x57\xe8\x9a\xc2\xc8\x18\x76\xeb\xe8\x96\x3a\x69\xe9\x29\x84\xd0\xc8\xdc\x6c\x84\x5b\x8b\xc8\xa6\x76\xcb\xe6\x6a\x26\xc0\xfc\x5c\xa6\x2d\xdd\x4a\xf3\x0a\xd3\xc2\xd8\x34\x7c\xb4\x3e\x31\x1a\x3b\x59\xcf\x2f\x32\x26\x7c\xa0\xd7\xd6\xd8\xca\xc4\x4a\x0a\x82\xdc\x48\xbe\xb8\xfc\x25\x9f\x35\x4e\x62\x1e\x2d\x32\x4e\x8b\xe4\x3f\x3d\x76\x0b\xe4\x9f\xa9\x0b\x9f\x5b\x50\xfe\x9b\x58\xcc\x44\x6e\x59\xeb\x4e\x76\xa6\xca\x6a\x24\x44\x51\x3e\x59\xbc\x07\x84\x08\x4f\xfe\x49\x17\x3a\x85\x4f\xc6\x67\x59\x61\x56\x8a\xce\x38\x5e\xb6\xa6\x44\x8d\x78\x92\x58\xf7\x94\xe6\xac\x51\x8a\xc1\x9d\x42\xcb\x24\xfc\x9f\xdc\x67\x57\xe8\x04\xd9\x4a\xb3\x3e\xa5\x29\x44\xf9\xfc\x1e\x9a\x9b\xc7\x3a\xca\x6b\xe8\xe9\x26\xf4\x66\x64\x35\x60\xbd\xe3\x69\x44\x73\x34\xaa\x61\xae\xee\x0e\x8d\x54\xb0\xfa\xe9\xb3\xe6\x56\xbf\x3d\x69\x66\x15\x15\x1f\x06\xd8\x1c\xbc\x65\x22\xb0\x07\x30\x01\xe3\x4f\xe6\xe7\x6a\x6e\x9c\xd3\xc6\xf9\x71\x71\x00\xdd\xd3\x07\xc2\xf8\x7e\xe4\x78\x93\x75\x2f\xbf\xb6\x96\x1b\xb3\xde\x1f\x7f\xf2\x3e\xaf\xad\xad\xc3\xe2\xd8\x77\x07\xeb\x5e\x5e\x0b\x2b\xe3\xad\x7b\x9a\xa1\xe7\xdf\x54\xab\xe6\xda\xda\x3a\x17\xed\xdf\xe8\xf9\x7c\x9c\x7d\x5a\x94\x13\xce\x0f\xf9\xa9\xe9\x20\x63\x32\xab\x90\xe1\xd7\x9b\x9d\x5a\xd4\xd2\xa9\x7a\x5c\x9f\xe4\xad\xe7\x40\x2e\xaf\x39\x21\x8b\x5f\xad\x56\x61\xf8\xba\xb6\x66\xb3\x66\x57\xab\xce\x27\x19\x5b\x60\xa3\xcf\x35\x03\x94\x8d\x3d\xa9\x46\x11\xa5\xb7\xe4\x3f\x55\xfd\x2d\x29\x14\x58\xb5\xdf\xac\xdb\x9f\x9c\x4f\xe4\xf3\x67\x4c\x80\x9b\xcf\x7f\xa3\x6c\x3e\xf6\x1c\x04\x87\x4f\xf8\x76\x9d\xe6\xbf\xe1\xea\xcc\xba\x85\x70\x4f\x78\x6d\x0d\x17\x4d\x68\xdb\xbc\x13\xf2\xdc\xb3\x98\x49\x5e\x49\x81\x0b\x15\xc7\x0e\x62\x8c\x41\xa4\x7d\xcf\xf3\xf1\xf6\xc7\x6c\xb4\xc7\x9f\xc2\xa1\xfc\x5c\xcd\x39\x39\xed\x36\xfa\x5c\x5b\x5b\x8f\x3f\x98\xc0\xbe\x70\xde\x9c\xfc\x1c\xe2\x7b\x44\x24\xed\x8d\x84\xcd\x6f\x4f\x9a\x50\x49\x48\x3e\x52\xa2\x5f\x02\xb9\xa4\x4d\xd4\xc9\xd4\x0b\xe7\xdf\xa2\x78\xb9\x61\x9c\xe5\xac\xe5\x93\x4d\x21\x86\x79\x6f\xde\x08\x2e\x94\x75\xa1\xbb\x4e\xf2\xd1\xe0\x11\xb5\xae\x92\xd6\x28\x75\x9d\x5b\x49\xc2\x19\x0e\x56\xc8\xf3\x65\x24\x35\xea\xdf\x92\x36\x5f\x39\xc0\xa2\x0d\x41\x90\x6b\x82\x66\x37\xa7\x09\x46\xfc\xed\x94\x2c\x52\x45\xb1\xba\x67\xfd\xbf\x9f\x3e\xfd\x7f\xff\xfd\xf4\xf9\xff\x3e\xe7\x83\xf5\xff\xfe\x37\xff\xe7\x7a\xb3\xdb\x09\x9a\xdd\xa0\xd9\xfc\x93\xfd\x02\xfb\x9b\xa1\x55\x9e\xf2\x7f\xf4\x93\xac\x74\xc4\xc4\x47\x26\x88\x50\x3f\xb8\xcf\xb9\xfd\xa2\x4d\x49\x9f\xf5\xb7\x28\x91\xd3\x16\xf4\x24\xd9\xb5\x84\x9d\x2c\x45\xec\x15\xf7\xcf\x3f\x67\x47\x85\x0c\x79\x7e\x4f\x6a\x61\xd5\x2c\xa3\xd5\x0b\xe5\xff\xad\x87\x8b\x4e\x66\xfc\xb4\xda\x24\x1b\x5e\x90\x9a\x69\x2d\xb4\x50\xcd\xc4\x06\xc2\x65\xa4\xbe\x7f\x1b\x61\x49\x09\xf8\x68\x5c\xfe\xfb\xa9\xf8\x7f\x7f\x7e\xfe\xa3\xcf\x75\xda\xaa\x64\xfb\x6f\x43\xcb\x12\xdc\x24\x8f\x3d\x6d\x51\x2c\xe5\xa7\x13\xb4\xe6\x25\x30\x32\x12\x58\xf3\x12\x48\x4d\xeb\xb2\xfc\x7d\x56\x22\x55\xc7\x27\x65\x9c\x94\x3d\x45\x4e\x38\x4d\xcf\x73\x3d\x50\x13\xba\x1e\xb7\x49\x5a\x59\xf2\x6d\xa8\x2a\x1b\x84\x86\xe5\x24\xf0\x31\xeb\xd8\x75\xc6\x90\xce\x8a\xca\xc8\x2c\x22\xd3\x4f\xea\x2a\x29\x58\x82\xb7\xd1\xaa\x1d\x2d\xbf\x28\x08\xd8\x0a\xc8\xde\xfe\xf4\xd6\xa5\xf1\x29\xa1\x93\xfa\xd3\x2b\x7a\x8f\xeb\x68\x7a\x26\x6b\x59\x1a\xf8\x54\x60\xe4\xf2\xa8\xcd\x50\xbf\xef\x79\x3f\x9c\xf5\x0c\xa5\x3f\x99\xa7\xf4\x27\x4f\xc2\x3d\x22\xd5\x87\x42\x54\x13\xa8\x2d\xa4\x32\xd1\x23\xa1\xcd\x2b\xe9\xda\x18\xea\xcb\x58\x37\x42\xa7\xef\xb3\xae\x96\xdd\x9f\x6d\x9d\x4a\x26\x67\xdc\x59\xae\x47\xa9\x8d\x20\x51\x95\x6d\x33\x14\x6c\x89\xb4\x60\x3d\xaf\x28\xda\xc2\x4c\x12\x8a\xb5\x79\x25\x57\xd1\x13\x8d\xd5\x93\xcf\x34\x21\xa5\xb4\x4c\xe4\xcb\x4d\x33\x6f\x38\x07\x93\xd2\x88\xe4\xb3\x5b\x21\x8b\xcd\x8b\x9e\x09\x3f\xe3\x8a\x03\x77\x40\x7d\xdb\x02\x3d\x04\x20\x01\xe1\x36\x23\xb6\x20\xce\x34\x03\xe7\xdf\xaa\xe6\xc3\xb7\xcf\xa9\x59\x34\x2f\xff\x2d\x52\x92\x90\x4f\xe8\xf3\xda\x1a\xfb\xbb\xee\xb1\x95\xf4\x49\x68\x25\x42\xa9\x8f\x30\xa6\x5a\xd7\x9e\x1d\xde\x29\x8b\x65\xb6\x91\xe5\x4f\x15\x49\xbf\x50\x4c\x9e\xb7\x7d\x24\xf4\xe9\x24\x32\x04\xb0\x4e\x8f\x77\x5b\x65\xa8\x6b\x99\xa8\xa1\x72\xce\x6b\x6b\x6f\xd6\x91\x3a\x46\x5c\x73\x93\x3d\x42\xc2\x5c\xa1\x8c\xc8\xc8\x77\x3d\x36\x1e\x94\x20\x40\x6f\xc1\x27\xee\x1f\x12\xaa\x72\x35\x30\xe2\x65\x00\xea\xf0\x3c\x3f\x47\x13\x2f\xa2\x8a\x11\x75\x51\x3a\x68\x9a\x43\x27\xf9\xa7\x5b\xb9\x16\x2f\x87\x53\x22\xd9\xdb\x6c\xbd\x35\x93\x93\x32\x30\x2c\x08\xde\x18\x7c\xc3\x6c\x76\x17\x84\x35\x51\x31\x2c\xd4\x5c\x53\x47\xe2\xda\xde\x2d\xb4\x5d\xa4\x74\x53\xac\xb0\xcb\xa7\x91\xef\x36\xe4\x6b\xa6\xbd\x73\x22\x99\x33\xc5\x41\x3d\x49\x42\xb5\x74\x77\xc8\x84\x33\x3a\x24\xbb\xc1\x04\x3d\x08\xa2\x39\xdd\xe2\xd9\x24\x45\x96\x54\x45\x4f\x19\xbb\x66\x96\xae\x78\x46\x1e\x4b\xb5\x21\xab\x0e\x4b\xb5\x27\x23\x83\x2a\x7a\x52\xd9\xba\xa5\xdb\xa4\x26\xe6\x94\xd2\x10\x28\x9b\xc2\xc6\x9a\xe3\xc0\xc9\x8c\xb9\x98\x28\x5f\x69\x0f\x01\x90\xa5\x62\x33\x32\x35\x13\xa7\x1a\xa6\x66\x51\xcd\x58\x6b\x67\x4e\x42\x2b\xa5\xad\x5a\x72\x40\xd5\xd4\x7f\x46\x14\x3c\xbd\x84\x24\xe1\xa6\xbc\x5f\xd4\x48\xde\x85\xde\x02\xa5\x65\x98\x5f\xdf\xe8\x19\x4b\xd5\xbc\x8e\x4f\x36\x3e\xa3\xe7\xe7\xcc\xa4\x44\x5d\x64\xe7\xa6\x65\x46\x6d\xb6\xbe\x6f\xba\xfe\x4f\x88\xfc\xc0\x50\xa8\x89\xe7\x8c\x84\x0a\x96\x1e\x08\x35\x6e\xde\x38\xcc\x6f\xc6\xf2\xc3\x90\x68\xf7\x52\xa3\x90\xa8\xc9\x82\x83\xf0\xcc\x2c\x7a\x9a\xd6\x45\x7e\x0f\x9d\x4b\xab\x33\x43\x9f\x1e\x3d\x9f\xe0\x08\x13\x9b\xab\x67\xf9\x3b\x4d\xe7\x36\xa7\xd3\x17\x26\x3a\x19\xcd\x7c\xa6\xeb\x17\xd0\xf2\x72\xb9\xde\xf2\x4d\xb4\x9e\x62\xc7\x44\xc3\xd6\xbd\x6a\x52\x57\x96\xff\xcf\x56\x10\x78\xff\xd6\x83\x00\xbb\x6d\xd8\x5e\xf7\xf2\x41\x50\x30\x18\x2b\x11\x4b\xc8\xdc\xb5\x47\xaa\xda\xd0\x53\x5e\xfb\xf4\x39\x5f\x74\xa9\xe3\x4d\x39\xbc\xc4\xfb\x30\x23\x3d\x6c\x86\xdf\x44\x5e\x7a\xbc\x78\x55\xfd\xad\x97\xe5\xf1\xe2\x6d\x6c\x08\x61\x0a\x55\x75\xae\xbd\x7b\x1b\x69\x75\x43\x9b\x81\x2a\xd7\x7d\xe6\x9e\xfe\x6f\x33\x3c\x7b\x94\x8d\x00\x5a\x99\xb7\x4a\x0c\x45\xae\xeb\x60\x64\x81\xb2\x01\xf8\x2e\x48\xe0\x51\x70\x8b\x89\x05\x20\xe0\x15\x04\xdc\x36\xf8\x16\x6d\x6c\x3c\xcd\x91\x3e\xbd\xcf\x9a\x97\x7f\x4a\xcd\xdd\x50\x39\xbf\xf4\x84\x0d\xd3\xfd\x99\x19\x2a\x59\xd2\xbd\xcc\xd8\x39\xf3\x59\x34\x79\x5e\x81\xd9\x13\x39\xe3\x40\x03\xc6\xe4\x11\xfa\x90\x0b\xd9\x61\xc1\x91\xf2\xaf\x2c\x8d\x71\x3e\x2f\x25\x06\x69\x09\x9e\xe2\x46\xdf\xa6\x4d\x3e\x99\x48\x22\xfb\x33\x0f\x1a\x5c\x64\x21\xd4\x03\x3c\x2b\x3e\x46\x31\x76\xec\x25\x59\xc3\xef\x37\xce\x3c\x5b\x8f\x64\xb9\x00\xbb\xa0\xc7\xb3\x4b\xc8\x5a\x32\x37\xa5\x5a\xde\x3c\x47\x9d\xb7\xd9\x83\xe3\xbd\x95\xa8\x42\xaa\xfa\x5b\x92\x85\x2a\x64\x63\x23\xff\x3d\x48\x98\xf0\x46\x63\x62\x8f\x34\x36\xa1\xe7\x7c\x58\x63\xfb\x53\x58\xeb\xc8\x14\x1c\xd9\xab\x22\x45\x91\xe2\x7c\x3c\x63\x0f\xdb\x94\xf7\x5e\xb8\x95\x2d\x8d\x57\xa2\x3f\x97\xc7\x2b\x91\x2e\x8d\x57\x22\x74\x16\x5e\x89\xd8\xef\xc4\x2b\x91\xf8\xd5\xe3\x55\xd8\x9f\x3f\x8c\x57\x0b\x5a\x2b\x9f\xad\xc6\x34\x5a\x41\x96\x5b\x0a\xab\xc2\x2d\xff\xdf\x89\x55\xe1\xd0\xfc\x5a\xac\x0a\x89\xcd\xf3\x68\x15\x19\x87\xa7\xd1\x4a\x12\xac\xb9\x78\x15\x6d\x81\x5d\x10\xa5\x14\x5f\xf4\xe5\xf9\xab\x38\xed\x9f\x33\x63\x66\xa0\x97\x02\x31\xcf\xc9\x5c\x01\x63\xc8\x34\x13\x7b\x50\x95\xe3\x8f\xd0\xb2\x4a\xfc\x11\x9a\xd6\x14\xee\xec\xa5\x02\xd0\x4b\x21\x93\xda\x93\xcb\x23\x54\x9a\xb5\x59\xa8\x90\x30\x53\xd7\x45\x16\xc3\x15\x2c\xa6\x1f\x80\xa6\x49\x1d\x8b\x89\xe0\x1e\x05\xd1\xbe\x26\xe0\x22\xcf\x1f\x0b\xde\x86\xdb\xdc\xdc\x69\x69\x4a\xe9\x6d\x4f\x9b\xbd\x6b\x41\x4e\xe2\xe4\x9e\x85\x20\xc8\x74\x68\xcd\xe5\xaa\x33\xf7\x71\x2c\xb7\x53\xe2\x29\xf4\x46\x5f\x76\x9e\x8a\x64\xe1\x28\x2a\xc6\xa9\x59\xf4\x48\x9e\x12\x02\xc4\x8b\x32\x56\x5a\x8e\xf5\x33\x1b\x55\x9b\x42\x0b\x59\xe0\xd6\xa1\x23\xa9\x98\x13\xd0\xee\x9b\xdc\x14\xcd\x11\x31\x55\xf4\x76\x21\x9e\x37\xc5\xbd\xce\x73\xc1\x4f\x13\x89\xe7\xdd\xf5\x17\x51\x89\xa9\xae\x54\xa9\x2d\x97\x8a\x86\x3e\xff\x14\xed\x3c\x5f\x76\x40\x64\xc2\xb7\x28\x16\x44\x10\x13\x44\xb4\x75\x21\x80\x70\x2b\xe1\xbf\x0d\x6e\x86\x8e\xcd\x50\xe9\xe4\x55\xf4\x14\x13\xe4\xd8\xad\xcf\xab\x7e\xe2\xa7\xd2\xc8\x53\x6a\xc4\xa1\x35\x39\x2d\x37\xe0\xe7\x64\xe4\xc4\x8e\x82\xdc\xe7\xb7\x4b\xd5\x39\x2e\x69\x96\x31\x21\x53\x3f\x9c\x3d\xc3\x94\x6a\x67\x19\x17\x68\xa6\xff\xae\xa2\xa2\x4b\x10\x3f\x2e\xa9\xc5\x1e\xa9\x28\x69\x6b\x9c\x31\xc7\x67\xd4\x20\x5d\x2c\xa0\xb7\xea\x32\xcb\x75\xe9\x39\x0d\xe4\xa6\xd7\xd5\x38\xc3\x2a\x7a\x92\x87\xef\x2c\x3d\x33\x64\xc2\xe5\x0c\x36\x51\x71\xcf\x59\x6a\xa6\x38\x17\x99\x52\x61\xe5\xde\xe8\x6f\x67\xc0\xa0\x45\x11\x83\x9f\x16\xb4\x8c\xbd\x67\x4a\x3f\xc4\x73\x58\xda\xe4\x23\xca\x8d\x3b\x21\x1e\x46\x8f\x86\x76\x9e\xd3\x29\x3b\x4f\x46\xc1\x9a\xb7\x30\x0d\x90\x07\x07\xfd\x50\x6b\x65\x26\x4b\x37\x38\x2a\xfd\x87\xda\x2c\x73\x59\xa2\xd9\x91\x41\x74\xe9\x19\x1e\xa5\x5c\x6e\x8a\xc7\x05\x2e\x67\x8d\x8c\xd2\x55\xd1\x53\x7c\x0c\xce\xf2\x14\x3b\x4a\xba\x5c\xb5\x95\x22\x97\xab\x77\x9c\x70\x71\xb4\x93\x27\xf6\x2c\xdd\x3a\x99\x70\x29\x2b\x48\x54\xda\x33\xa6\x0f\x7c\xbb\xce\x29\xf4\xa0\x18\xed\x86\x56\xfc\x52\x9e\xcd\x7b\xa6\x75\x70\x3d\xa2\xcb\x6a\xce\x31\x85\xd6\x72\x79\xc6\xec\xf9\x68\x9a\x1f\x91\xd9\xcb\xae\x9d\xe9\xaf\x91\x5d\xe7\x82\x31\x63\xd3\xba\x5c\xa8\x23\x17\xf0\xfc\x53\xe2\x58\xa5\xe5\x97\x03\x35\xf5\x92\x6b\x42\xa2\xe0\x39\xf4\x21\x9a\x8c\x61\x67\xa5\xa9\xbf\x9a\x4f\xb4\x49\x30\x92\x9f\xc2\xa3\x9f\x7e\x88\xfc\x85\x79\x2c\x4d\xfd\x64\xd9\x8b\x11\x3f\xe1\xa0\x9a\x45\xff\xc2\x7c\x18\xf9\xcb\xe8\xdf\x4c\xd8\x62\x74\xd2\xd5\xdc\xaa\xc5\x60\xcf\x2f\xcc\x4b\x15\xcd\xcf\xd5\x7a\xbe\x68\x71\x62\xdd\x4b\x17\x4d\xdd\x19\x73\x6e\x0a\x6c\x11\x92\xf7\x3c\x5d\x93\x67\x7a\x2d\x8d\x3e\x32\xe1\x72\x98\x13\x15\xb7\x1c\xc5\x96\xc9\xaa\xe8\x49\x39\x78\xec\x3b\x9c\x0c\xa2\xb4\xcb\x55\x5b\x2d\x74\xb9\x9a\x2b\x29\xab\xe8\x49\x08\xb3\xcb\x3b\x1c\xf1\x64\x4b\x3a\x1a\x89\xa2\x96\xf4\x2f\xe2\x89\x18\x93\x2d\x4e\x79\xf9\x96\x92\xa0\x89\x6f\xdb\x6c\xce\x08\x17\xdf\xef\x98\x33\x22\xe1\xd4\xe8\x8a\xe0\x2a\x7a\xe2\xe7\xc9\xc8\x0d\x8c\x0b\xb7\x55\xa4\x5a\xae\xa9\x3c\x4d\x15\x3d\xa5\x0f\xae\x59\xba\x51\xe9\x0c\x96\x1b\xa6\xa9\xe2\x97\x6b\x45\x3a\x79\x15\x3d\x29\xca\xc2\xef\x42\xea\x30\xed\xf2\x78\x2d\x0b\x5d\x1e\xb5\xc3\x94\xdc\x05\x45\x6e\x99\xe2\x8d\xfa\x0e\xb3\x6c\x22\xfd\x92\xae\x27\xc9\xb2\x97\x74\x3b\x49\x24\xae\xa2\xa7\xe9\x3d\x13\x4b\xb5\x24\x99\x9c\x37\x24\xda\x17\xf0\x6c\x53\x52\x65\xe7\x55\x7f\x3c\x17\x44\xf9\xa4\x1b\x91\x4c\xc6\x86\x23\x6b\x83\xc9\x77\xbb\x90\x24\x72\x59\xc0\x95\x24\x01\x3f\xcb\xa5\x24\x01\xb4\x88\x6b\x49\x22\xc1\x4b\xba\x98\x24\x3b\xe9\xbb\x5c\x4d\x92\x75\xf3\xa6\x14\xea\xa9\xfd\x4c\xdf\x37\x0c\x3c\xf5\x02\xdd\xcf\xe1\x66\x75\x3b\x8f\x5c\xa4\xbb\x85\xd3\xfa\x0b\x76\xb3\x68\xfc\xd2\x8e\x0c\x89\xea\x48\xdd\x64\x7a\x53\x45\xb6\x27\x4d\xaa\x09\xdf\xe9\x8b\x30\xf7\xf4\x8d\x6f\x52\x73\xfb\x9c\x2f\x02\xfa\xcc\x4f\x75\x9c\xf6\x45\x40\x9f\x95\xf3\x2c\xb5\x52\xa5\x5a\xad\x7a\x09\x5f\x84\x52\x65\xae\x2f\x82\x37\xdf\x17\x01\x7d\xd6\xd0\x94\x2f\x02\x22\x3f\x30\x1d\xd5\xc4\xcf\x7b\x33\x65\x4e\x46\x35\x6e\x01\x6f\xa6\x17\x9b\x8a\x89\x76\x2f\x3b\x13\x13\x95\x59\x70\x22\xce\x40\xa6\xd5\x4c\x94\x33\x51\x5a\x29\x16\x5e\x66\xd3\xbb\xcb\xb3\x0c\x85\x91\x09\x34\xb5\x27\x64\xfa\xd4\xcb\xf8\xa4\x33\x31\x97\x5e\xd8\x99\x3b\x6a\xdd\x3c\x87\xee\xe7\x5c\xb9\x93\xa7\xb4\x65\x38\x6f\xc7\x60\x17\xb2\x5b\x93\xae\xef\x4b\xf3\xe5\xa9\xe4\xdf\xc1\xda\x46\x89\xab\xe8\x69\xda\xb3\x7e\x79\x67\x8d\xa9\x2c\x66\x8c\xd6\xf3\x27\xa5\x4c\x67\xb5\xe4\x91\x29\xcf\xd5\xac\x8a\x9e\x9e\x9e\xf2\xeb\xb4\x08\x35\x58\x84\xa9\x3b\xd5\xc4\x40\xf8\xc4\x42\xb7\x98\x20\x4b\x31\xda\x7c\xf9\xe0\x23\x47\xd5\x9c\x84\xf5\xed\xa2\xd1\xd8\x77\xc1\x3e\x1d\x61\xe2\xbb\xa0\x4e\xa9\xe7\x7a\x0e\x1c\x57\xfe\xe5\x02\x07\xdd\xf9\xd8\x41\x6e\x98\xb8\x18\x3e\xa3\x29\x86\x89\x69\xfb\x16\xb2\xa4\x23\xd2\xbc\xbc\xde\xc3\x7b\xd8\x31\x1d\x3c\xf6\x8a\x82\xfa\xa9\x1b\xfa\xc4\xc5\x56\x61\x29\xb7\xa4\xf8\xe5\x8e\xbf\xc5\xbb\x57\x3f\xe9\x9f\xe5\x57\x98\xdc\xfb\xa4\x7f\xfe\x77\x69\x6d\xcd\xfb\x64\x7c\xfe\xf7\x6e\x10\x70\x83\xd4\x27\xfd\xf3\xda\xda\x2e\x7f\x33\x3e\xb3\xb8\xd2\xe7\x7f\x1b\x41\xc0\xc2\xff\x53\xad\x7c\x67\xe3\xa1\x07\x6c\x04\x5d\x4f\xb6\xfe\xbe\x5c\xd4\x8b\x3a\xe8\xf9\x2c\xdc\x75\x81\x37\x80\x04\xdc\x57\x58\x60\x2e\xff\xb4\x9e\xd7\x32\xfb\x5f\xa0\xdf\x77\x56\x41\x24\x2e\x7e\x71\x8b\xa0\x25\x5f\x5f\x60\x14\x58\xb7\x93\x6a\x98\xf9\x3d\x72\x5c\x4c\x49\xaa\x9b\x09\xeb\xe6\x6a\x69\x6d\x8d\xb0\x7e\x36\xb6\x83\x80\xf0\xce\x2c\xff\x68\x67\x46\x4d\x02\xf7\xa5\xa2\xb1\x3d\xdd\xa1\x65\xd1\xa1\x6f\xdf\x28\x9b\x56\x59\x85\xd1\xdc\x1b\x02\x73\x2e\x7f\x99\x8a\x29\x62\x0f\x71\xf4\xf9\x33\x6b\x23\x69\x88\xdd\x4f\x7b\x19\x91\x28\x7b\xe7\xb5\x2c\x10\x15\x95\x63\x65\xab\xd5\x6a\x14\xfe\x46\xbe\x17\xc7\x0e\xf5\x28\x4b\xf6\xa7\xac\xdd\x5e\x54\xa2\xa6\x5c\x7e\x95\xff\x16\x5d\x85\x16\x1e\x9d\xc8\xd6\x5a\x31\x48\xdc\x5d\x48\x75\x12\xfa\x26\xee\x32\xf2\x3e\x91\xcf\x6f\x9d\x22\x22\xfe\x08\x39\x8c\x17\xa8\xaa\x1f\x41\xf0\xc6\xd0\x1c\x56\xc3\x5b\xdc\xf7\x45\xfc\x1b\x5d\xcb\x09\xb5\x33\x26\xc0\x59\x5b\x5b\x77\x8a\x0f\x0e\xf6\xc2\xb8\xbc\x16\x6e\x04\x16\x33\x38\xda\x80\x8e\x34\xa7\x38\x44\x13\xcd\xc9\x3f\x85\xfb\xff\x23\x71\x71\x9d\xef\xb6\x8f\x4f\x87\x5d\x5b\x43\xeb\x5e\xdc\x68\x8d\xe4\x35\x87\x87\xf1\x43\xd4\x9e\x9e\xd6\xf3\xf1\xc5\x77\x31\xd1\x4a\xad\x7a\xb3\xf4\xcf\x0d\x48\x08\xf5\x80\x09\x6d\x1b\x40\x20\x4e\xf6\x85\x8c\xb4\xc6\xc2\xeb\x93\xe8\x19\x85\x2c\x3a\xa2\xb7\xe8\xf4\x45\x4e\xb8\x2a\x8e\x63\x51\xc3\xe0\xdc\xdb\x9b\x52\xd0\x9f\xff\xc5\xaf\x67\x12\xd7\x37\xd1\x0d\x79\x69\xd3\x93\x66\x4e\xdd\xd9\xb4\x81\xd5\xbb\x9a\x36\x70\xf2\x8e\x26\xf1\x9d\xbc\x9b\x69\x03\x27\xef\x64\xda\xc0\x33\xee\x62\xda\xc0\x1b\xca\x99\xb9\xe9\xbb\x97\x36\x70\xf2\xce\xa5\x0d\xac\xde\xb5\xb4\x81\xd5\x3b\x96\x36\xf0\x93\x66\xff\x93\xee\x56\xf2\x57\x77\x2b\x4d\xdd\xad\x34\x5e\xea\x6e\xa5\xdb\xea\xb7\x27\xcd\x62\x7f\x06\xaf\xe7\x5e\x25\x67\x75\xaf\xd2\xea\x5e\xa5\xd5\xbd\x4a\xab\x7b\x95\x56\xf7\x2a\xfd\xd8\xbd\x4a\x82\xa5\x7e\x4e\x91\xf1\x4f\xb8\x55\xe9\x97\xb7\xf4\x77\xdc\xa9\xf4\xfb\x86\xf3\x27\xdf\xa8\xf4\x5b\x46\xef\xe7\xdd\xa7\xf4\x33\x9b\xf3\x53\x6e\x53\xfa\xf5\x15\xfe\x81\xbb\x94\x7e\x6f\xef\x7e\xdf\x4d\x4a\xbf\xad\x83\x57\xf7\x28\xad\xee\x51\x5a\xe8\x1e\xa5\xb4\xde\x47\xd1\x57\xf5\x84\x1e\x47\x1c\x7a\xa3\xf5\x52\x76\xaa\xd5\xd5\x4a\xa9\xab\x95\xc2\x9e\xec\xc5\x5a\x32\x1e\x53\x4d\xa9\x3a\x57\xb7\x02\xad\x6e\x05\x7a\x5d\xb7\x02\x69\x89\x29\x2b\xf4\x8b\xea\xac\xcd\x20\x68\xf3\xef\x0a\x4a\x66\x28\xab\x59\x4d\x9d\xe8\xc5\x55\xe0\x31\x96\x67\xdd\x1f\xa4\xbd\xdc\xdd\x41\xeb\x4e\x26\xde\x71\x5d\x6a\x7e\x23\xa7\x29\x17\xfd\xcc\xb9\x26\x88\x01\xae\x6e\x09\xca\x38\xe7\xbd\xb7\xba\x25\xe8\xef\x76\x4b\x90\xb0\x9e\xe8\x6f\x69\x96\x77\x08\x95\xb7\x04\x6d\xa8\xf5\xa6\x73\xee\x87\xd9\x48\xd6\x23\xc3\xfa\xfe\x0f\xbf\x15\x28\x0b\x05\x52\x6d\x7a\xc1\x5b\x81\xb2\x4a\xfb\xae\x5b\x81\x36\x7e\xf1\x7d\x40\xbd\xe7\xee\x03\x4a\xae\x1e\xc2\xce\x16\xaf\x1d\xd1\xca\xf1\x1b\xee\x08\x4a\xd6\x2c\xe6\x7c\x13\xb5\x9b\x75\x73\xd0\x40\xf3\xd2\x6d\x53\x68\x59\x75\x4a\x90\x88\xef\x13\x72\x7e\xfa\x7d\x42\xff\x3f\x7b\xff\xde\xe5\xb6\x6d\x34\x8e\xe3\xff\xff\x5e\x85\x84\xc6\x0a\x61\x41\xb2\xe4\x26\x69\x4a\x99\xd6\x71\x1d\xa7\xf1\xaf\x59\xdb\x4f\xbc\x69\x93\x23\xeb\xf1\x87\x22\xa1\x15\x6b\x8a\x54\x49\x68\xbd\xca\x8a\xef\xfd\x7b\x30\xb8\x10\xe0\x45\x97\xb5\x73\xeb\x93\x9c\x1c\xaf\x88\xcb\x60\x00\x0c\x06\x83\xc1\x60\xc6\x46\x4b\x7b\xe9\xf5\xcc\x9b\xf3\x3f\xa2\x0c\xfd\x11\x65\xe8\x58\x94\xa1\x46\xf2\x6e\x20\x6d\xb5\x41\xde\x39\xf6\x50\xad\xa1\xaf\x2a\x32\xeb\xc7\x8a\x48\x64\x37\x64\x1d\x52\x4e\x3a\xd8\x61\xf2\x2b\x47\x28\x12\x76\x13\x62\x6b\xeb\xb7\x06\x26\xea\x97\x01\x89\x4e\x8f\x47\x64\x8f\x8d\xc1\xe9\x2d\xbe\xa1\xa3\x14\x2d\x7e\xe6\x28\x45\x36\x3a\xa5\x69\xa3\x85\xcd\x39\xb1\x8b\x16\x77\x8e\x5d\x54\x39\x00\xc9\x57\xac\x16\x22\xf6\xa1\xea\xb7\x1e\xd1\xa8\x1f\x1f\x0f\x65\xa4\x9f\x19\x56\x77\x93\x4a\x0c\x1d\xaf\x6e\x8f\x75\xe7\xf8\x46\xf5\xa6\xcc\x08\x3b\xa7\xb5\x74\x52\xd4\xa3\xf6\x3e\x09\x75\xd3\x59\x7d\x6a\x8c\x60\xd4\xda\x95\x33\x1a\x38\x14\x21\xa9\x0a\x1f\x0e\x27\x9e\x69\xef\xf5\x47\xdc\xa4\xf3\x3d\x91\xfd\x11\x37\xe9\x57\x8e\x9b\x24\xf6\xb7\x5f\x22\x6e\x52\x56\xc6\x4d\xca\x1a\xe2\x26\xd9\xeb\xab\xf2\xba\xae\xc1\x04\xf5\xb4\x68\x4a\xd9\xc7\x8a\xa6\x64\xa3\x27\x8d\x11\xbd\xba\xbd\x36\xe8\xbb\x55\xb0\x09\x92\xa9\x1f\xa9\xfa\x11\xa9\x1f\x6d\x91\x97\x92\x4e\x94\x74\x96\x2a\xf2\xd2\x12\x2f\xab\x61\x8f\x12\x1d\x79\x69\x39\x4b\x8c\xc8\x4b\x89\x11\x79\x29\xb1\x22\x2f\x25\x46\xe4\xa5\xe4\x63\x44\x5e\x4a\xce\x8b\xbc\x04\x58\xa6\x5e\x62\xd8\xae\xe3\xa6\xc0\x4b\x5b\x11\x78\x29\x9d\xa5\x46\xe0\x25\xd0\xb5\x44\x9c\x76\x32\x2f\x2d\xe3\x2e\x65\x8f\xbd\xd1\x24\x53\x71\x97\xb6\xb3\x74\x96\xe9\xb8\x4b\x91\x15\x77\x29\xc2\xb7\xac\x2d\xee\x52\xa2\xe3\x2e\x31\xce\xaa\xee\x14\x77\xa9\x46\x19\xdb\x8d\x45\x17\x4b\x3b\x1a\x53\x68\x46\x63\x0a\xef\x14\x8d\xa9\xb2\x15\xd9\x1e\x9e\x1b\x8e\xfa\xa7\x45\x68\x12\x77\xad\x3f\x7f\x7c\xa6\x36\xec\x2b\xfb\xb4\x81\xfd\xc7\x89\xd9\x54\x6d\xd7\xbc\xfc\xa8\x9e\x45\xfe\x88\xe3\xf4\x47\x1c\xa7\xff\xdb\x71\x9c\x6a\xba\x3a\x3b\x18\x53\xab\xae\x20\x3c\x29\xba\xd3\x11\xe8\x50\xee\x70\x13\x65\xcc\x27\x0b\x96\xde\xd8\x1b\xb6\x66\xb1\xf1\x6a\x5d\x42\x73\x40\xa8\xac\x25\x20\x54\xf6\xb3\x06\x84\xca\x7e\xae\x80\x50\xec\xd0\xfd\x0e\xb3\xc7\x4e\xbe\xe6\x68\x19\xf6\x23\x61\xa2\x2c\x48\x95\xd0\x4b\x15\x35\xe8\xef\x32\x78\x94\xd5\xbf\xb4\x41\x6f\xfd\x7b\x0f\x29\x55\xde\x27\x7f\x60\x40\x29\x6b\xa4\x2a\x0a\x24\xf9\xae\x89\x79\xec\xb7\x14\x66\x8a\x9d\x15\x66\x2a\xfb\x7d\x85\x99\xaa\xde\x9a\xc8\xc8\x4c\x77\x5e\x93\xbf\x99\xe0\x53\x7d\xfa\x11\x82\x4e\xd9\x0c\xb0\x76\x99\xf4\xbb\x08\x45\x55\x59\x70\xf5\x90\x4e\x77\xee\xce\x6f\x34\x40\x95\xd5\x61\x2b\xd4\xd3\x9d\x7b\xfa\x3b\x0f\x5b\x65\x93\x40\xb3\xb6\xf8\x8f\x60\x56\xbf\x66\x30\x2b\x9b\x66\x1b\x95\xec\x7f\x84\xb8\xfa\x95\x42\x5c\x55\x19\x68\x35\x8a\xd3\x87\xf0\xcf\x3f\x02\x5f\xfd\xa6\x03\x5f\x89\x93\xe1\xa1\xc0\x57\xa6\xbb\x81\x8f\x14\xf7\x2a\x39\x27\xee\x55\x72\x87\xb8\x57\x16\x41\xab\xf0\x45\x77\xa6\xe2\xff\xc2\x68\x58\xa6\xbd\xc1\xcf\x1f\x0b\xab\x4f\x7f\x53\x31\xb0\xfa\x87\xc2\xf4\x1c\x8c\x7d\x65\xb8\xdd\xa8\xaf\x96\xff\x23\xb1\xaf\xec\xb5\x25\x83\x18\xdd\x7d\x6d\xfd\xf7\x45\xc4\xfa\x18\x6b\xeb\xf4\x78\x58\xcd\x6b\xeb\x57\x8a\x83\x75\xd6\xca\xb2\xe2\x5f\xfd\x52\x2b\xeb\x37\x1b\xff\xca\x96\xc1\x8c\xf8\x47\x77\x17\xbe\xfe\x5b\xa2\x62\x7d\x84\x05\x75\x66\x4c\xac\x3e\xfd\x23\x16\xd6\xa9\xb1\xb0\x2c\xc2\x95\x01\xa6\xee\x4c\xb3\x46\x84\xac\xec\x4e\x11\xb2\xfa\xb4\x7f\x5a\x68\xac\x43\x91\xb1\x8e\x0a\xc5\x15\xf9\xf6\xb7\x1b\x19\xcb\x9a\x1c\x1d\xae\xea\xce\xd3\xf3\xf1\xe2\x65\x59\x88\x19\x21\x9b\xea\xb7\x56\x7f\xc4\xd0\xfa\xa8\x31\xb4\xfa\x56\xf0\xac\x43\xb1\xb3\xac\x29\xd2\xb1\xa7\xee\x4c\x3b\xff\x1d\x11\xb5\xec\x6b\xbe\xe0\xae\x97\x60\xbf\xdf\x38\x5b\x95\x1b\x53\xe1\x55\xea\xe3\x8c\xc1\xef\x2f\xfa\x56\x95\x8b\xc9\x08\x57\x77\x5e\x23\xbf\x62\x4c\x2e\x7b\xa7\x28\x83\x5e\xdd\x7d\xaf\xf8\x3d\x44\xea\xb2\x7a\xad\xa3\x51\xdd\xb9\xcf\xbf\x48\xfc\xae\xc5\x47\x8f\xdf\xd5\x5f\x34\x06\xee\xea\x97\x81\xbb\xee\x1a\xb7\xab\x19\xd7\x73\xe2\x76\xd9\xbb\x90\x15\x03\xeb\xee\x5b\xd1\x6f\x3e\x9a\x97\xd5\x6b\xe9\x7d\xec\xe3\x30\xd9\x3f\x62\x7c\xfd\x11\xe3\xeb\x64\x8e\xa8\x43\x69\xdd\x79\xa9\xfd\x5a\x91\xbf\x2a\x26\x1f\x65\x5c\xad\x0f\xb0\xfb\xf8\x95\xe3\x81\xd9\xa2\xa7\x08\xbe\x75\x77\xcb\xb2\x5f\x3c\x4a\x98\xcd\xc8\xf9\x5a\xa9\xf9\x08\xa9\xc6\x0e\xab\xd0\xa2\x0c\xfc\xf5\x01\xb4\x78\x2c\xa2\x58\x45\x09\xb7\xd8\xd6\xce\xca\xbf\x4c\x9c\x31\x0b\x8f\x5a\xd8\xae\x3b\x0f\xc0\x6f\x2d\xfa\x58\x8d\xd7\xa8\xd8\x5e\x1f\xc4\x6e\x7e\xd5\x98\x64\x35\xe3\x3f\x33\xce\xd7\x07\xdc\xa3\xff\x66\x22\x95\x59\x1d\x3c\xf0\x4a\xe9\xf7\x17\xbf\xac\xd1\x86\xc8\x0e\xb2\xf5\xc1\xb6\x44\x7f\x44\x35\xfb\xc0\xa8\x66\x8d\x93\x54\x7f\x39\xf3\x47\xac\xb3\xdf\x47\xac\xb3\xa3\xd7\x7e\xda\xfc\x24\x3b\x6c\x7e\x92\xb4\x05\x98\x4a\xea\x01\xa6\xb2\x73\x02\x4c\x65\x87\xcd\x4f\x92\x39\x49\x0e\x9b\x9f\xd0\xc6\x57\xd8\x7f\x04\x40\xfb\x3d\x04\x40\xfb\x3f\x40\x9e\xfa\xea\xfa\xec\xcd\xfb\xd7\x88\x8a\x76\xe7\xb7\x07\xbf\x5a\x54\xb4\xba\x28\x5f\x86\x29\xbb\xf3\xd9\xe2\xe3\xc6\x4a\xb3\x2d\x7a\xea\xb1\xc5\xee\x6e\xdc\xf3\xfb\x8a\xa0\x46\x98\xb3\x20\xf0\x06\x65\x76\xfb\x8e\xee\x5c\xf4\xe2\xc9\xc5\x33\x44\xae\x68\x83\xbf\xdf\x4e\x5a\x14\x44\x94\x82\xb8\x3b\xff\x78\xf6\x63\x4b\xc9\x6a\x70\x20\x5d\xef\xd9\x3f\x9f\xbd\xb8\x3c\x50\xb1\x13\xd9\x4d\x3c\x79\xf5\xfc\x50\x33\x65\xa8\x9f\xb2\x9a\xcf\x28\x3c\x2a\xcc\x40\x03\xdb\xd6\x4e\xac\x2b\x68\x65\x6d\x5b\xd1\x4d\x89\xfd\x35\x4d\x58\x5b\xb1\x40\x17\x13\x41\x1b\xd2\xac\xad\xa4\x5f\x22\xab\x82\x2d\x34\x17\x5c\x15\x24\x37\x33\x28\xbe\x5d\x79\x54\xd7\x7e\x1a\xfb\x79\xfe\xc2\x5f\xd3\xb6\xfa\x79\x51\xcc\x31\x59\x14\x0e\x2e\x1c\x11\xb3\x8d\xc8\xe8\x6b\x46\x30\x31\xa6\x62\x42\xb1\xe1\x32\x99\x65\x43\x4e\x00\x73\x12\x79\x33\xc4\xd2\x0d\x22\x68\x91\x32\x96\xae\x11\x11\x01\x1b\xe6\xc4\xf7\x66\x32\x38\x90\x0a\x08\xa4\x72\x72\x6f\x56\x86\x8f\xb0\x6b\xcf\x49\x50\xbb\xe6\x4e\x3c\x6a\x39\xf2\x45\x58\x7b\x4c\x50\xef\x35\x93\xfd\x1e\xdc\x39\x09\x87\xae\xab\x8c\x2e\x11\xde\xef\x11\x22\x89\xf7\xe0\x7f\xff\x34\xf3\x07\x3f\xcd\x1f\x44\x43\x46\x73\xe6\x24\x78\x9a\x80\xab\x3a\x0c\x4f\xcc\x9c\xd4\xe3\x69\xea\x2d\xf8\x7e\x9f\x8a\xb6\xb2\xa1\x22\x5d\xbc\xdf\x33\x43\xa6\x48\x95\xef\x29\x61\xc7\x85\xe5\x27\x26\x69\x41\xe2\x12\xf7\xd4\xf0\xf5\x1c\x58\xbe\x9e\x03\x61\xb4\x93\xd5\x5f\xbe\x75\x4d\x8e\xf6\x1d\x5d\xd2\x8c\x26\x81\xbe\xc7\x5b\x45\x79\x67\xe5\xe7\xc9\xa7\x9c\x2d\xd3\xa4\x13\x25\x11\x8b\xfc\x38\xca\x69\xd8\x19\x74\xf2\xed\x86\x66\x0e\xb6\x4a\x04\x7e\x1c\xd3\x10\x29\x17\xe8\x5d\xb6\xdf\x23\xf9\xde\xcf\xd0\xaf\x9a\xde\x1a\x8c\xe4\x29\x75\x59\x21\x30\x4e\x4b\xdf\x07\x84\xe3\xaa\x7d\xaa\x67\xc2\xf8\xc2\xc1\x24\xab\xc5\x38\xd3\xb1\x15\x9b\x80\x97\x0e\xf5\x9a\x39\xda\x6b\xde\x1b\xce\xc4\x32\x9a\xe7\x7c\x08\x61\x37\xa2\x11\x5b\xd1\x8c\x6f\x4a\xbc\x36\xdf\x82\xca\x28\x66\x04\xac\x5a\x50\x5f\xb5\x80\x27\xb4\x64\xdc\x9e\x7c\xf7\x1f\x64\x14\x9c\x16\xf4\x7a\x66\xb8\xb5\x5b\x23\x1e\x9d\x7b\x0b\x57\x12\x2e\x25\x65\x4c\x38\xb7\x3b\x26\x2a\xe0\x9b\x08\xae\x54\x06\x87\x73\xbb\xa3\xa2\xc0\x84\xf5\x7a\x8e\x6c\x23\xa7\xec\x95\x02\xfd\x72\x39\x6d\x4c\x85\xc1\x71\xe9\xf0\xed\x5b\xc0\xe2\xed\x5b\x8f\xe1\xc2\x09\x48\x8a\x49\x50\xf5\x43\xe0\x55\x9c\xa9\x00\xab\x56\x1e\xba\x56\x7e\x0e\x8b\x5b\xba\x86\x1c\x5c\x65\xe9\x76\x83\xb0\xed\xa7\xc0\x76\x48\x6d\xa8\x2d\x84\x96\x1c\xe1\x09\xbc\x73\xb6\x1c\x33\x97\xde\xc0\x1b\x60\x1c\x0b\xf0\x26\x85\xeb\x12\x06\x67\x45\x41\xe5\x51\x77\xc9\x7f\x2f\xe9\x7a\x13\x57\x9e\x8d\x4b\xfc\x1d\xf4\x88\xad\xa8\x1f\x3e\x46\x78\xe8\x6f\x36\x70\x63\xc2\xd3\xb2\x6a\xc2\x0a\x12\xc2\x50\x8e\xc6\x26\xa3\xd7\x3c\x01\xd8\x81\xe1\xbc\x1e\x11\xa4\xc2\x4d\xd9\x00\xf2\x8d\x9f\x58\x20\x1a\x0c\x01\x86\xaa\x2a\xc6\x87\x1b\x17\x7e\xbd\x84\x8f\xc5\x36\x2c\xa0\xcc\x6b\xbb\x48\x90\xc6\x1c\x0f\x44\x0e\x5c\x87\x4d\xd1\x17\xc8\x45\x9f\xa3\xc3\x28\x24\xf4\x86\xb5\xb4\xac\xb2\xce\xec\x3b\xaf\x86\x31\xc6\x24\x11\xb3\xb2\x48\xc3\xdd\xd1\x59\x11\xf3\x76\x46\xdf\xbe\x44\x2e\xfa\x0b\xc2\x9a\xc3\xcc\x38\x98\x30\xba\xb6\x7b\x67\x38\x4f\x83\xe8\x44\x76\xa3\x7c\x59\xda\xe5\x21\xa9\x03\xff\x0e\xf2\x75\x59\x9c\xda\x15\x65\x97\x30\x67\xed\x87\x5b\x95\xb1\xdf\x4e\x6a\x77\x10\xa4\x49\x48\x93\x9c\x33\x62\xdd\xb0\x92\xe7\x75\x4a\xa2\x53\x8e\xb7\x2e\x02\xce\xfd\x4a\x8d\xab\x28\x77\x3f\x4f\xf3\xf3\x3a\x9f\xb8\x8c\xd6\x4a\x4e\xf3\xa3\xe4\x08\xaf\xe0\x14\xa8\x28\x14\x7e\x67\xe5\xef\xc9\x01\xff\x98\xe0\xd1\xa7\x4e\xb9\x65\x82\xaf\x29\xf9\x96\x4b\x17\x2e\xfa\x13\xc4\x37\x84\xe3\xb6\x8b\x06\x63\x44\x58\xc4\x62\xea\x36\x5b\xcd\x0c\xad\xe0\x66\x85\x39\x4e\x0b\x96\xb4\x2c\x54\xab\xce\x5d\xd8\xd5\x76\x23\x16\xec\xc1\x8e\xd5\x20\xa1\x92\x95\x0f\xc0\x8e\x50\xf5\x5b\xa0\xc7\x73\x07\x9a\xb3\x23\x17\x6c\x0d\xf3\x23\xdd\x57\x01\xdf\x8a\xe6\x9e\xe6\xab\xf4\xbd\xec\x24\xc6\x24\xfb\x39\x27\xc2\x0a\x23\x77\xe2\x44\x58\x75\xee\x32\x11\x61\xfa\x3e\xc1\x58\x3b\x8b\xac\x78\x61\xd5\x86\xf2\x27\x91\xa4\xc6\x37\x57\x87\x33\xd4\x32\xc7\x4d\x25\x87\x2b\xb6\x8e\x1d\xe4\xa2\x96\x71\x6e\x84\x8e\xc9\x2f\xb3\x36\x44\xb0\xbd\x73\x57\x87\xa8\xf5\xeb\xac\x0f\x69\x60\x7b\x64\x85\x48\xb7\xf7\x27\xac\x91\x72\x04\x5a\x56\x89\xee\xec\x2f\xb6\x4e\xce\x9a\x94\x4a\xad\x8f\xbc\x56\xf2\xe6\xb5\xb2\xfe\xbf\xb8\x56\x44\xe4\xc8\x73\xd7\x8a\xa8\xf5\xeb\xac\x15\x11\xc2\xe1\xd8\x5a\x91\x81\x1e\x4e\x58\x2b\xe5\x08\xb4\xac\x15\xdd\xd9\x5f\x6c\xad\x9c\x35\x29\x95\x5a\x1f\x61\xad\x94\x2e\xd1\xf6\xfb\x0f\x5c\x0f\x65\x82\x38\x23\xda\xd5\x17\x2c\xe9\x2c\x58\x32\xd8\x64\xd1\xda\xcf\x76\x95\x39\x95\x3d\x74\xed\x38\x61\xe7\x0c\xa8\x59\xb1\x68\x9b\xbe\x96\xe5\xd7\x28\xbf\x1a\x64\xa8\x23\x9f\xdd\x51\x7c\x9d\x51\x92\x90\x6c\x8e\xf1\x21\x49\xf5\xb0\x94\x7a\x08\xbd\x55\x5d\xc4\x38\x05\x3b\x25\xf4\x1e\x02\xbd\x6e\xe2\xc9\xa7\x01\xcf\x8e\x02\xcf\x9b\x88\xf8\x34\xe0\xa9\x57\x7a\x84\x6b\x16\xf6\x1d\x3c\x3f\x2c\xbc\xa7\xe2\xe9\x3f\x6d\x13\xb0\x52\xed\x04\xb5\x79\x53\x91\xf9\x19\x28\xf1\x6a\xd3\x2a\x42\xdf\xd6\xe7\x72\x36\xaf\x5f\xc9\xd5\xcc\x2d\x4b\xbf\x04\x77\xe3\x3c\xb5\x35\x05\x2f\x7c\x8e\x2c\x9f\xd0\xdf\x15\xe7\xb3\x13\xa8\x07\xec\xa4\x72\xf3\x57\x1a\x8f\xab\x27\x57\x32\x28\x80\x83\x8d\x04\x19\xa0\x4a\xaa\x6c\x2b\x3e\x6e\x27\x32\x7c\x7a\xcd\x25\xaf\xb2\x96\x9e\x3a\x49\x35\x80\x86\xea\x4f\x19\xe7\x98\x64\x5e\x23\x1f\xf4\x19\xc5\xee\x31\x00\x1c\xbf\x16\x00\x1c\x37\xf0\xa6\xfa\x31\x27\x0a\x78\x98\x0c\x09\x2e\xe6\x2b\x39\x32\x29\x19\x1f\xfc\xa2\xf1\xb6\xa8\x66\x4b\xfb\x91\xe9\x0a\x6c\x0e\x8f\xd0\x15\x94\xb9\x03\x5d\x41\x3d\x43\xa4\x6b\xb5\xe5\xfd\xe8\x7d\x4a\x73\x7a\xb4\x4f\x69\x4e\xef\xd4\xa7\x34\xa7\xd0\x27\x4b\x77\x8a\x90\x7b\xee\x86\x72\x92\x36\x8d\x37\xd5\xc0\x99\xce\xdb\x66\x16\x69\xca\x72\x96\xf9\x9b\x81\xad\xb1\x1d\x08\xc3\xe7\x4e\x98\xa5\x1b\x2e\x52\x0c\xd6\x34\xd9\xa2\xd6\x2d\xc5\x8a\x9a\xaa\x10\x56\x0c\xbc\xae\xd5\x75\x4e\xd9\x3f\x1a\x20\xd5\x77\x53\xb8\x64\x01\x48\xdb\xd8\x06\x14\x47\x39\x1b\x6c\x93\x9c\xed\xe0\xbe\x83\x44\x50\x2a\x8e\x0e\xe9\x65\xfb\x2d\x4f\xe2\xa6\x48\x3d\x47\x4e\x13\xa9\xe2\x46\x2e\x32\xf5\xad\x1a\x43\xb1\x31\x38\xb8\xa2\x5a\xb2\xad\x7b\x39\x51\x67\x74\x9d\x5e\x53\x35\x7e\x95\x61\xae\xc8\x6e\xbc\x7c\x89\xf3\x36\xa7\xec\x3d\x4d\xd8\x6e\x09\xaa\x98\x96\xfd\xab\x7b\x10\xc6\xfb\x08\x22\x1b\x56\xdf\x9b\x9e\xc1\xd4\xa7\x0e\x6d\xd9\xf6\x17\x39\xc2\xe2\x0a\xaf\xc6\xd9\xab\x21\xe3\x01\x29\x31\x84\x51\xe5\x98\x54\xa3\x8c\x2c\x7d\x8f\x0c\xfd\x60\x99\x11\xa4\xf1\x60\x1d\x0e\xbe\x30\xe6\x23\x6b\xce\xc6\xfa\x4e\xb1\x1e\x9a\xa9\x86\x99\xbe\x8e\x3c\x5a\x76\xbf\xb7\x7a\x81\x5d\xe7\xd4\xde\xa7\x46\xbd\xda\x80\xa7\xe6\x70\x54\x08\xb7\x99\x4e\xeb\x93\xa4\xdf\x83\x02\xbd\x9e\x5d\xbf\xd7\x3b\xba\x47\x23\x7e\x42\x5b\x59\x73\xc3\xc7\x59\x0d\xde\x5d\x07\x41\xb5\xff\x41\x83\x20\x46\xf2\xee\x83\xa0\x66\xe2\xf8\x20\xc0\x08\x08\xe8\x92\x02\x0d\x62\x3b\x73\x0c\x34\x31\xa5\x35\x06\x0f\x2e\xa9\x9b\x2e\xc3\x65\x54\x1f\x5f\xfd\x1d\x8a\xc5\x28\xcc\x86\x48\xe6\x25\x65\xe3\x82\xb3\xbf\x4a\xf3\x88\x7f\x47\xc9\xd5\xf0\x9a\x66\x2c\x0a\xfc\x98\xa4\x87\xcb\xad\xd2\x2c\xfa\x29\x4d\x98\x1f\x9b\x51\x09\x9c\xa4\xbc\xd5\xeb\xf5\x8c\x0f\xb5\x01\x1a\x49\x6e\xa2\xaf\x0d\xf1\x70\x23\x41\x3b\x98\xe4\x77\x87\x92\x2e\x97\x39\x65\xd2\x13\x6b\x0d\x7b\x3f\xe3\x85\xa2\x86\x7e\x41\x4e\xc9\x4e\x64\x20\xf1\x09\x44\x07\x14\xa0\x1a\xa2\x01\x0b\x48\x2a\x03\x5c\xbb\x94\x75\x87\x1b\x5f\x3c\x29\x07\x20\xb7\x36\x3e\x82\xf1\x63\x23\x16\x85\x63\xc3\xaa\x20\x82\x27\x66\x36\x31\x4a\x06\xab\x28\x0e\x33\x9a\x40\xe8\xa0\x2c\x67\x0e\xae\x22\x52\x44\x4b\x47\xd8\x55\x78\x9e\x97\xf5\x7a\x4e\xe6\x71\x9a\xdb\xf4\xc7\xc3\xcf\xef\xab\x52\xc3\x15\x8d\xae\x56\xcc\xc1\x8f\x3d\xe6\xbc\x8f\x92\x30\x7d\x8f\x75\x5a\xbf\x4c\xca\x83\x2c\x8d\xe3\xcb\x74\xc3\x17\x42\xad\x72\xdf\x40\x2c\xdd\x32\x9a\x7d\x23\x33\x1e\x41\x8b\x53\x60\x84\xae\x5a\x08\x98\x68\xb4\x52\x88\xf0\x10\x71\x78\x6c\x05\xc5\x63\xba\x64\x7d\xdd\x00\x00\xfb\x97\xc8\x7c\xf0\xb0\xd7\x3b\x94\xff\xb8\xc4\x56\x82\x9b\x4a\xf3\x12\x57\x58\x9b\x94\xdb\x51\x36\xd5\x10\x8c\xcd\x2b\xdd\x40\x40\x59\x63\x43\x56\x08\xbb\x0d\xc5\x55\x9e\x5d\x03\x80\x28\xb3\x16\xde\xc1\xa6\x96\x96\x71\xea\xb3\x81\x28\x63\xc0\xb6\x00\x59\x65\x08\xca\x68\xec\xb3\xe8\x9a\xf2\x6d\x28\x1a\x06\x20\xb4\xc8\x85\x03\x4a\xce\xc8\x8b\x24\xe1\xe5\x65\x30\x29\xa7\x6e\xee\xa4\xe1\x70\x6e\x24\xcd\x54\x2a\xd0\x0a\xac\x49\x4a\xc8\xb0\x91\xb2\x56\x2b\x0d\x32\x8c\x47\x12\xe5\x9e\x6f\xfa\x67\xd1\x6f\x09\x80\x57\x85\x9d\xf7\x11\x5b\x45\x49\xc7\xef\x28\x04\x3a\xaa\x41\x1a\x76\x02\xce\x4d\xa2\x04\x0c\xce\xf4\x68\x70\xac\x6e\x59\xba\x71\xcb\x49\x13\x64\xe3\xfa\x40\xc5\x6d\x24\xd7\x47\x9b\x1b\x44\xc4\xec\x18\x75\x23\xbb\xd4\xc0\x89\x3c\xcf\x58\x5a\xd3\x91\x00\x2b\xaa\xbb\xa2\x25\xc2\xc9\x46\x12\x0f\xcc\x65\x53\x25\x9e\x6b\xd7\x82\x49\x33\xab\x49\xbc\x23\x8b\x5c\x07\xd5\x0e\xa8\xf4\xc3\x8d\x14\xd5\xcd\x00\x42\x42\x9b\x2f\xf4\x1a\xaf\x3d\x1b\x4d\x4f\x87\x39\xf3\x33\xf6\x72\xe9\x20\xbe\x6f\xeb\x8f\x10\x89\x98\x2f\x0d\x91\xae\xac\x4b\x79\x43\x6c\x6b\xb2\x34\x08\x38\x50\x46\x6f\x98\x83\xfe\x84\x30\x9f\xd9\x8a\xc3\xba\x1a\x3a\x34\x09\x25\x32\x78\x82\x0f\xc2\x0e\x53\x0d\x5c\x87\x8d\x46\x61\x88\xa4\x26\x5a\x3b\x4e\x34\x9f\x6f\xd6\xad\x5c\xc0\x46\xa0\x03\x66\x24\xe6\x81\xaa\x61\x80\x2f\xe0\x5a\xdf\x1c\x63\x65\xc1\x4c\xbd\xd9\xfc\x84\x01\xde\x55\x07\x38\x51\x91\xf7\xec\x9a\x84\x97\xe4\x9d\xd7\xa7\x5d\x7d\xe8\x6c\x52\x66\x83\xfa\x02\x90\xb3\x86\x67\x2d\x53\x2a\x03\x74\x71\x71\x61\x8f\xd0\xc5\xd1\x11\x12\xf6\x0c\x1d\xc6\x07\x88\xae\x37\x6c\xe7\xb4\x0f\x94\xb0\x94\xae\x0f\x95\x61\x71\x74\xa4\x1d\xa0\x55\x2a\xb3\x79\x0f\x48\x56\x7e\xf2\x93\x30\xc2\xf2\x0b\x2c\x46\xe0\xd0\xb7\x8a\xf2\x49\x32\xa4\xff\x71\x46\x76\x9e\x1c\x30\x38\xe3\x57\x6d\x4b\xca\xeb\x82\x8c\x5e\xff\x48\xfd\x8c\x8f\x09\xfd\x8f\x33\x3e\xad\x96\x18\x76\xa3\xde\xc3\x3b\x34\x9d\xd0\x1b\x09\x82\xea\xf1\x90\x16\xf8\xd5\x4d\xa5\x4c\x27\x4d\xb6\xf2\x75\xaa\x53\x0e\x0a\xc7\x40\x4e\x44\x84\xdf\x54\x83\x64\xac\xa2\x12\xae\xea\x3e\x50\x4c\x05\xec\x8e\xc2\x51\xf6\xb4\xb6\x25\x65\x55\x9a\x7d\xd8\xd2\x6c\x66\x77\x94\x13\xf6\x35\xd5\xdd\xac\x05\xf8\x70\xf0\x81\x55\xa3\x0f\xbb\x49\x4e\x59\xaf\x97\xf1\x76\xdb\xe1\x00\xc1\x81\xa9\x89\xc6\x4b\xb7\x9e\x89\x40\x06\x56\x7c\x9d\xb4\xec\x79\xda\xd0\x6d\x01\x8e\x62\x22\x83\x9a\xca\xad\xb5\xa9\xd3\x45\x93\xc2\xe6\x35\xe7\x0d\xcf\x92\xf0\x47\xeb\x81\xaf\x11\xb1\x9f\x3e\x18\x8f\x48\x26\x5c\x44\x2c\xe3\x34\xcd\x1c\xf6\x80\xe2\xfb\x54\x99\x43\x65\x24\xeb\xff\xf5\x7e\x42\xac\x02\x09\xbe\x9f\x54\x0d\x67\xc4\x2a\xe5\xed\x9c\xbd\x48\xa5\x79\x11\x61\xf6\x1a\x55\xdc\xaf\xd2\x0d\x67\x3c\x22\x2d\x94\x94\xb5\xf1\x4b\x28\x90\xcc\x46\x73\xb5\xb4\xdb\xcb\x8c\xe7\x98\x44\x1e\x42\xb0\x55\xb1\x0f\x61\x00\x5f\x81\xe1\x12\x26\xec\x6c\x16\x60\xd5\xbc\x2b\x13\x50\x40\xce\x67\x03\xda\x2c\x5f\xfb\x84\x6d\x4a\xd6\xbe\x2c\x33\xb9\x4c\xd8\x21\x46\xc0\x4c\x46\x90\xc9\x19\xeb\xa3\x01\xea\xa7\x15\x46\xa0\x9b\xd1\x5e\x33\x9b\x92\xcb\x4d\x3f\x35\x9b\x6f\x63\x08\x51\xdf\xfb\x14\xb6\xbc\x8e\xb1\xd3\x79\xa8\xe4\xb8\xa8\x13\xf0\x4a\x1e\xb8\x37\xeb\xa4\x71\xf8\x69\xdf\xb1\x19\x93\xe8\x26\x68\x24\x3a\x25\xe4\xfe\xa7\xe8\xf1\xa7\x7d\xdd\xa3\xc1\x18\xf7\xd1\xa3\x07\x62\x73\x9d\xc0\x03\x19\x31\x48\xa9\xdc\x81\xcf\x43\x04\x20\x5b\xac\xa9\x81\xe7\xd4\xb9\x14\x68\x14\x81\xe9\xb8\x08\xe1\x73\x3a\x52\xce\x8c\xea\x04\xc9\x0c\xde\x3b\xf9\x99\xc7\xb1\xa1\x79\xcd\x12\x42\x65\x20\x11\x35\x0b\x08\x82\xde\xcf\x66\x3e\xda\xbc\xf0\x74\xf6\xf3\x0b\xf0\x9f\xee\x98\xf8\xfc\x9f\x5c\x69\x42\x82\x8f\xc2\x92\x9e\xd2\x84\x6d\xb3\xdd\x07\x72\x16\x0d\xe5\x1c\xd6\x02\x0f\x95\xd4\xfc\xaa\x88\x5f\x77\xe2\x34\xbf\x71\x56\x53\xb2\x82\xd1\xa3\xd1\x34\xe8\x7b\x52\xd6\xee\x25\x8b\x7c\x33\x51\x74\xed\x06\x87\x56\x92\xa0\x65\xbd\x96\x04\x8d\xf2\xd5\x84\x44\x69\x51\x0a\x2a\x18\xcc\xa7\xff\x45\x9d\x1d\x8d\x8e\xf0\xa3\x5c\xcf\x49\x7f\x3c\x26\x91\xf7\x61\x3b\x40\x63\x29\x01\xfe\x91\x97\x13\xbf\x0a\xfe\xd8\xb8\x1f\x04\x2f\x4b\x95\xe0\xcf\x1f\x52\xcd\x9c\x9a\x45\x42\xd9\xbc\x6e\xba\xa9\x94\x6e\xfe\x14\xa6\xbb\xdf\x47\xfb\xbd\xdf\xc0\xfb\x4e\x9a\xd6\x76\xe6\x3c\x12\xb3\xf9\x73\xd2\xd4\x49\xac\x39\x68\xd4\x22\x34\x5f\x18\x1e\x3d\x41\x37\x9d\xda\x66\xf3\xc6\xd8\xb5\xf2\x87\xe2\x96\xa5\x95\x84\x56\xb3\x8b\x93\xf5\x07\x1d\xe8\xe0\x04\x7a\x97\x13\x9d\x59\xf1\xae\x3c\x57\xc2\x38\x87\xe3\x1e\x3a\x7b\x99\x7e\xc1\x0d\xf7\x22\xb5\xf0\x46\xa7\x1e\xcf\xcc\xa3\xe1\x05\x52\xc7\x95\x83\x47\xc3\x73\x8e\x7d\x15\x90\x6d\xac\xb7\x75\x6f\xd5\x2a\x92\x0b\x74\x40\x3b\x45\x72\x6f\x34\xc9\x1f\x7d\xf6\x70\x92\xf7\xfb\xfa\x71\x6d\x3a\x7c\x4f\xe9\x3b\x08\xd7\x0d\x0a\xd1\x52\xff\x75\x50\x87\x15\x29\x7d\xc6\xa7\x8f\x58\xa8\x16\x5d\xf0\x9e\x2f\x25\x01\x51\x2c\x25\x30\x3a\x20\x99\xd0\xcb\x44\x18\x13\xdf\x43\x88\xa4\x6d\x3a\x2d\x22\x43\x7a\xfa\x7d\x0f\xc1\xda\xc5\x50\xd6\x74\x2a\xdf\x58\x34\xa1\xef\x6b\x08\xdb\x2f\x8f\xc5\xba\x0c\xe4\x08\xc2\xcb\x70\xe9\xe2\xd8\x08\x5b\x9e\x36\x86\xd9\xc5\x13\x08\x7e\x1e\xf4\x7a\xa9\x2d\xac\xda\x50\x66\x81\x08\x4a\x52\x39\x50\x0b\x04\xd5\x21\xb9\x80\x2b\x92\xf4\x04\xa1\xf7\x18\xa4\x89\x4d\x60\x29\xd4\xd8\xef\x45\x21\x93\x68\xac\xb6\x8c\x37\xf0\xb2\x09\x51\x41\x98\x41\x61\x32\xea\x72\x8a\x90\xd4\xf0\x45\xf9\xa1\x00\xf3\x99\xa5\x09\x1c\x39\x2c\x02\x68\x62\xc8\xfe\x4e\xb2\xde\xd0\xdf\x71\xa6\x5b\x8e\xee\xb7\x62\x53\x50\xac\xda\xdf\x7d\xda\xf7\x05\x1b\x86\xc7\xa0\xd4\xa4\x9d\xd4\xd0\x4b\x16\x55\xad\x56\x45\xb7\x96\xd9\x8e\xee\x85\x4e\xcd\xb1\x13\xe1\x08\x5f\x49\x93\xb2\xb5\x83\xab\xcf\xea\x38\x7f\xaf\xf8\xd2\x38\xc0\xe0\xab\x66\x87\xe2\x85\xd4\x49\x9a\xe4\xb0\x64\xff\xe5\xfb\x1a\x90\x87\xed\x8a\x1c\xae\x83\x1f\x8f\xc7\x4d\x36\x0a\x89\xc8\x1e\x3f\x3c\xa0\x27\x35\x22\xe0\x9a\xe6\xad\x8d\xcd\x3c\x1a\x3f\xd4\x40\xf9\x47\x4b\xb1\xc7\xe3\x31\x9e\x60\x55\xee\xde\x67\x9e\xe7\x8d\xe0\x82\xca\x78\x35\x24\x18\x40\x8a\x61\x3e\x0f\xd3\x0d\xc7\x48\xd3\x06\x87\x59\x3b\x62\x25\xe0\xbf\xa2\xf9\x88\x95\x58\xbc\xbf\xec\xe2\x14\x7d\xf3\x0d\x72\xd1\x6a\x85\x0c\xda\x4a\x0c\x77\x18\x13\x5a\xa7\xa6\x26\x95\xb6\x30\xfa\x6c\xd6\x69\x1f\xa6\x09\x69\x2f\x7a\x06\x55\x18\x42\xc1\xb8\x76\xa9\xa0\xfc\x9b\x4f\x3f\x77\x9b\x33\x88\xc1\xcc\xeb\x71\x25\x80\x3a\x12\xe9\x28\x24\x19\x0a\xe4\x1c\x7c\xcf\xf9\xec\x7e\x8a\xe5\x14\x46\xf5\x29\xe4\x3c\xfc\xe8\xd2\x17\x83\xa4\x27\x51\xc0\x6e\x9a\xc6\xf5\xd1\x69\x44\xeb\x75\x7d\xc6\x52\xa8\x79\xe2\x8c\x49\x73\xf0\xbb\xcc\x98\x34\xc2\x3d\x63\xc6\xd6\x4d\xeb\xb8\x75\xec\xd7\x62\xec\x45\x33\x0e\xbe\xf7\x70\xf4\x81\x6b\x47\xf4\x55\x0f\xbc\x00\xdc\x34\xf0\xf9\xf1\x81\xcf\xf3\xfa\xc0\x7f\x0e\x35\x4f\x1c\xf8\xcb\x68\xdd\x20\x18\x4b\x59\x56\x05\x84\x56\x63\xda\x36\x07\x1d\x2e\x48\xce\x1a\xde\x36\x68\x47\x29\xb6\x95\xfe\x11\x68\x33\x73\xd0\x4c\xb3\xf8\x39\x68\x48\xda\xcf\x41\xf5\x48\x2b\x4d\xa5\x56\xc2\xed\xd0\x63\x6f\xfc\x70\x3a\x18\x3f\x74\xc7\x0f\x85\xab\x1d\x6a\x4a\xa9\x4d\x15\xd5\xa0\x3f\x41\x75\x91\x54\x70\xbb\xaa\xd1\x9b\x9e\x37\x97\x36\x4a\x8b\x7c\xca\xe4\x85\x36\x6a\x1a\x3f\x0f\x70\x9d\x23\x7c\x22\x6a\xed\xfc\xf4\x68\x4b\x92\xf1\x9d\xde\x16\x2c\xfa\xa3\x60\xe5\xea\x3c\x03\x2c\x27\x69\x35\xbc\x7a\x6b\x77\xcc\x14\xc9\xde\xad\x34\xc9\x40\x9c\x2a\x8d\x87\xe9\x13\x41\x47\xc6\xc5\x43\xa2\x7d\x7a\xb4\x21\x03\x87\x37\x87\x2a\x2f\xd6\x97\xe0\x81\x03\x83\x9d\x8c\x71\xea\x51\x31\x04\xc6\x13\x61\x5d\xe9\x24\x5e\xb2\xdf\x37\xd4\x13\x7e\x3c\xe4\xd5\x26\xc6\xb7\x81\x9f\x53\xf1\x24\xdd\xe5\x88\x44\x5e\x36\xac\x38\x66\x11\x8f\x03\x2a\x4e\xb4\xe7\xc3\x17\x4f\xfe\xf9\xf6\xeb\xef\x5f\x3c\xbd\x7c\xfe\xf2\x45\x95\x63\x71\xa2\x3f\x07\xce\xeb\xcb\x67\xaf\x48\x64\x8e\xa1\x94\x6a\x4b\xb8\xd2\x65\x51\x84\x27\x8b\x8c\xfa\xef\x26\x80\xb7\x76\x25\x00\xb8\xfb\x1f\x05\x77\x7d\x74\x3b\xbb\x03\xfe\x29\x1d\xf0\xed\x0e\x98\x5e\x08\xe4\xb6\xac\xdd\x8b\x8f\xad\xa2\xe6\x25\x34\x74\x37\xf7\xf8\xf4\x32\x39\xaf\x60\x0f\x9d\xb3\xe6\x0b\x5c\x71\x60\x71\x8c\xf2\xb5\x4d\x46\xdc\xac\xe5\xb8\xd9\x65\xba\x94\x25\x6a\x2e\xd1\xa7\x72\x11\x69\xf7\x5e\xa9\xad\xbf\x6d\x56\x0c\xcb\xc6\x1a\x31\xc0\xad\xb7\x92\xcf\xa1\x0f\x35\x65\xa5\x8a\x24\x04\xa9\xc2\x67\x34\x76\x9d\xca\x50\x0e\xc6\xf5\xb9\x69\x98\x1c\xb8\xa9\xaf\x8d\x39\xe8\xf1\x5d\x71\x1c\x2c\x03\x63\x1a\x63\x0f\xdc\x04\x93\xf1\x08\xef\xf7\xa3\xea\xc0\x42\x9f\x83\x5f\x64\x5c\x7f\xcd\x91\xe3\x07\xe0\xa6\xc1\x93\x6a\x36\x18\xbe\xb8\x79\xf8\x04\x4b\xd2\xfa\x36\x74\x70\x24\xe3\xff\xbb\x23\xe9\xef\xc4\x30\x6e\x5b\xa4\xca\x89\x39\xa8\xb0\x3f\x80\x46\xa4\xd7\xdb\xd6\xf4\x51\xb5\x92\xa0\x10\xe1\x25\x0d\x93\x15\xde\xd6\xc6\xdb\x8a\x13\xf6\x11\xc2\xc7\x64\xe9\x55\xe3\xd7\xd8\x0a\x95\x29\x28\x45\x9c\xe5\x61\x8d\xca\xa6\x59\xa3\x82\xa7\x95\x59\x04\x47\x68\x4b\xe5\x44\x52\x27\x6f\x8e\x4c\x5c\x7f\x7c\x76\x95\x9a\x99\x74\xf5\xb2\x46\xf9\x75\xaf\xa6\x5b\x44\xd1\x32\x28\x16\xc9\x98\x53\x5e\xf1\x3d\x01\xf3\x1e\x7a\x69\x55\x11\xb8\xaa\xe9\x75\x42\x22\x5e\xe4\x55\x7a\x19\x1e\xeb\x65\x63\xe3\xea\x15\x39\x34\xbf\xaa\x34\xdf\x72\x88\x84\x43\x8a\x8d\xd3\x8a\x88\x57\x80\x15\x9c\x56\x77\xc2\x49\xbd\xd6\x05\x9c\x16\xf5\x21\xc9\x6b\xcd\x2f\x88\x78\xa4\x51\x69\x7e\x71\x4e\xf3\x15\x17\x14\xd0\xf8\xda\x68\xdc\x5c\x60\xf5\x49\x59\x37\x4f\xca\xfa\x4e\x18\x58\x93\x72\xd1\x84\xc3\xe9\x33\x73\xd1\x3c\x33\x17\x77\x42\xcc\x9a\x99\xab\x96\xc1\xa9\x4f\xcf\x55\xf3\xf4\x5c\x9d\x83\x83\xf5\xd2\xb9\xba\xc2\x6d\x12\x49\x5b\x0f\x5d\xe7\xb7\x27\x9e\x4e\x41\x7f\x77\xa6\x34\x46\xae\xbd\x5d\x29\x91\xf9\x08\x93\x27\x66\xc2\x36\x46\x98\xbc\xf5\x9e\xa8\xf3\xa6\x78\xd1\x41\xde\x97\x29\xea\x79\x84\x9b\xa4\xcc\x81\x7c\x8c\x30\xf9\xc9\xdb\x01\xb7\x16\x42\xdd\x74\xe7\xee\x6c\x33\xbd\x97\xc6\x7d\xcf\xdb\x5e\xef\xad\x32\x28\xbe\x8d\x96\x8e\xf3\xd2\x7b\x2b\x77\x5a\xfd\x40\x03\xe3\x5e\xef\xe5\x90\x65\x7e\xa2\x9f\x1d\x94\xb1\xc8\xde\x96\x0f\xb2\x9c\xf2\xb7\x83\x38\xaf\xe2\xc8\x1a\x49\x02\x7f\xec\x3a\x6f\xed\x33\xa7\xea\x97\xf9\x56\x5c\x14\x25\x3f\xc9\x37\xe6\x07\x1e\xc3\x46\x6b\xda\x47\x1d\xd4\x6f\xca\x04\x0d\x3d\xf9\xa9\x74\xbf\xd6\x5a\x68\x7a\x7d\x8e\xa1\x11\xbc\x63\x3d\xa7\x06\xdf\x12\x70\x61\xee\xd5\xab\xf4\xbd\xa2\x8b\xc3\xaa\x85\xc7\x9d\x30\xba\x16\x13\x5c\x7b\x1e\x8f\x11\xb6\xe2\x9f\xb4\x02\xa9\x57\x45\x58\x46\x4b\x99\x54\xb0\x92\x9c\xeb\x0e\xf0\xce\xc6\x44\x3d\xa2\x6f\x46\x44\x33\xb0\x5f\x02\x95\xf2\xd1\x7d\x33\x32\x9a\x69\xfd\x12\xc8\x94\x8f\xf4\x1b\x90\x29\x95\xd9\xc0\x50\x2e\x8f\x9d\x35\x1a\xb4\x59\x36\x6f\x1b\x3f\xec\x7a\xde\x65\xaf\xe7\x5c\xf6\xbd\xf1\x43\xec\x8e\x1f\x7a\xf2\xdb\x1b\x69\xb1\xa6\x81\x4b\x0a\x18\x97\xa7\x0a\xc1\xc6\x5b\x48\x1f\x69\xe9\xc8\xf6\x00\x70\x9e\xcc\x24\x85\x3d\xa5\x2f\x71\x28\x31\x97\x95\x94\xe0\xea\x32\x93\xa5\x4b\x6e\xdf\x04\x24\x45\x1c\x97\x68\x3f\x52\xf7\xf3\x5f\xb4\xfb\x52\xa3\xdb\xde\x7d\x49\x83\x3f\x6f\xf7\x7f\xd6\x8e\x8a\xa7\xf2\xd2\xc5\x65\x0c\x07\x36\x3b\x3b\xcd\xd5\xfc\xd7\x2b\x8b\x8b\x4b\x58\x61\x37\xb5\xf8\xe8\x15\xc9\xe4\x46\x5e\x7f\x55\xc6\xf2\xe6\xd8\xd0\x14\x4a\x19\x67\x2b\x00\x57\x56\xc4\x42\xa5\xdf\xee\x8e\x9b\x82\x5f\xd9\xec\xa4\xdc\xb1\xab\x26\xd3\xca\x6e\xd9\xf2\x85\x6b\xec\xf0\xca\xf3\x6c\xb2\xdf\x77\x13\x7b\xab\x07\xed\x77\x77\x44\xba\x63\x5c\x60\x4c\xe8\x7e\x2f\x9a\x36\x5e\x06\xda\xdf\x86\xb3\x53\xf0\xaa\x53\xcb\x37\xb7\xf4\x8a\x91\xb9\x7a\xc9\x26\x39\xa6\x7e\x42\x96\x2e\x97\x0e\xca\x68\x1e\xfd\xa4\x77\x5a\x78\xca\xa4\x09\x4c\xbd\x40\xe3\xe5\x82\x38\x0a\xde\x21\x82\x4c\xa5\xfc\x1c\x35\x14\x5c\xa7\xdb\x9c\x86\xe9\xfb\x04\xf1\xde\x59\xf9\x42\x40\xb1\xb9\x76\xe9\x85\x3f\x49\x59\xb4\xdc\x81\xf7\x68\xe7\x96\x4f\x9a\x9b\x0d\xe1\x6b\xf8\xcd\xf3\xaf\x9e\x11\x2e\x51\xb8\x2d\x93\x5f\xea\xfc\x0b\x4c\x1a\xc3\x5a\x97\xbf\x87\x8b\x78\x9b\x59\xda\x41\xc3\x71\xfb\x01\xc8\x55\x93\xf6\x7c\xd5\xf4\x22\x49\x5f\x94\xdc\xee\xa8\x9f\x59\x4e\xa9\x75\x00\x3e\xa1\x6c\x1b\x61\x71\xb8\x1f\x2b\xa6\x3f\x2a\xf9\xc3\xa8\xe4\x94\x23\x5c\x10\xa8\xd0\x0c\xeb\x54\x10\xa1\xbf\x6b\x06\x70\xac\x22\xcf\x6f\xae\xd9\x86\x2c\xfc\x3e\x56\xa5\x28\xb8\xa0\xdc\x30\x55\xa5\x9f\x5f\x31\x5b\x9b\x2c\xdd\x98\x57\x25\xfb\x7d\xc5\x3f\x4b\x74\x95\xa4\x19\xfd\x8e\xfa\x61\x9a\xc4\x3b\x6b\xa6\x45\xdd\x4c\x66\x69\x0e\x29\x1f\x8f\x0a\xac\x26\x0d\x38\x88\xa0\xe7\xbd\x5e\x53\xaa\x0c\x85\x6e\xf9\x0b\xae\x46\x58\xa8\xb8\xff\x6f\x01\x81\xc9\x48\xb2\x59\x69\x33\x62\xf7\xcb\x0c\x46\xa1\xae\xca\x2c\x8b\x90\x5a\x90\xe8\x83\xf5\x93\x59\x5b\xf6\xdc\xa1\x75\x89\x84\x92\x11\x96\x06\x30\xbf\x69\x14\x4d\xfe\x5d\xae\xe1\xd2\x69\x86\xa9\xf5\xe3\x52\x9f\x79\x7d\x64\x59\x9c\x1c\xb6\x0e\x39\x51\xe0\x34\x24\xde\x93\x8a\x97\x32\xa9\x59\xbc\x8c\xa8\xc2\x6c\x2d\xa6\xc5\xbc\x93\x92\x77\xdf\x0a\x70\x40\x4c\x85\xc9\xc9\x2b\xec\x39\x69\x63\xe3\x04\xd6\xca\xcd\xce\xb1\x85\x02\xa8\x5d\xdd\x0c\x92\x66\x16\xff\xb3\xec\x5c\x6a\x3f\xb2\x30\x10\xe2\xfb\x01\x36\xaf\x09\xc8\x88\x92\xa8\x4c\x70\xc4\x32\xe4\x07\x79\x17\x72\x35\x3e\x22\x03\xd2\xf4\xc0\xb7\xef\x48\xaf\xbf\x79\xf9\xaf\xea\x33\xd5\x90\xe6\x2c\x4b\x77\xb5\xd8\x85\xd6\xd4\xaa\xe7\xb0\x62\x2b\xfc\xaa\xe2\x6c\xbf\xbd\x10\xbc\x43\x46\xd5\x16\x05\x57\x3c\xd8\xe2\xdd\xe7\xa5\xd1\xac\xf1\xd8\xe6\x5a\x61\xd7\xa4\x3b\xaa\xe0\x2c\xc2\xf6\xd4\x50\xbe\x3b\x9a\x6d\x26\xa7\x67\x63\x3a\xae\x60\x5a\xf5\x5d\x71\xf7\x68\x27\x55\x48\x67\x45\xe9\xab\x56\x3e\x35\x18\xf4\xf1\x10\xd0\x0d\x90\x0f\x85\x82\x3e\x2d\x00\x74\x6d\xd4\x4e\x8f\xb8\x6d\x0e\x7e\xcd\x27\xc7\x59\xa3\xdf\x1a\x05\xab\x06\x56\x04\xde\x9d\x89\xc0\x10\x32\x4a\xf1\x9c\x4f\xca\x6d\x31\x64\xe9\x6b\x18\x5e\x11\x00\xa2\x6d\x14\x6b\x20\xed\x48\x56\x12\xf2\xb5\x9f\x45\xc2\x30\x49\x44\x40\x2e\x3d\x8c\x88\x38\x11\x75\x6a\x30\x8b\x9c\xdc\x70\x59\x47\xb7\xa8\x67\x52\x51\x4b\x1d\x05\xcf\xfc\x18\xb2\xf4\xdb\xf4\x3d\xcd\x9e\xfa\x39\x9f\x22\xa0\x25\xbf\xa4\x25\x13\xad\xf3\x07\xc4\xc0\xaf\x1a\x24\xba\x24\x34\xdf\x26\xb4\x1a\x89\x1d\xf2\xd7\x62\x75\xa5\x80\x7e\x2a\xa7\x2f\xad\x03\xad\x0b\x9c\xdc\x1d\x55\xe3\xf8\x20\xab\x92\x5e\xf9\xb3\x69\x80\x23\x63\x80\x35\x3a\xe7\x0f\xaf\xc6\xab\x7d\x70\xa3\xb3\x07\xb7\xa1\x0b\xb5\xb8\x61\x0d\x4b\x17\x3c\x75\xdc\x9d\x67\x9a\x50\x4c\x7e\xe9\x99\x51\xbf\xb8\xd0\x09\xa2\xa1\x0c\xa8\x42\x7b\xbd\xe6\xe8\x60\x76\x34\xb0\xb6\x48\xe6\x66\x9b\x4d\x6c\x16\x62\xae\x88\x10\x41\x6a\x5d\xb7\x07\x92\xb2\x86\xe1\x1c\x26\xf8\x56\xb4\xf0\x8d\x9f\x84\x31\xbd\x5c\x45\x86\x35\x64\x42\x52\x12\x89\xa3\xa6\x0f\x91\x7b\x6a\xe1\x7a\x60\xa8\x64\x98\x1b\xcf\xf3\x1c\xb4\x4d\x42\xba\x8c\x12\x1a\x1a\x23\x97\x4e\x8d\x64\x97\x3a\xa9\x7c\xc7\xa6\x99\x66\x36\x94\x31\x97\x48\x8a\x89\xbf\xdf\x3b\xbe\xc7\x87\x2a\x70\x78\x9b\x3c\xad\xa9\x6d\xe2\xe3\x26\x91\x3f\x85\x89\x17\xbb\x31\x9f\xfd\x59\x3a\xaf\x79\x59\xf9\xf4\x45\xda\x59\x53\xb6\x4a\xc3\x4e\xe2\xaf\x69\xd8\x41\x9f\xf6\xd3\xfe\xa7\xe8\x53\xed\x5c\x4e\xd7\x8f\xa6\x1c\x82\x83\x5d\xf8\x13\x09\x2b\x70\x39\x64\x10\x1d\x74\x69\x3b\x8e\x22\x4c\x9f\x3f\xb5\x59\xae\x3c\xbb\x35\x0c\x35\x4c\xcc\x6c\x34\x87\x48\x3f\xe2\x70\x56\x53\xfa\xb4\x55\x83\x3a\xe2\xe5\x7b\xe1\x64\x78\xc2\x9c\x30\x0d\xb6\xd2\x77\x53\xe2\x28\xd1\xf1\xe9\xb7\xcf\x9f\xfe\xe3\xad\x8a\xdb\x45\xb2\xa1\x0a\x84\x25\x06\xf2\xf2\xe5\xdf\xff\xfe\xed\x33\x52\xd5\x32\x51\x8f\x0f\xbe\x90\xc7\x27\x5c\xaa\x51\x5e\x17\x7b\xbd\xb8\xd6\x7d\xb9\x61\x11\x79\x55\x26\xfc\xdd\x98\x28\x7c\xf3\xe4\xc5\xdf\x9f\x11\x34\x44\xfd\x6c\xa8\xe3\x63\x0d\x9f\xbf\x78\xf5\xfd\x25\x71\xea\x4e\xb7\x2a\x4d\x27\x47\x9b\x4e\x08\x7a\x1b\xac\xfc\xe4\x8a\x22\x42\xab\xad\xff\xed\xdb\xef\xbf\xbb\x4b\xdb\xe0\xb4\xab\x46\xef\x36\x42\x4e\x6a\x3c\x21\xa2\x8b\xed\xd5\x7e\x2f\x0e\x4c\xea\xeb\x00\xc6\x70\xb9\x46\x28\xae\xe2\xfb\x8f\x67\x3f\x7e\xf5\xf2\x5f\x2f\x7e\xe6\xe1\x7a\x47\x77\xe2\x44\x55\x1b\xaf\x7f\x3c\xfb\xf1\xfb\x57\x3f\x7f\xeb\xdb\x4d\x43\xdb\x5f\xbf\x7c\xfa\xfd\xeb\x9f\x6b\xb2\xd2\x8a\x65\x86\x11\x02\xfc\x20\xb6\x70\x8f\x29\x70\x25\x66\x38\x36\xaf\x5e\xc7\xca\x1f\x3e\x2d\x43\x5d\x79\xb1\x9d\x95\xa4\x4f\xd3\x64\x19\x47\x81\x15\x72\x4a\xcb\x93\x46\x23\x29\xa9\x37\x53\xa8\xc8\x71\xb8\xe0\xbb\xa1\xc9\x7d\x48\x82\x6f\x0b\xc2\xff\xb3\x79\x52\xb7\x3a\x7a\xcc\xbb\x95\xf7\x9b\xee\x2d\xef\xa1\xdb\x1d\x93\x20\x17\x67\x1f\x17\x2d\xe3\x94\x5d\x46\x1b\x44\x82\x34\x61\x34\x61\x2e\xba\x97\x77\xf6\x9d\x1f\xdc\xce\xbd\x9b\xce\xbe\xf3\xa3\xdb\xb9\xb7\x43\x04\x5e\xa1\x0a\xc3\x1e\x88\xf2\x46\x76\xd5\x04\x50\x25\xf2\x49\xcc\xc5\x77\xe8\xef\x8c\xaf\x7c\x15\x2d\x59\xee\xde\xde\xb8\xe3\x11\xd9\xb9\x0f\x47\x05\x91\xee\x0d\x2f\x57\x74\x0d\xf1\xbf\xf2\xc4\xdf\xf0\xbf\x71\x94\xd0\x1c\x70\x8c\xa3\xe0\xdd\x65\xb4\x81\x8f\x34\xf9\x26\xbd\xa6\xa6\xc2\x90\xf7\xb5\x20\x9f\xf0\xf3\x9a\xcf\xdc\xee\xb8\x28\x26\x4c\x5d\xe4\xbe\xdc\xb0\xdc\xd3\x5f\x13\x41\x43\xe6\xb8\x00\x03\x66\xd1\x46\x89\x23\xde\xed\x8d\xcb\x11\x1b\x49\xb9\x1e\xe2\xaf\x51\x5c\x4c\x12\x43\xfe\xb0\xe3\x86\x69\xef\x22\x4c\xf8\x07\xa4\xc3\x4d\x9c\xb2\xe1\x26\xde\x5e\x45\x89\x8e\xd8\xaa\x74\x8e\x3c\xef\x95\xc8\xf2\x66\x73\x92\xe9\x58\xaf\xa9\x37\x9a\xa4\x8f\xb2\x49\xda\xef\xe3\x6a\x49\xe9\x7f\xdb\x02\x3c\x4b\xe7\x43\xbe\x95\xe1\x89\x0e\x84\x17\x95\xeb\xe4\x96\x63\x7c\xc3\x71\xf1\xaf\xe8\x0f\x24\x19\xee\xe4\xef\x1f\x09\x44\x4b\xbb\x14\x23\xa2\xba\xed\x24\xb8\xd0\x60\x7c\x27\x13\x52\x40\x32\x84\xa1\x5f\x83\xff\x68\xea\xb0\x21\x17\x37\xf8\xb1\x6b\x95\xc6\x21\x05\x5b\xcf\x05\x68\x9c\x38\x5e\x2b\x3e\x2d\x88\xe4\x7c\xc5\x70\x46\x27\x5b\x70\x30\x31\xc0\x78\xdd\x31\x76\x9d\x5c\x36\x40\x12\x0e\xf1\xab\x74\xfd\x2c\x96\xc7\x43\xa1\x37\xb9\x8e\xf2\x08\x4e\x32\x5c\xfe\x6a\x6c\x76\x9b\x34\x35\x6c\x35\x34\xc2\x46\x97\x54\x8b\x52\xb0\xb1\x97\x0f\xc9\xf4\x3a\x04\xc7\x2f\xf9\x7f\x32\xe6\x38\xc9\x80\xe2\xfb\xf0\x6f\xdf\xc9\x06\x0c\xdf\x87\x7f\x31\x68\x95\x23\xcc\xa4\x0b\x72\xd1\xc7\x88\x24\x06\xc5\x09\xbb\x9c\xc4\xdf\x4c\x23\x37\x35\xdd\x20\x72\x6c\x75\x3e\xcd\x22\x9a\x0f\x81\xc8\x01\x56\xaf\x07\xae\xc2\x6a\x80\xa0\x84\x40\x3c\xf7\x6c\x18\x57\x59\x14\x0e\x41\x55\xf6\x04\x94\x5a\xdf\xf9\x61\xb4\xcd\x49\xe0\xdd\x86\x91\x10\x45\xdd\xbc\x3f\x2e\x48\xec\xa5\x13\x2a\xc4\x0c\x18\xcc\xaf\x44\x84\x45\x83\xbd\xf2\x21\x50\x84\x18\x79\x23\x92\x7b\x83\x31\xd9\x7a\xe3\xc9\xf6\x51\x26\x9c\x60\x4a\x32\xde\xf6\xfb\x58\xa4\xcc\xb6\x83\xf1\x7c\x36\x9a\x3f\xf2\xd2\xe1\x4d\xaf\xa7\x12\x79\xd2\x63\x91\xe4\x44\xde\x76\x30\x26\xb9\xb7\x95\x3a\x83\xae\xe7\xc9\x9e\x6c\xf8\x3a\x93\x55\x22\x5e\x85\xec\x8c\xcf\xf1\xbc\x20\x4b\xa3\x44\x6e\x97\xc8\x45\x89\xb0\x36\x8d\x7c\x8a\x49\x2e\x62\x3d\xe6\xfb\xbd\x93\x37\x96\x10\xa7\xb4\x52\x3c\x2d\xe5\xf8\x44\x1e\x14\x6e\x6f\xdc\x84\xec\x5c\x06\x73\xdd\x58\x32\x2b\x4b\x52\x8e\x58\x01\xac\xc5\x87\x71\x7b\xe0\x38\xd1\x20\xc3\x0f\x9c\x74\x90\x68\xdf\xc5\xb7\x37\xae\xef\x39\xe9\x7d\x87\xde\xcf\x07\xac\x9f\xe1\x7e\xc2\x7f\x0f\xf2\x3e\x1b\x44\x18\x3f\x70\xf2\xfb\x50\xbe\x9f\x0d\x22\x4c\x76\x6e\x7e\xdf\x1f\xe4\xf7\x69\x9f\x15\x85\x85\x3b\x1e\xde\x3c\x16\xfe\x8b\xd6\x11\x48\xeb\xb8\xd7\xcb\x87\x37\x8f\x64\x9a\x7f\xa3\xd3\x76\x46\xb9\x8c\x44\x22\xcd\x28\xc7\xd3\xd4\x33\xd8\x6c\x10\x71\x22\x19\x24\x64\xeb\x25\xf7\xa3\x41\x76\x3f\x9d\x98\x2b\xc2\x5f\xe4\x4e\x70\x9f\xf6\xe3\xfb\xac\xbf\xc5\x0f\xca\x55\x12\xdc\x0f\xfa\xf1\xfd\x18\x17\x62\x52\x7d\xbd\xa0\xc8\x52\x7e\x70\xa4\x15\xac\xcd\xe3\xe5\x74\xe9\x6e\x0a\x27\x1b\xde\xf8\x37\x9c\xc5\x3d\x0c\x9c\x74\x78\x03\x6e\x24\x8c\x84\x1d\x4f\x28\x4b\x6c\xaa\x25\x36\xd5\x12\xcb\x6a\x89\x25\x2f\xd1\x1d\x03\xdd\x85\x8f\x82\xa1\x5a\x0f\xa2\xc3\x2b\xcf\xe7\x40\xc9\x66\xb8\x23\xe9\xf0\x86\xf0\x16\x1f\xf9\x8e\xfc\x49\x96\xc3\x1b\xc2\x01\x4c\x23\x37\x27\x0b\xcf\x11\x64\xb7\x49\x23\x7e\xa2\x14\x7f\xa2\x9f\x28\x99\xa5\x02\x44\x9f\xb7\x36\xe0\x38\xdd\x77\x38\x8c\x01\xc7\xf7\x01\xc7\x09\x7e\xe1\x39\x9e\x98\x2b\x32\x24\x11\xa3\x6b\xf7\x56\xc3\x74\x17\x84\xff\x86\xeb\x65\x77\x45\x04\x63\x70\x33\xf9\x43\x24\xd3\xa2\x68\x66\x31\xbd\x9e\x13\x7b\xb7\xc0\xe4\x5d\x73\x44\x16\xe0\x7e\x05\x18\xbe\x6b\x0e\xcc\x62\x36\x9e\xe3\x02\x17\xf2\xe2\xc5\xe6\xd4\x5c\xdc\x29\xc7\xea\x51\xde\x1f\x4f\x6d\x3e\x17\x0c\x39\xee\x24\xc6\x6e\xb5\x66\x23\x38\x36\x5c\xa5\xe9\xbb\x1c\x36\x09\x90\xf6\xe4\x46\x56\x32\x1e\xc6\x19\x4f\x95\x37\x7a\xc0\xa4\xe4\x87\x03\xbe\x7f\x45\x6c\xea\xf2\xc8\x67\xf3\x41\x39\x2e\xbd\x9e\xd3\x98\xce\x85\x00\x71\x99\xda\x98\x4d\x1a\x53\x9b\xcb\x72\x50\x24\xa4\x31\x65\xb4\x19\x07\x5e\x80\x53\x1e\x88\xa1\x0d\xf9\x92\xd5\x37\xb3\x9f\xd6\x0a\x7c\x2b\xb6\x27\xbf\xb5\x2b\x15\x1a\x91\x62\xd1\xd4\x49\x86\xef\xf9\xa8\x7b\x08\xdc\xba\x22\x92\x0c\x57\xe2\x5b\xb8\x9f\x45\xd8\x2d\x8b\x44\x49\x22\x3d\x69\x1a\xe5\x20\xf1\x1b\x59\x78\x52\xdb\xb9\x27\xa7\xcb\x07\x35\x24\xb5\x80\xd7\xeb\x1d\x83\x22\x6f\x97\xfc\xaa\x54\x41\xa8\x93\xa9\x72\xb0\x23\xae\xd3\x6b\x8a\x08\x3f\xbd\x83\x0c\x2f\x08\x31\x5f\x6d\x19\x3f\x03\xd5\xc9\x30\xc1\xb7\xe7\x48\x1a\xc7\xcb\x96\x88\xaa\x0b\x84\x52\x20\xa2\x4e\x52\x16\xb6\xb1\x05\x64\xeb\xf2\x59\x4d\xda\xcc\xbc\xda\x0c\x90\xd4\xcb\x2c\x27\xa8\xfd\x3a\xc7\x00\xe9\x7b\x78\x43\x22\x55\xf4\x9b\xd2\xf9\x70\x73\xd9\xdd\x84\x0d\x6f\x06\xb4\xe2\xc3\xf8\x5b\xba\x64\x0e\x7e\xac\x93\x67\x92\x76\xe6\x0e\x1e\xa4\xbd\x9e\xc3\xeb\x78\x29\x61\xc3\x9b\x72\xc3\x61\xc3\x1b\x02\x96\x47\xc3\x5d\x0d\x1e\xf8\x44\xb6\xc0\xad\x14\xb8\x08\xc0\xed\x06\x5e\x84\x49\x94\xbf\xf0\x5f\x70\x40\x78\x9a\x98\x52\xfb\xf0\xc6\xab\x7c\xbf\xca\xe8\x35\xa7\x68\xbb\x10\x47\xa1\xa1\x20\x4f\x2f\x81\xef\xaa\xc0\x77\x15\xe0\xbb\x26\xe0\x3b\x8f\x0d\x77\xa4\xa1\x20\x4f\xc7\x05\xb1\x18\xa9\x29\x97\x64\x24\x15\x53\x1a\x35\x4c\xa9\xef\x25\x43\xa1\xef\x12\x47\x2c\xa7\xbe\x76\xc4\x69\x8d\x50\x3c\x41\x9c\x97\xf8\x5c\xee\x12\xfe\x69\xfc\x66\x5a\x72\xb8\x78\x63\x0f\x02\xd9\x55\x52\x76\x05\x26\xc2\x43\xf2\x2d\xb8\xef\xad\x94\x3f\x40\x59\x2c\xdd\x54\x61\xb5\xd3\x56\xa1\x4c\x25\x49\x19\xc6\xda\x64\xf2\x95\x6a\xf2\xec\xd7\xeb\xb5\xe5\x38\x94\x0b\x35\x85\x7d\x02\x31\x8f\xdb\xf5\x03\x87\x50\x91\xca\x60\x74\x08\xea\x5a\xcb\xf5\x70\x6d\x65\x6f\x04\xdb\x73\x79\x40\xb4\x8a\x55\x4d\x78\x98\x47\x75\x4c\x06\x2b\xb2\x85\xdd\x27\x79\x95\x58\x9d\x6e\x79\x5e\xef\xf5\x20\xba\x3a\xc0\x1a\x4a\x2b\xea\x96\xa2\x3a\xf8\x7a\xaf\xe7\x38\xba\xf1\xce\x83\xba\xff\xff\x76\x00\xe2\x61\xf7\x65\xea\x20\xf9\xfe\x50\x0e\x1b\x50\x88\x72\x42\xed\x22\x7f\x91\xa7\xf1\x96\x51\x54\x48\xa5\x73\x05\xa2\x79\xd4\xef\xf5\xa4\x7b\xea\x85\x1f\xbc\xbb\xca\xd2\x6d\x12\xba\xe8\x4f\xcb\xe5\x12\x11\xf4\xd3\x00\x2e\x2b\x90\x8b\xc6\xa3\xcf\x46\x88\x6c\xfc\x30\x8c\x92\x2b\x17\x8d\x86\x9f\xd1\x75\x67\x34\xfc\x82\xae\x21\xa8\x7d\x16\xd2\x6c\x90\xc1\xb1\x07\xf1\xdc\xcf\x21\x7d\x99\x26\x6c\x00\x86\x0b\x3c\xed\x4b\x9e\x26\x8a\xba\x68\xbc\xb9\xe9\xe4\x69\x1c\x85\x9d\x3f\x8d\xc7\x63\x44\xc2\x28\xdf\xc4\xfe\xce\x45\x49\x9a\x50\x44\xd0\xfb\x55\xc4\xe8\x20\xdf\xf8\x01\xaf\x9c\xa4\xef\x33\x7f\x83\x80\x2b\xdb\x33\x6c\x2e\xca\x26\x57\xa3\xf2\x30\xc2\x4f\x04\x0f\xee\xe5\x0f\x48\xe0\x3d\xb8\x17\x3c\x20\xb1\xf7\xe0\x5e\x7c\xf3\x80\x6c\xf9\xdf\xdd\x03\xb2\xf1\x1e\xdc\xbb\x79\x33\xbc\x1d\x91\x71\xe1\xbc\x09\x6f\x47\xa4\xc0\x0f\xc8\xd2\x7b\x70\x6f\x57\x4d\x6d\x3d\x8b\x30\x75\x96\x64\xab\x8c\xe6\x7c\x37\x82\x60\x4f\xa5\xd0\xca\x0f\x4f\x99\x95\x30\x06\x8f\x04\x46\xc2\xc3\x39\x76\x0f\x03\x0f\xb6\xd9\x35\x0d\xbf\xe5\x87\xd1\x13\xc0\x1f\x83\x06\x87\x5a\x4e\x01\xf6\x31\x98\xd1\x8d\x84\x2e\xd3\x6b\x82\xf7\xec\xe1\x7d\xd1\x12\xc8\xc5\xa2\xe1\xd3\xca\xf6\xa1\xd3\x08\x89\x48\x56\x66\xa5\x99\x09\x51\xf5\xa6\x35\x5f\x8e\x5d\x6b\xfe\xc3\xb9\xb8\x2c\xe2\x7c\x4c\x77\xcf\x5f\xd0\xd8\xe8\x6e\x9a\x45\x57\x51\xf2\x1a\x3e\x60\x7b\x33\xcb\x79\x8d\xc5\x44\x5e\x33\xa3\x14\xf7\x54\xb4\x02\x07\xce\x8c\x0c\x37\xca\xcf\xb4\xd7\xeb\xaa\x08\x0a\x08\x71\xd2\x4a\x05\x8c\x61\x46\x85\x45\x0c\xba\x17\x30\x44\x52\x5e\xfd\xe0\x4c\x6e\x68\x16\xd0\x84\x4d\x23\xaf\x9a\x74\x84\x04\x64\xa9\x5c\x38\x16\xa9\xa6\x5a\x63\x8a\x09\x4a\xe0\xb9\xa7\xd1\x83\xa8\x34\x08\xf3\xc3\x7f\x6f\x73\xf6\x4f\x3f\x7e\x95\xd1\x20\xca\xf9\x42\x7c\x70\x6f\x53\x5b\x55\xb0\x37\x10\xdd\xd2\xca\xcf\x5f\xbe\x4f\x5e\x65\xe9\x86\x66\x6c\xe7\xa0\x4d\x04\x0a\xa7\xc3\x48\xc3\x74\x8f\x38\x11\xf4\x7a\x8e\xef\x35\xa4\x37\xe1\xea\xd7\xc6\x36\x41\x70\x97\x45\xbd\x23\xcb\x84\xcf\xe3\xb4\xac\x98\x13\x3b\x0b\xbb\x66\x1e\x42\xc7\x21\x06\x69\x9c\x66\x06\xc4\x80\xd8\x59\x26\xc4\x40\x42\x14\x57\x89\x7e\xfe\xe4\x26\xca\xbf\xe5\xcd\x3a\x08\x0e\x9a\x88\x30\x6c\x80\x8a\x4b\x50\xe2\x1c\xaa\x55\xef\xaa\x9e\x09\x3c\x6e\x07\xbe\x6b\x00\xbe\x2d\x81\xef\x8e\x03\xdf\x02\x70\xa1\xc0\x85\x77\x9d\x60\xdc\x56\x62\xad\xcc\x74\xf2\x1f\x4a\xed\xb5\xc3\x70\x65\x9a\xe4\xdb\x51\x08\x58\xc3\xfc\xf5\xe6\x32\x05\x63\xcb\xa4\x71\x6b\x33\x14\xe3\x2d\xe3\xa0\x23\xb4\x99\x28\xed\x6a\x28\xfd\x78\x08\xa5\x65\x33\x4a\x59\x23\x4a\xbb\x26\x94\x76\x55\x94\xea\xe4\x9a\x1c\x5c\x5a\x1b\x42\x49\xd2\x58\x2f\x3b\x58\x6f\x49\x28\xc9\x8e\xb2\x13\x31\x62\x2c\x0a\xde\x49\x4d\x61\x38\x09\x35\x8d\x7c\x97\x32\x9f\xd1\xf0\x07\x4e\x2b\x97\xbc\x88\xc3\xf0\x14\x65\x22\x15\x12\x90\x8b\xa0\x2e\x9a\x08\x3d\x8f\xc9\xff\x55\x1b\xf0\x35\x51\xda\xce\x45\x27\x4a\x2a\xcd\xcf\xc2\xb9\xb0\x11\xae\xa6\x56\x79\xc6\x4a\xfb\x64\x6b\xa4\x32\x2c\xed\x72\xf3\xa7\x3e\xa3\x57\x29\x07\x55\x29\x31\xad\x35\x31\x5b\xcd\xc5\xd2\x76\x1b\xb3\xae\xb1\xe7\x79\x49\x9d\x4e\x5b\xc1\xe8\x42\x0f\xde\x7c\xf2\xe0\x8a\xa0\x4f\x3e\xf9\xe4\x13\x84\x31\x2e\x8a\xa3\xe2\xc4\xce\x98\x0a\x35\x5a\x6b\x6b\xb4\xcc\x12\xd6\x80\x19\x19\xd5\x31\x5b\xb7\x0f\xcb\xae\x3e\x2c\x06\xa0\xd9\xba\x36\x32\x95\x5c\x18\x9c\xac\xbe\x62\x0e\x01\x6b\x1d\x1f\xb9\x37\x9e\x48\xac\xea\xa9\x7b\xb5\x75\x74\xef\x06\x55\xd9\x81\x55\x9e\x73\x13\x2b\x1b\xd7\x31\x12\xd1\xd6\x4e\x9c\xab\x76\x4c\x76\xa8\x69\x28\x4a\x4c\xb2\x4a\x76\x1b\x26\xd4\x96\x84\x4b\xd2\x6f\xb4\x89\x38\x88\xf7\x8c\xce\x35\x23\x5f\xa7\x21\x95\xe1\xc1\x90\x21\x3b\x55\x8b\x54\x1b\x37\x38\xb8\x57\x7f\x11\xd0\xdc\xfa\x61\xf6\xdd\xeb\x49\x5b\x9f\x23\xe5\xaa\x98\xfc\xf8\x71\x30\xd9\x9d\x88\xc9\xae\x1d\x13\x7b\x61\x7d\x94\x69\x09\x34\xc8\xd3\x27\xa7\xb2\x4b\x79\xa6\xba\x8d\x64\xca\x35\x92\xbc\xd5\x0c\x7d\x46\xff\x4e\x13\x0a\xa1\xa6\x41\x2f\x3c\xd1\x8f\x3a\xa0\x80\xf0\x1c\x01\xdb\x5d\x4a\x9a\xf7\xe0\xf2\xea\xb9\xf9\xf4\x29\x6f\xa2\xb1\x8d\x66\x7d\xaf\xf2\xaa\xd7\xeb\xa0\x71\x53\xf8\xa8\x39\x19\xae\x7d\x16\xac\x1c\xca\x85\x46\x3e\x88\xdf\xd1\xab\x67\x37\x9b\xe1\x27\x63\x88\x12\xa6\xbf\x48\x02\x77\x7a\x5f\x47\x37\x54\xb8\xa4\xf4\x98\x5e\x58\x62\x27\xad\xcc\x9f\x29\x0c\x79\xb6\x8a\x52\x60\x00\x17\x69\x74\x18\x25\x4f\xb2\xcc\xdf\x39\x48\x8b\x40\xb9\x7c\x64\x65\xdc\x1c\xb7\x49\xb4\x89\x9a\x41\x36\xaf\x8b\x52\xbd\xde\xc1\x6c\xa9\x4e\x78\x3c\xaa\xe1\x5d\xdb\xa0\x2d\xbd\x65\x33\xf6\x9c\x09\x7d\x97\xb2\x34\x3b\x1d\xf9\x0a\x43\x35\x05\x80\x62\x52\xb9\x7e\x07\x4d\xef\x6d\x94\x44\xcc\x7a\x30\x94\xd0\xf7\x9d\x04\xa2\xef\xc8\xee\xb9\x8c\x24\xfe\x9a\xba\x48\x12\x0d\x22\xd7\x34\xcb\x41\xab\x31\x1a\x7e\x39\xfc\x1c\x15\xb8\x34\xc1\x20\x35\x03\x0c\xb4\xcd\x29\x18\xf1\x05\x0c\x4d\x84\x91\xef\x50\x20\xae\x77\x3e\x46\xd0\xdb\xb7\xb0\x24\xb7\x31\x45\xe4\x16\xac\x9b\xdd\xee\xa8\xe0\x87\x92\xa7\xe9\x66\x77\x99\x3e\x8d\xa3\xcd\x22\xf5\xb3\x50\x3d\xf5\x17\xaa\xde\xc8\x49\x9c\x11\x58\xbc\xf0\x5f\x7f\xfd\x0b\xae\xde\xf9\xab\x95\xd2\xeb\xd1\x61\xd9\xc6\x94\xba\xb7\x52\xe3\xe2\xd2\xc2\xbc\xdf\xd7\x55\x1c\xdf\x6b\x3a\x50\xbe\xde\xad\x17\x69\xdc\xeb\xa1\x1c\x7e\xd4\x72\x86\x11\x13\x0b\x75\xda\xf0\x08\x4b\x1d\x31\x8b\xc6\x17\x5a\xbd\xde\xa1\x06\xe9\x30\x30\x2c\x68\x3c\x4f\xa7\x77\xd5\xef\x92\xe0\xa6\x0a\x3b\x57\xb7\x88\xf9\x8c\x1a\x97\xfe\x46\xe8\x17\x39\x27\xef\xe8\x2e\x77\x28\xdc\x0b\xca\x94\x2b\xca\x0c\xf9\x44\x34\x92\x2b\x25\xfb\xa1\x32\x1c\x0c\x83\xb5\x9e\xd5\x63\xc5\x95\x36\x81\x8d\x20\xbe\xa2\x79\x90\x45\x1b\xce\xea\x38\x8e\x43\x9a\x6c\xd7\x34\xf3\x17\x31\x2d\x44\x6c\x29\x4e\xb6\x43\x7f\xb3\x89\x77\x0e\xe7\x95\x2a\x6a\x75\x52\xf6\x2e\x10\xbd\x8b\x96\x8e\xd0\x36\xa8\xe3\xfc\xad\xb8\x8b\x06\x0d\x54\x85\xf5\x1f\x2e\x7b\x5b\x90\xa8\x3a\x4c\x5c\xee\xcb\xbc\xd1\x24\x7b\xa4\xe2\xd7\x4d\xb2\x7e\x1f\x27\x5e\x34\xcb\xe6\x84\x69\x9b\xe2\x04\x3f\xf6\x46\xfb\xbd\x93\xce\x92\xb9\x47\x67\xc9\x5c\x73\xef\x14\xee\xaf\x4f\x1c\xf0\xe8\xe8\x80\x9f\x89\x90\x04\x57\x32\xa9\x8d\x04\xf9\x3c\x7f\xa6\x87\x5c\x19\x33\x26\xfc\xb4\x55\xf6\xa0\xd0\x3d\xd0\x63\x1e\xeb\x71\x3c\xd1\xde\xf7\xa9\x9f\x24\x29\xeb\xf0\x06\x3a\xbe\xf0\xc3\xd9\xf1\xf3\x8e\xdf\xd1\x6b\xc0\xa0\xd7\xad\x80\xae\x64\xed\xc4\x1b\x4d\x92\x47\x2a\x68\xe7\x24\xe9\xf7\x15\x55\xb2\x59\x32\x9f\x64\x06\xd1\x78\xe6\xc7\x7e\xdf\x1d\x93\x8c\x2f\xa4\x65\x74\xb5\x15\xf9\xdd\x11\x41\xe2\x35\x45\x94\xc0\x39\x2d\x1b\xbe\xcf\x22\x26\xf3\x30\x69\xe6\x58\x94\x64\x9c\x12\x38\xfd\x95\x58\x6e\x4c\x31\xa2\xcb\xf6\x7b\x65\x0c\xdc\xf5\x3c\x1f\x4e\xac\xe5\x02\x37\x58\xf6\x34\x74\x28\x76\x59\x09\x67\x69\x70\xa1\xa5\x9a\xf7\x9c\xb2\x57\x6a\xae\x5e\x2e\xa7\x25\x35\x18\xa9\xcd\x0f\x3f\xdf\xbe\x85\x49\x7e\xfb\x56\x4f\xba\x5d\x8b\x73\x06\x9b\x3d\x84\xd2\x62\x5c\x1b\xfe\x9a\xcf\x63\xbe\xa3\x4b\x9a\xd1\x24\xd0\x2f\x59\x56\x51\xde\x59\xf9\x79\xf2\x29\xeb\x2c\x28\x4d\x3a\x7c\x47\x89\xfc\x38\xca\x69\xd8\x19\x74\xf2\xed\x86\x66\x0e\xb6\x4a\xf0\x49\xa7\x61\xa9\xe3\xa7\x65\xd3\x2b\x73\x0c\x9d\x55\x73\xef\xf7\xfb\x46\x1b\x63\xa3\xab\x1e\x23\xc0\xf3\x08\x33\xba\xb5\x50\x5b\x92\x62\xc7\xfc\xc8\x46\xa7\x6d\x33\xcc\xd4\x46\x94\x90\x92\x84\xdc\xee\x88\x98\xf4\xc3\xbf\x15\xbd\xc0\x8e\xe5\xd2\x19\x9b\x7b\x09\xa1\x85\x70\x95\x64\x4e\x89\xc6\x84\x29\xcb\x62\x92\x4c\x62\x61\xc0\xcc\xf0\xa4\x34\x33\xaa\x9a\xe9\x13\x61\x03\x2e\xe4\x82\x48\x39\xa8\x8f\xc0\x3f\xbd\x3f\xcb\xe7\x65\x85\x59\x3e\x57\xa3\xba\x70\x42\x27\xf1\x36\x02\xbc\x43\xbd\xa5\xc3\x30\x86\x15\x2d\xd9\x27\x25\xf0\xe8\x73\xce\x17\x44\xe0\x33\xc7\x87\xb0\xf2\x28\x4d\x9e\x8a\x1b\xda\x9a\x91\x29\xf3\x40\xaa\xd9\xe4\x24\xf2\x18\xf8\x4c\x20\xbe\xc7\x86\x69\xc2\xf7\x68\x92\x7b\x65\xd8\x58\x12\xf0\x74\x21\x3f\x90\xd8\xcb\xd4\xfd\xc6\xf0\xa9\x2c\x30\x4c\x93\x78\xe7\xe4\x98\x6c\x3d\x67\x44\x52\x95\x8f\x9d\x88\x04\x78\xe2\xf7\x7a\xbe\x13\x91\x2d\x26\x71\xaf\x17\x8b\x36\x9b\xb7\x47\x99\x39\x94\x48\xeb\xd2\x2a\xc1\x11\xa6\xaa\x49\x21\xb8\x79\x44\x7c\x35\x3c\xb5\x0d\xa0\x71\x71\x96\x07\x8d\x66\x36\xf6\x9a\x93\x77\x87\xde\x6c\x32\x9a\x73\x99\x48\x3c\x46\xa1\x11\x5b\xd1\xac\xb3\xa0\x20\x12\x8b\xb7\x0b\x25\x5f\x9b\xd0\x92\xed\x2a\x02\x0f\x32\x0a\xcf\x95\x7b\x3d\x83\x27\x93\x5b\x63\xcf\x77\x25\x35\x52\x93\xde\xaa\xb4\x58\x70\x91\xa9\xd7\x13\xab\xa8\x70\x18\xa1\xe0\x8c\x99\x38\x91\x37\xbb\x7d\x47\x77\x2e\xca\x68\x12\xd2\x0c\x11\x01\xac\xd9\x5b\xbb\x98\x63\xe6\x39\xc2\x1d\x2f\xa1\x6a\x8a\xa9\x9e\x53\xaa\xa7\x9a\x37\xc0\x77\xdc\x19\xe2\x65\x11\xd0\x4f\xba\xd9\xf1\x1f\xa2\x2c\x22\x48\x95\x45\x73\x71\x17\xdf\x4c\x0d\x4c\x33\x84\xb2\x04\x38\x00\x50\xb7\x8a\x29\xb1\x56\x93\x5c\x2e\xcc\x1b\x4f\xd8\xa3\xea\x92\x99\x30\xb5\x2b\x24\x9e\x98\xc2\x72\x8d\xb0\xf9\xd4\xfc\x70\x6f\x8b\x09\xbb\xf7\x70\x9a\x3b\x09\xe9\x8e\xc0\x0b\xee\x33\xfb\xe1\x01\xc3\xb7\x92\x79\xcc\xd8\x9c\x13\x94\x7b\x44\x76\xc9\x1b\xb9\x4a\x44\xb9\xe0\x75\xac\xaa\x93\x60\xec\xf2\x7f\x9b\x11\x69\x67\x57\xc7\xe4\xa9\x84\x30\x30\xb0\x2f\x34\xdb\x75\x6e\x0b\x92\x90\x5b\xb9\x56\xc4\x9b\x0b\xf9\xc1\xcb\x15\x73\xdc\xeb\x6d\x1d\xe3\x28\x43\x22\x4c\x7c\x48\x03\xfb\x8d\xc2\x29\x67\xea\xd5\x36\xa3\x4f\xd5\xcb\x50\x3c\xa9\x0b\xee\x6b\xb2\x70\xd6\x3a\x66\x3b\xc7\x2f\x47\xd0\x76\xba\xd9\xb9\xd2\x77\x83\x3a\x72\x88\xcf\xa2\xc1\x9e\xdb\x3a\x4e\x48\x7b\x0f\xe7\xaf\x5f\x72\xba\xba\x05\x0a\x7c\xb0\x89\xfd\x28\x41\x2e\xba\x14\xe4\x08\x69\x2b\xb6\x8e\x91\x8b\xbe\xcf\x62\xa4\xac\xaa\x65\x01\x7e\x2c\xa2\x37\x9b\x34\x63\x79\xe3\x6d\x25\xdc\x54\x92\x80\xc4\x64\x0b\x2e\x4b\xf6\x7b\x87\x79\xb7\x05\x2c\x2b\xf5\xb0\x81\xa7\x67\x3b\xce\x43\x7c\x2f\x83\x40\xe3\xea\xf5\x89\x5c\xd7\xdf\xf9\xc9\x15\x75\x30\x09\xca\x8c\x2b\xca\x5e\x2b\xcf\x9f\x0e\x26\x4e\x5c\xad\xa3\x88\x5e\x3a\x39\x13\x3e\x6a\x9e\x0a\x9b\x06\x8f\x92\x78\x98\xb3\x5d\x4c\x87\x7e\x1c\x7b\x08\x3c\x04\x20\x9d\xa6\xae\x9d\x3d\xb4\xe4\x67\xeb\x32\x83\xa5\x1b\x6f\xa4\xbf\x82\x38\xda\x78\x28\xa3\x01\x73\x46\xa4\x23\xff\xc7\x65\x69\xb8\xf1\x7d\xbd\xf1\x03\xea\xa1\x4d\x46\x8d\x0c\xba\x78\x17\xb1\xef\x73\x9a\x89\x2e\x78\x72\xe9\xab\xfc\x8b\xf4\xa7\xf6\xcc\x75\xde\x9e\xb7\x6d\xc8\xf1\x43\x61\x21\xf7\x6d\x94\x33\x9a\xd0\xcc\x41\x01\xb0\x97\x72\x51\x08\x43\xb9\x6c\x98\xb3\x74\xc3\xc9\xca\xbf\xf2\xe5\xa8\x2a\xdd\x08\x86\xfc\x4d\x46\x39\x20\xf9\xbc\xca\xb1\x34\x87\x86\xae\x1e\xc6\x05\x48\xf6\x2b\x9f\xf9\xf8\x36\xe9\xf5\x38\x1b\x4e\x79\xc7\xfd\x2c\x71\xd0\x16\x9e\x51\x77\x58\xda\xe1\xb4\x48\xed\xf2\x08\x93\x5a\x05\x96\xed\xa2\xe4\xaa\xf3\xfc\x59\x27\xdf\xd0\x20\x5a\x46\x41\x27\x67\xdb\xe5\x12\x61\x22\x5f\xc8\x58\x20\x84\x73\x1f\x61\x8a\x3c\x11\x02\x41\x3a\x53\x5d\x99\xef\xf7\x7a\xb7\x9c\x34\xd6\xce\xa5\x19\x73\x44\xa8\xb4\x3e\xcc\xda\xe1\x93\x6a\x9e\xaa\xad\xda\x23\xfc\x2c\x27\xf9\x3f\x48\xc7\xb5\x51\x54\xb9\x4e\x75\xe4\x60\xe7\xd5\x54\xbd\x48\xc3\x9d\xb4\x96\x00\xb6\xef\xc4\x98\x28\x6f\x72\x2f\xd2\x90\x4a\xd2\xce\x79\x7a\xc0\x67\x5d\x2c\x9a\x1c\x93\xae\x86\x41\x6f\x68\xf0\x34\x5d\xaf\xfd\x24\x94\x64\x80\xeb\x51\xc3\x79\x7a\x27\x10\xa5\x3a\xef\xfd\xbc\xb3\x4d\xf2\x6d\x10\xd0\x3c\x5f\x6e\x63\x84\x27\x5b\xaf\x3b\x2a\x02\xd0\x50\x6d\xac\xd9\xa5\xa2\x7e\x39\xbd\x00\x69\x9b\xf3\xb9\x33\x5a\x76\x3b\x88\x6c\xce\x9a\x65\xe0\x0e\x07\xe7\x4a\x8d\xf6\x7e\x2f\xe9\x9e\x96\xe3\xca\x45\x02\x39\xc2\x4d\x30\xb8\x08\x75\x87\x0e\x59\x30\xea\x5d\x92\x55\x97\x7e\x1c\xf3\xd2\x0b\x3f\x78\xc7\x01\x6c\xb2\x74\xbd\x61\x08\x93\xc8\xab\x0b\x87\xce\x83\xb5\x1f\x74\xd2\xbc\x73\xf3\x20\x1a\x32\x9a\x33\x27\xf1\xaf\xa3\x2b\x9f\xa5\x19\xac\xec\x27\x57\x7c\x67\x98\xa2\x37\xdb\x87\x7f\x1e\x7f\x89\x5c\xf4\x94\x65\x31\xc2\x7d\xd4\x7f\x8a\x4a\x95\xa6\x56\xad\xff\xe9\xf6\x4d\x7e\xff\x1d\xdd\xbd\xc9\xef\x17\x0f\xae\x40\x9e\x41\x6b\x9a\xe7\xfe\x15\x9c\xd5\xd8\x94\x0d\xe5\xa7\x8b\xf8\xe8\x40\x07\x55\xaf\xdc\xce\x9f\xb8\xbc\x53\x90\xce\xb3\x04\x5e\x88\xaa\x95\x26\x7a\x20\x16\x47\xb1\x8c\x12\x3f\x8e\x77\xb7\x41\xaf\xe7\x98\xd2\xa5\x64\x05\x81\xb4\x62\x02\x4a\x9c\x5a\x5f\x4e\x8e\x5d\x95\xf0\x24\x8e\x21\x2d\x77\x30\x08\xac\x36\xc9\x4b\x1f\x09\x8a\xe4\x7d\x47\xef\xbf\xdb\xa2\xa8\x3c\x4c\x6a\xd8\x8a\x94\x60\xd6\xb2\x71\x4c\xf8\x89\x9b\x0e\x33\xde\xfe\xd3\x74\x9b\x28\xd7\x3a\x1d\x03\x40\x31\x29\x45\x25\x0d\x46\x38\xfb\x90\x9b\x0c\x49\xe0\xc5\x0d\x68\x0f\x4c\x60\x42\x83\xa0\xde\xd8\x5c\x51\x06\xfd\x7c\xc2\x9c\x0c\x63\xe5\x70\x9f\x0d\x99\x7f\x05\x4f\xd3\x58\xfa\xfd\x66\xa3\xde\x56\x4b\x0f\xfb\xf0\x5c\x0d\xb9\xf0\xfb\xf2\xd9\x0f\x97\x4f\xbe\x7b\xf6\x04\xb9\xca\x11\x94\x74\x50\xa6\x76\x64\x06\x92\x5a\x61\x90\x42\x65\x78\x89\xd1\x2b\xf4\xd4\xcf\x28\x3c\xb4\xa5\x43\x3e\x5f\xbd\x5e\x53\x05\xb3\x37\xfb\x7d\xd2\x2c\x52\xd1\x92\xdd\x30\x61\x68\xca\xd7\x9c\xf4\x47\x52\x14\x0d\x4a\x4d\xa7\xf6\xc6\x69\x92\xd8\xf6\x05\xfa\x74\xcf\x5c\xf1\x40\xb5\x41\xca\x80\x7d\x8b\x0e\x9f\xbe\x7e\xcd\x91\x7f\xfa\xfa\xf5\x90\xe6\x81\xbf\x51\x3a\xa8\x8e\x99\x36\x11\xf3\x57\x7f\xd3\x5d\x7b\xd2\xdd\x78\x4e\xf9\x7f\x25\xa4\xff\xd7\xc9\xe8\x7f\xb6\x51\x46\xc1\x47\x82\xaa\x3e\x44\xe5\x01\x94\xd3\x83\x70\xbf\xe0\x50\x4c\x32\xfd\x6c\x90\xa4\xde\x60\x0c\x51\x91\xc1\xfc\x32\x58\xf9\xd9\xd3\x34\xe4\xf4\x30\xc2\x93\x7e\x3f\x7d\x94\x4d\xf0\xa8\xeb\x39\xcc\xce\x4c\x31\x9e\x46\x7d\x8f\x3d\xf6\xc6\xbd\x1e\x7b\xe4\xfd\x79\xbc\xdf\x8f\x1f\xfe\xc5\xf3\xd8\x7e\x3f\xf2\xbc\xb4\xd7\x63\x8f\xbd\xcf\xbe\x84\xbc\xcf\xff\xb2\xdf\x8f\x6b\x69\xbd\xde\x67\x9f\x7b\x9e\x3f\x45\x6f\xde\xa0\x3e\xd3\xce\x21\x9c\xf1\x17\xb8\x8f\x3a\xc8\x15\x50\xc6\x70\xc7\xc9\x4b\xb2\xfd\xbe\xeb\xf0\xf6\x1e\x7e\xb9\xdf\xcb\x84\xbf\x8a\x3f\x76\x53\xec\xb1\xf7\xc5\xe7\xf0\xf5\xd7\x11\x7c\xfd\xf5\x2f\xf0\x35\x7e\xf8\x10\x8b\xd6\x44\x4f\xa0\x17\xae\xf9\x3b\xea\x7b\xe8\xcd\x76\xb9\x5c\x86\x9a\x77\x45\xc5\xc4\x9c\xb8\xfd\x5e\xcc\x2d\x48\x8b\xe6\x54\x7a\x8c\x4b\xce\x09\x2e\xc4\x69\x5c\x1c\xd0\x13\x67\xfc\x57\x7c\x92\xbc\x0b\x4b\xde\xd0\x46\xaa\xeb\xa2\x9a\x46\xcf\xbe\x5f\x2e\x55\x98\xa6\x9b\x15\x31\x90\x7c\x3a\x9d\xcf\xbe\xe0\x92\xeb\x49\x7a\x41\x12\x78\xdd\x5c\x20\x7f\xab\x60\xc0\x2b\xc6\x82\x20\xf5\x8d\x30\x89\x3d\x59\xc8\x7c\x51\x5d\x60\x82\x34\x74\xc4\x77\xaf\x59\x59\x87\x57\xff\x36\x0d\xfc\x98\xea\x04\x38\xa8\xbe\x5c\x22\x82\xec\xfe\x20\x82\xa2\xdc\x50\x0a\x21\x00\x5b\x43\x95\x9f\x3e\xcb\x43\x34\x9a\x93\x4d\xc3\xce\x65\x29\xd7\xb5\xe5\xa9\x75\x16\xe7\x7c\x06\xde\x5e\x7d\xe2\x6f\x36\x71\x14\x80\x88\xf9\xd4\x0f\x56\x70\x0c\xff\x44\xee\x9b\xf0\x9b\xde\x30\x9a\x25\x7e\x0c\x1f\xcb\xcc\x17\x8f\x37\xc5\x2f\xc9\x70\xcb\x84\x1c\x7e\x1a\x4f\x08\xca\x6f\x30\x56\x87\xcf\x34\x59\xa7\x3f\x2d\xb7\x71\x9c\x07\x19\xa5\x89\x78\xde\xdd\x94\x03\xdb\xb6\xc8\x28\x6d\xd8\xcb\xef\x12\x22\xbc\x8b\x79\xb9\x5c\xe6\x94\xe9\xef\x1f\xad\xef\x4c\xa1\x59\xda\xb5\x1b\x9f\x97\xe9\xc6\xf8\xfa\xc1\xf8\xfd\xa3\xf8\x4d\xe3\x25\xfc\x10\x67\x05\xb0\x2c\xa1\xe1\x57\x7f\x33\xd2\x5e\xb3\x34\xf3\xaf\xe8\xf3\x64\x99\x8a\x54\xd8\xa0\xdd\xee\xc8\x7a\xc0\x56\x7d\x93\x56\x0a\xea\xd2\x22\x5e\x07\x80\xd1\xc1\xaa\x3a\x51\xa2\x32\xe5\xb1\xac\xbb\x9c\xa1\x4f\x50\x9f\xce\x7b\xbd\x54\x50\xa4\xc8\x27\x14\x6b\x05\x8f\x48\x99\xf1\x32\x86\x13\x07\xab\xad\x19\x9d\x03\xc4\x8d\x53\x7e\x4b\xc1\xab\xd4\xfb\x8e\x8a\x86\x24\xed\x18\xd3\xc1\x93\xac\x81\x00\x0d\x1f\x1a\xb5\xb6\x29\x49\x3c\xed\x25\xe7\x6b\x59\x75\x8e\xc0\x73\x89\xf4\x8e\x43\x32\xcf\xe7\x7f\x72\x8f\xf5\x7a\xba\xac\x58\x42\x95\x92\x4b\x6f\x36\x07\x0e\xc2\x7a\xbd\x6e\xd2\xeb\x75\xb3\xe6\x0d\xc3\x60\x30\x52\x5f\xdb\x49\x93\x8e\xdf\x49\xd2\x64\x20\x51\xc4\xd2\x94\x28\xee\xf5\x12\x0e\x32\xe7\xbb\x98\xba\x01\xed\xf5\xba\xa9\xba\x3e\x18\x61\x6d\x26\xb3\xf0\x46\x93\xc5\x23\x55\x6c\xd2\xef\x2f\xf0\x52\xc8\x17\x92\xa5\x2f\x30\xc8\x34\x99\x09\xab\x34\xb2\xf1\x46\x93\xb5\x59\x7b\x5d\xa9\xbd\xc6\xf2\x55\xa9\xaa\x71\x01\x3a\x5e\xbc\xea\xf5\x0c\xa6\xe3\x79\xde\xc5\x7e\x5f\xe2\x77\x81\xf7\x7b\x1b\xce\x85\xc0\x22\xd0\x2d\xd7\x7c\x20\x1d\x20\xc9\xfd\xbe\x1b\xaa\x2d\x7c\x03\x77\x61\xd9\xee\xd6\xf8\xae\xd1\xc7\xb8\x28\xf8\xd4\xec\xbc\xd1\x64\xf7\x68\x5b\xf6\x6e\x87\xaf\x7a\x3d\x8b\x7d\x79\x9e\xb7\x9d\xed\xe6\x26\xf2\xfc\xbb\xc4\x1f\xbe\xb4\x8a\xb3\x28\x4a\xb1\x23\x3b\x49\x97\x72\xa7\x3b\x4f\xc5\xbe\x2f\xfd\x2b\xd2\xb0\x0f\xe9\x5d\x26\x6a\xb0\xfe\xe8\xc2\x54\x37\xd2\x7d\xaf\x57\x87\x2f\xa6\xd3\x20\xf2\x27\x4a\xfc\x01\x3a\x57\xa3\x82\x0b\xe2\x37\x35\xd6\x8d\x1c\x8a\xf7\xfb\x83\xcb\xad\xd7\xab\x1b\xf0\x95\x1e\x3f\x34\x55\x7a\x23\x0b\x8b\xcc\xdf\x81\xef\x2a\x8d\x81\x91\x6b\x2d\x5a\x55\x00\xfe\x50\x8e\x69\xde\xe0\xf6\x20\x72\xb4\x5c\x87\x39\xd3\x88\x86\x51\xfe\x2d\xbd\xf2\x83\x9d\xee\xb0\xe7\x1b\x42\x65\x3e\x8d\x5c\xff\xa4\x19\x6e\xba\x23\xe2\x63\xd1\xae\x08\x93\xa5\xe0\x22\x48\xbc\xae\x60\xd3\xf1\x03\xbe\x23\x8e\x1f\x30\x17\x42\xd0\x70\x79\xab\x9b\xc1\xd8\x76\x33\x87\x61\x5c\x9c\xa8\xb9\x1b\x8f\x3e\xc7\x24\x55\x36\x21\x86\xab\xba\x1b\x1a\x90\x96\x4b\xcf\x52\xa5\x49\xfc\x03\xd4\x96\x7f\x30\x31\x37\x8e\x88\xb8\xe4\xa4\xd6\xed\x9e\xf6\x22\xa7\x37\x23\x78\x68\xad\xcc\xc8\x15\x1d\x88\x5e\x02\x15\xf8\x8a\x4c\xa4\x5c\x1f\x39\x94\xa0\xd8\xcf\xc5\x4e\x59\xfa\x2f\x76\xba\x4c\x0c\xa9\xba\xa5\xc4\xb8\xd7\xb3\xdc\x34\x64\x3b\x2d\xc4\xe8\xfa\xa5\x1c\xaa\x93\xbc\x11\xd1\xa4\x49\xb4\xbe\x20\x31\x78\x90\x3a\x0c\x9b\x95\xe0\x91\xf5\xc9\x93\xf9\xe7\xcf\xb1\x31\x64\x99\x68\x4e\x11\x3f\x7c\x91\x23\x42\xea\x69\x0a\x5f\xa4\x61\x96\x70\x16\x51\x12\x1a\x1b\x55\x94\x88\xe7\x9d\xd1\x22\xa6\x1d\x44\x52\x0f\x56\xa8\xf9\x4c\x25\x8e\x02\x7a\x48\x26\x6e\x99\x7c\x31\xd6\x5c\x64\x9f\xb4\xdd\x19\xed\xf7\x0d\x2b\xbf\xab\x37\xe1\x96\x1b\xf1\xac\x6f\x5c\x01\x26\xc4\x57\x8c\x42\xf3\x01\x32\xc6\x36\xab\x90\x8e\x33\xcc\xdb\xf6\x44\x5f\x84\xcb\x3b\x3e\x38\x5b\xf8\xea\x86\xaf\x0a\x12\xeb\x57\xf8\xd2\x18\xc3\xc9\xc0\x52\x74\x2a\xfd\x99\x6a\x1f\x2c\xea\xc2\xf0\x10\xa4\x82\x04\xe5\x93\xc6\x11\x51\xd7\xf3\x03\xe5\x21\x81\x9f\x07\x66\x73\xb2\xf5\x46\x93\xed\xa3\x00\xfc\x25\xc4\x62\xd3\xe2\xb2\x99\xf0\x84\x90\x78\x6a\xc4\x1c\xc4\x67\x94\x66\x88\xa0\x8a\x46\xa3\xe3\xa0\x7e\xac\x3c\xa9\x81\x23\xb5\xdb\x8e\xba\xf2\x84\x2a\x56\xd7\x35\x82\x93\x4e\x81\x30\x04\x7a\x2b\x27\x5b\xb9\x5c\xb0\x94\x25\x06\x1b\xf2\xcc\xcb\x38\x83\xda\xe0\x36\x76\x43\xcc\x92\xa6\xe6\x22\x39\x79\xc1\x7c\x01\xce\x7a\x9c\xf1\xe8\x4b\x4c\x22\x7e\x06\xfb\x0b\x16\x67\xb1\x2f\xf9\x5c\x27\xce\x78\xfc\x10\x93\xc0\x4b\x9d\x08\x4f\x32\x27\x20\xb7\xe0\x1f\x2e\xde\x2d\xa3\x38\x76\x7d\x12\xad\x37\xe2\x3c\x01\xa7\x11\x37\x22\xf9\x2a\x5a\xbb\x39\x9c\x37\x15\xf1\x06\xa7\x2f\x5e\x89\xcb\x5f\xb1\x83\xee\xa9\x79\xb8\x07\xca\xbe\x54\x8c\xa9\xa6\xca\xa6\xc5\xa1\x37\x0a\x35\x01\xbe\x31\xfa\x45\x89\x91\xc8\x3d\x50\x2f\x32\xeb\x9d\x84\xbd\x5e\x45\xa5\xf8\xd1\xb6\x65\xc0\x8b\x1e\x90\xe2\x53\xe7\xb6\x20\x08\x29\x71\xec\x02\xdf\xa6\x62\x16\x85\xca\xdd\xc0\xaf\x5c\xae\x19\x97\x2b\xd2\xa9\x99\x57\xca\x76\xa5\x26\x46\x6c\xed\x24\x92\xa0\xa9\x55\x2c\x35\x96\x34\x12\x25\x11\xe6\xf8\x56\xe5\xc2\x4e\x54\x14\x85\x83\xf9\xb4\x02\x29\x8c\x30\x5c\x21\x35\x1a\x71\x98\x26\x11\x4d\x06\x11\x05\x89\x95\x7f\xf4\xad\xd7\x28\xbb\x7e\x1f\x25\xec\x4b\xe0\x92\x53\x51\xd0\x0d\x9c\x32\x0d\x93\x8d\x77\x8b\xee\xc1\xef\x7b\xc8\x85\xbf\x44\x7e\xff\x6d\xbb\x5c\xd2\xec\x1e\x72\x1b\xe1\x1a\x45\x14\x60\x23\xc9\x86\xa1\x3b\x74\x37\x60\xc6\x62\x95\x60\x9f\x4b\x6b\x3c\x13\x70\x3e\x0d\x9c\xd9\x7c\x56\xb1\xd7\x9b\x3b\x18\xab\x5b\x48\x59\xd9\xac\x54\xd9\x3e\xac\x22\x6f\x69\xc2\xb2\x88\xe6\xf5\x62\x43\x99\x63\x17\x97\x3a\xc8\x86\xe2\x32\xc7\x2e\xce\x8f\x60\x0d\x65\x79\xb2\x5d\x10\x04\x84\xa6\xa2\x22\x83\x17\xce\x77\x49\xf0\x75\x96\xae\x5f\xef\x92\xa0\x69\x6c\xca\x01\x80\x92\x9a\x07\xb4\x64\xb4\x57\xd5\x06\xcb\xed\x39\xad\xd0\x75\x89\x76\xf0\x4d\xb8\xc7\xbd\x5e\xae\x8f\x0c\xbe\x59\x6a\x1a\xcf\x9a\x92\xe7\x8e\x39\xe3\x2c\x5d\x47\x41\xde\x4a\x78\x22\x5b\x13\x9d\xf8\x24\xe8\xde\xdf\xc4\x0b\xc2\x7b\xc8\x95\xbf\xca\x34\x13\x39\x99\x64\x51\xd0\x57\x3e\xf3\xff\x19\xd1\xf7\x6d\x6d\xaa\x7c\xd5\xa8\xfa\x36\xaa\x1e\x5d\x30\x6d\x30\xaa\x88\x70\x00\x22\xf0\x3d\x7c\x99\x70\x21\xd4\xa2\x59\x3c\xa4\x41\x1a\xd2\xef\xbf\x7b\x7e\x0f\xb9\xfa\xb7\x99\xae\xcd\x00\xcc\x02\x3a\x91\xa0\x7b\x34\x29\x21\xe8\xdf\x66\xba\x09\xa1\x9e\x48\xd0\x3d\xe0\xf6\xf7\x90\x2b\xb8\xbe\xfc\x36\xb1\x86\x04\x0b\x6d\x7a\xed\xc7\x1c\xdc\xb5\x1f\xf3\x0a\xd7\x7e\xac\x81\xa8\xdf\x66\xba\x05\x4c\x25\x5a\x00\xbf\x8e\x53\x9f\xfd\xf9\xa1\xe2\x89\x8d\xe3\x6f\x96\x51\x73\x60\xa6\x55\xc0\x1c\x9d\xcf\x63\xf0\xea\x08\x7e\xf1\xd9\x71\x04\x65\x19\x0b\xa0\x4c\xab\x80\x39\x0d\xc1\x03\xf0\x6c\x04\x4b\x16\xa0\x7e\x1a\xa9\x66\x5b\x75\x89\x9f\xa0\x7b\x8d\x4c\xe6\x20\x7f\x39\xcc\x5a\x9e\xab\xdd\xae\xad\x73\xcf\xab\x5b\xa4\x4e\x30\x6b\x1f\x1d\xa3\x76\x30\x56\xf7\x9e\x27\x6c\xfc\xc5\x31\x7c\x64\x09\x03\x92\x4c\xb1\x00\x9c\x82\x52\x1d\x52\x33\x4e\x47\x28\xbe\x2c\x61\x40\x2a\xa9\xbd\xfc\x38\x05\xa7\x56\x48\x16\x52\x51\xfe\x75\x94\x44\xc0\xc3\xd4\x4f\x48\x7d\xe1\xbf\x80\xa4\x17\xfe\x0b\xde\x72\x8b\x2c\xd0\x26\x0d\x18\x9b\xc3\xff\xff\xf5\x4b\x0e\xa9\xae\x2c\xe2\x19\x53\xfe\x8f\x5d\xf6\x95\x9f\xe5\xf4\x70\x85\x21\x04\x2a\x29\xab\x5d\xf8\x9b\xb6\x71\xb8\xf0\x37\x6a\x00\x2e\xfc\x8d\x28\xdb\xd4\x99\xc6\x17\x21\x17\xfe\xa6\xd7\xe3\xdd\x74\xb8\xfc\x7a\xe1\x6f\xf0\x61\xc9\xe7\xc2\xdf\x1c\x9d\x18\x1b\x21\x6b\x2a\xf8\x01\xf0\x1e\x72\xf9\x1f\x82\xee\x89\x50\xc4\xf7\x90\x2b\x7e\xe8\x14\xb3\x05\x91\x62\x01\x11\x12\xee\x3d\x24\xad\xec\x74\x8a\x59\xad\x7a\x6e\x17\x85\x84\x20\xa4\x8e\xf0\x0d\xc5\x4a\xf5\x90\x51\x5e\x5e\x31\x35\x15\x97\x59\x04\xdd\x83\xf9\x02\x4e\x76\x0f\xb9\xe5\x87\xca\x79\x9e\xe8\xf4\xe7\xb0\x43\xbd\xca\xd2\x75\x94\xb7\x8e\xa1\xcc\x56\xe3\x28\x3f\xcb\x7a\x47\x27\xa1\x19\x80\x35\x20\x26\xa8\xb7\x6c\x45\x93\xbb\xc2\x1a\xf2\xca\x25\xc0\xb7\x7e\x1c\x9f\x09\xca\x8f\x63\xa3\x7e\x46\xe5\x04\x9f\x03\x42\x54\xb2\xa0\xe4\x69\x7c\x7d\xee\x00\xc9\x5a\x02\xce\x4d\x2b\x1b\x83\x4c\xa3\xee\x0d\x67\x5e\x60\x23\xa0\xa4\x86\xf2\xc3\xca\x31\x27\xae\x4c\xb5\xe6\xc5\x36\xa1\xe7\xe5\xac\x84\x5a\x09\x0b\xa4\x95\x53\x05\x1b\x1f\x18\x56\x99\xad\xfa\x24\x3f\xa1\xde\xd5\xb3\x9b\x0d\xc0\xe6\x3f\x74\x8a\xdd\xac\xad\xa0\x25\xe8\xde\x6b\xda\xda\xd4\x6b\xaa\x9b\x79\x4d\x99\x28\x7b\x32\xc7\x7a\x4d\x99\xc1\xb1\x5e\x53\x76\x84\x63\xbd\xa6\xec\xe8\x62\xb1\x11\xb2\xbb\xb1\xf2\x33\x1a\x9e\x70\x90\xad\x15\xd4\x10\xab\x19\x4d\x50\x8f\xa3\x78\x32\x78\x1b\x7d\xc5\xe9\x34\x5b\x13\x3f\xda\x76\x3b\x84\x8e\x8c\x26\xd4\x36\x6b\xc9\x40\x1c\x56\xa3\x00\x01\x20\x8a\x9f\x46\x7d\xf8\xb6\x5b\xad\xbe\x4f\x33\x4b\x27\xcc\xbf\x51\xcb\xc0\xf8\xb2\xf3\x2c\x74\xca\x64\x0b\xa7\xcb\x55\x96\xbe\xd7\x8a\xa0\x7b\xc8\xf5\x79\xe2\x6e\x23\x87\xee\x1e\x72\xb7\x56\x82\x09\x73\x3b\xdd\x36\x61\x67\x42\xcb\xcc\x6f\xb3\xae\x8d\x45\xa9\x31\x69\x9b\xe7\xba\x9e\xa5\x4c\xb1\x00\x1c\xa5\x98\x43\x90\xea\x48\x3d\x8d\xfd\xb5\x31\x18\xed\x10\xcd\x82\x16\x60\x33\xa3\x09\xea\x69\x08\x9f\x04\xbe\x86\xfe\x11\x41\xd8\x28\x62\xc2\x2c\x45\x61\xe3\xeb\x24\x34\xdb\x81\xd5\x50\x3b\x22\x0f\x1b\x45\x4c\x68\xa5\x44\x6c\x7c\x9d\x84\x5a\x3b\x30\x1b\xb5\xef\x9e\x2b\xda\x55\x3f\x8d\x54\xb3\x25\x95\x66\x55\xff\x17\xf5\xdf\x1d\x90\x49\x65\xb6\x42\x42\x7e\x96\xf5\x8e\xf6\xa4\x19\x40\x0d\x85\x03\x9b\x8c\xcc\x36\x21\x88\xcd\x46\xfe\x3a\x09\x85\x3a\x80\x12\x85\x82\x2c\x85\x5e\xbc\xe9\x22\xab\xca\x15\x95\xdd\x2a\x26\xa1\xf7\x60\xf6\xbf\xf7\x86\xb3\x37\xf3\x79\x7f\xff\x66\xe6\x4c\x5d\x67\x30\x7d\x13\xf6\x9d\xa9\xfb\x66\xf8\x26\xec\xe3\x29\xde\x3b\x33\xf4\xe9\x1c\x3b\x3c\x6f\xda\x7d\xf3\x10\xcf\xfe\xf7\xcd\x9b\xf9\xfe\xcd\x9b\x21\xbe\x3f\xc5\x6f\x1e\xe2\x37\xf3\xbd\x33\xf5\xa0\xc6\xfe\xcd\xec\xcd\x1c\x97\x3f\xf7\xf7\x3e\xc1\xf8\xc1\x15\x59\x79\x0f\xde\xbc\x71\xde\xbc\xc1\xd3\x07\x57\x64\xd1\x70\x47\x35\xd3\x2f\xc1\x96\x0e\x25\xa1\xe5\xd4\x3a\x11\xce\x15\xd9\x4c\xdd\xd2\xcc\xbd\x6c\xba\x74\x52\xb2\x22\xe8\x93\x31\xc2\x6e\xb2\xdf\x53\xe9\xdc\x6d\x5d\x7f\x2b\x2b\xde\x78\x76\x36\xe6\x4d\x96\xc1\x97\x1d\x14\x25\x7c\x78\xf2\x28\xe8\xa0\x3e\xed\xa3\x4e\x98\xd2\xbc\x93\xa4\xac\x43\x6f\xa2\x9c\x75\x45\x84\x9e\xc6\x49\xd9\x80\x05\x4e\xd7\x7c\x6e\xd5\x00\x0f\xc0\xe4\xa4\xb3\xd8\xb2\x4e\x24\x20\xfb\xd7\x7e\x14\xc3\xa3\xd5\xce\xab\x98\xfa\x39\xed\x2c\xa3\x98\x76\xfc\xa4\x13\xe5\xf9\x96\x76\xcb\xe7\x86\xbc\x89\xf6\xdb\xee\xe6\x40\x45\x60\xa9\xa8\x03\x7f\x34\x9b\xcc\x94\x48\x26\xfe\xda\x0c\x4b\x94\xa4\xc9\x80\xae\x37\x6c\x67\x05\x28\xaa\x1a\x6e\x3e\x1e\xf7\x7a\xda\x21\x99\x71\x9d\xd8\xd8\xd8\xa7\x08\xc2\x36\x5c\x44\x79\xce\x01\xea\xbb\x07\xa3\x55\x09\xea\x53\xe3\x56\xd1\x5b\x38\x14\x93\xc8\x5b\x3b\xe8\x1e\xea\x3b\x89\xb6\xb0\x99\x26\xb3\xd1\xdc\x45\x08\xf7\xd1\x3d\x44\x18\x26\xbe\x37\x9e\xf8\x8f\x54\x81\x89\xdf\xf7\xc6\x58\x3e\x92\xee\x7a\x11\x16\x6e\xd1\xfc\xfe\xf8\xb1\x36\x0e\x55\x8e\xd8\x53\x27\x22\xc9\xcc\x9f\x63\x6d\x65\xe4\xf0\xcf\x28\xe9\x44\xd8\x9e\xd4\x05\x9f\xa4\x72\xd0\x96\x69\xd6\x30\xbb\x6c\x45\x3b\xca\xae\xaf\x3e\xd5\x7c\x24\xbd\x7c\x0a\xa1\x2f\xf7\xfb\x5c\x1c\xd7\xdc\x68\xc6\x5b\x9c\x8b\xc7\x0f\x91\x27\x3f\x4b\x33\xcd\x23\x77\x4a\x35\xe3\xde\xcc\x63\x43\x21\xc3\x88\x1b\xb2\xf1\x18\x1f\xba\x00\x6b\x32\x3b\xc8\x2a\x16\xe6\x55\x73\x04\xa7\x6e\x8f\x90\x39\x68\x99\xa6\xe0\xea\xbf\xcd\x58\x81\x8f\x61\xc6\x4b\xa4\x0e\x06\xd7\x45\x67\x5b\x94\x36\x76\xa3\xe5\x62\x5b\xb4\xb9\xdf\x37\xe5\x1d\x7c\xc1\x6e\x5a\x45\x1c\x75\x9c\xa0\x4a\x0b\x17\x0f\xd4\xbb\x2d\x08\xf3\x54\x77\x19\xcd\x19\xc2\x44\x39\x2d\x70\xc4\xf3\xf9\x86\x58\xa7\x76\x9b\xda\x22\x0e\xc0\xc0\x65\x7c\xab\x62\x40\x5f\xd2\x7f\x20\x84\x04\xdb\xa6\x89\xe2\xb5\xf1\x8c\xcd\xbd\xcf\x1e\x12\xdb\x52\xa4\x89\x30\x0c\xfb\x3b\x11\x0c\xd7\xf6\x3f\x60\xc7\xef\x3a\x0a\xc6\x9e\x17\xf0\xf5\x62\x41\x6d\xc8\x6f\x6a\xe4\x34\xd7\x0f\xd1\xd2\x19\x77\x3d\x2f\x93\xd5\xf7\xfb\x6c\x36\x9a\xc3\x13\x5a\xcb\x3c\xe6\x2c\x0f\x04\xd5\xf9\x38\xb5\xab\xe5\xc5\x6f\xc5\x4c\xfa\xa0\xd7\x09\xde\xc4\x67\x0f\xc1\x9a\x0b\x38\xca\x7e\xdf\x1d\xc1\x57\xf9\x10\x5c\xa3\x53\x94\x76\x9f\x27\x5f\xfa\x0f\xf3\xed\x06\x56\x9d\xf1\xec\x13\x58\xcb\x67\x60\x07\x70\xb2\xd5\x93\xfd\x08\x94\xe4\xc6\x45\x78\xcb\x3d\x31\x89\xbd\x07\xfe\x83\xd6\x65\xdf\xcd\xf6\xfb\x6e\x60\xb0\xe9\xdc\x41\x35\xdb\xac\x65\xec\x5f\xe5\xc6\x23\x82\x0e\xcb\xb6\xb4\xf3\xec\xf5\xe7\x1d\x9a\x5c\x47\x59\x9a\xc0\x46\xc4\x56\x3e\xeb\xa8\x7e\x96\x2c\x3c\x2c\x7b\x2c\x0d\x48\xa9\x97\x3a\x98\x30\x2f\x70\x62\xbe\xb2\x23\x87\x11\x04\x4d\x94\x3b\x76\xd2\xeb\x81\x87\x61\xbe\x05\xef\xf7\x7e\x59\x02\x5e\x48\x5b\x8f\xf1\xcd\xa7\xfa\x63\x72\x45\x99\x4b\x0b\x4c\xe8\x69\x93\x63\x5f\x75\x89\x80\x20\xbb\x23\x26\x8d\x3f\x93\x91\x99\xdc\x4a\x9a\xcc\x13\x4b\xeb\x45\x27\x9a\x56\x6d\xc1\xb4\x2d\x45\xcd\xd6\xab\x6a\x6f\xea\x6a\xa6\xc6\xbb\x6d\x9b\x4f\xe2\xa6\x47\x2f\x05\x39\xe2\xdd\x47\x53\xb8\xb0\x24\xf9\x5c\xd8\xb4\x8c\x3f\x17\x36\x2d\x23\x30\x69\x19\x26\x8e\x8f\x49\xc0\xd3\x31\x89\xe1\x3b\xc0\x64\xcb\x69\x1f\x93\x0d\x7c\x6f\x31\x08\xde\x0f\xb9\x28\x9d\x38\x0f\xc7\x98\xac\xbc\x5b\xf5\x84\xdc\x8d\x87\xfe\x30\x49\x43\x4a\x02\x15\x13\x0b\x92\xc4\x16\x40\x82\x38\xcd\xe9\xd3\xd6\x9c\x27\x59\xe4\x83\xa7\x26\x2b\x27\x97\x6e\x81\x20\x51\x8c\x09\x01\x9f\x9f\x66\xa9\xa5\x1f\x8a\x02\x5c\xae\x22\x51\xfe\x72\x23\x91\x81\x6f\x11\xed\x0d\xbe\xf9\x10\x11\xe6\x5f\xb9\xcb\xe1\x3b\xc2\x32\x3f\x91\x3e\xa0\x01\xd6\xca\xdf\x50\x27\x1c\xfa\xc0\xec\xf8\x6a\xcd\x31\x01\x63\xff\xef\xe8\x52\x34\x9f\xd0\x97\x4b\x9e\xe1\xcc\x0c\x6c\x0c\x3c\x54\x13\x73\x5c\x90\x85\x77\x2b\xf0\x44\xf2\x85\x23\x52\x88\x75\x47\x80\x02\x0a\xa3\x6b\x54\xed\x3a\x7a\xca\xbf\x91\xe8\x11\x2f\x58\xe2\x28\xb7\xd5\x68\xe8\x63\xe7\xb6\x20\x1c\x51\xf3\xbd\x36\xb9\xdd\x26\xeb\x74\x9b\xb0\x97\xc9\xb3\x9b\x88\x81\xc3\x8b\xa2\xf4\xb8\xb4\xb6\x5e\x54\xa8\x49\x20\x09\x7c\x99\xf3\x42\x7c\x95\xa4\xb1\x22\x01\x4f\x52\x33\x41\x62\x8f\x0e\x99\x7f\x45\xb6\xf0\x36\x23\x4e\x33\xb2\xf2\xe8\x50\x74\x8e\x2c\x78\x26\x0c\x38\x59\x7b\xa5\x27\x02\x72\xc1\xd3\x75\x67\xc8\x95\x47\x87\xbc\x8f\x64\x07\x5e\xb5\xc4\x20\x93\x6b\x25\x3b\xa4\xbc\x93\x94\xcc\x90\xc6\x14\x11\x64\xe3\xa9\x12\x34\x96\x3c\x21\xd7\x8e\xaa\x10\xf3\xaf\xe0\x7d\x49\x9c\x66\xf0\x1c\x85\x63\x87\x74\xe8\x3f\xc3\xef\x01\x41\x25\x5e\x88\x20\x8e\x15\xaf\x20\x71\x42\x73\x4c\x9e\x28\xb4\x96\xc3\x15\x76\x36\x0e\xe6\x4c\xce\x8f\x69\xc6\x90\xfc\x3b\x40\xfd\x2d\xb9\x95\xbf\xc3\x28\x5f\x73\xd9\x7f\x11\x53\xe4\x2e\x0a\x4c\x02\x4c\xde\xd6\x40\x08\xec\x11\x49\x20\xff\xbd\x77\x74\x7a\x0b\x72\x41\x6e\xb9\x5c\x2e\x42\x9f\x5d\x4d\x2f\x86\xe5\x17\x42\x84\x45\x6b\x9a\x6e\x19\x64\xa8\xdf\xa3\x42\xf3\xe9\x7c\xe8\x57\x5e\xaf\x87\x43\x9f\x28\xd3\x42\xd9\xea\x35\x79\x4f\x6e\x39\x71\xc6\xc6\x12\x7e\x42\xa2\xc4\x5d\x91\x2c\x8d\xa9\xab\xba\xad\xd7\xc5\xae\xc0\x64\x31\xad\x03\x47\x8b\x2d\x63\x7c\x40\x45\x80\x70\xfd\x59\x82\x7d\x4b\x90\x9f\x45\xfe\x00\x3c\x5a\x22\xd7\x27\xca\xd5\xc1\xa2\x20\x0d\xf0\xe0\xa9\x3d\x1f\x63\x5e\x67\x15\x85\x21\x4d\x90\x8b\xf8\xf6\x86\x0a\x82\xde\xdc\x84\x7f\x41\x18\xcb\x60\x6e\xb8\x58\x97\x8b\xd8\x5b\x91\xb5\x35\x94\xde\x82\xb0\xa1\xef\xad\x4f\x95\x09\x2c\x8e\x39\x12\xe1\x0d\x12\xe1\xea\x05\x38\x65\x00\xdf\x39\xb0\x4c\xce\x29\xb7\xf0\x1d\x03\xcb\xe4\x9c\x72\xe9\xc1\x90\x6e\x86\xef\x48\x1e\xfd\x44\xdd\xc0\x64\x7c\x6a\x34\x82\x26\x9e\x17\x68\x2e\x63\x07\x8e\x6a\x5d\xc9\x7a\x8d\x46\x72\x8d\xe6\x1e\x1d\x42\xdc\x9f\xe0\xf0\xd2\xaa\x2d\x1c\x70\x44\x3f\xe7\x7d\x92\xf5\x36\x9c\x70\xb7\x82\xf6\x21\x52\xf8\xe0\x2a\x4b\xb7\x1b\x44\xf2\xa9\xf9\x3d\x40\x7d\x11\x34\x0f\x93\x44\xd3\x9e\x5f\x9b\xce\xa8\x4a\x79\x01\xb9\x35\x36\x8d\x02\xe3\x62\x12\x1a\x73\xb8\x24\xa1\x3d\x87\xb7\x9a\x85\x16\x30\x9b\xe1\x2f\x37\x9b\x89\xf3\x39\xec\x7f\x7a\x56\xfd\x30\x4c\x13\x8e\xa7\x98\x30\xbe\x4b\x38\x33\xb4\xc9\xe8\x86\x26\x21\x67\x11\xf0\xb2\x1e\xcd\xf1\x30\xca\xbf\x13\xa2\x59\x48\xf4\xa6\x19\xd4\x37\xcd\xa3\xc4\xb0\xba\x33\x31\x68\x5c\x05\x53\x57\xec\x39\x3e\x93\x3c\x34\x98\x8a\x07\x99\xf0\x08\xb9\x70\xf2\x30\x28\xa3\x7e\x3a\x0c\xa6\x27\x10\x4b\x6c\x12\x4b\x58\x60\x52\xaf\xb3\x1c\xfa\xa4\x14\x4c\x82\x02\x63\xf7\x6c\xc0\xc4\xaa\x5f\x4c\x56\x06\x41\x86\x64\x75\x98\x20\x57\x77\x22\x48\x69\x63\x3c\x7e\x28\xe8\x71\x54\xa1\xc7\x71\x85\x1e\x3f\x03\x7a\x1c\x26\xce\x46\x0a\x64\xb6\x3c\xb6\x55\xa4\x05\x3c\x78\x5b\x52\x15\xf0\x21\xe3\x7b\x91\xbf\xae\xa4\x5c\xfb\x71\x14\x42\x82\x90\xa9\x92\x4a\x02\xef\x6d\x38\x7c\x57\x6e\x04\x5b\x5b\x40\xda\x96\x02\xd2\x56\x09\x5e\x25\xf8\x39\x26\xe0\x0a\x86\xd1\x1b\x56\xc2\x04\xa2\x2a\x3f\xcb\x99\xd8\x36\xad\x87\xad\xb1\x1e\x16\x6d\xbe\xbc\xf4\x13\x70\xe9\xb5\x0c\x16\x86\x56\xc3\x30\xbc\xdf\x43\x5c\x56\x78\x3f\x4f\x97\x22\x96\xcd\x77\x74\x29\x62\x32\x99\x5b\x72\x02\x0e\x0e\xe1\xdd\xb9\x27\xff\xb6\x14\x2a\x64\x8a\xcf\x53\xc0\x47\x87\x0c\xb4\x59\x9e\x51\xf4\xd9\x49\xb5\x6b\x9d\x14\xb4\x9b\x27\x2d\x18\x49\x37\xeb\x76\x22\x3f\x40\x40\x72\x46\x97\x1e\x38\xb1\x15\xd8\x59\xc6\xd1\x22\x5b\xd6\xcf\xe8\x52\xbf\x9c\x27\xc9\x50\xb8\x9b\xaa\xbb\x33\xb0\xfc\x4c\x1d\xe1\x2a\x9c\x91\x70\x81\x51\x10\x10\x70\x18\x20\x14\x10\x12\x25\xd1\x80\xa0\xc8\xf9\xcf\x46\xf1\x1f\x10\x18\x35\x01\x80\xcc\xa8\x65\xc0\xf5\xe9\x9c\x48\xb0\x1f\xd1\xb4\x78\x8d\x1c\x85\x20\xba\xa9\x5f\x06\xaf\x42\x04\xe9\x06\x2b\xe2\xdd\x85\x37\x43\x99\x1f\x46\x29\xf0\x32\x1a\xbc\x5b\xa4\x37\x68\xae\x9d\x32\x46\xf8\xf1\x60\x4c\xae\x3c\xe1\x60\x8f\x9f\xb7\x1d\xf4\xe6\xcd\x57\x88\xa0\x2b\x84\xc9\xce\xdb\xee\xf7\x0e\x12\xbe\x52\xe0\x39\xa7\xf4\x13\xe2\x67\xd4\x87\xef\x69\xe4\x0a\x0e\x88\x30\xb9\xf6\xd0\x32\xcd\xd6\x83\x20\x4d\x58\x96\xc6\x68\xb2\x9a\x3a\xd7\x7d\x0f\x0d\x0c\xdc\x00\xa2\xaa\xe1\xa2\x65\x14\x53\x01\x07\x0a\xc2\xa7\x7b\xd1\xeb\x39\xd7\xde\x66\xca\x37\x5a\x57\x82\xe4\x98\x0f\x54\x43\x6b\xd8\xf5\x7b\xbd\x2b\xe1\xec\x43\x7c\xe2\x5e\x4f\x91\x6b\x38\x5c\x63\xe7\x53\xa9\x8c\xe7\x6c\x49\xe9\x72\x3b\x6a\x3c\xe1\xe9\x0a\xf5\xc3\x0e\x78\x7c\xa6\x1d\x21\x11\x40\xdc\xfc\x34\x65\x39\xcb\xfc\xcd\x9b\x4f\xf3\x0e\x34\xd8\xc9\xa3\x9f\xa2\xe4\x6a\xf8\x29\xe7\x5e\xa2\x2d\x15\x6f\x4e\xb6\x0c\x6b\x40\xcb\xd1\x21\xdf\x1c\x96\xb0\x39\xf0\x93\x78\x94\x0f\xf4\x9c\xe5\xe2\x5b\x7e\x75\xbb\x7e\xaf\x67\x0d\xd9\x00\xf5\x7d\x72\x6d\x6c\x21\x8e\x1c\x2a\xcf\xf3\x76\xfb\xfd\xb6\xd9\x15\xdd\x96\x77\x7d\x0d\xe4\xea\x45\x7c\x74\x14\x8b\xec\xf5\xba\xab\x5e\x4f\x4d\x5f\xd7\xf3\xa2\x32\x54\x7e\x59\x7d\x67\x15\xd9\x55\x87\x11\x02\x34\x77\xde\x47\x6c\xd5\xf1\xc1\x91\x2c\x1f\x33\xf4\x69\x3f\xea\x7f\x8a\x3a\x81\x70\xa6\xb9\xf2\xaf\x69\x47\xb5\xaa\xaf\x41\xf8\xc8\xcb\xc7\x63\x0f\x94\xf7\xad\x7f\xc2\xa7\x1a\x7e\x3e\xa6\x7a\x28\x4b\xbf\x6e\x41\x6d\x2f\xdb\x55\xf7\xb2\x35\xb9\xcd\xe8\xd2\x5d\x98\x92\x3c\x84\x61\x67\x85\xc3\xab\x1b\x0e\xc1\x16\x96\xb4\xbc\xa8\x6e\x6c\x20\xc0\x03\x71\x8a\xad\x6d\xf1\xeb\x6d\x6d\xc2\x35\x4a\xb9\x47\x58\x47\x08\x73\x43\x8b\xd3\xe0\x9d\xb1\x95\xc0\x49\xdc\xc8\x0f\xa3\xdc\x5f\xc4\xd4\xd8\xd0\xd2\x2d\x8b\xa3\x84\x7e\xc4\x1d\x4e\x9d\x67\x74\x6e\x75\xd7\xad\xef\xd3\x27\x6f\x79\x42\x6f\xa0\x91\xfd\x08\x3b\xa0\xc4\xd6\x4b\xd4\xaf\x8f\xb1\xbd\x29\xa0\x2d\xfb\x9b\x9a\x85\x29\xad\xb9\xae\x72\x8d\x62\xda\x81\x64\x3d\x0d\x9e\x13\x9f\xbc\x95\x09\xea\xe1\xfb\xd8\xcc\x24\x9c\x39\xec\x65\x40\x32\x52\xfb\xa1\x76\xbc\x5c\xe9\x42\x60\x3f\x2b\xf7\xbe\x52\xf5\xc1\xf7\x34\x49\x3a\xb0\xab\x01\xef\x5b\xc8\x0d\x6f\x6d\x6e\x6c\x17\xb5\x8d\x4d\xa0\x83\x2c\x22\x26\x08\xf0\x00\xed\x46\x45\xd3\x51\xd9\xfe\x94\x6a\x43\xb6\xae\xce\x6c\x6a\xd7\x33\x76\xb8\x49\x6e\xb9\x24\x37\x8c\x45\x0d\x3e\xe8\x94\x1f\x5e\x9d\xbb\x34\x1f\xbf\xbb\xa3\xf2\xe8\x3d\x11\x4f\xf1\xd1\x82\x25\xa8\xef\x6c\xa6\x68\xa0\x10\x13\x77\x97\xa0\x22\xd9\xd5\x76\x00\x2e\xa5\x03\x29\xe7\x05\xc9\xf7\x7b\xa8\xce\x7f\x5c\x91\x2e\x70\xe6\x05\x4b\x06\xa8\xbf\x22\xdd\x6e\x24\xbf\xe4\xf8\x28\x56\xc0\xca\xb5\xdc\x40\x59\x05\x26\x31\x9e\x5c\x0c\x57\x20\x05\x29\x2d\x84\xe7\x79\x8b\x5e\xcf\x59\x78\xc8\x97\x8a\xee\x6b\x2f\x9f\x4a\xdd\x1b\x9c\x5e\x15\x09\xd7\x47\x62\x61\xf3\x59\x4b\xbb\x21\xe0\x5e\x28\xe2\x9c\xaa\x74\xe5\x33\x91\x5c\x98\xe7\x8b\x1d\xe1\xfc\x79\x4d\x9a\x5c\x3c\xda\x8c\x2d\xd9\xef\xaf\xef\xc4\xba\x95\x06\x92\x06\x69\x12\xfa\xd9\x0e\x09\xcd\xa3\x44\xeb\x57\xe7\xe6\x75\x06\x18\x25\x1f\x99\x09\xff\x06\x0f\x11\xf9\x76\xb1\x8e\x98\xa7\x7e\xfc\xe6\x8e\x11\x12\xbf\xc3\xe7\x08\x51\xe8\xa3\x1d\x24\xc4\xbc\x03\xf7\x55\x9a\x0a\xcd\x38\x4f\xd7\x4d\x08\x28\x4d\x2c\x90\x6c\x1b\x64\x4f\xc1\x53\x40\xba\x94\x35\x4d\xa5\x55\x7d\xe9\xd7\xd4\xa5\xb1\x10\xb1\x72\x93\xca\xd4\x3a\xcd\xcf\x10\xb0\xf8\x9a\xe4\x68\x7c\xd0\x8a\xfc\x30\xcd\xa4\xc5\x6f\xee\xa2\xa1\x14\xfa\xe1\xa0\xa2\x63\x30\xbe\xaf\x69\xc6\xa2\xc0\x8f\x21\x4d\x08\x2d\xe7\xeb\x34\x73\x7d\xca\x94\xd0\x40\x8d\xc5\x49\xe6\x74\x2a\x91\xdb\xa4\x82\x20\xc9\x65\xce\x87\xa3\xae\xbc\x2a\xf7\x1d\xa5\xbf\x8a\x48\x3e\x35\x12\x34\x18\xb7\x4c\x44\x87\x95\x9f\xc1\x41\xb5\xd3\xf2\x1c\xe5\xa7\xd4\xca\x8b\x56\x7f\x71\x4d\xe8\xed\xe9\xd4\x51\xa5\x06\x11\xda\x94\x86\x9a\x1a\x64\x4a\x4c\xf3\xbc\x4c\xe3\x85\x37\x66\xa1\xd0\xcf\xde\x95\x5f\x10\xda\xba\xfc\xcc\x68\xbe\x49\x93\x9c\x4b\x05\x81\xbd\x4d\xe8\x22\x81\xb9\x37\x28\xda\x2f\xeb\x5d\xca\x14\xbd\xdd\x34\xc0\x81\x3d\xc6\xec\xae\xee\xe4\x1c\x7f\x10\x49\xab\x21\x01\x92\x2e\x47\x03\x44\x4f\x39\x10\x64\xe9\xd1\x21\x1f\x03\x12\x7a\x74\x08\xdd\x07\xa9\xb3\xec\x81\x25\x7b\x5a\x1d\x83\x2b\x38\xcd\x54\xaf\xce\x5d\x2e\x0a\x3b\xfd\x33\x86\x3b\x4d\x24\x31\x43\x04\x71\xbc\x10\x41\x32\xde\x38\x2a\x1b\xd7\x0c\xd9\xc2\xa7\xc2\xa0\x77\x4d\x9a\x63\x26\xdc\xc4\x89\x45\x08\x1f\xb0\x00\xbb\xdd\x5c\x7f\x97\x78\x75\xbb\x41\x25\x55\xa0\xd8\xed\xc6\x3a\x5d\x63\xdb\xed\x2e\x75\xa2\x40\xbc\xdb\x0d\x75\x8a\xe8\x03\x5f\xc5\xe4\xda\xab\x2f\xe0\x45\x75\x01\x5f\x89\x8d\xe0\xc2\x60\x97\xbb\x42\xf8\xa9\x92\xc6\x77\x4f\xac\xee\x75\x47\x9e\xe7\xad\xa6\xb2\x35\x63\xa4\xdc\x5a\x12\x48\xbf\x87\xb8\xc9\xda\x64\x1e\x4f\x0a\x72\xad\x9d\x98\x5e\x9f\xc4\x46\xe4\x18\xdb\x8b\xe0\xd7\xb9\x59\x69\x58\x6d\xc2\xdd\x93\xbd\x6e\x8d\xab\x97\x24\xfd\xfb\x96\x31\x9a\x19\x3c\xe3\x74\x9e\xc4\xb7\xdc\xb2\xde\x4d\xee\x2e\x49\xbe\x76\x97\x64\x1d\xba\x4b\x12\x5f\xb9\x4b\x72\x13\xbb\xcb\x82\x4b\xaa\x25\xc3\x7d\x1f\x85\x6c\x95\xbb\x33\x74\x03\xd4\xbf\x46\x04\xad\x39\xf5\xc7\x9c\xa0\x6f\x62\x34\xaf\x0a\x92\xa7\xf0\x00\xdd\x0d\x60\x04\x7c\xf9\x72\x1e\xc0\xf1\x83\xd5\x2f\xda\x2c\xf7\xa7\xa3\x6b\x56\xc3\xd3\x4b\x0f\xc4\x0b\x82\x04\x24\x71\x53\x33\x9b\x4f\xe2\x26\xa7\xab\x3a\x76\x98\x47\x67\x0c\x1c\xd2\x49\x05\xd4\x72\xc6\xe6\x65\x08\xb4\x6e\xc2\xa9\x6b\x9b\xaf\x9c\x74\x8a\xb2\xf4\xfd\x20\x48\xe3\x7c\x80\xfa\x99\x6b\x7e\x31\x38\xf9\x65\xb8\x28\xb0\xf2\x49\x57\x5f\xe7\xd1\x14\x25\xe9\xe0\x4a\xa2\x2c\x2e\x71\x83\xa9\x90\xcc\xb2\xf4\x3d\x02\x88\x88\x84\x87\xb7\xd5\xbc\xba\x2a\x97\xe6\xca\x58\xc1\xb6\xba\xb0\xae\x70\x2a\x82\xd8\xea\x97\x96\xbe\x4e\xa6\xf7\x43\xdb\x59\xad\x86\xf8\x09\xd6\x2c\xb7\x7a\xdb\x3d\xb9\xf6\x1c\x13\x11\x75\x7c\x49\x52\xe1\x73\x72\x59\xe0\x39\x56\x8b\x80\x2f\xba\x9b\xdc\x0d\xf9\x4a\x09\xf9\x4a\x09\xf9\x4a\x09\xf9\x4a\x09\xcf\x58\x7a\x72\x15\xf1\x14\x3f\xcb\xfc\x1d\xd8\xcb\x9c\xb5\xc8\xd6\xb5\x78\x77\xca\xd8\xcf\xf3\xbc\x64\xbf\x47\xfc\x34\x9e\x4c\xe9\x14\x05\x29\x17\xce\x02\xd0\x1d\x33\x17\xf9\x5b\x96\x9a\x79\x03\x48\xd0\x05\xfa\x48\x26\xc8\x5c\xd4\x4f\xcc\x3c\xd4\x4f\x0a\x72\x71\xf6\x02\x97\x2b\xb8\x5c\xdd\xa7\xae\x64\xb9\x60\xb5\x8c\x1a\x83\x8f\xc8\xc6\x65\x5b\x06\x27\xb4\x97\x6d\xc0\x97\x6d\x2a\x47\x24\x55\x31\xab\xba\x59\x19\xdd\xca\xd9\x0c\xaf\xb0\x93\x62\x91\xe7\x93\xdc\x8b\xa6\x68\x80\x5c\xa4\x3a\x4d\x96\xde\xda\x89\x08\x23\xa9\x54\xe7\x4b\xef\x50\xd5\xa5\xec\x38\xbe\x77\x5b\xe0\xd9\x72\xee\x89\x92\xaa\x55\x21\xe5\xf8\x33\x04\xb4\x85\xfa\x79\x3f\x1d\xc2\x4f\x5e\x10\x7e\x08\x2b\x7e\xf9\x01\x25\x81\xfa\x64\x51\xf8\x0d\x65\xe1\x97\x2e\x0c\x5f\x10\x95\x3a\xc1\xc2\xa3\xbe\x88\xbf\xab\xd0\xd5\x98\x86\xb8\xe0\x2c\x88\xc4\xda\xf2\x55\x39\xb8\xe2\xe4\x21\x58\x53\x93\xfc\x7f\xc4\x8e\xa1\xc6\x73\x82\xba\x28\x7f\x61\x1d\xfe\x2e\x9a\x6c\x51\x2e\x7e\xd1\x13\xdf\xc2\xd8\x2d\x37\x51\x1c\x1b\x9f\xd6\x21\xed\xa8\x00\xbd\x4a\xb3\xe8\xa7\x34\x61\xb2\xbc\x5c\xf0\xff\xde\xe6\x2c\x5a\x46\xa6\xd8\x0e\x3e\xb1\xf4\x57\xe2\x5f\x2f\x7c\x43\x6e\x0f\xfc\xcc\x28\xab\xb8\xcc\xcf\x6c\x1b\xb3\x10\xab\x11\xfa\x0f\xbb\xad\x3e\x51\xc6\x20\x5a\xab\x9e\x81\xc8\xad\xbb\x04\x72\x37\xef\x0d\x88\xdd\xa2\x23\x20\x72\xf3\x3e\x80\xcc\xcd\x40\xd2\x3e\xdd\x9a\x62\xc1\x17\x37\x60\x61\x9f\x49\x4b\x0c\x10\x41\xba\x7d\xbe\x93\x47\x31\x4f\x12\x6d\x73\x70\x7e\x16\x96\xfc\xe1\xaa\x81\x86\x57\x53\x59\x7a\x90\xf8\xd7\xc8\xe5\x1f\x4a\x2a\x16\x80\x77\x70\xbb\x46\x13\x36\x40\xfd\x98\x34\xf8\xe6\x1c\x4b\x9b\x56\x60\xae\x7c\x51\xdf\x40\x44\x55\x3a\x45\xcb\x98\xde\xf0\xbd\x7e\xbb\x4e\x90\x2b\xbe\xe0\xa1\x88\x4a\xc3\x85\x13\x60\x72\xcb\xdb\x1c\x40\x67\xdd\x48\xa0\x3c\x58\x51\x3f\xa4\x99\x4c\x5c\xf4\x7a\x11\xf4\x69\x20\x86\xc2\xcd\xed\x52\x32\x75\xd1\xeb\xe5\xa2\x58\x39\x22\xee\x52\xa4\xc0\xb8\x80\x35\xc8\x61\x69\xb9\xb2\x60\x2d\x95\xec\xd5\xa9\x67\xef\x6d\x8c\xca\xb5\xd2\x1d\xff\xf2\x27\x6f\x6d\x7b\x24\xb4\xe0\xe7\x4b\xbf\x77\x59\x35\xf2\xfe\xe4\xfc\x5d\x4c\xdf\x74\xe8\x5d\xac\xe1\xb0\xc7\x27\x31\x62\x74\xad\xce\x7b\xb2\xd2\x87\x30\xe0\x93\x0d\xc9\xe2\xe8\x83\x4e\x3b\x1f\x45\x1b\xfe\xc1\xba\xee\xfa\xa5\x66\xf5\xba\xf4\xf4\xfb\xc5\xda\xe5\xe5\x2a\x93\x18\xf9\xc9\xee\xbf\xf0\xba\xd1\x41\x7f\x82\x8b\xb1\xb2\xb4\xb8\x32\xaa\x17\x25\x27\xdf\x4c\x7e\x2c\xe5\xb8\x5c\x76\x1f\xa8\x1c\xb7\xd6\xe0\x71\xe5\x38\x2c\xc7\x38\x4a\xde\x21\x72\xab\x09\x2b\xd6\x63\xa8\x48\x2b\x2a\xee\xaa\x33\x6f\xbc\xf6\x6a\x50\xa4\x9f\x67\xab\xc0\x17\xb3\x7f\x37\x3d\x3a\x5f\xbd\x4d\x0c\xf9\xe1\x17\xa7\x3d\x8a\xf8\xf3\xc3\xa6\xd5\x2c\xc6\xe9\xd2\x5f\xc0\x13\x02\x3f\xd9\xb5\x3c\x8e\x68\x78\xe8\xf0\x11\x96\x59\xce\x7c\x46\x95\xd9\x04\x47\x42\x46\x89\x1c\xea\x94\x82\x24\x85\xed\x67\x36\x55\x4b\x8d\xc0\x0b\xa5\xaf\x68\x16\x5d\xd3\xf0\x35\x87\xf4\x75\x96\xae\xc5\x48\x37\xba\xa1\x66\x25\x58\x08\x97\xad\xbf\xa6\x06\x06\x46\x72\x21\x03\x53\x30\xeb\xad\xf6\x07\xad\x97\x54\x2e\x92\xa8\x24\xe9\x08\x3b\x46\x65\xf3\xad\xde\x0a\x97\x61\x35\x04\xed\x83\x65\x3e\xf3\x17\x4a\x20\x82\x07\xb7\x87\xf6\x9f\xe5\xd0\x1f\xbe\xca\xd2\xeb\x88\x9f\x5a\x64\x18\xc8\xb2\xb3\xcf\xe5\xa5\x34\x4c\x83\xd1\xef\xa2\xc1\x62\x35\xad\xae\x94\xc8\xdc\xc9\xf2\x02\xcb\xf5\x10\x99\xab\x41\x56\xc9\x87\x1b\xe9\x79\x16\x3b\x0b\x2c\x88\x9f\x9c\xb0\x52\x40\xcb\x77\x64\x95\x24\xc3\x10\xde\x3b\x98\x61\xdd\xf4\x8c\xaf\x94\x5a\xe7\xc3\xe5\x9a\x3f\x3f\x34\xde\x16\xdd\xaa\x47\x3a\xa7\xab\x14\x18\x0c\x77\x20\x77\xa8\xf2\xe5\xcb\xea\x8c\x33\xc1\xf3\xf0\x0e\xc2\x0d\xd4\x33\x65\x9b\x06\x77\xaf\xe6\xeb\x8f\xad\xa2\xb1\x8d\x9f\x50\x44\x98\x36\x65\x88\x20\x90\x09\xa7\xb7\xa2\x9d\xe0\x36\xc0\x0e\x93\x7c\xbb\xa6\x19\x01\x4d\x59\x43\x2c\x58\x83\xd6\x9e\x87\x77\x16\x9e\x44\xc4\x25\xfe\xff\xa9\x96\xcf\xa7\x30\x5c\xa0\x91\x3f\x0b\x1a\x91\xcf\xcf\xfe\x22\x29\xe4\xa1\x64\xb4\x9f\x0b\x0a\x19\x55\x28\x64\x5c\x11\x9b\x3e\xe3\x8c\x96\x7f\x87\x98\x2c\x38\xe5\x7c\x86\xc9\x5a\x50\x90\x3e\x81\x05\xb2\x67\x8b\xe1\xa5\x7e\xe5\x53\x76\x86\xdc\xca\x37\x59\x4b\x2d\x21\x29\x93\x84\xa5\x2d\x7c\x2d\x95\xa6\xea\xe5\x12\xd6\x7c\x92\x86\x14\x13\xf5\x4b\x5e\x26\xad\x2d\x82\x55\x99\xea\xbc\x5b\xb6\xa1\xc9\x77\x59\x92\xaf\x96\xfa\x1a\x1a\x06\x01\x6c\x69\xbc\x77\x33\xaf\x9c\x8c\x33\x5f\x63\x67\xed\x57\x44\xea\x0d\xda\x98\xf8\x9b\x0d\xf5\x33\xfe\x8b\x26\x8c\x42\x64\x1a\x2a\x1e\x8e\x19\xcf\xd3\xd4\x43\xa2\xf5\x90\x0e\x9f\xa6\x71\xec\x6f\x72\x4e\xa1\x3b\xcf\x71\x32\xd0\xf4\xac\x87\xe1\xf0\xd9\x8b\xcb\x67\xdf\x3d\x7f\xf1\xf7\xb9\x87\x02\x51\x06\xc2\x03\x65\x65\xe6\xb3\xaf\xca\x3c\xda\xc9\x57\xe9\x7b\x9d\xfd\xc3\xf3\xcb\xd6\xaa\x3f\x3c\xbf\xb4\x6a\x22\x92\xe1\x72\x61\x5f\x5b\xee\x94\x45\x84\x1b\x11\x55\xa7\x10\x37\x2e\x1f\x67\xef\x5c\x89\x40\x3d\x62\xa7\x9a\xa1\x34\x81\xa8\x75\x22\x00\x92\xfc\x80\x73\x79\x0a\xef\xee\xf4\x0f\x5d\xe0\x26\x62\x34\x44\xf3\x06\x95\x1d\xc5\xb7\xc9\x8c\xce\x3d\xfe\x8f\x25\xfe\xfa\x52\xfc\x2d\x4c\x09\x38\x3f\x4d\x02\x56\xd8\x55\x76\x68\xb1\x0d\x51\x06\xdb\xb8\xa3\x3a\x75\x0d\x31\x98\x6d\x89\x56\x01\x10\x71\x8a\x89\x86\x49\xc3\x93\x40\xc2\x38\x35\x81\xa4\xa1\x09\xf1\x26\x62\x75\x31\xfd\x34\xfc\x6e\x22\x26\xcd\xfe\xf4\x48\x5b\xa0\xa8\x54\x0b\x0a\x5a\x98\x34\x43\x1e\x35\x81\x15\x51\xd5\x4a\xc8\x34\x3c\x01\xc7\xc6\x0e\x43\xe5\x13\x8c\x13\x09\x33\x05\x1b\x3e\xa9\x7c\xef\xc9\x3c\xa6\xde\x53\xfa\x1e\xb3\xec\x11\x99\x52\x3a\xc5\x3c\x43\xef\x5f\x1b\x33\xc0\xf7\xd2\x73\x58\x79\x42\x30\x8f\x54\x8c\xcc\x94\xf8\xaf\x1e\x44\x9a\xbb\x5a\xa9\x53\x32\xed\x0c\xcb\x87\x92\xc6\x99\x81\x73\x60\x43\xb4\x11\x63\x51\xb2\xdd\xf5\xf0\xdf\xd8\x59\x92\xf5\x30\x30\xd8\xd3\x9a\x8b\x62\x22\x51\x51\xec\xb6\x7e\xb7\x6a\xf0\x2e\x62\x6e\xc1\x42\x57\x13\x25\x6e\x46\x4a\x22\x55\xa7\x07\xf5\x4d\x34\xb1\x59\x39\x34\x24\x62\x52\x74\xea\x4d\xc4\x88\x9e\x74\x33\x55\x02\x81\x09\x34\xd3\xc1\x96\xb0\xc1\xfd\x48\xc3\x66\xbf\x9b\xd1\xf9\x7e\x5f\x72\xad\xc2\x61\xa5\xeb\x00\x67\xcd\x65\x80\x15\x98\x3e\x66\x60\xee\x2e\x75\x73\xba\x38\x26\x31\x6c\x74\xdb\x38\xf6\x3c\x2f\x14\x46\xfe\x8a\xda\xc2\xa2\x7d\xe8\x6a\xe3\x75\x45\x6e\x21\x78\xaf\x5b\xd9\x1f\xae\x44\x4c\x5f\x72\x5b\x90\xa5\x69\x22\x17\x81\x45\x22\xad\x58\x88\x15\x98\x6c\xb0\x3a\x8d\xc5\xa6\xf4\xf9\xc4\x10\x0b\x2e\xc8\x13\x5b\x2c\xb8\x02\x31\xf4\xc9\x2f\x69\x8d\x02\xd6\x8e\x86\x9c\xb8\xb1\xd4\xce\xec\x04\xe3\x0e\x65\x5d\x5d\xb7\xf3\x98\xe3\x0f\x7b\xb2\x77\xbe\xb6\x4d\x18\x18\x5b\xa7\xfd\x40\x6a\xac\xf5\x1b\xec\xd3\xaf\x84\xf5\x4b\x68\xb5\x86\x85\xd6\xb9\x94\x5b\x1b\x9f\xee\x2d\xfc\xf0\x0a\xac\x3f\xf8\x5f\x69\x7b\x11\xf4\x7a\xf2\x1b\x00\x98\xe7\xa3\xa5\x32\xb4\x05\x73\x61\xcf\xf3\xe2\x5e\xcf\x89\xc1\xcc\xb6\xe1\xc4\x13\x1f\xbc\xb0\x0d\x81\x18\xf3\x13\x34\x78\x75\x2b\x57\x98\xf8\xee\x58\x08\x32\x80\xcb\xaf\x60\x1b\x55\xa3\x96\x2c\x7d\x6f\x28\x6a\x57\x34\x30\x4c\x99\xa4\xe1\x6b\x69\xe8\xa4\x54\x2e\xbf\xec\xbd\x48\x96\xbe\x07\x8a\xd3\x6a\x1e\xf1\x4a\x94\x06\xef\xe4\x8b\x2e\x30\xd3\x5c\x4a\xea\x0b\x4f\xa6\x3e\xb8\xbf\x47\x0a\xaa\x7a\x68\x55\x35\xd9\x84\x6b\xe6\x36\x1b\x3c\x00\xa1\xac\x02\x44\x75\xf9\xf4\x49\x3e\x44\xee\x3a\xdd\x60\xbf\xef\xc6\x58\x3f\x19\x92\x4f\xa2\x44\x0b\x32\x3b\xe7\xd9\x1a\x11\xf3\x2d\xea\x32\xa2\x71\x98\x8b\xb8\xb5\xcb\x5e\xcf\x09\xf5\x28\x78\x79\xe3\x13\xd3\x2a\xf9\x86\x75\x7b\x83\xdf\xea\x1b\xe6\x0f\xb1\x3c\x30\xac\x0c\xcc\x3a\x86\xc1\xc1\xb2\xd5\x84\xa0\xbe\x28\xc4\x5b\x82\xd6\x75\x51\xb5\x1b\x5c\xda\x1c\xfe\xec\x45\xd1\x6e\xbc\xd0\x6e\x92\x20\x5f\x66\xfc\xd7\x19\x25\x88\xa1\x87\xf5\x2e\xed\x13\x4a\x63\x5a\xb5\xea\x97\xca\x42\x31\x14\x06\x49\xe5\x02\x3d\xba\xe6\xe5\x2b\x91\x8a\x0d\x43\xb9\xf4\xa5\x61\xe1\x32\xcd\xf8\xc2\x5f\x78\xb3\xf9\x24\x3f\xcb\xb0\x61\xd5\x64\xd8\x40\xfc\x03\xa6\x0d\xbc\x87\xbe\x6d\xda\x30\x89\xbc\xb5\xe3\x97\xa6\x0d\x64\xd1\x66\xda\x90\xc3\x81\x37\x6a\x36\x6d\xc8\xb5\x69\x43\x70\xc4\xb4\x21\x2f\x4d\x1b\x82\xe3\xa6\x0d\x39\x06\xdb\x06\xe5\x2f\x4f\xa2\xaa\xb1\x8c\x4a\xc3\xaa\x8b\x56\xce\x99\x67\x83\x34\x89\x77\xea\xce\xd7\xe0\x8d\x92\xb2\x85\x31\x24\xa7\x27\xc8\x83\xd4\x01\xea\x2f\xc9\x82\x74\xbb\x0b\x1d\x5f\xb1\x52\xe2\x3c\x2b\xe7\x15\x5b\xc7\x5f\xa7\x99\x1b\x16\x64\x65\xf2\xc9\x8b\xdf\xa2\x8d\x44\x0c\xb2\x76\x8b\xd5\xf1\x72\x6b\x4a\x95\xcb\xe8\x46\xee\xd2\xca\xee\x9d\x45\xc1\xbb\x9d\xc5\x87\xaa\x72\x69\xd5\x54\xfe\x7c\x2e\x46\x6f\x36\x7e\x12\x9e\x64\xa5\xd1\x28\x06\x00\x37\x10\x40\x84\xac\x69\x3f\x79\xd3\x6c\x82\x33\x04\x18\x0c\x60\x09\x60\x79\xbc\x04\x0b\x88\x1b\x69\x0b\x21\x7a\x0b\xd6\x10\x42\x5e\x2d\xed\x8f\xab\x7c\x42\x34\x57\x7d\xd9\x66\x30\x0c\x68\xa8\x34\x24\x86\x46\xc0\xc2\x98\x37\x61\x88\xb0\x52\x54\xa8\x13\x7c\x54\x1e\x61\xcf\x32\x62\x90\x27\x30\x89\xa0\x6b\x7f\x0f\x50\x9f\xe2\xc2\x49\x30\x71\x1c\xe6\xdd\xaa\x4c\x81\xac\x1b\xa8\x26\x85\x15\xb1\x1b\x17\x78\x86\x16\x57\x03\xd4\x5f\xcd\xbd\x15\x61\x33\xd1\x0d\xbe\x9a\xe6\xde\x92\x7f\x8b\xee\x0c\x50\x3f\x9c\x7b\x21\x61\x18\x93\xfc\xc0\x2a\xaa\x99\x1a\xaf\xeb\x8b\xe7\x04\x21\x03\x4c\x3e\x24\xd1\xfc\x9a\xe6\x0a\x4c\x79\x49\x39\xfb\x79\x49\x4d\x72\xb8\xd3\x91\x4a\xa9\x48\xce\xd7\xf2\x9b\xfe\xa2\x0e\x1b\x31\x70\x62\x10\x6e\xa6\xb2\xf3\x8c\x17\xac\x37\x38\xe8\x12\x40\x74\x12\xff\x3a\xba\x82\x18\x82\xa8\x6e\xdc\x40\xa2\xfd\xbe\x0e\x56\x3d\xd6\x2c\x8b\x9a\x88\x56\x50\x1c\x44\x41\x9a\x20\xbe\xc5\x9c\x48\x4a\xca\x93\x93\xf5\xf2\xf1\xd7\xa3\xa8\x65\xbc\x8d\x4e\x63\x84\x3f\xef\xc9\x09\xf0\xb8\x03\x5d\x41\x3d\x93\xa8\x50\x90\x26\xcc\x8f\x12\x9a\xa1\x09\xb0\xaa\x68\x6a\x26\x0e\x44\x05\x37\x12\x27\xeb\x32\x1d\xf5\xa3\x9f\xd5\x8c\xf1\xe7\x3c\xca\x8c\x80\x12\x86\x89\x93\xca\x18\x9b\x15\x7f\x84\x7f\x91\x76\x34\x0f\xc5\xcd\xfb\xb8\x72\xf3\xfe\xb9\xb8\x0f\x1a\x7f\x0e\x17\x42\xce\xc3\x3f\xc3\x7d\xd0\x30\x71\x56\xe2\x42\xe8\xf3\xbf\xf0\xdd\x82\x27\xac\x31\xb9\xe2\xcd\x8e\x31\xd9\x41\xc2\x15\x26\xd7\x10\x59\x13\x93\x27\x90\x70\x8d\xc9\x5b\x5e\xe2\xcf\x98\xbc\x87\x84\xb7\x98\xfc\x04\x9e\x85\x31\x79\x09\x09\x3f\x61\x72\xc9\x81\x7e\x89\xc9\x0d\x24\x5c\x62\xf2\x82\x23\x3d\xc2\xe4\x5b\x5e\x75\x84\xc9\x33\xc8\xf8\x16\x93\xd7\xde\x33\x07\x3b\x98\x3c\x95\x7f\xdf\x79\x4e\x5a\xaa\xd0\x48\xdd\xbf\x75\x83\xf7\x0a\xe5\xd0\xb4\x63\xd2\x64\x6b\xd9\x5b\xe5\x52\x9a\x79\x55\x37\xd6\x24\x01\x2f\x26\xe0\x90\xde\x61\x8f\xc7\x53\x36\x18\xbb\x23\x4c\x32\x6f\x3c\xc9\x1e\xb1\x49\xd6\xef\xe3\x64\x96\x0d\xc6\xf3\xb2\xea\x2c\x9b\x97\x21\x8b\x45\x10\x50\x19\x84\x21\xc1\x45\x21\x5c\xb2\x0a\xaf\x97\x7c\x6f\xa5\xc3\x60\x9b\x65\x34\x61\x1e\xc3\x05\x26\xff\xf1\x6e\x37\xa9\xf4\x5f\x88\xfc\x45\x9e\xc6\x5b\x46\x11\x61\xe9\xc6\x1d\x91\x98\x2e\x99\x3b\x22\xe9\xc6\x0f\x22\xb6\x73\x47\x64\x93\x46\x09\xa3\xd9\xb3\x6b\xde\xae\x8b\x92\x34\xa1\xa8\x20\xff\xf2\x6e\x0b\xf2\x55\xdb\x65\x8e\xd1\x5d\x92\xd4\x3b\x9c\x19\x1d\x4e\x38\xad\x8d\x26\xe9\xa3\x64\x92\xf6\xfb\x38\x9b\xa5\x66\x37\x53\xdd\x4d\x26\xef\x83\x74\x64\xdd\x19\x5b\x45\xf9\x5c\x85\xd7\xcd\xb0\xbc\x21\x22\x2f\x1d\xec\x3c\xe1\xcb\x0b\x73\x21\xc5\xe7\x3d\xbb\x0d\x7d\xe6\xab\x28\x15\xe0\x74\x9e\x43\x57\xef\xbf\xb1\x55\x65\x93\x6e\x36\x34\x7b\x2e\x23\x04\x23\x22\x0a\x35\x95\x79\x91\x86\x14\x11\xe1\x55\xcd\xcc\xf5\xb3\x2c\x7d\xdf\x96\x99\x53\xf6\xca\xa8\x6d\x5d\x3b\xd1\x5e\x8f\x0d\x4b\xd8\x52\x30\x7a\xe7\xb0\x8a\xea\x57\x18\x81\x94\x05\x3d\x4a\xd8\x70\xbb\x09\x7d\x46\x5f\x59\xd8\x3b\xe2\xb2\xaa\xd2\xfe\x93\x12\x3f\xab\x79\x36\xd4\x98\x7b\xb4\x5a\x4f\x80\x87\x3b\x96\x8b\x34\x8c\x96\x11\xcd\x10\xb9\xa5\x89\x50\x87\x75\x47\x52\xb7\xf0\xd7\xd1\x88\x2c\x13\xb7\xca\xa6\x13\xe1\x59\x48\x8c\xbb\x9e\x51\xe3\xd6\x06\x26\x88\x1a\x73\x93\x08\x1f\xb4\x36\x12\x57\x94\xbd\xdc\x70\xb8\x79\x93\xd9\xc3\x6d\x59\x5b\x8d\x98\x4e\x21\x60\x2d\x96\x3f\x93\xf8\xaa\x7c\x2b\x95\xa8\x45\xf1\x35\x1c\x1e\x34\x0c\x33\x95\xac\x65\xe7\x73\x77\xe7\x00\x4f\x56\xc5\x74\x06\xb9\x85\x61\x6c\xcd\x87\x49\xb6\x93\xc4\xc0\x1b\xc3\xd9\x35\xe6\x82\xd0\x58\x75\x4a\xa7\x15\x98\xc0\x32\x78\x0d\xf7\x08\x65\xbd\x71\x41\x1a\x26\xca\x55\xd4\x61\xa5\x16\x70\x48\xad\x8e\xaf\x20\x20\x80\xdb\x68\x5a\x62\xd2\x1d\xef\x89\xb8\x68\xe2\xd3\x37\x85\x0e\x6b\xc6\x62\x66\xc9\x63\x73\x2e\xeb\xea\x21\xe5\xa3\x63\x94\x82\xeb\x8f\x1c\xbb\xff\x69\xc5\xeb\x95\x9a\xcf\x16\xdc\x0c\x6c\xd4\x47\x7d\xb9\xd7\x60\xc3\x82\x38\xd4\x65\x3d\xee\x95\x1e\x5b\xd8\xfb\x1a\x4a\xee\xfe\xab\xa1\x95\x97\x5b\xf6\x72\xf9\xb7\x74\x9b\x84\x7e\x16\xd1\xfc\xb5\x60\x4d\xa7\x76\x03\x9a\x58\x45\x21\x6d\xe9\x46\x48\x73\x96\xa5\xbb\x57\x15\xee\x65\x82\x57\x53\xa7\x72\x7b\x3d\xa7\x9a\x34\x94\x60\x9c\x92\xc1\xa8\x2c\xb8\xf9\xaa\xb1\x93\x26\xae\x53\x6d\xb5\x11\x35\x47\xb9\xb2\x16\x90\x0c\xaa\x22\xf2\x12\x7d\x03\x2e\x0d\x64\xe8\x2e\xb1\x04\x26\x49\xaf\xd7\x84\x36\x6c\x27\x2f\x86\xbe\x93\x10\x2a\xcc\xe3\x24\x9b\x70\x70\x03\x07\x0c\x56\x94\x4b\x79\xdf\x03\xea\xc7\x86\xa8\x36\x42\x76\x75\x07\x8b\x98\x1f\xef\x9d\xe3\x56\x00\x81\x92\x2f\xbe\x8a\x42\x51\xbb\xe9\xea\xbe\xc2\xb8\x20\x86\x86\xfe\xb2\x4c\x5a\xab\xa3\x03\x45\xab\x89\x56\x0d\x8b\x95\x09\xc8\x66\x4a\xaf\x77\xe3\x98\x56\x79\x06\x4f\xa3\x26\x7f\x13\xe2\x22\xf8\x32\x9e\x1a\xa5\x2d\x66\x0a\x96\x86\x56\x8a\xc2\xa4\x46\x83\x2d\x10\xa6\x0d\xc5\x87\x82\xd3\x81\x2c\xf2\x6d\x94\x33\x9a\xd0\x2c\xd7\x6e\x89\x2a\xa4\x2c\xae\x09\xaa\x65\x65\xe1\xe6\xed\x92\x53\xbd\x1a\xeb\xae\x67\x5e\xa5\x57\xa7\xa0\x46\x06\xc4\x98\xe0\x7f\x45\x71\xfc\xbd\xf0\xfb\x6c\x1a\x18\xbc\x73\x1a\x3c\x7d\x48\x19\x01\x72\x5a\x56\x4a\xb3\xb9\x82\xb4\x93\x31\x6d\x30\xcb\x93\xb4\x88\x6e\x14\xe5\x42\xc6\xa2\x78\x4a\x67\xa3\xb9\x4b\xb1\x03\x66\xbe\xca\x64\xa2\x94\x44\x88\xb8\x91\x86\x0c\x7b\x17\x70\xb0\xb1\x2b\xdb\xf9\x9a\x1b\x3b\x98\xa4\x36\x77\xd3\x25\x9b\xb8\x9e\x83\x89\x3d\x7c\x6e\xc3\x90\x12\xe0\xa7\x70\x8e\x71\x2d\xa4\xb5\xf8\x52\xc1\xb9\xe4\xe2\x0e\xdf\xd9\x04\x7b\x81\xdb\xf1\xd4\xb2\xcd\x74\xb0\xf3\x15\x41\xe6\x39\x09\x11\x43\x74\x40\x8b\x94\xb1\x74\x8d\x2a\x12\x43\x77\x44\xaa\x4b\x4b\x0b\x94\x96\xd8\xd0\x1d\x17\x78\xf2\x62\xe8\x97\x14\x93\x97\xc6\x51\x7f\x33\xcf\xad\x55\x78\x24\xf1\x2e\x1c\x71\x2c\xad\x66\xa1\xb9\x3e\x26\xa6\x95\x43\xe2\xeb\x43\x76\x87\x2d\x75\xbe\x22\xb0\x57\xb7\x74\x88\x13\xfe\x94\xb9\xb4\x20\xc2\xd8\x09\xec\xb6\x5e\x89\x23\xfe\x0f\xc2\xbf\x3c\x0c\xee\xbf\x8d\x8b\xa3\x8d\x54\xff\x98\xbe\x74\xc5\x7a\x2c\x5d\xcb\x6f\x0c\x13\x00\x3d\xdc\x4d\x89\xaf\x32\xba\x8c\x6e\xcc\x2c\xa0\x85\x46\x48\x7c\x4b\x84\x99\x87\x44\x7d\x25\xfb\x6a\xf8\x4e\x39\x76\x57\xe9\x96\x9b\x5f\xad\x5e\xd8\x18\x8f\x2b\xc4\xad\xd8\xc6\x56\x5a\x98\x08\xea\xbb\xb5\x39\x26\x4b\x3f\x8e\x17\x7e\xf0\xee\x95\xd5\x95\xf6\x8a\x70\x7b\xc5\xeb\xc5\xd1\xa6\xc4\x55\x2b\x0a\xdc\x57\x43\x8e\x79\x76\x45\x19\xff\x69\x22\x5b\x8a\x9c\x06\xb2\x0b\xbd\xa4\xd4\xe4\xb5\x37\xff\x6a\xe8\x4b\xc7\x77\x69\x4e\x43\x28\x28\x6c\x17\xfd\x90\x1a\xc3\x56\x3a\xb5\xdf\xe8\x9b\xc3\x1f\x2c\xc7\xfb\x05\xf9\xce\xbb\xad\xb7\x8c\x84\x95\xdf\x2b\x3f\x03\xc9\xcc\x58\x4b\x70\x3d\x66\xcc\x51\x77\x4c\x4a\x53\x47\x39\xde\xa3\x86\xa1\x44\x7c\x94\x90\x18\xab\xee\xc8\x18\x25\xb4\x48\xc3\x1d\x32\x86\xe4\xb6\x28\x3b\x66\x30\xc7\xe2\x80\xaf\xfe\x50\x6a\x53\x7e\xa8\x38\x73\xc7\x05\x79\xfe\xc1\xd6\x89\x94\x5d\xc2\x24\xc2\x29\x2a\xb1\xbf\x2d\x6b\xc2\xa0\x74\x3d\x75\x55\xa9\x74\x75\x62\xa5\x56\xb7\x56\x46\x31\x35\x38\x5e\xf9\xb3\xad\xa8\xb4\xac\x94\x13\xa4\x6c\xdd\x8a\xd2\xd6\x31\xbe\xf3\x13\x04\x15\x88\xa0\xd7\xeb\x2a\xb8\x53\xd5\x90\xca\x93\xcf\x0e\xee\x2a\x41\x49\xf1\xe9\x2d\xb5\xe4\x1e\xf5\x29\x76\x46\x3e\x9e\x79\x7b\xce\x6c\x34\x3f\x98\x29\xdc\xf4\x9e\x50\x44\x6c\xd9\x36\x2d\xd4\x4c\x16\x59\x99\x57\xf7\x6d\x4a\xa7\x72\xcc\x5f\x0d\x97\xd8\xa1\x18\xb8\x71\x85\x50\x1a\x4e\x0e\x36\x5c\x59\xe5\xa9\x5a\x3d\x2d\xb5\xcc\x96\x4c\x59\x42\x55\xc3\x05\x69\xf7\x65\xa6\x86\x41\x38\x29\xd3\xd4\x56\x9d\x96\xf2\x11\x16\xcf\x56\xcf\xb5\xca\xf3\xbf\xe6\x0a\x85\x21\xed\x3c\x55\x9e\x0f\x8f\x3e\x3b\xd1\x3a\xdf\xc4\xbc\x4e\x48\xcb\x00\x18\x3e\xe8\x82\xa3\x0d\x09\x3c\x87\xca\x21\x22\xca\x24\x15\xc3\x35\x5a\x8d\x0b\x81\x3f\xc9\xca\xa6\x24\xbc\x25\x5b\xbb\x11\xdc\xb2\x69\x16\x07\x37\x6d\x95\x9d\xcf\x78\x81\xec\xd0\x72\x5c\x4d\xa1\x1a\x43\xec\x8d\x1a\x6b\x25\x3b\x5e\x43\x0d\x1b\x11\xd1\x39\x30\xb9\xb6\xc3\x76\x3c\x31\xf1\x34\x83\x5a\x28\x25\x77\x8b\xdd\xa8\x32\x36\x15\xcc\x16\x89\x51\x41\x44\x5d\x84\x13\x54\x1b\x12\xe1\xaf\xd9\x1c\x10\x24\xf5\x5d\x66\x04\x10\x3d\x18\x48\xa9\xca\xcc\x5c\x15\x02\x44\xa9\xd3\x09\xd2\xa3\x00\x5e\x8c\x2a\x43\x00\xe6\xda\xa2\xff\x65\x1c\x10\x2b\x36\x88\xc6\x08\xcd\x8d\x90\x1d\xaf\x86\x2b\xec\xe4\x0e\x76\x04\x7e\x88\x6c\x30\x61\x98\xfc\x54\xcb\x5f\x90\xed\x74\xab\x4d\x39\x10\xb2\x8c\x86\xf5\xd0\x61\xf2\xd2\xb3\xf6\x0f\xb9\x7b\xa9\xbf\x41\x21\x76\x2b\xad\x8b\xf1\xc9\x82\xae\xfc\xeb\x28\xcd\xdc\xb8\x20\xf2\xb9\xe2\xcb\x6b\x9a\x2d\xe3\xf4\xbd\xdb\xb0\x8b\x5e\x15\x05\xb9\xc0\xe4\xd2\x3b\xb2\x4d\x11\x88\x08\x62\xc4\x1c\xd9\x4d\xaf\x9b\x63\x8e\xf0\x8c\x86\x98\x23\x51\xed\xa2\xe1\x87\x7a\xcc\x91\x4b\xf2\x16\xcc\x7a\xd3\x9a\xd9\xad\xa4\x45\x78\x59\x51\x60\x52\x87\xf6\x37\x52\x97\x2c\x2b\x9c\xc9\xd8\xc0\x5f\x1a\xf2\xc2\x93\xa2\xf9\xd9\x4c\x46\x97\x24\x83\x6b\xed\x9d\x7c\x4c\x56\x92\xbb\xaf\x16\x24\x0c\x4e\x7b\x1f\xc5\xcb\x09\x71\x92\x90\x27\x87\xcc\xb8\x7b\xfa\x89\xa0\x9b\x41\x49\x49\x6e\x5a\x90\x84\x74\x57\xbd\x5e\x03\x24\x79\x91\xc7\x41\xf9\x80\x5b\x09\xe6\xbd\x04\x2d\x95\x59\xe2\xa1\xce\xc1\x03\x5c\x47\x71\xc2\x92\xb3\x9b\x5c\x58\x8c\x99\xe2\x97\x70\x14\x95\xfb\xa7\x32\xd2\xb3\xdf\xc7\xea\x75\x35\x95\x4e\x21\x4d\x46\xea\x60\x77\xa1\xbb\xf3\x2a\xcd\x98\x1f\x3b\x87\x47\x4a\x9e\xad\xbe\xa3\xcb\x82\x34\x02\x94\x98\x55\xb7\x19\x47\x46\x7d\x91\x6f\xe3\xac\xb7\xa2\xcf\x8d\x2b\xab\x7f\x93\xe7\xf6\x95\xd5\x77\xb0\xff\x7f\xe3\x3d\x27\x5f\x7b\xb7\x9b\xba\x6c\xed\xbc\x1a\x2e\x70\x8b\xa0\x6c\x0b\xd3\x15\xf1\xbf\xb4\xdd\xd4\x29\x0d\x67\x87\xf3\xc5\xea\xa0\xe9\x54\x02\x87\xfb\xc6\xf3\x4a\xfb\x49\xe6\xc0\x71\xa9\xf1\xb8\x22\x03\x68\x69\x69\x9e\xf3\x2f\x50\x10\xea\xce\x1c\x38\x50\x85\x34\xf6\x77\x8d\x7d\x93\x06\x83\x2b\x39\x2a\xd2\x96\x50\x03\x16\xdf\x05\xb6\x0f\x43\x8d\x47\x94\xf3\xce\x53\xda\xfe\xbb\xa1\x3c\xf4\xaf\x52\x51\xbd\xb4\x22\x2c\x8b\xae\xae\x68\x66\xf6\xce\x3e\xd8\x58\x27\xae\x82\x7c\xef\x89\xde\x8d\x44\xa7\x3e\x1f\x15\xe4\x9f\x9e\xf1\x02\xcb\x3a\xad\xe8\x41\xed\x8e\xe5\x98\x7d\xaf\x06\xde\x3a\x6d\x28\x24\x50\x10\x47\xc1\x3b\x1d\x29\xcc\x78\xf0\xf8\xa3\xfd\x26\xb7\xd7\x73\x28\x5f\xb9\xfb\x3d\x53\x6b\x36\x87\xc7\xe9\xba\xc2\xdf\xad\x0a\xe2\x68\xce\x6b\xf4\x7a\x0e\xf3\x66\xbc\xe3\xbd\x1e\xd3\x56\x60\x6c\xb8\xe4\x52\xbd\xf5\x14\x42\x56\x15\x2d\xab\x83\xfc\x3f\x3e\xf4\x88\xf3\x56\x2c\xbe\xdc\x9b\xcd\x49\xa2\x2e\x16\x05\xf3\x52\x8a\x48\x50\x44\x24\x43\x3f\x0c\x65\x3a\xa8\x52\xbc\x5a\x4a\xdb\x49\x64\xe5\x27\x61\x4c\xbf\x4a\x03\xb8\x05\x54\x2e\x09\x1a\x52\xdb\x00\x64\x74\x9d\x5e\xd3\x4a\xe3\xf5\xc4\xb6\xea\x62\x86\x3d\xf5\xa3\xf5\xc0\xb4\x4a\xdf\xff\x2b\x62\xab\xaf\x38\x61\x78\x95\xef\xd6\xbe\x45\x21\x35\x2b\x59\xdf\xed\xa7\xb8\x8b\x74\x9b\x53\x2e\x3e\x5c\xa6\x69\xcc\xa2\xcd\x53\xf1\x12\xda\x3b\x90\x77\x04\xd8\xb7\xd4\xbf\xa6\x6d\xd0\x1a\x32\x0f\x8d\x82\xec\xfc\xa1\x3e\xcb\xae\xb6\x23\xf5\x2c\x0f\xfe\x41\x77\x5f\xa5\xef\x13\xcf\xfe\xfc\xc0\x13\x70\xeb\xb1\x76\xf8\x36\xca\x2f\xd2\x6d\xc2\x68\xe8\x75\xc7\x0d\xc7\xdc\x53\x8f\xa2\x17\x55\x45\xaf\x38\x19\x19\xd0\x47\xc4\x50\x3a\x0b\x0a\x3c\x4d\x65\x5c\x83\x34\x56\xdb\x70\x95\x96\xd5\x99\x4a\x2f\x4f\x58\x84\x90\x14\xc4\xd4\xcf\x5e\xaf\xd2\xf7\x97\x42\x18\x54\x45\x21\xfd\x9b\x28\xa4\x3a\xbd\xf8\x39\x4f\xf6\x07\xe9\xb8\xf9\xc0\x28\xd9\xaa\x8e\xfa\x22\xdd\x98\xe2\xc7\x83\x31\x6f\xb0\x2c\xa8\xf8\xb4\xba\x4f\x78\xbb\x2a\xbb\x25\x0f\xec\xf5\xde\xd6\x85\x2a\x1b\xa8\x4a\x13\xc2\x2b\xb0\x02\x07\xe3\xe2\xf0\x12\x6a\xf1\x72\x72\xf7\x9e\xe4\xe5\xc4\x99\x3d\xb1\xe7\x93\x0e\x37\x34\xcb\xa3\x5c\xf7\xca\x1c\x00\x8f\x4b\x97\xb2\x28\x64\x96\x0b\x11\x78\x3b\x2d\x85\x38\xe0\x42\x0e\x9c\xe0\x10\x56\x7d\x35\x56\xa6\xd9\x3b\xf4\x2c\x0f\xfc\x0d\x08\xa0\x74\xf8\x8e\xee\x24\x76\xbc\xae\x7c\x63\xd9\xa0\x34\x10\x22\x7d\xc3\x3d\xc8\x84\xb5\x04\xfc\x66\x53\x06\xb1\x57\x6b\x81\x5d\x61\x27\xd4\x96\x2d\x54\x89\xa2\x6f\x37\xe9\x86\x8f\xad\xa7\xf4\x1f\x82\xd3\x1e\x44\x02\xb6\xf6\x49\x5b\x04\x59\x36\x8d\xf2\x17\xfe\x0b\x87\xcd\xe8\x1c\x4f\xbf\x9f\xd1\xb9\xcb\xe0\x9f\x42\xb1\xbf\x8a\x09\x50\x9d\x88\x20\xf9\xf0\x62\x6c\xda\x48\xe9\x94\xda\x19\xfb\xbd\xd2\x5e\x08\x7f\x9c\xb4\xd7\xa3\x82\x89\xe4\x34\x7c\xe5\x83\x3d\x78\x93\xfd\x91\x55\xc6\x30\x9d\x33\x52\x1d\x3c\x69\x47\x84\x93\xde\x6c\x34\x17\x32\x40\x63\x91\xc2\x5c\x25\x14\x17\x45\x6d\x83\xac\xeb\x8e\x4e\x5f\xa4\xe6\x2a\xa8\x91\x73\xb9\xf5\xb4\x90\x33\x3c\x6d\x17\xd4\x0c\x5b\x51\x9b\x47\x7e\xb9\xde\x9d\x83\xa8\xb4\x4b\x3c\xf6\x08\xe8\xe6\x0e\x8d\xc0\x49\x8b\xfb\xe3\x2d\x68\xd8\x72\x2a\x0d\x98\xac\x17\xf2\x2c\xc8\x26\x86\x4d\x73\xa1\x62\x68\x24\xb5\xf1\x3a\x02\xd7\xe8\x4e\x53\x0f\x4b\xb8\x4d\xc2\xe0\xc1\xc5\xac\x58\x6d\xbe\x89\x23\xe6\xa0\x0e\xc2\x13\x56\xf2\xdd\x98\x5e\xf9\xc1\x4e\x32\x5e\xa7\x36\xfb\xfb\xfd\xdf\x4b\x05\xa1\xb5\xa1\x62\x3c\x3d\x7b\x6f\xb1\xe9\xaa\xfb\x63\x15\xb4\x64\x55\xf2\x1a\xdd\x22\x16\xce\xf3\x1a\xb0\xd3\x04\x6f\x16\xc4\xae\xd1\x41\x71\x02\x11\xfd\x6b\xed\xcb\x1d\xf6\x49\x13\x8f\x43\xf8\xd6\x90\x2b\xc4\x51\x00\xc4\x94\x97\xc9\xa5\x14\x4f\xaa\x86\xa8\x16\x7e\x0d\x0f\x8e\x32\x7c\x9b\x69\x30\xea\x3e\x5f\x56\x2e\x94\x8a\x85\x0b\x45\x1f\xa3\x1d\x03\x52\x73\x53\xd5\xa3\x8d\x41\xeb\x8a\xd1\x5b\xc4\x58\x57\x5c\x37\x91\xe9\x60\x0c\x7b\xa9\x9e\xca\xb5\x9f\x6c\xfd\x18\xf1\xd9\x72\x68\xd3\x0c\xf3\xed\xa0\x89\xb2\x71\xaf\x17\xca\x05\x53\x1f\x33\x75\x46\x15\x73\x58\x5f\x5d\xa4\x3b\xaa\xc8\x92\xea\xca\x43\x8d\x9a\x3a\x74\x9a\x48\x99\xf2\x8c\x18\x80\xda\x9c\x3b\x68\xcd\xa5\x26\xe1\x89\xbe\x4e\x2b\x65\xbb\xad\x35\xb7\x4c\xa1\x6d\x92\x1e\xaf\xc8\x45\x20\x8d\x0b\x5c\xc2\x1c\xc3\x05\x0a\x45\x89\x81\xc9\x41\x04\xa0\xb8\x8d\x80\x68\xb7\xad\xc2\x3b\xba\x0b\xd3\xf7\x0a\xbe\x29\x45\x41\x3d\xb1\x43\x36\x1c\x54\x6b\xd2\xbf\x9e\x04\xc7\x10\xfd\xef\x38\xb2\x87\x2a\xb7\x0f\xee\xa1\xba\x87\xbb\x79\xa8\xe6\xa1\x09\x38\x50\xa3\x69\x0e\x34\xb1\x37\x2d\xdc\x53\xe8\x9d\xcf\x85\x79\x3a\xab\x5f\x39\xb5\xdc\x92\x49\xee\xda\x1d\xe1\x09\x55\x16\x43\xcd\x33\x76\xf0\xb0\x46\xa7\xc2\x62\x67\x99\xa5\x6b\xce\x49\x67\xf3\x03\xc2\x46\x6b\x8e\xdc\x1e\x14\xd4\xd9\x68\xae\xa9\xd3\x6e\x1d\xfa\x2b\xb5\x1c\x0d\xf6\x22\xa6\x64\x2c\xb5\xa6\xfb\x7d\xb7\x72\x16\x9d\xd2\x26\x3f\x8c\xe6\x9e\x55\x0a\x83\x8d\xfa\xef\x66\x41\x59\x9d\xb0\xb7\x71\x3c\x69\x38\x34\x4f\xce\xf6\x3b\x67\xeb\x62\xe1\xbe\x40\x5e\x0a\xe6\xd6\xc5\x5d\xd0\x78\x01\x17\x5b\x97\x0d\x27\xde\x08\x2e\x1b\xee\x00\x43\xcf\xbc\xfa\x5b\x79\xa6\x45\xdd\xc2\x53\x57\x91\x70\x55\x08\x21\xf8\x2f\xd4\x8d\xe5\x55\x49\x7a\xed\x3e\xf3\xbe\xc6\x46\xac\x0e\xb8\xda\x5a\x8a\x30\x19\x66\x52\x6a\xbc\x36\xa9\xab\xfd\xbf\x31\x1f\x97\x30\xa5\x62\x3f\x87\xd6\xe4\xb1\xdf\x37\x54\xa8\x79\x83\x46\x3d\x30\x6e\x7c\xea\x4a\xea\x6d\x4d\x45\x5e\xd3\x8c\xef\x0c\x4d\xbf\x69\x1e\xb3\x52\x2a\xe7\x85\xa1\x31\x4f\x84\x2e\x76\x2d\xd4\xc0\x17\x45\xc3\x85\x95\xb8\xf0\x68\x0e\x1e\x62\xdc\x80\x18\xaa\xfe\x6b\x19\xe1\x87\x89\xb3\x3f\x22\x86\x62\x43\xdd\x93\xb5\x68\x3a\x88\xa9\x3b\xb0\xca\x36\x68\x13\x48\x9a\x48\x66\xea\xd6\xd8\xab\xe1\x7a\xd0\xba\x5e\xf9\x87\x71\xbd\xf2\x35\xf9\x87\x7d\xbd\xf2\x4f\x58\x3f\x9f\x78\xff\x20\xff\xd3\x20\x44\xc3\x75\xa9\xee\x93\x38\x36\x91\x1a\x29\x63\x92\x58\x25\x07\xb0\xc2\x10\xa9\x2e\xb5\x03\xb4\xf6\x49\x75\xb4\x29\xb9\xad\xce\x32\xab\xde\xa2\x24\xf0\xe0\xe9\x7f\xac\xee\xfd\x4f\xe5\xc1\x93\x61\x7b\xc4\xd2\x0d\x32\xf4\xf7\xa3\x1a\xa5\xa1\x45\x3e\xd0\x9d\xd5\x0a\x7c\x90\x63\x3a\x42\x82\x28\x26\x6c\xe8\x7b\xff\x53\xcc\xe7\x78\xf2\xff\x7b\xf0\xe0\x4f\x9d\x3c\xdd\x66\x01\xbd\xf0\x37\x9b\x28\xb9\xfa\xfe\xbb\x6f\xbd\x87\xc3\xc5\x9f\x47\x7f\xf5\x17\xe3\x2f\x87\xc1\x6a\x9b\xbc\x1b\xfe\x3b\x1f\xae\xfd\xcd\xff\x17\x00\x00\xff\xff\xe4\xfe\x08\x43\x9d\x6d\x0f\x00") -func pkgUiStaticReactStaticJs2926cad18ChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJs2B309ab18ChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJs2926cad18ChunkJs, - "pkg/ui/static/react/static/js/2.926cad18.chunk.js", + _pkgUiStaticReactStaticJs2B309ab18ChunkJs, + "pkg/ui/static/react/static/js/2.b309ab18.chunk.js", ) } -func pkgUiStaticReactStaticJs2926cad18ChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJs2926cad18ChunkJsBytes() +func pkgUiStaticReactStaticJs2B309ab18ChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJs2B309ab18ChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.926cad18.chunk.js", size: 1014130, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.b309ab18.chunk.js", size: 1011101, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJsMainBa725b9fChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\xbd\x0d\x77\xe3\xb6\xd1\x28\xfc\x57\x64\x3e\x4f\xb4\x80\x05\xd1\xa4\x6c\x6f\x76\x29\xc3\x3a\xc9\x66\xd3\xa4\xcd\x66\xd3\x78\xdb\x34\x55\x75\x72\x20\x12\x92\x18\x53\x24\x4b\x42\xb6\x14\x8b\xff\xfd\x3d\x18\x00\x24\x48\xd1\xbb\xe9\xc7\x7b\xcf\x3d\xb7\xe9\x5a\x20\x30\x18\x0c\xbe\x06\x83\xc1\x60\x80\xc4\x26\x2e\xdd\x47\xbe\xcc\x59\x78\xff\xc7\x32\x4b\xf3\x75\xc1\xf2\x0d\xed\x8f\x3e\x1e\xe7\x0b\xec\xe6\xbb\x72\x83\xe6\x73\x6f\x41\x9e\x7c\xcf\x0b\x56\xbb\x34\x14\x71\x96\x22\x4e\x04\x61\xf8\x89\xbb\x7c\x9f\x67\x85\x28\x29\x43\x13\xef\x25\xae\x88\x7f\xf5\xb2\x05\x85\x9f\x2a\xe2\xbf\xbc\xea\x89\xbb\xee\x89\xeb\xc9\xfb\xca\x3f\x8d\x7b\x3d\xe9\xc4\x9d\x35\x9f\x92\xa8\x30\x4b\xb2\x82\x3e\x55\x44\x07\xdd\x2d\xbb\xe7\xb4\x86\x11\x84\x91\x94\x14\xf8\xe9\x81\x15\x83\x8c\x3e\x55\xd3\x82\x8b\x5d\x91\x0e\x32\xb7\xa0\xe2\x78\xf4\x48\xe6\xae\x29\x53\x81\x25\x4d\x55\x80\xd1\x74\x97\x24\x67\xb4\x98\x15\x81\x2f\xbf\xa3\x88\xb6\xa9\x58\x65\x05\x92\x28\x19\xf5\xa6\xec\x86\xbb\x09\x4f\xd7\x62\x33\x1d\x8d\x18\xce\xe6\xdc\x0d\x37\xac\xf8\x42\x20\x86\x17\x23\x2a\x9a\x22\xd3\xac\xd8\xb2\x24\xfe\x8d\x23\x5c\x91\xcc\x2d\x43\x96\xf0\x7f\x17\xf1\xf9\x47\x10\x8b\xec\x4e\x14\x71\xba\x6e\x70\xe3\xa7\x1a\x96\xdd\x52\x7f\xe6\x14\xeb\x25\x72\x46\xf3\xcc\x2d\x64\x0b\xc8\xca\x2f\xdc\x5f\xb3\x38\x45\x0e\x71\xf0\xc8\xc1\x4e\x20\x41\x58\x07\x46\xb6\x45\x07\x4e\x96\x57\x17\x6f\x17\x68\x82\x03\x6e\x86\x90\x26\x41\xdc\xf0\x19\x0f\xc4\x2d\x9b\xb1\x40\x54\x56\x7f\x70\xe4\x91\x9c\x15\x25\xff\x36\x15\x28\x73\x0b\x4c\x26\xd7\xd7\x18\x7a\xa8\x93\xb4\xae\x93\x96\xdd\xa4\x65\x9d\xc4\x20\x29\x73\x19\xf1\x31\xc9\x24\x9d\x61\x92\xa5\xbc\xa7\x51\xec\xb1\x83\x54\x75\x97\xba\xca\x0c\xb7\x2a\x28\xdb\xd7\x40\xf3\xbd\x28\x58\x28\x5a\x83\x4d\x0d\xb4\x74\x1a\x65\x4f\xf1\x0a\x39\xce\x19\x45\x29\x15\x6e\x58\x96\x88\x61\x57\x64\xdf\x65\x8f\xbc\x78\xc3\x4a\x8e\x30\x1e\x0e\x1d\x51\xb0\xb4\xcc\x59\xc1\x53\xe1\x9c\xd1\x14\x2f\x0b\xce\xee\xa7\x82\x0a\x57\x45\x22\x5c\x3d\x6e\xe2\x84\x23\xa1\x07\xc2\x70\x78\xc6\xdd\x34\x8b\xf8\xf7\x6c\x2b\x63\xd7\x5c\x20\x0f\x13\x67\x99\x45\x07\x07\x63\x3d\x22\x54\xd7\x79\x64\xa0\xff\x8f\x1d\x4a\xd3\xe1\x10\xa5\xb4\x55\x22\xae\xab\x02\xed\x87\x52\xab\x72\x10\xd3\x54\xcd\x54\x8c\x14\xd4\x6e\xac\x69\xbc\x42\x29\xbd\x28\xd6\xcb\x7f\xa0\x7f\x94\xe7\x68\xee\x8d\x5f\x2f\x9e\x7c\x72\x59\xe1\x7f\x94\xe7\xe4\x77\x45\xfd\x03\x5f\xb8\x7c\xcf\x43\xc4\x30\xd6\xfd\x51\xa0\xba\x43\xd3\xb9\xbf\x20\xbe\x87\x89\x15\x33\x39\x89\xb9\x84\x18\xdc\x90\xc3\xfe\x7d\x7a\x9a\xa8\x11\x9a\x05\xff\x70\x55\x10\xcf\xfe\xbb\xb4\xaa\x98\xaf\x93\x8c\xc9\xb8\xab\x85\x4d\xbc\x45\x7b\x97\x84\xcf\x3e\x4a\xe0\xa7\x53\x7b\x2b\x30\x71\xaf\xaf\xcf\x5b\xf4\xf8\x0b\x4c\x4e\x63\x27\xbd\xb1\x97\x8b\xe7\x1a\xfe\xbf\x4d\xfc\xbf\xdc\x33\xff\x71\xc5\x9e\xed\xa5\xff\x41\x73\x36\x5e\x7d\x31\xfe\x1a\x86\xce\xa4\xc2\x9f\xfa\xfe\xf4\xb8\x79\x79\x32\x6e\x5e\x9e\x8c\x9b\x97\xfd\x04\xe0\xe7\x3f\x3e\x55\xee\xa8\xbf\xf0\x51\x3f\x05\xa3\x86\x0c\xb5\xa0\x72\x57\x14\xf1\xf6\x84\xb7\x19\x3e\x64\x73\x1b\x4a\xb3\x59\x81\x26\xd7\xd7\xc4\xfc\xf3\x70\x50\x20\xc9\x1f\xe7\xd9\xe2\x78\x9c\x7b\xc4\x23\xde\x02\x4b\x09\x04\x88\x82\x7e\xa9\xa0\x20\x41\x9f\xd8\x3f\x77\x2c\x98\x7b\x26\xf3\x82\xb0\xdf\x76\x05\x0f\xe6\x93\x2b\x2b\x6e\xc9\xe3\x35\xc4\x5d\x13\xf8\x37\xf1\x16\x64\x99\xb0\xf0\x3e\xd0\xd8\xc9\x32\xd9\x71\xf5\xa1\x32\x14\xd9\x63\x1a\xcc\xfd\x97\xd7\xe4\x6a\x42\xae\x26\x0b\x12\x1e\x58\xda\x2a\x27\x62\xc5\x7d\x93\xcb\xbf\x7c\xad\xa2\x0c\x9c\x7f\xf9\xba\x89\x5c\x17\xfc\x20\xb1\xbd\x26\xfa\x5f\x1d\xcd\x15\xb0\x07\x44\xc8\xb8\xfb\x0d\xbb\x8f\x83\xb9\xff\xea\x35\xf1\x5f\x5d\x12\xdf\xfb\x5c\xc5\x6f\xd9\x9a\xa7\x82\x05\x73\x89\xd8\x2a\x2f\x4b\xe2\x07\xae\x11\xbd\xba\x96\xf0\xe4\x4a\x67\xc9\x0a\x96\x42\xb5\xaf\xaf\x89\x7f\x55\x97\x90\x15\xe1\x26\x8e\x82\xb9\x7f\x7d\x49\xae\x3d\x32\xf1\xae\x54\x7c\xc1\x23\x83\x5d\x43\x96\x2c\xd9\x66\x69\x30\x9f\x5c\x5e\x12\xff\xda\x23\xfe\x64\xa2\x12\x1e\xe2\x2c\xe1\x22\x98\xfb\x57\xaf\x64\x8b\xf9\xfe\x82\xac\x76\xe1\xa6\x8c\x99\x2a\x4d\xb7\xe2\x3a\x4b\x22\x15\x31\xf1\xaf\x25\xd2\xa6\xc2\x93\x57\xf2\x3b\x4e\xa3\x78\x9d\x05\xf3\xcf\xaf\xa1\x4a\xde\x82\xe8\xea\x43\xef\x5d\x7a\x92\xec\x05\x49\xe2\xf5\x46\xa8\xa6\xf6\x3f\xbf\x24\x13\xff\xa5\x4c\xd3\xf1\xaa\xbd\x27\x93\xab\xa6\x67\x20\x5e\x17\xe5\x5f\x5d\x91\xc9\xe5\x2b\xe2\x5f\x5d\x35\x09\x87\x60\x3e\xf1\x7d\xa2\xff\xe9\xf8\x3c\x4e\xef\x75\x5b\xbd\x9a\x10\xff\xf5\xa5\x8e\x3f\xf0\x24\xc9\x1e\x75\x35\xe4\xbf\x09\x60\xda\x72\x33\x1a\xbc\x05\xa9\x3b\xc7\xaa\xfc\x96\x15\x99\x6c\x3c\xa8\xaa\x04\x4a\xd9\xc3\x41\x0f\x96\xc9\xab\x05\x81\x8e\x53\xc9\xba\x35\x5a\xfd\xf5\x12\x10\x5b\x44\xbd\x9e\x90\x89\x77\xb9\x20\xf9\xae\xc8\x13\x6e\xf0\x02\xaa\xba\x3b\x9a\x28\xe8\x4c\x45\x8d\xb7\x20\x65\x9c\x3c\xf0\x22\x98\x4b\x24\xfa\xdf\x82\x3c\x6e\x62\xc1\xad\x7a\x49\xa2\xbb\x95\xf5\x16\x55\x85\x1e\xe3\x34\xca\x1e\xdd\x5f\xff\xbc\xe3\xc5\x01\x13\x5b\xd0\x56\x93\xf0\xfd\xf2\x57\x1e\x0a\x37\x2f\x32\x91\x89\x43\xce\xdd\x0d\x2b\xdf\x3f\xa6\x3f\x14\x59\xce\x0b\x71\x98\xd6\x22\x1f\xb3\x64\x21\xca\xdc\x70\x13\x27\x51\xc1\x53\xe4\xb8\xce\x48\xc8\x19\x0e\x5c\x6c\x97\x24\x4a\x2e\x41\x29\x8d\xb2\x70\xb7\xe5\xa9\x70\xc3\x82\x33\xc1\xdf\x26\x5c\x7e\x21\x27\x64\xe9\x03\x2b\x1d\x8c\xdd\x30\x61\x65\x29\xc5\x1e\x2a\x88\x94\x55\x40\xa8\x7a\x8a\xe2\x82\x43\x99\x81\x93\x88\xc2\x21\x79\x56\xc6\xea\x93\x2d\xcb\x2c\xd9\x09\xee\x90\x84\xaf\x44\xe0\x11\x91\xe5\x81\x57\x61\x97\xe5\x39\x4f\xa3\x0f\x19\x62\x98\x9c\xa5\x52\x84\x7a\x93\xa5\x82\xef\x05\xc6\x52\x68\x3b\xd3\xcd\xf0\x87\x5f\x1e\xb6\xc9\x1b\x28\xfe\x1d\x4b\xd9\x9a\x17\x58\x6c\x8a\xec\x71\x90\xf2\xc7\xc1\xdb\xa2\xc8\x0a\xe4\xa8\xe4\x41\x5c\x0e\xd2\x4c\x0c\xd8\x03\x8b\x13\xb6\x4c\xb8\x3b\xf8\x76\x35\x38\x64\xbb\x17\x05\x1f\xec\xca\x38\x5d\x0f\xbe\x7d\x3b\x78\x8c\xc5\x66\xc0\x06\x2b\x96\x24\xe3\x25\x0b\xef\x07\xe5\x2e\xdc\x0c\x58\x39\x78\xbb\x57\x95\x24\x03\xb1\xe1\xa9\xfc\x53\xf0\x17\xe5\x80\xc7\x32\x34\x60\x83\x6d\x5c\x0a\x76\xcf\x07\x71\x2a\x71\x16\x83\x30\x4b\x23\xa8\x23\x4b\x06\x71\x1a\x26\xbb\x88\x93\x41\x56\xc8\x8c\x83\x9c\xad\xf9\x60\xc3\x24\x3d\x83\xaf\xde\xbf\xf9\xf0\xf3\x0f\x6f\x07\x2c\x8d\x24\x85\x05\x4f\x23\x2e\x77\x05\x12\xd1\x9f\x77\x71\x71\x5f\x0e\xde\x65\x11\x77\x1d\x3c\x4d\xe9\xb3\x95\x76\xe3\x34\x16\xa6\x3b\x52\x5c\xc1\x16\x92\xab\x6f\x9a\x02\x77\x2e\xd4\xbe\x32\x54\xad\x48\xed\x26\x45\xce\x24\x72\x30\xc9\x0c\xfe\x88\x3f\xc4\x21\xff\x21\xde\xf3\xe4\x47\x26\xe2\xec\x78\xf4\x49\x4c\x0b\xb9\x27\xbd\x8f\xc5\x97\x2c\xbc\x8f\xd3\xf5\x9d\xc8\x8a\x16\x4c\xe1\x6e\xb3\xdf\x3e\x92\x58\x3e\x9f\x96\x3d\x9f\xb4\x7c\x26\xc5\x9f\x42\x75\xf2\x3a\x8a\x66\x17\x31\x81\xb8\x82\x97\x72\x13\xc0\xdc\xc7\x38\x12\x1b\x84\x09\x73\x37\x5c\x32\x0f\x84\xb1\x82\x90\x95\x96\x75\x67\x71\xca\x0b\xd8\x46\x36\xf1\x72\x9b\x0a\x1f\xbf\x00\x14\x0b\x37\xbc\x1d\x75\x17\xff\xc6\x55\xb4\x6e\xae\x55\x92\x89\x0f\xbf\x2b\xe1\x78\x7c\xaa\xaa\x7a\xfe\xc9\xbd\x48\x4a\x0a\x92\xa9\x39\x18\xd3\xf9\x82\x24\xf4\x09\x04\xf7\x32\x98\x3b\xff\xc3\xa3\x70\x72\xe5\x39\xc4\xf9\x1f\xb6\x8a\x5e\xad\x5e\xc9\x50\xb8\xbc\x5a\x5e\x2d\x65\xe8\x2a\x62\x9f\x5f\x45\x32\xf4\xfa\xea\xca\xe3\x91\xb3\x20\x09\x5f\xf3\x34\x0a\x9e\xca\x4d\xf6\x18\x9c\x79\x24\xcd\xde\x64\xc9\x6e\x9b\x96\x81\x4f\x12\xb6\xe4\xc9\xd7\x72\x8b\x24\x04\x2f\x02\xa8\x34\xc4\x7d\x99\xed\xbf\xcc\x8a\x88\x17\x6f\x64\xc1\x81\xf3\x3f\x61\x18\x3a\x24\x34\xcd\xa3\x20\x9b\x19\x9b\x72\x47\x72\xd3\x75\x9c\x06\xd7\x44\xf6\xce\xba\xc8\x76\x69\xa4\x32\x03\x6c\x13\xf9\x3e\x67\x61\x2c\x0e\x81\xfb\xea\x9a\x94\x59\x21\x78\x04\x10\x15\xd9\xb3\x7d\x5c\x6a\x3a\x3b\xf8\x97\x99\x10\xd9\xd6\x21\xdb\x2c\xe2\x2a\x6d\x95\xa5\x42\x85\xc2\xa6\x10\x11\x87\xf7\x56\x99\x20\xc3\xac\xb2\x62\xab\x3e\xe3\xf4\x81\x17\x25\xff\xd0\x8e\xdd\xc6\xa9\x0e\xb0\xbd\x0a\xb0\x9d\xc8\x60\x83\xff\x4e\xd5\xa8\x46\x5d\x36\xc1\xbe\x36\xfb\x49\x8e\x2c\xeb\xfb\x1b\x18\x5f\x2a\xa2\xe0\x25\x2f\x1e\xf8\x5d\xce\x42\xde\x60\xf9\x0e\x76\x86\xba\xd4\x24\x5e\xa7\x1f\x64\x29\x3f\xc5\x62\xf3\x85\x6c\x8a\x1a\xee\x2b\x1e\xc6\x5b\x96\x58\x31\x72\xf4\xd4\xf4\x7f\xb0\x23\x2a\x72\x50\xed\xd8\xad\x86\xeb\x4d\xac\x16\x95\x9c\xd5\x81\x36\xe7\x65\x30\x5f\xc8\x4c\x2a\x50\xf2\x22\xe6\x65\xf0\x94\x67\x71\x2a\x4c\x77\x9c\xf9\xa4\x60\x51\xbc\x2b\x83\x4b\x92\xc4\x29\x57\x55\x9d\x90\x55\x9c\x24\x72\x4c\xc9\x5f\x33\x52\x56\xf0\x3f\x87\x94\x87\xed\x32\x4b\x02\x27\x8c\x8b\x30\xe1\x4e\x05\x19\xcb\xe0\xe9\x34\xbf\x6f\xe5\x87\x3a\x95\x82\xe7\x65\x70\xe6\x57\x64\xc9\x0a\x8b\x06\x3b\xeb\x92\x15\x2a\xe8\xf7\x50\xd1\xb4\xa8\xae\x29\xd9\x64\x45\xfc\x9b\x1c\xbe\x50\xde\x6f\xbc\xc8\x82\x33\xaf\x22\xe5\x86\x45\xd9\x23\x34\xde\x25\xd9\xc4\xeb\x0d\x08\x14\x0d\x92\x8a\xac\x8b\xd8\x9a\x3c\x6c\x99\x3d\xf0\xaf\x98\x60\x12\x4b\xa8\x6b\x7c\x7d\x25\xff\x73\x9e\x19\xf8\xd6\x34\xea\x1b\xa4\x7a\xda\x78\x6a\xcc\xbc\x33\x93\x88\x3f\xf0\x54\xdc\xa9\x05\x52\x0f\x24\x8f\xc8\x8e\xd5\x10\xaf\x34\x62\xd3\x1c\xdb\x38\x55\x13\xd6\x1e\xb4\x5b\x56\x48\x3e\x59\xb6\xbf\xea\x8e\xba\x92\xff\x39\x75\xfc\x77\x56\xeb\x86\x49\x1c\xde\xcb\x05\x51\xd6\x73\x93\x3d\xf0\xc2\x7c\xc8\x61\xf5\x8d\x69\x28\xd9\x24\xdb\x6c\x57\xf2\x2f\x42\x11\x3f\xf0\x1f\xd5\x18\xf1\xbd\x8a\xc4\xa9\xe0\x05\x53\xeb\xfb\x53\xc1\xa3\x82\x3d\xbe\x7f\xe0\x45\xc2\x0e\xdf\xca\x94\x07\x96\x04\x3e\xbf\xbc\x78\xe9\x55\x64\x93\x65\xf7\x65\xf0\x54\x55\xa4\x54\x6c\x37\x54\x3f\x3b\xf5\xb3\x55\x3f\xb9\xfa\xd9\x48\x86\x18\xc9\x3f\x2b\xfa\xa4\xc5\x83\x42\x37\x0f\x88\x09\x44\xf1\x8a\xc0\xab\xc8\x9a\x7a\xe4\x81\x7a\x64\x49\x9f\xf2\x22\x0b\x79\x59\xbe\xcf\x25\x41\x30\xce\x75\xcc\x8f\xec\x11\xba\xb3\x89\x91\x9f\x7a\xf0\x37\x91\xef\x57\xab\x52\xca\x6f\x56\x3e\x10\x04\x17\x44\xd6\xec\xcb\xba\xe3\x4d\xcc\x9d\x9a\x45\xfa\x4b\xfe\x2e\xe3\x34\x7a\x2b\x3b\xb5\x8e\xd5\xed\x01\x93\x6e\xb3\x13\x11\xec\x67\x16\x15\x39\xc0\xa2\xdc\x88\x64\x7b\xa5\x5f\x14\x74\x7e\x58\xc8\xa5\x3a\x64\x02\x09\x3c\xfd\x88\xbe\x91\xcf\xd9\x42\x0a\x4b\xc9\x01\xd4\xc9\x44\xe0\x66\x81\x79\x8b\x04\x7e\x8a\x2d\xd5\x97\xad\xb9\x9c\x2f\x48\x4a\xbd\x69\x7a\x23\x1a\x74\xa9\x5a\x89\x0a\xca\x5d\xbe\x17\x3c\x8d\xd0\x99\x47\x9e\x2a\x92\xb8\x8a\x55\xe0\xa9\x52\xb9\x8a\x79\xba\x70\x23\x26\xd8\x0c\x15\xf0\xdb\xc4\x90\x88\x27\x5c\xf0\x41\x13\x61\xe3\x2a\x88\x8c\xc7\xa4\x4e\xa5\x2a\x3f\x0e\x2c\x3c\x84\x29\x35\x77\x81\x8d\xde\x91\x55\x48\x58\xa2\xae\x96\x74\x09\xa3\xb1\xa6\x9d\xa4\x74\xec\x43\x33\x09\xea\x4d\xc5\x4d\xdc\xd4\x49\x98\x3a\xc5\x73\xb1\x50\x5a\x31\x5d\x8b\x62\x38\x44\x6c\x3c\x26\x4e\xba\xdb\x2e\x79\xe1\x50\x2a\xc5\xe5\x6c\x35\x28\x86\xc3\xe2\x56\xa9\xe2\x0a\x8c\x2b\x76\x03\xf2\x2f\xa3\xe9\xc8\xd7\x5b\x6a\x52\xca\xf6\x0b\x69\xa2\x10\x96\x64\x47\x43\x43\xca\x96\x7a\x16\x25\x6c\x2a\x46\x23\x9c\xd1\xb6\x12\x2f\x9c\x8b\xcf\x76\x8b\xe3\xd1\xf9\x9f\x97\x2f\x5f\x3a\x98\x88\xcf\x76\x94\x7a\xc3\xa1\x18\x0e\xd1\x96\x6e\x6f\xa9\x37\xdb\xde\xb8\xd7\xb3\xf1\x76\xec\x4e\x02\x2f\x18\x6f\x31\x29\xe7\x62\x41\xb5\x3e\x1a\x39\xc5\x7a\xe9\x10\x7f\xb4\x55\x04\xe5\x64\xd5\x2a\xb5\x5d\xff\x5a\x8c\x47\x39\xb4\x02\x56\xb4\xcc\x50\xae\x35\xf3\xe5\x7c\xb5\xa8\xf5\xd1\x08\x93\xd1\x68\x85\x83\x93\x66\xd1\xd0\xc3\xa1\x95\x4f\x87\xec\xdc\x98\xa8\xc2\x72\x17\x56\x01\x57\xf2\x53\xd5\x07\x6b\xf2\x40\xcf\x14\x99\x20\xdf\xe6\x38\x5e\xa1\x7c\xbe\x5e\x0c\x87\xf2\xaf\x81\xa4\x67\xfe\x14\x74\xac\xd5\x03\x94\xd5\xa0\xa1\x67\x1e\xae\xda\xd8\x25\x7b\xb7\xa0\xe4\x27\x3d\x3b\x33\x9f\x72\x99\xc0\x24\x77\x41\xde\xa0\x77\x68\x43\xee\x51\x4e\x9c\xbd\x83\x65\xec\x41\xc7\x46\x2a\xf6\xe0\x60\x5c\x55\xa8\x6f\xa0\x29\x39\x8d\x24\xa4\x24\x21\xd9\x91\x2d\xc9\xc9\x86\x44\xf4\x7b\x68\x21\xf7\x87\xf7\x77\xdf\x7e\xf8\xf6\xaf\x6f\x7f\xf9\xf6\xfb\xaf\xbf\xfd\xfe\xdb\x0f\x3f\x93\x95\x49\xfa\xfe\xed\x1f\xbe\x68\x27\xad\x4d\xd2\xbb\x2f\xfe\xf6\xcb\x5f\xbf\xf8\xee\x2f\x6f\x9b\xe9\xff\x60\x94\xf0\xe2\x86\xc3\x7c\xd8\xc6\xe9\x70\x28\xce\xe8\x78\x3d\x1c\xa2\x3a\x8a\x0a\x4c\xd8\xad\xfe\x64\xfb\xe1\x90\x9d\x51\x0b\x80\xed\x29\xc3\x95\x6c\x65\xee\x72\x16\x6e\xd0\x23\xc2\x04\xb5\x4f\x30\x44\x8d\x2b\x22\xa2\xce\xb6\x22\xc2\xdd\x95\x3c\xa2\x67\x7e\x25\x65\xe5\xd3\xb1\x84\x32\x3d\x82\xa2\x9a\x75\xd2\xa7\x9a\x85\x56\x64\x8f\x96\x6e\x9b\xdd\x92\x79\x46\x32\xc5\x09\x32\x2b\xd7\x02\x7f\x6c\xb8\xaa\x52\x48\x4e\x75\xce\x33\xb4\xa1\x76\x6e\x77\x05\x42\x99\xda\x0b\x22\xb9\x50\xe8\xa3\xb1\xa7\x3d\xc8\xbd\xd0\xc2\x32\x54\xf0\x7f\xee\x62\xb9\xfd\x3e\xf3\x2a\x4c\x36\x1a\xe8\xf0\x31\xa0\xcc\x2d\x05\x0b\xef\x8f\xc7\xcc\x95\x22\x09\x0c\x3c\xf9\xd1\x0c\xc3\xe1\x30\xb3\xc7\x17\x0c\x92\x03\x3d\x3b\x43\x56\x0e\x09\x03\x1f\x72\x44\x3e\x97\x5d\xa6\xe1\xe9\x27\xa9\xf2\x49\xc4\x57\x6c\x97\x88\xbf\xb2\x64\xc7\xa5\x70\x60\xe4\xbd\xe0\x00\x04\x43\x41\x8d\xd8\x33\x1c\x22\xcd\x85\x37\xf3\x8d\x6e\xda\xb1\xbf\x70\x0f\xa4\xfd\xbd\x87\xf9\xd4\xd3\xae\x74\x53\xd5\x3c\xa3\x95\xac\x7e\xe2\xdf\x38\x7e\xea\x8f\xa7\x06\x3f\x29\x9f\xc9\x49\x92\xbe\x04\xe0\x62\x6f\x69\x7f\x33\x81\x8c\x08\xc3\x25\x53\x33\x59\x0d\xd2\x4c\x4d\x60\x3d\x62\x3d\xc2\x68\x0a\xeb\x63\x6e\xad\x8f\x24\x1d\xd1\x52\xf5\xd0\x3d\xd5\x4c\x70\x4b\xf3\x39\x5b\x80\x8e\xf6\xec\x1e\x4b\xb4\x05\xf5\xa6\xc5\x4d\x39\x1d\x8d\x0a\x1c\xd2\xed\xbc\x58\x10\xb4\xa3\x9b\x79\xb1\xc0\xc3\x21\xda\xb9\xaa\x53\x86\x43\xb5\x6e\x84\xc3\x21\x0a\xe9\x28\x24\x71\xf9\x3d\xfb\x1e\x85\x78\xa6\xa4\x98\x20\xa4\xd4\xbf\xf0\x66\x21\x5d\xcb\xe0\xd8\xbf\xf0\x00\x72\xbc\xae\x79\x62\x08\xe8\x4c\xcf\x0e\x87\xe8\x5e\x76\x01\x51\x78\x77\xae\xdd\xcd\x90\xb5\x1d\x85\x31\x26\xc9\x3c\x1d\x15\x0b\x1a\x4a\xea\x4f\x89\x57\x88\x50\x48\x15\x18\x1e\x0e\xcf\xfc\x33\x4a\x4d\x65\xdc\x7a\xe0\x00\x1d\xfb\xe1\xf0\xc1\x34\x29\x09\x49\x88\xc9\xce\x3d\xa8\xb8\x43\x1d\x57\x17\x29\x71\xcb\x52\xdf\x0e\x87\xe9\xad\xac\xd9\xd9\xfd\xf1\xa8\x0a\x4c\xe6\xe9\xb8\x5c\x60\x25\x5e\xd8\xf4\xc8\xac\xa5\xcc\xac\x70\x4c\xe5\x8f\xbf\x50\xf0\x23\x7f\x71\x3c\x7a\xe4\x7e\x38\x44\xc9\x3c\x5d\xd0\xed\xdc\x5b\x60\xe8\xaf\xaa\xaa\xaa\x4f\x33\x87\xde\x71\xf4\xfc\xb0\x73\x52\xbe\x66\x52\x72\x1d\xff\xec\x50\x39\xac\xeb\x2d\x23\xb4\xa2\x12\xad\x12\x53\x16\x93\xc3\xc6\x54\x8e\x2d\xa0\x33\x92\x39\x1b\xf9\x0b\xa2\x7e\xe8\x38\xc4\x53\x8b\xdb\x35\xa2\x64\xc3\xf0\x0c\xa7\x7b\xb6\x32\xff\x5e\x4d\x7a\x59\x21\x4c\xa0\xf7\x34\x22\x77\x34\x22\x1f\xe8\x8a\xfc\x4a\x57\xd3\xe7\x2a\xa6\x27\xb7\xaa\x5b\xcf\x0c\x90\x55\x6c\xcd\x01\x18\x45\x3b\x7b\xf8\x84\xb0\xe4\x84\x7a\x69\x82\xb1\x84\xc2\x9b\xf7\xc3\x21\x7a\x4f\x43\x4c\xc2\xdb\x0f\xc3\x21\xfa\x40\xe5\xf8\x81\x41\x85\xc2\x9b\xbb\xe1\x10\xdd\xa9\xc4\x5f\x87\x43\xf4\xab\x4c\x84\x59\x68\xb1\x4d\x35\x55\xdf\x4c\xcb\xc7\x58\x84\x1b\x93\x02\xdb\x3b\xfc\x14\xb2\x92\xab\x3d\x5e\xf0\x86\x7a\x4a\x46\x98\x42\x24\x6c\x0b\x64\xec\x58\xe7\x30\x5b\x46\x0d\xa4\x67\x51\x0f\xc0\xc5\xa4\x3a\xe1\x9f\x33\x74\x37\xa2\x6f\xc8\xaf\x23\xfa\x66\xd4\x01\xc7\x01\x7a\x2f\xd3\x3e\xf4\xa5\x55\xcd\x6c\x7a\x4f\x3e\x60\xd2\x4c\xa4\x3b\xf2\x2b\xae\x7e\xcf\x6a\x4c\x25\x53\x68\x3e\x65\x2f\x61\x6b\x81\xa6\xab\x26\x99\xed\x55\x72\x85\x71\x85\x2c\xa9\xff\x5e\xe1\x54\x52\x3e\x9f\x8b\x91\x23\x49\x70\x16\xe6\xb8\x27\x03\xfd\x70\x23\xd6\x31\x90\x6d\x99\x9b\xe2\x5a\x12\x3e\x6b\xa7\xf9\x98\xb0\x06\xff\xa3\x7d\x24\xbf\x2e\x78\x8e\x36\x66\xab\x12\xb5\x6a\xd6\x80\x49\x12\xeb\xfc\xef\x6b\x55\xb5\x94\xab\xe8\x53\x65\x09\x02\x9b\x96\xac\xc1\xe8\x46\xca\x1a\x52\x10\x9f\x3b\x7b\x67\xc4\xdc\x74\x41\x99\x1b\x4e\x72\x24\xf7\x40\x2b\x81\x6d\x21\x22\xea\xe4\x8d\x9a\xbc\x87\x4e\x5e\x91\xe5\xf5\x31\xfc\xe0\x21\x8b\xa3\x81\x77\x46\x69\xea\xee\x7d\x09\xef\xee\x21\x88\x89\x95\x72\x50\x29\x07\x08\x62\x92\x36\xd5\xb9\x43\x2d\xb3\x89\x39\x1b\x4b\xbe\x86\x54\x80\x3e\xa5\x01\x23\x8d\xfa\x5b\x50\xba\x99\x39\x7b\x27\x70\x0e\x0e\xc9\xf4\x0e\xb5\xb3\xd9\x02\x98\x44\x8d\xa3\x20\x51\x03\x08\x57\x72\xcf\x24\x31\x36\x05\x7f\x40\xf8\xe9\x9b\xe1\x30\x4c\x38\x2b\x3e\xc4\x5b\x9e\xed\x04\xfa\x46\xce\xb6\x5d\x2a\x37\xa0\xc8\x81\xdd\xfa\x36\x7b\xe0\x0e\xf9\xe7\x49\x7c\xc2\x99\x4c\xf8\xd2\x4e\x00\x4d\x80\x43\xfe\x82\x41\x8c\x33\x1b\x55\x32\xdf\x2d\xac\xee\xfb\x55\x76\x9f\xd9\x46\x0a\xca\x5d\x5d\x0d\xc2\x28\x77\x41\x75\x76\x3c\xc2\xde\x52\xb8\x8d\xaa\x4c\x32\xfa\xc2\xc4\x28\x1d\x07\x18\xf1\xd0\xf4\x78\x44\xce\xde\xa1\x94\xbb\x75\x2b\xcd\xde\x31\xb1\x71\x57\x49\x96\x15\xa8\x54\x4a\xdc\x0b\xc4\x74\xef\x1e\x8f\x3e\xc6\x81\x9a\x17\xb1\x9d\x6b\xe4\x7c\xb1\x8f\xcb\x81\x33\xb2\xe3\xb8\xab\xe3\x1d\x92\x50\x67\x95\x64\x62\xdc\x06\x70\xc6\xb2\x79\x07\x3d\x29\x90\x55\xa5\x3a\xa3\x98\x84\x54\xb8\xab\x2c\x15\xc7\xa3\x42\x23\x6b\x3a\x86\xea\x0c\x40\xbd\x27\x43\x0e\xd9\x51\x6f\xba\xbb\x61\xcd\x48\xdc\xa9\xa1\xbe\xa5\x6c\xbe\x83\xf3\x94\xad\x6a\x03\x15\x9d\xd3\xd2\x5d\x73\xd0\x11\x7f\x9b\xae\x32\x94\x10\x9d\x4c\x42\x90\x09\x48\x86\xa7\x29\x85\xe6\xd8\xb2\x3d\x4a\x49\xae\x9a\x63\xe4\x63\x52\x34\xf1\x05\xc9\xb5\x86\x1b\x57\x15\xb7\x9a\xbd\xd3\x07\x29\xe1\x76\x0f\x74\xfb\xa3\x68\x3a\xf9\x0d\xaa\x39\x88\x8d\xa2\xe9\x55\x95\x07\xfa\x54\xf7\xbf\x6b\x14\x8e\x24\xa3\xd0\xa3\x54\x34\xad\x49\x62\x0b\xb0\x51\x87\xc2\x0e\x7a\x5d\xc4\x91\xdb\xa8\xbb\xc8\xce\xc4\x59\x5a\x32\xb2\x35\x91\xa7\xca\x32\x92\x4b\xe1\x6f\x2d\xff\xc8\xed\x25\x59\xca\xfd\xa3\xe6\xb5\xd9\x6c\x13\x44\x2d\x6e\xcb\xf0\x13\x30\x35\x2d\xd6\x33\xd7\x56\xd7\x62\x60\x77\x94\x8a\xd9\x92\x9e\x79\x01\x3b\xa9\x1b\xa5\xa0\x35\x58\xce\xd6\xf4\xcc\x0f\x72\x7a\xe6\x63\xb2\x3c\x1e\x91\xdc\xb3\x62\xc9\x89\xc9\x1a\x44\x05\xcf\x08\x7c\xf1\x70\x88\x62\xfa\x30\x73\x56\xbb\x24\x71\x82\x6b\xac\x85\xc6\x51\x8c\x8f\x47\xb4\x1b\xd1\x51\x8c\x49\x36\x43\xe9\x88\xee\xa4\xec\xb3\x25\x46\x01\x4e\x69\x31\x43\x2b\x57\x7d\x8d\x68\x3a\x0a\x89\x70\x97\xd9\x9e\x3e\x89\x2c\x0f\x4a\xdd\xe1\x63\x03\x41\x36\x5a\x05\x5d\xe1\x00\x59\x80\x2b\xc9\xec\x46\x61\x93\x4c\x54\x8c\x44\x88\x71\x80\x98\x2c\x58\x2d\xaa\x50\xa2\xce\x0a\xea\xb6\x15\x30\xd9\x51\x48\x60\xd0\x05\x4c\xe6\x85\x18\xca\x46\x21\x0e\xd0\xca\x85\x75\x17\x3e\x89\x9d\x51\xcf\xda\xb1\x06\xa8\xf3\xcb\x3d\x65\xd3\x96\x05\x11\xd6\x58\xa0\xb1\x42\xe1\xe6\x2c\x8a\xe2\x74\x4d\x77\xfa\xdb\xee\xf1\x1f\x74\xda\x96\x08\x37\x4e\x53\x5e\x6c\xb3\x52\xd0\xbc\x19\xb8\x3f\xe8\x3d\x3b\xec\xd8\xa9\x5c\x6a\x33\x33\x72\x64\x87\xd7\x9a\xb4\x70\x10\xa7\x83\x95\x82\xad\x07\x9c\xd2\xcf\x1e\x8f\xde\x74\x35\x0f\x17\xf4\x44\x01\xb2\x9b\xed\x82\xdd\x3c\x94\x62\x6b\xd5\x42\x64\xc9\x81\x4a\x7b\x48\xe6\xab\x05\x26\x2b\x7c\xb2\xd8\xea\x92\x2c\x85\xee\x4c\x96\x35\xa2\xd9\xec\x34\x69\x1e\x2e\x02\x2f\x78\x3e\x3d\xf0\xa6\x66\x8b\x5f\x74\x45\x0a\x33\x79\xf5\x08\x9e\x0a\xa5\x40\x51\xa3\x52\x8d\xfe\x99\xda\xec\x07\xea\x8b\x88\xd6\x54\xa8\x21\xed\xc8\x99\xc2\x12\xb4\x63\x7b\xce\xa0\xed\x55\x61\xa4\x65\x4d\xe1\x6e\xe3\x74\x06\x7f\x83\x5a\x95\x81\x49\x6a\x03\xb0\xfd\x0c\xfe\x06\xb5\x2a\x43\x32\xba\x74\xcc\x24\xeb\xf4\x28\xad\x6d\x44\x81\xf7\xb1\x65\x29\x23\xd3\x99\x1f\xb8\x93\xeb\xf3\x54\xa9\x27\xa9\x2a\x09\x94\x7b\x34\x33\x9b\x2b\x40\xab\x76\x70\x1a\xe0\x78\x94\xb3\x2e\xc3\x15\x4f\x4a\xae\x4f\xe0\x84\xdb\x39\x4a\xd1\xaa\x42\x39\x8d\x4f\x70\x17\xe7\x31\xbe\xf1\xcc\xae\xd0\x52\xd8\xd4\xc1\x5b\xea\x01\x47\xa9\xd9\x81\xa6\x42\x16\x2c\x73\xdf\x76\x73\xcb\xc4\x3a\x78\x03\xb9\x53\xea\x61\x29\x3b\x4a\x71\x90\x11\xee\x82\xdc\x57\x21\x01\xdc\xa6\xa5\x6e\x49\xd7\x9c\xcc\x17\x98\x64\x78\x38\xb4\x54\x58\x72\x5d\x06\x31\xad\xe8\x17\xce\x34\x27\xe4\xad\x3e\xad\xb4\xf1\x90\x90\xcc\x54\x8e\x75\xa5\x2b\x9e\x80\x96\x09\x46\x1c\xeb\xb2\xd5\x77\x88\x61\xf2\x95\xfc\x23\xe8\xf7\x88\x11\xa6\xa4\x01\x7c\x3c\x0a\xf2\x2b\x62\x40\xaf\x18\x0e\xdb\x04\xeb\x95\xf2\xd6\xc3\xd3\x74\x34\xc2\xbd\xf5\xb1\x68\x60\xb5\xf6\x62\x2a\x1b\x77\x3a\x1e\xa7\xf8\x0d\x62\xf3\x74\x81\xa7\x67\x3d\xfa\x61\x33\xb1\xdb\x27\x26\x8d\x5d\x03\x33\x7b\xbf\x3e\x5d\x17\x6b\x56\x58\x46\x26\xe7\x08\x14\xc8\x7a\xd3\xa5\x8e\xc8\x46\x76\x54\x7d\x62\x75\x31\xd1\x8d\x97\x6a\x76\xc8\xf4\xb1\x05\x83\x63\x0b\x66\x8e\x2d\x58\x35\xfd\xd8\x96\xc0\xee\x8e\xe1\x50\xb1\xca\xb2\x0e\xd4\xa6\xa6\xe8\x64\xb1\x9d\xa1\x14\xd8\xb4\x25\x38\xc0\x37\xb1\x97\xf2\x8b\x09\x26\xa9\x62\xcf\x36\x9c\xe2\xd7\x1d\x40\x1c\xa0\x54\x2f\x33\x36\xac\x5e\x78\x5a\x12\x81\x42\x2b\xb2\xdc\x06\x14\x59\x7e\x02\xa5\x56\xcb\x95\x45\x68\xc8\xe3\x04\x75\x49\x5e\x69\x39\x9f\xac\x6c\x5a\xbb\xa0\x8a\x6a\x0d\x02\xc0\x35\x05\x5d\x50\x49\xcb\x4a\x6d\x00\xc8\xaa\x55\xa9\x2e\xa4\xae\x9e\x01\x82\x5d\x16\xe9\x1d\xfc\x5d\x83\xf7\x13\x81\x16\x71\x58\xc9\xa0\xae\xaa\x46\x63\xde\x6a\x62\xa2\x00\x60\x9d\xa4\xcd\xea\x09\x90\x66\x95\xb5\x73\xe0\x40\xa3\x94\xf5\x84\xea\x8c\x79\xbb\x81\x35\x46\xb5\xec\xd3\x13\x71\x61\xac\xa4\x80\x56\x26\xac\xb9\x4a\x85\xf0\x74\xfd\x0c\x15\xe4\xe1\x39\x5c\xe4\xb9\x95\xa8\xd5\x34\xf5\x42\x2d\x5a\xfb\xc3\x66\xc9\xe6\x8d\x98\x68\xf4\x33\x92\x81\x64\x56\x42\xf7\x70\x7f\x7a\xda\xde\x92\xe7\x29\xc3\xfd\xf5\x45\xbd\x54\x14\x08\xb8\x27\x1e\x43\x20\x4e\xb1\x5c\x7c\x54\x87\xc7\x69\x9d\x4a\xea\x54\x29\x1d\xd1\xb1\x85\xeb\xe1\x63\xb8\x1a\x64\x52\x22\x3f\x45\x46\xb8\x9b\x4f\x42\x5a\x48\xe9\xf2\x94\x0d\x23\x3e\x4e\xf1\x39\xab\x82\x9e\xa4\x02\x71\xac\x52\x09\x97\x1b\x58\x9a\xf5\x20\x18\x64\x28\x1d\xf1\x0b\x86\xfb\x50\x0c\x20\xa9\x32\xab\x46\x26\x17\x99\xe7\x18\x4f\xdd\x15\x24\x23\x31\x49\x28\x08\x61\xb0\xfd\x39\xdd\x6a\xd9\x71\xa2\xd9\x6a\xed\xea\xad\x96\x78\x76\xab\x75\x92\xd5\x6c\xb5\x42\xb2\xb5\xf6\x0a\x9f\xdc\x72\x49\x5e\x5e\xba\x05\xec\x73\xe5\x3e\x0a\xed\xa4\x8c\xa9\xf4\xc7\x9e\x5c\xf6\x6d\x6e\x89\x8d\xd4\x96\x53\x6f\x9a\xdf\xb4\x13\xa7\xa3\x51\x8e\xcf\x10\x33\x79\xe6\xf9\x02\xab\xe9\x21\xb7\x09\x0f\x37\x5a\x68\x60\xee\xc3\x2d\x2c\xe3\x66\xe7\xda\xe2\xbc\x19\x75\x42\x9e\x0a\x5e\x38\x24\xd5\x53\x7d\x24\x64\xc7\x23\xe6\x3e\x60\x4b\xb8\x6f\xe4\xe0\x59\x41\x13\x98\x8c\x89\x11\x7d\x47\x49\x9f\xd0\x1b\xa0\x06\x50\xcf\xc0\x3a\x07\x89\xa9\x41\x2d\x87\x6d\x4c\x9d\x6d\x1c\x45\x09\x77\x48\xa1\xd8\x43\x8b\x08\x2d\xed\x5b\x24\xa0\x94\x26\x8a\xd8\x44\x4f\xfb\x06\x75\x46\xb5\x7a\x0d\x07\x16\x94\x4e\xc5\xa4\x74\x59\x14\xa9\x96\x87\x51\xc3\xf4\x0e\x76\xab\x76\xb0\x6a\x1b\x4b\x62\xcd\xef\x9b\x25\x5a\x2b\x20\x5d\x65\xb3\xe4\xd6\xf6\x46\x33\x8e\x4e\x23\xb1\xbb\x11\xdb\x04\x39\x0e\x0e\x84\xbb\x02\x65\x85\x86\x71\xb0\xee\x7c\xa4\x14\xfa\x75\x5e\xd0\x26\xaa\xe1\xdf\x9c\x9f\x03\x8b\x99\x2f\x48\x26\xff\x94\xf4\xcc\x87\x1d\xa8\xce\xd1\xb6\x90\xd2\x7b\xf9\xd8\xde\xcb\x23\x46\xe3\xf9\xce\x0c\x0b\x10\xce\xc2\x99\x6c\x55\x55\x65\x86\x03\x1d\xc4\xc3\x61\xa6\x4f\x75\xe0\x3b\x48\xb5\x05\x09\x53\xe7\xa5\x15\x10\xdb\xd0\x0a\xb6\x51\x38\x5e\x21\xee\xc6\xe5\xd7\xa6\x91\xba\xe9\x38\x83\xd0\x49\xfc\x54\x4a\xb0\x83\x78\x85\x9c\x82\x03\x6b\x74\x28\xed\xc2\x64\xae\x4e\x43\x0a\x5c\xab\x25\x9c\x88\x97\x21\x4f\x65\x57\x3a\x67\xdd\x4c\x53\x5d\x5e\x87\x43\xd4\x82\x23\x54\x8d\x1a\x95\xc0\xcc\x0b\x74\xd4\x8d\x8e\x39\xa3\xdb\x99\x1f\x8c\x7d\x50\xff\x65\x05\x52\x2d\x9a\x9d\x68\x47\x72\x9a\xcd\x77\x8b\xe9\xee\xb3\xba\xfc\xda\x70\x0d\x4e\xc5\x51\x39\x1c\x16\xaa\x39\x9d\x9b\x0b\x51\xdc\x3a\x98\xd4\xdf\xea\xb3\x84\x73\x14\x1d\xf9\xe2\x46\x44\x03\xb0\x44\xa5\x8e\x42\x08\x76\x30\x5f\x66\x7b\xe7\xf6\x26\x8a\x1f\x06\xa5\x38\x24\x5c\xce\x18\x29\x13\x06\x7e\xbe\x1f\x94\x59\x12\x47\x83\x17\xa3\xf6\x60\x68\x9b\xc6\x8d\x5e\x4c\xf5\xa8\x97\x59\xda\xa8\xd4\x0e\xf7\x2a\xdf\x4f\xf5\x46\xdb\x9b\x6a\xec\xd7\x16\x76\x7d\x5a\x3e\x7a\x31\xcd\x1e\x78\xb1\x4a\xb2\xc7\x60\x13\x47\x11\x4f\x9d\xdb\x9b\x8b\x28\x7e\xa8\xff\x8a\xe8\xf6\xa4\x0e\x8a\xdf\xdd\x4a\x2c\x40\xdc\xc8\x01\x38\x07\x57\xa7\xcd\x63\xb6\x4b\x86\xef\xe9\x79\x20\x1b\x7b\x43\x5f\xdc\x08\xb6\x4c\xb8\x21\x5d\xb2\xd8\x71\x19\xff\xc6\x83\x72\xcb\x92\x84\x17\x53\x35\x54\x65\x63\x80\xf4\xac\x69\x96\x45\x17\xfa\x5a\x99\x83\xa1\x74\x89\xe6\xd6\x99\x36\xc7\x09\xa7\x13\xf7\x23\xb3\x79\x63\x8d\xc4\x88\x3a\x0e\x59\x37\x08\x6a\x65\xd2\x43\x13\xb7\x6d\x76\x64\x94\x3e\xcc\xbd\xc5\x70\x88\x1e\xe8\xfc\x81\x3c\x2c\x30\x71\x52\x87\xd2\xb5\xb9\x7a\xe7\xe1\x59\x34\xa2\x8e\x14\xb7\x9d\x11\x7a\x98\xfb\x8b\x91\x12\xfa\x46\x4e\xbe\x9f\x3a\x81\x53\xb6\xa1\x87\x43\x24\xe1\xb5\x60\xde\x64\xd1\xa2\x9f\xca\x85\x89\xc3\xed\x6c\xbe\x2a\x44\xc9\xf6\x90\xc7\x93\x79\x94\x10\x6a\x0a\x7a\x6c\xe7\xd0\x05\xc1\xb6\xa0\xc9\x02\x32\xae\x2e\x04\x3a\x69\x49\x39\x7a\x01\xe3\xab\x35\x04\x64\x17\x6c\xdc\x82\xe7\x09\x0b\x39\x7a\xa1\x3b\xf0\x05\x31\xa1\xda\xe6\xcf\x98\x55\x4f\x5f\x8c\xa2\x91\x33\x55\xdd\x25\x87\x96\x63\x59\x56\x0b\x35\x4c\xac\x6e\x3b\xb1\xdc\x34\x67\xdb\x3d\x10\x6f\x6a\x4b\x1a\x4a\x0f\xc3\x21\x42\x07\x8a\x0e\x66\xc3\xd5\x01\xc3\xc3\xa1\x53\x82\x79\x48\xa3\x09\x39\xcc\xda\x26\x31\x07\x1c\x74\xee\xec\xa1\x25\x71\x1a\x44\x63\x48\x73\x30\x76\x19\xf5\xc9\x81\x1e\x6c\x93\x13\x68\xb4\x3d\x5d\x36\x46\xec\x78\x6a\x5a\xf0\xd9\xb6\x51\x73\xf6\xc5\x68\x6f\x0c\x85\xa1\x07\xf4\xfc\x75\x46\xfb\xda\x6a\x58\xf5\x8c\x6c\xc9\x2e\x39\x81\x33\x3a\x8c\x5e\x4c\x9d\xdb\x81\x6a\xde\x17\xd8\xcd\x0b\xae\xdb\x77\xa9\xac\xdf\x9d\x4c\xb5\xa5\x43\x3e\xd2\xce\x55\xd5\x3a\xc3\x79\x87\x1a\x49\xcc\x52\xe2\xb0\x53\x9d\x54\x6a\xf6\x85\x3a\x70\xeb\xcd\x74\x28\x70\x2f\xcf\x41\x20\x2d\xff\x59\x88\x53\x51\x45\xcb\xf7\xb5\x26\x11\x6b\x2b\x71\x04\xc2\xcd\x18\xa4\x1d\x7c\xc1\x48\x46\xc7\x96\x3e\x1e\x82\x49\xb6\x46\x05\x56\xc2\xf0\x77\xdf\xfb\x1e\x26\x31\x55\x85\x1a\xeb\xd5\x46\x6d\x92\xdd\xc6\xc3\x21\xca\x68\xac\xf0\x27\x24\x54\x52\x72\x9e\x3d\x22\xdf\x23\xe3\x0c\x93\x1d\x2d\x2e\xe0\x3c\x7b\x77\xe3\xbb\xd7\xb3\x84\xfa\xc1\xee\xe6\x72\x86\x12\x3a\x21\xbb\xdb\x89\x3b\xb9\xae\xb5\x2f\xf1\xf1\x98\x8d\xfc\x1b\x1a\xcb\x89\x94\xd0\x89\x7b\x4d\x46\xa3\x0c\xe3\x20\xa1\xbb\x9b\xcf\xdd\xeb\xd9\x75\xe0\x7b\x24\x39\xa7\xa1\x56\xfb\xa4\xae\x65\x34\x3b\x1c\x26\x37\x9d\x08\x94\xb4\x41\xe0\xb0\x8d\x27\x82\xd5\xda\x49\x53\xa5\x46\xb8\xf7\x34\xee\x78\x16\x07\x19\xd6\x60\x32\xb3\x6e\x04\x19\x3c\x1e\x13\x0d\xd5\x69\x99\xe1\xd0\x3a\x55\xb2\x13\x8e\x47\x24\xd4\x3e\x23\xaa\x8b\x6c\x53\x30\xca\x30\x71\x44\xbc\x95\x4c\x28\x75\xb7\x59\xc4\x87\xc3\x33\x05\xf2\x07\x9e\xf2\x82\x89\xac\xe7\xf6\xc3\x87\x78\xcb\x07\x12\x78\xa0\xcd\x0e\x4a\xb8\x83\x20\x25\x6a\x57\x22\x1b\xe4\xc9\x6e\x1d\xa7\xae\x5a\x34\x3a\xe8\x80\xa8\x56\x0c\x3d\x51\xf6\x11\x4b\xaa\x82\xcd\xd2\x36\x4e\x09\x4a\xf5\x69\x10\x34\xea\xb9\x35\x82\xd8\x85\xdc\x78\xc5\xd4\x23\x49\x6d\x24\xc5\xbe\x9f\x46\xd9\x93\xa0\x09\x49\x68\x36\x8a\xcf\x9b\xac\x66\x49\x4f\x30\x19\x8d\x62\x7d\xcf\x36\xb9\xe1\x4a\x8f\x96\x9c\x51\x51\x9f\xe3\x15\x95\xee\x8a\x5a\x84\xa3\xfd\x2a\x51\xbb\x4d\x67\xf6\x60\x6c\x27\xe1\xc0\x27\x29\x75\x9c\x11\x80\xc0\x6c\x45\xfc\x9c\xe1\x0b\xd6\x2c\x78\x9d\x1c\xda\xd2\x30\x75\xe3\x34\xe2\xfb\xf7\x2b\xe4\xb8\x70\xaf\x62\xec\x53\x5a\xcc\xbc\x20\x35\xea\xab\x62\xec\xc3\xc1\xf7\x4d\x07\x81\xde\xf1\x65\xb3\x34\x48\x47\x32\xf3\x08\x39\xce\x88\x61\xb7\xdc\x2d\x4b\x51\x20\xbf\x43\xe3\x38\xab\x6d\x24\xd3\x4a\x6e\x31\x2d\xe9\x31\x6d\x37\x06\x86\x93\xe3\x8f\xb5\x8f\x3e\x1f\x76\x46\x9d\x9c\x90\x5a\xe1\x7a\x46\x9d\x9a\xaf\x9b\x43\xae\x53\x2e\xb3\x09\x22\x3c\xef\xcb\x32\xf6\xd5\x71\xd8\x70\xb8\x05\x2d\xf4\x70\xb8\x95\x9d\xa9\xe5\xc1\xce\xa0\xd3\x4b\x55\x5e\x6b\x0b\x6b\x86\x90\x6a\x75\x2c\xb0\xab\x66\x33\x0f\x9f\x24\x9f\x7b\x8b\xda\xf4\x26\x55\x43\xa6\xc6\xe1\xab\x5c\x6c\xdf\x4c\x6c\xf8\x24\xf9\x3c\x6f\x6c\xa4\x30\x36\x13\xfc\x13\x33\x80\xce\x17\x96\xb9\xc5\xb6\xbb\xb3\x64\x58\x50\xa4\x63\xe7\x6c\xe1\x3e\x8c\xb7\x8a\xc1\xa2\x2d\xb0\x5b\xf5\x45\x84\x9a\x3e\x23\x71\xae\x14\x08\x63\xa5\x3d\x20\xa9\x9a\x05\xcd\x60\x4f\x2b\x72\x26\x34\x0f\x30\xf5\x3b\x1d\x8a\x2b\x9b\x69\xf9\xbd\x7c\x5c\xb3\x3b\x9b\x9b\x63\xb2\xee\xeb\x80\xb5\xd5\x72\x17\xff\x70\xdd\x73\xef\x7f\x2f\x5c\xc1\x4b\x81\xd0\x7a\xee\x2f\xc6\x6b\xd9\xda\xae\xc8\xbe\x8e\xf7\x3c\x42\x2b\x8c\x6b\xe6\x51\xf3\xb3\x15\x06\xd3\x1e\xb3\xca\x7d\x85\x6c\x7d\x43\xe7\x84\xb0\x84\x4d\x9a\xd2\xfb\x42\x05\x8b\xe3\xb1\xdf\x52\xd7\x9b\x65\x3d\xf4\x06\x05\xac\x3b\xad\x29\x51\xe0\x99\x4a\x32\x9d\x0a\x66\xbc\xaa\xcb\x32\xbb\xb3\xf4\x71\x80\xba\xe0\x41\xb3\x39\x5b\x4c\x4f\x8f\x72\xe4\xae\x79\x94\xcc\xbd\x05\x49\xec\x41\x15\xd3\x64\x2e\x07\x4e\x20\x53\x5b\xc7\x80\x9d\xe9\x87\x52\x22\xb0\x39\x10\x4c\xf1\xf1\x68\xf4\x11\x6a\xe3\xf8\x10\xa4\xea\xa2\x40\x10\x57\xd8\x6a\xb5\xef\x6d\x6e\x76\xe6\x4f\xeb\xed\x98\x69\xbd\xce\x11\xc6\x70\x28\x4e\xe7\x4d\x03\xad\xe6\x0f\x6f\xcf\x1f\xc5\xc4\xc5\xdc\x5b\xb8\x0f\x98\xb0\xda\x48\xad\x95\x51\x4e\x27\x61\xd7\x9c\xb7\xa7\x13\x7c\x12\x31\x17\x96\xc9\xa1\xc1\xd6\xb2\x28\xf9\x05\xe1\xa7\xd2\x05\x43\x06\xa4\xce\x34\xda\x96\xf6\x64\xbe\x5d\x28\xf1\x81\x6b\x01\x73\xca\xb5\x8a\x87\x77\x45\xcd\xe1\x10\x6d\xdd\x92\x3d\x70\x84\xc9\x56\xe9\x10\x13\x26\x38\x5a\x19\x7d\xb2\xdc\x05\x90\x2d\x58\x6e\xde\x81\x64\xf8\x77\xd4\x2f\xb4\x92\x07\xe2\x11\xe5\xa4\x61\x72\x7d\x4d\x06\xcd\x1f\x0f\x3b\x06\xc5\x8f\x3c\x14\xc8\x23\x1e\x59\x93\x07\x19\x57\xf0\x52\x64\x05\x47\xa0\xef\x53\x24\x9e\x71\xb7\xbe\x4a\x32\x1c\x7e\x8d\x1a\x73\xfe\x9e\x33\x07\x53\x79\x75\xa9\x80\xcc\xb7\x24\x9e\x8b\xc5\x02\x93\x1f\xe1\xf8\x41\x99\x9c\x49\x00\x68\x13\xd2\x34\x43\xbb\x08\x52\xba\xea\x26\x21\xc2\xe4\x67\x5b\xb0\xfc\xad\xe3\xc0\xc4\x28\xfa\xe0\xa8\x34\xa1\xde\x34\xb1\xe9\x49\x70\xbc\x42\xa0\xf4\x48\x16\xb8\xe1\xea\x94\x0a\xd9\xdb\xf3\x8c\x8a\x11\x73\x53\x63\x60\x74\x3c\xfa\x67\x94\xb9\xe9\xf1\x88\x64\x8a\x8a\xc5\x84\xcf\xb3\x05\xc6\x4f\x29\x95\x01\x77\x55\x64\x5b\x52\xa8\xb0\xc8\xb4\x9d\x77\xbc\x92\xd8\x16\xc7\x23\x62\xca\x76\x40\xcc\x36\x73\x6f\x11\x44\x70\xcd\x5c\x19\x31\xf9\xce\x02\xf2\x89\x91\x33\x71\x16\xf5\x6a\x64\x0e\xd0\x8a\xe1\x30\xbd\xd5\xc7\x83\x25\x4d\xa7\x29\x2d\x48\x41\x4b\xbd\x3a\x3e\xc9\x62\x83\x94\x88\x2c\x28\xe0\x6a\x4d\xc0\xac\x19\xf5\x75\xdb\xd0\x7b\xfa\xe9\x01\xa4\x2f\xd6\x37\xe7\xc6\x70\xab\x06\x96\x74\xac\x0c\xaf\x2d\xae\x93\xc9\xa5\x17\x31\x7a\x70\xd7\x5c\x7c\xb1\xe7\x25\xc2\xd8\xdd\xc3\x79\x9e\x36\x67\x95\x93\x8d\xb9\x7b\xb0\xdc\x36\x51\x6c\x4f\x98\x7b\x50\x50\x07\x0b\xea\xa0\xa0\x0e\x35\x54\x46\x33\xc4\x6a\x6b\xed\xec\xe4\xe6\x43\x4c\xb3\xb9\x58\x90\x92\xfe\x86\x62\x30\x7d\x27\xa1\x0a\x1e\x94\xc8\xa7\xe6\x75\x09\x3d\x33\x1c\x22\x15\xa0\xa5\x6b\xca\x34\x33\xbf\x74\x45\x06\xe9\x22\xab\x53\xd9\xbe\xb6\x6c\x35\xf9\x55\x80\x86\x27\xf9\x43\x95\x5f\xfe\xd4\xa9\x32\xff\x19\xa0\xbc\x69\x0a\x3c\x1e\x15\x0d\xb7\x4d\x29\xc7\xa3\xcc\x76\x13\x5a\x30\xaa\x9c\x5b\x0b\x93\x64\x22\x50\x76\xcd\x81\xd4\x37\xb1\xeb\x02\xe4\xd7\x7c\x4e\x7e\x11\xbb\x32\x61\x07\x83\xfa\x26\x76\x6d\xc2\x16\x06\xf9\x45\x2c\x22\xa6\xca\xa2\x40\x53\xa2\x5a\x8d\xe4\xba\x79\xa8\x6a\x05\x50\x54\xee\x8e\xc7\x33\xb8\x00\x61\x13\x6d\x8c\x9e\x00\x5d\x3e\x09\x75\x22\xb6\xe9\xee\x81\x11\x19\x6e\x93\xae\x60\xc2\x06\x26\x34\x78\xc2\x0e\x9e\x16\x0c\xe0\xd9\x1d\x8f\xb9\x1a\x39\x1b\x1a\x37\xa7\x9a\xc7\x63\x67\xb4\xd7\x77\xc8\x48\x44\x37\x9f\x4d\x66\xee\x75\xe0\x4d\xb7\xee\x92\xaf\xe3\xf4\x07\x06\x17\x6f\xb7\x6e\x29\x8a\xec\x9e\x2b\x46\x1b\xab\xed\xfd\x09\x22\xc5\x6d\xb7\x4d\x51\x74\x43\x76\x33\x29\x18\x65\x0f\xfc\x43\x06\xf5\x1b\x45\xba\x7e\x58\x03\xda\xf1\x92\xec\xc0\x86\xd7\x7d\x26\x93\x3b\xf0\x26\xb6\xa1\x0d\x29\x03\x80\x81\xbd\x24\x7c\x8a\xd2\x9a\xf3\x5b\x45\x41\x0f\x8d\xeb\x08\xf9\x33\x06\xd2\xaa\x8a\x01\x77\x4d\xe9\xa9\x05\x47\xbd\x14\x2c\xa9\x37\x5d\xda\x86\x63\x4b\xd5\x05\x7b\xf2\x96\xdc\x93\xf7\xe4\x8e\xb2\xf9\x72\x41\x3e\xd0\x3b\x38\x8e\xf9\x95\xde\x59\xa6\x33\x72\x3c\xdd\x35\x67\x1e\x77\xed\x33\x0f\x60\xf6\x76\xeb\xfa\x04\x78\xec\x9d\x7d\x6e\xb1\xa7\x1e\x79\x4b\x95\x95\x12\xa5\xbf\xce\x1c\x91\xe5\x00\x53\x1f\x11\x78\xc1\x43\xf0\x01\x4e\x1a\xd5\x81\x02\x3a\x05\xf9\xe0\x1a\xe5\xa7\xec\x8f\xb7\xd4\x23\x7b\x1b\xa5\x3e\x76\x68\xe1\x5c\x07\x1f\xcc\xf9\x22\x1c\x2c\xa0\x1e\xa8\x0f\x5a\x53\x21\xa5\x86\xbb\xc6\xec\xe7\x78\x44\xed\xf1\x75\x57\x8b\x26\xa1\xee\x27\x7b\x2c\xde\xd3\xf7\xd4\x3b\xad\xf9\x3d\x5d\x8f\xfc\xe0\x3d\x7d\x18\xf9\xc4\xa7\xd4\x6a\x27\x73\xb4\x6e\x43\xbf\xb5\xa7\xce\x5b\x3c\x72\xaf\x83\xbd\x1d\xb5\x97\x51\x72\x6c\xe9\xa1\xb8\x27\x6f\xad\x01\xb8\x1f\xdd\x93\xb7\xa3\xf7\xf6\xd8\xeb\xce\x91\xbb\x96\x0c\xfc\xa6\xa7\x1e\x8a\xcd\xdf\x75\x37\x18\x9a\xd9\xbf\x31\xbd\x3f\x17\x0b\xf7\x61\xaa\x2a\xad\x24\xcc\x37\xf8\x78\x7c\x73\x73\xa7\xb8\xe7\x9b\xdb\x3b\xc5\x57\xeb\xfe\x91\xd5\xed\x8a\xb8\x72\x75\x9d\x37\x3d\xb1\xb8\xf5\x8e\xc7\xf4\x16\xd4\xa5\x6f\x64\xc3\x28\x54\x10\x62\x7b\x6c\x0e\xc4\x3a\x03\xeb\x0e\x98\xcb\x1b\x4c\xde\x5b\x83\x61\xfc\x10\xfc\x4a\x4e\x46\x10\x58\x8f\x8f\xdf\xab\xd1\x53\xe7\xbb\xb7\xf3\xad\x65\xbe\x93\x31\x02\x37\x29\xc6\xf7\x18\xff\x8e\x3e\x3c\xed\xb0\xe0\xb4\x5b\x3f\xd9\x87\xb8\xb2\x18\x48\x25\x09\x28\xda\xf3\x5b\xf5\xdd\x69\x93\x1e\x8f\x27\x71\xc5\xac\x6e\xfa\x33\xbb\xed\x51\xaa\x6c\xf8\x52\x6d\x3f\x92\x1a\xcb\x91\x54\x79\xcb\x90\x5b\xfe\xd3\x8c\x05\xd0\x02\x19\x0b\x9d\xb1\x30\x19\x0b\x95\xb1\xa8\xb4\x95\x06\xec\x08\xda\x23\xb0\x80\xc3\x7c\x9b\x5f\xa4\x3a\xa6\xcd\xd9\x75\xeb\x78\x63\x6d\xa9\x21\x03\x22\xcb\x2f\x26\x56\x63\xad\xdb\xb1\xcd\xa0\xd7\x26\x1b\xbd\xc5\x2b\x3b\x83\x36\x01\x26\xae\x97\x84\xf5\x48\x03\x5c\x4c\x4c\x79\x36\x0d\x56\xea\x43\x97\x0a\xd5\x2c\xbd\x64\x68\xf3\x8f\x36\x1d\x75\xe4\xc7\x09\x21\x0f\x23\x03\xdb\x6a\x0f\xef\x24\xc1\x26\x46\x36\x63\x2f\x29\xd0\xbe\x6d\x42\x74\xd4\x47\xbb\x44\x56\xb8\x2e\xce\xa6\xa2\x49\xf7\x5a\x34\xc0\x22\x6a\x95\xd2\xe1\x4d\x3d\xc3\xdb\x00\xc0\x62\x38\x4e\x2f\x26\x04\xfe\xac\x47\xa9\x2c\x1a\xe3\xd6\x96\xa8\x11\xb8\x7f\x54\x6e\x21\xed\xbb\x5e\xe8\x39\x2b\x11\xd2\xf1\x0e\xc9\xcd\xfd\x98\xb8\x0e\xaa\x5b\x65\xca\x9d\x80\xba\xa6\xd4\x6a\x99\xc6\xe8\x93\xc6\xd3\xb0\x91\x90\xc3\x11\x8d\x8d\x05\x68\x36\x0f\xc7\x31\x5c\x38\x94\x81\x91\xbf\x20\x1b\x19\x5c\x90\x48\xfe\x8c\xfc\x45\xa3\xf3\xdb\x99\x2d\xc7\x06\x6e\x23\xe5\x37\x34\x1a\x0e\xf3\x9b\x02\xa4\x43\x19\x13\xe9\x70\x98\xa5\x22\x4e\x77\x7c\xba\xa3\x08\x62\xc6\x39\xbe\x40\xd1\x38\xc7\xe7\x68\x33\xde\xe1\xd1\x8e\xe4\x14\x12\x2a\x73\x80\x1b\xdd\xd0\x7c\x38\x8c\x2c\x64\x79\x17\xd9\xe6\x59\x64\x91\x46\x26\x73\xdd\x02\x51\xb7\x05\x30\x66\x20\x4a\x87\x3b\x44\xb1\xfd\x33\x44\xb1\x7d\x43\xd4\x2d\x10\x65\x21\xcb\xbb\xc8\x36\xcf\x22\x8b\x34\x32\x50\xef\xd3\xcd\x70\xb8\x53\x2a\x78\xc0\xb3\xd1\xe1\x1a\x4f\x4e\x11\xc4\x8c\x77\xf8\x02\x30\x9c\x03\xb6\x51\x4e\x76\x4a\xd5\x57\x13\xb5\xb9\x91\x1d\xb1\xb1\x90\xed\xba\xc8\xa2\x67\x91\x6d\x34\x32\x99\xeb\x16\x88\xba\x4d\xeb\xca\x6d\x74\xb8\x43\x14\xdb\x3f\x43\x94\xd5\x52\x9b\x5b\x20\xca\x42\xb6\xeb\x22\x8b\x9e\x45\xb6\xd1\xc8\x76\x94\x26\xc3\x61\x4e\x69\x79\x3c\xd6\x73\x3a\x85\xc5\x70\x87\x47\x82\x14\x10\xcc\xf1\x88\xc9\x1d\xfb\x86\x94\x34\x6a\xe6\xb6\x82\xdb\x34\x70\x91\x84\xab\xec\xc5\xea\x77\xa9\x47\x24\xba\x3f\x66\x71\x4a\x1d\x50\x88\x38\x53\x7d\x9d\x48\xcf\xd9\x9a\x49\xc8\xdd\xb9\xdb\x78\xd6\x90\xb3\x84\x81\x55\xeb\xad\x87\x9f\x3e\xc6\x4c\x8c\xf7\x4b\xf8\xcf\xf5\xb1\xa3\x8f\x9f\x60\x21\xfe\xe1\xdb\x0b\xff\xd5\x54\xe8\x0b\xcd\x7a\xbe\xab\xb3\xac\x38\x45\x05\x3e\x47\xec\x62\x32\x4a\x25\x0b\x55\xa6\x7b\x59\xd9\x8e\xe5\xfa\x1a\x16\xd7\xd7\x67\xda\xdc\xf3\x62\x42\x3e\x8d\xfb\xaa\x17\xf7\xd5\x29\xee\xca\xc6\xcd\x3a\xd5\xd4\x47\x9a\x5a\x5f\xf0\x05\xd2\x0d\x68\x3c\x78\x12\x8f\x3c\xe0\x69\x06\x3c\xbf\xd9\x7e\x64\xa4\xeb\xd7\xd7\x70\xb0\xb4\x61\x7f\x45\x8b\xfd\x59\x3b\x52\x4b\xe5\xcb\xd4\x8e\x95\xa9\xbd\xad\x3a\x73\x39\xf3\x49\x49\x7d\x12\x52\x0f\x2c\x5c\xce\x50\x21\xfb\x2b\xbe\x35\x67\x13\xa3\x02\x4f\x8d\x1a\x3e\x9d\xa3\x78\x44\x0b\x3c\x2e\x24\x3f\x4c\xe7\xf1\xb8\x18\x95\x92\x27\xa6\xf3\x78\x41\x56\xf2\x67\x54\x02\x6b\x4c\x60\xb4\x17\x8d\x41\x73\x6e\xf4\xd2\x11\x7e\xda\xd1\x98\x14\x74\x5c\x90\x92\x4e\xa6\x66\x26\xc8\xc9\x57\xdc\xc8\xa2\x29\x0d\x47\x85\x1c\x2d\xb2\x05\x40\x0d\xa5\x69\x8c\x69\x48\x77\x23\x24\xb3\xe2\x26\x5f\x55\x73\xe2\xdc\x14\x16\xb5\x38\xb1\xb0\x38\xb1\x38\x61\x9e\xa2\xc3\x3c\x57\xe3\x0d\x1e\x6d\x48\xae\x2c\xbb\x4f\x38\xb1\xb0\x38\x71\x07\xd9\xea\x59\x64\x91\x46\x66\x71\x62\x61\x71\x62\x71\xc2\x3c\x45\x87\x79\xda\x44\xf5\x70\x62\x61\x71\xe2\x0e\xb2\xd5\xb3\xc8\x22\x8d\x4c\xf6\x16\xec\x9d\x7a\x85\x07\xa1\xb9\x0b\x61\x10\xc8\x30\xf4\x87\x87\xc9\xe6\x96\x32\xa5\xf3\x5d\xe9\x10\xae\xb9\x4e\x27\x93\x4a\xb5\x24\x0e\xa1\x59\x51\x3b\x7d\x6a\xf1\x72\xa6\xf4\xd0\x2b\x1d\xfa\x18\x6a\x30\xdc\xfc\x08\x6a\x99\xde\x18\x96\xac\x69\x4e\x1e\x68\x34\xdd\xdc\xd0\x95\x5c\x2f\x4c\x41\xb7\xaa\xa0\x19\xca\xa9\xca\x34\xde\xe0\x0b\x68\x2a\x8b\x21\x2b\x6c\xc1\x0a\x16\xae\x95\xc9\xbb\xb9\x35\xe4\xa2\xe8\xd9\xcc\x2b\x9d\x59\xb6\x9b\x2c\xf8\xd6\x34\xde\x8d\x6a\x3c\x53\x30\xdb\x3f\x53\x30\xdb\xe3\x60\x05\x8b\xd3\xca\xe4\xdd\xdc\x98\x2e\xd0\x05\xf7\x65\x5e\xe9\xcc\x24\x87\x1b\xba\x9d\x86\x5a\x9b\x86\xda\x9c\x36\x62\xfe\x91\xb4\xba\x81\x57\x18\x93\xe8\x8c\x3e\x00\xcb\x7a\x1e\xa4\x93\xf6\x60\xa5\xc1\x19\x50\x9b\xfd\x76\x59\x2a\x9e\xc2\x22\xd2\x61\xd2\x72\xa9\xe8\x42\x4e\x6d\xf9\x12\x71\xb0\xb2\x55\xe6\xf8\xe6\x56\x83\xe5\xc3\xa1\x25\x62\xd6\x3a\x78\x38\x01\x52\xb6\x8a\xea\xa7\xa0\xad\x62\xc1\x56\x30\xa6\xde\x34\xbe\x29\x1a\x8e\x3b\x9e\x4c\xe3\xd1\x08\x6b\x2b\x3f\xaf\x11\x32\x95\x12\xbd\xa8\x6f\x05\x28\x59\x33\x19\xd1\xc2\xf6\x9e\xa0\xd4\xd4\x26\x6a\x9e\x2c\x48\x68\x7d\x49\x79\x33\xa5\x09\xa5\xb4\x83\x67\x6c\x21\x99\x81\xcf\x01\x2b\x93\x95\xb6\x30\xc6\x07\xa5\x61\x91\x34\x34\x0c\x99\xb2\x3a\xa4\x4e\x4e\xa1\x06\x25\x5c\xcd\x92\xa1\xd0\x84\x8c\x5b\x21\x22\x99\x00\xa3\x65\xa5\x44\x65\x53\xcc\xd4\x04\xa8\x68\x5a\x5d\xdd\x8b\x38\x95\x13\x2e\x26\xe4\x5b\xd9\x3d\x75\x9e\x9d\xec\x2d\xd9\x5d\x96\xc7\x8c\x93\x83\x55\x73\x0d\xfc\x77\x8b\x2c\x6a\x11\xd6\x48\x1b\x21\xa5\x77\x4d\x36\x65\x9f\x5e\x2e\x17\xbd\x97\xcb\x05\x1d\xf3\x8f\x5e\x2e\x3f\x05\xb8\x98\x54\x46\x6e\x82\x78\xb9\xc0\xcd\xda\x9e\xc8\xf5\xe9\x9d\x94\x0c\x24\x48\x2d\x18\xc8\xc4\x0a\xee\xb9\x4e\x51\xd7\x51\x3e\xd8\xd3\x3e\x35\x03\x4e\x34\x2e\x03\x84\x25\x13\x84\xd4\x9b\x86\xcd\xcd\xff\xd0\x76\x69\x10\x2e\x86\xc3\xef\x90\xfc\x25\x09\xec\x6f\xe0\x67\xb2\x68\x0a\x20\x5b\xd3\x40\xcd\xc5\x78\xd2\x6d\x59\x5c\xe1\xf6\x1c\x15\x44\x8c\x3a\x8d\x40\x58\x9f\x38\xf6\x91\x59\x3b\x1c\xca\xa1\xd2\xec\x16\xbf\x7d\x6e\x4b\xa8\x2c\xd4\x9b\x96\x28\x1b\xe9\x28\x6c\x49\x47\xca\xf0\xb4\x9e\x8c\xbb\x11\x0d\xeb\x0b\xb8\xf3\x9d\x94\x6d\xca\xf9\x0e\x26\x9d\xf2\x2d\x74\x3c\xe6\x37\x99\xd2\x6e\xe5\xb7\x99\x52\x94\x6d\x6e\x62\x15\xb3\xb9\x8d\xb5\xf9\x77\x7b\x09\xcd\x69\x66\xd8\xe8\x86\xc6\x46\x0e\x4f\x89\xf1\x8a\x47\x69\x32\xdb\xba\xac\x08\x51\x4e\x36\x44\x10\x8f\x14\x33\x2d\xed\x06\x93\x73\x1d\x22\x67\x3e\x0e\x12\xa4\x1c\x0c\x09\x52\xc8\xa6\x0a\x93\xac\xe4\xba\x10\xd6\x11\x15\x19\x31\x62\x53\x6b\x27\x5f\xfd\x0e\x29\xbf\x16\xe9\xbb\xf7\x97\x3a\x32\xbd\x25\x69\xea\xe9\x4d\x9a\x5d\xb8\xab\x5c\xff\x69\x7b\x53\xed\x2e\x80\x8f\xaf\x30\x69\xb6\x01\xfa\x2c\xfd\x62\x32\xb5\x27\x69\xfc\xa9\x0d\x41\x57\x46\x2f\x94\x2d\x79\x3c\x8a\x2f\x26\xe4\xec\x64\x29\x20\x59\x57\x97\xda\xc6\x38\x79\x1e\xe3\x73\xf8\x7e\x8f\x64\x7f\x8a\x53\x4e\xe5\x7a\x5d\x03\x18\x4c\x3c\x72\xe6\xf7\x13\xdc\xa3\x1d\xf9\xae\x3b\xc2\x95\xd7\x29\x6d\x64\xa3\x5c\x4f\x91\x15\x59\x93\x07\xb2\x24\x87\x69\x38\x43\x4b\xba\xa6\x70\xf7\x79\x25\x45\xe7\x88\x8a\x51\x4a\x36\x54\x8c\x0a\x82\x72\xca\xf1\x0d\xda\x52\x86\x87\x43\x74\xa0\x39\xc9\xe9\x96\x6c\xe9\x41\x82\xc2\xad\x69\x1f\xe3\x00\xad\x0c\x82\xa5\x44\xb0\xa5\x7c\x94\x92\x9c\x72\x89\x20\xa2\x02\xdf\xa0\x8d\x41\x10\x91\x88\x6e\xc8\x86\x1e\x24\x28\xdc\xb8\xf6\x31\x26\xb9\x99\x1c\x5b\x33\x39\xa2\x9b\xc4\x4c\x97\xc4\x4c\x17\x05\x04\x2e\xce\x20\x04\xe4\x62\x92\xab\x3c\xc3\x21\xca\x29\x84\x14\x59\x64\xa3\x50\x0c\x87\x68\x43\x21\x04\xd4\x61\x12\x29\x8c\x20\x05\x41\x48\x51\x41\xb6\x7a\xd6\x6d\xe5\x04\x4c\xf4\x04\x24\xb9\x8e\xcd\x31\x89\x74\x6c\x04\x57\x60\x50\x69\x6f\xb9\xd0\x86\x44\x98\x94\xcd\xd1\xce\x96\x44\x24\x1f\x6f\xc9\x66\x1c\x61\x4c\x76\xa0\x98\x5b\x1d\x8f\xeb\xe3\xf1\xe1\x78\x5c\x62\xc8\x6f\x4f\xff\xd2\x48\xd0\x5b\xb2\xc1\x64\x35\x2b\x8d\x04\xb4\x25\x11\x0e\xac\xd4\x08\x93\x87\x26\x35\x6f\xa5\xca\x2f\xb2\xb6\x53\x37\xad\xd4\x0d\x26\x4b\x1b\xf3\xa6\x85\x79\x23\xa9\x68\xb4\x79\xcd\x88\xfa\xa2\xfb\xc4\x8a\x80\x7a\xc2\x39\x64\x66\x7c\xce\x1b\xff\x3e\x2a\x4d\xd9\xed\xea\xa4\xbf\xdb\x91\xea\x96\x87\x62\x1f\x71\xc7\xaf\x1d\xab\x0d\x94\x62\xb7\xc7\x58\x35\x9b\x65\x81\x7b\x45\x62\xfb\xa9\x0e\x12\x5b\x86\xbc\xd5\xc1\x2d\xb9\xf8\x8a\x09\x46\xdf\x12\x08\xef\xf2\x3f\x14\x71\x44\x7f\x20\x07\x30\x7b\xa0\xbf\x10\x38\x46\xff\x21\x61\x21\xdf\x64\x49\x64\x5b\xb1\x35\x5e\x38\x2a\x05\xa5\x7c\x24\xf7\x00\xd4\xce\x91\x2b\x83\x2e\x13\xea\xe6\x76\x0f\xf0\x4a\x02\xa9\xab\x79\xa7\x89\x6b\x99\xa8\x6f\xd9\x9d\xa6\x3e\xc8\xd4\xec\x04\xb1\x32\x65\xd9\xe9\x94\xda\x13\xff\x80\xeb\xeb\xf5\x9a\x4f\x73\x75\x53\x5f\x5f\xaf\xd3\xa4\x42\xe3\x9c\x96\x14\xeb\xe4\x2f\xf6\xbc\xec\x16\x25\xac\x27\x75\xf4\xc5\xaf\x67\x5c\xb6\x18\xf7\x08\x62\xce\xac\xfb\x59\x48\xd9\x75\xcc\x98\x9b\x06\x60\xfa\xaf\xec\x3d\xa8\xbe\xd3\xab\x4b\xfe\x5b\xb7\x68\x5d\xe2\x46\xa7\xff\xfc\x4c\x7a\x24\xd3\xc3\x49\x4e\xdf\x93\x03\x5c\x91\x7b\xce\xc2\xf4\x79\x4f\x31\xca\x4a\x45\x3b\x8b\x61\xda\x9e\x10\xa5\x54\x3b\x8d\x31\xa6\x4b\xf3\x74\x31\x1c\xfa\x54\xd6\xc5\x24\x1b\x3b\x12\x99\x86\xf1\x93\xd2\xb5\x53\xb5\x57\x81\x38\x6d\xa1\xf2\x8c\x9b\x19\x55\x70\x74\x5a\xf0\xe1\xe3\x05\x1f\x4e\x0b\x16\x59\xde\x53\x6e\x63\xdb\x0a\x6d\xa8\x9d\x9a\xf6\xb4\x62\x02\xe3\xd0\x38\x6b\xa5\x7f\x26\x07\x77\x97\x36\xdf\xff\x4b\x0e\xae\x28\xe2\xf5\x9a\x17\x3f\xda\x1e\x5a\xe9\xcf\xb2\xd1\xe5\x6a\xd5\x1d\xfe\xf5\xe5\x41\x75\x87\xb9\x7e\x61\x62\x33\xbf\x47\x1c\xec\x48\xc6\xfe\x02\xe8\x1d\x71\x77\x8f\xf5\x2d\x06\x78\x35\x45\x64\x79\x03\x1f\x29\xf8\x43\x0b\xfe\x80\xd5\x7d\x0c\x09\x5e\x49\xca\x8d\xb3\x19\xfa\x41\x4e\x74\x2e\x99\xd8\xc1\xae\xe5\x07\x84\xc1\x41\xc1\x56\x5b\x39\x21\x27\x4f\x32\xe1\x60\x97\x6f\x73\x71\x90\x5c\x44\x79\xcf\xb6\x0e\x01\x7e\xa7\x6f\xd9\xa5\x8a\xf8\x49\x86\x0f\x54\xbb\x55\xd6\x3e\xc4\x4f\xe7\xac\x68\x9c\x8a\x53\x51\x5f\x10\x98\xd6\x4e\xc7\xe5\x0c\x22\xa1\xfd\x05\xfd\x92\x65\xf7\x25\x5d\xda\xd7\xdf\x9a\xfd\xe7\x93\xe2\x52\x01\xab\xb4\x43\xd6\xac\xc7\x21\x6b\x36\x4f\x17\x53\xe5\xe6\x1d\x1d\x88\x90\x1b\x29\x7d\x50\x0c\x77\x39\x6b\xff\x41\x49\x93\xd0\xf1\x65\xa9\x5f\x07\x6b\x00\x19\x48\x93\xfa\x42\x5a\x39\x1c\x22\xe3\xcc\x94\x9a\x38\xe3\x4f\x41\x3b\x23\xaa\xdd\x7f\xb6\xbe\x3b\x2b\x80\x7d\x67\x08\x1b\x67\xa5\xcc\x21\xee\x64\x82\x5b\x37\x36\x0c\xea\x43\x07\xf5\xe1\xbf\x87\x5a\x51\x59\x1f\xa4\x5b\x94\xd7\x71\xe6\x50\xab\x8e\x38\x1e\x5b\xb5\xeb\xd2\xd9\x46\x76\xf8\x1d\xc8\x0e\x7d\xc8\xba\x07\x69\x80\xad\x1b\x49\x5b\x15\x6e\xe7\x6d\xd3\xd1\x8e\xfa\x77\x9b\x4d\xbf\x1d\x05\xe6\x80\xea\x35\xac\xe6\x6e\x18\x5c\xb1\x8b\x67\xa3\xb8\xbe\x7d\xe4\xe4\x7b\x87\x38\x0e\x0e\xfc\x4b\x12\xd2\x27\xb8\x65\x13\xb4\xb2\xc9\x18\x99\x2f\xfe\x8d\x07\x96\x0d\xbd\xfb\xea\xbc\xc4\xe4\x81\x15\x31\x4b\x45\x2b\x87\x8e\x73\x30\x79\x54\x76\x24\x76\xa2\x8a\x72\x30\x59\xb1\x6d\x9c\x1c\x5a\x69\x2a\xca\xc1\x6a\x81\xc8\x54\xd7\xf3\xb2\x71\x19\x65\x66\x16\x4c\x29\x38\xa9\x07\x00\xc9\x68\x87\xc3\xb3\xa2\xd5\x9c\xd6\x17\x2d\x8c\x00\xdf\xe3\x12\x59\x09\xf3\x05\x26\x0d\x32\x5a\x90\x02\xae\x2c\x03\x1a\x19\x68\xb2\x3d\x55\x24\xd4\xa9\x58\xff\x1a\x2b\x23\x64\x7f\x5a\x65\xaa\x58\x29\xec\x19\x17\x4d\xe8\x24\x8e\x5a\x2d\xeb\xbb\xfe\xf5\xb9\x86\x00\x35\x93\xf6\x8f\x96\xa9\xe1\xfb\xf1\x06\x39\xfc\xc7\x0d\x72\x68\x1a\xe4\xf0\x7f\x6f\x83\x98\xe9\x9d\x66\x1f\xf4\xc5\xa9\x13\x6e\x51\x76\x38\x45\x49\x3b\x99\x24\x96\x43\x3f\x96\x43\x07\xcb\xa1\x85\xe5\xd0\xc5\xb2\x9f\xc8\x18\x53\x1e\x2f\xe7\xfe\xe2\xb9\x91\x66\x80\x9b\x01\x27\xd7\x53\xe3\x4c\x09\x6c\x69\x48\x5d\x97\x89\xb1\x57\x6c\xa1\x76\x1b\x9f\x82\x5d\x48\xd8\x4f\xd9\x90\xc6\xbd\x20\xd4\xb5\xa1\xf2\xf0\x2c\x95\x07\x4d\xe5\xa1\xa6\xf2\x70\x4a\xa5\xd2\xa5\xd5\xa5\x1f\xda\x74\x1e\x9e\xa7\xf3\xd0\xa6\xf3\xd0\x4b\x67\xc3\xe8\x78\xf4\x45\xc1\x59\xd9\x70\x47\x63\xc2\x47\x7b\xa0\x7a\xb3\x76\xb8\x6b\xcb\x04\xb0\x0f\x89\xda\x30\x4d\x13\xa5\xf9\xec\xac\xca\xda\x7f\xba\x3e\xfc\xd3\x30\x12\x58\x29\x0a\x9e\x81\xd6\x5a\x04\x03\x25\xe1\x97\xac\x78\x0e\x1a\xd4\x87\x0a\xc2\xf8\x69\x4f\x2c\x35\x0e\x54\x45\x83\x36\xb1\x2d\x90\x26\x5b\xfb\x79\x04\x3b\x6b\x3b\xe5\x04\x14\x5b\xce\x82\xda\x5c\x18\x38\xcd\x1d\xda\x90\x74\xe4\x63\x23\xa3\x58\x8c\xb8\x95\xf1\x70\x9a\x31\xea\x66\x3c\xd8\x19\x41\x35\x3d\x88\xd3\xc1\x12\x27\x4a\xdc\x9a\xef\x16\xc3\x61\x13\x6e\xfc\xe5\x2c\xe7\xbb\x05\x95\x7f\xcc\x16\xa8\x01\xc2\x2d\x97\xae\x5a\xd8\x26\xf3\x64\x81\x2b\x54\xb4\xbc\x17\xd4\x5e\x08\x94\x67\x0a\xbe\xcd\xc7\x72\x47\x69\x79\x23\x20\x4e\x29\x98\x88\x43\xb8\x10\x05\x4b\x95\x99\x05\x0e\x1e\x0e\xbb\x51\xc4\x29\x78\x02\xee\x69\x1d\x3c\x2d\x69\xca\x1f\x07\x0c\x29\xb7\x17\x4b\x56\x72\x47\x8a\x7c\x61\x2b\x3a\x53\x02\x3c\xa4\x6c\x69\xfd\xb0\x0f\xd8\x1a\x9b\xf0\x8e\x72\x14\x9a\xad\x2e\x36\x7e\x1e\x8d\x73\x22\xe5\x47\xd4\x48\xd2\x53\xd8\x9a\xd4\x82\x38\x92\x62\xac\xbe\x92\x81\xa7\x2d\x50\x72\x00\x57\x38\x6f\x51\x8a\xc9\x0f\x08\x93\x5f\xda\x2e\xd3\xf5\xdc\xa8\x5f\x92\x00\xf7\xb0\xb5\x2f\x4a\x04\xae\x28\xfb\x1c\x51\x36\xb3\xd0\x3c\x48\x31\x1c\xee\xd4\x07\xfa\x8b\xea\x98\xe6\x61\x05\xe5\x94\x52\x57\x05\x64\xf7\x6f\x94\xe5\x4f\xad\xf3\xf8\xa7\xdc\xc1\x9c\xd2\xf2\x57\x55\x09\x88\x71\x08\xef\x75\x89\xe5\x9d\x51\xde\xe4\x69\x39\x2f\xfd\xf2\x5f\xc5\x6a\x90\x9e\xf9\x2d\x3c\x7f\x91\x78\x0e\x6e\x5c\xde\xf1\x44\xee\xb2\xd3\xf5\xf1\xa8\x91\x68\x2f\x9c\x1f\x21\xad\x6e\xa0\x16\xca\xbf\xca\xed\x06\xa9\x77\x0c\x8d\x76\x81\x64\x72\x63\xc9\xd6\xfc\x6f\xe3\xc2\x36\xb6\x25\xa5\x8e\xff\x79\x5c\x34\x86\xbd\x24\xa4\xef\x91\xda\xf3\x65\xb0\x93\x2b\x2b\x3c\x0d\x55\x7e\x83\x87\xa8\xef\x9f\x4d\x7e\x39\x54\x44\x91\xfc\x89\x1f\xe4\xde\x41\x85\x48\xe8\x6e\xb9\x60\x2a\x4e\x87\xa6\xea\x9a\x60\xd7\xba\xa1\x11\x3c\x6b\xf6\x7c\xf2\xd2\x08\x09\x69\x79\x5e\x8e\x7c\xbd\x9d\xd3\xdc\x22\xee\xf1\x07\x16\xaf\x10\x43\xb1\xda\x56\xab\xf2\xe4\x07\xc9\xe9\x56\x2f\xa4\x1b\xba\xd5\x8b\x55\x44\xb7\x3d\x8e\x97\x57\x34\x57\x7e\x62\x31\x59\xd3\x0d\x04\x05\x26\x0f\xb4\xbc\xc8\x95\xf8\x4c\x96\xb4\xbc\xd8\xa8\x30\xdc\xf9\xe8\x43\x13\xff\xc6\x49\xfe\xac\xcf\x22\x70\x5d\xd0\x7d\x08\x00\x93\xcd\xc7\x32\x2c\x7b\x32\x6c\x2d\x23\xba\xe3\x71\x6b\x1f\xa3\x58\x7e\x9d\x6b\x9d\x45\x31\xa2\x99\xb9\xd3\x1f\xcd\x8b\x05\xd9\xcb\x9f\x96\x79\xdb\x61\x38\x3c\x43\x87\xf1\xea\xf6\xe1\x78\x3c\x8c\x57\x37\xe3\x87\xe3\x71\x3f\x5e\xdf\x2e\xe1\xe7\x66\xbc\xd4\xcd\xfa\xb6\xf1\xc1\x97\xc3\xb6\xfe\x80\xc7\x1c\x93\xfb\x26\x7a\x03\xd1\x7b\x3c\x16\x98\x3c\xd2\xb7\xe7\x6f\x47\xf7\xe7\xf7\xd3\xc7\x1b\xe5\x3f\xfd\x91\xec\xe8\x3c\x25\xc5\x45\xb6\xc0\x60\xd3\xb1\xb5\x8f\x02\xcf\xb4\xba\xfb\x3d\xb9\x6b\x0e\x01\x9f\x39\xae\x7b\xdf\x7b\x5c\xf7\x9e\x8e\xb7\x1f\x3d\xae\x3b\x05\xb8\x98\x80\x9e\xe7\x8e\xbe\x1f\x75\x52\x48\x6f\x3b\x76\xdb\x50\x12\xfc\x01\x3e\x26\x8b\x69\xdd\x9a\x08\x06\xe3\x89\x8f\xe9\xd5\x4d\x73\xcb\xe4\x03\x39\x60\xb0\x49\xa8\x8d\x78\x54\xcc\xfa\x96\xee\x47\xef\x87\xc3\xf5\x0d\xdd\x8f\xee\x82\xd5\x2d\x3d\xc8\xcf\xd5\x0d\x3d\x8c\xee\x20\xd9\xca\xb0\xc7\x00\x68\x21\xdd\x63\x70\x5f\x5f\x37\x33\xae\x2a\xa3\x50\xda\xcd\x50\x4a\x77\x73\x6f\x41\x0a\xba\x9b\xfb\x0b\x92\xc1\x2c\xe9\x1f\xc6\x4f\x75\x6c\xd0\x0f\xe4\x96\x49\x1c\x72\x54\x9c\x67\x04\x15\x23\x1f\x9f\x67\x98\x48\xa0\x6f\xd3\x88\xef\x83\xc2\x3c\x34\x05\xf3\x50\x85\x55\x4a\x5a\x29\x57\xbe\x15\xca\x48\x49\x52\xac\x6f\x04\xa3\xad\x66\x37\xb5\x12\x69\x6b\xc4\x8f\x7d\x7d\x5b\xc5\x9a\x72\x73\x6f\x81\x47\x8a\xb5\xd9\x6a\xa8\xad\x66\x52\xa7\x58\x0e\xbd\x58\x7c\xc0\x22\xb2\xbc\xd1\x4d\x49\x29\x56\xf9\xa7\xb5\x9f\x42\x6a\xb4\x37\xca\x8f\xd4\x4f\xb6\x07\x29\x7d\x73\xe6\xa7\x79\xbe\x98\x6e\x20\xdf\x19\xe5\xc7\xe3\x76\x38\xdc\xe8\xe2\x29\x35\x84\xc8\x38\x53\x03\x4a\xdb\x35\x6a\xd2\xfc\x4e\x9a\xbf\x38\x1e\xff\x17\x19\x6c\x44\x83\xe1\x6a\x3b\x1c\xfe\xb9\xae\x23\xb1\x72\x10\x8e\x2b\x61\xd4\x7f\x88\x93\x79\x48\xb6\xb6\x4b\xe7\x9f\x6b\xf5\x56\xe2\x5a\x8f\x39\xb9\xbd\x6f\x39\x4d\xc7\xfe\x19\xe5\xb3\x6f\x8e\x47\xf4\x0d\x2d\xb9\x30\xae\xa7\xff\x40\x38\xc6\xc1\x1f\xec\x83\xac\x3f\x18\xbc\x44\x00\xbf\xfe\x46\xab\xe0\xcc\xd1\x64\x2d\x60\x90\xfc\xd9\x73\x7d\x4e\xbd\x29\xb7\x5b\x98\x63\x24\xe8\x4f\x73\xbe\xc0\xb6\xe0\xab\x1c\x9a\xfe\x11\x09\x53\x7d\x7d\x10\x8e\x83\x3f\x9d\xc6\x4d\xf3\xe6\xd8\xad\xbe\x6e\xaa\xab\x49\xe6\xb9\xdd\x34\x7f\x36\x6b\x54\xbc\x42\x27\xc7\x19\x52\xb4\xe1\x34\x96\xb4\x9c\x3e\x22\x24\xcc\xcb\x9a\xbc\x77\x52\x4d\x45\x5f\x82\x9e\x48\xe9\xb9\x20\xe9\x39\x12\x23\x1f\xe3\x4a\x2d\xe7\x7f\x83\x8b\x9b\x53\xe5\x49\x00\xfd\xa4\xef\x08\xeb\x89\xc5\x89\x9a\x9d\x02\x5e\x06\x09\x58\x05\xb7\x3e\x71\xc0\x8e\x47\xf4\xd3\xbc\x58\xc0\x30\xa4\x67\xbe\x55\xb1\xff\x55\x17\x41\xeb\xfb\x7f\xf5\x3d\x72\x61\x0e\x7d\x40\xaa\x02\x67\x15\x3f\x2b\xdf\x5a\xff\x56\xfd\xd9\xbf\x53\x7f\x76\x2e\x08\xb3\xeb\x9f\x36\xf5\x87\x3b\x9f\xe8\x27\xb7\xcc\x55\x53\x11\x5f\x55\xb6\xa9\xda\xdf\xfa\x1e\xe9\xff\xe9\xe4\x7a\x77\x4a\x7f\x9a\x33\xb5\xf0\xd5\x13\x53\xb6\x82\x35\x23\xd5\x3c\x4c\xad\x79\x08\x5c\xa2\x7e\x95\x4a\x05\xc6\x7e\x53\xf6\x9f\x5a\x6f\xaa\x2a\xfe\xca\x14\x7f\x15\x5a\xfc\x88\xa9\x30\x7b\x65\xda\x78\xc5\xa9\x9b\xad\xb3\xa1\x9a\x75\x23\x82\xb6\x76\x4f\xf4\x28\xf6\xae\x6d\xbd\x1e\x1c\xf2\xa1\xd4\xd8\x33\xa4\xc6\x9e\xa1\x30\x47\xb6\x85\x3a\x7e\xc5\xc6\x28\x49\x74\x7c\x9c\x8a\x1e\x07\xa7\xd3\xdc\x3a\x19\x2f\xe5\x8c\xb6\xef\x09\x4c\x95\xb1\xbd\xef\x5e\x9f\x97\xd3\x54\x9b\x45\xa4\x98\x14\xfa\x28\xb6\x90\x13\xde\x3e\x3b\x6d\x4c\x24\x44\xdb\xae\x60\x96\x83\xc1\x84\x14\x0e\x43\xe2\x91\xb6\x99\x44\x07\x16\xe5\x44\xc1\xc1\x99\x72\xcb\x6a\x22\xb7\xae\xea\xd4\x5d\xf5\x47\x64\x0b\x9f\xff\x27\xba\x82\x64\xb4\x30\xd2\x8c\x78\x4e\x9a\x49\x7b\xa5\x99\x94\x8e\xc5\x47\xa5\x99\x53\x80\x8b\x49\x65\xf7\x92\xe8\x1a\x45\xb5\x3b\xad\x20\xdf\x21\x18\xaf\x30\x5a\xd9\x7c\x02\x8f\xb3\xa4\x24\x1d\x75\xd0\xf6\xec\x6d\x06\x59\x85\x89\x19\xde\x66\x70\xe7\x44\x9c\x98\x0f\x75\x69\xb0\x26\xed\xdf\x9b\x23\x6a\xc9\x6a\xba\xde\xa2\x6a\xae\x24\xea\xed\xbe\x94\xba\xd5\x3b\xc4\xdf\xc5\x29\x67\xc5\x1f\xe4\x78\xe5\xa9\x40\x92\x6c\x8f\x30\x63\xf0\xac\xbb\xa5\x56\x27\xc4\x37\xc9\x74\x34\x8a\x9b\xe1\xae\x92\xe7\x31\xf0\x02\x53\x72\xfd\x04\x86\x76\xa5\x11\x76\xb4\xea\x85\x51\x96\x94\xee\x12\xfa\x28\xe5\x65\x09\x82\x6d\xd8\x7a\xa2\xcd\x4e\xc6\xe6\xd0\xaf\x74\xb5\x4f\x28\xb8\x0f\xcd\xce\x9b\x08\x4c\x4a\xb8\x22\x5c\x1f\x88\x67\x2e\x8b\x94\x3f\x82\x3b\x91\xe5\x28\xbe\x40\xc9\xd8\xc7\xa4\xac\xfd\xbe\x64\x55\xc5\xdd\x55\xea\x46\x5c\xb0\x70\x73\x3c\x22\xeb\xab\xef\x68\x1c\x5e\x06\x66\xe1\x06\xd9\xfd\xa8\xde\xd2\x85\x27\xe0\xbf\x07\x9f\x22\x9d\x08\xad\xd5\x78\xb3\x89\x93\x08\xde\x19\x04\x3f\xb1\x60\xd4\x59\x3f\x33\xdd\x3d\x32\x33\xeb\x0b\xbf\xa1\xde\xf1\x28\x6e\xa8\x77\xea\x9c\xe8\xdb\xf4\x81\x25\x71\x34\x88\xe2\x2d\x4f\x4b\xb9\xf1\x19\xac\xb2\x62\x20\xb7\xc1\x64\x00\x27\x6d\x03\x3a\x70\x46\x7c\xe4\x90\x81\x3a\x6c\x83\x6f\x61\x8c\x97\xec\x77\x8e\x49\xda\x7a\xe1\x98\xe8\x07\x8f\x9b\x17\x82\xd5\x8b\xc1\x80\xf5\x4c\x72\x7a\xf3\x42\x30\xe5\xe7\x05\x61\x2e\x9c\x57\x98\x98\x11\x1c\x6f\x34\x19\x28\xd7\x4f\x07\x2b\x2a\xce\xc0\x03\x82\x79\x57\x98\x0a\x0b\x81\x89\xb2\x30\x98\x28\xb8\xf7\x56\x0b\x1e\xa9\x11\x83\x52\x3d\x60\x0a\x52\xe0\xaa\xd5\xa4\x20\x1e\xd1\x6e\x3f\xe9\x0a\xaa\xd4\xda\x01\x45\x43\xab\x5d\x68\x07\xa1\x72\x0a\xd1\x73\xac\xd9\x7e\xf0\xb8\x71\x98\x39\x88\xd3\x01\xc7\x60\x15\x12\xb2\x24\x81\x13\x4d\xb3\xbc\x41\x26\xfd\x7c\xc5\x77\xec\xc0\x0b\xc4\xe0\x5c\x40\xae\xaa\xf5\x24\x95\x08\x52\x77\x13\x47\xb2\xa6\x85\x85\xa9\x20\x19\x36\xb6\x61\xc5\x3c\x6b\xb2\x24\x32\x4b\x6c\x41\xc6\x24\xc1\x96\x91\x1f\x09\xc1\x1f\x45\xad\x54\x2e\xc1\xbc\xaf\xa4\x21\xf8\x90\x1c\x8d\x70\xe9\x32\x50\x1c\xcc\x8c\x13\x0c\x1e\x1d\x8f\x28\xd5\x8e\xef\x50\x3d\x60\x1a\x2f\x19\xf0\x7e\x18\x0e\x50\x68\xa4\x8a\xdd\x78\x2c\xe5\x8a\x26\x7d\x38\xac\xb3\xe9\xb9\x85\x30\x9e\x7a\xb4\x7e\xf6\x71\x38\xd4\x4f\xae\x49\xda\xaa\x2a\x05\x81\x54\xae\x37\xad\xf6\xb7\x5b\xab\xf5\x2e\xa7\x35\x9c\x65\x2f\xcc\xc5\x62\x6a\x99\xe5\x28\xcb\x3a\x2d\x9f\x9d\x3c\x60\x3d\x1c\xa2\x9e\x57\xad\x39\x72\x2c\x07\x82\x2f\xb4\x9e\x72\x2f\x06\x6d\x8d\xe5\x8b\xdb\xda\x31\x20\x3c\xd5\xde\xf7\x34\xbb\x7a\x6c\x55\xbf\xc0\x6a\xde\x5c\xad\x9f\x62\xb5\x0e\x09\x03\x47\xbb\x90\x74\xba\x0f\xe6\x56\xd8\x8d\xd3\x92\x17\xe2\x8b\x95\xe0\x05\xb2\xe7\x2d\x18\x17\xdb\x35\x37\xa4\x37\x94\x49\x16\x28\xab\x81\xc4\xbf\x4b\xa5\xfd\xa2\xfc\x69\x63\x81\x3b\x9a\xbe\x8e\xfa\x36\x5d\x65\xf4\xd4\xfc\x56\x8f\x5b\x65\x99\x07\x77\x9e\xa8\xe3\x8c\x18\x89\x69\x73\xb7\xb7\xbe\xc7\x3b\x4b\x15\x67\x18\x39\x03\x67\x94\xba\xfa\x90\x53\x7f\xa9\x53\x4d\xfd\x21\xdb\x50\xb2\x8d\x0b\xf9\xd1\x9c\x68\xc9\x28\x48\xd7\x27\x9f\xc6\xac\x04\x25\xdd\x79\xab\x5f\x3c\xea\x8b\xa7\x4f\x95\x39\x4c\x41\x25\x4d\xe6\x31\x40\xaa\x90\x9d\x16\xd2\x72\xce\x8c\xea\x6c\x77\xda\x15\xe0\xb9\x93\x7d\xa4\x1b\x9c\x2d\xdb\x8f\x81\x0f\x39\x5a\x81\x38\x7e\xfd\xfa\xf5\xeb\x93\x0e\x68\x31\x0e\x81\xf1\xb4\xaf\xe9\x76\xaa\x1c\x78\x01\x3c\x36\xcf\x7f\x1b\x17\xba\xc1\xa9\xc8\x96\x0e\x87\xbb\x66\xb4\xa4\x98\xa8\xea\xd0\x27\x3d\xd6\x82\x5d\xfd\x2e\x36\xbc\x57\xa9\x15\x92\x3d\x8f\xbb\x4b\x26\xb6\x9d\xa1\x50\xb3\xff\xad\x66\xad\xa1\x61\xe6\x5b\xc3\x60\x83\x1a\x66\xe7\x66\x3b\xa1\x1d\x3b\xa0\x33\x0f\x37\xc0\x3a\x45\x75\x27\x24\xf5\x97\x48\x9f\x94\xa7\x03\x8d\xd1\x3c\xda\x62\xf0\x54\x98\xec\x6a\xee\x63\xd6\xff\xb0\x3d\x70\xb5\x33\xe6\x8e\x8e\xd5\xb6\x25\x35\xf2\x8c\xdd\x0b\xf0\xfa\x10\xaf\x6d\xcb\xe1\x39\xdb\xba\xa1\xa6\xc6\xa5\x35\xa5\xc9\x4c\x8c\xa9\xa6\xee\x62\x12\x68\xe9\x14\x2e\x2c\xa2\x26\x05\x13\xe3\x7e\x9a\xd2\x72\xc6\x64\xfc\x46\xbb\xa5\x0f\x1a\x0f\xd8\xa5\x7a\x45\x23\xac\xfd\x4f\x1a\x0e\xbf\x25\x39\xf5\xa6\x5b\xba\x9b\xe7\x8b\x69\x3e\x1a\x61\x50\x0e\xee\xc1\xeb\xd0\xd6\x3d\x50\xca\xb0\xf5\x74\x17\xda\x6a\x76\x2f\x59\xf8\x74\x4b\x9f\xd4\x97\x7a\x41\x53\x31\xef\xe0\xcc\x27\xf5\x00\xd0\xfc\x7a\x56\x9f\x8b\xc8\x9d\x42\xca\x11\x0e\xea\x18\xb2\x0f\x04\x39\x04\xac\x22\x3b\xb5\xcf\x86\xdb\xd3\x35\xb8\x1c\x91\x72\x5c\x5b\x07\xcd\x0c\x2b\xc6\x63\x45\x09\x4c\x1c\xd9\xbf\x63\x10\xf1\x9d\x20\xa9\x4e\xd6\x62\xe3\xb3\xdc\xee\x2c\xcb\xc0\xbf\xde\x9b\x6b\xb3\xcd\xd3\x69\xcd\x2d\xbd\x6d\x52\x3b\x37\x2f\xe5\x02\x9a\x58\x0b\xa8\xec\x74\xd3\xeb\xc9\xbc\xec\x9c\x98\x85\x16\x64\x48\x76\xb8\xc6\xb3\x85\x25\xd5\x5a\x67\x65\xb7\x6c\xe8\xd6\x74\xcb\xa6\x6e\x78\xbf\x6a\x1e\x51\x51\x3e\x4d\xb6\x7d\xc3\x4b\xd5\xeb\x63\x08\xf7\xb0\xd2\x6d\x64\x27\x83\xdd\x6f\x53\x82\x5c\x49\xb9\x2b\x05\xc3\x36\x3f\x2e\x1a\x1f\xf7\xfc\x71\x90\x22\x2e\x1b\x9e\x91\x42\x03\xbb\xca\xbb\x65\x89\x4d\x6e\xf7\x81\x17\x25\x1c\x45\x7b\xee\x2b\xf7\xd2\xe9\xc0\xd1\xf9\x82\x80\x00\x7d\x52\xd2\x27\x24\x68\x85\x46\xbf\xc1\x4d\xc0\x32\xb2\xaa\xd0\x63\x9c\x46\xd9\xa3\xfb\xeb\x9f\x77\xbc\x38\xe0\x8a\xf8\xaf\x2f\x83\xb6\x80\xdc\x82\x68\x91\xa2\x55\x3c\x71\x1a\x8b\x96\x4b\x7f\xae\x8e\x2b\x4f\x1f\x9e\x54\x19\x50\xf7\x74\xc5\x72\x56\x09\x0f\xdb\xea\xd7\x1c\xf5\x97\x11\xe6\xda\x54\x35\xba\x13\x7d\x31\xca\x7e\x28\x7c\x38\xe4\xea\x09\x70\x38\x99\x85\xa7\xbc\x01\x15\xa5\xdc\x94\x80\xd4\x4b\xde\xb5\x61\x2b\xab\x90\x20\xdc\x98\xaf\x22\xf5\xec\x63\xda\x94\xd3\x32\x74\x27\x92\x01\xb0\xd6\x83\x97\xe6\x8b\x44\x34\xed\xd7\x51\xaf\xfa\x12\xc8\x1a\x74\x58\x54\x58\xa7\x24\x64\x49\x4f\x37\xa6\x07\x9a\xdf\x4e\xe0\x61\x2f\xa6\xdf\xd3\x9c\x4f\x16\xee\x3e\xb0\xbf\x0e\x98\xec\xe9\x03\xb8\xbc\x6b\x5e\xa5\x25\x6f\xe9\x72\xe6\x07\x1e\xb9\xa7\xcb\x99\x17\xf8\xe4\x91\x7a\xe4\x3d\xdc\xab\x7d\xbc\xad\x1f\xc3\x1d\x0e\xdf\xdf\x82\x51\x2f\x38\xe4\x99\xaa\x9b\xe1\xd4\x38\x54\x24\x8f\x37\x0d\xa0\x9a\xf1\x9b\xf9\xe3\x42\x3b\xee\x91\xac\xf0\x26\x9f\x8e\x46\x5b\xbc\x56\x3d\xbc\x99\x3f\x8e\xb6\x0b\x3c\x7d\x1c\xd1\xbc\xbe\x1a\x6a\x95\xf6\x6c\xc6\xd5\xfc\x3d\x64\x94\xdb\xce\xf5\x7c\x37\x9a\x2c\xa8\x8c\xba\x5f\x60\xf2\x7e\x44\xa3\x1a\x97\x4d\xec\xbf\x44\xc4\xfb\x9b\x55\xa7\x22\xab\xf9\xfb\x05\x96\xc8\xd5\x8d\xcc\x78\x85\x0a\x59\xb9\xd1\xdb\x05\xc9\x20\x70\xbf\x20\x09\x50\xf1\x76\x41\x4a\x4d\x0e\x5c\x4e\x2e\x28\x4d\x3e\x59\xba\xac\xc5\xfd\x62\x44\xe1\x78\x90\x48\x5a\xda\x35\x29\x6e\xd5\xc5\x64\x8f\xd2\xc7\x4f\x36\x4b\x48\xcb\x0a\x5a\xb2\xbe\xc4\xbc\x99\x3f\x8e\x73\xdd\x11\x31\xcd\x46\x08\x22\x46\xf7\x8b\x71\x86\xcf\x51\x32\x2e\xf0\x85\x8e\x7a\xbb\x18\x17\x98\xac\x6b\x67\xb5\x3a\x14\x8f\x4a\x4c\xb6\x74\xf2\x1c\xfd\xb2\xc8\x9a\xe0\x4f\x55\xf6\x7d\x43\xd8\x6a\xfe\x7e\x1c\xa9\x57\x69\xcb\x11\x82\x2f\x49\x55\x89\xcf\x51\x31\x4e\xf0\x85\x8e\x7a\xbb\x18\x27\x18\x13\xd3\x4a\x21\xb4\x50\xb5\x3b\xab\x87\xde\x70\x68\x8d\x85\x10\xcb\xea\xef\x87\xc3\x16\xc0\xae\x29\x75\x0d\x36\x15\xf2\x2f\x84\xc7\xb9\xfa\x1a\xf9\xe6\x7b\xe4\xf7\x8d\xda\xf9\x6e\x94\x8f\xb6\x0b\x09\x32\xda\x2e\xa6\x2a\x47\x9d\xa1\xaa\xcc\xe4\xa6\xeb\xaa\x92\x6c\xb3\x7e\x18\xd3\xa8\xb7\x9f\x80\xab\xa8\x93\xa2\x8a\xa4\x6c\xcb\xa5\xe8\xc7\xc2\x7b\x87\x68\x6e\x1e\x38\xbe\x3b\x71\x2a\xe0\xb0\x57\xc1\xef\x7c\x7f\xc6\x7a\xcb\x40\xd8\x1e\x8a\xf9\x85\xb0\x14\x53\xcc\x48\x50\x4a\x31\x65\xe2\x2d\x2d\xb8\x5b\x8a\x62\x25\xe2\x2d\xc7\xcd\x93\x5a\x3a\x06\x19\xb7\xda\x24\xeb\x75\xb6\x3b\x10\x72\xe3\x60\x76\x76\x33\xc7\x73\x02\x01\x3e\x8c\x10\x97\x09\x1c\x1b\x69\x45\x8c\x78\xc0\x2b\x63\xe5\x0c\xf7\xe3\x81\x9d\x7e\x93\xed\x8a\x12\x81\x9c\x7b\xe3\x4f\xa6\xcd\x66\x91\xd1\xb9\xf3\x47\x96\x3a\xc4\xf9\x9a\x2f\x1d\xe2\xbc\x63\x85\x43\x9c\x2f\xf2\x02\xc2\x07\x87\x38\x7f\xdc\xa5\xf0\x37\x91\xf1\xbb\xb5\x43\x9c\x3b\x9e\x3b\xc4\x79\x1f\x0a\x87\x38\xdf\x67\x0f\x0e\x71\xbe\xe2\xa1\xf1\xb5\xa8\x56\xe4\x94\xce\x9d\x3b\xc8\xf8\x0e\xac\x56\x3e\xec\xa4\xc8\xff\x13\x8f\x64\x78\xb3\x93\xc5\x15\xb1\x44\xc5\x84\xcc\x58\xd0\xf2\xd6\x9f\xcc\xca\xb1\x3f\x09\x3c\x29\x0c\xfa\x93\xa0\x6c\xc4\x0f\xb8\x96\x27\x7a\x5e\xcb\x14\xc6\x63\xfe\x0e\x6b\xef\x02\xe6\x10\x58\xeb\x4a\x99\x13\x6c\x65\x0b\xa5\x73\xbd\xaa\x1c\x10\x5e\xd8\x7a\xd3\xa5\x06\x60\x0a\xe0\x5d\x96\x8a\x4d\x07\x24\x92\x20\x19\x32\xcb\x12\xd8\xec\x38\xd8\x86\xe0\x3d\x10\x83\x36\xc8\xc6\x09\xe0\xf7\x1b\x05\x5a\xb6\x12\xbf\x55\x91\x45\x2b\x32\xd1\x91\x27\xa8\xb6\x56\x69\x9a\xde\x91\xdf\x25\xe9\x9d\x0d\x14\xa7\x3b\x01\xee\x24\x6d\x88\x7f\xea\x9a\x23\x7b\x48\x5b\x38\x2f\x2e\xf1\xc8\x6f\xe5\xb8\xb3\x70\xde\xf1\x30\x4b\xa3\x2e\xce\x83\x05\xf1\xf5\x2e\x49\x7e\x86\x63\xbb\xcf\x7c\xcf\x6b\x81\xfd\xac\x8b\xee\xc0\xd9\x20\xb9\x04\x09\x67\x0e\xdb\x3a\x81\x93\x6f\x1d\x3b\xed\x07\x9d\xf6\xc5\x3b\x27\x70\x7e\x78\xd7\x4a\x7b\xb4\x51\x43\x77\x57\x71\x2d\x9c\xcb\x19\x01\x2c\xd4\xf9\xcc\xa1\x74\x3b\x4b\xe8\x99\x17\xd4\xc9\x55\x7d\x25\xc9\x3c\x5e\xd1\xcc\xee\x67\xdc\x0d\xe1\x27\xd8\x33\x9f\xaa\x4f\x99\x94\x76\xd4\xbd\x68\x46\x58\xb1\xde\xc9\x2d\x41\x89\x2b\x7d\xcf\xf7\x29\x62\x42\x4e\xd4\xa9\x71\xf2\xde\xb0\x82\xe1\x50\x20\x46\x1c\xf3\xe9\x10\x6e\x7d\x60\x02\x89\x6b\x75\x9c\x0a\x69\x26\xac\x93\x4a\x2b\xc9\x84\x9b\x2d\x93\x9c\x96\x72\x80\xca\x29\x0b\x93\xdb\x34\xbe\x43\x1c\x60\x11\x72\xc2\xc6\x49\x12\x97\xaa\x7b\xe1\x13\x06\x8f\x9a\xc9\x62\x03\xd3\x5f\xa5\x2d\xb4\xb5\x43\xda\x58\x3b\x8c\xb0\xa1\x4f\x4e\xb9\x62\xa1\x09\xfc\xcb\x87\x37\xea\xbb\x21\xb2\x49\x2f\xed\xf4\x46\x10\xac\x1b\xbb\x68\x79\x1d\x5f\x16\xd9\x63\xa9\xce\x0f\xc1\x2d\xfd\x6f\x59\xca\x67\x52\xa4\x87\x79\xc7\xe1\x51\x53\x13\xaf\x1e\xc1\x53\x61\x92\x22\x0b\x4a\x1f\x17\x66\xf4\x49\x55\x34\xf0\xf9\x25\xd9\x42\x4d\x83\x97\xfc\x8a\x6c\xb2\x5d\x11\x5c\xbe\xe4\xd7\x24\x62\x87\xe0\xd5\xcb\x2b\x7e\x4d\xb6\xb2\xfa\xc1\xe4\xfa\xf5\x84\xbf\x24\xff\xdc\xb1\x42\xf0\x22\xf8\xfc\xf3\xcf\x5f\xf2\x97\xe4\xc0\x59\x11\x5c\x4f\xae\x5f\x5f\xbd\x76\x27\xe7\x2f\xbd\x73\x9f\x5f\x02\x17\x9e\xfb\xb2\x82\xb2\x08\x67\x41\xe6\x13\xfb\xe3\xda\xfe\xf0\x3d\xfb\xeb\xb2\xf5\xe5\xcb\x6d\xb2\x24\x4d\xa3\x68\x3e\xae\xed\x0f\x89\xa2\xf9\xba\x6c\x7d\xf9\xc4\x91\x55\xd2\x08\x4c\xf0\xaa\x09\xbe\x6a\x82\xbe\x05\xe1\x13\x27\x62\x07\x9d\x4d\x87\x2e\xeb\x90\x3b\x91\x04\xc0\xa8\x90\x5f\xf6\x87\x6f\x85\x27\x75\x58\xae\x49\xb1\x31\xa7\x9c\x4b\x4c\x35\xd0\xcb\x76\x66\xd9\xa0\xce\x62\x01\xb7\x09\x9a\x0c\x3e\x71\x74\xc3\x6b\xbc\xd6\x97\x95\x69\xca\x3f\xbd\x41\x4a\xf1\x53\xda\xde\x20\xbd\x37\x6f\xf8\xb6\x77\x47\x29\xdc\x87\x91\xdb\xb8\xb4\xf1\xcb\xdb\xba\x0b\x97\xd6\x57\x97\xeb\x07\x38\xcc\xf3\x0b\xb1\x76\xbd\xae\x9d\xec\x3f\xef\x1b\x9e\x51\x78\x0b\x5b\x3f\x03\x47\x62\xac\x1d\xef\xc4\xf5\x0b\x07\xc3\x61\x5d\x5b\x4a\xad\x78\x30\xf3\x88\xdb\xaf\x55\xb4\x21\xad\xa4\xb9\xbf\x98\x95\x41\x62\x9e\xdd\xe8\xbc\x71\x11\x9e\xde\xc4\x6c\xca\x99\x35\xc1\xa0\x8d\xd3\x5b\x9c\x67\xf3\x6e\x31\x0b\x4b\x4f\x03\x42\xde\xae\x36\xc1\x1b\x0e\xcf\x10\x57\xee\xe4\x6f\xd0\x6e\xbe\x5d\x28\x0c\x10\xf2\x17\x8b\xd1\x6e\xbe\x1d\xf9\x4d\xa4\x0c\x4b\x7c\x17\x93\xe1\xf0\x14\xfa\x96\x86\x18\xc4\xc7\xa9\xb2\xb3\xd1\x10\x64\x43\x35\x04\x1c\xd6\xc1\xc8\xa0\xda\x13\x5b\x6f\xe5\x0d\x48\xb7\x1e\x38\xb7\x7d\x3e\x76\x2b\xde\x7a\x99\xc8\x7e\x22\xa2\xcf\x85\xbe\xae\xf3\x45\xe6\xca\xb2\xda\x9e\xf4\x57\xb4\x9d\x7a\x11\x4d\x73\xba\x82\x77\x4e\xfc\x60\x75\x73\x39\x9b\x04\xab\xe6\xe1\x92\xfc\x9c\x46\x55\x7e\xe3\xc3\x55\x68\x1f\x57\xcd\x3b\x18\xd6\xc0\x38\x1e\xe7\x39\xd9\x28\x6b\xb3\xb5\xf5\xca\xc6\xdc\x5b\x4c\x37\xf6\xb7\xb6\x48\x7b\xa0\xeb\xf3\x6c\xbe\x59\x4c\x0d\xeb\xa1\x74\x33\x4b\xdd\xb2\x59\xeb\x85\x9a\x02\xf5\xd2\x4f\xd6\x18\x07\x86\xcb\xd4\xd0\x46\xda\xd0\xd0\xb5\xf0\xa1\xa0\x81\xb3\xd4\xb0\x4a\x2c\xd5\x90\x46\x46\x55\x58\x81\x19\x34\x48\x41\x26\x31\x28\x95\x80\xa2\x00\x9b\xa1\xde\x02\xbd\x3c\x6f\x03\x5f\x5c\x2a\x70\x33\x12\x86\x43\x00\xae\x85\x0f\x0d\xdd\x08\x23\x12\x9c\xe8\x0a\x35\x0b\x22\xf2\x30\x79\xb8\xa5\x60\x24\xb1\x13\x5c\x63\xb9\xeb\x24\xca\x4a\xea\x24\x53\x7d\x93\x14\xb1\x83\x4e\x51\xd5\x55\xf1\x57\xe7\x76\x0a\x2c\x52\x3e\x24\x4c\xce\x33\x17\x9a\xc2\xa0\xeb\x6b\x87\x4b\x5c\xc3\xea\xd6\xf8\x18\xf4\x4b\xac\x49\x91\x4d\xd1\x02\xf4\xf4\xa3\x52\xe4\x00\x2e\x79\xdb\xaf\xae\xc4\x2b\xb4\xa4\x7b\xb2\xa7\x80\x4c\xca\x15\x08\xce\x75\x25\xb7\xdc\x63\xd2\x74\xd8\xf1\x68\xf7\x09\x8e\x57\x68\x7d\xe3\x4b\x6e\xdb\xd4\x6c\xaa\x0c\x43\x2d\x4c\x53\x8b\x0c\x9b\xda\x11\x6a\x75\xf0\x65\xe0\xeb\x0b\x68\xf7\xa7\xb9\x21\xbc\x1f\x1d\xce\x55\x07\x8c\xd0\xfd\xf8\x2d\x3e\x5f\x63\x72\xa0\xad\xf1\xd5\x6a\x7d\xa5\x02\x78\xae\xf4\xf5\x79\x5f\xf9\x20\x41\x9a\x81\x34\x6b\x8f\xa3\xce\x28\x1a\xad\x71\x60\x13\xf7\x80\xf5\xdb\x34\x7b\xf3\x36\xcd\xfe\x8c\x2e\x2d\xb1\x87\xa4\x9f\x7c\x9b\x06\x96\x09\x52\xbf\x82\x81\xa7\x16\x4f\x93\xeb\x8e\x52\x45\xd5\xd6\x47\x28\x25\x76\x3c\x89\xd5\x80\xfa\x9e\x6d\x79\x49\x62\x39\xec\x20\xa8\xdf\x5d\xea\xbc\xae\x71\xb2\x9e\x9c\x26\xc3\x02\x24\xec\x77\x22\x7a\x17\xa2\x5e\x88\xb9\xbf\x20\xe6\xf9\xa2\x66\x2d\x11\x36\xee\x05\xbc\x29\x5a\x3f\x35\xa5\xd6\xc4\x47\x9e\x3c\x70\xd9\x85\x6f\x92\x2c\xbc\x9f\x39\x83\xcf\x72\x27\x70\x1c\x70\xed\x70\x92\xf8\xd9\xb7\x4e\xe0\x7c\xf6\x8d\x33\xb5\x5a\xa4\xbc\x31\x53\x78\xb6\x1d\x39\xc1\x67\xef\x82\xcf\xee\x9c\xd1\x2e\x90\xf1\x11\x3b\xcc\xc2\x9b\x89\x9a\x92\x3a\x59\xa6\x39\x9f\x2d\x07\x9f\x45\x03\x67\xd4\x44\x01\x1a\xd9\x9a\x33\x95\xe8\x04\xc9\x70\x28\x23\x75\xbd\x8f\xc7\x33\x1d\x21\x87\xcb\x2c\x34\x01\xe7\xb3\xa5\xa3\xf0\xfd\x5c\x67\xe9\x40\xfc\xf9\xb3\x7f\x3a\x81\xfc\x0b\x30\xce\x67\x3f\x3b\xcf\xf6\x5c\xa5\xac\x2c\x6c\x8d\x08\xd8\xd8\x04\x4f\x46\xfa\x05\x9d\x08\x69\x06\x81\xfe\x6e\xb7\x54\x70\xe6\x93\xa6\x80\xb6\x1a\x45\x6d\x45\x2c\x2d\x8a\xe7\xc0\x3b\x42\x20\x67\x29\x9c\x72\x6e\x53\xd6\xa7\xcb\xbe\xfe\x8f\x75\xd9\xfa\x06\xf4\x3e\x18\xfb\xe4\x20\xff\x48\x7a\xe1\xc0\xa6\x9a\x5a\x1a\x18\xfc\x24\x5c\x95\x72\x3c\x8e\xfd\x33\x2a\xdc\x3d\x78\xae\xda\xd3\xb1\x4f\x78\xef\xc5\xf6\x96\x45\x20\xdc\x7e\x8e\x57\xe8\xcc\xa0\x51\x4f\x6d\xc2\x9a\x97\x28\x27\x07\xc3\x61\xfb\x1b\x61\xac\xf0\x37\x92\x40\x4a\x79\xe3\xb1\x41\x26\x5a\x9e\x16\x6b\x3b\x6c\x73\xd3\x22\x35\x2e\x1c\xf4\x7d\x71\x78\x47\xe8\xf0\x91\x2c\x3f\x2b\xcf\xc5\x84\xd7\xb7\xca\xc1\x3d\x56\x7f\xdd\xaa\x8a\x4b\xe6\xf3\xa6\xc8\xca\x72\xc3\x62\x8b\x9b\xa8\x8a\xb2\xc6\xf8\x14\xbc\xe2\x3d\x4f\xef\xbf\x40\xe7\x29\x7d\x8a\xc9\x9a\x76\x7a\x8e\x56\xa2\x0d\x59\x1a\x6a\xdb\xc4\x13\x0e\xbd\xd2\x5f\x19\x26\x3b\xc6\x86\x86\x07\xe6\x75\x37\xd2\x33\x4f\x62\xdf\xa5\xcf\xe4\x6f\xc6\x0d\x3d\xf3\x25\xa4\xda\x18\x34\xd7\x88\x7a\x8e\x4c\xe4\xb6\xa0\xf1\xb4\x80\xb0\x1b\x1a\xbc\x46\xe6\x17\xea\x76\x4a\xb6\x13\x8a\x96\xe6\x6e\x53\xaa\x5e\xb9\x35\xe5\x58\xcd\x70\x5a\x90\xd5\x45\xfd\xc5\x29\xcb\x54\x59\xa6\xb9\xd2\xc3\xdb\xae\x4a\x94\x6d\x27\x33\x66\x44\xcc\xb2\xa1\xd6\x3e\xa3\x0b\x65\x43\xad\xa7\x4c\xe3\x41\xf9\x99\xfa\xd5\x76\x79\xe6\x35\x07\x85\xde\xb2\x12\xd4\x67\xef\x84\xb5\x9d\x51\xd7\x36\x85\xec\xc4\x71\x2c\x61\x2d\x4b\x4f\xb0\xdf\x85\x4a\x35\x6f\xa4\xed\x9d\xda\x10\xc8\x12\xaf\x25\xc1\xa3\x6c\xca\x8c\x7b\x9b\x98\x78\x58\xe3\x87\x2f\x6b\x1c\x56\xf1\x0a\xf5\x21\x3e\x18\xc4\x49\x1b\xf1\xa1\x85\xd8\x23\x89\x85\xb8\x9e\x08\x24\xc1\x15\x6b\xec\x46\x99\xe5\xa9\xc9\xee\x63\x73\x5f\xae\x77\x24\x09\x73\xe5\xce\x31\x23\xc6\x21\x30\x64\x5a\xd1\x92\x0e\x87\xa4\x1d\x4e\x5f\x77\x4b\xf0\x24\x6b\xa5\x38\xbb\xb6\xaa\x01\xc7\x56\xfe\xe7\x1e\x19\xe8\xff\xbb\xaf\x3c\xec\x90\xba\x1f\x02\xbf\x66\xf0\x35\x9a\x13\x2e\x2f\x39\xf8\xe7\x41\xf7\xb4\xb0\x22\x13\xcf\xef\x8d\xbd\xea\x8d\x7d\x79\x12\xeb\xec\x4a\x3e\x28\x45\x11\x87\xc2\x99\x32\xb7\x30\x3a\xf0\x94\x32\x34\xb9\xc2\xa4\xa0\xcc\x95\xdb\xef\x69\x6b\xb9\xa0\x85\xcb\x88\x8e\xd9\x66\x5b\x9e\x0a\x09\xfe\xd2\xbc\xb4\xc3\x10\xbc\x32\x29\x73\x66\x98\x24\x94\xa1\x4b\x0f\xc3\x05\xb6\x14\x25\x72\x53\xcd\xd0\x64\xf2\x0a\x93\x9d\x0c\x5c\x63\xb2\xa5\x0c\x5d\x5f\x63\x38\x48\x4c\x95\x47\x28\x86\xfc\x4b\x4c\x22\xca\xd0\xab\x97\x72\x63\xc6\xd0\x4b\xdc\x2c\x32\x6b\xfb\x55\xad\xf7\x60\x89\xe2\xde\xf3\x43\x89\x38\xcc\x32\x1d\x23\x27\xce\x63\xfa\x43\x91\xe5\xbc\x10\x87\x3b\xb0\x3b\x2e\xcd\x44\xfe\x18\x8c\x44\x23\x40\x7f\x9e\xba\xab\x38\x11\xbc\xb0\xc6\x4a\x73\x1c\xd0\x8b\xe2\x2b\x5e\x86\x45\x9c\x8b\x4c\x69\xcc\x5c\x9e\xee\xb6\xf5\xd5\x44\x23\xab\xd7\x4a\xc9\xb4\xd6\x77\x5a\xba\xb6\x87\xb6\xcb\x4b\x7f\x2a\x6e\x6a\xe5\xa5\xd1\xf2\x89\xd1\xc8\xd4\x5f\x49\x9d\x35\xc4\x5c\x2c\x66\xf6\x47\xf0\x54\x4d\xc5\x67\x93\xd9\x1a\x31\x72\xe6\x61\x29\x27\xbc\x6d\x9f\x87\x0b\xfc\xa4\xaa\x82\x36\x2e\xc3\x6a\x64\xcc\xc5\x42\x0e\xf1\xe0\x13\x75\x2c\x67\x1a\x20\xe2\xab\x38\xe5\x1a\x20\xe6\x25\xe2\xe4\x53\x59\x11\xc3\x38\x58\x23\xf6\x51\x92\xda\x88\x0f\x40\xdc\xa7\xda\x9d\x11\xa1\x24\x31\x73\xc2\x53\xa9\x47\x5b\xfa\x1e\x98\xd4\x15\xcf\xdc\x5d\xc9\xef\x04\x13\x1c\xa3\xa7\x52\x30\xb1\x2b\xe1\xd4\xaa\x10\x83\x15\x17\xe1\x26\x4e\xd7\x52\xd4\x32\xc3\x06\xad\x64\x43\x31\x32\x91\x13\x24\x9d\x7b\x0b\x12\xd3\x54\x8a\xd1\x49\x1f\x42\x39\xf4\xed\x7c\x89\xcc\x17\xd2\x52\xe6\xdb\xd1\x52\xe6\xdb\xf6\xe5\x03\x47\xbe\xad\x9c\x5b\x99\x73\x4d\x37\x32\xe7\x92\x6e\xe6\x7e\x6d\x78\x68\x67\x7f\xbb\x5a\xf1\x50\xe0\x96\xc5\x03\xea\x58\x91\xd6\x35\x8f\x24\xde\xdc\x65\x70\x67\xbe\xc9\x02\x72\x9c\xb6\xb6\x37\x65\x48\xa8\xc7\x82\xe5\x16\x62\xed\xed\x7a\x3a\xc5\xfa\xc8\x87\xb9\x79\xc1\x1f\xe4\x3c\xe6\x7b\xa1\x8e\x7f\x06\x5e\xa0\x11\x2c\xa1\x4a\x1a\xc4\x27\x0a\x88\x5e\x11\x68\x62\xc4\xc9\x03\x7a\x0a\x59\xb8\xe1\x81\x93\x66\x63\xe0\xdf\x0e\x09\x0b\x1e\xf1\x54\xc4\x2c\x91\x3d\xc2\xb6\x7c\x9c\x15\xf1\x3a\x4e\x9d\x4a\xf6\x32\x1c\x37\x0c\xae\x82\x78\x85\x50\x4a\x99\x5b\xc2\xd5\xe9\xec\x1e\x3f\x69\xe4\x9f\x6b\xd7\x4c\x5d\x63\xe6\xd4\x55\xbd\xfc\x41\x92\xa9\xb0\x7c\x6e\xc8\xd4\x59\x5f\x93\xd4\xfd\xb5\x94\x2d\xa6\xd2\x5f\x07\x85\x2e\x81\xc4\xa8\xc0\x64\x89\xce\x7c\x6c\x2a\xe1\x7f\x6e\x9d\x7f\x0c\xfc\xab\xc0\xd4\xf2\x4a\x2e\xf5\x1e\x65\x6e\xc8\x64\x25\x7d\x4c\x76\x48\xc6\x68\xa4\xfe\xe7\xea\x44\x8a\xa7\x91\xd3\x94\x5f\x8a\x2c\x87\xa5\x8b\x30\xe5\xf5\x70\x3e\xf7\x89\x7f\xb5\x80\x39\x59\xef\x53\x7b\x0e\x3c\x8c\x17\xd8\x4d\x5c\xb6\x0e\x3c\x30\xc2\x08\x57\x98\xcc\x39\x11\x0b\x4c\x9e\x0a\x5e\xe6\x59\x5a\xf2\xa0\x20\x5c\xb6\x47\x10\x92\xb8\xfc\x2e\x63\xf0\x5e\xfa\xba\xaa\xc8\x41\x32\xed\x2b\x4c\xf6\x92\x45\x7b\x9f\x63\xf2\x56\xb2\xe4\x2b\x4c\xee\x29\x43\xaf\x31\x79\xec\xf1\x3d\x35\xe8\xb1\x91\x75\x01\x3d\xbc\x8b\x5c\x17\x00\xaf\x47\x86\xbb\x52\x64\x5b\xe8\x8c\x77\xe5\x1a\x6e\xdc\x84\xd9\x36\xcf\x52\x9e\x8a\x0f\xb1\x48\x78\x33\x97\x0e\x72\x88\x0a\x32\x77\x00\x97\x43\x9c\x1a\x93\x43\x9c\x36\x1e\x19\xd1\xc2\xe2\x58\xa7\x19\xb3\xd8\x65\xfa\x12\xc2\x5b\x65\x1e\x86\xf6\x2e\x23\x4f\x7a\x9d\x8e\x58\xba\xe6\x85\x53\x91\xe2\x78\x3c\x85\x94\x31\x5f\x17\x6c\xad\x8c\xd7\xc1\x13\xe5\x09\x8c\x23\x05\x10\x49\x15\xa4\x3b\x40\x54\xe0\x60\xe2\xa8\x41\x57\xb3\x92\x81\x43\xb2\xe3\x91\xbb\x51\x5c\xe6\x89\xda\x3f\x12\x27\x18\x48\xf1\x6b\xcb\xcb\x92\xad\x39\xc6\x41\xda\x43\xee\x5b\x49\x2e\xb8\xe8\x71\x2e\xf7\x0e\x89\xc3\x2c\x0d\xee\xdd\x84\x94\x79\x9c\x06\x67\x1e\x01\xf3\xe1\xef\x41\x94\x30\x76\x5b\xe3\xc6\xd8\x53\x79\xfd\x79\x12\xe6\x96\x72\xe0\x34\x32\xe8\xf8\xda\xfb\x8c\x0c\xe4\x5f\xac\x8c\x73\x9d\x6b\xef\x33\x47\xd9\xc9\x41\xb0\xaa\x70\x70\x4a\x10\x97\x82\x57\x45\xde\xc3\x8a\x7e\x89\xc9\x1d\x04\x26\x98\x7c\x90\x01\x39\x5e\x7e\x95\xe3\xe6\x35\x26\x6f\x60\x20\x61\xf2\x03\xac\xf1\x6f\x30\x79\x27\x13\x5e\x62\xf2\x95\xfc\xfd\x1c\x93\xef\x21\x2b\x26\xbf\x40\x4e\x4c\x7e\x93\xbf\x97\x98\x7c\x0d\xdf\xd7\x98\xfc\x08\x81\x97\x98\x7c\x0b\x81\xcf\x31\xf9\x0e\x02\xaf\x30\xf9\x02\x02\xaf\x31\xf9\x09\x90\x78\x98\x7c\x03\x01\x1f\x93\x7f\x42\x92\x8f\xc9\x97\x40\xc0\x2b\x4c\xfe\x02\x81\xd7\x98\xfc\x55\x0e\x65\x0f\x93\x9f\x01\xc4\xc3\xe4\x0f\x32\xe2\x15\x26\x7f\x96\x62\xc7\x2b\x4c\xfe\x17\x68\xfd\x33\x26\x7f\x93\x11\xaf\x31\xf9\x13\x44\xfc\x0d\x93\x3f\xd2\xe7\xec\x14\xf4\xc8\xef\xf0\xe5\x77\x30\x84\xc1\xdc\x0c\x13\x54\x33\xdf\xef\xeb\x68\x1d\xf1\x0b\x44\x60\x65\xdf\x07\x09\x1c\x63\xec\xf2\x7d\x5e\x7c\x9b\xe6\x3b\xf1\x23\x5f\xd1\xa6\x17\x7e\xe4\x2b\xd8\x4a\x94\x5c\x7c\x73\xe2\xd4\x50\xdd\x15\x60\xad\xbc\x6e\xb8\x2b\x0a\x39\x80\x45\xbd\x3b\x56\x19\xc1\x8b\x6c\x98\xc4\x3c\x35\x11\xb0\xef\x0b\x8b\x2c\x49\x74\x44\x46\xc5\x38\x9d\x42\x61\xb0\x3e\xa1\x27\x6d\xf0\x5a\x8c\x32\x65\x2d\xb9\x61\x69\x94\x70\x28\xcb\x26\x04\xb2\xfc\x95\x25\x3b\x8e\xfa\xa9\x71\x1f\x64\x22\xa0\x30\x90\xad\xe6\x85\xb7\x11\xf2\x22\xcb\x4b\x37\x4b\xdf\xee\xf3\x82\x97\x52\x34\x7e\xb3\x91\x13\x16\x23\xae\x9b\xa0\x4d\x95\xc3\x76\x22\x73\x2a\xbb\x75\x2c\x22\xff\xc4\x0f\x3f\x48\x34\xa7\xee\x0b\xa9\x29\x8a\xef\x79\xb8\x13\x1c\xe4\xdd\xa9\xf3\x16\x6c\x6a\xcf\x28\xe5\x52\xd0\x94\x93\xb7\xdc\xc4\x2b\xf1\x27\x19\x46\x02\x81\x16\xa6\xe0\x72\x9b\xfa\x95\xba\xe3\x25\x77\x3a\x84\x29\x2d\x05\x2b\xc2\xcd\x3b\xc9\xfe\x6d\x97\x8a\xb6\x61\xc9\xff\xba\xcc\x08\x9a\xbc\xf6\xd9\x75\x31\xb8\x58\x13\xc7\xc1\x44\x90\xa7\xbc\xe0\x81\x73\xa3\xd8\xcb\xad\x43\xf2\xac\x14\x81\x73\x73\x61\x22\x54\xfb\xab\x41\xf1\xc5\x4e\x64\x92\x07\x26\x5c\xf0\x3b\xfd\x04\xe8\x69\x2d\xe5\xc6\x2b\xdf\xa9\xc6\x26\x29\x55\x27\xe0\x14\xcc\x5a\x9c\x40\xf5\x3e\xdc\xc9\x7b\xc7\xd3\x1d\x78\x10\xae\x2f\xd3\xf1\x08\xae\x83\x4b\xb1\x5e\xb7\x14\x3b\x2d\xb1\x24\x25\xf5\x48\x48\xcd\xa9\xb4\x11\x13\x79\x2a\x0a\x29\x1d\x26\xd8\x2d\x78\xb4\x0b\xb9\x2d\xf3\x91\xda\x74\xd6\x96\x79\x0a\x25\x2d\x25\x4a\x5a\x4a\x94\xb4\x74\xda\xb0\x28\x25\xbb\x9a\xd5\x6f\x4d\xb1\xf3\xda\x6f\x8c\x46\xf9\xab\x9a\x60\x64\xde\xc3\xbd\x77\x89\x43\x9e\x2c\x16\x0a\x4f\xf3\xee\xd6\x6b\x5e\x8a\x71\x54\x64\xb9\xdc\x39\x8e\x93\xb8\x14\x0e\xb9\xe7\x87\x20\xac\xfa\x96\x80\x24\xfe\x1d\x48\x36\x9c\x45\xb0\xd4\x84\xe0\x06\x19\x6e\xb1\x78\xc4\xf7\x3c\xec\x6e\x5b\xf2\x95\xb5\x90\x2a\xb1\x87\x25\xb0\x96\x2a\x5b\x7a\xa2\xb5\x0c\xdf\x0a\xbe\x95\x72\x70\x89\x9e\x24\x61\x8c\xc0\xa6\x3a\x28\x49\x2c\xf8\x36\x60\x86\xf1\x77\x9e\xcc\x0d\x32\x4a\x69\x39\x1a\xcd\x1c\xe8\xd7\x75\xc1\x0e\x4e\xe0\x3c\x6e\x62\xc1\x25\xb7\xb7\x7c\xc3\xf6\xd5\x51\x77\x28\x2b\xcb\x78\x9d\xaa\x72\xc3\x8a\x14\xe4\x49\x2d\xa3\xd9\xae\x4c\x0e\x77\x5c\x7c\x9b\xa6\xbc\xf8\xe6\xc3\xbb\xef\x82\xa7\x5f\x7e\xd9\x88\x6d\x12\xfc\x09\x61\x94\x92\x27\x96\x24\xd9\x23\x8f\x3e\xb0\x75\x19\xcc\xcd\xc2\xb9\xa8\x60\xbf\x2e\x85\x9c\x05\x0e\x84\x14\x58\x16\x38\x98\xd7\x52\xae\xb9\xbf\xd3\xb3\x34\x3a\x51\xfc\x70\x42\x55\xa5\xcc\x58\xe5\x20\x56\xed\x83\x3f\xd9\x37\x52\xcc\x0f\x71\x80\xac\xcb\xf2\x85\xb2\xa9\x52\x0c\x4a\x32\x19\x7a\xc2\x64\xaa\x36\xbb\xff\x4d\x49\x2c\x1c\x1b\xbe\xfe\x95\x16\x61\xa0\x9d\x1a\x11\xe5\xab\x38\x7a\x97\xed\x52\xe1\x10\x60\x81\x41\xf7\xf2\x58\xcd\xba\xe0\x6e\xd2\x69\xe6\xbf\xe4\x11\xd8\x91\x74\x72\xd7\xb3\x5c\xdd\xa9\x83\x49\x0a\x20\x53\x01\x1c\x0c\xc2\xfa\xda\x60\xcd\x9b\x45\x53\x84\x32\xc5\xef\x21\xaa\xb9\x7f\x46\x6c\xe4\xe0\x5e\xd3\xe6\x97\x30\x46\x21\xb7\xb9\xd8\x07\xed\xa6\x95\x40\xcf\x8f\xac\x3f\x48\xf9\x26\x4b\x95\x5e\x37\x68\xd1\x57\x91\xbe\x2d\xf8\x73\xe3\xe0\x19\x01\xed\x4b\x10\xf7\x9a\x01\xc0\xeb\xc5\x64\x0c\xec\xd0\xe9\x9b\xd2\x7f\x91\x99\x58\x14\x65\xe9\x87\x43\x2e\x25\xab\x82\xe7\x52\x5c\xef\x83\xfd\xab\xab\x05\x76\xae\x9b\x3d\x51\x82\xea\x73\xb2\x5c\x57\x82\xeb\x15\xb2\x6c\xc8\x7b\xd0\x22\x9c\xc2\xfc\xec\xb2\xee\xe0\xcf\x52\x58\x68\x03\x6e\x2f\xcc\x86\x17\x98\xb5\xbb\x02\x27\x04\x5f\x67\xe1\xae\x94\x02\xa4\x80\x1a\x0a\xbe\x17\xac\xe0\xcc\x21\x45\xf6\x58\x06\x8e\xef\x90\x2c\x35\x4b\x66\x8d\xcf\x44\x90\xbc\x71\xef\x1c\x38\xcd\xfa\x3c\x40\x10\x1a\xdc\xc9\x85\x72\x04\x0b\x28\xdc\x17\x4d\xf9\xa3\xf2\xa8\xe6\x10\x78\x1e\xf4\x47\xbe\x0a\x78\x4b\x30\xa8\x08\xec\xee\xe1\x53\xf3\x35\x28\xff\xab\xec\x31\x0d\xec\xbd\x67\xbd\xe9\xbc\xe7\x07\x6d\x6b\xf8\x4d\xb6\xe5\xda\xca\xef\xad\xdc\x53\x31\x37\x05\x4f\x5d\xa0\x42\xae\xd7\xe8\xec\x31\x85\xf5\x5b\x2f\xd6\xf4\xac\x75\x8d\xfb\x8b\xa2\xc8\x1e\xff\x92\x6b\x34\xf0\x25\x73\x38\x81\xdc\xc4\xbc\xcf\x79\x7a\x3c\xa2\xdf\x8b\xb7\x65\x4f\xa7\xa4\x88\x40\x34\x6b\x6b\xdb\xde\xee\x6d\x19\xb2\x9c\xdb\xe5\xf0\x7e\x89\x69\x99\xec\x0a\xc9\x13\x2a\x4c\x9e\xd4\x2c\x4d\xab\xde\x71\xd1\x1d\xbc\xea\x5a\x57\xef\xd8\xfd\xe7\xc9\xe4\x80\x09\x3d\x5e\x8a\xb4\xbe\x21\x98\x17\xf1\x96\x15\x07\x39\x1e\xde\x24\x71\x78\x1f\xb0\x8a\x38\x6f\x15\xa0\xa3\x8e\x23\x14\xe5\xc3\x21\x7f\x5e\x1e\x41\x5a\x3f\x53\x2d\x30\x11\x15\xca\xdc\x37\x86\xa7\x61\xf2\x77\x10\xc6\x27\x98\x70\x0e\xa1\x4b\x4c\x04\xa7\x88\x21\x5f\x0a\xe0\x72\x2f\xe1\xa9\x1f\xb9\xf7\x46\x97\x2f\x31\x9e\x0a\xee\x86\x2e\x8b\x22\x74\xef\xae\xc9\xbd\xbb\x21\xf7\x6e\x48\xee\xdd\x25\xb9\x77\x19\xb9\x77\xb7\x12\x83\xcb\xdc\x47\xd8\x80\xeb\xcb\xc8\xfc\x39\x01\xde\x38\x41\x61\xd3\x1e\xd1\xdd\x32\xe1\xeb\x6a\xe4\x48\x01\x0e\xdf\xbe\x28\x0a\x76\x40\x29\x26\x19\xf5\xa6\xd9\x4d\x3a\xcd\x46\x23\x5c\xcc\xb3\x85\xa5\xa0\xcb\xcc\x7a\xd6\xb7\x11\x40\x9c\xb6\xf7\x02\x6a\x33\xa0\x37\xf6\x9c\xcc\x25\x54\x2d\xd5\x14\x58\x6e\x0f\x44\xbc\xe5\x1f\xd9\x1e\xfc\xaf\x4c\x57\x77\x43\x40\x6e\xfa\x92\x95\x5c\xae\x6d\x7d\x16\x93\x9a\x6d\xc9\x1c\xc7\xe3\x0f\x08\x23\xac\xf8\xf8\xfb\x15\x52\x32\x26\x4b\x42\x98\xd0\x3f\xca\x65\xbe\x07\x83\xcf\x2f\xcf\x0d\x96\x42\xc2\x5c\x4c\x64\xbe\x38\x95\x34\x9d\x96\x6b\x76\x29\x16\x59\x08\x8f\xba\xe5\x20\x3c\x6d\x76\x00\x4a\xee\x07\x48\xb5\x69\x88\xf8\xbf\x80\x7b\xfc\xaf\xe1\x86\xb3\xb0\x2e\xe2\x5e\xf8\x5a\x44\x30\xc7\xbd\x1f\x69\xde\x5d\xc9\xbf\xcb\x42\x96\xc8\x8c\xb3\x1f\x5c\xe6\x8a\xdf\xdc\xf5\x8e\x97\x25\xc2\x81\xf3\x97\x0f\x6f\xfe\xff\x11\x29\x9a\xd5\x5b\x5d\xae\x57\xe3\xa2\x40\x58\x5f\xb2\xb5\x46\x91\x61\x34\xfa\xee\x23\x40\xba\x52\xd6\x90\x81\x3c\x0e\xef\x79\x81\x60\x49\x2a\x83\x27\x91\x45\xec\x10\x38\x2b\x56\x0e\x56\x6c\x1c\xb2\x84\xa7\x11\x2b\xc6\xe1\x86\x87\xf7\x4e\x45\x96\x3b\x21\xd4\xfd\x80\x4d\xf6\xf8\x46\xf2\x3d\xb9\xd0\xc8\x8f\x0f\x90\xf1\xcc\xab\x48\x19\x47\xfc\xcb\xc3\x5d\x1c\x41\x9a\x3e\x1d\x77\x7e\xfe\xf9\xe7\x9f\xc7\xef\xde\x8d\xbf\xfa\x6a\xf0\xcd\x37\xc1\x76\x1b\x94\xa5\x43\x12\xd9\x6e\x92\x3b\xa5\x0e\x1c\xa5\xff\x3d\x4b\x79\x50\xd3\xff\x1b\x5c\x0e\x24\xda\xcf\xc6\x57\x4c\xe8\xb4\x66\x54\x57\xad\x2a\x65\x29\x72\x42\xe8\xc3\x4e\xed\x9c\xb6\xb8\x01\x2e\x15\xb9\x64\x6a\x3d\x3d\xaf\x12\x9b\x79\xa2\x78\x5b\x57\x5c\xfb\x29\x4e\x92\xbf\xa4\xdb\x8f\x89\x7b\xbd\xcd\xec\x68\x07\xeb\xce\x7f\x2a\x02\x82\x94\x26\x11\x83\x74\x66\x0f\xc1\x29\x87\xf8\x33\xb8\x8c\xf0\x31\x4a\xa0\x24\x36\x93\x7c\x81\x29\x67\x60\x72\xe3\x6b\xa3\x3a\x83\x9b\x07\x1f\xc1\xa1\x8f\xcc\x1c\xf2\xf4\xbb\x7a\x0f\xec\x1f\xfe\x25\xc9\xf4\x79\xe9\xb2\x2b\xfd\xc9\x22\xb5\xdc\xa7\xfc\x5e\x3b\xe5\xf6\x3f\x96\x00\x61\x15\x15\xb1\x90\x63\xf4\x2b\xcd\x98\x06\xca\x70\xc3\xac\x99\x50\x5f\x9b\x69\xf5\xe1\xb1\x85\xbe\x35\x59\xc5\x7b\x1e\xa9\xd3\x42\x29\x24\x3e\x2b\x02\x3e\xd9\xb2\x98\x35\xf2\xad\xe8\x46\xe8\x3a\x99\xf5\x24\x4b\x95\x24\x78\xca\xb9\xf8\x33\xdd\x29\xe7\xb1\x83\x2b\x92\xa5\x5f\x26\xbb\xe2\x5f\xc8\xb8\x89\x23\xae\x32\x9e\x08\x76\xb5\x78\x3f\x37\x02\x11\xd1\x92\xd3\x42\xae\x23\xc9\x2e\xe2\x25\x82\x03\x3f\x2c\x67\xe4\x47\xf1\x9b\xe9\xde\x30\x80\xe1\xf0\xbf\x2a\x25\xc1\x02\x31\x86\xa1\x04\x82\x92\xee\xfa\x37\x32\xba\xaf\xdf\xeb\x05\xe5\x53\x9d\xbe\xfd\x5d\x9d\xfe\xaf\x52\xae\xc9\xfb\x36\x7d\x7e\x64\xda\x4b\xf5\xa7\x88\xdc\x9c\x12\xd9\x2f\xd6\xa5\xff\x4f\x09\x5c\x20\xd8\xf4\x0b\x5b\x05\x07\x75\x7b\x9c\xa5\xcf\xa4\xcb\xac\x77\x82\xe7\x25\x9d\xfb\xc4\xf7\xc8\x4b\x8f\x5c\x7a\x1e\x79\xed\x79\xc4\x7f\xe5\x79\xe4\xf2\xa5\xe7\x91\xcf\x27\x9e\x47\x26\xbe\x0c\x5e\x5d\xca\xf0\xab\x97\x57\x12\xe0\xf3\x89\x04\x79\xe9\x5d\xc9\x1f\x7f\xe2\xbd\x96\x10\x93\x2b\xff\xb5\x84\xb9\x7a\x75\xf9\x4a\x42\x5d\xfa\xd7\x97\x2f\xf9\x25\x79\x79\xe9\x7d\x3e\xe1\x97\x0b\xc2\xea\xf5\x0a\x24\x9e\x8e\x86\xb6\x5e\x2a\xde\x49\xa1\x47\xdf\x4a\xa3\x62\xc6\xdc\xb0\x93\x07\xb5\x04\x3b\x1c\x74\xe5\x20\x25\x4f\x29\x3d\x6b\x37\x6f\xab\x3c\x56\xb7\x60\x5b\x07\x4c\xbf\x32\x72\x97\x19\x84\x27\x62\xa6\x62\xf4\x72\xab\x4a\xcf\xfc\x5a\x73\x39\x15\xc5\xc1\xbe\x9f\x4c\xed\x86\x9e\xab\x63\x7d\x37\x16\xca\xee\x7f\x81\xf0\xf4\x0c\x71\x8a\x0a\x9a\xc1\xe9\x1d\xc2\xd8\x8d\xb2\x94\xe3\x29\xf8\x25\x30\x7e\x6e\xb4\xce\x04\xec\x6a\xac\x7a\xdf\xc4\xb5\x55\xe7\x69\x0b\xc5\x58\x79\xe1\xeb\x6f\x9a\x18\x57\x95\x3a\x07\x4c\xf0\x93\xdc\x1d\x92\x94\x26\xd5\x2a\x4e\x59\x92\x1c\x9e\x64\x1d\xf8\xf1\xa8\x3a\x20\x73\x55\x21\xc7\xa3\x09\x21\x5c\x43\xc6\x2b\x24\x8c\x7f\xa6\xaa\xb2\x65\xe0\xff\x46\x7b\x69\x85\x24\x76\xe5\xa6\xb6\x28\x39\xc2\xff\xe5\x16\xbc\xfd\xbf\xb0\x05\xff\x7d\x71\xfb\x79\x09\x8c\xab\xea\x9e\x51\x5b\x11\x07\x51\x5a\x44\x3a\xa9\x7c\x17\x4e\x8a\x57\x0d\x47\xe9\x20\xaa\xe3\x8d\x4f\xa1\x16\xef\xe9\xcc\x2c\xfd\xb0\x68\x6f\xfe\x59\x6f\xac\xe5\xd8\x2c\x70\x9c\xff\x92\x0c\xf6\x77\x58\x3c\xd2\x24\x4e\x79\xe7\xc0\x72\x5d\xb0\x7c\x33\x0e\xb3\x54\x14\x59\x52\xca\x35\xe9\x6e\xb7\xdc\x76\x4c\x50\x6b\xa1\xa2\x7b\xd8\x52\xf5\xad\x54\x5d\x81\x0f\x9a\xf4\xff\x8c\xc4\x07\x45\x3d\x23\xf2\x41\x7f\x7f\x6a\x65\x8d\x7f\xbf\xcc\xa7\xe5\x65\x50\x93\x06\x5f\xf1\x9e\x41\xd4\x16\xf9\x0c\xef\xfd\x98\xd0\x76\xba\x60\x20\xfe\x0c\xd3\x06\x21\xeb\xbf\x2f\x99\xf4\xb5\x60\x6b\x55\xf8\x54\x0b\xfe\xda\x23\x9b\xf4\x64\x61\x5c\x6d\x45\x6c\x71\x99\xa7\x91\x94\x7e\x88\xbd\xb3\xb1\xd3\xed\x78\x02\x84\x06\xdd\x46\xef\x68\x45\xd3\xa8\x11\xb5\xea\x9d\xa3\x9d\xc9\xc4\xbf\x55\x45\xf7\x36\xe9\x89\x84\xef\xfc\xc8\x4b\x77\x80\x4a\xec\xd8\x33\xa9\x99\xc2\x66\xac\xb7\x46\xc8\x7f\xca\x09\xba\xa3\xc9\x66\x3a\x3d\x43\x4a\xc9\x16\xb5\x5b\x67\xfe\x31\x2e\x05\x97\x06\xdb\x5c\xbf\x06\x46\x42\x31\x76\x5c\x91\x65\x79\x57\x4f\xde\xbe\x76\xe2\xbc\x33\xf1\xc1\xff\x00\x8f\x7e\xd7\xd4\xb7\x07\xe3\xdd\x26\x7b\x1c\xec\x52\x9d\x7d\x20\xb9\xd6\x00\xf8\x54\x33\x2e\xfb\x26\x4f\xbb\x0a\x77\x32\xb7\x6c\xbc\x33\x5f\x8a\x36\xda\xe1\x91\xd5\xd0\x1a\xfd\xa7\xc6\x33\x3f\x19\xcf\xbf\x87\x7a\x43\xfb\x7f\x40\xb6\xd7\x90\xfd\xaf\x53\x1d\xfd\xde\x1d\x42\xc1\x29\x43\xaf\x3f\xc7\x24\xe3\xbd\xe7\xd5\x09\x5b\xf2\xa4\x24\x8c\x72\x7d\xd5\xa1\xed\x73\x8f\x8a\x9e\x33\x96\x53\xa3\x1d\xa7\x0c\x59\xc2\x0a\x07\x07\x6c\x76\xb2\x74\xc1\xe3\xe2\x67\x5e\xb3\xe9\x18\xc4\xe9\x40\x60\xe7\x97\x5f\x52\xb6\xe5\xbf\xfc\xe2\x28\xed\x06\xe2\xda\x5f\x48\x8f\x01\x50\xce\x52\x47\xad\x93\x69\x45\xce\xd8\x70\xe8\x90\x81\xd3\x6b\x2a\xa4\x20\xad\x41\x9a\xf0\x35\x4f\xa3\x31\xd4\x73\x2c\x0b\x74\x2a\x92\x62\xe2\xd0\x7f\x27\x3f\x4c\x27\xa7\x22\x2f\x9c\x17\x44\xcc\xd3\x85\x0c\x80\xfd\x29\x78\x9b\x38\xf3\xf1\xc7\xce\x77\x3f\x76\x84\xf6\x7c\xc1\x5b\x2e\x8a\x38\x34\x94\x0b\xd7\xb4\xda\xf1\xe8\x38\x7d\x43\xf5\x53\x55\x58\x16\x2c\x94\x98\x9c\x27\x07\x13\xfe\x9f\x20\xa8\x1c\x8c\x2b\xd4\x77\xb4\x76\x3a\x40\xde\x70\x38\x9d\x20\xf1\xff\x53\x1b\x56\x7d\x6c\x5d\xc2\xc1\xaa\xb6\xe0\xe0\xe0\x54\xaf\x36\x89\xb9\x03\xf7\x2d\xea\xe8\xf5\xf7\x18\xf7\x81\xb9\x25\x9c\xea\x76\xb0\x92\x82\x6a\x5f\x67\xc2\x3c\x2f\x72\x3c\x0a\xf3\xaa\x88\xb9\xd7\x60\xc4\xfb\x70\xc3\x0a\xf0\x33\x35\x2d\x68\xda\xa8\x77\x38\x9e\x7d\xd4\xf6\x1a\x0e\xb2\x2b\x8c\x03\x8f\xd2\xc6\xca\x24\xeb\xb3\x2a\x01\x0f\x11\x86\x57\x50\x4a\xf9\x4c\x04\xcf\xdb\x85\xa4\x0b\x5c\x9b\x1d\xf4\xc1\xa4\x98\xcc\xf9\x42\x5f\xa6\xf1\xad\xc2\x87\xc3\x16\xf9\xc3\x21\x2a\xe8\x7c\x81\x5b\x16\x53\xdd\xf6\x2f\x8c\x57\x5e\xe0\xbb\xaa\x07\x3e\x64\xeb\x35\xf8\x97\xe5\xf8\xff\xaf\x7d\x89\xcd\xc5\x37\xd9\x2e\x89\x7e\xe4\x25\x17\x70\x77\xa7\xf9\x6c\x8b\x08\x2d\x38\x73\x30\xff\x4c\xad\xe6\x8b\x7f\x4d\x63\x7b\x6a\x4b\x50\x0f\x0a\x50\x55\x67\xe9\x77\x30\xad\xdf\x65\xbb\x92\xbf\xdf\x81\xb3\x60\x37\x4b\xbf\xc9\x1e\xb8\xdc\xba\x5a\xf6\x05\xdd\x91\x98\x50\xa6\x7b\xe7\xd6\x1f\x0e\xe5\x50\xa9\x9f\xeb\xfc\x04\xf7\x7b\x3a\xd9\x99\x28\xd6\x22\x57\x50\x43\x47\x90\xcc\xd2\x40\xed\xa7\xe5\x34\xea\xb5\xdc\x01\xc3\x57\xb0\x97\xaa\x9d\x57\xc3\x55\x4a\xb5\x9a\x7d\x92\x0a\x7d\x5a\xaf\xfd\x4d\x07\x76\x0d\xe4\xb6\xb6\x1e\x6f\x29\x9e\xf9\x81\x7b\x5d\x35\xe7\xb2\x75\xbd\x67\xbc\x67\x82\xa3\x14\x6b\xca\xeb\xfa\x3c\xf0\x22\x48\x66\x85\x95\x02\xab\x18\x39\xe5\xae\xb1\xe0\xfd\xa2\xd3\xf3\x0c\xb9\x84\xc3\x57\xe7\x39\x4b\xa4\xb2\x7f\x0b\x91\x71\xf2\xa4\x1a\x2a\x08\xcd\xa9\x10\x88\x10\x15\xdc\xa4\x68\x7a\xf6\xf7\xf4\x62\x9e\x8c\xfd\xc1\x56\x8c\xfd\x01\x38\x7a\xdc\xee\x04\x8f\x6a\x82\x56\x59\x0a\xbe\x3d\x03\xff\xb2\xaa\x88\xa3\xda\x70\xa0\x86\xd3\x40\x3f\x48\x31\x70\x48\xca\x1e\xe2\x35\x13\x59\xe1\xe6\x09\x13\x92\xa2\xa6\x0b\x9c\x77\x2c\x74\xf0\xcc\x79\xf3\xee\x2b\x27\x70\xde\x7c\xf8\xf1\x3b\x87\x38\x83\xd1\x20\x54\xb8\x04\x4c\xeb\xc1\x76\x97\x88\x38\x4f\xb8\x46\xea\xd8\xc2\xd0\x0f\xbb\x82\x37\x02\x51\x73\xdb\x25\xe1\xff\x2f\x5e\x77\x01\xe7\x97\xed\x45\xb6\xf6\xa1\x49\x8d\x77\x2e\x47\x7e\x3b\x53\xad\x9f\x34\x6f\x15\xa9\x6a\x8b\x5b\xea\xf3\xc9\x95\x86\x44\xfc\x02\xbe\x5c\x91\x7d\x2d\x05\x4e\x34\xc1\x23\xe7\x67\xa7\x01\xf4\x5b\x80\x7e\x1b\xf0\xef\x0d\xa0\xff\xca\x06\xf4\x5f\xb5\x01\xdf\x5a\x80\xd7\x2d\xc0\xeb\x36\xe0\x0f\x16\xe0\xa4\x05\x38\x69\x03\x7e\x68\x00\x5f\xdb\x70\xaf\xdb\x60\x7f\x68\xc0\x5e\xda\x60\x2f\xdb\x60\xef\x1a\xb0\x4b\x1b\xec\xb2\x0d\x76\x5f\x83\x35\x6e\xd0\x9a\xf4\xa9\x72\xc2\xd7\xbc\x2e\xd2\x4d\x14\x37\x3e\x1f\x4f\x5a\x05\x8c\xbb\x6d\x7f\x70\x1a\x48\xaf\x0d\xd9\x69\xfc\xdf\x1a\x48\xff\xf3\x16\x64\xb7\xf5\x99\x05\x79\xd5\x86\xec\x34\xff\xca\x82\xf4\xdb\x90\x9d\xf6\xcf\x1b\xc8\x56\xcf\x8f\x3b\x1d\x90\x36\x70\xad\x8e\x1f\x77\x7a\xe0\x1f\xfb\xe5\xb5\x06\x75\x3d\xab\x68\xd7\xf3\x3a\xf5\xde\x6a\xb0\x67\x3a\x41\x69\x27\xb5\xef\xfd\x50\x2e\xbf\xe9\x0b\x31\x50\x6c\x70\xc0\x06\xca\xbc\x0e\x1c\x9c\x0e\xe2\x72\xc0\x06\xcb\xdd\xda\xc1\x15\x09\x79\xff\x93\x6d\xb4\x70\x59\xeb\x51\x04\x2e\x45\xd0\xd4\x2d\x48\x4c\x53\x77\x4d\x12\x9a\xba\x4b\x78\x7f\xc4\x78\xec\x55\x37\x17\x1d\x23\x05\x65\x44\xee\x65\xb0\xf9\x8c\xdb\x9f\x49\xfb\x53\x10\x07\x3b\xca\xd6\xa6\xa4\x93\xeb\xeb\x73\xe4\x8f\x85\xd9\x73\x48\xc4\x0d\x5e\xcb\x0d\x6f\x39\x12\xe7\x19\x26\x0e\x69\x10\x75\x52\xe3\x8f\xa6\x26\x18\x8a\xad\xc8\xae\xfb\xb4\x41\x57\x88\xb5\x85\xc2\x96\x9c\xff\xdf\xbe\x76\x97\xf0\xff\x2b\xef\xdd\x49\xb2\xfe\x0f\x5c\xbc\x43\x4f\x15\xa9\x6f\xd8\x84\x1c\xe9\x11\x48\x52\x29\xbe\xcf\xdc\xcb\xc0\x27\x02\x83\xb4\xb8\xed\xef\xb1\xa7\x75\x11\x47\xc1\x53\xfd\x7a\xa3\x52\x1a\xeb\x17\x15\xe5\x47\xeb\xad\x2f\x19\x71\xf2\x18\x61\xe0\x7b\x5e\x45\x94\x20\xa2\xac\x50\x82\x33\xbf\x22\xda\x39\x03\x5c\xd7\xd5\x9e\x15\xc0\x28\x25\x0e\xef\x4b\x63\xa1\xf2\x2e\x4e\xb3\xa2\x8e\x91\x40\x5f\xb2\x92\x07\xce\xb6\xe5\x9d\xad\xf6\xef\x20\x66\xb5\x67\xb4\x5a\x2e\x3c\x18\x1f\x10\x96\x3b\x91\xa0\xe4\x15\xe9\x5e\x19\x76\xf6\x87\xc6\x11\xff\x72\xb9\x94\x7b\xe8\x2c\x93\xd2\x82\x21\xda\x23\x61\x59\x82\xb3\x74\x23\x93\x6a\x00\x99\x2f\x15\x3c\xb5\x75\xe5\xe6\x7d\x16\xb5\xdb\x2a\xcc\xab\x5a\xb1\x94\x1f\x95\x26\x25\xa1\x99\xee\x8d\x92\x2a\x8b\x0e\x23\x8e\x8a\xe3\x11\x95\xb4\x74\x77\x22\x44\x18\x93\x17\xff\x48\x07\xd6\xff\xac\x87\x0a\x94\x45\xc8\xed\x0b\x33\x1d\x4b\xad\x9a\x41\x7d\xb6\x3b\x83\xbf\x3b\x98\xbc\x50\xbe\xe9\x4f\x31\x76\xa2\x06\x83\x1b\x29\x4c\xd6\xe5\x70\xc1\xe2\xc4\x88\x91\x03\x90\xda\xa8\xd3\x88\x91\x63\xd5\x70\x83\x17\x16\x3f\x7a\xe1\x0c\x2e\xfa\xb1\xde\x36\x60\xb1\xad\xa6\x50\x4a\x13\xe2\x04\x83\xfa\xaa\x45\x0d\x98\x4a\xd2\x75\xec\xcd\x05\x60\xf9\x64\x25\xec\x96\x52\x8d\x0e\x02\xe8\xff\xc7\xdd\x9b\x76\xb7\x6d\x63\x8f\xc3\xef\x9f\x4f\x41\xa3\x1d\x85\x18\x43\xb2\xe4\x24\xed\x84\x0e\xeb\x27\x6b\x93\xd6\x4d\x52\xdb\x69\x66\x46\xd5\x4f\x07\x12\x21\x89\x35\x45\xaa\x24\xe4\x25\x32\xbf\xfb\xff\xe0\x02\x20\x41\x12\x5a\x9c\xa5\x33\x67\x4e\xcf\x69\x64\x92\xd8\x2e\x2e\x2e\xee\x7e\x51\x63\x56\xe5\x7c\x4c\xee\x2e\xac\x47\x03\x14\xc2\x78\x45\x23\xc5\x8e\xef\x99\x03\xcd\x47\x62\x04\xbd\x80\x62\x6b\x18\x29\xe3\x45\x3c\x83\x50\xff\xc1\x5c\x55\x13\x4c\x57\x0d\xf0\x10\xca\x31\x2e\xd2\x2f\x12\x54\x5b\x54\x63\x03\x05\xc1\x55\x1a\xe6\xf3\x19\x9b\x33\x6f\xaf\x07\xd1\xed\x99\xf4\xed\xaa\xa4\x85\x65\xea\xcd\xaa\x0c\x7f\x67\xc7\x3d\xef\x90\x40\x82\x66\xd1\x72\x12\x46\x91\xc7\x72\x52\x56\x3a\xf6\xba\x79\x9e\x93\x85\x5d\x2d\xf8\xe7\x92\xa5\x37\xef\x68\x4a\xe7\x52\x37\x18\x48\xa9\xb1\xf9\x69\x1f\x7d\xc3\x82\xf1\xe1\x83\x2e\x22\xe8\x1b\x3a\x09\xfe\x31\xf9\x87\xf8\x35\x1e\x3d\x18\x3d\x18\x89\x5f\x0f\x02\xfa\xfd\x83\x40\xfc\x7a\xf4\xe0\x41\x97\x05\x68\x00\xb2\xa8\x52\xde\xc4\x7e\xf7\xa8\xb8\xa5\x53\x96\x2d\x23\x5e\xdf\x1d\x92\x94\x35\x96\xfe\x46\x7d\xdf\xef\xb6\x5a\x89\xe4\xab\x7f\xf0\xbb\xc7\xf1\xe3\xce\xc3\xe3\x76\xdc\xee\x1c\x7a\x5d\xaf\x1d\x63\x52\xbf\x90\x79\x3f\xf9\x1b\x1d\xdc\xde\xa2\x6f\xbe\xfb\xee\x3b\x84\x2b\x95\x89\x7a\xfb\x32\xe5\x80\x4b\xc5\xad\xcd\xe1\x1c\x43\x7c\x32\x98\x20\xc4\x51\xd6\x36\x8b\x0c\x0c\x9f\x5a\x6b\x5e\x04\x3f\xae\x9b\x73\x25\x7f\xb8\x72\x62\xcb\x20\xb0\x44\xea\xf3\x48\xe2\xf7\x07\x3a\x0f\xde\xd1\xf2\xb1\x1f\x1d\x2d\xf7\xfd\x4c\xe7\x7e\xa5\xfd\xf1\xe0\xa8\x10\xc5\xc6\xad\xd6\xbc\xdf\x1d\x3c\x5e\xee\x67\x07\xbd\x6e\xf7\xd8\x4d\xa4\xa6\xb4\xdf\x63\xf7\xff\x3e\x87\x8c\x70\xcc\x9d\xf7\x7b\x03\x3c\xc0\x64\xbc\xbf\x8f\x3d\xf3\x83\x25\x68\xe0\x06\xfa\xfa\xd0\xa2\x9f\xb2\x57\xa4\xc7\xa9\xb7\xca\x75\x59\x89\x3e\x1f\x98\xb5\xba\xc4\xae\x7b\x89\x8a\x7b\xe1\x32\x31\xf1\xcc\x86\x30\x00\xe9\x97\x51\x22\x4e\x44\xa9\x02\xcd\xde\xd0\x37\x2e\xc7\xc7\x62\x28\x8f\xe7\x47\xd4\xed\x3d\x3a\x94\x6e\xc6\xf7\xe5\x3f\x0f\xe4\x3f\x0f\xe5\x3f\x2a\xd3\x41\xc0\xc8\xe4\xcb\xab\x09\x93\xaa\x9a\x30\xf2\xbb\x47\xd1\xe3\xf8\x28\xda\xdf\xc7\x49\x3f\x32\xd5\x84\xd1\x97\x53\x13\x26\xa0\x26\x04\xbd\xcb\x1a\x27\x62\x78\xa7\xdc\x07\xc0\x8f\x65\xf2\xfa\xb9\xdf\x85\xf8\x3a\xa9\x74\x39\x2b\x6b\x85\x32\x48\xcd\x5f\x44\xcb\x14\xea\x1c\x6f\xc1\xb4\x27\x80\xac\xaf\x50\xc9\xdb\x5f\x78\xec\xd6\x20\xf2\x43\xb7\xd5\xd2\x29\x5a\x8d\xd5\x77\x4d\x86\xab\x3b\xf0\xb4\x3a\xb2\xd4\x28\xd2\x62\x41\xda\xcc\x04\x75\xa0\x94\x43\xe5\xbb\x28\xe1\xe6\xd2\xc4\x71\x84\xb2\x00\xa9\xb8\x0c\x1b\x4d\x31\x61\x64\x5e\x4c\x5f\x9b\x3f\x88\xcd\xa5\x17\x63\xe5\x97\x5c\x8c\x63\x2e\xf2\x5c\x74\x22\xc7\xc4\xad\x96\xfe\xa9\xbf\x76\xf1\x56\x95\x2c\x69\x68\x60\xcd\x25\xc3\x12\x7a\xbe\xef\xaf\xd9\x99\x42\x5d\xb9\xee\x7d\xe9\x62\x87\x8f\x63\xa0\x17\x4b\xe6\x72\x52\x5b\x38\xc6\x9e\x4d\x5b\x60\x94\x5e\x60\x65\x4f\x50\x61\x01\xaf\xc5\x15\x56\x5f\x32\xa8\xf6\x36\x2a\xa1\xa5\x0f\xd1\xe4\xf5\xf3\x56\x6b\x4c\xe3\x31\x8b\x9e\xc4\xe1\x9c\x8a\x57\x2f\x53\x0a\xdb\x04\x6f\x71\x81\xa9\x29\xfb\x73\xc9\x32\x5e\xfb\xcc\xad\x7a\x75\x47\x09\x3f\x63\xfc\x49\x1c\x3c\x4f\xe9\x95\xdb\x80\xae\x06\x06\x6b\x02\x43\xf9\xfc\xea\x65\x54\x15\x96\xe6\xee\x6f\x9b\x6d\x6d\x0e\x06\x36\x9c\xd6\x4a\xb6\x35\x31\x09\xb6\xbe\x40\xa8\xb2\x7e\xc3\x57\x52\x23\x97\x0e\xc6\xba\x26\x94\xd4\xe0\x0a\xbc\x84\x6b\x38\x95\x08\x0a\xe7\x24\xf1\x69\xdd\xe7\x58\x7c\xb3\xe7\xfb\xf1\xb1\xab\x14\xca\x6b\xe8\x48\x4d\xdd\x5c\xa1\x26\xe5\xb0\x38\x57\x9e\x9e\x51\xc2\x31\xf6\x98\x1e\x59\x5c\x1d\x0d\x95\xf5\xfa\x3e\x4c\x8c\x00\x1d\xc8\xc6\x53\x74\xcc\x25\xd0\xa1\xbe\x25\x94\x14\x69\xe0\x4c\xe3\x8c\x30\xb3\x3c\xc9\xb6\x33\x28\x4f\x8e\xcc\x61\x54\xf3\xb3\x4e\x74\xe1\x3f\x98\x80\xd5\x39\x7c\x63\x70\xe1\xba\x76\x3b\x38\xaa\x57\x28\x68\xd1\x43\x15\x75\xd7\xaa\xfc\x3f\x91\xbc\x1b\x6a\xfe\x92\xdc\x9d\xab\xdd\x2b\x0e\x81\xf9\xa7\xca\x75\x49\x5d\x5d\x0e\x50\x53\x5a\x38\x58\x77\x32\x51\x34\x06\xbe\xab\xf9\xc0\xaa\x2f\x4f\xc1\x4f\x41\x9e\x6e\x6d\x20\x27\x49\x2c\x0f\xba\x5c\xb0\x79\xf4\x49\x76\x11\x2e\xde\xc6\xb0\xa9\xa0\x07\xb7\xa9\xe0\xd7\x58\x2f\x60\xe6\x88\xa4\xda\x6b\x43\xdf\x6e\xd6\x4e\x42\x46\x56\x86\xc1\x07\xcc\x0e\xeb\x8f\xa8\xe6\x5b\xca\x33\xc5\x88\xb2\xce\x98\x6b\x30\x28\x3b\xa9\x5b\x74\xcc\xef\x6a\xb6\x9e\xaa\x59\xac\xd9\xa1\xbc\x1d\xf3\xf5\x7a\x74\x32\xb5\x0b\x0e\x40\xa1\xa8\x5f\xd0\x09\x48\x81\x50\x75\xec\x01\xaf\x83\x8c\xff\x5a\x8a\x18\x7a\xdf\x05\xde\xe1\x63\x49\x1f\x14\x63\xbd\x36\x32\xd9\xcc\x31\x22\x75\x06\x34\xbd\x41\x39\x41\x2f\xe6\x0b\x7e\xe3\x80\x00\xe3\xc8\x4e\x84\xf0\x35\xa7\x3c\x0d\xaf\xd1\x5e\xd9\xf5\xf9\xcd\x82\xed\x9a\xbb\x04\xfd\x6a\x74\xe7\x84\x99\x93\x4c\x9c\x2b\x21\xf4\x39\xfc\x66\xc1\x9c\x7b\x88\x98\xbd\x12\x74\x8f\x38\x72\xa7\x9d\x11\x73\xee\xc9\xb1\xef\x39\x2e\xb8\x30\x39\x97\x6c\xcc\x93\x14\x77\x90\xcd\x74\x3e\x51\xa5\xe6\x3d\x4e\x14\x04\x3d\x5a\x75\x98\x8a\x89\x21\x9c\x79\xa9\x35\xb6\xd5\x5c\x04\xa8\x70\xc4\x1a\xde\x24\x8e\xe8\x19\x40\x13\xb2\xc0\xb9\x61\x5c\xc8\x98\x97\xcc\xc6\x12\xb0\xc2\x0e\xc4\x1e\x1c\xb3\x32\x98\x9e\x3d\xc0\x42\x8c\x1c\xad\xdf\xfd\xa3\xd2\xde\x50\x68\xba\x3f\x67\x86\x66\x7f\x0a\xc8\xb7\xb7\x16\x1c\xd9\x6d\xac\xad\xa8\x72\x64\xa4\x2c\xdf\xeb\x81\x51\xb4\x32\xcc\x63\xbf\xc7\xee\x97\x15\x8c\xcb\x5d\x57\x91\xb2\x72\x77\x91\x17\xfb\x2e\xf5\x2f\x59\xf1\x49\x43\xeb\x40\x36\xc6\x5b\xf3\x54\x39\xbc\x70\xab\x49\x90\x07\x6b\x5d\x49\x0c\xf3\x5e\x21\x6d\x2a\x2b\x5f\x6a\xf7\x6e\x2a\x7b\x53\x92\xaa\x10\x25\xe1\x86\x54\x6b\xde\x6b\x00\xbb\x52\xb3\x43\x1e\xad\xdd\x56\x5c\x95\x88\xd7\x69\x62\x1c\x31\x85\x7d\xe4\xfc\xff\x68\x9f\xf5\xbb\x83\x52\x71\xf2\x7b\x8c\x36\xb9\xd8\x00\xd4\x94\xf1\x11\x52\x2e\x9c\x2d\xe8\x58\x3a\x9a\xa2\x9c\xfc\xe5\xe0\xa4\x77\x80\xa2\xf2\xa0\xf2\xe8\x5a\x2f\xa8\x02\x25\x50\xd7\x6e\x27\x2e\xc6\x2d\xdc\xb1\x36\x7e\xa5\x27\x03\xbb\x5d\x09\x98\x56\x35\x25\xbf\xd0\x5c\x64\x67\x9f\x30\x17\x5d\xd7\x7b\xa7\x83\x5d\xd2\xea\xf7\x71\xb6\x5c\x2c\x92\x94\xb3\x40\x53\x6c\xc0\x36\xa0\xd5\xc8\x28\x85\xb2\xdd\x6d\x29\xb6\x19\xc1\xad\xa3\x6e\x4d\x5b\xf5\x81\xa6\x71\x18\x4f\x65\xe2\xaa\x97\x8c\x8f\x67\x2c\x70\xca\x7b\x43\x5f\xf7\xc8\x91\x38\x96\x11\x27\x89\xa3\x1b\x47\x25\xb3\x0a\xe3\xa9\x33\x09\xd3\x8c\x43\x3a\x2b\xfd\x6d\x07\x61\xb2\x97\x6e\x9b\xa3\x49\xf2\xb6\x4e\xf3\x4d\xc2\x43\x71\x62\xc4\x2c\xcf\x66\xc9\x95\x18\x78\x9e\xa4\xcc\xe1\x33\x1a\x3b\x88\xf4\xd8\x7d\x82\x0a\xdb\xbd\x00\xa4\xf8\x22\x99\x4c\x1c\x38\x24\xca\x90\xc6\x61\xbe\x49\xea\x2c\x58\x0a\x4f\xe2\x31\x73\x52\x46\xb3\x24\xce\x3a\x56\x54\x38\x07\x9e\x0d\xb8\x9b\xbd\x6e\xe9\x4a\x6a\xfa\x49\x88\xab\xa1\xcd\xe9\x28\x62\x6b\x50\x6e\x94\x04\x37\xe5\xc9\xc3\x39\xb9\x91\x21\xee\x8f\xbe\xc7\xc4\xea\xfb\x98\x50\xa9\xdc\x13\x04\xa9\x54\xee\x01\xcb\x22\x77\x45\x32\x43\x77\x61\x4b\xe1\x32\x69\x0b\xbe\x36\xdb\xd5\x99\x63\x12\x25\x94\xb7\x53\x7d\x09\x9e\x24\x54\x7a\x35\x7b\x02\x3d\x08\x9a\x67\xce\xef\xcb\xc3\x6e\xf7\xd0\x29\xbd\x76\x21\xab\x19\x41\xe6\x1b\x81\xe6\x4a\x29\xec\x20\x02\x59\x78\x4b\x5f\x87\xeb\xff\x49\x5f\x87\xbd\x6a\x54\xc8\x8f\x82\x25\xf7\x95\x60\x40\x58\xe7\x5c\xf4\xe1\x23\x85\x31\x6e\xc0\x6e\x6f\xdd\x80\xf9\xab\x5c\xa5\xd9\x7f\xc1\xfc\x15\x64\xe6\x08\xd4\xb7\x84\x5d\x2f\x52\x0f\x21\xe5\x7b\x0e\x21\x63\x4a\xff\x2b\x53\xcf\x96\x38\x22\xff\xd6\x1c\xda\x5e\x4f\x5c\x2e\x7f\x6d\xf2\x32\x3a\x4a\x52\xfe\x3a\x7e\x09\xcc\x13\xd0\x13\x9d\x8b\xc0\x4c\x19\x63\x0b\xdc\x97\x42\x57\x91\x00\x43\x26\xab\xe2\xfe\x73\xf1\x34\x4e\xae\x74\x4a\xe5\x32\x35\x58\xd9\x9d\xcc\x0a\xa6\xde\xa8\x94\xf7\xa2\xa3\x3d\xdf\x67\x52\xf5\x55\x24\x55\x5e\x01\x30\x59\x8e\x09\x02\x73\x0a\x5e\x51\xcb\x9c\x41\x73\xd8\x7c\x0c\x0a\xc4\x35\x2b\xd4\x99\x74\x41\x9d\x2b\x3e\x79\x26\x83\x5b\x22\x96\x1e\x59\x1b\x35\x9d\xb2\x63\xf9\x99\xab\x93\xa3\x29\xf5\x85\xca\x2a\x03\x42\xe0\x51\x19\xc2\x35\x65\x5c\x85\x0f\x98\x69\x1b\x0e\x04\x25\x0c\xfd\xa4\x5d\x87\x87\x8c\x53\x28\xf3\x78\x15\xcf\x0b\xe4\xb9\xbd\x2d\x52\x8b\x1b\x39\x99\xad\xfd\x1c\x1c\x3e\xec\x62\x28\xc3\x0e\xeb\x7d\x7f\x7a\x22\xd3\x73\x49\xee\xdf\x5d\x01\xb9\xf1\x18\x09\x58\xb0\x5c\x78\x86\xd6\xf4\xb9\x78\x10\x85\x63\x5a\x8b\x34\x20\x0b\x9a\xf2\x90\x46\xc3\x22\x57\xe5\x0e\x8d\x72\x7c\x64\x24\x22\x35\x27\xc9\x4b\xc6\x57\x9e\x3b\x2f\xf5\xd1\x01\x5d\x84\x07\x97\xbd\x03\x98\xdc\x50\x45\x9c\x64\xba\xf6\xbc\x4c\x00\x8b\x48\x68\x0c\x80\x8d\xd7\xd2\x1d\x70\xcd\xcb\x8c\xb3\x05\x22\x91\xf9\xd6\x64\x5c\xe4\x59\x6f\xcc\xc1\x1c\x5d\xc5\x8b\x58\x7a\xd0\xec\x46\x3d\xa9\xe9\xbd\xd7\xf1\x25\x8d\xc2\xc0\x59\xd0\x98\x45\x52\xe2\x43\xf7\xf6\x6d\xa0\xd8\xbf\x87\xee\xe1\x5c\x26\x5e\x45\x85\x2b\x86\xfe\x72\x41\xf9\xec\x5d\xca\x26\xe1\x75\x61\x27\x4c\x09\x3a\x2e\xad\x86\x19\x26\x77\x48\xd5\x4a\xb2\x70\x1a\xd3\xc8\x8b\x3b\xf2\x47\x8e\x3b\x7c\xc6\x62\x3b\x3f\xad\x72\xae\x0a\x4e\xba\xf9\x51\x38\x71\x51\xb6\x1c\x8f\x59\x96\xc9\x64\x7c\x32\x8b\x2b\xae\x43\x82\xc9\xbc\xa3\xb7\xb7\x28\x54\x20\xd1\x58\xe4\xfc\x74\xf6\xf6\x0d\xd2\x47\x13\xb2\xa6\x4b\x69\xb0\xcc\xdb\x0e\x9a\x81\xcc\x4f\x4d\x41\x79\x5c\xfc\x79\xa4\x79\x56\xdf\xf7\xb3\xe3\xd8\xef\x79\xe3\x56\x6b\x6c\xe8\xb2\xdc\xd8\xd7\x7f\x42\x52\xf2\xe2\xd4\xca\x4c\xab\x40\xfb\x40\x70\x56\x23\xd5\x54\x0c\x60\x29\x95\x76\x3d\x2f\x2c\xa8\x7a\x62\x92\xf4\x28\x27\x70\x6f\x7b\x2b\xcd\x18\x78\x25\x4d\x6c\xf3\xca\xa7\xc4\xe4\x0f\xbc\x38\x27\x05\xed\xe8\xe5\x1b\x68\x57\x0e\xe6\x22\x5e\xf1\x0d\x61\x78\x85\x80\x8e\x01\x8c\x25\xfc\x63\x3a\xd7\xf4\xb4\xb2\x4a\x99\xfc\xd4\x91\x14\x5e\xf0\x58\xf2\xfc\x3b\x68\x9f\xe9\x1c\xa7\x95\x99\x54\xd5\xe7\xf5\x24\x8f\xb5\xe0\x61\x63\xb0\xca\xdd\x20\x88\x78\xd9\x89\x11\xc0\xd6\x6c\x5f\x10\x7f\x79\x83\xaa\x86\x25\x01\xb5\xd1\x62\x29\xda\x37\x6e\x15\xd9\x00\x92\x62\x18\x21\xd1\xd5\xb7\xf5\x59\x35\x46\x69\xcc\x4b\x6f\xbc\x6d\x49\xc5\xf6\x6e\x5a\x57\x89\x03\x96\x2e\x04\x4e\xaf\x05\x2a\x20\xa7\x44\x02\x52\xed\x14\x98\x10\x4b\x77\x3a\x56\x68\xc3\x7c\x34\x07\xa2\x5a\x2b\xcb\x60\x31\x54\xe3\x14\xc8\x87\x05\x86\x10\xe3\xf0\x48\xdc\x97\x6a\x80\xda\xfe\x57\xee\xfa\xaf\x6a\xf6\x28\x86\xaa\xd8\x3e\x8a\x87\xb1\x4f\x0b\x8b\x7c\xaa\xa3\xab\x65\x9c\x75\xc9\xbe\x87\x3e\x05\x62\x7c\xc4\xf5\xb7\xbe\x4c\x9f\x22\x3f\xf7\xa5\xe5\xc2\x68\xe1\x4b\xad\x3f\x34\xf2\x7d\x3f\xbc\xbd\x95\xf5\xcd\x4d\xc6\xe7\x13\x2c\x01\x6b\xda\x97\xdb\xb7\x1e\x0c\x5f\xd5\x77\xee\xfa\xbf\xd3\x77\xee\xfa\xaf\xf3\x9d\xb3\x60\xd6\x2a\x27\x42\x86\x31\x23\x47\xd5\x2e\xc9\xb3\x18\x7c\x76\x26\xc7\x85\x3a\x8a\x42\x70\x8e\x7d\xae\x74\x49\xb2\xe0\x51\x5a\x96\x90\xba\x8b\xb0\x09\x0c\x89\x55\xcc\x7c\xa9\x33\x26\x36\x5f\x9d\xae\x7f\xf5\x93\x4e\x7b\x67\x18\x67\x6a\x72\x42\x33\x55\xb0\x69\x3c\xa8\xbf\x23\xe6\x19\xf0\x1a\xa7\xa2\xa0\x44\xc6\x78\xea\x11\xb1\xa5\xbf\xf5\x56\x4a\x11\xff\x2a\x14\xcc\xd1\x0d\xf2\x28\x41\xbf\x00\x1c\x1d\x00\x24\xf2\xe2\x7c\x4d\x4c\xf7\x2e\x10\x31\x97\x2d\x08\xe3\xce\xda\x9f\x7a\xc3\x4f\x9f\x42\xf3\xd5\x6b\x88\x3d\xa5\x23\xe9\xf7\xd5\x7c\x7f\xb2\xbe\xe9\x93\x7a\x6a\x26\x60\x8f\x05\x01\x04\x5a\x77\x8c\x64\xfc\x29\x94\x17\xdb\x14\xc2\x5a\xbf\xe3\x5c\x2d\x31\x8b\x23\x81\xe0\x17\xb2\xae\xf8\x0e\x73\x93\xe2\xc3\x97\x99\x1b\x68\x02\x60\x6e\xf0\x4b\xcc\x6d\xaf\x89\x62\xad\xd6\x5e\x73\xc3\xcd\xb0\x27\x71\x21\xda\x50\xe0\x86\x91\xfa\x67\xd6\xd5\x7f\x80\x58\x7d\x58\xc6\x39\x1d\x79\x72\x61\xb6\x2d\x7c\xa5\xb6\xf8\x75\xa0\xf7\x28\x27\xf5\xcd\xb2\x4d\x64\xa7\xec\xf9\x0d\xaa\x01\x1d\x97\x29\x21\x6c\x13\x2a\xa2\xf7\xd3\x4f\x09\xda\x4f\xad\xb1\xfa\x82\xb2\x50\xa9\x12\x59\x13\xb2\x6f\x61\xe5\xec\x1a\xf6\x51\x61\x24\x2b\xb7\x41\xfc\xbd\xe6\xe8\x9b\xe0\xd5\x66\xe3\x12\xdf\x9a\x97\xc1\x67\xc1\x3b\x66\x64\x55\x05\x83\xe6\x39\xef\x0a\xcb\x92\xd5\x4c\x4d\xf6\x46\xb3\x7c\x69\xe9\x04\x62\x66\x95\x68\x82\xf2\x54\x32\x49\xd5\x4c\x08\x6b\x21\x4e\x9a\x39\x02\x2c\x5d\x96\xd3\xa9\x07\xb6\x37\x3f\xd6\x6f\xac\x46\xf1\xe9\x9a\xad\xb4\x2c\x73\x27\xa8\xd5\x19\x5e\xf3\xd8\x57\x5f\x41\xcc\xfc\x17\xa4\xd3\xf5\x14\x66\xa6\x5a\x97\x14\x96\xce\xf8\xa2\x96\x7c\x43\x67\x85\x98\x27\x97\xec\x9d\xb8\xcf\xcd\x3c\x0a\xe8\x14\x9e\x3b\xf0\x02\xad\x0b\xf2\x2f\xf5\xbc\x57\xff\x93\x7a\x5e\x31\xaf\xb7\x16\xd9\x11\x0d\x6b\xd1\x2e\x34\x0e\x92\xb9\x8b\x4b\xdd\xce\xfd\xef\x70\x27\x5b\x8e\x32\x9e\xba\x87\xe4\x11\xc6\x39\x39\xdb\x6c\xed\xee\xe6\xe4\xdc\xfa\x85\x72\x97\x65\x86\x53\x0d\xcb\xc9\x1f\x36\x33\xf8\x0a\xb5\x90\x87\x5a\x74\xbe\x38\x42\x04\x3d\x16\xbf\x23\x2e\x7e\xfe\x20\x7e\x4e\xc5\xcf\x7b\xe8\x9e\x87\x5a\x7f\x2e\x13\x78\x7e\x4f\x3c\xff\xe6\xfe\x23\xf1\xfb\x00\x7e\x5f\x1f\xbe\x3c\x42\xb9\x66\x05\xd5\x62\x18\x2e\x8b\x18\xf4\x5b\x8f\x7f\x40\xf7\x0e\x06\x07\x53\x62\x53\xf7\xf0\x3e\x1b\x80\xb7\xee\xb3\xad\xa1\x80\x4a\xed\xa2\x82\x01\x5d\x56\x4d\x30\xb0\x8f\x56\x88\x50\xbf\x3f\xa8\x66\x6f\x60\x8d\xec\x0d\xca\x54\x18\xef\xdf\xf3\xd1\xbd\x7d\xd6\x8f\x07\xa0\x0b\x2b\x62\x1f\xf6\x7d\xaa\x4c\xb8\xc4\x11\xdd\xe6\x28\x27\xef\x98\xbf\xba\xf1\x74\x5e\xb5\x2b\x4f\x25\x60\x0b\x3c\x99\x96\x6d\x26\x35\xf0\x73\xef\xbb\x2e\xc9\x3c\xb3\x1a\x26\xa4\x54\x53\xd0\x8e\xd9\x95\x73\xca\xa6\x2f\xae\x17\x2e\xfa\x3f\xb7\xdf\x6d\x3f\x1a\xec\x63\xb7\x7f\x73\x15\xcc\xe6\xd9\x60\x1f\x7f\x8b\x30\xd8\x77\xe6\xa0\x76\xe1\x58\xc6\x62\xdd\xde\xde\xdf\xf3\x8b\x30\x66\x6c\x6c\xb2\x52\x61\x15\x99\x55\x68\xbf\x37\x80\x82\x6d\xfd\xc3\x22\x61\x7e\xfc\xf7\x77\xac\x9f\x0e\xca\xda\x62\x90\x60\xcd\x90\xd4\xba\xa4\x7a\xfa\xde\x89\x73\xf3\x98\x36\x64\xb6\xd8\x17\xe2\x15\x68\xcb\xfe\xf6\x4e\x00\xcd\xf7\xfd\x6e\x11\xb6\x76\x00\x8f\xf6\xe3\x42\x78\xd9\x47\x19\x2a\x07\x7d\xc3\x8c\x1d\x7f\xd7\xa1\x10\x58\xc2\xcc\xcc\xc2\x62\x88\xa1\xd5\x53\xe3\x71\xf7\x18\xb5\x81\xb7\xa2\xf0\x47\xbb\xf7\x77\xe6\x31\x12\xfb\xa2\x9f\x60\x99\x52\x15\xce\x85\xe6\x19\x12\xab\x37\xf4\xd4\x71\xc7\x8c\xd3\x71\x31\x26\x49\xf5\xb5\xf1\x26\xac\x37\x54\xf5\xb2\x31\x89\xaa\x6f\x66\xb2\x7e\x31\x26\x59\xf5\x39\xcd\x9e\xd3\x1b\xf1\x42\x83\x5e\x1c\xbc\xec\xb8\xd4\xad\xf2\x52\x79\x4a\x50\x50\x8d\x9c\x9b\x55\xe3\xea\xe6\xc6\x9f\x09\x41\x19\xc2\x9e\xe8\x2d\xb2\xf6\xb6\x73\xf3\xd0\xda\x7c\xfd\xf7\x89\xf5\xfb\x04\x8c\xb9\x86\x56\x58\x7c\x4e\x7f\xe8\x5a\x3f\xa6\x45\x3c\xe3\x7d\x2c\x77\xc8\x43\x5d\xc1\xc8\x7d\xac\x47\x7b\xc9\x7b\x00\x10\xa5\x08\x59\x10\x5b\xff\x86\x5d\xb2\x14\x79\x43\xe6\xf2\x36\xc5\x39\x79\xc9\xfc\x83\xff\x9b\xfe\x1e\xec\xff\xde\xe9\xec\xfb\x9d\xfd\x6f\x0f\xc8\x69\x83\x72\x20\x64\xd0\x8d\xfe\xe0\x48\x6b\x6c\x24\x81\x15\x14\xaa\x87\x3b\xd9\x22\x0a\xb9\x8b\x5a\xa5\x9b\x06\x6f\x66\x8f\x60\x32\x7b\x84\xd6\x0c\x17\x1e\xfa\x68\x8a\x0c\x10\x74\x90\x2e\xee\xc9\x69\xca\xb3\x0f\x21\x37\x95\xea\x09\x81\x3a\x03\xbe\xb8\x15\x55\x62\xbc\x5a\x16\x02\x7b\xa6\x09\x86\x49\x7f\x15\x06\xde\x5b\xe6\x62\xf0\x08\x29\xbb\x4c\x71\x51\x7a\x92\x2b\x8f\xa7\xd8\x52\x51\xc5\xf4\xdc\xe1\xe6\xe4\x12\xdc\x6a\xbd\x64\x1d\xce\x32\xb1\x5b\xc7\x5f\x55\x89\x73\xf5\xdf\xa9\xc4\xb9\xfa\xeb\x94\x38\x8c\xac\x72\xf2\x9a\xb9\xdc\x40\xc0\x10\x63\x0c\x36\xc7\x17\x0c\xe7\x03\xa3\x01\xe4\x1e\x11\x9f\x5b\xdd\xd6\x14\xd2\xfa\x70\x55\x98\x55\x72\x38\x39\xc4\x44\x10\xe9\xee\x00\xae\x80\xde\x80\x24\x7e\xc0\xc6\x49\xc0\xde\x9f\xbe\x2e\x38\x30\x37\x2d\x6f\xe6\xdf\xf7\x0f\xa6\x04\x39\x08\x17\x36\xb3\x58\x19\xc8\x04\xba\xea\x6a\x74\xd2\x3a\x9a\xe4\x85\xd9\xaa\x78\x21\x6b\x45\x74\xc5\x59\x4b\x8e\xb5\x2c\x5b\x98\xa8\x73\xed\xa0\x03\x2c\x71\xd1\x48\x33\xcb\xa8\x07\xed\xd4\x57\x20\x7e\x0c\x65\x76\x2e\x4f\x15\x97\x65\x6e\x82\x0d\x77\xcb\x10\x1f\x2b\x69\x25\xcc\x05\x6a\xe9\xaa\x79\xba\x95\x74\xf0\x82\x5a\xa4\xfa\x91\x5e\x80\x92\x23\xde\x88\x1e\x8b\x69\xb1\x85\x39\x5e\x54\x5e\xa3\xe5\xa8\xd1\x0f\xdd\xe3\x55\xc5\xec\xe2\xad\x72\x1d\x9c\x94\xe7\xe4\xc4\xbe\x47\x17\xec\x06\xee\xf1\x52\x15\xbc\x31\x9b\x4e\xe9\x0d\x6e\x10\x15\x56\xa1\xb2\x9c\x88\x1d\x2f\xde\xc5\x8d\x5d\xa5\x82\xdd\x76\xb9\x2c\xd7\x2a\x36\x0c\x34\xcd\x62\x83\x40\xc7\xac\xe5\x92\xa8\x50\x44\x67\x86\x7a\x7a\x5c\x55\x4a\x2f\xfd\xbd\xbd\x73\xe6\x66\xb8\xd5\xb2\xcc\xdb\xb8\xbd\x37\x84\x7a\x22\x9c\xbb\x99\x86\x63\x3f\x76\x25\x46\x91\x14\x93\xd8\x05\x1c\x22\x89\xef\xfb\x1a\x67\x8e\xbb\x5e\x0f\xde\x68\x64\x21\xe1\x71\xcf\xeb\xc2\x23\x13\x33\xc8\x73\xe6\x46\x18\x93\xa5\x71\xd7\xc4\xae\x81\x04\x64\x89\x89\x20\xe8\xc6\xcb\x0a\x46\x90\x25\x86\x04\x76\xe7\xcc\x1d\xe3\xe3\xd8\x35\xd1\x80\x8c\xc5\xab\x81\x16\x16\xce\x98\x76\xe4\x6b\x21\x9c\x93\x27\x36\x56\x1b\x75\x3a\x07\x20\x9c\x1f\x4f\xbb\x1d\x49\xe2\x37\xec\x11\x13\x73\x9b\x76\x3b\x9c\x8e\xfc\x9e\xf8\xa1\x56\xeb\x77\xc5\x1f\xc6\x3a\xfd\xde\x4c\x0c\xf9\x61\x4d\x08\x7b\xad\x92\x16\x93\xce\x8b\x1c\xe7\xe4\x55\x45\xf2\xd0\x84\xbc\xe9\x70\x4f\xb8\x11\x61\xc6\x04\x25\xe9\x1e\xd1\xc7\xec\x88\xee\xef\x63\xde\xa7\x66\x84\x19\x1d\x58\x8a\x4d\x6e\xe8\x99\x56\x7b\x8e\xfd\xee\x51\xfc\x98\x1d\xc5\xfb\xfb\x98\x0a\xa6\xb1\xec\x39\x1e\x1c\x71\x0d\xec\xa7\x49\x12\x31\x1a\xdb\xc8\xb1\x29\xf9\x48\x89\x4b\x79\x4d\x49\x83\xe1\x9f\xcc\x5f\x4d\xc2\x14\xdc\xd5\x94\x8e\x93\x2c\x58\x0c\xaa\x5a\x74\x25\x1d\xd9\x10\x09\x63\x95\xbe\xae\xb0\x1d\xe7\xe4\xa9\xfd\xf0\xd2\x38\x4e\x38\xdd\xa2\xdf\x4e\xb6\xeb\xb2\x78\xba\x3e\x83\x1a\x0f\x10\x28\x66\xcf\x16\x34\xf6\x1e\x58\x7d\xaf\x66\x0f\x6b\x9e\x57\x49\xcc\xdb\x57\x50\xb3\xa7\x3d\x4a\xa2\x40\x48\xdc\x4f\xca\xa9\x22\xbb\x7a\xe0\x4e\xb3\xa8\xe1\xd5\x26\xa7\x58\xf3\xe2\x61\x8d\x8b\x67\xab\x5d\x60\xbd\x77\x6b\xc5\xc3\x2f\x5e\x1f\xdf\x20\x7d\x9c\xa4\xcf\xaa\x10\x1e\xdf\xdb\x37\x33\x5d\x46\xd2\x65\x2e\x9b\x25\x57\x06\xb8\xca\x3a\xbe\x95\x72\xbb\x3d\x41\x3f\xcd\xb5\xc5\x62\x6d\x91\x9f\x8a\xb5\x65\x7e\xba\x71\x6d\xbb\x68\xdc\x40\x23\x3f\xa1\x01\x44\x48\xaf\x57\x15\x67\xee\x5e\x84\x75\xa4\xeb\x9f\xac\xaf\x62\x8a\x06\x3a\x59\xd1\x78\x99\x66\x50\x8c\x27\x09\x21\x2b\xbe\x35\xf7\x6d\x99\x83\x31\x3a\xbe\xe8\x4c\x6c\xb9\xda\xb7\xee\x00\x07\xf3\x3e\x26\xc8\x71\x11\x31\xf8\xfb\x0e\x8d\x58\x5a\x1e\x7a\xe4\x28\x0d\xb8\xcc\xbe\x61\xe9\xf6\x0c\x26\x03\x85\x81\xbc\xc8\xf4\x94\x9c\x8f\xda\x87\x76\xef\xc3\x45\xca\x4a\x0f\xe9\x32\xd0\xdf\x43\xdf\x4c\x1e\x8a\xff\x10\x59\xd0\x00\xce\x79\xef\xa1\x15\x00\x48\x50\xe0\xf5\xe8\x5f\xe2\x11\x82\xda\xeb\xd6\x2c\x8d\x4b\xd0\xc7\x26\xde\x13\xe6\xde\x7b\x72\xf2\xe2\xf4\xfc\x6c\x05\x4b\x17\x2d\x7c\x74\xaf\x04\x88\x78\x40\xee\xa1\xfc\x9e\xc0\x46\x05\xb6\x2d\xe8\x0b\x77\xe2\xd6\x61\xb9\x0c\x70\x87\x5e\xe5\xaf\x2d\xdd\x6e\x1e\x53\xf9\x87\xdb\x7d\x9c\x1b\xfa\xf7\x79\xd4\x7e\x28\x28\x4d\x26\x84\xb0\x90\xdf\x80\x9f\xa7\x4a\x1f\xd1\xd1\x0f\x3f\x6f\x42\x06\xbd\xbd\xf3\xac\x96\xf3\x39\x4d\xd5\xa4\x8c\x7e\x3a\xea\x05\x96\xf5\xa8\x2a\xb8\xfa\x43\xd7\xa6\x2d\x07\x97\xde\x51\x92\x06\x2c\x65\x41\xc5\xab\xd7\xee\xbe\x3b\x63\x74\xbd\x1b\xfe\x66\xa2\x3b\xd3\x0b\x3f\x01\x28\xae\x71\x36\x2f\xbe\x02\xd2\xb4\xed\x23\x99\xec\xc4\x39\x0b\xe3\xf1\xd6\x6f\xc1\x36\xba\xf6\xba\x30\xfc\x92\x0b\xc0\xdd\x25\x18\xc4\xb8\x18\x37\x85\x84\x6c\xbb\x95\xd4\xa9\xbf\x14\x12\xdd\x98\x46\x4f\xa2\x70\x1a\x7b\x68\x1e\x06\x41\xc4\x04\xb5\xab\xb3\x40\x0a\x25\xbf\xc2\x8d\xf5\x56\x60\x06\xac\xa4\x51\x01\xcd\xc4\xc8\xb4\xdd\x43\x39\x89\x21\x57\x6b\x8a\xd7\x18\x77\x36\xc5\x6e\x34\x2e\xfc\x79\xdb\x1e\xae\xf0\xb6\x34\xea\xfe\xc9\xfa\x4c\xdd\x0c\xfb\x48\x26\xb5\x5b\x2e\x16\x2c\x05\x01\xa7\x52\x0a\xfa\xba\x7d\x1f\xe5\x44\x7d\xbc\x6d\x72\xac\x23\xa9\xf9\x13\xbe\x53\x04\x8e\xcc\x29\xdb\xfc\xf0\x29\x23\x2b\xf3\x70\x57\x58\xab\x5c\x5f\xdd\x38\x27\xbf\x41\x9d\xb7\xc3\x07\x98\xfc\x4b\xfe\x7a\x88\xc9\x8f\xac\xbc\xa0\xe7\x6c\x9e\xe0\x2a\x47\xa8\xef\xf7\xf1\x2c\x8c\x82\x94\xc5\x70\xc7\x5f\xa5\x54\xac\xfe\x4c\xe0\x4e\x06\x9e\xf1\x61\x50\xde\xe7\x37\x72\xe7\xfb\x48\xb7\x41\x04\x55\x5a\x20\x82\xc2\xc0\xa8\x16\xde\x5c\xd1\x6f\xf5\xac\xd2\xb2\xf4\xb8\xb6\x4f\x3a\xfa\xcf\x19\x1b\x5f\x8c\x92\x6b\x9d\x5b\x90\xda\xb6\xd1\x52\xae\x11\x8a\xa7\x86\x81\x17\xab\x22\x8c\x65\x3f\x6b\x87\xd4\x45\x2b\xed\xa9\xe1\x61\xba\xea\x28\x2d\x33\x96\xaa\xaa\x9a\x28\x4e\x62\x86\xf2\x0d\xbd\xc2\x69\x42\x64\x92\xa4\x5e\x9c\x2b\x8d\x46\xa9\xd2\xfe\xf5\x7f\xd2\x72\x53\x2c\xef\x5b\xf6\x55\xb4\x60\xbf\xfe\x77\x6a\xc1\x7e\xfd\x6b\xb4\x60\x02\x54\xff\x64\x7e\xbf\x8f\xb4\x28\x86\x48\x21\x8b\x0d\x48\x1f\x29\x99\x4d\x1c\x4a\x25\xb4\x89\xa7\x52\xb2\x43\x44\x8b\x76\x83\x01\xf9\xd9\xce\xe9\x0b\xe6\x10\xbc\x97\x8c\x42\xd6\xfd\x81\x27\xeb\x9a\x83\xdf\xc3\xb3\x64\x19\xf3\x92\x1e\x98\x8c\xbf\x96\x20\xf7\xba\x85\xec\xb8\xd7\x2d\x85\x46\x60\x95\x2d\x35\xa9\x33\x59\x93\x7a\x2c\x6b\x52\x2f\xd7\x89\x14\xf3\x4a\xcb\xa5\x68\xb9\xf0\x21\x17\x4e\xe0\xcf\x3f\x5b\xa4\x68\xb2\x47\x41\x7b\x12\xb1\x6b\x95\x6f\x34\xcd\xda\x8a\xca\xa1\x9c\xfc\x93\x35\xa3\x18\x01\x80\xc4\x72\x41\xa6\xf2\x82\x4c\xb6\x5c\x90\x3f\x32\x79\x3f\xa6\xa4\x42\x4d\xbd\xd5\x9c\xa6\xd3\x30\x3e\x85\xac\x6c\xbd\x6e\x91\x20\xea\x99\xa0\x6a\x92\xc9\x0a\x03\x53\xa3\x4d\x50\x5b\x4d\x19\xe1\x42\x36\x72\xb9\x9f\x12\x33\x79\x86\xfb\x2d\x13\x94\xb2\x08\x39\x81\x13\xb3\xca\x09\x27\x7b\xe2\xb4\x41\xaa\x84\x2d\xd7\x66\x62\x52\x3e\xb8\x35\xc7\x74\x11\x72\x1a\x85\x1f\x05\x59\x4c\xa5\xb4\x13\xf7\xd3\x01\x48\x33\xd8\x4e\x5d\xc5\xba\xad\x2b\x3e\x61\x93\xb2\x2e\xb4\x58\xa2\x90\x3d\xdb\xc6\xdd\x57\x2c\x73\x83\x04\x18\xb8\x7b\x0b\x7b\x49\x13\x1d\x95\x55\xcf\x5b\x8b\xba\x9d\x47\x29\x9b\x23\x48\xaf\x25\x6b\x46\x7b\xbd\xce\xa3\x3c\x27\xb2\x0c\x00\xad\x29\x0b\xea\xe9\x8a\x4d\xbe\x4e\x0a\xce\x59\x27\x4b\x2a\x19\x52\x4a\x55\x4c\x56\x30\x1e\x39\xc6\x96\xc8\xf4\x9d\xd8\xc0\x9f\x18\x59\xc1\x38\x9e\x1a\x4f\x70\x28\x93\x30\x62\x04\x39\x3f\x38\x88\x30\x25\x7c\xea\xd9\xac\x9f\x6f\x39\x1d\x6b\x6d\x37\x85\xa1\xb2\xbf\x7d\x4e\x6a\xca\x00\x6f\x41\xc4\x00\xe0\x98\x8c\x31\x56\x8e\xcf\x82\x33\xf9\x69\xbd\x56\x41\xe6\x1a\x2b\xf8\x8f\xd8\xb7\xda\x8e\xca\x29\x4a\xb4\x65\x0d\xb4\x95\xf3\x26\xa5\x8c\xbf\x5f\x13\x58\x04\xfe\x11\x4d\xa0\x4a\xfa\xd4\xdd\x58\x9f\xdd\x92\x03\x22\x59\x2e\xda\x61\x3c\x49\x1c\x29\xe6\x38\x20\x4c\xb3\xa0\x9d\xcd\x8b\x1c\xc8\x15\xcc\xe9\xe5\x39\xa1\x3b\xd1\x9b\x11\x0d\xa6\xcc\x24\x33\xe7\xcc\x8d\x3b\x9a\x7a\x62\xdb\x96\xbc\x35\x63\x3e\x0b\x8d\x5c\x79\x37\x60\x12\x77\xd4\x4a\xed\x02\x9b\xd9\x81\xbe\x30\x72\xa2\x6f\x11\x38\xbf\xba\x03\xa9\x92\x10\xac\x44\xba\x53\x77\x65\x74\xae\x6c\x21\x3b\x93\xbf\x25\x41\xc0\xf9\xd1\xcf\xac\xa3\xc2\x5d\xdf\x80\x26\xe0\x09\x6c\x99\x74\x4d\xf8\x37\xf3\xaf\xdc\x9f\x05\xe2\xda\x6a\xac\x31\x23\xb6\x86\x50\x7f\x64\xd8\x09\x8d\xab\x0b\x21\x8f\x93\x22\x32\x08\x10\xee\x18\x7c\xbe\x01\x37\x10\x06\xf9\xa5\xa3\x43\x5a\xa4\xd6\x3f\x4d\x13\xa9\xf6\x0f\xb3\x13\xe5\x99\x1a\xf9\xab\xe2\x16\x33\x70\x87\x68\x74\x2a\xfc\x36\x62\xf0\x64\x6a\xb5\xe4\xbf\xea\x36\xad\xfd\xb9\x45\x39\x2b\x0f\xe9\xa6\x6f\xa2\x52\x5c\xd9\xcf\xd7\xd1\xd5\x7f\xb3\x3a\x5f\x5c\xde\xde\x5e\x94\x13\x39\x25\xa2\xa2\x4c\x52\x52\x2c\xd6\x4b\xc0\x8d\x84\x73\x9f\xba\x90\xb4\x8d\xfb\xb4\x13\xbb\x9c\x63\x12\x73\xdf\xa5\xee\x61\xb7\x67\x0f\xae\xbd\xa1\xf3\x68\xc3\x61\x92\x8a\x28\x93\x5b\x4e\xe2\x49\x38\x6d\x8b\x66\x28\x87\xf4\xa5\x47\x31\xaf\xe2\xc3\x33\xf8\x44\xe2\x43\xca\xfd\x2b\x37\xe6\x98\x24\x76\x7c\x90\x1b\x67\xa4\x2e\xfc\x44\xd5\x24\x19\xfb\xb4\xd5\xa2\x5b\x96\xb3\x13\x4f\x31\x3b\xd4\xea\x02\xb9\x10\xe5\x65\xf1\xfb\x35\xed\xda\xd4\x55\x94\x83\xbe\x8a\x5d\x73\x6f\x2c\x2e\xb5\x64\x71\xe3\x55\xa9\x60\xe6\x72\x4c\x32\x06\x41\x4d\xc9\x92\xbb\x19\xe9\x3d\xec\x76\xed\x37\xdc\x9f\x8d\x7c\x1b\x24\x08\x33\xc1\xc3\x07\xde\xde\x38\x27\xd1\x31\x7a\x96\x2c\x42\x16\x20\x4f\xfc\xb8\x71\x78\xe2\x8c\xa3\x70\x31\x4a\x68\x1a\xac\xd1\x6c\xa4\x5c\x63\x0c\x37\x30\x66\x6f\x4c\x04\xb0\xbc\x31\x60\x4e\x78\xc7\xe3\x6a\x1c\x50\x19\x84\x76\x20\x11\x63\xfd\xe9\xdc\x60\x50\xe0\x25\x46\xcb\x90\x18\xe5\x25\x9a\x93\xc8\x3e\x2d\x95\xbd\xc6\xa0\x19\xab\xdc\xe3\x5f\x70\xdf\xe7\x73\x1a\x07\xed\x93\x30\x66\xce\xcb\x88\x4e\xed\x9a\xaa\xf5\x8a\x33\x92\xf1\x34\x5c\xc0\xc3\xad\x21\xf0\xa6\x0c\x49\xd7\xe6\x3c\xdd\x98\x7b\xc4\xea\xac\x5c\xaa\xbd\xd8\x96\xec\x17\x7d\x36\x28\x8d\x09\x99\x38\xb0\x11\xc7\x47\x51\xed\x54\x4b\x38\xc0\xa1\x1e\x7f\x29\xda\xae\x50\x67\x22\x41\xbc\x1b\x5d\x5f\xbf\xcb\x19\x57\x3e\xaa\x8a\x4c\x5a\xa9\x64\x4e\x96\x82\x48\x1e\x7e\x87\xc9\xdc\x5a\xe9\xe5\x13\xb1\xa7\x62\x3a\x60\x1d\x28\x42\x45\x90\x5d\xab\xbb\xac\xa9\x52\xe6\x51\xfb\x01\x22\x52\xe5\x2d\x23\x39\xb0\x60\x07\xe1\x87\x6d\xac\x91\x52\x21\x8a\xfd\x5a\x88\xfd\xb2\xea\x87\x0a\x40\xd2\xca\x32\x95\xb7\x83\x0e\x07\x4e\x2e\xb4\xab\x40\xc1\x8c\x28\xef\x82\xb4\xf0\x82\xd0\x6c\x81\x7c\xb1\x8c\x2f\xe2\xe4\x2a\x2e\x5e\x16\x2c\x48\x2e\xab\xde\x94\xe1\xa4\x82\x31\x34\xee\xd0\x2f\x76\x3e\x4f\xc5\x6d\x0b\x7c\xcd\x5d\xd4\xb3\x8d\xe3\xba\x41\x47\xfb\x19\x3a\x6e\xd3\xb0\x78\xdf\xda\x3b\x45\x64\x35\x4b\xd9\xc4\x43\xdf\xa0\x7d\xc9\x98\xdb\xcd\xa0\x87\x08\x74\x62\xfa\x13\x25\x13\x7c\x82\x7a\x55\x43\xee\x23\x73\xa5\x7f\x75\xe9\xe5\xaf\x99\xf2\x25\xef\xc4\xc9\x15\x76\x31\x26\xc8\xa1\xd3\xc4\x1e\x28\xb2\xdb\x30\x43\xe6\xf6\xd8\xfd\xbf\x9b\xd9\x66\x3b\xac\x18\x51\xe5\x08\xdd\x41\x0b\xbf\x8e\xe6\x6d\x36\x0d\x6f\x9a\x35\xa0\xce\x96\x1c\x37\x1b\xcd\x0e\xc5\x47\x32\x0a\x78\xcb\x47\x27\x34\xe3\x4e\x09\xeb\xad\x7d\x96\xb1\x17\x02\x48\x08\xef\x22\xff\x6d\xba\x18\xb8\x40\x1a\x29\x51\x59\x04\xd5\x8a\xb9\xa1\x5e\x94\x06\x7d\xf3\xf2\xa1\xf8\xaf\xaa\x2b\x15\x93\x19\x8e\x59\x64\x8f\x66\x9b\xf3\xa2\xfa\x9e\x64\xd5\x65\xa6\x0e\x85\xbf\xb6\xc5\x1b\x2d\xa4\x93\x8c\x6a\x00\xc6\xbe\x0d\x29\xfe\x76\xa2\xc2\x86\xbd\x6f\x57\x9b\x89\xa6\x9e\x0d\x85\x10\xf5\xb9\x60\x36\x63\x9f\xef\x62\xe3\x6f\xd0\x76\xb1\x19\x54\xc8\x94\x48\x66\x7d\x59\x67\x24\xb9\xc3\xe2\x6a\xb6\xc3\xc6\x0a\x8d\xf7\xff\xd1\x65\xda\xf2\xde\xed\x88\x79\x5b\x70\x2c\x65\xe3\x24\x0d\x3e\x1b\xc9\xee\x4a\xe7\x0c\x79\x99\xba\xac\x33\x63\x34\xe2\x33\xb8\xb0\xe5\xcf\x0e\x4f\xde\x2f\x16\x2c\x7d\x46\x33\xe6\x6e\xb7\x37\x01\x39\x16\xc4\x64\xd7\x24\x87\x46\x13\xa9\xaf\xd9\x3c\xc2\x9d\x68\xfe\xc6\x9e\x76\x23\xeb\xb9\xfe\x5f\x6e\x78\xeb\x0b\x28\xcf\x3e\x5d\xc4\x48\xe5\x85\xff\xb9\x0c\xe2\x82\x93\x55\x91\x4f\x25\x5e\xc7\x1f\x06\xf6\x79\x56\xcc\x6d\x50\x7e\x59\xaa\xd7\x67\xc9\xd5\x2f\x49\xca\x36\x1c\x96\xd9\x7d\x6d\x55\x5e\x27\xf0\x49\xc1\xe1\x3a\x2b\xb5\xa2\x54\xeb\xa5\xb4\x9f\x07\xea\x76\xee\xb3\xb9\xa3\xff\x7f\xf8\x50\xff\x81\x88\xa9\x06\xbd\xff\xfd\x43\xf1\xc8\xd4\xc6\xf6\xc4\x83\x9a\x35\x79\x44\x33\x16\x85\xd2\x12\x56\xb5\xec\xe6\x04\x74\xb6\xe2\xf8\x1e\xa3\x48\xb0\x83\x1e\x9a\x27\xa9\xb8\x8c\x72\x32\xb1\x72\xcc\x76\x9f\xbc\x2f\x4f\x6e\x14\x75\xd9\xac\xc1\xda\x60\xa1\x36\x32\xbd\x90\x7b\x3e\xba\x67\x56\xb7\x80\xfa\xa0\x20\x09\x4f\xed\xdb\x2f\x0b\x0e\x51\x95\xf4\xe3\x3f\xe5\x43\xb5\xf1\x82\x08\x84\x1c\x7d\x59\x29\x84\x82\x57\xca\x9d\x4a\xa3\xa9\x17\xed\x98\xed\x8c\xd3\x74\xca\x78\x1b\x18\xe1\x1c\xf2\xb4\x91\xc8\x42\xa1\xce\x4b\xf4\x15\x72\xaf\xc9\x5e\x97\x59\xe2\xb6\x08\xc3\x5f\xc2\xa1\xe4\x79\x98\x8d\xc5\x78\x2c\x70\x76\xf3\x2d\x39\x87\xf5\x15\x1f\xef\xe2\x12\x52\xe7\xc1\xe8\x4e\x3c\x98\x15\x63\x4b\xa2\x3a\xe1\x2e\xef\xd3\x81\x90\xb5\xd5\x02\xe4\x94\x30\x26\xf0\x3c\xcc\x9e\xa7\xc9\x62\xc1\x82\x6d\x0c\x9c\xa0\x02\x1f\xa4\x02\x1b\x49\x4e\x38\x27\x48\xb5\xb5\xa6\xb0\x6d\xce\x41\x31\x45\x8a\x86\x7b\xaa\xde\xf4\xa5\xfd\x40\xe8\x80\x69\x01\x46\x55\x7c\x44\x0e\xa6\x1f\xc5\xd6\x20\x97\x55\x4e\x62\x7f\xaf\x4b\x52\x7f\xaf\x47\x12\xa5\xc2\x39\xe2\xe9\x4d\x61\x75\x0e\x49\xe4\xb3\xbe\xb4\x87\x77\x42\xce\x52\xca\x93\x74\xe0\xe2\xa3\x3d\x37\xf6\xdd\xd0\x8f\x3a\x31\xbb\xe6\x2e\xc6\x9d\x20\x89\x19\x3e\x12\xdd\xc9\xde\x33\x3f\x94\xe7\xb4\x93\x8d\x53\xba\x60\xef\x92\x24\x3a\xa2\xfd\x6c\x70\x7b\xeb\x8a\x7f\xfc\x15\x4f\x38\x8d\xbc\xae\x2e\xe8\xdc\xcd\x31\x11\x2f\x3a\xf0\x7c\x7f\x5f\xfe\x21\x5f\xee\xef\xe7\xb9\xcc\x01\x34\xc1\xab\x54\x4c\x39\xf1\x27\xf9\x24\x8c\x69\x14\xdd\xac\xc4\x84\x63\x59\x92\xdb\xf7\xa3\x8e\xc4\x83\xdb\x5b\xfd\xcb\xc5\xc5\x97\xe1\xc4\x4d\x55\x86\xa6\x24\x07\x5b\xf0\x58\x74\xb6\x14\xeb\x9f\xdb\xd6\xbf\x20\x33\x9f\xdb\xd7\x3f\xf6\xdd\x85\x3f\xab\xad\x7f\x5c\xac\x3f\xf0\x17\x6a\xfd\x75\x6c\xea\xfc\x91\x8c\x8e\x68\x3f\x90\x90\x08\xd6\x41\x22\x28\x20\x61\xac\x7d\x29\xa6\x3b\xaf\xad\x7d\xac\xd7\x3e\x2b\xd6\x3e\xb3\xae\x7d\xa9\xd6\x3e\xcf\x4b\x77\x03\x70\xfb\x27\xe9\x7f\x0e\x3f\xc8\xd8\xcf\xaa\x38\x32\x96\x90\x19\x0f\xfc\xfe\x40\x40\x62\x3c\x90\x81\x92\xab\x3a\x24\xbd\xac\x01\x5c\x12\xe9\x37\xaa\xb6\x54\x71\x66\x65\x72\x27\x05\xca\xcb\x02\x8d\x2e\xbf\x08\x1a\xa9\x7d\xd9\xeb\x91\x85\x0d\x4c\x33\x12\xac\x43\xa3\xa5\xef\xce\xfc\xa0\x06\xa6\x65\x01\xa6\x89\x3f\x53\x60\x9a\xfa\x93\x75\xa8\x34\x95\x00\x9b\x6a\x80\x4d\xd7\x02\xac\xd9\x85\x09\xa0\xae\x86\xde\x2a\xaf\x80\x6a\x2e\x56\xb7\xa8\x81\x6a\xa9\x41\x15\x14\xa0\x0a\xac\xa0\x9a\x2b\x50\x2d\xea\x58\xf7\xc5\x74\x50\x67\x2c\xbd\x0c\xc7\xcc\xd1\x17\xcf\x8d\xfd\xc2\x59\x46\xaa\xc1\x07\xe6\xc6\xe4\x4b\xf2\x44\x51\xb8\xf1\x82\xa9\x28\x99\xa4\x4c\x26\x8d\x79\xf2\xc0\x13\xe4\x1c\x08\x1e\x4f\x9e\xf7\xc2\x89\xd9\x91\xd7\x7e\xa6\x4c\xff\xd6\x25\xcd\xb4\xf6\x51\xac\x29\xfd\x92\x6b\x9a\x72\x9d\xd8\x26\x26\xe0\x96\x4c\x95\x44\x29\xe5\x89\xa3\xcb\x9a\x4a\x5a\xed\x41\xb1\x05\xcf\x64\x1d\x38\xa9\xa4\x1e\x71\xff\xca\xbd\xe4\x98\xdc\x7c\xba\xdc\xa1\xa0\xf1\xf9\x92\xc7\x88\x37\x1d\xde\x36\x18\xf3\x48\x91\xbc\xea\x5c\xca\xad\x0d\x6c\x73\xc2\x58\x46\x20\x85\x49\x8c\x80\x6f\xbd\xe6\xbe\x91\x3b\x4f\x0b\xbc\x67\xe2\x89\xca\xe4\x21\x1d\xdd\xc2\x8f\xec\xb7\x46\x3a\x2b\x2d\xaa\xb1\x2b\xe7\x39\xe5\x4c\xf0\xf0\x3c\x79\x7f\xfe\xac\xc8\x2c\x99\x93\x67\x1f\x9e\x17\xbd\x7e\x48\xd2\x8b\x30\x9e\x3a\x41\x98\x42\x1a\x75\x21\x36\xa4\x2c\x4a\x68\x20\x4d\x66\x67\x52\x93\x5c\x7c\x5f\x31\xa4\x39\xf2\xcb\x5d\xe6\xc3\x8e\x91\xea\x6a\xb2\x8c\x90\x07\x29\xa3\x8b\x3f\xf3\x1c\xb2\x48\xc8\xbe\x2b\x8b\x06\xb5\x5b\xf9\xa5\x33\xb6\x0d\x9f\x93\xf1\x6c\x19\x5f\x48\xdb\xaa\x6e\xf9\x8a\xd1\xc0\x81\xe7\x19\xca\xa1\xb4\xa1\x4c\x1d\x68\xf9\x4a\xbc\xd4\x75\x8c\x85\x14\x95\xa6\x4b\x08\x79\xab\x7e\xfa\xe1\xc9\x89\x53\xbe\x13\x5f\x4e\x93\x34\x59\xf2\x30\x66\xd5\x0f\x7f\xd4\x8f\xc5\x37\x19\x4f\x52\x3a\x65\xa7\x4c\xa0\x73\x98\xc4\xc6\x76\xc2\x0b\x27\xd5\x6f\x04\x6f\x2e\x1d\x56\x23\x96\xf2\x39\x8d\xe9\x94\xa5\x99\xb7\x92\xb0\x3d\x55\x85\x13\xd7\x01\xfa\x6b\xbb\x33\x17\xdc\xf6\x8b\x38\x80\x78\x0d\xa9\xd2\x5c\x23\x1e\xb2\xce\x32\x8d\x54\x10\xd5\xfb\xd3\x13\x97\xcb\x53\x27\xd3\x68\xc2\x99\x13\x67\x56\x10\x86\x6d\xa9\xe5\x3f\x29\x83\x7c\x49\x32\x79\x4e\x62\xac\x23\x6c\xf2\x9c\x28\xc6\xb6\x06\xe2\xec\x22\x5c\x08\x99\x26\x27\x2f\x36\x5a\x29\x95\x31\xe8\x4b\xdd\x3c\x74\xad\x29\xd2\x90\xde\x66\x6d\xf0\xc1\x22\x76\xc9\xec\xee\xd6\xc9\xf5\x71\x51\xbb\xd1\x7c\x92\xfa\xd7\x42\xc4\xb8\xbd\x5d\xe5\x24\xf1\x53\x65\x1f\x8b\x4a\x13\x6e\x72\x4c\xbd\x04\xf2\x8e\x56\xb1\x95\x8c\xcb\x6f\xb2\x63\x1b\x8d\xc8\xbd\x8c\x2c\x8b\x76\xa7\xc9\x95\x86\x74\xda\x11\x5b\x24\xcb\xda\x2d\x8f\xc7\x6e\x4c\xa8\x5d\x0e\xda\x22\xaa\xcd\x6a\x1e\x10\x85\xc3\x5c\x1b\x56\x51\xb8\x10\x5d\x41\x6c\x11\xba\xff\xf0\x6f\x40\x9b\xd6\x2a\xd3\x56\x75\x17\x3c\xc8\x6b\x2b\x88\x88\x1b\x93\x08\x97\xb6\xd8\x0b\x71\x85\xbd\xe0\xf8\xe8\x45\xfd\xe2\x03\xbb\xa9\xbc\xe7\xae\x76\xb8\xde\xb6\x9b\x62\x37\x95\x6b\x68\xe2\x67\x7f\x05\xb9\x73\x65\x3a\x73\xcf\xbc\x3c\x29\x41\xda\xaa\x9b\x2e\x63\x41\x23\xc5\x45\x25\x8e\xbd\xa2\x60\xa7\xf2\xa9\xf3\xda\xbc\xbf\xc8\x2e\xfd\x8d\x96\x61\x14\xd4\x7a\x7b\x2a\x9e\xdd\xa5\x2f\x6a\x9e\x61\xa3\xa3\xca\xd9\x46\xf9\x60\x3d\x8d\x32\x7a\x2f\x0f\xb7\xf2\x81\x2b\xd8\x03\x6e\xf8\x21\x25\x3e\xdf\xe6\x01\x71\x51\xb3\x5c\xcb\x49\x51\x83\x25\x48\x95\xb6\xb2\xc1\x1a\x68\xe6\x88\xbc\xe5\x3e\x75\x1f\x7e\x8f\xc9\x99\xf4\xfd\x79\x6b\x26\x1c\x3a\xe7\xff\xd3\x6e\xeb\x7f\xf0\xaf\xe2\xb6\x7e\xce\xff\x2b\xdd\xd6\xc5\xb4\xfe\x22\xb7\xf5\x67\x76\xe2\x22\xb7\x58\x06\x97\x32\xfe\x52\xfe\x25\x8e\x40\x36\x4b\xae\x5e\x81\x15\xe4\x86\xa4\xfe\x8a\x46\x91\xa7\x32\xeb\x79\xb1\xa9\x91\xa5\x51\xe4\x14\xe7\xf2\x8c\x77\x68\x67\xc4\x63\xdc\x88\x32\x5a\xef\x23\x4c\xdd\x3f\xb8\x74\x7d\x5e\x19\x63\x82\xb7\xba\xb8\xb1\x97\xf1\x4c\x3d\xd1\xc3\xef\x55\xc6\x2f\xde\x7f\x9d\x59\xf4\x60\x16\xf9\xfa\x03\xcf\xd8\xe6\x04\x65\x69\x87\x42\x6c\x5b\x14\x59\xc5\x4a\xf9\x49\xb1\x08\x82\xde\xeb\x9f\xa0\xa6\x7f\x07\x1e\x2e\xff\xc0\xe4\x17\x49\x0a\xde\x71\x4c\x9e\x5b\x76\x52\x9a\x32\x14\x6b\x06\xd6\x8c\x69\x94\x8c\x68\xf4\x3e\x8d\x40\x95\xc0\x0b\x56\x8c\x62\x25\x99\xcf\x37\x30\x8c\x9f\x56\x70\xe5\x85\xcc\x98\x8d\x09\x72\x10\x99\xeb\xf4\xd8\x32\x29\x52\xea\x73\xe0\x16\x66\x49\xc6\x49\xe4\xa7\x05\x03\x08\x8c\xc2\x22\x4d\x78\x32\x4e\x22\x48\x4f\x9e\x19\xf9\xf6\xc9\xd2\x87\x20\xfc\xce\x24\x4d\xe6\xee\xb8\xe0\x5e\xf0\xe7\x8a\xff\x05\x87\x18\x9b\xd6\x84\x8c\xa0\x83\x03\x23\x89\x50\x99\x9c\x08\x63\xb2\x2c\x62\x2f\x6d\x0a\xdc\xc2\x93\x47\x26\x74\x5e\x7e\x69\xcb\xc9\x2e\x96\x91\xf2\x08\x50\xac\x2d\xb8\xdb\x4c\x25\xf2\xca\x79\x03\x78\x76\xf8\x08\x93\xa1\x72\x32\x85\xb2\xc1\x8f\x1e\x60\x4c\x3e\x4a\xd4\x1b\x72\x4c\x5e\xae\x61\x8f\xeb\x5a\x21\xea\x6b\xbb\xbc\x0a\x60\xbb\x86\x22\x74\xa5\x9e\xae\x8c\x43\xa9\x5b\x5d\xb2\x0a\x84\x22\x01\xa1\xb1\x9f\x09\x08\x2d\xfd\x4c\xf0\x9f\x73\x1f\x49\x59\x4d\xc6\x77\x65\xed\x4a\xec\x85\x91\x34\xe3\x73\x51\x44\x9a\xaa\xc2\xc0\x9b\x9b\x70\xae\x8e\x3d\x4e\x62\x4e\xc3\x18\xce\xc7\x27\xbb\xff\xdd\x6d\x6b\x99\xdc\x5a\x66\x6e\x2d\xab\x6e\x2d\xed\xb3\x41\xb9\xbb\x96\xb5\xbd\xe1\x46\x20\xfb\x98\x48\xe5\x88\xf7\xec\xec\xac\xc3\xb2\x31\x5d\x30\x77\x8e\x89\x0c\xef\xb0\x90\xca\xa5\xbb\x37\x06\xf7\x42\x60\x95\xe7\xf4\x5a\x46\xe2\xcb\x78\x3c\x22\xd8\x60\x65\x9a\x8c\xd8\x84\xdb\x4d\xff\x68\xa4\x69\xc6\x53\x36\x49\x52\x21\x05\x03\x40\x55\xb9\xa6\xf5\x96\x49\xc5\xe8\xd4\x80\x5b\xb0\x25\xa6\xea\xa7\x02\x11\xd6\xe7\x12\x22\x50\x7b\xfc\x8e\xa5\xe1\x76\x13\x9f\x0b\x02\xb0\x93\x55\xee\xa3\xb8\xa3\xca\x73\x93\x13\xa6\xed\xed\x25\xab\x77\x5a\x61\xf5\x7e\x3a\x7b\xfb\x46\x15\x58\x8f\x92\x31\x8d\x94\x02\x41\xf0\x01\xaf\x39\x9b\xbb\x0c\xdf\xde\xc2\x37\x32\x33\x53\x38\xb9\x71\x39\x68\xbb\x2c\x07\x8d\x5a\xad\x9b\xa1\xb4\x6e\x46\x15\xeb\xa6\xd9\xfa\xc5\x64\xc2\xc6\x1c\x57\xaa\x0d\x4b\x1a\x50\x1b\x38\xc4\x47\x95\x39\x66\x7a\x8e\xe0\x66\x4e\xfa\x8c\x84\x03\x4c\xfa\x21\x89\x06\x70\x3b\xbc\xe6\x7e\xbf\xd4\x2c\x68\xbf\xad\x22\xb8\x5c\xb9\x5f\x9d\x01\xf9\x10\xaf\xe1\x87\xf3\x5c\xe9\x81\x90\xf6\xe1\x1a\x90\x13\x3b\x81\x32\x08\x0f\x30\xfa\x80\xef\x3f\xa6\xc9\x72\x41\x62\xff\x54\x08\x73\x52\x3d\xd8\x36\x55\x87\x6d\x76\xbd\xa0\x71\xc0\x02\x84\xc9\x4a\xff\x96\x51\x74\x16\xe0\x25\x00\xbc\x8e\xfe\x4e\x41\x11\x12\x14\x2d\x17\xa0\x20\x7a\x4c\xd5\xc0\x45\xd1\x5d\x7d\xb7\x8a\xb3\x93\xce\x69\x84\xc8\xd8\x47\x8b\x24\x89\x8c\x79\x60\xb2\xf4\x0b\xf5\xaf\x7e\x3a\xc6\x24\x0c\xbc\xf1\x06\xb6\xa4\xe1\xd7\xf3\x8b\x40\xb8\x82\x5c\xd9\x30\xd8\x6a\x74\xd6\x31\x0f\xae\x01\x01\xf0\xad\x28\xcc\xd0\xc9\x3a\xa5\x75\x4d\x4d\x5a\x9d\x4a\x3f\x1b\xe4\x90\xe6\xc8\x84\xb8\xe3\x22\x23\xe5\x9e\x02\x1b\x41\x07\xe6\xd3\x2a\x08\x09\x72\x96\x0b\xbc\xc6\xe8\x6b\x66\xeb\xb0\xce\xb2\xa6\x6b\x01\x10\x41\xae\xe6\x35\xda\x96\x2f\x68\x07\x97\x69\xed\xc5\x77\x70\x77\xbc\x6e\xd8\xa4\x37\x5a\xa4\x67\xa5\xbb\x38\x93\x64\x63\x9b\xf6\xa7\x04\xdc\x86\x12\x91\x8d\x7b\x3c\x2e\xef\xf1\xda\xfd\x9d\x14\x7f\xbe\x4f\xc5\x6d\x6e\x30\x9c\x24\xf3\x0d\xc7\x26\x32\x56\x7f\xc9\x43\x4b\x96\x95\x3f\xf5\x11\x26\x73\x5f\x3b\x5d\x91\x85\xd5\xc9\xb9\xc3\x93\x93\xe4\xaa\xf0\xc5\x92\x2e\xcf\xcb\xc5\x1a\x97\xe7\xc0\x74\x6b\xd6\x3e\xcf\xd5\xea\x86\x86\xb7\xb3\x3b\xdf\x5a\xe2\x52\x40\xdb\x8e\xe9\x35\x3d\x10\x20\x91\xe6\xc4\x6d\x0d\x9e\x8b\x63\xa6\xde\x7b\x09\x29\xc0\xe6\x45\x1b\x1c\xd8\xea\x03\x40\xfc\xd1\x16\x07\x9a\x45\x4e\xe6\xbb\x7a\xb0\xd5\xfb\x97\x9b\x6e\xad\x73\xc0\x49\xd3\x30\x48\xb5\xe9\x2f\x26\x25\x8e\x78\x29\x09\x83\x6b\x8f\xef\xbe\xac\x3e\x12\x98\xd1\x96\x5d\xa0\x41\x4e\x3e\x32\x77\xdc\x74\x71\xdb\xbd\x3b\xd9\x53\x5b\xa7\x57\x15\x5d\x2a\xd7\xb7\xe5\xee\xb0\x00\x75\x4d\x96\x13\x9b\xe3\x6d\x15\xdc\x99\xf2\xb4\x28\x93\x42\x3c\xd9\x2a\x75\x57\x9d\x2f\xa4\x6d\xca\x16\x80\x29\xcf\x28\xd7\x87\x04\x44\xf4\xf2\x38\xa6\xbe\x38\x0b\x50\xd5\xa7\x72\x4e\x8e\x7b\x5e\x57\xa3\x36\xeb\xc7\x83\xdb\x5b\x17\x92\xde\xae\x14\x71\xf5\xba\x8a\xf9\xcb\xbc\xfe\x20\xc7\x44\xbc\x2c\x28\x05\x58\x81\xb9\x7a\xa8\x1a\xec\xfb\x29\x61\x39\x26\x2b\xb8\x05\xab\x6a\x82\x44\xfd\x5d\x88\xb0\x77\x61\xc0\x4d\x06\x6f\x6d\x0e\x50\xa5\xf3\x11\xcc\x5c\x54\x5e\xac\x72\xd9\x95\x7b\xa1\x48\x7d\xd8\x6a\xa5\xb7\xb7\x7b\x51\xab\x95\x1c\xaf\xcf\x4e\xda\x9c\xdf\x89\x66\xf5\x4c\x7c\xe6\xc4\x60\x1c\x3c\x9a\xe3\x81\x4c\x7d\xd9\x1f\x08\xb6\xed\x49\x5d\xb3\x5b\x34\xac\x18\x33\x3f\x70\xff\xca\x7d\xc2\x31\x79\xb5\x83\xb6\xb7\xc0\x94\x78\x8b\x5d\xf3\x58\xd6\x21\xd2\x71\xa7\x62\x6f\xe2\x52\x8b\x99\xf8\xb1\x32\x72\x46\x7e\x6c\xe8\x33\x85\xe8\x2d\x55\xb2\x82\xf1\x30\xea\x91\x65\xad\x96\x2c\x1a\xe7\x80\x8e\x54\x50\x49\xf1\x74\xfd\x7e\x7e\xb0\x58\x45\x53\x65\x15\x95\x4b\xf0\x74\x14\xcf\xf8\xb8\x2c\x6f\x96\x61\x2f\x31\x54\xa3\x51\xc3\x5a\xaa\xce\x45\xd3\x46\xfa\xe7\x0e\xd0\x33\x19\xbb\x05\x9d\xb2\xb6\x9c\x09\xaa\x2b\x9a\x48\x05\x69\x25\x87\x17\x57\x38\x3c\x2a\x33\x09\xc4\x32\x93\x80\x5e\x51\x4a\x0a\x95\x99\x17\xf7\x7b\x83\x9c\x44\xc6\xbb\x72\x2a\x1e\xdf\xc0\xa8\xdd\xd1\x59\xe1\x5c\xdb\xb1\x2d\x9f\x3d\xe3\x24\xb1\x56\x63\xe0\x24\xaa\x08\x16\x4f\xff\xb7\x75\xc8\xef\xbf\x8e\x0e\xf9\xe9\x7f\xa7\x0e\xf9\xe9\x5f\xa7\x43\xfe\xcd\x76\xe8\xd0\x71\xa9\x86\x00\xe6\xf2\xc4\x4c\x39\x8a\x8f\xae\xc2\x38\x48\xae\x3a\x33\x59\x40\x08\xb6\x4f\xd5\x67\xcb\x09\x42\x42\x20\x24\xff\xb2\x1f\x66\x5d\x97\xd9\x9e\x0d\xa5\x5a\xba\x43\x3e\xa8\x94\xd3\x04\xae\x74\x99\xb1\x77\xb2\xfe\xe6\xa9\xa6\x86\x59\x95\x4e\x08\xfe\x14\xe2\x07\x54\x89\xa3\x17\x31\xc4\xe8\x96\x89\x50\x8a\x94\x4b\x6a\x3e\x88\x20\x73\x6c\xf9\x67\x65\x64\xf9\xa8\x36\x2e\x22\xa8\x1c\x15\x11\x64\x19\x13\x0d\x8c\x34\x2b\xa6\xbc\xbe\xec\x40\xe1\xa9\x0c\x93\x45\x85\x2e\xcd\x05\x5d\x9a\xf9\x0b\x99\x85\x65\x21\x04\xce\x29\x90\x3d\x05\x6d\x24\xee\x26\x72\x59\x69\x33\x15\x6d\x46\xfe\xa5\x68\x73\xed\x5f\x0a\x51\x7f\x9b\x8c\xbf\x37\x53\xa7\xa6\xd5\xba\x70\x31\x51\x3b\x9a\xc4\x8b\x64\x21\xef\x9d\x46\x41\xae\x53\xe6\xaa\xaf\xa2\x44\x15\x37\x95\x6a\x5d\x7c\xc4\x8c\x14\x76\x81\xcb\x70\x2e\x6f\x50\x59\x20\xb8\x9e\x01\x7d\xcf\x6d\xf7\xa0\x6c\x40\x18\x07\xec\xfa\xed\xc4\x65\x18\xb7\x5a\xba\x0b\x8d\x2a\xa3\x26\xbb\x60\xa4\x23\x76\xa8\xef\xfb\xec\x98\x7b\x76\x06\x80\x63\xd2\xa7\x03\xa9\x96\x18\xe0\xa3\x6b\x57\x67\x22\xef\x92\x87\x5d\x30\x41\x5c\x98\xeb\x7b\xc5\xdc\x80\xfc\xc6\xb1\x6b\xef\x6d\xb6\x3e\xd9\xb9\x06\x62\x99\xf3\xfc\x05\xcb\x81\x75\xb8\xc3\xe5\x30\x5b\x6f\xce\x0c\x03\x90\xca\xb6\x56\x35\xbb\x60\x64\x55\x2d\x32\xec\xbd\x90\x11\x94\xc5\xc4\x12\x52\x2f\xc6\x66\xf3\xe9\x29\x40\x51\x9f\x54\x09\x7a\xc9\x9b\x85\xc1\xf1\x7b\xb0\xae\x50\xb2\xd2\x43\xb0\x1c\x7b\x54\x2a\x9f\x8d\x52\x2c\x16\xd5\x83\x31\x8a\x2d\xad\x7d\xb9\xcb\x9d\x30\xd8\x93\x14\x62\x1d\x9f\x57\x4c\xa2\xba\x31\x05\x3a\x55\x39\xba\x6a\xf9\x9b\x98\xd4\x4f\xb9\x97\x92\xe6\x29\xf7\x22\x62\x94\x99\xf3\x28\x31\x8a\xd0\x79\xe3\xe3\x91\xd7\x1f\x98\x9c\x41\x96\xaf\xc9\x1f\x51\xaf\x6d\x33\x1f\xb5\xef\xa3\xb5\xf6\xac\x8b\x9c\xa0\x27\x41\x50\x54\xad\xc9\xc9\x8f\x3b\xf0\x47\x75\x0f\x02\xab\xaa\xb0\xbb\x53\xc6\x06\x41\x73\x96\x19\x6b\x83\xd6\xaf\x2d\x9d\xd4\xf6\x7a\xb8\x24\xa2\xd0\x74\x2c\x9a\xce\xfd\xa5\x68\xba\xf0\x97\xa2\xe9\x0c\x9a\x32\xa0\x7f\x6d\x59\xca\xbd\xa0\x5d\xa2\x83\xa0\xd2\xc1\x4c\x74\x30\xf5\x03\xd1\xc1\xa5\x1f\x88\x0e\x6e\x8a\xb1\x83\x2a\x09\xde\xeb\x62\xf2\xa2\xd2\xfa\x46\xb4\xbe\xf0\x5f\x88\xd6\x57\xfe\x0b\xd1\xfa\x6d\xd1\x5a\x55\x69\x6e\xa7\x05\xb9\x16\xc3\x9f\x55\x3a\x78\x2b\x3a\x38\xf7\xcf\x44\x07\x7f\xf8\x67\xa2\x83\x67\x7e\xc3\x2f\x41\x32\xe6\x20\x10\x1f\xe8\x9a\x2d\x07\xe0\x0c\x09\x6e\x0a\xef\xfc\x67\x25\x67\xfe\x8b\xff\x4c\x71\xe6\xcf\x7d\x57\xfb\xec\x61\x71\x2f\xcb\xea\xd7\x50\xf3\xfa\xcd\xba\x31\x00\x5e\xc7\xf0\x7f\x9f\xc3\xf7\x62\x80\xa1\xff\xa6\x1c\xe0\xa3\xff\xa6\xea\xb2\xb0\x8d\xd6\x87\x13\x77\x68\x04\x7e\x33\x5f\xfe\xa5\x8a\x06\xf7\xbb\x83\xa3\x4c\xd6\xfe\xa1\xa3\xcc\x7d\xde\x66\x58\x12\x70\xf9\xd5\xc0\x86\xca\xbb\x70\xb8\x9b\xd3\x50\xdd\x27\x4a\xb2\xf2\x50\x18\x47\x61\xcc\xda\xa3\x28\x19\x5f\xa8\xc4\x54\x15\xac\x31\xd2\x16\x16\xe5\x12\x6d\x07\x41\xca\x05\x1a\x28\x97\x2e\xef\x8c\x65\x46\x2f\xdc\x48\xf1\x35\xcd\x09\x92\x17\xb4\x2c\xfe\xeb\x68\x04\xbd\x7b\x3e\xad\xc3\xee\xc6\x95\x54\x4f\xd0\xa7\x2d\x65\xb1\x69\x29\xf3\x9c\xa0\xf7\x19\x73\x60\x10\xe9\x4b\xfa\x55\x16\x51\x39\x8a\x9f\xb6\x8e\xab\x4d\xeb\xb8\x50\xeb\xa8\x72\x5d\x5f\x65\x29\x75\xba\xf0\x69\xab\xf9\x63\xd3\x6a\xce\xd5\x6a\xd4\x55\xe2\x14\x1c\x23\x26\x6e\xf4\xc3\xfd\xee\xed\xed\x47\x6b\xfa\xa9\x4f\xb3\xd2\x7f\x90\x6a\x4f\xcf\x41\x98\x7c\x6c\xb5\xd0\xfb\x98\x5d\x2f\xd8\x98\x33\xa3\xb6\xb8\x54\x0a\x38\x57\x33\x16\x17\x1a\x00\x27\x63\xe9\x25\x4b\x01\x6b\xbc\xd2\x1c\xf9\xb1\xb0\xf3\x93\xe8\x07\xff\x7e\xb7\xd5\x52\x25\xb3\xed\xed\x9e\x33\x2e\xc7\x42\x46\xdd\x1f\x47\x15\x30\x92\x9e\xb8\x41\x38\x99\xb0\x94\xc5\x63\xe6\x8c\x18\xbf\x62\x2c\x76\x6e\x92\x65\xea\x8c\xd2\xe4\x2a\x63\xa9\x43\xe3\xc0\xe1\x33\xa6\xfa\xed\x38\xe7\x33\x1a\x27\x99\x93\xb2\x28\x64\x99\x93\xc4\x0e\x1d\x8f\x97\x29\xe5\x4c\x76\x07\x9f\x43\xbf\x69\x38\xe1\xce\x3c\x9c\xce\xb8\x33\xa6\xcb\x8c\x39\xcb\x72\xe9\xf2\x64\x4b\x22\x97\x75\x04\x19\xfd\xe5\xeb\x80\xbc\x0e\x1d\x25\x54\x38\x51\x98\x71\xcf\xd9\x79\x33\x64\x33\x27\x06\x2e\xc3\x41\xe4\x97\x72\x1b\x9a\xd3\xf9\x17\x27\x2b\x29\x40\x78\xeb\x19\x73\x93\x2d\xa1\x55\xde\x67\x6e\x63\x74\xce\x9b\x0c\xd1\x85\xe2\x7d\x32\xef\x9d\xd4\xfd\x58\x64\x1c\x6f\x0a\xfa\x9b\x5f\xed\xfc\x09\xdc\x9a\xe0\x2d\x0a\x9a\xbd\xa7\x37\xa0\x60\x16\x2c\x90\x72\x51\x2a\x5c\xb8\x9f\xde\xfc\x52\xf0\x59\x20\x0f\xce\xd9\x3c\x49\x6f\x5e\xc7\x4f\x6f\x38\xcb\xcc\x86\x69\xbd\xe1\x49\x31\xc8\x3b\x1a\x6e\xf0\xe5\xdb\x1c\xc3\x6f\xe8\x64\xce\x9e\x3f\x75\x94\x23\xa7\x3d\xce\xe2\x7e\xad\x8a\x30\x24\x8b\x97\xce\xe7\xcf\x68\x1a\x84\x31\x8d\x42\x7e\x03\x7d\x88\x2e\xfa\xda\x49\xfc\x3c\x59\x38\xbd\xae\x03\x50\x91\x7b\xed\x5c\x85\x7c\xe6\x00\x37\xe1\x8c\x65\x2d\x6c\x59\x46\x9c\xe7\xa4\xd6\x4a\xae\x59\x7e\xe5\x8c\x6e\x2a\x28\xa3\x5b\xd1\x46\xab\xc6\x58\xb3\x70\x3a\x73\x24\x70\x9d\xa5\xc0\x30\x44\x96\x71\xc8\x3d\x04\x80\xd6\x1d\xc5\x5b\x87\x97\x1d\xcb\x99\x2f\x68\x98\x16\x4d\xd3\x4d\x3e\x9a\xd2\x27\x53\xec\xbd\x18\x94\xc4\x25\xd3\x4a\x8f\x11\xec\x27\xf2\xa8\xdc\x62\xd1\xd9\x9d\x6a\x39\xb7\x0f\xd1\x86\xcc\x31\x65\xac\xf7\x17\xce\x18\xf5\x25\x82\x64\xc5\x0a\xb6\xc4\xc5\xc6\x3b\x58\x05\xd3\xf5\x80\x8f\xf5\x99\x83\x1d\xfb\x02\x6e\xfa\x5b\xd2\x70\xd3\xc2\x59\x1a\x9c\x20\x7e\xad\x69\xd3\xc5\x19\x93\x47\xac\xa2\x4d\xff\x96\xfb\x57\xee\xaf\x1c\x93\x7f\x7e\x76\xd6\x33\x9e\x05\xa3\xcf\x0f\x0f\xfa\xb6\xa1\x08\xb7\xe5\x26\x28\x22\x86\x1a\xfa\xee\x92\x94\x34\x75\xde\x3f\x4b\x27\xad\xef\x30\xf9\x49\xfe\xfa\x1e\x93\x7f\x73\x7f\x05\x54\xd6\xeb\xaf\x20\xd0\x4a\x15\x60\x26\xcb\x34\xf4\xd0\x41\xcc\xae\x0e\x54\x01\xde\x41\x4e\x18\xdd\xc5\xe4\xc0\xe1\x3e\x2d\x0a\xfe\x7c\x8d\x00\xf9\x9f\xb9\x55\xbc\x0d\x68\x7a\x01\x51\x2e\xfa\x82\x4d\x2f\x20\xc5\x07\x8d\x03\x0f\xcd\x03\x24\x0b\x7f\x78\x88\x27\x0b\xeb\xb5\xfb\x13\x74\xbb\xad\x20\x89\x35\xb3\x48\x3d\x91\x57\x4c\x2f\x47\x34\x6d\x8f\x52\x1a\x07\x90\xd0\xab\x8a\x3a\x25\x5c\x71\x4e\x90\xe2\x40\xda\x0e\x22\xb4\xdf\x1d\x54\x8d\xae\x84\xea\x82\xa8\x3d\x52\x94\xbf\xdc\x5e\x5c\x44\x4e\x40\x3a\x1b\x80\xa3\xd5\x1f\xcb\x8c\x87\x13\x1d\x19\xe7\xa1\x6c\x41\xc7\xac\xad\x38\x24\xbb\x9b\xd5\xeb\x66\x76\xb2\x2e\x2a\x7b\xce\xc9\xbf\x21\x58\x7c\x77\xcf\x83\x13\x5d\x46\x80\x75\x96\x69\x68\x1b\xf2\x89\xac\xfc\x3c\xf5\x04\x40\xab\x60\x2b\x9d\xb1\x44\x63\x5c\x66\xc1\xb2\x6b\x40\xb6\x55\x32\x97\x3e\x31\x33\xce\x17\x99\x77\x70\x20\x91\xb6\x13\x26\x07\x53\xc6\x79\x18\x4f\xdb\x60\xbf\x62\x41\x67\x1e\x1c\xc8\xcb\x36\x5a\x7c\x5a\xc9\x74\x39\x50\x65\xfb\xd5\xd6\xeb\x47\x6b\x38\xaa\x9c\xa0\x67\x02\xf8\xe1\xd8\x79\xff\x1a\x29\x8b\x30\xa7\xd2\xbf\xf2\x81\x3d\x89\xe7\xe6\xb3\xf8\x79\x66\x24\x46\x05\x1b\x58\x5a\xa5\x48\xad\x77\x8f\x5a\x8f\xc6\x18\xaa\xfd\x44\xcb\x30\x30\xb0\x51\x25\x33\x39\x4f\x16\xde\xf7\x5d\x2b\xf2\x2d\x3b\x63\xb2\x1a\xd1\x8c\x89\x21\x9b\xc7\x07\x59\xf3\x5b\x2f\x3b\x23\xb2\x9a\xa4\xc9\xdc\x43\x07\x5b\x8e\x9d\x55\xda\xe3\x72\x85\x9e\xde\xa2\xaa\x15\xce\xd6\x84\x95\x4d\x64\x7a\xad\x1d\xda\x84\x65\x1b\x95\x2b\x73\x7b\x9b\x71\xd9\x46\x26\x49\xdc\xde\x64\x56\x36\x91\x69\x73\xb6\x37\xb9\x29\x9b\x64\x32\xd0\xb4\x1d\x14\x61\xcd\xdb\x9b\x5f\x19\xcd\x25\x3f\xbb\xbd\xcd\x3f\xcb\x36\xe2\x0a\x6d\xef\xdc\xf0\x4f\xa3\xa1\xb2\x6a\xd6\x1a\x01\x37\x40\xa8\x3a\x31\x0f\x31\xf9\xf1\xe4\xed\xd3\x27\x27\xc3\x77\x4f\xce\x5f\x0d\xdf\x9d\xbe\x78\xf9\xfa\x9f\xf8\x08\x19\x7f\x0d\xdf\x9d\x3c\x79\xf6\xe2\xd5\xdb\x93\xe7\x2f\x4e\xd1\x9e\xef\x37\xbf\x6f\xb5\xd0\xc1\xba\x37\xe7\xcc\xb5\x0c\x70\x7b\xeb\x52\xea\x23\x24\x2d\x14\x31\xf5\xcf\x5f\x3d\x79\xf3\xf6\x6c\xf8\xec\xed\x2f\xef\xde\xbe\x79\xf1\xe6\xfc\x08\xca\xb4\xd6\x9f\xb6\x5a\x6e\x4c\x7d\xa9\x9c\x42\x98\x64\x1d\xc1\x55\xc4\x01\x4b\xdd\x26\x24\x78\xf5\x60\x52\xda\x38\x99\xb1\x38\x9a\x41\x32\x06\xa3\x64\x67\xca\xb8\x6a\xfa\xf4\xe6\x75\xe0\xa2\x34\x49\x38\x68\x7d\x0f\xff\x51\x09\x09\x25\x14\xaf\x20\xf9\x64\x92\xf2\xcc\x5f\x15\xde\x7f\x9e\xe1\x9c\x00\x2a\xe3\x61\xf1\x6a\x38\x3c\x9c\xd3\xf1\x1c\xe9\x68\xaa\xfa\x87\xf0\x78\x38\xec\x2d\x16\x3f\xfe\x81\x88\x74\x5b\x6c\x7e\x25\x9f\x0f\x87\xbd\x27\xcb\xf0\x8d\xb3\xb9\x0f\x29\x46\x37\xfb\x90\xcf\x87\xc3\x7f\x27\xaf\x2e\xbe\xdb\xd2\x07\x38\xed\x59\x26\x2b\x1e\x0f\x87\xbd\xb3\x20\xed\x21\x32\x66\x91\x65\xaa\xe2\xe9\x70\x78\xff\xe4\xb7\xd1\x10\x91\xc2\x2f\xab\xf1\x99\x7e\x33\x1c\xf6\xde\x3c\x98\x5e\x37\xe6\x53\xe9\x46\x67\xab\xab\x7f\x24\x9f\x0f\x87\xbd\xdf\x7e\xbb\x1e\x6d\xee\x02\xec\x6a\xcd\x1e\xe0\xf1\x70\x78\xf8\xf4\xcf\xe7\x5b\xe6\x50\x71\xa5\xb2\x4d\xa5\x78\x3b\x1c\xf6\x1e\x1d\xfe\xf6\xf3\xe6\xee\xa4\x13\x94\x05\x2e\xf0\x7c\x38\x3c\xfc\xe9\xe9\xe5\xbf\x36\x76\x91\xe7\xe4\xe1\xf7\x9b\xd0\x73\xc4\x63\x0f\x49\x77\x8a\xe1\x88\xc7\xc3\x61\xef\x66\x16\x4c\x45\xbb\x47\x0f\x36\xb5\x2b\xbd\xd1\xb4\xbf\x88\xf4\x4a\x1b\x96\x2f\x86\xc3\x43\x76\x16\x3d\x40\x79\x9e\x93\x7e\xbf\xd7\xed\x92\x1e\x39\x1c\x0c\x06\xf8\xe8\xff\x3b\x38\xf8\xc6\xc9\x92\x65\x3a\x66\xbf\xd0\xc5\x22\x8c\xa7\xef\x4f\x4f\xfc\x39\x0d\xe3\xce\x88\x7e\x7f\xf8\x70\xf4\x68\xd2\x81\x28\xf2\xce\x1f\xe0\x3a\xf9\xff\x02\x00\x00\xff\xff\xa7\x0d\x01\x4b\x3f\x99\x01\x00") +var _pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\xcf\x52\xdb\x4c\x12\xbf\xfb\x29\x7a\x39\x01\x25\x64\x1b\xf8\xb2\x09\x27\x84\x2d\xe3\x21\xb2\xe4\x95\x44\x58\x72\x1b\x4b\x6d\x6b\x88\x3c\xa3\x9d\x19\x99\x22\x4f\xbf\xd5\x23\x61\x30\xa9\xd4\xd6\x5e\xbf\x9c\x5c\xee\xe9\xee\xdf\x9f\xd6\xb4\x34\x3c\x1d\xa8\xd5\x13\x16\xf6\x8c\x1b\x23\x36\x72\x70\x5c\x9c\x40\x26\x64\xa9\x11\x32\xa5\xab\xd6\x0c\xae\x6b\x51\xa0\x34\x08\x0b\x96\x0f\x4e\x87\x83\xc1\xf0\xf4\x1f\x03\x00\x38\x85\x4c\xfc\xfc\x59\x23\x4c\xb2\x0c\x32\xac\xb1\xb0\x4a\x43\x28\x37\x42\x22\xec\xce\xfd\x0b\xff\xb2\x4b\xab\xac\x6d\xcc\xd5\x70\x68\x5c\xfa\x93\xf1\x0b\xb5\x1d\xba\xa3\xee\x7c\xa2\x9a\x17\x2d\x36\x95\x85\xbb\x0c\x66\xaa\x95\x25\xb7\x42\x49\xe0\xb2\x04\x65\x2b\xd4\x50\x28\x69\xb5\x58\xb5\x56\x69\xd3\xd5\xa4\x58\x23\x37\x58\x42\x2b\x4b\xd4\x60\x2b\x47\x0f\x7a\xaa\x87\xb8\x4f\xc6\x5f\xef\xbb\xbe\x07\x9e\x72\x8b\x57\x70\x3e\x1a\x7f\x39\x1b\x5d\x9e\x8d\x3e\xbb\xe8\x5e\xe0\x1b\x2d\xf2\xe4\x7c\x34\xfe\x27\xdc\x61\x09\x0f\xdc\x1a\x25\xfd\x01\x40\xd4\x81\x7d\xe4\xd0\x87\xe1\x78\xc1\xf2\x13\x0f\x0c\x12\x1d\xe2\x42\x54\xb0\x7c\xee\xea\x37\xc2\x56\xed\xca\x17\x6a\x58\xd4\xdc\x18\xc9\xb7\x68\xde\xdc\x3d\x85\xa7\x7f\xb5\xa8\x5f\xe0\x8e\xef\x78\x56\x68\xd1\x58\x88\xc4\x4a\x73\xfd\x02\xbb\x0b\xff\xd2\x1f\x0f\xde\x0b\xfc\x0f\xe5\xf6\xb6\x9e\xd2\x09\x93\x45\xdd\x96\x68\xfa\x11\xf9\x4f\x66\xf0\xfb\x41\xb8\x8a\xff\x77\x08\xff\x7b\x04\xbf\xf0\x53\x7a\x33\x7c\x3b\x1d\x7c\x18\xc0\x5f\x67\xa3\x71\x7e\x3e\xbe\x1a\x5d\x7e\x1f\xf4\x53\x38\x85\xfd\xb3\x97\x22\x2f\x2c\xec\x46\xfe\xf8\x4b\xa7\xdd\x14\x15\x96\x6d\x8d\xda\x6f\xb4\x2a\xdb\x82\xc8\xfa\x5b\x21\x3b\xa9\x87\x8a\x68\x7e\x33\x5e\xe0\x4a\xa9\x1f\x1e\x79\xe3\x3b\x59\xc2\x1a\xe0\xeb\xb5\xa8\x05\xb7\x68\xfc\xbe\x2c\xaf\x84\x01\xa3\x5a\x5d\x20\x14\xaa\x44\x10\xe6\x55\xd3\x6f\xa4\x82\x7b\xba\x40\x48\x3a\xa0\x16\x11\x9b\x84\x71\x16\xc2\x5a\xd4\xd8\x87\x41\x2b\x65\xa1\x14\xda\xdd\x92\x17\x50\x6b\xb0\xef\x80\xac\x46\xf4\x7f\x2f\x7b\xfc\xc9\x1f\x5f\x74\xba\x35\x45\xce\x4a\xb5\xfd\x23\x75\x0b\xf3\x27\xca\xfe\x1b\x6a\x76\x3b\xee\x9a\xaa\x93\x1d\xea\x9d\xc0\x67\xf8\x2a\x8a\x1f\xdc\x10\x93\x6e\xcf\x59\x05\x85\x46\x6e\xd1\x29\x69\x6a\x5e\x20\x34\xaa\x69\x50\x1b\x90\xc8\x1d\x47\xa1\x41\xe3\x1a\x35\xca\x02\x01\x6b\xdc\xa2\xb4\x4e\x26\x5c\xef\x50\x1b\x5a\x60\x63\x9f\xec\x74\xa1\x77\xab\xe9\x97\xe5\xfe\x09\x66\x58\xa2\x16\x85\x82\xef\x62\xa7\x6a\xe5\x50\x3f\xec\x3c\xaa\x5c\xa2\xde\x0a\xe3\x5a\x0b\x03\x15\x6a\x5c\xbd\xc0\x46\x73\x69\xb1\xf4\x60\xad\x11\x49\x79\x51\x71\xbd\x41\x8f\x44\x70\xf9\x02\x44\x5a\x49\x50\x2b\xcb\x85\x14\x72\x03\x1c\x0a\xd5\xbc\x50\xbf\x37\x9b\xd6\xf6\x99\xeb\x4e\x2d\x37\x46\x15\x34\xb3\x12\x4a\x55\xb4\x24\xab\x5b\xc7\xe4\x98\x81\x63\xb2\xfb\x28\xeb\x2b\x8e\x4e\x1c\x4e\x89\xbc\xa6\x86\xfd\x34\x5e\x4f\xe1\x59\xd8\x4a\xb5\x16\x34\x1a\xab\x85\x7b\x8a\x3c\x10\xee\x05\x41\x4c\x5e\x8f\x6b\xb1\x15\x3d\x88\x1b\x26\x99\xe3\xf6\xbc\x55\xd0\x1a\xf4\x1c\x61\x0f\xb6\xaa\x14\x6b\xfa\x45\xa7\xaf\x69\x57\xb5\x30\x95\x07\xa5\x30\x9d\x53\xe8\x81\xa1\xa0\xb3\xda\x23\x35\x43\xa5\xc1\x60\xed\xc8\x15\xaa\x11\x68\x3a\xd1\x6f\x1c\x5d\x1a\x01\x35\x64\xae\xed\xed\x32\x14\x79\xae\xd4\xf6\x50\x8f\x70\xac\xd6\xad\x96\xc2\x54\xe8\xca\x4a\x05\x46\x39\x5c\xfa\x94\xa1\x08\x55\xac\x55\x5d\xab\x67\xd2\x58\x28\x59\x0a\x92\x66\xae\xf6\x57\x00\x81\xaf\xd4\x0e\x9d\xac\xee\x49\x90\xca\x8a\xa2\xf3\xdf\x4d\xa4\x79\x9b\x74\x7f\x64\x2a\x5e\xd7\xb0\xc2\xde\x3e\x74\x37\x82\x1f\x2a\xd3\x44\xc3\x58\x2e\xad\xe0\x35\x34\x4a\x3b\xdc\x8f\x8a\xf7\x57\x71\x1e\x42\x96\xcc\xf2\x87\x20\x0d\x81\x65\xb0\x4c\x93\x6f\x6c\x1a\x4e\xe1\x28\xc8\x80\x65\x47\x1e\x3c\xb0\x7c\x9e\xdc\xe7\xf0\x10\xa4\x69\x10\xe7\x8f\x90\xcc\x20\x88\x1f\xe1\x2b\x8b\xa7\x1e\x84\xff\x5e\xa6\x61\x96\x41\x92\xba\xd7\xfe\x62\x19\xb1\x70\xea\x01\x8b\x27\xd1\xfd\x94\xc5\xb7\x70\x73\x9f\x43\x9c\xe4\x10\xb1\x05\xcb\xc3\x29\xe4\x89\xc3\xec\xbb\xb1\x30\xa3\x7e\x8b\x30\x9d\xcc\x83\x38\x0f\x6e\x58\xc4\xf2\x47\x8f\x7a\xcd\x58\x1e\x53\xe7\x59\x92\x42\x00\xcb\x20\xcd\xd9\xe4\x3e\x0a\x52\x58\xde\xa7\xcb\x24\x0b\x21\x88\xa7\x10\x27\x31\x8b\x67\x29\x8b\x6f\xc3\x45\x18\xe7\x3e\xb0\x18\xe2\x04\xc2\x6f\x61\x9c\x43\x36\x0f\xa2\x88\xd0\xa8\x5d\x70\x9f\xcf\x93\x94\x88\xc2\x24\x59\x3e\xa6\xec\x76\x9e\xc3\x3c\x89\xa6\x61\x9a\xc1\x4d\x08\x11\x0b\x6e\xa2\xb0\x43\x8b\x1f\x61\x12\x05\x6c\xe1\xc1\x34\x58\x04\xb7\xa1\xab\x4a\xf2\x79\x98\x76\xab\xe7\x95\x26\x3c\xcc\x43\x8a\x12\x6a\x10\x43\x30\xc9\x59\x12\x93\x9e\x49\x12\xe7\x69\x30\xc9\x3d\xc8\x93\x34\xdf\x57\x3f\xb0\x2c\xf4\x20\x48\x59\x46\xce\xcc\xd2\x64\xe1\x94\x92\xbb\xc9\x8c\xb2\x58\x4c\xa5\x71\xd8\x35\x22\xe7\x0f\x07\x94\xa4\xee\xff\x7d\x16\xee\x7b\xc2\x34\x0c\x22\x16\xdf\x66\x54\xdc\x6b\x7d\xcd\xdf\xaf\xbb\xeb\x46\xa3\x41\xbd\x73\xab\x27\xc7\x6d\xd3\x1a\x98\xaa\xad\x90\xad\x81\x1b\xa5\xac\xb1\x9a\x37\x97\xb0\xfb\xcb\x1f\xfb\xe7\x70\xfc\xfa\xdd\x64\x5d\x66\xd9\x25\xbe\xfb\x62\x5c\xbd\x96\x9c\x5d\x0e\x4f\x0e\xb7\x19\x6d\xb2\xb3\xf3\xd1\xf8\x33\xdc\x29\xc9\x6d\xc5\x25\x2c\xd1\xba\xeb\xe4\xbc\x3b\xdc\xf2\xb4\xe1\xf7\x68\x7d\x7f\xfa\x26\x3c\x00\x7e\x07\x77\x31\x5c\xd5\x6a\x35\xdc\x72\x63\x51\x0f\xfb\x77\xc0\x89\x53\xf9\xdf\x00\x00\x00\xff\xff\x2e\x8b\x56\x53\x49\x0c\x00\x00") -func pkgUiStaticReactStaticJsMainBa725b9fChunkJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxtBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJsMainBa725b9fChunkJs, - "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js", + _pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxt, + "pkg/ui/static/react/static/js/2.b309ab18.chunk.js.LICENSE.txt", ) } -func pkgUiStaticReactStaticJsMainBa725b9fChunkJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJsMainBa725b9fChunkJsBytes() +func pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxt() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxtBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js", size: 104767, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/2.b309ab18.chunk.js.LICENSE.txt", size: 3145, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } -var _pkgUiStaticReactStaticJsRuntimeMain56ad181aJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdf\x8b\xe3\x36\x10\x7e\xef\x5f\x91\xb8\x20\x34\x64\x56\xeb\x1c\x6d\x39\xe2\x1d\xfa\x5e\x7a\x5c\xe9\xb5\x4f\xc6\x1c\x8a\x23\x27\xbe\x2a\x92\x18\xcb\x77\x5d\xbc\xfe\xdf\x8b\x9c\xd8\xb9\xdb\xde\xc2\x42\x20\x63\x69\x7e\x7c\xf3\x7d\xa3\x59\x37\xbd\xab\x63\xeb\x9d\x34\x30\xcc\xf6\x8a\x25\xc3\xd0\x78\x96\x9f\x35\xaf\x1c\x5a\xd4\xc4\x65\x5e\x61\x20\x2e\xb7\x15\x36\xc4\xe5\x9b\x0a\x6b\xca\xb1\xa3\xb2\x2a\xea\x07\xad\xac\x71\xc7\x78\x2a\xea\xcd\x06\x2c\xe9\xb2\xae\xf0\xfd\xfe\x93\xa9\xa3\x0a\xec\xa3\x8f\x8f\xc1\xa8\x93\xee\xde\x7f\x71\x7f\xb0\x0f\x86\xe3\xa3\xaa\xb5\xb5\xd2\xa3\x05\x21\x7c\x69\x2b\x21\x3a\x15\xfa\xee\x24\xd3\x47\x99\x57\x80\xc9\xa0\xbc\x48\x38\xdc\xaa\x75\xab\x00\xaf\x4a\x19\xd0\x81\x10\xd2\x94\xae\xa2\x50\xba\x0a\xa6\x0c\xad\x10\xad\x64\x28\xba\x19\x29\x74\xaa\x3b\xb5\x4d\x94\x20\xa1\x60\x13\x7b\x76\xab\x7e\x42\xa0\x74\x08\xf6\x51\xf6\xd8\x3c\x3d\x95\x15\x60\x94\x30\x2e\xd4\x44\x79\x63\xc6\x20\x53\x5e\xf0\x43\x3f\xe7\xe4\xcd\xe6\x76\x1b\xa9\x2f\xb9\x42\x47\xeb\x1c\x35\x6d\x0b\xfd\x10\x67\x3f\x9d\xfc\x92\x4f\xa0\x58\xea\xaa\xc8\xd7\x44\xbe\x0c\x95\x10\xd2\xd1\x7a\x0b\xa3\x13\x42\xf6\xaa\x0b\xb6\xad\x8d\xe4\xbb\x3b\xdc\x02\x1a\xb2\xd2\xaa\x8e\x62\x22\x07\xc6\x2b\x64\x33\x4e\x1a\xd1\x30\xa2\xa7\x61\xbb\xcb\x47\xec\x93\x26\x0b\x60\x9b\xb4\x6c\x1b\xe9\x4a\xae\xe0\x1a\x94\x6c\x65\xfe\x0d\x9e\x63\x57\x5c\xb0\xa6\x23\x1a\xda\x1d\xa3\xdd\xad\xb7\x78\xbd\xdc\x0d\xe3\x38\x93\x63\x52\xd0\xc4\x70\x9c\x63\x31\xe2\xcd\xb6\x80\x51\xd9\xd4\xed\x72\x36\x5a\x75\x26\x83\x56\xd5\xe4\xd0\xaa\x03\xdd\xa6\x0d\x19\x23\x0c\x56\xf9\x64\xc2\xd3\xd3\x55\xda\x83\x69\x5a\x67\x66\x41\x27\xb7\xc1\xb8\xfe\x6c\x58\xef\xad\xd9\xad\x73\x3c\x9a\xb8\x8b\x23\x8c\x68\x15\xd3\xd7\xd3\x9b\xf5\xee\x12\x7d\xc8\xd6\x44\x69\x3c\x7c\xb3\xfa\xf0\x78\xde\x7b\x2b\xc4\xe5\x5f\x45\xff\x21\x72\xeb\x8e\x7f\xe9\xa3\x10\x2f\x95\xfc\xbf\x2f\x0e\x9f\xb5\xed\xcd\x2e\x7b\xe7\x0f\xbd\x35\xd9\x08\xf8\x52\x70\xf6\xf1\xa3\xe9\xae\x6e\x73\xd8\x3a\xbf\xe0\x8d\xdf\xf4\x3f\xa9\xb2\x15\x9c\x66\x95\xac\x34\x00\xf8\x56\xf0\x2c\x91\x29\xda\x46\xfe\x94\x6e\x33\x3f\x95\xca\x68\x69\xca\x08\x91\x7e\xea\x56\xea\x16\x75\x51\xf3\x8a\xae\x66\xa3\xa3\x91\xae\xb7\x16\x52\x3e\xab\x58\xc6\x97\xb0\x47\xcc\x0e\xa6\xd1\xbd\x8d\xd9\x73\xce\x2f\x6d\x98\x11\xf0\xcd\x84\xa8\x9b\x88\xc9\xd6\x0b\x20\x58\x96\x45\x7a\xa8\x06\xac\x3a\xc8\x88\x0e\x97\x7e\x19\x86\xaf\xc6\x68\x54\xfb\xd6\x1d\x26\x5c\xe8\x60\x79\x7e\x31\x91\xe4\xbe\x11\x35\xe5\x64\x7a\xd6\xed\xaf\x8b\xc7\x2d\xab\xba\x62\x1f\x77\xdf\xb9\x5c\x66\x38\xe1\x62\xcc\x74\x86\x0c\xc8\xa9\x9c\x7f\xa6\xc9\xd5\xf1\x55\x9b\x26\x05\xa4\x1c\x81\x32\x75\x9f\x4d\xd4\x6b\x8a\xa7\xb6\x53\x5f\xcc\x3e\xe8\xfa\x9f\xdf\x3a\xef\xc2\x91\x75\x38\xbd\x70\x9c\x16\x0c\x06\xd2\x97\xbd\x33\x91\xa2\xa1\xb8\x7c\x12\xa3\x26\xad\xba\x69\x07\x5c\x96\x58\xaa\xd0\xa4\x95\x78\x5b\xb8\xcd\x66\x03\x2c\x75\xd9\x54\x30\x01\x68\x29\x14\x69\x61\xc9\xb2\x82\xe2\x87\xfb\xfb\x1f\x57\x9d\xef\xb9\x36\xef\x74\x08\xad\x3b\xfe\xfd\xe7\xef\xc4\xbd\x8b\xed\xd9\xdc\x9d\x75\xeb\xd4\xcf\xbf\xe8\xc3\xf6\xed\x56\xab\x4f\x9d\x3a\xeb\xf0\x5f\x00\x00\x00\xff\xff\xb5\x02\xf4\x09\x10\x06\x00\x00") +var _pkgUiStaticReactStaticJsMainBd8c49dcChunkJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\x09\x7b\xdb\x36\xb6\x38\x0e\x7f\x15\x1a\x9d\x51\x88\x0a\xa2\x25\x2f\x69\x42\x05\xd1\x9b\xc5\x6d\x32\x93\x6d\x62\xa7\xbd\x1d\x55\x3f\x3f\x10\x09\x49\xac\x29\x50\x25\x21\x2f\x91\xf9\xdd\xdf\x07\x07\x00\x37\x51\xb6\xd3\xf6\xde\xe7\x7f\xe7\x36\xa6\xb0\xe3\x00\x38\x3b\x0e\x5c\xb9\x88\x32\xef\x8a\x4f\x57\x2c\xb8\xf8\x57\x96\x88\xd5\x3c\x65\xab\x05\x6d\x4f\xbe\xbd\x1d\x4f\xb0\xb7\x5a\x67\x0b\x77\x3c\xee\x4f\xc8\x66\x30\x38\xf2\x67\x6b\x11\xc8\x28\x11\x2e\x27\x92\x30\xbc\xc9\xc9\x60\xf0\x78\x2b\x15\xad\x33\xee\x64\x32\x8d\x02\x89\x86\xcc\x4b\x5d\x89\x87\x97\x2c\x75\x04\x65\xee\xe0\x07\x4c\x52\xca\x3c\xe1\x0a\x3c\xbc\x8a\x44\x98\x5c\x79\xbf\xff\x67\xcd\xd3\x1b\x9a\x7a\x8c\x98\x94\x65\xb2\xe4\x42\x52\xe6\x1e\xf4\x75\xd5\x84\x32\xb7\x8f\x49\x0c\x35\x13\x4c\x22\x95\x77\x88\x49\x06\x09\x11\x26\x81\x6a\xfb\xf0\x29\x26\x6b\xf5\xf1\x04\x93\x05\x65\xee\xe1\x0f\x98\x2c\xa1\xc4\x02\x93\x15\x94\xc0\x24\xa4\xcc\x3d\x7a\x8a\xc9\x9c\x32\xf7\x31\x1e\x06\x89\xc8\xa4\x33\xa3\x6a\xf0\x98\x3e\xdf\xe8\xdf\x8c\x7e\x9c\xfe\xce\x03\xe9\x26\xde\x3a\xe3\xa7\x92\x49\x8e\xdd\x4d\x26\x99\x5c\x67\x3e\xca\x24\x4b\xa5\x33\xe3\x32\x58\x44\x62\x8e\x72\x4c\x84\x2d\x3f\xf7\x18\x76\x19\x39\x50\xb3\x14\x0a\x6e\x31\x15\xe3\xc1\x84\x44\x6d\x0d\xaa\xf1\x57\xeb\x45\xaa\x5e\x40\x33\x55\x6f\x4d\x33\x55\x6f\xd1\x56\x6f\xaf\x8f\xc9\xac\x56\x73\xa1\x6a\x5e\xd3\x99\xaa\x39\xa5\xb3\xf1\x60\x32\x4c\xb9\x5c\xa7\xc2\xa9\x56\x3f\x99\xcd\x78\x20\xb1\xeb\xaa\x89\xba\xc5\xb2\xe1\x8d\x02\x71\x31\xe5\x50\x35\xb8\xf4\x98\xb7\x64\xe9\x85\x5b\x14\x73\x98\x29\x28\x48\x6a\x1b\x57\xa5\xae\x52\xb6\x2a\x4b\xb9\x0c\x6f\x66\x49\xea\x0e\x87\x38\xbb\x8a\x64\xb0\x70\x99\xb7\x4a\xf9\xa5\x5a\x05\x7e\x2d\xf1\x26\x60\x19\x77\xfa\xbe\x69\x60\x0a\x73\x31\x45\x06\x44\x17\xa2\x47\x04\x60\xeb\x72\x62\x86\xb4\x52\x43\xda\x04\x2c\x58\x70\x1f\x89\xa4\x97\xc9\x24\xe5\x88\x04\x29\x0f\xb9\x90\x11\x8b\xd5\xa2\xb0\x25\xef\x25\x69\x34\x8f\x04\xca\x89\xc4\x78\x08\x5d\x1d\xf9\xd1\xcc\x75\x05\x65\x5e\xc6\x85\xc4\x5e\x72\x81\x37\xa6\x9b\x1f\x86\xd3\x94\xb3\x8b\x5c\x2e\xd2\xe4\xca\x11\xfc\xca\x39\x49\xd3\x24\x75\x85\xa7\x17\xfa\x4c\x0d\x58\xb7\xf2\x83\x1d\xb0\xa9\xfa\x94\x08\xef\xf7\x4c\xc1\x4e\xe7\x3f\xf5\x53\xd3\x03\x89\xdd\x14\x93\xa9\xbb\x37\xc0\x76\x3a\x03\xd3\x91\x2e\x3a\x38\xf2\xed\x7c\x8f\x08\xf3\x64\x9f\x32\x2f\x60\x6a\xba\x03\x4c\xd6\xae\x4a\x31\x8d\x0e\x7e\xf0\xd5\x5f\xc4\x45\x88\xca\xfe\x33\x99\xac\x5c\x9c\xe7\x98\x30\x22\xd6\x71\x4c\xc6\xe3\x01\x19\x1c\x4d\x26\x38\xc7\x18\xdb\x95\xa9\x2c\x6e\x51\x93\xad\x56\xf1\x0d\x60\x01\xc2\xd2\xf9\x5a\x1d\xb1\x4c\x35\xe4\x62\x17\xe7\x64\xcc\x89\x9c\x60\xb2\x49\x79\xb6\x4a\x44\xc6\xfd\x94\x70\x05\x0e\x3f\x20\x51\xf6\x2e\x61\x61\x24\xe6\xfe\x75\x9e\xc3\x79\xbc\x56\xe7\xef\x07\x4c\xa6\xea\x50\xa9\xe3\x76\xa3\x3e\x8e\x30\x39\xa1\xcc\x7d\x6a\x4f\xd5\x25\xe5\xf4\xb9\xa4\xcf\x37\x31\x57\x47\x4a\x7a\xd0\x20\x11\x54\x7a\x45\x93\x24\xa5\xd2\x0b\xd6\x99\x4c\x96\x00\xfd\xf7\xd9\x9c\x24\x2a\x29\x59\xae\x12\xc1\x85\x3c\x8b\x64\xcc\xcb\xf3\x73\xad\xb6\x82\x24\x63\x04\x6d\x21\x82\x8a\x96\x10\x41\xf5\x76\x54\x42\xad\x15\x34\x29\xe0\xc3\x46\xb1\xc7\xbc\x20\xe5\x4c\xf2\x93\x98\x2b\x58\xb8\x53\x8f\x91\x4d\x90\xc4\x49\xea\xa3\x90\x89\x39\x4f\x51\x4e\xd2\xdb\xdb\xed\x92\x2a\xe5\xc7\x94\xcd\xd5\x0f\xbd\x08\xdb\x65\x50\x26\xd3\x44\x8d\x0a\xf2\x11\x0c\xca\x47\x98\x20\xbd\xcb\x0a\xf4\xe1\x20\x92\xdc\xde\x72\x2f\x8c\xb2\x55\xcc\x6e\x3e\xb0\x25\x27\xc8\x77\x10\x61\xde\x92\x67\x19\x9b\x73\x8c\x7d\xd1\x32\xdc\x1b\x35\xdc\x2c\xfa\xca\x7d\x74\x78\x8d\x48\x14\x24\xc2\x3f\xf1\x62\x92\xad\x22\xe1\xef\xf5\x49\x10\xb3\x2c\x53\xcd\xf9\x68\x95\x64\x91\xda\x0d\x3d\x36\xcd\x92\x78\x2d\x39\x22\x99\xbc\x89\xb9\xbf\x91\x29\x13\xd9\x2c\x49\x97\x3e\x82\xcf\x98\x49\xee\xf6\x8e\xfb\xff\x24\x8e\xfa\x17\x23\x22\x93\x95\x8f\x8e\xfb\xff\x44\x24\xe6\x33\xa9\x3f\xf3\x1c\xfb\xdb\x03\xe2\x24\xc2\x7a\x7b\x5c\x00\xae\x3d\xc2\xe4\x0a\x3e\x0e\x31\x39\x55\x1f\x07\xc7\x98\x9c\xa9\x8f\xc7\x98\xbc\x02\xbc\x7c\x86\xc9\x7b\xc8\x79\x8c\xc9\x47\xf8\xf8\x01\x93\x4f\xf0\xf1\x04\x93\x0f\xf0\xf1\x14\x93\x73\x68\xa6\x8f\xc9\x57\xf8\x18\x60\xf2\x23\x7c\x1c\x60\xf2\x19\xca\x1c\x60\xf2\x3b\x6c\xc5\xa7\x98\xbc\x86\x94\x3e\x26\x6f\x29\x73\x8f\x0f\x30\x79\x07\x09\x03\x4c\x7e\x51\x28\xbf\x8f\xc9\x0b\x95\xd1\xc7\xe4\x0d\x8c\xe1\x05\x26\x7f\xa8\x84\x01\x26\x2f\x21\xe1\x0f\x3c\x04\xd8\x39\x5f\x1c\x7e\x2d\xb9\x08\x33\x27\xf1\x5e\xd9\x9d\xa4\x29\x44\xba\x0e\x64\x92\xba\x1c\x6f\xb2\xf5\x8a\xab\x0f\x02\x74\x94\x5f\xaf\xd2\xb7\x62\xb5\x96\x9f\xf9\x8c\x96\x20\xfa\xcc\x67\xae\x29\x91\x71\xf9\x86\x47\xf3\x85\xa4\x6e\x49\x6f\x38\xdd\xaa\xed\x05\xeb\x34\x55\xfb\x4b\x52\xee\x25\xb3\x59\x51\x8f\x30\xca\xbd\x20\x8e\xb8\xb0\x09\x82\x72\x2f\x0b\xd2\x24\x8e\x4d\x42\x4a\x65\x8f\x0d\x6d\x77\x40\x35\xdc\xcd\x02\xf2\x7c\xd1\x4d\x73\x9c\xeb\xb1\x2c\x98\x08\x63\x0e\x3d\xea\xd1\xd8\x2a\x3f\xb3\x78\xcd\xdd\x9d\x63\xf2\x2e\x55\xbe\x6d\xc5\x96\x57\xa7\x7d\xe3\xf6\x75\xe2\x2a\x4d\x56\x99\x97\x88\x93\xeb\x55\xca\xb3\x2c\x4a\xc4\xab\x85\x3a\x53\xb8\x00\xd5\xd6\xc8\x10\x5b\xcb\x04\xe5\x0d\x30\xd5\xc7\xfa\x6f\x7e\xf3\x49\xb5\x07\x7d\x69\xd8\x49\x5a\xe9\x90\x5f\xf3\x60\x2d\x39\x70\x14\x43\x74\x22\x24\x4f\xd1\x1e\xa5\xdc\xbb\xe0\x37\xea\x94\x65\x8b\x68\x26\xff\xad\xbe\x5d\xe9\x62\xc2\x01\x13\x73\x21\x5f\xf3\x19\x5b\xc7\xd2\xc5\xb6\xbb\x39\x97\xa7\x9c\xa5\xc1\xe2\xbd\xc2\xcd\x3c\xb3\x0c\xc2\x1b\x8f\x79\xb3\x28\x96\x6a\xcd\xbd\x94\xaf\x62\x16\x70\x77\xdf\xd9\x9f\x13\x84\x30\x91\x64\xb3\x4a\xb9\x8f\x9e\xe9\xc3\xff\x1c\x91\x55\x92\x49\x1f\x3d\xdb\xb7\x09\xb9\x99\xbd\xde\x17\x2f\xd6\x32\x51\x38\x2a\xe6\x92\x9f\x72\xc0\xd8\xb5\x99\x71\x2f\x52\xa0\x07\xf0\x12\x46\x2f\x93\x28\x74\xfa\x94\x52\x39\x42\xc8\xd7\x0b\x1f\xc4\x49\xc6\xdf\x73\xb1\x26\x29\xe5\xde\x22\x9a\x2f\x62\x05\x36\x1e\xbe\x15\x21\xbf\x56\xb8\xb4\x84\x0e\xdb\xee\x2e\x1b\x2a\xe4\x1c\xd1\xbe\xc1\xd9\x8a\xa3\x8a\xb9\x98\xcb\xc5\x48\x63\x5c\x8f\x0b\x99\x46\x3c\x73\x13\xec\xa5\x3c\x5c\x07\xdc\x55\xf8\x57\x90\x64\x52\xee\xdf\x8c\xb6\x02\xcd\x65\x24\x29\x50\x6e\x66\xdb\x1d\x7b\x9e\x27\xdb\x30\xe6\x3a\x46\x64\x53\x41\x5b\x6a\xb8\xd9\x7a\x3e\xe7\x99\xec\x85\x69\xb2\x0a\x93\x2b\xd1\x8b\xa3\x4c\x22\x72\xc1\x6f\x7c\x91\xb7\x35\x12\x47\x0f\x68\x64\xc1\x59\x08\xe8\x5d\x60\x92\x79\x59\x1c\x05\xdc\xed\x93\x41\xbf\x8f\xbd\xa5\x62\x67\x36\x9a\x91\x60\xb1\x2f\x89\xe2\x64\xc5\xdc\x67\x79\x39\xdd\x84\x72\x35\xd7\xb7\x92\x2f\x3f\x29\xc0\xba\x1b\x35\x1e\x49\x22\x05\x72\x3f\x22\x91\xe4\x4b\xa8\x09\x38\x76\xca\x82\x8b\x79\x9a\xac\x45\xf8\x0a\x88\x4b\x4a\x29\x8d\xba\xdd\x11\x82\x85\x9a\xa7\xec\x06\xf9\xe8\x6a\x11\x49\xae\x10\xab\x05\xd7\x8e\xa9\x99\x45\x61\x59\x16\xcd\x85\xee\x57\xe4\x24\x21\x1b\x4d\xb1\x92\x75\x16\xdf\x9c\x72\xf9\x56\x08\x9e\xbe\x39\x7b\xff\xce\xdf\x9c\x9f\x2f\xe4\x32\xf6\x5f\xba\x8a\x31\xdd\xb0\x38\x4e\xae\x78\x78\xc6\xe6\x99\x3f\xb6\x34\x6a\x92\x2b\x3e\x40\x31\x10\x13\x5f\xe6\x64\x3c\xc1\xfe\x78\xb2\xb5\x6e\x2d\x23\x0a\xa3\xcb\xad\x21\xe5\x04\x80\xa3\xb6\xa4\x06\x0e\xbe\x77\x3d\xd4\xa9\xc8\xb0\xef\x66\x5c\x9e\x45\x4b\x9e\xac\xa5\x2b\x30\x10\xce\x02\xc7\x28\x4c\x41\x1b\x98\x22\x2f\xc8\xfb\xeb\x28\x7c\x9f\xac\x85\x74\xf1\xa6\x8e\x3d\x5c\x5c\x2b\xf4\x65\x15\x2a\x8c\xc3\x71\x1b\xee\x00\xa4\x36\x94\x80\x2e\xe0\xbb\xd3\x69\xe0\x43\x9c\xa7\x5c\x84\x3c\x75\x71\x1d\x6f\x43\x7d\x40\xd4\x55\xfc\x03\x88\x1a\x1a\x52\x2c\x4f\x31\x0b\x4f\x4f\x62\xf7\x3a\xff\xa2\x08\x7b\x22\x4e\x79\xcc\x03\xe9\xd7\x86\x90\x13\x4e\x9f\xef\x5a\x87\x1d\x8c\xc8\xef\xc0\xd6\x94\x0b\xc0\x0b\x8c\xdc\x03\xe4\x82\xda\x8e\xd1\x6b\x55\x89\x85\x61\x22\xce\x6e\x56\x8a\x83\x48\xf9\x4a\xf1\xa1\x6d\x65\xdf\x7a\x86\x13\xad\xc0\x32\xd6\x3c\xd9\x2e\xb6\xa5\xc9\xac\xb4\xf2\x13\xd5\x92\x17\x8a\xb9\x6d\xe9\xfb\x9d\xc7\x9a\xfb\x2f\x11\x40\xae\xfc\x26\x85\xb3\xc7\xd1\xd2\xc1\x9c\xa8\x5d\xf4\x63\x12\xac\x33\xc5\x2e\x49\x98\xa7\xe4\xd7\x92\xa5\x9c\x21\x92\x26\x57\x99\x8f\x06\x88\x24\xc2\x12\x1d\xbf\x85\x10\x11\xa0\x00\x8b\x24\x0e\x79\xea\xa3\x92\xda\x39\x2e\x7c\x39\xa7\x8a\xe0\x74\x81\x10\x39\xb3\x24\x55\x62\x46\x1c\x09\x9e\x61\x44\x22\x75\x46\x3f\xf3\x99\xbf\x45\x67\xcd\x11\x82\x9f\x06\xc1\xc0\x28\x5e\x27\x57\xc2\x57\x0c\xb5\x91\xad\xa4\x22\x6b\x5a\xa6\x42\x6f\x92\x25\x47\x5a\x60\x38\x51\x02\x83\xf4\x04\x93\xd1\x25\x3f\x51\xe4\xad\x20\x73\xc9\x95\x00\x12\x68\xe8\x1d\xdd\xeb\x57\x64\x13\xf4\x22\x4d\x93\xab\x2f\x2b\xd3\x0c\xfc\x52\x35\x90\xcf\xbd\x28\xfb\xb8\xe2\x42\x91\xcd\x07\xb6\x8b\xab\x0d\x6b\x42\xec\x57\xa8\x95\x5b\xcf\xcf\x02\xb6\xe2\xd5\x7e\x76\xf3\x1e\xd3\x78\x9d\x2a\x01\x28\xc7\x64\x03\xa7\x4b\xa1\xe6\xb6\xbd\xd1\xdc\xc3\x6c\xb5\x73\x0b\x7f\xde\x3a\x23\x70\x8c\x7b\x53\x29\x10\x31\x22\xc1\x2a\x8d\x96\x2c\xbd\x51\x1b\xe2\x55\x1c\x05\x17\x0a\x53\xa2\x13\x5d\x10\xa9\xdd\x69\x07\x6f\xd0\xc6\x4e\x0a\xef\x72\x8c\x71\x9e\x2b\x46\xf9\x67\xfa\x85\xfc\xaa\x64\xa9\x63\x4c\x7e\x02\x36\xf5\x10\x93\xff\xc0\xc7\x11\x26\xff\xa0\x2e\x73\x9f\xfc\x80\x09\x73\x9f\x3c\x81\x7f\x9f\xaa\x7f\x0f\x9e\x62\x3c\xfc\x87\x17\x78\x2c\x0c\xdd\x13\x6f\x4e\x4e\xbc\x05\x39\xf1\x02\x72\xe2\x4d\xc9\x89\xc7\xc8\x89\xb7\xc4\xe4\x1f\x4a\x36\x07\xb9\xd2\xb2\xb3\xff\x73\x2f\x3b\xeb\x79\x5e\xc1\xd1\xc2\xb7\x3e\xd2\x32\x5a\xf2\xbb\x99\xda\x7f\xa8\x22\xb4\x44\x02\x73\x2e\x5f\xb2\x8c\x2b\x64\x0e\x8c\x65\x05\x33\xa8\x92\xb7\xb7\xaf\x94\xd0\xa9\x91\xe3\xc7\xa2\x95\x80\xc5\x01\x9c\x97\xcf\x8a\x96\x41\xc5\x01\x3f\xfc\xbe\x52\x39\x55\x19\xfb\x07\xba\x78\x24\xd4\x38\x2a\xbd\xd4\x91\x72\x65\x0c\x2e\xee\xb6\x74\xe0\xe2\x61\x8d\x55\xd5\x0c\x2a\x94\x2f\x78\xdb\x90\x3f\xbc\x8f\xde\x9f\xec\x23\x88\x39\x4b\xcb\x0e\x76\x95\xaf\x92\x43\x05\xc4\xaf\x89\xd8\x02\xee\x3a\xe3\xef\x92\x80\xc5\xaa\xc2\xe8\x95\xc7\x3c\xf9\xd5\x9b\xaf\x79\x96\xb9\xd8\x47\x5f\xce\x5e\xa1\xdd\x24\x53\x2f\x61\xea\x62\x77\x6b\xcd\xed\xd1\xab\x2e\xb6\xa7\x08\xa9\xfa\x58\x45\xc1\x05\x4f\x5d\x40\xd4\x99\xbf\x91\x49\xc8\x6e\x7c\x34\x63\x99\x33\x63\xbd\x80\xc5\x5c\x84\x2c\xed\x05\x0b\x1e\x5c\xa0\x9c\x4c\xd7\x52\x42\xb9\x6c\x91\x5c\xbd\x52\xc8\x40\xe1\x5e\xf5\xe3\x0c\x2a\xee\xf5\x73\x92\x45\x21\x7f\x79\x73\x1a\x85\x90\xa7\x84\x53\x26\x7d\xf4\xeb\xaf\xbf\xfe\xda\x7b\xff\xbe\xf7\xfa\xb5\xf3\xe6\x8d\xbf\x5c\xfa\x59\x86\x48\xac\x26\xab\xce\xab\x40\x44\x0d\xe6\xbf\x89\xe0\x7e\x0d\x42\x2e\x26\xa1\xc6\x49\xaf\x99\x34\x79\xe5\x46\xcc\x6b\x53\x4a\x84\x8b\x02\x00\x78\x63\x76\x48\x91\xdd\x8d\x4e\x35\xa7\xbb\x6d\x41\x21\xbf\xdc\xd4\x38\xaf\x30\x1f\xbf\x44\x71\xfc\x45\x2c\xb7\x20\xde\x84\x23\x0a\xb9\x62\xca\x6e\xd0\xc3\x19\x17\xc2\xa8\x84\xd9\x80\x66\xa5\xba\x05\x86\x1c\xd2\xf7\x28\x65\x66\xd8\x3b\xfa\x64\x92\x23\xc2\x46\xea\x54\x32\xec\xc3\x4e\x23\xbc\xd6\xd4\x1e\xa5\xe2\xce\x36\x92\x15\x88\x13\x88\x6c\x1e\xb4\x10\xaa\x8f\xbc\xc2\x4f\xed\xe4\x86\x9a\xec\x8b\x6a\xcf\x30\x2e\x44\x6b\x3f\xb2\xe5\x5f\x66\x61\x00\xff\xcb\x48\xaa\xbd\xf4\xda\x1c\x79\x47\xf5\x54\xc1\xf6\x4d\x74\xd0\xd6\x4e\x95\x65\x99\x93\x59\x74\xcd\xc3\x5f\xa2\x50\x2e\x80\xc5\xd9\xc9\xc0\x6c\xaa\x3c\x44\x65\x77\x55\x92\x1b\xcc\x42\xf5\x74\x92\x44\x68\x26\xa6\xc0\x05\xed\x0b\xa4\x0e\x19\xc2\x24\x11\x2f\xe3\x75\x7a\x5f\xe1\x45\x14\x72\x28\x6c\xb9\x0e\x4e\x9f\x8f\x2d\x99\x26\x86\x9e\x4f\x14\x0a\x8e\xd7\x21\xcf\x5c\x10\xb0\xf1\x9d\x1b\x44\x37\x69\x4f\x5c\x79\x06\x3b\x9d\xbf\x95\x74\x03\x36\xed\xc1\x2e\x01\xea\x6d\x56\xf5\x95\x4a\x6e\x5b\xd2\x02\xfb\xde\xb7\x9e\xcb\x07\xad\xe7\xb7\x8e\xdc\x0c\xef\xad\xd8\xbd\xe9\xaa\x74\xee\xbe\x41\x2e\xb6\x07\x69\x58\x8d\x7f\xd3\xff\x31\x7c\xc0\xbf\xfe\x2c\x1f\x00\xd4\x77\x27\x0f\x90\x72\xd0\x2d\x46\x89\xd8\x5d\x44\x35\x70\x2a\xf9\x2a\xa3\xe3\x01\x19\xf4\xc9\xe3\x3e\x39\xec\xf7\xc9\xd3\x7e\x9f\x0c\x9e\xf4\xfb\xe4\xf0\x71\xbf\x4f\x7e\x38\xe8\xf7\xc9\xc1\x40\x7d\x1e\x1d\xaa\xef\x27\x8f\x8f\x54\x81\x1f\x0e\x54\x91\xc7\xfd\x23\xf5\x67\x70\xd0\x7f\xaa\x4a\x1c\x1c\x0d\x9e\xaa\x32\x47\x4f\x0e\x9f\xa8\x52\x87\x83\xe3\xc3\xc7\xfc\x90\x3c\x3e\xec\xff\x70\xc0\x0f\x27\xba\x63\x8b\xa7\x81\x26\x6b\x7d\x57\x55\xcd\x72\xaa\x30\xeb\x50\xa1\x24\xd0\xad\xe8\x7d\xd1\xa8\xe0\x36\xd9\x10\xec\xb7\x10\x02\x4d\xf4\x0b\xa5\x55\xb3\x11\xe8\xb5\x06\xcb\xba\x4a\x8d\x9e\x55\xf8\x02\xbb\xee\x25\x37\x04\xf6\x17\x4e\xa4\x55\x86\xff\x0a\xca\xf0\x3a\x64\xf1\x50\xa6\x37\x60\x83\x91\x5e\xe6\xe2\xe1\x9e\xcb\xa9\xf4\x84\x8b\xb1\x17\x26\x82\x0f\x71\x45\xb9\xa4\x25\xde\x68\xb6\x35\xb7\x67\x12\x1b\x84\xbc\x03\x16\x98\x80\x2e\xea\x2e\x08\xe4\xda\xaa\xc1\xf0\x46\x7a\xdc\x65\x38\x9f\x45\x82\xc5\xf1\xcd\x46\x7a\x33\xc5\xbf\xd7\x19\xac\x6f\x9b\xa4\x51\xd9\x60\x4f\x89\x1f\x69\xc6\x5d\xfc\xb7\x4c\xfb\xf9\xff\xc1\xb4\x77\x90\x75\xae\x47\xb0\x47\x69\x73\x50\x56\x9c\xb8\x77\x3f\x12\x5e\x39\x83\x8d\x86\x8a\xf4\x4e\xc7\xdd\x3e\xad\x8d\x4d\xa8\x0e\xc2\xae\xfa\xa3\xd6\x54\x4f\x26\xa7\xa0\x26\x53\x7c\x26\x7a\x08\x59\xff\x09\x90\x96\x50\xb2\x70\xc3\x58\x01\xe6\xe7\x5e\x90\x08\x99\x26\x71\xa6\x70\xe1\xe9\x7a\xba\x8c\xa4\x22\x41\xdb\xfa\xda\x36\x84\xd8\x64\x19\x00\x3c\xff\x37\x3c\x03\x74\xb5\x83\x69\x80\xb5\xbb\x0f\x81\x47\x0f\xe7\x1a\x0c\x3b\x05\x8a\x21\xff\x8c\xb7\x6c\x88\x3a\xd3\x60\x51\xce\x16\x0b\xb0\x8d\x1d\xdd\x3b\x70\x94\x22\xe1\x7f\x3f\xdd\x6b\x03\x5c\x0d\x01\xde\x07\xb8\xdf\x5b\x28\x5f\x4b\x95\x7f\x6b\xfe\xb4\x8a\xbb\xb9\x08\x15\x69\x25\x55\x76\xd7\xdf\x21\x54\x11\x18\xa7\xdf\x04\x75\x43\x0b\x24\xc2\x92\x8e\x17\xf2\x41\x1b\xb9\x38\xd1\x5d\xb7\x42\x74\x8b\x33\x44\x9f\x79\xe6\x39\x6e\x86\x51\xf5\xb8\x94\x87\xd0\xee\xf0\xda\xbe\xf8\xab\x67\xb9\xb9\x87\xaa\x68\xa3\xba\x91\x0a\xb9\x78\xc5\xd2\x8c\xbf\x15\xf2\x5e\x34\xd3\x2a\x19\x7f\x2e\xca\xbb\xfc\xf6\xd6\x88\xbc\xd3\xec\xb4\x38\xb4\x6d\x90\xfa\x4f\xe3\xbc\x67\x92\x05\x17\x3c\x7c\xd0\x89\xaf\x6e\xc6\xd3\x45\x72\xe5\xac\x85\xa9\xee\x28\xdc\xe4\x00\x36\x2a\xf7\x65\x43\xde\xb6\xc3\x3e\x55\x55\x14\xc8\xc0\xec\x1f\xc8\xe8\x92\xfb\x7b\x95\x72\xa6\xc9\xfb\xf6\x30\xdf\xda\xc3\x0f\x19\xb1\x1d\xef\xb7\x0e\xb5\x5f\x0c\xf5\xdb\x47\x1a\xee\xe4\x33\xff\x4b\xff\x45\x38\xa7\xcc\x3d\x7e\xaa\x7d\x77\x24\xa7\xee\x26\x66\x53\x1e\x67\x3e\xb7\xe2\xbc\xcc\x31\x7d\x6e\x18\x2e\xde\xa2\x25\xde\xb6\xb0\xa3\x2c\x60\x31\x4b\x11\xf6\xe5\xc8\xad\xec\x38\x49\xc7\x93\xa1\x76\x30\xd8\xeb\x0f\x15\x03\xa0\xd3\x85\x13\x09\x87\x63\x74\x7e\x2e\xd8\x92\x9f\x9f\x23\x2d\xc1\xba\x52\x3b\x35\xb5\x19\xec\x57\x4c\x20\x62\x4d\x2a\x7b\xac\xd3\x41\xc4\x41\xad\xa6\x7d\x5d\xb2\xb2\xe5\x62\x3e\xe7\x22\xec\xc1\x34\x7b\xaa\x43\x6d\x5b\x42\xf4\xcf\xd4\x87\xe3\x81\x72\xf2\x08\x3d\x22\x7c\x2c\x26\xea\x43\x61\x33\xd6\xe9\xb8\x8c\xee\x0d\xf0\x5d\x46\xa2\xbb\x4c\x01\xbb\x3b\x5e\x72\x99\x46\x81\x1d\x39\xf7\x2c\xd4\x6e\x6f\x11\x6a\xdb\x84\xf7\x4d\x61\x9a\xb2\x40\xb5\x84\x36\x60\x15\xfd\x0b\x0d\xe4\x08\xe3\x1c\xbb\x6d\x06\x82\xed\x4d\x72\xa1\x78\x29\xab\xef\x64\xbc\x22\xe8\x7c\x5a\xa7\xfc\x9b\x84\x1d\x63\x71\xca\xc0\x0a\x63\xac\xa9\x3c\xf3\xc7\x93\x9a\x3d\xfa\x94\xa7\x11\xcf\xb4\xa9\xc6\x7a\xbb\x58\x17\xb2\x8a\xc9\xa7\xd1\x0a\xec\x57\x41\xc7\x7c\x02\x5c\xa8\x17\xc8\x34\x06\xa3\xb4\xf4\x96\x5c\xb2\x7f\x83\x52\x7f\xdb\x40\x15\x2c\x58\x2a\x5f\x33\xc9\x86\x82\xb2\x8a\xec\x8d\x47\x85\x4d\x5a\xd2\xe7\x60\xc0\xc2\x7e\x9f\xd2\xd2\x94\x2b\x2b\xa6\x5b\x46\x84\x3a\x7b\x70\xf0\xa4\xaf\x8d\xb1\x62\xa2\x8d\x7e\x9e\xe7\x31\xc2\x27\x39\x8f\x33\xee\x0c\x2a\x2d\x74\x3a\xb5\x0e\x3b\x1d\x57\xd0\xf1\x04\x37\x7d\x0c\x9a\xd0\x12\x75\x71\x3f\x11\x1a\x5e\x67\xc9\x7c\x1e\x73\x57\x10\x8e\x77\xf1\xc3\x55\x94\xb4\x48\xd6\x71\xf8\x99\x67\x5c\x76\x3a\xbc\xfa\xb3\x4e\xd8\x6a\xe5\xee\x19\xd8\x78\x92\xdf\x6f\xcc\x2b\xe0\x0d\x96\xbc\x44\xbc\x83\x0d\xfa\x3e\x59\x67\xfc\xe3\x5a\x5b\xdf\x13\xf1\x26\xb9\xe4\x29\x49\xef\x58\x6d\xf0\x67\xd2\x60\x7c\x3e\xe8\x74\xd4\xc2\xa4\xe6\xf7\x7d\xe7\x78\xb3\xc5\x17\xeb\x43\xa2\xb0\xbc\x1d\x87\x9f\x8c\x98\xaf\x3d\x03\x72\x22\x8d\xfd\x5a\x5b\xa2\xb9\xb1\x5d\x30\x62\xf0\x6f\xa4\xd0\xee\xce\xce\x8c\x81\x2c\x59\xb1\x20\x92\x37\x7e\x75\xa0\xb7\xb7\x69\x6d\xc3\x0d\x7c\xef\x38\x2f\xb9\xb5\x62\x7a\xa3\x1d\x67\xc3\xe5\xd8\x8c\xb1\x18\xf9\x25\x4f\xfd\x64\x24\x2a\x39\x0a\xf3\x72\xb2\x8d\x11\x22\xc9\xdb\x89\xf7\x6e\x24\x92\x81\xe9\x03\xed\x32\xc1\xb3\xbc\x95\x91\x90\x9c\x58\x4a\x15\x59\x4a\x65\x78\xf0\xea\x0a\x3e\x64\xb5\x56\x71\x6f\xe0\x2c\x65\x6f\xe0\x48\x7e\x2d\x7b\xcb\xb5\xe4\x61\x31\x9c\x59\x22\x24\xb0\x34\x83\xc3\x3c\x27\x48\x03\xd1\xd1\xdb\xc6\xc9\x00\x6c\x8a\xf2\x08\x76\x19\xcd\x99\x4c\x52\x6f\x15\x33\xa9\xc6\x53\xae\x01\x7a\xcf\x02\x84\x47\xe8\xd5\xfb\xd7\xc8\x47\xaf\xce\x3e\xbf\x43\x04\x39\x5d\x27\xd0\x6d\x49\x38\x61\xce\x72\x1d\xcb\x68\x15\x73\xd3\xa8\x42\xa5\xb9\x21\x8f\xda\x5d\x27\x9a\xb9\x96\x0a\x1b\xd1\x17\xa9\xdf\x68\x68\xd1\xcf\x7b\x26\x17\x1e\x9b\xaa\x45\x07\x5c\xf5\x9c\x0e\xf8\xc1\x91\x29\xeb\xf2\x7d\xf8\xe5\xc9\xe4\x47\xc5\x0e\xb8\x07\xb8\x8b\x7e\x45\x65\xc1\x41\xad\xe0\xa0\x5e\xf0\xbf\x65\xc1\xc1\x93\x6a\xc1\xc1\x93\x7a\xc1\x93\x4a\xc1\xe3\x5a\xc1\xe3\x7a\xc1\x4f\x95\x82\x07\xb5\x82\x07\xf5\x82\x67\x65\xc1\xa7\xd5\x72\x4f\xeb\xc5\x7e\x2a\x8b\x3d\xae\x16\x7b\x5c\x2f\xf6\xbe\x2c\x76\x58\x2d\x76\x58\x2f\x76\x51\x14\xb3\x5a\x06\x5e\xc9\x57\x79\xe0\xda\xb3\x2b\x53\x3e\x1b\xf0\xde\x41\xad\x83\x5e\x13\xf6\x37\xa8\x2c\xd9\xaf\x97\x6c\x00\xff\x6b\x59\x72\xf0\x43\xad\x64\x13\xfa\xac\x52\xf2\xa8\x5e\xb2\x01\xfe\x59\xa5\xe4\xa0\x5e\xb2\x01\xff\x55\x59\xb2\xb6\xf2\xbd\xc6\x02\x88\xb2\x5c\x6d\xe1\x7b\x8d\x15\xf8\xed\x7a\x7a\x6c\x8a\x7a\xfd\x4a\xd7\x5e\xbf\xdf\x98\xf7\xd2\x14\xdb\xb1\x08\xda\x17\x58\xfb\x01\xa3\x40\xd1\x13\xf1\x48\x3a\x1a\x15\x38\xcc\xd1\xde\x1c\xa0\xff\x71\xa2\xcc\x61\xce\x74\x3d\x47\x38\x27\x29\xa7\xc6\xfb\xbd\xa0\xff\x82\xa6\x0a\x4d\x28\x74\xe3\x81\x4c\xe4\x72\x4c\x12\x2a\xbc\x94\xc4\x54\x78\x73\x12\x51\xe1\x4d\xd5\x60\xf6\x98\x3d\x7a\xe9\x7c\xca\x5c\xe4\x05\x89\x08\x98\x74\x13\xa2\xf8\x4f\x6c\x7f\xc6\xf5\x9f\x51\xfd\xa7\x24\x08\x23\x5c\x38\x71\x1d\x1c\x1f\x7f\xef\x0e\x7a\xd2\x72\x8a\xaa\xe9\xb2\x65\x38\xd4\x80\x0e\xdd\xac\x2b\xbf\x4f\x30\x41\xa4\x6c\xaa\x91\x1b\xdf\x99\x1b\x61\xe8\x38\x27\x09\xb7\x2e\x72\xae\xe6\x30\x6a\xbe\xdb\x39\x29\x7c\x6b\x53\xee\x1a\xb8\x10\xa1\x58\x95\x91\x77\xe8\x0f\x88\x04\xb5\x82\x12\x15\xfe\x58\xf3\xf4\xe6\x13\x4b\xd9\x52\xc9\x0b\x21\x93\x4c\x4b\x0b\x05\x5f\xe5\x56\x55\xb7\x63\xf4\x1d\x0f\x83\x83\xa3\x3e\x22\xe8\x3b\x36\x0b\x9f\xcc\x9e\xa8\xaf\x60\x7a\x34\x3d\x9a\xaa\xaf\xa3\x90\xfd\x70\x14\xaa\xaf\xa7\x47\x47\x7d\x1e\xa2\x09\xd8\xcb\x0c\xfd\xd5\x8c\x58\x7f\x58\xec\x85\x94\x67\xeb\xd8\x50\x51\x4e\x12\x35\x9d\xe4\x9f\x8c\x52\xda\xef\x74\x12\x60\x7b\xc4\x73\xda\x1f\x89\x67\xde\xf1\xa8\x27\x7a\xde\x81\xdf\xf7\x7b\x02\x93\xe6\x62\xcb\x71\xf2\x4f\x36\xb9\xbd\x45\xdf\x3d\x7e\xfc\x18\x61\x4f\x49\x2f\xdc\x55\xcb\x80\xc8\xa0\x2b\x30\x30\xb5\x12\x2b\x26\x02\x76\x05\xdc\x29\x00\x0d\x83\xda\x1d\x56\x25\xa1\xf6\x48\x29\x42\xdb\x51\xca\xda\x28\xb5\x13\x84\x82\x95\x66\xe2\x7d\x99\x03\xfc\x0d\x88\x52\x2b\x1f\x65\x54\x8b\x47\x5a\x56\x4a\x86\xec\x19\x8d\x87\xac\x4b\xa3\x8a\x6a\x74\x9c\x4d\x86\xdc\x52\xba\xac\xd3\x91\xe3\xfe\xe4\x19\xeb\x46\xfb\x83\x7e\x7f\xe4\xa6\xe6\x3e\x08\x18\xe5\xc7\xfd\x09\x89\xd4\x3c\x07\x13\x3c\xc1\x24\xeb\x76\xb1\x5f\x2d\xa0\x7d\x82\x26\x8a\xcb\x52\x83\xb6\x74\xd5\xea\x23\x46\xd2\xdf\xe4\x96\x3d\x19\x8b\x49\x45\xeb\xa0\xd7\x3c\x35\xde\x74\x22\xcf\x71\x4e\x22\x5e\x53\xd8\x03\x8c\x7f\x8c\x13\xa6\x18\x0b\x0b\x96\x28\xfb\xc0\x3e\xb8\x12\x8f\x54\x1f\xbe\xcc\x87\xcc\x7d\xaa\x64\x5c\xf7\xe9\x00\xfe\x3d\x80\x7f\x0f\xe1\xdf\x23\x2b\x24\x64\x7f\x49\x48\x00\x0e\x71\xb7\x57\x04\x64\x1b\xaf\x4d\x6b\x01\x99\xbd\x7d\x4d\xfb\xd6\xc7\x55\xf3\x89\x9a\x51\x32\xdc\x22\x1d\x4f\x6a\x02\x48\xc1\x84\xfa\x71\x55\xc5\x67\x8d\x04\xab\x38\x91\xea\x44\x54\xd8\xcf\xa2\x86\x55\xa6\x4b\x62\x9c\x81\xed\x70\xad\x22\xc6\x2a\x83\x8d\xcd\xf9\x53\x9c\xc8\xc6\xd8\xd5\xb6\x56\x5d\xb8\x85\x63\x40\xb3\x0d\x4c\x38\x71\x6b\x62\x8a\x51\x21\x90\xcd\x3c\x8d\x42\x7f\xb3\x50\x0c\x32\x9b\xc6\x46\xcf\x1b\x05\x17\xf6\x07\x5b\xcb\xe4\x8d\x75\x58\x55\x09\x4b\xc5\x18\xbe\x00\x9d\xc4\x67\x16\x46\xeb\xcc\x1f\xf4\xfb\x39\xd1\x3c\x9d\xf6\x19\xf0\xf7\x06\x39\xb9\x66\xd7\x51\xe6\x6f\x96\x49\x68\x0c\xc2\x48\xbb\x10\x44\xc1\x45\x66\xfd\x09\xde\x47\x22\x49\x8b\x14\x55\xe8\x25\xcb\xb8\x8f\x96\x51\x1c\x47\x19\x0f\x12\x11\x66\xda\x69\xe0\x6b\x22\xb8\xef\x32\xba\x43\xe5\x87\x47\x68\x9a\x26\x57\x19\x4f\x51\xc1\x66\xdf\xe8\x01\xc8\x28\xb8\xf8\x11\x68\x83\xe4\xa9\x2f\x78\x4e\x82\x34\xc9\xb2\x05\x8b\x52\x3b\xba\xeb\x9b\xc2\x81\xe8\xbb\xe9\x74\x8a\x72\x22\x93\x44\x31\x65\x76\x3a\x7d\x12\x64\xd9\x2b\xb5\x17\x2d\x8b\x6f\x0a\xa8\x7a\x42\x72\x21\x7d\x20\x2d\x82\x6c\x34\x13\xe7\xa7\x35\x4f\xd4\xd4\xd3\x27\x8b\xc4\x34\xd5\x18\xc8\x78\xf4\xbe\x52\x2b\x56\x5e\x78\xb8\xbd\x75\x23\x1a\x79\x6b\x19\xb8\x18\x93\x47\xbf\x09\xa7\xf2\x7f\xcf\xc2\xe8\xd2\x81\x03\x41\xb5\x33\xc0\xf3\x47\x05\x9d\xf1\x34\xf5\x73\xdb\x3c\x30\x9c\xff\x22\x4c\x1e\x3d\xdb\x0f\xa3\xcb\xe7\xdb\x2d\x36\x92\x1c\xe7\x99\xe2\xd7\x8b\x7e\xb8\x64\x51\x6c\x39\x75\x07\x58\x63\x8a\x4a\x4e\xbd\xa7\xc1\xe6\x3c\xaa\x50\xc0\x47\xc8\xd9\x6f\x6f\xf5\x79\x59\x2c\xa9\x6a\x2f\xb4\x2e\x85\x20\xdf\x29\x7c\xb2\x8b\x82\x42\x0d\xdd\xa4\x3e\xdb\x87\x56\xee\x9d\x44\x15\x52\x1a\xf0\xc0\xe5\xa3\xad\x51\x95\xe3\x31\xfe\x89\x17\xfc\x06\x9c\xa8\x15\xd2\xe6\xf4\x79\x4d\x31\xc5\x47\x8f\xaa\x0d\x2f\xa7\xaa\x45\x3b\xe0\x62\x29\x38\x29\x1d\xc9\xfd\x0a\xed\xbf\xe4\x6e\x32\xe6\x13\xac\xb2\xd5\x88\x11\x18\x61\xbc\xdf\x93\x48\xb8\x08\x61\x82\x1a\x53\xd8\x5a\x2e\x45\xbf\x8d\xd6\xf8\x6c\xc1\x97\xdc\xdf\x1b\x10\xf0\x52\xd4\xfe\x38\x7a\xdb\x6d\xe0\x5c\xfb\xd2\xe4\x6c\xd4\x1f\xad\xff\x93\xa3\x81\x7f\x40\x32\xc9\x57\x99\xaa\x39\x8b\x00\xfd\x92\x6c\xc1\xc2\xe4\x0a\xe4\x9c\x7e\xae\x84\xa8\xc2\xe4\x57\x60\x1b\x6d\xf0\x3b\x31\x88\x4d\xe3\x9c\xc2\x8b\x00\x7e\xd9\xd2\x2e\xde\xad\x77\x69\xde\xdd\x6b\xc3\x85\xc3\x02\x5b\xba\x03\x6a\xd4\x06\xad\xf8\xb7\x50\x78\xdc\x51\xa4\x90\xc2\x24\x1e\x31\x58\xd0\x84\xbb\x92\x6c\xe3\x40\x8c\xfd\x42\x35\xe3\x6a\xf6\x90\x97\xb5\x19\x08\x96\xbb\x29\x01\x6f\x99\x32\xa8\x1b\x14\x2d\x2c\x7d\xc5\x80\xa6\x74\x3a\x01\x13\x01\x8f\x5f\x88\x68\xc9\x14\xb3\xf0\x63\xca\x96\xdc\x2d\x0b\xe0\x2a\x01\x4a\xf9\x1f\x6b\x9e\xc9\x46\xe1\x8a\xfb\x59\x9c\xc8\x53\x2e\x5f\x88\xf0\x75\xca\xae\xdc\x36\x80\xda\x69\xf3\xd6\x69\xe3\xc6\x1d\x93\xba\xea\xc4\x78\xd2\x3d\x68\xc0\x8d\xa1\xd4\x9b\xfd\xcc\xb3\xe8\x2b\xbf\x6b\x17\xc1\x8a\x57\xf7\xd3\x9c\xc3\xf0\x5d\xbc\x53\xf5\xb4\xc3\xc3\x4a\x71\x25\xe0\x61\x65\xe9\x5b\xba\xed\x6d\xa5\xca\xec\x51\xca\x46\xee\x43\x08\x7c\xa1\x9d\x7a\x00\x8d\xc7\xd8\xe7\xb6\xe7\x8a\x2f\xd6\x43\xda\x00\xe8\xf4\x1f\xb2\xe9\x47\x25\xc8\xac\x77\x43\x01\xbe\xe6\xf2\xdb\x5d\xad\xcf\xde\xc3\x0e\x8b\xda\x16\xdb\x7e\x65\x69\x75\xa9\xf0\x6e\x0f\xc5\x66\x7e\x8b\x4b\x5d\x8d\x91\xc9\x1b\x5b\x67\x07\x93\xb4\xbd\x71\x6a\xfb\x25\x33\xfb\x85\xd7\x18\x23\x2f\x84\xcd\xb8\x4b\x87\xd8\x44\x3e\xdf\xaa\xe6\x6b\xd5\x76\x71\xee\x31\xb2\xd1\x1b\xdf\x1a\x5e\x48\x22\xf4\x19\xf0\xb7\x4e\x05\xc9\x2e\xa2\xd5\x47\x01\x20\x04\x2d\x56\x9b\x02\x6d\x87\x96\x11\x46\x8e\x48\x6a\xcd\x7e\x96\xe9\x6b\x6d\x84\x71\xb2\xa9\xe8\x5e\xfd\x07\x6d\x35\x52\xee\x57\x4e\x8c\x16\xd5\x6f\xc7\x76\xa4\xa9\x79\xf5\x77\x22\x16\x52\xd7\x30\x6f\x37\xa8\x29\x46\x6e\x8d\x55\x01\xa7\x19\x37\x42\xf3\x5a\x09\x9f\xa1\x1e\x90\x39\x68\xbe\xac\x1b\x85\x19\x89\x59\x26\xff\x53\x11\x50\x85\xe2\xc5\x4e\x14\xda\x18\xa9\x69\x17\xf2\xe3\xce\x2b\x33\xd5\x4b\xa6\x9a\x0b\x65\xe9\x0d\xca\x09\x3a\x59\xae\xe4\x8d\x03\xc2\xaf\xa3\x1b\x51\x64\x7c\xc9\x64\x1a\x5d\xeb\x2b\x6c\x3a\xf5\xec\x66\xd5\x66\x30\x6b\xbd\xbc\x8a\xfe\x53\x69\xce\x89\x32\x27\x99\x39\x57\x8a\x7d\x70\xe4\xcd\x8a\x3b\x8f\x10\xa9\xb6\x4a\xd0\x23\xe2\xe8\x85\x74\xa6\xdc\x79\xa4\xfb\x7e\xe4\xb8\x60\xe2\x76\x2e\xb9\x92\x84\xb0\x87\xda\x4c\x31\x01\x27\xf7\xc2\xee\x8f\x3a\xdc\x5a\x5a\xa9\x4e\x02\x84\x02\x35\x87\x0f\x89\xa3\x5a\x06\xd0\x44\x3c\x74\x6e\xb8\x44\x98\x2c\x40\x20\x2c\x64\xd5\x01\x3f\x1a\xf1\xf2\x22\x17\x3f\xc2\x3e\x07\xeb\xe3\xb2\x5c\x55\x60\x9b\xb7\x15\x9e\x2d\xa7\xf2\xe1\xe3\x18\x56\xda\x33\xa0\xbc\xbd\x6d\xd9\x09\x0f\xeb\xeb\xde\x0d\x01\xac\xbd\x54\x14\x84\xd1\xbd\xc1\xd0\x6a\x9a\x1a\x9d\x3d\xa3\x03\x7e\x38\x34\x77\x44\xaa\x2b\x6c\xae\x8a\xe8\x95\x44\xbe\xa4\x0b\x5e\xe4\x63\xab\xf3\x90\xed\x26\x02\x99\x1a\xdb\xa8\x6c\xd5\xc4\xcb\x70\xa7\xd5\xb1\xa2\x55\xe7\x9e\xd6\x51\x58\xe5\xba\x68\x37\x71\x97\xad\x19\x67\xad\xf1\x60\x02\x06\xd0\x42\x71\xb3\xb7\x05\xe1\xea\x75\x12\x73\x6a\xee\x98\x60\xc1\x2b\x9a\x0e\x32\xcb\x96\xab\xae\xba\xc8\xf9\xff\xa1\x2e\x1f\xf7\x27\x96\x89\xfe\x4d\xa0\xbb\x6c\xae\x00\x1b\xa3\xdb\x87\x8b\x7c\xa7\x2b\x16\x68\xf7\x21\x94\x93\xff\x73\xa0\x31\xa0\xb3\x0f\x05\x96\xb1\xab\xfb\xbb\x0d\xe3\xc5\xd2\xa3\x7e\xbb\x19\xa6\xe8\xb9\x30\xd2\xdf\xb3\xa8\x7a\x30\x7a\x55\x6b\x63\x01\x15\xd0\xdf\x35\x16\xdd\xd8\x9f\x18\x8b\x91\x85\xfc\x07\x1d\xda\x12\xdb\x7e\x11\xd9\x7a\xb5\x4a\x52\xc9\x43\x8b\x73\x61\x73\x01\xb6\x45\x56\x13\xd6\xd2\xdc\xb6\x21\x9b\xb5\x59\x99\x5a\x7b\xbd\x37\xf2\xc0\x2f\x2c\x15\x91\x98\xeb\xd8\x03\x3f\x72\x19\x2c\x78\xe8\x94\x98\xdf\xd2\x63\xe4\xe8\x5d\x96\x11\x27\x11\xf1\x8d\x63\xe2\x11\x44\x62\xee\xcc\xa2\x34\x93\x0e\x22\x65\x59\x0f\x61\xb2\x27\xee\x1b\x63\x15\x9d\xdd\x3b\xcc\x0f\x89\x8c\xd4\x99\x51\xa3\x3c\x5d\x24\x57\xaa\xe3\x65\x92\x72\x47\x2e\x98\x70\x10\x19\xf0\x43\x82\x0a\xe3\x98\x02\xa4\x2a\x91\xcc\x66\x0e\x1c\x13\xa3\xa3\x97\x30\xde\x24\x75\x56\x3c\x85\x14\x11\x70\x27\xe5\x2c\x4b\x44\xe6\xb5\x6e\x85\x53\x60\xaa\x80\xfd\xd8\xeb\x97\xbe\x42\x55\x33\xa4\x42\xfb\x3d\xc9\xa6\x31\xdf\xb1\xe5\xa6\x49\x78\x63\xe6\x01\x4c\xee\x90\xb9\x4f\x8f\xb5\xf7\xcb\x8a\x37\x2e\x74\xc7\x09\xd3\xba\x5d\x46\xab\xfe\x9a\xa4\xc4\xe2\x9a\x53\xf9\x16\x9e\x11\x88\x44\x4f\x31\x9d\xd9\x43\xed\xa4\xb3\x38\x61\xb2\x97\x5a\xe2\xf6\x2e\x61\xda\x67\xcd\x57\xeb\x4c\xd0\x32\x73\x7e\x5b\x1f\xf4\xfb\x07\x4e\xe9\x91\x05\x41\x29\x08\xaa\xe6\xa8\x2d\x6e\xd4\x03\x0e\x22\x42\x4d\x5d\x51\xa8\x90\x0f\xf7\xca\xa8\x40\x78\xc3\xbd\x9f\x20\xd4\x90\x61\x6e\x09\xf7\xce\x14\x34\x29\x32\x40\x75\x43\x7e\x7b\xeb\x86\x9c\x6e\x72\x6c\x6d\x18\x73\x4e\x37\x70\x27\x33\x34\xa5\x09\xbf\x5e\xa5\x3e\x42\xc6\x05\x0f\x5c\xc5\x8d\x9e\x1c\xb4\xca\xa4\x04\xa6\xfe\x6d\x19\x91\xbd\x41\x6e\x94\xbd\x33\xfe\xed\x11\x1d\xd8\x34\x49\xe5\x5b\xf1\x23\xf0\x01\x70\x7c\x2a\xf7\xdc\xaa\xd7\x7d\x5b\xae\x87\x69\x31\xa0\xb8\xc5\xa8\xaf\xf1\x4b\xfa\x5a\xa5\x8a\xe4\xca\xc5\x0d\x27\xe4\x44\x9c\x54\x1a\x2c\x86\x60\x32\xf5\x05\x1b\x68\x4e\x61\xf4\x52\x02\xfc\xa8\x73\xdc\x0d\x40\x88\xe7\x98\x20\x54\x61\x70\x86\x3b\xe6\x61\x05\x9d\xed\x1c\xf7\xee\xb9\xdb\x25\x62\x54\xf0\x2b\xe7\x85\x2a\xf4\x4a\xbb\xeb\xc6\x3c\xdd\xd5\x1b\x80\x87\xe9\x0c\x77\x2b\x04\x84\xb9\x2f\x0c\x72\x4a\xc1\xd6\x40\x99\x39\x97\xc6\x4b\xb2\x7a\x61\x70\x5f\xa1\x83\x94\x8a\x5e\x0b\x80\xb4\x47\x66\x2d\xf0\x41\x91\x55\x6c\x91\xdb\x5b\x30\x64\x2d\xd9\xb5\xb6\x68\xcd\xe2\x24\x49\xdd\x5d\xad\xed\x1f\x1c\xf7\x31\x19\x60\x12\xc3\x94\xbf\x7c\x7e\xa7\xe3\x1c\x68\x6e\xd6\xd8\xac\x7c\x4e\x42\x1e\xae\x57\x0d\xdf\xd1\xd7\x2a\x2d\x8e\x02\xd6\x70\xae\x24\x2b\x96\xca\x88\xc5\xe7\x45\xc4\x9d\x87\xd5\xcb\x35\x17\x18\x59\x06\xaf\x65\xcc\xb2\xe4\xf5\xf4\x89\xf3\x23\x8a\xf6\xd9\x2a\xda\xbf\x1c\xec\xc3\x58\xcf\x8d\xbf\x6d\xec\x69\x47\x5d\x57\x07\xb5\x42\x24\xad\xf4\x84\x2b\xd9\xe0\x74\x22\x76\x64\x66\x92\xaf\x10\x49\xaa\xb9\x55\xaa\xae\x4f\xf9\xd6\x18\xaa\xbd\x6b\x25\xbe\x68\x69\xc1\xd2\xe2\x66\x94\xa6\x47\x6f\xc5\x25\x8b\xa3\xd0\x59\x31\xc1\x63\x2d\xd0\xa0\x47\xdd\x1d\xd0\xe8\x3e\x42\x8f\x70\xae\xc3\x4a\xa1\xc2\x0e\x5a\x29\xbc\x62\x72\xf1\x29\xe5\xb3\xe8\xba\x6a\x61\x1d\x55\xcc\xaf\x98\x7c\x43\x04\x2a\x92\x45\x73\xc1\x62\x9f\x79\xfa\x23\xc7\x9e\x5c\x70\x01\x1c\xa6\x89\x1c\x55\xa6\x28\xa1\x04\x65\xeb\x20\xe0\x59\xa6\x45\x3d\x1d\x80\x0a\x37\xe7\xcc\x75\x04\xa5\xdb\x5b\x14\x99\xc9\xdb\xbd\xe3\xfc\xeb\xf4\xe3\x07\x23\x1f\x30\xda\x57\x78\x45\x6b\xa3\xaa\xf7\x1e\x0a\x0d\x56\x45\xe6\x4b\x8b\x9f\x43\xcb\xbc\x51\x4a\xc5\x88\xd1\x81\x9f\x76\x3a\xd6\xff\xe7\x79\x1f\x7c\x0f\xed\x4f\x9c\x37\xce\xaf\x0e\x15\x05\x88\x51\x0b\x5b\xba\xb3\xa6\xb8\xbc\x29\xcc\x9c\x7e\x5a\x22\xef\x2a\xe6\x4e\x72\x02\x74\xcc\xdf\x58\x42\xe9\x97\xe8\xb2\x27\x6b\x45\x49\x95\x5e\xfa\x2c\x27\x05\x16\x19\xe4\x77\x63\xb0\x1c\x9b\x98\x5b\x0a\xfa\x08\x30\x18\x40\x58\x43\x5f\xb0\x25\xdf\xd2\xaf\xe9\x19\xea\x38\x4e\x8e\xc6\xfb\x8a\xd7\xd0\x27\xdf\x41\x5d\x6e\xc3\x35\xd5\x46\xd1\x50\x83\x36\xa3\xe1\x94\xf7\x81\x2a\x1d\xd5\xc8\x85\x42\xe7\xb5\x26\x2a\xae\xfa\xb5\xda\x05\x11\xd0\xe4\xb1\xac\x56\x22\x50\x40\xc1\xf6\x96\x53\x0b\x61\xd1\xa5\xe0\x16\x68\xfd\x72\x53\xbd\xc0\xf6\x68\x6c\xfb\xad\xe3\xb1\xcb\xbc\x63\x22\xc5\x7a\xee\x98\x4d\xb9\xde\xed\x0d\xa8\x5d\xdc\x06\x46\xd8\x86\x7a\xad\xc9\x56\xab\xc0\x58\xb4\xb7\x67\xfd\xa3\xdb\x87\x63\x79\x8a\xb2\xae\x31\xd3\x16\xdd\x6d\xab\x88\x20\xb1\xd8\x13\xa4\x72\x54\xf4\x4e\xd7\x72\x48\x63\xd5\x6b\xe4\xbe\x55\x53\xbd\x31\x25\xd4\x58\xda\xbc\x45\x4d\x36\xc8\x81\x76\xe5\xe0\xf0\x03\x79\x34\xe7\xde\x72\x9f\x09\x95\x80\x27\x87\xdc\x96\xa5\x70\x69\xd8\x5c\x4b\xa2\xa0\x71\xae\xf2\xab\x14\xf4\xb6\x1c\x2a\x51\x4a\x93\x22\x62\x43\x85\x7f\xb9\x43\x97\xdb\x28\x57\x01\x71\x45\x01\xdf\xf0\x20\x69\x99\xdb\x26\x27\xcd\x7b\x04\xa6\x1d\xbd\x98\xe1\x43\x62\xb6\xac\xcc\x82\x29\xc1\x42\x31\xe5\x5a\x0e\x52\x6c\x72\xa6\x7d\x3c\x75\x8b\xdf\xc2\x90\x03\x4d\x6a\x65\xc5\xdf\xdb\x60\x29\xdb\x59\x1f\x77\x67\xfd\x6c\x43\x5d\xec\x66\x2b\xb7\x43\x6d\xf9\x77\x20\x1e\x52\x5d\x00\x7f\x6b\x49\x8a\xfd\x5a\xe9\xcf\x24\x91\xb6\x20\x52\xfe\xc6\xa8\x1a\xdf\x44\x8a\x32\xde\x20\x5f\x12\xf4\x1e\xe0\xe8\x00\x20\x11\xb8\x5c\xb6\xea\x2d\x1e\x02\x91\xea\xb4\xd5\xf1\x79\xb0\x74\xdc\xac\xf8\xe7\x87\xb0\x9d\xf5\x09\x2e\x62\xb0\xa9\xb6\x92\x6e\xe7\x7f\xd8\x5d\xf5\xbc\x79\xa9\x1d\x38\x24\x75\xca\xe0\x40\x8d\x90\xbe\x98\x81\x94\xb8\xb3\x75\x9f\xa3\x89\xfd\x5c\x2b\x21\xe1\x9c\x20\xf8\x40\xad\xb3\xfc\x86\xf1\x68\xae\xf1\x2f\x8c\x07\xe4\x3d\x35\x1e\xf8\x50\xe3\xd9\xdb\xde\x4a\x9d\xce\xde\xf6\xc2\x56\xfd\xa8\x15\x7a\x6c\x5b\xea\x15\x27\xcd\x62\xad\x33\xfe\x0a\x97\xd2\x60\xe8\x67\x6c\xea\xeb\xc9\xb4\x2d\xd5\x8f\x66\x29\xdf\x86\x76\x2d\x72\xd2\x5c\x94\xb6\x81\x3c\x28\x10\xe4\x16\x76\x80\x86\xcb\x1b\x8e\x6d\x03\xb2\xd7\xd4\xc4\x9f\xb9\x9d\x26\x5a\x2f\xa5\x29\x04\x02\xb2\xc4\xce\xbb\x69\x2d\x24\xbd\x5d\xd5\xb8\xb4\xda\xfe\xca\x2a\xa8\xdf\x3b\x4e\x78\x15\xba\xd6\xbc\x55\x6e\xb1\x1d\x1c\xfb\x9f\x05\xf7\x7f\xc9\xa6\x0e\x85\x82\xcd\xfc\x46\x50\x56\xb4\x09\x55\x4a\x69\x39\x00\x51\xd8\x81\x6b\xd7\x27\xb7\x21\xf9\x59\x8b\xa3\xf5\x1b\x7f\x3b\x01\x4e\xb6\x6f\xc2\xb5\x34\x59\x21\xdc\x8d\x6b\x5d\xdb\x85\x6d\x4e\xab\xed\x6e\xbd\x63\x25\x5b\xa6\xf9\x20\xa8\x35\x99\x9f\xea\xa1\xaf\x67\xc1\x95\xb1\xbf\x11\x1b\x37\xe3\x40\x54\x15\x5c\xa4\xb0\xe5\x88\x8b\xc6\x1d\x53\x7b\xfb\x71\x99\x5c\xf2\x4f\x8a\x6a\x57\xaf\x0b\xa2\xcf\x90\xee\x40\x06\x2a\xef\xb8\x5d\x73\x3a\xb3\x66\xc3\xa9\x66\xab\xd1\x79\xc3\xbb\x96\x89\x30\x59\xba\xb8\x94\x68\x0f\x1f\x63\x2f\x5b\x4f\x33\x99\xba\x07\xe4\x29\xc6\xe4\xa6\x6e\xc2\xea\x93\x13\x48\x30\x1e\x92\xbc\xd3\xd1\xde\x66\xea\x9b\x5c\xd6\xd5\x88\x1b\xd4\x41\x3e\xea\xb0\xe5\x6a\x88\x08\x7a\xa6\xbe\x95\x00\x47\xd0\x73\xf5\x39\x57\x9f\x8f\xd0\x23\x1f\x75\xfe\x58\x27\x90\xfe\x48\xa5\x7f\x77\xf8\x54\x7d\xef\xc3\xf7\xf5\xc1\x8f\x43\x94\x5b\xa6\xc6\x8c\x91\xe3\x32\xa6\xe5\xb8\xf3\xec\x39\x7a\xb4\x3f\xd9\x9f\x13\xb7\xaa\xcc\xb3\x4e\xa8\x63\x3e\xc9\x31\xce\xc9\xc5\xce\x9b\x04\x46\x9e\x34\x46\x2b\xb7\x71\xab\xac\x8b\x36\xa8\x50\x24\x8d\x27\xf7\x5f\xdd\x63\xda\x28\x20\xba\x8f\x28\x7a\xd4\xe5\x63\x31\x01\xa9\xbe\xf0\x8a\xed\x52\x66\xcc\x35\xc4\x51\xcd\xe7\x88\xc8\x9c\x5c\x71\xba\xb9\xf1\x6d\x58\x88\x2b\xdf\xc4\x8f\x08\x7d\x1d\x55\x62\xa1\x15\x89\x4b\xff\x71\x9f\x64\xfe\x20\x1f\x16\xf1\xae\x4f\x6b\xce\x20\x4a\x08\xff\xcc\xe7\x27\xd7\x2b\x17\xfd\x3f\x77\xdc\xef\x3d\x9d\x74\xb1\x3b\xbe\xb9\x0a\x17\xcb\x6c\xd2\xc5\xff\x40\x58\x33\x8f\x20\x56\x4a\xac\x1d\xbb\x6f\x6f\x0f\xf7\xca\x4b\x54\xd6\x08\xa8\xe0\x54\x28\xb9\x8a\xfb\xb2\x6c\x3c\x98\x40\x70\xf4\xf1\x41\x11\x7b\x51\x7c\x7f\xc5\xc7\xe9\x24\x2f\x06\x05\xf1\x21\x20\xcc\x01\x38\x76\xd2\x3e\xb1\x71\xbb\xb5\x7f\xd9\x95\x62\x87\x9f\xd9\x0e\x87\xb2\xdb\xc5\x85\x3f\x3a\x1b\x4b\xb8\x6f\xc6\xff\x79\xa5\x80\x47\x29\xed\x17\x3e\xf0\xfb\x90\xd4\x15\xd6\x46\xc1\xbb\x28\x43\x65\xb7\xaf\x78\x65\xe5\x5f\x79\x0c\xdc\x08\x79\x45\x1f\x67\x6e\x95\xbc\x6f\x68\xbb\x9f\xf5\x47\xa8\x07\x5c\x03\x83\x1f\xbd\xc1\xf7\xdc\x57\x62\x88\x6a\x23\x5c\xa7\x4c\xc7\x0c\x27\x68\x99\x21\x35\xf7\x8a\x2a\x4e\x78\x55\x4f\x4d\x17\x63\x92\xd4\xb3\x2b\x39\x71\xb3\xa2\x58\x4b\x0e\x39\x51\x3d\x67\x91\xac\x53\x48\xcf\xea\xe9\x2c\x7b\xcd\x6e\x54\x86\x05\xbc\x3a\x75\xd9\xa8\xa2\x29\x2a\xf4\x40\x19\x41\x61\xdd\x0d\x7f\x51\x77\xd2\x5f\x56\x7e\x26\x04\x65\x08\xfb\xaa\xb5\xa8\xb5\xb5\x07\x57\x8f\x5b\xab\xef\x2e\x9f\xb4\x96\x4f\xc0\x74\x63\x7f\xa5\xba\x38\x7b\xde\x6f\x2d\xcc\x8a\x8b\x11\x87\x58\xaf\x90\x8f\xfa\x8a\x5d\xf9\xc8\xb7\x5c\xee\x60\x83\x14\xbe\xa6\x6a\xd9\x3f\xf0\x4b\x9e\x22\xff\x3d\x77\x65\x8f\xe1\x9c\x7c\xe2\x74\xff\xff\xcd\x7f\x0b\xbb\xbf\x79\x5e\x97\x7a\xdd\x7f\xec\x93\x0f\x05\xe6\xa8\xe9\xab\xc7\x93\x61\xa9\xb3\xd2\x18\x53\xe1\xa6\x01\xf6\xb2\x55\x1c\x49\x17\x75\x4a\x63\x6c\x79\xb1\x91\x9b\x8b\x8d\x85\xdb\xbb\x45\xac\x24\xa1\x68\x8e\x2a\x73\xf6\xb4\xd9\x9e\x69\x9f\xfb\xec\x97\x48\x56\x75\x82\x09\x81\x08\x99\x54\xa1\xfb\x62\x7a\x49\xfd\xbe\xde\xd8\xf3\x3c\x4e\x36\x51\xe8\x4f\xb9\x8b\xc1\xc0\x5b\x36\x90\x62\x62\x25\x73\x69\x3c\x12\x04\xae\x0c\x13\xdc\xa5\xaa\x7d\x27\xb8\xd3\xf9\xc4\x3d\xc9\x33\x05\xfd\x51\x43\xea\xe5\x4a\xc8\x3d\xe7\xae\xac\x80\x82\x61\x8c\x7d\x4e\xe6\x1c\xe7\x93\xe2\xc4\x42\xdc\x56\x55\xb4\x61\x70\x32\x40\xa3\x80\xa0\xaa\x8f\x06\x48\x72\x80\x89\x42\x0b\xfd\x09\xa0\x9d\xc1\x84\x24\x34\xe4\x41\x12\xf2\x2f\x9f\xdf\x16\xe6\x11\x37\x2d\x69\xc2\x6f\xdd\xfd\x39\x41\x0e\xc2\xd8\x6a\x9f\x85\xd1\x33\x2b\x98\xd9\x28\xf5\xda\x0e\x91\xe4\x85\xf6\xb7\xc8\xd0\x41\x36\xfb\x6a\xb5\x93\x91\x15\x13\x0a\x0b\x4f\x6e\x8d\xc0\xc0\x70\x14\x95\x2c\x2b\x82\x06\x50\xcf\x94\x02\xe6\xee\x5c\x5f\xf1\xf7\xad\x64\x7f\xca\xdd\x32\xe0\xb0\x76\xcb\x29\xf4\x61\xfe\xc6\xd4\xe4\x22\x2c\xea\x81\xb7\x00\xbc\x36\x61\x93\xec\x14\x0c\x9f\xf6\x4a\xb5\x58\x0c\x8c\xaf\xea\x3d\xca\x12\x7d\x97\xfd\xca\xe7\xfd\x51\x55\x6f\x25\x55\xd7\xf6\x1a\x44\x9e\x93\xaf\x9c\xea\xc0\xbd\xbc\xdc\x28\x5b\x17\x5c\x8c\xb7\x68\x65\xe7\xf2\xda\xd9\x95\x44\xad\x68\x91\x27\xb6\x56\x4d\xed\x11\x97\x63\x50\xf9\xa8\xf5\x00\x8d\x8f\x82\x3f\xe8\x7a\x2c\x53\x17\x17\x0a\xa1\xa8\xa2\x26\xca\xea\xca\xa1\x80\xee\xed\x9d\x70\x37\xc2\x9d\x4e\x0b\x23\x50\x21\x07\x77\x78\x8a\x23\x9c\xbb\x91\x05\xd1\x98\xb9\x7a\xc3\x10\x81\x09\x73\x61\x8b\x90\x94\x52\x6a\xb7\xc4\xa8\xef\xc3\x9d\x8d\x62\x2f\x90\x64\x34\xf0\xe1\x32\x47\x6d\xe1\xc9\x19\x77\x63\x8c\x49\x50\x41\x60\xcc\xad\xac\x30\x09\x30\x51\xf8\xa2\x92\x59\x5b\x6e\x12\x60\x88\x72\x71\xc2\xdd\x0c\x8f\x98\x5b\x5d\x63\x92\xa9\xac\x89\xf5\x74\xbc\xe1\xd6\x1b\xa4\x83\x70\x4e\x7e\x84\x73\x86\x3c\x6f\x1f\x24\x99\xd1\xbc\xef\x69\xbc\x71\xc7\x9a\x70\x35\x98\x79\xdf\x93\x6c\x4a\x07\xea\xc3\x4c\x8f\xf6\xd5\x8f\xca\xc4\xe8\x60\x81\x30\xf9\x5c\xe0\xd9\x46\x28\x6e\xae\x7d\x59\x24\x26\xbf\x73\xaa\xef\xa3\xd0\xe7\xea\x2f\xe0\x64\x6e\x47\xfc\x32\x49\x62\xce\x04\xac\xcb\x09\xd3\xda\x6e\x6e\x9e\x81\xb0\xc6\xea\x9c\xbc\xe6\x74\x33\x8b\x20\xc6\xb5\xd5\x9b\x90\x15\x17\xa0\xfe\x41\x57\xda\x79\x00\x91\x48\x98\x58\x11\x85\xa1\x22\x27\x6f\xd5\x46\x66\x42\x24\x92\x15\x9a\xc8\x36\xdf\xa1\xe4\x7e\x19\x59\xa6\xbb\x83\x16\xc8\x10\x81\x62\xe7\x74\xc5\x84\x7f\xd4\x6a\xdf\x5e\x1c\x37\xac\xdb\x89\x90\xbd\x2b\x08\xf4\xdb\x9b\x26\x71\xa8\x78\xf9\x17\xe5\x40\x51\xbb\xe0\xf1\x4d\xa3\x68\x5f\x12\x17\x9e\xd1\x80\xa3\xbb\x53\x13\xa0\x8e\x3e\xbb\xdf\x23\x82\xef\x76\xd8\x2c\x3c\x0d\x30\xd6\x5e\x06\xef\xd4\x4a\xa4\xeb\x58\x31\x57\xd9\x22\xb9\xaa\xcc\xb5\x81\x5b\xda\x9e\x93\x19\xdc\xf5\x80\x4d\x04\x0f\xd8\xec\x56\x7e\x3e\x44\x26\x07\xd5\xdc\x8c\x85\x70\xb1\xa0\xaa\x3f\x8a\xdc\xbd\x14\x1b\xe9\xec\x35\x1f\x6b\x5d\x0e\x9f\xd8\x7b\xd2\xc1\x3a\xcd\x20\xf4\x6e\x12\x41\xc0\xc1\xfc\xee\xb0\x24\xe9\xe8\xc4\x9b\xb5\x05\xc1\xbb\x1f\xd6\x60\xf3\xc1\x04\x39\x2e\x22\x25\x2a\xe1\x1e\x8b\x79\x2a\xb3\xd2\x47\xc6\xe8\xc1\xf4\xa5\xc7\x96\x66\xaf\x60\x30\x10\x06\xd8\x4f\xab\x3e\x24\xcb\x69\xef\xa0\xdd\x37\x63\x95\xf2\xd2\x7b\xac\xbc\xfe\xe2\xa3\xef\x66\xc7\xea\x7f\x88\xac\x58\x08\xa7\x71\x70\xdc\x0a\x00\xa4\xf0\xcc\xee\x8d\x5b\xee\x18\xa4\x26\xe9\xb7\x86\x34\x59\x83\x8a\x26\xf1\x7f\xe4\xee\xa3\x17\xef\x4e\x3e\x9f\x9d\x6e\x60\xea\xaa\x06\x45\xe5\x0d\x14\x80\x13\x79\x84\xf2\x47\x0a\x75\x18\xb0\xdd\xb3\x51\x01\xd5\xdf\xdb\x2d\xf7\xc0\x94\x06\xad\xea\xaf\x7b\x9a\xbd\xbb\x4f\xe3\x3b\xd7\xee\xfd\xb5\xa5\x91\x5b\xc6\xbd\x63\x85\x23\x32\xc5\xb4\x46\xf2\xc6\x07\x07\x29\xdd\x86\x67\x13\xff\xda\x80\xaa\x78\xf2\x5b\x47\xb5\x5e\x2e\x59\x6a\x06\x55\x69\xc7\x33\x19\x58\x47\x9f\xae\xed\xd5\xe7\xfd\x36\x05\x1a\x38\x3b\x4d\x93\x34\xe4\x29\x0f\x6b\xfe\x4e\xed\x8e\x4d\x0b\xce\x76\xbb\x28\xde\x8d\x2e\x17\x76\xe2\xef\x00\x8a\x3b\xdc\xf0\x8a\x52\x80\x8b\xee\x2b\xa4\xaf\x06\x3a\xa7\x91\x08\xee\x2d\x0b\x56\x91\x9d\x88\xbe\xe2\xb1\x55\x00\xce\xb8\x87\xb6\xe3\xee\x0a\x0d\xbb\x03\x81\xdf\x4b\x40\xcc\x31\xbf\xe4\xa9\x8c\x02\x16\xbf\x88\xa3\xb9\xf0\xd1\x32\x0a\xc3\x98\x2b\xf4\xd6\xa4\x2a\x66\x0f\x3e\x80\xb8\x5c\xa8\xa5\x85\x91\x6d\x05\x2c\xaf\x6e\xa9\xb4\x37\x40\x4a\xa8\x40\x14\x01\x05\xf9\x46\xb7\xd4\x2d\x4a\xbb\xec\xb5\xfb\x61\x5e\x94\xd6\x98\x0a\x62\xef\x22\x1d\x0e\x63\xbd\x5a\xf1\x14\x78\xea\xda\x33\x45\xd7\xbd\x43\x88\x3e\x04\x85\xef\x1b\x1c\xf7\x34\x32\x7e\x21\x1f\xe4\x42\x8c\x31\x91\x6d\x47\xe2\x2d\x27\x75\x1e\xa6\x7a\xc2\x8c\x92\x12\xe7\xe4\x17\x0e\x2f\x0e\x1d\x63\xf2\x42\x7f\x3d\xd6\x94\xf7\x0d\x2f\x49\xea\x92\x2f\x13\x0c\x2e\x05\x5a\xe3\xc5\xbd\x60\x11\xc5\x61\xca\x05\xa8\x86\xae\x52\xa6\xa6\x7d\xaa\xb6\x80\xb6\x2c\x46\x21\x49\x6b\x0f\x5b\x71\x32\x46\xb6\x0e\x22\xa8\x56\x03\x11\x14\x85\x95\x27\xac\xb6\xa7\xf2\x0b\x6f\xc6\xc2\x85\xf7\xb0\xac\xa5\xc1\xb1\x3f\x17\x3c\xb8\x98\x26\xd7\x36\x1c\x49\xeb\x56\x6e\x79\x58\x21\x27\x29\xc8\xbc\xc2\xbc\x95\x50\xb6\xb3\xb3\x4b\xfb\xc2\x44\xeb\x52\xbe\x80\xe1\x9a\x13\xb1\xce\x78\x6a\x5e\xbc\x40\x22\x11\x1c\xe5\x77\xb4\x0a\x87\x02\x91\x59\x92\xfa\x02\xde\x7a\x2b\x9c\xc6\xfe\xe0\x74\x3c\x46\x96\x59\x45\xa4\xe0\x56\x27\x64\x8c\x0c\x57\xab\x00\x6b\xd8\x5a\x95\xaa\x79\x5f\x44\x2c\xf3\x3b\x99\x90\x97\x8a\x9d\x52\x64\x78\x95\xf9\x9c\x8e\x27\xda\x50\xff\x0a\x6e\xd2\xdc\xcb\x4e\x59\x66\x7a\xaf\x5f\xb0\xd1\x7b\xfd\x92\x7f\x06\x7e\xe4\x3e\x76\xab\x7c\x18\xb0\xc9\xa8\x05\xb5\x9a\x99\xaa\xb9\xa6\x81\xaa\xb9\xa0\xc1\x5f\x66\xd4\xb6\x69\x50\xd8\x9b\xc5\xfc\xda\xc4\x93\x49\xb3\x9e\xd9\x92\x28\x27\x7f\xf0\x02\x29\x31\x78\x0a\x68\x67\xcf\x6f\x38\x31\xf2\x6e\x6d\x43\xfb\x9b\x25\x4b\xe7\x91\xf8\x0c\xd7\xbf\x07\xfd\xe2\x0e\xea\x2b\xb5\xb1\x34\x7d\x8a\xc2\x8a\x66\x85\x13\xd4\x33\x03\x81\xd8\xd4\x86\x8f\x14\x94\xeb\x3b\x6e\x91\xdb\xd0\x9d\xa4\x64\x33\x16\x13\x7f\x2f\x1d\x0b\xd0\x55\xb7\x46\x0b\xad\x60\x2a\x56\xdd\x73\x80\xa8\x02\xb6\x8a\x24\x8b\xa3\xaf\x5c\x63\x4d\xc5\x1f\xca\x31\x9f\x00\xff\x67\x9e\xb5\x6c\xe5\x2f\xd5\x9c\x5b\x67\xfb\x0e\x5e\x51\x33\x4f\x5d\xa9\xe9\x29\x7e\xbd\x57\xc1\x39\xc5\x14\x6b\x9c\xf2\xc2\xdd\x5b\xb7\x0e\xdf\xfa\xf6\x36\x43\x0b\xa1\xbe\xf7\x34\xe5\x4b\x04\xd7\x75\xf5\x63\x38\xfe\xc0\x7b\x9a\xe7\x44\x47\x0d\x64\x0d\x71\x88\x57\xaf\x47\x70\x4f\x09\x13\x99\x97\x25\x4b\xae\x10\x5a\x5a\x60\x70\xdc\x72\xf7\xa8\x49\x1b\x5b\x2f\x3b\x7c\xe1\x04\x24\x14\x85\x61\xe1\xaf\x42\xf4\xb3\x28\x56\x40\x7d\x0e\x9c\x8d\x66\xc1\x6d\xd7\x95\xd1\x94\xbd\xb7\x21\xf0\x77\x76\x77\x41\x03\x5d\xb9\x25\x00\xad\x89\x96\x8c\x14\x32\xd7\xb1\xed\x71\x4e\xbe\x58\x89\x29\xf3\x39\xb1\x28\xb7\x71\xb8\x79\x43\x6b\xb7\xad\x99\x1b\x4b\x33\x30\x9f\x17\x9f\x5d\x59\xe7\xc4\x72\x4c\x2c\x4a\x28\x31\x42\xff\xce\x87\x9e\x5a\x6e\xe5\x25\xeb\x55\x2f\x12\xb3\xc4\xd1\xdc\x9b\x03\x32\x02\x0f\x7b\xd9\xb2\x88\x2a\x55\x5b\xe8\x41\x9e\xb7\xc7\xdd\xdb\x6a\x7b\xca\xc2\x39\xaf\x1e\xec\x13\xee\x32\xcf\xe2\x2b\xdc\x06\xf2\x8b\xaa\x93\x7f\xa1\x0e\x28\xd1\x2e\x3c\xe9\xa9\x67\xda\xce\x87\x56\x1b\xb0\xb8\x38\x27\x16\x41\xab\x43\x56\x34\xa0\x25\x2d\xe6\x69\x10\xde\xdf\x5c\x79\x1d\x43\xd7\xd0\x8d\xe9\x6f\x7d\x6a\x71\x3e\x7c\x59\x7b\x6f\x91\xa2\x17\xb0\x60\xd6\x1c\xf5\x33\xa7\x97\xee\x4b\xae\x8f\xf7\xaf\x6a\xa3\x94\xde\xa1\x3e\xa7\x08\xe5\xd5\xf0\x93\x33\xb7\x86\xa1\xac\x8b\x2b\xec\xad\x11\xb8\x47\xc1\x76\x40\xe6\xfe\x92\xf5\xd8\xd4\x8a\x39\x78\x10\x33\xad\x3d\x88\x99\xd0\x4d\x41\x2c\x2a\x1b\x86\xd8\x3d\x54\xd8\xec\x18\x58\x6a\x3b\x1d\xfd\xd7\xd3\xf4\xaa\xf1\xb3\xae\xfa\xd1\x27\xab\x92\x94\x94\x9c\x59\xb7\x95\x46\xff\xcc\x9b\x5c\x40\x85\x14\x26\x39\xd1\x9d\x11\xeb\xff\x59\x79\x2a\x34\x05\xe3\xe0\x4f\x10\x09\xf4\x18\x93\xff\x70\x78\x5b\xf1\x27\x8e\x87\xcc\x7d\x5a\x3c\x11\xfa\x0f\x05\xdd\x1b\xb6\x8c\x77\xe9\x8e\x8c\x78\x5c\xe5\x05\x12\x31\x8b\xe6\x3d\x55\x09\x81\xfb\xd7\x3f\x1a\x8b\xf9\x0a\x0a\xd8\xc5\xfc\x1f\xb5\x98\xff\xe0\x98\xfc\x5b\x75\xa5\xc7\xd9\x1a\x56\xe8\x4f\x6a\x46\x48\x46\x65\xa7\x23\x3d\x35\x9e\xbf\x48\x7c\x17\x07\x56\x78\xd1\x53\x30\xf6\xb1\xdf\xae\x59\xbf\x4d\x78\xfe\x0f\xf0\x4f\x8a\x4c\xf9\x99\xa2\x15\xc9\xea\xc6\xb7\x76\x99\xc8\x95\x98\x54\x9e\x53\x8b\xc8\xe0\xb8\xdf\xc7\xad\xfa\x83\xcf\x5b\xb7\x1d\x49\x18\x65\x6c\x1a\x2b\x12\x9c\xe5\x24\x1d\xa1\x57\xc9\x2a\xe2\x21\xf2\xd5\xc7\x8d\x23\x13\x27\x88\xa3\xd5\x34\x61\x69\xb8\x43\xc2\xfa\x1f\x4e\x0a\x58\x97\x7b\x62\x2f\x23\xb0\xd6\x8a\xaf\xd6\x2f\x85\xfe\xab\x79\xba\x1e\x72\xb4\xb4\x77\xf4\xbe\xde\x08\xbb\xcf\xd5\xee\xd5\xf8\x37\x2f\x77\x2c\xec\x04\x66\xdc\x57\x72\xb3\x69\xfe\x5b\xde\x1a\xa5\x9b\xbc\x7d\x67\x7e\xf3\x92\x2e\x97\x4c\x84\xbd\x77\x91\xe0\xce\x8f\x31\x9b\xb7\x8b\xc4\xbb\x25\x74\x78\x88\x70\x05\x89\xf7\xde\x42\xaa\x9a\x84\xad\xb2\xf8\x4f\xdd\xea\x5c\x14\xca\xc6\xbb\x65\xac\xb1\x9c\x18\x7f\x0e\x2e\xe9\xa5\xfb\x5f\x8e\x87\xff\x6d\x1c\x4b\x3d\x67\x1d\x12\x58\xfe\x39\x9c\x6a\x16\x7e\xa6\xa1\xf7\x30\x7c\xba\x7b\x17\x70\x69\x7c\x5f\x0c\x12\x6b\xc5\x61\x39\x61\xf6\x21\x72\x63\x47\x87\x38\xaf\x7f\x72\x3b\x34\x94\x8e\x10\xc5\x99\xa0\x76\x7d\xd0\xba\x21\xcc\x2d\xe3\xde\x11\x22\x56\x59\xc6\xaf\x57\x29\xe8\xca\xe0\xa3\xad\xaf\xa9\xd1\x45\x60\x4c\x52\xb5\x26\x6e\xf9\xb4\x73\xfd\x94\xf1\xf2\x41\x39\x7b\x6b\x24\xb9\xb0\x86\xb0\x82\xbe\x1b\xdb\x59\x5a\x58\xf9\x2c\xa5\xd5\x19\x6b\x71\x21\xe0\xa9\x38\x93\x59\x50\xf5\x7c\xfb\x2e\x02\x33\x77\x11\x0c\x8d\xfa\xdb\xb0\xe6\x67\x45\xde\x80\x59\xb8\x53\x95\xb3\x75\xc4\xee\xd0\xe7\xfc\x05\x05\x58\xd5\x5e\x70\xd8\xda\x3a\x43\x64\xb3\x48\xf9\xcc\x47\xdf\xa1\xae\x66\x5f\xdb\xad\x1b\x07\x08\x04\x6f\x5b\xc4\xaa\x5d\xbf\x5d\x79\x63\x41\xf5\x91\xbb\xda\x21\xab\xf4\x0a\xb4\x6f\xad\x33\xe9\x89\xe4\x0a\xbb\x18\x13\xe4\xb0\x79\xd2\xee\x4b\xfa\xb0\x6e\xde\x73\x77\xc0\x0f\xbf\xaf\x46\x6b\xf3\x78\xd1\x23\x04\xd7\xda\xe5\x04\x56\x43\x67\xbb\x10\xd7\xdd\x16\x9f\xbb\x46\x0d\x7b\xe5\x9e\xab\xc1\x77\xea\x24\xc3\xda\xc3\xde\xf7\x15\x7a\xc7\x32\xe9\x94\xb0\xbe\xb7\xcd\xd2\x57\x53\x01\x09\xe1\x2d\xb1\x68\x87\x81\xa9\x40\xe7\x2c\x2f\xf4\x9a\x6d\xef\xb6\x56\x75\x91\xcd\xd8\xb8\xe8\xbb\x1f\x8f\xd5\xff\xea\x1a\x18\xd5\xfb\x79\xc0\xe3\x76\xaf\x76\x25\xf9\x99\x90\xf4\x9a\xd9\xd5\x97\x35\xcd\x86\x6d\x9b\x6d\xa5\x86\xb6\x04\x9b\x0a\xa0\xfa\xbf\x23\x56\xc9\xc3\x5e\x5b\x2f\xb5\xff\x0f\x50\xa8\xde\x65\xab\xdb\xc2\xbf\x20\x69\x82\x2a\x00\x6e\xca\xee\xd8\xbc\xdf\x30\xd4\x86\x5d\x60\x6b\xbc\x95\xfc\xbf\x71\xd0\x6d\xd1\x37\x1e\xb8\x2b\xee\x59\xff\x94\x07\x49\x1a\xfe\xe5\x0d\xf0\xad\x48\xa7\x22\x02\x2a\x2c\xb3\xe0\x2c\x96\x0b\x20\x90\xfa\xd3\x93\xc9\x17\x25\xdf\xbe\x62\xf0\x5a\xd0\x7d\x2a\x63\xc0\x8d\xea\x64\x3f\x34\xd4\x4a\xa5\x8a\x7d\x40\xef\xae\x1e\xbe\x09\x01\xdf\xd9\xd2\x43\x71\x2c\xc6\x45\x00\x02\x7d\x2b\x0a\x38\xb1\xa4\xc9\x89\x3d\x58\xb4\xfd\xeb\xfc\x57\x2a\x49\xc9\x92\xec\x62\xbf\x0c\xd7\x15\xab\x71\x16\x6a\x1a\x4e\xe0\x11\x20\x5f\xeb\x7a\xde\x27\x29\xd7\xcf\x73\xb7\xd1\xa2\x43\xbb\xa6\xbb\x24\x1f\xcd\x60\x5f\x67\x15\xc7\x60\xab\x51\xb1\x86\x57\xd4\xf7\x0e\xf9\xd2\xb1\xff\x1e\x1c\xdb\x1f\x88\x54\xf5\x6d\x87\x3f\x1c\xab\xa4\xaa\x9e\x6f\xa0\x12\x1a\xd6\x9e\x29\xcb\x78\x1c\x69\x15\x77\xdd\x52\x93\x13\xd0\x06\x3a\x88\xb0\x11\x8a\x15\xd7\xe5\xa3\x65\x92\x02\x01\x88\x80\x51\xbb\xcb\xeb\xe0\x3e\x9f\x83\x56\xe6\xa2\xaa\x3a\xb9\xc3\x60\x54\xdd\x07\x8f\x28\x7a\x54\xf1\x43\xd2\x8f\x53\x60\x92\xa9\x25\xd2\xb7\x94\x38\x01\x4b\xf3\xff\x07\x3c\x0f\xee\xc4\xc4\xb1\x24\x1b\xbd\x91\x8c\xfa\x78\x4f\xb1\xd4\xc5\x96\x4a\x1f\x18\x4a\x41\xb2\x74\xce\x25\xbc\x29\x8f\x72\x4d\x12\xda\xd0\xc6\x69\xb9\xd9\x94\x34\x57\x65\x40\xcb\xf0\x13\xf7\x88\x78\x7f\x87\x3d\xf6\x75\x94\x05\xaa\x3f\x1e\x3a\x0f\x33\xcd\x9e\xc1\xfc\x8a\xc2\x0f\xb1\xa8\xc2\xa6\x94\x0f\xe1\x52\xee\x42\x6d\x91\x74\xf9\x98\x4d\x94\x18\x69\x46\xac\xc7\xa0\xd8\x21\x95\x1e\x65\xaf\xd3\x64\xb5\xe2\xe1\x7d\x2c\x8e\x3a\xa4\xbf\x98\xa7\xe3\x35\x73\x98\x13\x64\xea\xb6\x86\xb3\xda\x1e\x83\x61\x1b\xe0\xff\x7c\xf3\x2e\x51\xa0\x76\xbc\xbd\x5e\xa4\x60\x04\x01\xab\x75\xb3\x36\xa1\xe1\xd9\xd7\xf4\x9b\xdd\x68\x35\x88\x28\xed\x80\xf0\xdc\x1d\x2f\x9f\xb3\x4b\xcd\x73\x76\x82\xa6\x2d\xcf\xd9\x71\x2a\xb4\x79\xd3\xcb\x82\x94\xad\xf8\xa7\x24\x89\x87\x6c\xcc\x27\xb7\xb7\xae\xfa\x43\x37\x32\x91\x2c\xf6\xfb\xf6\xa9\x9f\x7e\x8e\x89\xca\xf0\x20\xbd\xdb\xd5\x3f\x74\x66\xb7\x6b\x5f\xaf\x8b\xf0\x26\xf5\xb8\x1b\x95\xaf\xd7\xa5\xf0\x7a\x1d\x90\x0c\x12\xd7\x9f\xe6\x2b\xc7\x1a\x9b\xb1\x26\x34\x6e\x1d\x6b\x62\xc6\xda\x5c\x50\xef\xf7\x64\xfa\x4d\xa3\xae\x8c\x33\xae\x8f\x33\x86\x71\x5a\x0d\x69\x8e\x01\xe0\x44\xfc\x2f\x42\x1e\xee\x90\xd6\xa0\x2f\xf5\x3c\xe4\x84\x8e\x27\x6a\xdc\x72\xa2\x6f\x2e\x6c\x9a\xf3\xf6\xb7\x41\x41\x8a\xa0\x4f\x26\xac\x6f\xb1\xc9\xf5\x7d\xf2\xff\x93\x05\x82\x29\xed\x58\xa4\xbf\x34\xb9\xca\x64\xfa\x76\xa6\x9b\xbc\x36\xad\x87\xac\xe7\xdf\xa6\x31\x38\xe5\xe9\x65\x14\x70\xc7\xe2\xc4\x9b\x76\x5c\xb8\x8e\x4d\x85\xcf\xdc\x65\xe4\x2e\x6a\x1b\x47\x77\x11\xdb\x86\xc4\x5f\x5a\x14\xcd\x01\x24\xc8\xd9\x87\x38\x4b\xb0\xcd\x0b\x77\x33\x47\x53\x98\x0c\x8c\x17\xad\x03\x5c\x58\x5d\x8f\x1a\xa1\xb8\x6b\x84\x99\x2c\xae\x12\x6b\x22\xcd\x8d\x74\x00\x76\x91\x40\xd6\x75\x76\x06\x3e\x05\x78\x5e\xe9\x88\xd4\x56\xb7\xbe\x96\xf4\xd2\x0d\xa4\x66\x25\x17\x7f\x86\x95\x34\x33\xfb\xeb\xcc\xe4\x5a\x6e\xbb\x2b\xdc\x61\x9c\x20\xc5\xcd\xf4\x33\xf3\x92\x5a\x73\x27\x38\x91\xd0\xee\xcc\x4a\x5e\x07\x7d\xb5\x9e\xca\x52\xd2\x4a\x14\x8b\xe2\x21\x36\x95\x62\x2e\x56\x6a\x67\x85\xe8\x2b\x37\x57\xf9\xe9\x73\xc1\xaf\x9c\xd7\x3a\xba\xac\x92\x43\xce\x5e\x15\xb1\x5c\xc8\xab\x5f\x5e\x17\x8d\xfc\x92\xa4\x17\x91\x98\x3b\x61\x94\x42\x84\x3e\xc5\x10\xa6\x3c\x4e\x58\xa8\xed\x01\xa7\x5a\x15\x57\x94\xaf\x59\x09\x1c\x5d\xb2\xad\x7b\x3e\x42\xa6\xea\x6c\x1d\x23\x1f\xe2\x94\x15\x3f\x73\xb8\xb3\xa7\x9b\xaa\x4d\x09\x74\x16\x65\x41\x27\x68\xeb\x2d\x27\xc1\x62\x2d\x2e\xb4\x3d\xc8\xd6\x7c\xc3\x59\xe8\x40\x7a\xa6\x18\xa2\x68\x69\x82\x6f\xb6\x94\x52\x99\xf6\x71\x1a\xc5\x0e\xa7\xe9\x1a\x5c\xe2\xeb\x45\x7f\x79\xf1\xce\x29\xf3\x54\xc9\x79\x92\x26\x6b\x19\x09\x5e\x2f\xf8\x93\x4d\x56\x65\x32\x99\xa4\x6c\xce\x3f\x73\xb5\x65\xa3\x44\x54\x16\x0b\x32\x9c\xd4\xe6\xa0\xdc\x10\x1a\xb0\x03\x2e\x99\x60\x73\x9e\x66\xfe\x46\x83\xf2\xb3\x09\xd3\x5e\x87\xeb\xce\x48\x89\x0f\xb2\x86\x3f\x90\x57\x3b\x11\x21\xf8\xbe\xa2\xd2\x40\xbf\x59\xa7\x71\xe3\x6c\x99\x90\x44\x2e\xd7\x87\x48\x87\xa0\x81\x23\xa4\x8e\xa3\x3a\xe5\xf7\xc5\x2e\xdc\x8d\xb1\xee\xd2\xf3\x15\xd8\x8c\xe7\x84\x61\x08\xff\x85\x71\x6e\x39\xa0\x06\x2c\xb3\x8b\x68\xa5\xf8\xda\x9c\xac\x64\x19\x68\x55\xaf\x88\xfc\x3b\x2c\x2c\xad\x26\x8a\xd3\x86\x12\x7d\xd1\x03\xcf\x0b\xd2\xce\x87\x7f\xbb\x85\x65\x97\x20\x56\xb0\x19\x4b\x09\x6c\xcd\x26\x27\x82\x32\xa3\xf0\x4f\xcd\x93\x10\x10\x68\x87\xfb\x82\x24\x94\x79\xf5\xed\x45\xa2\xb2\x4c\x32\x52\x67\xd8\x4f\x48\x56\x14\xfb\x9c\x5c\x95\x56\x60\x05\x59\xfd\xe6\x45\x36\x8a\x5c\x49\x78\x3b\x47\x7b\xcf\x3a\x2f\x1a\x56\xd6\xc2\xf1\xa5\x07\x83\x2e\xbc\x0c\xae\xc0\xab\x1a\x1d\x1e\xff\x53\x71\xd1\xed\xa6\x07\xad\xfb\x6e\xb8\xd2\x40\x38\x27\x94\x13\x35\xc4\x14\x42\x41\x2b\x62\x16\x2a\x12\xb2\x92\x78\xb8\x6a\x92\x1e\xb0\xf5\x68\x7b\xd1\xfc\x3e\x7b\x51\x1b\x6d\xb9\x2b\x62\xe7\xf6\xce\x1a\x6f\x20\x38\x94\x8e\x69\xe7\x57\xa9\x95\x24\xc8\x1a\x9e\xd2\xb5\x50\x08\x4b\x51\x06\x75\x22\x0d\x3a\xf9\xac\x53\x9d\xb7\x55\x82\x41\x1e\xd2\xde\x74\x1d\xc5\x61\xa3\xb5\x97\x2a\xed\x5b\xda\x62\xd5\x73\x56\x69\xa8\x76\xfe\x50\x3e\x31\xe8\xa3\xda\x54\xed\xfc\xd5\xdc\x5e\x0a\x32\xcc\x2b\x9e\x09\x29\xe5\xf7\x59\x56\xc3\x86\x4d\xcd\xb4\x5f\x21\xbd\xc2\x28\x7a\xb6\x48\xb0\xcc\x35\xfa\x98\x49\xca\xdc\xc3\xa7\x98\x5c\x4b\x70\x19\x98\x19\xfe\x62\xaa\x36\x81\xbe\xd9\xe2\x73\x92\x71\xf9\xa3\xfe\x6e\x0e\x5e\xc9\xef\x6f\x40\xe7\x77\x43\x04\xdd\xb0\x38\xf6\x8d\x90\x56\xf7\xef\x62\x71\xec\x14\x80\xbc\x96\x1e\xf3\xa6\x52\xe0\x2d\xe7\xd9\x5a\xb8\x8b\xa6\x83\x99\x8e\x7c\x6d\xbb\xd3\x6f\xc5\xe5\x64\x2d\x16\x26\xc1\x76\xbc\x57\xeb\xb9\xc8\xff\xdb\xfb\x1f\x40\x64\xeb\xdd\xcb\xf3\x9f\xbb\xef\xcf\x0b\x8f\x81\x9b\x75\x1c\xb7\xf2\xc1\xba\x48\x31\x7a\x82\xbe\xd8\x4f\x64\xed\xf9\x37\x60\x2c\x3d\xc0\xe4\x44\x2f\xde\x8d\x59\xbc\x4b\xb5\x78\xdc\x50\x33\x9f\x93\x79\x9c\x4c\x59\xfc\x25\x8d\xcd\xf2\x41\xdc\x32\x10\x53\x58\x85\x9c\x19\xa9\x60\x7d\xc7\x3b\xe2\x7f\x2e\x26\xea\x89\x0e\xe6\x85\x09\x72\x10\x59\xdb\xc8\x5d\xf6\x16\xb3\xa0\x8c\xa4\x54\x78\x8b\x24\x93\xf0\x38\x93\x25\xa3\xf0\x1e\xd3\x2a\x4d\x64\x12\x24\x31\xc9\xa8\xf0\xb2\x4a\x18\x40\x12\xd0\x17\x69\xca\x6e\xbc\x59\x9a\x2c\xdd\xac\xa0\x0d\x77\x3d\xd7\xfa\x20\x12\x57\xd0\x59\x59\x55\xc4\x45\x04\xed\xef\x57\x2e\xf3\x96\x97\x7c\x31\x26\x41\x71\x0d\xa0\x4d\x37\x52\x98\x86\x75\xec\xa9\xe0\x3e\x25\xe2\x43\x94\x84\xe5\x5e\xe6\xd8\x1a\x1c\xee\xd7\x1a\xe6\xe4\x42\xed\x98\xc1\x51\x1f\x93\x2b\x49\x5d\xe6\x0e\xfa\x70\xcd\xef\xf8\x31\xc6\xe4\x54\x6f\xa2\x2b\xb3\x89\xce\x80\x71\xd8\x12\x33\xad\x20\x29\x49\x14\x5e\xfb\x8c\x94\xb2\xb8\x0e\xcf\x5e\xdc\x08\xde\xa1\x81\x8c\x6a\x1a\xc8\x94\x1c\x60\x92\xd1\x68\xdc\x9f\x90\x80\x46\xe3\xc1\x84\xac\x29\xd2\x2c\xaa\x76\x3c\xce\x7a\xa8\x7c\x41\x06\xf5\x2a\x97\x0b\xff\xea\x42\x6b\x5d\x6d\x14\xfa\xeb\x2a\x74\xeb\x7d\x07\x89\x90\x2c\x12\xb0\xcf\xab\x6e\x1e\xb2\x78\x59\xe6\xff\x62\xfd\xc6\x7c\x52\x28\x7e\x5b\xfa\x93\x95\x6b\x50\x19\xd1\x42\x9e\xff\xea\xf4\xd4\xe3\x59\xc0\x56\xdc\x5d\x63\xa2\xbd\x5c\x01\xad\x05\xee\x5e\x86\x2d\x7f\xb1\x64\xd7\xfa\xe2\x96\x76\x03\x27\x8a\x77\x30\x8a\xf3\x98\xcf\x64\xbb\xfd\x09\x4d\xed\xc9\x7e\xc9\x67\x49\xaa\x58\x7b\x00\x97\x89\x7b\xec\x96\x9a\xf3\x86\x4b\x4c\x95\x94\xd6\x66\xc8\xc7\xd2\xce\xb0\x60\xee\xfe\x1a\xc7\x5f\x1c\xba\x07\x69\x95\x4f\x15\x41\x28\xf7\x7a\x4e\xb4\x19\xa7\x12\x9f\xe2\x95\x84\x01\x15\x94\xef\x5f\xa7\x1f\x3f\x98\xc7\xe7\xe2\x24\x60\xb1\x91\x72\xbc\x39\x97\x6f\x25\x5f\xba\x1c\xdf\xde\x42\x19\x7d\x89\x3c\x9a\xdd\xb8\x12\x57\xf4\xef\xd5\x63\xc1\x70\xa9\x16\x83\x53\x21\xd4\xa9\x88\x69\xaa\xf5\xf2\x69\x45\x2f\x5f\xad\x7d\x32\x9b\xf1\x40\xe2\xfa\xf3\xdc\x8d\x3e\x63\x3c\xac\x0d\x2f\xb3\xc3\x23\x12\xe7\x64\xcc\x49\x3c\xc1\x64\x1c\x93\x68\x62\x63\x4a\x48\x3a\x2e\x05\x21\x6b\x95\x2f\xee\x15\x19\xe3\xfa\x29\x1c\x7a\x95\x0d\x1f\xce\x6b\x23\xa8\x22\x6b\xa1\x9f\x00\x0a\xf9\xa8\x50\x48\x05\x41\x70\xb3\x39\x7f\x4a\x93\xf5\xaa\xc1\x4a\xbc\x52\x9c\xac\xd6\x4f\xf4\x6a\x3e\xe8\xfc\x7a\xc5\x44\xc8\x43\x84\xc9\xc6\x7e\xdf\xe3\xd7\xef\xd9\x72\x8a\x9e\x28\x9c\x12\x51\xe9\xad\x57\x20\xbd\x3e\x93\x9e\xe9\xc6\x3e\x1b\x61\x29\x99\x3a\x03\xe9\x92\xc5\x88\x64\x14\xad\x92\x24\xee\x55\x0f\x69\x40\x0b\x5d\x52\x11\x9c\x02\x93\x28\xf4\xb3\x3b\x38\x80\x2d\x13\xf1\x89\xda\x68\x05\x52\x69\xdb\xb9\x75\x33\x49\xe2\x56\xe6\x9c\xe6\xf8\x3e\x7b\x09\x43\x4d\xc5\x4c\xbd\xef\x71\x34\xc9\xe1\x96\x76\x15\xc4\x8e\x5b\xb9\xe9\x6e\xe1\x44\xd0\x7e\x35\xb5\x0e\x33\x82\x9c\xf5\x0a\xef\xb0\x4e\xd4\x6e\x65\xb6\x8d\xb2\x21\x26\x02\x4c\x20\x4a\xd7\x0e\x41\xf1\x6f\x34\xd8\xe8\x60\xf6\xaa\x1c\xa0\xf4\xf7\x72\x37\x1a\xd7\x42\x9a\x35\xe6\x3f\xc4\x71\xa6\x84\x52\xfb\xdb\x07\x5b\x0a\x5a\xc5\xf0\x1b\xc5\x73\x5a\x53\x6b\x93\xa4\xf8\xf9\x25\x8d\x49\x44\xb9\x57\xf0\x70\x24\xa3\x15\xf3\x37\x09\xcc\x2f\x7d\x12\xc9\xba\xf6\xd3\x9e\x4b\xb2\xa0\xd6\x34\x4f\x96\xfa\x49\xcf\xe2\xc1\x0a\x99\xbc\x4b\xae\x0a\x53\xbd\xf6\x48\x5b\xaf\x76\x78\xa4\x85\x55\xaf\x33\xeb\x92\x56\x0f\xe0\x5f\x71\x46\xc3\xee\xe2\xde\x87\x1c\x14\x80\x93\x9d\xca\x90\xe6\x36\xb1\x4c\x6d\x5b\x85\x4b\x75\x72\x2c\xd3\x9b\x54\x98\xde\xe8\x0e\x07\x87\x66\x07\xe0\x9f\x7d\x8f\xe9\x76\x99\x93\x07\x7b\x38\x34\xdb\xd7\xcb\xdd\xd6\xc1\x99\x12\xe6\x9a\xec\x56\xf1\x96\xb8\xa8\x32\x5a\x29\xf0\x5e\xf2\xe1\xd3\x1a\x23\xb5\x27\x7a\xba\x09\x34\xc9\xc9\x47\xee\x06\xdb\x2e\x10\x0f\x6f\x4e\xb7\xd4\xb3\x41\x85\x54\x93\xc6\x35\x62\xfd\x70\x58\x80\x68\x9a\xe5\xa4\xcd\x69\xaa\x0e\xee\xac\xb8\x4a\x62\xe8\xb2\x3e\x54\x9f\x6a\x42\x6a\xdd\x36\x58\xa7\x2e\xb2\x71\xb9\xa4\x92\x61\x8e\x05\xbc\x35\x56\x1e\xc0\x94\xaa\x43\x00\x6f\xf2\xd7\x0e\xc8\x68\xe0\x97\xef\xd7\x8e\xc5\xe4\xf6\xd6\x85\xf0\x4e\x1b\x83\x36\xfd\xbe\xa1\x71\xfa\xd5\x7b\xc2\xe1\xb5\x55\x83\x16\xc0\x74\x23\x4d\xa2\xa9\xd0\xa5\x29\xe1\x39\xd9\x54\x22\xb1\xd7\xa5\xea\xd4\xfc\x2e\xc4\xbf\x6f\x61\x7b\xab\x7c\x18\x6b\xc6\xc5\x29\x5e\xb5\x64\x8a\xfd\x8a\x68\x62\xc7\x44\x29\x4d\x1a\x18\xbf\x78\xf6\xb5\xd3\x11\xb7\xb7\x7b\x51\xa7\x93\x8e\x74\x60\x9e\xed\x61\x7c\xb4\x9c\x59\x75\xcf\xca\x1a\xed\x4f\x72\x3c\xf1\x75\x10\x1d\x9c\x0f\x3f\x35\xb5\x51\x45\xb5\x86\x09\xe4\x83\xa4\x97\xee\x27\x23\xa0\x9c\x37\xf5\x54\x64\xd6\xa6\xa3\xb8\xdb\x16\x32\xd2\x11\x85\xed\x55\x1a\x08\xd1\x53\x6a\x64\x52\x6a\x76\x29\x28\x0d\x4b\xdd\x4c\xa4\xdf\x10\x96\xeb\x4c\xf1\x0a\x95\x60\xe2\x51\xa7\xa3\x63\xbb\x3b\xa0\xf9\x51\x68\x50\xa5\xee\x5e\xb2\x0f\x2d\x96\x14\x61\x2c\x29\x76\x3a\x46\x87\x93\x8d\xca\xd8\xe4\x11\x56\x48\xa0\x50\xf3\x24\x5b\x16\x16\x73\x0c\xb6\xed\x2a\x0a\x72\x5f\xef\x34\x1e\x55\x39\xb1\x15\x9b\xf3\x9e\x1e\x07\x6a\x6a\x5f\x48\x6d\x57\x6a\x96\xec\xae\x98\x47\x76\x3e\xa2\xa2\x4e\x62\xe3\xc1\x24\x27\x49\x25\xaf\x36\xac\xbf\xcd\xf4\x78\x66\x2d\x5f\x2d\xc5\xa6\xb2\x5d\xb1\x7a\x2e\x49\x52\xe2\x9a\x1f\x65\x2d\xd2\x13\x1a\x55\xe2\x56\x28\x72\xff\xb5\x1a\xb0\x06\x0f\xaf\x22\x11\x26\x57\xde\x42\x47\xe8\x85\x93\x6f\x42\x65\x2b\x41\x0f\xb8\xef\xcf\xba\x45\x7b\x7b\xd9\x3e\x08\xc3\x4a\x5d\xb4\x1c\x8d\x27\xbe\x04\x36\xa1\x1e\x2d\x53\x27\xd4\xde\x2c\x00\x26\x61\x9d\xf1\x4f\xfa\x9d\x83\xcf\x76\x0b\x67\x10\x73\xd9\xc2\x14\xd8\x05\x70\xfa\x33\xb1\x83\x4f\x04\x5c\x3d\x21\xeb\xad\x9b\xd1\x66\x3c\x88\xa0\x6a\xdf\xfa\x67\xad\x67\x9d\xd4\xe8\x17\x11\x54\xf6\x8a\x08\x6a\xe9\x13\x4d\x2c\xca\x5b\xb4\x49\x45\x6b\x0f\xe2\x3a\x67\x98\x2c\x6b\x9b\x6a\xa1\x36\x55\x48\x97\x6a\x53\xcd\xe8\x52\xb1\xf7\x53\xd8\xb3\x06\xd6\x48\x21\x15\x72\x53\xab\x33\x55\x75\x4e\xe8\x8d\xaa\x73\x49\x6f\x94\x40\xb5\x53\x92\xda\x0b\x8b\x47\x49\xaf\x5c\x4c\xcc\x42\x26\x62\x95\xac\x34\xae\xa8\xbd\x3c\xf2\x81\xbb\xa6\x84\x92\xb3\xe0\xf1\x08\xad\xa5\xc2\xe5\xd3\xde\xfd\x4e\x67\xe6\x72\x9c\x03\xba\x33\x53\xbe\xb0\xc1\xd8\x7a\x03\x88\x59\x08\xcf\x6f\x7f\x9c\x81\xdc\xb8\xc7\xeb\x21\x0c\x8b\x00\x6d\x27\x05\x02\xd7\xde\x3e\x8c\x52\xca\x47\xd2\x57\x88\x58\x12\x36\x21\x63\x3e\xc1\xc3\x4b\x57\x16\x6f\xb3\x1d\xf7\x31\xce\xc9\x95\x1e\xf3\xef\xdc\x9d\x91\x1f\x25\x76\x55\xf9\x70\x57\x44\x35\x3b\xfd\x32\xb0\xda\x9c\xe7\x13\xfc\x4d\x67\x31\x34\xea\xef\x28\x6c\x86\xdd\xda\xae\x7d\xcd\xc9\xa6\xfe\x14\x8b\x7f\x41\x1a\x01\xbb\x48\x33\xd2\xb8\x2f\xe9\xf3\x62\x3a\xba\x37\x46\x9f\x43\x18\x75\x2f\x0a\x9b\x51\xdd\x18\xd9\x54\x06\xe1\x33\x8c\x49\x25\x06\x29\x08\x5a\x95\xc6\x1a\x30\xf6\xa2\x10\xde\x0c\xd6\x40\xde\x6e\xb9\x0e\xbd\xe2\x09\x3a\x45\xe0\x24\xd0\xb7\x7a\x2c\x57\x41\x9a\xe7\xc7\x4f\xc9\xf6\xf9\xf1\x23\x52\x89\x8c\xee\x33\x52\x89\x9b\xee\x07\xa3\x13\x7f\x3c\xa9\xa2\xca\xac\x9d\x17\x6c\x86\x69\x5d\x4e\x7b\x87\x68\xa7\xd2\xfb\x2a\x27\xe8\x45\x18\x16\x01\x58\x35\xb1\xf8\xfd\x3e\x73\x50\xcb\xd9\xed\x3f\x20\xfa\x5d\x04\x87\x76\x9d\xf1\x1e\x68\x28\x7a\xda\x9c\xbf\x37\xc0\xe5\x75\x7c\xa8\x1a\xa9\xaa\x01\xcd\x54\xd5\x35\xcd\x54\xd5\x05\x54\xe5\x80\x46\x7a\xfa\x39\xa6\xe2\xf0\xab\x06\x5a\x10\xc6\x4a\x23\x8c\x50\x23\x8c\xeb\xa2\xef\xb0\x8e\xc9\xf6\xfa\x4d\xd4\x71\xbd\x85\x3a\xc8\x45\x51\xdb\x3c\x2a\xd3\x4b\x0b\xac\xa7\xba\xbf\xaa\x35\x70\xa1\x1a\x38\xa5\x57\xaa\x81\x33\x7a\xa5\x1a\x78\xb5\x8b\x29\x01\x66\x7f\xdf\x46\x62\xdd\xd7\x8f\xe5\x29\xae\xe4\x3d\x7d\x55\x72\x25\x1f\xe9\x2b\xc3\x95\x7c\xa2\xae\xf5\x76\xc0\xde\x5c\x5f\x40\x34\xcf\xf5\x7c\xd8\xd5\x07\xc0\x6b\x04\xff\x52\x09\xe5\x55\x07\xe7\xf4\x43\xd9\xc1\x57\xfa\xa1\x6e\x7a\xda\x89\x2c\xa3\x99\x7b\x5e\xbb\x6d\xc4\xa9\xfe\x6d\x1f\x7a\xeb\x4f\x86\xa9\x8e\xd1\xcb\xa6\x99\xfb\xa9\xc7\x31\xe0\x41\x5d\x68\xd2\xb6\x67\x1f\x42\xd9\xef\xbe\xef\x7f\x48\x0c\x37\xe9\xa3\x48\xc4\x91\xe0\xbd\x69\x9c\x04\x17\x26\x02\x40\x6d\xbf\x54\xc2\x73\x14\x81\xfc\xdd\x8d\x51\xa1\x02\x5b\x14\xba\xdc\x0b\x74\x88\x04\xdc\x0c\x99\xb0\xca\x09\xd2\xc4\xcc\xbc\x1c\x69\x77\xe1\xb7\xc7\x28\x38\xe8\xdf\x39\xe8\xfa\x31\xb9\x7f\xd4\xeb\x3b\x46\x1d\xe4\x04\x7d\xc9\xb8\x03\xed\x69\x2f\x9a\xff\x95\xf1\xd6\x8e\xd6\xfd\x43\xbe\xbc\x63\xc8\x27\x66\xc8\x75\xbe\xe3\x7f\x65\xd4\xcd\x23\x7d\xff\xc0\xcf\xee\x18\xf8\xa9\x19\xb8\xc1\xee\x4e\xc1\x1e\x61\xe2\x8a\xe7\x87\xfd\xdb\xdb\xaf\xad\x77\xfe\xff\xda\xe3\x83\x0e\xc2\xe4\x6b\xa7\x83\xbe\x08\x7e\xbd\x82\x47\x81\xcb\xa7\x8b\xb4\xd8\xe2\x5c\x2d\xb8\x28\x64\x14\x27\xe3\xe9\x25\x4f\xed\x93\x74\x16\x69\x7c\x2d\x4c\x75\x44\x3c\xa7\x87\xfd\x4e\xc7\x3c\xc8\xd3\x5e\xef\x35\x97\xba\xaf\xaa\xc1\xc6\x31\x81\x83\xb5\xef\x51\x18\xcd\x66\x3c\xe5\x22\xe0\xce\x94\xcb\x2b\xce\x85\x73\x93\xac\x53\x67\x9a\x26\x57\x19\x4f\x1d\x26\x42\x47\x2e\xb8\x69\xd7\x73\xce\x16\x4c\x24\x99\x93\xf2\x38\xe2\x99\x93\x08\x87\x05\xc1\x3a\x65\x92\xeb\xe6\xa0\x38\xb4\x9b\x46\x33\xe9\x2c\xa3\xf9\x42\x3a\x01\x5b\x67\xdc\x59\x97\x53\xaf\x3e\xea\x9a\x79\x0a\xd9\x7d\xfc\xdf\x01\x79\x13\x3a\x86\x83\x76\xe2\x28\x93\xbe\xf3\xe0\xc5\xd0\xd5\x1c\x01\x84\xdf\x41\xe4\x63\xb9\x0c\x2d\x14\x5e\x92\x8d\xe6\x93\xfd\xdd\xac\x68\x4d\xa8\xaa\xb3\x23\x41\x1b\xef\x71\xba\xcd\xa3\x9c\x18\x76\x24\xf3\xdf\x6b\xe9\xb4\x85\xa1\xf7\x57\x15\xcf\xbd\xd7\x8a\x6d\x00\x7a\x06\x2e\x36\xa0\x57\x78\x79\x03\x6a\xad\x0f\xda\x13\x32\x2b\xdd\xd4\x5e\xde\xbc\x2f\x98\x1d\x5f\x92\x25\x5f\x26\xe9\xcd\x5b\xf1\xf2\x46\xf2\xac\x5a\x89\xd5\x2b\xbd\x2b\x9a\xff\xc4\xa2\x54\xdb\x1f\xbf\xf5\x7e\x58\x45\x46\x3c\x7d\xfd\xd2\x31\x8e\x30\xed\x7e\x9f\x87\x8d\x77\x67\x20\xc8\xa0\x76\xad\x7b\xc5\xd2\x30\x12\x2c\x8e\xe4\x0d\xb4\xa1\x9a\x18\x5b\x17\xb8\xb3\x64\xe5\x0c\xfa\xe6\xe9\x4c\x58\x57\xe7\x2a\x92\x0b\xf3\x5e\x69\xa0\x26\x83\xcc\xf3\x44\x3c\x27\x8d\x5a\x7a\xc6\xba\x94\x33\xbd\xa9\x6d\x0f\x5b\x4b\x6e\xd5\xda\xea\x6b\x11\xcd\x17\x8e\x06\xac\xb3\x56\xbb\x09\x91\xb5\x88\xa4\x8f\x00\xc8\xb6\x21\x76\x6f\xf7\xba\x61\x3d\xf2\x15\x8b\xd2\xa2\xaa\x28\x9c\x5e\x74\x03\x5c\xb7\x2f\x29\x7a\x55\x9d\xe0\xae\xab\x43\xdb\xaf\xfa\xf4\x0e\x8a\xbb\x74\x77\x5e\x35\xfa\x9b\x2f\xf6\xff\x1d\xb7\x3e\xd4\x0c\xee\xb9\xe8\xb1\x33\x1c\x5c\xc5\xa0\x60\xae\x56\x6f\x8c\xeb\xb0\xf1\x24\xde\x01\xc0\x87\xba\x16\xb6\x47\x3a\x2d\xb2\xa5\xbd\xbf\x36\x7c\xdd\xd0\xca\xa9\xf3\xa1\x8f\x47\x43\x2b\xf7\x56\xd2\x4b\xf7\xb5\xd1\xca\xbd\xfb\x33\x8e\xc9\xc6\x43\x4b\x66\xe1\xf4\xaf\x3b\x27\xbf\xdd\x52\xa9\xb5\x5d\x76\x2b\xfc\x95\xb7\x34\x67\x25\x1a\xd8\xd2\x9e\x91\x5f\xc0\x7f\xe2\xf0\x07\x4c\x5e\xe8\xaf\x27\x56\xa0\x7f\x23\xa9\x79\x98\x72\xac\xd7\xcb\x3c\xc6\x43\xd6\x69\xe4\xa3\x7d\xc1\xaf\xf6\xcd\x6b\x2c\x13\x2d\x57\xfd\xb1\xa5\xbe\x94\x40\xed\x8a\x00\xc6\xff\xdb\x37\xba\x7e\x91\xad\xd2\x61\xc8\xd2\x0b\xf0\xc0\xb5\xa4\x30\xbd\x80\xeb\xa2\x4c\x84\x3e\x5a\x86\x48\x87\x7b\xf5\x91\x4c\x56\xad\x04\xf2\x05\x34\xbb\x15\x77\xb6\xfd\x41\x94\xc6\x08\x04\xbb\x9c\xb2\xb4\x37\x4d\x99\x08\x21\xfa\x42\x7d\xb7\x94\x40\x84\xc7\x97\x34\x73\xd0\x73\x10\x51\x72\x46\xdd\x22\x43\x6c\x04\x77\x77\x50\xbc\xa4\x7c\xbf\xb5\x92\xe8\x01\x68\x5b\x23\x38\x48\xfc\xbe\xce\x64\x34\xb3\xae\xf8\x3e\xca\x56\x2c\xe0\x3d\xc3\xbc\xb4\xbb\x47\x7c\xda\x0e\x25\xd1\x47\x65\xcb\x39\x79\x23\xc7\x72\xb2\x3b\x4c\xc8\x07\x1b\x5b\x52\x7a\xeb\x34\x6a\xeb\xe1\x5c\x3f\xf1\x33\xf7\x15\xfc\xea\x50\xaa\x1a\x72\xd3\x08\xe7\x44\xde\x11\xbe\xe0\xbe\x37\xaa\xb4\xc1\x7b\x21\xe5\x2a\xf3\xf7\xf7\xf5\xf6\xf4\xa2\x64\x7f\xce\xe1\xe9\xe7\x1e\x68\xba\x79\xe8\x2d\xc3\x7d\x4d\x08\xe3\xd5\x9f\x7b\x0c\x4b\x77\x54\x5b\x6b\xb3\xce\x36\x69\x07\x67\x93\x13\xf4\x4a\x41\x3a\x0a\x9c\x2f\x6f\x91\x31\x0e\x31\x77\x30\x38\xd2\xd8\xe8\xe5\xc3\x0e\xd9\x9f\x93\x42\xff\x00\xde\xeb\xee\xb6\x5b\xaa\x05\x10\x9f\x39\x5e\x47\x61\x65\x9f\x99\xcb\xaf\x67\xc9\xca\xff\xa1\xdf\xba\xad\xd6\x5e\x40\x36\x53\x96\x71\xd5\xe5\xf6\xc1\x40\xad\xf1\xea\xd6\xde\x94\x6c\x66\x69\xb2\xf4\xd1\xfe\x3d\x07\xaa\x6d\xa8\xbf\x9b\x19\xfa\x76\x3d\xea\xea\xf9\xb6\x2a\xbf\xf2\xa2\x8a\x8e\x88\xf0\x80\x3a\xff\x2a\xeb\x98\x30\x43\xf7\xd7\x91\xe5\xd0\x74\x84\x9a\xfb\xab\x24\x65\x15\x7d\xa9\xfa\xfe\x2a\x8b\xb2\x4a\xa6\xef\xac\xf4\xc2\xe2\xf6\xd2\xfd\xd5\xe7\x95\xea\x9a\xb1\xbc\xbf\xce\xbb\xb2\x8e\xa2\x87\xbd\x07\x57\xfc\x5a\xa9\x68\xcc\x1d\x8d\x4a\x8a\xaa\xab\xc3\x71\xac\x9f\xae\xfd\x22\xe9\x4f\xef\x3e\xbe\x7c\xf1\xee\xfc\xd3\x8b\xb3\x37\xe7\x9f\x3e\x9f\xfc\xf8\xf6\x7f\x86\xa8\xf2\xe3\xfc\xd3\xbb\x17\xaf\x4e\xde\x7c\x7c\xf7\xfa\xe4\x33\xda\xa3\x2d\xc5\x3b\x1d\xb4\xbf\x2b\xe7\x84\xbb\xdb\xc9\xf8\xf6\xd6\xfd\x22\x29\x32\xcf\xe7\xfe\x2c\xe9\xd9\x9b\x17\x1f\x3e\x9e\x9e\xbf\xfa\xf8\xfe\xd3\xc7\x0f\x27\x1f\xce\x86\xf0\x3e\x49\x33\xb5\xd3\x71\x7f\x96\x54\x6b\x6f\x10\x26\x99\xc7\x3c\xf3\xd4\xe4\x36\x24\x5e\xd6\x0f\xe6\x17\xb9\x75\x32\x7f\x56\x47\x33\x4c\x82\xb5\x2a\x0f\x8f\xb6\xea\xaa\x2f\x6f\xde\x86\x2e\x4a\x93\x44\x22\x45\xee\x0f\x0e\xfc\xf2\x0d\x06\x22\x09\xc3\x1b\x88\x01\x94\xa4\x32\xa3\x9b\xc2\x8f\xc7\xaf\x58\x2c\x41\x79\x7a\x5e\x64\x9d\x9f\x1f\x2c\x59\xb0\x44\xd6\x4f\xbc\x59\x10\x92\xcf\xcf\x07\xab\xd5\x4f\xbf\x23\xa2\x1d\x90\xb6\x4b\xe9\xf4\xf3\xf3\xc1\x8b\x75\xf4\xc1\xb9\xbb\x0d\x2d\xbb\x6e\xb7\xa1\xd3\xcf\xcf\xff\x9b\xbc\xb9\x78\x7c\x4f\x1b\xe0\x8d\xd3\x32\x58\x95\x7c\x7e\x3e\x38\x0d\xd3\x01\x22\x01\x8f\x5b\x86\xaa\x52\xcf\xcf\x0f\xdf\xfd\x3c\x3d\x47\xa4\x70\xc7\xd8\x2a\x66\x73\xce\xcf\x07\x1f\x8e\xe6\xd7\x5b\xe3\xa9\x35\x63\x03\x8c\x34\x0b\xe9\xf4\xf3\xf3\xc1\xcf\x3f\x5f\x4f\xef\x6e\x02\x4c\x37\xdb\x2d\x40\xf2\xf9\xf9\xc1\xcb\x3f\x5e\xdf\x33\x86\x9a\x07\x45\xdb\x50\x8a\xdc\xf3\xf3\xc1\xd3\x83\x9f\xff\x7d\x77\x73\xda\xf7\xa1\x05\x2e\x90\x7e\x7e\x7e\xf0\xaf\x97\x97\xbf\xde\xd9\x44\x9e\x93\xc3\xa7\x77\x6d\xcf\xa9\x14\x3e\xd2\x76\xd6\xf3\xa9\x14\xe7\xe7\x83\x9b\x45\x38\x57\xf5\x8e\x1f\xdf\x55\xaf\x74\x42\xb1\x66\x64\xed\x8c\x72\x5e\x66\x9c\x9f\x1f\xf0\xd3\xf8\x48\xb5\xf5\xf8\xae\x23\xa2\x90\xcd\x63\x9c\x93\xa7\xfd\x5a\x21\xbc\xd9\xab\x3e\x6d\xc2\x3d\xe0\x35\xe9\x26\x27\xe6\xd3\x5b\xb2\x0b\x4e\x8b\x32\x92\x30\x22\x48\x8a\x37\x70\xe1\x96\x6e\x0a\x5b\x54\xe2\xa5\x54\xde\xde\xf6\x49\xe2\xcd\x29\xd3\x1f\x53\x2a\xf4\x07\xa3\xfa\x71\xb7\x74\x94\xfa\x03\xf5\x3b\x0c\x69\x7d\x14\xf6\x65\x2f\x46\xfb\x43\xf6\xcc\x5a\xdd\x86\xdd\x2e\xc3\xc9\x98\x7b\xc1\x82\xa5\x2f\xa4\xcb\xf0\xa4\x4b\x65\xd9\xa5\x3e\x8c\xd1\x57\xee\xe2\x9c\x24\x5e\x16\xb0\x98\xff\xd9\x86\xbf\xbf\xa3\x61\xfb\x96\x5d\xd9\x76\xe1\x99\x9f\x78\xec\x39\x1d\x8c\x50\x3a\x9f\xba\xa8\x3b\x4e\xbc\x54\x41\x40\x4d\x7e\x62\x1f\x65\x43\xb8\x8b\x30\xf2\x55\x11\xd6\x28\xa3\x60\xd1\x28\xa7\xfa\x2b\xba\xaf\x76\x58\x38\xc0\x72\xbb\xba\xf6\xdd\x9d\x67\x7c\xc4\x7d\xf9\x9c\x8d\x98\x2f\xf3\xca\x7a\x70\xb7\x4f\xca\x77\x7a\xbc\x14\x93\x83\xe3\x63\x0c\x2b\xd4\xc8\x9a\x17\x59\xd3\x66\xd6\xb4\xc8\x62\x90\x95\x78\x8c\x0c\x30\x49\xd4\x38\x83\x38\x11\xbc\x05\x28\xd5\xbd\xe3\xea\xe9\x4e\xcd\x94\x19\xae\x4d\xd0\xc5\xe5\x4e\xe3\xd7\x32\x65\x81\xac\x6d\x36\xbd\xd1\xc4\x30\x4c\xf4\x73\x59\x7b\xd4\x55\x52\x68\x90\x81\x13\x4d\xdd\x61\xae\xd3\x41\x32\x65\x22\x5b\xb1\x54\x89\xc4\x7b\x54\x60\xfd\x94\xbe\x84\x1b\x81\x2a\xd1\xc5\xf9\xd5\x22\x8a\x79\x61\x1c\xec\x74\xf6\xb8\x27\x92\x90\x2b\x01\xc1\x05\xfa\xe3\xf6\x31\x41\x20\xfa\x17\x17\x18\xf4\xd2\xf5\x89\x63\xfe\x1f\x23\x78\x98\xcf\x15\xb4\xd6\x23\x2e\xa6\xa2\xdd\x91\x45\x65\x72\x90\x52\x4e\xcd\x4e\x0c\x1c\x08\x4a\x60\x0d\xa3\x99\x2b\xe8\x7e\x3a\x9f\xfe\xe6\xfe\x96\x7d\xaf\xdf\xdb\xdb\x0c\xc8\x61\x8e\x7f\xcb\xbe\x27\x0f\x4a\xfa\x0d\xef\xc3\x9b\xc6\x2e\xc3\xf6\x99\xbb\xd4\x2d\x16\x14\x9c\x70\x07\x7d\x4c\x2a\x29\x07\x5b\x29\x87\x90\x82\xcb\xe1\xb0\x3f\x3f\x9e\x32\xa9\xeb\x8e\xfc\xdf\x3c\xf3\x86\xe0\xe8\xef\x1d\x2b\xa9\x04\x02\x12\xe3\xa3\x49\x75\xf0\x95\xb1\x37\x87\xf0\xcf\x3b\x07\x78\x7f\x6e\xeb\x04\x0e\xbc\xe3\xe3\xef\x6b\xe3\x19\x4c\x30\xd9\x4e\x3d\x68\x4d\x3d\x9c\xec\x02\xfc\xdf\x3d\xf8\x6f\x5e\x99\xbf\x3c\xb1\x9d\xab\xf4\x9d\x3b\x66\xbd\xd9\x8b\xde\x8f\xb0\x75\x0e\x72\x7c\xdf\xef\xfb\xf7\xcd\xe3\xad\x7d\xf3\x78\x6b\xdf\x3c\x6e\x1f\x00\xde\xfd\xe3\xbe\x7e\xbb\xed\x9d\x77\xdb\x47\xd0\x2d\x87\xa1\x09\x2a\xf7\x64\x1a\x2d\xb7\x70\x9b\xc5\x43\x55\x6c\x43\x69\x32\x4a\xdd\x83\xe3\x63\x62\xff\xeb\x63\x3f\x75\x15\x7e\x1c\x27\x93\xdb\xdb\x71\x9f\xf4\x49\x7f\x82\xc7\xfd\x09\x81\x41\xc1\xba\x68\x8d\x97\xa4\x1b\xf6\xc7\x9a\xf9\xe3\xbe\xad\x3c\x21\xec\xeb\x3a\xe5\xfe\xf8\xe0\xa8\x92\x36\xe5\xd1\x1c\xd2\x8e\x09\xfc\x77\xd0\x9f\x90\x69\xcc\x82\x0b\xdf\xb4\x4e\xa6\xf1\x9a\xeb\x1f\xba\x42\x9a\x5c\x09\x7f\x3c\x78\x7c\x4c\x8e\x0e\xc8\xd1\xc1\x84\x04\x37\x4c\xd4\xfa\x09\x59\x7a\x51\xd6\x1a\x1c\x3e\xd5\x49\xb6\xdc\xe0\xf0\x69\x99\x38\x4f\xf9\x8d\x6a\xed\x29\x31\xff\x15\xc9\x5c\x17\xee\xc3\x20\x54\xda\xc5\x82\x5d\x44\xfe\x78\xf0\xe4\x29\x19\x3c\x39\x24\x83\xfe\x0f\x3a\x7d\xc9\xe6\x5c\x48\xe6\x8f\x55\xc3\x95\xfe\x92\x38\xba\xe4\xa6\xa1\x27\xc7\xaa\x3c\x39\x32\x55\x12\xfd\x74\xde\x58\x0d\x79\x70\x54\xf4\x90\xa4\xc1\x22\x0a\xfd\xf1\xe0\xf8\x90\x1c\xf7\xc9\x41\xff\x48\xa7\x2b\xf6\xcc\xb4\x6e\x4a\x66\x2c\x5e\x26\xc2\x1f\x1f\x1c\x1e\x92\xc1\x71\x9f\x0c\x0e\x0e\x74\xc6\x65\x94\xc4\x5c\xfa\xe3\xc1\xd1\x13\x05\xb1\xc1\x60\x42\x66\xeb\x60\x91\x45\x4c\xf7\x66\xa0\x38\x4f\xe2\x50\x27\x1c\x0c\x8e\x55\xa3\xe5\x84\x0f\x9e\xa8\xdf\x91\x08\xa3\x79\xe2\x8f\x7f\x38\x86\x29\xf5\x27\xc4\x4c\x1f\x56\xef\xb0\xaf\x86\x3d\x21\x10\xd4\x58\x83\x7a\xf0\xc3\x21\x39\x18\x3c\x56\x79\x26\x5d\xc3\xfb\xe0\xe0\xa8\x5c\x19\x48\x37\x5d\x0d\x8e\x8e\xc8\xc1\xe1\x13\x32\x38\x3a\x2a\x33\x6e\xfc\xf1\xc1\x60\x40\xcc\x7f\x26\x7d\x15\x89\x0b\x03\xab\x27\x07\x64\xf0\xf4\xd0\xa4\xdf\xf0\x38\x4e\xae\xcc\x34\xd4\x7f\x07\xd0\xd2\x92\xdb\xdd\xd0\x9f\x90\x62\x71\x2a\x93\x5f\xb2\x34\x51\xc0\x83\xa9\xaa\x42\x82\x5d\xde\x98\xcd\x72\xf0\x64\x42\x60\xe1\x74\xb6\x81\x46\x6d\xbd\x1e\x43\xc3\x95\x41\x3d\x3d\x20\x07\xfd\xc3\x09\x59\xad\xd3\x55\xcc\x6d\xbb\xd0\x54\xb1\x1c\x65\x12\x2c\xa6\x1e\x4d\x7f\x42\xb2\x28\xbe\xe4\xa9\x3f\x56\x8d\x98\xff\x26\xe4\x6a\x11\x49\x5e\x99\x97\x1a\x74\x73\xb2\xfd\x49\x9e\x5b\x4d\xd9\xef\xe0\x4a\x85\x49\x95\xd1\xd6\xae\x86\x46\x39\x0e\x37\x2b\xe5\xcd\x8a\x7b\x0b\x96\x7d\xbc\x12\x9f\xd2\x64\xc5\x53\x79\x53\xde\x79\x62\x15\x5e\x88\xb2\xe2\x79\x15\x17\x79\xa8\x2b\xd5\x09\x1f\x16\xcf\x10\x2b\xbe\xc4\x15\xb4\x90\xa8\x1b\xd6\x85\x80\x89\x4b\x96\x21\x8c\xbd\x42\x2f\x4a\x25\x81\xa7\x3a\x15\x53\xb5\xd1\x31\x38\xa2\x44\xf8\x28\x96\x29\x22\xab\x24\x8b\xf4\x4f\x36\x85\x87\x11\x39\x22\x31\x9f\x81\x77\x75\xb2\xf2\xfb\x39\xf6\xd8\x6a\xc5\x45\x78\x96\xb8\x0c\x93\x3d\xa1\x58\x28\xd0\xd1\x5e\x4b\x8c\x15\xd3\xb6\x67\xc0\xf0\xd3\xf9\xe5\x32\x7e\x05\xdd\xbf\xd7\xb7\xb3\xb1\x5c\xa4\xc9\x95\x53\xfa\xd2\x22\x9d\xed\x44\x99\x23\x12\xe9\xb0\x4b\x16\xc5\x4a\xd0\xf5\x9c\xb7\x33\xe7\x26\x59\x3f\x4a\xb9\xb3\xce\x22\x31\x77\xde\x9e\x68\x5b\x1a\x73\x66\x2c\x8e\x7b\x53\x16\x5c\x38\xd9\x3a\x58\x38\x2c\x73\x4e\xae\xf5\x24\x89\x23\x17\x5c\xa8\x7f\x52\xfe\x28\x73\x78\xa4\xbe\x1c\xe6\x2c\xa3\x4c\xb2\x0b\xee\x44\xc6\xe4\x1d\x24\x22\x84\x39\xb2\xd8\x89\x44\x10\xaf\x43\x4e\x9c\x24\x05\xf3\xf7\x8a\xcd\xb9\xb3\x60\x6a\x3c\xce\xeb\x8f\xaf\xce\x7e\xfd\x74\x02\xb6\xee\x28\x73\xb4\xce\x43\x0d\x26\x12\xce\x7f\xd6\x51\x7a\x91\x39\xef\x93\x90\x7b\x08\x0f\x05\xdd\x39\x69\x2f\x12\x91\xd5\x71\x28\x0e\x11\x5e\xe3\xe6\xfa\x37\x15\x80\x9d\x53\xfd\x36\x7c\xa0\xa1\x48\xab\x20\x75\xd1\x41\x68\xf4\x35\x89\xed\x23\xe4\x97\x51\xc0\x3f\x45\xd7\x3c\xfe\xcc\x64\x94\xdc\xde\x0e\x48\x4c\x53\xef\x8a\x4f\x2f\x22\xf9\x52\xbf\x82\x7e\x2a\x93\xb4\x56\x26\xf5\x96\xc9\xd7\x3b\x32\xb3\xdd\x79\xc9\xee\xac\xe9\x8e\x9c\xc1\x50\xbf\x3a\x5e\x24\xd1\x64\x3f\x26\x90\x96\xf2\x4c\x09\x02\xcc\x83\x08\x0b\x2e\x26\xcc\x5b\x40\xcc\x32\x17\x63\x5d\x42\x4d\xfc\x95\x55\xe3\x50\x6d\x1b\xb3\xe9\x4a\x54\x85\x1f\xe7\x50\x8a\x05\x0b\x5e\x4f\x3a\x8d\xbe\x72\x9d\x6c\xc0\x35\x8b\x13\x79\xf6\xa0\x8c\xdb\xdb\x4d\x5e\xbe\x05\xad\xe4\x11\x41\x52\x92\xe8\xd3\x1b\xd3\xf1\x84\x44\x54\xfb\x29\x64\xfe\x18\x7d\xc7\xc3\xe0\xe0\xa8\x8f\x08\xfa\x8e\xcd\xc2\x27\xb3\x27\xea\x2b\x98\x1e\x4d\x8f\xa6\xea\xeb\x28\x64\x3f\x1c\x85\xea\xeb\xe9\xd1\x51\x9f\x87\x68\x42\x62\x3e\xe7\x22\xf4\xc1\x99\xdb\xdf\xeb\x13\x91\xbc\x4a\xe2\xf5\x52\x64\xfe\x40\x2b\x5a\x7e\x04\x93\x17\x78\x63\x83\xde\x5b\xa5\xbd\x4c\xae\x5f\x82\x35\xd5\xc6\x27\x0d\x82\x00\x91\x52\x01\x06\x25\xcb\x53\x2b\xb8\x0d\xcc\xe8\x1f\x93\x66\x70\x53\x28\x5b\x26\x7e\x5c\xb1\x20\x92\x37\xbe\xf7\xe4\x98\x64\x49\x2a\x79\x08\x25\x72\x72\xcd\xae\xa3\xcc\x8c\xb3\xd1\xfe\x34\x91\x32\x59\x22\xb2\x4c\x42\xae\xf3\x66\x89\x90\xe6\x7e\x75\xd9\x89\x8c\x82\x8b\x4a\x9f\xc0\xc7\xcc\x92\x74\xa9\x7f\x46\xe2\x92\xa7\x19\x3f\xab\xa7\x2e\x23\x61\x3e\xd8\xb5\xfe\x60\x6b\x99\x80\x90\xff\x5e\xcf\xa8\x68\x3a\x2b\x3f\xdb\x60\xa6\x2f\xd6\x96\xbf\xcd\x6b\x21\x90\x90\x72\x70\x71\x39\x5d\xb1\x80\x97\xad\xbc\x03\xe9\xd0\xf4\x1a\x47\x73\x71\xa6\x7a\xf9\x25\x92\x8b\x17\x0a\x14\x45\xb9\xd7\x3c\x88\x96\x2c\xae\xa4\x40\x50\x4c\x3b\xfe\xb3\x6a\x42\x4e\x6e\x34\x1c\x9b\xd3\xf0\xfa\x07\x15\x88\xea\xdb\xbe\x0a\xe6\x3c\xf3\xc7\x13\x55\x49\x7f\x68\xfb\xbf\xbf\x01\x6d\x9d\x5d\x8e\xbd\x01\x49\x59\x18\xad\x33\xff\x10\x5e\xbc\xd1\x53\x3d\x20\xb3\x28\x8e\xd5\x9e\x52\x7f\xed\x4e\x99\xc1\xff\x21\x92\xdd\x2c\xa7\x49\xec\xa3\x20\x4a\x83\x98\xa3\x1c\x2a\x66\xfa\x21\x95\x7a\xfd\x41\xa5\x3e\xcc\x29\x93\x7c\x95\xf9\x7b\x83\x9c\x4c\x59\x5a\x19\x43\xb5\xea\x94\xa5\xfa\x73\xd0\x32\x8a\x12\xa2\x66\xa6\x64\x91\xa4\xd1\x57\xb5\x7d\xa1\xbf\xaf\x3c\x4d\xc0\x34\x97\x2d\x58\x98\x5c\x01\xf0\x0e\xc9\x22\x9a\x2f\x80\xa9\x28\x1b\xc9\xc9\x3c\x8d\x2a\x87\x87\x4d\x93\x4b\xfe\x9a\x49\xa6\x5a\x31\x16\xd3\xef\x8e\x8f\xd4\xff\xd0\x8e\x8d\x5f\x39\x46\x6d\x9b\xd4\x1c\x1b\x13\xb0\xed\xbd\x3d\x44\x70\x25\xf4\x54\x13\x49\xb3\x91\xfa\x44\x2d\xac\x29\xf1\xc4\x34\x6c\xc1\xb1\x8c\x84\x3e\xb0\xd5\x4d\xbb\x64\x10\xf2\x2a\xab\xff\x2a\x16\xea\x48\xfd\x0f\x15\xe9\xef\x2a\xd0\x0d\xe2\x28\xb8\x00\xa5\xf0\xde\x40\xdf\xc7\xb4\x3f\xd4\xb6\x7a\x63\x01\xa5\x40\xb2\x4c\xd6\x19\xd7\x6f\x07\x7e\xd6\x7b\x64\xd0\xcf\x09\x3c\x29\xca\x34\x8d\xdf\xa4\x3c\x4c\xd9\xd5\xc7\x4b\x9e\xc6\xec\xe6\xad\xca\xb9\x64\xb1\x3f\xe0\x87\xfb\x8f\xfb\x39\x59\x24\xc9\x05\x04\xaa\x23\x99\x46\xbb\x81\xfe\xb3\xd6\x7f\x16\xfa\xcf\x52\xff\x59\x29\x84\x18\xaa\x7f\xe6\x74\x63\x58\x84\xd4\x80\x07\x58\x05\xa2\x71\x85\xdf\xcf\xc9\x8c\xf6\xc9\x35\xed\x93\x29\xdd\xac\xd2\x24\xe0\x59\x66\x9c\xca\xc1\x99\x5a\xa7\x7c\x66\x57\xb0\x9c\x65\x8a\xfa\x69\x36\x7f\x99\xf8\x71\x36\xcb\x14\x0f\x57\xa9\x07\xcc\xe0\x84\xa8\x99\xbd\x2c\xdf\x15\x35\x29\x3a\x24\x97\xfd\xa5\xfe\x4e\x23\x11\x9e\xa8\x45\x2d\x52\x0d\x3c\xe0\xd0\x2d\xd6\x32\x04\x99\x66\x92\x93\x1b\x20\xcc\x25\x5b\x76\xa2\x75\x8c\x92\x8e\x6f\x26\xe5\x3b\xf2\xc3\x3b\x74\x8e\x10\x53\x53\xbf\x44\xac\x9a\x22\x12\x97\x04\xe6\xd2\x95\x78\x13\x57\xd4\x5f\x9a\xd0\x30\x3a\x9e\x40\x93\xea\x87\xa0\xfd\xa1\x78\x26\xcb\x26\x85\x2e\x04\x21\x6a\xae\x25\x17\xa1\xbb\xd7\x27\x9b\x9c\x44\x9e\x46\x17\x78\xa8\x55\xaf\x72\x2c\x26\xe0\x66\x31\x72\x53\xf8\x5b\xa6\x90\x90\xc7\x5c\x72\xa7\x4c\xa8\xb6\x95\x12\x95\x8e\x49\x91\x4b\x75\x7d\xec\x57\xda\x21\x4c\xdf\xa8\x4b\x2b\x21\x0b\x5d\x59\x61\x79\x35\xef\x2a\x09\xa3\xb1\xbd\xb8\x2c\x68\x6f\x00\xf3\x92\xb4\x3f\x94\xcf\xe2\x72\x4e\x66\xe2\x9c\xc6\x63\x39\xd1\xda\x31\x33\x0b\xde\xe9\xb8\xac\xd7\x23\x48\xac\x97\x53\x9e\x22\x4a\x15\xdb\x9c\xcc\x1c\xde\xe9\xf0\xe7\x5a\x25\xc7\x31\xce\xd9\x33\xe0\x83\x19\x15\xdd\x81\x16\xad\x53\x92\xc0\x83\x76\x34\xd2\x0d\x66\x24\xa0\xc5\x1d\xea\x35\xed\x57\x46\xc2\x86\xb2\xdb\xc5\xa5\x62\x4e\x2b\xf3\xb2\xb1\xfc\x67\x30\xb9\xbd\x45\xdf\x3d\x7e\xfc\x18\x61\x22\xff\x19\x50\xda\xef\x74\x64\xa7\xe3\xae\xe9\xfa\x39\xed\x8f\xd6\xcf\xbc\xe3\x51\x6f\xdd\xf3\x0e\xfc\xbe\xdf\x5b\x63\x92\x8c\xe5\x84\xa6\x5a\x2f\xed\xa2\x74\x3e\x45\x64\xd0\x5d\x9b\xb0\x81\x64\x59\xeb\xb5\x3e\xff\x82\x9d\x77\x17\x00\x05\xac\xc7\x32\x72\x17\x46\x43\x9f\x8c\x97\x93\x42\x2f\xed\x62\xd2\xed\x2e\xb1\xbf\x05\x16\x53\xba\xd3\xa9\xd4\x33\x5f\xd5\xda\x98\xe8\xce\x16\x1e\x50\x02\xb8\xe4\xa8\x57\x6c\x4e\x66\x74\x4f\x0f\x13\xf8\xdc\x05\x8e\x66\xee\x62\x3c\x9f\x74\x3a\xea\x5f\x53\x72\x46\xf7\x06\x43\xd0\xb5\xe6\x33\xe8\xab\x6c\x86\xee\xf5\x71\x5e\x6f\x5d\xa1\xf8\x4a\x29\xf5\x93\xee\xed\xd9\x9f\x8a\x54\x60\xb2\xf0\x80\xe7\xa0\x67\xee\x8a\x5c\xb8\x0b\x82\xae\x11\x56\xa9\x37\x26\x35\xd4\xa9\x10\x80\x27\x77\x6b\x1b\x0d\x44\x2b\x6d\xa6\x20\x09\x89\x48\x46\x02\xb2\x26\x0b\xb2\x24\x2b\x12\xd2\x0f\x00\x21\xef\xd3\xc7\xd3\xb7\x67\x6f\x7f\x3e\x39\x7f\xfb\xe1\xc7\xb7\x1f\xde\x9e\xfd\x4a\xe6\x36\xeb\xc3\xc9\x4f\x2f\xea\x59\x33\x9b\xf5\xfe\xc5\xff\x9c\xff\xfc\xe2\xdd\x97\x93\x12\x05\x5c\x5b\x65\xbc\x7c\xa6\x1f\xf7\x58\x46\xa2\xd3\x91\x7b\xb4\xa7\x20\x51\x24\x51\x89\x09\x7b\x6e\x7e\xb2\xeb\x4e\x87\xed\xd1\x4a\x01\x76\x4d\x19\xce\x15\x94\xb9\xc7\x59\xb0\x70\xaf\x5c\x4c\xdc\xba\x25\x43\x16\x6d\x85\x44\x16\xd5\xe6\x44\x7a\xeb\x8c\x87\x14\x62\x20\x91\x96\xbd\x94\xc0\x06\x22\x09\x54\xd1\xe8\x93\x6e\x0a\x34\x9a\x93\x13\x77\xea\xd5\x51\x2e\x19\x27\xa6\x78\xad\xd6\x04\xdf\xb5\x5d\x4d\x37\x4b\x6a\x6a\xae\x68\xb5\xae\x79\x22\x9f\xec\xad\xa0\x30\xd0\x8a\x95\x09\xa0\x7a\x0d\xbc\x2f\x40\x58\x7d\xa5\xfc\x8f\x75\x94\xda\xc8\x12\xb6\xd0\xcd\x5d\x85\x12\xfd\xa0\xfc\xed\x6d\xe2\x29\xb6\x04\x36\x9e\xfa\x51\x6e\xc3\x4e\x27\xa9\xee\x2f\x83\x5f\xf6\xf6\xdc\x4a\x0d\x55\x06\x7e\xa8\x1d\xb9\xab\xba\xca\xc3\xc3\x7b\x47\x35\xb0\xee\xe7\x3a\x68\x62\xbf\x64\x5d\xc1\x65\xc0\x74\x54\xb2\x3e\x9d\x8e\x6b\xb0\xf0\x6a\xbc\x32\xa0\xed\x0d\x26\xde\x0d\xa9\xff\xbe\x86\xf3\xd4\x02\x59\xba\xca\x0d\xce\xd8\xab\x03\x5e\xff\x89\xbe\x72\xac\x64\x84\x48\xac\xf9\xb0\x3d\x9f\xda\x7e\x48\xb6\xa3\x05\xb8\x98\xbc\x95\x31\xd4\xb0\x6c\x07\x17\xf0\x8b\xb0\x6d\x12\x7d\xa2\xf5\x66\x4d\xf4\x41\x36\x3b\xb7\x4f\x18\x15\x40\x2b\x97\x15\x5a\x49\x44\x97\x66\x78\xb3\xa0\xcb\x31\x9b\x0c\xb5\xc2\xc4\x20\x92\x61\x34\x73\xf7\x24\x86\x60\xc5\xb4\x3f\x4c\x9f\x65\xc3\x6e\x37\xc5\x01\x5d\x8c\xd3\x09\x59\xd3\x15\xfc\x51\x88\xd9\xd3\x8b\xd3\xe9\x68\xc8\x04\x9d\x8e\x1b\xd0\x6e\x40\xa2\xec\x03\xfb\xe0\x06\x78\xa4\x39\x1a\x3f\xa0\x74\xb0\xdf\x1f\x05\x74\xa6\x3e\x7b\x83\xfd\x3e\x94\xec\xcd\x0a\xdc\x18\x40\x73\x76\x85\x3b\x1d\x57\xaa\xa5\x20\xba\xdd\xb5\x57\x5d\x6e\xa8\x5a\x4f\xc2\x18\x93\x68\x2c\xba\xe9\x84\x06\x6a\xf4\x6d\x83\xd7\xf9\xa4\x1c\xa9\x99\xc8\xde\x60\x8f\xd2\xb5\x57\xec\x20\x18\xc8\x75\xa7\x73\x6d\x61\x4a\x02\x12\x60\xb2\xf6\x6e\x74\xda\x4d\x91\x56\x76\xaa\x1a\x85\x07\x89\x3a\x1d\xf1\x5c\xcd\x6d\x4f\xde\xde\xea\x9e\xa2\xb1\xe8\x65\x13\xac\x4d\xa5\xd5\x11\xa9\xaa\x99\xaa\xac\xdb\x18\xaa\x3f\x83\x89\x2e\xdf\x1d\x4c\x6e\x6f\xfb\x44\x11\xbf\x68\x2c\x26\x74\x31\xee\x4f\x30\xac\x58\x9e\xe7\xf7\x63\x89\xd6\x8d\xb4\x7b\xdf\x21\xc1\xe7\x4c\xb1\xb1\xbd\x5f\x91\xbe\x11\x6f\x25\x45\x00\xa3\xe6\xb3\x22\xdb\x17\x53\xfb\xc6\xce\x8d\x4d\x60\x35\xa2\x31\xeb\x0e\x26\x44\xff\xa1\xbd\x00\x0f\x2b\x68\xaf\xe4\x2b\x4b\xcc\x67\x51\xde\xce\xc9\xfc\xb9\x99\xb4\x62\x45\x1d\x41\x8e\x86\xe4\x92\x86\xe4\x82\xce\xc9\x29\x9d\x0f\x77\x4d\xac\x38\xe5\x6a\x6e\xad\xbb\x88\x75\x6b\x87\x60\x7b\xfb\x04\x40\x7b\x02\x43\xa3\x60\x2f\xb9\xc1\xb3\x9b\x4e\xc7\xbd\xa1\x01\x26\xc1\xf3\x8b\x4e\xc7\xbd\xa0\x01\x36\x9b\xca\x0d\x9e\x5d\x76\x3a\xee\xa5\xce\x3c\xed\x74\xdc\x53\x95\x09\xa6\x93\x0a\xfe\xd4\x1c\xc3\xd9\xd0\xc4\x33\x31\x39\x20\xeb\x99\x60\x26\x20\xf0\xf9\x67\xb4\xaf\x99\x05\x1d\xc8\x04\x64\x04\x95\xda\x33\x35\xac\xfc\x68\x0a\xd9\x98\x26\xdb\x05\xf6\x0f\xf2\x2d\x44\x3a\x72\x2f\xbb\xf4\x8c\x9c\x76\xe9\x59\xb7\x51\x1c\xfb\xee\x8d\xca\xbb\x68\xcb\xcb\xcb\xd3\x74\x43\x2e\x30\x29\x0f\xd2\x25\x39\xc5\xf9\x43\xc8\x32\x05\xac\x50\xfc\xd4\x31\xaf\x4a\x4a\x4d\xe7\x65\x36\xbb\xd6\xd9\x39\xc6\xb9\x5b\x11\x01\x2e\x74\x9b\x5a\x78\xe0\x63\xd9\x45\x6a\x08\xc8\xba\x0e\xa3\x04\x14\xc6\x25\x7f\xc7\x80\xc9\x65\x9e\xc0\x05\x4b\xbc\x57\xcf\x1b\x60\xc2\xca\xf6\xaf\xaa\x36\xfa\x79\xca\x57\xee\xaa\xb8\x6c\x5c\x9b\x59\x59\x4c\x0d\xb1\xa8\x7f\xaa\x72\x0c\x27\x4f\x04\xdd\xe4\x15\x8e\x60\x55\x3d\x1e\x2e\xa3\x2b\xc5\xb6\x2a\x8e\x7c\x8c\xae\x51\x97\x79\x62\x42\x99\x17\x1c\xac\x5c\x25\x10\xcd\x24\xae\x72\x13\x61\xa3\x6e\x58\xd6\xbd\x69\xd4\x95\xc9\xaa\x0c\x2c\xa8\xef\xe7\xef\x51\x2a\xbc\xeb\x81\x2a\xef\x5d\xc3\x27\x26\x95\x9c\x1b\x9d\x73\x03\x9f\x98\x88\x72\x3a\x67\x6e\xcd\x8f\x62\xcc\x7a\x0a\xad\xb9\xfa\x83\x6e\x84\xcf\x48\xa9\x0f\x97\x94\xae\x46\xe8\x1a\xf9\xe8\x06\x15\xf7\xa1\x1b\x52\x17\x94\x89\xf4\x3e\xf2\x23\xbd\x81\x70\xae\x84\x27\xd5\x62\xd9\xf1\x2b\x17\x6f\xde\x74\x3a\x41\xcc\x59\x6a\x9f\xaa\x7c\xa3\x4e\xdb\x5a\x28\x69\xd4\x45\x20\xba\x2f\x93\x4b\x8e\xc8\x1f\x5b\xe9\x31\x67\x2a\xe3\x65\x35\x03\xd4\x02\x88\x7c\xc1\xc0\xcf\x59\xa9\x95\x8c\xd7\x93\xca\xf2\xbd\x2f\x4d\x0f\xdc\x33\x53\x80\x27\xda\x41\x87\x76\x7b\x3b\x9e\x80\x8f\x7f\xa9\x33\x53\x38\x3e\xb5\x29\x5a\xd9\x01\x1e\x3d\x54\xdc\xde\xba\xe8\x1a\x51\x88\xa5\x64\x20\x34\x82\xcb\xa5\xb3\x38\x49\x52\x37\xd3\xda\xdc\x7d\x97\x99\x95\xbd\xbd\x1d\xe0\xe2\x81\xa0\x6a\xad\x2e\x7a\x71\x1d\x65\x0e\xea\x56\xd3\xb8\x67\xd2\x11\x89\x28\x9a\xc5\x89\xec\xd5\x0b\xa0\x9e\x02\xad\xd3\x92\x03\x55\x75\x2e\xea\xc6\x24\xa0\xd2\x9b\x25\x42\xde\xde\xea\x66\xd4\x4c\x75\x48\x41\x07\xf4\x7c\xf0\xa2\x7a\x21\x5e\x2b\x41\x70\xfd\x8c\x95\xbb\x71\x6d\x59\x45\x36\x5e\x83\x91\x65\xcf\xc4\x89\x2a\xb9\x29\x0d\xcf\x0c\x2e\xfd\xf2\x6b\xf9\x56\xcc\x12\x37\x22\xa6\x18\x09\xb4\xcb\x72\x82\x87\x82\x02\x7c\x96\xec\xda\x15\x44\x6a\xf8\x74\x07\x98\xa4\x65\x7a\x4a\xa4\xd1\x7d\x2b\x8c\x53\x2e\x43\x63\x4d\x84\x6d\x5d\xaf\x48\x73\x7d\xd2\x72\xc1\x3f\x96\x4a\x84\x6a\x13\xe5\x2a\xeb\x3a\xb0\xc6\x66\x3f\x78\x56\x13\x49\x12\x0a\x2b\x4c\x65\x09\x5d\x12\x57\x0a\x96\x7a\x52\x12\xd0\xc8\x9b\xa7\x51\xe8\x95\x7a\x30\xb2\xb6\x69\x15\xf5\x19\x59\xd8\xc4\x6d\x2d\x1a\x59\x2a\x4e\x50\x89\x9b\x44\x71\xb9\x64\xaa\x84\x4a\x83\x77\x93\xd1\xca\x0f\x6b\x98\x97\xe1\x0d\x20\x38\xc3\xeb\xc3\x2d\xe7\x42\x8f\x8b\x01\xf5\x51\x2a\x47\x53\xba\xd7\xf7\xd9\xd6\xdc\x28\xa5\x4a\x28\x9e\x8e\x94\xe4\xea\x2f\xe9\xde\x00\x93\xe9\xed\xad\x7b\xad\xbe\x14\x56\x26\x33\x60\x1b\xfa\x96\xfb\x53\x0c\x7a\x4c\xaf\x47\x68\xb6\x8e\x63\xe4\x1f\x63\xc3\x41\x76\x63\x7c\x7b\xeb\xae\xbb\xb4\x1b\x63\x92\x8c\x5c\xd1\xa5\x6b\xc5\x06\x2d\x88\xd5\x8c\x53\x9a\x8e\xdc\xb9\xa7\x7f\x75\xa9\xe8\x06\x44\x7a\xd3\xe4\x9a\x6e\x64\xb2\xf2\x33\xb3\xde\x3d\x5b\x82\x2c\x8c\x6e\x3a\xc7\xbe\x5b\x29\x38\x57\x88\xaf\x1b\x94\xd9\x44\xa7\xa8\x06\x31\xf6\x5d\xa6\x3a\xd6\x04\x16\x7a\x34\x55\x41\x0f\x37\x07\x84\xdb\x0d\x88\x8e\x61\xcd\x54\x5d\x48\xa1\xac\x1b\x60\xdf\x9d\x7b\x40\x83\xe1\x27\xa9\x56\x34\xa7\xb8\x67\x0a\x14\xf5\x95\xa0\x59\xc2\x52\xed\xda\x72\x2f\xd0\x58\x37\xe1\x19\x3f\x7a\xba\x36\xbf\xab\x2b\xfe\xc9\xe4\x2d\x88\xf4\x22\x21\x78\xba\x4c\x32\x49\x97\xe5\xc6\xfd\xe4\x5a\x2a\xa8\x48\xae\xb0\xbb\x46\x2d\x76\xa1\x5e\x4b\x9d\x48\x38\x73\x7b\x40\x4d\x09\xad\xb4\xbd\xbd\xed\x0f\xe7\xe3\x74\x42\xb7\x15\x45\x23\xee\xf3\x71\xaa\xb8\xd7\xbc\xd6\x50\x85\x1f\xd4\x2a\x45\x32\x9e\x4f\x30\x99\xe3\x2d\xa2\x6b\x7a\xaa\x68\x79\x47\xaa\xaf\x2e\x15\xa3\xed\xac\x71\x3a\xf1\xfb\xfe\xee\x7c\xbf\xaf\xdf\x09\x85\x6d\xce\x9a\xcc\x85\x3d\xba\x66\xff\x0e\xa5\xd6\xa9\xe8\x3d\xa9\xf7\xfe\x48\xcb\xff\xbe\xfe\x45\x64\xed\x20\x14\x25\xab\x89\x23\xdd\x8a\x5f\x4f\x6d\x31\x4f\x57\x69\x44\xd7\x70\x9d\xd2\x5b\x46\x62\x04\xff\xfa\x85\x76\x43\xad\x50\xa5\x00\xbb\x1e\xc1\xbf\x7e\xa1\xdd\x80\x9b\x50\x3d\xa6\xa6\xda\xa7\x34\xb5\x6b\xe6\x1d\x1c\x5b\xf4\xc7\xa6\x99\xca\x12\xa3\x81\x2f\xbe\xe7\x5a\x6b\x49\x75\x6f\xa0\xf3\xa3\xa9\x95\xb5\xa0\x69\x2d\xd0\x99\x02\xb7\xb7\xea\xdc\xa5\x38\xe7\x71\xc6\x37\xda\x36\x2a\xbd\x86\x95\xc5\x68\x10\x13\xc5\x0b\x6c\xb5\xfd\x7d\x42\xd8\xb3\xbe\x95\x12\x2b\x8a\x9c\xe2\xf3\x39\xed\x03\x52\xe9\x17\x02\xa1\x19\x07\x74\xfd\x7d\x42\x40\xac\xaa\xd5\x57\xb9\xc5\xe7\x33\xa8\x2f\x54\x7d\x85\xdb\x15\x83\xc8\xe0\x69\x83\x6b\x2a\x72\x57\x02\xce\xa9\x69\x62\xc4\x9c\x43\xf8\x1c\x61\x7d\x6d\x0d\xc3\xc6\xda\xd9\x34\x83\x07\x79\x6d\x4d\x73\x8c\x0d\x79\xda\x1b\x14\xc7\x26\xa0\xfd\x61\xf0\xec\x00\x94\x4f\x1a\xb9\x36\x11\xeb\x07\x97\x61\x72\xae\xfe\x91\xf4\xab\xcb\x08\xd3\xfc\x01\xbe\xbd\x95\xe4\xbd\xcb\x60\xac\xb2\xd3\xa9\x0f\xb6\x08\xb1\x83\x87\x41\xb7\x8b\x5b\xe7\x52\x8c\x23\xa0\x49\xa1\xd4\x18\x06\xcf\x69\x7f\xd8\xeb\x05\xf8\xa3\x9b\x8c\x83\x09\x1e\xee\x6d\x6b\xf3\x8a\xe3\x5d\x37\xa6\x94\x6e\x0f\xcc\x4a\x82\x6d\x2a\x30\x56\x92\x58\x46\x0e\xbe\x77\x41\xaf\x6c\x44\x30\x6d\x3d\xeb\x56\x93\x0a\x63\xd6\xfe\x81\x01\xa0\x30\x08\x91\x19\x8b\x06\x03\x8b\x06\xb3\x16\x0d\x96\x0f\xef\x12\x10\xaa\x4b\xd2\xe9\x68\x64\x99\x15\x1f\x85\x27\xaa\xbb\x45\x6e\x47\xae\x00\x44\x5d\xe1\x1c\xe0\x37\xa9\x12\xf3\xfd\x03\x4c\x84\x46\xd0\xd5\x72\x1a\x63\x37\x0a\x62\xdf\x15\x86\xd0\x54\xcb\x1a\xd2\x53\xe3\x09\x74\xb3\x32\x59\x55\x0b\xca\x64\xb5\x55\x4a\xd3\xcb\x79\x65\xa0\x01\x8f\x62\xb7\x39\xe4\xb9\xe1\xfa\xc9\xbc\x3a\xd6\x66\x51\x3d\x6a\x53\x04\x0a\x17\x23\x68\x16\x55\x63\x99\x6b\x71\x80\xcc\x6b\x93\x6a\x96\x34\xd3\xb3\x85\x40\xe6\x22\xad\x9b\xbf\xe9\x0f\xbf\xc5\xe2\xba\x1c\x68\x19\xcc\x55\xcf\xa8\xc7\x6b\x20\x26\xba\x00\x50\x4a\x5a\xd2\x4f\x28\x69\xe9\x6c\xb5\x06\xf6\x4d\x93\x6a\x9e\x30\x9d\x1e\xaf\x03\xd8\xb4\xa8\x09\x3f\xdd\x62\x18\x7a\x9a\x0f\xa8\x55\xc2\x06\xa3\xe4\xb3\x1d\x43\x20\xd7\xbb\x1a\x22\xbb\x48\x51\x0d\x2e\x05\x9d\x96\x35\x51\x11\x28\x36\xd1\x4e\xcd\x05\x97\x68\x55\x35\x0a\x7b\x24\x95\x8c\xa6\xd1\x7f\xb8\x0d\x6c\x78\xd6\x40\x3b\xf5\xef\x17\x54\x22\x85\x30\x6f\xd7\xb8\x07\x1f\x91\x80\x48\x81\x7a\xb5\x23\x51\xe4\x92\x22\x57\x31\x47\xb4\x57\x69\xeb\xfa\xae\xb6\xca\xc6\x14\x3f\xbe\xdd\x18\xe1\xde\xea\x20\xa0\xa9\x62\x2e\xb7\xf1\xb0\xcb\x7b\x02\x7f\xcf\x72\xbf\x25\x2b\x75\x39\xd6\xb9\x84\x2b\x59\x96\x26\x2d\x0d\x38\x89\x2b\xba\x7c\x9f\xe1\xb6\x26\x1c\xc8\xca\x2d\xb9\x00\xf2\xb4\x0b\xeb\x00\xe7\x60\x6c\x20\x31\x44\x5d\x9e\x26\xd7\x20\x0d\x6d\x4b\x5e\xd5\x34\x59\x4a\x5e\xeb\x42\xf2\x92\x3b\x25\xaf\xad\xaa\x56\xf2\x0a\xc8\xa2\x22\x2a\xdc\x2f\x81\x45\x33\x37\xf3\x74\x28\x30\x25\x45\x41\xa4\x74\xa3\x4b\xee\x2b\x9a\x5f\x45\x95\xd8\x8a\x6b\x4b\xda\x1f\x2e\x9f\xd5\x33\x87\xdd\xee\x12\x33\x5b\x63\xbc\x9c\x90\x3d\x13\xeb\x55\x49\x09\x97\xcf\x0c\xc7\xc0\xbc\xcb\xe7\x40\xc1\xad\x20\x5b\x43\xbb\x09\x45\x01\x17\x10\x6a\x51\x98\x73\xde\x95\x6a\xe1\x5d\xe6\x5d\xe2\x0a\x6f\x5f\xb2\xc1\xa3\x94\x46\x70\x12\x23\xcb\xf9\x76\xa3\x36\x9e\xd7\x77\xcb\x82\xe6\x04\x16\x35\x48\x4c\x6d\xd3\x6a\xdb\xc6\x14\x2d\xa3\x30\x8c\x39\x22\xa9\xc6\x0d\xb5\x41\x18\x66\xbf\x32\x04\x57\x31\xca\x30\xd8\xc8\x1c\xfb\xb2\xe9\x84\x1a\x4d\x1b\xf6\x2b\xa5\x4c\x2e\xdc\xe2\x0b\x43\x0d\x79\xd8\x35\x06\x66\x64\xa1\xe5\x57\x2d\xc4\x92\xd8\x08\x47\x25\x7d\x36\xba\x48\x4f\xfb\x32\x95\x01\xb5\x47\xdc\xdd\x4e\xc4\xde\x42\x2e\x63\x17\x21\xec\x4b\x6f\x06\x7a\x0b\x53\x06\x61\xb3\xf8\x2e\x68\x15\xf7\x8a\xba\xa0\x58\x34\xc1\xf7\x0a\xbb\x3a\xa0\x98\xf1\xc4\x9a\x74\xf7\x06\x20\x80\x9a\x1a\x75\xcf\x29\xa2\x45\xfa\xb8\x2a\xd2\xbb\x8c\xc6\xe3\xf5\x04\xeb\xa2\xc0\x96\x05\x23\x05\x55\x3d\x65\x86\x7d\xf3\x89\x3b\x9d\xc4\x58\x7a\xe0\xb7\x2f\x8c\x67\x09\xd3\x36\xd4\x1c\x06\x5b\x8e\x15\x7c\xa6\x30\xf0\xf3\x51\xf6\xa3\x05\x52\x33\x1f\x27\xf0\xb5\x95\x3e\x54\xec\xab\x13\xcd\x5c\x94\x72\x40\x8d\x88\xd2\x66\x99\xc4\x33\x79\xae\x2e\x0e\xbc\xe1\x82\xa2\x90\x67\x01\x17\xa1\x8e\x72\xda\xa8\x34\x34\xfd\x35\x30\x44\xc1\x39\xc2\xd4\xa8\xd5\x08\x8c\xfa\xf6\x0d\xc6\x67\x26\x65\x8f\x2e\x46\x03\xbf\x07\x6f\xac\xa8\x25\xd0\x10\x4d\x5a\x94\x24\xc9\x78\x3d\x19\xae\xff\x59\xf4\x5f\x38\xb4\x81\xa5\xdc\xcd\x3a\x9d\x54\x83\x13\x3d\xdb\x97\xe9\x73\x84\x49\xf1\x5b\xff\xcc\xc0\xa6\x62\x12\x1f\x3d\x93\xa1\x03\x5e\xaa\x14\xe9\x06\xc1\x3f\xe6\x65\x72\x8d\x9e\x3f\x0b\xa3\x4b\x07\x2e\x6c\xab\x13\xa3\x18\x42\x7f\xb0\xba\x76\xb2\x24\x8e\x42\xe7\x51\xb7\xbe\x19\xea\x2e\x73\xdd\x47\x43\xfb\xbe\xf1\x60\xd5\x68\x4a\x0b\xb8\x47\xab\xeb\xa1\x91\xb3\xfb\x43\xd3\xfa\x71\xa5\x75\xe3\x18\xd0\x7d\x34\x4c\x2e\x79\x3a\x8b\x93\x2b\x7f\x11\x85\x21\x17\xe8\xf9\xb3\xfd\x30\xba\x2c\xfe\x95\xe1\xf3\xad\x39\x68\x7c\xf7\xfc\x91\xa5\xd8\x5d\x04\xe5\x10\xce\xb7\xc1\x63\xe5\xa5\x46\x10\x4a\xb5\xe6\x4b\xfa\xe8\x19\x5c\x02\xb5\x43\x57\x28\xb6\x07\xb1\x55\xb2\x25\x8b\x63\x9e\x0e\xf5\x56\x55\xc0\x00\xd6\xd9\x8c\x59\x75\x9d\x9a\x2b\x67\x08\x43\xef\xaa\x99\xe7\x68\x58\x5a\x16\xb6\x0f\xee\x1d\xa7\x79\x59\xd9\x89\x2b\x8a\x10\x09\xcb\x06\x0a\x5d\xd2\xac\x4c\x5b\x96\xe2\x18\xa5\xb3\x71\x7f\xd2\xe9\xb8\x33\x3a\x9e\x91\xd9\x04\x13\x24\x10\xa5\xa1\xbd\x96\xd7\xc7\xa3\x55\x97\x22\xc5\x6b\xa3\xae\x3b\x1b\x0f\x26\x5d\xcd\xf1\x75\xd1\xea\x7a\x88\x7c\x94\xd5\x4b\x77\x3a\xae\x2a\x6f\xb8\xf2\xb2\x8a\xe1\xfb\x74\x2d\x4c\x10\xaf\x56\x1b\xe8\x4e\x34\x63\x0f\x75\xfa\xaa\x8e\xe6\x40\x6d\x47\x57\xf5\x1a\xa6\x23\x90\x09\xca\x2a\xc0\xe0\x9a\x4e\x60\x91\xae\x29\x77\x1f\xc1\xfe\xaa\x6d\x01\xb5\x04\x4b\x2f\xe5\xab\x98\x05\xdc\x7d\x64\x16\xf0\x11\xb1\x5f\x85\x2f\xa0\x75\xb9\x1e\x3e\xea\xae\xba\x68\xa8\x97\x4b\x6d\x2d\x54\xf1\xba\x96\x7a\x9b\x54\x96\x6d\xcb\xa3\xd3\x0a\xf4\x2d\x25\x5e\x15\xde\x35\x94\x4a\xb0\x6a\x5a\x1d\x45\xbd\x08\x91\x2a\x1b\xe9\xf7\x2c\x4a\x5d\x88\x1c\xd5\xbd\x64\x24\xf6\x1b\xd7\xf9\xdc\x6b\x82\xca\xb6\x7a\x90\x87\x14\x71\x67\x74\xa0\x1a\xad\xba\xa1\x0c\xb5\xbe\xe3\xba\x74\x70\xc7\x43\x0b\xc1\x9d\xb0\xd1\x67\xf6\x51\xf7\xff\xcf\xdc\x97\x36\x39\x8e\x1b\x0b\x7e\xdf\x5f\x51\xc5\x75\xcb\x44\x11\x62\x89\xea\xe9\xf6\x34\x25\x48\xd1\x3b\xf6\x1c\x7e\x33\xf3\xc6\x6e\xfb\xd9\x6d\xad\x62\x03\x45\x41\x12\xdd\x3c\x64\x92\xaa\x96\x5c\xd2\x7f\xdf\x40\x26\x2e\x1e\x55\x33\x7e\x6f\x63\x77\xa3\x3b\x4a\x20\x90\x48\xdc\x89\x04\x90\x87\x11\x20\x86\x11\x50\xeb\xd7\x0b\xac\x34\x31\x8e\x8c\xec\xc9\x6e\x7d\x62\x2f\x68\x82\x5f\xcf\xbc\xc5\x0d\x76\xef\xaf\x49\x78\xa8\x84\xea\xdf\x13\x4a\xc6\x7b\x25\xf6\xa5\x47\x5f\xe8\xe7\xeb\xb5\xf5\x9c\xf3\xa3\x6f\x39\x31\xe7\x16\x87\xf7\xaf\xa5\x0a\x7d\x28\x54\x81\xc5\x64\xa9\x42\x71\xf8\xfa\x0e\x18\xd2\xfa\x1f\x55\xd3\x67\x55\x14\x7f\x6f\x2e\x12\xb1\x0f\x2b\xe6\x03\x73\x33\x06\x6e\x87\xdc\x73\x5a\xb2\xb1\x73\x3d\x0f\xc1\xac\xdc\xf9\x15\x41\x66\xf8\xfb\x1f\xa3\x09\xa1\x19\xc3\x42\xb5\x54\xab\xba\x33\xc9\x46\xa3\x72\x21\xf7\xc9\x92\x65\x88\x3f\xa5\x09\x72\xc9\x87\xf2\xb3\x1f\x4d\xe8\xb8\x24\xf4\xc8\xaa\x7b\x78\xdb\x3e\xce\xa3\xf0\xcd\x32\x65\x51\x7c\x9c\xbf\x5e\xfa\x29\x9b\xd2\xe3\x62\x1a\x4e\xdf\x98\xab\x97\xec\x72\x29\x83\x68\xce\xe4\x06\x2b\xd3\xc3\x37\x34\x08\x4a\x42\xe2\x94\x1d\xe7\xbf\x09\xdf\x2c\xdf\xc4\xd1\x84\xa6\x77\x2c\x51\x77\x3e\x45\xe8\x08\xd3\x8e\x46\xe9\xbc\x13\xe1\xa7\x6d\x10\x78\x77\x13\x59\xc3\xcd\xe5\xa4\x6e\x92\x65\xee\x27\x0a\x77\xb6\xcc\xe2\x92\x28\x30\x99\x59\x75\x82\x0c\x5e\x2e\xa9\x82\xea\xf4\xcc\x68\xe4\x3c\x30\xb9\x09\x97\x8b\xdf\xe0\x39\x63\x63\x8a\x6c\xd7\x20\x28\x09\xf5\xc0\xd6\xa3\xcc\x9b\x97\x1b\x31\x1a\xdd\x22\xc8\x37\xa2\x10\x15\x6f\xca\x01\xcd\x88\x3f\xa5\xb9\xb8\x91\xc0\x37\x4a\x04\xa1\x06\xfd\x04\xc9\x51\x87\x60\x78\xef\x90\x1d\x77\x69\x11\xe2\xa6\xd1\x41\x07\x95\x6a\xc5\xb0\xde\x6d\x1f\xe5\x0c\x9e\x7f\xfc\x8c\xc1\x59\x87\xfa\xa9\x7a\x18\x82\x0e\xbd\x73\x66\x4f\x76\x9f\x12\x42\x2b\x36\xa1\xa5\x11\x9a\xe2\x3f\x02\xc5\xcb\x68\x3a\xdb\x94\x4f\x0d\x2b\x69\xc9\x8a\xa0\xba\xb3\x28\xb4\x8c\x60\x49\x68\x10\x54\x4a\x0f\xb7\x9c\x0b\xbc\x46\x2b\x6f\x99\xf5\x6f\xcc\xaf\x6a\x38\x0c\x1b\xc7\x86\xef\x45\xdd\x7e\x5d\xba\x13\xb2\x9d\x44\xe2\x08\x9d\x5e\x33\xcf\x0b\x00\x0c\x56\xad\x2f\xee\x38\xb9\xe7\x76\xe3\xeb\xe4\x7a\x42\x65\x8c\xc2\x98\x84\xf6\x42\xa5\x7b\x21\xd8\x38\x62\xac\x5a\x4e\xe2\x42\xdf\x63\x55\xe3\x08\x6e\x72\xe7\x1d\x24\xfa\x60\xb8\x2c\xe2\x22\x90\x08\x02\xdf\xf3\x02\x4e\x5c\xa3\x48\x6e\x86\xb1\x30\x32\x94\xc5\x55\x1e\x37\x1d\x4e\xb2\x68\x77\x0a\x81\x07\xe5\x97\xfa\x49\x3d\x1b\x7b\x41\x27\x27\x7a\x1d\x22\x66\x75\xf5\x45\xdc\x89\xe2\x2c\xfb\x14\xe7\x10\x6f\xc8\x6a\x28\xcb\x38\x82\x17\xb2\xfd\x68\xb4\x87\x2b\xe9\xd1\x68\x2f\x07\x55\xf1\x86\x9d\x09\xa8\xb6\x2d\xd7\x32\xb7\x56\x60\x52\xf7\xb2\x40\xba\xec\xc1\x1e\x3e\xa9\x58\x4d\xd6\xe6\x06\xb6\x08\xd5\x1d\xab\xc2\x11\x61\x2e\x7e\xb2\x8b\x1c\x3e\xa9\x58\x09\x2b\x43\x45\x88\x5e\xec\xc3\xab\xc1\x3e\x6f\x2b\xb9\x5b\x94\xc2\xd8\x77\x4f\x99\x9c\x34\xcc\x57\xb1\x2b\xbe\x0e\x1f\xc7\x7b\x24\xb6\x3e\x14\xad\xbe\xc0\xa5\x78\x9e\x16\x41\x73\x87\x97\x09\x63\xbc\x49\xa0\x85\xf6\x41\x31\x33\xa3\x4d\x6f\x1b\x45\x0f\x74\xfb\xda\xd3\x11\x3b\xd2\x21\x60\xd1\x20\x4d\x57\xa4\xcf\xa5\xec\x68\xc8\xad\x37\x00\xdc\xe9\xb9\xfb\xff\x19\x86\x77\x93\x5f\xdd\x87\x8d\xa8\x1b\xdf\xe7\xab\x68\x3d\xe6\xb2\xb7\xc3\xa6\xfc\x3a\x3d\x89\x8d\x2f\x08\x31\x84\xc4\xd0\x36\x21\xf7\x3c\xbb\xe3\xfd\x2f\xdf\x88\x2f\xb4\x1f\x0a\x6b\xec\x4f\xd8\x9c\x68\x09\xfd\xaa\x2e\x6e\x2f\x97\xde\x6e\xc8\x47\x23\x2e\x77\xc0\x81\x3a\xc7\x1c\x85\x7c\xdd\x65\xc1\xc9\x92\x43\x92\x1e\xd8\x5a\x92\x32\x14\x8b\x29\xec\x80\x99\x67\x07\xd4\x41\x60\xc5\xaa\x5a\xcf\xfa\x22\x15\xf2\xf4\x1f\x80\x79\x6c\xb7\x7b\x7c\x01\xb6\xb2\x09\x89\x65\xaa\x9a\x80\x02\xe2\x3b\x4b\xd0\x2f\x69\x43\xf4\xfb\x60\x49\x2e\x17\x7d\x3f\x81\x07\xc9\xc7\xb8\x44\x85\x82\x58\x5c\x89\xd3\x73\xff\x74\x29\xdb\x6d\x64\x3c\x9b\x98\x5e\xec\xbc\x67\x8c\x46\x4d\x7f\xed\x58\x68\x5c\x43\xa2\xbd\x86\x90\xb0\x83\x89\xb6\x47\x39\x25\x6e\xcd\xfb\xa6\x93\x51\x2e\xa9\xa6\xd5\xf2\xf6\x92\x82\x4f\xda\xac\x1a\x47\x2c\x51\x63\x6b\x09\x9b\x7c\xed\x93\xa7\x3a\x04\x19\x07\x1f\x1f\x37\xda\x12\xf9\x74\xb5\x5f\x6b\x72\x8a\x4c\xe7\x4c\xa8\x2b\x1f\xd1\x65\x3f\x41\x5e\xb8\xe6\x8f\xc2\x27\x74\x8f\x77\x8a\x19\x6f\x84\xbf\xd3\x97\xcb\xf2\x54\x40\xf7\x20\xdd\x09\xd6\x86\xd9\xdf\xfc\x67\x18\xd9\x13\x9d\x50\x34\xe8\x30\x7d\xf3\x86\xde\xd8\x3f\x13\xe2\x69\x14\x7f\x14\x49\xe3\x4f\xe8\x84\x6e\xe9\x49\xc6\x55\xa2\x6e\xca\x4a\xf8\x70\xff\x87\x55\xbc\x15\xa1\x51\x39\x19\x8d\xfe\xee\x13\x23\x44\x30\xf0\x00\xa1\x1b\x8f\xca\x07\x74\xb5\xa7\xd9\xaa\x59\xaf\x09\xfd\x2d\xbc\x45\xa0\x34\x9a\x04\x80\x3e\xa1\xb6\x1b\xda\x45\xd0\x5a\x5b\x5a\x22\xf4\xa3\xcb\x68\xfe\xd1\x91\x1b\xd2\x97\x7e\xec\xb3\x53\xa7\x94\x4d\x66\xa9\x5b\xa7\x94\xa4\x5b\x1f\x2e\x42\xd2\x35\xb1\xd4\x1d\x0f\x01\x62\x55\xb2\x26\xe0\x61\xa1\xe5\x8f\x2e\x97\xe8\x96\xf1\xb0\xb8\x5c\x7c\x99\x82\xb1\x84\x8a\x55\xb9\x26\xe4\xa9\x60\x32\x00\xee\x3f\x69\x85\xe1\xa6\x54\xf2\xe0\x92\xc6\x83\x3a\xba\xcf\x51\x9c\xa0\x59\x1e\x56\x93\x75\xbc\x01\xb5\x74\x94\x71\x8a\xbc\x35\xe4\x6b\x02\x6f\xea\xad\xcd\xae\xa4\x9f\xd3\xaa\xd1\xa8\x58\xd8\xc5\x3b\x2b\x58\x25\xc1\xd5\x2e\x89\x36\xd5\x0a\xda\x94\x71\x05\x6a\x38\x31\x77\x56\xd5\xdf\xdb\x02\xe1\xb3\x9f\x9f\x44\x4a\xb7\xd2\x3e\x27\x83\x06\x0e\x88\xba\x11\x14\xd0\x76\x28\x4f\x89\x92\x06\xe7\x70\x27\x9a\xf7\x27\x51\x83\xf6\xe2\x09\x1e\xf7\x94\xb8\xab\x5c\x70\x32\x8a\x9f\x6c\x14\x3f\x51\x1e\x9e\x11\xea\xec\x40\x9d\x11\xea\x6c\xa0\x4a\x56\xfa\xdc\x48\x75\x97\x03\x1a\x12\xe5\xaa\x59\x53\xce\xe4\xf8\x7b\x27\x8f\xd0\x02\x83\x67\x64\x03\xf5\xeb\xaf\xec\x22\x10\x96\x90\x01\xc6\x43\x5d\xa6\x5e\xfd\x3c\x6c\x4a\x48\x6f\x4a\x93\xca\x4f\x76\x9b\x55\xf9\x31\x20\xd9\x85\x4e\xfe\x02\xf3\xcb\x1f\x93\x2a\xf3\x4b\x84\x73\x5b\xdc\xe5\x82\x35\x58\xd8\x32\x2e\x17\x99\x69\x5e\x38\x30\x58\xca\xc2\xc1\x63\x44\x6d\x54\x03\xec\x63\x1e\xce\x39\xb7\x41\xd0\x06\x43\xf0\xe4\x17\x6d\xb5\xa8\x83\x01\xbf\x69\xab\x49\x2d\x0c\xf2\x8b\x3a\x75\x51\xc7\x2b\x55\x13\xec\x3a\x38\x37\xa9\x6f\x09\x0f\x37\x98\xd5\xe5\x72\x9b\xc9\x45\xe6\x56\x1a\x77\x6a\x55\x21\xbc\xc9\x95\x89\xc4\xad\xf7\x00\x4c\x53\x92\x76\xd5\x11\xa6\xb0\x30\x85\xc6\x53\x74\xf0\xb4\x60\x00\x4f\x75\xb9\x64\xf6\x85\xdf\xbc\x75\x5e\x2e\x9d\x29\x6f\x94\xce\x68\xc9\x9a\x57\xd3\x65\xf8\x26\x9e\xcc\xf6\xe1\x83\xd8\xa5\xc5\x4f\x1c\x34\x75\xf7\x61\xdd\x54\xe5\x27\x81\x14\x57\x1d\xfc\x7b\x88\x90\xec\xee\x6d\x51\xac\xa1\xa0\xc9\x02\x97\xfd\x25\xb4\x2f\x28\x55\xfb\x88\x02\x74\xe3\x65\xb5\x63\x17\x5e\x8d\x99\x4c\xee\xc0\xeb\x58\x5b\x37\x1f\xc5\x02\x6e\xdc\xbd\xe1\xe7\x6a\x6a\xb6\x00\xa7\x28\x18\xa1\xb1\x89\x90\x3f\x63\xa8\xda\xb5\x23\xa3\xe2\x08\x77\x18\xf2\x2b\xd8\x64\x26\x5c\xb9\x32\xc5\x67\x66\x4a\x3b\x25\x67\x7c\x25\xd6\xf4\xc0\x72\x78\xa6\xd9\xb0\xdc\x91\xa8\x91\xd3\x29\xb7\x6f\x21\x79\xfb\x2d\x04\xc4\xb6\xdd\xce\x8d\x28\xd0\xd9\xdc\x7d\xcf\xc8\xd8\x84\xd6\x0c\x85\x97\x18\xdb\x2c\xc1\x64\xac\x84\x31\x4f\x07\x93\xf8\x14\x1f\xe0\xf9\x11\x1f\x1a\xfc\x3e\xc8\x21\xd4\x97\xa2\x72\x38\x6a\x36\xa1\x99\x8b\x52\x3d\x47\xb4\x70\x6e\xe3\x83\x7e\x77\x84\x07\x07\x7f\x00\xea\xa0\x6e\x30\x24\xf7\x90\x5b\x69\xa0\xcb\xc5\x6f\x4f\xaf\xdc\xb0\x28\x89\x1a\x26\x77\x2a\x26\xec\xc8\x26\xfd\x96\x27\x6c\x1b\x44\xf1\x91\x9d\x82\x88\x46\x5a\x05\x09\xfa\x49\xbf\xb7\xbb\xd0\xb5\xbb\x72\x6a\x12\x84\x6f\xe2\xcc\x8d\xca\x64\x94\x9c\x5a\x6a\x26\x66\xb4\x76\xe6\x5f\x16\x24\xb4\x0e\x8e\xee\xd4\xeb\x2e\x91\xbc\xc5\x13\x7f\x35\xd0\x0e\x24\xf5\x79\xf7\xb0\x61\x08\xbe\x4a\x59\x35\xeb\xf0\x71\x86\x8d\x46\x4e\x53\x90\xcb\x45\xcc\x73\xa4\xa1\x62\x91\x23\x75\x35\xe3\x23\x9b\xdb\x65\x75\xe5\x0e\xbb\xb2\x23\xb1\x5e\x4c\x2e\x97\x62\x01\xd7\xa8\x42\x76\x0c\xa2\x82\x10\x3f\x11\xfd\x50\xd6\x99\x58\x39\xd0\x16\x41\xe0\xb9\x50\x4f\x86\xf1\x29\xde\xd0\xde\x0c\x02\x95\x86\xf1\x11\x67\x8f\xc9\x97\xb8\xf9\xb6\x32\x5f\x6f\x8e\xa0\x2e\x46\x42\xc8\x2f\x18\xc3\xfe\x80\xc5\xfd\x61\xfd\xd9\x31\x24\x57\x87\x7e\x5c\x65\x05\xaa\xf6\xfa\xc6\xb1\xeb\x77\xe9\xe5\xd2\x8b\xab\x96\xa6\xeb\x6f\xdd\xbe\xf7\x0b\x14\xed\x2b\x94\x50\x49\xa1\xc5\x49\x0a\xb4\xb0\x21\x8f\xff\xfd\x8c\x15\xd4\x05\x32\x56\x2a\x63\xa5\x33\x56\x98\xb1\xba\x2a\xd1\x0d\x38\x19\xb4\x67\x60\x05\x8f\xfc\x2e\xbd\x28\x54\x4c\x9b\xb0\xab\xde\x99\x8c\x95\xf8\xc6\x04\x88\xdd\xe1\x7e\xea\x74\xd6\xb6\x1d\x6b\x27\xbd\x92\xe3\x18\x2c\x1e\xe5\x0f\xda\x15\xd0\x71\x83\x55\xd8\x06\x0a\xe0\x7e\xaa\xcb\x73\xeb\xe0\xa4\x9e\xba\xb5\xc0\x6e\x19\xac\x86\x96\xb6\x6c\xd5\xc3\x44\xbe\x5c\x11\x7a\x0a\x34\x6c\xab\x3f\x26\xbd\x04\xb7\x32\xb2\x1b\x07\xab\x02\xfd\xdb\xae\x88\x8a\x7a\x71\x48\x64\x83\x4d\x71\x6e\x2d\x6c\xfa\xa4\x55\x07\xd8\x43\x9d\x52\x3a\xb4\x69\x60\x7a\x6b\x00\xd8\x0b\xc7\xc5\xfd\x94\xc2\x9f\x6d\x50\xc8\xa2\x09\x69\x1d\x8d\x2c\xd3\xfd\x5b\x34\x25\xe9\xea\x83\xf9\xcf\x49\x8f\x50\x63\x51\x12\xf9\x6e\xa1\x55\x68\x32\x13\x44\xcd\x33\x34\x3f\x80\x8a\x4c\xad\x9e\x31\x9b\xec\x86\x65\xb3\x8d\xe5\x92\x37\x01\xcb\x70\x97\x4d\x58\xb9\xda\x8c\xb3\x35\x3d\x62\x20\x88\x40\x4f\x71\xb5\x91\x3b\x6e\xb9\xda\x04\xd1\xda\xde\x01\x26\xfa\xd8\x91\x83\xc2\xd2\x71\xce\x0e\xa3\xd1\x71\x5e\x01\x73\x08\xba\x8b\x2a\x6c\xb8\xd2\x84\xf9\x10\x33\x3e\x92\x7b\xff\x30\x3e\x92\x3b\x3f\x1f\x27\x24\x48\xe8\x91\x41\xc2\x55\x3f\xec\x1e\xe6\xec\x38\x1a\x1d\x1c\x64\xc7\x2e\xb2\xfc\x59\x64\x07\x85\x4c\xe6\x5a\x40\xa5\x16\x15\x10\x66\xa8\x94\x0a\x77\x2a\xc5\x4f\xcf\x54\x8a\x9f\x6c\xa5\x16\x50\x29\x07\xd9\xb1\x8b\x2c\x7f\x16\xd9\x41\x21\x4b\xb7\x7e\x32\x67\xf9\x68\x94\xe0\xd5\x3c\xe0\xc9\x55\xd8\xe0\x39\x32\x1f\x62\xc6\x09\xb9\x07\x0c\x77\x80\x2d\x38\xd2\x04\xaf\xfd\x4c\xa5\xf2\xb9\x1c\x88\xdc\x41\x96\x74\x91\x1d\x9e\x45\x96\x2b\x64\x32\xd7\x02\x2a\xb5\x28\x4c\xe3\x72\x15\xee\x54\x8a\x9f\x9e\xa9\x94\xd3\x53\xf9\x02\x2a\xe5\x20\x4b\xba\xc8\x0e\xcf\x22\xcb\x15\xb2\x04\x5c\x93\x1e\x19\xab\x2f\x17\xb3\xa6\x0b\xd8\x0c\x13\x12\x34\xb4\x82\xe0\x91\x04\x9c\xd0\x94\xe5\xb4\x66\x07\xbb\xb6\x11\x2e\xb7\x70\x07\x09\x77\x75\x37\xab\x5f\x74\x4d\x22\xd1\xfd\xbe\x4c\x0b\xe6\xc1\xc5\x88\xa7\x1e\xde\xf4\x9a\x35\x44\x82\xa2\x0b\x5c\x6d\x89\x43\xae\x12\x0e\x72\xae\x8b\x09\x79\x7a\x89\x98\x68\x8b\x99\xf0\x2f\x8c\x88\xa7\x0c\x1b\xc1\x46\xfc\xd3\x77\xf7\xd1\x97\xb3\x46\x29\x3f\xab\xf5\x8e\x6f\x5c\x69\xe1\x57\xe4\xce\xe7\xf7\xd3\xa0\x90\x24\x14\xe5\xf9\xca\xba\x1d\x2b\x94\xa6\x96\x50\x1a\x36\x6d\xea\x79\x3f\xa5\x3f\x8f\xfb\x8b\x41\xdc\x5f\xf4\x71\x5f\x5d\xdc\x7c\xf8\xc8\xa3\xee\x0c\xfe\xe2\xab\x0e\xd4\x56\x3f\xe9\x84\x9e\xc8\x0c\x95\xdd\xed\xe9\xa3\xa4\x5d\x33\xbd\x28\x62\x6a\x48\x5f\xd5\x22\x7d\xce\x61\xd4\xb9\xfa\xe5\xfa\xb8\x0b\xc7\x5a\xc9\xdf\xa7\xec\x36\xa2\x35\x8b\x68\xc2\x26\xc6\xa2\xc1\xec\xd6\xaf\xe4\x80\x65\x0b\x7d\x11\x1a\x54\x64\x46\x9e\xb2\x80\x55\xea\xea\xad\x58\x65\xe3\x6a\x4d\x37\x18\x08\xea\x35\xdd\xc9\xe0\x9a\x6e\xe5\x4f\x50\x03\x6d\x4c\x61\xba\x57\x8e\x8c\xb3\xbe\xa4\xde\x91\xa7\x23\xcb\x68\xc5\xc6\x15\xad\xd9\x74\xa6\x97\x82\x5c\x7d\xd5\x5c\x16\xcd\x58\x12\x54\x72\xba\xc8\x2e\xf0\x09\x56\x54\xc1\x47\x34\x63\x09\x3b\x06\x95\xcd\x67\xf5\x98\x85\x2e\x6c\x07\xa5\x8b\x39\xdb\x8d\x46\x02\x25\xb8\x20\x66\xa7\xc2\x66\xf9\x6d\x18\xbe\x13\x8c\x05\xb9\xf7\x77\x63\x41\xee\xfc\xed\x78\x43\x82\x0d\x15\x28\xef\x6d\xd6\xf2\x6e\x2e\xd1\xef\x1c\x64\xa2\x8b\x6c\xfb\x2c\xb2\x9d\x42\x26\x73\x2d\xa0\x52\x28\x4b\x86\x95\x52\xe1\x4e\xa5\xf8\xe9\x99\x4a\x39\x04\x66\xb7\x80\x4a\x39\xc8\x44\x17\xd9\xf6\x59\x64\x3b\x85\x4c\x8e\x16\x1c\x9e\x06\xb9\x87\x46\xb3\xdd\x1c\x02\xf2\xa4\x9c\xc2\x3d\xf0\x66\xc1\x38\x5e\xfe\x6e\x55\x88\x18\xb2\xd3\xc9\x84\xa9\x0e\xcb\x81\xe9\xbb\x4e\xba\x91\x67\xda\xcc\x19\xc7\x0b\xe9\xad\x0a\xbd\x84\x1a\x24\x3a\x5f\x40\x2d\xd3\xad\xc4\x49\xce\x04\x3d\xb0\xdd\x6c\x33\x67\xdb\xd1\x68\x33\xd7\x05\x2d\xb0\xa0\xa5\x2f\x18\x66\x1a\x6f\xc8\x3d\x74\xd5\x1d\x74\x5b\x20\xe8\x46\xd5\x25\xde\xce\xe5\xf9\x68\xab\xf3\x6e\x16\xba\xba\xfe\xee\xd9\xcc\x5b\x95\x59\xf6\x9b\x2c\x78\xa1\x3b\x6f\x8e\x9d\xa7\x0b\xe6\xa7\x67\x0a\xe6\x27\x12\x6f\x17\x50\xb0\xce\xbb\x99\xeb\x21\x50\x05\x0f\x65\xde\xaa\xcc\x54\xdc\xca\xad\xad\xd3\x51\xb9\xee\xa8\x4d\xbf\x13\xc5\x0b\x69\xa6\x83\xb7\x84\xd0\xdd\xad\x64\x2f\xfc\x97\x40\x3a\x69\x07\x27\x0d\x1e\x84\xda\xf4\xb7\x4b\x53\xc9\x0c\x76\x91\x0e\x95\x96\x7b\x45\x17\x72\xe6\x32\x98\xb2\x05\x9a\x32\x1a\x7d\x07\xc7\xe0\x43\x5f\x83\x65\xb5\xa6\x68\x7b\x9c\xa2\x3e\x2e\x90\x56\xa7\xc8\xd2\xb5\xad\x83\x8a\x11\x95\x25\xbd\xe3\x29\xa8\x32\x28\x11\xc0\x09\x79\x06\x52\x33\x9c\x49\xc0\x9c\xcc\xea\x82\xc7\x44\xad\x92\x35\x4d\x9d\x2f\xc9\x74\x16\x2c\x61\x8c\x75\xf0\x8c\x1d\x24\x4b\x30\x4e\xe0\x64\x72\xd2\xb4\xa5\x00\x96\x69\x32\x29\x19\x0b\x24\xca\x8c\x9b\x10\x3e\xa5\x42\x0b\x40\x1d\x19\x42\xa9\x0e\x69\x5b\x44\xb4\x84\x37\xc2\x0c\x44\xb8\x6b\x53\xa5\x99\x0e\xb0\xc6\xf6\x3c\x6a\x4c\xf4\x99\x85\xfb\x29\xfd\x4e\x0e\x91\xc9\x53\xcb\x11\x93\x43\xe6\x98\xd8\xe8\x8d\x91\x56\x17\xff\xc5\x7c\x0b\xee\xc4\x0a\xa9\xe5\x54\x06\x37\x66\x5d\x76\x5f\x09\xbd\x19\x54\x42\x6f\xd8\x58\xbc\xa8\x84\xde\x07\xb8\x9f\x5e\x95\xba\x36\xc6\xcb\x4d\x6e\xd9\x36\x61\xae\x9e\xf2\x24\x7b\x20\x41\x0c\x77\x20\x13\xaf\xa0\x13\x3b\xf3\xbb\x16\xf6\x41\xd8\x16\xa6\x50\x0a\x12\xbe\xca\xac\x40\x63\xc7\xbf\x33\x1b\x53\x67\x1a\x5a\xf3\x07\xc9\x7a\x34\xfa\xde\x4f\x61\xf2\xc1\x9c\x83\x9f\xe9\xda\x16\x42\xf7\xba\x93\xac\x12\x3d\xed\xf6\x2e\xb9\x92\xf6\x5a\x6d\x68\x13\x74\x3a\x82\xf2\x21\xbe\xec\x85\xd5\x3b\x1a\xc9\xe9\x62\x8f\x8d\xdf\x3d\x77\x36\x44\x11\x76\xec\x8d\xda\xb2\x49\x89\xcb\x26\x99\xde\x38\xb0\xc9\xec\x30\x37\x8b\xf2\x10\xb0\x04\x73\x1e\x59\xbd\x3a\xc8\x83\x5f\xbd\x3a\xc0\xe2\x83\xf5\x71\xbc\x5c\x8e\xf3\x12\xaf\xba\x8e\x8b\x12\x6f\xcd\xf2\x79\x86\x31\xf9\x22\x53\x32\xe2\xed\xed\xf4\xc8\x4a\xc5\xa6\xd3\x9c\x65\x9a\x29\x2f\xa8\x36\xa9\xc7\x58\xba\xdc\x87\xbc\x4a\xfc\x23\xcd\x69\x43\x27\xb4\x5a\x2a\xd6\x37\x9e\xde\xa9\x10\xbd\x8d\x48\x9c\xfa\x7b\x8a\x30\x95\xec\xae\x24\x2b\x6b\xa1\x0a\xe1\x1d\xbe\x91\x53\xcd\x42\xb5\x8e\xf5\xd7\x5f\xc0\xf2\x1b\xfe\xbe\xab\xe1\xd4\x61\xf0\x1d\xd6\x53\x2d\x73\x6a\x8f\xe4\x21\xda\x0d\x54\x42\xa9\xca\xbc\x80\x18\x7f\x41\xa8\x3d\x13\x60\x39\xc5\xfd\x74\xf6\x12\xdb\xdc\x3b\x1d\x74\x19\xf6\x4a\x79\xdd\x0b\xf8\xfd\x94\xde\xf6\xb6\x05\x5a\x76\x2f\x56\xdb\x18\xa7\xcf\x63\x7c\x0e\xdf\x2f\x61\xf3\xfb\x38\xe5\x92\x36\x7b\x1c\xc0\x10\x3a\xa1\xb7\xd1\x70\x85\x07\xae\x4a\xbe\xef\xce\x72\x7c\x10\x50\xd2\x37\x68\xb3\x8a\xee\xe8\x96\x9e\xe8\x03\x3d\xcf\x92\xa5\xff\xc0\xb6\x0c\xf4\xa3\x77\x92\x8d\xde\xb0\x26\x28\xe8\x81\x35\x41\x45\xfd\x9c\x09\x32\xf7\xf7\x8c\x13\x30\xe5\x91\xd3\x9c\xed\xe9\x9e\x9d\x25\x28\x68\x56\x47\x84\xc4\xfe\x4e\x23\x78\x90\x08\xf6\x4c\x04\x05\xcd\x99\x90\x08\x36\xac\x21\x73\xff\xa0\x11\x6c\xe8\x86\x1d\xe8\x81\x9d\x25\x28\x68\x65\x47\x84\x50\xb3\x38\xf6\x7a\x71\x6c\xe6\x29\xc6\x1c\x16\xa9\x5e\x2e\x08\x24\x67\x30\x83\x10\x54\x97\x50\xb5\xa0\x46\x23\x5f\xae\x9b\x9c\x9f\xb0\x5a\xf4\x80\x28\x46\x23\xff\xc0\x20\x04\xb5\x93\xdc\x55\xaa\xe0\x37\x0c\x42\x58\x0b\xba\x57\xab\x6e\x4f\xa8\xcc\xa0\x78\x10\xbb\x16\x41\x08\x19\x79\x1d\x2a\xcf\x5f\xb5\x7b\xfe\xf2\x0f\x74\x43\x68\x6d\x9f\x79\xf6\x74\x43\xf3\xf1\x9e\x1e\xc6\x92\x35\x3a\xc2\x2d\xdd\xee\x72\xd9\x5e\x2e\xa7\xcb\xe5\x81\x40\x7e\x77\xf9\xd7\x9a\x9b\xde\xd3\x03\xa1\xbb\x65\xad\xb9\xa1\x3d\xdd\x90\xd8\x49\xdd\x10\x7a\xb2\xa9\x79\x2b\x55\x7e\xd1\xad\x9b\x7a\x68\xa5\x1e\x08\x7d\x70\x31\x1f\x5a\x98\x0f\xb2\x16\xf6\x6a\xcf\xce\xa8\xbf\xf8\x9d\x1b\xb5\x06\xda\x09\x6f\x92\xa5\x36\x5a\xaf\xcd\x01\x61\x1a\x5c\xf6\xe9\xa4\xbf\xb9\x91\xa8\x0a\x82\xe4\x23\xeb\x18\xc4\xe3\xc4\x71\x68\xd8\x97\x68\x2d\x97\x65\x1c\x7e\x41\x33\xd7\xd7\x07\xcd\x1c\x69\xdf\xeb\x39\xac\x45\xf3\x5b\xde\x70\xf6\x48\x21\x7c\x3c\x7c\x53\xa5\x1b\xf6\x13\x3d\x83\x2c\x04\xfb\x9a\xc2\xc3\xfa\x4f\x19\x4f\xc4\xbe\xcc\x36\xae\x78\x9b\xb5\xda\x71\x45\x28\x34\xb2\x3c\x00\x60\xac\x2b\x5f\x35\xba\xb2\x41\x0d\xef\x01\xe0\x9d\x04\x42\xe5\xbd\x7e\xe2\x56\x26\x2a\x3d\xbc\x7e\xea\x49\xa6\x96\x3d\xc4\x78\xc8\x3e\xaa\x14\x63\xca\xff\x46\x28\x15\x7c\x45\xa7\x05\x6a\xf3\x2b\x1d\x3c\x55\x55\xe8\x9c\x7e\x49\x99\x4a\x7e\x7f\x12\xad\x06\x2b\xcb\xfe\x57\x5b\x04\x68\x87\x3d\x63\xe2\x45\x9b\x50\x68\x56\xdc\x51\xe2\xf2\x51\xd0\x63\xc9\xc3\x22\x06\xfd\x00\x14\x00\x61\x4a\xeb\x57\x95\xfc\xd7\x6e\xd1\xaa\xc4\x83\x4a\xff\xf8\x4c\xfa\x46\xa6\x27\xd3\x03\xfb\x40\xcf\xa0\x47\x37\x28\x78\x47\xab\x17\x2c\xcb\xa0\xd8\x8a\x32\x2e\xc3\x95\xa0\xa1\x5f\x30\x65\x64\x46\xcb\x33\xad\x8a\xf5\x68\x14\x31\xd9\x16\x9d\xac\x05\x4b\x64\x1a\x21\x4f\x78\xf1\xce\xf0\xdc\x02\x71\xda\x84\xe1\xb0\x59\x1a\x2c\x78\xd3\x2f\xf8\xfc\x72\xc1\xe7\x7e\xc1\x4d\x79\x18\x28\x57\x3b\x94\x50\x7d\xa8\x2c\xa2\x0e\xf4\x62\x0a\xf3\x50\x5b\x7a\x65\x7f\xa0\xe7\xf0\x58\xd8\xef\x5f\xd1\x73\xd8\x54\xe9\x6e\x27\xaa\x3f\xba\xe6\x5d\xd9\x47\xd9\xe9\x72\xb7\xea\x4e\x7f\xa3\x61\x88\x5a\xce\xc6\x45\xc5\x61\xf5\x49\x09\x96\x8c\xa3\x35\xd4\x37\x10\xe1\x89\x28\x55\x07\x70\xbb\xd2\x94\x07\x0b\xbf\x41\xf8\x73\x0b\xfe\x4c\x50\x69\x43\x82\x5f\x65\xcd\xb5\x71\x1a\xf6\x95\x5c\xe8\x42\x12\xb1\xb3\xdb\xca\xaf\xc0\x67\x28\xaa\x83\xc9\x15\xe0\x7b\x87\xac\x6c\x3c\x12\x8a\xfc\xd0\x9c\x25\x15\x41\xd3\xdb\xce\x8b\xc0\x2f\x34\x4c\xfb\x80\x11\xef\x65\xf8\xcc\x94\x4d\x66\x65\x80\xbc\xbf\x66\x1b\x6b\x91\x9c\x35\x46\x8b\x60\x66\x2c\x96\xcb\x15\x44\x13\xf7\x0b\xc6\xa5\x2c\x3f\xd5\xec\xa1\x67\x91\x92\x3d\x21\x85\x8a\xf9\xd5\xf0\xaa\x28\x59\x5a\xba\x32\xa5\xea\x2e\xb0\x5c\xf1\xf5\xac\x00\x5b\xf1\xfe\x99\x36\x84\x16\xfa\xe5\x18\x94\x3e\x8d\xcd\xa1\xd4\x26\x74\x0c\x61\x2a\xef\x5f\x16\x90\x03\x47\xa9\x34\xd7\xea\xd1\xc8\xd7\x96\x50\x99\x8e\xd3\x56\x17\x94\x01\x23\x63\x3b\xb4\xf5\xdd\xd9\x05\x5c\xe5\x22\xa2\x2d\x9d\x72\x8f\x86\xd3\x29\x69\xa9\x76\x68\xd4\xe7\x0e\xea\xf3\xff\x39\xd4\x58\x4b\xf3\xb2\xee\xd4\xdc\xc4\xe9\x57\x2e\x13\x71\xb9\xb4\x5a\xd7\xad\x67\x1b\xd9\xf9\x17\x20\x3b\x0f\x21\xeb\xbe\xac\x01\xb6\x6e\x24\x6b\x35\xb8\x9d\xb7\x5d\x8f\x76\xd4\x7f\xb6\xdb\x94\x03\x2a\x90\x15\x44\x97\x5a\x56\x89\x0c\x74\xf1\xb2\x65\x90\x19\x35\x25\xef\x70\xf2\xa8\xe7\x91\x38\x7a\x4d\x13\xf6\x84\xce\x52\x5b\xd9\x64\x8c\xcc\x97\xfe\x53\xc4\x8e\x90\x7d\xf8\xe5\x5d\x4d\xe8\x23\xaf\x52\x5e\x34\xad\x1c\x2a\xce\x23\xf4\x33\x0a\x96\xb8\x89\x18\xe5\x11\xba\xe5\x79\x9a\x9d\x5b\x69\x18\xe5\x11\x5c\x49\x25\x0e\xbd\xa8\xad\xa9\x29\x8a\x76\x92\x4b\x30\x90\x0c\x4f\xf7\x00\x20\x89\xed\x68\x74\x5b\xb5\xba\xd3\xf9\x62\x95\x66\xe2\x07\xec\x29\x23\x43\x5f\x11\x6a\x91\xb1\x8a\x56\xa0\xdb\x0c\x68\x64\xc0\x66\x7b\xba\xd2\x44\xa5\x12\xf5\xab\xa5\x8e\x7c\xf7\xd3\x29\x13\x63\x25\xc3\xa7\x4d\x39\xf9\xbd\x38\xe6\xf4\x6c\x14\x46\x6f\xee\x14\x04\x5c\x39\x29\x9b\x6a\x25\x4e\xdf\x97\x3b\xe4\xfc\x5f\xee\x90\xb3\xed\x90\xf3\xff\xbf\x1d\xa2\x97\x77\x51\xfe\x49\x69\x58\xf5\xa8\x45\xdd\xa1\x14\x35\xeb\x64\x92\x58\xce\xc3\x58\xce\x1d\x2c\xe7\x16\x96\x73\x17\xcb\x69\x2a\x63\x74\x79\xa2\x5e\x45\xeb\xe7\x66\x9a\x06\xb6\x13\x4e\xee\xa9\xda\xe8\x12\x08\xd7\x50\xd3\x96\xa9\x96\x5f\x6c\xa1\x0e\xad\x1d\xc2\x2e\x24\x9c\xa9\x5c\x48\x6d\x92\x10\xda\x6a\x6b\x79\x7e\xb6\x96\x67\x55\xcb\xb3\xa9\xe5\xb9\x5f\x4b\xbc\x57\x33\xa5\x9f\xdb\xf5\x3c\x3f\x5f\xcf\x73\xbb\x9e\xe7\xc1\x7a\x5a\x42\x27\x36\xef\x2b\xc1\x6b\x4b\x1d\xb5\x48\x1f\x1b\x80\x1a\xcc\xda\xa1\xae\x2d\x91\xc0\x21\x24\x78\x68\x9a\xa5\x78\x0b\xda\xd9\x95\x95\xf1\x75\xf5\x1a\xa8\x60\x24\x30\x5e\x16\x3c\x03\xad\x6e\x12\x34\x94\x84\x7f\xe0\xd5\x73\xd0\x70\x95\x88\x10\xda\xc8\x7b\xea\x5c\xe5\x40\x53\x14\xa8\x8d\x6d\x81\xd8\x6c\x6d\xff\x0a\x6e\xd6\x76\x4a\x0f\x14\x09\x0e\x12\x97\x36\x15\x06\x4a\xf3\x27\xff\x40\x8b\x20\x22\x9a\x47\x71\x08\x71\x2b\xe3\xb9\x9f\x71\xd3\xcd\x78\x76\x33\xc2\x85\xde\x4d\x5a\xdc\x3c\x90\x14\x59\xae\xd5\x71\x3d\x1a\xd9\xb0\xb5\xaa\xf3\xb0\x3a\xae\x99\xfc\xa3\x8f\x41\x16\x88\xb4\xcc\xc0\x2a\x86\x9b\xae\xd2\x35\xb9\xfa\x55\xcb\xcc\x81\x31\x57\x80\x26\x2c\x44\x7e\x18\xcb\x53\xa5\x63\xb6\x80\x7a\x75\xc3\x9b\x34\x01\x6d\x29\xd8\xaa\xf4\x2a\xf0\xc8\x68\xd4\x8d\xa2\x5e\x25\x32\x30\x69\xeb\x91\x59\xcd\x0a\xf1\xf9\x86\xfb\x68\x1f\xe3\x81\xd7\xc2\x93\x2c\x5f\xd2\x8a\x2e\x91\x89\x87\x94\x3d\x33\xde\x81\x68\xce\x12\x13\x3e\x32\xe1\x27\xfa\xb8\x4b\xb4\x6d\x48\xb5\xd3\x33\xb4\x3d\xaa\xb9\xe9\x19\x1c\x4f\x0c\x33\xee\x4b\x56\x56\xe9\x6a\x90\x59\x0b\x94\x9e\xc1\x60\xce\xa3\x5f\x10\xfa\x93\x4f\xe8\xd7\x6d\x7b\xeb\x6a\x6d\x18\x57\x14\x60\x52\xd6\xd8\xaf\xf4\xc1\x7c\xe5\x90\xf1\x4a\xbb\x0a\xb5\x47\x8b\xd1\xe8\x88\x1f\xfe\x9f\x71\x60\xac\x67\x06\x34\x64\xa9\x9a\x02\xfc\xfb\xb7\x28\x0a\x64\xee\x3d\xfe\x21\x4f\x31\xfd\xba\xfc\x07\x36\x02\x62\x3c\x2a\x06\x8d\x67\x4d\x6e\x99\xb0\x79\x5a\x06\x4f\xff\xc7\xbf\x8a\x55\x23\xbd\x8d\x5a\x78\xfe\x2c\xf1\x9c\xc3\xb4\xfe\x20\x32\x79\xd2\x2e\x76\x97\x8b\x42\xa2\x2c\x77\xbe\x50\x35\xd3\x41\x2d\x94\xff\x21\x8f\x1c\xd4\xf8\x7f\xb0\x37\x0c\xb4\x94\x87\x4b\xbe\x13\x7f\x1d\x57\xae\xf4\x2d\xad\x55\xfc\xc7\x71\x65\x25\x7d\x69\xc2\x3e\xf8\x78\xee\x2b\xe1\x34\x57\x5f\xc9\x2c\xc1\xfc\x1a\x0f\xc5\xef\x8f\x3a\xbf\x9c\x2a\x4d\x95\xfd\x9b\x38\xcb\xb3\x03\x86\x68\x12\xe6\xa2\xe1\x18\xa7\x42\x70\x6f\xb4\x67\x83\xe2\x0e\xc0\x78\x1a\xf2\xdc\x73\x55\x42\x13\x56\xdf\xd5\x41\xa4\x8e\x74\x8a\x5a\x64\xd6\x6a\x58\x81\x56\xc3\xf0\xed\xfe\x96\xfb\x19\x1c\xae\x5b\x56\x39\x53\x26\x23\xc1\xf6\x00\x6e\xa9\x27\xbd\x25\xd3\x07\x96\x0e\x98\x6d\x3e\xb3\x2d\x5a\x99\x25\xf4\x77\xec\x04\xc1\x86\xd0\x47\x56\xdf\x6f\x91\x91\xa6\x9f\x58\x7d\x7f\xc2\x30\xa8\x84\x0c\xa1\x49\xff\x29\xe8\xf6\x59\x33\x47\x60\x48\xb9\xeb\x4f\x80\xd0\xd3\x4b\x19\x3e\x0d\x64\x48\x1d\xf9\x3a\x79\xee\x70\x1e\x56\x1c\xab\xd0\x0f\x9a\xa8\x56\x01\x2b\xb5\x4e\xe7\xc3\xaa\x5a\xd3\x5c\xfe\x38\x92\x6f\x8c\xed\x6d\xef\xa5\x5b\x7f\x3f\x3e\x2f\x1e\x2f\x97\xfd\xf8\x3c\x1f\x3f\x5e\x2e\xf9\xf8\x77\x8b\x4f\xf0\x33\x1f\x7f\x6a\x77\x33\xb7\x16\xfc\xb6\xea\x52\x76\x2c\xe4\x29\xdd\x44\x9f\xd4\xad\xec\xb8\x21\x34\x65\xfc\x8e\x07\xd9\x5d\x36\x4b\xe7\x68\x8e\x3d\xa5\x47\xb6\x2a\x68\x75\x5f\xae\x09\x48\x2f\xb8\xef\x85\xb7\xea\x2e\xfc\x40\x37\xfa\xa5\x30\x7d\xee\x4d\xef\x30\xf8\xa6\x77\x60\xe3\xf4\xc5\x37\xbd\x3e\xc0\xfd\x14\x2e\x81\x36\xec\x10\x74\x52\xe8\x60\xb7\x76\xbb\x14\x3c\x67\xc0\xc7\x74\xad\xf6\x58\xb9\x13\xc1\x1c\xed\x19\xac\x3e\xcf\xad\x3a\xca\x8e\xee\xc9\x68\x74\x5e\x58\x91\x1f\x8c\xf9\xdd\x82\xe5\xc1\x61\x34\xfa\xdd\x9c\xe5\xc1\x26\x3e\x2f\xd8\x5e\x7e\x9e\xe7\x6c\x1f\x6c\x20\xd9\xc9\x90\x13\x00\x74\x90\xe6\x84\x80\xec\xb5\xee\x65\x72\xbd\xea\xdb\xa6\xe3\xd2\x2f\xd8\x71\x35\x59\xd3\x8a\x1d\x57\xd1\x9a\x96\xb0\x68\x86\x67\xf5\x93\x89\x8d\x87\x81\xc2\x3a\x4b\x13\xe1\x57\x77\x25\xf5\xab\x20\x22\x77\x25\xa1\x12\xe8\xbb\x62\x23\x4e\x71\xa5\x5d\x58\xc1\xb2\xc4\x30\xa6\x14\x57\xb4\x0d\x7c\xf5\x4b\x5a\xd3\x82\x28\x3d\x62\x7f\xaf\xe8\x90\xb9\x61\xda\x6b\xbe\xe4\x64\xd4\x5a\xf6\xb6\x1a\xab\xc9\x9a\x04\x48\xf3\xdc\x3b\xaa\xbd\xa2\x5e\x7d\x2c\xe7\x41\x2c\x11\x60\x69\xca\x83\xbd\xb8\x92\xeb\x0d\x0d\xdc\xba\x4e\x96\x50\xf9\xc2\xea\xfc\xbd\xef\x09\xec\x73\xf6\x7e\xd5\xac\x67\x1c\xf2\xdd\x32\x71\xb9\xec\x47\x23\xae\x8a\x67\x4c\x57\x44\xc6\xe9\x16\xc8\x58\xb7\x45\x36\x2d\xea\xa4\x45\xeb\xcb\xe5\x57\xbe\xc6\x46\x15\x18\xb9\xee\x47\xa3\x3f\x98\x36\x52\x27\x07\x15\xe4\xda\xe8\xbb\x41\x5f\xd0\x55\x42\xf7\xae\x7d\xe8\x8f\xbe\xb5\xa6\xea\xb8\x89\x0a\x07\xbd\x44\xcd\xc6\xd1\x2d\x13\xcb\x6f\x2f\x17\xff\x5b\x56\x8b\x46\xdb\xb1\xfe\x86\x0a\x42\xe2\x6f\xdc\x57\xae\x6f\x34\x5e\xda\x00\x21\xff\x56\xdd\xcf\xe9\x77\x4b\xc3\x79\xd0\xfc\xd9\xc7\x7f\x54\xa1\x79\xef\xaa\xd0\x34\xec\xfd\x4a\xac\x69\xe3\x72\xc4\x68\x13\xf5\xf7\xbe\x8e\xa4\xea\xc5\x9c\xc4\xff\xd6\x8f\x9b\xe5\xf6\x4d\xce\x28\xa8\xaa\x66\xd2\x55\xee\x76\xcd\x1f\xf4\xe6\x95\x6e\xfd\x21\xef\x43\xbe\x60\xd9\x4a\xac\x49\xdf\x35\x91\x99\x09\x62\x70\x51\xcd\x9a\xa1\x04\xb5\x90\xf8\x5d\x43\xf9\x9d\xdf\x04\x11\x21\x57\xbc\x19\xfc\x2b\xa8\x7a\xce\xc6\x11\x63\xc5\xd2\x7f\xaf\xb4\x8a\xd5\xc2\x12\x14\x57\x67\x03\xfe\x46\x62\x7e\x05\x3d\x51\x12\xf3\xcb\xc5\x7f\x2f\x57\xac\x8c\x66\xb7\x91\xd3\xb0\x5f\xa1\xea\xa8\xd9\x05\x8c\x60\x5f\xa3\x5f\x84\x80\xdd\x02\x73\x17\x1f\xd1\x3a\xd7\xff\xc3\xf6\x73\xdb\xfe\x5b\x78\x82\x7e\x1f\xd6\x07\x04\xa5\x11\x36\xd6\x36\x0d\x41\x9f\xda\xb7\xad\xef\x07\x6e\x5b\xdf\xaf\x38\xee\x83\x66\x61\xca\x5e\x70\x56\x24\xae\xc3\xc2\x59\x87\x40\x25\x8c\xb9\x0a\x0c\x8c\x23\x5b\xf6\xbf\xb5\x3c\xb6\x22\x7d\xe5\x48\x5f\x1b\xc5\x8d\x64\xac\xd1\x87\x68\x66\x0d\xeb\x98\x6e\xeb\x9c\xb4\x96\xdd\x88\xb8\x63\x79\x67\xe0\xc6\xef\x8d\x7b\xe1\x07\x0d\xd4\xa2\x0e\x85\x16\x75\xa8\xf4\x6b\x6e\x85\x2f\xb3\xda\xc6\x94\xec\x18\x2b\x6e\xa2\xad\xa4\x36\x03\x26\x52\x67\xb9\xf3\x72\x5e\xcb\x45\xed\x2a\x15\xcc\x50\x42\x25\x0a\xdf\xdc\xd5\xb3\x42\x89\x4d\x14\x84\x56\xea\xa9\xb6\x92\x6b\xde\x7d\x5b\xb5\x22\x14\x4d\x5b\xee\x60\x99\x83\x40\x85\x64\x1c\x13\x3a\xa1\x6d\x31\x8a\x0e\xac\x9f\x53\x84\x83\x37\xe7\x96\x54\x45\x6e\x45\xa5\xcd\x60\xfd\xde\x19\x2c\x5a\xfd\xdf\x18\x0c\x5a\xb2\x4a\xf3\x33\xcd\x73\xfc\x4c\x31\xc8\xcf\x14\x6c\xdc\xbc\xc8\xcf\xf4\x01\xee\xa7\x57\x77\x90\x9a\xae\xec\x54\x7b\xcc\x2a\xfa\xbd\x8f\xf6\x0f\xe4\x7c\xe5\xab\x29\xb8\x7a\x29\x68\x11\x74\xd0\x0e\x1c\x7b\x6e\xca\x2b\xa1\x7a\x82\xeb\xe9\x9d\xd3\xa6\x27\x61\xd4\xad\x83\x33\x1a\x7f\xb3\x2f\xd8\x92\xd8\xf4\x4c\x4e\xe9\x65\xd7\xcc\xd4\x0b\xf7\x5e\x39\x39\xfe\x3e\x2d\x04\xaf\xbe\x91\x73\x55\x14\x8d\x2f\xeb\x3c\xa1\x9c\xb8\xcf\x2d\x60\x87\x09\x5f\x3b\x8c\x57\x95\x79\x61\x69\x41\x66\x92\x15\x49\xd0\xc5\x1b\xb7\x1a\x8e\xee\xac\x3b\xe2\x95\xbe\x4c\xc9\xc2\x07\x18\xa8\x42\xd4\x35\xd8\xd3\x6a\x5a\xfe\xdf\xdc\x64\xa2\x1f\x06\xb3\x50\x19\x97\x02\x59\x3d\x7e\x67\x23\x08\x50\x09\xe7\xd1\xbc\x0c\xf9\x06\x0d\x19\x7c\x68\xca\x83\xcf\xef\xfd\x62\x1c\x11\x9a\x19\xa3\x31\xe5\xf5\x7a\x15\xe1\xb6\x08\x37\xa2\xe1\xc9\xfe\x72\xf1\x9d\xaf\xa1\xf7\x73\xf0\x3f\xcc\x93\xbd\xef\x8e\x26\x7a\xeb\x05\x47\xf3\x3f\x82\x45\x92\x4e\x84\xba\xf6\xf8\x6a\x9f\x66\x1b\xf0\x64\x08\xe6\x66\x41\x0a\xd4\x38\xb3\xee\xbe\xab\xe9\x7d\x46\xcc\xd9\xe4\x72\x69\xe6\x6c\xd2\x37\x73\xf4\x5d\xf1\xc8\xb3\x74\x73\xb3\x49\x73\x51\xd4\xf2\x3c\x74\xb3\x2d\xab\x1b\x79\x4e\xa6\x37\xf0\x1c\x77\xc3\x6e\xbc\x40\x04\x1e\xbd\xc1\x17\x39\xf8\x6e\xb4\x84\x93\xeb\x4d\x59\x8e\xb5\xe3\x47\x99\x2a\xb7\xca\xd6\x07\x31\xfa\x24\x06\xac\xca\xb5\xa0\x7a\xfa\x17\x77\x15\xe5\x21\x3c\x68\xe8\x98\x00\xde\x3f\x6c\x06\x26\x94\x73\x62\xac\xc5\x2d\xd8\x4d\xd0\xb6\xc6\x58\xe3\x20\xd0\x51\x0e\x06\x1d\x05\x9a\x72\x86\x01\x29\x34\x3b\x54\xa8\x19\x53\xd1\x8a\x5c\x5b\x5d\x0a\x6c\x12\xeb\x8e\x93\x6a\x20\xa6\x1a\xd3\x15\xb6\xae\x6e\xa1\x1d\x84\x68\x4e\x62\xe0\xed\xb3\xed\x52\xd9\x2c\x21\x30\x95\x2f\x08\x88\x8e\x24\x3c\xcb\x7c\x41\x2b\x62\x24\x4d\x64\x26\xe5\x06\xe3\x7b\x7e\x16\x95\xa4\xee\x19\x13\xab\x6a\x3d\x2b\xc3\x7d\xba\x11\x8e\xb6\x16\xf8\xdf\xce\x1c\x4c\x99\xe4\x1b\xd5\x65\x86\x64\x25\xda\x90\x95\x03\x59\x19\xc8\x86\x55\x2b\x61\xef\x9b\x6b\xd7\x44\xa8\xdc\xed\xc1\x39\xe5\xac\x08\x02\xc2\x43\x0e\xb7\x0b\x4b\xae\xda\x2c\x36\x97\x8b\x5f\x2a\x33\x7a\x3e\x37\xb7\x66\xd4\x02\xb0\xdb\x09\x38\x61\x50\x1c\x46\x31\x1e\x4b\x1e\xc3\xa6\x4b\xce\x5c\x65\x53\xeb\xcb\x27\x64\x36\x01\x53\x9a\xea\xf6\x51\x39\x75\x93\xb5\xbc\x5e\x4b\x60\x4e\x7d\x72\x6d\x8f\x81\xdb\x63\x03\xde\x3f\x8d\xab\x6b\x79\x90\x70\xe4\x77\x50\x04\x4f\xf1\x6a\x3d\x37\xd9\x92\x92\xf4\x7d\x67\x0b\xdf\x73\xcc\x11\xfe\x5a\x5d\x66\x9e\x9a\x9b\xf6\xb5\xe6\xaf\x17\xc6\xcc\x20\x38\x85\x1f\x72\x02\x8f\x2e\x5d\x95\x9f\x57\xed\xd9\xd5\x38\x7c\x75\x5e\x12\x63\x4f\x19\xa4\xf4\xba\x6e\x79\xaf\x24\x4c\x8b\x5a\x54\xcd\xfb\x6d\x23\x2a\xdf\x5d\xbb\x68\xb1\xc8\x69\xb9\xae\xba\xad\x99\xa4\x83\xb2\x19\x7e\xf3\x9f\xad\xa5\xeb\xbb\xbe\xdf\x59\x60\xcc\x66\x68\xa0\xbe\x2b\xb6\x25\xeb\xcb\xeb\xaa\x0d\x04\x45\xf8\x40\x53\x8a\x79\x5e\xc0\x69\xc6\xac\x46\xb0\xd1\xfe\x5d\x16\x48\x1d\x02\xef\xc6\x0b\x8a\x50\xbd\x84\xaa\x2f\x7c\xfa\x54\x1f\xb2\x0f\x25\xe9\xb8\x97\x1f\xf6\xd9\x4b\x46\x41\xba\x7a\x1e\x2d\x68\xda\x5d\xb4\xab\x66\xad\x9f\x53\xc0\x42\x5e\x3f\x99\x3d\x5d\x09\xad\x59\xba\xca\x34\xa4\xdc\xb2\x30\x02\xd2\x12\x26\xf7\x41\xed\x01\x4f\xcb\xd1\xf6\x86\x02\xec\x80\xf2\x17\x86\xc1\xcb\xf9\x69\x0c\xb4\xc8\x53\xb7\x8c\xe3\x77\xef\xde\xbd\xeb\x0d\x40\x8b\x78\x34\x84\xcc\x86\xba\xee\x88\xe5\x80\x9f\x71\xe3\x64\x5c\x1b\xe4\x8d\xfb\xcc\x5b\x31\x1a\x1d\xed\x6c\x29\x74\xab\xd8\x93\x9a\x6b\xf1\xd1\x78\xdf\x06\x8f\x98\xca\xc4\xc7\x80\x0b\x79\xc9\x13\x54\x4b\x3f\x51\x5b\x40\xa5\xc8\x6b\xa2\x09\x7a\xa5\x89\x6c\x6c\x60\x8e\x61\x79\x6c\x94\x39\x08\xff\x76\x42\x2c\xb0\x4a\xc1\xe1\x84\xa4\xe1\x12\xd9\x13\xda\x47\x50\x18\xb5\x07\x18\x8d\xe7\x4a\xe8\xd1\x50\x1f\xcd\x04\x24\xed\x89\xab\x4c\x3b\x77\x2e\x62\x5d\xa1\x53\x9c\xbc\x49\x8b\x84\x83\x27\x23\x61\x84\xd1\xe9\x91\x25\x0e\xa5\xd5\x06\xb2\x19\x4b\x97\xcd\x98\xa9\xda\xdd\x4f\x63\xc5\xa7\xe2\xac\xb3\x29\x84\x6a\x63\xd6\x8c\xd5\x4b\x2e\xe3\xf7\xca\xc2\x7d\x6c\xed\x69\xd7\xe8\x90\x23\x31\xd6\x2c\x35\x41\x47\x77\xb9\x7b\x76\x5c\xe5\xeb\x59\x1e\x04\xe0\x87\x36\x3c\x81\xbd\xa2\x7d\x78\x66\x8c\x13\xc7\x27\x98\xbf\x57\xe4\x5e\x92\xf0\xd9\x9e\x3d\xe1\x17\xfa\xe8\x44\xe2\x1d\xdf\x46\xd4\x4c\x00\x45\xaf\x97\xe6\xf1\x44\x1e\x19\x0a\xe1\x93\xd8\xc4\xd0\x53\xdc\xd0\x73\xcc\xaf\xf4\x88\x67\xee\x3d\xa1\x7b\x0b\x2e\x67\xa4\x9c\xd7\xce\x6b\x34\x27\x48\x78\x9c\xa8\x86\x50\x4f\x8e\xef\x18\x98\x7d\x2f\x4e\xaf\xbd\xfd\x58\x5b\x40\x77\x07\xcb\xd1\x08\x30\xe7\xf4\xaa\xb5\x3f\x38\xcb\x5a\x38\xca\xcc\x9c\xb4\x36\x51\xee\x6c\xa2\xdc\x6c\xa2\x05\x18\x1f\x69\x6f\xb7\x85\x03\x59\x48\x48\x3d\x0e\x29\x2b\x5a\x3b\x2e\xad\xd9\x64\x96\xb0\x74\x55\xaf\x67\x75\x10\x90\xc4\x74\x7c\x74\xbd\x1a\x2d\xad\x04\xb0\xa7\x43\xd3\x0b\xdb\xf5\x12\xc2\x13\xec\x74\x89\x1c\x64\xb0\x04\x61\x4b\x90\x3b\xa9\x08\x25\x73\xd8\xa6\xc7\x95\xb5\x98\x2f\x3e\xdf\x14\xbe\x90\x1d\xcf\x69\xa5\x80\x43\xb4\x95\x59\x13\x9d\x3b\x7c\x14\x55\x0d\xef\xd5\x93\xf0\xcb\xf0\xb5\xd7\x81\x63\xab\x35\x05\x26\xba\x57\xd2\xcf\x70\xd1\x88\x46\x79\xfa\xa6\x20\x42\x79\xbd\xfa\x9f\xd3\x62\x53\x7e\x0e\xff\xfe\x87\xa3\xa8\xce\xe4\x4a\xdf\x45\x71\x9b\x47\x6e\x01\xb4\x6a\xa2\x6e\x7b\xd2\x22\x6d\x5a\xfe\x01\x04\x3e\x69\xf6\x1d\x5a\x62\x06\xbf\xfb\x02\x63\x66\x51\xa3\x3d\xe7\xde\x46\xcc\x7c\xe9\x3b\x80\xa4\x2c\x6a\x39\x3d\x86\x6c\x6f\x9a\x47\x99\xbe\x57\xf2\xd1\x48\xa0\xbf\x71\x78\xc9\x05\xbf\xe1\x80\x96\x31\x81\x01\xd0\x1c\x00\xaf\xe2\x33\xc7\x5b\x38\x15\x5a\xe4\xd5\x47\xd7\x92\xb7\x85\x7b\x19\xd1\x92\x8f\xa7\x92\x1c\xf0\x96\x5f\x4d\xfd\x45\x37\xac\x18\xbe\xbd\xde\x0d\x25\xd0\xad\x1c\xdd\x13\x6b\x9c\xe7\x14\xfa\xc0\xfa\x07\xd6\x33\xcb\x17\x53\xf0\x19\xc6\x95\xdb\xce\xd5\x74\x1d\x9e\x62\xf7\xeb\x0c\xef\x46\x60\x3e\xcf\x7a\xbf\xa5\x8f\xec\x61\x19\xc5\x13\xfa\x89\x3d\x2c\x27\x71\x44\x3f\xb3\x09\xfd\x60\xf5\x73\x3f\x2f\x8c\xe7\xdd\xd1\xe8\xc3\x02\x04\x82\xc1\xb2\xcf\x0c\x95\xf1\xd9\x56\xfb\xe5\xfd\x3c\xb7\x80\x38\x7c\x87\xd5\xe7\xb5\xb2\x00\x24\xa9\xe3\x3c\x9f\x05\xc1\x9e\x6c\x71\xd4\x0f\xab\xcf\xc1\x7e\x4d\x66\x9f\x03\x96\x1b\x15\x53\xa7\xb4\x67\x33\xee\x56\x1f\x20\xa3\x3c\x8e\x6e\x57\xc7\x60\xba\x66\x32\xea\xd3\x9a\xd0\x0f\x01\xdb\x18\x5c\x6e\x65\xff\xa5\x4a\x7c\x98\xef\x3a\x0d\xd9\xad\x3e\xac\x89\x44\x8e\x9a\x9d\xe9\xd6\xaf\x64\xe3\x82\xc7\x35\x2d\x21\xf0\x69\x4d\x53\xa8\xc5\xe3\x9a\xd6\xaa\x3a\xa0\xe9\x5c\x31\x96\xfe\x6c\xe9\xb2\x15\x9f\xd6\x01\x83\x67\x45\x2a\xeb\xd2\x6e\x49\xb5\x40\x05\xe7\x09\x63\x9f\x7f\xb6\x5b\x12\x56\x5f\xa1\x27\x8d\x32\xf4\x61\xf5\x79\x9c\xab\x81\xc8\x58\x19\xf8\x10\x11\x7c\x5a\x8f\x4b\x72\xe7\xa7\xe3\x8a\xdc\xab\xa8\xc7\xf5\xb8\x22\x74\x6b\xb4\xf0\x54\x28\x0b\x6a\x42\xf7\x6c\xfa\x5c\xfd\x65\x91\xa6\xc2\x3f\xd7\xd8\x0f\xb6\x62\xbb\xd5\x87\xf1\x06\x3d\xe0\xd6\x81\x0f\x5f\xb2\x56\x35\xb9\xf3\xab\x71\x4a\xee\x55\xd4\xe3\x7a\x9c\x12\x42\x75\x2f\x25\xd0\x43\xd7\xe3\xad\x99\x7a\xa3\x91\x33\x17\x12\x78\xa5\xfb\xdd\x68\xd4\x02\x38\xda\x52\xb7\x20\x8b\x21\xff\x42\x78\x9c\xe3\x57\x10\xe9\xef\x20\x1a\x9a\xb5\xab\x63\x90\x07\xfb\xb5\x04\x09\xf6\xeb\x19\xe6\x30\x19\xae\x57\xbd\xc2\xd9\x56\xd2\x51\xe3\x82\x53\xdf\x7d\x3f\x01\x6d\xc1\x67\xa4\x2b\x2d\x78\x2e\x24\x2f\xc8\x93\x4f\x1e\x55\xe4\x3d\xf6\xa2\x70\xea\xc9\x2d\xf7\xdd\x34\xfe\x85\xde\x6d\x1c\x4f\x09\x8d\x6b\x03\x59\xdc\x37\xce\x95\x15\xd7\x1c\x15\x5e\x59\xe9\x78\xe7\x86\x3c\xac\x9b\x6a\xdb\xa4\xb9\x20\xd6\x63\x97\x8a\xf1\x1b\xa2\x48\xed\xb0\xf9\xde\x9b\x46\x1e\x24\x34\xc1\x5e\x7a\x13\x2f\x6e\xc0\x12\x92\x2f\x64\x82\x20\x9a\x7b\x69\x02\x11\x8b\x2b\x2a\xb5\xe2\x65\xd6\x6d\xa4\x30\xa7\x0c\xa8\xeb\xb7\xe5\xb1\xaa\x7d\xe0\xf9\xe7\xd1\x14\xef\x66\x67\xf6\x30\xc9\xd9\xca\xfb\x3d\x2f\x3c\xea\x7d\x2d\x1e\x3c\xea\xfd\xc0\x2b\x8f\x7a\xef\x0f\x15\x84\xcf\x1e\xf5\x7e\x7f\x2c\xe0\x6f\x26\xe3\x8f\x3b\x8f\x7a\x1f\xc4\xc1\xa3\xde\xbf\x27\x8d\x47\xbd\x1f\xcb\x47\x8f\x7a\xbf\x15\x89\xb6\xe2\x88\x3b\x76\xc1\x56\xde\x07\xc8\xf8\x03\x88\xbe\xfc\xe9\x28\x8f\x04\x7f\x11\x1b\x19\xde\x1f\x65\x71\x55\x2a\x51\xf1\x46\x66\x4c\x58\xba\x88\xa6\xcb\x74\x1c\x4d\xe3\x89\x64\x2f\xa3\x69\x9c\x76\x5c\x74\x36\x3d\xef\x13\x7b\xd6\x68\xfb\xfc\x47\xd8\x3e\x32\xf2\xa4\x55\x4b\xd5\xad\x2a\xf7\xe2\xbd\xec\xb1\x62\xa5\xb6\x9a\xb3\x4f\xd6\xee\x0d\xeb\x83\x02\xe0\x08\xf0\x43\x59\x34\xfb\x0e\xc8\x46\x82\x54\xbe\xde\xab\x40\xf0\xc7\x23\x2e\x84\x18\x80\xb8\x69\x83\xec\xbd\x18\x7e\xbf\x45\xd0\xb4\x95\xf8\x1d\x46\x26\xad\xc8\x4c\x45\xf6\x50\xe5\x4e\x69\xaa\xbe\x41\xd4\xad\xd2\x0f\x2e\x50\x5a\x1c\x1b\x51\xcb\x3d\xd6\x81\xf8\x87\x6a\xb9\xef\x4e\x71\x07\xe7\xfd\x6b\x12\x44\xad\x1c\x1f\x1c\x9c\x1f\x44\x52\x16\x9b\x2e\xce\xb3\x03\xf1\xf5\x31\xcb\x3e\xc2\x13\xdf\xab\x68\x32\x69\x81\x7d\x54\x45\x77\xe0\x5c\x90\x83\x04\xa9\x97\x1e\xcf\xbd\xd8\x3b\xe4\x9e\x9b\xf6\x93\x4a\x7b\xff\x83\x17\x7b\x3f\xfd\xd0\x4a\xfb\xec\xa2\x86\xe1\xbe\x96\x86\x79\x97\xab\x03\xe8\xa9\xf7\xca\x63\x6c\xbf\xcc\xd8\xed\x24\x36\xc9\xe6\x3a\xd5\xb8\xca\xb0\xab\xfd\x19\x23\x46\xe4\x09\xce\xd4\xfd\x2b\x56\x0e\x2f\x6f\xa0\x68\xcd\x29\xaf\x76\x47\x79\x64\xa8\xc9\xf5\x8a\x6b\x93\xb3\xa7\x0d\x6f\xe4\xd2\x9d\x69\xa3\xf2\x96\x38\x8c\x46\x8d\xcf\xa9\xa7\x3f\x3d\x2a\x9c\x0f\x42\x21\x71\x87\x8f\xaf\x90\xa6\xc3\x2a\xa9\x76\x92\x74\x98\x18\xc6\x6e\xe5\xc9\x09\x2a\x97\x2c\x2c\x6e\xdd\xf9\x1e\xf5\x80\x50\xc8\x05\x9b\x66\x59\x5a\xe3\xf0\xc2\x27\x4c\x1e\x5c\xc9\xcd\x1e\x96\x3f\xa6\xd9\xf3\x43\xc7\xee\x72\x15\x04\x44\xd7\x52\x2e\xbd\x6a\xad\xaa\xf9\xe7\x3f\x7d\x85\xdf\xb6\xaa\x36\xbd\x76\xd3\x2d\x97\x68\x3a\xbd\x6a\xd9\x37\x7f\xa8\xca\xcf\x35\xbe\x39\x82\x31\xfc\x7f\x96\x85\x58\x4a\xd6\x1f\xd6\x9f\x80\x4b\x3c\x1d\x8f\x7e\xf7\x30\x4c\x0b\xdf\x81\x22\x44\x0d\x48\xc9\x9e\xb0\xc9\x71\x24\x5e\xd3\x1c\xda\x1c\xbf\x15\x5f\xd0\x7d\x79\xac\xe2\xd7\x6f\xc5\x1b\xba\xe1\xe7\xf8\xcb\xb7\x5f\x88\x37\x34\x97\x1d\x11\x4f\xdf\xbc\x9b\x8a\xb7\xf4\x1f\x47\x5e\x35\xa2\x8a\x7f\xf3\x9b\xdf\xbc\x15\x6f\xe9\x59\xf0\x2a\x7e\x33\x7d\xf3\xee\x8b\x77\xe1\xf4\xee\xed\xe4\x2e\x12\xaf\xaf\x34\x63\xab\x55\x24\x9b\x28\x8b\xf0\xd6\x74\x35\x75\x3f\xde\xb8\x1f\xd1\xc4\xfd\x7a\xdd\xfa\x8a\xe4\x81\x5a\x56\x4d\xa1\xb0\x1f\x6f\xdc\x0f\x89\xc2\x7e\xbd\x6e\x7d\x45\xd4\x93\x4d\x52\x08\x74\xf0\x0b\x1b\xfc\xd2\x06\x23\x07\x22\xa2\xde\x86\x9f\x55\x36\x15\x7a\x6d\x42\xe1\x54\x56\x00\xe6\x87\xfc\x72\x3f\x22\x27\x3c\x35\x61\xc9\xda\x65\x5a\x3a\x73\x25\x31\x19\xa0\xb7\xed\xcc\xb2\x43\xbd\xf5\x1a\x94\x13\x6c\x86\x88\x7a\xaa\xe3\x15\x5e\xe7\xcb\xc9\x34\x13\x3f\x7f\x96\x2a\xc8\x53\xd1\x3e\x4b\xfd\xbb\x76\x1d\xdc\x3e\x48\x15\xa0\x5e\x23\x0f\x7c\x85\x63\xfc\xd7\x3d\x68\x15\xe4\x09\xa7\x53\xc6\x8c\x8e\xce\x4c\x3b\x7e\xc8\x94\xa1\x77\x65\xd2\x7f\xd8\x12\xbd\x26\x0f\xe0\x97\x41\xb9\xa0\xa3\xca\x03\x07\x28\xfd\x43\xfa\x91\x65\xc6\xc7\xc2\x68\x64\xda\xce\x98\x13\x0f\xa2\x22\x59\xdb\x67\x46\x1b\xd2\x49\x5a\x45\xeb\x65\x1d\xa7\xe6\x3d\xab\xed\x69\x23\xe9\xab\x7a\xda\x72\x96\x36\x18\xb7\x71\x4e\xd6\x77\xe5\xaa\x5b\xcc\xda\xb9\xdf\x01\x4e\xf0\x68\xe4\xfb\x46\xa3\x5b\x5f\xa0\x21\xfb\xb9\x7f\x5c\xed\xd7\x88\x01\x42\xd1\x7a\x1d\x1c\x57\xfb\x20\xb2\x91\x32\x2c\xf1\xdd\x4f\x47\xa3\x3e\xf4\x82\x25\x04\x78\xcc\x19\x7a\x8d\x53\x10\xf4\xc0\x14\x04\xbc\xf4\xc1\x3c\x61\xec\x60\x8e\xc7\xbd\xc6\x6b\x90\x6e\x3b\x48\xcb\x2c\x6f\xb7\xe1\xca\x5a\x0d\x8e\x56\xd3\xf2\x9b\x32\x64\xbe\x5f\xb5\xfa\xbe\x0c\x65\x69\x5d\x2b\xfe\xed\xd4\xfb\x66\x96\x33\x0e\xfe\x56\xa2\x98\xcf\x5f\x2f\xa7\x31\xb7\x0e\x54\xf2\x3b\xd6\x5c\xf3\x79\x04\xda\xd6\x11\xb9\x5a\x5f\x1c\xce\xd4\xb8\x5c\x56\x39\x3d\xac\xd5\x64\xda\x38\x3e\x3f\x56\x93\xf5\xec\xe0\x7e\x47\x1a\x6a\xc7\x36\x77\xe5\xea\xb0\x9e\x69\x72\xc4\xd8\x61\x59\x84\xb5\xe5\x04\x1a\x5c\x16\x86\x31\xa0\x1b\x42\x62\x4d\x79\x0c\xb4\xe6\x45\x14\xb4\x61\x4d\x10\x1a\xa8\x8d\x81\x45\xd6\x55\x41\x6a\x3e\x16\xb1\x02\x81\xb0\x48\x81\x63\xd1\x28\x91\x7d\x41\x40\x3b\xe1\x5b\xa0\xaf\xef\xda\xc0\xf7\xaf\x11\x5c\xcf\x87\xd1\x08\x80\x0d\x6b\xa2\xa0\x2d\xab\x22\xc1\xa9\x6a\x90\xdd\x2e\xfd\x09\xa1\xbb\x05\x03\x81\x8b\x63\x23\x14\x96\x0f\x9d\x44\xd9\x48\x95\xa4\x9b\xaf\x93\x36\xfc\xac\x52\xb0\xb9\x18\xff\xc5\x9d\x9b\x02\x5b\x57\x04\x09\xd3\xbb\x32\x84\xae\xd0\xe8\x86\xfa\xe1\x35\x31\xb0\xaa\x37\x5e\x82\x7e\x4b\x54\x55\x64\x57\xb4\x00\x27\xb8\x94\xb6\xf4\xc4\x26\xf4\xc1\xf5\x02\xb3\x29\xe5\xf2\xd9\xb2\x07\xfa\xc0\x00\x99\xe4\x39\xc0\x2e\x3a\x50\xd0\x07\x42\xed\x80\x5d\x2e\xee\x98\x10\x30\x15\x15\x49\x0a\x6c\x5b\xa6\x66\x9c\x70\x71\xcd\x9c\x8a\xb8\xf5\x0d\xfc\xd6\x10\xbf\x8e\x23\xa2\xf3\x37\xfd\xfc\x10\x7e\x08\x4e\x77\x38\x08\x81\xdf\x8c\x05\xb9\xdb\x10\x7a\x62\xad\x39\xd6\x1a\x01\xbc\x31\x78\xae\xfc\xcd\xdd\x50\x0d\x80\xc7\xd4\x93\x69\xd9\x9e\x4b\x9d\x99\x14\x6c\x48\xec\x56\x6e\x47\x94\x9f\x9c\x07\xed\x27\xe7\xe1\x96\x6d\x5d\x3f\x39\xc5\x8b\xfe\x5f\x34\xa3\x07\xec\x92\x51\x14\x9d\x39\xf4\x4d\xee\x47\x78\x81\x65\xa4\x99\xfc\x82\xba\xf1\x34\xc3\x69\xf5\x23\xcf\x45\x4d\x33\x39\xf9\x20\x48\xcc\xd1\xb2\xed\xe9\xa3\xb7\xbb\xf4\x93\x61\x3b\x6a\x5c\x5f\x15\x83\xdb\xd2\x20\xc4\x2a\x5a\x53\xed\x52\xc9\xee\x2c\x8d\x8b\x7b\x0d\x7e\x4e\x8d\xfb\x2b\x0a\x3b\xe4\x67\x91\x3d\x0a\x39\x8c\x5f\x65\x65\xf2\x69\xe9\xdd\xbc\x3a\x78\xb1\xe7\x81\x25\x89\x5e\xe2\xab\xef\xbc\xd8\x7b\xf5\x2d\xda\x45\xcc\x75\x77\xe7\xac\x9e\xeb\xe5\xbc\xdc\x07\x5e\xfc\xea\x87\xf8\xd5\x07\x2f\x38\xc6\x32\x7e\xc3\xcf\xcb\x64\x3e\xc5\xe5\xa9\x92\x65\x9a\xf7\xea\xe1\xe6\xd5\xe6\xc6\x0b\x6c\x14\xa0\x91\x7d\xba\xc4\x44\x2f\x4e\x47\x23\x19\xa9\xda\x7e\xb9\xdc\xaa\x08\x39\x6d\x96\x89\x0e\x78\xaf\x1e\x3c\xc4\xf7\xd1\x64\xe9\x40\xfc\xe1\xd5\x3f\xbc\x58\xfe\x05\x18\xef\xd5\x47\x8f\xca\x01\xcd\x9f\x1d\xc5\x2b\x4a\x6e\xb8\x17\x2a\x20\xbd\x13\x3f\x69\x2e\x19\xae\x54\xa8\x9d\x10\xea\xbb\xdd\x67\xf1\x6d\x44\x6d\x01\xed\x5b\x18\x3c\xb8\x38\x97\x30\x13\x0f\x3c\x1b\x01\x37\x86\x38\xe5\x6a\x67\x7c\xe0\x6e\xfc\xf5\x7f\xf9\x6e\x5c\x13\x80\xa7\x53\x3c\x8e\xe8\x59\xfe\x91\x15\x86\x17\xa0\xeb\xcc\xb9\xc2\x21\x4f\x4d\x88\x29\x97\xcb\x38\xba\x65\x4d\x78\x02\x79\x9c\x13\x1b\x47\x54\x0c\xaa\xd4\xb7\xc4\x0d\x41\xe7\x1a\x9e\x4d\x10\x8b\xbe\xbd\x06\x37\x47\xb0\x19\x66\x68\x64\x61\x34\x6a\x7f\xfb\xa4\xf5\x76\x85\x25\xda\x53\x9a\xb0\xb6\x23\x64\x92\x63\x04\xd2\xf1\x73\x80\xfa\x1e\x85\x36\x26\xa1\x34\xd7\xc1\xd5\xd1\xf9\x85\x2c\x1f\xd1\xa0\x32\x15\x46\xbf\x1d\x0c\x76\x0d\xb7\xf5\x2a\x24\x69\xfa\xaa\x2a\xeb\x7a\xcf\x53\x87\xd6\x60\xbb\xb9\xa5\x37\x02\x8d\xf5\x3d\x5f\xe1\x7f\xa1\xa2\xfd\x0a\x22\x11\xc6\x6e\x9a\x3d\x5b\x59\xaa\xc4\x65\x6c\x7d\xdb\xd5\xa7\x02\xc6\x69\xb8\x39\x5c\x8e\x91\x0b\x0d\xde\xf0\xd5\xc0\xb2\xdb\x89\xc4\x7e\x2c\x9e\xc9\x6f\x27\x12\xbb\x8d\x24\x24\x1e\x28\xac\x36\xd3\xc0\xab\x8c\x3c\x4e\x58\xa3\x0f\x3e\x09\x13\x8d\x57\x9f\x14\x1a\x54\x92\x29\x8f\x0d\xd6\xc5\xaa\x58\x15\xe8\x95\x57\x97\xe3\x74\x43\xbf\xa0\xd6\x20\x0d\x17\x88\x6f\x2f\x50\x6c\xfb\x25\xa8\xc2\x2c\xd6\x80\x0a\x0a\x95\x72\x2d\xb7\xc4\x1d\xe1\x6d\x65\xd6\xba\x42\xe1\x6d\xb5\x9c\x74\xd9\xd5\xb3\x65\x5b\x81\x40\xed\x71\x02\x0b\x70\xc4\x13\xd5\x53\x3f\xe5\x6d\x8b\xd9\x46\x98\x91\xf7\xac\xdb\x52\xde\x92\x30\x95\x95\xc1\xe6\x59\xc7\x6e\x27\x8f\xd8\x8e\x71\xb8\x72\x59\xe9\xa0\x9a\x71\x63\xa8\x97\x4e\x88\x2a\x01\xbe\x9c\x69\x79\x4d\xb7\xfe\x10\xea\xf3\xb3\xa8\xcf\x2d\xd4\x13\x5a\x38\xa8\xcd\xca\xa0\x05\xb9\x72\x2b\xb3\xca\x1d\x2b\x52\xce\x98\x6b\x35\xbe\xc1\x99\xd5\x68\x4d\x40\x4f\xcf\x20\x8f\xc2\x14\x6a\x45\xcb\x6a\x78\xb2\xb4\xd6\x5e\x60\x46\x26\x7e\x92\xcd\x42\xda\xaf\xe4\x78\xc0\xe6\x56\xf4\x9b\x09\xbd\x51\xff\xc3\x2f\x27\xc4\xa3\x66\x28\xe2\xc8\x6c\x01\x06\x4d\x6f\x1f\xb8\xd2\x77\x6f\xe2\xee\xfb\xe4\x95\xbe\x7b\xd7\x8f\xbc\xd2\xd5\xea\xed\x94\x46\x74\xba\x96\x47\xc7\xff\x76\x7f\xff\xdf\x6f\xea\xf2\x58\x25\xe2\x07\x7e\x38\xa4\xc5\xee\xcf\x7f\xfc\x9e\xe5\x3c\x2d\xc2\x87\xcd\x97\xc9\x17\xef\x36\x49\x98\xec\x8f\xc5\xa7\xf0\xef\x75\x98\xf3\xc3\xff\x0e\x00\x00\xff\xff\xde\xbc\xc4\x7a\x09\x78\x01\x00") -func pkgUiStaticReactStaticJsRuntimeMain56ad181aJsBytes() ([]byte, error) { +func pkgUiStaticReactStaticJsMainBd8c49dcChunkJsBytes() ([]byte, error) { return bindataRead( - _pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, - "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", + _pkgUiStaticReactStaticJsMainBd8c49dcChunkJs, + "pkg/ui/static/react/static/js/main.bd8c49dc.chunk.js", ) } -func pkgUiStaticReactStaticJsRuntimeMain56ad181aJs() (*asset, error) { - bytes, err := pkgUiStaticReactStaticJsRuntimeMain56ad181aJsBytes() +func pkgUiStaticReactStaticJsMainBd8c49dcChunkJs() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJsMainBd8c49dcChunkJsBytes() if err != nil { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.56ad181a.js", size: 1552, mode: os.FileMode(420), modTime: time.Unix(1588400925, 0)} + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/main.bd8c49dc.chunk.js", size: 96265, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _pkgUiStaticReactStaticJsRuntimeMain5db206b5Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xdf\x8b\xe3\x36\x10\x7e\xef\x5f\x91\xb8\x20\x34\x64\x56\xeb\x2c\xbd\x52\xe2\x1d\xfa\x5e\x7a\x5c\xe9\xb5\x4f\xc6\x1c\x8a\x23\x27\xbe\x2a\x92\x18\xcb\x77\x5d\xbc\xfe\xdf\x8b\x9c\xd8\xb9\xdb\xde\xc2\x41\x20\x63\x69\x7e\x7c\xf3\x7d\xa3\x59\x37\xbd\xab\x63\xeb\x9d\x34\x30\xcc\xf6\x8a\x25\xc3\xd0\x78\x96\x9f\x34\xaf\x1c\x5a\xd4\xc4\x65\x5e\x61\x20\x2e\xb7\x15\x36\xc4\xe5\x43\x85\x35\xe5\xd8\x51\x59\x15\xf5\xa3\x56\xd6\xb8\x63\x3c\x15\xf5\x66\x03\x96\x74\x59\x57\xf8\x6e\xff\xd1\xd4\x51\x05\xf6\xd1\xc7\xa7\x60\xd4\x49\x77\xef\x3e\xbb\x3f\xd8\x07\xc3\xf1\x49\xd5\xda\x5a\xe9\xd1\x82\x10\xbe\xb4\x95\x10\x9d\x0a\x7d\x77\x92\xe9\xa3\xcc\x2b\xc0\x64\x50\x5e\x24\x1c\x6e\xd5\xba\x55\x80\xef\x4a\x19\xd0\x81\x10\xd2\x94\xae\xa2\x50\xba\x0a\xa6\x0c\xad\x10\xad\x64\x28\xba\x19\x29\x74\xaa\x3b\xb5\x4d\x94\x20\xa1\x60\x13\x7b\x76\xab\x7e\x42\xa0\x74\x08\xf6\x49\xf6\xd8\x3c\x3f\x97\x15\x60\x94\x30\x2e\xd4\x44\x79\x63\xc6\x20\x53\x5e\xf0\x63\x3f\xe7\xe4\xcd\xe6\x76\x1b\xa9\x2f\xb9\x42\x47\xeb\x1c\x35\x6d\x0b\xfd\x18\x67\x3f\x9d\xfc\x92\x4f\xa0\x58\xea\xaa\xc8\xd7\x44\xbe\x0c\x95\x10\xd2\xd1\x7a\x0b\xa3\x13\x42\xf6\xaa\x0b\xb6\xad\x8d\xe4\xbb\x3b\xdc\x02\x1a\xb2\xd2\xaa\x8e\x62\x22\x07\xc6\x2b\x64\x33\x4e\x1a\xd1\x30\xa2\xa7\x61\xbb\xcb\x47\xec\x93\x26\x0b\x60\x9b\xb4\x6c\x1b\xe9\x4a\xae\xe0\x1a\x94\x6c\x65\xfe\x0d\x9e\x63\x57\x5c\xb0\xa6\x23\x1a\xda\x1d\xa3\xdd\xad\xb7\x78\xbd\xdc\x0d\xe3\x38\x93\x63\x52\xd0\xc4\x70\x9c\x63\x31\xe2\xcd\xb6\x80\x51\xd9\xd4\xed\x72\x36\x5a\x75\x26\x83\x56\xd5\xe4\xd0\xaa\x03\xdd\xa6\x0d\x19\x23\x0c\x56\xf9\x64\xc2\xf3\xf3\x55\xda\x83\x69\x5a\x67\x66\x41\x27\xb7\xc1\xb8\xfe\x6c\x58\xef\xad\xd9\xad\x73\x3c\x9a\xb8\x8b\x23\x8c\x68\x15\xd3\x97\xd3\x9b\xf5\xee\x12\x7d\xc8\xd6\x44\x69\x3c\x7c\xb3\x7a\xff\x74\xde\x7b\x2b\xc4\xe5\x5f\x45\xff\x3e\x72\xeb\x8e\x7f\xe9\xa3\x10\xaf\x95\xfc\xbf\x2f\x0e\x9f\xb4\xed\xcd\x2e\x7b\xeb\x0f\xbd\x35\xd9\x08\xf8\x5a\x70\xf6\xe1\x83\xe9\xae\x6e\x73\xd8\x3a\xbf\xe0\x8d\x5f\xf5\x3f\xa9\xb2\x15\x9c\x66\x95\xac\x34\x00\xf8\x8b\xe0\x59\x22\x53\xb4\x8d\xfc\x29\xdd\x66\x7e\x2a\x95\xd1\xd2\x94\x11\x22\xfd\xd4\xad\xd4\x2d\xea\xa2\xe6\x15\x5d\xcd\x46\x47\x23\x5d\x6f\x2d\xa4\x7c\x56\xb1\x8c\xaf\x61\x8f\x98\x1d\x4c\xa3\x7b\x1b\xb3\x97\x9c\x5f\xda\x30\x23\xe0\xc3\x84\xa8\x9b\x88\xc9\xd6\x0b\x20\x58\x96\x45\x7a\xa8\x06\xac\x3a\xc8\x88\x0e\x97\x7e\x19\x86\x2f\xc6\x68\x54\xfb\xd6\x1d\x26\x5c\xe8\x60\x79\x7e\x31\x91\xe4\xbe\x12\x35\xe5\x64\x7a\xd1\xed\xaf\x8b\xc7\x2d\xab\xba\x62\x1f\x77\xdf\xb8\x5c\x66\x38\xe1\x62\xcc\x74\x86\x0c\xc8\xa9\x9c\x7f\xa1\xc9\xd5\xf1\xbb\x36\x4d\x0a\x48\x39\x02\x65\xea\x3e\x9b\xa8\xd7\x14\x4f\x6d\xa7\x3e\x9b\x7d\xd0\xf5\x3f\xbf\x75\xde\x85\x23\xeb\x70\x7a\xe5\x38\x2d\x18\x0c\xa4\x2f\x7b\x67\x22\x45\x43\x71\xf9\x24\x46\x4d\x5a\x75\xd3\x0e\xb8\x2c\xb1\x54\xa1\x49\x2b\xf1\xb6\x70\x9b\xcd\x06\x58\xea\xb2\xa9\x60\x02\xd0\x52\x28\xd2\xc2\x92\x65\x05\xc5\x0f\xf7\xf7\x3f\xae\x3a\xdf\x73\x6d\xde\xea\x10\x5a\x77\xfc\xfb\xcf\xdf\x89\x7b\x17\xdb\xb3\xb9\x3b\xeb\xd6\xa9\x37\x87\xfd\x43\xfe\xf3\xfe\x8d\xfa\xd8\xa9\xb3\x0e\xff\x05\x00\x00\xff\xff\x5b\xf1\xe9\xe4\x10\x06\x00\x00") + +func pkgUiStaticReactStaticJsRuntimeMain5db206b5JsBytes() ([]byte, error) { + return bindataRead( + _pkgUiStaticReactStaticJsRuntimeMain5db206b5Js, + "pkg/ui/static/react/static/js/runtime-main.5db206b5.js", + ) +} + +func pkgUiStaticReactStaticJsRuntimeMain5db206b5Js() (*asset, error) { + bytes, err := pkgUiStaticReactStaticJsRuntimeMain5db206b5JsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "pkg/ui/static/react/static/js/runtime-main.5db206b5.js", size: 1552, mode: os.FileMode(436), modTime: time.Unix(1589211666, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -790,7 +811,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css", size: 37644, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -810,7 +831,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css", size: 28977, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -830,7 +851,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css", size: 4896, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -850,7 +871,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapRebootMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.min.css", size: 4019, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -870,7 +891,7 @@ func pkgUiStaticVendorBootstrap413CssBootstrapMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap.min.css", size: 140936, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -890,7 +911,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.js", size: 212345, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -910,7 +931,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapBundleMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.bundle.min.js", size: 70966, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -930,7 +951,7 @@ func pkgUiStaticVendorBootstrap413JsBootstrapMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap-4.1.3/js/bootstrap.min.js", size: 51039, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -950,7 +971,7 @@ func pkgUiStaticVendorBootstrap3TypeaheadBootstrap3TypeaheadMinJs() (*asset, err return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap3-typeahead/bootstrap3-typeahead.min.js", size: 11273, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -970,7 +991,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsCss() (*asset, e return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.css", size: 14523, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -990,7 +1011,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsCssBootstrapGlyphiconsMinCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", size: 11830, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1010,7 +1031,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Eot() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot", size: 98620, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1030,7 +1051,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Svg() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.svg", size: 507478, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1050,7 +1071,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Ttf() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf", size: 98384, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1070,7 +1091,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff", size: 63712, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1090,7 +1111,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaBrands400Woff2() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2", size: 54420, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1110,7 +1131,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Eot() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot", size: 31156, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1130,7 +1151,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Svg() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.svg", size: 107199, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1150,7 +1171,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Ttf() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf", size: 30928, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1170,7 +1191,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff() (*a return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff", size: 14712, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1190,7 +1211,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaRegular400Woff2() (* return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2", size: 12220, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1210,7 +1231,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Eot() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot", size: 102152, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1230,7 +1251,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Svg() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.svg", size: 378215, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1250,7 +1271,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Ttf() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf", size: 101932, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1270,7 +1291,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff() (*ass return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff", size: 48704, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1290,7 +1311,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsFontawesomeFaSolid900Woff2() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2", size: 38784, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1310,7 +1331,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot", size: 20127, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1330,7 +1351,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.svg", size: 108738, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1350,7 +1371,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf", size: 45404, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1370,7 +1391,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff", size: 23424, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1390,7 +1411,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsFontsGlyphiconsGlyphiconsHalflingsRegu return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2", size: 18028, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1410,7 +1431,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeCss() (*asset return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", size: 51062, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1430,7 +1451,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeLess() (*asse return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.less", size: 53867, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1450,7 +1471,7 @@ func pkgUiStaticVendorBootstrap4GlyphiconsMapsGlyphiconsFontawesomeMinCss() (*as return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css", size: 42307, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1470,7 +1491,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinC return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.css", size: 7771, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1490,7 +1511,7 @@ func pkgUiStaticVendorEonasdanBootstrapDatetimepickerBootstrapDatetimepickerMinJ return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker.min.js", size: 48881, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1510,7 +1531,7 @@ func pkgUiStaticVendorFuzzyFuzzyJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/fuzzy/fuzzy.js", size: 5669, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1530,7 +1551,7 @@ func pkgUiStaticVendorJsJquery350MinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.5.0.min.js", size: 89493, mode: os.FileMode(420), modTime: time.Unix(1588398750, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery-3.5.0.min.js", size: 89493, mode: os.FileMode(436), modTime: time.Unix(1588865307, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1550,7 +1571,7 @@ func pkgUiStaticVendorJsJqueryHotkeysJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.hotkeys.js", size: 4490, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1570,7 +1591,7 @@ func pkgUiStaticVendorJsJquerySelectionJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/jquery.selection.js", size: 12881, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1590,7 +1611,7 @@ func pkgUiStaticVendorJsPopperMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/js/popper.min.js", size: 19236, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1610,7 +1631,7 @@ func pkgUiStaticVendorMomentMomentTimezoneWithDataMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment-timezone-with-data.min.js", size: 184495, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1630,7 +1651,7 @@ func pkgUiStaticVendorMomentMomentMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/moment/moment.min.js", size: 51825, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1650,7 +1671,7 @@ func pkgUiStaticVendorMustacheMustacheMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/mustache/mustache.min.js", size: 9528, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1670,7 +1691,7 @@ func pkgUiStaticVendorRickshawRickshawMinCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.css", size: 6102, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1690,7 +1711,7 @@ func pkgUiStaticVendorRickshawRickshawMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/rickshaw.min.js", size: 76322, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1710,7 +1731,7 @@ func pkgUiStaticVendorRickshawVendorD3LayoutMinJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.layout.min.js", size: 17514, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1730,7 +1751,7 @@ func pkgUiStaticVendorRickshawVendorD3V3Js() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1585210035, 0)} + info := bindataFileInfo{name: "pkg/ui/static/vendor/rickshaw/vendor/d3.v3.js", size: 144718, mode: os.FileMode(420), modTime: time.Unix(1583953499, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -1811,13 +1832,14 @@ var _bindata = map[string]func() (*asset, error){ "pkg/ui/static/react/favicon.ico": pkgUiStaticReactFaviconIco, "pkg/ui/static/react/index.html": pkgUiStaticReactIndexHtml, "pkg/ui/static/react/manifest.json": pkgUiStaticReactManifestJson, - "pkg/ui/static/react/precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js": pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, + "pkg/ui/static/react/precache-manifest.5b38a4fc0bde14c6f31f0e40057889e9.js": pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9Js, "pkg/ui/static/react/service-worker.js": pkgUiStaticReactServiceWorkerJs, - "pkg/ui/static/react/static/css/2.3f5e1097.chunk.css": pkgUiStaticReactStaticCss23f5e1097ChunkCss, - "pkg/ui/static/react/static/css/main.61ef2226.chunk.css": pkgUiStaticReactStaticCssMain61ef2226ChunkCss, - "pkg/ui/static/react/static/js/2.926cad18.chunk.js": pkgUiStaticReactStaticJs2926cad18ChunkJs, - "pkg/ui/static/react/static/js/main.ba725b9f.chunk.js": pkgUiStaticReactStaticJsMainBa725b9fChunkJs, - "pkg/ui/static/react/static/js/runtime-main.56ad181a.js": pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, + "pkg/ui/static/react/static/css/2.df42c974.chunk.css": pkgUiStaticReactStaticCss2Df42c974ChunkCss, + "pkg/ui/static/react/static/css/main.02392ede.chunk.css": pkgUiStaticReactStaticCssMain02392edeChunkCss, + "pkg/ui/static/react/static/js/2.b309ab18.chunk.js": pkgUiStaticReactStaticJs2B309ab18ChunkJs, + "pkg/ui/static/react/static/js/2.b309ab18.chunk.js.LICENSE.txt": pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxt, + "pkg/ui/static/react/static/js/main.bd8c49dc.chunk.js": pkgUiStaticReactStaticJsMainBd8c49dcChunkJs, + "pkg/ui/static/react/static/js/runtime-main.5db206b5.js": pkgUiStaticReactStaticJsRuntimeMain5db206b5Js, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.css": pkgUiStaticVendorBootstrap413CssBootstrapGridCss, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-grid.min.css": pkgUiStaticVendorBootstrap413CssBootstrapGridMinCss, "pkg/ui/static/vendor/bootstrap-4.1.3/css/bootstrap-reboot.css": pkgUiStaticVendorBootstrap413CssBootstrapRebootCss, @@ -1933,17 +1955,18 @@ var _bintree = &bintree{nil, map[string]*bintree{ "favicon.ico": &bintree{pkgUiStaticReactFaviconIco, map[string]*bintree{}}, "index.html": &bintree{pkgUiStaticReactIndexHtml, map[string]*bintree{}}, "manifest.json": &bintree{pkgUiStaticReactManifestJson, map[string]*bintree{}}, - "precache-manifest.c76226b400b08726e0b03a7a0f683ecd.js": &bintree{pkgUiStaticReactPrecacheManifestC76226b400b08726e0b03a7a0f683ecdJs, map[string]*bintree{}}, + "precache-manifest.5b38a4fc0bde14c6f31f0e40057889e9.js": &bintree{pkgUiStaticReactPrecacheManifest5b38a4fc0bde14c6f31f0e40057889e9Js, map[string]*bintree{}}, "service-worker.js": &bintree{pkgUiStaticReactServiceWorkerJs, map[string]*bintree{}}, "static": &bintree{nil, map[string]*bintree{ "css": &bintree{nil, map[string]*bintree{ - "2.3f5e1097.chunk.css": &bintree{pkgUiStaticReactStaticCss23f5e1097ChunkCss, map[string]*bintree{}}, - "main.61ef2226.chunk.css": &bintree{pkgUiStaticReactStaticCssMain61ef2226ChunkCss, map[string]*bintree{}}, + "2.df42c974.chunk.css": &bintree{pkgUiStaticReactStaticCss2Df42c974ChunkCss, map[string]*bintree{}}, + "main.02392ede.chunk.css": &bintree{pkgUiStaticReactStaticCssMain02392edeChunkCss, map[string]*bintree{}}, }}, "js": &bintree{nil, map[string]*bintree{ - "2.926cad18.chunk.js": &bintree{pkgUiStaticReactStaticJs2926cad18ChunkJs, map[string]*bintree{}}, - "main.ba725b9f.chunk.js": &bintree{pkgUiStaticReactStaticJsMainBa725b9fChunkJs, map[string]*bintree{}}, - "runtime-main.56ad181a.js": &bintree{pkgUiStaticReactStaticJsRuntimeMain56ad181aJs, map[string]*bintree{}}, + "2.b309ab18.chunk.js": &bintree{pkgUiStaticReactStaticJs2B309ab18ChunkJs, map[string]*bintree{}}, + "2.b309ab18.chunk.js.LICENSE.txt": &bintree{pkgUiStaticReactStaticJs2B309ab18ChunkJsLicenseTxt, map[string]*bintree{}}, + "main.bd8c49dc.chunk.js": &bintree{pkgUiStaticReactStaticJsMainBd8c49dcChunkJs, map[string]*bintree{}}, + "runtime-main.5db206b5.js": &bintree{pkgUiStaticReactStaticJsRuntimeMain5db206b5Js, map[string]*bintree{}}, }}, }}, }}, diff --git a/pkg/ui/react-app/package.json b/pkg/ui/react-app/package.json index c529eb4f0f4..ed1b145d665 100644 --- a/pkg/ui/react-app/package.json +++ b/pkg/ui/react-app/package.json @@ -34,7 +34,7 @@ "react-copy-to-clipboard": "^5.0.1", "react-dom": "^16.7.0", "react-resize-detector": "^4.2.1", - "react-scripts": "^3.2.0", + "react-scripts": "^3.4.0", "react-test-renderer": "^16.9.0", "reactstrap": "^8.0.1", "sanitize-html": "^1.20.1", diff --git a/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx b/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx index f5e00aaa481..7d2622abb0d 100644 --- a/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx +++ b/pkg/ui/react-app/src/pages/graph/ExpressionInput.tsx @@ -77,39 +77,36 @@ class ExpressionInput extends Component { - const matches = this.getSearchMatches(inputValue!, items); - return !matches.length - ? acc - : [ - ...acc, -
      -
    • {title}
    • - {matches - .slice(0, 100) // Limit DOM rendering to 100 results, as DOM rendering is sloooow. - .map(({ original, string: text }) => { - const itemProps = downshift.getItemProps({ - key: original, - index, - item: original, - style: { - backgroundColor: highlightedIndex === index++ ? 'lightgray' : 'white', - }, - }); - return ( -
    • - ); - })} -
    , - ]; - }, - [] as JSX.Element[] - ) + ? Object.entries(autocompleteSections).reduce((acc, [title, items]) => { + const matches = this.getSearchMatches(inputValue!, items); + return !matches.length + ? acc + : [ + ...acc, +
      +
    • {title}
    • + {matches + .slice(0, 100) // Limit DOM rendering to 100 results, as DOM rendering is sloooow. + .map(({ original, string: text }) => { + const itemProps = downshift.getItemProps({ + key: original, + index, + item: original, + style: { + backgroundColor: highlightedIndex === index++ ? 'lightgray' : 'white', + }, + }); + return ( +
    • + ); + })} +
    , + ]; + }, [] as JSX.Element[]) : []; if (!sections.length) { diff --git a/pkg/ui/react-app/src/pages/graph/Graph.test.tsx b/pkg/ui/react-app/src/pages/graph/Graph.test.tsx index cb5ce537a17..bddd6394628 100644 --- a/pkg/ui/react-app/src/pages/graph/Graph.test.tsx +++ b/pkg/ui/react-app/src/pages/graph/Graph.test.tsx @@ -226,7 +226,10 @@ describe('Graph', () => { resolution: 28, }, data: { - result: [{ values: [], metric: {} }, { values: [], metric: {} }], + result: [ + { values: [], metric: {} }, + { values: [], metric: {} }, + ], }, } as any)} /> @@ -254,7 +257,10 @@ describe('Graph', () => { resolution: 28, }, data: { - result: [{ values: [], metric: {} }, { values: [], metric: {} }], + result: [ + { values: [], metric: {} }, + { values: [], metric: {} }, + ], }, } as any)} /> diff --git a/pkg/ui/react-app/src/pages/graph/Panel.test.tsx b/pkg/ui/react-app/src/pages/graph/Panel.test.tsx index 6e969b9ac60..6aad61e78e5 100644 --- a/pkg/ui/react-app/src/pages/graph/Panel.test.tsx +++ b/pkg/ui/react-app/src/pages/graph/Panel.test.tsx @@ -9,6 +9,9 @@ import DataTable from './DataTable'; import { GraphTabContent } from './GraphTabContent'; const defaultProps = { + useLocalTime: false, + useDeduplication: true, + usePartialResponse: false, options: { expr: 'prometheus_engine', type: PanelType.Table, @@ -32,9 +35,6 @@ const defaultProps = { onExecuteQuery: (): void => { // Do nothing. }, - useLocalTime: false, - useDeduplication: true, - usePartialResponse: false, }; describe('Panel', () => { @@ -60,17 +60,18 @@ describe('Panel', () => { }; const panel = shallow(); const links = panel.find(NavLink); - [{ panelType: 'Table', active: true }, { panelType: 'Graph', active: false }].forEach( - (tc: { panelType: string; active: boolean }, i: number) => { - const link = links.at(i); - const className = tc.active ? 'active' : ''; - expect(link.prop('className')).toEqual(className); - link.simulate('click'); - expect(results).toHaveLength(1); - expect(results[0].type).toEqual(tc.panelType.toLowerCase()); - results.pop(); - } - ); + [ + { panelType: 'Table', active: true }, + { panelType: 'Graph', active: false }, + ].forEach((tc: { panelType: string; active: boolean }, i: number) => { + const link = links.at(i); + const className = tc.active ? 'active' : ''; + expect(link.prop('className')).toEqual(className); + link.simulate('click'); + expect(results).toHaveLength(1); + expect(results[0].type).toEqual(tc.panelType.toLowerCase()); + results.pop(); + }); }); it('renders a TabPane with a TimeInput and a DataTable when in table mode', () => { @@ -103,22 +104,23 @@ describe('Panel', () => { }); describe('when switching between modes', () => { - [{ from: PanelType.Table, to: PanelType.Graph }, { from: PanelType.Graph, to: PanelType.Table }].forEach( - ({ from, to }: { from: PanelType; to: PanelType }) => { - it(`${from} -> ${to} nulls out data`, () => { - const props = { - ...defaultProps, - options: { ...defaultProps.options, type: from }, - }; - const panel = shallow(); - const instance: any = panel.instance(); - panel.setState({ data: 'somedata' }); - expect(panel.state('data')).toEqual('somedata'); - instance.handleChangeType(to); - expect(panel.state('data')).toBeNull(); - }); - } - ); + [ + { from: PanelType.Table, to: PanelType.Graph }, + { from: PanelType.Graph, to: PanelType.Table }, + ].forEach(({ from, to }: { from: PanelType; to: PanelType }) => { + it(`${from} -> ${to} nulls out data`, () => { + const props = { + ...defaultProps, + options: { ...defaultProps.options, type: from }, + }; + const panel = shallow(); + const instance: any = panel.instance(); + panel.setState({ data: 'somedata' }); + expect(panel.state('data')).toEqual('somedata'); + instance.handleChangeType(to); + expect(panel.state('data')).toBeNull(); + }); + }); }); describe('when changing query then time', () => { diff --git a/pkg/ui/react-app/src/pages/graph/PanelList.tsx b/pkg/ui/react-app/src/pages/graph/PanelList.tsx index d321b9ed365..8fb22dbe443 100644 --- a/pkg/ui/react-app/src/pages/graph/PanelList.tsx +++ b/pkg/ui/react-app/src/pages/graph/PanelList.tsx @@ -64,7 +64,10 @@ export const PanelListContent: FC = ({ }; const addPanel = () => { - callAll(setPanels, updateURL)([ + callAll( + setPanels, + updateURL + )([ ...panels, { id: generateID(), @@ -85,7 +88,10 @@ export const PanelListContent: FC = ({ callAll(setPanels, updateURL)(panels.map(p => (id === p.id ? { ...p, options: opts } : p))) } removePanel={() => - callAll(setPanels, updateURL)( + callAll( + setPanels, + updateURL + )( panels.reduce( (acc, panel) => (panel.id !== id ? [...acc, { ...panel, key: `${acc.length}` }] : acc), [] diff --git a/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap b/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap index 1389355e2f4..7613249cba1 100644 --- a/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap +++ b/pkg/ui/react-app/src/pages/targets/__snapshots__/TargetLabels.test.tsx.snap @@ -47,7 +47,7 @@ exports[`targetLabels renders discovered labels 1`] = ` } target="series-labels-cortex\\\\/node-exporter_group\\\\/0-1" toggle={[Function]} - trigger="click hover focus" + trigger="hover focus" > Before relabeling: diff --git a/pkg/ui/react-app/yarn.lock b/pkg/ui/react-app/yarn.lock index f650f09a850..9de8efc32ba 100644 --- a/pkg/ui/react-app/yarn.lock +++ b/pkg/ui/react-app/yarn.lock @@ -2,905 +2,945 @@ # yarn lockfile v1 -"@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" - integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== - dependencies: - "@babel/highlight" "^7.0.0" - -"@babel/core@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.0.tgz#9b00f73554edd67bebc86df8303ef678be3d7b48" - integrity sha512-FuRhDRtsd6IptKpHXAa+4WPZYY2ZzgowkbLBecEDDSje1X/apG7jQM33or3NdOmjXBKWGOg4JmSiRfUfuTtHXw== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.0" - "@babel/helpers" "^7.6.0" - "@babel/parser" "^7.6.0" - "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.0" - "@babel/types" "^7.6.0" - convert-source-map "^1.1.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" +"@babel/code-frame@7.8.3", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz#33e25903d7481181534e12ec0a25f16b6fcf419e" + integrity sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g== + dependencies: + "@babel/highlight" "^7.8.3" + +"@babel/compat-data@^7.8.6", "@babel/compat-data@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.9.0.tgz#04815556fc90b0c174abd2c0c1bb966faa036a6c" + integrity sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g== + dependencies: + browserslist "^4.9.1" + invariant "^2.2.4" + semver "^5.5.0" -"@babel/core@^7.1.0", "@babel/core@^7.4.5": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.4.tgz#6ebd9fe00925f6c3e177bb726a188b5f578088ff" - integrity sha512-Rm0HGw101GY8FTzpWSyRbki/jzq+/PkNQJ+nSulrdY6gFGOsNseCqD6KHRYe2E+EdzuBdr2pxCp6s4Uk6eJ+XQ== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.4" - "@babel/helpers" "^7.6.2" - "@babel/parser" "^7.6.4" - "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.3" - "@babel/types" "^7.6.3" - convert-source-map "^1.1.0" +"@babel/core@7.9.0", "@babel/core@^7.1.0", "@babel/core@^7.4.5": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.9.0.tgz#ac977b538b77e132ff706f3b8a4dbad09c03c56e" + integrity sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helpers" "^7.9.0" + "@babel/parser" "^7.9.0" + "@babel/template" "^7.8.6" + "@babel/traverse" "^7.9.0" + "@babel/types" "^7.9.0" + convert-source-map "^1.7.0" debug "^4.1.0" - json5 "^2.1.0" + gensync "^1.0.0-beta.1" + json5 "^2.1.2" lodash "^4.17.13" resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.4.0", "@babel/generator@^7.6.0", "@babel/generator@^7.6.3", "@babel/generator@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.4.tgz#a4f8437287bf9671b07f483b76e3bb731bc97671" - integrity sha512-jsBuXkFoZxk0yWLyGI9llT9oiQ2FeTASmRFE32U+aaDTfoE92t78eroO7PTpU/OrYq38hlcDM6vbfLDaOLy+7w== +"@babel/generator@^7.4.0", "@babel/generator@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.0.tgz#0f67adea4ec39dad6e63345f70eec33014d78c89" + integrity sha512-onl4Oy46oGCzymOXtKMQpI7VXtCbTSHK1kqBydZ6AmzuNcacEVqGk9tZtAS+48IA9IstZcDCgIg8hQKnb7suRw== dependencies: - "@babel/types" "^7.6.3" + "@babel/types" "^7.9.0" jsesc "^2.5.1" lodash "^4.17.13" source-map "^0.5.0" -"@babel/helper-annotate-as-pure@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32" - integrity sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q== +"@babel/helper-annotate-as-pure@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.8.3.tgz#60bc0bc657f63a0924ff9a4b4a0b24a13cf4deee" + integrity sha512-6o+mJrZBxOoEX77Ezv9zwW7WV8DdluouRKNY/IR5u/YTMuKHgugHOzYWlYvYLpLA9nPsQCAAASpCIbjI9Mv+Uw== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.8.3" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz#6b69628dfe4087798e0c4ed98e3d4a6b2fbd2f5f" - integrity sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.8.3.tgz#c84097a427a061ac56a1c30ebf54b7b22d241503" + integrity sha512-5eFOm2SyFPK4Rh3XMMRDjN7lBH0orh3ss0g3rTYZnBQ+r6YPj7lgDyCvPphynHvUrobJmeMignBr6Acw9mAPlw== dependencies: - "@babel/helper-explode-assignable-expression" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-explode-assignable-expression" "^7.8.3" + "@babel/types" "^7.8.3" -"@babel/helper-builder-react-jsx@^7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz#a1ac95a5d2b3e88ae5e54846bf462eeb81b318a4" - integrity sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw== +"@babel/helper-builder-react-jsx-experimental@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.0.tgz#066d80262ade488f9c1b1823ce5db88a4cedaa43" + integrity sha512-3xJEiyuYU4Q/Ar9BsHisgdxZsRlsShMe90URZ0e6przL26CCs8NJbDoxH94kKT17PcxlMhsCAwZd90evCo26VQ== dependencies: - "@babel/types" "^7.3.0" - esutils "^2.0.0" + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-module-imports" "^7.8.3" + "@babel/types" "^7.9.0" -"@babel/helper-call-delegate@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43" - integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ== +"@babel/helper-builder-react-jsx@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz#16bf391990b57732700a3278d4d9a81231ea8d32" + integrity sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw== dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/traverse" "^7.4.4" - "@babel/types" "^7.4.4" + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/types" "^7.9.0" -"@babel/helper-create-class-features-plugin@^7.5.5", "@babel/helper-create-class-features-plugin@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.6.0.tgz#769711acca889be371e9bc2eb68641d55218021f" - integrity sha512-O1QWBko4fzGju6VoVvrZg0RROCVifcLxiApnGP3OWfWzvxRZFCoBD81K5ur5e3bVY2Vf/5rIJm8cqPKn8HUJng== +"@babel/helper-call-delegate@^7.8.7": + version "7.8.7" + resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.8.7.tgz#28a279c2e6c622a6233da548127f980751324cab" + integrity sha512-doAA5LAKhsFCR0LAFIf+r2RSMmC+m8f/oQ+URnUET/rWeEzC0yTRmAGyWkD4sSu3xwbS7MYQ2u+xlt1V5R56KQ== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/helper-hoist-variables" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.7" -"@babel/helper-define-map@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz#3dec32c2046f37e09b28c93eb0b103fd2a25d369" - integrity sha512-fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg== +"@babel/helper-compilation-targets@^7.8.7": + version "7.8.7" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.8.7.tgz#dac1eea159c0e4bd46e309b5a1b04a66b53c1dde" + integrity sha512-4mWm8DCK2LugIS+p1yArqvG1Pf162upsIsjE7cNBjez+NjliQpVhj20obE520nao0o14DaTnFJv+Fw5a0JpoUw== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/types" "^7.5.5" + "@babel/compat-data" "^7.8.6" + browserslist "^4.9.1" + invariant "^2.2.4" + levenary "^1.1.1" + semver "^5.5.0" + +"@babel/helper-create-class-features-plugin@^7.8.3": + version "7.8.6" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.8.6.tgz#243a5b46e2f8f0f674dc1387631eb6b28b851de0" + integrity sha512-klTBDdsr+VFFqaDHm5rR69OpEQtO2Qv8ECxHS1mNhJJvaHArR6a1xTf5K/eZW7eZpJbhCx3NW1Yt/sKsLXLblg== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-split-export-declaration" "^7.8.3" + +"@babel/helper-create-regexp-features-plugin@^7.8.3", "@babel/helper-create-regexp-features-plugin@^7.8.8": + version "7.8.8" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.8.8.tgz#5d84180b588f560b7864efaeea89243e58312087" + integrity sha512-LYVPdwkrQEiX9+1R29Ld/wTrmQu1SSKYnuOk3g0CkcZMA1p0gsNxJFj/3gBdaJ7Cg0Fnek5z0DsMULePP7Lrqg== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-regex" "^7.8.3" + regexpu-core "^4.7.0" + +"@babel/helper-define-map@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.8.3.tgz#a0655cad5451c3760b726eba875f1cd8faa02c15" + integrity sha512-PoeBYtxoZGtct3md6xZOCWPcKuMuk3IHhgxsRRNtnNShebf4C8YonTSblsK4tvDbm+eJAw2HAPOfCr+Q/YRG/g== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/types" "^7.8.3" lodash "^4.17.13" -"@babel/helper-explode-assignable-expression@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz#537fa13f6f1674df745b0c00ec8fe4e99681c8f6" - integrity sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA== +"@babel/helper-explode-assignable-expression@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.8.3.tgz#a728dc5b4e89e30fc2dfc7d04fa28a930653f982" + integrity sha512-N+8eW86/Kj147bO9G2uclsg5pwfs/fqqY5rwgIL7eTBklgXjcOJ3btzS5iM6AitJcftnY7pm2lGsrJVYLGjzIw== dependencies: - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" -"@babel/helper-function-name@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" - integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== +"@babel/helper-function-name@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz#eeeb665a01b1f11068e9fb86ad56a1cb1a824cca" + integrity sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA== dependencies: - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-get-function-arity" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/types" "^7.8.3" -"@babel/helper-get-function-arity@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" - integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== +"@babel/helper-get-function-arity@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz#b894b947bd004381ce63ea1db9f08547e920abd5" + integrity sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.8.3" -"@babel/helper-hoist-variables@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a" - integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w== +"@babel/helper-hoist-variables@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.8.3.tgz#1dbe9b6b55d78c9b4183fc8cdc6e30ceb83b7134" + integrity sha512-ky1JLOjcDUtSc+xkt0xhYff7Z6ILTAHKmZLHPxAhOP0Nd77O+3nCsd6uSVYur6nJnCI029CrNbYlc0LoPfAPQg== dependencies: - "@babel/types" "^7.4.4" + "@babel/types" "^7.8.3" -"@babel/helper-member-expression-to-functions@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" - integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== +"@babel/helper-member-expression-to-functions@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.8.3.tgz#659b710498ea6c1d9907e0c73f206eee7dadc24c" + integrity sha512-fO4Egq88utkQFjbPrSHGmGLFqmrshs11d46WI+WZDESt7Wu7wN2G2Iu+NMMZJFDOVRHAMIkB5SNh30NtwCA7RA== dependencies: - "@babel/types" "^7.5.5" + "@babel/types" "^7.8.3" -"@babel/helper-module-imports@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz#96081b7111e486da4d2cd971ad1a4fe216cc2e3d" - integrity sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A== +"@babel/helper-module-imports@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498" + integrity sha512-R0Bx3jippsbAEtzkpZ/6FIiuzOURPcMjHp+Z6xPe6DtApDJx+w7UYyOLanZqO8+wKR9G10s/FmHXvxaMd9s6Kg== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.8.3" -"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz#f84ff8a09038dcbca1fd4355661a500937165b4a" - integrity sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw== +"@babel/helper-module-transforms@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz#43b34dfe15961918707d247327431388e9fe96e5" + integrity sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA== dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/template" "^7.4.4" - "@babel/types" "^7.5.5" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-simple-access" "^7.8.3" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/template" "^7.8.6" + "@babel/types" "^7.9.0" lodash "^4.17.13" -"@babel/helper-optimise-call-expression@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" - integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== +"@babel/helper-optimise-call-expression@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.8.3.tgz#7ed071813d09c75298ef4f208956006b6111ecb9" + integrity sha512-Kag20n86cbO2AvHca6EJsvqAd82gc6VMGule4HwebwMlwkpXuVqrNRj6CkCV2sKxgi9MyAUnZVnZ6lJ1/vKhHQ== dependencies: - "@babel/types" "^7.0.0" + "@babel/types" "^7.8.3" -"@babel/helper-plugin-utils@^7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" - integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" + integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== -"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.5.5.tgz#0aa6824f7100a2e0e89c1527c23936c152cab351" - integrity sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw== +"@babel/helper-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.8.3.tgz#139772607d51b93f23effe72105b319d2a4c6965" + integrity sha512-BWt0QtYv/cg/NecOAZMdcn/waj/5P26DR4mVLXfFtDokSR6fyuG0Pj+e2FqtSME+MqED1khnSMulkmGl8qWiUQ== dependencies: lodash "^4.17.13" -"@babel/helper-remap-async-to-generator@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz#361d80821b6f38da75bd3f0785ece20a88c5fe7f" - integrity sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-wrap-function" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.0.0" +"@babel/helper-remap-async-to-generator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.8.3.tgz#273c600d8b9bf5006142c1e35887d555c12edd86" + integrity sha512-kgwDmw4fCg7AVgS4DukQR/roGp+jP+XluJE5hsRZwxCYGg+Rv9wSGErDWhlI90FODdYfd4xG4AQRiMDjjN0GzA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-wrap-function" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + +"@babel/helper-replace-supers@^7.8.3", "@babel/helper-replace-supers@^7.8.6": + version "7.8.6" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.8.6.tgz#5ada744fd5ad73203bf1d67459a27dcba67effc8" + integrity sha512-PeMArdA4Sv/Wf4zXwBKPqVj7n9UF/xg6slNRtZW84FM7JpE1CbG8B612FyM4cxrf4fMAMGO0kR7voy1ForHHFA== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/traverse" "^7.8.6" + "@babel/types" "^7.8.6" + +"@babel/helper-simple-access@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.8.3.tgz#7f8109928b4dab4654076986af575231deb639ae" + integrity sha512-VNGUDjx5cCWg4vvCTR8qQ7YJYZ+HBjxOgXEl7ounz+4Sn7+LMD3CFrCTEU6/qXKbA2nKg21CwhhBzO0RpRbdCw== + dependencies: + "@babel/template" "^7.8.3" + "@babel/types" "^7.8.3" + +"@babel/helper-split-export-declaration@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz#31a9f30070f91368a7182cf05f831781065fc7a9" + integrity sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA== + dependencies: + "@babel/types" "^7.8.3" + +"@babel/helper-validator-identifier@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz#ad53562a7fc29b3b9a91bbf7d10397fd146346ed" + integrity sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw== + +"@babel/helper-wrap-function@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz#9dbdb2bb55ef14aaa01fe8c99b629bd5352d8610" + integrity sha512-LACJrbUET9cQDzb6kG7EeD7+7doC3JNvUgTEQOx2qaO1fKlzE/Bf05qs9w1oXQMmXlPO65lC3Tq9S6gZpTErEQ== + dependencies: + "@babel/helper-function-name" "^7.8.3" + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.8.3" + "@babel/types" "^7.8.3" + +"@babel/helpers@^7.9.0": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.9.2.tgz#b42a81a811f1e7313b88cba8adc66b3d9ae6c09f" + integrity sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA== + dependencies: + "@babel/template" "^7.8.3" + "@babel/traverse" "^7.9.0" + "@babel/types" "^7.9.0" + +"@babel/highlight@^7.8.3": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz#4e9b45ccb82b79607271b2979ad82c7b68163079" + integrity sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ== + dependencies: + "@babel/helper-validator-identifier" "^7.9.0" + chalk "^2.0.0" + js-tokens "^4.0.0" -"@babel/helper-replace-supers@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" - integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== - dependencies: - "@babel/helper-member-expression-to-functions" "^7.5.5" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/traverse" "^7.5.5" - "@babel/types" "^7.5.5" +"@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.7.0", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.2.tgz#4e767f424b479c514077544484d1f9bdba7f1158" + integrity sha512-2jyvKdoOS1aWAFL2rjJZmamyDDkPCx/AAz4/Wh1Dfxvw8qqnOvek/ZlHQ2noO/o8JpnXa/WiUUFOv48meBKkpA== -"@babel/helper-simple-access@^7.1.0": - version "7.1.0" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz#65eeb954c8c245beaa4e859da6188f39d71e585c" - integrity sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w== +"@babel/plugin-proposal-async-generator-functions@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.8.3.tgz#bad329c670b382589721b27540c7d288601c6e6f" + integrity sha512-NZ9zLv848JsV3hs8ryEh7Uaz/0KsmPLqv0+PdkDJL1cJy0K4kOCFa8zc1E3mp+RHPQcpdfb/6GovEsW4VDrOMw== dependencies: - "@babel/template" "^7.1.0" - "@babel/types" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-remap-async-to-generator" "^7.8.3" + "@babel/plugin-syntax-async-generators" "^7.8.0" -"@babel/helper-split-export-declaration@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" - integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== +"@babel/plugin-proposal-class-properties@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.8.3.tgz#5e06654af5cd04b608915aada9b2a6788004464e" + integrity sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA== dependencies: - "@babel/types" "^7.4.4" + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/helper-wrap-function@^7.1.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz#c4e0012445769e2815b55296ead43a958549f6fa" - integrity sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ== +"@babel/plugin-proposal-decorators@7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.8.3.tgz#2156860ab65c5abf068c3f67042184041066543e" + integrity sha512-e3RvdvS4qPJVTe288DlXjwKflpfy1hr0j5dz5WpIYYeP7vQZg2WfAEIp8k5/Lwis/m5REXEteIz6rrcDtXXG7w== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/template" "^7.1.0" - "@babel/traverse" "^7.1.0" - "@babel/types" "^7.2.0" + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-decorators" "^7.8.3" -"@babel/helpers@^7.6.0", "@babel/helpers@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153" - integrity sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA== +"@babel/plugin-proposal-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.8.3.tgz#38c4fe555744826e97e2ae930b0fb4cc07e66054" + integrity sha512-NyaBbyLFXFLT9FP+zk0kYlUlA8XtCUbehs67F0nnEg7KICgMc2mNkIeu9TYhKzyXMkrapZFwAhXLdnt4IYHy1w== dependencies: - "@babel/template" "^7.6.0" - "@babel/traverse" "^7.6.2" - "@babel/types" "^7.6.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" -"@babel/highlight@^7.0.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" - integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== +"@babel/plugin-proposal-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.8.3.tgz#da5216b238a98b58a1e05d6852104b10f9a70d6b" + integrity sha512-KGhQNZ3TVCQG/MjRbAUwuH+14y9q0tpxs1nWWs3pbSleRdDro9SAMMDyye8HhY1gqZ7/NqIc8SKhya0wRDgP1Q== dependencies: - chalk "^2.0.0" - esutils "^2.0.2" - js-tokens "^4.0.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.0" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.4.3", "@babel/parser@^7.6.0", "@babel/parser@^7.6.3", "@babel/parser@^7.6.4": - version "7.6.4" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.4.tgz#cb9b36a7482110282d5cb6dd424ec9262b473d81" - integrity sha512-D8RHPW5qd0Vbyo3qb+YjO5nvUVRTXFLQ/FsDxJU2Nqz4uB5EnUN0ZQSEYpvTIbRuttig1XbHWU5oMeQwQSAA+A== +"@babel/plugin-proposal-nullish-coalescing-operator@7.8.3", "@babel/plugin-proposal-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.8.3.tgz#e4572253fdeed65cddeecfdab3f928afeb2fd5d2" + integrity sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" -"@babel/plugin-proposal-async-generator-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz#b289b306669dce4ad20b0252889a15768c9d417e" - integrity sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ== +"@babel/plugin-proposal-numeric-separator@7.8.3", "@babel/plugin-proposal-numeric-separator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.8.3.tgz#5d6769409699ec9b3b68684cd8116cedff93bad8" + integrity sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" - "@babel/plugin-syntax-async-generators" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" -"@babel/plugin-proposal-class-properties@7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4" - integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A== +"@babel/plugin-proposal-object-rest-spread@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz#a28993699fc13df165995362693962ba6b061d6f" + integrity sha512-UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow== dependencies: - "@babel/helper-create-class-features-plugin" "^7.5.5" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" -"@babel/plugin-proposal-decorators@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.6.0.tgz#6659d2572a17d70abd68123e89a12a43d90aa30c" - integrity sha512-ZSyYw9trQI50sES6YxREXKu+4b7MAg6Qx2cvyDDYjP2Hpzd3FleOUwC9cqn1+za8d0A2ZU8SHujxFao956efUg== +"@babel/plugin-proposal-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.8.3.tgz#9dee96ab1650eed88646ae9734ca167ac4a9c5c9" + integrity sha512-0gkX7J7E+AtAw9fcwlVQj8peP61qhdg/89D5swOkjYbkboA2CVckn3kiyum1DE0wskGb7KJJxBdyEBApDLLVdw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.6.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-decorators" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" -"@babel/plugin-proposal-dynamic-import@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506" - integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw== +"@babel/plugin-proposal-optional-chaining@7.9.0", "@babel/plugin-proposal-optional-chaining@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz#31db16b154c39d6b8a645292472b98394c292a58" + integrity sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" -"@babel/plugin-proposal-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317" - integrity sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg== +"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.8.3": + version "7.8.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.8.8.tgz#ee3a95e90cdc04fe8cd92ec3279fa017d68a0d1d" + integrity sha512-EVhjVsMpbhLw9ZfHWSx2iy13Q8Z/eg8e8ccVWt23sWQK5l1UdkoLJPN5w69UA4uITGBnEZD2JOe4QOHycYKv8A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" + "@babel/helper-create-regexp-features-plugin" "^7.8.8" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-proposal-object-rest-spread@7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz#61939744f71ba76a3ae46b5eea18a54c16d22e58" - integrity sha512-F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw== +"@babel/plugin-syntax-async-generators@^7.8.0": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-proposal-object-rest-spread@^7.5.5", "@babel/plugin-proposal-object-rest-spread@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.6.2.tgz#8ffccc8f3a6545e9f78988b6bf4fe881b88e8096" - integrity sha512-LDBXlmADCsMZV1Y9OQwMc0MyGZ8Ta/zlD9N67BfQT8uYwkRswiu2hU6nJKrjrt/58aH/vqfQlR/9yId/7A2gWw== +"@babel/plugin-syntax-decorators@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.8.3.tgz#8d2c15a9f1af624b0025f961682a9d53d3001bda" + integrity sha512-8Hg4dNNT9/LcA1zQlfwuKR8BUc/if7Q7NkTam9sGTcJphLwpf2g4S42uhspQrIrR+dpzE0dtTqBVFoHl8GtnnQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-proposal-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz#135d81edb68a081e55e56ec48541ece8065c38f5" - integrity sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g== +"@babel/plugin-syntax-dynamic-import@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4", "@babel/plugin-proposal-unicode-property-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.6.2.tgz#05413762894f41bfe42b9a5e80919bd575dcc802" - integrity sha512-NxHETdmpeSCtiatMRYWVJo7266rrvAC3DTeG5exQBIH/fMIUK7ejDNznBbn3HQl/o9peymRRg7Yqkx6PdUXmMw== +"@babel/plugin-syntax-flow@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.8.3.tgz#f2c883bd61a6316f2c89380ae5122f923ba4527f" + integrity sha512-innAx3bUbA0KSYj2E2MNFSn9hiCeowOFLxlsuhXzw8hMQnzkDomUr9QCD7E9VF60NmnG1sNTuuv6Qf4f8INYsg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-async-generators@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz#69e1f0db34c6f5a0cf7e2b3323bf159a76c8cb7f" - integrity sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg== +"@babel/plugin-syntax-json-strings@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-decorators@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.2.0.tgz#c50b1b957dcc69e4b1127b65e1c33eef61570c1b" - integrity sha512-38QdqVoXdHUQfTpZo3rQwqQdWtCn5tMv4uV6r2RMfTqNBuv4ZBhz79SfaQWKTVmxHjeFv/DnXVC/+agHCklYWA== +"@babel/plugin-syntax-jsx@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.8.3.tgz#521b06c83c40480f1e58b4fd33b92eceb1d6ea94" + integrity sha512-WxdW9xyLgBdefoo0Ynn3MRSkhe5tFVxxKNVdnZSh318WrG2e2jH+E9wd/++JsqcLJZPfz87njQJ8j2Upjm0M0A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-dynamic-import@7.2.0", "@babel/plugin-syntax-dynamic-import@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612" - integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w== +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-flow@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz#a765f061f803bc48f240c26f8747faf97c26bf7c" - integrity sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg== +"@babel/plugin-syntax-numeric-separator@^7.8.0", "@babel/plugin-syntax-numeric-separator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" + integrity sha512-H7dCMAdN83PcCmqmkHB5dtp+Xa9a6LKSvA2hiFBC/5alSHxM5VgWZXFqDi0YFe8XNGT6iCa+z4V4zSt/PdZ7Dw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-json-strings@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470" - integrity sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg== +"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz#0b85a3b4bc7cdf4cc4b8bf236335b907ca22e7c7" - integrity sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw== +"@babel/plugin-syntax-optional-catch-binding@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-object-rest-spread@^7.0.0", "@babel/plugin-syntax-object-rest-spread@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz#3b7a3e733510c57e820b9142a6579ac8b0dfad2e" - integrity sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA== +"@babel/plugin-syntax-optional-chaining@^7.8.0": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-optional-catch-binding@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz#a94013d6eda8908dfe6a477e7f9eda85656ecf5c" - integrity sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w== +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.8.3.tgz#3acdece695e6b13aaf57fc291d1a800950c71391" + integrity sha512-kwj1j9lL/6Wd0hROD3b/OZZ7MSrZLqqn9RAZ5+cYYsflQ9HZBIKCUkr3+uL1MEJ1NePiUbf98jjiMQSv0NMR9g== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-typescript@^7.2.0": - version "7.3.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz#a7cc3f66119a9f7ebe2de5383cce193473d65991" - integrity sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag== +"@babel/plugin-syntax-typescript@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.8.3.tgz#c1f659dda97711a569cef75275f7e15dcaa6cabc" + integrity sha512-GO1MQ/SGGGoiEXY0e0bSpHimJvxqB7lktLLIq2pv8xG7WZ8IMEle74jIe1FhprHBWjwjZtXHkycDLZXIWM5Wfg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-arrow-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550" - integrity sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg== +"@babel/plugin-transform-arrow-functions@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.8.3.tgz#82776c2ed0cd9e1a49956daeb896024c9473b8b6" + integrity sha512-0MRF+KC8EqH4dbuITCWwPSzsyO3HIWWlm30v8BbbpOrS1B++isGxPnnuq/IZvOX5J2D/p7DQalQm+/2PnlKGxg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-async-to-generator@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e" - integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg== +"@babel/plugin-transform-async-to-generator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.8.3.tgz#4308fad0d9409d71eafb9b1a6ee35f9d64b64086" + integrity sha512-imt9tFLD9ogt56Dd5CI/6XgpukMwd/fLGSrix2httihVe7LOGVPhyhMh1BU5kDM7iHD08i8uUtmV2sWaBFlHVQ== dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-remap-async-to-generator" "^7.1.0" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-remap-async-to-generator" "^7.8.3" -"@babel/plugin-transform-block-scoped-functions@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz#5d3cc11e8d5ddd752aa64c9148d0db6cb79fd190" - integrity sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w== +"@babel/plugin-transform-block-scoped-functions@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.8.3.tgz#437eec5b799b5852072084b3ae5ef66e8349e8a3" + integrity sha512-vo4F2OewqjbB1+yaJ7k2EJFHlTP3jR634Z9Cj9itpqNjuLXvhlVxgnjsHsdRgASR8xYDrx6onw4vW5H6We0Jmg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-block-scoping@^7.6.0", "@babel/plugin-transform-block-scoping@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.3.tgz#6e854e51fbbaa84351b15d4ddafe342f3a5d542a" - integrity sha512-7hvrg75dubcO3ZI2rjYTzUrEuh1E9IyDEhhB6qfcooxhDA33xx2MasuLVgdxzcP6R/lipAC6n9ub9maNW6RKdw== +"@babel/plugin-transform-block-scoping@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.8.3.tgz#97d35dab66857a437c166358b91d09050c868f3a" + integrity sha512-pGnYfm7RNRgYRi7bids5bHluENHqJhrV4bCZRwc5GamaWIIs07N4rZECcmJL6ZClwjDz1GbdMZFtPs27hTB06w== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" lodash "^4.17.13" -"@babel/plugin-transform-classes@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz#d094299d9bd680a14a2a0edae38305ad60fb4de9" - integrity sha512-U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-define-map" "^7.5.5" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-optimise-call-expression" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" - "@babel/helper-split-export-declaration" "^7.4.4" +"@babel/plugin-transform-classes@^7.9.0": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.2.tgz#8603fc3cc449e31fdbdbc257f67717536a11af8d" + integrity sha512-TC2p3bPzsfvSsqBZo0kJnuelnoK9O3welkUpqSqBQuBF6R5MN2rysopri8kNvtlGIb2jmUO7i15IooAZJjZuMQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-define-map" "^7.8.3" + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-optimise-call-expression" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.6" + "@babel/helper-split-export-declaration" "^7.8.3" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz#83a7df6a658865b1c8f641d510c6f3af220216da" - integrity sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA== +"@babel/plugin-transform-computed-properties@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.8.3.tgz#96d0d28b7f7ce4eb5b120bb2e0e943343c86f81b" + integrity sha512-O5hiIpSyOGdrQZRQ2ccwtTVkgUDBBiCuK//4RJ6UfePllUTCENOzKxfh6ulckXKc0DixTFLCfb2HVkNA7aDpzA== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-destructuring@7.6.0", "@babel/plugin-transform-destructuring@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.6.0.tgz#44bbe08b57f4480094d57d9ffbcd96d309075ba6" - integrity sha512-2bGIS5P1v4+sWTCnKNDZDxbGvEqi0ijeqM/YqHtVGrvG2y0ySgnEEhXErvE9dA0bnIzY9bIzdFK0jFA46ASIIQ== +"@babel/plugin-transform-destructuring@^7.8.3": + version "7.8.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.8.8.tgz#fadb2bc8e90ccaf5658de6f8d4d22ff6272a2f4b" + integrity sha512-eRJu4Vs2rmttFCdhPUM3bV0Yo/xPSdPw6ML9KHs/bjB4bLA5HXlbvYXPOD5yASodGod+krjYx21xm1QmL8dCJQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz#44abb948b88f0199a627024e1508acaf8dc9b2f9" - integrity sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA== +"@babel/plugin-transform-dotall-regex@^7.4.4", "@babel/plugin-transform-dotall-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.8.3.tgz#c3c6ec5ee6125c6993c5cbca20dc8621a9ea7a6e" + integrity sha512-kLs1j9Nn4MQoBYdRXH6AeaXMbEJFaFu/v1nQkvib6QzTj8MZI5OQzqmD83/2jEM1z0DLilra5aWO5YpyC0ALIw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" + "@babel/helper-create-regexp-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-duplicate-keys@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853" - integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ== +"@babel/plugin-transform-duplicate-keys@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.8.3.tgz#8d12df309aa537f272899c565ea1768e286e21f1" + integrity sha512-s8dHiBUbcbSgipS4SMFuWGqCvyge5V2ZeAWzR6INTVC3Ltjig/Vw1G2Gztv0vU/hRG9X8IvKvYdoksnUfgXOEQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz#a63868289e5b4007f7054d46491af51435766008" - integrity sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A== +"@babel/plugin-transform-exponentiation-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.8.3.tgz#581a6d7f56970e06bf51560cd64f5e947b70d7b7" + integrity sha512-zwIpuIymb3ACcInbksHaNcR12S++0MDLKkiqXHl3AzpgdKlFNhog+z/K0+TGW+b0w5pgTq4H6IwV/WhxbGYSjQ== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-flow-strip-types@7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz#d267a081f49a8705fc9146de0768c6b58dccd8f7" - integrity sha512-WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q== +"@babel/plugin-transform-flow-strip-types@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz#8a3538aa40434e000b8f44a3c5c9ac7229bd2392" + integrity sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-flow" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-flow" "^7.8.3" -"@babel/plugin-transform-for-of@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556" - integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ== +"@babel/plugin-transform-for-of@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz#0f260e27d3e29cd1bb3128da5e76c761aa6c108e" + integrity sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-function-name@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad" - integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA== +"@babel/plugin-transform-function-name@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.8.3.tgz#279373cb27322aaad67c2683e776dfc47196ed8b" + integrity sha512-rO/OnDS78Eifbjn5Py9v8y0aR+aSYhDhqAwVfsTl0ERuMZyr05L1aFSCJnbv2mmsLkit/4ReeQ9N2BgLnOcPCQ== dependencies: - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz#690353e81f9267dad4fd8cfd77eafa86aba53ea1" - integrity sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg== +"@babel/plugin-transform-literals@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.8.3.tgz#aef239823d91994ec7b68e55193525d76dbd5dc1" + integrity sha512-3Tqf8JJ/qB7TeldGl+TT55+uQei9JfYaregDcEAyBZ7akutriFrt6C/wLYIer6OYhleVQvH/ntEhjE/xMmy10A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-member-expression-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d" - integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA== +"@babel/plugin-transform-member-expression-literals@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.8.3.tgz#963fed4b620ac7cbf6029c755424029fa3a40410" + integrity sha512-3Wk2EXhnw+rP+IDkK6BdtPKsUE5IeZ6QOGrPYvw52NwBStw9V1ZVzxgK6fSKSxqUvH9eQPR3tm3cOq79HlsKYA== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-modules-amd@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91" - integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg== +"@babel/plugin-transform-modules-amd@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz#19755ee721912cf5bb04c07d50280af3484efef4" + integrity sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q== dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-commonjs@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz#39dfe957de4420445f1fcf88b68a2e4aa4515486" - integrity sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g== +"@babel/plugin-transform-modules-commonjs@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz#e3e72f4cbc9b4a260e30be0ea59bdf5a39748940" + integrity sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g== dependencies: - "@babel/helper-module-transforms" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-simple-access" "^7.1.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-simple-access" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-systemjs@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249" - integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg== +"@babel/plugin-transform-modules-systemjs@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz#e9fd46a296fc91e009b64e07ddaa86d6f0edeb90" + integrity sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ== dependencies: - "@babel/helper-hoist-variables" "^7.4.4" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-hoist-variables" "^7.8.3" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" babel-plugin-dynamic-import-node "^2.3.0" -"@babel/plugin-transform-modules-umd@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz#7678ce75169f0877b8eb2235538c074268dd01ae" - integrity sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw== +"@babel/plugin-transform-modules-umd@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz#e909acae276fec280f9b821a5f38e1f08b480697" + integrity sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ== dependencies: - "@babel/helper-module-transforms" "^7.1.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-module-transforms" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-named-capturing-groups-regex@^7.6.0", "@babel/plugin-transform-named-capturing-groups-regex@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.6.3.tgz#aaa6e409dd4fb2e50b6e2a91f7e3a3149dbce0cf" - integrity sha512-jTkk7/uE6H2s5w6VlMHeWuH+Pcy2lmdwFoeWCVnvIrDUnB5gQqTVI8WfmEAhF2CDEarGrknZcmSFg1+bkfCoSw== +"@babel/plugin-transform-named-capturing-groups-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.8.3.tgz#a2a72bffa202ac0e2d0506afd0939c5ecbc48c6c" + integrity sha512-f+tF/8UVPU86TrCb06JoPWIdDpTNSGGcAtaD9mLP0aYGA0OS0j7j7DHJR0GTFrUZPUU6loZhbsVZgTh0N+Qdnw== dependencies: - regexpu-core "^4.6.0" + "@babel/helper-create-regexp-features-plugin" "^7.8.3" -"@babel/plugin-transform-new-target@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5" - integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA== +"@babel/plugin-transform-new-target@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.8.3.tgz#60cc2ae66d85c95ab540eb34babb6434d4c70c43" + integrity sha512-QuSGysibQpyxexRyui2vca+Cmbljo8bcRckgzYV4kRIsHpVeyeC3JDO63pY+xFZ6bWOBn7pfKZTqV4o/ix9sFw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-object-super@^7.5.5": - version "7.5.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz#c70021df834073c65eb613b8679cc4a381d1a9f9" - integrity sha512-un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ== +"@babel/plugin-transform-object-super@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.8.3.tgz#ebb6a1e7a86ffa96858bd6ac0102d65944261725" + integrity sha512-57FXk+gItG/GejofIyLIgBKTas4+pEU47IXKDBWFTxdPd7F80H8zybyAY7UoblVfBhBGs2EKM+bJUu2+iUYPDQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-replace-supers" "^7.5.5" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-replace-supers" "^7.8.3" -"@babel/plugin-transform-parameters@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16" - integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw== +"@babel/plugin-transform-parameters@^7.8.7": + version "7.8.8" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.8.tgz#0381de466c85d5404565243660c4496459525daf" + integrity sha512-hC4Ld/Ulpf1psQciWWwdnUspQoQco2bMzSrwU6TmzRlvoYQe4rQFy9vnCZDTlVeCQj0JPfL+1RX0V8hCJvkgBA== dependencies: - "@babel/helper-call-delegate" "^7.4.4" - "@babel/helper-get-function-arity" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-call-delegate" "^7.8.7" + "@babel/helper-get-function-arity" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-property-literals@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905" - integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ== +"@babel/plugin-transform-property-literals@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.8.3.tgz#33194300d8539c1ed28c62ad5087ba3807b98263" + integrity sha512-uGiiXAZMqEoQhRWMK17VospMZh5sXWg+dlh2soffpkAl96KAm+WZuJfa6lcELotSRmooLqg0MWdH6UUq85nmmg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" "@babel/plugin-transform-react-constant-elements@^7.0.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.6.3.tgz#9fc9ea060b983c7c035acbe481cbe1fb1245bfff" - integrity sha512-1/YogSSU7Tby9rq2VCmhuRg+6pxsHy2rI7w/oo8RKoBt6uBUFG+mk6x13kK+FY1/ggN92HAfg7ADd1v1+NCOKg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-react-display-name@7.2.0", "@babel/plugin-transform-react-display-name@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz#ebfaed87834ce8dc4279609a4f0c324c156e3eb0" - integrity sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-react-jsx-self@^7.0.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz#461e21ad9478f1031dd5e276108d027f1b5240ba" - integrity sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@babel/plugin-transform-react-jsx-source@^7.0.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.5.0.tgz#583b10c49cf057e237085bcbd8cc960bd83bd96b" - integrity sha512-58Q+Jsy4IDCZx7kqEZuSDdam/1oW8OdDX8f+Loo6xyxdfg1yF0GE2XNJQSTZCaMol93+FBzpWiPEwtbMloAcPg== + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz#a75abc936a3819edec42d3386d9f1c93f28d9d9e" + integrity sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" - -"@babel/plugin-transform-react-jsx@^7.0.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz#f2cab99026631c767e2745a5368b331cfe8f5290" - integrity sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg== - dependencies: - "@babel/helper-builder-react-jsx" "^7.3.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-jsx" "^7.2.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-regenerator@^7.4.5": - version "7.4.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f" - integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA== +"@babel/plugin-transform-react-display-name@7.8.3", "@babel/plugin-transform-react-display-name@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.8.3.tgz#70ded987c91609f78353dd76d2fb2a0bb991e8e5" + integrity sha512-3Jy/PCw8Fe6uBKtEgz3M82ljt+lTg+xJaM4og+eyu83qLT87ZUSckn0wy7r31jflURWLO83TW6Ylf7lyXj3m5A== dependencies: - regenerator-transform "^0.14.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-reserved-words@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634" - integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw== +"@babel/plugin-transform-react-jsx-development@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz#3c2a130727caf00c2a293f0aed24520825dbf754" + integrity sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - -"@babel/plugin-transform-runtime@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.6.0.tgz#85a3cce402b28586138e368fce20ab3019b9713e" - integrity sha512-Da8tMf7uClzwUm/pnJ1S93m/aRXmoYNDD7TkHua8xBDdaAs54uZpTWvEt6NGwmoVMb9mZbntfTqmG2oSzN/7Vg== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - resolve "^1.8.1" - semver "^5.5.1" + "@babel/helper-builder-react-jsx-experimental" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-shorthand-properties@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz#6333aee2f8d6ee7e28615457298934a3b46198f0" - integrity sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg== +"@babel/plugin-transform-react-jsx-self@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz#f4f26a325820205239bb915bad8e06fcadabb49b" + integrity sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-spread@^7.2.0", "@babel/plugin-transform-spread@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.6.2.tgz#fc77cf798b24b10c46e1b51b1b88c2bf661bb8dd" - integrity sha512-DpSvPFryKdK1x+EDJYCy28nmAaIMdxmhot62jAXF/o99iA33Zj2Lmcp3vDmz+MUh0LNYVPvfj5iC3feb3/+PFg== +"@babel/plugin-transform-react-jsx-source@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz#89ef93025240dd5d17d3122294a093e5e0183de0" + integrity sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-sticky-regex@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz#a1e454b5995560a9c1e0d537dfc15061fd2687e1" - integrity sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw== +"@babel/plugin-transform-react-jsx@^7.9.1": + version "7.9.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.1.tgz#d03af29396a6dc51bfa24eefd8005a9fd381152a" + integrity sha512-+xIZ6fPoix7h57CNO/ZeYADchg1tFyX9NDsnmNFFua8e1JNPln156mzS+8AQe1On2X2GLlANHJWHIXbMCqWDkQ== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.0.0" + "@babel/helper-builder-react-jsx" "^7.9.0" + "@babel/helper-builder-react-jsx-experimental" "^7.9.0" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-jsx" "^7.8.3" -"@babel/plugin-transform-template-literals@^7.4.4": - version "7.4.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0" - integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g== +"@babel/plugin-transform-regenerator@^7.8.7": + version "7.8.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.8.7.tgz#5e46a0dca2bee1ad8285eb0527e6abc9c37672f8" + integrity sha512-TIg+gAl4Z0a3WmD3mbYSk+J9ZUH6n/Yc57rtKRnlA/7rcCvpekHXe0CMZHP1gYp7/KLe9GHTuIba0vXmls6drA== dependencies: - "@babel/helper-annotate-as-pure" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" + regenerator-transform "^0.14.2" -"@babel/plugin-transform-typeof-symbol@^7.2.0": - version "7.2.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz#117d2bcec2fbf64b4b59d1f9819894682d29f2b2" - integrity sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw== +"@babel/plugin-transform-reserved-words@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.8.3.tgz#9a0635ac4e665d29b162837dd3cc50745dfdf1f5" + integrity sha512-mwMxcycN3omKFDjDQUl+8zyMsBfjRFr0Zn/64I41pmjv4NJuqcYlEtezwYtw9TFd9WR1vN5kiM+O0gMZzO6L0A== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-transform-typescript@^7.6.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.6.3.tgz#dddb50cf3b8b2ef70b22e5326e9a91f05a1db13b" - integrity sha512-aiWINBrPMSC3xTXRNM/dfmyYuPNKY/aexYqBgh0HBI5Y+WO5oRAqW/oROYeYHrF4Zw12r9rK4fMk/ZlAmqx/FQ== +"@babel/plugin-transform-runtime@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz#45468c0ae74cc13204e1d3b1f4ce6ee83258af0b" + integrity sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.6.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-syntax-typescript" "^7.2.0" - -"@babel/plugin-transform-unicode-regex@^7.4.4", "@babel/plugin-transform-unicode-regex@^7.6.2": - version "7.6.2" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.6.2.tgz#b692aad888a7e8d8b1b214be6b9dc03d5031f698" - integrity sha512-orZI6cWlR3nk2YmYdb0gImrgCUwb5cBUwjf6Ks6dvNVvXERkwtJWOQaEOjPiu0Gu1Tq6Yq/hruCZZOOi9F34Dw== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/helper-regex" "^7.4.4" - regexpu-core "^4.6.0" - -"@babel/preset-env@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.0.tgz#aae4141c506100bb2bfaa4ac2a5c12b395619e50" - integrity sha512-1efzxFv/TcPsNXlRhMzRnkBFMeIqBBgzwmZwlFDw5Ubj0AGLeufxugirwZmkkX/ayi3owsSqoQ4fw8LkfK9SYg== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-dynamic-import" "^7.5.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.5.5" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.5.0" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.6.0" - "@babel/plugin-transform-classes" "^7.5.5" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.6.0" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/plugin-transform-duplicate-keys" "^7.5.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.4" - "@babel/plugin-transform-function-name" "^7.4.4" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.5.0" - "@babel/plugin-transform-modules-commonjs" "^7.6.0" - "@babel/plugin-transform-modules-systemjs" "^7.5.0" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.0" - "@babel/plugin-transform-new-target" "^7.4.4" - "@babel/plugin-transform-object-super" "^7.5.5" - "@babel/plugin-transform-parameters" "^7.4.4" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.5" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.2.0" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.4.4" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.4.4" - "@babel/types" "^7.6.0" - browserslist "^4.6.0" - core-js-compat "^3.1.1" - invariant "^2.2.2" - js-levenshtein "^1.1.3" - semver "^5.5.0" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + resolve "^1.8.1" + semver "^5.5.1" -"@babel/preset-env@^7.4.5": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.6.3.tgz#9e1bf05a2e2d687036d24c40e4639dc46cef2271" - integrity sha512-CWQkn7EVnwzlOdR5NOm2+pfgSNEZmvGjOhlCHBDq0J8/EStr+G+FvPEiz9B56dR6MoiUFjXhfE4hjLoAKKJtIQ== - dependencies: - "@babel/helper-module-imports" "^7.0.0" - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-async-generator-functions" "^7.2.0" - "@babel/plugin-proposal-dynamic-import" "^7.5.0" - "@babel/plugin-proposal-json-strings" "^7.2.0" - "@babel/plugin-proposal-object-rest-spread" "^7.6.2" - "@babel/plugin-proposal-optional-catch-binding" "^7.2.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.6.2" - "@babel/plugin-syntax-async-generators" "^7.2.0" - "@babel/plugin-syntax-dynamic-import" "^7.2.0" - "@babel/plugin-syntax-json-strings" "^7.2.0" - "@babel/plugin-syntax-object-rest-spread" "^7.2.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.2.0" - "@babel/plugin-transform-arrow-functions" "^7.2.0" - "@babel/plugin-transform-async-to-generator" "^7.5.0" - "@babel/plugin-transform-block-scoped-functions" "^7.2.0" - "@babel/plugin-transform-block-scoping" "^7.6.3" - "@babel/plugin-transform-classes" "^7.5.5" - "@babel/plugin-transform-computed-properties" "^7.2.0" - "@babel/plugin-transform-destructuring" "^7.6.0" - "@babel/plugin-transform-dotall-regex" "^7.6.2" - "@babel/plugin-transform-duplicate-keys" "^7.5.0" - "@babel/plugin-transform-exponentiation-operator" "^7.2.0" - "@babel/plugin-transform-for-of" "^7.4.4" - "@babel/plugin-transform-function-name" "^7.4.4" - "@babel/plugin-transform-literals" "^7.2.0" - "@babel/plugin-transform-member-expression-literals" "^7.2.0" - "@babel/plugin-transform-modules-amd" "^7.5.0" - "@babel/plugin-transform-modules-commonjs" "^7.6.0" - "@babel/plugin-transform-modules-systemjs" "^7.5.0" - "@babel/plugin-transform-modules-umd" "^7.2.0" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.6.3" - "@babel/plugin-transform-new-target" "^7.4.4" - "@babel/plugin-transform-object-super" "^7.5.5" - "@babel/plugin-transform-parameters" "^7.4.4" - "@babel/plugin-transform-property-literals" "^7.2.0" - "@babel/plugin-transform-regenerator" "^7.4.5" - "@babel/plugin-transform-reserved-words" "^7.2.0" - "@babel/plugin-transform-shorthand-properties" "^7.2.0" - "@babel/plugin-transform-spread" "^7.6.2" - "@babel/plugin-transform-sticky-regex" "^7.2.0" - "@babel/plugin-transform-template-literals" "^7.4.4" - "@babel/plugin-transform-typeof-symbol" "^7.2.0" - "@babel/plugin-transform-unicode-regex" "^7.6.2" - "@babel/types" "^7.6.3" - browserslist "^4.6.0" - core-js-compat "^3.1.1" +"@babel/plugin-transform-shorthand-properties@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.8.3.tgz#28545216e023a832d4d3a1185ed492bcfeac08c8" + integrity sha512-I9DI6Odg0JJwxCHzbzW08ggMdCezoWcuQRz3ptdudgwaHxTjxw5HgdFJmZIkIMlRymL6YiZcped4TTCB0JcC8w== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-transform-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.8.3.tgz#9c8ffe8170fdfb88b114ecb920b82fb6e95fe5e8" + integrity sha512-CkuTU9mbmAoFOI1tklFWYYbzX5qCIZVXPVy0jpXgGwkplCndQAa58s2jr66fTeQnA64bDox0HL4U56CFYoyC7g== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-transform-sticky-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.8.3.tgz#be7a1290f81dae767475452199e1f76d6175b100" + integrity sha512-9Spq0vGCD5Bb4Z/ZXXSK5wbbLFMG085qd2vhL1JYu1WcQ5bXqZBAYRzU1d+p79GcHs2szYv5pVQCX13QgldaWw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/helper-regex" "^7.8.3" + +"@babel/plugin-transform-template-literals@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.8.3.tgz#7bfa4732b455ea6a43130adc0ba767ec0e402a80" + integrity sha512-820QBtykIQOLFT8NZOcTRJ1UNuztIELe4p9DCgvj4NK+PwluSJ49we7s9FB1HIGNIYT7wFUJ0ar2QpCDj0escQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-transform-typeof-symbol@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.8.4.tgz#ede4062315ce0aaf8a657a920858f1a2f35fc412" + integrity sha512-2QKyfjGdvuNfHsb7qnBBlKclbD4CfshH2KvDabiijLMGXPHJXGxtDzwIF7bQP+T0ysw8fYTtxPafgfs/c1Lrqg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-transform-typescript@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.0.tgz#8b52649c81cb7dee117f760952ab46675a258836" + integrity sha512-GRffJyCu16H3tEhbt9Q4buVFFBqrgS8FzTuhqSxlXNgmqD8aw2xmwtRwrvWXXlw7gHs664uqacsJymHJ9SUE/Q== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-syntax-typescript" "^7.8.3" + +"@babel/plugin-transform-unicode-regex@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.8.3.tgz#0cef36e3ba73e5c57273effb182f46b91a1ecaad" + integrity sha512-+ufgJjYdmWfSQ+6NS9VGUR2ns8cjJjYbrbi11mZBTaWm+Fui/ncTLFF28Ei1okavY+xkojGr1eJxNsWYeA5aZw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/preset-env@7.9.0", "@babel/preset-env@^7.4.5": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.9.0.tgz#a5fc42480e950ae8f5d9f8f2bbc03f52722df3a8" + integrity sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ== + dependencies: + "@babel/compat-data" "^7.9.0" + "@babel/helper-compilation-targets" "^7.8.7" + "@babel/helper-module-imports" "^7.8.3" + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-proposal-async-generator-functions" "^7.8.3" + "@babel/plugin-proposal-dynamic-import" "^7.8.3" + "@babel/plugin-proposal-json-strings" "^7.8.3" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-proposal-numeric-separator" "^7.8.3" + "@babel/plugin-proposal-object-rest-spread" "^7.9.0" + "@babel/plugin-proposal-optional-catch-binding" "^7.8.3" + "@babel/plugin-proposal-optional-chaining" "^7.9.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.8.3" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.8.0" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + "@babel/plugin-transform-arrow-functions" "^7.8.3" + "@babel/plugin-transform-async-to-generator" "^7.8.3" + "@babel/plugin-transform-block-scoped-functions" "^7.8.3" + "@babel/plugin-transform-block-scoping" "^7.8.3" + "@babel/plugin-transform-classes" "^7.9.0" + "@babel/plugin-transform-computed-properties" "^7.8.3" + "@babel/plugin-transform-destructuring" "^7.8.3" + "@babel/plugin-transform-dotall-regex" "^7.8.3" + "@babel/plugin-transform-duplicate-keys" "^7.8.3" + "@babel/plugin-transform-exponentiation-operator" "^7.8.3" + "@babel/plugin-transform-for-of" "^7.9.0" + "@babel/plugin-transform-function-name" "^7.8.3" + "@babel/plugin-transform-literals" "^7.8.3" + "@babel/plugin-transform-member-expression-literals" "^7.8.3" + "@babel/plugin-transform-modules-amd" "^7.9.0" + "@babel/plugin-transform-modules-commonjs" "^7.9.0" + "@babel/plugin-transform-modules-systemjs" "^7.9.0" + "@babel/plugin-transform-modules-umd" "^7.9.0" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.8.3" + "@babel/plugin-transform-new-target" "^7.8.3" + "@babel/plugin-transform-object-super" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.8.7" + "@babel/plugin-transform-property-literals" "^7.8.3" + "@babel/plugin-transform-regenerator" "^7.8.7" + "@babel/plugin-transform-reserved-words" "^7.8.3" + "@babel/plugin-transform-shorthand-properties" "^7.8.3" + "@babel/plugin-transform-spread" "^7.8.3" + "@babel/plugin-transform-sticky-regex" "^7.8.3" + "@babel/plugin-transform-template-literals" "^7.8.3" + "@babel/plugin-transform-typeof-symbol" "^7.8.4" + "@babel/plugin-transform-unicode-regex" "^7.8.3" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.9.0" + browserslist "^4.9.1" + core-js-compat "^3.6.2" invariant "^2.2.2" - js-levenshtein "^1.1.3" + levenary "^1.1.1" semver "^5.5.0" -"@babel/preset-react@7.0.0": - version "7.0.0" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.0.0.tgz#e86b4b3d99433c7b3e9e91747e2653958bc6b3c0" - integrity sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-react-display-name" "^7.0.0" - "@babel/plugin-transform-react-jsx" "^7.0.0" - "@babel/plugin-transform-react-jsx-self" "^7.0.0" - "@babel/plugin-transform-react-jsx-source" "^7.0.0" - -"@babel/preset-react@^7.0.0": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.6.3.tgz#d5242c828322520205ae4eda5d4f4f618964e2f6" - integrity sha512-07yQhmkZmRAfwREYIQgW0HEwMY9GBJVuPY4Q12UC72AbfaawuupVWa8zQs2tlL+yun45Nv/1KreII/0PLfEsgA== - dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-react-display-name" "^7.0.0" - "@babel/plugin-transform-react-jsx" "^7.0.0" - "@babel/plugin-transform-react-jsx-self" "^7.0.0" - "@babel/plugin-transform-react-jsx-source" "^7.0.0" - -"@babel/preset-typescript@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.6.0.tgz#25768cb8830280baf47c45ab1a519a9977498c98" - integrity sha512-4xKw3tTcCm0qApyT6PqM9qniseCE79xGHiUnNdKGdxNsGUc2X7WwZybqIpnTmoukg3nhPceI5KPNzNqLNeIJww== +"@babel/preset-modules@^0.1.3": + version "0.1.3" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" + integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== dependencies: "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-transform-typescript" "^7.6.0" - -"@babel/runtime@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.0.tgz#4fc1d642a9fd0299754e8b5de62c631cf5568205" - integrity sha512-89eSBLJsxNxOERC0Op4vd+0Bqm6wRMqMbFtV3i0/fbaWw/mJ8Q3eBvgX0G4SyrOOLCtbu98HspF8o09MRT+KzQ== - dependencies: - regenerator-runtime "^0.13.2" - -"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.2", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.4": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.6.3.tgz#935122c74c73d2240cafd32ddb5fc2a6cd35cf1f" - integrity sha512-kq6anf9JGjW8Nt5rYfEuGRaEAaH1mkv3Bbu6rYvLOpPh/RusSJXuKPEAoZ7L7gybZkchE8+NV5g9vKF4AGAtsA== - dependencies: - regenerator-runtime "^0.13.2" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" -"@babel/template@^7.1.0", "@babel/template@^7.4.0", "@babel/template@^7.4.4", "@babel/template@^7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6" - integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ== - dependencies: - "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.6.0" - "@babel/types" "^7.6.0" - -"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.4.4", "@babel/traverse@^7.5.5", "@babel/traverse@^7.6.0", "@babel/traverse@^7.6.2", "@babel/traverse@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.3.tgz#66d7dba146b086703c0fb10dd588b7364cec47f9" - integrity sha512-unn7P4LGsijIxaAJo/wpoU11zN+2IaClkQAxcJWBNCMS6cmVh802IyLHNkAjQ0iYnRS3nnxk5O3fuXW28IMxTw== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.6.3" - "@babel/helper-function-name" "^7.1.0" - "@babel/helper-split-export-declaration" "^7.4.4" - "@babel/parser" "^7.6.3" - "@babel/types" "^7.6.3" +"@babel/preset-react@7.9.1", "@babel/preset-react@^7.0.0": + version "7.9.1" + resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.9.1.tgz#b346403c36d58c3bb544148272a0cefd9c28677a" + integrity sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-transform-react-display-name" "^7.8.3" + "@babel/plugin-transform-react-jsx" "^7.9.1" + "@babel/plugin-transform-react-jsx-development" "^7.9.0" + "@babel/plugin-transform-react-jsx-self" "^7.9.0" + "@babel/plugin-transform-react-jsx-source" "^7.9.0" + +"@babel/preset-typescript@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz#87705a72b1f0d59df21c179f7c3d2ef4b16ce192" + integrity sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + "@babel/plugin-transform-typescript" "^7.9.0" + +"@babel/runtime-corejs3@^7.8.3": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz#26fe4aa77e9f1ecef9b776559bbb8e84d34284b7" + integrity sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA== + dependencies: + core-js-pure "^3.0.0" + regenerator-runtime "^0.13.4" + +"@babel/runtime@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.0.tgz#337eda67401f5b066a6f205a3113d4ac18ba495b" + integrity sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.2.0", "@babel/runtime@^7.3.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.4", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": + version "7.9.2" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz#d90df0583a3a252f09aaa619665367bae518db06" + integrity sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q== + dependencies: + regenerator-runtime "^0.13.4" + +"@babel/template@^7.4.0", "@babel/template@^7.8.3", "@babel/template@^7.8.6": + version "7.8.6" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz#86b22af15f828dfb086474f964dcc3e39c43ce2b" + integrity sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/parser" "^7.8.6" + "@babel/types" "^7.8.6" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.3", "@babel/traverse@^7.7.0", "@babel/traverse@^7.8.3", "@babel/traverse@^7.8.6", "@babel/traverse@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.0.tgz#d3882c2830e513f4fe4cec9fe76ea1cc78747892" + integrity sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w== + dependencies: + "@babel/code-frame" "^7.8.3" + "@babel/generator" "^7.9.0" + "@babel/helper-function-name" "^7.8.3" + "@babel/helper-split-export-declaration" "^7.8.3" + "@babel/parser" "^7.9.0" + "@babel/types" "^7.9.0" debug "^4.1.0" globals "^11.1.0" lodash "^4.17.13" -"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5", "@babel/types@^7.6.0", "@babel/types@^7.6.3": - version "7.6.3" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.3.tgz#3f07d96f854f98e2fbd45c64b0cb942d11e8ba09" - integrity sha512-CqbcpTxMcpuQTMhjI37ZHVgjBkysg5icREQIEZ0eG1yCNwg3oy+5AaLiOKmjsCj6nqOsa6Hf0ObjRVwokb7srA== +"@babel/types@^7.0.0", "@babel/types@^7.3.0", "@babel/types@^7.4.0", "@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.8.7", "@babel/types@^7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.9.0.tgz#00b064c3df83ad32b2dbf5ff07312b15c7f1efb5" + integrity sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng== dependencies: - esutils "^2.0.2" + "@babel/helper-validator-identifier" "^7.9.0" lodash "^4.17.13" to-fast-properties "^2.0.0" "@cnakazawa/watch@^1.0.3": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef" - integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA== + version "1.0.4" + resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.4.tgz#f864ae85004d0fcab6f50be9141c4da368d1656a" + integrity sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ== dependencies: exec-sh "^0.3.2" minimist "^1.2.0" @@ -910,41 +950,41 @@ resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== -"@csstools/normalize.css@^9.0.1": - version "9.0.1" - resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-9.0.1.tgz#c27b391d8457d1e893f1eddeaf5e5412d12ffbb5" - integrity sha512-6It2EVfGskxZCQhuykrfnALg7oVeiI6KclWSmGDqB0AiInVrTGB9Jp9i4/Ad21u9Jde/voVQz6eFX/eSg/UsPA== +"@csstools/normalize.css@^10.1.0": + version "10.1.0" + resolved "https://registry.yarnpkg.com/@csstools/normalize.css/-/normalize.css-10.1.0.tgz#f0950bba18819512d42f7197e56c518aa491cf18" + integrity sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg== -"@fortawesome/fontawesome-common-types@^0.2.25": - version "0.2.25" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.25.tgz#6df015905081f2762e5cfddeb7a20d2e9b16c786" - integrity sha512-3RuZPDuuPELd7RXtUqTCfed14fcny9UiPOkdr2i+cYxBoTOfQgxcDoq77fHiiHcgWuo1LoBUpvGxFF1H/y7s3Q== +"@fortawesome/fontawesome-common-types@^0.2.27": + version "0.2.27" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-0.2.27.tgz#19706345859fc46adf3684ed01d11b40903b87e9" + integrity sha512-97GaByGaXDGMkzcJX7VmR/jRJd8h1mfhtA7RsxDBN61GnWE/PPCZhOdwG/8OZYktiRUF0CvFOr+VgRkJrt6TWg== "@fortawesome/fontawesome-svg-core@^1.2.14": - version "1.2.25" - resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.25.tgz#24b03391d14f0c6171e8cad7057c687b74049790" - integrity sha512-MotKnn53JKqbkLQiwcZSBJVYtTgIKFbh7B8+kd05TSnfKYPFmjKKI59o2fpz5t0Hzl35vVGU6+N4twoOpZUrqA== + version "1.2.27" + resolved "https://registry.yarnpkg.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-1.2.27.tgz#e4db8e3be81a40988213507c3e3d0c158a6641a3" + integrity sha512-sOD3DKynocnHYpuw2sLPnTunDj7rLk91LYhi2axUYwuGe9cPCw7Bsu9EWtVdNJP+IYgTCZIbyARKXuy5K/nv+Q== dependencies: - "@fortawesome/fontawesome-common-types" "^0.2.25" + "@fortawesome/fontawesome-common-types" "^0.2.27" "@fortawesome/free-solid-svg-icons@^5.7.1": - version "5.11.2" - resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.11.2.tgz#2f2f1459743a27902b76655a0d0bc5ec4d945631" - integrity sha512-zBue4i0PAZJUXOmLBBvM7L0O7wmsDC8dFv9IhpW5QL4kT9xhhVUsYg/LX1+5KaukWq4/cbDcKT+RT1aRe543sg== + version "5.12.1" + resolved "https://registry.yarnpkg.com/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-5.12.1.tgz#76b6f958a3471821ff146f8f955e6d7cfe87147c" + integrity sha512-k3MwRFFUhyL4cuCJSaHDA0YNYMELDXX0h8JKtWYxO5XD3Dn+maXOMrVAAiNGooUyM2v/wz/TOaM0jxYVKeXX7g== dependencies: - "@fortawesome/fontawesome-common-types" "^0.2.25" + "@fortawesome/fontawesome-common-types" "^0.2.27" "@fortawesome/react-fontawesome@^0.1.4": - version "0.1.6" - resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.6.tgz#b798b96401e25d07c30bbe1b9ec0e6d8a33760a5" - integrity sha512-DNqt2t4JQ0YQKi832XzByk1wlQzgugwwCCNQHsFyz1z/zA9dtypSvsvVwMIaWXMljalYzKAA2zHX13C1DIxKAw== + version "0.1.9" + resolved "https://registry.yarnpkg.com/@fortawesome/react-fontawesome/-/react-fontawesome-0.1.9.tgz#c865b9286c707407effcec99958043711367cd02" + integrity sha512-49V3WNysLZU5fZ3sqSuys4nGRytsrxJktbv3vuaXkEoxv22C6T7TEG0TW6+nqVjMnkfCQd5xOnmJoZHMF78tOw== dependencies: - prop-types "^15.5.10" + prop-types "^15.7.2" "@hapi/address@2.x.x": - version "2.1.2" - resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.2.tgz#1c794cd6dbf2354d1eb1ef10e0303f573e1c7222" - integrity sha512-O4QDrx+JoGKZc6aN64L04vqa7e41tIiLU+OvKdcYaEMP97UttL0f9GIi9/0A4WAMx0uBd6SidDIhktZhgOcN8Q== + version "2.1.4" + resolved "https://registry.yarnpkg.com/@hapi/address/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5" + integrity sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ== "@hapi/bourne@1.x.x": version "1.3.2" @@ -952,9 +992,9 @@ integrity sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA== "@hapi/hoek@8.x.x", "@hapi/hoek@^8.3.0": - version "8.3.1" - resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.3.1.tgz#227d29efdb158e4a64590224add90c820f94d20e" - integrity sha512-75ocgnI7HG/I01iGA3/rs0y6PXydUA/kxhFZM0HoT8NLSTnt/J8Gq03iKl4a4B/2A3iMG0ctXtxr5Hg9SGr1gw== + version "8.5.1" + resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-8.5.1.tgz#fde96064ca446dec8c55a8c2f130957b070c6e06" + integrity sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow== "@hapi/joi@^15.0.0": version "15.1.1" @@ -1016,7 +1056,7 @@ slash "^2.0.0" strip-ansi "^5.0.0" -"@jest/environment@^24.9.0": +"@jest/environment@^24.3.0", "@jest/environment@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-24.9.0.tgz#21e3afa2d65c0586cbd6cbefe208bafade44ab18" integrity sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ== @@ -1026,7 +1066,7 @@ "@jest/types" "^24.9.0" jest-mock "^24.9.0" -"@jest/fake-timers@^24.9.0": +"@jest/fake-timers@^24.3.0", "@jest/fake-timers@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-24.9.0.tgz#ba3e6bf0eecd09a636049896434d306636540c93" integrity sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A== @@ -1112,7 +1152,7 @@ source-map "^0.6.1" write-file-atomic "2.4.1" -"@jest/types@^24.9.0": +"@jest/types@^24.3.0", "@jest/types@^24.9.0": version "24.9.0" resolved "https://registry.yarnpkg.com/@jest/types/-/types-24.9.0.tgz#63cb26cb7500d069e5a389441a7c6ab5e909fc59" integrity sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw== @@ -1134,26 +1174,20 @@ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== -"@reach/auto-id@^0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@reach/auto-id/-/auto-id-0.2.0.tgz#97f9e48fe736aa5c6f4f32cf73c1f19d005f8550" - integrity sha512-lVK/svL2HuQdp7jgvlrLkFsUx50Az9chAhxpiPwBqcS83I2pVWvXp98FOcSCCJCV++l115QmzHhFd+ycw1zLBg== - "@reach/router@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.2.1.tgz#34ae3541a5ac44fa7796e5506a5d7274a162be4e" - integrity sha512-kTaX08X4g27tzIFQGRukaHmNbtMYDS3LEWIS8+l6OayGIw6Oyo1HIF/JzeuR2FoF9z6oV+x/wJSVSq4v8tcUGQ== + version "1.3.3" + resolved "https://registry.yarnpkg.com/@reach/router/-/router-1.3.3.tgz#58162860dce6c9449d49be86b0561b5ef46d80db" + integrity sha512-gOIAiFhWdiVGSVjukKeNKkCRBLmnORoTPyBihI/jLunICPgxdP30DroAvPQuf1eVfQbfGJQDJkwhJXsNPMnVWw== dependencies: - create-react-context "^0.2.1" + create-react-context "0.3.0" invariant "^2.2.3" prop-types "^15.6.1" react-lifecycles-compat "^3.0.4" - warning "^3.0.0" -"@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.4.0": - version "1.6.0" - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.6.0.tgz#ec7670432ae9c8eb710400d112c201a362d83393" - integrity sha512-w4/WHG7C4WWFyE5geCieFJF6MZkbW4VAriol5KlmQXpAQdxvV0p26sqNZOW6Qyw6Y0l9K4g+cHvvczR2sEEpqg== +"@sinonjs/commons@^1", "@sinonjs/commons@^1.3.0", "@sinonjs/commons@^1.4.0", "@sinonjs/commons@^1.7.0": + version "1.7.1" + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.7.1.tgz#da5fd19a5f71177a53778073978873964f49acf1" + integrity sha512-Debi3Baff1Qu1Unc3mjJ96MgpbwTn43S1+9yJ0llWygPwDNu2aaWBD6yc9y/Z8XDRNhx7U+u2UDg2OGQXkclUQ== dependencies: type-detect "4.0.8" @@ -1233,7 +1267,7 @@ "@svgr/babel-plugin-transform-react-native-svg" "^4.2.0" "@svgr/babel-plugin-transform-svg-component" "^4.2.0" -"@svgr/core@^4.3.2": +"@svgr/core@^4.3.3": version "4.3.3" resolved "https://registry.yarnpkg.com/@svgr/core/-/core-4.3.3.tgz#b37b89d5b757dc66e8c74156d00c368338d24293" integrity sha512-qNuGF1QON1626UCaZamWt5yedpgOytvLj5BQZe2j1k1B8DUG4OyugZyfEwBeXozCUwhLEpsrgPrE+eCu4fY17w== @@ -1249,7 +1283,7 @@ dependencies: "@babel/types" "^7.4.4" -"@svgr/plugin-jsx@^4.3.2", "@svgr/plugin-jsx@^4.3.3": +"@svgr/plugin-jsx@^4.3.3": version "4.3.3" resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-4.3.3.tgz#e2ba913dbdfbe85252a34db101abc7ebd50992fa" integrity sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w== @@ -1268,32 +1302,32 @@ merge-deep "^3.0.2" svgo "^1.2.2" -"@svgr/webpack@4.3.2": - version "4.3.2" - resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.3.2.tgz#319d4471c8f3d5c3af35059274834d9b5b8fb956" - integrity sha512-F3VE5OvyOWBEd2bF7BdtFRyI6E9it3mN7teDw0JQTlVtc4HZEYiiLSl+Uf9Uub6IYHVGc+qIrxxDyeedkQru2w== +"@svgr/webpack@4.3.3": + version "4.3.3" + resolved "https://registry.yarnpkg.com/@svgr/webpack/-/webpack-4.3.3.tgz#13cc2423bf3dff2d494f16b17eb7eacb86895017" + integrity sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg== dependencies: "@babel/core" "^7.4.5" "@babel/plugin-transform-react-constant-elements" "^7.0.0" "@babel/preset-env" "^7.4.5" "@babel/preset-react" "^7.0.0" - "@svgr/core" "^4.3.2" - "@svgr/plugin-jsx" "^4.3.2" + "@svgr/core" "^4.3.3" + "@svgr/plugin-jsx" "^4.3.3" "@svgr/plugin-svgo" "^4.3.1" loader-utils "^1.2.3" "@testing-library/react-hooks@^3.1.1": - version "3.1.1" - resolved "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.1.1.tgz#5c93e463c0252bea6ac237ec8d9c982c27d67208" - integrity sha512-HANnmA68/i6RwZn9j7pcbAg438PoDToftRQ1CH0j893WuQGtENFm57GKTagtmXXDN5gKh3rVbN1GH6HDvHbk6A== + version "3.2.1" + resolved "https://registry.yarnpkg.com/@testing-library/react-hooks/-/react-hooks-3.2.1.tgz#19b6caa048ef15faa69d439c469033873ea01294" + integrity sha512-1OB6Ksvlk6BCJA1xpj8/WWz0XVd1qRcgqdaFAq+xeC6l61Ucj0P6QpA5u+Db/x9gU4DCX8ziR5b66Mlfg0M2RA== dependencies: "@babel/runtime" "^7.5.4" - "@types/testing-library__react-hooks" "^2.0.0" + "@types/testing-library__react-hooks" "^3.0.0" "@types/babel__core@^7.1.0": - version "7.1.3" - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30" - integrity sha512-8fBo0UR2CcwWxeX7WIIgJ7lXjasFxoYgRnFHUj+hRvKkpiBJbxhdAPTCY6/ZKM0uxANFVzt4yObSLuTiTnazDA== + version "7.1.6" + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.6.tgz#16ff42a5ae203c9af1c6e190ed1f30f83207b610" + integrity sha512-tTnhWszAqvXnhW7m5jQU9PomXSiKXk2sFxpahXvI20SZKu9ylPi8WtIxueZ6ehDWikPT0jeFujMj3X4ZHuf3Tg== dependencies: "@babel/parser" "^7.1.0" "@babel/types" "^7.0.0" @@ -1302,9 +1336,9 @@ "@types/babel__traverse" "*" "@types/babel__generator@*": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.0.tgz#f1ec1c104d1bb463556ecb724018ab788d0c172a" - integrity sha512-c1mZUu4up5cp9KROs/QAw0gTeHrw/x7m52LcnvMxxOZ03DmLwPV0MlGmlgzV3cnSdjhJOZsj7E7FHeioai+egw== + version "7.6.1" + resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.1.tgz#4901767b397e8711aeb99df8d396d7ba7b7f0e04" + integrity sha512-bBKm+2VPJcMRVwNhxKu8W+5/zT7pwNEqeokFOmbvVSqGzFneNxYcEBro9Ac7/N9tlsaPYnZLK8J1LWKkMsLAew== dependencies: "@babel/types" "^7.0.0" @@ -1317,19 +1351,24 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.0.7" - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.7.tgz#2496e9ff56196cc1429c72034e07eab6121b6f3f" - integrity sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw== + version "7.0.9" + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.0.9.tgz#be82fab304b141c3eee81a4ce3b034d0eba1590a" + integrity sha512-jEFQ8L1tuvPjOI8lnpaf73oCJe+aoxL6ygqSy6c8LcW98zaC+4mzWuQIRCEvKeCOu+lbqdXcg4Uqmm1S8AP1tw== dependencies: "@babel/types" "^7.3.0" "@types/cheerio@*": - version "0.22.13" - resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.13.tgz#5eecda091a24514185dcba99eda77e62bf6523e6" - integrity sha512-OZd7dCUOUkiTorf97vJKwZnSja/DmHfuBAroe1kREZZTCf/tlFecwHhsOos3uVHxeKGZDwzolIrCUApClkdLuA== + version "0.22.17" + resolved "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.17.tgz#e54f71c3135f71ebc16c8dc62edad533872c9e72" + integrity sha512-izlm+hbqWN9csuB9GSMfCnAyd3/57XZi3rfz1B0C4QBGVMp+9xQ7+9KYnep+ySfUrCWql4lGzkLf0XmprXcz9g== dependencies: "@types/node" "*" +"@types/color-name@^1.1.1": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" + integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== + "@types/domhandler@*": version "2.4.1" resolved "https://registry.yarnpkg.com/@types/domhandler/-/domhandler-2.4.1.tgz#7b3b347f7762180fbcb1ece1ce3dd0ebbb8c64cf" @@ -1343,16 +1382,16 @@ "@types/domhandler" "*" "@types/enzyme-adapter-react-16@^1.0.5": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@types/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.5.tgz#1bf30a166f49be69eeda4b81e3f24113c8b4e9d5" - integrity sha512-K7HLFTkBDN5RyRmU90JuYt8OWEY2iKUn43SDWEoBOXd/PowUWjLZ3Q6qMBiQuZeFYK/TOstaZxsnI0fXoAfLpg== + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.0.6.tgz#8aca7ae2fd6c7137d869b6616e696d21bb8b0cec" + integrity sha512-VonDkZ15jzqDWL8mPFIQnnLtjwebuL9YnDkqeCDYnB4IVgwUm0mwKkqhrxLL6mb05xm7qqa3IE95m8CZE9imCg== dependencies: "@types/enzyme" "*" "@types/enzyme@*", "@types/enzyme@^3.10.3": - version "3.10.3" - resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.3.tgz#02b6c5ac7d0472005944a652e79045e2f6c66804" - integrity sha512-f/Kcb84sZOSZiBPCkr4He9/cpuSLcKRyQaEE20Q30Prx0Dn6wcyMAWI0yofL6yvd9Ht9G7EVkQeRqK0n5w8ILw== + version "3.10.5" + resolved "https://registry.yarnpkg.com/@types/enzyme/-/enzyme-3.10.5.tgz#fe7eeba3550369eed20e7fb565bfb74eec44f1f0" + integrity sha512-R+phe509UuUYy9Tk0YlSbipRpfVtIzb/9BHn5pTEtjJTF5LXvUjrIQcZvNyANNEyFrd2YGs196PniNT1fgvOQA== dependencies: "@types/cheerio" "*" "@types/react" "*" @@ -1362,6 +1401,11 @@ resolved "https://registry.yarnpkg.com/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#1ee30d79544ca84d68d4b3cdb0af4f205663dd2d" integrity sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag== +"@types/events@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" + integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== + "@types/flot@0.0.31": version "0.0.31" resolved "https://registry.yarnpkg.com/@types/flot/-/flot-0.0.31.tgz#0daca37c6c855b69a0a7e2e37dd0f84b3db8c8c1" @@ -1369,10 +1413,19 @@ dependencies: "@types/jquery" "*" +"@types/glob@^7.1.1": + version "7.1.1" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" + integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + dependencies: + "@types/events" "*" + "@types/minimatch" "*" + "@types/node" "*" + "@types/history@*": - version "4.7.3" - resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.3.tgz#856c99cdc1551d22c22b18b5402719affec9839a" - integrity sha512-cS5owqtwzLN5kY+l+KgKdRJ/Cee8tlmQoGQuIE9tWnSmS3JMKzmxo2HIAk2wODMifGwO20d62xZQLYz+RLfXmw== + version "4.7.5" + resolved "https://registry.yarnpkg.com/@types/history/-/history-4.7.5.tgz#527d20ef68571a4af02ed74350164e7a67544860" + integrity sha512-wLD/Aq2VggCJXSjxEwrMafIP51Z+13H78nXIX0ABEuIGhmB5sNGbR113MOKo+yfw+RDo1ZU3DM6yfnnRF/+ouw== "@types/htmlparser2@*": version "3.10.1" @@ -1389,9 +1442,9 @@ integrity sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg== "@types/istanbul-lib-report@*": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz#e5471e7fa33c61358dd38426189c037a58433b8c" - integrity sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg== + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" + integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== dependencies: "@types/istanbul-lib-coverage" "*" @@ -1403,29 +1456,29 @@ "@types/istanbul-lib-coverage" "*" "@types/istanbul-lib-report" "*" -"@types/jest-diff@*": - version "20.0.1" - resolved "https://registry.yarnpkg.com/@types/jest-diff/-/jest-diff-20.0.1.tgz#35cc15b9c4f30a18ef21852e255fdb02f6d59b89" - integrity sha512-yALhelO3i0hqZwhjtcr6dYyaLoCHbAMshwtj6cGxTvHZAKXHsYGdff6E8EPw3xLKY0ELUTQ69Q1rQiJENnccMA== - "@types/jest@^24.0.20": - version "24.0.20" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.0.20.tgz#729d5fe8684e7fb06368d3bd557ac6d91289d861" - integrity sha512-M8ebEkOpykGdLoRrmew7UowTZ1DANeeP0HiSIChl/4DGgmnSC1ntitNtkyNSXjMTsZvXuaxJrxjImEnRWNPsPw== + version "24.9.1" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-24.9.1.tgz#02baf9573c78f1b9974a5f36778b366aa77bd534" + integrity sha512-Fb38HkXSVA4L8fGKEZ6le5bB8r6MRWlOCZbVuWZcmOMSCd2wCYOwN1ibj8daIoV9naq7aaOZjrLCoCMptKU/4Q== dependencies: - "@types/jest-diff" "*" + jest-diff "^24.3.0" "@types/jquery@*", "@types/jquery@^3.3.29": - version "3.3.31" - resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.31.tgz#27c706e4bf488474e1cb54a71d8303f37c93451b" - integrity sha512-Lz4BAJihoFw5nRzKvg4nawXPzutkv7wmfQ5121avptaSIXlDNJCUuxZxX/G+9EVidZGuO0UBlk+YjKbwRKJigg== + version "3.3.33" + resolved "https://registry.yarnpkg.com/@types/jquery/-/jquery-3.3.33.tgz#61d9cbd4004ffcdf6cf7e34720a87a5625a7d8e9" + integrity sha512-U6IdXYGkfUI42SR79vB2Spj+h1Ly3J3UZjpd8mi943lh126TK7CB+HZOxGh2nM3IySor7wqVQdemD/xtydsBKA== dependencies: "@types/sizzle" "*" "@types/json-schema@^7.0.3": - version "7.0.3" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636" - integrity sha512-Il2DtDVRGDcqjDtE+rF8iqg1CArehSK84HZJCT7AMITlyXRBpuPhqGLDQMowraqqu1coEaimg4ZOqggt6L6L+A== + version "7.0.4" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.4.tgz#38fd73ddfd9b55abb1e1b2ed578cb55bd7b7d339" + integrity sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA== + +"@types/minimatch@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" + integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== "@types/moment-timezone@^0.5.10": version "0.5.12" @@ -1434,10 +1487,20 @@ dependencies: moment ">=2.14.0" -"@types/node@*", "@types/node@^12.11.1": - version "12.11.1" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.11.1.tgz#1fd7b821f798b7fa29f667a1be8f3442bb8922a3" - integrity sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A== +"@types/node@*": + version "13.9.2" + resolved "https://registry.yarnpkg.com/@types/node/-/node-13.9.2.tgz#ace1880c03594cc3e80206d96847157d8e7fa349" + integrity sha512-bnoqK579sAYrQbp73wwglccjJ4sfRdKU7WNEZ5FW4K2U6Kc0/eZ5kvXG0JKsEKFB50zrFmfFt52/cvBbZa7eXg== + +"@types/node@^12.11.1": + version "12.12.30" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.30.tgz#3501e6f09b954de9c404671cefdbcc5d9d7c45f6" + integrity sha512-sz9MF/zk6qVr3pAnM0BSQvYIBK44tS75QC5N+VbWSE4DjCV/pJ+UzCW/F+vVnl7TkOPcuwQureKNtSSwjBTaMg== + +"@types/parse-json@^4.0.0": + version "4.0.0" + resolved "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz#2f8bb441434d163b35fb8ffdccd7138927ffb8c0" + integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== "@types/prop-types@*": version "15.7.3" @@ -1450,9 +1513,9 @@ integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== "@types/reach__router@^1.2.6": - version "1.2.6" - resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.2.6.tgz#b14cf1adbd1a365d204bbf6605cd9dd7b8816c87" - integrity sha512-Oh5DAVr/L2svBvubw6QEFpXGu295Y406BPs4i9t1n2pp7M+q3pmCmhzb9oZV5wncR41KCD3NHl1Yhi7uKnTPsA== + version "1.3.1" + resolved "https://registry.yarnpkg.com/@types/reach__router/-/reach__router-1.3.1.tgz#ca8b431acb12bb897d2b806f6fdd815f056d6d02" + integrity sha512-E51ntVeunnxofXmOoPFiOvElHWf+jBEs3B56gGx7XhPHOkJdjWxWDY4V1AsUiwhtOCXPM7atFy30wj7glyv2Fg== dependencies: "@types/history" "*" "@types/react" "*" @@ -1465,53 +1528,53 @@ "@types/react" "*" "@types/react-dom@^16.8.0": - version "16.9.2" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.2.tgz#90f9e6c161850be1feb31d2f448121be2a4f3b47" - integrity sha512-hgPbBoI1aTSTvZwo8HYw35UaTldW6n2ETLvHAcfcg1FaOuBV3olmyCe5eMpx2WybWMBPv0MdU2t5GOcQhP+3zA== + version "16.9.5" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-16.9.5.tgz#5de610b04a35d07ffd8f44edad93a71032d9aaa7" + integrity sha512-BX6RQ8s9D+2/gDhxrj8OW+YD4R+8hj7FEM/OJHGNR0KipE1h1mSsf39YeyC81qafkq+N3rU3h3RFbLSwE5VqUg== dependencies: "@types/react" "*" "@types/react-resize-detector@^4.0.2": - version "4.0.2" - resolved "https://registry.yarnpkg.com/@types/react-resize-detector/-/react-resize-detector-4.0.2.tgz#5c046301a881fe9af741536e0dd4c34dfb155c6e" - integrity sha512-5tJSq35S4H/0QhHwd5nMWuBVj96NHCTLW5AyZoKKQq5VBrNWkgrJan/WJ/w36Pf5v+WWw/1Wc9CMxgt1reksKA== + version "4.2.0" + resolved "https://registry.yarnpkg.com/@types/react-resize-detector/-/react-resize-detector-4.2.0.tgz#ee8802e25cfb34439aa7f52626932ea62dc5792e" + integrity sha512-y5PPThHUrBGxMhLDNn0BRWglKr84y+gQHvzkyKxF8aW3pox4IySC33V8AOu7ReS0JR1X1dKQgWeF8IOkGrbeBg== dependencies: "@types/react" "*" "@types/react-test-renderer@*": - version "16.9.1" - resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.1.tgz#9d432c46c515ebe50c45fa92c6fb5acdc22e39c4" - integrity sha512-nCXQokZN1jp+QkoDNmDZwoWpKY8HDczqevIDO4Uv9/s9rbGPbSpy8Uaxa5ixHKkcm/Wt0Y9C3wCxZivh4Al+rQ== + version "16.9.2" + resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-16.9.2.tgz#e1c408831e8183e5ad748fdece02214a7c2ab6c5" + integrity sha512-4eJr1JFLIAlWhzDkBCkhrOIWOvOxcCAfQh+jiKg7l/nNZcCIL2MHl2dZhogIFKyHzedVWHaVP1Yydq/Ruu4agw== dependencies: "@types/react" "*" "@types/react@*", "@types/react@^16.8.2": - version "16.9.9" - resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.9.tgz#a62c6f40f04bc7681be5e20975503a64fe783c3a" - integrity sha512-L+AudFJkDukk+ukInYvpoAPyJK5q1GanFOINOJnM0w6tUgITuWvJ4jyoBPFL7z4/L8hGLd+K/6xR5uUjXu0vVg== + version "16.9.25" + resolved "https://registry.yarnpkg.com/@types/react/-/react-16.9.25.tgz#6ae2159b40138c792058a23c3c04fd3db49e929e" + integrity sha512-Dlj2V72cfYLPNscIG3/SMUOzhzj7GK3bpSrfefwt2YT9GLynvLCCZjbhyF6VsT0q0+aRACRX03TDJGb7cA0cqg== dependencies: "@types/prop-types" "*" csstype "^2.2.0" "@types/reactstrap@^8.0.5": - version "8.0.5" - resolved "https://registry.yarnpkg.com/@types/reactstrap/-/reactstrap-8.0.5.tgz#6c6429bcfcc1d97d9a89bcb73a07bbb698bfe945" - integrity sha512-cdTmatus6s/f5GltmDGLbCl31cexQbIFRPPjfEYzTEpjtV5uUNaWmcCSaMbuj5fnvaSTs8Ysx6u0bVb5pPFtjA== + version "8.4.2" + resolved "https://registry.yarnpkg.com/@types/reactstrap/-/reactstrap-8.4.2.tgz#e7066d0e67e2924dab0a52c6aedcf922f2be53b6" + integrity sha512-ag4hfFqBZaeoNSSTKjCtedvdcO68QqqlBrFd3obg94JSmhgNTmHz50BvNJkf9NjSzx1yGTW4l/OyP/khLPKqww== dependencies: "@types/react" "*" popper.js "^1.14.1" "@types/sanitize-html@^1.20.2": - version "1.20.2" - resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.20.2.tgz#59777f79f015321334e3a9f28882f58c0a0d42b8" - integrity sha512-SrefiiBebGIhxEFkpbbYOwO1S6+zQLWAC4s4tipchlHq1aO9bp0xiapM7Zm0ml20MF+3OePWYdksB1xtneKPxg== + version "1.22.0" + resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-1.22.0.tgz#9bf3a13aeab6e38d130d8ba34bb443956b75bc3d" + integrity sha512-zRtkG+Z9ikdEyIQL6ZouqZIPWnzoioJxgxAUFOc91f+nC8yB4GOMzGpy9V3WYfmkjaVNL4zlsycwHWykFq1HNg== dependencies: "@types/htmlparser2" "*" "@types/sinon@^7.5.0": - version "7.5.0" - resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-7.5.0.tgz#f5a10c27175465a0b001b68d8b9f761582967cc6" - integrity sha512-NyzhuSBy97B/zE58cDw4NyGvByQbAHNP9069KVSgnXt/sc0T6MFRh0InKAeBVHJWdSXG1S3+PxgVIgKo9mTHbw== + version "7.5.2" + resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-7.5.2.tgz#5e2f1d120f07b9cda07e5dedd4f3bf8888fccdb9" + integrity sha512-T+m89VdXj/eidZyejvmoP9jivXgBDdkOSBVQjU9kF349NEx10QdPNGxHeZUaj1IlJ32/ewdyXJjnJxyxJroYwg== "@types/sizzle@*": version "2.3.2" @@ -1523,107 +1586,68 @@ resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e" integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw== -"@types/testing-library__react-hooks@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@types/testing-library__react-hooks/-/testing-library__react-hooks-2.0.0.tgz#7b289d64945517ae8ba9cbcb0c5b282432aaeffa" - integrity sha512-YUVqXGCChJKEJ4aAnMXqPCq0NfPAFVsJeGIb2y/iiMjxwyu+45+vR+AHOwjJHHKEHeC0ZhOGrZ5gSEmaJe4tyQ== +"@types/testing-library__react-hooks@^3.0.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@types/testing-library__react-hooks/-/testing-library__react-hooks-3.2.0.tgz#52f3a109bef06080e3b1e3ae7ea1c014ce859897" + integrity sha512-dE8iMTuR5lzB+MqnxlzORlXzXyCL0EKfzH0w/lau20OpkHD37EaWjZDz0iNG8b71iEtxT4XKGmSKAGVEqk46mw== dependencies: "@types/react" "*" "@types/react-test-renderer" "*" "@types/yargs-parser@*": - version "13.1.0" - resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.1.0.tgz#c563aa192f39350a1d18da36c5a8da382bbd8228" - integrity sha512-gCubfBUZ6KxzoibJ+SCUc/57Ms1jz5NjHe4+dI2krNmU5zCPAphyLJYyTOg06ueIyfj+SaCUqmzun7ImlxDcKg== + version "15.0.0" + resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-15.0.0.tgz#cb3f9f741869e20cce330ffbeb9271590483882d" + integrity sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw== "@types/yargs@^13.0.0": - version "13.0.3" - resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.3.tgz#76482af3981d4412d65371a318f992d33464a380" - integrity sha512-K8/LfZq2duW33XW/tFwEAfnZlqIfVsoyRB3kfXdPXYhl0nfM8mmh7GS0jg7WrX2Dgq/0Ha/pR1PaR+BvmWwjiQ== + version "13.0.8" + resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-13.0.8.tgz#a38c22def2f1c2068f8971acb3ea734eb3c64a99" + integrity sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA== dependencies: "@types/yargs-parser" "*" -"@typescript-eslint/eslint-plugin@2.x": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.5.0.tgz#101d96743ce3365b3223df73d641078c9b775903" - integrity sha512-ddrJZxp5ns1Lh5ofZQYk3P8RyvKfyz/VcRR4ZiJLHO/ljnQAO8YvTfj268+WJOOadn99mvDiqJA65+HAKoeSPA== - dependencies: - "@typescript-eslint/experimental-utils" "2.5.0" - eslint-utils "^1.4.2" - functional-red-black-tree "^1.0.1" - regexpp "^2.0.1" - tsutils "^3.17.1" - -"@typescript-eslint/eslint-plugin@^2.2.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.4.0.tgz#aaf6b542ff75b78f4191a8bf1c519184817caa24" - integrity sha512-se/YCk7PUoyMwSm/u3Ii9E+BgDUc736uw/lXCDpXEqRgPGsoBTtS8Mntue/vZX8EGyzGplYuePBuVyhZDM9EpQ== +"@typescript-eslint/eslint-plugin@2.x", "@typescript-eslint/eslint-plugin@^2.10.0": + version "2.24.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.24.0.tgz#a86cf618c965a462cddf3601f594544b134d6d68" + integrity sha512-wJRBeaMeT7RLQ27UQkDFOu25MqFOBus8PtOa9KaT5ZuxC1kAsd7JEHqWt4YXuY9eancX0GK9C68i5OROnlIzBA== dependencies: - "@typescript-eslint/experimental-utils" "2.4.0" - eslint-utils "^1.4.2" + "@typescript-eslint/experimental-utils" "2.24.0" + eslint-utils "^1.4.3" functional-red-black-tree "^1.0.1" - regexpp "^2.0.1" + regexpp "^3.0.0" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.4.0.tgz#dd8f3f466be25c3610a06fed22cfb6e6aa17f6d9" - integrity sha512-2cvhNaJoWavgTtnC7e1jUSPZQ7e4U2X9Yoy5sQmkS7lTESuyuZrlRcaoNuFfYEd6hgrmMU7+QoSp8Ad+kT1nfA== - dependencies: - "@types/json-schema" "^7.0.3" - "@typescript-eslint/typescript-estree" "2.4.0" - eslint-scope "^5.0.0" - -"@typescript-eslint/experimental-utils@2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.5.0.tgz#383a97ded9a7940e5053449f6d73995e782b8fb1" - integrity sha512-UgcQGE0GKJVChyRuN1CWqDW8Pnu7+mVst0aWrhiyuUD1J9c+h8woBdT4XddCvhcXDodTDVIfE3DzGHVjp7tUeQ== +"@typescript-eslint/experimental-utils@2.24.0": + version "2.24.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.24.0.tgz#a5cb2ed89fedf8b59638dc83484eb0c8c35e1143" + integrity sha512-DXrwuXTdVh3ycNCMYmWhUzn/gfqu9N0VzNnahjiDJvcyhfBy4gb59ncVZVxdp5XzBC77dCncu0daQgOkbvPwBw== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/typescript-estree" "2.5.0" + "@typescript-eslint/typescript-estree" "2.24.0" eslint-scope "^5.0.0" -"@typescript-eslint/parser@2.x": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.5.0.tgz#858030ddd808fbbe88e03f42e5971efaccb8218a" - integrity sha512-9UBMiAwIDWSl79UyogaBdj3hidzv6exjKUx60OuZuFnJf56tq/UMpdPcX09YmGqE8f4AnAueYtBxV8IcAT3jdQ== - dependencies: - "@types/eslint-visitor-keys" "^1.0.0" - "@typescript-eslint/experimental-utils" "2.5.0" - "@typescript-eslint/typescript-estree" "2.5.0" - eslint-visitor-keys "^1.1.0" - -"@typescript-eslint/parser@^2.2.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.4.0.tgz#fe43ed5fec14af03d3594fce2c3b7ec4c8df0243" - integrity sha512-IouAKi/grJ4MFrwdXIJ1GHAwbPWYgkT3b/x8Q49F378c9nwgxVkO76e0rZeUVpwHMaUuoKG2sUeK0XGkwdlwkw== +"@typescript-eslint/parser@2.x", "@typescript-eslint/parser@^2.10.0": + version "2.24.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.24.0.tgz#2cf0eae6e6dd44d162486ad949c126b887f11eb8" + integrity sha512-H2Y7uacwSSg8IbVxdYExSI3T7uM1DzmOn2COGtCahCC3g8YtM1xYAPi2MAHyfPs61VKxP/J/UiSctcRgw4G8aw== dependencies: "@types/eslint-visitor-keys" "^1.0.0" - "@typescript-eslint/experimental-utils" "2.4.0" - "@typescript-eslint/typescript-estree" "2.4.0" + "@typescript-eslint/experimental-utils" "2.24.0" + "@typescript-eslint/typescript-estree" "2.24.0" eslint-visitor-keys "^1.1.0" -"@typescript-eslint/typescript-estree@2.4.0": - version "2.4.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.4.0.tgz#722c95493e1b7682893edaaaec0e69f36917feef" - integrity sha512-/DzDAtMqF5d9IlXrrvu/Id/uoKjnSxf/3FbtKK679a/T7lbDM8qQuirtGvFy6Uh+x0hALuCMwnMfUf0P24/+Iw== - dependencies: - chokidar "^3.0.2" - glob "^7.1.4" - is-glob "^4.0.1" - lodash.unescape "4.0.1" - semver "^6.3.0" - -"@typescript-eslint/typescript-estree@2.5.0": - version "2.5.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.5.0.tgz#40ada624d6217ef092a3a79ed30d947ad4f212ce" - integrity sha512-AXURyF8NcA3IsnbjNX1v9qbwa0dDoY9YPcKYR2utvMHoUcu3636zrz0gRWtVAyxbPCkhyKuGg6WZIyi2Fc79CA== +"@typescript-eslint/typescript-estree@2.24.0": + version "2.24.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.24.0.tgz#38bbc8bb479790d2f324797ffbcdb346d897c62a" + integrity sha512-RJ0yMe5owMSix55qX7Mi9V6z2FDuuDpN6eR5fzRJrp+8in9UF41IGNQHbg5aMK4/PjVaEQksLvz0IA8n+Mr/FA== dependencies: debug "^4.1.1" - glob "^7.1.4" + eslint-visitor-keys "^1.1.0" + glob "^7.1.6" is-glob "^4.0.1" - lodash.unescape "4.0.1" + lodash "^4.17.15" semver "^6.3.0" + tsutils "^3.17.1" "@webassemblyjs/ast@1.8.5": version "1.8.5" @@ -1782,9 +1806,9 @@ integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== abab@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.2.tgz#a2fba1b122c69a85caa02d10f9270c7219709a9d" - integrity sha512-2scffjvioEmNz0OyDSLGWDfKCVwaKc6l9Pm9kOIREU13ClXZvHpg/nRL5xyjSSSLhOnXqft2HpsAzNEEA8cFFg== + version "2.0.3" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" + integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== abbrev@1: version "1.1.1" @@ -1807,10 +1831,10 @@ acorn-globals@^4.1.0, acorn-globals@^4.3.0, acorn-globals@^4.3.2: acorn "^6.0.1" acorn-walk "^6.0.1" -acorn-jsx@^5.0.2: - version "5.1.0" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.1.0.tgz#294adb71b57398b0680015f0a38c563ee1db5384" - integrity sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw== +acorn-jsx@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.2.0.tgz#4c66069173d6fdd68ed85239fc256226182b2ebe" + integrity sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ== acorn-walk@^6.0.1: version "6.2.0" @@ -1818,19 +1842,19 @@ acorn-walk@^6.0.1: integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== acorn@^5.5.3: - version "5.7.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" - integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + version "5.7.4" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" + integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== acorn@^6.0.1, acorn@^6.0.4, acorn@^6.2.1: - version "6.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e" - integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA== + version "6.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" + integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== -acorn@^7.0.0, acorn@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c" - integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ== +acorn@^7.1.0, acorn@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" + integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== address@1.1.2, address@^1.0.1: version "1.1.2" @@ -1848,6 +1872,14 @@ adjust-sourcemap-loader@2.0.0: object-path "0.11.4" regex-parser "2.2.10" +aggregate-error@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.0.1.tgz#db2fe7246e536f40d9b5442a39e117d7dd6a24e0" + integrity sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA== + dependencies: + clean-stack "^2.0.0" + indent-string "^4.0.0" + airbnb-prop-types@^2.15.0: version "2.15.0" resolved "https://registry.yarnpkg.com/airbnb-prop-types/-/airbnb-prop-types-2.15.0.tgz#5287820043af1eb469f5b0af0d6f70da6c52aaef" @@ -1874,12 +1906,12 @@ ajv-keywords@^3.1.0, ajv-keywords@^3.4.1: resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da" integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ== -ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.5.5: - version "6.10.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.2.tgz#d3cea04d6b017b2894ad69040fec8b623eb4bd52" - integrity sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw== +ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.0, ajv@^6.5.5: + version "6.12.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.0.tgz#06d60b96d87b8454a5adaba86e7854da629db4b7" + integrity sha512-D6gFiFA0RRLyUbvijN74DWAjXSFxWKaWP7mldxkVhyhAV3+SWA9HEJPHQ2c9soIeTFJqcSdFDGFgdqs1iUU2Hw== dependencies: - fast-deep-equal "^2.0.1" + fast-deep-equal "^3.1.1" fast-json-stable-stringify "^2.0.0" json-schema-traverse "^0.4.1" uri-js "^4.2.2" @@ -1894,17 +1926,17 @@ ansi-colors@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== -ansi-escapes@^3.0.0, ansi-escapes@^3.2.0: +ansi-escapes@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== ansi-escapes@^4.2.1: - version "4.2.1" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.2.1.tgz#4dccdb846c3eee10f6d64dea66273eab90c37228" - integrity sha512-Cg3ymMAdN10wOk/VYfLV7KCQyv7EDirJ64500sU7n9UlmioEtDuU5Gd+hj73hXSU/ex7tHJSssmyftDdkMLO8Q== + version "4.3.1" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" + integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== dependencies: - type-fest "^0.5.2" + type-fest "^0.11.0" ansi-html@0.0.7: version "0.0.7" @@ -1926,6 +1958,11 @@ ansi-regex@^4.0.0, ansi-regex@^4.1.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== +ansi-regex@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" + integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== + ansi-styles@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" @@ -1938,6 +1975,14 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" +ansi-styles@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" + integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== + dependencies: + "@types/color-name" "^1.1.1" + color-convert "^2.0.1" + anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -2027,13 +2072,14 @@ array-from@^2.1.1: resolved "https://registry.yarnpkg.com/array-from/-/array-from-2.1.1.tgz#cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195" integrity sha1-z+nYwmYoudxa7MYqn12PHzUsEZU= -array-includes@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" - integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= +array-includes@^3.0.3, array-includes@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.1.tgz#cdd67e6852bdf9c1215460786732255ed2459348" + integrity sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ== dependencies: - define-properties "^1.1.2" - es-abstract "^1.7.0" + define-properties "^1.1.3" + es-abstract "^1.17.0" + is-string "^1.0.5" array-union@^1.0.1: version "1.0.2" @@ -2042,7 +2088,7 @@ array-union@^1.0.1: dependencies: array-uniq "^1.0.1" -array-uniq@^1.0.1, array-uniq@^1.0.2: +array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= @@ -2053,28 +2099,27 @@ array-unique@^0.3.2: integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= array.prototype.find@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.0.tgz#630f2eaf70a39e608ac3573e45cf8ccd0ede9ad7" - integrity sha512-Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg== + version "2.1.1" + resolved "https://registry.yarnpkg.com/array.prototype.find/-/array.prototype.find-2.1.1.tgz#3baca26108ca7affb08db06bf0be6cb3115a969c" + integrity sha512-mi+MYNJYLTx2eNYy+Yh6raoQacCsNeeMUaspFPh9Y141lFSsWxxB8V9mM2ye+eqiRs917J6/pJ4M9ZPzenWckA== dependencies: define-properties "^1.1.3" - es-abstract "^1.13.0" + es-abstract "^1.17.4" -array.prototype.flat@^1.2.1: - version "1.2.2" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.2.tgz#8f3c71d245ba349b6b64b4078f76f5576f1fd723" - integrity sha512-VXjh7lAL4KXKF2hY4FnEW9eRW6IhdvFW1sN/JwLbmECbCgACCnBHNyP3lFiYuttr0jxRN9Bsc5+G27dMseSWqQ== +array.prototype.flat@^1.2.1, array.prototype.flat@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.2.3.tgz#0de82b426b0318dbfdb940089e38b043d37f6c7b" + integrity sha512-gBlRZV0VSmfPIeWfuuy56XZMvbVfbEUnOXUvt3F/eUUUSyzlgLxhEX4YAEpxNAogRGehPSnfXyPtYyKAhkzQhQ== dependencies: define-properties "^1.1.3" - es-abstract "^1.15.0" - function-bind "^1.1.1" + es-abstract "^1.17.0-next.1" arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= -asap@~2.0.3, asap@~2.0.6: +asap@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= @@ -2135,7 +2180,7 @@ async-each@^1.0.1: resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== -async-limiter@^1.0.0, async-limiter@~1.0.0: +async-limiter@~1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== @@ -2152,22 +2197,22 @@ asynckit@^0.4.0: resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= -atob@^2.1.1: +atob@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.6.1: - version "9.6.5" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.6.5.tgz#98f4afe7e93cccf323287515d426019619775e5e" - integrity sha512-rGd50YV8LgwFQ2WQp4XzOTG69u1qQsXn0amww7tjqV5jJuNazgFKYEVItEBngyyvVITKOg20zr2V+9VsrXJQ2g== + version "9.7.4" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.4.tgz#f8bf3e06707d047f0641d87aee8cfb174b2a5378" + integrity sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g== dependencies: - browserslist "^4.7.0" - caniuse-lite "^1.0.30000999" + browserslist "^4.8.3" + caniuse-lite "^1.0.30001020" chalk "^2.4.2" normalize-range "^0.1.2" num2fraction "^1.2.2" - postcss "^7.0.18" + postcss "^7.0.26" postcss-value-parser "^4.0.2" aws-sign2@~0.7.0: @@ -2176,16 +2221,14 @@ aws-sign2@~0.7.0: integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= aws4@^1.8.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" - integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + version "1.9.1" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.9.1.tgz#7e33d8f7d449b3f673cd72deb9abdc552dbe528e" + integrity sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug== axobject-query@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9" - integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== - dependencies: - ast-types-flow "0.0.7" + version "2.1.2" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.1.2.tgz#2bdffc0371e643e5f03ba99065d5179b9ca79799" + integrity sha512-ICt34ZmrVt8UQnvPl6TVyDTkmhXmAyAT4Jh5ugfGUX4MOrZ+U/ZY6/sdylRw3qGNr9Ub5AJsaHeDMzNLehRdOQ== babel-code-frame@^6.22.0: version "6.26.0" @@ -2196,15 +2239,15 @@ babel-code-frame@^6.22.0: esutils "^2.0.2" js-tokens "^3.0.2" -babel-eslint@10.0.3, babel-eslint@10.x: - version "10.0.3" - resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a" - integrity sha512-z3U7eMY6r/3f3/JB9mTsLjyxrv0Yb1zb8PCWCLpguxfCzBIZUwy23R1t/XKewP+8mEN2Ck8Dtr4q20z6ce6SoA== +babel-eslint@10.1.0, babel-eslint@10.x: + version "10.1.0" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.1.0.tgz#6968e568a910b78fb3779cdd8b6ac2f479943232" + integrity sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/parser" "^7.0.0" - "@babel/traverse" "^7.0.0" - "@babel/types" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" eslint-visitor-keys "^1.0.0" resolve "^1.12.0" @@ -2228,17 +2271,18 @@ babel-jest@^24.9.0: chalk "^2.4.2" slash "^2.0.0" -babel-loader@8.0.6: - version "8.0.6" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb" - integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw== +babel-loader@8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3" + integrity sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw== dependencies: - find-cache-dir "^2.0.0" - loader-utils "^1.0.2" - mkdirp "^0.5.1" + find-cache-dir "^2.1.0" + loader-utils "^1.4.0" + mkdirp "^0.5.3" pify "^4.0.1" + schema-utils "^2.6.5" -babel-plugin-dynamic-import-node@2.3.0, babel-plugin-dynamic-import-node@^2.3.0: +babel-plugin-dynamic-import-node@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f" integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ== @@ -2262,19 +2306,19 @@ babel-plugin-jest-hoist@^24.9.0: dependencies: "@types/babel__traverse" "^7.0.6" -babel-plugin-macros@2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.6.1.tgz#41f7ead616fc36f6a93180e89697f69f51671181" - integrity sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ== +babel-plugin-macros@2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz#0f958a7cc6556b1e65344465d99111a1e5e10138" + integrity sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg== dependencies: - "@babel/runtime" "^7.4.2" - cosmiconfig "^5.2.0" - resolve "^1.10.0" + "@babel/runtime" "^7.7.2" + cosmiconfig "^6.0.0" + resolve "^1.12.0" -babel-plugin-named-asset-import@^0.3.4: - version "0.3.4" - resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.4.tgz#4a8fc30e9a3e2b1f5ed36883386ab2d84e1089bd" - integrity sha512-S6d+tEzc5Af1tKIMbsf2QirCcPdQ+mKUCY2H1nJj1DyA1ShwpsoxEOAwbWsG5gcXNV/olpvQd9vrUWRx4bnhpw== +babel-plugin-named-asset-import@^0.3.6: + version "0.3.6" + resolved "https://registry.yarnpkg.com/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.6.tgz#c9750a1b38d85112c9e166bf3ef7c5dbc605f4be" + integrity sha512-1aGDUfL1qOOIoqk9QKGIo2lANk+C7ko/fqH0uIyC71x3PEGz0uVP8ISgfEsFuG+FKmjHTvFK/nNM8dowpmUxLA== babel-plugin-syntax-object-rest-spread@^6.8.0: version "6.13.0" @@ -2302,26 +2346,25 @@ babel-preset-jest@^24.9.0: "@babel/plugin-syntax-object-rest-spread" "^7.0.0" babel-plugin-jest-hoist "^24.9.0" -babel-preset-react-app@^9.0.2: - version "9.0.2" - resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.0.2.tgz#247d37e883d6d6f4b4691e5f23711bb2dd80567d" - integrity sha512-aXD+CTH8Chn8sNJr4tO/trWKqe5sSE4hdO76j9fhVezJSzmpWYWUSc5JoPmdSxADwef5kQFNGKXd433vvkd2VQ== - dependencies: - "@babel/core" "7.6.0" - "@babel/plugin-proposal-class-properties" "7.5.5" - "@babel/plugin-proposal-decorators" "7.6.0" - "@babel/plugin-proposal-object-rest-spread" "7.5.5" - "@babel/plugin-syntax-dynamic-import" "7.2.0" - "@babel/plugin-transform-destructuring" "7.6.0" - "@babel/plugin-transform-flow-strip-types" "7.4.4" - "@babel/plugin-transform-react-display-name" "7.2.0" - "@babel/plugin-transform-runtime" "7.6.0" - "@babel/preset-env" "7.6.0" - "@babel/preset-react" "7.0.0" - "@babel/preset-typescript" "7.6.0" - "@babel/runtime" "7.6.0" - babel-plugin-dynamic-import-node "2.3.0" - babel-plugin-macros "2.6.1" +babel-preset-react-app@^9.1.2: + version "9.1.2" + resolved "https://registry.yarnpkg.com/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz#54775d976588a8a6d1a99201a702befecaf48030" + integrity sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA== + dependencies: + "@babel/core" "7.9.0" + "@babel/plugin-proposal-class-properties" "7.8.3" + "@babel/plugin-proposal-decorators" "7.8.3" + "@babel/plugin-proposal-nullish-coalescing-operator" "7.8.3" + "@babel/plugin-proposal-numeric-separator" "7.8.3" + "@babel/plugin-proposal-optional-chaining" "7.9.0" + "@babel/plugin-transform-flow-strip-types" "7.9.0" + "@babel/plugin-transform-react-display-name" "7.8.3" + "@babel/plugin-transform-runtime" "7.9.0" + "@babel/preset-env" "7.9.0" + "@babel/preset-react" "7.9.1" + "@babel/preset-typescript" "7.9.0" + "@babel/runtime" "7.9.0" + babel-plugin-macros "2.8.0" babel-plugin-transform-react-remove-prop-types "0.4.24" babel-runtime@^6.26.0: @@ -2387,10 +2430,17 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== +bindings@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df" + integrity sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ== + dependencies: + file-uri-to-path "1.0.0" + bluebird@^3.5.5: - version "3.7.1" - resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.1.tgz#df70e302b471d7473489acf26a93d63b53f874de" - integrity sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg== + version "3.7.2" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" + integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: version "4.11.8" @@ -2431,9 +2481,9 @@ boolbase@^1.0.0, boolbase@~1.0.0: integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= bootstrap@>=4.1.2, bootstrap@^4.2.1: - version "4.3.1" - resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.3.1.tgz#280ca8f610504d99d7b6b4bfc4b68cec601704ac" - integrity sha512-rXqOmH1VilAt2DyPzluTi2blhk17bO7ef+zLLPlWvG494pDxcM234pJ8wTc/6R40UWizAIIMgxjvxZg5kmsbag== + version "4.4.1" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-4.4.1.tgz#8582960eea0c5cd2bede84d8b0baf3789c3e8b01" + integrity sha512-tbx5cHubwE6e2ZG7nqM3g/FZ5PQEDMWmMGNrCUBVRPHXTJaH7CBDdsLeu3eCh3B1tzAxTnAbtmrzvWEvT2NNEA== brace-expansion@^1.1.7: version "1.1.11" @@ -2471,10 +2521,10 @@ brorand@^1.0.1: resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= -browser-process-hrtime@^0.1.2: - version "0.1.3" - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" - integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== +browser-process-hrtime@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" + integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== browser-resolve@^1.11.3: version "1.11.3" @@ -2542,28 +2592,20 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17" - integrity sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA== - dependencies: - caniuse-lite "^1.0.30000989" - electron-to-chromium "^1.3.247" - node-releases "^1.1.29" - -browserslist@^4.0.0, browserslist@^4.1.1, browserslist@^4.6.0, browserslist@^4.6.4, browserslist@^4.7.0: - version "4.7.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.7.1.tgz#bd400d1aea56538580e8c4d5f1c54ac11b5ab468" - integrity sha512-QtULFqKIAtiyNx7NhZ/p4rB8m3xDozVo/pi5VgTlADLF2tNigz/QH+v0m5qhn7XfHT7u+607NcCNOnC0HZAlMg== +browserslist@4.10.0, browserslist@^4.0.0, browserslist@^4.6.2, browserslist@^4.6.4, browserslist@^4.8.3, browserslist@^4.9.1: + version "4.10.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.10.0.tgz#f179737913eaf0d2b98e4926ac1ca6a15cbcc6a9" + integrity sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA== dependencies: - caniuse-lite "^1.0.30000999" - electron-to-chromium "^1.3.284" - node-releases "^1.1.36" + caniuse-lite "^1.0.30001035" + electron-to-chromium "^1.3.378" + node-releases "^1.1.52" + pkg-up "^3.1.0" -bser@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.0.tgz#65fc784bf7f87c009b973c12db6546902fa9c7b5" - integrity sha512-8zsjWrQkkBoLK6uxASk1nJ2SKv97ltiGDo6A3wA0/yRPz+CwmEyDo0hUrhIuukG2JHpAl3bvFIixw2/3Hi0DOg== +bser@2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" + integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== dependencies: node-int64 "^0.4.0" @@ -2583,9 +2625,9 @@ buffer-xor@^1.0.3: integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= buffer@^4.3.0: - version "4.9.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" - integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= + version "4.9.2" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8" + integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg== dependencies: base64-js "^1.0.2" ieee754 "^1.1.4" @@ -2627,6 +2669,30 @@ cacache@^12.0.2: unique-filename "^1.1.1" y18n "^4.0.0" +cacache@^13.0.1: + version "13.0.1" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-13.0.1.tgz#a8000c21697089082f85287a1aec6e382024a71c" + integrity sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w== + dependencies: + chownr "^1.1.2" + figgy-pudding "^3.5.1" + fs-minipass "^2.0.0" + glob "^7.1.4" + graceful-fs "^4.2.2" + infer-owner "^1.0.4" + lru-cache "^5.1.1" + minipass "^3.0.0" + minipass-collect "^1.0.2" + minipass-flush "^1.0.5" + minipass-pipeline "^1.2.2" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + p-map "^3.0.0" + promise-inflight "^1.0.1" + rimraf "^2.7.1" + ssri "^7.0.0" + unique-filename "^1.1.1" + cache-base@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" @@ -2671,25 +2737,20 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camel-case@3.0.x: - version "3.0.0" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" - integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= +camel-case@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" + integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== dependencies: - no-case "^2.2.0" - upper-case "^1.1.1" + pascal-case "^3.1.1" + tslib "^1.10.0" camelcase@5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== -camelcase@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" - integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= - -camelcase@^5.0.0, camelcase@^5.2.0, camelcase@^5.3.1: +camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== @@ -2704,10 +2765,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30000999: - version "1.0.30000999" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000999.tgz#427253a69ad7bea4aa8d8345687b8eec51ca0e43" - integrity sha512-1CUyKyecPeksKwXZvYw0tEoaMCo/RwBlXmEtN5vVnabvO0KPd9RQLcaAuR9/1F+KDMv6esmOFWlsXuzDk+8rxg== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001020, caniuse-lite@^1.0.30001035: + version "1.0.30001035" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001035.tgz#2bb53b8aa4716b2ed08e088d4dc816a5fe089a1e" + integrity sha512-C1ZxgkuA4/bUEdMbU5WrGY4+UhMFFiXrgNAfxiMIqWgFTWfv/xsZCS2xEHT2LMq7xAZfuAnu6mcqyDl0ZR6wLQ== capture-exit@^2.0.0: version "2.0.0" @@ -2716,10 +2777,10 @@ capture-exit@^2.0.0: dependencies: rsvp "^4.8.4" -case-sensitive-paths-webpack-plugin@2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.2.0.tgz#3371ef6365ef9c25fa4b81c16ace0e9c7dc58c3e" - integrity sha512-u5ElzokS8A1pm9vM3/iDgTcI3xqHxuCao94Oz8etI3cf0Tio0p8izkDYbTIn09uP3yUUr6+veaE6IkjnTYS46g== +case-sensitive-paths-webpack-plugin@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz#23ac613cc9a856e4f88ff8bb73bbb5e989825cf7" + integrity sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ== caseless@~0.12.0: version "0.12.0" @@ -2746,12 +2807,20 @@ chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" +chalk@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" + integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + chardet@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== -cheerio@^1.0.0-rc.2: +cheerio@^1.0.0-rc.3: version "1.0.0-rc.3" resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" integrity sha512-0td5ijfUPuubwLUu0OBoe98gZj8C/AA+RW3v67GPlGOrvxWjZmBXiBCRU+I8VEiNyJzjth40POfHiz2RB3gImA== @@ -2763,7 +2832,7 @@ cheerio@^1.0.0-rc.2: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: +chokidar@^2.0.2, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -2782,10 +2851,10 @@ chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4: optionalDependencies: fsevents "^1.2.7" -chokidar@^3.0.2: - version "3.2.2" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.2.2.tgz#a433973350021e09f2b853a2287781022c0dc935" - integrity sha512-bw3pm7kZ2Wa6+jQWYP/c7bAZy3i4GwiIiMO2EeRjrE48l8vBqC/WvFhSF0xyM8fQiPEGvwMY/5bqDG7sSEOuhg== +chokidar@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.3.1.tgz#c84e5b3d18d9a4d77558fef466b1bf16bbeb3450" + integrity sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg== dependencies: anymatch "~3.1.1" braces "~3.0.2" @@ -2793,14 +2862,14 @@ chokidar@^3.0.2: is-binary-path "~2.1.0" is-glob "~4.0.1" normalize-path "~3.0.0" - readdirp "~3.2.0" + readdirp "~3.3.0" optionalDependencies: - fsevents "~2.1.1" + fsevents "~2.1.2" -chownr@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.3.tgz#42d837d5239688d55f303003a508230fa6727142" - integrity sha512-i70fVHhmV3DtTl6nqvZOnIjbY0Pe4kAUjwHj8z0zAdgBtYrJyYwLKCCuRBQ5ppkyL0AkN7HKRnETdmdp1zqNXw== +chownr@^1.1.1, chownr@^1.1.2: + version "1.1.4" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" + integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== chrome-trace-event@^1.0.2: version "1.0.2" @@ -2837,19 +2906,24 @@ classnames@^2.2.3: resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== -clean-css@4.2.x: - version "4.2.1" - resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" - integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== +clean-css@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.3.tgz#507b5de7d97b48ee53d84adb0160ff6216380f78" + integrity sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA== dependencies: source-map "~0.6.0" -cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= +clean-stack@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" + integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== + +cli-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" + integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== dependencies: - restore-cursor "^2.0.0" + restore-cursor "^3.1.0" cli-width@^2.0.0: version "2.2.0" @@ -2928,12 +3002,19 @@ color-convert@^1.9.0, color-convert@^1.9.1: dependencies: color-name "1.1.3" +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + color-name@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= -color-name@^1.0.0: +color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== @@ -2961,25 +3042,15 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" -commander@2.17.x: - version "2.17.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" - integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== - -commander@2.20.0: - version "2.20.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" - integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== - commander@^2.11.0, commander@^2.19.0, commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@~2.19.0: - version "2.19.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" - integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== +commander@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== common-tags@^1.8.0: version "1.8.0" @@ -3004,13 +3075,13 @@ compose-function@3.0.3: arity-n "^1.0.4" compressible@~2.0.16: - version "2.0.17" - resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" - integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + version "2.0.18" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" + integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg== dependencies: - mime-db ">= 1.40.0 < 2" + mime-db ">= 1.43.0 < 2" -compression@^1.5.2: +compression@^1.7.4: version "1.7.4" resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== @@ -3024,9 +3095,9 @@ compression@^1.5.2: vary "~1.1.2" compute-scroll-into-view@^1.0.9: - version "1.0.11" - resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz#7ff0a57f9aeda6314132d8994cce7aeca794fecf" - integrity sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A== + version "1.0.13" + resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-1.0.13.tgz#be1b1663b0e3f56cd5f7713082549f562a3477e2" + integrity sha512-o+w9w7A98aAFi/GjK8cxSV+CdASuPa2rR5UWs3+yHkJzWqaKoBEufFNWYaXInCSmUfDCVhesG+v9MTWqOjsxFg== concat-map@0.0.1: version "0.0.1" @@ -3048,17 +3119,15 @@ confusing-browser-globals@^1.0.9: resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.9.tgz#72bc13b483c0276801681871d4898516f8f54fdd" integrity sha512-KbS1Y0jMtyPgIxjO7ZzMAuUpAKMt1SzCL9fsrKsX6b0zJPTaT0SiSPmewwVZg9UAO83HVIlEhZF84LIjZ0lmAw== -connect-history-api-fallback@^1.3.0: +connect-history-api-fallback@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz#8b32089359308d111115d81cad3fceab888f97bc" integrity sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg== console-browserify@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" - integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= - dependencies: - date-now "^0.1.4" + version "1.2.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" + integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" @@ -3087,10 +3156,10 @@ content-type@~1.0.4: resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== -convert-source-map@1.6.0, convert-source-map@^1.1.0, convert-source-map@^1.4.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" - integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== +convert-source-map@1.7.0, convert-source-map@^1.4.0, convert-source-map@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" + integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== dependencies: safe-buffer "~5.1.1" @@ -3127,41 +3196,41 @@ copy-descriptor@^0.1.0: integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= copy-to-clipboard@^3: - version "3.2.0" - resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" - integrity sha512-eOZERzvCmxS8HWzugj4Uxl8OJxa7T2k1Gi0X5qavwydHIfuSHq2dTD09LOg/XyGq4Zpb5IsR/2OJ5lbOegz78w== + version "3.3.1" + resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.3.1.tgz#115aa1a9998ffab6196f93076ad6da3b913662ae" + integrity sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw== dependencies: toggle-selection "^1.0.6" -core-js-compat@^3.1.1: - version "3.3.2" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.3.2.tgz#1096c989c1b929ede06b5b6b4768dc4439078c03" - integrity sha512-gfiK4QnNXhnnHVOIZst2XHdFfdMTPxtR0EGs0TdILMlGIft+087oH6/Sw2xTTIjpWXC9vEwsJA8VG3XTGcmO5g== +core-js-compat@^3.6.2: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.4.tgz#938476569ebb6cda80d339bcf199fae4f16fff17" + integrity sha512-zAa3IZPvsJ0slViBQ2z+vgyyTuhd3MFn1rBQjZSKVEgB0UMYhUkCj9jJUVPgGTGqWvsBVmfnruXgTcNyTlEiSA== dependencies: - browserslist "^4.7.0" - semver "^6.3.0" - -core-js@3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.2.1.tgz#cd41f38534da6cc59f7db050fe67307de9868b09" - integrity sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw== + browserslist "^4.8.3" + semver "7.0.0" -core-js@^1.0.0: - version "1.2.7" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" - integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= +core-js-pure@^3.0.0: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.6.4.tgz#4bf1ba866e25814f149d4e9aaa08c36173506e3a" + integrity sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw== core-js@^2.4.0: - version "2.6.10" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f" - integrity sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA== + version "2.6.11" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" + integrity sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg== + +core-js@^3.5.0: + version "3.6.4" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.6.4.tgz#440a83536b458114b9cb2ac1580ba377dc470647" + integrity sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw== core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= -cosmiconfig@^5.0.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: +cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: version "5.2.1" resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== @@ -3171,6 +3240,17 @@ cosmiconfig@^5.0.0, cosmiconfig@^5.2.0, cosmiconfig@^5.2.1: js-yaml "^3.13.1" parse-json "^4.0.0" +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + create-ecdh@^4.0.0: version "4.0.3" resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" @@ -3202,15 +3282,7 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -create-react-context@^0.2.1: - version "0.2.3" - resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.2.3.tgz#9ec140a6914a22ef04b8b09b7771de89567cb6f3" - integrity sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag== - dependencies: - fbjs "^0.8.0" - gud "^1.0.0" - -create-react-context@^0.3.0: +create-react-context@0.3.0, create-react-context@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/create-react-context/-/create-react-context-0.3.0.tgz#546dede9dc422def0d3fc2fe03afe0bc0f4f7d8c" integrity sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw== @@ -3226,7 +3298,16 @@ cross-fetch@^2.2.2: node-fetch "2.1.2" whatwg-fetch "2.0.4" -cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5: +cross-spawn@7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.1.tgz#0ab56286e0f7c24e153d04cc2aa027e43a9a5d14" + integrity sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: version "6.0.5" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== @@ -3282,22 +3363,23 @@ css-has-pseudo@^0.10.0: postcss "^7.0.6" postcss-selector-parser "^5.0.0-rc.4" -css-loader@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-2.1.1.tgz#d8254f72e412bb2238bb44dd674ffbef497333ea" - integrity sha512-OcKJU/lt232vl1P9EEDamhoO9iKY3tIjY5GU+XDLblAykTdgs6Ux9P1hTHve8nFKy5KPpOXOsVI/hIwi3841+w== +css-loader@3.4.2: + version "3.4.2" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.4.2.tgz#d3fdb3358b43f233b78501c5ed7b1c6da6133202" + integrity sha512-jYq4zdZT0oS0Iykt+fqnzVLRIeiPWhka+7BqPn+oSIpWJAHak5tmB/WZrJ2a21JhCeFyNnnlroSl8c+MtVndzA== dependencies: - camelcase "^5.2.0" - icss-utils "^4.1.0" + camelcase "^5.3.1" + cssesc "^3.0.0" + icss-utils "^4.1.1" loader-utils "^1.2.3" normalize-path "^3.0.0" - postcss "^7.0.14" + postcss "^7.0.23" postcss-modules-extract-imports "^2.0.0" - postcss-modules-local-by-default "^2.0.6" - postcss-modules-scope "^2.1.0" - postcss-modules-values "^2.0.0" - postcss-value-parser "^3.3.0" - schema-utils "^1.0.0" + postcss-modules-local-by-default "^3.0.2" + postcss-modules-scope "^2.1.1" + postcss-modules-values "^3.0.0" + postcss-value-parser "^4.0.2" + schema-utils "^2.6.0" css-prefers-color-scheme@^3.1.1: version "3.1.1" @@ -3322,41 +3404,33 @@ css-select@^1.1.0, css-select@~1.2.0: nth-check "~1.0.1" css-select@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" - integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== + version "2.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef" + integrity sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ== dependencies: boolbase "^1.0.0" - css-what "^2.1.2" + css-what "^3.2.1" domutils "^1.7.0" nth-check "^1.0.2" -css-tree@1.0.0-alpha.29: - version "1.0.0-alpha.29" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" - integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg== - dependencies: - mdn-data "~1.1.0" - source-map "^0.5.3" - -css-tree@1.0.0-alpha.33: - version "1.0.0-alpha.33" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.33.tgz#970e20e5a91f7a378ddd0fc58d0b6c8d4f3be93e" - integrity sha512-SPt57bh5nQnpsTBsx/IXbO14sRc9xXu5MtMAVuo0BaQQmyf0NupNPPSoMaqiAF5tDFafYsTkfeH4Q/HCKXkg4w== +css-tree@1.0.0-alpha.37: + version "1.0.0-alpha.37" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" + integrity sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg== dependencies: mdn-data "2.0.4" - source-map "^0.5.3" - -css-unit-converter@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" - integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= + source-map "^0.6.1" -css-what@2.1, css-what@^2.1.2: +css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== +css-what@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-3.2.1.tgz#f4a8f12421064621b456755e34a03a2c22df5da1" + integrity sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw== + css.escape@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" @@ -3455,12 +3529,12 @@ cssnano@^4.1.10: is-resolvable "^1.0.0" postcss "^7.0.0" -csso@^3.5.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" - integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg== +csso@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.0.2.tgz#e5f81ab3a56b8eefb7f0092ce7279329f454de3d" + integrity sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg== dependencies: - css-tree "1.0.0-alpha.29" + css-tree "1.0.0-alpha.37" cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@^0.3.4, cssom@~0.3.6: version "0.3.8" @@ -3468,9 +3542,9 @@ cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0", cssom@^0.3.4, cssom@~0.3.6: integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== cssom@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.1.tgz#b24111d236b6dbd00cdfacb5ab67a20473381fe3" - integrity sha512-6Aajq0XmukE7HdXUU6IoSWuH1H6gH9z6qmagsstTiN7cW2FNTsb+J2Chs+ufPgZCsV/yo8oaEudQLrb9dGxSVQ== + version "0.4.4" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" + integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== cssstyle@^1.0.0, cssstyle@^1.1.1: version "1.4.0" @@ -3480,16 +3554,16 @@ cssstyle@^1.0.0, cssstyle@^1.1.1: cssom "0.3.x" cssstyle@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.0.0.tgz#911f0fe25532db4f5d44afc83f89cc4b82c97fe3" - integrity sha512-QXSAu2WBsSRXCPjvI43Y40m6fMevvyRm8JVAuF9ksQz5jha4pWP1wpaK7Yu5oLFc6+XAY+hj8YhefyXcBB53gg== + version "2.2.0" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.2.0.tgz#e4c44debccd6b7911ed617a4395e5754bba59992" + integrity sha512-sEb3XFPx3jNnCAMtqrXPDeSgQr+jojtCeNf8cvMNMh1cG970+lljssvQDzPq6lmmJu2Vhqood/gtEomBiHOGnA== dependencies: cssom "~0.3.6" csstype@^2.2.0: - version "2.6.7" - resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.7.tgz#20b0024c20b6718f4eda3853a1f5a1cce7f5e4a5" - integrity sha512-9Mcn9sFbGBAdmimWb2gLVDtFJzeKtDGIr76TUqmjZrw9LFXBMSU70lcs+C0/7fyCd6iBDqmksUcCOUIkisPHsQ== + version "2.6.9" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.9.tgz#05141d0cd557a56b8891394c1911c40c8a98d098" + integrity sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q== cyclist@^1.0.1: version "1.0.1" @@ -3505,9 +3579,9 @@ d@1, d@^1.0.1: type "^1.0.1" damerau-levenshtein@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.5.tgz#780cf7144eb2e8dbd1c3bb83ae31100ccc31a414" - integrity sha512-CBCRqFnpu715iPmw1KrdOrzRqbdFwQTwAWyyyYS42+iAgHCuXZ+/TdMgQkUENPomxEz9z1BEzuQU2Xw0kUuAgA== + version "1.0.6" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz#143c1641cb3d85c60c32329e26899adea8701791" + integrity sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug== dashdash@^1.12.0: version "1.14.1" @@ -3525,12 +3599,7 @@ data-urls@^1.0.0, data-urls@^1.1.0: whatwg-mimetype "^2.2.0" whatwg-url "^7.0.0" -date-now@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" - integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= - -debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.8, debug@^2.6.9: +debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -3556,22 +3625,15 @@ decamelize@^1.2.0: resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= -decamelize@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-2.0.0.tgz#656d7bbc8094c4c788ea53c5840908c9c7d063c7" - integrity sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg== - dependencies: - xregexp "4.0.0" - decode-uri-component@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= -deep-equal@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.0.tgz#3103cdf8ab6d32cf4a8df7865458f2b8d33f3745" - integrity sha512-ZbfWJq/wN1Z273o7mUSjILYqehAktR2NVoSrOukDkU9kg2v/Uv89yU4Cvz8seJeAmtN5oqiefKq8FPuXOboqLw== +deep-equal@^1.0.1, deep-equal@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== dependencies: is-arguments "^1.0.4" is-date-object "^1.0.1" @@ -3627,17 +3689,18 @@ define-property@^2.0.2: is-descriptor "^1.0.2" isobject "^3.0.1" -del@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" - integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= +del@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/del/-/del-4.1.1.tgz#9e8f117222ea44a31ff3a156c049b99052a9f0b4" + integrity sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ== dependencies: + "@types/glob" "^7.1.1" globby "^6.1.0" - is-path-cwd "^1.0.0" - is-path-in-cwd "^1.0.0" - p-map "^1.1.1" - pify "^3.0.0" - rimraf "^2.2.8" + is-path-cwd "^2.0.0" + is-path-in-cwd "^2.0.0" + p-map "^2.0.0" + pify "^4.0.1" + rimraf "^2.6.3" delayed-stream@~1.0.0: version "1.0.0" @@ -3655,9 +3718,9 @@ depd@~1.1.2: integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= des.js@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" - integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= + version "1.0.1" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843" + integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA== dependencies: inherits "^2.0.1" minimalistic-assert "^1.0.0" @@ -3778,10 +3841,10 @@ dom-helpers@^3.4.0: dependencies: "@babel/runtime" "^7.1.2" -dom-serializer@0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.1.tgz#13650c850daffea35d8b626a4cfc4d3a17643fdb" - integrity sha512-sK3ujri04WyjwQXVoK4PU3y8ula1stq10GJZpqHIUgoGZdsGzAGu65BnU3d08aTVSvO7mGPZUc0wTEDL+qGE0Q== +dom-serializer@0, dom-serializer@^0.2.1: + version "0.2.2" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" + integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== dependencies: domelementtype "^2.0.1" entities "^2.0.0" @@ -3823,6 +3886,13 @@ domhandler@^2.3.0: dependencies: domelementtype "1" +domhandler@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" + integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== + dependencies: + domelementtype "^2.0.1" + domutils@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" @@ -3839,30 +3909,46 @@ domutils@^1.5.1, domutils@^1.7.0: dom-serializer "0" domelementtype "1" -dot-prop@^4.1.1: - version "4.2.0" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" - integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== +domutils@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.0.0.tgz#15b8278e37bfa8468d157478c58c367718133c08" + integrity sha512-n5SelJ1axbO636c2yUtOGia/IcJtVtlhQbFiVDBZHKV5ReJO1ViX7sFEemtuyoAnBxk5meNSYgA8V4s0271efg== + dependencies: + dom-serializer "^0.2.1" + domelementtype "^2.0.1" + domhandler "^3.0.0" + +dot-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" + integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== + dependencies: + no-case "^3.0.3" + tslib "^1.10.0" + +dot-prop@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb" + integrity sha512-uEUyaDKoSQ1M4Oq8l45hSE26SnTxL6snNnqvK/VWx5wJhmff5z0FUVJDKDanor/6w3kzE3i7XZOk+7wC0EXr1A== dependencies: - is-obj "^1.0.0" + is-obj "^2.0.0" dotenv-expand@5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== -dotenv@6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064" - integrity sha512-HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w== +dotenv@8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" + integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== downshift@^3.2.2: - version "3.3.5" - resolved "https://registry.yarnpkg.com/downshift/-/downshift-3.3.5.tgz#635f465ab45f577814a98901024873637649ce6f" - integrity sha512-OLBKLfP8cUaB7/wF0Al74v+znYOV/BG6hMGIj/JMuPcnNHQ/1WrF3btCZx+KnJcYtfMdQHEwWv0yC1cdPinyXw== + version "3.4.8" + resolved "https://registry.yarnpkg.com/downshift/-/downshift-3.4.8.tgz#06b7ad9e9c423a58e8a9049b2a00a5d19c7ef954" + integrity sha512-dZL3iNL/LbpHNzUQAaVq/eTD1ocnGKKjbAl/848Q0KEp6t81LJbS37w3f93oD6gqqAnjdgM7Use36qZSipHXBw== dependencies: "@babel/runtime" "^7.4.5" - "@reach/auto-id" "^0.2.0" compute-scroll-into-view "^1.0.9" prop-types "^15.7.2" react-is "^16.9.0" @@ -3895,15 +3981,15 @@ ee-first@1.1.1: resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= -electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.284: - version "1.3.284" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.284.tgz#b24359fa4f49b3a7c52afc005d59ec3aa9f6796e" - integrity sha512-duOA4IWKH4R8ttiE8q/7xfg6eheRvMKlGqOOcGlDukdHEDJ26Wf7cMrCiK9Am11mswR6E/a23jXVA4UPDthTIw== +electron-to-chromium@^1.3.378: + version "1.3.380" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.380.tgz#1e1f07091b42b54bccd0ad6d3a14f2b73b60dc9d" + integrity sha512-2jhQxJKcjcSpVOQm0NAfuLq8o+130blrcawoumdXT6411xG/xIAOyZodO/y7WTaYlz/NHe3sCCAe/cJLnDsqTw== elliptic@^6.0.0: - version "6.5.1" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.1.tgz#c380f5f909bf1b9b4428d028cd18d3b0efd6b52b" - integrity sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg== + version "6.5.2" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762" + integrity sha512-f4x70okzZbIQl/NSRLkI/+tteV/9WqL98zx+SQ69KbXxmVrmjwsNUPn/gYJJ0sHvEak24cZgHIPegRePAtA/xw== dependencies: bn.js "^4.4.0" brorand "^1.0.1" @@ -3918,23 +4004,26 @@ emoji-regex@^7.0.1, emoji-regex@^7.0.2: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + emojis-list@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= +emojis-list@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" + integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== + encodeurl@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= -encoding@^0.1.11: - version "0.1.12" - resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb" - integrity sha1-U4tm8+5izRq1HsMjgp0flIDHS+s= - dependencies: - iconv-lite "~0.4.13" - end-of-stream@^1.0.0, end-of-stream@^1.1.0: version "1.4.4" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" @@ -3962,73 +4051,75 @@ entities@^2.0.0: integrity sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw== enzyme-adapter-react-16@^1.15.1: - version "1.15.1" - resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.1.tgz#8ad55332be7091dc53a25d7d38b3485fc2ba50d5" - integrity sha512-yMPxrP3vjJP+4wL/qqfkT6JAIctcwKF+zXO6utlGPgUJT2l4tzrdjMDWGd/Pp1BjHBcljhN24OzNEGRteibJhA== + version "1.15.2" + resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.15.2.tgz#b16db2f0ea424d58a808f9df86ab6212895a4501" + integrity sha512-SkvDrb8xU3lSxID8Qic9rB8pvevDbLybxPK6D/vW7PrT0s2Cl/zJYuXvsd1EBTz0q4o3iqG3FJhpYz3nUNpM2Q== dependencies: - enzyme-adapter-utils "^1.12.1" - enzyme-shallow-equal "^1.0.0" + enzyme-adapter-utils "^1.13.0" + enzyme-shallow-equal "^1.0.1" has "^1.0.3" object.assign "^4.1.0" - object.values "^1.1.0" + object.values "^1.1.1" prop-types "^15.7.2" - react-is "^16.10.2" + react-is "^16.12.0" react-test-renderer "^16.0.0-0" semver "^5.7.0" -enzyme-adapter-utils@^1.12.1: - version "1.12.1" - resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.12.1.tgz#e828e0d038e2b1efa4b9619ce896226f85c9dd88" - integrity sha512-KWiHzSjZaLEoDCOxY8Z1RAbUResbqKN5bZvenPbfKtWorJFVETUw754ebkuCQ3JKm0adx1kF8JaiR+PHPiP47g== +enzyme-adapter-utils@^1.13.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/enzyme-adapter-utils/-/enzyme-adapter-utils-1.13.0.tgz#01c885dde2114b4690bf741f8dc94cee3060eb78" + integrity sha512-YuEtfQp76Lj5TG1NvtP2eGJnFKogk/zT70fyYHXK2j3v6CtuHqc8YmgH/vaiBfL8K1SgVVbQXtTcgQZFwzTVyQ== dependencies: airbnb-prop-types "^2.15.0" - function.prototype.name "^1.1.1" + function.prototype.name "^1.1.2" object.assign "^4.1.0" - object.fromentries "^2.0.1" + object.fromentries "^2.0.2" prop-types "^15.7.2" - semver "^5.7.0" + semver "^5.7.1" -enzyme-shallow-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.0.tgz#d8e4603495e6ea279038eef05a4bf4887b55dc69" - integrity sha512-VUf+q5o1EIv2ZaloNQQtWCJM9gpeux6vudGVH6vLmfPXFLRuxl5+Aq3U260wof9nn0b0i+P5OEUXm1vnxkRpXQ== +enzyme-shallow-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/enzyme-shallow-equal/-/enzyme-shallow-equal-1.0.1.tgz#7afe03db3801c9b76de8440694096412a8d9d49e" + integrity sha512-hGA3i1so8OrYOZSM9whlkNmVHOicJpsjgTzC+wn2JMJXhq1oO4kA4bJ5MsfzSIcC71aLDKzJ6gZpIxrqt3QTAQ== dependencies: has "^1.0.3" - object-is "^1.0.1" + object-is "^1.0.2" enzyme-to-json@^3.4.3: - version "3.4.3" - resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.4.3.tgz#ed4386f48768ed29e2d1a2910893542c34e7e0af" - integrity sha512-jqNEZlHqLdz7OTpXSzzghArSS3vigj67IU/fWkPyl1c0TCj9P5s6Ze0kRkYZWNEoCqCR79xlQbigYlMx5erh8A== + version "3.4.4" + resolved "https://registry.yarnpkg.com/enzyme-to-json/-/enzyme-to-json-3.4.4.tgz#b30726c59091d273521b6568c859e8831e94d00e" + integrity sha512-50LELP/SCPJJGic5rAARvU7pgE3m1YaNj7JLM+Qkhl5t7PAs6fiyc8xzc50RnkKPFQCv0EeFVjEWdIFRGPWMsA== dependencies: lodash "^4.17.15" + react-is "^16.12.0" enzyme@^3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.10.0.tgz#7218e347c4a7746e133f8e964aada4a3523452f6" - integrity sha512-p2yy9Y7t/PFbPoTvrWde7JIYB2ZyGC+NgTNbVEGvZ5/EyoYSr9aG/2rSbVvyNvMHEhw9/dmGUJHWtfQIEiX9pg== - dependencies: - array.prototype.flat "^1.2.1" - cheerio "^1.0.0-rc.2" - function.prototype.name "^1.1.0" + version "3.11.0" + resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-3.11.0.tgz#71d680c580fe9349f6f5ac6c775bc3e6b7a79c28" + integrity sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw== + dependencies: + array.prototype.flat "^1.2.3" + cheerio "^1.0.0-rc.3" + enzyme-shallow-equal "^1.0.1" + function.prototype.name "^1.1.2" has "^1.0.3" - html-element-map "^1.0.0" - is-boolean-object "^1.0.0" - is-callable "^1.1.4" - is-number-object "^1.0.3" - is-regex "^1.0.4" - is-string "^1.0.4" + html-element-map "^1.2.0" + is-boolean-object "^1.0.1" + is-callable "^1.1.5" + is-number-object "^1.0.4" + is-regex "^1.0.5" + is-string "^1.0.5" is-subset "^0.1.1" lodash.escape "^4.0.1" lodash.isequal "^4.5.0" - object-inspect "^1.6.0" - object-is "^1.0.1" + object-inspect "^1.7.0" + object-is "^1.0.2" object.assign "^4.1.0" - object.entries "^1.0.4" - object.values "^1.0.4" - raf "^3.4.0" + object.entries "^1.1.1" + object.values "^1.1.1" + raf "^3.4.1" rst-selector-parser "^2.2.3" - string.prototype.trim "^1.1.2" + string.prototype.trim "^1.2.1" errno@^0.1.3, errno@~0.1.7: version "0.1.7" @@ -4044,55 +4135,40 @@ error-ex@^1.2.0, error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.12.0, es-abstract@^1.15.0, es-abstract@^1.5.1, es-abstract@^1.7.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.15.0.tgz#8884928ec7e40a79e3c9bc812d37d10c8b24cc57" - integrity sha512-bhkEqWJ2t2lMeaJDuk7okMkJWI/yqgH/EoGwpcvv0XW9RWQsRspI4wt6xuyuvMvvQE3gg/D9HXppgk21w78GyQ== - dependencies: - es-to-primitive "^1.2.0" - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.0" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-inspect "^1.6.0" - object-keys "^1.1.1" - string.prototype.trimleft "^2.1.0" - string.prototype.trimright "^2.1.0" - -es-abstract@^1.13.0: - version "1.16.0" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.16.0.tgz#d3a26dc9c3283ac9750dca569586e976d9dcc06d" - integrity sha512-xdQnfykZ9JMEiasTAJZJdMWCQ1Vm00NBw79/AWi7ELfZuuPCSOMDZbT9mkOfSctVtfhb+sAAzrm+j//GjjLHLg== +es-abstract@^1.17.0, es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.4: + version "1.17.4" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.4.tgz#e3aedf19706b20e7c2594c35fc0d57605a79e184" + integrity sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ== dependencies: - es-to-primitive "^1.2.0" + es-to-primitive "^1.2.1" function-bind "^1.1.1" has "^1.0.3" - has-symbols "^1.0.0" - is-callable "^1.1.4" - is-regex "^1.0.4" - object-inspect "^1.6.0" + has-symbols "^1.0.1" + is-callable "^1.1.5" + is-regex "^1.0.5" + object-inspect "^1.7.0" object-keys "^1.1.1" - string.prototype.trimleft "^2.1.0" - string.prototype.trimright "^2.1.0" + object.assign "^4.1.0" + string.prototype.trimleft "^2.1.1" + string.prototype.trimright "^2.1.1" -es-to-primitive@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" - integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== dependencies: is-callable "^1.1.4" is-date-object "^1.0.1" is-symbol "^1.0.2" -es5-ext@^0.10.35, es5-ext@^0.10.50, es5-ext@^0.10.51: - version "0.10.51" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.51.tgz#ed2d7d9d48a12df86e0299287e93a09ff478842f" - integrity sha512-oRpWzM2WcLHVKpnrcyB7OW8j/s67Ba04JCm0WnNv3RiABSvs7mrQlutB8DBv793gKcp0XENR8Il8WxGTlZ73gQ== +es5-ext@^0.10.35, es5-ext@^0.10.50: + version "0.10.53" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" + integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== dependencies: es6-iterator "~2.0.3" - es6-symbol "~3.1.1" - next-tick "^1.0.0" + es6-symbol "~3.1.3" + next-tick "~1.0.0" es6-iterator@2.0.3, es6-iterator@~2.0.3: version "2.0.3" @@ -4103,30 +4179,35 @@ es6-iterator@2.0.3, es6-iterator@~2.0.3: es5-ext "^0.10.35" es6-symbol "^3.1.1" -es6-symbol@^3.1.1, es6-symbol@~3.1.1: - version "3.1.2" - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.2.tgz#859fdd34f32e905ff06d752e7171ddd4444a7ed1" - integrity sha512-/ZypxQsArlv+KHpGvng52/Iz8by3EQPxhmbuz8yFG89N/caTFBSbcXONDw0aMjy827gQg26XAjP4uXFvnfINmQ== +es6-symbol@^3.1.1, es6-symbol@~3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" + integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== dependencies: d "^1.0.1" - es5-ext "^0.10.51" + ext "^1.1.2" escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= -escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: +escape-string-regexp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" + integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= escodegen@^1.11.0, escodegen@^1.11.1, escodegen@^1.9.1: - version "1.12.0" - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541" - integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg== + version "1.14.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.1.tgz#ba01d0c8278b5e95a9a45350142026659027a457" + integrity sha512-Bmt7NcRySdIfNPfU2ZoXDrrXsG9ZjvDxcAlMfDUgRBjLOWTuIACXPBFJH7Z+cLb40JeQco5toikyc9t9P8E9SQ== dependencies: - esprima "^3.1.3" + esprima "^4.0.1" estraverse "^4.2.0" esutils "^2.0.2" optionator "^0.8.1" @@ -4134,69 +4215,77 @@ escodegen@^1.11.0, escodegen@^1.11.1, escodegen@^1.9.1: source-map "~0.6.1" eslint-config-prettier@^6.4.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.4.0.tgz#0a04f147e31d33c6c161b2dd0971418ac52d0477" - integrity sha512-YrKucoFdc7SEko5Sxe4r6ixqXPDP1tunGw91POeZTTRKItf/AMFYt/YLEQtZMkR2LVpAVhcAcZgcWpm1oGPW7w== + version "6.10.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-6.10.0.tgz#7b15e303bf9c956875c948f6b21500e48ded6a7f" + integrity sha512-AtndijGte1rPILInUdHjvKEGbIV06NuvPrqlIEaEaWtbtvJh464mDeyGMdZEQMsGvC0ZVkiex1fSNcC4HAbRGg== dependencies: get-stdin "^6.0.0" -eslint-config-react-app@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-5.0.2.tgz#df40d73a1402986030680c040bbee520db5a32a4" - integrity sha512-VhlESAQM83uULJ9jsvcKxx2Ab0yrmjUt8kDz5DyhTQufqWE0ssAnejlWri5LXv25xoXfdqOyeDPdfJS9dXKagQ== +eslint-config-react-app@^5.0.2, eslint-config-react-app@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz#698bf7aeee27f0cea0139eaef261c7bf7dd623df" + integrity sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ== dependencies: confusing-browser-globals "^1.0.9" eslint-import-resolver-node@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" - integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + version "0.3.3" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.3.tgz#dbaa52b6b2816b50bc6711af75422de808e98404" + integrity sha512-b8crLDo0M5RSe5YG8Pu2DYBj71tSB6OvXkfzwbJU2w7y8P4/yo0MyF8jU26IEuEuHF2K5/gcAJE3LhQGqBBbVg== dependencies: debug "^2.6.9" - resolve "^1.5.0" + resolve "^1.13.1" -eslint-loader@3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-3.0.2.tgz#5a627316a51d6f41d357b9f6f0554e91506cdd6e" - integrity sha512-S5VnD+UpVY1PyYRqeBd/4pgsmkvSokbHqTXAQMpvCyRr3XN2tvSLo9spm2nEpqQqh9dezw3os/0zWihLeOg2Rw== +eslint-loader@3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-3.0.3.tgz#e018e3d2722381d982b1201adb56819c73b480ca" + integrity sha512-+YRqB95PnNvxNp1HEjQmvf9KNvCin5HXYYseOXVC2U0KEcw4IkQ2IQEBG46j7+gW39bMzeu0GsUhVbBY3Votpw== dependencies: fs-extra "^8.1.0" loader-fs-cache "^1.0.2" loader-utils "^1.2.3" - object-hash "^1.3.1" - schema-utils "^2.2.0" + object-hash "^2.0.1" + schema-utils "^2.6.1" -eslint-module-utils@^2.4.0: - version "2.4.1" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.1.tgz#7b4675875bf96b0dbf1b21977456e5bb1f5e018c" - integrity sha512-H6DOj+ejw7Tesdgbfs4jeS4YMFrT8uI8xwd1gtQqXssaR0EQ26L+2O/w6wkYFy2MymON0fTwHmXBvvfLNZVZEw== +eslint-module-utils@^2.4.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz#7878f7504824e1b857dd2505b59a8e5eda26a708" + integrity sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q== dependencies: - debug "^2.6.8" + debug "^2.6.9" pkg-dir "^2.0.0" -eslint-plugin-flowtype@3.13.0, eslint-plugin-flowtype@3.x: +eslint-plugin-flowtype@3.x: version "3.13.0" resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-3.13.0.tgz#e241ebd39c0ce519345a3f074ec1ebde4cf80f2c" integrity sha512-bhewp36P+t7cEV0b6OdmoRWJCBYRiHFlqPZAG1oS3SF+Y0LQkeDvFSM4oxoxvczD1OdONCXMlJfQFiWLcV9urw== dependencies: lodash "^4.17.15" -eslint-plugin-import@2.18.2, eslint-plugin-import@2.x: - version "2.18.2" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.18.2.tgz#02f1180b90b077b33d447a17a2326ceb400aceb6" - integrity sha512-5ohpsHAiUBRNaBWAF08izwUGlbrJoJJ+W9/TBwsGoR1MnlgfwMIKrFeSjWbt6moabiXW9xNvtFz+97KHRfI4HQ== +eslint-plugin-flowtype@4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.6.0.tgz#82b2bd6f21770e0e5deede0228e456cb35308451" + integrity sha512-W5hLjpFfZyZsXfo5anlu7HM970JBDqbEshAJUkeczP6BFCIfJXuiIBQXyberLRtOStT0OGPF8efeTbxlHk4LpQ== + dependencies: + lodash "^4.17.15" + +eslint-plugin-import@2.20.1, eslint-plugin-import@2.x: + version "2.20.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.20.1.tgz#802423196dcb11d9ce8435a5fc02a6d3b46939b3" + integrity sha512-qQHgFOTjguR+LnYRoToeZWT62XM55MBVXObHM6SKFd1VzDcX/vqT1kAz8ssqigh5eMj8qXcRoXXGZpPP6RfdCw== dependencies: array-includes "^3.0.3" + array.prototype.flat "^1.2.1" contains-path "^0.1.0" debug "^2.6.9" doctrine "1.5.0" eslint-import-resolver-node "^0.3.2" - eslint-module-utils "^2.4.0" + eslint-module-utils "^2.4.1" has "^1.0.3" minimatch "^3.0.4" object.values "^1.1.0" read-pkg-up "^2.0.0" - resolve "^1.11.0" + resolve "^1.12.0" eslint-plugin-jsx-a11y@6.2.3, eslint-plugin-jsx-a11y@6.x: version "6.2.3" @@ -4214,9 +4303,9 @@ eslint-plugin-jsx-a11y@6.2.3, eslint-plugin-jsx-a11y@6.x: jsx-ast-utils "^2.2.1" eslint-plugin-prettier@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.1.tgz#507b8562410d02a03f0ddc949c616f877852f2ba" - integrity sha512-A+TZuHZ0KU0cnn56/9mfR7/KjUJ9QNVXUhwvRFSR7PGPe0zQR6PTkmyqg1AtUUEOzTqeRsUwyKFh0oVZKVCrtA== + version "3.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.2.tgz#432e5a667666ab84ce72f945c72f77d996a5c9ba" + integrity sha512-GlolCC9y3XZfv3RQfwGew7NnuFDKsfI4lbvRK+PIIo23SFH+LemGs4cKwzAaRa+Mdb+lQO/STaIayno8T5sJJA== dependencies: prettier-linter-helpers "^1.0.0" @@ -4225,35 +4314,23 @@ eslint-plugin-react-hooks@1.x, eslint-plugin-react-hooks@^1.6.1: resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04" integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA== -eslint-plugin-react@7.14.3: - version "7.14.3" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.14.3.tgz#911030dd7e98ba49e1b2208599571846a66bdf13" - integrity sha512-EzdyyBWC4Uz2hPYBiEJrKCUi2Fn+BJ9B/pJQcjw5X+x/H2Nm59S4MJIvL4O5NEE0+WbnQwEBxWY03oUk+Bc3FA== - dependencies: - array-includes "^3.0.3" - doctrine "^2.1.0" - has "^1.0.3" - jsx-ast-utils "^2.1.0" - object.entries "^1.1.0" - object.fromentries "^2.0.0" - object.values "^1.1.0" - prop-types "^15.7.2" - resolve "^1.10.1" - -eslint-plugin-react@7.x: - version "7.16.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09" - integrity sha512-GacBAATewhhptbK3/vTP09CbFrgUJmBSaaRcWdbQLFvUZy9yVcQxigBNHGPU/KE2AyHpzj3AWXpxoMTsIDiHug== +eslint-plugin-react@7.19.0, eslint-plugin-react@7.x: + version "7.19.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.19.0.tgz#6d08f9673628aa69c5559d33489e855d83551666" + integrity sha512-SPT8j72CGuAP+JFbT0sJHOB80TX/pu44gQ4vXH/cq+hQTiY2PuZ6IHkqXJV6x1b28GDdo1lbInjKUrrdUf0LOQ== dependencies: - array-includes "^3.0.3" + array-includes "^3.1.1" doctrine "^2.1.0" has "^1.0.3" - jsx-ast-utils "^2.2.1" - object.entries "^1.1.0" - object.fromentries "^2.0.0" - object.values "^1.1.0" + jsx-ast-utils "^2.2.3" + object.entries "^1.1.1" + object.fromentries "^2.0.2" + object.values "^1.1.1" prop-types "^15.7.2" - resolve "^1.12.0" + resolve "^1.15.1" + semver "^6.3.0" + string.prototype.matchall "^4.0.2" + xregexp "^4.3.0" eslint-scope@^4.0.3: version "4.0.3" @@ -4271,22 +4348,22 @@ eslint-scope@^5.0.0: esrecurse "^4.1.0" estraverse "^4.1.1" -eslint-utils@^1.4.2: - version "1.4.2" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab" - integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q== +eslint-utils@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" + integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== dependencies: - eslint-visitor-keys "^1.0.0" + eslint-visitor-keys "^1.1.0" eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2" integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A== -eslint@6.x, eslint@^6.1.0: - version "6.5.1" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.5.1.tgz#828e4c469697d43bb586144be152198b91e96ed6" - integrity sha512-32h99BoLYStT1iq1v2P9uwpyznQ4M2jRiFB6acitKz52Gqn+vPaMDUTB1bYi1WN4Nquj2w+t+bimYUG83DC55A== +eslint@6.x, eslint@^6.6.0: + version "6.8.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb" + integrity sha512-K+Iayyo2LtyYhDSYwz5D5QdWw0hCacNzyq1Y821Xna2xSJj7cijoLLYmLxTQgcgZ9mC61nryMy9S7GRbYpI5Ig== dependencies: "@babel/code-frame" "^7.0.0" ajv "^6.10.0" @@ -4295,19 +4372,19 @@ eslint@6.x, eslint@^6.1.0: debug "^4.0.1" doctrine "^3.0.0" eslint-scope "^5.0.0" - eslint-utils "^1.4.2" + eslint-utils "^1.4.3" eslint-visitor-keys "^1.1.0" - espree "^6.1.1" + espree "^6.1.2" esquery "^1.0.1" esutils "^2.0.2" file-entry-cache "^5.0.1" functional-red-black-tree "^1.0.1" glob-parent "^5.0.0" - globals "^11.7.0" + globals "^12.1.0" ignore "^4.0.6" import-fresh "^3.0.0" imurmurhash "^0.1.4" - inquirer "^6.4.1" + inquirer "^7.0.0" is-glob "^4.0.0" js-yaml "^3.13.1" json-stable-stringify-without-jsonify "^1.0.1" @@ -4316,7 +4393,7 @@ eslint@6.x, eslint@^6.1.0: minimatch "^3.0.4" mkdirp "^0.5.1" natural-compare "^1.4.0" - optionator "^0.8.2" + optionator "^0.8.3" progress "^2.0.0" regexpp "^2.0.1" semver "^6.1.2" @@ -4326,29 +4403,24 @@ eslint@6.x, eslint@^6.1.0: text-table "^0.2.0" v8-compile-cache "^2.0.3" -espree@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.1.tgz#7f80e5f7257fc47db450022d723e356daeb1e5de" - integrity sha512-EYbr8XZUhWbYCqQRW0duU5LxzL5bETN6AjKBGy1302qqzPaCH10QbRg3Wvco79Z8x9WbiE8HYB4e75xl6qUYvQ== +espree@^6.1.2: + version "6.2.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-6.2.1.tgz#77fc72e1fd744a2052c20f38a5b575832e82734a" + integrity sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw== dependencies: - acorn "^7.0.0" - acorn-jsx "^5.0.2" + acorn "^7.1.1" + acorn-jsx "^5.2.0" eslint-visitor-keys "^1.1.0" -esprima@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= - -esprima@^4.0.0: +esprima@^4.0.0, esprima@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== esquery@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" - integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + version "1.1.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.1.0.tgz#c5c0b66f383e7656404f86b31334d72524eddb48" + integrity sha512-MxYW9xKmROWF672KqjO75sszsA8Mxhw06YFeS5VHlB98KDHbOSurm3ArsjO60Eaf3QmGMCP1yn+0JQkNLo/97Q== dependencies: estraverse "^4.0.0" @@ -4364,7 +4436,7 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== -esutils@^2.0.0, esutils@^2.0.2: +esutils@^2.0.2: version "2.0.3" resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== @@ -4380,9 +4452,9 @@ eventemitter3@^4.0.0: integrity sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg== events@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" - integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== + version "3.1.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.1.0.tgz#84279af1b34cb75aa88bf5ff291f6d0bd9b31a59" + integrity sha512-Rv+u8MLHNOdMjTAFeT3nCjHn2aGlx435FP/sDHNaRhDEMwyI/aB22Kj2qIN8R0cw3z28psEQLYwxVKLsKrMgWg== eventsource@^1.0.7: version "1.0.7" @@ -4400,9 +4472,9 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: safe-buffer "^5.1.1" exec-sh@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b" - integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg== + version "0.3.4" + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" + integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== execa@^1.0.0: version "1.0.0" @@ -4447,7 +4519,7 @@ expect@^24.9.0: jest-message-util "^24.9.0" jest-regex-util "^24.9.0" -express@^4.16.2: +express@^4.17.1: version "4.17.1" resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== @@ -4483,6 +4555,13 @@ express@^4.16.2: utils-merge "1.0.1" vary "~1.1.2" +ext@^1.1.2: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" + integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== + dependencies: + type "^2.0.0" + extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" @@ -4536,10 +4615,10 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fast-deep-equal@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" - integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= +fast-deep-equal@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4" + integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA== fast-diff@^1.1.2: version "1.2.0" @@ -4559,11 +4638,11 @@ fast-glob@^2.0.2: micromatch "^3.1.10" fast-json-stable-stringify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" - integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== -fast-levenshtein@~2.0.4: +fast-levenshtein@~2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= @@ -4583,34 +4662,21 @@ faye-websocket@~0.11.1: websocket-driver ">=0.5.1" fb-watchman@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.0.tgz#54e9abf7dfa2f26cd9b1636c588c1afc05de5d58" - integrity sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg= - dependencies: - bser "^2.0.0" - -fbjs@^0.8.0: - version "0.8.17" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd" - integrity sha1-xNWY6taUkRJlPWWIsBpc3Nn5D90= + version "2.0.1" + resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" + integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== dependencies: - core-js "^1.0.0" - isomorphic-fetch "^2.1.1" - loose-envify "^1.0.0" - object-assign "^4.1.0" - promise "^7.1.1" - setimmediate "^1.0.5" - ua-parser-js "^0.7.18" + bser "2.1.1" figgy-pudding@^3.5.1: version "3.5.1" resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= +figures@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" @@ -4621,18 +4687,23 @@ file-entry-cache@^5.0.1: dependencies: flat-cache "^2.0.1" -file-loader@3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-3.0.1.tgz#f8e0ba0b599918b51adfe45d66d1e771ad560faa" - integrity sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw== +file-loader@4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af" + integrity sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA== dependencies: - loader-utils "^1.0.2" - schema-utils "^1.0.0" + loader-utils "^1.2.3" + schema-utils "^2.5.0" -filesize@3.6.1: - version "3.6.1" - resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317" - integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg== +file-uri-to-path@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" + integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== + +filesize@6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/filesize/-/filesize-6.0.1.tgz#f850b509909c7c86f7e450ea19006c31c2ed3d2f" + integrity sha512-u4AYWPgbI5GBhs6id1KdImZWn5yfyFrrQ8OWZdN7ZMfA8Bf4HcO0BGo9bmUIEV8yrp8I1xVfJ/dn90GtFNNJcg== fill-range@^4.0.0: version "4.0.0" @@ -4673,7 +4744,7 @@ find-cache-dir@^0.1.1: mkdirp "^0.5.1" pkg-dir "^1.0.0" -find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: +find-cache-dir@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== @@ -4682,12 +4753,22 @@ find-cache-dir@^2.0.0, find-cache-dir@^2.1.0: make-dir "^2.0.0" pkg-dir "^3.0.0" -find-up@3.0.0, find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== +find-cache-dir@^3.2.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880" + integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ== dependencies: - locate-path "^3.0.0" + commondir "^1.0.1" + make-dir "^3.0.2" + pkg-dir "^4.1.0" + +find-up@4.1.0, find-up@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" + integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== + dependencies: + locate-path "^5.0.0" + path-exists "^4.0.0" find-up@^1.0.0: version "1.1.2" @@ -4704,6 +4785,13 @@ find-up@^2.0.0, find-up@^2.1.0: dependencies: locate-path "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + flat-cache@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" @@ -4719,9 +4807,9 @@ flatted@^2.0.0: integrity sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg== flatten@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.2.tgz#dae46a9d78fbe25292258cc1e780a41d95c03782" - integrity sha1-2uRqnXj74lKSJYzB54CkHZXAN4I= + version "1.0.3" + resolved "https://registry.yarnpkg.com/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" + integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== flush-write-stream@^1.0.0: version "1.1.1" @@ -4732,9 +4820,9 @@ flush-write-stream@^1.0.0: readable-stream "^2.3.6" follow-redirects@^1.0.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.9.0.tgz#8d5bcdc65b7108fe1508649c79c12d732dcedb4f" - integrity sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A== + version "1.10.0" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.10.0.tgz#01f5263aee921c6a54fb91667f08f4155ce169eb" + integrity sha512-4eyLK6s6lH32nOvLLwlIOnr9zrL8Sm+OvW4pVTJNoXeGzYIkHVf+pADQi+OJ0E67hiuSLezPVPyBcIZO50TmmQ== dependencies: debug "^3.0.0" @@ -4760,14 +4848,14 @@ forever-agent@~0.6.1: resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= -fork-ts-checker-webpack-plugin@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c" - integrity sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA== +fork-ts-checker-webpack-plugin@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.1.tgz#a1642c0d3e65f50c2cc1742e9c0a80f441f86b19" + integrity sha512-DuVkPNrM12jR41KM2e+N+styka0EgLkTnXmNcXdgOM37vtGeY+oCBK/Jx0hzSeEU6memFCtWb4htrHPMDfwwUQ== dependencies: babel-code-frame "^6.22.0" chalk "^2.4.1" - chokidar "^2.0.4" + chokidar "^3.3.0" micromatch "^3.1.10" minimatch "^3.0.4" semver "^5.6.0" @@ -4808,19 +4896,19 @@ from2@^2.1.0: inherits "^2.0.1" readable-stream "^2.0.0" -fs-extra@7.0.1, fs-extra@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== +fs-extra@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== dependencies: graceful-fs "^4.1.2" jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^4.0.2: - version "4.0.3" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" - integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== +fs-extra@^7.0.0: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== dependencies: graceful-fs "^4.1.2" jsonfile "^4.0.0" @@ -4842,6 +4930,13 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.6.0" +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + fs-write-stream-atomic@^1.0.8: version "1.0.10" resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" @@ -4857,48 +4952,42 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -fsevents@2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a" - integrity sha512-a7YT0SV3RB+DjYcppwVDLtn13UQnmg0SWZS7ezZD0UjnLwXmy8Zm21GMVGLaFGimIqcvyMQaOJBrop8MyOp1kQ== +fsevents@2.1.2, fsevents@~2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.2.tgz#4c0a1fb34bc68e543b4b82a9ec392bfbda840805" + integrity sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA== fsevents@^1.2.7: - version "1.2.9" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" - integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== + version "1.2.12" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.12.tgz#db7e0d8ec3b0b45724fd4d83d43554a8f1f0de5c" + integrity sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q== dependencies: + bindings "^1.5.0" nan "^2.12.1" - node-pre-gyp "^0.12.0" - -fsevents@~2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.1.tgz#74c64e21df71721845d0c44fe54b7f56b82995a9" - integrity sha512-4FRPXWETxtigtJW/gxzEDsX1LVbPAM93VleB83kZB+ellqbHMkyt2aJfuzNLRvFPnGi6bcE5SvfxgbXPeKteJw== function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== -function.prototype.name@^1.1.0, function.prototype.name@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.1.tgz#6d252350803085abc2ad423d4fe3be2f9cbda392" - integrity sha512-e1NzkiJuw6xqVH7YSdiW/qDHebcmMhPNe6w+4ZYYEg0VA+LaLzx37RimbPLuonHhYGFGPx1ME2nSi74JiaCr/Q== +function.prototype.name@^1.1.1, function.prototype.name@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.2.tgz#5cdf79d7c05db401591dfde83e3b70c5123e9a45" + integrity sha512-C8A+LlHBJjB2AdcRPorc5JvJ5VUoWlXdEHLOJdCI7kjHEtGTpHQUiqMvCIKUwIsGwZX2jZJy761AXsn356bJQg== dependencies: define-properties "^1.1.3" - function-bind "^1.1.1" - functions-have-names "^1.1.1" - is-callable "^1.1.4" + es-abstract "^1.17.0-next.1" + functions-have-names "^1.2.0" functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= -functions-have-names@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.0.tgz#83da7583e4ea0c9ac5ff530f73394b033e0bf77d" - integrity sha512-zKXyzksTeaCSw5wIX79iCA40YAa6CJMJgNg9wdkU/ERBrIdPSimPICYiLp65lRbSBqtiHql/HZfS2DyI/AH6tQ== +functions-have-names@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.1.tgz#a981ac397fa0c9964551402cdc5533d7a4d52f91" + integrity sha512-j48B/ZI7VKs3sgeI2cZp7WXWmZXu7Iq5pl5/vptV5N2mq+DGFuS/ulaDjtaoLpYzuD6u8UgrUKHfgo7fDTSiBA== fuzzy@^0.1.3: version "0.1.3" @@ -4919,6 +5008,11 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" +gensync@^1.0.0-beta.1: + version "1.0.0-beta.1" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" + integrity sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg== + get-caller-file@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" @@ -4930,9 +5024,9 @@ get-caller-file@^2.0.1: integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-own-enumerable-property-symbols@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.1.tgz#6f7764f88ea11e0b514bd9bd860a132259992ca4" - integrity sha512-09/VS4iek66Dh2bctjRkowueRJbY1JDGR1L/zRxO1Qk8Uxs6PnqaNSqalpizPT+CDjre3hnEsuzvhgomz9qYrA== + version "3.0.2" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664" + integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== get-stdin@^6.0.0: version "6.0.0" @@ -4978,10 +5072,10 @@ glob-to-regexp@^0.3.0: resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= -glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: - version "7.1.4" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" - integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== +glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6: + version "7.1.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" + integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== dependencies: fs.realpath "^1.0.0" inflight "^1.0.4" @@ -5006,11 +5100,18 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -globals@^11.1.0, globals@^11.7.0: +globals@^11.1.0: version "11.12.0" resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== +globals@^12.1.0: + version "12.4.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== + dependencies: + type-fest "^0.8.1" + globby@8.0.2: version "8.0.2" resolved "https://registry.yarnpkg.com/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d" @@ -5035,10 +5136,10 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" - integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== +graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2: + version "4.2.3" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" + integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== growly@^1.3.0: version "1.3.0" @@ -5063,23 +5164,12 @@ handle-thing@^2.0.0: resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754" integrity sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ== -handlebars@^4.1.2: - version "4.4.3" - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.4.3.tgz#180bae52c1d0e9ec0c15d7e82a4362d662762f6e" - integrity sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw== - dependencies: - neo-async "^2.6.0" - optimist "^0.6.1" - source-map "^0.6.1" - optionalDependencies: - uglify-js "^3.1.4" - har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= -har-validator@~5.1.0: +har-validator@~5.1.3: version "5.1.3" resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== @@ -5104,10 +5194,15 @@ has-flag@^3.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= -has-symbols@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" - integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-symbols@^1.0.0, has-symbols@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" + integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== has-unicode@^2.0.0: version "2.0.1" @@ -5145,7 +5240,7 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -has@^1.0.0, has@^1.0.1, has@^1.0.3: +has@^1.0.0, has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== @@ -5168,7 +5263,7 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -he@1.2.x: +he@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== @@ -5188,9 +5283,9 @@ hmac-drbg@^1.0.0: minimalistic-crypto-utils "^1.0.1" hosted-git-info@^2.1.4: - version "2.8.5" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c" - integrity sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg== + version "2.8.8" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" + integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== hpack.js@^2.1.6: version "2.1.6" @@ -5217,10 +5312,10 @@ html-comment-regex@^1.1.0: resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== -html-element-map@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.1.0.tgz#e5aab9a834caf883b421f8bd9eaedcaac887d63c" - integrity sha512-iqiG3dTZmy+uUaTmHarTL+3/A2VW9ox/9uasKEZC+R/wAtUrTcRlXPSaPqsnWPfIu8wqn09jQNwMRqzL54jSYA== +html-element-map@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/html-element-map/-/html-element-map-1.2.0.tgz#dfbb09efe882806af63d990cf6db37993f099f22" + integrity sha512-0uXq8HsuG1v2TmQ8QkIhzbrqeskE4kn52Q18QJ9iAA/SnHoEKXWiUxHQtclRsCFWEUD2So34X+0+pZZu862nnw== dependencies: array-filter "^1.0.0" @@ -5231,37 +5326,42 @@ html-encoding-sniffer@^1.0.2: dependencies: whatwg-encoding "^1.0.1" -html-entities@^1.2.0: +html-entities@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-1.2.1.tgz#0df29351f0721163515dfb9e5543e5f6eed5162f" integrity sha1-DfKTUfByEWNRXfueVUPl9u7VFi8= -html-minifier@^3.5.20: - version "3.5.21" - resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" - integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== - dependencies: - camel-case "3.0.x" - clean-css "4.2.x" - commander "2.17.x" - he "1.2.x" - param-case "2.1.x" - relateurl "0.2.x" - uglify-js "3.4.x" - -html-webpack-plugin@4.0.0-beta.5: - version "4.0.0-beta.5" - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.5.tgz#2c53083c1151bfec20479b1f8aaf0039e77b5513" - integrity sha512-y5l4lGxOW3pz3xBTFdfB9rnnrWRPVxlAhX6nrBYIcW+2k2zC3mSp/3DxlWVCMBfnO6UAnoF8OcFn0IMy6kaKAQ== - dependencies: - html-minifier "^3.5.20" - loader-utils "^1.1.0" - lodash "^4.17.11" +html-escaper@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.1.tgz#beed86b5d2b921e92533aa11bce6d8e3b583dee7" + integrity sha512-hNX23TjWwD3q56HpWjUHOKj1+4KKlnjv9PcmBUYKVpga+2cnb9nDx/B1o0yO4n+RZXZdiNxzx6B24C9aNMTkkQ== + +html-minifier-terser@^5.0.1: + version "5.0.4" + resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.0.4.tgz#e8cc02748acb983bd7912ea9660bd31c0702ec32" + integrity sha512-fHwmKQ+GzhlqdxEtwrqLT7MSuheiA+rif5/dZgbz3GjoMXJzcRzy1L9NXoiiyxrnap+q5guSiv8Tz5lrh9g42g== + dependencies: + camel-case "^4.1.1" + clean-css "^4.2.3" + commander "^4.1.1" + he "^1.2.0" + param-case "^3.0.3" + relateurl "^0.2.7" + terser "^4.6.3" + +html-webpack-plugin@4.0.0-beta.11: + version "4.0.0-beta.11" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.11.tgz#3059a69144b5aecef97708196ca32f9e68677715" + integrity sha512-4Xzepf0qWxf8CGg7/WQM5qBB2Lc/NFI7MhU59eUDTkuQp3skZczH4UA1d6oQyDEIoMDgERVhRyTdtUPZ5s5HBg== + dependencies: + html-minifier-terser "^5.0.1" + loader-utils "^1.2.3" + lodash "^4.17.15" pretty-error "^2.1.1" - tapable "^1.1.0" + tapable "^1.1.3" util.promisify "1.0.0" -htmlparser2@^3.10.0, htmlparser2@^3.3.0, htmlparser2@^3.9.1: +htmlparser2@^3.3.0, htmlparser2@^3.9.1: version "3.10.1" resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== @@ -5273,6 +5373,16 @@ htmlparser2@^3.10.0, htmlparser2@^3.3.0, htmlparser2@^3.9.1: inherits "^2.0.1" readable-stream "^3.1.1" +htmlparser2@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" + integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== + dependencies: + domelementtype "^2.0.1" + domhandler "^3.0.0" + domutils "^2.0.0" + entities "^2.0.0" + http-deceiver@^1.2.7: version "1.2.7" resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87" @@ -5315,7 +5425,7 @@ http-errors@~1.7.2: resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.4.10.tgz#92c9c1374c35085f75db359ec56cc257cbb93fa4" integrity sha1-ksnBN0w1CF912zWexWzCV8u5P6Q= -http-proxy-middleware@^0.19.1: +http-proxy-middleware@0.19.1: version "0.19.1" resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz#183c7dc4aa1479150306498c210cdaf96080a43a" integrity sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q== @@ -5353,19 +5463,14 @@ i@^0.3.6: resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= -iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4, iconv-lite@~0.4.13: +iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" -icss-replace-symbols@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" - integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= - -icss-utils@^4.1.0: +icss-utils@^4.0.0, icss-utils@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== @@ -5426,10 +5531,10 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.1.0.tgz#6d33fa1dcef6df930fae003446f33415af905118" - integrity sha512-PpuksHKGt8rXfWEr9m9EHIpgyyaltBy8+eF6GJM0QCAxMgxCfucMF3mjecK2QsJr0amJW7gTqh5/wht0z2UhEQ== +import-fresh@^3.0.0, import-fresh@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" + integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== dependencies: parent-module "^1.0.0" resolve-from "^4.0.0" @@ -5454,12 +5559,17 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= +indent-string@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" + integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== + indexes-of@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= -infer-owner@^1.0.3: +infer-owner@^1.0.3, infer-owner@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== @@ -5492,45 +5602,45 @@ ini@^1.3.5, ini@~1.3.0: resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== -inquirer@6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42" - integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA== +inquirer@7.0.4: + version "7.0.4" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.0.4.tgz#99af5bde47153abca23f5c7fc30db247f39da703" + integrity sha512-Bu5Td5+j11sCkqfqmUTiwv+tWisMtP0L7Q8WrqA2C/BbBhy1YTdFrvjjlrKq8oagA/tLQBski2Gcx/Sqyi2qSQ== dependencies: - ansi-escapes "^3.2.0" + ansi-escapes "^4.2.1" chalk "^2.4.2" - cli-cursor "^2.1.0" + cli-cursor "^3.1.0" cli-width "^2.0.0" external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" + figures "^3.0.0" + lodash "^4.17.15" + mute-stream "0.0.8" run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" + rxjs "^6.5.3" + string-width "^4.1.0" strip-ansi "^5.1.0" through "^2.3.6" -inquirer@^6.4.1: - version "6.5.2" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" - integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== +inquirer@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" + integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== dependencies: - ansi-escapes "^3.2.0" - chalk "^2.4.2" - cli-cursor "^2.1.0" + ansi-escapes "^4.2.1" + chalk "^3.0.0" + cli-cursor "^3.1.0" cli-width "^2.0.0" external-editor "^3.0.3" - figures "^2.0.0" - lodash "^4.17.12" - mute-stream "0.0.7" - run-async "^2.2.0" - rxjs "^6.4.0" - string-width "^2.1.0" - strip-ansi "^5.1.0" + figures "^3.0.0" + lodash "^4.17.15" + mute-stream "0.0.8" + run-async "^2.4.0" + rxjs "^6.5.3" + string-width "^4.1.0" + strip-ansi "^6.0.0" through "^2.3.6" -internal-ip@^4.2.0: +internal-ip@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" integrity sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg== @@ -5538,6 +5648,15 @@ internal-ip@^4.2.0: default-gateway "^4.2.0" ipaddr.js "^1.9.0" +internal-slot@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.2.tgz#9c2e9fb3cd8e5e4256c6f45fe310067fcfa378a3" + integrity sha512-2cQNfwhAfJIkU4KZPkDI+Gj5yNNnbqi40W9Gge6dfnk4TocEVm00B3bdiL+JINrbGJil2TeHvM4rETGzk/f/0g== + dependencies: + es-abstract "^1.17.0-next.1" + has "^1.0.3" + side-channel "^1.0.2" + invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" @@ -5560,12 +5679,7 @@ ip@^1.1.0, ip@^1.1.5: resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" integrity sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo= -ipaddr.js@1.9.0: - version "1.9.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" - integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== - -ipaddr.js@^1.9.0: +ipaddr.js@1.9.1, ipaddr.js@^1.9.0: version "1.9.1" resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== @@ -5575,6 +5689,11 @@ is-absolute-url@^2.0.0: resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= +is-absolute-url@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" + integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== + is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -5618,20 +5737,20 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" -is-boolean-object@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.0.tgz#98f8b28030684219a95f375cfbd88ce3405dff93" - integrity sha1-mPiygDBoQhmpXzdc+9iM40Bd/5M= +is-boolean-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.0.1.tgz#10edc0900dd127697a92f6f9807c7617d68ac48e" + integrity sha512-TqZuVwa/sppcrhUCAYkGBk7w0yxfQQnxq28fjkO53tnK9FQXmdwz2JS5+GjsWQ6RByES1K40nI+yDic5c9/aAQ== is-buffer@^1.0.2, is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== -is-callable@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" - integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== +is-callable@^1.1.4, is-callable@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.5.tgz#f7e46b596890456db74e7f6e976cb3273d06faab" + integrity sha512-ESKv5sMCJB2jnHTWZ3O5itG+O128Hsus4K4Qh1h2/cgn2vbgnLSVqfV46AeJA9D5EeeLa9w81KUXMtn34zhX+Q== is-ci@^2.0.0: version "2.0.0" @@ -5667,9 +5786,9 @@ is-data-descriptor@^1.0.0: kind-of "^6.0.0" is-date-object@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" - integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" + integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== is-descriptor@^0.1.0: version "0.1.6" @@ -5694,6 +5813,11 @@ is-directory@^0.3.1: resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= +is-docker@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.0.0.tgz#2cb0df0e75e2d064fe1864c37cdeacb7b2dcf25b" + integrity sha512-pJEdRugimx4fBMra5z2/5iRdZ63OhYV0vr0Dwm5+xtW4D1FvRkB8hamMIhnWfyJeDdyr/aa7BDyNbtG38VxgoQ== + is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -5723,6 +5847,11 @@ is-fullwidth-code-point@^2.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + is-generator-fn@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" @@ -5742,10 +5871,10 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" -is-number-object@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.3.tgz#f265ab89a9f445034ef6aff15a8f00b00f551799" - integrity sha1-8mWrian0RQNO9q/xWo8AsA9VF5k= +is-number-object@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" + integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== is-number@^3.0.0: version "3.0.0" @@ -5759,29 +5888,34 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== -is-obj@^1.0.0, is-obj@^1.0.1: +is-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= -is-path-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" - integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= +is-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" + integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== -is-path-in-cwd@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" - integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== +is-path-cwd@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" + integrity sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ== + +is-path-in-cwd@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz#bfe2dca26c69f397265a4009963602935a053acb" + integrity sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ== dependencies: - is-path-inside "^1.0.0" + is-path-inside "^2.1.0" -is-path-inside@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" - integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= +is-path-inside@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-2.1.0.tgz#7c9810587d659a40d27bcdb4d5616eab059494b2" + integrity sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg== dependencies: - path-is-inside "^1.0.1" + path-is-inside "^1.0.2" is-plain-obj@^1.0.0: version "1.1.0" @@ -5800,12 +5934,12 @@ is-promise@^2.1.0: resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= -is-regex@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" - integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= +is-regex@^1.0.4, is-regex@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.5.tgz#39d589a358bf18967f726967120b8fc1aed74eae" + integrity sha512-vlKW17SNq44owv5AQR3Cq0bQPEb8+kF3UKZ2fiZNOWtztYE5i0CzCZxFDwO58qAOWtxdBRVO/V5Qin1wjCqFYQ== dependencies: - has "^1.0.1" + has "^1.0.3" is-regexp@^1.0.0: version "1.0.0" @@ -5822,15 +5956,15 @@ is-root@2.1.0: resolved "https://registry.yarnpkg.com/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== -is-stream@^1.0.1, is-stream@^1.1.0: +is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= -is-string@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.4.tgz#cc3a9b69857d621e963725a24caeec873b826e64" - integrity sha1-zDqbaYV9Yh6WNyWiTK7shzuCbmQ= +is-string@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" + integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== is-subset@^0.1.1: version "0.1.1" @@ -5845,11 +5979,11 @@ is-svg@^3.0.0: html-comment-regex "^1.1.0" is-symbol@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" - integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" + integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== dependencies: - has-symbols "^1.0.0" + has-symbols "^1.0.1" is-typedarray@~1.0.0: version "1.0.0" @@ -5866,6 +6000,11 @@ is-wsl@^1.1.0: resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= +is-wsl@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.1.1.tgz#4a1c152d429df3d441669498e2486d3596ebaf1d" + integrity sha512-umZHcSrwlDHo2TGMXv0DZ8dIUGunZ2Iv68YZnrmCiBPkZ4aaOhtv7pXJKeki9k3qJ3RJr0cDyitcl5wEH3AYog== + isarray@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" @@ -5893,14 +6032,6 @@ isobject@^3.0.0, isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= -isomorphic-fetch@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" - integrity sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk= - dependencies: - node-fetch "^1.0.1" - whatwg-fetch ">=0.10.0" - isstream@~0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" @@ -5945,11 +6076,11 @@ istanbul-lib-source-maps@^3.0.1: source-map "^0.6.1" istanbul-reports@^2.2.6: - version "2.2.6" - resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.6.tgz#7b4f2660d82b29303a8fe6091f8ca4bf058da1af" - integrity sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA== + version "2.2.7" + resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.2.7.tgz#5d939f6237d7b48393cc0959eab40cd4fd056931" + integrity sha512-uu1F/L1o5Y6LzPVSVZXNOoD/KXpJue9aeLRd0sM9uMXfZvzomB0WxVamWb5ue8kA2vVWEmW7EG+A5n3f1kqHKg== dependencies: - handlebars "^4.1.2" + html-escaper "^2.0.0" jest-changed-files@^24.9.0: version "24.9.0" @@ -6002,7 +6133,7 @@ jest-config@^24.9.0: pretty-format "^24.9.0" realpath-native "^1.1.0" -jest-diff@^24.9.0: +jest-diff@^24.3.0, jest-diff@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-24.9.0.tgz#931b7d0d5778a1baf7452cb816e325e3724055da" integrity sha512-qMfrTs8AdJE2iqrTp0hzh7kTd2PQWrsFyj9tORoKmu32xjPjeE4NyjVRDz8ybYwqS2ik8N4hsIpiVTyFeo2lBQ== @@ -6030,14 +6161,17 @@ jest-each@^24.9.0: jest-util "^24.9.0" pretty-format "^24.9.0" -jest-environment-jsdom-fourteen@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-0.1.0.tgz#aad6393a9d4b565b69a609109bf469f62bf18ccc" - integrity sha512-4vtoRMg7jAstitRzL4nbw83VmGH8Rs13wrND3Ud2o1fczDhMUF32iIrNKwYGgeOPUdfvZU4oy8Bbv+ni1fgVCA== +jest-environment-jsdom-fourteen@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom-fourteen/-/jest-environment-jsdom-fourteen-1.0.1.tgz#4cd0042f58b4ab666950d96532ecb2fc188f96fb" + integrity sha512-DojMX1sY+at5Ep+O9yME34CdidZnO3/zfPh8UW+918C5fIZET5vCjfkegixmsi7AtdYfkr4bPlIzmWnlvQkP7Q== dependencies: - jest-mock "^24.5.0" - jest-util "^24.5.0" - jsdom "^14.0.0" + "@jest/environment" "^24.3.0" + "@jest/fake-timers" "^24.3.0" + "@jest/types" "^24.3.0" + jest-mock "^24.0.0" + jest-util "^24.0.0" + jsdom "^14.1.0" jest-environment-jsdom@^24.9.0: version "24.9.0" @@ -6148,7 +6282,7 @@ jest-message-util@^24.9.0: slash "^2.0.0" stack-utils "^1.0.1" -jest-mock@^24.5.0, jest-mock@^24.9.0: +jest-mock@^24.0.0, jest-mock@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-24.9.0.tgz#c22835541ee379b908673ad51087a2185c13f1c6" integrity sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w== @@ -6263,7 +6397,7 @@ jest-snapshot@^24.9.0: pretty-format "^24.9.0" semver "^6.2.0" -jest-util@^24.5.0, jest-util@^24.9.0: +jest-util@^24.0.0, jest-util@^24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-24.9.0.tgz#7396814e48536d2e85a37de3e4c431d7cb140162" integrity sha512-x+cZU8VRmOJxbA1K5oDBdxQmdq0OIdADarLxk0Mq+3XS4jgvhG/oKGWcIDCtPG0HgjxOYvF+ilPJQsAyXfbNOg== @@ -6293,13 +6427,14 @@ jest-validate@^24.9.0: leven "^3.1.0" pretty-format "^24.9.0" -jest-watch-typeahead@0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.4.0.tgz#4d5356839a85421588ce452d2440bf0d25308397" - integrity sha512-bJR/HPNgOQnkmttg1OkBIrYFAYuxFxExtgQh67N2qPvaWGVC8TCkedRNPKBfmZfVXFD3u2sCH+9OuS5ApBfCgA== +jest-watch-typeahead@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/jest-watch-typeahead/-/jest-watch-typeahead-0.4.2.tgz#e5be959698a7fa2302229a5082c488c3c8780a4a" + integrity sha512-f7VpLebTdaXs81rg/oj4Vg/ObZy2QtGzAmGLNsqUS5G5KtSN68tFcIsbvNODfNyQxU78g7D8x77o3bgfBTR+2Q== dependencies: ansi-escapes "^4.2.1" chalk "^2.4.1" + jest-regex-util "^24.9.0" jest-watcher "^24.3.0" slash "^3.0.0" string-length "^3.1.0" @@ -6326,6 +6461,14 @@ jest-worker@^24.6.0, jest-worker@^24.9.0: merge-stream "^2.0.0" supports-color "^6.1.0" +jest-worker@^25.1.0: + version "25.1.0" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-25.1.0.tgz#75d038bad6fdf58eba0d2ec1835856c497e3907a" + integrity sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg== + dependencies: + merge-stream "^2.0.0" + supports-color "^7.0.0" + jest@24.9.0: version "24.9.0" resolved "https://registry.yarnpkg.com/jest/-/jest-24.9.0.tgz#987d290c05a08b52c56188c1002e368edb007171" @@ -6344,11 +6487,6 @@ jquery@^3.0, jquery@^3.3.1: resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== -js-levenshtein@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d" - integrity sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g== - "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -6404,7 +6542,7 @@ jsdom@^11.5.1: ws "^5.2.0" xml-name-validator "^3.0.0" -jsdom@^14.0.0: +jsdom@^14.1.0: version "14.1.0" resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-14.1.0.tgz#916463b6094956b0a6c1782c94e380cd30e1981b" integrity sha512-O901mfJSuTdwU2w3Sn+74T+RnDVP+FuV5fH8tcPWyqrseRAb0s5xOtPgCFiPOtLcyK7CLIJwPyD83ZqQWvA5ng== @@ -6437,9 +6575,9 @@ jsdom@^14.0.0: xml-name-validator "^3.0.0" jsdom@^15.2.0: - version "15.2.0" - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.0.tgz#4baead4f464e733533ed6ac607ce440918cf5cbb" - integrity sha512-+hRyEfjRPFwTYMmSQ3/f7U9nP8ZNZmbkmUek760ZpxnCPWJIhaaLRuUSvpJ36fZKCGENxLwxClzwpOpnXNfChQ== + version "15.2.1" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-15.2.1.tgz#d2feb1aef7183f86be521b8c6833ff5296d07ec5" + integrity sha512-fAl1W0/7T2G5vURSyxBzrJ1LSdQn6Tr5UX/xD4PXDx/PDgwygedfW6El/KIj3xJ7FU61TTYnc/l/B7P49Eqt6g== dependencies: abab "^2.0.0" acorn "^7.1.0" @@ -6451,7 +6589,7 @@ jsdom@^15.2.0: domexception "^1.0.1" escodegen "^1.11.1" html-encoding-sniffer "^1.0.2" - nwsapi "^2.1.4" + nwsapi "^2.2.0" parse5 "5.1.0" pn "^1.1.0" request "^2.88.0" @@ -6522,12 +6660,12 @@ json5@^1.0.1: dependencies: minimist "^1.2.0" -json5@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.1.tgz#81b6cb04e9ba496f1c7005d07b4368a2638f90b6" - integrity sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ== +json5@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.2.tgz#43ef1f0af9835dd624751a6b7fa48874fb2d608e" + integrity sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ== dependencies: - minimist "^1.2.0" + minimist "^1.2.5" jsonfile@^4.0.0: version "4.0.0" @@ -6551,20 +6689,20 @@ jsprim@^1.2.2: json-schema "0.2.3" verror "1.10.0" -jsx-ast-utils@^2.1.0, jsx-ast-utils@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" - integrity sha512-v3FxCcAf20DayI+uxnCuw795+oOIkVu6EnJ1+kSzhqqTZHNkTZ7B66ZgLp4oLJ/gbA64cI0B7WRoHZMSRdyVRQ== +jsx-ast-utils@^2.2.1, jsx-ast-utils@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f" + integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA== dependencies: array-includes "^3.0.3" object.assign "^4.1.0" just-extend@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc" - integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw== + version "4.1.0" + resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.1.0.tgz#7278a4027d889601640ee0ce0e5a00b992467da4" + integrity sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA== -killable@^1.0.0: +killable@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/killable/-/killable-1.0.1.tgz#4c8ce441187a061c7474fb87ca08e2a638194892" integrity sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg== @@ -6596,9 +6734,9 @@ kind-of@^5.0.0: integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== kind-of@^6.0.0, kind-of@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" - integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== kleur@^3.0.3: version "3.0.3" @@ -6640,6 +6778,13 @@ leven@^3.1.0: resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== +levenary@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" + integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== + dependencies: + leven "^3.1.0" + levn@^0.3.0, levn@~0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" @@ -6648,6 +6793,11 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +lines-and-columns@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" + integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= + load-json-file@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" @@ -6669,19 +6819,19 @@ load-json-file@^4.0.0: strip-bom "^3.0.0" loader-fs-cache@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz#54cedf6b727e1779fd8f01205f05f6e88706f086" - integrity sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz#f08657646d607078be2f0a032f8bd69dd6f277d9" + integrity sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA== dependencies: find-cache-dir "^0.1.1" - mkdirp "0.5.1" + mkdirp "^0.5.1" loader-runner@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== -loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: +loader-utils@1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== @@ -6690,6 +6840,15 @@ loader-utils@1.2.3, loader-utils@^1.0.1, loader-utils@^1.0.2, loader-utils@^1.1. emojis-list "^2.0.0" json5 "^1.0.1" +loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" + integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== + dependencies: + big.js "^5.2.2" + emojis-list "^3.0.0" + json5 "^1.0.1" + locate-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" @@ -6706,6 +6865,13 @@ locate-path@^3.0.0: p-locate "^3.0.0" path-exists "^3.0.0" +locate-path@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" + integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== + dependencies: + p-locate "^4.1.0" + lodash-es@^4.17.15: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.15.tgz#21bd96839354412f23d7a10340e5eac6ee455d78" @@ -6741,16 +6907,6 @@ lodash.isequal@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= -lodash.isfunction@^3.0.9: - version "3.0.9" - resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051" - integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== - -lodash.isobject@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-3.0.2.tgz#3c8fb8d5b5bf4bf90ae06e14f2a530a4ed935e1d" - integrity sha1-PI+41bW/S/kK4G4U8qUwpO2TXh0= - lodash.isplainobject@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" @@ -6766,7 +6922,7 @@ lodash.memoize@^4.1.2: resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= -lodash.mergewith@^4.6.1: +lodash.mergewith@^4.6.2: version "4.6.2" resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55" integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== @@ -6791,36 +6947,33 @@ lodash.templatesettings@^4.0.0: dependencies: lodash._reinterpolate "^3.0.0" -lodash.tonumber@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/lodash.tonumber/-/lodash.tonumber-4.0.3.tgz#0b96b31b35672793eb7f5a63ee791f1b9e9025d9" - integrity sha1-C5azGzVnJ5Prf1pj7nkfG56QJdk= - -lodash.unescape@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" - integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= - lodash.uniq@^4.5.0: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= -"lodash@>=3.5 <5", lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5: +"lodash@>=3.5 <5", lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5: version "4.17.15" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== -loglevel@^1.4.1: - version "1.6.4" - resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.4.tgz#f408f4f006db8354d0577dcf6d33485b3cb90d56" - integrity sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g== +loglevel@^1.6.6: + version "1.6.7" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.7.tgz#b3e034233188c68b889f5b862415306f565e2c56" + integrity sha512-cY2eLFrQSAfVPhCgH1s7JI73tMbg9YC3v3+ZHVW67sBS7UxWzNEk/ZBbSfLykBWHp33dqqtOv82gjhKEi81T/A== -lolex@^4.1.0, lolex@^4.2.0: +lolex@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.2.0.tgz#ddbd7f6213ca1ea5826901ab1222b65d714b3cd7" integrity sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg== +lolex@^5.0.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/lolex/-/lolex-5.1.2.tgz#953694d098ce7c07bc5ed6d0e42bc6c0c6d5a367" + integrity sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A== + dependencies: + "@sinonjs/commons" "^1.7.0" + loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" @@ -6828,10 +6981,12 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" -lower-case@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" - integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= +lower-case@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" + integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== + dependencies: + tslib "^1.10.0" lru-cache@^5.1.1: version "5.1.1" @@ -6848,6 +7003,13 @@ make-dir@^2.0.0, make-dir@^2.1.0: pify "^4.0.1" semver "^5.6.0" +make-dir@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.0.2.tgz#04a1acbf22221e1d6ef43559f43e05a90dbb4392" + integrity sha512-rYKABKutXa6vXTXhoV18cBE7PaewPXHe/Bdq4v+ZLMhxbWApkFFplT0LcbMW+6BbjnQXzZ/sAvSE/JdguApG5w== + dependencies: + semver "^6.0.0" + makeerror@1.0.x: version "1.0.11" resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" @@ -6893,11 +7055,6 @@ mdn-data@2.0.4: resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b" integrity sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA== -mdn-data@~1.1.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" - integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA== - media-typer@0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" @@ -6989,22 +7146,17 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.40.0: - version "1.40.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" - integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== - -"mime-db@>= 1.40.0 < 2": - version "1.42.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.42.0.tgz#3e252907b4c7adb906597b4b65636272cf9e7bac" - integrity sha512-UbfJCR4UAVRNgMpfImz05smAXK7+c+ZntjaA26ANtkXLlOe947Aag5zdIcKQULAiF9Cq4WxBi9jUs5zkA84bYQ== +mime-db@1.43.0, "mime-db@>= 1.43.0 < 2": + version "1.43.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.43.0.tgz#0a12e0502650e473d735535050e7c8f4eb4fae58" + integrity sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ== mime-types@^2.1.12, mime-types@~2.1.17, mime-types@~2.1.19, mime-types@~2.1.24: - version "2.1.24" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" - integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== + version "2.1.26" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.26.tgz#9c921fc09b7e149a65dfdc0da4d20997200b0a06" + integrity sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ== dependencies: - mime-db "1.40.0" + mime-db "1.43.0" mime@1.6.0: version "1.6.0" @@ -7016,20 +7168,15 @@ mime@^2.4.4: resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.4.tgz#bd7b91135fc6b01cde3e9bae33d659b63d8857e5" integrity sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA== -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - -mimic-fn@^2.0.0: +mimic-fn@^2.0.0, mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== -mini-css-extract-plugin@0.8.0: - version "0.8.0" - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.8.0.tgz#81d41ec4fe58c713a96ad7c723cdb2d0bd4d70e1" - integrity sha512-MNpRGbNA52q6U92i0qbVpQNsgk7LExy41MdAlG84FeytfDOtRIf/mCHdEgG8rpTKOaNKiqUnZdlptF469hxqOw== +mini-css-extract-plugin@0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz#47f2cf07aa165ab35733b1fc97d4c46c0564339e" + integrity sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A== dependencies: loader-utils "^1.1.0" normalize-url "1.9.1" @@ -7053,20 +7200,31 @@ minimatch@3.0.4, minimatch@^3.0.4: dependencies: brace-expansion "^1.1.7" -minimist@0.0.8: - version "0.0.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= +minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" + integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -minimist@^1.1.1, minimist@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" - integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= +minipass-collect@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" + integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== + dependencies: + minipass "^3.0.0" + +minipass-flush@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" + integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== + dependencies: + minipass "^3.0.0" -minimist@~0.0.1: - version "0.0.10" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" - integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= +minipass-pipeline@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.2.tgz#3dcb6bb4a546e32969c7ad710f2c79a86abba93a" + integrity sha512-3JS5A2DKhD2g0Gg8x3yamO0pj7YeKGwVlDS90pF++kxptwx/F+B//roxf9SqYil5tQo65bijy+dAuAFZmYOouA== + dependencies: + minipass "^3.0.0" minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: version "2.9.0" @@ -7076,6 +7234,13 @@ minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: safe-buffer "^5.1.2" yallist "^3.0.0" +minipass@^3.0.0, minipass@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5" + integrity sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w== + dependencies: + yallist "^4.0.0" + minizlib@^1.2.1: version "1.3.3" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" @@ -7115,12 +7280,12 @@ mixin-object@^2.0.1: for-in "^0.1.3" is-extendable "^0.1.1" -mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1: - version "0.5.1" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= +mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.3.tgz#5a514b7179259287952881e94410ec5465659f8c" + integrity sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg== dependencies: - minimist "0.0.8" + minimist "^1.2.5" moment-timezone@^0.4.0: version "0.4.1" @@ -7130,9 +7295,9 @@ moment-timezone@^0.4.0: moment ">= 2.6.0" moment-timezone@^0.5.11, moment-timezone@^0.5.23: - version "0.5.27" - resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.27.tgz#73adec8139b6fe30452e78f210f27b1f346b8877" - integrity sha512-EIKQs7h5sAsjhPCqN6ggx6cEbs94GK050254TIJySD1bzoM5JTYDwAU1IoVOeTOL6Gm27kYJ51/uuvq1kIlrbw== + version "0.5.28" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.28.tgz#f093d789d091ed7b055d82aa81a82467f72e4338" + integrity sha512-TDJkZvAyKIVWg5EtVqRzU97w0Rb0YVbfpqyjgu6GwXCAohVRqwZjf4fOzDE6p1Ch98Sro/8hQQi65WDXW5STPw== dependencies: moment ">= 2.9.0" @@ -7141,10 +7306,10 @@ moment-timezone@^0.5.11, moment-timezone@^0.5.23: resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== -moo@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/moo/-/moo-0.4.3.tgz#3f847a26f31cf625a956a87f2b10fbc013bfd10e" - integrity sha512-gFD2xGCl8YFgGHsqJ9NKRVdwlioeW3mI1iqfLNYQOv0+6JRwG58Zk9DIGQgyIaffSYaO1xsKnMaYzzNr1KyIAw== +moo@^0.5.0: + version "0.5.1" + resolved "https://registry.yarnpkg.com/moo/-/moo-0.5.1.tgz#7aae7f384b9b09f620b6abf6f74ebbcd1b65dbc4" + integrity sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w== move-concurrently@^1.0.1: version "1.0.1" @@ -7186,10 +7351,10 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" thunky "^1.0.2" -mute-stream@0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= +mute-stream@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" + integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== nan@^2.12.1: version "2.14.0" @@ -7219,20 +7384,20 @@ natural-compare@^1.4.0: integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= nearley@^2.7.10: - version "2.19.0" - resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.0.tgz#37717781d0fd0f2bfc95e233ebd75678ca4bda46" - integrity sha512-2v52FTw7RPqieZr3Gth1luAXZR7Je6q3KaDHY5bjl/paDUdMu35fZ8ICNgiYJRr3tf3NMvIQQR1r27AvEr9CRA== + version "2.19.1" + resolved "https://registry.yarnpkg.com/nearley/-/nearley-2.19.1.tgz#4af4006e16645ff800e9f993c3af039857d9dbdc" + integrity sha512-xq47GIUGXxU9vQg7g/y1o1xuKnkO7ev4nRWqftmQrLkfnE/FjRqDaGOUakM8XHPn/6pW3bGjU2wgoJyId90rqg== dependencies: commander "^2.19.0" - moo "^0.4.3" + moo "^0.5.0" railroad-diagrams "^1.0.0" randexp "0.4.6" semver "^5.4.1" needle@^2.2.1: - version "2.4.0" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" - integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== + version "2.3.3" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.3.3.tgz#a041ad1d04a871b0ebb666f40baaf1fb47867117" + integrity sha512-EkY0GeSq87rWp1hoq/sH/wnTWgFVhYlnIkbJ0YJFfRgEFlz2RraCjBpFQ+vrEgEdp0ThfyHADmkChEhcb7PKyw== dependencies: debug "^3.2.6" iconv-lite "^0.4.4" @@ -7243,12 +7408,12 @@ negotiator@0.6.2: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: +neo-async@^2.5.0, neo-async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== -next-tick@^1.0.0: +next-tick@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= @@ -7259,36 +7424,29 @@ nice-try@^1.0.4: integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== nise@^1.5.2: - version "1.5.2" - resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.2.tgz#b6d29af10e48b321b307e10e065199338eeb2652" - integrity sha512-/6RhOUlicRCbE9s+94qCUsyE+pKlVJ5AhIv+jEE7ESKwnbXqulKZ1FYU+XAtHHWE9TinYvAxDUJAb912PwPoWA== + version "1.5.3" + resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.3.tgz#9d2cfe37d44f57317766c6e9408a359c5d3ac1f7" + integrity sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ== dependencies: "@sinonjs/formatio" "^3.2.1" "@sinonjs/text-encoding" "^0.7.1" just-extend "^4.0.2" - lolex "^4.1.0" + lolex "^5.0.1" path-to-regexp "^1.7.0" -no-case@^2.2.0: - version "2.3.2" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" - integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== +no-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" + integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== dependencies: - lower-case "^1.1.1" + lower-case "^2.0.1" + tslib "^1.10.0" node-fetch@2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.1.2.tgz#ab884e8e7e57e38a944753cec706f788d1768bb5" integrity sha1-q4hOjn5X44qUR1POxwb3iNF2i7U= -node-fetch@^1.0.1: - version "1.7.3" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" - integrity sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ== - dependencies: - encoding "^0.1.11" - is-stream "^1.0.1" - node-forge@0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579" @@ -7344,10 +7502,10 @@ node-notifier@^5.4.2: shellwords "^0.1.1" which "^1.3.0" -node-pre-gyp@^0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" - integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== +node-pre-gyp@*: + version "0.14.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" + integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== dependencies: detect-libc "^1.0.2" mkdirp "^0.5.1" @@ -7358,19 +7516,19 @@ node-pre-gyp@^0.12.0: rc "^1.2.7" rimraf "^2.6.1" semver "^5.3.0" - tar "^4" + tar "^4.4.2" -node-releases@^1.1.29, node-releases@^1.1.36: - version "1.1.36" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.36.tgz#44b7cb8254138e87bdbfa47761d0f825e20900b4" - integrity sha512-ggXhX6QGyJSjj3r+6ml2LqqC28XOWmKtpb+a15/Zpr9V3yoNazxJNlcQDS9bYaid5FReEWHEgToH1mwoUceWwg== +node-releases@^1.1.52: + version "1.1.52" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.52.tgz#bcffee3e0a758e92e44ecfaecd0a47554b0bcba9" + integrity sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ== dependencies: semver "^6.3.0" nopt@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" - integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= + version "4.0.3" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" + integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== dependencies: abbrev "1" osenv "^0.1.4" @@ -7418,17 +7576,25 @@ normalize-url@^3.0.0: integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== npm-bundled@^1.0.1: - version "1.0.6" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" - integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== + version "1.1.1" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" + integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== + dependencies: + npm-normalize-package-bin "^1.0.1" + +npm-normalize-package-bin@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" + integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== npm-packlist@^1.1.6: - version "1.4.6" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.6.tgz#53ba3ed11f8523079f1457376dd379ee4ea42ff4" - integrity sha512-u65uQdb+qwtGvEJh/DgQgW1Xg7sqeNbmxYyrvlNznaVTjV3E5P6F/EFjM+BVHXl7JJlsdG8A64M0XI8FI/IOlg== + version "1.4.8" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" + integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== dependencies: ignore-walk "^3.0.1" npm-bundled "^1.0.1" + npm-normalize-package-bin "^1.0.1" npm-run-path@^2.0.0: version "2.0.2" @@ -7464,17 +7630,17 @@ number-is-nan@^1.0.0: resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= -nwsapi@^2.0.7, nwsapi@^2.1.3, nwsapi@^2.1.4: - version "2.1.4" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" - integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== +nwsapi@^2.0.7, nwsapi@^2.1.3, nwsapi@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" + integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== oauth-sign@~0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= @@ -7488,20 +7654,20 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" -object-hash@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df" - integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA== +object-hash@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.0.3.tgz#d12db044e03cd2ca3d77c0570d87225b02e1e6ea" + integrity sha512-JPKn0GMu+Fa3zt3Bmr66JhokJU5BaNBIh4ZeTlaCBzrBsOeXzwcKKAK1tbLiPKgvwmPXsDvvLHoWh5Bm7ofIYg== -object-inspect@^1.6.0: - version "1.6.0" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" - integrity sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ== +object-inspect@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" + integrity sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw== -object-is@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.1.tgz#0aa60ec9989a0b3ed795cf4d06f62cf1ad6539b6" - integrity sha1-CqYOyZiaCz7Xlc9NBvYs8a1lObY= +object-is@^1.0.1, object-is@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.0.2.tgz#6b80eb84fe451498f65007982f035a5b445edec4" + integrity sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ== object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: version "1.1.1" @@ -7530,33 +7696,33 @@ object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.entries@^1.0.4, object.entries@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" - integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== +object.entries@^1.1.0, object.entries@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.1.tgz#ee1cf04153de02bb093fec33683900f57ce5399b" + integrity sha512-ilqR7BgdyZetJutmDPfXCDffGa0/Yzl2ivVNpbx/g4UeWrCdRnFDUBrKJGLhGieRHDATnyZXWBeCb29k9CJysQ== dependencies: define-properties "^1.1.3" - es-abstract "^1.12.0" + es-abstract "^1.17.0-next.1" function-bind "^1.1.1" has "^1.0.3" -object.fromentries@^2.0.0, object.fromentries@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.1.tgz#050f077855c7af8ae6649f45c80b16ee2d31e704" - integrity sha512-PUQv8Hbg3j2QX0IQYv3iAGCbGcu4yY4KQ92/dhA4sFSixBmSmp13UpDLs6jGK8rBtbmhNNIK99LD2k293jpiGA== +object.fromentries@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.2.tgz#4a09c9b9bb3843dd0f89acdb517a794d4f355ac9" + integrity sha512-r3ZiBH7MQppDJVLx6fhD618GKNG40CZYH9wgwdhKxBDDbQgjeWGGd4AtkZad84d291YxvWe7bJGuE65Anh0dxQ== dependencies: define-properties "^1.1.3" - es-abstract "^1.15.0" + es-abstract "^1.17.0-next.1" function-bind "^1.1.1" has "^1.0.3" -object.getownpropertydescriptors@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" - integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= +object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649" + integrity sha512-Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg== dependencies: - define-properties "^1.1.2" - es-abstract "^1.5.1" + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" object.pick@^1.3.0: version "1.3.0" @@ -7565,13 +7731,13 @@ object.pick@^1.3.0: dependencies: isobject "^3.0.1" -object.values@^1.0.4, object.values@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" - integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== +object.values@^1.1.0, object.values@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e" + integrity sha512-WTa54g2K8iu0kmS/us18jEmdv1a4Wi//BZ/DTVYEcH0XhLM5NYdpDHja3gt57VrZLcNAO2WGA+KpWsDBaHt6eA== dependencies: define-properties "^1.1.3" - es-abstract "^1.12.0" + es-abstract "^1.17.0-next.1" function-bind "^1.1.1" has "^1.0.3" @@ -7599,35 +7765,28 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= +onetime@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.0.tgz#fff0f3c91617fe62bb50189636e99ac8a6df7be5" + integrity sha512-5NcSkPHhwTVFIQN+TUqXoS5+dlElHXdpAWu9I0HP20YOtIi+aZ0Ct82jdlILDxjLEAWwvm+qj1m6aEtsDVmm6Q== dependencies: - mimic-fn "^1.0.0" + mimic-fn "^2.1.0" -open@^6.3.0: - version "6.4.0" - resolved "https://registry.yarnpkg.com/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9" - integrity sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg== +open@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/open/-/open-7.0.3.tgz#db551a1af9c7ab4c7af664139930826138531c48" + integrity sha512-sP2ru2v0P290WFfv49Ap8MF6PkzGNnGlAwHweB4WR4mr5d2d0woiCluUeJ218w7/+PmoBy9JmYgD5A4mLcWOFA== dependencies: - is-wsl "^1.1.0" + is-docker "^2.0.0" + is-wsl "^2.1.1" -opn@^5.1.0: +opn@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/opn/-/opn-5.5.0.tgz#fc7164fab56d235904c51c3b27da6758ca3b9bfc" integrity sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA== dependencies: is-wsl "^1.1.0" -optimist@^0.6.1: - version "0.6.1" - resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" - integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= - dependencies: - minimist "~0.0.1" - wordwrap "~0.0.2" - optimize-css-assets-webpack-plugin@5.0.3: version "5.0.3" resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.3.tgz#e2f1d4d94ad8c0af8967ebd7cf138dcb1ef14572" @@ -7636,17 +7795,17 @@ optimize-css-assets-webpack-plugin@5.0.3: cssnano "^4.1.10" last-call-webpack-plugin "^3.0.0" -optionator@^0.8.1, optionator@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" - integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= +optionator@^0.8.1, optionator@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" + integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== dependencies: deep-is "~0.1.3" - fast-levenshtein "~2.0.4" + fast-levenshtein "~2.0.6" levn "~0.3.0" prelude-ls "~1.1.2" type-check "~0.3.2" - wordwrap "~1.0.0" + word-wrap "~1.2.3" original@^1.0.0: version "1.0.2" @@ -7716,10 +7875,10 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" -p-limit@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.1.tgz#aa07a788cc3151c939b5131f63570f0dd2009537" - integrity sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg== +p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.2.2: + version "2.2.2" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.2.tgz#61279b67721f5287aa1c13a9a7fbbc48c9291b1e" + integrity sha512-WGR+xHecKTr7EbUEhyLSh5Dube9JtdiG78ufaeLxTgpudf/20KqyMioIUZJAezlTIi6evxuoUs9YXc11cU+yzQ== dependencies: p-try "^2.0.0" @@ -7737,16 +7896,37 @@ p-locate@^3.0.0: dependencies: p-limit "^2.0.0" -p-map@^1.1.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" - integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== +p-locate@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" + integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== + dependencies: + p-limit "^2.2.0" + +p-map@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" + integrity sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw== + +p-map@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-3.0.0.tgz#d704d9af8a2ba684e2600d9a215983d4141a979d" + integrity sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ== + dependencies: + aggregate-error "^3.0.0" p-reduce@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa" integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo= +p-retry@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-3.0.1.tgz#316b4c8893e2c8dc1cfa891f406c4b422bebf328" + integrity sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w== + dependencies: + retry "^0.12.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" @@ -7758,9 +7938,9 @@ p-try@^2.0.0: integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== pako@~1.0.5: - version "1.0.10" - resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" - integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== + version "1.0.11" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" + integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== parallel-transform@^1.1.0: version "1.2.0" @@ -7771,12 +7951,13 @@ parallel-transform@^1.1.0: inherits "^2.0.3" readable-stream "^2.1.5" -param-case@2.1.x: - version "2.1.1" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" - integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= +param-case@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" + integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== dependencies: - no-case "^2.2.0" + dot-case "^3.0.3" + tslib "^1.10.0" parent-module@^1.0.0: version "1.0.1" @@ -7812,6 +7993,16 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse-json@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" + integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + lines-and-columns "^1.1.6" + parse5@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" @@ -7834,6 +8025,14 @@ parseurl@~1.3.2, parseurl@~1.3.3: resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== +pascal-case@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" + integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== + dependencies: + no-case "^3.0.3" + tslib "^1.10.0" + pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" @@ -7861,12 +8060,17 @@ path-exists@^3.0.0: resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + path-is-absolute@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-is-inside@^1.0.1: +path-is-inside@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= @@ -7876,6 +8080,11 @@ path-key@^2.0.0, path-key@^2.0.1: resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" @@ -7887,9 +8096,9 @@ path-to-regexp@0.1.7: integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= path-to-regexp@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.7.0.tgz#59fde0f435badacba103a84e9d3bc64e96b9937d" - integrity sha1-Wf3g9DW62suhA6hOnTvGTpa5k30= + version "1.8.0" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-1.8.0.tgz#887b3ba9d84393e87a0a0b9f4cb756198b53548a" + integrity sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA== dependencies: isarray "0.0.1" @@ -7907,6 +8116,11 @@ path-type@^3.0.0: dependencies: pify "^3.0.0" +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + pbkdf2@^3.0.3: version "3.0.17" resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" @@ -7923,10 +8137,10 @@ performance-now@^2.1.0: resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= -picomatch@^2.0.4: - version "2.0.7" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.0.7.tgz#514169d8c7cd0bdbeecc8a2609e34a7163de69f6" - integrity sha512-oLHIdio3tZ0qH76NybpeneBhYVj0QFTfXEFTc/B3zKQspYfYYkWYgFsmzo+4kvId/bQRcNkVeguI3y+CD22BtA== +picomatch@^2.0.4, picomatch@^2.0.7: + version "2.2.2" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" + integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== pify@^2.0.0: version "2.3.0" @@ -7983,31 +8197,38 @@ pkg-dir@^3.0.0: dependencies: find-up "^3.0.0" -pkg-up@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" - integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= +pkg-dir@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" + integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== dependencies: - find-up "^2.1.0" + find-up "^4.0.0" + +pkg-up@3.1.0, pkg-up@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5" + integrity sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA== + dependencies: + find-up "^3.0.0" pn@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== -pnp-webpack-plugin@1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.5.0.tgz#62a1cd3068f46d564bb33c56eb250e4d586676eb" - integrity sha512-jd9olUr9D7do+RN8Wspzhpxhgp1n6Vd0NtQ4SFkmIACZoEL1nkyAdW9Ygrinjec0vgDcWjscFQQ1gDW8rsfKTg== +pnp-webpack-plugin@1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149" + integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg== dependencies: - ts-pnp "^1.1.2" + ts-pnp "^1.1.6" popper.js@^1.14.1, popper.js@^1.14.3, popper.js@^1.14.4: - version "1.16.0" - resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.0.tgz#2e1816bcbbaa518ea6c2e15a466f4cb9c6e2fbb3" - integrity sha512-+G+EkOPoE5S/zChTpmBSSDYmhXJ5PsW8eMhH8cP/CQHMFPBG/kC9Y5IIw6qNYgdJ+/COf0ddY2li28iHaZRSjw== + version "1.16.1" + resolved "https://registry.yarnpkg.com/popper.js/-/popper.js-1.16.1.tgz#2a223cb3dc7b6213d740e40372be40de43e65b1b" + integrity sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ== -portfinder@^1.0.9: +portfinder@^1.0.25: version "1.0.25" resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.25.tgz#254fd337ffba869f4b9d37edc298059cb4d35eca" integrity sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg== @@ -8022,29 +8243,28 @@ posix-character-classes@^0.1.0: integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= postcss-attribute-case-insensitive@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.1.tgz#b2a721a0d279c2f9103a36331c88981526428cc7" - integrity sha512-L2YKB3vF4PetdTIthQVeT+7YiSzMoNMLLYxPXXppOOP7NoazEAy45sh2LvJ8leCQjfBcfkYQs8TtCcQjeZTp8A== + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz#d93e46b504589e94ac7277b0463226c68041a880" + integrity sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA== dependencies: postcss "^7.0.2" - postcss-selector-parser "^5.0.0" + postcss-selector-parser "^6.0.2" -postcss-browser-comments@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-2.0.0.tgz#dc48d6a8ddbff188a80a000b7393436cb18aed88" - integrity sha512-xGG0UvoxwBc4Yx4JX3gc0RuDl1kc4bVihCzzk6UC72YPfq5fu3c717Nu8Un3nvnq1BJ31gBnFXIG/OaUTnpHgA== +postcss-browser-comments@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz#1248d2d935fb72053c8e1f61a84a57292d9f65e9" + integrity sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig== dependencies: - postcss "^7.0.2" + postcss "^7" postcss-calc@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" - integrity sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== + version "7.0.2" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.2.tgz#504efcd008ca0273120568b0792b16cdcde8aac1" + integrity sha512-rofZFHUg6ZIrvRwPeFktv06GdbDYLcGqh9EwiMutZg+a0oePCCw1zHOEiji6LCpyRcjTREtPASuUqeAvYlEVvQ== dependencies: - css-unit-converter "^1.1.1" - postcss "^7.0.5" - postcss-selector-parser "^5.0.0-rc.4" - postcss-value-parser "^3.3.1" + postcss "^7.0.27" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.2" postcss-color-functional-notation@^2.0.1: version "2.0.1" @@ -8226,9 +8446,9 @@ postcss-image-set-function@^3.0.1: postcss-values-parser "^2.0.0" postcss-initial@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.1.tgz#99d319669a13d6c06ef8e70d852f68cb1b399b61" - integrity sha512-I2Sz83ZSHybMNh02xQDK609lZ1/QOyYeuizCjzEhlMgeV/HcDJapQiH4yTqLjZss0X6/6VvKFXUeObaHpJoINw== + version "3.0.2" + resolved "https://registry.yarnpkg.com/postcss-initial/-/postcss-initial-3.0.2.tgz#f018563694b3c16ae8eaabe3c585ac6319637b2d" + integrity sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA== dependencies: lodash.template "^4.5.0" postcss "^7.0.2" @@ -8343,29 +8563,30 @@ postcss-modules-extract-imports@^2.0.0: dependencies: postcss "^7.0.5" -postcss-modules-local-by-default@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-2.0.6.tgz#dd9953f6dd476b5fd1ef2d8830c8929760b56e63" - integrity sha512-oLUV5YNkeIBa0yQl7EYnxMgy4N6noxmiwZStaEJUSe2xPMcdNc8WmBQuQCx18H5psYbVxz8zoHk0RAAYZXP9gA== +postcss-modules-local-by-default@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.2.tgz#e8a6561be914aaf3c052876377524ca90dbb7915" + integrity sha512-jM/V8eqM4oJ/22j0gx4jrp63GSvDH6v86OqyTHHUvk4/k1vceipZsaymiZ5PvocqZOl5SFHiFJqjs3la0wnfIQ== dependencies: - postcss "^7.0.6" - postcss-selector-parser "^6.0.0" - postcss-value-parser "^3.3.1" + icss-utils "^4.1.1" + postcss "^7.0.16" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.0.0" -postcss-modules-scope@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.1.0.tgz#ad3f5bf7856114f6fcab901b0502e2a2bc39d4eb" - integrity sha512-91Rjps0JnmtUB0cujlc8KIKCsJXWjzuxGeT/+Q2i2HXKZ7nBUeF9YQTZZTNvHVoNYj1AthsjnGLtqDUE0Op79A== +postcss-modules-scope@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" + integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== dependencies: postcss "^7.0.6" postcss-selector-parser "^6.0.0" -postcss-modules-values@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-2.0.0.tgz#479b46dc0c5ca3dc7fa5270851836b9ec7152f64" - integrity sha512-Ki7JZa7ff1N3EIMlPnGTZfUMe69FFwiQPnVSXC9mnn3jozCRBYIxiZd44yJOV2AmabOo4qFf8s0dC/+lweG7+w== +postcss-modules-values@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" + integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== dependencies: - icss-replace-symbols "^1.1.0" + icss-utils "^4.0.0" postcss "^7.0.6" postcss-nesting@^7.0.0: @@ -8456,15 +8677,16 @@ postcss-normalize-whitespace@^4.0.2: postcss "^7.0.0" postcss-value-parser "^3.0.0" -postcss-normalize@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-7.0.1.tgz#eb51568d962b8aa61a8318383c8bb7e54332282e" - integrity sha512-NOp1fwrG+6kVXWo7P9SizCHX6QvioxFD/hZcI2MLxPmVnFJFC0j0DDpIuNw2tUDeCFMni59gCVgeJ1/hYhj2OQ== +postcss-normalize@8.0.1: + version "8.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize/-/postcss-normalize-8.0.1.tgz#90e80a7763d7fdf2da6f2f0f82be832ce4f66776" + integrity sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ== dependencies: - "@csstools/normalize.css" "^9.0.1" - browserslist "^4.1.1" - postcss "^7.0.2" - postcss-browser-comments "^2.0.0" + "@csstools/normalize.css" "^10.1.0" + browserslist "^4.6.2" + postcss "^7.0.17" + postcss-browser-comments "^3.0.0" + sanitize.css "^10.0.0" postcss-ordered-values@^4.1.2: version "4.1.2" @@ -8599,15 +8821,15 @@ postcss-selector-not@^4.0.0: postcss "^7.0.2" postcss-selector-parser@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" - integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= + version "3.1.2" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270" + integrity sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA== dependencies: - dot-prop "^4.1.1" + dot-prop "^5.2.0" indexes-of "^1.0.1" uniq "^1.0.1" -postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: +postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: version "5.0.0" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== @@ -8616,7 +8838,7 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.3, postcss-sel indexes-of "^1.0.1" uniq "^1.0.1" -postcss-selector-parser@^6.0.0: +postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== @@ -8644,15 +8866,15 @@ postcss-unique-selectors@^4.0.1: postcss "^7.0.0" uniqs "^2.0.0" -postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: +postcss-value-parser@^3.0.0: version "3.3.1" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== -postcss-value-parser@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.2.tgz#482282c09a42706d1fc9a069b73f44ec08391dc9" - integrity sha512-LmeoohTpp/K4UiyQCwuGWlONxXamGzCMtFxLq4W1nZVGIQLYvMCJx3yAF9qyyuFpflABI9yVdtJAqbihOsCsJQ== +postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" + integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: version "2.0.1" @@ -8663,19 +8885,19 @@ postcss-values-parser@^2.0.0, postcss-values-parser@^2.0.1: indexes-of "^1.0.1" uniq "^1.0.1" -postcss@7.0.14: - version "7.0.14" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.14.tgz#4527ed6b1ca0d82c53ce5ec1a2041c2346bbd6e5" - integrity sha512-NsbD6XUUMZvBxtQAJuWDJeeC4QFsmWsfozWxCJPWf3M55K9iu2iMDaKqyoOdTJ1R4usBXuxlVFAIo8rZPQD4Bg== +postcss@7.0.21: + version "7.0.21" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.21.tgz#06bb07824c19c2021c5d056d5b10c35b989f7e17" + integrity sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ== dependencies: chalk "^2.4.2" source-map "^0.6.1" supports-color "^6.1.0" -postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.17, postcss@^7.0.18, postcss@^7.0.2, postcss@^7.0.5, postcss@^7.0.6: - version "7.0.18" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.18.tgz#4b9cda95ae6c069c67a4d933029eddd4838ac233" - integrity sha512-/7g1QXXgegpF+9GJj4iN7ChGF40sYuGYJ8WZu8DZWnmhQ/G36hfdk3q9LBJmoK+lZ+yzZ5KYpOoxq7LF1BxE8g== +postcss@^7, postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.16, postcss@^7.0.17, postcss@^7.0.2, postcss@^7.0.23, postcss@^7.0.26, postcss@^7.0.27, postcss@^7.0.5, postcss@^7.0.6: + version "7.0.27" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9" + integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== dependencies: chalk "^2.4.2" source-map "^0.6.1" @@ -8699,9 +8921,9 @@ prettier-linter-helpers@^1.0.0: fast-diff "^1.1.2" prettier@^1.18.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea" - integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw== + version "1.19.1" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb" + integrity sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew== pretty-bytes@^5.1.0: version "5.3.0" @@ -8726,7 +8948,7 @@ pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -private@^0.1.6: +private@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== @@ -8756,27 +8978,20 @@ promise-polyfill@^7.1.1: resolved "https://registry.yarnpkg.com/promise-polyfill/-/promise-polyfill-7.1.2.tgz#ab05301d8c28536301622d69227632269a70ca3b" integrity sha512-FuEc12/eKqqoRYIGBrUptCBRhobL19PS2U31vMNTfyck1FxPyMfgsXyW4Mav85y/ZN1hop3hOwRlUDok23oYfQ== -promise@8.0.3: - version "8.0.3" - resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.3.tgz#f592e099c6cddc000d538ee7283bb190452b0bf6" - integrity sha512-HeRDUL1RJiLhyA0/grn+PTShlBAcLuh/1BJGtrvjwbvRDCTLLMEz9rOGCV+R3vHY4MixIuoMEd9Yq/XvsTPcjw== +promise@^8.0.3: + version "8.1.0" + resolved "https://registry.yarnpkg.com/promise/-/promise-8.1.0.tgz#697c25c3dfe7435dd79fcd58c38a135888eaf05e" + integrity sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q== dependencies: asap "~2.0.6" -promise@^7.1.1: - version "7.3.1" - resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" - integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== - dependencies: - asap "~2.0.3" - prompts@^2.0.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.2.1.tgz#f901dd2a2dfee080359c0e20059b24188d75ad35" - integrity sha512-VObPvJiWPhpZI6C5m60XOzTfnYg/xc/an+r9VYymj9WJW3B/DIH+REzjpAACPf8brwPeP+7vz3bIim3S+AaMjw== + version "2.3.2" + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.3.2.tgz#480572d89ecf39566d2bd3fe2c9fccb7c4c0b068" + integrity sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA== dependencies: kleur "^3.0.3" - sisteransi "^1.0.3" + sisteransi "^1.0.4" prop-types-exact@^1.2.0: version "1.2.0" @@ -8787,7 +9002,7 @@ prop-types-exact@^1.2.0: object.assign "^4.1.0" reflect.ownkeys "^0.2.0" -prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: +prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ== @@ -8797,22 +9012,22 @@ prop-types@^15.5.10, prop-types@^15.5.8, prop-types@^15.6.1, prop-types@^15.6.2, react-is "^16.8.1" proxy-addr@~2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" - integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== + version "2.0.6" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" + integrity sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw== dependencies: forwarded "~0.1.2" - ipaddr.js "1.9.0" + ipaddr.js "1.9.1" prr@~1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= -psl@^1.1.24, psl@^1.1.28: - version "1.4.0" - resolved "https://registry.yarnpkg.com/psl/-/psl-1.4.0.tgz#5dd26156cdb69fa1fdb8ab1991667d3f80ced7c2" - integrity sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw== +psl@^1.1.28: + version "1.7.0" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.7.0.tgz#f1c4c47a8ef97167dea5d6bbf4816d736e884a3c" + integrity sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ== public-encrypt@^4.0.0: version "4.0.3" @@ -8856,7 +9071,7 @@ punycode@1.3.2: resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= -punycode@^1.2.4, punycode@^1.4.1: +punycode@^1.2.4: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= @@ -8909,7 +9124,7 @@ raf-schd@^4.0.2: resolved "https://registry.yarnpkg.com/raf-schd/-/raf-schd-4.0.2.tgz#bd44c708188f2e84c810bf55fcea9231bcaed8a0" integrity sha512-VhlMZmGy6A6hrkJWHLNTGl5gtgMUm+xfGza6wbwnE914yeQ5Ybm18vgM734RZhMgfw4tacUrWseGZlpUrrakEQ== -raf@3.4.1, raf@^3.4.0: +raf@^3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39" integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA== @@ -8969,94 +9184,89 @@ rc@^1.2.7: minimist "^1.2.0" strip-json-comments "~2.0.1" -react-app-polyfill@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-1.0.4.tgz#4dd2636846b585c2d842b1e44e1bc29044345874" - integrity sha512-5Vte6ki7jpNsNCUKaboyofAhmURmCn2Y6Hu7ydJ6Iu4dct1CIGoh/1FT7gUZKAbowVX2lxVPlijvp1nKxfAl4w== +react-app-polyfill@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz#890f8d7f2842ce6073f030b117de9130a5f385f0" + integrity sha512-OfBnObtnGgLGfweORmdZbyEz+3dgVePQBb3zipiaDsMHV1NpWm0rDFYIVXFV/AK+x4VIIfWHhrdMIeoTLyRr2g== dependencies: - core-js "3.2.1" - object-assign "4.1.1" - promise "8.0.3" - raf "3.4.1" - regenerator-runtime "0.13.3" - whatwg-fetch "3.0.0" + core-js "^3.5.0" + object-assign "^4.1.1" + promise "^8.0.3" + raf "^3.4.1" + regenerator-runtime "^0.13.3" + whatwg-fetch "^3.0.0" react-copy-to-clipboard@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.1.tgz#8eae107bb400be73132ed3b6a7b4fb156090208e" - integrity sha512-ELKq31/E3zjFs5rDWNCfFL4NvNFQvGRoJdAKReD/rUPA+xxiLPQmZBZBvy2vgH7V0GE9isIQpT9WXbwIVErYdA== + version "5.0.2" + resolved "https://registry.yarnpkg.com/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz#d82a437e081e68dfca3761fbd57dbf2abdda1316" + integrity sha512-/2t5mLMMPuN5GmdXo6TebFa8IoFxZ+KTDDqYhcDm0PhkgEzSxVvIX26G20s1EB02A4h2UZgwtfymZ3lGJm0OLg== dependencies: copy-to-clipboard "^3" prop-types "^15.5.8" -react-dev-utils@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81" - integrity sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg== +react-dev-utils@^10.2.1: + version "10.2.1" + resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-10.2.1.tgz#f6de325ae25fa4d546d09df4bb1befdc6dd19c19" + integrity sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ== dependencies: - "@babel/code-frame" "7.5.5" + "@babel/code-frame" "7.8.3" address "1.1.2" - browserslist "4.7.0" + browserslist "4.10.0" chalk "2.4.2" - cross-spawn "6.0.5" + cross-spawn "7.0.1" detect-port-alt "1.1.6" - escape-string-regexp "1.0.5" - filesize "3.6.1" - find-up "3.0.0" - fork-ts-checker-webpack-plugin "1.5.0" + escape-string-regexp "2.0.0" + filesize "6.0.1" + find-up "4.1.0" + fork-ts-checker-webpack-plugin "3.1.1" global-modules "2.0.0" globby "8.0.2" gzip-size "5.1.1" immer "1.10.0" - inquirer "6.5.0" + inquirer "7.0.4" is-root "2.1.0" loader-utils "1.2.3" - open "^6.3.0" - pkg-up "2.0.0" - react-error-overlay "^6.0.3" + open "^7.0.2" + pkg-up "3.1.0" + react-error-overlay "^6.0.7" recursive-readdir "2.2.2" shell-quote "1.7.2" - sockjs-client "1.4.0" - strip-ansi "5.2.0" + strip-ansi "6.0.0" text-table "0.2.0" react-dom@^16.7.0: - version "16.10.2" - resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.10.2.tgz#4840bce5409176bc3a1f2bd8cb10b92db452fda6" - integrity sha512-kWGDcH3ItJK4+6Pl9DZB16BXYAZyrYQItU4OMy0jAkv5aNqc+mAKb4TpFtAteI6TJZu+9ZlNhaeNQSVQDHJzkw== + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f" + integrity sha512-81PIMmVLnCNLO/fFOQxdQkvEq/+Hfpv24XNJfpyZhTRfO0QcmQIF/PgCa1zCOj2w1hrn12MFLyaJ/G0+Mxtfag== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" - scheduler "^0.16.2" - -react-error-overlay@^6.0.3: - version "6.0.3" - resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.3.tgz#c378c4b0a21e88b2e159a3e62b2f531fd63bf60d" - integrity sha512-bOUvMWFQVk5oz8Ded9Xb7WVdEi3QGLC8tH7HmYP0Fdp4Bn3qw0tRFmr5TW6mvahzvmrK4a6bqWGfCevBflP+Xw== + scheduler "^0.19.1" -react-is@^16.10.2, react-is@^16.8.6: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" - integrity sha512-gbBVYR2p8mnriqAwWx9LbuUrShnAuSCNnuPGyc7GJrMVQtPDAh8iLpv7FRuMPFb56KkaVZIYSz1PrjI9q0QPCw== +react-error-overlay@^6.0.7: + version "6.0.7" + resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108" + integrity sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA== -react-is@^16.8.1, react-is@^16.8.4, react-is@^16.9.0: - version "16.10.2" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.10.2.tgz#984120fd4d16800e9a738208ab1fba422d23b5ab" - integrity sha512-INBT1QEgtcCCgvccr5/86CfD71fw9EPmDxgiJX4I2Ddr6ZsV6iFXsuby+qWJPtmNuMY0zByTsG4468P7nHuNWA== +react-is@^16.12.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" + integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== react-lifecycles-compat@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362" integrity sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA== -react-popper@^1.3.3: - version "1.3.4" - resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.4.tgz#f0cd3b0d30378e1f663b0d79bcc8614221652ced" - integrity sha512-9AcQB29V+WrBKk6X7p0eojd1f25/oJajVdMZkywIoAV6Ag7hzE1Mhyeup2Q1QnvFRtGQFQvtqfhlEoDAPfKAVA== +react-popper@^1.3.6: + version "1.3.7" + resolved "https://registry.yarnpkg.com/react-popper/-/react-popper-1.3.7.tgz#f6a3471362ef1f0d10a4963673789de1baca2324" + integrity sha512-nmqYTx7QVjCm3WUZLeuOomna138R1luC4EqkW3hxJUrAe+3eNz3oFCLYdnPwILfn0mX1Ew2c3wctrjlUMYYUww== dependencies: "@babel/runtime" "^7.1.2" create-react-context "^0.3.0" + deep-equal "^1.1.1" popper.js "^1.14.4" prop-types "^15.6.1" typed-styles "^0.0.7" @@ -9073,76 +9283,75 @@ react-resize-detector@^4.2.1: raf-schd "^4.0.2" resize-observer-polyfill "^1.5.1" -react-scripts@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.2.0.tgz#58ccd6b4ffa27f1b4d2986cbdcaa916660e9e33c" - integrity sha512-6LzuKbE2B4eFQG6i1FnTScn9HDcWBfXXnOwW9xKFPJ/E3rK8i1ufbOZ0ocKyRPxJAKdN7iqg3i7lt0+oxkSVOA== - dependencies: - "@babel/core" "7.6.0" - "@svgr/webpack" "4.3.2" - "@typescript-eslint/eslint-plugin" "^2.2.0" - "@typescript-eslint/parser" "^2.2.0" - babel-eslint "10.0.3" +react-scripts@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.4.1.tgz#f551298b5c71985cc491b9acf3c8e8c0ae3ada0a" + integrity sha512-JpTdi/0Sfd31mZA6Ukx+lq5j1JoKItX7qqEK4OiACjVQletM1P38g49d9/D0yTxp9FrSF+xpJFStkGgKEIRjlQ== + dependencies: + "@babel/core" "7.9.0" + "@svgr/webpack" "4.3.3" + "@typescript-eslint/eslint-plugin" "^2.10.0" + "@typescript-eslint/parser" "^2.10.0" + babel-eslint "10.1.0" babel-jest "^24.9.0" - babel-loader "8.0.6" - babel-plugin-named-asset-import "^0.3.4" - babel-preset-react-app "^9.0.2" - camelcase "^5.2.0" - case-sensitive-paths-webpack-plugin "2.2.0" - css-loader "2.1.1" - dotenv "6.2.0" + babel-loader "8.1.0" + babel-plugin-named-asset-import "^0.3.6" + babel-preset-react-app "^9.1.2" + camelcase "^5.3.1" + case-sensitive-paths-webpack-plugin "2.3.0" + css-loader "3.4.2" + dotenv "8.2.0" dotenv-expand "5.1.0" - eslint "^6.1.0" - eslint-config-react-app "^5.0.2" - eslint-loader "3.0.2" - eslint-plugin-flowtype "3.13.0" - eslint-plugin-import "2.18.2" + eslint "^6.6.0" + eslint-config-react-app "^5.2.1" + eslint-loader "3.0.3" + eslint-plugin-flowtype "4.6.0" + eslint-plugin-import "2.20.1" eslint-plugin-jsx-a11y "6.2.3" - eslint-plugin-react "7.14.3" + eslint-plugin-react "7.19.0" eslint-plugin-react-hooks "^1.6.1" - file-loader "3.0.1" - fs-extra "7.0.1" - html-webpack-plugin "4.0.0-beta.5" + file-loader "4.3.0" + fs-extra "^8.1.0" + html-webpack-plugin "4.0.0-beta.11" identity-obj-proxy "3.0.0" - is-wsl "^1.1.0" jest "24.9.0" - jest-environment-jsdom-fourteen "0.1.0" + jest-environment-jsdom-fourteen "1.0.1" jest-resolve "24.9.0" - jest-watch-typeahead "0.4.0" - mini-css-extract-plugin "0.8.0" + jest-watch-typeahead "0.4.2" + mini-css-extract-plugin "0.9.0" optimize-css-assets-webpack-plugin "5.0.3" - pnp-webpack-plugin "1.5.0" + pnp-webpack-plugin "1.6.4" postcss-flexbugs-fixes "4.1.0" postcss-loader "3.0.0" - postcss-normalize "7.0.1" + postcss-normalize "8.0.1" postcss-preset-env "6.7.0" postcss-safe-parser "4.0.1" - react-app-polyfill "^1.0.4" - react-dev-utils "^9.1.0" - resolve "1.12.0" - resolve-url-loader "3.1.0" - sass-loader "7.2.0" + react-app-polyfill "^1.0.6" + react-dev-utils "^10.2.1" + resolve "1.15.0" + resolve-url-loader "3.1.1" + sass-loader "8.0.2" semver "6.3.0" - style-loader "1.0.0" - terser-webpack-plugin "1.4.1" - ts-pnp "1.1.4" - url-loader "2.1.0" - webpack "4.41.0" - webpack-dev-server "3.2.1" - webpack-manifest-plugin "2.1.1" + style-loader "0.23.1" + terser-webpack-plugin "2.3.5" + ts-pnp "1.1.6" + url-loader "2.3.0" + webpack "4.42.0" + webpack-dev-server "3.10.3" + webpack-manifest-plugin "2.2.0" workbox-webpack-plugin "4.3.1" optionalDependencies: - fsevents "2.0.7" + fsevents "2.1.2" react-test-renderer@^16.0.0-0, react-test-renderer@^16.9.0: - version "16.11.0" - resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.11.0.tgz#72574566496462c808ac449b0287a4c0a1a7d8f8" - integrity sha512-nh9gDl8R4ut+ZNNb2EeKO5VMvTKxwzurbSMuGBoKtjpjbg8JK/u3eVPVNi1h1Ue+eYK9oSzJjb+K3lzLxyA4ag== + version "16.13.1" + resolved "https://registry.yarnpkg.com/react-test-renderer/-/react-test-renderer-16.13.1.tgz#de25ea358d9012606de51e012d9742e7f0deabc1" + integrity sha512-Sn2VRyOK2YJJldOqoh8Tn/lWQ+ZiKhyZTPtaO0Q6yNj+QDbmRkVFap6pZPy3YQk8DScRDfyqm/KxKYP9gCMRiQ== dependencies: object-assign "^4.1.1" prop-types "^15.6.2" react-is "^16.8.6" - scheduler "^0.17.0" + scheduler "^0.19.1" react-transition-group@^2.3.1: version "2.9.0" @@ -9155,27 +9364,24 @@ react-transition-group@^2.3.1: react-lifecycles-compat "^3.0.4" react@^16.7.0: - version "16.10.2" - resolved "https://registry.yarnpkg.com/react/-/react-16.10.2.tgz#a5ede5cdd5c536f745173c8da47bda64797a4cf0" - integrity sha512-MFVIq0DpIhrHFyqLU0S3+4dIcBhhOvBE8bJ/5kHPVOVaGdo0KuiQzpcjCPsf585WvhypqtrMILyoE2th6dT+Lw== + version "16.13.1" + resolved "https://registry.yarnpkg.com/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e" + integrity sha512-YMZQQq32xHLX0bz5Mnibv1/LHb3Sqzngu7xstSM+vrkE5Kzr9xE0yMByK5kMoTK30YVJE61WfbxIFFvfeDKT1w== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" prop-types "^15.6.2" reactstrap@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.0.1.tgz#0b663c8195f540bc1d6d5dbcbcf73cab56fe7c79" - integrity sha512-GvUWEL+a2+3npK1OxTXcNBMHXX4x6uc1KQRzK7yAOl+8sAHTRWqjunvMUfny3oDh8yKVzgqpqQlWWvs1B2HR9A== + version "8.4.1" + resolved "https://registry.yarnpkg.com/reactstrap/-/reactstrap-8.4.1.tgz#c7f63b9057f58b52833061711ebe235b9ec4e3e5" + integrity sha512-oAjp9PYYUGKl7SLXwrQ1oRIrYw0MqfO2mUqYgGapFKHG2uwjEtLip5rYxtMujkGx3COjH5FX1WtcfNU4oqpH0Q== dependencies: "@babel/runtime" "^7.2.0" classnames "^2.2.3" - lodash.isfunction "^3.0.9" - lodash.isobject "^3.0.2" - lodash.tonumber "^4.0.3" prop-types "^15.5.8" react-lifecycles-compat "^3.0.4" - react-popper "^1.3.3" + react-popper "^1.3.6" react-transition-group "^2.3.1" read-pkg-up@^2.0.0: @@ -9213,9 +9419,9 @@ read-pkg@^3.0.0: path-type "^3.0.0" "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: - version "2.3.6" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" - integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + version "2.3.7" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" + integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== dependencies: core-util-is "~1.0.0" inherits "~2.0.3" @@ -9226,9 +9432,9 @@ read-pkg@^3.0.0: util-deprecate "~1.0.1" readable-stream@^3.0.6, readable-stream@^3.1.1: - version "3.4.0" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" - integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" @@ -9243,12 +9449,12 @@ readdirp@^2.2.1: micromatch "^3.1.10" readable-stream "^2.0.2" -readdirp@~3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.2.0.tgz#c30c33352b12c96dfb4b895421a49fd5a9593839" - integrity sha512-crk4Qu3pmXwgxdSgGhgA/eXiJAPQiX4GMOZZMXnqKxHX7TaoL+3gQVo/WeuAiogr07DpnfjIMpXXa+PAIvwPGQ== +readdirp@~3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.3.0.tgz#984458d13a1e42e2e9f5841b129e162f369aff17" + integrity sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ== dependencies: - picomatch "^2.0.4" + picomatch "^2.0.7" realpath-native@^1.1.0: version "1.1.0" @@ -9269,10 +9475,10 @@ reflect.ownkeys@^0.2.0: resolved "https://registry.yarnpkg.com/reflect.ownkeys/-/reflect.ownkeys-0.2.0.tgz#749aceec7f3fdf8b63f927a04809e90c5c0b3460" integrity sha1-dJrO7H8/34tj+SegSAnpDFwLNGA= -regenerate-unicode-properties@^8.1.0: - version "8.1.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" - integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== +regenerate-unicode-properties@^8.2.0: + version "8.2.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" + integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== dependencies: regenerate "^1.4.0" @@ -9281,22 +9487,23 @@ regenerate@^1.4.0: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== -regenerator-runtime@0.13.3, regenerator-runtime@^0.13.2: - version "0.13.3" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz#7cf6a77d8f5c6f60eb73c5fc1955b2ceb01e6bf5" - integrity sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw== - regenerator-runtime@^0.11.0: version "0.11.1" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== -regenerator-transform@^0.14.0: - version "0.14.1" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.1.tgz#3b2fce4e1ab7732c08f665dfdb314749c7ddd2fb" - integrity sha512-flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ== +regenerator-runtime@^0.13.3, regenerator-runtime@^0.13.4: + version "0.13.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.5.tgz#d878a1d094b4306d10b9096484b33ebd55e26697" + integrity sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA== + +regenerator-transform@^0.14.2: + version "0.14.4" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" + integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== dependencies: - private "^0.1.6" + "@babel/runtime" "^7.8.4" + private "^0.1.8" regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" @@ -9311,43 +9518,49 @@ regex-parser@2.2.10: resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== -regexp.prototype.flags@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.2.0.tgz#6b30724e306a27833eeb171b66ac8890ba37e41c" - integrity sha512-ztaw4M1VqgMwl9HlPpOuiYgItcHlunW0He2fE6eNfT6E/CF2FtYi9ofOYe4mKntstYk0Fyh/rDRBdS3AnxjlrA== +regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" + integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== dependencies: - define-properties "^1.1.2" + define-properties "^1.1.3" + es-abstract "^1.17.0-next.1" regexpp@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== -regexpu-core@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.6.0.tgz#2037c18b327cfce8a6fea2a4ec441f2432afb8b6" - integrity sha512-YlVaefl8P5BnFYOITTNzDvan1ulLOiXJzCNZxduTIosN17b87h3bvG9yHMoHaRuo88H4mQ06Aodj5VtYGGGiTg== +regexpp@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.0.0.tgz#dd63982ee3300e67b41c1956f850aa680d9d330e" + integrity sha512-Z+hNr7RAVWxznLPuA7DIh8UNX1j9CDrUQxskw9IrBE1Dxue2lyXT+shqEIeLUjrokxIP8CMy1WkjgG3rTsd5/g== + +regexpu-core@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" + integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== dependencies: regenerate "^1.4.0" - regenerate-unicode-properties "^8.1.0" - regjsgen "^0.5.0" - regjsparser "^0.6.0" + regenerate-unicode-properties "^8.2.0" + regjsgen "^0.5.1" + regjsparser "^0.6.4" unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.1.0" + unicode-match-property-value-ecmascript "^1.2.0" -regjsgen@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" - integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== +regjsgen@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.1.tgz#48f0bf1a5ea205196929c0d9798b42d1ed98443c" + integrity sha512-5qxzGZjDs9w4tzT3TPhCJqWdCc3RLYwy9J2NB0nm5Lz+S273lvWcpjaTGHsT1dc6Hhfq41uSEOw8wBmxrKOuyg== -regjsparser@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" - integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== +regjsparser@^0.6.4: + version "0.6.4" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" + integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== dependencies: jsesc "~0.5.0" -relateurl@0.2.x: +relateurl@^0.2.7: version "0.2.7" resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= @@ -9378,26 +9591,26 @@ repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= -request-promise-core@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" - integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== +request-promise-core@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" + integrity sha512-QIs2+ArIGQVp5ZYbWD5ZLCY29D5CfWizP8eWnm8FoGD1TX61veauETVQbrV60662V0oFBkrDOuaBI8XgtuyYAQ== dependencies: - lodash "^4.17.11" + lodash "^4.17.15" request-promise-native@^1.0.5, request-promise-native@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" - integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== + version "1.0.8" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.8.tgz#a455b960b826e44e2bf8999af64dff2bfe58cb36" + integrity sha512-dapwLGqkHtwL5AEbfenuzjTYg35Jd6KPytsC2/TLkVMz8rm+tNt72MGUWT1RP/aYawMpN6HqbNGBQaRcBtjQMQ== dependencies: - request-promise-core "1.1.2" + request-promise-core "1.1.3" stealthy-require "^1.1.1" tough-cookie "^2.3.3" request@^2.87.0, request@^2.88.0: - version "2.88.0" - resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" - integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + version "2.88.2" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" + integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -9406,7 +9619,7 @@ request@^2.87.0, request@^2.88.0: extend "~3.0.2" forever-agent "~0.6.1" form-data "~2.3.2" - har-validator "~5.1.0" + har-validator "~5.1.3" http-signature "~1.2.0" is-typedarray "~1.0.0" isstream "~0.1.2" @@ -9416,7 +9629,7 @@ request@^2.87.0, request@^2.88.0: performance-now "^2.1.0" qs "~6.5.2" safe-buffer "^5.1.2" - tough-cookie "~2.4.3" + tough-cookie "~2.5.0" tunnel-agent "^0.6.0" uuid "^3.3.2" @@ -9462,18 +9675,18 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== -resolve-url-loader@3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.0.tgz#54d8181d33cd1b66a59544d05cadf8e4aa7d37cc" - integrity sha512-2QcrA+2QgVqsMJ1Hn5NnJXIGCX1clQ1F6QJTqOeiaDw9ACo1G2k+8/shq3mtqne03HOFyskAClqfxKyFBriXZg== +resolve-url-loader@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz#28931895fa1eab9be0647d3b2958c100ae3c0bf0" + integrity sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ== dependencies: adjust-sourcemap-loader "2.0.0" - camelcase "5.0.0" + camelcase "5.3.1" compose-function "3.0.3" - convert-source-map "1.6.0" + convert-source-map "1.7.0" es6-iterator "2.0.3" loader-utils "1.2.3" - postcss "7.0.14" + postcss "7.0.21" rework "1.0.1" rework-visit "1.0.0" source-map "0.6.1" @@ -9488,19 +9701,26 @@ resolve@1.1.7: resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b" integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs= -resolve@1.12.0, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1: - version "1.12.0" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" - integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== +resolve@1.15.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.0.tgz#1b7ca96073ebb52e741ffd799f6b39ea462c67f5" + integrity sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw== dependencies: path-parse "^1.0.6" -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= +resolve@^1.10.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.3.2, resolve@^1.8.1: + version "1.15.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" + integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== + dependencies: + path-parse "^1.0.6" + +restore-cursor@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" + integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== dependencies: - onetime "^2.0.0" + onetime "^5.1.0" signal-exit "^3.0.2" ret@~0.1.10: @@ -9508,6 +9728,11 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== +retry@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b" + integrity sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs= + rework-visit@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/rework-visit/-/rework-visit-1.0.0.tgz#9945b2803f219e2f7aca00adb8bc9f640f842c9a" @@ -9538,7 +9763,7 @@ rimraf@2.6.3: dependencies: glob "^7.1.3" -rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: +rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== @@ -9566,10 +9791,10 @@ rsvp@^4.8.4: resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734" integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA== -run-async@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" - integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= +run-async@^2.2.0, run-async@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.0.tgz#e59054a5b86876cfae07f431d18cbaddc594f1e8" + integrity sha512-xJTbh/d7Lm7SBhc1tNvTpeCHaEzoyxPrqNlvSdMfBTYwaY++UJFyXUOxAtsRUXjlqOfj8luNaR9vjCh4KeV+pg== dependencies: is-promise "^2.1.0" @@ -9580,10 +9805,10 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rxjs@^6.4.0: - version "6.5.3" - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.3.tgz#510e26317f4db91a7eb1de77d9dd9ba0a4899a3a" - integrity sha512-wuYsAYYFdWTAnAaPoKGNhfpWwKZbJW+HgAJ+mImp+Epl7BG8oNWBCTyRM8gba9k4lk8BgWdoYm21Mo/RYhhbgA== +rxjs@^6.5.3: + version "6.5.4" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.4.tgz#e0777fe0d184cec7872df147f303572d414e211c" + integrity sha512-naMQXcgEo3csAEGvw/NydRA0fuS2nDZJiw1YUWFKU7aPPAPGZEsD4Iimit96qwCieH6y614MCLYwdkrWx7z/7Q== dependencies: tslib "^1.9.0" @@ -9625,31 +9850,36 @@ sane@^4.0.3: walker "~1.0.5" sanitize-html@^1.20.1: - version "1.20.1" - resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.20.1.tgz#f6effdf55dd398807171215a62bfc21811bacf85" - integrity sha512-txnH8TQjaQvg2Q0HY06G6CDJLVYCpbnxrdO0WN8gjCKaU5J0KbyGYhZxx5QJg3WLZ1lB7XU9kDkfrCXUozqptA== + version "1.22.1" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-1.22.1.tgz#5b36c92ab27917ddd2775396815c2bc1a6268310" + integrity sha512-++IMC00KfMQc45UWZJlhWOlS9eMrME38sFG9GXfR+k6oBo9JXSYQgTOZCl9j3v/smFTRNT9XNwz5DseFdMY+2Q== dependencies: chalk "^2.4.1" - htmlparser2 "^3.10.0" + htmlparser2 "^4.1.0" lodash.clonedeep "^4.5.0" lodash.escaperegexp "^4.1.2" lodash.isplainobject "^4.0.6" lodash.isstring "^4.0.1" - lodash.mergewith "^4.6.1" - postcss "^7.0.5" - srcset "^1.0.0" + lodash.mergewith "^4.6.2" + postcss "^7.0.27" + srcset "^2.0.1" xtend "^4.0.1" -sass-loader@7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-7.2.0.tgz#e34115239309d15b2527cb62b5dfefb62a96ff7f" - integrity sha512-h8yUWaWtsbuIiOCgR9fd9c2lRXZ2uG+h8Dzg/AGNj+Hg/3TO8+BBAW9mEP+mh8ei+qBKqSJ0F1FLlYjNBc61OA== +sanitize.css@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/sanitize.css/-/sanitize.css-10.0.0.tgz#b5cb2547e96d8629a60947544665243b1dc3657a" + integrity sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg== + +sass-loader@8.0.2: + version "8.0.2" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-8.0.2.tgz#debecd8c3ce243c76454f2e8290482150380090d" + integrity sha512-7o4dbSK8/Ol2KflEmSco4jTjQoV988bM82P9CZdmo9hR3RLnvNc0ufMNdMrB0caq38JQ/FgF4/7RcbcfKzxoFQ== dependencies: clone-deep "^4.0.1" - loader-utils "^1.0.1" - neo-async "^2.5.0" - pify "^4.0.1" - semver "^5.5.0" + loader-utils "^1.2.3" + neo-async "^2.6.1" + schema-utils "^2.6.1" + semver "^6.3.0" sax@^1.2.4, sax@~1.2.4: version "1.2.4" @@ -9663,18 +9893,10 @@ saxes@^3.1.9: dependencies: xmlchars "^2.1.1" -scheduler@^0.16.2: - version "0.16.2" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.16.2.tgz#f74cd9d33eff6fc554edfb79864868e4819132c1" - integrity sha512-BqYVWqwz6s1wZMhjFvLfVR5WXP7ZY32M/wYPo04CcuPM7XZEbV2TBNW7Z0UkguPTl0dWMA59VbNXxK6q+pHItg== - dependencies: - loose-envify "^1.1.0" - object-assign "^4.1.1" - -scheduler@^0.17.0: - version "0.17.0" - resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.17.0.tgz#7c9c673e4ec781fac853927916d1c426b6f3ddfe" - integrity sha512-7rro8Io3tnCPuY4la/NuI5F2yfESpnfZyT6TtkXnSWVkcu0BCDJ+8gk5ozUaFaxpIyNuWAPXrH0yFcSi28fnDA== +scheduler@^0.19.1: + version "0.19.1" + resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196" + integrity sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA== dependencies: loose-envify "^1.1.0" object-assign "^4.1.1" @@ -9688,12 +9910,12 @@ schema-utils@^1.0.0: ajv-errors "^1.0.0" ajv-keywords "^3.1.0" -schema-utils@^2.0.0, schema-utils@^2.0.1, schema-utils@^2.2.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.5.0.tgz#8f254f618d402cc80257486213c8970edfd7c22f" - integrity sha512-32ISrwW2scPXHUSusP8qMg5dLUawKkyV+/qIEV9JdXKx+rsM6mi8vZY8khg2M69Qom16rtroWXD3Ybtiws38gQ== +schema-utils@^2.5.0, schema-utils@^2.6.0, schema-utils@^2.6.1, schema-utils@^2.6.4, schema-utils@^2.6.5: + version "2.6.5" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.6.5.tgz#c758f0a7e624263073d396e29cd40aa101152d8a" + integrity sha512-5KXuwKziQrTVHh8j/Uxz+QUbxkaLW9X/86NBlx/gnKgtsZA2GIVMUn17qWhRFwF8jdYb3Dig5hRO/W5mZqy6SQ== dependencies: - ajv "^6.10.2" + ajv "^6.12.0" ajv-keywords "^3.4.1" select-hose@^2.0.0: @@ -9701,14 +9923,14 @@ select-hose@^2.0.0: resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca" integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo= -selfsigned@^1.9.1: +selfsigned@^1.10.7: version "1.10.7" resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.7.tgz#da5819fd049d5574f28e88a9bcc6dbc6e6f3906b" integrity sha512-8M3wBCzeWIJnQfl43IKwOmC4H/RAp50S8DF60znzjW5GVqTcSe2vWclt7hmYVPkKPlHWOu5EaWOMZ2Y6W8ZXTA== dependencies: node-forge "0.9.0" -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -9718,6 +9940,11 @@ semver@6.3.0, semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== +semver@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" + integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== + send@0.17.1: version "0.17.1" resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" @@ -9737,12 +9964,12 @@ send@0.17.1: range-parser "~1.2.1" statuses "~1.5.0" -serialize-javascript@^1.7.0: - version "1.9.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb" - integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A== +serialize-javascript@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-2.1.2.tgz#ecec53b0e0317bdc95ef76ab7074b7384785fa61" + integrity sha512-rs9OggEUF0V4jUSecXazOYsLfu7OGK2qIn3c7IPBiffz32XniEp/TX9Xmc9LQfK2nQ2QKHvZ2oygKUGU0lG4jQ== -serve-index@^1.7.2: +serve-index@^1.9.1: version "1.9.1" resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239" integrity sha1-03aNabHn2C5c4FD/9bRTvqEqkjk= @@ -9780,7 +10007,7 @@ set-value@^2.0.0, set-value@^2.0.1: is-plain-object "^2.0.3" split-string "^3.0.1" -setimmediate@^1.0.4, setimmediate@^1.0.5: +setimmediate@^1.0.4: version "1.0.5" resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= @@ -9827,11 +10054,23 @@ shebang-command@^1.2.0: dependencies: shebang-regex "^1.0.0" +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + shebang-regex@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + shell-quote@1.7.2: version "1.7.2" resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" @@ -9842,6 +10081,14 @@ shellwords@^0.1.1: resolved "https://registry.yarnpkg.com/shellwords/-/shellwords-0.1.1.tgz#d6b9181c1a48d397324c84871efbcfc73fc0654b" integrity sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww== +side-channel@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.2.tgz#df5d1abadb4e4bf4af1cd8852bf132d2f7876947" + integrity sha512-7rL9YlPHg7Ancea1S96Pa8/QWb4BtXL/TZvS6B8XFetGBeuhAsfmUspK6DokBeZ64+Kj9TCNRD/30pVz1BvQNA== + dependencies: + es-abstract "^1.17.0-next.1" + object-inspect "^1.7.0" + signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" @@ -9867,10 +10114,10 @@ sinon@^7.5.0: nise "^1.5.2" supports-color "^5.5.0" -sisteransi@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.3.tgz#98168d62b79e3a5e758e27ae63c4a053d748f4eb" - integrity sha512-SbEG75TzH8G7eVXFSN5f9EExILKfly7SUvVY5DhhYLvfhKqhDFY0OzevWa/zwak0RLRfWS5AvfMWpd9gJvr5Yg== +sisteransi@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" + integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== slash@^1.0.0: version "1.0.0" @@ -9926,18 +10173,6 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" -sockjs-client@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.3.0.tgz#12fc9d6cb663da5739d3dc5fb6e8687da95cb177" - integrity sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg== - dependencies: - debug "^3.2.5" - eventsource "^1.0.7" - faye-websocket "~0.11.1" - inherits "^2.0.3" - json3 "^3.3.2" - url-parse "^1.4.3" - sockjs-client@1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5" @@ -9971,20 +10206,20 @@ source-list-map@^2.0.0: integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== source-map-resolve@^0.5.0, source-map-resolve@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" - integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + version "0.5.3" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a" + integrity sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw== dependencies: - atob "^2.1.1" + atob "^2.1.2" decode-uri-component "^0.2.0" resolve-url "^0.2.1" source-map-url "^0.4.0" urix "^0.1.0" source-map-support@^0.5.6, source-map-support@~0.5.12: - version "0.5.13" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" - integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== + version "0.5.16" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.16.tgz#0ae069e7fe3ba7538c64c98515e35339eac5a042" + integrity sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ== dependencies: buffer-from "^1.0.0" source-map "^0.6.0" @@ -9999,7 +10234,7 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, sourc resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@^0.5.0, source-map@^0.5.3, source-map@^0.5.6: +source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= @@ -10042,7 +10277,7 @@ spdy-transport@^3.0.0: readable-stream "^3.0.6" wbuf "^1.7.3" -spdy@^4.0.0: +spdy@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.1.tgz#6f12ed1c5db7ea4f24ebb8b89ba58c87c08257f2" integrity sha512-HeZS3PBdMA+sZSu0qwpCxl3DeALD5ASx8pAX0jZdKXSpPWbQ6SYGnlg3BBmYLx5LtiZrmkAZfErCm2oECBcioA== @@ -10065,13 +10300,10 @@ sprintf-js@~1.0.2: resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= -srcset@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/srcset/-/srcset-1.0.0.tgz#a5669de12b42f3b1d5e83ed03c71046fc48f41ef" - integrity sha1-pWad4StC87HV6D7QPHEEb8SPQe8= - dependencies: - array-uniq "^1.0.2" - number-is-nan "^1.0.0" +srcset@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/srcset/-/srcset-2.0.1.tgz#8f842d357487eb797f413d9c309de7a5149df5ac" + integrity sha512-00kZI87TdRKwt+P8jj8UZxbfp7mK2ufxcIMWvhAOZNJTRROimpHeruWrGvCZneiuVDLqdyHefVp748ECTnyUBQ== sshpk@^1.7.0: version "1.16.1" @@ -10095,6 +10327,14 @@ ssri@^6.0.1: dependencies: figgy-pudding "^3.5.1" +ssri@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-7.1.0.tgz#92c241bf6de82365b5c7fb4bd76e975522e1294d" + integrity sha512-77/WrDZUWocK0mvA5NTRQyveUf+wsrIc6vyrxpS8tVvYBcX215QbafrJR3KtkpskIzoFLqqNuuYQvxaMjXJ/0g== + dependencies: + figgy-pudding "^3.5.1" + minipass "^3.1.1" + stable@^0.1.8: version "0.1.8" resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" @@ -10151,9 +10391,9 @@ stream-http@^2.7.2: xtend "^4.0.0" stream-shift@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" - integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= + version "1.0.1" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" + integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== strict-uri-encode@^1.0.0: version "1.1.0" @@ -10185,7 +10425,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== @@ -10202,27 +10442,48 @@ string-width@^3.0.0, string-width@^3.1.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^5.1.0" -string.prototype.trim@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.0.tgz#75a729b10cfc1be439543dae442129459ce61e3d" - integrity sha512-9EIjYD/WdlvLpn987+ctkLf0FfvBefOCuiEr2henD8X+7jfwPnyvTdmW8OJhj5p+M0/96mBdynLWkxUr+rHlpg== +string-width@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" + integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.0" + +string.prototype.matchall@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.2.tgz#48bb510326fb9fdeb6a33ceaa81a6ea04ef7648e" + integrity sha512-N/jp6O5fMf9os0JU3E72Qhf590RSRZU/ungsL/qJUYVTNv7hTG0P/dbPjxINVN9jpscu3nzYwKESU3P3RY5tOg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.0" + has-symbols "^1.0.1" + internal-slot "^1.0.2" + regexp.prototype.flags "^1.3.0" + side-channel "^1.0.2" + +string.prototype.trim@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.1.tgz#141233dff32c82bfad80684d7e5f0869ee0fb782" + integrity sha512-MjGFEeqixw47dAMFMtgUro/I0+wNqZB5GKXGt1fFr24u3TzDXCPu7J9Buppzoe3r/LqkSDLDDJzE15RGWDGAVw== dependencies: define-properties "^1.1.3" - es-abstract "^1.13.0" + es-abstract "^1.17.0-next.1" function-bind "^1.1.1" -string.prototype.trimleft@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" - integrity sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw== +string.prototype.trimleft@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.1.tgz#9bdb8ac6abd6d602b17a4ed321870d2f8dcefc74" + integrity sha512-iu2AGd3PuP5Rp7x2kEZCrB2Nf41ehzh+goo8TV7z8/XDBbsvc6HQIlUl9RjkZ4oyrW1XM5UwlGl1oVEaDjg6Ag== dependencies: define-properties "^1.1.3" function-bind "^1.1.1" -string.prototype.trimright@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz#669d164be9df9b6f7559fa8e89945b168a5a6c58" - integrity sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg== +string.prototype.trimright@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string.prototype.trimright/-/string.prototype.trimright-2.1.1.tgz#440314b15996c866ce8a0341894d45186200c5d9" + integrity sha512-qFvWL3/+QIgZXVmJBfpHmxLB7xsUXz6HsUmP8+5dRaC3Q7oKUv9Vo6aMCRZC1smrtyECFsIT30PqBJ1gTjAs+g== dependencies: define-properties "^1.1.3" function-bind "^1.1.1" @@ -10250,12 +10511,12 @@ stringify-object@^3.3.0: is-obj "^1.0.1" is-regexp "^1.0.0" -strip-ansi@5.2.0, strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== +strip-ansi@6.0.0, strip-ansi@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" + integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== dependencies: - ansi-regex "^4.1.0" + ansi-regex "^5.0.0" strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" @@ -10271,6 +10532,13 @@ strip-ansi@^4.0.0: dependencies: ansi-regex "^3.0.0" +strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -10299,13 +10567,13 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= -style-loader@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-1.0.0.tgz#1d5296f9165e8e2c85d24eee0b7caf9ec8ca1f82" - integrity sha512-B0dOCFwv7/eY31a5PCieNwMgMhVGFe9w+rh7s/Bx8kfFkrth9zfTZquoYvdw8URgiqxObQKcpW51Ugz1HjfdZw== +style-loader@0.23.1: + version "0.23.1" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" + integrity sha512-XK+uv9kWwhZMZ1y7mysB+zoihsEj4wneFWAS5qoiLwzW0WzSqMrrsIy+a3zkQJq0ipFtBpX5W3MqyRIBF/WFGg== dependencies: - loader-utils "^1.2.3" - schema-utils "^2.0.1" + loader-utils "^1.1.0" + schema-utils "^1.0.0" stylehacks@^4.0.0: version "4.0.3" @@ -10335,22 +10603,29 @@ supports-color@^6.1.0: dependencies: has-flag "^3.0.0" +supports-color@^7.0.0, supports-color@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" + integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== + dependencies: + has-flag "^4.0.0" + svg-parser@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.2.tgz#d134cc396fa2681dc64f518330784e98bd801ec8" - integrity sha512-1gtApepKFweigFZj3sGO8KT8LvVZK8io146EzXrpVuWCDAbISz/yMucco3hWTkpZNoPabM+dnMOpy6Swue68Zg== + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== svgo@^1.0.0, svgo@^1.2.2: - version "1.3.0" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.0.tgz#bae51ba95ded9a33a36b7c46ce9c359ae9154313" - integrity sha512-MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ== + version "1.3.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167" + integrity sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw== dependencies: chalk "^2.4.1" coa "^2.0.2" css-select "^2.0.0" css-select-base-adapter "^0.1.1" - css-tree "1.0.0-alpha.33" - csso "^3.5.1" + css-tree "1.0.0-alpha.37" + csso "^4.0.2" js-yaml "^3.13.1" mkdirp "~0.5.1" object.values "^1.1.0" @@ -10374,12 +10649,12 @@ table@^5.2.3: slice-ansi "^2.1.0" string-width "^3.0.0" -tapable@^1.0.0, tapable@^1.1.0, tapable@^1.1.3: +tapable@^1.0.0, tapable@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tar@^4: +tar@^4.4.2: version "4.4.13" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== @@ -10412,25 +10687,40 @@ tempusdominus-core@^5.0.3: moment "^2.22.2" moment-timezone "^0.4.0" -terser-webpack-plugin@1.4.1, terser-webpack-plugin@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.1.tgz#61b18e40eaee5be97e771cdbb10ed1280888c2b4" - integrity sha512-ZXmmfiwtCLfz8WKZyYUuuHf3dMYEjg8NrjHMb0JqHVHVOSkzp3cW2/XG1fP3tRhqEqSzMwzzRQGtAPbs4Cncxg== +terser-webpack-plugin@2.3.5: + version "2.3.5" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-2.3.5.tgz#5ad971acce5c517440ba873ea4f09687de2f4a81" + integrity sha512-WlWksUoq+E4+JlJ+h+U+QUzXpcsMSSNXkDy9lBVkSqDn1w23Gg29L/ary9GeJVYCGiNJJX7LnVc4bwL1N3/g1w== + dependencies: + cacache "^13.0.1" + find-cache-dir "^3.2.0" + jest-worker "^25.1.0" + p-limit "^2.2.2" + schema-utils "^2.6.4" + serialize-javascript "^2.1.2" + source-map "^0.6.1" + terser "^4.4.3" + webpack-sources "^1.4.3" + +terser-webpack-plugin@^1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.4.3.tgz#5ecaf2dbdc5fb99745fd06791f46fc9ddb1c9a7c" + integrity sha512-QMxecFz/gHQwteWwSo5nTc6UaICqN1bMedC5sMtUc7y3Ha3Q8y6ZO0iCR8pq4RJC8Hjf0FEPEHZqcMB/+DFCrA== dependencies: cacache "^12.0.2" find-cache-dir "^2.1.0" is-wsl "^1.1.0" schema-utils "^1.0.0" - serialize-javascript "^1.7.0" + serialize-javascript "^2.1.2" source-map "^0.6.1" terser "^4.1.2" webpack-sources "^1.4.0" worker-farm "^1.7.0" -terser@^4.1.2: - version "4.3.9" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.3.9.tgz#e4be37f80553d02645668727777687dad26bbca8" - integrity sha512-NFGMpHjlzmyOtPL+fDw3G7+6Ueh/sz4mkaUYa4lJCxOPTNzd0Uj0aZJOmsDYoSQyfuVoWDMSWTPU3huyOm2zdA== +terser@^4.1.2, terser@^4.4.3, terser@^4.6.3: + version "4.6.7" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.6.7.tgz#478d7f9394ec1907f0e488c5f6a6a9a2bad55e72" + integrity sha512-fmr7M1f7DBly5cX2+rFDvmGBAaaZyPrHYK4mMdHEDAdNTqXSZgSOfqsfGq2HqPGT/1V0foZZuCZFx8CHKgAk3g== dependencies: commander "^2.20.0" source-map "~0.6.1" @@ -10550,7 +10840,7 @@ toidentifier@1.0.0: resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== -tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0: +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.5.0, tough-cookie@~2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== @@ -10567,14 +10857,6 @@ tough-cookie@^3.0.1: psl "^1.1.28" punycode "^2.1.1" -tough-cookie@~2.4.3: - version "2.4.3" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" - integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== - dependencies: - psl "^1.1.24" - punycode "^1.4.1" - tr46@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" @@ -10582,15 +10864,15 @@ tr46@^1.0.1: dependencies: punycode "^2.1.0" -ts-pnp@1.1.4, ts-pnp@^1.1.2: - version "1.1.4" - resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.4.tgz#ae27126960ebaefb874c6d7fa4729729ab200d90" - integrity sha512-1J/vefLC+BWSo+qe8OnJQfWTYRS6ingxjwqmHMqaMxXMj7kFtKLgAaYW3JeX3mktjgUL+etlU8/B4VUAUI9QGw== +ts-pnp@1.1.6, ts-pnp@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.1.6.tgz#389a24396d425a0d3162e96d2b4638900fdc289a" + integrity sha512-CrG5GqAAzMT7144Cl+UIFP7mz/iIhiy+xQ6GGcnjTezhALT02uPMRw7tgDSESgB5MsfKt55+GPWw4ir1kVtMIQ== -tslib@^1.8.1, tslib@^1.9.0: - version "1.10.0" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" - integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== +tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" + integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== tsutils@^3.17.1: version "3.17.1" @@ -10628,10 +10910,15 @@ type-detect@4.0.8: resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== -type-fest@^0.5.2: - version "0.5.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.5.2.tgz#d6ef42a0356c6cd45f49485c3b6281fc148e48a2" - integrity sha512-DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw== +type-fest@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" + integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== + +type-fest@^0.8.1: + version "0.8.1" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== type-is@~1.6.17, type-is@~1.6.18: version "1.6.18" @@ -10646,6 +10933,11 @@ type@^1.0.1: resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== +type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/type/-/type-2.0.0.tgz#5f16ff6ef2eb44f260494dae271033b29c09a9c3" + integrity sha512-KBt58xCHry4Cejnc2ISQAF7QY+ORngsWfxezO68+12hKV6lQY8P/psIkcbjeHWn7MqcgciWJyCCevFMJdIXpow== + typed-styles@^0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/typed-styles/-/typed-styles-0.0.7.tgz#93392a008794c4595119ff62dde6809dbc40a3d9" @@ -10657,30 +10949,9 @@ typedarray@^0.0.6: integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= typescript@^3.3.3: - version "3.7.2" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.2.tgz#27e489b95fa5909445e9fef5ee48d81697ad18fb" - integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ== - -ua-parser-js@^0.7.18: - version "0.7.20" - resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098" - integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw== - -uglify-js@3.4.x: - version "3.4.10" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" - integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== - dependencies: - commander "~2.19.0" - source-map "~0.6.1" - -uglify-js@^3.1.4: - version "3.6.2" - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.2.tgz#fd8048c86d990ddd29fe99d3300e0cb329103f4d" - integrity sha512-+gh/xFte41GPrgSMJ/oJVq15zYmqr74pY9VoM69UzMzq9NFk4YDylclb1/bhEzZSaUQjbW5RvniHeq1cdtRYjw== - dependencies: - commander "2.20.0" - source-map "~0.6.1" + version "3.8.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.8.3.tgz#409eb8544ea0335711205869ec458ab109ee1061" + integrity sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w== unicode-canonical-property-names-ecmascript@^1.0.4: version "1.0.4" @@ -10695,15 +10966,15 @@ unicode-match-property-ecmascript@^1.0.4: unicode-canonical-property-names-ecmascript "^1.0.4" unicode-property-aliases-ecmascript "^1.0.4" -unicode-match-property-value-ecmascript@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" - integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== +unicode-match-property-value-ecmascript@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" + integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== unicode-property-aliases-ecmascript@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" - integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4" + integrity sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg== union-value@^1.0.0: version "1.0.1" @@ -10767,11 +11038,6 @@ upath@^1.1.1: resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== -upper-case@^1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" - integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= - uri-js@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" @@ -10784,14 +11050,14 @@ urix@^0.1.0: resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= -url-loader@2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.1.0.tgz#bcc1ecabbd197e913eca23f5e0378e24b4412961" - integrity sha512-kVrp/8VfEm5fUt+fl2E0FQyrpmOYgMEkBsv8+UDP1wFhszECq5JyGF33I7cajlVY90zRZ6MyfgKXngLvHYZX8A== +url-loader@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b" + integrity sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog== dependencies: loader-utils "^1.2.3" mime "^2.4.4" - schema-utils "^2.0.0" + schema-utils "^2.5.0" url-parse@^1.4.3: version "1.4.7" @@ -10819,7 +11085,7 @@ util-deprecate@^1.0.1, util-deprecate@~1.0.1: resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= -util.promisify@1.0.0, util.promisify@^1.0.0, util.promisify@~1.0.0: +util.promisify@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== @@ -10827,6 +11093,16 @@ util.promisify@1.0.0, util.promisify@^1.0.0, util.promisify@~1.0.0: define-properties "^1.1.2" object.getownpropertydescriptors "^2.0.3" +util.promisify@^1.0.0, util.promisify@~1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee" + integrity sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.17.2" + has-symbols "^1.0.1" + object.getownpropertydescriptors "^2.1.0" + util@0.10.3: version "0.10.3" resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" @@ -10852,9 +11128,9 @@ utils-merge@1.0.1: integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= uuid@^3.0.1, uuid@^3.3.2: - version "3.3.3" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.3.tgz#4568f0216e78760ee1dbf3a4d2cf53e224112866" - integrity sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ== + version "3.4.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" + integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== v8-compile-cache@^2.0.3: version "2.1.0" @@ -10875,9 +11151,9 @@ vary@~1.1.2: integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= vendors@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" - integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== + version "1.0.4" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e" + integrity sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w== verror@1.10.0: version "1.10.0" @@ -10889,16 +11165,16 @@ verror@1.10.0: extsprintf "^1.2.0" vm-browserify@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019" - integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw== + version "1.1.2" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" + integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== w3c-hr-time@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" - integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + version "1.0.2" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" + integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== dependencies: - browser-process-hrtime "^0.1.2" + browser-process-hrtime "^1.0.0" w3c-xmlserializer@^1.1.2: version "1.1.2" @@ -10916,13 +11192,6 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" -warning@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/warning/-/warning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c" - integrity sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w= - dependencies: - loose-envify "^1.0.0" - warning@^4.0.2, warning@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" @@ -10951,7 +11220,7 @@ webidl-conversions@^4.0.2: resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== -webpack-dev-middleware@^3.5.1: +webpack-dev-middleware@^3.7.2: version "3.7.2" resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz#0019c3db716e3fa5cecbf64f2ab88a74bab331f3" integrity sha512-1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw== @@ -10962,41 +11231,44 @@ webpack-dev-middleware@^3.5.1: range-parser "^1.2.1" webpack-log "^2.0.0" -webpack-dev-server@3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.2.1.tgz#1b45ce3ecfc55b6ebe5e36dab2777c02bc508c4e" - integrity sha512-sjuE4mnmx6JOh9kvSbPYw3u/6uxCLHNWfhWaIPwcXWsvWOPN+nc5baq4i9jui3oOBRXGonK9+OI0jVkaz6/rCw== +webpack-dev-server@3.10.3: + version "3.10.3" + resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-3.10.3.tgz#f35945036813e57ef582c2420ef7b470e14d3af0" + integrity sha512-e4nWev8YzEVNdOMcNzNeCN947sWJNd43E5XvsJzbAL08kGc2frm1tQ32hTJslRS+H65LCb/AaUCYU7fjHCpDeQ== dependencies: ansi-html "0.0.7" bonjour "^3.5.0" - chokidar "^2.0.0" - compression "^1.5.2" - connect-history-api-fallback "^1.3.0" + chokidar "^2.1.8" + compression "^1.7.4" + connect-history-api-fallback "^1.6.0" debug "^4.1.1" - del "^3.0.0" - express "^4.16.2" - html-entities "^1.2.0" - http-proxy-middleware "^0.19.1" + del "^4.1.1" + express "^4.17.1" + html-entities "^1.2.1" + http-proxy-middleware "0.19.1" import-local "^2.0.0" - internal-ip "^4.2.0" + internal-ip "^4.3.0" ip "^1.1.5" - killable "^1.0.0" - loglevel "^1.4.1" - opn "^5.1.0" - portfinder "^1.0.9" + is-absolute-url "^3.0.3" + killable "^1.0.1" + loglevel "^1.6.6" + opn "^5.5.0" + p-retry "^3.0.1" + portfinder "^1.0.25" schema-utils "^1.0.0" - selfsigned "^1.9.1" - semver "^5.6.0" - serve-index "^1.7.2" + selfsigned "^1.10.7" + semver "^6.3.0" + serve-index "^1.9.1" sockjs "0.3.19" - sockjs-client "1.3.0" - spdy "^4.0.0" - strip-ansi "^3.0.0" + sockjs-client "1.4.0" + spdy "^4.0.1" + strip-ansi "^3.0.1" supports-color "^6.1.0" url "^0.11.0" - webpack-dev-middleware "^3.5.1" + webpack-dev-middleware "^3.7.2" webpack-log "^2.0.0" - yargs "12.0.2" + ws "^6.2.1" + yargs "12.0.5" webpack-log@^2.0.0: version "2.0.0" @@ -11006,17 +11278,17 @@ webpack-log@^2.0.0: ansi-colors "^3.0.0" uuid "^3.3.2" -webpack-manifest-plugin@2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.1.1.tgz#6b3e280327815b83152c79f42d0ca13b665773c4" - integrity sha512-2zqJ6mvc3yoiqfDjghAIpljhLSDh/G7vqGrzYcYqqRCd/ZZZCAuc/YPE5xG0LGpLgDJRhUNV1H+znyyhIxahzA== +webpack-manifest-plugin@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz#19ca69b435b0baec7e29fbe90fb4015de2de4f16" + integrity sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ== dependencies: fs-extra "^7.0.0" lodash ">=3.5 <5" object.entries "^1.1.0" tapable "^1.0.0" -webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: +webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: version "1.4.3" resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.4.3.tgz#eedd8ec0b928fbf1cbfe994e22d2d890f330a933" integrity sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ== @@ -11024,10 +11296,10 @@ webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1: source-list-map "^2.0.0" source-map "~0.6.1" -webpack@4.41.0: - version "4.41.0" - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.41.0.tgz#db6a254bde671769f7c14e90a1a55e73602fc70b" - integrity sha512-yNV98U4r7wX1VJAj5kyMsu36T8RPPQntcb5fJLOsMz/pt/WrKC0Vp1bAlqPLkA1LegSwQwf6P+kAbyhRKVQ72g== +webpack@4.42.0: + version "4.42.0" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.42.0.tgz#b901635dd6179391d90740a63c93f76f39883eb8" + integrity sha512-EzJRHvwQyBiYrYqhyjW9AqM90dE4+s1/XtCfn7uWg6cS72zH+2VPFAlsnW0+W0cDi0XRjNKUMoJtpSi50+Ph6w== dependencies: "@webassemblyjs/ast" "1.8.5" "@webassemblyjs/helper-module-context" "1.8.5" @@ -11049,7 +11321,7 @@ webpack@4.41.0: node-libs-browser "^2.2.1" schema-utils "^1.0.0" tapable "^1.1.3" - terser-webpack-plugin "^1.4.1" + terser-webpack-plugin "^1.4.3" watchpack "^1.6.0" webpack-sources "^1.4.1" @@ -11079,7 +11351,7 @@ whatwg-fetch@2.0.4: resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.4.tgz#dde6a5df315f9d39991aa17621853d720b85566f" integrity sha512-dcQ1GWpOD/eEQ97k66aiEVpNnapVj90/+R+SXTPYGHpYBBypfKJEQjLrvMZ7YXbKm21gXd4NcuxUTjiv1YtLng== -whatwg-fetch@3.0.0, whatwg-fetch@>=0.10.0: +whatwg-fetch@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== @@ -11099,9 +11371,9 @@ whatwg-url@^6.4.1: webidl-conversions "^4.0.2" whatwg-url@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" - integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + version "7.1.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" + integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== dependencies: lodash.sortby "^4.7.0" tr46 "^1.0.1" @@ -11119,6 +11391,13 @@ which@^1.2.9, which@^1.3.0, which@^1.3.1: dependencies: isexe "^2.0.0" +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + wide-align@^1.1.0: version "1.1.3" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" @@ -11126,15 +11405,10 @@ wide-align@^1.1.0: dependencies: string-width "^1.0.2 || 2" -wordwrap@~0.0.2: - version "0.0.3" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" - integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= - -wordwrap@~1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" - integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= +word-wrap@~1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== workbox-background-sync@^4.3.1: version "4.3.1" @@ -11330,7 +11604,7 @@ ws@^5.2.0: dependencies: async-limiter "~1.0.0" -ws@^6.1.2: +ws@^6.1.2, ws@^6.2.1: version "6.2.1" resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== @@ -11338,11 +11612,9 @@ ws@^6.1.2: async-limiter "~1.0.0" ws@^7.0.0: - version "7.1.2" - resolved "https://registry.yarnpkg.com/ws/-/ws-7.1.2.tgz#c672d1629de8bb27a9699eb599be47aeeedd8f73" - integrity sha512-gftXq3XI81cJCgkUiAVixA0raD9IVmXqsylCrjRygw4+UOOGzPoxnQ6r/CnVL9i+mDncJo94tSkyrtuuQVBmrg== - dependencies: - async-limiter "^1.0.0" + version "7.2.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-7.2.3.tgz#a5411e1fb04d5ed0efee76d26d5c46d830c39b46" + integrity sha512-HTDl9G9hbkNDk98naoR/cHDws7+EyYMOdL1BmjsZXRUjf7d+MficC4B7HLUPlSiho0vg+CWKrGIt/VJBd1xunQ== xml-name-validator@^3.0.0: version "3.0.0" @@ -11354,10 +11626,12 @@ xmlchars@^2.1.1: resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== -xregexp@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.0.0.tgz#e698189de49dd2a18cc5687b05e17c8e43943020" - integrity sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg== +xregexp@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-4.3.0.tgz#7e92e73d9174a99a59743f67a4ce879a04b5ae50" + integrity sha512-7jXDIFXh5yJ/orPn4SXjuVrWWoi4Cr8jfV1eHv9CixKSbU+jY4mxfrBwAuDvupPNKpMUY+FeIqsVw/JLT9+B8g== + dependencies: + "@babel/runtime-corejs3" "^7.8.3" xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: version "4.0.2" @@ -11374,28 +11648,41 @@ yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== -yargs-parser@^10.1.0: - version "10.1.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8" - integrity sha512-VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ== +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.7.2: + version "1.8.3" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.8.3.tgz#2f420fca58b68ce3a332d0ca64be1d191dd3f87a" + integrity sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw== + dependencies: + "@babel/runtime" "^7.8.7" + +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== dependencies: - camelcase "^4.1.0" + camelcase "^5.0.0" + decamelize "^1.2.0" -yargs-parser@^13.1.1: - version "13.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.1.tgz#d26058532aa06d365fe091f6a1fc06b2f7e5eca0" - integrity sha512-oVAVsHz6uFrg3XQheFII8ESO2ssAf9luWuAd6Wexsu4F3OtIW0o8IribPXYrD4WC24LWtPrJlGy87y5udK+dxQ== +yargs-parser@^13.1.2: + version "13.1.2" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" + integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== dependencies: camelcase "^5.0.0" decamelize "^1.2.0" -yargs@12.0.2: - version "12.0.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.2.tgz#fe58234369392af33ecbef53819171eff0f5aadc" - integrity sha512-e7SkEx6N6SIZ5c5H22RTZae61qtn3PYUE8JYbBFlK9sYmh3DMQ6E5ygtaG/2BW0JZi4WGgTR2IV5ChqlqrDGVQ== +yargs@12.0.5: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== dependencies: cliui "^4.0.0" - decamelize "^2.0.0" + decamelize "^1.2.0" find-up "^3.0.0" get-caller-file "^1.0.1" os-locale "^3.0.0" @@ -11405,12 +11692,12 @@ yargs@12.0.2: string-width "^2.0.0" which-module "^2.0.0" y18n "^3.2.1 || ^4.0.0" - yargs-parser "^10.1.0" + yargs-parser "^11.1.1" yargs@^13.3.0: - version "13.3.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.0.tgz#4c657a55e07e5f2cf947f8a366567c04a0dedc83" - integrity sha512-2eehun/8ALW8TLoIl7MVaRUrg+yCnenu8B4kBlRxj3GJGDKU1Og7sMXPNm1BYyM1DOJmTZ4YeN/Nwxv+8XJsUA== + version "13.3.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" + integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== dependencies: cliui "^5.0.0" find-up "^3.0.0" @@ -11421,4 +11708,4 @@ yargs@^13.3.0: string-width "^3.0.0" which-module "^2.0.0" y18n "^4.0.0" - yargs-parser "^13.1.1" + yargs-parser "^13.1.2" From 44ad285e160b124c225f1df81792b0fd087ccdc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Date: Tue, 12 May 2020 19:43:12 +0300 Subject: [PATCH 179/190] Makefile: remove --coverage from test run (#2591) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Found out that there is some weird interaction between `jest --coverage` and `babel-plugin-istanbul`. Maybe related to: https://github.com/facebook/jest/issues/6827. From my testing, removing `--coverage` makes this work again. Probably worth investigating in the future why that happens. Also, this is really not needed during CI because we do not use the coverage data anywhere anyway. Signed-off-by: Giedrius Statkevičius --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fbbe4df4c5f..46a3f6ed531 100644 --- a/Makefile +++ b/Makefile @@ -166,7 +166,7 @@ react-app-lint-fix: .PHONY: react-app-test react-app-test: | $(REACT_APP_NODE_MODULES_PATH) react-app-lint @echo ">> running React app tests" - cd $(REACT_APP_PATH) && export CI=true && yarn test --no-watch --coverage + cd $(REACT_APP_PATH) && export CI=true && yarn test --no-watch .PHONY: react-app-start react-app-start: $(REACT_APP_NODE_MODULES_PATH) From afbb63c766125806f3cb6cfd24d1f0bdbc4037d6 Mon Sep 17 00:00:00 2001 From: Prem Kumar Date: Wed, 13 May 2020 14:19:54 +0530 Subject: [PATCH 180/190] ci: use GitHub Actions to test React UI (#2595) * ci: test React UI using GitHub actions Signed-off-by: Prem Kumar * ci: remove react-app-test from CircleCI as we now use GH Actions Signed-off-by: Prem Kumar --- .circleci/config.yml | 1 - .github/workflows/react-test.yml | 33 ++++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/react-test.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index df0f972bc27..0133c5d6b9a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,7 +45,6 @@ jobs: exit fi taskset 2 make test-ci - taskset 2 make react-app-test # Cross build is needed for publish_release but needs to be done outside of docker. cross_build: diff --git a/.github/workflows/react-test.yml b/.github/workflows/react-test.yml new file mode 100644 index 00000000000..fc3c4fa0b4d --- /dev/null +++ b/.github/workflows/react-test.yml @@ -0,0 +1,33 @@ +name: react-test + +on: + push: + branches: + - master + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + node: [ '10', '12' ] + name: React UI test on Node ${{ matrix.node }} + steps: + - uses: actions/checkout@v2 + - name: Setup node + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node }} + - name: Get yarn cache directory path + id: yarn-cache-dir-path + run: echo "::set-output name=dir::$(yarn cache dir)" + + - uses: actions/cache@v1 + id: yarn-cache + with: + path: ${{ steps.yarn-cache-dir-path.outputs.dir }} + key: ${{ runner.os }}-yarn-${{ hashFiles('pkg/ui/react-app/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-yarn- + - run: make react-app-test From 7f78174e9d94ddd74a6a98bd76498d9feddd75fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Serv=C3=A9n=20Mar=C3=ADn?= Date: Wed, 13 May 2020 15:27:54 +0200 Subject: [PATCH 181/190] pkg/ui: bump jQuery to 3.5.0 (#2597) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lucas Servén Marín --- pkg/ui/react-app/package.json | 2 +- pkg/ui/react-app/yarn.lock | 224 +++------------------------------- 2 files changed, 19 insertions(+), 207 deletions(-) diff --git a/pkg/ui/react-app/package.json b/pkg/ui/react-app/package.json index ed1b145d665..ccbec251d35 100644 --- a/pkg/ui/react-app/package.json +++ b/pkg/ui/react-app/package.json @@ -24,7 +24,7 @@ "fuzzy": "^0.1.3", "i": "^0.3.6", "jest-fetch-mock": "^2.1.2", - "jquery": "^3.3.1", + "jquery": "^3.5.0", "jquery.flot.tooltip": "^0.9.0", "jsdom": "^15.2.0", "moment": "^2.24.0", diff --git a/pkg/ui/react-app/yarn.lock b/pkg/ui/react-app/yarn.lock index 9de8efc32ba..491cd472bcc 100644 --- a/pkg/ui/react-app/yarn.lock +++ b/pkg/ui/react-app/yarn.lock @@ -1810,11 +1810,6 @@ abab@^2.0.0: resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.3.tgz#623e2075e02eb2d3f2475e49f99c91846467907a" integrity sha512-tsFzPpcttalNjFBCFMqsKYQcWxxen1pgJR56by//QwvJc4/OUS3kPOOttx2tSIfjsylB0pYu7f5D3K1RCxUnUg== -abbrev@1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" - integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== - accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: version "1.3.7" resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" @@ -1999,19 +1994,11 @@ anymatch@~3.1.1: normalize-path "^3.0.0" picomatch "^2.0.4" -aproba@^1.0.3, aproba@^1.1.1: +aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -are-we-there-yet@~1.1.2: - version "1.1.5" - resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" - integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== - dependencies: - delegates "^1.0.0" - readable-stream "^2.0.6" - argparse@^1.0.7: version "1.0.10" resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" @@ -3129,11 +3116,6 @@ console-browserify@^1.1.0: resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336" integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA== -console-control-strings@^1.0.0, console-control-strings@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" - integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= - constants-browserify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" @@ -3606,7 +3588,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9: dependencies: ms "2.0.0" -debug@^3.0.0, debug@^3.1.1, debug@^3.2.5, debug@^3.2.6: +debug@^3.0.0, debug@^3.1.1, debug@^3.2.5: version "3.2.6" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== @@ -3642,11 +3624,6 @@ deep-equal@^1.0.1, deep-equal@^1.1.1: object-keys "^1.1.1" regexp.prototype.flags "^1.2.0" -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" @@ -3707,11 +3684,6 @@ delayed-stream@~1.0.0: resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= -delegates@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" - integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= - depd@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" @@ -3730,11 +3702,6 @@ destroy@~1.0.4: resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= -detect-libc@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" - integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= - detect-newline@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2" @@ -4923,13 +4890,6 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-minipass@^1.2.5: - version "1.2.7" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" - integrity sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA== - dependencies: - minipass "^2.6.0" - fs-minipass@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" @@ -4994,20 +4954,6 @@ fuzzy@^0.1.3: resolved "https://registry.yarnpkg.com/fuzzy/-/fuzzy-0.1.3.tgz#4c76ec2ff0ac1a36a9dccf9a00df8623078d4ed8" integrity sha1-THbsL/CsGjap3M+aAN+GIweNTtg= -gauge@~2.7.3: - version "2.7.4" - resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" - integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= - dependencies: - aproba "^1.0.3" - console-control-strings "^1.0.0" - has-unicode "^2.0.0" - object-assign "^4.1.0" - signal-exit "^3.0.0" - string-width "^1.0.1" - strip-ansi "^3.0.1" - wide-align "^1.1.0" - gensync@^1.0.0-beta.1: version "1.0.0-beta.1" resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269" @@ -5204,11 +5150,6 @@ has-symbols@^1.0.0, has-symbols@^1.0.1: resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== -has-unicode@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" - integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= - has-value@^0.3.1: version "0.3.1" resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" @@ -5463,7 +5404,7 @@ i@^0.3.6: resolved "https://registry.yarnpkg.com/i/-/i-0.3.6.tgz#d96c92732076f072711b6b10fd7d4f65ad8ee23d" integrity sha1-2WyScyB28HJxG2sQ/X1PZa2O4j0= -iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: +iconv-lite@0.4.24, iconv-lite@^0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== @@ -5494,13 +5435,6 @@ iferr@^0.1.5: resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= -ignore-walk@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.3.tgz#017e2447184bfeade7c238e4aefdd1e8f95b1e37" - integrity sha512-m7o6xuOaT1aqheYHKf8W6J5pYH85ZI9w077erOzLje3JsB1gkafkAhHHY19dqjulgIZHFm32Cp5uNZgcQqdJKw== - dependencies: - minimatch "^3.0.4" - ignore@^3.3.5: version "3.3.10" resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" @@ -5597,7 +5531,7 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.5, ini@~1.3.0: +ini@^1.3.5: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== @@ -6482,11 +6416,16 @@ jquery.flot.tooltip@^0.9.0: resolved "https://registry.yarnpkg.com/jquery.flot.tooltip/-/jquery.flot.tooltip-0.9.0.tgz#ae16bf94b26c2ed9ab4db167bba52dfdb615c1df" integrity sha1-rha/lLJsLtmrTbFnu6Ut/bYVwd8= -jquery@^3.0, jquery@^3.3.1: +jquery@^3.0: version "3.4.1" resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== +jquery@^3.5.0: + version "3.5.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5" + integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -7226,14 +7165,6 @@ minipass-pipeline@^1.2.2: dependencies: minipass "^3.0.0" -minipass@^2.6.0, minipass@^2.8.6, minipass@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.9.0.tgz#e713762e7d3e32fed803115cf93e04bca9fcc9a6" - integrity sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg== - dependencies: - safe-buffer "^5.1.2" - yallist "^3.0.0" - minipass@^3.0.0, minipass@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.1.tgz#7607ce778472a185ad6d89082aa2070f79cedcd5" @@ -7241,13 +7172,6 @@ minipass@^3.0.0, minipass@^3.1.1: dependencies: yallist "^4.0.0" -minizlib@^1.2.1: - version "1.3.3" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.3.3.tgz#2290de96818a34c29551c8a8d301216bd65a861d" - integrity sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q== - dependencies: - minipass "^2.9.0" - mississippi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" @@ -7280,7 +7204,7 @@ mixin-object@^2.0.1: for-in "^0.1.3" is-extendable "^0.1.1" -mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: +mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: version "0.5.3" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.3.tgz#5a514b7179259287952881e94410ec5465659f8c" integrity sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg== @@ -7394,15 +7318,6 @@ nearley@^2.7.10: randexp "0.4.6" semver "^5.4.1" -needle@^2.2.1: - version "2.3.3" - resolved "https://registry.yarnpkg.com/needle/-/needle-2.3.3.tgz#a041ad1d04a871b0ebb666f40baaf1fb47867117" - integrity sha512-EkY0GeSq87rWp1hoq/sH/wnTWgFVhYlnIkbJ0YJFfRgEFlz2RraCjBpFQ+vrEgEdp0ThfyHADmkChEhcb7PKyw== - dependencies: - debug "^3.2.6" - iconv-lite "^0.4.4" - sax "^1.2.4" - negotiator@0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" @@ -7502,22 +7417,6 @@ node-notifier@^5.4.2: shellwords "^0.1.1" which "^1.3.0" -node-pre-gyp@*: - version "0.14.0" - resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.14.0.tgz#9a0596533b877289bcad4e143982ca3d904ddc83" - integrity sha512-+CvDC7ZttU/sSt9rFjix/P05iS43qHCOOGzcr3Ry99bXG7VX953+vFyEuph/tfqoYu8dttBkE86JSKBO2OzcxA== - dependencies: - detect-libc "^1.0.2" - mkdirp "^0.5.1" - needle "^2.2.1" - nopt "^4.0.1" - npm-packlist "^1.1.6" - npmlog "^4.0.2" - rc "^1.2.7" - rimraf "^2.6.1" - semver "^5.3.0" - tar "^4.4.2" - node-releases@^1.1.52: version "1.1.52" resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.52.tgz#bcffee3e0a758e92e44ecfaecd0a47554b0bcba9" @@ -7525,14 +7424,6 @@ node-releases@^1.1.52: dependencies: semver "^6.3.0" -nopt@^4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz#a375cad9d02fd921278d954c2254d5aa57e15e48" - integrity sha512-CvaGwVMztSMJLOeXPrez7fyfObdZqNUK1cPAEzLHrTybIua9pMdmmPR5YwtfNftIOMv3DPUhFaxsZMNTQO20Kg== - dependencies: - abbrev "1" - osenv "^0.1.4" - normalize-package-data@^2.3.2: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -7575,27 +7466,6 @@ normalize-url@^3.0.0: resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== -npm-bundled@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" - integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== - dependencies: - npm-normalize-package-bin "^1.0.1" - -npm-normalize-package-bin@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2" - integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA== - -npm-packlist@^1.1.6: - version "1.4.8" - resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz#56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e" - integrity sha512-5+AZgwru5IevF5ZdnFglB5wNlHG1AOOuw28WhUq8/8emhBmLv6jX5by4WJCh7lW0uSYZYS6DXqIsyZVIXRZU9A== - dependencies: - ignore-walk "^3.0.1" - npm-bundled "^1.0.1" - npm-normalize-package-bin "^1.0.1" - npm-run-path@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" @@ -7603,16 +7473,6 @@ npm-run-path@^2.0.0: dependencies: path-key "^2.0.0" -npmlog@^4.0.2: - version "4.1.2" - resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" - integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== - dependencies: - are-we-there-yet "~1.1.2" - console-control-strings "~1.1.0" - gauge "~2.7.3" - set-blocking "~2.0.0" - nth-check@^1.0.2, nth-check@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" @@ -7819,11 +7679,6 @@ os-browserify@^0.3.0: resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= -os-homedir@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" - integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= - os-locale@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" @@ -7833,19 +7688,11 @@ os-locale@^3.0.0: lcid "^2.0.0" mem "^4.0.0" -os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: +os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= -osenv@^0.1.4: - version "0.1.5" - resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" - integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== - dependencies: - os-homedir "^1.0.0" - os-tmpdir "^1.0.0" - p-defer@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" @@ -9174,16 +9021,6 @@ raw-body@2.4.0: iconv-lite "0.4.24" unpipe "1.0.0" -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - react-app-polyfill@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/react-app-polyfill/-/react-app-polyfill-1.0.6.tgz#890f8d7f2842ce6073f030b117de9130a5f385f0" @@ -9418,7 +9255,7 @@ read-pkg@^3.0.0: normalize-package-data "^2.3.2" path-type "^3.0.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@~2.3.6: version "2.3.7" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== @@ -9763,7 +9600,7 @@ rimraf@2.6.3: dependencies: glob "^7.1.3" -rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: +rimraf@^2.5.4, rimraf@^2.6.3, rimraf@^2.7.1: version "2.7.1" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== @@ -9930,7 +9767,7 @@ selfsigned@^1.10.7: dependencies: node-forge "0.9.0" -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: +"semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0, semver@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== @@ -9992,7 +9829,7 @@ serve-static@1.14.1: parseurl "~1.3.3" send "0.17.1" -set-blocking@^2.0.0, set-blocking@~2.0.0: +set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= @@ -10425,7 +10262,7 @@ string-width@^1.0.1: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.1: +string-width@^2.0.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== @@ -10562,11 +10399,6 @@ strip-json-comments@^3.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.0.1.tgz#85713975a91fb87bf1b305cca77395e40d2a64a7" integrity sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw== -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= - style-loader@0.23.1: version "0.23.1" resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.23.1.tgz#cb9154606f3e771ab6c4ab637026a1049174d925" @@ -10654,19 +10486,6 @@ tapable@^1.0.0, tapable@^1.1.3: resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== -tar@^4.4.2: - version "4.4.13" - resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.13.tgz#43b364bc52888d555298637b10d60790254ab525" - integrity sha512-w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA== - dependencies: - chownr "^1.1.1" - fs-minipass "^1.2.5" - minipass "^2.8.6" - minizlib "^1.2.1" - mkdirp "^0.5.0" - safe-buffer "^5.1.2" - yallist "^3.0.3" - tempusdominus-bootstrap-4@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/tempusdominus-bootstrap-4/-/tempusdominus-bootstrap-4-5.1.2.tgz#3c9906ca6e5d563faa0b81b2fdc6aa79cad9c0be" @@ -11398,13 +11217,6 @@ which@^2.0.1: dependencies: isexe "^2.0.0" -wide-align@^1.1.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" - integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== - dependencies: - string-width "^1.0.2 || 2" - word-wrap@~1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" @@ -11643,7 +11455,7 @@ xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== -yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3: +yallist@^3.0.2: version "3.1.1" resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== From 0c8b5e0f88c8f31e7aa759158c6da37246f92d98 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 14 May 2020 12:33:54 +0100 Subject: [PATCH 182/190] Added receiver multidb unit tests for basic cases. (#2593) Unfortunately, all passes. ): Signed-off-by: Bartlomiej Plotka --- pkg/receive/handler_test.go | 4 + pkg/receive/multitsdb.go | 70 ++++----- pkg/receive/multitsdb_test.go | 260 ++++++++++++++++++++++++++++++++++ pkg/receive/tsdb_test.go | 3 + 4 files changed, 302 insertions(+), 35 deletions(-) create mode 100644 pkg/receive/multitsdb_test.go diff --git a/pkg/receive/handler_test.go b/pkg/receive/handler_test.go index 80eb005bd28..8be28333b63 100644 --- a/pkg/receive/handler_test.go +++ b/pkg/receive/handler_test.go @@ -13,7 +13,9 @@ import ( "strconv" "sync" "testing" + "time" + "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" "github.com/gogo/protobuf/proto" "github.com/golang/snappy" @@ -180,6 +182,8 @@ func newHandlerHashring(appendables []*fakeAppendable, replicationFactor uint64) } func TestReceive(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second) + appenderErrFn := func() error { return errors.New("failed to get appender") } conflictErrFn := func() error { return storage.ErrOutOfBounds } commitErrFn := func() error { return errors.New("failed to commit") } diff --git a/pkg/receive/multitsdb.go b/pkg/receive/multitsdb.go index 1074f059be1..b907da13159 100644 --- a/pkg/receive/multitsdb.go +++ b/pkg/receive/multitsdb.go @@ -31,7 +31,7 @@ type MultiTSDB struct { dataDir string logger log.Logger reg prometheus.Registerer - tsdbCfg *tsdb.Options + tsdbOpts *tsdb.Options tenantLabelName string labels labels.Labels bucket objstore.Bucket @@ -40,8 +40,34 @@ type MultiTSDB struct { tenants map[string]*tenant } +func NewMultiTSDB( + dataDir string, + l log.Logger, + reg prometheus.Registerer, + tsdbOpts *tsdb.Options, + labels labels.Labels, + tenantLabelName string, + bucket objstore.Bucket, +) *MultiTSDB { + if l == nil { + l = log.NewNopLogger() + } + + return &MultiTSDB{ + dataDir: dataDir, + logger: l, + reg: reg, + tsdbOpts: tsdbOpts, + mtx: &sync.RWMutex{}, + tenants: map[string]*tenant{}, + labels: labels, + tenantLabelName: tenantLabelName, + bucket: bucket, + } +} + type tenant struct { - tsdbCfg *tsdb.Options + tsdbOpts *tsdb.Options readyS *tsdb.ReadyStorage fs *FlushableStorage @@ -51,11 +77,11 @@ type tenant struct { mtx *sync.RWMutex } -func newTenant(tsdbCfg *tsdb.Options) *tenant { +func newTenant(tsdbOpts *tsdb.Options) *tenant { return &tenant{ - tsdbCfg: tsdbCfg, - readyS: &tsdb.ReadyStorage{}, - mtx: &sync.RWMutex{}, + tsdbOpts: tsdbOpts, + readyS: &tsdb.ReadyStorage{}, + mtx: &sync.RWMutex{}, } } @@ -82,7 +108,7 @@ func (t *tenant) flushableStorage() *FlushableStorage { } func (t *tenant) set(tstore *store.TSDBStore, fs *FlushableStorage, ship *shipper.Shipper) { - t.readyS.Set(fs.Get(), int64(2*time.Duration(t.tsdbCfg.MinBlockDuration).Seconds()*1000)) + t.readyS.Set(fs.Get(), int64(2*time.Duration(t.tsdbOpts.MinBlockDuration).Seconds()*1000)) t.mtx.Lock() t.fs = fs t.s = tstore @@ -90,32 +116,6 @@ func (t *tenant) set(tstore *store.TSDBStore, fs *FlushableStorage, ship *shippe t.mtx.Unlock() } -func NewMultiTSDB( - dataDir string, - l log.Logger, - reg prometheus.Registerer, - tsdbCfg *tsdb.Options, - labels labels.Labels, - tenantLabelName string, - bucket objstore.Bucket, -) *MultiTSDB { - if l == nil { - l = log.NewNopLogger() - } - - return &MultiTSDB{ - dataDir: dataDir, - logger: l, - reg: reg, - tsdbCfg: tsdbCfg, - mtx: &sync.RWMutex{}, - tenants: map[string]*tenant{}, - labels: labels, - tenantLabelName: tenantLabelName, - bucket: bucket, - } -} - func (t *MultiTSDB) Open() error { if err := os.MkdirAll(t.dataDir, 0777); err != nil { return err @@ -232,7 +232,7 @@ func (t *MultiTSDB) getOrLoadTenant(tenantID string, blockingStart bool) (*tenan return tenant, nil } - tenant = newTenant(t.tsdbCfg) + tenant = newTenant(t.tsdbOpts) t.tenants[tenantID] = tenant t.mtx.Unlock() @@ -261,7 +261,7 @@ func (t *MultiTSDB) getOrLoadTenant(tenantID string, blockingStart bool) (*tenan dataDir, logger, reg, - t.tsdbCfg, + t.tsdbOpts, ) // Assign to outer error to report in blocking case. diff --git a/pkg/receive/multitsdb_test.go b/pkg/receive/multitsdb_test.go new file mode 100644 index 00000000000..2db04f74e66 --- /dev/null +++ b/pkg/receive/multitsdb_test.go @@ -0,0 +1,260 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package receive + +import ( + "context" + "fmt" + "io/ioutil" + "os" + "testing" + "time" + + "github.com/fortytw2/leaktest" + "github.com/go-kit/kit/log" + "github.com/gogo/protobuf/types" + "github.com/prometheus/client_golang/prometheus" + "github.com/prometheus/common/model" + "github.com/prometheus/prometheus/pkg/labels" + "github.com/prometheus/prometheus/storage" + "github.com/prometheus/prometheus/storage/tsdb" + "github.com/thanos-io/thanos/pkg/runutil" + "github.com/thanos-io/thanos/pkg/store/storepb" + "github.com/thanos-io/thanos/pkg/testutil" + "golang.org/x/sync/errgroup" +) + +func TestMultiTSDB(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second) + + dir, err := ioutil.TempDir("", "test") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(dir)) }() + + logger := log.NewNopLogger() + t.Run("run fresh", func(t *testing.T) { + m := NewMultiTSDB( + dir, logger, prometheus.NewRegistry(), &tsdb.Options{ + MinBlockDuration: model.Duration(2 * time.Hour), + MaxBlockDuration: model.Duration(2 * time.Hour), + RetentionDuration: model.Duration(6 * time.Hour), + NoLockfile: true, + }, + labels.FromStrings("replica", "01"), + "tenant_id", + nil, + ) + defer testutil.Ok(t, m.Flush()) + + testutil.Ok(t, m.Flush()) + testutil.Ok(t, m.Open()) + + app, err := m.TenantAppendable("foo") + testutil.Ok(t, err) + + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() + + var a storage.Appender + testutil.Ok(t, runutil.Retry(1*time.Second, ctx.Done(), func() error { + a, err = app.Appender() + return err + })) + + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 1, 2.41241) + testutil.Ok(t, err) + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 2, 3.41241) + testutil.Ok(t, err) + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 3, 4.41241) + testutil.Ok(t, err) + testutil.Ok(t, a.Commit()) + + // Check if not leaking. + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + + ctx, cancel = context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() + + app, err = m.TenantAppendable("bar") + testutil.Ok(t, err) + + testutil.Ok(t, runutil.Retry(1*time.Second, ctx.Done(), func() error { + a, err = app.Appender() + return err + })) + + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 1, 20.41241) + testutil.Ok(t, err) + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 2, 30.41241) + testutil.Ok(t, err) + _, err = a.Add(labels.FromStrings("a", "1", "b", "2"), 3, 40.41241) + testutil.Ok(t, err) + testutil.Ok(t, a.Commit()) + + testMulitTSDBSeries(t, m) + }) + t.Run("run on existing storage", func(t *testing.T) { + m := NewMultiTSDB( + dir, logger, prometheus.NewRegistry(), &tsdb.Options{ + MinBlockDuration: model.Duration(2 * time.Hour), + MaxBlockDuration: model.Duration(2 * time.Hour), + RetentionDuration: model.Duration(6 * time.Hour), + NoLockfile: true, + }, + labels.FromStrings("replica", "01"), + "tenant_id", + nil, + ) + defer testutil.Ok(t, m.Flush()) + + testutil.Ok(t, m.Flush()) + testutil.Ok(t, m.Open()) + + // Get appender just for test. + app, err := m.TenantAppendable("foo") + testutil.Ok(t, err) + + ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + defer cancel() + + testutil.Ok(t, runutil.Retry(1*time.Second, ctx.Done(), func() error { + _, err := app.Appender() + return err + })) + + // Check if not leaking. + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + _, err = m.TenantAppendable("foo") + testutil.Ok(t, err) + + testMulitTSDBSeries(t, m) + }) +} + +var ( + expectedFooResp = []storepb.Series{ + { + Labels: []storepb.Label{{Name: "a", Value: "1"}, {Name: "b", Value: "2"}, {Name: "replica", Value: "01"}, {Name: "tenant_id", Value: "foo"}}, + Chunks: []storepb.AggrChunk{{MinTime: 1, MaxTime: 3, Raw: &storepb.Chunk{Data: []byte("\000\003\002@\003L\235\2354X\315\001\330\r\257Mui\251\327:U")}}}, + }, + } + expectedBarResp = []storepb.Series{ + { + Labels: []storepb.Label{{Name: "a", Value: "1"}, {Name: "b", Value: "2"}, {Name: "replica", Value: "01"}, {Name: "tenant_id", Value: "bar"}}, + Chunks: []storepb.AggrChunk{{MinTime: 1, MaxTime: 3, Raw: &storepb.Chunk{Data: []byte("\000\003\002@4i\223\263\246\213\032\001\330\035i\337\322\352\323S\256t\270")}}}, + }, + } +) + +func testMulitTSDBSeries(t *testing.T, m *MultiTSDB) { + g := &errgroup.Group{} + respFoo := make(chan []storepb.Series) + respBar := make(chan []storepb.Series) + for i := 0; i < 100; i++ { + s := m.TSDBStores() + testutil.Assert(t, len(s) == 2) + + g.Go(func() error { + srv := newStoreSeriesServer(context.Background()) + if err := s["foo"].Series(&storepb.SeriesRequest{ + MinTime: 0, + MaxTime: 10, + Matchers: []storepb.LabelMatcher{{Name: "a", Value: ".*", Type: storepb.LabelMatcher_RE}}, + }, srv); err != nil { + return err + } + respFoo <- srv.SeriesSet + return nil + }) + g.Go(func() error { + srv := newStoreSeriesServer(context.Background()) + if err := s["bar"].Series(&storepb.SeriesRequest{ + MinTime: 0, + MaxTime: 10, + Matchers: []storepb.LabelMatcher{{Name: "a", Value: ".*", Type: storepb.LabelMatcher_RE}}, + }, srv); err != nil { + return err + } + respBar <- srv.SeriesSet + return nil + }) + } + var err error + go func() { + err = g.Wait() + close(respFoo) + close(respBar) + }() +Outer: + for { + select { + case r, ok := <-respFoo: + if !ok { + break Outer + } + fmt.Println(r[0].String()) + testutil.Equals(t, expectedFooResp, r) + case r, ok := <-respBar: + if !ok { + break Outer + } + fmt.Println(r[0].String()) + testutil.Equals(t, expectedBarResp, r) + } + } + testutil.Ok(t, err) +} + +// storeSeriesServer is test gRPC storeAPI series server. +// TODO(bwplotka): Make this part of some common library. We copy and paste this also in pkg/store. +type storeSeriesServer struct { + // This field just exist to pseudo-implement the unused methods of the interface. + storepb.Store_SeriesServer + + ctx context.Context + + SeriesSet []storepb.Series + Warnings []string + HintsSet []*types.Any + + Size int64 +} + +func newStoreSeriesServer(ctx context.Context) *storeSeriesServer { + return &storeSeriesServer{ctx: ctx} +} + +func (s *storeSeriesServer) Send(r *storepb.SeriesResponse) error { + s.Size += int64(r.Size()) + + if r.GetWarning() != "" { + s.Warnings = append(s.Warnings, r.GetWarning()) + return nil + } + + if r.GetSeries() != nil { + s.SeriesSet = append(s.SeriesSet, *r.GetSeries()) + return nil + } + + if r.GetHints() != nil { + s.HintsSet = append(s.HintsSet, r.GetHints()) + return nil + } + + // Unsupported field, skip. + return nil +} + +func (s *storeSeriesServer) Context() context.Context { + return s.ctx +} diff --git a/pkg/receive/tsdb_test.go b/pkg/receive/tsdb_test.go index 5a527bef0f9..ec5c7fd37f5 100644 --- a/pkg/receive/tsdb_test.go +++ b/pkg/receive/tsdb_test.go @@ -9,6 +9,7 @@ import ( "testing" "time" + "github.com/fortytw2/leaktest" "github.com/go-kit/kit/log" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/common/model" @@ -19,6 +20,8 @@ import ( ) func TestFlushableStorage(t *testing.T) { + defer leaktest.CheckTimeout(t, 10*time.Second) + { // Ensure that flushing storage does not cause data loss. // This test: From 7349a0873ab7db3205c041fb79ec836cd223b8e9 Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Thu, 14 May 2020 18:30:31 +0100 Subject: [PATCH 183/190] Fixed make docs; Updated last disprepancies. (#2611) Signed-off-by: Bartlomiej Plotka --- Dockerfile | 2 +- Makefile | 12 +++++---- docs/components/compact.md | 3 +-- docs/components/store.md | 50 ++++++++++++++++++++++++++++++++++---- scripts/genflagdocs.sh | 7 +++--- 5 files changed, 58 insertions(+), 16 deletions(-) diff --git a/Dockerfile b/Dockerfile index bf71a154f3d..51cf401fb03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM quay.io/prometheus/busybox:latest LABEL maintainer="The Thanos Authors" -COPY thanos /bin/thanos +COPY /thanos_tmp_for_docker /bin/thanos ENTRYPOINT [ "/bin/thanos" ] diff --git a/Makefile b/Makefile index 46a3f6ed531..7ca3472902e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -PREFIX ?= $(shell pwd) FILES_TO_FMT ?= $(shell find . -path ./vendor -prune -o -name '*.go' -print) DOCKER_IMAGE_REPO ?= quay.io/thanos/thanos @@ -176,8 +175,8 @@ react-app-start: $(REACT_APP_NODE_MODULES_PATH) .PHONY: build build: ## Builds Thanos binary using `promu`. build: check-git deps $(PROMU) - @echo ">> building binaries $(GOBIN)" - @$(PROMU) build --prefix $(PREFIX) + @echo ">> building Thanos binary in $(GOBIN)" + @$(PROMU) build --prefix $(GOBIN) .PHONY: crossbuild crossbuild: ## Builds all binaries for all platforms. @@ -193,8 +192,11 @@ deps: ## Ensures fresh go.mod and go.sum. .PHONY: docker docker: ## Builds 'thanos' docker with no tag. docker: build + @echo ">> copying Thanos from $(GOBIN) to ./thanos_tmp_for_docker" + @cp $(GOBIN)/thanos ./thanos_tmp_for_docker @echo ">> building docker image 'thanos'" @docker build -t "thanos" . + @rm ./thanos_tmp_for_docker .PHONY: docker-multi-stage docker-multi-stage: ## Builds 'thanos' docker image using multi-stage. @@ -212,13 +214,13 @@ docker-push: .PHONY: docs docs: ## Regenerates flags in docs for all thanos commands. docs: $(EMBEDMD) build - @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" scripts/genflagdocs.sh + @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" THANOS_BIN="$(GOBIN)/thanos" scripts/genflagdocs.sh @find . -type f -name "*.md" | SED_BIN="$(SED)" xargs scripts/cleanup-white-noise.sh .PHONY: check-docs check-docs: ## checks docs against discrepancy with flags, links, white noise. check-docs: $(EMBEDMD) $(LICHE) build - @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" scripts/genflagdocs.sh check + @EMBEDMD_BIN="$(EMBEDMD)" SED_BIN="$(SED)" THANOS_BIN="$(GOBIN)/thanos" scripts/genflagdocs.sh check @$(LICHE) --recursive docs --exclude "(couchdb.apache.org/bylaws.html|cloud.tencent.com|alibabacloud.com|zoom.us)" --document-root . @$(LICHE) --exclude "goreportcard.com" --document-root . *.md @find . -type f -name "*.md" | SED_BIN="$(SED)" xargs scripts/cleanup-white-noise.sh diff --git a/docs/components/compact.md b/docs/components/compact.md index 4272a29cf1a..1ca48e14a8a 100644 --- a/docs/components/compact.md +++ b/docs/components/compact.md @@ -74,8 +74,7 @@ In order to achieve this co-ordination, blocks are not deleted directly. Instead ## Flags -[embedmd]: # "flags/compact.txt $" - +[embedmd]:# (flags/compact.txt $) ```$ usage: thanos compact [] diff --git a/docs/components/store.md b/docs/components/store.md index fa9b1546dd9..74a70f348df 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -27,7 +27,7 @@ In general about 1MB of local disk space is required per TSDB block stored in th ## Flags -[embedmd]: # "flags/store.txt $" +[embedmd]:# (flags/store.txt $) ```$ usage: thanos store [] @@ -137,11 +137,51 @@ Flags: Prometheus relabel-config syntax. See format details: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config - --consistency-delay=30m Minimum age of all blocks before they are being read. + --consistency-delay=0s Minimum age of all blocks before they are being + read. Set it to safe value (e.g 30m) if your + object storage is eventually consistent. GCS + and S3 are (roughly) strongly consistent. --ignore-deletion-marks-delay=24h - Duration after which the blocks marked for deletion will be filtered out while fetching blocks. - The idea of ignore-deletion-marks-delay is to ignore blocks that are marked for deletion with some delay. This ensures store can still serve blocks that are meant to be deleted but do not have a replacement yet. If delete-delay duration is provided to compactor or bucket verify component, it will upload deletion-mark.json file to mark after what duration the block should be deleted rather than deleting the block straight away. - If delete-delay is non-zero for compactor or bucket verify component, ignore-deletion-marks-delay should be set to (delete-delay)/2 so that blocks marked for deletion are filtered out while fetching blocks before being deleted from bucket. Default is 24h, half of the default value for --delete-delay on compactor. + Duration after which the blocks marked for + deletion will be filtered out while fetching + blocks. The idea of ignore-deletion-marks-delay + is to ignore blocks that are marked for + deletion with some delay. This ensures store + can still serve blocks that are meant to be + deleted but do not have a replacement yet. If + delete-delay duration is provided to compactor + or bucket verify component, it will upload + deletion-mark.json file to mark after what + duration the block should be deleted rather + than deleting the block straight away. If + delete-delay is non-zero for compactor or + bucket verify component, + ignore-deletion-marks-delay should be set to + (delete-delay)/2 so that blocks marked for + deletion are filtered out while fetching blocks + before being deleted from bucket. Default is + 24h, half of the default value for + --delete-delay on compactor. + --web.external-prefix="" Static prefix for all HTML links and redirect + URLs in the bucket web UI interface. Actual + endpoints are still served on / or the + web.route-prefix. This allows thanos bucket web + UI to be served behind a reverse proxy that + strips a URL sub-path. + --web.prefix-header="" Name of HTTP request header used for dynamic + prefixing of UI links and redirects. This + option is ignored if web.external-prefix + argument is set. Security risk: enable this + option only if a reverse proxy in front of + thanos is resetting the header. The + --web.prefix-header=X-Forwarded-Prefix option + can be useful, for example, if Thanos UI is + served via Traefik reverse proxy with + PathPrefixStrip option enabled, which sends the + stripped prefix value in X-Forwarded-Prefix + header. This allows thanos UI to be served on a + sub-path. + ``` ## Time based partitioning diff --git a/scripts/genflagdocs.sh b/scripts/genflagdocs.sh index 5e4543ce51f..108f8920f03 100755 --- a/scripts/genflagdocs.sh +++ b/scripts/genflagdocs.sh @@ -6,6 +6,7 @@ set -u EMBEDMD_BIN=${EMBEDMD_BIN:-embedmd} SED_BIN=${SED_BIN:-sed} +THANOS_BIN=${THANOS_BIN:-${GOBIN}/thanos} function docs { # If check arg was passed, instead of the docs generation verifies if docs coincide with the codebase. @@ -38,17 +39,17 @@ CHECK=${1:-} commands=("compact" "query" "rule" "sidecar" "store" "tools") for x in "${commands[@]}"; do - ./thanos "${x}" --help &> "docs/components/flags/${x}.txt" + ${THANOS_BIN} "${x}" --help &> "docs/components/flags/${x}.txt" done toolsCommands=("bucket" "rules-check") for x in "${toolsCommands[@]}"; do - ./thanos tools "${x}" --help &> "docs/components/flags/tools_${x}.txt" + ${THANOS_BIN} tools "${x}" --help &> "docs/components/flags/tools_${x}.txt" done toolsBucketCommands=("verify" "ls" "inspect" "web" "replicate" "downsample") for x in "${toolsBucketCommands[@]}"; do - ./thanos tools bucket "${x}" --help &> "docs/components/flags/tools_bucket_${x}.txt" + ${THANOS_BIN} tools bucket "${x}" --help &> "docs/components/flags/tools_bucket_${x}.txt" done # Remove white noise. From ecf78247e920698e3c6942cde51f71b01ef5f2d6 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Fri, 15 May 2020 10:28:29 +0200 Subject: [PATCH 184/190] mixin: Alert on receive not uploading recent data (#2612) Signed-off-by: Frederic Branczyk --- examples/alerts/alerts.md | 8 ++++++++ examples/alerts/alerts.yaml | 8 ++++++++ mixin/thanos/alerts/receive.libsonnet | 11 +++++++++++ 3 files changed, 27 insertions(+) diff --git a/examples/alerts/alerts.md b/examples/alerts/alerts.md index 61098e7cee1..76c435af225 100644 --- a/examples/alerts/alerts.md +++ b/examples/alerts/alerts.md @@ -447,6 +447,14 @@ rules: for: 5m labels: severity: warning +- alert: ThanosReceiveNoUpload + annotations: + message: Thanos Receive {{$labels.job}} has not uploaded latest data to object + storage. + expr: increase(thanos_shipper_uploads_total{job=~"thanos-receive.*"}[2h]) == 0 + for: 30m + labels: + severity: warning ``` ## Replicate diff --git a/examples/alerts/alerts.yaml b/examples/alerts/alerts.yaml index f9c3d099450..d83c1e107d1 100644 --- a/examples/alerts/alerts.yaml +++ b/examples/alerts/alerts.yaml @@ -210,6 +210,14 @@ groups: for: 5m labels: severity: warning + - alert: ThanosReceiveNoUpload + annotations: + message: Thanos Receive {{$labels.job}} has not uploaded latest data to object + storage. + expr: increase(thanos_shipper_uploads_total{job=~"thanos-receive.*"}[2h]) == 0 + for: 30m + labels: + severity: warning - name: thanos-sidecar.rules rules: - alert: ThanosSidecarPrometheusDown diff --git a/mixin/thanos/alerts/receive.libsonnet b/mixin/thanos/alerts/receive.libsonnet index a52bc193dec..9750681cf7b 100644 --- a/mixin/thanos/alerts/receive.libsonnet +++ b/mixin/thanos/alerts/receive.libsonnet @@ -93,6 +93,17 @@ severity: 'warning', }, }, + { + alert: 'ThanosReceiveNoUpload', + annotations: { + message: 'Thanos Receive {{$labels.job}} has not uploaded latest data to object storage.', + }, + expr: 'increase(thanos_shipper_uploads_total{%(selector)s}[2h]) == 0' % thanos.receive, + 'for': '30m', + labels: { + severity: 'warning', + }, + }, ], }, ], From 2659848c3bc167522e255f67b99edd49606ff4b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Fri, 15 May 2020 16:39:49 +0200 Subject: [PATCH 185/190] Metadata caching in bucket (#2579) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added caching for Iter. Signed-off-by: Peter Štibraný * Added cache for Exists call for meta-files. Signed-off-by: Peter Štibraný * Added cache for reading block metadata files. Signed-off-by: Peter Štibraný * Make caching bucket configurable with different caches for different type of objects. Signed-off-by: Peter Štibraný * Fixed tests. Signed-off-by: Peter Štibraný * Added caching for ObjectSize. Enabled caching of index. Signed-off-by: Peter Štibraný * Lint feedback. Signed-off-by: Peter Štibraný * Use single set of metrics for all operations. Signed-off-by: Peter Štibraný * Constants. Signed-off-by: Peter Štibraný * Use operation specific config. Generic configuration is only for user. Signed-off-by: Peter Štibraný * Fix typo, make lint happy. Signed-off-by: Peter Štibraný * Simplify constants. Signed-off-by: Peter Štibraný * Simplify caching configuration. Signed-off-by: Peter Štibraný * Refactor cache configuration. Configuration is now passed to the cache when created. Signed-off-by: Peter Štibraný * Review feedback. Signed-off-by: Peter Štibraný * Fix operationRequests and operationHits for getRange. Signed-off-by: Peter Štibraný * Make codec for Iter results configurable. Signed-off-by: Peter Štibraný * Added header. Signed-off-by: Peter Štibraný * Renamed "dir" config to "blocks-iter". Signed-off-by: Peter Štibraný * Bump default values for meta exists/doesntExist ttls. Signed-off-by: Peter Štibraný * Removed example how cache could be configured for index. Signed-off-by: Peter Štibraný * Address review feedback. Signed-off-by: Peter Štibraný * Get now implements streaming reader, and buffers object in memory. Signed-off-by: Peter Štibraný * Added test for partial read. Signed-off-by: Peter Štibraný * Removed unused function. Signed-off-by: Peter Štibraný --- pkg/store/cache/caching_bucket.go | 434 ++++++++++++++++------ pkg/store/cache/caching_bucket_config.go | 208 +++++++++++ pkg/store/cache/caching_bucket_factory.go | 78 +++- pkg/store/cache/caching_bucket_test.go | 350 ++++++++++++++++- 4 files changed, 935 insertions(+), 135 deletions(-) create mode 100644 pkg/store/cache/caching_bucket_config.go diff --git a/pkg/store/cache/caching_bucket.go b/pkg/store/cache/caching_bucket.go index 2ce7e6dd116..c725719a73c 100644 --- a/pkg/store/cache/caching_bucket.go +++ b/pkg/store/cache/caching_bucket.go @@ -4,16 +4,19 @@ package storecache import ( + "bytes" "context" "encoding/binary" + "encoding/json" "fmt" "io" "io/ioutil" - "regexp" + "strconv" "sync" "time" "github.com/go-kit/kit/log" + "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" @@ -28,86 +31,82 @@ import ( const ( originCache = "cache" originBucket = "bucket" -) - -type CachingBucketConfig struct { - // Basic unit used to cache chunks. - ChunkSubrangeSize int64 `yaml:"chunk_subrange_size"` - - // Maximum number of GetRange requests issued by this bucket for single GetRange call. Zero or negative value = unlimited. - MaxChunksGetRangeRequests int `yaml:"max_chunks_get_range_requests"` - // TTLs for various cache items. - ChunkObjectSizeTTL time.Duration `yaml:"chunk_object_size_ttl"` - ChunkSubrangeTTL time.Duration `yaml:"chunk_subrange_ttl"` -} + opGet = "get" + opGetRange = "getrange" + opIter = "iter" + opExists = "exists" + opObjectSize = "objectsize" +) -func DefaultCachingBucketConfig() CachingBucketConfig { - return CachingBucketConfig{ - ChunkSubrangeSize: 16000, // Equal to max chunk size. - ChunkObjectSizeTTL: 24 * time.Hour, - ChunkSubrangeTTL: 24 * time.Hour, - MaxChunksGetRangeRequests: 3, - } -} +var errObjNotFound = errors.Errorf("object not found") -// Bucket implementation that provides some caching features, using knowledge about how Thanos accesses data. +// CachingBucket implementation that provides some caching features, based on passed configuration. type CachingBucket struct { objstore.Bucket - cache cache.Cache - - config CachingBucketConfig - + cfg *CachingBucketConfig logger log.Logger - requestedChunkBytes prometheus.Counter - fetchedChunkBytes *prometheus.CounterVec - refetchedChunkBytes *prometheus.CounterVec + requestedGetRangeBytes *prometheus.CounterVec + fetchedGetRangeBytes *prometheus.CounterVec + refetchedGetRangeBytes *prometheus.CounterVec - objectSizeRequests prometheus.Counter - objectSizeHits prometheus.Counter + operationConfigs map[string][]*operationConfig + operationRequests *prometheus.CounterVec + operationHits *prometheus.CounterVec } -func NewCachingBucket(b objstore.Bucket, c cache.Cache, chunks CachingBucketConfig, logger log.Logger, reg prometheus.Registerer) (*CachingBucket, error) { +// NewCachingBucket creates new caching bucket with provided configuration. Configuration should not be +// changed after creating caching bucket. +func NewCachingBucket(b objstore.Bucket, cfg *CachingBucketConfig, logger log.Logger, reg prometheus.Registerer) (*CachingBucket, error) { if b == nil { return nil, errors.New("bucket is nil") } - if c == nil { - return nil, errors.New("cache is nil") - } cb := &CachingBucket{ Bucket: b, - config: chunks, - cache: c, + cfg: cfg, logger: logger, - requestedChunkBytes: promauto.With(reg).NewCounter(prometheus.CounterOpts{ - Name: "thanos_store_bucket_cache_requested_chunk_bytes_total", - Help: "Total number of requested bytes for chunk data.", - }), - fetchedChunkBytes: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ - Name: "thanos_store_bucket_cache_fetched_chunk_bytes_total", - Help: "Total number of fetched chunk bytes. Data from bucket is then stored to cache.", - }, []string{"origin"}), - refetchedChunkBytes: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ - Name: "thanos_store_bucket_cache_refetched_chunk_bytes_total", - Help: "Total number of chunk bytes re-fetched from storage, despite being in cache already.", - }, []string{"origin"}), - objectSizeRequests: promauto.With(reg).NewCounter(prometheus.CounterOpts{ - Name: "thanos_store_bucket_cache_objectsize_requests_total", - Help: "Number of object size requests for objects.", - }), - objectSizeHits: promauto.With(reg).NewCounter(prometheus.CounterOpts{ - Name: "thanos_store_bucket_cache_objectsize_hits_total", - Help: "Number of object size hits for objects.", - }), - } - - cb.fetchedChunkBytes.WithLabelValues(originBucket) - cb.fetchedChunkBytes.WithLabelValues(originCache) - cb.refetchedChunkBytes.WithLabelValues(originCache) + operationConfigs: map[string][]*operationConfig{}, + + requestedGetRangeBytes: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_store_bucket_cache_getrange_requested_bytes_total", + Help: "Total number of bytes requested via GetRange.", + }, []string{"config"}), + fetchedGetRangeBytes: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_store_bucket_cache_getrange_fetched_bytes_total", + Help: "Total number of bytes fetched because of GetRange operation. Data from bucket is then stored to cache.", + }, []string{"origin", "config"}), + refetchedGetRangeBytes: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_store_bucket_cache_getrange_refetched_bytes_total", + Help: "Total number of bytes re-fetched from storage because of GetRange operation, despite being in cache already.", + }, []string{"origin", "config"}), + + operationRequests: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_store_bucket_cache_operation_requests_total", + Help: "Number of requested operations matching given config.", + }, []string{"operation", "config"}), + operationHits: promauto.With(reg).NewCounterVec(prometheus.CounterOpts{ + Name: "thanos_store_bucket_cache_operation_hits_total", + Help: "Number of operations served from cache for given config.", + }, []string{"operation", "config"}), + } + + for op, names := range cfg.allConfigNames() { + for _, n := range names { + cb.operationRequests.WithLabelValues(op, n) + cb.operationHits.WithLabelValues(op, n) + + if op == opGetRange { + cb.requestedGetRangeBytes.WithLabelValues(n) + cb.fetchedGetRangeBytes.WithLabelValues(originCache, n) + cb.fetchedGetRangeBytes.WithLabelValues(originBucket, n) + cb.refetchedGetRangeBytes.WithLabelValues(originCache, n) + } + } + } return cb, nil } @@ -132,35 +131,183 @@ func (cb *CachingBucket) ReaderWithExpectedErrs(expectedFunc objstore.IsOpFailur return cb.WithExpectedErrs(expectedFunc) } -var chunksMatcher = regexp.MustCompile(`^.*/chunks/\d+$`) +func (cb *CachingBucket) Iter(ctx context.Context, dir string, f func(string) error) error { + cfgName, cfg := cb.cfg.findIterConfig(dir) + if cfg == nil { + return cb.Bucket.Iter(ctx, dir, f) + } -func isTSDBChunkFile(name string) bool { - return chunksMatcher.MatchString(name) + cb.operationRequests.WithLabelValues(opIter, cfgName).Inc() + + key := cachingKeyIter(dir) + data := cfg.cache.Fetch(ctx, []string{key}) + if data[key] != nil { + list, err := cfg.codec.Decode(data[key]) + if err == nil { + cb.operationHits.WithLabelValues(opIter, cfgName).Inc() + for _, n := range list { + if err := f(n); err != nil { + return err + } + } + return nil + } + level.Warn(cb.logger).Log("msg", "failed to decode cached Iter result", "key", key, "err", err) + } + + // Iteration can take a while (esp. since it calls function), and iterTTL is generally low. + // We will compute TTL based time when iteration started. + iterTime := time.Now() + var list []string + err := cb.Bucket.Iter(ctx, dir, func(s string) error { + list = append(list, s) + return f(s) + }) + + remainingTTL := cfg.ttl - time.Since(iterTime) + if err == nil && remainingTTL > 0 { + data, encErr := cfg.codec.Encode(list) + if encErr == nil { + cfg.cache.Store(ctx, map[string][]byte{key: data}, remainingTTL) + return nil + } + level.Warn(cb.logger).Log("msg", "failed to encode Iter result", "key", key, "err", encErr) + } + return err +} + +func (cb *CachingBucket) Exists(ctx context.Context, name string) (bool, error) { + cfgName, cfg := cb.cfg.findExistConfig(name) + if cfg == nil { + return cb.Bucket.Exists(ctx, name) + } + + cb.operationRequests.WithLabelValues(opExists, cfgName).Inc() + + key := cachingKeyExists(name) + hits := cfg.cache.Fetch(ctx, []string{key}) + + if ex := hits[key]; ex != nil { + exists, err := strconv.ParseBool(string(ex)) + if err == nil { + cb.operationHits.WithLabelValues(opExists, cfgName).Inc() + return exists, nil + } + level.Warn(cb.logger).Log("msg", "unexpected cached 'exists' value", "key", key, "val", string(ex)) + } + + existsTime := time.Now() + ok, err := cb.Bucket.Exists(ctx, name) + if err == nil { + storeExistsCacheEntry(ctx, key, ok, existsTime, cfg.cache, cfg.existsTTL, cfg.doesntExistTTL) + } + + return ok, err +} + +func storeExistsCacheEntry(ctx context.Context, cachingKey string, exists bool, ts time.Time, cache cache.Cache, existsTTL, doesntExistTTL time.Duration) { + var ttl time.Duration + if exists { + ttl = existsTTL - time.Since(ts) + } else { + ttl = doesntExistTTL - time.Since(ts) + } + + if ttl > 0 { + cache.Store(ctx, map[string][]byte{cachingKey: []byte(strconv.FormatBool(exists))}, ttl) + } +} + +func (cb *CachingBucket) Get(ctx context.Context, name string) (io.ReadCloser, error) { + cfgName, cfg := cb.cfg.findGetConfig(name) + if cfg == nil { + return cb.Bucket.Get(ctx, name) + } + + cb.operationRequests.WithLabelValues(opGet, cfgName).Inc() + + contentKey := cachingKeyContent(name) + existsKey := cachingKeyExists(name) + + hits := cfg.cache.Fetch(ctx, []string{contentKey, existsKey}) + if hits[contentKey] != nil { + cb.operationHits.WithLabelValues(opGet, cfgName).Inc() + return ioutil.NopCloser(bytes.NewReader(hits[contentKey])), nil + } + + // If we know that file doesn't exist, we can return that. Useful for deletion marks. + if ex := hits[existsKey]; ex != nil { + if exists, err := strconv.ParseBool(string(ex)); err == nil && !exists { + cb.operationHits.WithLabelValues(opGet, cfgName).Inc() + return nil, errObjNotFound + } + } + + getTime := time.Now() + reader, err := cb.Bucket.Get(ctx, name) + if err != nil { + if cb.Bucket.IsObjNotFoundErr(err) { + // Cache that object doesn't exist. + storeExistsCacheEntry(ctx, existsKey, false, getTime, cfg.cache, cfg.existsTTL, cfg.doesntExistTTL) + } + + return nil, err + } + + storeExistsCacheEntry(ctx, existsKey, true, getTime, cfg.cache, cfg.existsTTL, cfg.doesntExistTTL) + return &getReader{ + c: cfg.cache, + ctx: ctx, + r: reader, + buf: new(bytes.Buffer), + startTime: getTime, + ttl: cfg.contentTTL, + cacheKey: contentKey, + maxSize: cfg.maxCacheableSize, + }, nil +} + +func (cb *CachingBucket) IsObjNotFoundErr(err error) bool { + return err == errObjNotFound || cb.Bucket.IsObjNotFoundErr(err) } func (cb *CachingBucket) GetRange(ctx context.Context, name string, off, length int64) (io.ReadCloser, error) { - if isTSDBChunkFile(name) && off >= 0 && length > 0 { - var ( - r io.ReadCloser - err error - ) - tracing.DoInSpan(ctx, "cachingbucket_getrange_chunkfile", func(ctx context.Context) { - r, err = cb.getRangeChunkFile(ctx, name, off, length) - }) - return r, err + if off < 0 || length <= 0 { + return cb.Bucket.GetRange(ctx, name, off, length) } - return cb.Bucket.GetRange(ctx, name, off, length) + cfgName, cfg := cb.cfg.findGetRangeConfig(name) + if cfg == nil { + return cb.Bucket.GetRange(ctx, name, off, length) + } + + var ( + r io.ReadCloser + err error + ) + tracing.DoInSpan(ctx, "cachingbucket_getrange", func(ctx context.Context) { + r, err = cb.cachedGetRange(ctx, name, off, length, cfgName, cfg) + }) + return r, err } -func (cb *CachingBucket) cachedObjectSize(ctx context.Context, name string, ttl time.Duration) (uint64, error) { +func (cb *CachingBucket) ObjectSize(ctx context.Context, name string) (uint64, error) { + cfgName, cfg := cb.cfg.findObjectSizeConfig(name) + if cfg == nil { + return cb.Bucket.ObjectSize(ctx, name) + } + + return cb.cachedObjectSize(ctx, name, cfgName, cfg.cache, cfg.ttl) +} + +func (cb *CachingBucket) cachedObjectSize(ctx context.Context, name string, cfgName string, cache cache.Cache, ttl time.Duration) (uint64, error) { key := cachingKeyObjectSize(name) - cb.objectSizeRequests.Add(1) + cb.operationRequests.WithLabelValues(opObjectSize, cfgName).Inc() - hits := cb.cache.Fetch(ctx, []string{key}) + hits := cache.Fetch(ctx, []string{key}) if s := hits[key]; len(s) == 8 { - cb.objectSizeHits.Add(1) + cb.operationHits.WithLabelValues(opObjectSize, cfgName).Inc() return binary.BigEndian.Uint64(s), nil } @@ -171,17 +318,18 @@ func (cb *CachingBucket) cachedObjectSize(ctx context.Context, name string, ttl var buf [8]byte binary.BigEndian.PutUint64(buf[:], size) - cb.cache.Store(ctx, map[string][]byte{key: buf[:]}, ttl) + cache.Store(ctx, map[string][]byte{key: buf[:]}, ttl) return size, nil } -func (cb *CachingBucket) getRangeChunkFile(ctx context.Context, name string, offset, length int64) (io.ReadCloser, error) { - cb.requestedChunkBytes.Add(float64(length)) +func (cb *CachingBucket) cachedGetRange(ctx context.Context, name string, offset, length int64, cfgName string, cfg *getRangeConfig) (io.ReadCloser, error) { + cb.operationRequests.WithLabelValues(opGetRange, cfgName).Inc() + cb.requestedGetRangeBytes.WithLabelValues(cfgName).Add(float64(length)) - size, err := cb.cachedObjectSize(ctx, name, cb.config.ChunkObjectSizeTTL) + size, err := cb.cachedObjectSize(ctx, name, cfgName, cfg.cache, cfg.objectSizeTTL) if err != nil { - return nil, errors.Wrapf(err, "failed to get size of chunk file: %s", name) + return nil, errors.Wrapf(err, "failed to get size of object: %s", name) } // If length goes over object size, adjust length. We use it later to limit number of read bytes. @@ -190,30 +338,32 @@ func (cb *CachingBucket) getRangeChunkFile(ctx context.Context, name string, off } // Start and end range are subrange-aligned offsets into object, that we're going to read. - startRange := (offset / cb.config.ChunkSubrangeSize) * cb.config.ChunkSubrangeSize - endRange := ((offset + length) / cb.config.ChunkSubrangeSize) * cb.config.ChunkSubrangeSize - if (offset+length)%cb.config.ChunkSubrangeSize > 0 { - endRange += cb.config.ChunkSubrangeSize + startRange := (offset / cfg.subrangeSize) * cfg.subrangeSize + endRange := ((offset + length) / cfg.subrangeSize) * cfg.subrangeSize + if (offset+length)%cfg.subrangeSize > 0 { + endRange += cfg.subrangeSize } // The very last subrange in the object may have length that is not divisible by subrange size. - lastSubrangeOffset := endRange - cb.config.ChunkSubrangeSize - lastSubrangeLength := int(cb.config.ChunkSubrangeSize) + lastSubrangeOffset := endRange - cfg.subrangeSize + lastSubrangeLength := int(cfg.subrangeSize) if uint64(endRange) > size { - lastSubrangeOffset = (int64(size) / cb.config.ChunkSubrangeSize) * cb.config.ChunkSubrangeSize + lastSubrangeOffset = (int64(size) / cfg.subrangeSize) * cfg.subrangeSize lastSubrangeLength = int(int64(size) - lastSubrangeOffset) } - numSubranges := (endRange - startRange) / cb.config.ChunkSubrangeSize + numSubranges := (endRange - startRange) / cfg.subrangeSize offsetKeys := make(map[int64]string, numSubranges) keys := make([]string, 0, numSubranges) - for off := startRange; off < endRange; off += cb.config.ChunkSubrangeSize { - end := off + cb.config.ChunkSubrangeSize + totalRequestedBytes := int64(0) + for off := startRange; off < endRange; off += cfg.subrangeSize { + end := off + cfg.subrangeSize if end > int64(size) { end = int64(size) } + totalRequestedBytes += (end - off) k := cachingKeyObjectSubrange(name, off, end) keys = append(keys, k) @@ -221,44 +371,47 @@ func (cb *CachingBucket) getRangeChunkFile(ctx context.Context, name string, off } // Try to get all subranges from the cache. - hits := cb.cache.Fetch(ctx, keys) + totalCachedBytes := int64(0) + hits := cfg.cache.Fetch(ctx, keys) for _, b := range hits { - cb.fetchedChunkBytes.WithLabelValues(originCache).Add(float64(len(b))) + totalCachedBytes += int64(len(b)) } + cb.fetchedGetRangeBytes.WithLabelValues(originCache, cfgName).Add(float64(totalCachedBytes)) + cb.operationHits.WithLabelValues(opGetRange, cfgName).Add(float64(len(hits)) / float64(len(keys))) if len(hits) < len(keys) { if hits == nil { hits = map[string][]byte{} } - err := cb.fetchMissingChunkSubranges(ctx, name, startRange, endRange, offsetKeys, hits, lastSubrangeOffset, lastSubrangeLength) + err := cb.fetchMissingSubranges(ctx, name, startRange, endRange, offsetKeys, hits, lastSubrangeOffset, lastSubrangeLength, cfgName, cfg) if err != nil { return nil, err } } - return ioutil.NopCloser(newSubrangesReader(cb.config.ChunkSubrangeSize, offsetKeys, hits, offset, length)), nil + return ioutil.NopCloser(newSubrangesReader(cfg.subrangeSize, offsetKeys, hits, offset, length)), nil } type rng struct { start, end int64 } -// fetchMissingChunkSubranges fetches missing subranges, stores them into "hits" map +// fetchMissingSubranges fetches missing subranges, stores them into "hits" map // and into cache as well (using provided cacheKeys). -func (cb *CachingBucket) fetchMissingChunkSubranges(ctx context.Context, name string, startRange, endRange int64, cacheKeys map[int64]string, hits map[string][]byte, lastSubrangeOffset int64, lastSubrangeLength int) error { +func (cb *CachingBucket) fetchMissingSubranges(ctx context.Context, name string, startRange, endRange int64, cacheKeys map[int64]string, hits map[string][]byte, lastSubrangeOffset int64, lastSubrangeLength int, cfgName string, cfg *getRangeConfig) error { // Ordered list of missing sub-ranges. var missing []rng - for off := startRange; off < endRange; off += cb.config.ChunkSubrangeSize { + for off := startRange; off < endRange; off += cfg.subrangeSize { if hits[cacheKeys[off]] == nil { - missing = append(missing, rng{start: off, end: off + cb.config.ChunkSubrangeSize}) + missing = append(missing, rng{start: off, end: off + cfg.subrangeSize}) } } missing = mergeRanges(missing, 0) // Merge adjacent ranges. // Keep merging until we have only max number of ranges (= requests). - for limit := cb.config.ChunkSubrangeSize; cb.config.MaxChunksGetRangeRequests > 0 && len(missing) > cb.config.MaxChunksGetRangeRequests; limit = limit * 2 { + for limit := cfg.subrangeSize; cfg.maxSubRequests > 0 && len(missing) > cfg.maxSubRequests; limit = limit * 2 { missing = mergeRanges(missing, limit) } @@ -275,7 +428,7 @@ func (cb *CachingBucket) fetchMissingChunkSubranges(ctx context.Context, name st } defer runutil.CloseWithLogOnErr(cb.logger, r, "fetching range [%d, %d]", m.start, m.end) - for off := m.start; off < m.end && gctx.Err() == nil; off += cb.config.ChunkSubrangeSize { + for off := m.start; off < m.end && gctx.Err() == nil; off += cfg.subrangeSize { key := cacheKeys[off] if key == "" { return errors.Errorf("fetching range [%d, %d]: caching key for offset %d not found", m.start, m.end, off) @@ -288,7 +441,7 @@ func (cb *CachingBucket) fetchMissingChunkSubranges(ctx context.Context, name st // if object length isn't divisible by subrange size. subrangeData = make([]byte, lastSubrangeLength) } else { - subrangeData = make([]byte, cb.config.ChunkSubrangeSize) + subrangeData = make([]byte, cfg.subrangeSize) } _, err := io.ReadFull(r, subrangeData) if err != nil { @@ -304,10 +457,10 @@ func (cb *CachingBucket) fetchMissingChunkSubranges(ctx context.Context, name st hitsMutex.Unlock() if storeToCache { - cb.fetchedChunkBytes.WithLabelValues(originBucket).Add(float64(len(subrangeData))) - cb.cache.Store(gctx, map[string][]byte{key: subrangeData}, cb.config.ChunkSubrangeTTL) + cb.fetchedGetRangeBytes.WithLabelValues(originBucket, cfgName).Add(float64(len(subrangeData))) + cfg.cache.Store(gctx, map[string][]byte{key: subrangeData}, cfg.subrangeTTL) } else { - cb.refetchedChunkBytes.WithLabelValues(originCache).Add(float64(len(subrangeData))) + cb.refetchedGetRangeBytes.WithLabelValues(originCache, cfgName).Add(float64(len(subrangeData))) } } @@ -344,6 +497,18 @@ func cachingKeyObjectSubrange(name string, start int64, end int64) string { return fmt.Sprintf("subrange:%s:%d:%d", name, start, end) } +func cachingKeyIter(name string) string { + return fmt.Sprintf("iter:%s", name) +} + +func cachingKeyExists(name string) string { + return fmt.Sprintf("exists:%s", name) +} + +func cachingKeyContent(name string) string { + return fmt.Sprintf("content:%s", name) +} + // Reader implementation that uses in-memory subranges. type subrangesReader struct { subrangeSize int64 @@ -409,3 +574,56 @@ func (c *subrangesReader) subrangeAt(offset int64) ([]byte, error) { } return b, nil } + +type getReader struct { + c cache.Cache + ctx context.Context + r io.ReadCloser + buf *bytes.Buffer + startTime time.Time + ttl time.Duration + cacheKey string + maxSize int +} + +func (g *getReader) Close() error { + // We don't know if entire object was read, don't store it here. + g.buf = nil + return g.r.Close() +} + +func (g *getReader) Read(p []byte) (n int, err error) { + n, err = g.r.Read(p) + if n > 0 && g.buf != nil { + if g.buf.Len()+n <= g.maxSize { + g.buf.Write(p[:n]) + } else { + // Object is larger than max size, stop caching. + g.buf = nil + } + } + + if err == io.EOF && g.buf != nil { + remainingTTL := g.ttl - time.Since(g.startTime) + if remainingTTL > 0 { + g.c.Store(g.ctx, map[string][]byte{g.cacheKey: g.buf.Bytes()}, remainingTTL) + } + // Clear reference, to avoid doing another Store on next read. + g.buf = nil + } + + return n, err +} + +// JSONIterCodec encodes iter results into JSON. Suitable for root dir. +type JSONIterCodec struct{} + +func (jic JSONIterCodec) Encode(files []string) ([]byte, error) { + return json.Marshal(files) +} + +func (jic JSONIterCodec) Decode(data []byte) ([]string, error) { + var list []string + err := json.Unmarshal(data, &list) + return list, err +} diff --git a/pkg/store/cache/caching_bucket_config.go b/pkg/store/cache/caching_bucket_config.go new file mode 100644 index 00000000000..dce0350fdfe --- /dev/null +++ b/pkg/store/cache/caching_bucket_config.go @@ -0,0 +1,208 @@ +// Copyright (c) The Thanos Authors. +// Licensed under the Apache License 2.0. + +package storecache + +import ( + "time" + + "github.com/thanos-io/thanos/pkg/cache" +) + +// Codec for encoding and decoding results of Iter call. +type IterCodec interface { + Encode(files []string) ([]byte, error) + Decode(cachedData []byte) ([]string, error) +} + +// CachingBucketConfig contains low-level configuration for individual bucket operations. +// This is not exposed to the user, but it is expected that code sets up individual +// operations based on user-provided configuration. +type CachingBucketConfig struct { + get map[string]*getConfig + iter map[string]*iterConfig + exists map[string]*existsConfig + getRange map[string]*getRangeConfig + objectSize map[string]*objectSizeConfig +} + +func NewCachingBucketConfig() *CachingBucketConfig { + return &CachingBucketConfig{ + get: map[string]*getConfig{}, + iter: map[string]*iterConfig{}, + exists: map[string]*existsConfig{}, + getRange: map[string]*getRangeConfig{}, + objectSize: map[string]*objectSizeConfig{}, + } +} + +// Generic config for single operation. +type operationConfig struct { + matcher func(name string) bool + cache cache.Cache +} + +// Operation-specific configs. +type iterConfig struct { + operationConfig + ttl time.Duration + codec IterCodec +} + +type existsConfig struct { + operationConfig + existsTTL time.Duration + doesntExistTTL time.Duration +} + +type getConfig struct { + existsConfig + contentTTL time.Duration + maxCacheableSize int +} + +type getRangeConfig struct { + operationConfig + subrangeSize int64 + maxSubRequests int + objectSizeTTL time.Duration + subrangeTTL time.Duration +} + +type objectSizeConfig struct { + operationConfig + ttl time.Duration +} + +func newOperationConfig(cache cache.Cache, matcher func(string) bool) operationConfig { + if cache == nil { + panic("cache") + } + if matcher == nil { + panic("matcher") + } + + return operationConfig{ + matcher: matcher, + cache: cache, + } +} + +// CacheIter configures caching of "Iter" operation for matching directories. +func (cfg *CachingBucketConfig) CacheIter(configName string, cache cache.Cache, matcher func(string) bool, ttl time.Duration, codec IterCodec) { + cfg.iter[configName] = &iterConfig{ + operationConfig: newOperationConfig(cache, matcher), + ttl: ttl, + codec: codec, + } +} + +// CacheGet configures caching of "Get" operation for matching files. Content of the object is cached, as well as whether object exists or not. +func (cfg *CachingBucketConfig) CacheGet(configName string, cache cache.Cache, matcher func(string) bool, maxCacheableSize int, contentTTL, existsTTL, doesntExistTTL time.Duration) { + cfg.get[configName] = &getConfig{ + existsConfig: existsConfig{ + operationConfig: newOperationConfig(cache, matcher), + existsTTL: existsTTL, + doesntExistTTL: doesntExistTTL, + }, + contentTTL: contentTTL, + maxCacheableSize: maxCacheableSize, + } +} + +// CacheExists configures caching of "Exists" operation for matching files. Negative values are cached as well. +func (cfg *CachingBucketConfig) CacheExists(configName string, cache cache.Cache, matcher func(string) bool, existsTTL, doesntExistTTL time.Duration) { + cfg.exists[configName] = &existsConfig{ + operationConfig: newOperationConfig(cache, matcher), + existsTTL: existsTTL, + doesntExistTTL: doesntExistTTL, + } +} + +// CacheGetRange configures caching of "GetRange" operation. Subranges (aligned on subrange size) are cached individually. +// Since caching operation needs to know the object size to compute correct subranges, object size is cached as well. +// Single "GetRange" requests can result in multiple smaller GetRange sub-requests issued on the underlying bucket. +// MaxSubRequests specifies how many such subrequests may be issued. Values <= 0 mean there is no limit (requests +// for adjacent missing subranges are still merged). +func (cfg *CachingBucketConfig) CacheGetRange(configName string, cache cache.Cache, matcher func(string) bool, subrangeSize int64, objectSizeTTL, subrangeTTL time.Duration, maxSubRequests int) { + cfg.getRange[configName] = &getRangeConfig{ + operationConfig: newOperationConfig(cache, matcher), + subrangeSize: subrangeSize, + objectSizeTTL: objectSizeTTL, + subrangeTTL: subrangeTTL, + maxSubRequests: maxSubRequests, + } +} + +// CacheObjectSize configures caching of "ObjectSize" operation for matching files. +func (cfg *CachingBucketConfig) CacheObjectSize(configName string, cache cache.Cache, matcher func(name string) bool, ttl time.Duration) { + cfg.objectSize[configName] = &objectSizeConfig{ + operationConfig: newOperationConfig(cache, matcher), + ttl: ttl, + } +} + +func (cfg *CachingBucketConfig) allConfigNames() map[string][]string { + result := map[string][]string{} + for n := range cfg.get { + result[opGet] = append(result[opGet], n) + } + for n := range cfg.iter { + result[opIter] = append(result[opIter], n) + } + for n := range cfg.exists { + result[opExists] = append(result[opExists], n) + } + for n := range cfg.getRange { + result[opGetRange] = append(result[opGetRange], n) + } + for n := range cfg.objectSize { + result[opObjectSize] = append(result[opObjectSize], n) + } + return result +} + +func (cfg *CachingBucketConfig) findIterConfig(dir string) (string, *iterConfig) { + for n, cfg := range cfg.iter { + if cfg.matcher(dir) { + return n, cfg + } + } + return "", nil +} + +func (cfg *CachingBucketConfig) findExistConfig(name string) (string, *existsConfig) { + for n, cfg := range cfg.exists { + if cfg.matcher(name) { + return n, cfg + } + } + return "", nil +} + +func (cfg *CachingBucketConfig) findGetConfig(name string) (string, *getConfig) { + for n, cfg := range cfg.get { + if cfg.matcher(name) { + return n, cfg + } + } + return "", nil +} + +func (cfg *CachingBucketConfig) findGetRangeConfig(name string) (string, *getRangeConfig) { + for n, cfg := range cfg.getRange { + if cfg.matcher(name) { + return n, cfg + } + } + return "", nil +} + +func (cfg *CachingBucketConfig) findObjectSizeConfig(name string) (string, *objectSizeConfig) { + for n, cfg := range cfg.objectSize { + if cfg.matcher(name) { + return n, cfg + } + } + return "", nil +} diff --git a/pkg/store/cache/caching_bucket_factory.go b/pkg/store/cache/caching_bucket_factory.go index 0bc0a784582..3dbd60276e2 100644 --- a/pkg/store/cache/caching_bucket_factory.go +++ b/pkg/store/cache/caching_bucket_factory.go @@ -4,38 +4,71 @@ package storecache import ( + "regexp" + "strings" + "time" + "github.com/go-kit/kit/log" "github.com/go-kit/kit/log/level" "github.com/pkg/errors" "github.com/prometheus/client_golang/prometheus" "gopkg.in/yaml.v2" + "github.com/thanos-io/thanos/pkg/block/metadata" cache "github.com/thanos-io/thanos/pkg/cache" "github.com/thanos-io/thanos/pkg/cacheutil" + "github.com/thanos-io/thanos/pkg/model" "github.com/thanos-io/thanos/pkg/objstore" ) // BucketCacheProvider is a type used to evaluate all bucket cache providers. type BucketCacheProvider string -const ( - MemcachedBucketCacheProvider BucketCacheProvider = "memcached" // Memcached cache-provider for caching bucket. -) +const MemcachedBucketCacheProvider BucketCacheProvider = "memcached" // Memcached cache-provider for caching bucket. -// CachingBucketWithBackendConfig is a configuration of caching bucket used by Store component. -type CachingBucketWithBackendConfig struct { +// CachingWithBackendConfig is a configuration of caching bucket used by Store component. +type CachingWithBackendConfig struct { Type BucketCacheProvider `yaml:"backend"` BackendConfig interface{} `yaml:"backend_config"` - CachingBucketConfig CachingBucketConfig `yaml:"caching_config"` + // Basic unit used to cache chunks. + ChunkSubrangeSize int64 `yaml:"chunk_subrange_size"` + + // Maximum number of GetRange requests issued by this bucket for single GetRange call. Zero or negative value = unlimited. + MaxChunksGetRangeRequests int `yaml:"max_chunks_get_range_requests"` + + // TTLs for various cache items. + ChunkObjectSizeTTL time.Duration `yaml:"chunk_object_size_ttl"` + ChunkSubrangeTTL time.Duration `yaml:"chunk_subrange_ttl"` + + // How long to cache result of Iter call in root directory. + BlocksIterTTL time.Duration `yaml:"blocks_iter_ttl"` + + // Config for Exists and Get operations for metadata files. + MetafileExistsTTL time.Duration `yaml:"metafile_exists_ttl"` + MetafileDoesntExistTTL time.Duration `yaml:"metafile_doesnt_exist_ttl"` + MetafileContentTTL time.Duration `yaml:"metafile_content_ttl"` + MetafileMaxSize model.Bytes `yaml:"metafile_max_size"` +} + +func (cfg *CachingWithBackendConfig) Defaults() { + cfg.ChunkSubrangeSize = 16000 // Equal to max chunk size. + cfg.ChunkObjectSizeTTL = 24 * time.Hour + cfg.ChunkSubrangeTTL = 24 * time.Hour + cfg.MaxChunksGetRangeRequests = 3 + cfg.BlocksIterTTL = 5 * time.Minute + cfg.MetafileExistsTTL = 2 * time.Hour + cfg.MetafileDoesntExistTTL = 15 * time.Minute + cfg.MetafileContentTTL = 24 * time.Hour + cfg.MetafileMaxSize = 1024 * 1024 // Equal to default MaxItemSize in memcached client. } // NewCachingBucketFromYaml uses YAML configuration to create new caching bucket. func NewCachingBucketFromYaml(yamlContent []byte, bucket objstore.Bucket, logger log.Logger, reg prometheus.Registerer) (objstore.InstrumentedBucket, error) { level.Info(logger).Log("msg", "loading caching bucket configuration") - config := &CachingBucketWithBackendConfig{} - config.CachingBucketConfig = DefaultCachingBucketConfig() + config := &CachingWithBackendConfig{} + config.Defaults() if err := yaml.UnmarshalStrict(yamlContent, config); err != nil { return nil, errors.Wrap(err, "parsing config YAML file") @@ -60,5 +93,32 @@ func NewCachingBucketFromYaml(yamlContent []byte, bucket objstore.Bucket, logger return nil, errors.Errorf("unsupported cache type: %s", config.Type) } - return NewCachingBucket(bucket, c, config.CachingBucketConfig, logger, reg) + cfg := NewCachingBucketConfig() + + // Configure cache. + cfg.CacheGetRange("chunks", c, isTSDBChunkFile, config.ChunkSubrangeSize, config.ChunkObjectSizeTTL, config.ChunkSubrangeTTL, config.MaxChunksGetRangeRequests) + cfg.CacheExists("meta.jsons", c, isMetaFile, config.MetafileExistsTTL, config.MetafileDoesntExistTTL) + cfg.CacheGet("meta.jsons", c, isMetaFile, int(config.MetafileMaxSize), config.MetafileContentTTL, config.MetafileExistsTTL, config.MetafileDoesntExistTTL) + + // Cache Iter requests for root. + cfg.CacheIter("blocks-iter", c, isBlocksRootDir, config.BlocksIterTTL, JSONIterCodec{}) + + cb, err := NewCachingBucket(bucket, cfg, logger, reg) + if err != nil { + return nil, err + } + + return cb, nil +} + +var chunksMatcher = regexp.MustCompile(`^.*/chunks/\d+$`) + +func isTSDBChunkFile(name string) bool { return chunksMatcher.MatchString(name) } + +func isMetaFile(name string) bool { + return strings.HasSuffix(name, "/"+metadata.MetaFilename) || strings.HasSuffix(name, "/"+metadata.DeletionMarkFilename) +} + +func isBlocksRootDir(name string) bool { + return name == "" } diff --git a/pkg/store/cache/caching_bucket_test.go b/pkg/store/cache/caching_bucket_test.go index 2bbc37c8870..d392d9066ea 100644 --- a/pkg/store/cache/caching_bucket_test.go +++ b/pkg/store/cache/caching_bucket_test.go @@ -9,6 +9,8 @@ import ( "fmt" "io" "io/ioutil" + "sort" + "strings" "sync" "testing" "time" @@ -17,10 +19,13 @@ import ( promtest "github.com/prometheus/client_golang/prometheus/testutil" "github.com/thanos-io/thanos/pkg/objstore" + "github.com/thanos-io/thanos/pkg/runutil" "github.com/thanos-io/thanos/pkg/testutil" ) -func TestCachingBucket(t *testing.T) { +const testFilename = "/random_object" + +func TestChunksCaching(t *testing.T) { length := int64(1024 * 1024) subrangeSize := int64(16000) // All tests are based on this value. @@ -35,7 +40,7 @@ func TestCachingBucket(t *testing.T) { testutil.Ok(t, inmem.Upload(context.Background(), name, bytes.NewReader(data))) // We reuse cache between tests (!) - cache := &mockCache{cache: make(map[string][]byte)} + cache := newMockCache() // Warning, these tests must be run in order, they depend cache state from previous test. for _, tc := range []struct { @@ -106,7 +111,7 @@ func TestCachingBucket(t *testing.T) { expectedFetchedBytes: length, expectedCachedBytes: 0, // Cache is flushed. init: func() { - cache.cache = map[string][]byte{} // Flush cache. + cache.flush() }, }, @@ -217,24 +222,21 @@ func TestCachingBucket(t *testing.T) { tc.init() } - cfg := DefaultCachingBucketConfig() - cfg.ChunkSubrangeSize = subrangeSize - cfg.MaxChunksGetRangeRequests = tc.maxGetRangeRequests + cfg := NewCachingBucketConfig() + cfg.CacheGetRange("chunks", cache, isTSDBChunkFile, subrangeSize, time.Hour, time.Hour, tc.maxGetRangeRequests) - cachingBucket, err := NewCachingBucket(inmem, cache, cfg, nil, nil) + cachingBucket, err := NewCachingBucket(inmem, cfg, nil, nil) testutil.Ok(t, err) verifyGetRange(t, cachingBucket, name, tc.offset, tc.length, tc.expectedLength) - testutil.Equals(t, tc.expectedCachedBytes, int64(promtest.ToFloat64(cachingBucket.fetchedChunkBytes.WithLabelValues(originCache)))) - testutil.Equals(t, tc.expectedFetchedBytes, int64(promtest.ToFloat64(cachingBucket.fetchedChunkBytes.WithLabelValues(originBucket)))) - testutil.Equals(t, tc.expectedRefetchedBytes, int64(promtest.ToFloat64(cachingBucket.refetchedChunkBytes.WithLabelValues(originCache)))) + testutil.Equals(t, tc.expectedCachedBytes, int64(promtest.ToFloat64(cachingBucket.fetchedGetRangeBytes.WithLabelValues(originCache, "chunks")))) + testutil.Equals(t, tc.expectedFetchedBytes, int64(promtest.ToFloat64(cachingBucket.fetchedGetRangeBytes.WithLabelValues(originBucket, "chunks")))) + testutil.Equals(t, tc.expectedRefetchedBytes, int64(promtest.ToFloat64(cachingBucket.refetchedGetRangeBytes.WithLabelValues(originCache, "chunks")))) }) } } func verifyGetRange(t *testing.T, cachingBucket *CachingBucket, name string, offset, length int64, expectedLength int64) { - t.Helper() - r, err := cachingBucket.GetRange(context.Background(), name, offset, length) testutil.Ok(t, err) @@ -249,16 +251,29 @@ func verifyGetRange(t *testing.T, cachingBucket *CachingBucket, name string, off } } +type cacheItem struct { + data []byte + exp time.Time +} + type mockCache struct { mu sync.Mutex - cache map[string][]byte + cache map[string]cacheItem +} + +func newMockCache() *mockCache { + c := &mockCache{} + c.flush() + return c } -func (m *mockCache) Store(_ context.Context, data map[string][]byte, _ time.Duration) { +func (m *mockCache) Store(_ context.Context, data map[string][]byte, ttl time.Duration) { m.mu.Lock() defer m.mu.Unlock() + + exp := time.Now().Add(ttl) for key, val := range data { - m.cache[key] = val + m.cache[key] = cacheItem{data: val, exp: exp} } } @@ -268,16 +283,21 @@ func (m *mockCache) Fetch(_ context.Context, keys []string) map[string][]byte { found := make(map[string][]byte, len(keys)) + now := time.Now() for _, k := range keys { v, ok := m.cache[k] - if ok { - found[k] = v + if ok && now.Before(v.exp) { + found[k] = v.data } } return found } +func (m *mockCache) flush() { + m.cache = map[string]cacheItem{} +} + func TestMergeRanges(t *testing.T) { for ix, tc := range []struct { input []rng @@ -315,7 +335,11 @@ func TestMergeRanges(t *testing.T) { func TestInvalidOffsetAndLength(t *testing.T) { b := &testBucket{objstore.NewInMemBucket()} - c, err := NewCachingBucket(b, &mockCache{cache: make(map[string][]byte)}, DefaultCachingBucketConfig(), nil, nil) + + cfg := NewCachingBucketConfig() + cfg.CacheGetRange("chunks", newMockCache(), func(string) bool { return true }, 10000, time.Hour, time.Hour, 3) + + c, err := NewCachingBucket(b, cfg, nil, nil) testutil.Ok(t, err) r, err := c.GetRange(context.Background(), "test", -1, 1000) @@ -342,3 +366,293 @@ func (b *testBucket) GetRange(ctx context.Context, name string, off, length int6 return b.InMemBucket.GetRange(ctx, name, off, length) } + +func TestCachedIter(t *testing.T) { + inmem := objstore.NewInMemBucket() + testutil.Ok(t, inmem.Upload(context.Background(), "/file-1", strings.NewReader("hej"))) + testutil.Ok(t, inmem.Upload(context.Background(), "/file-2", strings.NewReader("ahoj"))) + testutil.Ok(t, inmem.Upload(context.Background(), "/file-3", strings.NewReader("hello"))) + testutil.Ok(t, inmem.Upload(context.Background(), "/file-4", strings.NewReader("ciao"))) + + allFiles := []string{"/file-1", "/file-2", "/file-3", "/file-4"} + + // We reuse cache between tests (!) + cache := newMockCache() + + const cfgName = "dirs" + cfg := NewCachingBucketConfig() + cfg.CacheIter(cfgName, cache, func(string) bool { return true }, 5*time.Minute, JSONIterCodec{}) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + verifyIter(t, cb, allFiles, false, cfgName) + + testutil.Ok(t, inmem.Upload(context.Background(), "/file-5", strings.NewReader("nazdar"))) + verifyIter(t, cb, allFiles, true, cfgName) // Iter returns old response. + + cache.flush() + allFiles = append(allFiles, "/file-5") + verifyIter(t, cb, allFiles, false, cfgName) + + cache.flush() + + e := errors.Errorf("test error") + + // This iteration returns false. Result will not be cached. + testutil.Equals(t, e, cb.Iter(context.Background(), "/", func(_ string) error { + return e + })) + + // Nothing cached now. + verifyIter(t, cb, allFiles, false, cfgName) +} + +func verifyIter(t *testing.T, cb *CachingBucket, expectedFiles []string, expectedCache bool, cfgName string) { + hitsBefore := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opIter, cfgName))) + + col := iterCollector{} + testutil.Ok(t, cb.Iter(context.Background(), "/", col.collect)) + + hitsAfter := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opIter, cfgName))) + + sort.Strings(col.items) + testutil.Equals(t, expectedFiles, col.items) + + expectedHitsDiff := 0 + if expectedCache { + expectedHitsDiff = 1 + } + + testutil.Equals(t, expectedHitsDiff, hitsAfter-hitsBefore) +} + +type iterCollector struct { + items []string +} + +func (it *iterCollector) collect(s string) error { + it.items = append(it.items, s) + return nil +} + +func TestExists(t *testing.T) { + inmem := objstore.NewInMemBucket() + + // We reuse cache between tests (!) + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "test" + cfg.CacheExists(cfgName, cache, matchAll, 10*time.Minute, 2*time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + verifyExists(t, cb, testFilename, false, false, cfgName) + + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, strings.NewReader("hej"))) + verifyExists(t, cb, testFilename, false, true, cfgName) // Reused cache result. + cache.flush() + verifyExists(t, cb, testFilename, true, false, cfgName) + + testutil.Ok(t, inmem.Delete(context.Background(), testFilename)) + verifyExists(t, cb, testFilename, true, true, cfgName) // Reused cache result. + cache.flush() + verifyExists(t, cb, testFilename, false, false, cfgName) +} + +func TestExistsCachingDisabled(t *testing.T) { + inmem := objstore.NewInMemBucket() + + // We reuse cache between tests (!) + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "test" + cfg.CacheExists(cfgName, cache, func(string) bool { return false }, 10*time.Minute, 2*time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + verifyExists(t, cb, testFilename, false, false, cfgName) + + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, strings.NewReader("hej"))) + verifyExists(t, cb, testFilename, true, false, cfgName) + + testutil.Ok(t, inmem.Delete(context.Background(), testFilename)) + verifyExists(t, cb, testFilename, false, false, cfgName) +} + +func verifyExists(t *testing.T, cb *CachingBucket, file string, exists bool, fromCache bool, cfgName string) { + t.Helper() + hitsBefore := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opExists, cfgName))) + ok, err := cb.Exists(context.Background(), file) + testutil.Ok(t, err) + testutil.Equals(t, exists, ok) + hitsAfter := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opExists, cfgName))) + + if fromCache { + testutil.Equals(t, 1, hitsAfter-hitsBefore) + } else { + testutil.Equals(t, 0, hitsAfter-hitsBefore) + } +} + +func TestGet(t *testing.T) { + inmem := objstore.NewInMemBucket() + + // We reuse cache between tests (!) + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "metafile" + cfg.CacheGet(cfgName, cache, matchAll, 1024, 10*time.Minute, 10*time.Minute, 2*time.Minute) + cfg.CacheExists(cfgName, cache, matchAll, 10*time.Minute, 2*time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + verifyGet(t, cb, testFilename, nil, false, cfgName) + verifyExists(t, cb, testFilename, false, true, cfgName) + + data := []byte("hello world") + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, bytes.NewBuffer(data))) + + // Even if file is now uploaded, old data is served from cache. + verifyGet(t, cb, testFilename, nil, true, cfgName) + verifyExists(t, cb, testFilename, false, true, cfgName) + + cache.flush() + + verifyGet(t, cb, testFilename, data, false, cfgName) + verifyGet(t, cb, testFilename, data, true, cfgName) + verifyExists(t, cb, testFilename, true, true, cfgName) +} + +func TestGetTooBigObject(t *testing.T) { + inmem := objstore.NewInMemBucket() + + // We reuse cache between tests (!) + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "metafile" + // Only allow 5 bytes to be cached. + cfg.CacheGet(cfgName, cache, matchAll, 5, 10*time.Minute, 10*time.Minute, 2*time.Minute) + cfg.CacheExists(cfgName, cache, matchAll, 10*time.Minute, 2*time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + data := []byte("hello world") + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, bytes.NewBuffer(data))) + + // Object is too big, so it will not be stored to cache on first read. + verifyGet(t, cb, testFilename, data, false, cfgName) + verifyGet(t, cb, testFilename, data, false, cfgName) + verifyExists(t, cb, testFilename, true, true, cfgName) +} + +func TestGetPartialRead(t *testing.T) { + inmem := objstore.NewInMemBucket() + + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "metafile" + cfg.CacheGet(cfgName, cache, matchAll, 1024, 10*time.Minute, 10*time.Minute, 2*time.Minute) + cfg.CacheExists(cfgName, cache, matchAll, 10*time.Minute, 2*time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + data := []byte("hello world") + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, bytes.NewBuffer(data))) + + // Read only few bytes from data. + r, err := cb.Get(context.Background(), testFilename) + testutil.Ok(t, err) + _, err = r.Read(make([]byte, 1)) + testutil.Ok(t, err) + testutil.Ok(t, r.Close()) + + // Object wasn't cached as it wasn't fully read. + verifyGet(t, cb, testFilename, data, false, cfgName) + // VerifyGet read object, so now it's cached. + verifyGet(t, cb, testFilename, data, true, cfgName) +} + +func verifyGet(t *testing.T, cb *CachingBucket, file string, expectedData []byte, cacheUsed bool, cfgName string) { + hitsBefore := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opGet, cfgName))) + + r, err := cb.Get(context.Background(), file) + if expectedData == nil { + testutil.Assert(t, cb.IsObjNotFoundErr(err)) + + hitsAfter := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opGet, cfgName))) + if cacheUsed { + testutil.Equals(t, 1, hitsAfter-hitsBefore) + } else { + testutil.Equals(t, 0, hitsAfter-hitsBefore) + } + } else { + testutil.Ok(t, err) + defer runutil.CloseWithLogOnErr(nil, r, "verifyGet") + data, err := ioutil.ReadAll(r) + testutil.Ok(t, err) + testutil.Equals(t, expectedData, data) + + hitsAfter := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opGet, cfgName))) + if cacheUsed { + testutil.Equals(t, 1, hitsAfter-hitsBefore) + } else { + testutil.Equals(t, 0, hitsAfter-hitsBefore) + } + } +} + +func TestObjectSize(t *testing.T) { + inmem := objstore.NewInMemBucket() + + // We reuse cache between tests (!) + cache := newMockCache() + + cfg := NewCachingBucketConfig() + const cfgName = "test" + cfg.CacheObjectSize(cfgName, cache, matchAll, time.Minute) + + cb, err := NewCachingBucket(inmem, cfg, nil, nil) + testutil.Ok(t, err) + + verifyObjectSize(t, cb, testFilename, -1, false, cfgName) + verifyObjectSize(t, cb, testFilename, -1, false, cfgName) // ObjectSize doesn't cache non-existent files. + + data := []byte("hello world") + testutil.Ok(t, inmem.Upload(context.Background(), testFilename, bytes.NewBuffer(data))) + + verifyObjectSize(t, cb, testFilename, len(data), false, cfgName) + verifyObjectSize(t, cb, testFilename, len(data), true, cfgName) +} + +func verifyObjectSize(t *testing.T, cb *CachingBucket, file string, expectedLength int, cacheUsed bool, cfgName string) { + t.Helper() + hitsBefore := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opObjectSize, cfgName))) + + length, err := cb.ObjectSize(context.Background(), file) + if expectedLength < 0 { + testutil.Assert(t, cb.IsObjNotFoundErr(err)) + } else { + testutil.Ok(t, err) + testutil.Equals(t, uint64(expectedLength), length) + + hitsAfter := int(promtest.ToFloat64(cb.operationHits.WithLabelValues(opObjectSize, cfgName))) + if cacheUsed { + testutil.Equals(t, 1, hitsAfter-hitsBefore) + } else { + testutil.Equals(t, 0, hitsAfter-hitsBefore) + } + } +} + +func matchAll(string) bool { return true } From a3e8b0229bac7208ba7aac1d6199de8647a0a098 Mon Sep 17 00:00:00 2001 From: Thota Harshitha Chowdary <37958850+Harshitha1234@users.noreply.github.com> Date: Sat, 16 May 2020 16:02:10 +0530 Subject: [PATCH 186/190] Updated the help message for --data-dir flag (#2601) * Update store.go Signed-off-by: Harshitha Chowdary * Update store.go Signed-off-by: Harshitha Chowdary * Update cmd/thanos/store.go Co-authored-by: Bartlomiej Plotka Signed-off-by: Harshitha Chowdary * Updated the docs folder Signed-off-by: Harshitha Chowdary Co-authored-by: Bartlomiej Plotka --- cmd/thanos/store.go | 2 +- docs/components/store.md | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/cmd/thanos/store.go b/cmd/thanos/store.go index 9425e36ddab..fb21439c31b 100644 --- a/cmd/thanos/store.go +++ b/cmd/thanos/store.go @@ -45,7 +45,7 @@ func registerStore(m map[string]setupFunc, app *kingpin.Application) { httpBindAddr, httpGracePeriod := regHTTPFlags(cmd) grpcBindAddr, grpcGracePeriod, grpcCert, grpcKey, grpcClientCA := regGRPCFlags(cmd) - dataDir := cmd.Flag("data-dir", "Data directory in which to cache remote blocks."). + dataDir := cmd.Flag("data-dir", "Local data directory used for caching purposes (index-header, in-mem cache items and meta.jsons). If removed, no data will be lost, just store will have to rebuild the cache. NOTE: Putting raw blocks here will not cause the store to read them. For such use cases use Prometheus + sidecar."). Default("./data").String() indexCacheSize := cmd.Flag("index-cache-size", "Maximum size of items held in the in-memory index cache. Ignored if --index-cache.config or --index-cache.config-file option is specified."). diff --git a/docs/components/store.md b/docs/components/store.md index 74a70f348df..9043ee6a35b 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -68,7 +68,13 @@ Flags: TLS CA to verify clients against. If no client CA is specified, there is no client verification on server side. (tls.NoClientCert) - --data-dir="./data" Data directory in which to cache remote blocks. + --data-dir="./data" Local data directory used for caching purposes + (index-header, in-mem cache items and + meta.jsons). If removed, no data will be lost, + just store will have to rebuild the cache. + NOTE: Putting raw blocks here will not cause + the store to read them. For such use cases use + Prometheus + sidecar. --index-cache-size=250MB Maximum size of items held in the in-memory index cache. Ignored if --index-cache.config or --index-cache.config-file option is specified. From 334a41b4caf2206e606a21efbfa8f572ba167792 Mon Sep 17 00:00:00 2001 From: Lili Cosic Date: Sun, 17 May 2020 15:08:34 +0200 Subject: [PATCH 187/190] rule: Fix bug when rules were out of sync (#2615) Co-authored-by: johncming Signed-off-by: Lili Cosic Co-authored-by: johncming --- CHANGELOG.md | 1 + cmd/thanos/rule.go | 13 ++++++++--- pkg/rule/rule.go | 21 ++++++++++++++--- pkg/rule/rule_test.go | 53 ++++++++++++++++++++++++++++++++++++++----- 4 files changed, 76 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 855c3518a0f..3fe32a75fdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2536](https://github.com/thanos-io/thanos/pull/2536) minio-go: Fixed AWS STS endpoint url to https for Web Identity providers on AWS EKS - [#2501](https://github.com/thanos-io/thanos/pull/2501) Query: gracefully handle additional fields in `SeriesResponse` protobuf message that may be added in the future. - [#2568](https://github.com/thanos-io/thanos/pull/2568) Query: does not close the connection of strict, static nodes if establishing a connection had succeeded but Info() call failed +- [#2615](https://github.com/thanos-io/thanos/pull/2615) Rule: Fix bugs where rules were out of sync. ### Added diff --git a/cmd/thanos/rule.go b/cmd/thanos/rule.go index d49409627bc..21272a3fc73 100644 --- a/cmd/thanos/rule.go +++ b/cmd/thanos/rule.go @@ -763,8 +763,9 @@ func reloadRules(logger log.Logger, metrics *RuleMetrics) error { level.Debug(logger).Log("msg", "configured rule files", "files", strings.Join(ruleFiles, ",")) var ( - errs tsdberrors.MultiError - files []string + errs tsdberrors.MultiError + files []string + seenFiles = make(map[string]struct{}) ) for _, pat := range ruleFiles { fs, err := filepath.Glob(pat) @@ -774,7 +775,13 @@ func reloadRules(logger log.Logger, continue } - files = append(files, fs...) + for _, fp := range fs { + if _, ok := seenFiles[fp]; ok { + continue + } + files = append(files, fp) + seenFiles[fp] = struct{}{} + } } level.Info(logger).Log("msg", "reload rule files", "numFiles", len(files)) diff --git a/pkg/rule/rule.go b/pkg/rule/rule.go index 8491478c131..70c442d5d99 100644 --- a/pkg/rule/rule.go +++ b/pkg/rule/rule.go @@ -70,17 +70,17 @@ func (m *Manager) SetRuleManager(s storepb.PartialResponseStrategy, mgr *rules.M func (m *Manager) RuleGroups() []Group { m.mtx.RLock() defer m.mtx.RUnlock() - var res []Group + var groups []Group for s, r := range m.mgrs { for _, group := range r.RuleGroups() { - res = append(res, Group{ + groups = append(groups, Group{ Group: group, PartialResponseStrategy: s, originalFile: m.ruleFiles[group.File()], }) } } - return res + return groups } func (m *Manager) AlertingRules() []AlertingRule { @@ -216,6 +216,21 @@ func (m *Manager) Update(evalInterval time.Duration, files []string) error { continue } } + + // Removes the rules from a manager when a strategy has no more rule. + for s, mgr := range m.mgrs { + if _, ok := filesByStrategy[s]; ok { + continue + } + + if len(mgr.RuleGroups()) == 0 { + continue + } + + if err := mgr.Update(evalInterval, []string{}, nil); err != nil { + errs = append(errs, err) + } + } m.ruleFiles = ruleFiles m.mtx.Unlock() diff --git a/pkg/rule/rule_test.go b/pkg/rule/rule_test.go index d238db10d48..7c503efd6e9 100644 --- a/pkg/rule/rule_test.go +++ b/pkg/rule/rule_test.go @@ -66,14 +66,17 @@ groups: Appendable: nopAppendable{}, } thanosRuleMgr := NewManager(dir) - ruleMgr := rules.NewManager(&opts) - thanosRuleMgr.SetRuleManager(storepb.PartialResponseStrategy_ABORT, ruleMgr) - thanosRuleMgr.SetRuleManager(storepb.PartialResponseStrategy_WARN, ruleMgr) + ruleMgrAbort := rules.NewManager(&opts) + ruleMgrWarn := rules.NewManager(&opts) + thanosRuleMgr.SetRuleManager(storepb.PartialResponseStrategy_ABORT, ruleMgrAbort) + thanosRuleMgr.SetRuleManager(storepb.PartialResponseStrategy_WARN, ruleMgrWarn) - testutil.Ok(t, thanosRuleMgr.Update(10*time.Second, []string{filepath.Join(dir, "rule.yaml")})) + ruleMgrAbort.Run() + ruleMgrWarn.Run() + defer ruleMgrAbort.Stop() + defer ruleMgrWarn.Stop() - ruleMgr.Run() - defer ruleMgr.Stop() + testutil.Ok(t, thanosRuleMgr.Update(10*time.Second, []string{filepath.Join(dir, "rule.yaml")})) select { case <-time.After(2 * time.Minute): @@ -225,6 +228,44 @@ groups: } } +func TestUpdateAfterClear(t *testing.T) { + dir, err := ioutil.TempDir("", "test_rule_rule_groups") + testutil.Ok(t, err) + defer func() { testutil.Ok(t, os.RemoveAll(dir)) }() + + testutil.Ok(t, ioutil.WriteFile(filepath.Join(dir, "no_strategy.yaml"), []byte(` +groups: +- name: "something1" + rules: + - alert: "some" + expr: "up" +`), os.ModePerm)) + + opts := rules.ManagerOptions{ + Logger: log.NewLogfmtLogger(os.Stderr), + } + m := NewManager(dir) + ruleMgrAbort := rules.NewManager(&opts) + ruleMgrWarn := rules.NewManager(&opts) + m.SetRuleManager(storepb.PartialResponseStrategy_ABORT, ruleMgrAbort) + m.SetRuleManager(storepb.PartialResponseStrategy_WARN, ruleMgrWarn) + + ruleMgrAbort.Run() + ruleMgrWarn.Run() + defer ruleMgrAbort.Stop() + defer ruleMgrWarn.Stop() + + err = m.Update(1*time.Second, []string{ + filepath.Join(dir, "no_strategy.yaml"), + }) + testutil.Ok(t, err) + testutil.Equals(t, 1, len(m.RuleGroups())) + + err = m.Update(1*time.Second, []string{}) + testutil.Ok(t, err) + testutil.Equals(t, 0, len(m.RuleGroups())) +} + func TestRuleGroupMarshalYAML(t *testing.T) { const expected = `groups: - name: something1 From 11c75aeb908fd1b680cf4ec480100f2976acc0e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Krupa?= Date: Mon, 18 May 2020 07:38:31 +0200 Subject: [PATCH 188/190] Mixins: Align schema with other mixins (#2619) * mixin/thanos: align mixin schema with other mixins - promote default.libsonnet to main config file - include config.libsonnet in mixin.libsonnet - include jsonnetfile.json - allow generating directly from mixin/thanos directory Signed-off-by: paulfantom * mixin: move one directory higher Signed-off-by: paulfantom --- Makefile | 13 ++++++------- mixin/{thanos => }/README.md | 4 ++-- mixin/alerts.jsonnet | 3 +++ mixin/{thanos => }/alerts/absent.libsonnet | 0 mixin/{thanos => }/alerts/alerts.libsonnet | 0 .../{thanos => }/alerts/bucket_replicate.libsonnet | 0 mixin/{thanos => }/alerts/compact.libsonnet | 0 mixin/{thanos => }/alerts/query.libsonnet | 0 mixin/{thanos => }/alerts/receive.libsonnet | 0 mixin/{thanos => }/alerts/rule.libsonnet | 0 mixin/{thanos => }/alerts/sidecar.libsonnet | 0 mixin/{thanos => }/alerts/store.libsonnet | 0 .../{thanos/defaults.libsonnet => config.libsonnet} | 0 mixin/dashboards.jsonnet | 9 +++++++++ .../dashboards/bucket_replicate.libsonnet | 0 mixin/{thanos => }/dashboards/compact.libsonnet | 0 mixin/{thanos => }/dashboards/dashboards.libsonnet | 0 mixin/{thanos => }/dashboards/defaults.libsonnet | 0 mixin/{thanos => }/dashboards/overview.libsonnet | 0 mixin/{thanos => }/dashboards/query.libsonnet | 0 mixin/{thanos => }/dashboards/receive.libsonnet | 0 mixin/{thanos => }/dashboards/rule.libsonnet | 0 mixin/{thanos => }/dashboards/sidecar.libsonnet | 0 mixin/{thanos => }/dashboards/store.libsonnet | 0 mixin/jsonnetfile.json | 9 --------- mixin/jsonnetfile.lock.json | 9 --------- .../lib/thanos-grafana-builder/README.md | 0 .../lib/thanos-grafana-builder/builder.libsonnet | 0 .../lib/thanos-grafana-builder/grpc.libsonnet | 0 .../lib/thanos-grafana-builder/http.libsonnet | 0 .../lib/thanos-grafana-builder/slo.libsonnet | 0 mixin/{thanos => }/mixin.libsonnet | 3 ++- mixin/rules.jsonnet | 3 +++ mixin/{thanos => }/rules/bucket_replicate.libsonnet | 0 mixin/{thanos => }/rules/query.libsonnet | 0 mixin/{thanos => }/rules/receive.libsonnet | 0 mixin/{thanos => }/rules/rules.libsonnet | 0 mixin/{thanos => }/rules/store.libsonnet | 0 mixin/separated_alerts.jsonnet | 7 +++++++ mixin/thanos/alerts.jsonnet | 4 ---- mixin/thanos/dashboards.jsonnet | 9 --------- mixin/thanos/rules.jsonnet | 4 ---- mixin/thanos/separated_alerts.jsonnet | 7 ------- 43 files changed, 32 insertions(+), 52 deletions(-) rename mixin/{thanos => }/README.md (97%) create mode 100644 mixin/alerts.jsonnet rename mixin/{thanos => }/alerts/absent.libsonnet (100%) rename mixin/{thanos => }/alerts/alerts.libsonnet (100%) rename mixin/{thanos => }/alerts/bucket_replicate.libsonnet (100%) rename mixin/{thanos => }/alerts/compact.libsonnet (100%) rename mixin/{thanos => }/alerts/query.libsonnet (100%) rename mixin/{thanos => }/alerts/receive.libsonnet (100%) rename mixin/{thanos => }/alerts/rule.libsonnet (100%) rename mixin/{thanos => }/alerts/sidecar.libsonnet (100%) rename mixin/{thanos => }/alerts/store.libsonnet (100%) rename mixin/{thanos/defaults.libsonnet => config.libsonnet} (100%) create mode 100644 mixin/dashboards.jsonnet rename mixin/{thanos => }/dashboards/bucket_replicate.libsonnet (100%) rename mixin/{thanos => }/dashboards/compact.libsonnet (100%) rename mixin/{thanos => }/dashboards/dashboards.libsonnet (100%) rename mixin/{thanos => }/dashboards/defaults.libsonnet (100%) rename mixin/{thanos => }/dashboards/overview.libsonnet (100%) rename mixin/{thanos => }/dashboards/query.libsonnet (100%) rename mixin/{thanos => }/dashboards/receive.libsonnet (100%) rename mixin/{thanos => }/dashboards/rule.libsonnet (100%) rename mixin/{thanos => }/dashboards/sidecar.libsonnet (100%) rename mixin/{thanos => }/dashboards/store.libsonnet (100%) rename mixin/{thanos => }/lib/thanos-grafana-builder/README.md (100%) rename mixin/{thanos => }/lib/thanos-grafana-builder/builder.libsonnet (100%) rename mixin/{thanos => }/lib/thanos-grafana-builder/grpc.libsonnet (100%) rename mixin/{thanos => }/lib/thanos-grafana-builder/http.libsonnet (100%) rename mixin/{thanos => }/lib/thanos-grafana-builder/slo.libsonnet (100%) rename mixin/{thanos => }/mixin.libsonnet (56%) create mode 100644 mixin/rules.jsonnet rename mixin/{thanos => }/rules/bucket_replicate.libsonnet (100%) rename mixin/{thanos => }/rules/query.libsonnet (100%) rename mixin/{thanos => }/rules/receive.libsonnet (100%) rename mixin/{thanos => }/rules/rules.libsonnet (100%) rename mixin/{thanos => }/rules/store.libsonnet (100%) create mode 100644 mixin/separated_alerts.jsonnet delete mode 100644 mixin/thanos/alerts.jsonnet delete mode 100644 mixin/thanos/dashboards.jsonnet delete mode 100644 mixin/thanos/rules.jsonnet delete mode 100644 mixin/thanos/separated_alerts.jsonnet diff --git a/Makefile b/Makefile index 7ca3472902e..a9deed30417 100644 --- a/Makefile +++ b/Makefile @@ -58,8 +58,7 @@ PROMTOOL ?= $(GOBIN)/promtool-$(PROMTOOL_VERSION) # systems gsed won't be installed, so will use sed as expected. SED ?= $(shell which gsed 2>/dev/null || which sed) -MIXIN_ROOT ?= mixin -THANOS_MIXIN ?= mixin/thanos +THANOS_MIXIN ?= mixin JSONNET_VENDOR_DIR ?= mixin/vendor WEB_DIR ?= website @@ -404,20 +403,20 @@ examples/tmp: $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/tmp/ ${THANOS_MIXIN}/separated_alerts.jsonnet | xargs -I{} sh -c 'cat {} | $(GOJSONTOYAML) > {}.yaml; rm -f {}' -- {} .PHONY: examples/dashboards # to keep examples/dashboards/dashboards.md. -examples/dashboards: $(JSONNET) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/dashboards/* +examples/dashboards: $(JSONNET) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/config.libsonnet ${THANOS_MIXIN}/dashboards/* -rm -rf examples/dashboards/*.json $(JSONNET) -J ${JSONNET_VENDOR_DIR} -m examples/dashboards ${THANOS_MIXIN}/dashboards.jsonnet -examples/alerts/alerts.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/alerts/* +examples/alerts/alerts.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/config.libsonnet ${THANOS_MIXIN}/alerts/* $(JSONNET) ${THANOS_MIXIN}/alerts.jsonnet | $(GOJSONTOYAML) > $@ -examples/alerts/rules.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/defaults.libsonnet ${THANOS_MIXIN}/rules/* +examples/alerts/rules.yaml: $(JSONNET) $(GOJSONTOYAML) ${THANOS_MIXIN}/mixin.libsonnet ${THANOS_MIXIN}/config.libsonnet ${THANOS_MIXIN}/rules/* $(JSONNET) ${THANOS_MIXIN}/rules.jsonnet | $(GOJSONTOYAML) > $@ .PHONY: jsonnet-vendor -jsonnet-vendor: $(JSONNET_BUNDLER) $(MIXIN_ROOT)/jsonnetfile.json $(MIXIN_ROOT)/jsonnetfile.lock.json +jsonnet-vendor: $(JSONNET_BUNDLER) $(THANOS_MIXIN)/jsonnetfile.json $(THANOS_MIXIN)/jsonnetfile.lock.json rm -rf ${JSONNET_VENDOR_DIR} - cd ${MIXIN_ROOT} && $(JSONNET_BUNDLER) install + cd ${THANOS_MIXIN} && $(JSONNET_BUNDLER) install JSONNETFMT_CMD := $(JSONNETFMT) -n 2 --max-blank-lines 2 --string-style s --comment-style s diff --git a/mixin/thanos/README.md b/mixin/README.md similarity index 97% rename from mixin/thanos/README.md rename to mixin/README.md index 7f35050e507..64eb5523fdd 100644 --- a/mixin/thanos/README.md +++ b/mixin/README.md @@ -54,9 +54,9 @@ $ jb update #### Configure -This project is intended to be used as a library. You can extend and customize dashboards and alerting rules by creating for own generators, such as the generators ([alerts.jsonnet](alerts.jsonnet) and [dashboards.jsonnet](dashboards.jsonnet)) that are use to create [examples](../../examples). Default parameters are collected in [defaults.libsonnet](defaults.libsonnet), feel free to modify and generate your own definitons. +This project is intended to be used as a library. You can extend and customize dashboards and alerting rules by creating for own generators, such as the generators ([alerts.jsonnet](alerts.jsonnet) and [dashboards.jsonnet](dashboards.jsonnet)) that are use to create [examples](../../examples). Default parameters are collected in [config.libsonnet](config.libsonnet), feel free to modify and generate your own definitons. -[embedmd]:# (defaults.libsonnet) +[embedmd]:# (config.libsonnet) ```libsonnet { query+:: { diff --git a/mixin/alerts.jsonnet b/mixin/alerts.jsonnet new file mode 100644 index 00000000000..23f4afea684 --- /dev/null +++ b/mixin/alerts.jsonnet @@ -0,0 +1,3 @@ +( + import 'mixin.libsonnet' +).prometheusAlerts diff --git a/mixin/thanos/alerts/absent.libsonnet b/mixin/alerts/absent.libsonnet similarity index 100% rename from mixin/thanos/alerts/absent.libsonnet rename to mixin/alerts/absent.libsonnet diff --git a/mixin/thanos/alerts/alerts.libsonnet b/mixin/alerts/alerts.libsonnet similarity index 100% rename from mixin/thanos/alerts/alerts.libsonnet rename to mixin/alerts/alerts.libsonnet diff --git a/mixin/thanos/alerts/bucket_replicate.libsonnet b/mixin/alerts/bucket_replicate.libsonnet similarity index 100% rename from mixin/thanos/alerts/bucket_replicate.libsonnet rename to mixin/alerts/bucket_replicate.libsonnet diff --git a/mixin/thanos/alerts/compact.libsonnet b/mixin/alerts/compact.libsonnet similarity index 100% rename from mixin/thanos/alerts/compact.libsonnet rename to mixin/alerts/compact.libsonnet diff --git a/mixin/thanos/alerts/query.libsonnet b/mixin/alerts/query.libsonnet similarity index 100% rename from mixin/thanos/alerts/query.libsonnet rename to mixin/alerts/query.libsonnet diff --git a/mixin/thanos/alerts/receive.libsonnet b/mixin/alerts/receive.libsonnet similarity index 100% rename from mixin/thanos/alerts/receive.libsonnet rename to mixin/alerts/receive.libsonnet diff --git a/mixin/thanos/alerts/rule.libsonnet b/mixin/alerts/rule.libsonnet similarity index 100% rename from mixin/thanos/alerts/rule.libsonnet rename to mixin/alerts/rule.libsonnet diff --git a/mixin/thanos/alerts/sidecar.libsonnet b/mixin/alerts/sidecar.libsonnet similarity index 100% rename from mixin/thanos/alerts/sidecar.libsonnet rename to mixin/alerts/sidecar.libsonnet diff --git a/mixin/thanos/alerts/store.libsonnet b/mixin/alerts/store.libsonnet similarity index 100% rename from mixin/thanos/alerts/store.libsonnet rename to mixin/alerts/store.libsonnet diff --git a/mixin/thanos/defaults.libsonnet b/mixin/config.libsonnet similarity index 100% rename from mixin/thanos/defaults.libsonnet rename to mixin/config.libsonnet diff --git a/mixin/dashboards.jsonnet b/mixin/dashboards.jsonnet new file mode 100644 index 00000000000..94353a6c150 --- /dev/null +++ b/mixin/dashboards.jsonnet @@ -0,0 +1,9 @@ +local dashboards = + ( + import 'mixin.libsonnet' + ).grafanaDashboards; + +{ + [name]: dashboards[name] + for name in std.objectFields(dashboards) +} diff --git a/mixin/thanos/dashboards/bucket_replicate.libsonnet b/mixin/dashboards/bucket_replicate.libsonnet similarity index 100% rename from mixin/thanos/dashboards/bucket_replicate.libsonnet rename to mixin/dashboards/bucket_replicate.libsonnet diff --git a/mixin/thanos/dashboards/compact.libsonnet b/mixin/dashboards/compact.libsonnet similarity index 100% rename from mixin/thanos/dashboards/compact.libsonnet rename to mixin/dashboards/compact.libsonnet diff --git a/mixin/thanos/dashboards/dashboards.libsonnet b/mixin/dashboards/dashboards.libsonnet similarity index 100% rename from mixin/thanos/dashboards/dashboards.libsonnet rename to mixin/dashboards/dashboards.libsonnet diff --git a/mixin/thanos/dashboards/defaults.libsonnet b/mixin/dashboards/defaults.libsonnet similarity index 100% rename from mixin/thanos/dashboards/defaults.libsonnet rename to mixin/dashboards/defaults.libsonnet diff --git a/mixin/thanos/dashboards/overview.libsonnet b/mixin/dashboards/overview.libsonnet similarity index 100% rename from mixin/thanos/dashboards/overview.libsonnet rename to mixin/dashboards/overview.libsonnet diff --git a/mixin/thanos/dashboards/query.libsonnet b/mixin/dashboards/query.libsonnet similarity index 100% rename from mixin/thanos/dashboards/query.libsonnet rename to mixin/dashboards/query.libsonnet diff --git a/mixin/thanos/dashboards/receive.libsonnet b/mixin/dashboards/receive.libsonnet similarity index 100% rename from mixin/thanos/dashboards/receive.libsonnet rename to mixin/dashboards/receive.libsonnet diff --git a/mixin/thanos/dashboards/rule.libsonnet b/mixin/dashboards/rule.libsonnet similarity index 100% rename from mixin/thanos/dashboards/rule.libsonnet rename to mixin/dashboards/rule.libsonnet diff --git a/mixin/thanos/dashboards/sidecar.libsonnet b/mixin/dashboards/sidecar.libsonnet similarity index 100% rename from mixin/thanos/dashboards/sidecar.libsonnet rename to mixin/dashboards/sidecar.libsonnet diff --git a/mixin/thanos/dashboards/store.libsonnet b/mixin/dashboards/store.libsonnet similarity index 100% rename from mixin/thanos/dashboards/store.libsonnet rename to mixin/dashboards/store.libsonnet diff --git a/mixin/jsonnetfile.json b/mixin/jsonnetfile.json index 8f8d9d3559d..45189debbfd 100644 --- a/mixin/jsonnetfile.json +++ b/mixin/jsonnetfile.json @@ -17,15 +17,6 @@ } }, "version": "master" - }, - { - "source": { - "local": { - "directory": "thanos" - } - }, - "version": ".", - "name": "thanos-mixin" } ], "legacyImports": true diff --git a/mixin/jsonnetfile.lock.json b/mixin/jsonnetfile.lock.json index f2a1581a484..403c88e68a5 100644 --- a/mixin/jsonnetfile.lock.json +++ b/mixin/jsonnetfile.lock.json @@ -19,15 +19,6 @@ }, "version": "f4c59f64f80442f871a06c91edf74d014b82acaf", "sum": "ELsYwK+kGdzX1mee2Yy+/b2mdO4Y503BOCDkFzwmGbE=" - }, - { - "source": { - "local": { - "directory": "thanos" - } - }, - "version": "", - "name": "thanos-mixin" } ], "legacyImports": false diff --git a/mixin/thanos/lib/thanos-grafana-builder/README.md b/mixin/lib/thanos-grafana-builder/README.md similarity index 100% rename from mixin/thanos/lib/thanos-grafana-builder/README.md rename to mixin/lib/thanos-grafana-builder/README.md diff --git a/mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet b/mixin/lib/thanos-grafana-builder/builder.libsonnet similarity index 100% rename from mixin/thanos/lib/thanos-grafana-builder/builder.libsonnet rename to mixin/lib/thanos-grafana-builder/builder.libsonnet diff --git a/mixin/thanos/lib/thanos-grafana-builder/grpc.libsonnet b/mixin/lib/thanos-grafana-builder/grpc.libsonnet similarity index 100% rename from mixin/thanos/lib/thanos-grafana-builder/grpc.libsonnet rename to mixin/lib/thanos-grafana-builder/grpc.libsonnet diff --git a/mixin/thanos/lib/thanos-grafana-builder/http.libsonnet b/mixin/lib/thanos-grafana-builder/http.libsonnet similarity index 100% rename from mixin/thanos/lib/thanos-grafana-builder/http.libsonnet rename to mixin/lib/thanos-grafana-builder/http.libsonnet diff --git a/mixin/thanos/lib/thanos-grafana-builder/slo.libsonnet b/mixin/lib/thanos-grafana-builder/slo.libsonnet similarity index 100% rename from mixin/thanos/lib/thanos-grafana-builder/slo.libsonnet rename to mixin/lib/thanos-grafana-builder/slo.libsonnet diff --git a/mixin/thanos/mixin.libsonnet b/mixin/mixin.libsonnet similarity index 56% rename from mixin/thanos/mixin.libsonnet rename to mixin/mixin.libsonnet index 6590c396e44..8aa275ccbbe 100644 --- a/mixin/thanos/mixin.libsonnet +++ b/mixin/mixin.libsonnet @@ -1,3 +1,4 @@ (import 'dashboards/dashboards.libsonnet') + (import 'alerts/alerts.libsonnet') + -(import 'rules/rules.libsonnet') +(import 'rules/rules.libsonnet') + +(import 'config.libsonnet') diff --git a/mixin/rules.jsonnet b/mixin/rules.jsonnet new file mode 100644 index 00000000000..1c9271ab769 --- /dev/null +++ b/mixin/rules.jsonnet @@ -0,0 +1,3 @@ +( + import 'mixin.libsonnet' +).prometheusRules diff --git a/mixin/thanos/rules/bucket_replicate.libsonnet b/mixin/rules/bucket_replicate.libsonnet similarity index 100% rename from mixin/thanos/rules/bucket_replicate.libsonnet rename to mixin/rules/bucket_replicate.libsonnet diff --git a/mixin/thanos/rules/query.libsonnet b/mixin/rules/query.libsonnet similarity index 100% rename from mixin/thanos/rules/query.libsonnet rename to mixin/rules/query.libsonnet diff --git a/mixin/thanos/rules/receive.libsonnet b/mixin/rules/receive.libsonnet similarity index 100% rename from mixin/thanos/rules/receive.libsonnet rename to mixin/rules/receive.libsonnet diff --git a/mixin/thanos/rules/rules.libsonnet b/mixin/rules/rules.libsonnet similarity index 100% rename from mixin/thanos/rules/rules.libsonnet rename to mixin/rules/rules.libsonnet diff --git a/mixin/thanos/rules/store.libsonnet b/mixin/rules/store.libsonnet similarity index 100% rename from mixin/thanos/rules/store.libsonnet rename to mixin/rules/store.libsonnet diff --git a/mixin/separated_alerts.jsonnet b/mixin/separated_alerts.jsonnet new file mode 100644 index 00000000000..329a427bf80 --- /dev/null +++ b/mixin/separated_alerts.jsonnet @@ -0,0 +1,7 @@ +{ + [group.name]: group + for group in + ( + import 'mixin.libsonnet' + ).prometheusAlerts.groups +} diff --git a/mixin/thanos/alerts.jsonnet b/mixin/thanos/alerts.jsonnet deleted file mode 100644 index 574da7f5a63..00000000000 --- a/mixin/thanos/alerts.jsonnet +++ /dev/null @@ -1,4 +0,0 @@ -( - (import 'mixin.libsonnet') + - (import 'defaults.libsonnet') -).prometheusAlerts diff --git a/mixin/thanos/dashboards.jsonnet b/mixin/thanos/dashboards.jsonnet deleted file mode 100644 index a9cd0bbfcfb..00000000000 --- a/mixin/thanos/dashboards.jsonnet +++ /dev/null @@ -1,9 +0,0 @@ -local dashboards = ( - (import 'mixin.libsonnet') + - (import 'defaults.libsonnet') -).grafanaDashboards; - -{ - [name]: dashboards[name] - for name in std.objectFields(dashboards) -} diff --git a/mixin/thanos/rules.jsonnet b/mixin/thanos/rules.jsonnet deleted file mode 100644 index c50930e3b9b..00000000000 --- a/mixin/thanos/rules.jsonnet +++ /dev/null @@ -1,4 +0,0 @@ -( - (import 'mixin.libsonnet') + - (import 'defaults.libsonnet') -).prometheusRules diff --git a/mixin/thanos/separated_alerts.jsonnet b/mixin/thanos/separated_alerts.jsonnet deleted file mode 100644 index 79402a0b3fd..00000000000 --- a/mixin/thanos/separated_alerts.jsonnet +++ /dev/null @@ -1,7 +0,0 @@ -{ - [group.name]: group - for group in ( - (import 'mixin.libsonnet') + - (import 'defaults.libsonnet') - ).prometheusAlerts.groups -} From 6cfcb345d73c56f6bdfbf6b61a6fe8026f44cdb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0tibran=C3=BD?= Date: Mon, 18 May 2020 09:44:09 +0200 Subject: [PATCH 189/190] Documentation and CHANGELOG.md entry for #2579. (#2618) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Documentation and CHANGELOG.md entry for #2579. Signed-off-by: Peter Štibraný * Document hidden option to configure caching bucket, to make it less hidden. Signed-off-by: Peter Štibraný * Removed mention of caching_config. Signed-off-by: Peter Štibraný * Added periods. Signed-off-by: Peter Štibraný --- CHANGELOG.md | 3 ++- docs/components/store.md | 30 ++++++++++++++++++++++-------- 2 files changed, 24 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe32a75fdb..81706604581 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,8 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [#2502](https://github.com/thanos-io/thanos/pull/2502) Added `hints` field to `SeriesResponse`. Hints in an opaque data structure that can be used to carry additional information from the store and its content is implementation specific. - [#2521](https://github.com/thanos-io/thanos/pull/2521) Sidecar: add `thanos_sidecar_reloader_reloads_failed_total`, `thanos_sidecar_reloader_reloads_total`, `thanos_sidecar_reloader_watch_errors_total`, `thanos_sidecar_reloader_watch_events_total` and `thanos_sidecar_reloader_watches` metrics. - [#2412](https://github.com/thanos-io/thanos/pull/2412) ui: add React UI from Prometheus upstream. Currently only accessible from Query component as only `/graph` endpoint is migrated. -- [#2532](https://github.com/thanos-io/thanos/pull/2532) Store: Added hidden option for experimental caching bucket, that can cache chunks into shared memcached. This can speed up querying and reduce number of requests to object storage. +- [#2532](https://github.com/thanos-io/thanos/pull/2532) Store: Added hidden option `--store.caching-bucket.config=` (or `--store.caching-bucket.config-file=`) for experimental caching bucket, that can cache chunks into shared memcached. This can speed up querying and reduce number of requests to object storage. +- [#2579](https://github.com/thanos-io/thanos/pull/2579) Store: Experimental caching bucket can now cache metadata as well. Config has changed from #2532. ### Changed diff --git a/docs/components/store.md b/docs/components/store.md index 9043ee6a35b..66a1ecfafe3 100644 --- a/docs/components/store.md +++ b/docs/components/store.md @@ -280,7 +280,9 @@ While the remaining settings are **optional**: ## Caching Bucket -Thanos Store Gateway supports a "caching bucket" with chunks caching to speed up loading of chunks from TSDB blocks. Currently only memcached "backend" is supported: +Thanos Store Gateway supports a "caching bucket" with chunks and metadata caching to speed up loading of chunks from TSDB blocks. To configure caching, one needs to use `--store.caching-bucket.config=` or `--store.caching-bucket.config-file=`. + +Currently only memcached "backend" is supported: ```yaml backend: memcached @@ -288,23 +290,35 @@ backend_config: addresses: - localhost:11211 -caching_config: - chunk_subrange_size: 16000 - max_chunks_get_range_requests: 3 - chunk_object_size_ttl: 24h - chunk_subrange_ttl: 24h +chunk_subrange_size: 16000 +max_chunks_get_range_requests: 3 +chunk_object_size_ttl: 24h +chunk_subrange_ttl: 24h +blocks_iter_ttl: 5m +metafile_exists_ttl: 2h +metafile_doesnt_exist_ttl: 15m +metafile_content_ttl: 24h +metafile_max_size: 1MiB ``` `backend_config` field for memcached supports all the same configuration as memcached for [index cache](#memcached-index-cache). -`caching_config` is a configuration for chunks cache and supports the following optional settings: +Additional options to configure various aspects of chunks cache are available: - `chunk_subrange_size`: size of segment of chunks object that is stored to the cache. This is the smallest unit that chunks cache is working with. - `max_chunks_get_range_requests`: how many "get range" sub-requests may cache perform to fetch missing subranges. - `chunk_object_size_ttl`: how long to keep information about chunk file length in the cache. - `chunk_subrange_ttl`: how long to keep individual subranges in the cache. -Note that chunks cache is an experimental feature, and these fields may be renamed or removed completely in the future. +Following options are used for metadata caching (meta.json files, deletion mark files, iteration result): + +- `blocks_iter_ttl`: how long to cache result of iterating blocks. +- `metafile_exists_ttl`: how long to cache information about whether meta.json or deletion mark file exists. +- `metafile_doesnt_exist_ttl`: how long to cache information about whether meta.json or deletion mark file doesn't exist. +- `metafile_content_ttl`: how long to cache content of meta.json and deletion mark files. +- `metafile_max_size`: maximum size of cached meta.json and deletion mark file. Larger files are not cached. + +Note that chunks and metadata cache is an experimental feature, and these fields may be renamed or removed completely in the future. ## Index Header From d1ef032b0ce483eebbcb4a593b740252ec765f6f Mon Sep 17 00:00:00 2001 From: Bartlomiej Plotka Date: Mon, 18 May 2020 10:00:30 +0100 Subject: [PATCH 190/190] querier: Adjust deduplication for counters when querying for PromQL rates. (#2548) * querier: Adjust deduplication for counters when querying for PromQL rates. Signed-off-by: Bartlomiej Plotka * Added CHANGELOG.md Signed-off-by: Bartlomiej Plotka * Improved description as suggested by Frederic. Signed-off-by: Bartlomiej Plotka * Moved err adjust to be per replica, not per already deduped value. Signed-off-by: Bartlomiej Plotka --- CHANGELOG.md | 6 +- pkg/compact/downsample/downsample.go | 27 +++-- pkg/compact/downsample/downsample_test.go | 12 +- pkg/query/iter.go | 140 ++++++++++++++++++---- pkg/query/querier.go | 2 +- pkg/query/querier_test.go | 82 +++++++++---- 6 files changed, 202 insertions(+), 67 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81706604581..b9ad0f628b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,9 +14,10 @@ We use *breaking* word for marking changes that are not backward compatible (rel ### Fixed - [#2536](https://github.com/thanos-io/thanos/pull/2536) minio-go: Fixed AWS STS endpoint url to https for Web Identity providers on AWS EKS -- [#2501](https://github.com/thanos-io/thanos/pull/2501) Query: gracefully handle additional fields in `SeriesResponse` protobuf message that may be added in the future. -- [#2568](https://github.com/thanos-io/thanos/pull/2568) Query: does not close the connection of strict, static nodes if establishing a connection had succeeded but Info() call failed +- [#2501](https://github.com/thanos-io/thanos/pull/2501) Query: Gracefully handle additional fields in `SeriesResponse` protobuf message that may be added in the future. +- [#2568](https://github.com/thanos-io/thanos/pull/2568) Query: Does not close the connection of strict, static nodes if establishing a connection had succeeded but Info() call failed - [#2615](https://github.com/thanos-io/thanos/pull/2615) Rule: Fix bugs where rules were out of sync. +- [#2548](https://github.com/thanos-io/thanos/pull/2548) Query: Fixed rare cases of double counter reset accounting when querying `rate` with deduplication enabled. ### Added @@ -33,6 +34,7 @@ We use *breaking* word for marking changes that are not backward compatible (rel - [2513](https://github.com/thanos-io/thanos/pull/2513) Tools: Moved `thanos bucket` commands to `thanos tools bucket`, also moved `thanos check rules` to `thanos tools rules-check`. `thanos tools rules-check` also takes rules by `--rules` repeated flag not argument anymore. +- [#2548](https://github.com/thanos-io/thanos/pull/2548/commits/53e69bd89b2b08c18df298eed7d90cb7179cc0ec) Store, Querier: remove duplicated chunks on StoreAPI. ## [v0.12.2](https://github.com/thanos-io/thanos/releases/tag/v0.12.2) - 2020.04.30 diff --git a/pkg/compact/downsample/downsample.go b/pkg/compact/downsample/downsample.go index d9c7f99f295..b1013ba8d26 100644 --- a/pkg/compact/downsample/downsample.go +++ b/pkg/compact/downsample/downsample.go @@ -348,12 +348,12 @@ func downsampleRawLoop(data []sample, resolution int64, numChunks int) []chunks. ab := newAggrChunkBuilder() - // Encode first raw value; see CounterSeriesIterator. + // Encode first raw value; see ApplyCounterResetsSeriesIterator. ab.apps[AggrCounter].Append(batch[0].t, batch[0].v) lastT := downsampleBatch(batch, resolution, ab.add) - // Encode last raw value; see CounterSeriesIterator. + // Encode last raw value; see ApplyCounterResetsSeriesIterator. ab.apps[AggrCounter].Append(lastT, batch[len(batch)-1].v) chks = append(chks, ab.encode()) @@ -525,7 +525,7 @@ func downsampleAggrBatch(chks []*AggrChunk, buf *[]sample, resolution int64) (ch acs = append(acs, c.Iterator(reuseIt)) } *buf = (*buf)[:0] - it := NewCounterSeriesIterator(acs...) + it := NewApplyCounterResetsIterator(acs...) if err := expandChunkIterator(it, buf); err != nil { return chk, err @@ -538,7 +538,7 @@ func downsampleAggrBatch(chks []*AggrChunk, buf *[]sample, resolution int64) (ch ab.chunks[AggrCounter] = chunkenc.NewXORChunk() ab.apps[AggrCounter], _ = ab.chunks[AggrCounter].Appender() - // Retain first raw value; see CounterSeriesIterator. + // Retain first raw value; see ApplyCounterResetsSeriesIterator. ab.apps[AggrCounter].Append((*buf)[0].t, (*buf)[0].v) lastT := downsampleBatch(*buf, resolution, func(t int64, a *aggregator) { @@ -550,7 +550,7 @@ func downsampleAggrBatch(chks []*AggrChunk, buf *[]sample, resolution int64) (ch ab.apps[AggrCounter].Append(t, a.counter) }) - // Retain last raw value; see CounterSeriesIterator. + // Retain last raw value; see ApplyCounterResetsSeriesIterator. ab.apps[AggrCounter].Append(lastT, it.lastV) ab.mint = mint @@ -563,7 +563,7 @@ type sample struct { v float64 } -// CounterSeriesIterator generates monotonically increasing values by iterating +// ApplyCounterResetsSeriesIterator generates monotonically increasing values by iterating // over an ordered sequence of chunks, which should be raw or aggregated chunks // of counter values. The generated samples can be used by PromQL functions // like 'rate' that calculate differences between counter values. Stale Markers @@ -580,7 +580,7 @@ type sample struct { // It handles overlapped chunks (removes overlaps). // NOTE: It is important to deduplicate with care ensuring that you don't hit // issue https://github.com/thanos-io/thanos/issues/2401#issuecomment-621958839. -type CounterSeriesIterator struct { +type ApplyCounterResetsSeriesIterator struct { chks []chunkenc.Iterator i int // Current chunk. total int // Total number of processed samples. @@ -589,11 +589,11 @@ type CounterSeriesIterator struct { totalV float64 // Total counter state since beginning of series. } -func NewCounterSeriesIterator(chks ...chunkenc.Iterator) *CounterSeriesIterator { - return &CounterSeriesIterator{chks: chks} +func NewApplyCounterResetsIterator(chks ...chunkenc.Iterator) *ApplyCounterResetsSeriesIterator { + return &ApplyCounterResetsSeriesIterator{chks: chks} } -func (it *CounterSeriesIterator) Next() bool { +func (it *ApplyCounterResetsSeriesIterator) Next() bool { for { if it.i >= len(it.chks) { return false @@ -637,11 +637,12 @@ func (it *CounterSeriesIterator) Next() bool { } } -func (it *CounterSeriesIterator) At() (t int64, v float64) { +func (it *ApplyCounterResetsSeriesIterator) At() (t int64, v float64) { return it.lastT, it.totalV } -func (it *CounterSeriesIterator) Seek(x int64) bool { +func (it *ApplyCounterResetsSeriesIterator) Seek(x int64) bool { + // Don't use underlying Seek, but iterate over next to not miss counter resets. for { if t, _ := it.At(); t >= x { return true @@ -654,7 +655,7 @@ func (it *CounterSeriesIterator) Seek(x int64) bool { } } -func (it *CounterSeriesIterator) Err() error { +func (it *ApplyCounterResetsSeriesIterator) Err() error { if it.i >= len(it.chks) { return nil } diff --git a/pkg/compact/downsample/downsample_test.go b/pkg/compact/downsample/downsample_test.go index 049765faa5d..47fe161a9af 100644 --- a/pkg/compact/downsample/downsample_test.go +++ b/pkg/compact/downsample/downsample_test.go @@ -60,7 +60,7 @@ func TestDownsampleCounterBoundaryReset(t *testing.T) { iters = append(iters, chk.Iterator(nil)) } - citer := NewCounterSeriesIterator(iters...) + citer := NewApplyCounterResetsIterator(iters...) for citer.Next() { t, v := citer.At() res = append(res, sample{t: t, v: v}) @@ -592,7 +592,7 @@ var ( } ) -func TestCounterAggegationIterator(t *testing.T) { +func TestApplyCounterResetsIterator(t *testing.T) { defer leaktest.CheckTimeout(t, 10*time.Second)() for _, tcase := range []struct { @@ -657,7 +657,7 @@ func TestCounterAggegationIterator(t *testing.T) { its = append(its, newSampleIterator(c)) } - x := NewCounterSeriesIterator(its...) + x := NewApplyCounterResetsIterator(its...) var res []sample for x.Next() { @@ -691,7 +691,7 @@ func TestCounterSeriesIteratorSeek(t *testing.T) { } var res []sample - x := NewCounterSeriesIterator(its...) + x := NewApplyCounterResetsIterator(its...) ok := x.Seek(150) testutil.Assert(t, ok, "Seek should return true") @@ -718,7 +718,7 @@ func TestCounterSeriesIteratorSeekExtendTs(t *testing.T) { its = append(its, newSampleIterator(c)) } - x := NewCounterSeriesIterator(its...) + x := NewApplyCounterResetsIterator(its...) ok := x.Seek(500) testutil.Assert(t, !ok, "Seek should return false") @@ -738,7 +738,7 @@ func TestCounterSeriesIteratorSeekAfterNext(t *testing.T) { } var res []sample - x := NewCounterSeriesIterator(its...) + x := NewApplyCounterResetsIterator(its...) x.Next() diff --git a/pkg/query/iter.go b/pkg/query/iter.go index 0067d08a3cb..1ed3534ea78 100644 --- a/pkg/query/iter.go +++ b/pkg/query/iter.go @@ -210,7 +210,7 @@ func (s *chunkSeries) Iterator() storage.SeriesIterator { for _, c := range s.chunks { its = append(its, getFirstIterator(c.Counter, c.Raw)) } - sit = downsample.NewCounterSeriesIterator(its...) + sit = downsample.NewApplyCounterResetsIterator(its...) default: return errSeriesIterator{err: errors.Errorf("unexpected result aggregate type %v", s.aggrs)} } @@ -376,6 +376,7 @@ func (it *chunkSeriesIterator) Err() error { type dedupSeriesSet struct { set storage.SeriesSet replicaLabels map[string]struct{} + isCounter bool replicas []storage.Series lset labels.Labels @@ -383,8 +384,8 @@ type dedupSeriesSet struct { ok bool } -func newDedupSeriesSet(set storage.SeriesSet, replicaLabels map[string]struct{}) storage.SeriesSet { - s := &dedupSeriesSet{set: set, replicaLabels: replicaLabels} +func newDedupSeriesSet(set storage.SeriesSet, replicaLabels map[string]struct{}, isCounter bool) storage.SeriesSet { + s := &dedupSeriesSet{set: set, replicaLabels: replicaLabels, isCounter: isCounter} s.ok = s.set.Next() if s.ok { s.peek = s.set.At() @@ -447,7 +448,7 @@ func (s *dedupSeriesSet) At() storage.Series { // Clients may store the series, so we must make a copy of the slice before advancing. repl := make([]storage.Series, len(s.replicas)) copy(repl, s.replicas) - return newDedupSeries(s.lset, repl...) + return newDedupSeries(s.lset, repl, s.isCounter) } func (s *dedupSeriesSet) Err() error { @@ -464,44 +465,130 @@ func (s seriesWithLabels) Labels() labels.Labels { return s.lset } type dedupSeries struct { lset labels.Labels replicas []storage.Series + + isCounter bool } -func newDedupSeries(lset labels.Labels, replicas ...storage.Series) *dedupSeries { - return &dedupSeries{lset: lset, replicas: replicas} +func newDedupSeries(lset labels.Labels, replicas []storage.Series, isCounter bool) *dedupSeries { + return &dedupSeries{lset: lset, isCounter: isCounter, replicas: replicas} } func (s *dedupSeries) Labels() labels.Labels { return s.lset } -func (s *dedupSeries) Iterator() (it storage.SeriesIterator) { - it = s.replicas[0].Iterator() +func (s *dedupSeries) Iterator() storage.SeriesIterator { + var it adjustableSeriesIterator + if s.isCounter { + it = &counterErrAdjustSeriesIterator{SeriesIterator: s.replicas[0].Iterator()} + } else { + it = noopAdjustableSeriesIterator{SeriesIterator: s.replicas[0].Iterator()} + } + for _, o := range s.replicas[1:] { - it = newDedupSeriesIterator(it, o.Iterator()) + var replicaIter adjustableSeriesIterator + if s.isCounter { + replicaIter = &counterErrAdjustSeriesIterator{SeriesIterator: o.Iterator()} + } else { + replicaIter = noopAdjustableSeriesIterator{SeriesIterator: o.Iterator()} + } + it = newDedupSeriesIterator(it, replicaIter) } return it } +// adjustableSeriesIterator iterates over the data of a time series and allows to adjust current value based on +// given lastValue iterated. +type adjustableSeriesIterator interface { + storage.SeriesIterator + + // adjustAtValue allows to adjust value by implementation if needed knowing the last value. This is used by counter + // implementation which can adjust for obsolete counter value. + adjustAtValue(lastValue float64) +} + +type noopAdjustableSeriesIterator struct { + storage.SeriesIterator +} + +func (it noopAdjustableSeriesIterator) adjustAtValue(float64) {} + +// counterErrAdjustSeriesIterator is extendedSeriesIterator used when we deduplicate counter. +// It makes sure we always adjust for the latest seen last counter value for all replicas. +// Let's consider following example: +// +// Replica 1 counter scrapes: 20 30 40 Nan - 0 5 +// Replica 2 counter scrapes: 25 35 45 Nan - 2 +// +// Now for downsampling purposes we are accounting the resets so our replicas before going to dedup iterator looks like this: +// +// Replica 1 counter total: 20 30 40 - - 40 45 +// Replica 2 counter total: 25 35 45 - - 47 +// +// Now if at any point we will switch our focus from replica 2 to replica 1 we will experience lower value than previous, +// which will trigger false positive counter reset in PromQL. +// +// We mitigate this by taking allowing invoking AdjustAtValue which adjust the value in case of last value being larger than current at. +// (Counter cannot go down) +// +// This is to mitigate https://github.com/thanos-io/thanos/issues/2401. +// TODO(bwplotka): Find better deduplication algorithm that does not require knowledge if the given +// series is counter or not: https://github.com/thanos-io/thanos/issues/2547. +type counterErrAdjustSeriesIterator struct { + storage.SeriesIterator + + errAdjust float64 +} + +func (it *counterErrAdjustSeriesIterator) adjustAtValue(lastValue float64) { + _, v := it.At() + if lastValue > v { + // This replica has obsolete value (did not see the correct "end" of counter value before app restart). Adjust. + it.errAdjust += lastValue - v + } +} + +func (it *counterErrAdjustSeriesIterator) At() (int64, float64) { + t, v := it.SeriesIterator.At() + return t, v + it.errAdjust +} + type dedupSeriesIterator struct { - a, b storage.SeriesIterator + a, b adjustableSeriesIterator + + aok, bok bool + + // TODO(bwplotka): Don't base on LastT, but on detected scrape interval. This will allow us to be more + // responsive to gaps: https://github.com/thanos-io/thanos/issues/981, let's do it in next PR. + lastT int64 + lastV float64 - aok, bok bool - lastT int64 penA, penB int64 useA bool } -func newDedupSeriesIterator(a, b storage.SeriesIterator) *dedupSeriesIterator { +func newDedupSeriesIterator(a, b adjustableSeriesIterator) *dedupSeriesIterator { return &dedupSeriesIterator{ a: a, b: b, lastT: math.MinInt64, + lastV: float64(math.MinInt64), aok: a.Next(), bok: b.Next(), } } func (it *dedupSeriesIterator) Next() bool { + lastValue := it.lastV + lastUseA := it.useA + defer func() { + if it.useA != lastUseA { + // We switched replicas. + // Ensure values are correct bases on value before At. + it.adjustAtValue(lastValue) + } + }() + // Advance both iterators to at least the next highest timestamp plus the potential penalty. if it.aok { it.aok = it.a.Seek(it.lastT + 1 + it.penA) @@ -509,18 +596,19 @@ func (it *dedupSeriesIterator) Next() bool { if it.bok { it.bok = it.b.Seek(it.lastT + 1 + it.penB) } + // Handle basic cases where one iterator is exhausted before the other. if !it.aok { it.useA = false if it.bok { - it.lastT, _ = it.b.At() + it.lastT, it.lastV = it.b.At() it.penB = 0 } return it.bok } if !it.bok { it.useA = true - it.lastT, _ = it.a.At() + it.lastT, it.lastV = it.a.At() it.penA = 0 return true } @@ -528,8 +616,8 @@ func (it *dedupSeriesIterator) Next() bool { // with the smaller timestamp. // The applied penalty potentially already skipped potential samples already // that would have resulted in exaggerated sampling frequency. - ta, _ := it.a.At() - tb, _ := it.b.At() + ta, va := it.a.At() + tb, vb := it.b.At() it.useA = ta <= tb @@ -540,29 +628,41 @@ func (it *dedupSeriesIterator) Next() bool { // timestamp assignment. // If we don't know a delta yet, we pick 5000 as a constant, which is based on the knowledge // that timestamps are in milliseconds and sampling frequencies typically multiple seconds long. - const initialPenality = 5000 + const initialPenalty = 5000 if it.useA { if it.lastT != math.MinInt64 { it.penB = 2 * (ta - it.lastT) } else { - it.penB = initialPenality + it.penB = initialPenalty } it.penA = 0 it.lastT = ta + it.lastV = va return true } if it.lastT != math.MinInt64 { it.penA = 2 * (tb - it.lastT) } else { - it.penA = initialPenality + it.penA = initialPenalty } it.penB = 0 it.lastT = tb + it.lastV = vb return true } +func (it *dedupSeriesIterator) adjustAtValue(lastValue float64) { + if it.aok { + it.a.adjustAtValue(lastValue) + } + if it.bok { + it.b.adjustAtValue(lastValue) + } +} + func (it *dedupSeriesIterator) Seek(t int64) bool { + // Don't use underlying Seek, but iterate over next to not miss gaps. for { ts, _ := it.At() if ts > 0 && ts >= t { diff --git a/pkg/query/querier.go b/pkg/query/querier.go index 791232597d6..e437440ed76 100644 --- a/pkg/query/querier.go +++ b/pkg/query/querier.go @@ -228,7 +228,7 @@ func (q *querier) Select(params *storage.SelectParams, ms ...*labels.Matcher) (s // The merged series set assembles all potentially-overlapping time ranges // of the same series into a single one. The series are ordered so that equal series // from different replicas are sequential. We can now deduplicate those. - return newDedupSeriesSet(set, q.replicaLabels), warns, nil + return newDedupSeriesSet(set, q.replicaLabels, len(aggrs) == 1 && aggrs[0] == storepb.Aggr_COUNTER), warns, nil } // sortDedupLabels re-sorts the set so that the same series with different replica diff --git a/pkg/query/querier_test.go b/pkg/query/querier_test.go index 98402d49f58..7b49aaec7eb 100644 --- a/pkg/query/querier_test.go +++ b/pkg/query/querier_test.go @@ -274,13 +274,13 @@ var ( {t: 1587691805791, v: 488036}, {t: 1587691820791, v: 488241}, {t: 1587691835791, v: 488411}, {t: 1587691850791, v: 488625}, {t: 1587691865791, v: 488868}, {t: 1587691880791, v: 489005}, {t: 1587691895791, v: 489237}, {t: 1587691910791, v: 489545}, {t: 1587691925791, v: 489750}, {t: 1587691940791, v: 489899}, {t: 1587691955791, v: 490048}, {t: 1587691970791, v: 490364}, {t: 1587691985791, v: 490485}, {t: 1587692000791, v: 490722}, {t: 1587692015791, v: 490866}, {t: 1587692030791, v: 491025}, {t: 1587692045791, v: 491286}, {t: 1587692060816, v: 491543}, {t: 1587692075791, v: 491787}, {t: 1587692090791, v: 492065}, {t: 1587692105791, v: 492223}, {t: 1587692120816, v: 492501}, {t: 1587692135791, v: 492767}, {t: 1587692150791, v: 492955}, {t: 1587692165791, v: 493194}, {t: 1587692180792, v: 493402}, {t: 1587692195791, v: 493647}, {t: 1587692210791, v: 493897}, {t: 1587692225791, v: 494117}, {t: 1587692240805, v: 494356}, {t: 1587692255791, v: 494620}, {t: 1587692270791, v: 494762}, {t: 1587692285791, v: 495001}, {t: 1587692300805, v: 495222}, {t: 1587692315791, v: 495393}, {t: 1587692330791, v: 495662}, - {t: 1587692345791, v: 495875}, {t: 1587692360801, v: 496082}, {t: 1587692375791, v: 496196}, {t: 1587692390791, v: 496245}, {t: 1587692405791, v: 496295}, {t: 1587692420791, v: 496365}, {t: 1587692435791, v: 496401}, {t: 1587692450791, v: 496452}, {t: 1587692465791, v: 496491}, {t: 1587692480791, v: 496544}, {t: 1587692542149, v: 496537}, {t: 1587692557139, v: 496633}, - {t: 1587692572139, v: 496844}, {t: 1587692587139, v: 497040}, {t: 1587692602144, v: 497257}, {t: 1587692617139, v: 497522}, {t: 1587692632139, v: 497710}, {t: 1587692647139, v: 497938}, {t: 1587692662154, v: 498172}, {t: 1587692677139, v: 498459}, {t: 1587692692139, v: 498635}, {t: 1587692707139, v: 498832}, {t: 1587692722139, v: 499014}, {t: 1587692737139, v: 499170}, - {t: 1587692752139, v: 499338}, {t: 1587692767139, v: 499511}, {t: 1587692782149, v: 499719}, {t: 1587692797139, v: 499973}, {t: 1587692812139, v: 500189}, {t: 1587692827139, v: 500359}, {t: 1587692842139, v: 500517}, {t: 1587692857139, v: 500727}, {t: 1587692872139, v: 500959}, {t: 1587692887139, v: 501178}, {t: 1587692902139, v: 501246}, {t: 1587692917153, v: 501404}, - {t: 1587692932139, v: 501663}, {t: 1587692947139, v: 501850}, {t: 1587692962139, v: 502103}, {t: 1587692977155, v: 502280}, {t: 1587692992139, v: 502562}, {t: 1587693007139, v: 502742}, {t: 1587693022139, v: 502931}, {t: 1587693037139, v: 503190}, {t: 1587693052139, v: 503428}, {t: 1587693067139, v: 503630}, {t: 1587693082139, v: 503873}, {t: 1587693097139, v: 504027}, - {t: 1587693112139, v: 504179}, {t: 1587693127139, v: 504362}, {t: 1587693142139, v: 504590}, {t: 1587693157139, v: 504741}, {t: 1587693172139, v: 505056}, {t: 1587693187139, v: 505244}, {t: 1587693202139, v: 505436}, {t: 1587693217139, v: 505635}, {t: 1587693232139, v: 505936}, {t: 1587693247155, v: 506088}, {t: 1587693262139, v: 506309}, {t: 1587693277139, v: 506524}, - {t: 1587693292139, v: 506800}, {t: 1587693307139, v: 507010}, {t: 1587693322139, v: 507286}, {t: 1587693337139, v: 507530}, {t: 1587693352139, v: 507781}, {t: 1587693367139, v: 507991}, {t: 1587693382139, v: 508310}, {t: 1587693397139, v: 508570}, {t: 1587693412139, v: 508770}, {t: 1587693427139, v: 508982}, {t: 1587693442163, v: 509274}, {t: 1587693457139, v: 509477}, - {t: 1587693472139, v: 509713}, {t: 1587693487139, v: 509972}, {t: 1587693502139, v: 510182}, {t: 1587693517139, v: 510498}, {t: 1587693532139, v: 510654}, {t: 1587693547139, v: 510859}, {t: 1587693562139, v: 511124}, {t: 1587693577139, v: 511314}, {t: 1587693592139, v: 511488}, + {t: 1587692345791, v: 495875}, {t: 1587692360801, v: 496082}, {t: 1587692375791, v: 496196}, {t: 1587692390791, v: 496245}, {t: 1587692405791, v: 496295}, {t: 1587692420791, v: 496365}, {t: 1587692435791, v: 496401}, {t: 1587692450791, v: 496452}, {t: 1587692465791, v: 496491}, {t: 1587692480791, v: 496544}, {t: 1587692542149, v: 496544}, {t: 1587692557139, v: 496640}, + {t: 1587692572139, v: 496851}, {t: 1587692587139, v: 497047}, {t: 1587692602144, v: 497264}, {t: 1587692617139, v: 497529}, {t: 1587692632139, v: 497717}, {t: 1587692647139, v: 497945}, {t: 1587692662154, v: 498179}, {t: 1587692677139, v: 498466}, {t: 1587692692139, v: 498642}, {t: 1587692707139, v: 498839}, {t: 1587692722139, v: 499021}, {t: 1587692737139, v: 499177}, + {t: 1587692752139, v: 499345}, {t: 1587692767139, v: 499518}, {t: 1587692782149, v: 499726}, {t: 1587692797139, v: 499980}, {t: 1587692812139, v: 500196}, {t: 1587692827139, v: 500366}, {t: 1587692842139, v: 500524}, {t: 1587692857139, v: 500734}, {t: 1587692872139, v: 500966}, {t: 1587692887139, v: 501185}, {t: 1587692902139, v: 501253}, {t: 1587692917153, v: 501411}, + {t: 1587692932139, v: 501670}, {t: 1587692947139, v: 501857}, {t: 1587692962139, v: 502110}, {t: 1587692977155, v: 502287}, {t: 1587692992139, v: 502569}, {t: 1587693007139, v: 502749}, {t: 1587693022139, v: 502938}, {t: 1587693037139, v: 503197}, {t: 1587693052139, v: 503435}, {t: 1587693067139, v: 503637}, {t: 1587693082139, v: 503880}, {t: 1587693097139, v: 504034}, + {t: 1587693112139, v: 504186}, {t: 1587693127139, v: 504369}, {t: 1587693142139, v: 504597}, {t: 1587693157139, v: 504748}, {t: 1587693172139, v: 505063}, {t: 1587693187139, v: 505251}, {t: 1587693202139, v: 505443}, {t: 1587693217139, v: 505642}, {t: 1587693232139, v: 505943}, {t: 1587693247155, v: 506095}, {t: 1587693262139, v: 506316}, {t: 1587693277139, v: 506531}, + {t: 1587693292139, v: 506807}, {t: 1587693307139, v: 507017}, {t: 1587693322139, v: 507293}, {t: 1587693337139, v: 507537}, {t: 1587693352139, v: 507788}, {t: 1587693367139, v: 507998}, {t: 1587693382139, v: 508317}, {t: 1587693397139, v: 508577}, {t: 1587693412139, v: 508777}, {t: 1587693427139, v: 508989}, {t: 1587693442163, v: 509281}, {t: 1587693457139, v: 509484}, + {t: 1587693472139, v: 509720}, {t: 1587693487139, v: 509979}, {t: 1587693502139, v: 510189}, {t: 1587693517139, v: 510505}, {t: 1587693532139, v: 510661}, {t: 1587693547139, v: 510866}, {t: 1587693562139, v: 511131}, {t: 1587693577139, v: 511321}, {t: 1587693592139, v: 511495}, } ) @@ -730,7 +730,6 @@ func TestQuerierWithDedupUnderstoodByPromQL_Rate(t *testing.T) { }) // Regression test against https://github.com/thanos-io/thanos/issues/2401. // Rate + dedup can cause incorrectness. - // TODO(bwplotka): To fix in next PR. t.Run("dedup=true", func(t *testing.T) { expectedLset := labels.FromStrings( "action", "widget.json", "controller", "Projects::MergeRequests::ContentController", "env", "gprd", "environment", @@ -764,8 +763,8 @@ func TestQuerierWithDedupUnderstoodByPromQL_Rate(t *testing.T) { {T: 1587691100000, V: 15.922807017543859}, {T: 1587691200000, V: 15.63157894736842}, {T: 1587691300000, V: 14.982456140350878}, {T: 1587691400000, V: 14.187259188557551}, {T: 1587691500000, V: 13.828070175438594}, {T: 1587691600000, V: 13.971929824561403}, {T: 1587691700000, V: 15.31994329585807}, {T: 1587691800000, V: 14.30877192982456}, {T: 1587691900000, V: 13.915789473684212}, {T: 1587692000000, V: 13.312280701754384}, {T: 1587692100000, V: 14.136842105263158}, {T: 1587692200000, V: 14.39298245614035}, - {T: 1587692300000, V: 15.014035087719297}, {T: 1587692400000, V: 14.112280701754386}, {T: 1587692500000, V: 9.421065148148147}, {T: 1587692600000, V: 1740.491873127187}, // Suddenly unexpected rate spike. - {T: 1587692700000, V: 1742.229734448992}, {T: 1587692800000, V: 11.918703026416258}, {T: 1587692900000, V: 13.75813610765101}, {T: 1587693000000, V: 13.087719298245615}, + {T: 1587692300000, V: 15.014035087719297}, {T: 1587692400000, V: 14.112280701754386}, {T: 1587692500000, V: 9.421065148148147}, {T: 1587692600000, V: 6.3736754978451735}, + {T: 1587692700000, V: 8.19632056099571}, {T: 1587692800000, V: 11.918703026416258}, {T: 1587692900000, V: 13.75813610765101}, {T: 1587693000000, V: 13.087719298245615}, {T: 1587693100000, V: 13.466666666666667}, {T: 1587693200000, V: 14.028070175438595}, {T: 1587693300000, V: 14.23859649122807}, {T: 1587693400000, V: 15.407017543859647}, {T: 1587693500000, V: 15.915789473684208}, {T: 1587693600000, V: 15.712280701754386}, }}, @@ -786,8 +785,8 @@ func TestQuerierWithDedupUnderstoodByPromQL_Rate(t *testing.T) { {Metric: expectedLset, Points: []promql.Point{ {T: 1587691800000, V: 14.464425770308123}, {T: 1587692300000, V: 14.763025210084033}, - {T: 1587692800000, V: 291.105652426067}, // Suddenly unexpected rate spike. - {T: 1587693300000, V: 290.89236811640285}, + {T: 1587692800000, V: 13.143575607888273}, + {T: 1587693300000, V: 12.930291298224086}, }}, }, vec) }) @@ -955,6 +954,7 @@ func TestDedupSeriesSet(t *testing.T) { input []series exp []series dedupLabels map[string]struct{} + isCounter bool }{ { // Single dedup label. @@ -1096,7 +1096,7 @@ func TestDedupSeriesSet(t *testing.T) { // Now, depending on what replica we look, we can see totally different counter value in total where total means // after accounting for counter resets. We account for that in downsample.CounterSeriesIterator, mainly because // we handle downsample Counter Aggregations specially (for detecting resets between chunks). - // TODO(bwplotka): Fix in next PR. + isCounter: true, input: []series{ { lset: labels.Labels{{Name: "replica", Value: "01"}}, @@ -1104,32 +1104,64 @@ func TestDedupSeriesSet(t *testing.T) { {10000, 8.0}, // Smaller timestamp, this will be chosen. CurrValue = 8.0. {20000, 9.0}, // Same. CurrValue = 9.0. // {Gap} app reset. No sample, because stale marker but removed by downsample.CounterSeriesIterator. - {50001, 9 + 1.0}}, // Next after 20000+1 has a bit higher than timestamp then in second series. Penalty 5000 will be added. + {50001, 9 + 1.0}, // Next after 20000+1 has a bit higher than timestamp then in second series. Penalty 5000 will be added. + {60000, 9 + 2.0}, + {70000, 9 + 3.0}, + {80000, 9 + 4.0}, + {90000, 9 + 5.0}, // This should be now taken, and we expect 14 to be correct value now. + {100000, 9 + 6.0}, + }, }, { lset: labels.Labels{{Name: "replica", Value: "02"}}, samples: []sample{ {10001, 8.0}, // Penalty 5000 will be added. // 20001 was app reset. No sample, because stale marker but removed by downsample.CounterSeriesIterator. Penalty 2 * (20000 - 10000) will be added. // 30001 no sample. Within penalty, ignored. - {45001, 8.0 + 0.5}, // Smaller timestamp, this will be chosen. CurrValue = 8.5 which is smaller than last chosen value. + {45001, 8 + 0.5}, // Smaller timestamp, this will be chosen. CurrValue = 8.5 which is smaller than last chosen value. + {55001, 8 + 1.5}, + {65001, 8 + 2.5}, + // {Gap} app reset. No sample, because stale marker but removed by downsample.CounterSeriesIterator. }, }, }, exp: []series{ { - lset: labels.Labels{}, - // Outcome for rate: Double counter reset accounted. - samples: []sample{{10000, 8}, {20000, 9}, {45001, 8.5}}, + lset: labels.Labels{}, + samples: []sample{{10000, 8}, {20000, 9}, {45001, 9}, {55001, 10}, {65001, 11}, {90000, 14}, {100000, 15}}, }, }, dedupLabels: map[string]struct{}{ "replica": {}, }, }, + { + // Same thing but not for counter should not adjust antything. + isCounter: false, + input: []series{ + { + lset: labels.Labels{{Name: "replica", Value: "01"}}, + samples: []sample{ + {10000, 8.0}, {20000, 9.0}, {50001, 9 + 1.0}, {60000, 9 + 2.0}, {70000, 9 + 3.0}, {80000, 9 + 4.0}, {90000, 9 + 5.0}, {100000, 9 + 6.0}, + }, + }, { + lset: labels.Labels{{Name: "replica", Value: "02"}}, + samples: []sample{ + {10001, 8.0}, {45001, 8 + 0.5}, {55001, 8 + 1.5}, {65001, 8 + 2.5}, + }, + }, + }, + exp: []series{ + { + lset: labels.Labels{}, + samples: []sample{{10000, 8}, {20000, 9}, {45001, 8.5}, {55001, 9.5}, {65001, 10.5}, {90000, 14}, {100000, 15}}, + }, + }, + dedupLabels: map[string]struct{}{"replica": {}}, + }, { // Regression test on real data against https://github.com/thanos-io/thanos/issues/2401. // Real data with stale marker after downsample.CounterSeriesIterator (required for downsampling + rate). - // TODO(bwplotka): Fix in next PR. + isCounter: true, input: []series{ { lset: labels.Labels{{Name: "replica", Value: "01"}}, @@ -1199,7 +1231,7 @@ func TestDedupSeriesSet(t *testing.T) { for _, tcase := range tests { t.Run("", func(t *testing.T) { - dedupSet := newDedupSeriesSet(&mockedSeriesSet{series: tcase.input}, tcase.dedupLabels) + dedupSet := newDedupSeriesSet(&mockedSeriesSet{series: tcase.input}, tcase.dedupLabels, tcase.isCounter) var ats []storage.Series for dedupSet.Next() { ats = append(ats, dedupSet.At()) @@ -1254,10 +1286,10 @@ func TestDedupSeriesIterator(t *testing.T) { for i, c := range cases { t.Logf("case %d:", i) it := newDedupSeriesIterator( - newMockedSeriesIterator(c.a), - newMockedSeriesIterator(c.b), + noopAdjustableSeriesIterator{newMockedSeriesIterator(c.a)}, + noopAdjustableSeriesIterator{newMockedSeriesIterator(c.b)}, ) - res := expandSeries(t, it) + res := expandSeries(t, noopAdjustableSeriesIterator{it}) testutil.Equals(t, c.exp, res) } } @@ -1265,8 +1297,8 @@ func TestDedupSeriesIterator(t *testing.T) { func BenchmarkDedupSeriesIterator(b *testing.B) { run := func(b *testing.B, s1, s2 []sample) { it := newDedupSeriesIterator( - newMockedSeriesIterator(s1), - newMockedSeriesIterator(s2), + noopAdjustableSeriesIterator{newMockedSeriesIterator(s1)}, + noopAdjustableSeriesIterator{newMockedSeriesIterator(s2)}, ) b.ResetTimer() var total int64

    o?Si3T=n!MQ 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]^GLzw+U2vms}Nz>+mhDYMZ>IQRu7Rhs{|lTXW{f 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