From 41c8d5bc27dba1686a02eed9aed43346772ba66f Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 13 Jan 2016 16:20:22 -0600 Subject: [PATCH] add unsafe-{chaperone,impersonate}-procedure --- pkgs/base/info.rkt | 2 +- .../scribblings/reference/chaperones.scrbl | 81 +- .../tests/racket/chaperone.rktl | 68 + racket/collects/racket/private/kw.rkt | 124 +- racket/collects/racket/private/pre-base.rkt | 3 + racket/src/racket/src/cstartup.inc | 3145 ++++++++--------- racket/src/racket/src/fun.c | 91 +- racket/src/racket/src/jitcall.c | 16 +- racket/src/racket/src/schminc.h | 2 +- racket/src/racket/src/schnapp.inc | 7 +- racket/src/racket/src/schvers.h | 4 +- racket/src/racket/src/struct.c | 6 +- 12 files changed, 1893 insertions(+), 1656 deletions(-) diff --git a/pkgs/base/info.rkt b/pkgs/base/info.rkt index 6c64727430..cc28d9fa20 100644 --- a/pkgs/base/info.rkt +++ b/pkgs/base/info.rkt @@ -12,7 +12,7 @@ (define collection 'multi) -(define version "6.4.0.1") +(define version "6.4.0.2") (define deps `("racket-lib" ["racket" #:version ,version])) diff --git a/pkgs/racket-doc/scribblings/reference/chaperones.scrbl b/pkgs/racket-doc/scribblings/reference/chaperones.scrbl index 432ecf9e4c..f743989877 100644 --- a/pkgs/racket-doc/scribblings/reference/chaperones.scrbl +++ b/pkgs/racket-doc/scribblings/reference/chaperones.scrbl @@ -310,6 +310,77 @@ that are overridden by further impersonators, for example. @history[#:added "6.1.1.5"]} +@defproc[(unsafe-impersonate-procedure [proc procedure?] + [replacement-proc procedure?] + [prop impersonator-property?] + [prop-val any] ... ...) + (and/c procedure? impersonator?)]{ + Like @racket[impersonate-procedure], except it assumes that @racket[replacement-proc] + is already properly wrapping @racket[proc] and so when the procedure that + @racket[unsafe-impersonate-procedure] produces is invoked, the + @racket[replacement-proc] is invoked directly, ignoring @racket[proc]. + + In addition, it does not specially handle @racket[impersonator-prop:application-mark], + instead just treating it as an ordinary property if it is supplied as one of the + @racket[prop] arguments. + + This procedure is unsafe only in how it assumes @racket[replacement-proc] is + a proper wrapper for @racket[proc]. It otherwise does all of the checking + that @racket[impersonate-procedure] does. + + As an example, this function: + @racketblock[(λ (f) + (unsafe-impersonate-procedure + f + (λ (x) + (if (number? x) + (error 'no-numbers!) + (f x)))))] + is equivalent to this one: + @racketblock[(λ (f) + (impersonate-procedure + f + (λ (x) + (if (number? x) + (error 'no-numbers!) + x))))] + (except that some error messages start with @litchar{unsafe-impersonate-procedure} + instead of @litchar{impersonate-procedure}). + + Similarly the two procedures @racket[_wrap-f1] and + @racket[_wrap-f2] are almost equivalent; they differ only + in the error message produced when their arguments are + functions that return multiple values (and that they update + different global variables). The version using @racket[unsafe-impersonate-procedure] + will signal an error in the @racket[let] expression about multiple + value return, whereas the one using @racket[impersonate-procedure] signals + an error from @racket[impersonate-procedure] about multiple value return. + @racketblock[(define log1-args '()) + (define log1-results '()) + (define wrap-f1 + (λ (f) + (impersonate-procedure + f + (λ (arg) + (set! log1-args (cons arg log1-args)) + (values (λ (res) + (set! log1-results (cons res log1-results)) + res) + arg))))) + + (define log2-args '()) + (define log2-results '()) + (define wrap-f2 + (λ (f) + (unsafe-impersonate-procedure + f + (λ (arg) + (set! log2-args (cons arg log2-args)) + (let ([res (f arg)]) + (set! log2-results (cons res log2-results)) + res)))))] +} + @defproc[(impersonate-struct [v any/c] [struct-type struct-type? _unspecified] @@ -722,6 +793,15 @@ an extra argument as with @racket[impersonate-procedure*]. @history[#:added "6.1.1.5"]} +@defproc[(unsafe-chaperone-procedure [proc procedure?] + [wrapper-proc procedure?] + [prop impersonator-property?] + [prop-val any] ... ...) + (and/c procedure? chaperone?)]{ + Like @racket[unsafe-impersonate-procedure], but creates a @tech{chaperone}. + @history[#:added "6.1.1.5"] +} + @defproc[(chaperone-struct [v any/c] [struct-type struct-type? _unspecified] @@ -783,7 +863,6 @@ or structure type. #:changed "6.1.1.8" @elem{Added optional @racket[struct-type] argument.}]} - @defproc[(chaperone-vector [vec vector?] [ref-proc (vector? exact-nonnegative-integer? any/c . -> . any/c)] [set-proc (vector? exact-nonnegative-integer? any/c . -> . any/c)] diff --git a/pkgs/racket-test-core/tests/racket/chaperone.rktl b/pkgs/racket-test-core/tests/racket/chaperone.rktl index 8275f6468e..0fafe95f72 100644 --- a/pkgs/racket-test-core/tests/racket/chaperone.rktl +++ b/pkgs/racket-test-core/tests/racket/chaperone.rktl @@ -2310,6 +2310,74 @@ ;; ---------------------------------------- +(let () + (define (f x) (+ x 1)) + (define f2 (unsafe-chaperone-procedure f f)) + (test 2 f2 1) + (test #t chaperone-of? f2 f) + (test #f chaperone-of? f f2) + + (define f3 (unsafe-chaperone-procedure f sub1)) + (define f3i (unsafe-impersonate-procedure f sub1)) + (test 0 f3 1) + (test 0 f3i 1) + (test #t chaperone-of? f3 f) + (test #f chaperone-of? f3i f) + (test #f chaperone-of? f3 f2) + (test #f chaperone-of? f2 f3) + + (test #f chaperone-of? + (unsafe-chaperone-procedure f f) + (unsafe-chaperone-procedure f f)) + + (define-values (prop:p prop:p? prop:get-p) + (make-impersonator-property 'p)) + (test #t prop:p? (unsafe-chaperone-procedure f f prop:p 5)) + (test 5 prop:get-p (unsafe-chaperone-procedure f f prop:p 5)) + + (define f4 (unsafe-chaperone-procedure f (case-lambda + [(x) (f x)] + [(x y) (f x)]))) + (test 2 f4 1) + + (test 1 + procedure-arity + (unsafe-chaperone-procedure (λ (x) (+ x 1)) + (case-lambda + [(x) (+ x 1)] + [(x y) (+ x y)]))) + + (define f5 (unsafe-chaperone-procedure f (λ (x #:y [y 1]) (f x)))) + (test 2 f5 1) + + (err/rt-test (unsafe-chaperone-procedure + (λ (#:x x) x) + (λ (#:y y) y)) + exn:fail?) + + (let () + + (define (f-marks) + (continuation-mark-set->list + (current-continuation-marks) + 'mark-key)) + + (define f-marks-chap + (unsafe-chaperone-procedure + f-marks + f-marks + impersonator-prop:application-mark + (cons 'x 123))) + ;; test that impersonator-prop:application-mark + ;; is ignored (as the docs say it is). + (test '() f-marks-chap)) + + (let () + (struct s (f) #:property prop:procedure 0) + (test #t s? (unsafe-chaperone-procedure (s add1) (λ (x) x))))) + +;; ---------------------------------------- + (let () (struct s ([a #:mutable])) (err/rt-test (impersonate-struct 5 set-s-a! (lambda (a b) b))) diff --git a/racket/collects/racket/private/kw.rkt b/racket/collects/racket/private/kw.rkt index 14eef699e8..ef3a2f9ebc 100644 --- a/racket/collects/racket/private/kw.rkt +++ b/racket/collects/racket/private/kw.rkt @@ -26,7 +26,9 @@ new:procedure->method new:procedure-rename new:chaperone-procedure + new:unsafe-chaperone-procedure new:impersonate-procedure + new:unsafe-impersonate-procedure new:chaperone-procedure* new:impersonate-procedure* (for-syntax kw-expander? kw-expander-impl kw-expander-proc @@ -1529,12 +1531,24 @@ (do-chaperone-procedure #f #f chaperone-procedure 'chaperone-procedure proc wrap-proc props))]) chaperone-procedure)) + (define new:unsafe-chaperone-procedure + (let ([unsafe-chaperone-procedure + (lambda (proc wrap-proc . props) + (do-unsafe-chaperone-procedure unsafe-chaperone-procedure 'unsafe-chaperone-procedure proc wrap-proc props))]) + unsafe-chaperone-procedure)) + (define new:impersonate-procedure (let ([impersonate-procedure (lambda (proc wrap-proc . props) (do-chaperone-procedure #t #f impersonate-procedure 'impersonate-procedure proc wrap-proc props))]) impersonate-procedure)) + (define new:unsafe-impersonate-procedure + (let ([unsafe-impersonate-procedure + (lambda (proc wrap-proc . props) + (do-unsafe-chaperone-procedure unsafe-impersonate-procedure 'unsafe-impersonate-procedure proc wrap-proc props))]) + unsafe-impersonate-procedure)) + (define new:chaperone-procedure* (let ([chaperone-procedure* (lambda (proc wrap-proc . props) @@ -1553,52 +1567,10 @@ (if (or (not (keyword-procedure? n-proc)) (not (procedure? wrap-proc)) ;; if any bad prop, let `chaperone-procedure' complain - (let loop ([props props]) - (cond - [(null? props) #f] - [(impersonator-property? (car props)) - (let ([props (cdr props)]) - (or (null? props) - (loop (cdr props))))] - [else #t]))) + (bad-props? props)) (apply chaperone-procedure proc wrap-proc props) - (let-values ([(a) (procedure-arity proc)] - [(b) (procedure-arity wrap-proc)] - [(d) (if self-arg? 1 0)] - [(a-req a-allow) (procedure-keywords proc)] - [(b-req b-allow) (procedure-keywords wrap-proc)]) - (define (includes? a b) - (cond - [(number? b) (cond - [(number? a) (= b (+ a d))] - [(arity-at-least? a) - (b . >= . (+ (arity-at-least-value a) d))] - [else - (ormap (lambda (a) (includes? a b)) a)])] - [(arity-at-least? b) (cond - [(number? a) #f] - [(arity-at-least? a) - ((arity-at-least-value b) . >= . (+ (arity-at-least-value a) d))] - [else (ormap (lambda (a) (includes? b a)) a)])] - [else (andmap (lambda (b) (includes? a b)) b)])) - - (unless (includes? b a) - ;; Let core report error: - (apply chaperone-procedure proc wrap-proc props)) - (unless (subset? b-req a-req) - (raise-arguments-error - name - "wrapper procedure requires more keywords than original procedure" - "wrapper procedure" wrap-proc - "original procedure" proc)) - (unless (or (not b-allow) - (and a-allow - (subset? a-allow b-allow))) - (raise-arguments-error - name - "wrapper procedure does not accept all keywords of original procedure" - "wrapper procedure" wrap-proc - "original procedure" proc)) + (begin + (chaperone-arity-match-checking self-arg? name proc wrap-proc props) (let*-values ([(kw-chaperone) (let ([p (keyword-procedure-proc n-wrap-proc)]) ;; `extra-arg ...` will be `self-proc` if `self-arg?`: @@ -1759,6 +1731,68 @@ chap-accessor #f props))))))) + (define (do-unsafe-chaperone-procedure unsafe-chaperone-procedure name proc wrap-proc props) + (let ([n-proc (normalize-proc proc)] + [n-wrap-proc (normalize-proc wrap-proc)]) + (if (or (not (keyword-procedure? n-proc)) + (not (procedure? wrap-proc)) + ;; if any bad prop, let `unsafe-chaperone-procedure' complain + (bad-props? props)) + (apply unsafe-chaperone-procedure proc wrap-proc props) + (begin + (chaperone-arity-match-checking #f name proc wrap-proc props) + (apply unsafe-chaperone-procedure proc wrap-proc props))))) + + (define (bad-props? props) + (let loop ([props props]) + (cond + [(null? props) #f] + [(impersonator-property? (car props)) + (let ([props (cdr props)]) + (or (null? props) + (loop (cdr props))))] + [else #t]))) + + (define (chaperone-arity-match-checking self-arg? name proc wrap-proc props) + (let-values ([(a) (procedure-arity proc)] + [(b) (procedure-arity wrap-proc)] + [(d) (if self-arg? 1 0)] + [(a-req a-allow) (procedure-keywords proc)] + [(b-req b-allow) (procedure-keywords wrap-proc)]) + (define (includes? a b) + (cond + [(number? b) (cond + [(number? a) (= b (+ a d))] + [(arity-at-least? a) + (b . >= . (+ (arity-at-least-value a) d))] + [else + (ormap (lambda (a) (includes? a b)) a)])] + [(arity-at-least? b) (cond + [(number? a) #f] + [(arity-at-least? a) + ((arity-at-least-value b) . >= . (+ (arity-at-least-value a) d))] + [else (ormap (lambda (a) (includes? b a)) a)])] + [else (andmap (lambda (b) (includes? a b)) b)])) + + (unless (includes? b a) + ;; Let core report error: + (apply chaperone-procedure proc wrap-proc props)) + (unless (subset? b-req a-req) + (raise-arguments-error + name + "wrapper procedure requires more keywords than original procedure" + "wrapper procedure" wrap-proc + "original procedure" proc)) + (unless (or (not b-allow) + (and a-allow + (subset? a-allow b-allow))) + (raise-arguments-error + name + "wrapper procedure does not accept all keywords of original procedure" + "wrapper procedure" wrap-proc + "original procedure" proc)) + (void))) + (define (normalize-proc proc) ;; If `proc' gets keyword support through `new-prop:procedure', ;; then wrap it to normalize to to something that matches diff --git a/racket/collects/racket/private/pre-base.rkt b/racket/collects/racket/private/pre-base.rkt index f8a5474981..1fb8254e37 100644 --- a/racket/collects/racket/private/pre-base.rkt +++ b/racket/collects/racket/private/pre-base.rkt @@ -219,7 +219,9 @@ (rename new:procedure->method procedure->method) (rename new:procedure-rename procedure-rename) (rename new:chaperone-procedure chaperone-procedure) + (rename new:unsafe-chaperone-procedure unsafe-chaperone-procedure) (rename new:impersonate-procedure impersonate-procedure) + (rename new:unsafe-impersonate-procedure unsafe-impersonate-procedure) (rename new:chaperone-procedure* chaperone-procedure*) (rename new:impersonate-procedure* impersonate-procedure*) (rename new:collection-path collection-path) @@ -228,6 +230,7 @@ procedure-arity procedure-reduce-arity raise-arity-error procedure->method procedure-rename chaperone-procedure impersonate-procedure + unsafe-chaperone-procedure unsafe-impersonate-procedure chaperone-procedure* impersonate-procedure* assq assv assoc prop:incomplete-arity prop:method-arity-error diff --git a/racket/src/racket/src/cstartup.inc b/racket/src/racket/src/cstartup.inc index 574a9b0113..22d0508c17 100644 --- a/racket/src/racket/src/cstartup.inc +++ b/racket/src/racket/src/cstartup.inc @@ -1,1580 +1,1579 @@ { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,54,46,51,46,48,46,49,48,84,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,1,0,0,8,0,18, -0,22,0,26,0,31,0,38,0,42,0,47,0,59,0,66,0,69,0,82,0, -89,0,94,0,103,0,109,0,123,0,137,0,140,0,146,0,157,0,159,0,173, -0,180,0,202,0,204,0,218,0,246,0,251,0,255,0,72,1,79,1,90,1, -128,1,135,1,144,1,177,1,210,1,16,2,21,2,102,2,107,2,112,2,133, -2,30,3,51,3,104,3,173,3,242,3,132,4,24,5,35,5,118,5,0,0, -148,7,0,0,3,1,5,105,110,115,112,48,71,35,37,109,105,110,45,115,116, -120,29,11,11,11,65,97,110,100,66,99,111,110,100,68,100,101,102,105,110,101, -65,108,101,116,66,108,101,116,42,73,108,101,116,42,45,118,97,108,117,101,115, -68,108,101,116,114,101,99,64,111,114,74,112,97,114,97,109,101,116,101,114,105, -122,101,68,117,110,108,101,115,115,66,119,104,101,110,70,104,101,114,101,45,115, -116,120,67,113,117,111,116,101,29,94,2,16,70,35,37,107,101,114,110,101,108, -11,29,94,2,16,70,35,37,112,97,114,97,109,122,11,64,105,102,67,98,101, -103,105,110,72,108,101,116,45,118,97,108,117,101,115,63,120,75,108,101,116,114, -101,99,45,118,97,108,117,101,115,68,108,97,109,98,100,97,1,20,112,97,114, -97,109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,63,118,75,100, -101,102,105,110,101,45,118,97,108,117,101,115,38,28,16,3,93,16,2,29,11, -11,11,2,3,2,29,93,143,16,5,39,2,31,40,2,34,2,2,39,38,29, -93,2,30,36,30,0,39,36,31,1,145,40,143,2,32,16,4,2,17,39,39, -2,1,143,2,32,16,4,2,18,39,39,2,1,16,22,2,4,2,33,2,5, -2,33,2,6,2,33,2,7,2,33,2,8,2,33,2,9,2,33,2,10,2, -33,2,11,2,33,2,12,2,33,2,13,2,33,2,14,2,33,38,32,143,2, -31,2,29,38,33,93,143,2,32,143,2,1,2,3,36,34,2,144,40,143,2, -35,16,4,2,17,40,39,2,1,16,2,2,15,93,143,2,35,147,2,1,2, -3,40,2,15,143,2,3,40,2,15,38,35,143,2,34,2,29,18,143,66,104, -101,114,101,2,28,27,248,22,165,4,195,249,22,158,4,80,143,42,39,251,22, -91,2,19,248,22,103,199,12,249,22,81,2,20,248,22,105,201,27,248,22,165, -4,195,249,22,158,4,80,143,42,39,251,22,91,2,19,248,22,103,199,249,22, -81,2,20,248,22,105,201,12,27,248,22,83,248,22,165,4,196,28,248,22,89, -193,20,14,144,40,39,40,28,248,22,89,248,22,83,194,248,22,170,20,193,249, -22,158,4,80,143,42,39,251,22,91,2,19,248,22,170,20,199,249,22,81,2, -4,248,22,171,20,201,11,18,143,10,2,28,27,248,22,83,248,22,165,4,196, -28,248,22,89,193,20,14,144,40,39,40,28,248,22,89,248,22,83,194,248,22, -170,20,193,249,22,158,4,80,143,42,39,250,22,91,2,21,248,22,91,249,22, -91,248,22,91,2,22,248,22,170,20,201,251,22,91,2,19,2,22,2,22,249, -22,81,2,11,248,22,171,20,204,18,143,11,2,28,248,22,165,4,193,27,248, -22,165,4,194,249,22,81,248,22,91,248,22,82,196,248,22,171,20,195,27,248, -22,83,248,22,165,4,23,197,1,249,22,158,4,80,143,42,39,28,248,22,65, -248,22,159,4,248,22,82,23,198,2,27,249,22,2,32,0,88,148,8,36,40, -46,11,9,222,33,43,248,22,165,4,248,22,103,23,200,2,250,22,91,2,23, -248,22,91,249,22,91,248,22,91,248,22,170,20,23,204,2,250,22,92,2,24, -249,22,2,22,82,23,204,2,248,22,105,23,206,2,249,22,81,248,22,170,20, -23,202,1,249,22,2,22,103,23,200,1,250,22,92,2,21,249,22,2,32,0, -88,148,8,36,40,50,11,9,222,33,44,248,22,165,4,248,22,170,20,201,248, -22,171,20,198,27,248,22,165,4,194,249,22,81,248,22,91,248,22,82,196,248, -22,171,20,195,27,248,22,83,248,22,165,4,23,197,1,249,22,158,4,80,143, -42,39,250,22,92,2,23,249,22,2,32,0,88,148,8,36,40,50,11,9,222, -33,46,248,22,165,4,248,22,82,201,248,22,171,20,198,27,248,22,83,248,22, -165,4,196,27,248,22,165,4,248,22,82,195,249,22,158,4,80,143,43,39,28, -248,22,89,195,250,22,92,2,21,9,248,22,171,20,199,250,22,91,2,7,248, -22,91,248,22,82,199,250,22,92,2,8,248,22,171,20,201,248,22,171,20,202, -27,248,22,83,248,22,165,4,196,27,248,22,165,4,248,22,82,195,249,22,158, -4,80,143,43,39,28,248,22,89,195,250,22,92,2,21,9,248,22,171,20,199, -250,22,91,2,21,248,22,91,248,22,82,199,250,22,92,2,9,248,22,171,20, -201,248,22,171,20,202,27,248,22,83,248,22,165,4,23,197,1,27,249,22,1, -22,95,249,22,2,22,165,4,248,22,165,4,248,22,82,199,248,22,186,4,249, -22,158,4,80,143,44,39,251,22,91,1,22,119,105,116,104,45,99,111,110,116, -105,110,117,97,116,105,111,110,45,109,97,114,107,2,25,250,22,92,1,23,101, -120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111, -110,21,95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109,97,114, -107,45,115,101,116,45,102,105,114,115,116,11,2,25,202,250,22,92,2,21,9, -248,22,171,20,204,27,248,22,83,248,22,165,4,196,28,248,22,89,193,20,14, -144,40,39,40,249,22,158,4,80,143,42,39,27,248,22,165,4,248,22,82,197, -28,249,22,170,9,64,61,62,248,22,159,4,248,22,103,196,250,22,91,2,21, -248,22,91,249,22,91,21,93,2,26,248,22,170,20,199,250,22,92,2,5,249, -22,91,2,26,249,22,91,248,22,112,203,2,26,248,22,171,20,202,251,22,91, -2,19,28,249,22,170,9,248,22,159,4,248,22,170,20,200,66,101,108,115,101, -10,248,22,170,20,197,250,22,92,2,21,9,248,22,171,20,200,249,22,81,2, -5,248,22,171,20,202,18,143,94,10,66,118,111,105,100,2,28,27,248,22,83, -248,22,165,4,196,249,22,158,4,80,143,42,39,28,248,22,65,248,22,159,4, -248,22,82,197,250,22,91,2,27,248,22,91,248,22,170,20,199,248,22,103,198, -27,248,22,159,4,248,22,170,20,197,250,22,91,2,27,248,22,91,248,22,82, -197,250,22,92,2,24,248,22,171,20,199,248,22,171,20,202,145,39,9,20,121, -145,2,1,39,16,1,11,16,0,20,27,15,61,9,2,2,2,2,2,3,11, -11,11,11,9,9,11,11,11,10,39,80,143,39,39,20,121,145,2,1,39,16, -0,16,0,41,42,39,16,0,39,16,0,39,11,11,11,16,11,2,4,2,5, -2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,16,11,11, -11,11,11,11,11,11,11,11,11,11,16,11,2,4,2,5,2,6,2,7,2, -8,2,9,2,10,2,11,2,12,2,13,2,14,39,50,40,16,0,39,16,1, -2,15,40,11,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16, -0,16,0,39,39,16,12,16,5,11,20,15,16,2,20,14,144,39,39,40,80, -143,39,39,39,20,121,145,2,1,39,16,1,2,15,16,1,33,36,10,16,5, -2,13,88,148,8,36,40,56,40,9,223,0,33,37,39,20,121,145,2,1,39, -16,1,2,15,16,0,11,16,5,2,14,88,148,8,36,40,56,40,9,223,0, -33,38,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,4,88, -148,8,36,40,56,42,9,223,0,33,39,39,20,121,145,2,1,39,16,1,2, -15,16,1,33,40,11,16,5,2,11,88,148,8,36,40,59,42,9,223,0,33, -41,39,20,121,145,2,1,39,16,1,2,15,16,1,33,42,11,16,5,2,7, -88,148,8,36,40,61,40,9,223,0,33,45,39,20,121,145,2,1,39,16,1, -2,15,16,0,11,16,5,2,10,88,148,8,36,40,56,40,9,223,0,33,47, -39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,8,88,148,8, -36,40,57,40,9,223,0,33,48,39,20,121,145,2,1,39,16,1,2,15,16, -0,11,16,5,2,9,88,148,8,36,40,57,40,9,223,0,33,49,39,20,121, -145,2,1,39,16,1,2,15,16,0,11,16,5,2,12,88,148,8,36,40,59, -40,9,223,0,33,50,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16, -5,2,5,88,148,8,36,40,61,42,9,223,0,33,51,39,20,121,145,2,1, -39,16,1,2,15,16,1,33,52,11,16,5,2,6,88,148,8,36,40,57,40, -9,223,0,33,53,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,0, -94,2,17,2,18,93,2,17,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 2091); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,54,46,52,46,48,46,50,84,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,54,0,0,0,1,0,0,8,0,18,0, +22,0,26,0,31,0,38,0,42,0,47,0,59,0,66,0,69,0,82,0,89, +0,94,0,103,0,109,0,123,0,137,0,140,0,146,0,157,0,159,0,173,0, +180,0,202,0,204,0,218,0,246,0,251,0,255,0,72,1,79,1,90,1,128, +1,135,1,144,1,177,1,210,1,16,2,21,2,102,2,107,2,112,2,133,2, +30,3,51,3,104,3,173,3,242,3,132,4,24,5,35,5,118,5,0,0,148, +7,0,0,3,1,5,105,110,115,112,48,71,35,37,109,105,110,45,115,116,120, +29,11,11,11,65,97,110,100,66,99,111,110,100,68,100,101,102,105,110,101,65, +108,101,116,66,108,101,116,42,73,108,101,116,42,45,118,97,108,117,101,115,68, +108,101,116,114,101,99,64,111,114,74,112,97,114,97,109,101,116,101,114,105,122, +101,68,117,110,108,101,115,115,66,119,104,101,110,70,104,101,114,101,45,115,116, +120,67,113,117,111,116,101,29,94,2,16,70,35,37,107,101,114,110,101,108,11, +29,94,2,16,70,35,37,112,97,114,97,109,122,11,64,105,102,67,98,101,103, +105,110,72,108,101,116,45,118,97,108,117,101,115,63,120,75,108,101,116,114,101, +99,45,118,97,108,117,101,115,68,108,97,109,98,100,97,1,20,112,97,114,97, +109,101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,63,118,75,100,101, +102,105,110,101,45,118,97,108,117,101,115,38,28,16,3,93,16,2,29,11,11, +11,2,3,2,29,93,143,16,5,39,2,31,40,2,34,2,2,39,38,29,93, +2,30,36,30,0,39,36,31,1,145,40,143,2,32,16,4,2,17,39,39,2, +1,143,2,32,16,4,2,18,39,39,2,1,16,22,2,4,2,33,2,5,2, +33,2,6,2,33,2,7,2,33,2,8,2,33,2,9,2,33,2,10,2,33, +2,11,2,33,2,12,2,33,2,13,2,33,2,14,2,33,38,32,143,2,31, +2,29,38,33,93,143,2,32,143,2,1,2,3,36,34,2,144,40,143,2,35, +16,4,2,17,40,39,2,1,16,2,2,15,93,143,2,35,147,2,1,2,3, +40,2,15,143,2,3,40,2,15,38,35,143,2,34,2,29,18,143,66,104,101, +114,101,2,28,27,248,22,167,4,195,249,22,160,4,80,143,42,39,251,22,93, +2,19,248,22,105,199,12,249,22,83,2,20,248,22,107,201,27,248,22,167,4, +195,249,22,160,4,80,143,42,39,251,22,93,2,19,248,22,105,199,249,22,83, +2,20,248,22,107,201,12,27,248,22,85,248,22,167,4,196,28,248,22,91,193, +20,14,144,40,39,40,28,248,22,91,248,22,85,194,248,22,172,20,193,249,22, +160,4,80,143,42,39,251,22,93,2,19,248,22,172,20,199,249,22,83,2,4, +248,22,173,20,201,11,18,143,10,2,28,27,248,22,85,248,22,167,4,196,28, +248,22,91,193,20,14,144,40,39,40,28,248,22,91,248,22,85,194,248,22,172, +20,193,249,22,160,4,80,143,42,39,250,22,93,2,21,248,22,93,249,22,93, +248,22,93,2,22,248,22,172,20,201,251,22,93,2,19,2,22,2,22,249,22, +83,2,11,248,22,173,20,204,18,143,11,2,28,248,22,167,4,193,27,248,22, +167,4,194,249,22,83,248,22,93,248,22,84,196,248,22,173,20,195,27,248,22, +85,248,22,167,4,23,197,1,249,22,160,4,80,143,42,39,28,248,22,67,248, +22,161,4,248,22,84,23,198,2,27,249,22,2,32,0,88,148,8,36,40,46, +11,9,222,33,43,248,22,167,4,248,22,105,23,200,2,250,22,93,2,23,248, +22,93,249,22,93,248,22,93,248,22,172,20,23,204,2,250,22,94,2,24,249, +22,2,22,84,23,204,2,248,22,107,23,206,2,249,22,83,248,22,172,20,23, +202,1,249,22,2,22,105,23,200,1,250,22,94,2,21,249,22,2,32,0,88, +148,8,36,40,50,11,9,222,33,44,248,22,167,4,248,22,172,20,201,248,22, +173,20,198,27,248,22,167,4,194,249,22,83,248,22,93,248,22,84,196,248,22, +173,20,195,27,248,22,85,248,22,167,4,23,197,1,249,22,160,4,80,143,42, +39,250,22,94,2,23,249,22,2,32,0,88,148,8,36,40,50,11,9,222,33, +46,248,22,167,4,248,22,84,201,248,22,173,20,198,27,248,22,85,248,22,167, +4,196,27,248,22,167,4,248,22,84,195,249,22,160,4,80,143,43,39,28,248, +22,91,195,250,22,94,2,21,9,248,22,173,20,199,250,22,93,2,7,248,22, +93,248,22,84,199,250,22,94,2,8,248,22,173,20,201,248,22,173,20,202,27, +248,22,85,248,22,167,4,196,27,248,22,167,4,248,22,84,195,249,22,160,4, +80,143,43,39,28,248,22,91,195,250,22,94,2,21,9,248,22,173,20,199,250, +22,93,2,21,248,22,93,248,22,84,199,250,22,94,2,9,248,22,173,20,201, +248,22,173,20,202,27,248,22,85,248,22,167,4,23,197,1,27,249,22,1,22, +97,249,22,2,22,167,4,248,22,167,4,248,22,84,199,248,22,188,4,249,22, +160,4,80,143,44,39,251,22,93,1,22,119,105,116,104,45,99,111,110,116,105, +110,117,97,116,105,111,110,45,109,97,114,107,2,25,250,22,94,1,23,101,120, +116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110, +21,95,1,27,99,111,110,116,105,110,117,97,116,105,111,110,45,109,97,114,107, +45,115,101,116,45,102,105,114,115,116,11,2,25,202,250,22,94,2,21,9,248, +22,173,20,204,27,248,22,85,248,22,167,4,196,28,248,22,91,193,20,14,144, +40,39,40,249,22,160,4,80,143,42,39,27,248,22,167,4,248,22,84,197,28, +249,22,172,9,64,61,62,248,22,161,4,248,22,105,196,250,22,93,2,21,248, +22,93,249,22,93,21,93,2,26,248,22,172,20,199,250,22,94,2,5,249,22, +93,2,26,249,22,93,248,22,114,203,2,26,248,22,173,20,202,251,22,93,2, +19,28,249,22,172,9,248,22,161,4,248,22,172,20,200,66,101,108,115,101,10, +248,22,172,20,197,250,22,94,2,21,9,248,22,173,20,200,249,22,83,2,5, +248,22,173,20,202,18,143,94,10,66,118,111,105,100,2,28,27,248,22,85,248, +22,167,4,196,249,22,160,4,80,143,42,39,28,248,22,67,248,22,161,4,248, +22,84,197,250,22,93,2,27,248,22,93,248,22,172,20,199,248,22,105,198,27, +248,22,161,4,248,22,172,20,197,250,22,93,2,27,248,22,93,248,22,84,197, +250,22,94,2,24,248,22,173,20,199,248,22,173,20,202,145,39,9,20,121,145, +2,1,39,16,1,11,16,0,20,27,15,61,9,2,2,2,2,2,3,11,11, +11,11,9,9,11,11,11,10,39,80,143,39,39,20,121,145,2,1,39,16,0, +16,0,41,42,39,16,0,39,16,0,39,11,11,11,16,11,2,4,2,5,2, +6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,16,11,11,11, +11,11,11,11,11,11,11,11,11,16,11,2,4,2,5,2,6,2,7,2,8, +2,9,2,10,2,11,2,12,2,13,2,14,39,50,40,16,0,39,16,1,2, +15,40,11,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0, +16,0,39,39,16,12,16,5,11,20,15,16,2,20,14,144,39,39,40,80,143, +39,39,39,20,121,145,2,1,39,16,1,2,15,16,1,33,36,10,16,5,2, +13,88,148,8,36,40,56,40,9,223,0,33,37,39,20,121,145,2,1,39,16, +1,2,15,16,0,11,16,5,2,14,88,148,8,36,40,56,40,9,223,0,33, +38,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,4,88,148, +8,36,40,56,42,9,223,0,33,39,39,20,121,145,2,1,39,16,1,2,15, +16,1,33,40,11,16,5,2,11,88,148,8,36,40,59,42,9,223,0,33,41, +39,20,121,145,2,1,39,16,1,2,15,16,1,33,42,11,16,5,2,7,88, +148,8,36,40,61,40,9,223,0,33,45,39,20,121,145,2,1,39,16,1,2, +15,16,0,11,16,5,2,10,88,148,8,36,40,56,40,9,223,0,33,47,39, +20,121,145,2,1,39,16,1,2,15,16,0,11,16,5,2,8,88,148,8,36, +40,57,40,9,223,0,33,48,39,20,121,145,2,1,39,16,1,2,15,16,0, +11,16,5,2,9,88,148,8,36,40,57,40,9,223,0,33,49,39,20,121,145, +2,1,39,16,1,2,15,16,0,11,16,5,2,12,88,148,8,36,40,59,40, +9,223,0,33,50,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,5, +2,5,88,148,8,36,40,61,42,9,223,0,33,51,39,20,121,145,2,1,39, +16,1,2,15,16,1,33,52,11,16,5,2,6,88,148,8,36,40,57,40,9, +223,0,33,53,39,20,121,145,2,1,39,16,1,2,15,16,0,11,16,0,94, +2,17,2,18,93,2,17,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 2090); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,54,46,51,46,48,46,49,48,84,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,192,0,0,0,1,0,0,8,0,16, -0,29,0,34,0,51,0,63,0,85,0,114,0,158,0,164,0,178,0,193,0, -211,0,223,0,239,0,253,0,19,1,39,1,73,1,90,1,107,1,130,1,145, -1,184,1,202,1,233,1,245,1,6,2,18,2,33,2,57,2,89,2,118,2, -134,2,152,2,172,2,193,2,211,2,242,2,0,3,17,3,61,3,69,3,74, -3,118,3,125,3,135,3,150,3,159,3,164,3,166,3,199,3,223,3,244,3, -1,4,11,4,20,4,31,4,49,4,62,4,72,4,82,4,88,4,93,4,105, -4,108,4,112,4,117,4,160,4,173,4,176,4,200,4,239,4,246,4,3,5, -25,5,36,5,66,5,89,5,97,5,121,5,142,5,91,6,121,6,212,9,235, -9,252,9,176,11,23,12,37,12,241,12,217,14,226,14,235,14,249,14,3,15, -23,16,126,16,251,16,68,17,141,17,243,17,16,18,87,18,221,18,36,19,243, -19,105,20,118,20,236,20,249,20,100,21,167,21,180,21,191,21,87,22,205,22, -249,22,104,23,182,25,206,25,68,26,150,27,157,27,209,27,222,27,212,28,228, -28,83,29,242,29,249,29,126,31,203,31,220,31,120,32,140,32,200,32,207,32, -67,33,121,33,140,33,91,34,107,34,68,35,69,36,106,36,115,36,202,37,47, -40,63,40,130,40,151,40,171,40,191,40,248,40,221,43,187,44,203,44,174,45, -232,45,9,46,141,46,44,47,60,47,157,47,174,47,252,49,47,52,63,52,37, -54,225,54,227,54,254,54,14,55,30,55,127,55,194,56,126,57,142,57,151,57, -158,57,224,58,34,60,152,60,198,63,72,64,204,64,149,66,99,67,141,67,249, -67,0,0,197,75,0,0,3,1,5,105,110,115,112,48,69,35,37,117,116,105, -108,115,74,112,97,116,104,45,115,116,114,105,110,103,63,66,98,115,98,115,78, -110,111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,73,114,101,114,111, -111,116,45,112,97,116,104,1,20,102,105,110,100,45,101,120,101,99,117,116,97, -98,108,101,45,112,97,116,104,1,27,112,97,116,104,45,108,105,115,116,45,115, -116,114,105,110,103,45,62,112,97,116,104,45,108,105,115,116,1,42,99,97,108, -108,45,119,105,116,104,45,100,101,102,97,117,108,116,45,114,101,97,100,105,110, -103,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,67,113,117, -111,116,101,29,94,2,10,70,35,37,112,97,114,97,109,122,11,76,45,99,104, -101,99,107,45,114,101,108,112,97,116,104,79,45,99,104,101,99,107,45,99,111, -108,108,101,99,116,105,111,110,73,45,99,104,101,99,107,45,102,97,105,108,77, -99,111,108,108,101,99,116,105,111,110,45,112,97,116,104,75,102,105,110,100,45, -99,111,108,45,102,105,108,101,1,20,99,111,108,108,101,99,116,105,111,110,45, -102,105,108,101,45,112,97,116,104,1,18,102,105,110,100,45,109,97,105,110,45, -99,111,108,108,101,99,116,115,1,32,101,120,101,45,114,101,108,97,116,105,118, -101,45,112,97,116,104,45,62,99,111,109,112,108,101,116,101,45,112,97,116,104, -78,102,105,110,100,45,109,97,105,110,45,99,111,110,102,105,103,78,103,101,116, -45,99,111,110,102,105,103,45,116,97,98,108,101,1,21,103,101,116,45,105,110, -115,116,97,108,108,97,116,105,111,110,45,110,97,109,101,76,99,111,101,114,99, -101,45,116,111,45,112,97,116,104,1,37,99,111,108,108,101,99,116,115,45,114, -101,108,97,116,105,118,101,45,112,97,116,104,45,62,99,111,109,112,108,101,116, -101,45,112,97,116,104,79,97,100,100,45,99,111,110,102,105,103,45,115,101,97, -114,99,104,1,29,102,105,110,100,45,108,105,98,114,97,114,121,45,99,111,108, -108,101,99,116,105,111,110,45,108,105,110,107,115,73,108,105,110,107,115,45,99, -97,99,104,101,78,115,116,97,109,112,45,112,114,111,109,112,116,45,116,97,103, -73,102,105,108,101,45,62,115,116,97,109,112,76,110,111,45,102,105,108,101,45, -115,116,97,109,112,63,1,22,103,101,116,45,108,105,110,107,101,100,45,99,111, -108,108,101,99,116,105,111,110,115,1,30,110,111,114,109,97,108,105,122,101,45, -99,111,108,108,101,99,116,105,111,110,45,114,101,102,101,114,101,110,99,101,1, -27,102,105,108,101,45,101,120,105,115,116,115,63,47,109,97,121,98,101,45,99, -111,109,112,105,108,101,100,77,112,97,116,104,45,97,100,100,45,115,117,102,102, -105,120,79,99,104,101,99,107,45,115,117,102,102,105,120,45,99,97,108,108,1, -18,112,97,116,104,45,97,100,106,117,115,116,45,115,117,102,102,105,120,1,19, -112,97,116,104,45,114,101,112,108,97,99,101,45,115,117,102,102,105,120,79,108, -111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,1,29,102,105,110, -100,45,108,105,98,114,97,114,121,45,99,111,108,108,101,99,116,105,111,110,45, -112,97,116,104,115,75,101,109,98,101,100,100,101,100,45,108,111,97,100,78,110, -111,114,109,97,108,45,112,97,116,104,45,99,97,115,101,6,41,41,40,111,114, -47,99,32,112,97,116,104,45,102,111,114,45,115,111,109,101,45,115,121,115,116, -101,109,63,32,112,97,116,104,45,115,116,114,105,110,103,63,41,69,119,105,110, -100,111,119,115,6,2,2,92,49,6,41,41,40,111,114,47,99,32,112,97,116, -104,45,115,116,114,105,110,103,63,32,112,97,116,104,45,102,111,114,45,115,111, -109,101,45,115,121,115,116,101,109,63,41,6,4,4,112,97,116,104,5,8,92, -92,63,92,82,69,76,92,6,12,12,112,97,116,104,45,115,116,114,105,110,103, -63,70,114,101,108,97,116,105,118,101,66,108,111,111,112,5,0,6,30,30,40, -112,114,111,99,101,100,117,114,101,45,97,114,105,116,121,45,105,110,99,108,117, -100,101,115,47,99,32,48,41,6,21,21,105,110,118,97,108,105,100,32,114,101, -108,97,116,105,118,101,32,112,97,116,104,6,18,18,40,97,110,121,47,99,32, -46,32,45,62,32,46,32,97,110,121,41,74,99,111,108,108,101,99,116,115,45, -100,105,114,71,101,120,101,99,45,102,105,108,101,70,111,114,105,103,45,100,105, -114,72,99,111,110,102,105,103,45,100,105,114,79,105,110,115,116,97,108,108,97, -116,105,111,110,45,110,97,109,101,6,10,10,108,105,110,107,115,46,114,107,116, -100,71,97,100,100,111,110,45,100,105,114,71,102,115,45,99,104,97,110,103,101, -67,101,114,114,111,114,66,114,111,111,116,73,115,116,97,116,105,99,45,114,111, -111,116,6,0,0,6,1,1,47,5,3,46,122,111,6,40,40,114,101,109,111, -118,105,110,103,32,115,117,102,102,105,120,32,109,97,107,101,115,32,112,97,116, -104,32,101,108,101,109,101,110,116,32,101,109,112,116,121,6,10,10,103,105,118, -101,110,32,112,97,116,104,5,1,95,6,21,21,40,111,114,47,99,32,115,116, -114,105,110,103,63,32,98,121,116,101,115,63,41,6,36,36,99,97,110,110,111, -116,32,97,100,100,32,97,32,115,117,102,102,105,120,32,116,111,32,97,32,114, -111,111,116,32,112,97,116,104,58,32,68,102,105,110,105,115,104,5,11,80,76, -84,67,79,76,76,69,67,84,83,1,20,99,111,108,108,101,99,116,115,45,115, -101,97,114,99,104,45,100,105,114,115,6,8,8,99,111,108,108,101,99,116,115, -27,248,22,179,15,194,28,192,192,28,248,22,154,7,194,27,248,22,138,16,195, -28,192,192,248,22,139,16,195,11,0,21,35,114,120,34,94,91,92,92,93,91, -92,92,93,91,63,93,91,92,92,93,34,0,6,35,114,120,34,47,34,0,22, -35,114,120,34,91,47,92,92,93,91,46,32,93,43,91,47,92,92,93,42,36, -34,0,19,35,114,120,34,91,32,46,93,43,40,91,47,92,92,93,42,41,36, -34,86,94,28,28,248,22,180,15,23,195,2,10,28,248,22,179,15,23,195,2, -10,28,248,22,154,7,23,195,2,28,248,22,138,16,23,195,2,10,248,22,139, -16,23,195,2,11,12,250,22,183,11,2,41,2,42,23,197,2,28,28,248,22, -180,15,23,195,2,249,22,170,9,248,22,181,15,23,197,2,2,43,249,22,170, -9,247,22,181,8,2,43,27,28,248,22,154,7,23,196,2,23,195,2,248,22, -166,8,248,22,184,15,23,197,2,28,249,22,176,16,2,79,23,195,2,28,248, -22,154,7,195,248,22,187,15,195,194,86,94,23,195,1,27,248,22,129,8,23, -195,1,249,22,188,15,248,22,169,8,250,22,184,16,2,80,28,249,22,176,16, -2,81,23,201,2,23,199,1,250,22,184,16,2,82,23,202,1,2,44,80,144, -47,40,41,2,43,28,248,22,154,7,194,248,22,187,15,194,193,0,28,35,114, -120,34,94,92,92,92,92,92,92,92,92,91,63,93,92,92,92,92,85,78,67, -92,92,92,92,34,86,95,28,28,28,248,22,179,15,23,195,2,10,28,248,22, -154,7,23,195,2,28,248,22,138,16,23,195,2,10,248,22,139,16,23,195,2, -11,10,248,22,180,15,23,195,2,12,252,22,183,11,2,6,2,45,39,23,199, -2,23,200,2,28,28,28,248,22,179,15,23,196,2,10,28,248,22,154,7,23, -196,2,28,248,22,138,16,23,196,2,10,248,22,139,16,23,196,2,11,10,248, -22,180,15,23,196,2,12,252,22,183,11,2,6,2,45,40,23,199,2,23,200, -2,27,28,248,22,180,15,23,196,2,248,22,181,15,23,196,2,247,22,182,15, -86,95,28,28,248,22,140,16,23,196,2,10,249,22,170,9,247,22,182,15,23, -195,2,12,253,22,185,11,2,6,6,54,54,112,97,116,104,32,105,115,32,110, -111,116,32,99,111,109,112,108,101,116,101,32,97,110,100,32,110,111,116,32,116, -104,101,32,112,108,97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116, -105,111,110,2,46,23,201,2,6,24,24,112,108,97,116,102,111,114,109,32,99, -111,110,118,101,110,116,105,111,110,32,116,121,112,101,247,22,182,15,28,249,22, -170,9,28,248,22,180,15,23,199,2,248,22,181,15,23,199,2,247,22,182,15, -23,195,2,12,253,22,185,11,2,6,6,37,37,103,105,118,101,110,32,112,97, -116,104,115,32,117,115,101,32,100,105,102,102,101,114,101,110,116,32,99,111,110, -118,101,110,116,105,111,110,115,2,46,23,201,2,6,9,9,114,111,111,116,32, -112,97,116,104,23,202,2,27,27,248,22,144,16,28,248,22,140,16,23,199,2, -23,198,1,248,22,141,16,23,199,1,86,94,28,28,248,22,180,15,23,194,2, -10,28,248,22,179,15,23,194,2,10,28,248,22,154,7,23,194,2,28,248,22, -138,16,23,194,2,10,248,22,139,16,23,194,2,11,12,250,22,183,11,2,41, -2,42,23,196,2,28,28,248,22,180,15,23,194,2,249,22,170,9,248,22,181, -15,23,196,2,2,43,249,22,170,9,247,22,181,8,2,43,27,28,248,22,154, -7,23,195,2,23,194,2,248,22,166,8,248,22,184,15,23,196,2,28,249,22, -176,16,2,79,23,195,2,28,248,22,154,7,194,248,22,187,15,194,193,86,94, -23,194,1,27,248,22,129,8,23,195,1,249,22,188,15,248,22,169,8,250,22, -184,16,2,80,28,249,22,176,16,2,81,23,201,2,23,199,1,250,22,184,16, -2,82,23,202,1,2,44,80,144,50,40,41,2,43,28,248,22,154,7,193,248, -22,187,15,193,192,27,248,22,184,15,23,195,2,28,249,22,170,9,23,197,2, -66,117,110,105,120,28,249,22,151,8,194,5,1,47,28,248,22,180,15,198,197, -248,22,187,15,198,249,22,133,16,199,249,22,188,15,249,22,154,8,248,22,184, -15,200,40,198,86,94,23,194,1,28,249,22,170,9,23,197,2,2,43,249,22, -133,16,23,200,1,249,22,188,15,28,249,22,176,16,0,27,35,114,120,34,94, -92,92,92,92,92,92,92,92,91,63,93,92,92,92,92,91,97,45,122,93,58, -34,23,199,2,251,22,155,8,2,47,250,22,154,8,203,43,44,5,1,92,249, -22,154,8,202,45,28,249,22,176,16,2,84,23,199,2,249,22,155,8,2,47, -249,22,154,8,200,43,28,249,22,176,16,2,84,23,199,2,249,22,155,8,2, -47,249,22,154,8,200,43,28,249,22,176,16,0,14,35,114,120,34,94,92,92, -92,92,92,92,92,92,34,23,199,2,249,22,155,8,5,4,85,78,67,92,249, -22,154,8,200,41,28,249,22,176,16,0,12,35,114,120,34,94,91,97,45,122, -93,58,34,198,249,22,155,8,250,22,154,8,201,39,40,249,22,154,8,200,41, -12,198,12,32,86,88,148,8,36,42,56,11,72,102,111,117,110,100,45,101,120, -101,99,222,33,89,32,87,88,148,8,36,43,61,11,66,110,101,120,116,222,33, -88,27,248,22,142,16,23,196,2,28,249,22,172,9,23,195,2,23,197,1,11, -28,248,22,138,16,23,194,2,27,249,22,133,16,23,197,1,23,196,1,28,23, -197,2,90,144,42,11,89,146,42,39,11,248,22,136,16,23,197,2,86,95,23, -195,1,23,194,1,27,28,23,202,2,27,248,22,142,16,23,199,2,28,249,22, -172,9,23,195,2,23,200,2,11,28,248,22,138,16,23,194,2,250,2,86,23, -205,2,23,206,2,249,22,133,16,23,200,2,23,198,1,250,2,86,23,205,2, -23,206,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22, -179,15,23,196,2,27,249,22,133,16,23,198,2,23,205,2,28,28,248,22,128, -16,193,10,248,22,191,15,193,192,11,11,28,23,193,2,192,86,94,23,193,1, -28,23,203,2,11,27,248,22,142,16,23,200,2,28,249,22,172,9,194,23,201, -1,11,28,248,22,138,16,193,250,2,86,205,206,249,22,133,16,200,197,250,2, -86,205,206,195,192,86,94,23,194,1,28,23,196,2,90,144,42,11,89,146,42, -39,11,248,22,136,16,23,197,2,86,95,23,195,1,23,194,1,27,28,23,201, -2,27,248,22,142,16,23,199,2,28,249,22,172,9,23,195,2,23,200,2,11, -28,248,22,138,16,23,194,2,250,2,86,23,204,2,23,205,2,249,22,133,16, -23,200,2,23,198,1,250,2,86,23,204,2,23,205,2,23,196,1,11,28,23, -193,2,192,86,94,23,193,1,27,28,248,22,179,15,23,196,2,27,249,22,133, -16,23,198,2,23,204,2,28,28,248,22,128,16,193,10,248,22,191,15,193,192, -11,11,28,23,193,2,192,86,94,23,193,1,28,23,202,2,11,27,248,22,142, -16,23,200,2,28,249,22,172,9,194,23,201,1,11,28,248,22,138,16,193,250, -2,86,204,205,249,22,133,16,200,197,250,2,86,204,205,195,192,28,23,193,2, -90,144,42,11,89,146,42,39,11,248,22,136,16,23,199,2,86,95,23,195,1, -23,194,1,27,28,23,198,2,251,2,87,23,198,2,23,203,2,23,201,2,23, -202,2,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,179,15,195,27, -249,22,133,16,197,200,28,28,248,22,128,16,193,10,248,22,191,15,193,192,11, -11,28,192,192,28,198,11,251,2,87,198,203,201,202,194,32,90,88,148,8,36, -43,60,11,2,50,222,33,91,28,248,22,89,23,197,2,11,27,249,22,133,16, -248,22,141,16,248,22,82,23,201,2,23,196,2,28,248,22,191,15,23,194,2, -250,2,86,197,198,195,86,94,23,193,1,27,248,22,171,20,23,199,1,28,248, -22,89,23,194,2,11,27,249,22,133,16,248,22,141,16,248,22,82,23,198,2, -23,198,2,28,248,22,191,15,23,194,2,250,2,86,199,200,195,86,94,23,193, -1,27,248,22,171,20,23,196,1,28,248,22,89,23,194,2,11,27,249,22,133, -16,248,22,141,16,248,22,82,23,198,2,23,200,2,28,248,22,191,15,23,194, -2,250,2,86,201,202,195,86,94,23,193,1,27,248,22,171,20,23,196,1,28, -248,22,89,23,194,2,11,27,249,22,133,16,248,22,141,16,248,22,82,197,201, -28,248,22,191,15,193,250,2,86,203,204,195,251,2,90,203,204,205,248,22,171, -20,198,86,95,28,28,248,22,179,15,23,195,2,10,28,248,22,154,7,23,195, -2,28,248,22,138,16,23,195,2,10,248,22,139,16,23,195,2,11,12,250,22, -183,11,2,7,2,48,23,197,2,28,28,23,195,2,28,28,248,22,179,15,23, -196,2,10,28,248,22,154,7,23,196,2,28,248,22,138,16,23,196,2,10,248, -22,139,16,23,196,2,11,248,22,138,16,23,196,2,11,10,12,250,22,183,11, -2,7,6,45,45,40,111,114,47,99,32,35,102,32,40,97,110,100,47,99,32, -112,97,116,104,45,115,116,114,105,110,103,63,32,114,101,108,97,116,105,118,101, -45,112,97,116,104,63,41,41,23,198,2,28,28,248,22,138,16,23,195,2,90, -144,42,11,89,146,42,39,11,248,22,136,16,23,198,2,249,22,170,9,194,2, -49,11,27,249,22,176,8,247,22,175,8,5,4,80,65,84,72,27,28,23,194, -2,249,80,143,43,44,249,22,166,8,23,198,1,7,63,9,86,94,23,194,1, -9,27,28,249,22,170,9,247,22,181,8,2,43,249,22,81,248,22,188,15,5, -1,46,23,196,1,23,194,1,28,248,22,89,23,194,2,11,27,249,22,133,16, -248,22,141,16,248,22,82,23,198,2,23,200,2,28,248,22,191,15,23,194,2, -250,2,86,201,202,195,86,94,23,193,1,27,248,22,171,20,23,196,1,28,248, -22,89,23,194,2,11,27,249,22,133,16,248,22,141,16,248,22,82,23,198,2, -23,202,2,28,248,22,191,15,23,194,2,250,2,86,203,204,195,86,94,23,193, -1,27,248,22,171,20,23,196,1,28,248,22,89,23,194,2,11,27,249,22,133, -16,248,22,141,16,248,22,82,23,198,2,23,204,2,28,248,22,191,15,23,194, -2,250,2,86,205,206,195,86,94,23,193,1,27,248,22,171,20,23,196,1,28, -248,22,89,23,194,2,11,27,249,22,133,16,248,22,141,16,248,22,82,197,205, -28,248,22,191,15,193,250,2,86,23,15,23,16,195,251,2,90,23,15,23,16, -23,17,248,22,171,20,198,27,248,22,141,16,23,196,1,28,248,22,191,15,193, -250,2,86,198,199,195,11,250,80,144,42,43,42,196,197,11,250,80,144,42,43, -42,196,11,11,32,95,88,148,8,36,42,58,11,2,50,222,33,97,0,8,35, -114,120,35,34,92,34,34,27,249,22,172,16,23,197,2,23,198,2,28,23,193, -2,86,94,23,196,1,27,248,22,103,23,195,2,27,27,248,22,112,23,197,1, -27,249,22,172,16,23,201,2,23,196,2,28,23,193,2,86,94,23,194,1,27, -248,22,103,23,195,2,27,250,2,95,202,23,204,1,248,22,112,23,199,1,27, -28,249,22,170,9,247,22,181,8,2,43,250,22,184,16,2,96,23,198,1,2, -51,194,28,249,22,151,8,194,2,51,249,22,95,202,195,249,22,81,248,22,188, -15,195,195,86,95,23,199,1,23,193,1,27,28,249,22,170,9,247,22,181,8, -2,43,250,22,184,16,2,96,23,198,1,2,51,194,28,249,22,151,8,194,2, -51,249,22,95,200,9,249,22,81,248,22,188,15,195,9,27,28,249,22,170,9, -247,22,181,8,2,43,250,22,184,16,2,96,23,198,1,2,51,194,28,249,22, -151,8,194,2,51,249,22,95,198,195,249,22,81,248,22,188,15,195,195,86,95, -23,195,1,23,193,1,27,28,249,22,170,9,247,22,181,8,2,43,250,22,184, -16,2,96,23,200,1,2,51,196,28,249,22,151,8,194,2,51,249,22,95,196, -9,249,22,81,248,22,188,15,195,9,86,95,28,28,248,22,143,8,194,10,248, -22,154,7,194,12,250,22,183,11,2,8,6,21,21,40,111,114,47,99,32,98, -121,116,101,115,63,32,115,116,114,105,110,103,63,41,196,28,28,248,22,90,195, -249,22,4,22,179,15,196,11,12,250,22,183,11,2,8,6,14,14,40,108,105, -115,116,111,102,32,112,97,116,104,63,41,197,250,2,95,197,195,28,248,22,154, -7,197,248,22,168,8,197,196,28,28,248,22,0,23,195,2,249,22,48,23,196, -2,39,11,20,13,144,80,144,39,46,40,26,35,80,144,8,35,47,40,249,22, -31,11,80,144,8,37,46,40,22,146,15,10,22,147,15,10,22,148,15,10,22, -149,15,11,22,150,15,11,22,154,15,10,22,153,15,11,22,155,15,10,22,152, -15,10,22,156,15,10,22,151,15,11,22,157,15,10,22,158,15,10,22,159,15, -10,22,160,15,11,22,161,15,10,22,144,15,11,247,23,194,1,250,22,183,11, -2,9,2,52,23,197,1,86,94,28,28,248,22,179,15,23,195,2,10,28,248, -22,154,7,23,195,2,28,248,22,138,16,23,195,2,10,248,22,139,16,23,195, -2,11,12,250,22,183,11,23,196,2,2,48,23,197,2,28,248,22,138,16,23, -195,2,12,251,22,185,11,23,197,1,2,53,2,46,23,198,1,86,94,28,28, -248,22,179,15,23,195,2,10,28,248,22,154,7,23,195,2,28,248,22,138,16, -23,195,2,10,248,22,139,16,23,195,2,11,12,250,22,183,11,23,196,2,2, -48,23,197,2,28,248,22,138,16,23,195,2,12,251,22,185,11,23,197,1,2, -53,2,46,23,198,1,86,95,28,28,248,22,179,15,23,195,2,10,28,248,22, -154,7,23,195,2,28,248,22,138,16,23,195,2,10,248,22,139,16,23,195,2, -11,12,250,22,183,11,23,196,2,2,48,23,197,2,28,248,22,138,16,23,195, -2,86,94,23,194,1,12,251,22,185,11,23,197,2,2,53,2,46,23,198,1, -249,22,3,20,20,94,88,148,8,36,40,50,11,9,223,2,33,101,23,195,1, -23,197,1,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250, -22,183,11,23,196,1,2,54,23,197,1,86,94,28,28,248,22,179,15,23,194, -2,10,28,248,22,154,7,23,194,2,28,248,22,138,16,23,194,2,10,248,22, -139,16,23,194,2,11,12,250,22,183,11,2,15,2,48,23,196,2,28,248,22, -138,16,23,194,2,12,251,22,185,11,2,15,2,53,2,46,23,197,1,86,97, -28,28,248,22,179,15,23,196,2,10,28,248,22,154,7,23,196,2,28,248,22, -138,16,23,196,2,10,248,22,139,16,23,196,2,11,12,250,22,183,11,2,15, -2,48,23,198,2,28,248,22,138,16,23,196,2,12,251,22,185,11,2,15,2, -53,2,46,23,199,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222,33, -104,23,198,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12, -250,22,183,11,2,15,2,54,23,197,2,252,80,143,44,52,23,199,1,23,200, -1,23,201,1,11,11,86,94,28,28,248,22,179,15,23,194,2,10,28,248,22, -154,7,23,194,2,28,248,22,138,16,23,194,2,10,248,22,139,16,23,194,2, -11,12,250,22,183,11,2,17,2,48,23,196,2,28,248,22,138,16,23,194,2, -12,251,22,185,11,2,17,2,53,2,46,23,197,1,86,99,28,28,248,22,179, -15,23,197,2,10,28,248,22,154,7,23,197,2,28,248,22,138,16,23,197,2, -10,248,22,139,16,23,197,2,11,12,250,22,183,11,2,17,2,48,23,199,2, -28,248,22,138,16,23,197,2,12,251,22,185,11,2,17,2,53,2,46,23,200, -2,28,28,248,22,179,15,23,198,2,10,28,248,22,154,7,23,198,2,28,248, -22,138,16,23,198,2,10,248,22,139,16,23,198,2,11,12,250,22,183,11,2, -17,2,48,23,200,2,28,248,22,138,16,23,198,2,12,251,22,185,11,2,17, -2,53,2,46,23,201,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222, -33,106,23,200,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11, -12,250,22,183,11,2,17,2,54,23,197,2,252,80,143,44,52,23,199,1,23, -202,1,23,203,1,23,201,1,23,200,1,27,248,22,156,16,2,55,28,248,22, -140,16,23,194,2,248,22,143,16,23,194,1,28,248,22,139,16,23,194,2,90, -144,42,11,89,146,42,39,11,248,22,136,16,249,22,141,16,250,80,144,49,43, -42,248,22,156,16,2,56,11,11,248,22,156,16,2,57,86,95,23,195,1,23, -194,1,248,22,143,16,249,22,141,16,23,199,1,23,196,1,27,250,80,144,44, -43,42,248,22,156,16,2,56,23,197,1,10,28,23,193,2,248,22,143,16,23, -194,1,11,249,80,144,41,55,40,39,80,144,41,8,40,42,27,248,22,156,16, -2,58,28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28,248,22,139, -16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249,22,141,16, -250,80,144,49,43,42,248,22,156,16,2,56,11,11,248,22,156,16,2,57,86, -95,23,195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1,23,196,1, -27,250,80,144,44,43,42,248,22,156,16,2,56,23,197,1,10,28,23,193,2, -248,22,143,16,23,194,1,11,249,80,144,41,55,40,40,80,144,41,8,41,42, -27,20,13,144,80,144,40,46,40,26,35,80,144,8,36,47,40,249,22,31,11, -80,144,8,38,46,40,22,146,15,10,22,147,15,10,22,148,15,10,22,149,15, -11,22,150,15,11,22,154,15,10,22,153,15,11,22,155,15,10,22,152,15,10, -22,156,15,10,22,151,15,11,22,157,15,10,22,158,15,10,22,159,15,10,22, -160,15,11,22,161,15,10,22,144,15,11,247,22,149,6,28,248,22,150,2,193, -192,11,27,28,23,195,2,249,22,133,16,23,197,1,6,11,11,99,111,110,102, -105,103,46,114,107,116,100,86,94,23,195,1,11,27,28,23,194,2,28,248,22, -191,15,23,195,2,249,22,141,6,23,196,1,80,144,43,8,42,42,11,11,28, -192,192,21,17,1,0,250,22,159,2,23,196,1,2,59,247,22,172,8,250,22, -159,2,195,2,59,247,22,172,8,28,248,22,154,7,23,195,2,27,248,22,187, -15,23,196,1,28,248,22,140,16,23,194,2,192,249,22,141,16,23,195,1,27, -247,80,144,43,54,42,28,23,193,2,192,86,94,23,193,1,247,22,157,16,28, -248,22,143,8,23,195,2,27,248,22,188,15,23,196,1,28,248,22,140,16,23, -194,2,192,249,22,141,16,23,195,1,27,247,80,144,43,54,42,28,23,193,2, -192,86,94,23,193,1,247,22,157,16,28,248,22,179,15,23,195,2,28,248,22, -140,16,23,195,2,193,249,22,141,16,23,196,1,27,247,80,144,42,54,42,28, -23,193,2,192,86,94,23,193,1,247,22,157,16,193,27,248,22,156,16,2,55, -28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28,248,22,139,16,23, -194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249,22,141,16,250,80, -144,49,43,42,248,22,156,16,2,56,11,11,248,22,156,16,2,57,86,95,23, -195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1,23,196,1,27,250, -80,144,44,43,42,248,22,156,16,2,56,23,197,1,10,28,23,193,2,248,22, -143,16,23,194,1,11,28,248,22,140,16,23,195,2,193,249,22,141,16,23,196, -1,27,249,80,144,44,55,40,39,80,144,44,8,43,42,28,23,193,2,192,86, -94,23,193,1,247,22,157,16,28,248,22,140,16,23,195,2,248,22,143,16,23, -195,1,28,248,22,139,16,23,195,2,90,144,42,11,89,146,42,39,11,248,22, -136,16,249,22,141,16,250,80,144,48,43,42,248,22,156,16,2,56,11,11,248, -22,156,16,2,57,86,95,23,195,1,23,194,1,248,22,143,16,249,22,141,16, -23,200,1,23,196,1,27,250,80,144,43,43,42,248,22,156,16,2,56,23,198, -1,10,28,23,193,2,248,22,143,16,23,194,1,11,28,248,22,89,23,196,2, -9,28,248,22,82,23,196,2,249,22,81,27,248,22,170,20,23,199,2,28,248, -22,154,7,23,194,2,27,248,22,187,15,23,195,1,28,248,22,140,16,23,194, -2,192,249,22,141,16,23,195,1,27,247,80,144,46,54,42,28,23,193,2,192, -86,94,23,193,1,247,22,157,16,28,248,22,143,8,23,194,2,27,248,22,188, -15,23,195,1,28,248,22,140,16,23,194,2,192,249,22,141,16,23,195,1,27, -247,80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22,157,16,28, -248,22,179,15,23,194,2,28,248,22,140,16,23,194,2,192,249,22,141,16,23, -195,1,27,247,80,144,45,54,42,28,23,193,2,192,86,94,23,193,1,247,22, -157,16,192,27,248,22,171,20,23,199,1,28,248,22,89,23,194,2,9,28,248, -22,82,23,194,2,249,22,81,248,80,144,45,60,42,248,22,170,20,23,197,2, -27,248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,28,248,22,82,23, -194,2,249,22,81,248,80,144,48,60,42,248,22,170,20,23,197,2,249,80,144, -49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,202,2,249, -80,144,49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,199, -2,27,248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,28,248,22,82, -23,194,2,249,22,81,248,80,144,48,60,42,248,22,170,20,23,197,2,249,80, -144,49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,202,2, -249,80,144,49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23, -196,2,27,248,22,171,20,23,199,1,28,248,22,89,23,194,2,9,28,248,22, -82,23,194,2,249,22,81,248,80,144,45,60,42,248,22,170,20,23,197,2,27, -248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,28,248,22,82,23,194, -2,249,22,81,248,80,144,48,60,42,248,22,170,20,23,197,2,249,80,144,49, -8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,202,2,249,80, -144,49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,199,2, -27,248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,28,248,22,82,23, -194,2,249,22,81,248,80,144,48,60,42,248,22,170,20,23,197,2,249,80,144, -49,8,44,42,23,204,1,248,22,171,20,23,198,1,249,22,95,23,202,2,249, -80,144,49,8,44,42,23,204,1,248,22,171,20,23,198,1,27,250,22,159,2, -23,198,1,23,199,1,11,28,192,249,80,144,42,8,44,42,198,194,196,27,248, -22,156,16,2,58,28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28, -248,22,139,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249, -22,141,16,250,80,144,49,43,42,248,22,156,16,2,56,11,11,248,22,156,16, -2,57,86,95,23,195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1, -23,196,1,27,250,80,144,44,43,42,248,22,156,16,2,56,23,197,1,10,28, -23,193,2,248,22,143,16,23,194,1,11,27,248,80,144,41,58,42,249,80,144, -43,55,40,40,80,144,43,8,45,42,27,27,250,22,159,2,23,198,2,72,108, -105,110,107,115,45,102,105,108,101,11,27,28,23,194,2,23,194,1,86,94,23, -194,1,249,22,133,16,27,250,22,159,2,23,202,2,71,115,104,97,114,101,45, -100,105,114,11,28,192,192,249,22,133,16,64,117,112,6,5,5,115,104,97,114, -101,2,60,28,248,22,154,7,23,194,2,27,248,22,187,15,23,195,1,28,248, -22,140,16,23,194,2,192,249,22,141,16,23,195,1,27,247,80,144,47,54,42, -28,23,193,2,192,86,94,23,193,1,247,22,157,16,28,248,22,143,8,23,194, -2,27,248,22,188,15,23,195,1,28,248,22,140,16,23,194,2,192,249,22,141, -16,23,195,1,27,247,80,144,47,54,42,28,23,193,2,192,86,94,23,193,1, -247,22,157,16,28,248,22,179,15,23,194,2,28,248,22,140,16,23,194,2,192, -249,22,141,16,23,195,1,27,247,80,144,46,54,42,28,23,193,2,192,86,94, -23,193,1,247,22,157,16,192,250,22,95,248,22,91,11,28,247,22,164,16,28, -247,22,165,16,248,22,91,250,22,133,16,248,22,156,16,2,61,250,22,159,2, -23,204,2,2,59,247,22,172,8,2,60,9,9,28,247,22,165,16,250,80,144, -47,8,23,42,23,200,1,1,18,108,105,110,107,115,45,115,101,97,114,99,104, -45,102,105,108,101,115,248,22,91,23,200,1,9,248,22,175,13,23,194,1,249, -22,14,80,144,41,8,26,41,28,248,22,131,13,23,197,2,86,94,23,196,1, -32,0,88,148,8,36,39,44,11,9,222,11,20,20,94,88,148,8,36,39,46, -11,9,223,3,33,124,23,196,1,32,126,88,148,39,40,59,11,2,50,222,33, -127,90,144,42,11,89,146,42,39,11,248,22,136,16,23,197,1,86,95,23,195, -1,23,194,1,28,248,22,179,15,23,194,2,28,248,22,128,16,23,194,2,249, -22,146,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42, -11,89,146,42,39,11,248,22,136,16,23,197,1,86,95,23,195,1,23,194,1, -28,248,22,179,15,23,194,2,28,248,22,128,16,23,194,2,249,22,146,6,23, -195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42, -39,11,248,22,136,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,179, -15,23,194,2,28,248,22,128,16,23,194,2,249,22,146,6,23,195,1,32,0, -88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22, -136,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,179,15,23,194,2, -28,248,22,128,16,23,194,2,249,22,146,6,23,195,1,32,0,88,148,8,36, -39,44,11,9,222,11,248,2,126,23,194,1,11,11,11,11,32,128,2,88,148, -8,36,40,58,11,2,50,222,33,129,2,27,249,22,164,6,8,128,128,23,196, -2,28,248,22,149,7,23,194,2,9,249,22,81,23,195,1,27,249,22,164,6, -8,128,128,23,199,2,28,248,22,149,7,23,194,2,9,249,22,81,23,195,1, -27,249,22,164,6,8,128,128,23,202,2,28,248,22,149,7,23,194,2,9,249, -22,81,23,195,1,27,249,22,164,6,8,128,128,23,205,2,28,248,22,149,7, -23,194,2,9,249,22,81,23,195,1,248,2,128,2,23,206,1,27,249,22,164, -6,8,128,128,23,196,2,28,248,22,143,8,23,194,2,28,249,22,133,4,248, -22,148,8,23,196,2,8,128,128,249,22,1,22,155,8,249,22,81,23,197,1, -27,249,22,164,6,8,128,128,23,201,2,28,248,22,149,7,23,194,2,9,249, -22,81,23,195,1,27,249,22,164,6,8,128,128,23,204,2,28,248,22,149,7, -23,194,2,9,249,22,81,23,195,1,27,249,22,164,6,8,128,128,23,207,2, -28,248,22,149,7,23,194,2,9,249,22,81,23,195,1,27,249,22,164,6,8, -128,128,23,210,2,28,248,22,149,7,23,194,2,9,249,22,81,23,195,1,248, -2,128,2,23,211,1,192,192,248,22,134,6,23,194,1,20,13,144,80,144,40, -8,28,40,80,144,40,8,46,42,27,28,249,22,190,8,248,22,181,8,2,62, -41,90,144,42,11,89,146,42,39,11,248,22,136,16,23,198,2,86,95,23,195, -1,23,194,1,28,248,22,179,15,23,194,2,28,248,22,128,16,23,194,2,249, -22,146,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42, -11,89,146,42,39,11,248,22,136,16,23,197,1,86,95,23,195,1,23,194,1, -28,248,22,179,15,23,194,2,28,248,22,128,16,23,194,2,249,22,146,6,23, -195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42, -39,11,248,22,136,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,179, -15,23,194,2,28,248,22,128,16,23,194,2,249,22,146,6,23,195,1,32,0, -88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22, -136,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,179,15,23,194,2, -28,248,22,128,16,23,194,2,249,22,146,6,23,195,1,32,0,88,148,8,36, -39,44,11,9,222,11,248,2,126,23,194,1,11,11,11,11,11,28,248,22,191, -15,23,195,2,27,28,249,22,190,8,248,22,181,8,2,62,41,249,22,146,6, -23,197,2,32,0,88,148,8,36,39,44,11,9,222,11,11,86,94,28,23,194, -2,248,22,148,6,23,195,1,86,94,23,194,1,12,249,22,81,27,248,22,189, -5,23,199,1,250,22,44,22,35,88,148,39,39,8,24,11,9,223,3,33,130, -2,20,20,94,88,148,8,36,39,46,11,9,223,3,33,131,2,23,196,1,194, -249,22,81,11,194,28,28,23,195,2,28,248,22,83,23,196,2,248,22,168,9, -249,22,177,14,39,248,22,171,20,23,199,2,11,11,194,86,94,23,195,1,249, -22,12,20,20,94,88,148,8,32,39,61,16,4,39,8,128,80,8,240,0,64, -0,0,39,9,224,2,3,33,132,2,23,196,1,80,144,41,8,26,41,27,248, -22,168,9,194,28,192,192,248,22,168,9,248,22,82,195,86,95,28,248,22,152, -12,23,198,2,27,247,22,144,12,28,249,22,134,12,23,195,2,2,63,251,22, -140,12,23,197,1,2,63,250,22,138,8,6,42,42,101,114,114,111,114,32,114, -101,97,100,105,110,103,32,99,111,108,108,101,99,116,105,111,110,32,108,105,110, -107,115,32,102,105,108,101,32,126,115,58,32,126,97,23,203,2,248,22,148,12, -23,206,2,247,22,27,12,12,28,23,193,2,250,22,157,2,80,144,45,8,25, -41,23,198,1,249,22,81,23,198,1,21,17,0,0,86,95,23,195,1,23,193, -1,12,28,248,22,152,12,23,198,2,86,94,23,197,1,248,23,195,1,247,22, -139,2,196,88,148,39,40,58,8,240,0,0,0,2,9,226,0,2,1,3,33, -135,2,20,20,94,248,22,149,6,23,194,2,28,248,22,149,7,248,22,149,6, -23,195,1,12,248,22,179,11,6,30,30,101,120,112,101,99,116,101,100,32,97, -32,115,105,110,103,108,101,32,83,45,101,120,112,114,101,115,115,105,111,110,248, -22,134,6,23,194,1,28,248,22,90,193,28,28,249,22,129,4,41,248,22,94, -195,10,249,22,129,4,42,248,22,94,195,28,28,248,22,154,7,248,22,82,194, -10,28,249,22,170,9,2,64,248,22,170,20,195,10,249,22,170,9,2,65,248, -22,170,20,195,28,27,248,22,103,194,28,248,22,179,15,193,10,28,248,22,154, -7,193,28,248,22,138,16,193,10,248,22,139,16,193,11,27,248,22,89,248,22, -105,195,28,192,192,248,22,185,16,248,22,112,195,11,11,11,11,28,248,22,128, -16,249,22,133,16,23,196,2,23,198,2,27,248,22,69,248,22,183,15,23,198, -1,250,22,157,2,23,198,2,23,196,2,249,22,81,23,199,1,250,22,159,2, -23,203,1,23,201,1,9,12,250,22,157,2,23,197,1,23,198,1,249,22,81, -23,198,1,23,201,1,28,28,248,22,89,248,22,105,23,197,2,10,249,22,176, -16,248,22,112,23,198,2,247,22,172,8,27,248,22,143,16,249,22,141,16,248, -22,103,23,200,2,23,198,1,28,249,22,170,9,248,22,170,20,23,199,2,2, -65,86,94,23,196,1,249,22,3,20,20,94,88,148,8,36,40,56,11,9,224, -3,2,33,140,2,23,196,1,248,22,146,16,23,196,1,28,249,22,170,9,248, -22,170,20,23,199,2,2,64,86,94,23,196,1,86,94,28,250,22,159,2,23, -197,2,11,11,12,250,22,157,2,23,197,2,11,9,249,22,165,2,23,196,2, -20,20,95,88,148,8,36,41,53,11,9,224,3,2,33,141,2,23,195,1,23, -196,1,27,248,22,69,248,22,170,20,23,199,1,250,22,157,2,23,198,2,23, -196,2,249,22,81,248,22,130,2,23,200,1,250,22,159,2,23,203,1,23,201, -1,9,12,250,22,157,2,23,196,1,23,197,1,248,22,96,23,199,1,27,28, -28,23,194,2,248,22,168,9,248,22,82,23,196,2,10,9,27,249,22,189,5, -23,198,2,68,98,105,110,97,114,121,250,22,44,22,35,88,148,8,36,39,47, -11,9,223,3,33,137,2,20,20,94,88,148,8,36,39,46,11,9,223,3,33, -138,2,23,196,1,86,94,28,28,248,22,90,23,194,2,249,22,4,32,0,88, -148,8,36,40,48,11,9,222,33,139,2,23,195,2,11,12,248,22,179,11,6, -18,18,105,108,108,45,102,111,114,109,101,100,32,99,111,110,116,101,110,116,27, -247,22,139,2,27,90,144,42,11,89,146,42,39,11,248,22,136,16,23,201,2, -192,86,96,249,22,3,20,20,94,88,148,8,36,40,57,11,9,224,2,3,33, -142,2,23,195,1,23,197,1,249,22,165,2,195,88,148,8,36,41,51,11,9, -223,3,33,143,2,250,22,157,2,80,144,47,8,25,41,23,200,1,249,22,81, -23,201,1,198,193,20,13,144,80,144,40,8,28,40,250,80,144,43,8,47,42, -23,198,2,23,196,2,11,27,250,22,159,2,80,144,44,8,25,41,23,197,2, -21,143,11,17,0,0,27,248,22,82,23,195,2,27,249,80,144,45,8,27,42, -23,198,2,23,196,2,28,249,22,172,9,23,195,2,23,196,1,248,22,171,20, -195,86,94,23,195,1,20,13,144,80,144,43,8,28,40,250,80,144,46,8,47, -42,23,201,1,23,199,2,23,196,2,27,20,20,95,88,148,8,36,39,55,8, -240,0,0,0,2,9,225,5,4,1,33,144,2,23,194,1,23,197,1,28,249, -22,48,23,195,2,39,20,13,144,80,144,44,46,40,26,35,80,144,8,40,47, -40,249,22,31,11,80,144,8,42,46,40,22,146,15,10,22,147,15,10,22,148, -15,10,22,149,15,11,22,150,15,11,22,154,15,10,22,153,15,11,22,155,15, -10,22,152,15,10,22,156,15,10,22,151,15,11,22,157,15,10,22,158,15,10, -22,159,15,10,22,160,15,11,22,161,15,10,22,144,15,11,247,23,193,1,250, -22,183,11,2,9,2,52,23,196,1,248,22,8,20,20,94,88,148,39,40,8, -49,16,4,8,128,6,8,128,104,8,240,0,128,0,0,39,9,224,1,2,33, -145,2,23,195,1,0,7,35,114,120,34,47,43,34,28,248,22,154,7,23,195, -2,27,249,22,174,16,2,147,2,23,197,2,28,23,193,2,28,249,22,129,4, -248,22,102,23,196,2,248,22,183,3,248,22,157,7,23,199,2,249,22,7,250, -22,176,7,23,200,1,39,248,22,102,23,199,1,23,198,1,249,22,7,250,22, -176,7,23,200,2,39,248,22,102,23,199,2,249,22,81,249,22,176,7,23,201, -1,248,22,104,23,200,1,23,200,1,86,94,23,193,1,249,22,7,23,197,1, -23,198,1,90,144,42,11,89,146,42,39,11,248,22,136,16,23,198,1,86,94, -23,195,1,28,249,22,170,9,23,195,2,2,49,86,94,23,193,1,249,22,7, -23,196,1,23,200,1,27,249,22,81,23,197,1,23,201,1,28,248,22,154,7, -23,195,2,27,249,22,174,16,2,147,2,23,197,2,28,23,193,2,28,249,22, -129,4,248,22,102,23,196,2,248,22,183,3,248,22,157,7,23,199,2,249,22, -7,250,22,176,7,23,200,1,39,248,22,102,23,199,1,23,196,1,249,22,7, -250,22,176,7,23,200,2,39,248,22,102,23,199,2,249,22,81,249,22,176,7, -23,201,1,248,22,104,23,200,1,23,198,1,86,94,23,193,1,249,22,7,23, -197,1,23,196,1,90,144,42,11,89,146,42,39,11,248,22,136,16,23,198,1, -86,94,23,195,1,28,249,22,170,9,23,195,2,2,49,86,94,23,193,1,249, -22,7,23,196,1,23,198,1,249,80,144,48,8,31,42,194,249,22,81,197,199, -28,248,22,89,23,196,2,9,28,248,22,82,23,196,2,28,248,22,150,2,248, -22,170,20,23,197,2,250,22,95,249,22,2,22,130,2,250,22,159,2,248,22, -170,20,23,204,2,23,202,2,9,250,22,159,2,248,22,170,20,23,202,2,11, -9,27,248,22,171,20,23,200,1,28,248,22,89,23,194,2,9,28,248,22,82, -23,194,2,28,248,22,150,2,248,22,170,20,23,195,2,250,22,95,249,22,2, -22,130,2,250,22,159,2,248,22,170,20,23,202,2,23,206,2,9,250,22,159, -2,248,22,170,20,23,200,2,11,9,249,80,144,48,8,48,42,23,203,1,248, -22,171,20,23,199,1,27,248,80,144,45,8,30,42,248,22,170,20,23,196,2, -250,22,95,250,22,159,2,23,199,2,23,205,2,9,250,22,159,2,23,199,1, -11,9,249,80,144,49,8,48,42,23,204,1,248,22,171,20,23,200,1,249,22, -95,247,22,160,16,249,80,144,47,8,48,42,23,202,1,248,22,171,20,23,198, -1,27,248,80,144,41,8,30,42,248,22,170,20,23,198,2,250,22,95,250,22, -159,2,23,199,2,23,201,2,9,250,22,159,2,23,199,1,11,9,27,248,22, -171,20,23,201,1,28,248,22,89,23,194,2,9,28,248,22,82,23,194,2,28, -248,22,150,2,248,22,170,20,23,195,2,250,22,95,249,22,2,22,130,2,250, -22,159,2,248,22,170,20,23,202,2,23,207,2,9,250,22,159,2,248,22,170, -20,23,200,2,11,9,249,80,144,49,8,48,42,23,204,1,248,22,171,20,23, -199,1,27,248,80,144,46,8,30,42,248,22,170,20,23,196,2,250,22,95,250, -22,159,2,23,199,2,23,206,2,9,250,22,159,2,23,199,1,11,9,249,80, -144,50,8,48,42,23,205,1,248,22,171,20,23,200,1,249,22,95,247,22,160, -16,249,80,144,48,8,48,42,23,203,1,248,22,171,20,23,198,1,249,22,95, -247,22,160,16,27,248,22,171,20,23,199,1,28,248,22,89,23,194,2,9,28, -248,22,82,23,194,2,28,248,22,150,2,248,22,170,20,23,195,2,250,22,95, -249,22,2,22,130,2,250,22,159,2,248,22,170,20,23,202,2,23,205,2,9, -250,22,159,2,248,22,170,20,23,200,2,11,9,249,80,144,47,8,48,42,23, -202,1,248,22,171,20,23,199,1,27,248,80,144,44,8,30,42,248,22,170,20, -23,196,2,250,22,95,250,22,159,2,23,199,2,23,204,2,9,250,22,159,2, -23,199,1,11,9,249,80,144,48,8,48,42,23,203,1,248,22,171,20,23,200, -1,249,22,95,247,22,160,16,249,80,144,46,8,48,42,23,201,1,248,22,171, -20,23,198,1,32,150,2,88,148,8,36,40,50,11,2,50,222,33,151,2,28, -248,22,89,248,22,83,23,195,2,248,22,91,27,248,22,170,20,195,28,248,22, -179,15,193,248,22,183,15,193,192,250,22,92,27,248,22,170,20,23,198,2,28, -248,22,179,15,193,248,22,183,15,193,192,2,67,248,2,150,2,248,22,171,20, -23,198,1,250,22,138,8,6,7,7,10,32,126,97,32,126,97,6,1,1,32, -23,196,1,249,22,138,8,6,6,6,10,32,32,32,126,97,248,22,133,2,23, -196,1,32,154,2,88,148,39,41,51,11,68,102,105,108,116,101,114,222,33,155, -2,28,248,22,89,23,195,2,9,28,248,23,194,2,248,22,82,23,196,2,249, -22,81,248,22,170,20,23,197,2,249,2,154,2,23,197,1,248,22,171,20,23, -199,1,249,2,154,2,23,195,1,248,22,171,20,23,197,1,28,248,22,89,23, -201,2,86,95,23,200,1,23,199,1,28,23,201,2,28,197,249,22,133,16,202, -199,200,86,95,23,201,1,23,198,1,27,28,248,22,89,23,198,2,2,66,249, -22,1,22,177,7,248,2,150,2,23,200,2,248,23,199,1,251,22,138,8,6, -70,70,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32,102,111,117,110, -100,10,32,32,99,111,108,108,101,99,116,105,111,110,58,32,126,115,10,32,32, -105,110,32,99,111,108,108,101,99,116,105,111,110,32,100,105,114,101,99,116,111, -114,105,101,115,58,126,97,126,97,28,248,22,89,23,203,1,28,248,22,179,15, -23,202,2,248,22,183,15,23,202,1,23,201,1,250,22,177,7,28,248,22,179, -15,23,205,2,248,22,183,15,23,205,1,23,204,1,2,67,23,201,2,249,22, -1,22,177,7,249,22,2,32,0,88,148,8,36,40,48,11,9,222,33,152,2, -27,248,22,94,23,206,2,27,248,22,94,247,22,160,16,28,249,22,130,4,249, -22,185,3,23,198,2,23,197,2,44,23,206,2,249,22,95,247,22,160,16,248, -22,91,249,22,138,8,6,50,50,46,46,46,32,91,126,97,32,97,100,100,105, -116,105,111,110,97,108,32,108,105,110,107,101,100,32,97,110,100,32,112,97,99, -107,97,103,101,32,100,105,114,101,99,116,111,114,105,101,115,93,249,22,185,3, -23,201,1,23,200,1,28,249,22,5,22,132,2,23,202,2,250,22,138,8,6, -49,49,10,32,32,32,115,117,98,45,99,111,108,108,101,99,116,105,111,110,58, -32,126,115,10,32,32,105,110,32,112,97,114,101,110,116,32,100,105,114,101,99, -116,111,114,105,101,115,58,126,97,23,201,1,249,22,1,22,177,7,249,22,2, -32,0,88,148,8,36,40,48,11,9,222,33,153,2,249,2,154,2,22,132,2, -23,209,1,86,95,23,200,1,23,198,1,2,66,27,248,22,82,23,202,2,27, -28,248,22,179,15,23,195,2,249,22,133,16,23,196,1,23,199,2,248,22,133, -2,23,195,1,28,28,248,22,179,15,248,22,170,20,23,204,2,248,22,128,16, -23,194,2,10,27,250,22,1,22,133,16,23,197,1,23,202,2,28,28,248,22, -89,23,200,2,10,248,22,128,16,23,194,2,28,23,201,2,28,28,250,80,144, -45,8,32,42,195,203,204,10,27,28,248,22,179,15,202,248,22,183,15,202,201, -19,248,22,157,7,23,195,2,27,28,249,22,133,4,23,196,4,43,28,249,22, -160,7,6,4,4,46,114,107,116,249,22,176,7,23,199,2,249,22,185,3,23, -200,4,43,249,22,177,7,250,22,176,7,23,200,1,39,249,22,185,3,23,201, -4,43,6,3,3,46,115,115,86,94,23,195,1,11,86,94,23,195,1,11,28, -23,193,2,250,80,144,48,8,32,42,198,23,196,1,23,15,11,2,28,200,249, -22,133,16,194,202,192,26,8,80,144,50,8,49,42,204,205,206,23,15,23,16, -23,17,248,22,171,20,23,19,28,23,19,23,19,200,192,26,8,80,144,50,8, -49,42,204,205,206,23,15,23,16,23,17,248,22,171,20,23,19,23,19,26,8, -80,144,49,8,49,42,203,204,205,206,23,15,23,16,248,22,171,20,23,18,23, -18,90,144,41,11,89,146,41,39,11,249,80,144,43,8,31,42,23,199,1,23, -200,1,27,248,22,69,28,248,22,179,15,195,248,22,183,15,195,194,27,27,247, -22,161,16,28,248,22,89,23,194,2,9,28,248,22,82,23,194,2,28,248,22, -150,2,248,22,170,20,23,195,2,250,22,95,249,22,2,22,130,2,250,22,159, -2,248,22,170,20,23,202,2,23,203,2,9,250,22,159,2,248,22,170,20,23, -200,2,11,9,249,80,144,49,8,48,42,23,200,1,248,22,171,20,23,199,1, -27,248,80,144,46,8,30,42,248,22,170,20,23,196,2,250,22,95,250,22,159, -2,23,199,2,23,202,2,9,250,22,159,2,23,199,1,11,9,249,80,144,50, -8,48,42,23,201,1,248,22,171,20,23,200,1,249,22,95,247,22,160,16,249, -80,144,48,8,48,42,23,199,1,248,22,171,20,23,198,1,26,8,80,144,51, -8,49,42,200,202,203,205,23,16,23,17,200,11,32,158,2,88,148,8,36,42, -59,11,2,50,222,33,159,2,28,248,22,134,4,23,196,2,86,94,23,195,1, -19,248,22,148,8,23,195,2,19,248,22,148,8,23,196,2,249,22,189,15,27, -251,22,155,8,250,22,154,8,23,205,2,39,23,204,4,2,51,249,22,154,8, -23,204,1,23,202,4,2,68,28,248,22,134,4,248,22,148,8,23,195,2,86, -94,23,193,1,251,22,185,11,2,37,2,69,2,70,202,192,28,248,22,180,15, -198,248,22,181,15,198,247,22,182,15,2,2,27,248,22,183,3,23,197,1,28, -249,22,170,9,8,46,249,22,149,8,23,198,2,23,197,2,27,248,22,182,3, -23,195,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,205,2,39,23, -204,1,2,71,249,22,154,8,23,204,1,23,202,1,2,68,28,248,22,134,4, -248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2, -70,202,192,28,248,22,180,15,198,248,22,181,15,198,247,22,182,15,250,2,158, -2,196,197,195,248,22,191,15,27,250,22,133,16,23,200,1,23,202,1,23,199, -1,28,249,22,170,9,23,197,2,66,115,97,109,101,192,28,248,22,138,16,23, -196,2,249,22,133,16,194,196,249,80,144,46,42,42,23,195,1,23,197,1,249, -22,5,20,20,96,88,148,39,40,54,47,9,226,5,4,2,6,33,160,2,23, -199,1,23,195,1,23,197,1,23,196,1,27,248,22,191,15,249,22,133,16,23, -198,2,23,199,2,28,23,193,2,192,86,94,23,193,1,28,23,197,1,27,90, -144,41,11,89,146,41,39,11,250,80,144,46,8,34,42,23,202,2,2,68,2, -37,27,248,22,185,15,23,196,1,27,250,2,158,2,23,197,2,23,204,1,248, -22,148,8,23,198,1,28,248,22,180,15,195,249,22,133,16,196,194,192,27,247, -22,162,16,249,22,5,20,20,96,88,148,39,40,51,47,9,226,5,6,2,3, -33,161,2,23,196,1,23,195,1,23,199,1,247,22,163,16,11,86,95,28,28, -248,22,180,15,23,194,2,10,28,248,22,179,15,23,194,2,10,28,248,22,154, -7,23,194,2,28,248,22,138,16,23,194,2,10,248,22,139,16,23,194,2,11, -12,252,22,183,11,23,200,2,2,42,39,23,198,2,23,199,2,28,28,248,22, -154,7,23,195,2,10,248,22,143,8,23,195,2,86,94,23,194,1,12,252,22, -183,11,23,200,2,2,72,40,23,198,2,23,199,1,90,144,42,11,89,146,42, -39,11,248,22,136,16,23,197,2,86,94,23,195,1,86,94,28,23,193,2,86, -95,23,198,1,23,196,1,12,250,22,186,11,23,201,1,2,73,23,199,1,249, -22,7,23,195,1,23,196,1,32,164,2,88,148,8,36,46,61,11,2,74,222, -33,165,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,203,2,39,23, -207,1,23,205,1,249,23,203,1,23,202,1,23,208,1,28,248,22,154,7,23, -204,2,249,22,169,8,23,205,1,8,63,23,203,1,28,248,22,134,4,248,22, -148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2,70,201, -192,28,248,22,180,15,197,248,22,181,15,197,247,22,182,15,32,166,2,88,148, -8,36,45,8,24,11,2,50,222,33,167,2,28,248,22,134,4,23,199,2,86, -95,23,198,1,23,194,1,19,248,22,148,8,23,195,2,19,248,22,148,8,23, -196,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,205,2,39,23,204, -4,2,51,249,23,206,1,23,204,1,23,202,4,28,248,22,154,7,23,207,2, -249,22,169,8,23,208,1,8,63,23,206,1,28,248,22,134,4,248,22,148,8, -23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2,70,204,192,28, -248,22,180,15,200,248,22,181,15,200,247,22,182,15,2,2,27,248,22,183,3, -23,200,1,28,249,22,170,9,8,46,249,22,149,8,23,198,2,23,197,2,27, -248,22,182,3,23,195,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23, -205,2,39,23,204,1,23,203,1,249,23,206,1,23,204,1,23,202,1,28,248, -22,154,7,23,207,2,249,22,169,8,23,208,1,8,63,23,206,1,28,248,22, -134,4,248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2, -69,2,70,204,192,28,248,22,180,15,200,248,22,181,15,200,247,22,182,15,28, -248,22,134,4,23,194,2,86,95,23,195,1,23,193,1,19,248,22,148,8,23, -196,2,19,248,22,148,8,23,197,2,249,22,189,15,27,251,22,155,8,250,22, -154,8,23,206,2,39,23,204,4,2,51,249,23,207,1,23,205,1,23,202,4, -28,248,22,154,7,23,208,2,249,22,169,8,23,209,1,8,63,23,207,1,28, -248,22,134,4,248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2, -37,2,69,2,70,205,192,28,248,22,180,15,201,248,22,181,15,201,247,22,182, -15,2,2,27,248,22,183,3,23,195,1,28,249,22,170,9,8,46,249,22,149, -8,23,199,2,23,197,2,27,248,22,182,3,23,195,2,249,22,189,15,27,251, -22,155,8,250,22,154,8,23,206,2,39,23,204,1,23,204,1,249,23,207,1, -23,205,1,23,202,1,28,248,22,154,7,23,208,2,249,22,169,8,23,209,1, -8,63,23,207,1,28,248,22,134,4,248,22,148,8,23,195,2,86,94,23,193, -1,251,22,185,11,2,37,2,69,2,70,205,192,28,248,22,180,15,201,248,22, -181,15,201,247,22,182,15,28,248,22,134,4,193,254,2,164,2,201,203,204,205, -248,22,148,8,202,2,51,248,22,148,8,202,27,248,22,183,3,194,28,249,22, -170,9,8,46,249,22,149,8,199,196,254,2,164,2,202,204,205,206,199,203,248, -22,182,3,200,253,2,166,2,201,202,203,204,205,198,90,144,41,11,89,146,41, -39,11,86,95,28,28,248,22,180,15,23,199,2,10,28,248,22,179,15,23,199, -2,10,28,248,22,154,7,23,199,2,28,248,22,138,16,23,199,2,10,248,22, -139,16,23,199,2,11,12,252,22,183,11,23,200,2,2,42,39,23,203,2,23, -204,2,28,28,248,22,154,7,23,200,2,10,248,22,143,8,23,200,2,12,252, -22,183,11,23,200,2,2,72,40,23,203,2,23,204,2,90,144,42,11,89,146, -42,39,11,248,22,136,16,23,202,2,86,94,23,195,1,86,94,28,192,12,250, -22,186,11,23,201,1,2,73,23,204,2,249,22,7,194,195,27,248,22,185,15, -23,196,1,27,19,248,22,148,8,23,196,2,28,248,22,134,4,23,194,4,86, -94,23,199,1,19,248,22,148,8,23,197,2,19,248,22,148,8,23,198,2,249, -22,189,15,27,251,22,155,8,250,22,154,8,23,207,2,39,23,204,4,2,51, -249,23,211,1,23,206,1,23,202,4,28,248,22,154,7,23,212,2,249,22,169, -8,23,213,1,8,63,23,211,1,28,248,22,134,4,248,22,148,8,23,195,2, -86,94,23,193,1,251,22,185,11,2,37,2,69,2,70,23,17,192,28,248,22, -180,15,205,248,22,181,15,205,247,22,182,15,2,2,27,248,22,183,3,23,195, -4,28,249,22,170,9,8,46,249,22,149,8,23,200,2,23,197,2,27,248,22, -182,3,23,195,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,207,2, -39,23,204,1,23,208,1,249,23,211,1,23,206,1,23,202,1,28,248,22,154, -7,23,212,2,249,22,169,8,23,213,1,8,63,23,211,1,28,248,22,134,4, -248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2, -70,23,17,192,28,248,22,180,15,205,248,22,181,15,205,247,22,182,15,28,248, -22,134,4,23,194,2,86,95,23,200,1,23,193,1,254,2,164,2,23,203,2, -23,208,1,23,209,1,23,210,1,248,22,148,8,23,204,2,2,51,248,22,148, -8,23,204,1,27,248,22,183,3,23,195,1,28,249,22,170,9,8,46,249,22, -149,8,23,201,2,23,197,2,254,2,164,2,23,204,1,23,209,1,23,210,1, -23,211,1,23,200,2,23,208,1,248,22,182,3,23,201,1,253,2,166,2,23, -203,1,23,207,1,23,208,1,23,209,1,23,210,1,23,199,1,2,28,248,22, -180,15,195,249,22,133,16,196,194,192,32,169,2,88,148,8,36,43,61,11,2, -50,222,33,170,2,28,248,22,134,4,23,197,2,86,94,23,196,1,19,248,22, -148,8,23,195,2,35,248,22,148,8,23,196,2,249,22,189,15,27,251,22,155, -8,250,22,154,8,23,205,1,39,23,204,4,2,51,2,51,28,248,22,154,7, -23,205,2,249,22,169,8,23,206,1,8,63,23,204,1,28,248,22,134,4,248, -22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2,70, -202,192,28,248,22,180,15,198,248,22,181,15,198,247,22,182,15,2,27,248,22, -183,3,23,198,1,28,249,22,170,9,8,46,249,22,149,8,23,198,2,23,197, -2,35,248,22,182,3,23,195,2,249,22,189,15,27,251,22,155,8,250,22,154, -8,23,205,1,39,23,204,1,2,51,2,51,28,248,22,154,7,23,205,2,249, -22,169,8,23,206,1,8,63,23,204,1,28,248,22,134,4,248,22,148,8,23, -195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2,70,202,192,28,248, -22,180,15,198,248,22,181,15,198,247,22,182,15,28,248,22,134,4,23,194,2, -86,94,23,193,1,19,248,22,148,8,23,196,2,35,248,22,148,8,23,197,2, -249,22,189,15,27,251,22,155,8,250,22,154,8,23,206,1,39,23,204,4,2, -51,2,51,28,248,22,154,7,23,206,2,249,22,169,8,23,207,1,8,63,23, -205,1,28,248,22,134,4,248,22,148,8,23,195,2,86,94,23,193,1,251,22, -185,11,2,37,2,69,2,70,203,192,28,248,22,180,15,199,248,22,181,15,199, -247,22,182,15,2,27,248,22,183,3,23,195,1,28,249,22,170,9,8,46,249, -22,149,8,23,199,2,23,197,2,35,248,22,182,3,23,195,2,249,22,189,15, -27,251,22,155,8,250,22,154,8,23,206,1,39,23,204,1,2,51,2,51,28, -248,22,154,7,23,206,2,249,22,169,8,23,207,1,8,63,23,205,1,28,248, -22,134,4,248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37, -2,69,2,70,203,192,28,248,22,180,15,199,248,22,181,15,199,247,22,182,15, -251,2,169,2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28, -248,22,180,15,23,196,2,10,28,248,22,179,15,23,196,2,10,28,248,22,154, -7,23,196,2,28,248,22,138,16,23,196,2,10,248,22,139,16,23,196,2,11, -12,252,22,183,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,154, -7,23,197,2,10,248,22,143,8,23,197,2,12,252,22,183,11,2,37,2,72, -40,23,200,2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,136,16,23, -199,2,86,94,23,195,1,86,94,28,192,12,250,22,186,11,2,37,2,73,23, -201,2,249,22,7,194,195,27,248,22,185,15,23,196,1,27,251,2,169,2,23, -198,2,23,201,1,23,202,1,248,22,148,8,23,199,1,28,248,22,180,15,195, -249,22,133,16,196,194,192,2,51,252,80,144,44,8,35,42,2,37,2,51,32, -0,88,148,8,36,41,46,11,9,222,33,172,2,198,199,32,174,2,88,148,8, -36,43,60,11,2,50,222,33,177,2,32,175,2,88,148,8,36,45,60,11,2, -74,222,33,176,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,203,2, -39,23,206,1,23,204,1,249,22,154,8,23,202,1,23,207,1,28,248,22,154, -7,23,203,2,249,22,169,8,23,204,1,8,63,23,202,1,28,248,22,134,4, -248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2, -70,200,192,28,248,22,180,15,196,248,22,181,15,196,247,22,182,15,28,248,22, -134,4,23,197,2,86,94,23,196,1,19,248,22,148,8,23,195,2,19,248,22, -148,8,23,196,2,249,22,189,15,27,251,22,155,8,250,22,154,8,23,205,2, -39,23,204,4,2,51,249,22,154,8,23,204,1,23,202,4,28,248,22,154,7, -23,205,2,249,22,169,8,23,206,1,8,63,23,204,1,28,248,22,134,4,248, -22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2,37,2,69,2,70, -202,192,28,248,22,180,15,198,248,22,181,15,198,247,22,182,15,2,2,27,248, -22,183,3,23,198,1,28,249,22,170,9,8,46,249,22,149,8,23,198,2,23, -197,2,27,248,22,182,3,23,195,2,249,22,189,15,27,251,22,155,8,250,22, -154,8,23,205,2,39,23,204,1,2,71,249,22,154,8,23,204,1,23,202,1, -28,248,22,154,7,23,205,2,249,22,169,8,23,206,1,8,63,23,204,1,28, -248,22,134,4,248,22,148,8,23,195,2,86,94,23,193,1,251,22,185,11,2, -37,2,69,2,70,202,192,28,248,22,180,15,198,248,22,181,15,198,247,22,182, -15,28,248,22,134,4,193,253,2,175,2,199,200,201,248,22,148,8,200,2,51, -248,22,148,8,200,27,248,22,183,3,194,28,249,22,170,9,8,46,249,22,149, -8,198,196,253,2,175,2,200,201,202,198,2,71,248,22,182,3,199,251,2,174, -2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248,22,180, -15,23,196,2,10,28,248,22,179,15,23,196,2,10,28,248,22,154,7,23,196, -2,28,248,22,138,16,23,196,2,10,248,22,139,16,23,196,2,11,12,252,22, -183,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,154,7,23,197, -2,10,248,22,143,8,23,197,2,12,252,22,183,11,2,37,2,72,40,23,200, -2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,136,16,23,199,2,86, -94,23,195,1,86,94,28,192,12,250,22,186,11,2,37,2,73,23,201,2,249, -22,7,194,195,27,248,22,185,15,23,196,1,27,251,2,174,2,23,198,2,23, -201,1,23,202,1,248,22,148,8,23,199,1,28,248,22,180,15,195,249,22,133, -16,196,194,192,252,80,144,44,8,35,42,2,37,2,71,22,154,8,198,199,249, -247,22,177,5,23,195,1,11,249,247,22,177,5,194,11,28,248,22,89,23,195, -2,9,27,27,248,22,82,23,197,2,28,248,22,140,16,23,194,2,248,22,143, -16,23,194,1,28,248,22,139,16,23,194,2,90,144,42,11,89,146,42,39,11, -248,22,136,16,249,22,141,16,250,80,144,50,43,42,248,22,156,16,2,56,11, -11,248,22,156,16,2,57,86,95,23,195,1,23,194,1,248,22,143,16,249,22, -141,16,23,199,1,23,196,1,27,250,80,144,45,43,42,248,22,156,16,2,56, -23,197,1,10,28,23,193,2,248,22,143,16,23,194,1,11,28,23,193,2,249, -22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157,16,27,248,22,171, -20,23,199,1,28,248,22,89,23,194,2,9,27,248,80,144,45,56,42,248,22, -82,23,196,2,28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198, -1,247,22,157,16,248,80,144,47,8,50,42,248,22,171,20,23,198,1,86,94, -23,193,1,248,80,144,45,8,50,42,248,22,171,20,23,196,1,86,94,23,193, -1,27,248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,27,248,80,144, -43,56,42,248,22,82,23,196,2,28,23,193,2,249,22,81,248,22,143,16,249, -22,141,16,23,198,1,247,22,157,16,248,80,144,45,8,50,42,248,22,171,20, -23,198,1,86,94,23,193,1,248,80,144,43,8,50,42,248,22,171,20,23,196, -1,28,248,22,89,23,195,2,9,27,27,248,22,82,23,197,2,28,248,22,140, -16,23,194,2,248,22,143,16,23,194,1,28,248,22,139,16,23,194,2,90,144, -42,11,89,146,42,39,11,248,22,136,16,249,22,141,16,250,80,144,50,43,42, -248,22,156,16,2,56,11,11,248,22,156,16,2,57,86,95,23,195,1,23,194, -1,248,22,143,16,249,22,141,16,23,199,1,23,196,1,27,250,80,144,45,43, -42,248,22,156,16,2,56,23,197,1,10,28,23,193,2,248,22,143,16,23,194, -1,11,28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1,247, -22,157,16,27,248,22,171,20,23,199,1,28,248,22,89,23,194,2,9,27,248, -80,144,45,56,42,248,22,82,23,196,2,28,23,193,2,249,22,81,248,22,143, -16,249,22,141,16,23,198,1,247,22,157,16,248,80,144,47,8,51,42,248,22, -171,20,23,198,1,86,94,23,193,1,248,80,144,45,8,51,42,248,22,171,20, -23,196,1,86,94,23,193,1,27,248,22,171,20,23,197,1,28,248,22,89,23, -194,2,9,27,248,80,144,43,56,42,248,22,82,23,196,2,28,23,193,2,249, -22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157,16,248,80,144,45, -8,51,42,248,22,171,20,23,198,1,86,94,23,193,1,248,80,144,43,8,51, -42,248,22,171,20,23,196,1,27,248,22,156,16,2,58,28,248,22,140,16,23, -194,2,248,22,143,16,23,194,1,28,248,22,139,16,23,194,2,90,144,42,11, -89,146,42,39,11,248,22,136,16,249,22,141,16,250,80,144,49,43,42,248,22, -156,16,2,56,11,11,248,22,156,16,2,57,86,95,23,195,1,23,194,1,248, -22,143,16,249,22,141,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248, -22,156,16,2,56,23,197,1,10,28,23,193,2,248,22,143,16,23,194,1,11, -28,248,22,89,23,195,2,9,27,27,248,22,82,23,197,2,28,248,22,140,16, -23,194,2,248,22,143,16,23,194,1,28,248,22,139,16,23,194,2,90,144,42, -11,89,146,42,39,11,248,22,136,16,249,22,141,16,250,80,144,50,43,42,248, -22,156,16,2,56,11,11,248,22,156,16,2,57,86,95,23,195,1,23,194,1, -248,22,143,16,249,22,141,16,23,199,1,23,196,1,27,250,80,144,45,43,42, -248,22,156,16,2,56,23,197,1,10,28,23,193,2,248,22,143,16,23,194,1, -11,28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1,247,22, -157,16,27,248,22,171,20,23,199,1,28,248,22,89,23,194,2,9,27,27,248, -22,82,23,196,2,28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28, -248,22,139,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249, -22,141,16,250,80,144,54,43,42,248,22,156,16,2,56,11,11,248,22,156,16, -2,57,86,95,23,195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1, -23,196,1,27,250,80,144,49,43,42,248,22,156,16,2,56,23,197,1,10,28, -23,193,2,248,22,143,16,23,194,1,11,28,23,193,2,249,22,81,248,22,143, -16,249,22,141,16,23,198,1,247,22,157,16,27,248,22,171,20,23,198,1,28, -248,22,89,23,194,2,9,27,248,80,144,49,56,42,248,22,82,23,196,2,28, -23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157,16, -248,80,144,51,8,53,42,248,22,171,20,23,198,1,86,94,23,193,1,248,80, -144,49,8,53,42,248,22,171,20,23,196,1,86,94,23,193,1,27,248,22,171, -20,23,196,1,28,248,22,89,23,194,2,9,27,248,80,144,47,56,42,248,22, -82,23,196,2,28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198, -1,247,22,157,16,248,80,144,49,8,53,42,248,22,171,20,23,198,1,86,94, -23,193,1,248,80,144,47,8,53,42,248,22,171,20,23,196,1,86,94,23,193, -1,27,248,22,171,20,23,197,1,28,248,22,89,23,194,2,9,27,27,248,22, -82,23,196,2,28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28,248, -22,139,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249,22, -141,16,250,80,144,52,43,42,248,22,156,16,2,56,11,11,248,22,156,16,2, -57,86,95,23,195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1,23, -196,1,27,250,80,144,47,43,42,248,22,156,16,2,56,23,197,1,10,28,23, -193,2,248,22,143,16,23,194,1,11,28,23,193,2,249,22,81,248,22,143,16, -249,22,141,16,23,198,1,247,22,157,16,27,248,22,171,20,23,198,1,28,248, -22,89,23,194,2,9,27,248,80,144,47,56,42,248,22,82,23,196,2,28,23, -193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157,16,248, -80,144,49,8,53,42,248,22,171,20,23,198,1,86,94,23,193,1,248,80,144, -47,8,53,42,248,22,171,20,23,196,1,86,94,23,193,1,27,248,22,171,20, -23,196,1,28,248,22,89,23,194,2,9,27,248,80,144,45,56,42,248,22,82, -23,196,2,28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1, -247,22,157,16,248,80,144,47,8,53,42,248,22,171,20,23,198,1,86,94,23, -193,1,248,80,144,45,8,53,42,248,22,171,20,23,196,1,27,247,22,164,16, -27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44,41,28,23, -196,2,27,249,22,176,8,247,22,175,8,2,75,28,192,249,22,166,8,194,7, -63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200, -1,250,22,133,16,248,22,156,16,2,61,250,22,159,2,23,205,1,2,59,247, -22,172,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,50,42,250,22, -95,9,248,22,91,248,22,156,16,2,55,9,28,193,249,22,81,195,194,192,27, -247,22,164,16,27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43, -44,41,28,23,196,2,27,249,22,176,8,247,22,175,8,2,75,28,192,249,22, -166,8,194,7,63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76, -27,28,23,200,1,250,22,133,16,248,22,156,16,2,61,250,22,159,2,23,205, -1,2,59,247,22,172,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8, -51,42,250,22,95,23,207,1,248,22,91,248,22,156,16,2,55,9,28,193,249, -22,81,195,194,192,27,247,22,164,16,27,248,80,144,42,58,42,249,80,144,44, -55,40,40,80,144,44,8,52,42,249,80,144,43,44,41,28,23,196,2,27,249, -22,176,8,247,22,175,8,2,75,28,192,249,22,166,8,194,7,63,2,66,2, -66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1,250,22,133, -16,248,22,156,16,2,61,250,22,159,2,23,205,1,2,59,247,22,172,8,2, -77,86,94,23,199,1,11,27,27,250,22,95,23,207,1,248,22,91,248,22,156, -16,2,55,23,208,1,28,248,22,89,23,194,2,9,27,27,248,22,82,23,196, -2,28,248,22,140,16,23,194,2,248,22,143,16,23,194,1,28,248,22,139,16, -23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,249,22,141,16,250, -80,144,60,43,42,248,22,156,16,2,56,11,11,248,22,156,16,2,57,86,95, -23,195,1,23,194,1,248,22,143,16,249,22,141,16,23,199,1,23,196,1,27, -250,80,144,55,43,42,248,22,156,16,2,56,23,197,1,10,28,23,193,2,248, -22,143,16,23,194,1,11,28,23,193,2,249,22,81,248,22,143,16,249,22,141, -16,23,198,1,247,22,157,16,27,248,22,171,20,23,198,1,28,248,22,89,23, -194,2,9,27,248,80,144,55,56,42,248,22,82,23,196,2,28,23,193,2,249, -22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157,16,248,80,144,57, -8,53,42,248,22,171,20,23,198,1,86,94,23,193,1,248,80,144,55,8,53, -42,248,22,171,20,23,196,1,86,94,23,193,1,27,248,22,171,20,23,196,1, -28,248,22,89,23,194,2,9,27,248,80,144,53,56,42,248,22,82,23,196,2, -28,23,193,2,249,22,81,248,22,143,16,249,22,141,16,23,198,1,247,22,157, -16,248,80,144,55,8,53,42,248,22,171,20,23,198,1,86,94,23,193,1,248, -80,144,53,8,53,42,248,22,171,20,23,196,1,28,193,249,22,81,195,194,192, -27,20,13,144,80,144,40,46,40,26,9,80,144,49,47,40,249,22,31,11,80, -144,51,46,40,22,153,15,10,22,160,15,10,22,161,15,10,22,162,15,10,248, -22,149,6,23,196,2,28,248,22,149,7,23,194,2,12,86,94,248,22,178,9, -23,194,1,27,20,13,144,80,144,41,46,40,26,9,80,144,50,47,40,249,22, -31,11,80,144,52,46,40,22,153,15,10,22,160,15,10,22,161,15,10,22,162, -15,10,248,22,149,6,23,197,2,28,248,22,149,7,23,194,2,12,86,94,248, -22,178,9,23,194,1,27,20,13,144,80,144,42,46,40,26,9,80,144,51,47, -40,249,22,31,11,80,144,53,46,40,22,153,15,10,22,160,15,10,22,161,15, -10,22,162,15,10,248,22,149,6,23,198,2,28,248,22,149,7,23,194,2,12, -86,94,248,22,178,9,23,194,1,248,80,144,43,8,54,42,197,86,94,249,22, -140,7,247,22,173,5,23,196,2,248,22,164,6,249,22,137,4,39,249,22,185, -3,28,23,198,2,23,198,1,86,94,23,198,1,39,23,199,1,27,248,22,190, -5,28,23,198,2,86,95,23,197,1,23,196,1,23,198,1,86,94,23,198,1, -27,250,80,144,45,43,42,248,22,156,16,2,56,11,11,27,248,22,140,4,23, -199,1,27,28,23,194,2,23,194,1,86,94,23,194,1,39,27,248,22,140,4, -23,202,1,249,22,141,6,23,198,1,20,20,95,88,148,8,36,39,51,11,9, -224,3,2,33,190,2,23,195,1,23,196,1,248,80,144,41,8,54,42,193,145, -39,9,20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2, -2,29,11,11,11,11,11,11,11,9,9,11,11,11,10,46,80,143,39,39,20, -121,145,2,1,54,16,40,2,3,2,4,2,5,2,6,2,7,2,8,2,9, -30,2,11,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110, -45,107,101,121,11,6,30,2,11,1,23,101,120,116,101,110,100,45,112,97,114, -97,109,101,116,101,114,105,122,97,116,105,111,110,11,4,2,12,2,13,2,14, -2,15,2,16,2,17,2,18,30,2,11,1,19,99,97,99,104,101,45,99,111, -110,102,105,103,117,114,97,116,105,111,110,11,1,2,19,2,20,2,21,2,22, -2,23,2,24,2,25,2,26,2,27,2,28,2,29,30,2,11,1,21,101,120, -99,101,112,116,105,111,110,45,104,97,110,100,108,101,114,45,107,101,121,11,3, -2,30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2, -40,16,0,40,42,39,16,0,39,16,19,2,13,2,14,2,12,2,25,2,4, -2,35,2,23,2,24,2,19,2,29,2,33,2,21,2,22,2,31,2,27,2, -30,2,32,2,36,2,28,58,11,11,11,16,17,2,9,2,17,2,15,2,40, -2,16,2,7,2,26,2,39,2,18,2,20,2,38,2,5,2,34,2,8,2, -37,2,3,2,6,16,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11, -11,11,11,16,17,2,9,2,17,2,15,2,40,2,16,2,7,2,26,2,39, -2,18,2,20,2,38,2,5,2,34,2,8,2,37,2,3,2,6,56,56,40, -12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0, -39,39,16,51,20,15,16,2,32,0,88,148,8,36,40,48,11,2,3,222,33, -78,80,144,39,39,40,20,15,16,2,249,22,156,7,7,92,7,92,80,144,39, -40,40,20,15,16,2,88,148,8,36,40,57,41,2,5,223,0,33,83,80,144, -39,41,40,20,15,16,2,88,148,8,36,41,61,41,2,6,223,0,33,85,80, -144,39,42,40,20,15,16,2,20,26,96,2,7,88,148,8,36,42,8,24,8, -32,9,223,0,33,92,88,148,8,36,41,50,55,9,223,0,33,93,88,148,8, -36,40,49,55,9,223,0,33,94,80,144,39,43,40,20,15,16,2,27,248,22, -168,16,248,22,168,8,27,28,249,22,170,9,247,22,181,8,2,43,6,1,1, -59,6,1,1,58,250,22,138,8,6,14,14,40,91,94,126,97,93,42,41,126, -97,40,46,42,41,23,196,2,23,196,1,88,148,8,36,41,51,11,2,8,223, -0,33,98,80,144,39,44,40,20,15,16,2,88,148,39,40,8,44,8,128,6, -2,9,223,0,33,99,80,144,39,45,40,20,15,16,2,32,0,88,148,8,36, -41,50,11,2,12,222,33,100,80,144,39,48,40,20,15,16,2,32,0,88,148, -8,36,42,51,11,2,13,222,33,102,80,144,39,49,40,20,15,16,2,32,0, -88,148,8,36,41,49,11,2,14,222,33,103,80,144,39,50,40,20,15,16,2, -88,148,39,42,53,8,128,128,2,15,223,0,33,105,80,144,39,51,40,20,15, -16,2,88,148,39,44,55,8,128,128,2,17,223,0,33,107,80,144,39,53,40, -20,15,16,2,88,148,39,39,56,55,9,223,0,33,108,80,144,39,8,40,42, -20,15,16,2,88,148,39,39,47,16,4,39,40,8,128,4,39,2,18,223,0, -33,109,80,144,39,54,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33, -110,80,144,39,8,41,42,20,15,16,2,88,148,39,39,47,16,4,39,40,8, -128,8,39,2,20,223,0,33,111,80,144,39,57,40,20,15,16,2,88,148,8, -36,39,8,44,8,128,6,9,223,0,33,112,80,144,39,8,42,42,20,15,16, -2,88,148,8,36,40,50,16,4,39,39,8,128,16,39,2,21,223,0,33,113, -80,144,39,58,40,20,15,16,2,20,28,143,32,0,88,148,39,40,48,11,2, -22,222,33,114,32,0,88,148,39,40,48,11,2,22,222,33,115,80,144,39,59, -40,20,15,16,2,88,148,8,36,40,50,8,240,0,128,0,0,2,23,223,0, -33,116,80,144,39,60,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33, -117,80,144,39,8,43,42,20,15,16,2,88,148,8,36,40,51,16,4,39,40, -8,128,32,39,2,24,223,0,33,118,80,144,39,61,40,20,15,16,2,88,148, -39,40,56,55,2,19,223,0,33,119,80,144,39,56,40,20,15,16,2,88,148, -8,36,41,58,16,4,8,240,0,128,0,0,8,32,8,128,64,39,2,50,223, -0,33,120,80,144,39,8,44,42,20,15,16,2,88,148,8,36,42,52,16,4, -39,39,8,128,64,39,2,25,223,0,33,121,80,144,39,8,23,40,20,15,16, -2,88,148,39,39,56,55,9,223,0,33,122,80,144,39,8,45,42,20,15,16, -2,88,148,8,36,39,57,16,4,8,240,0,128,0,0,8,137,2,8,128,128, -39,2,26,223,0,33,123,80,144,39,8,24,40,20,15,16,2,247,22,141,2, -80,144,39,8,25,40,20,15,16,2,248,22,16,67,115,116,97,109,112,80,144, -39,8,26,40,20,15,16,2,88,148,39,40,49,8,240,0,0,0,4,9,223, -0,33,125,80,144,39,8,46,42,20,15,16,2,88,148,39,41,51,16,4,39, -8,128,80,8,240,0,64,0,0,39,2,29,223,0,33,133,2,80,144,39,8, -27,40,20,15,16,2,32,0,88,148,8,36,40,48,11,2,30,222,33,134,2, -80,144,39,8,29,40,20,15,16,2,88,148,8,36,42,48,8,240,0,0,0, -2,74,109,97,107,101,45,104,97,110,100,108,101,114,223,0,33,136,2,80,144, -39,8,47,42,20,15,16,2,88,148,39,40,47,16,4,8,128,6,8,128,104, -8,240,0,128,0,0,39,2,31,223,0,33,146,2,80,144,39,8,30,40,20, -15,16,2,88,148,39,41,59,16,2,39,8,240,0,128,0,0,2,32,223,0, -33,148,2,80,144,39,8,31,40,20,15,16,2,88,148,8,36,41,61,16,4, -39,8,240,0,64,0,0,39,40,2,50,223,0,33,149,2,80,144,39,8,48, -42,20,15,16,2,88,148,39,47,8,33,16,4,39,39,40,41,67,99,108,111, -111,112,223,0,33,156,2,80,144,39,8,49,42,20,15,16,2,88,148,39,44, -8,25,16,4,39,8,240,0,192,0,0,39,42,2,16,223,0,33,157,2,80, -144,39,52,40,20,15,16,2,88,148,39,42,58,16,4,47,39,43,39,2,33, -223,0,33,162,2,80,144,39,8,32,40,20,15,16,2,32,0,88,148,39,42, -53,11,2,35,222,33,163,2,80,144,39,8,34,40,20,15,16,2,32,0,88, -148,8,36,44,8,27,11,2,36,222,33,168,2,80,144,39,8,35,40,20,15, -16,2,20,28,143,32,0,88,148,8,36,41,55,11,2,37,222,33,171,2,88, -148,8,100,41,52,16,4,39,39,47,39,2,37,223,0,33,173,2,80,144,39, -8,36,40,20,15,16,2,20,28,143,32,0,88,148,8,36,41,55,11,2,34, -222,33,178,2,88,148,8,100,41,52,16,4,39,39,47,39,2,34,223,0,33, -179,2,80,144,39,8,33,40,20,15,16,2,20,28,143,32,0,88,148,39,40, -47,11,2,38,222,33,180,2,32,0,88,148,39,40,47,11,2,38,222,33,181, -2,80,144,39,8,37,40,20,15,16,2,88,148,8,36,40,58,16,4,55,41, -39,43,2,50,223,0,33,182,2,80,144,39,8,50,42,20,15,16,2,88,148, -8,36,40,58,16,4,55,41,39,47,2,50,223,0,33,183,2,80,144,39,8, -51,42,20,15,16,2,88,148,39,39,56,55,9,223,0,33,184,2,80,144,39, -8,52,42,20,15,16,2,88,148,8,36,40,8,23,16,4,55,41,39,8,32, -2,50,223,0,33,185,2,80,144,39,8,53,42,20,15,16,2,20,26,96,2, -39,88,148,39,39,60,16,4,8,32,8,140,2,39,43,9,223,0,33,186,2, -88,148,39,40,61,16,4,8,32,8,140,2,39,47,9,223,0,33,187,2,88, -148,39,41,8,30,16,4,8,48,8,139,2,39,8,48,9,223,0,33,188,2, -80,144,39,8,38,40,20,15,16,2,88,148,8,36,40,60,16,4,8,128,6, -39,39,8,64,2,50,223,0,33,189,2,80,144,39,8,54,42,20,15,16,2, -88,148,8,36,42,56,16,4,55,39,39,8,64,2,40,223,0,33,191,2,80, -144,39,8,39,40,95,29,94,2,10,70,35,37,107,101,114,110,101,108,11,29, -94,2,10,71,35,37,109,105,110,45,115,116,120,11,2,11,9,9,9,39,9, + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,54,46,52,46,48,46,50,84,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,192,0,0,0,1,0,0,8,0,16,0, +29,0,34,0,51,0,63,0,85,0,114,0,158,0,164,0,178,0,193,0,211, +0,223,0,239,0,253,0,19,1,39,1,73,1,90,1,107,1,130,1,145,1, +184,1,202,1,233,1,245,1,6,2,18,2,33,2,57,2,89,2,118,2,134, +2,152,2,172,2,193,2,211,2,242,2,0,3,17,3,61,3,69,3,74,3, +118,3,125,3,135,3,150,3,159,3,164,3,166,3,199,3,223,3,244,3,1, +4,11,4,20,4,31,4,49,4,62,4,72,4,82,4,88,4,93,4,105,4, +108,4,112,4,117,4,160,4,173,4,176,4,200,4,239,4,246,4,3,5,25, +5,36,5,66,5,89,5,97,5,121,5,142,5,91,6,121,6,212,9,235,9, +252,9,176,11,23,12,37,12,241,12,217,14,226,14,235,14,249,14,3,15,23, +16,126,16,251,16,68,17,141,17,243,17,16,18,87,18,221,18,36,19,243,19, +105,20,118,20,236,20,249,20,100,21,167,21,180,21,191,21,87,22,205,22,249, +22,104,23,182,25,206,25,68,26,150,27,157,27,209,27,222,27,212,28,228,28, +83,29,242,29,249,29,126,31,203,31,220,31,120,32,140,32,200,32,207,32,67, +33,121,33,140,33,91,34,107,34,68,35,69,36,106,36,115,36,202,37,47,40, +63,40,130,40,151,40,171,40,191,40,248,40,221,43,187,44,203,44,174,45,232, +45,9,46,141,46,44,47,60,47,157,47,174,47,252,49,47,52,63,52,37,54, +225,54,227,54,254,54,14,55,30,55,127,55,194,56,126,57,142,57,151,57,158, +57,224,58,34,60,152,60,198,63,72,64,204,64,149,66,99,67,141,67,249,67, +0,0,197,75,0,0,3,1,5,105,110,115,112,48,69,35,37,117,116,105,108, +115,74,112,97,116,104,45,115,116,114,105,110,103,63,66,98,115,98,115,78,110, +111,114,109,97,108,45,99,97,115,101,45,112,97,116,104,73,114,101,114,111,111, +116,45,112,97,116,104,1,20,102,105,110,100,45,101,120,101,99,117,116,97,98, +108,101,45,112,97,116,104,1,27,112,97,116,104,45,108,105,115,116,45,115,116, +114,105,110,103,45,62,112,97,116,104,45,108,105,115,116,1,42,99,97,108,108, +45,119,105,116,104,45,100,101,102,97,117,108,116,45,114,101,97,100,105,110,103, +45,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,67,113,117,111, +116,101,29,94,2,10,70,35,37,112,97,114,97,109,122,11,76,45,99,104,101, +99,107,45,114,101,108,112,97,116,104,79,45,99,104,101,99,107,45,99,111,108, +108,101,99,116,105,111,110,73,45,99,104,101,99,107,45,102,97,105,108,77,99, +111,108,108,101,99,116,105,111,110,45,112,97,116,104,75,102,105,110,100,45,99, +111,108,45,102,105,108,101,1,20,99,111,108,108,101,99,116,105,111,110,45,102, +105,108,101,45,112,97,116,104,1,18,102,105,110,100,45,109,97,105,110,45,99, +111,108,108,101,99,116,115,1,32,101,120,101,45,114,101,108,97,116,105,118,101, +45,112,97,116,104,45,62,99,111,109,112,108,101,116,101,45,112,97,116,104,78, +102,105,110,100,45,109,97,105,110,45,99,111,110,102,105,103,78,103,101,116,45, +99,111,110,102,105,103,45,116,97,98,108,101,1,21,103,101,116,45,105,110,115, +116,97,108,108,97,116,105,111,110,45,110,97,109,101,76,99,111,101,114,99,101, +45,116,111,45,112,97,116,104,1,37,99,111,108,108,101,99,116,115,45,114,101, +108,97,116,105,118,101,45,112,97,116,104,45,62,99,111,109,112,108,101,116,101, +45,112,97,116,104,79,97,100,100,45,99,111,110,102,105,103,45,115,101,97,114, +99,104,1,29,102,105,110,100,45,108,105,98,114,97,114,121,45,99,111,108,108, +101,99,116,105,111,110,45,108,105,110,107,115,73,108,105,110,107,115,45,99,97, +99,104,101,78,115,116,97,109,112,45,112,114,111,109,112,116,45,116,97,103,73, +102,105,108,101,45,62,115,116,97,109,112,76,110,111,45,102,105,108,101,45,115, +116,97,109,112,63,1,22,103,101,116,45,108,105,110,107,101,100,45,99,111,108, +108,101,99,116,105,111,110,115,1,30,110,111,114,109,97,108,105,122,101,45,99, +111,108,108,101,99,116,105,111,110,45,114,101,102,101,114,101,110,99,101,1,27, +102,105,108,101,45,101,120,105,115,116,115,63,47,109,97,121,98,101,45,99,111, +109,112,105,108,101,100,77,112,97,116,104,45,97,100,100,45,115,117,102,102,105, +120,79,99,104,101,99,107,45,115,117,102,102,105,120,45,99,97,108,108,1,18, +112,97,116,104,45,97,100,106,117,115,116,45,115,117,102,102,105,120,1,19,112, +97,116,104,45,114,101,112,108,97,99,101,45,115,117,102,102,105,120,79,108,111, +97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,1,29,102,105,110,100, +45,108,105,98,114,97,114,121,45,99,111,108,108,101,99,116,105,111,110,45,112, +97,116,104,115,75,101,109,98,101,100,100,101,100,45,108,111,97,100,78,110,111, +114,109,97,108,45,112,97,116,104,45,99,97,115,101,6,41,41,40,111,114,47, +99,32,112,97,116,104,45,102,111,114,45,115,111,109,101,45,115,121,115,116,101, +109,63,32,112,97,116,104,45,115,116,114,105,110,103,63,41,69,119,105,110,100, +111,119,115,6,2,2,92,49,6,41,41,40,111,114,47,99,32,112,97,116,104, +45,115,116,114,105,110,103,63,32,112,97,116,104,45,102,111,114,45,115,111,109, +101,45,115,121,115,116,101,109,63,41,6,4,4,112,97,116,104,5,8,92,92, +63,92,82,69,76,92,6,12,12,112,97,116,104,45,115,116,114,105,110,103,63, +70,114,101,108,97,116,105,118,101,66,108,111,111,112,5,0,6,30,30,40,112, +114,111,99,101,100,117,114,101,45,97,114,105,116,121,45,105,110,99,108,117,100, +101,115,47,99,32,48,41,6,21,21,105,110,118,97,108,105,100,32,114,101,108, +97,116,105,118,101,32,112,97,116,104,6,18,18,40,97,110,121,47,99,32,46, +32,45,62,32,46,32,97,110,121,41,74,99,111,108,108,101,99,116,115,45,100, +105,114,71,101,120,101,99,45,102,105,108,101,70,111,114,105,103,45,100,105,114, +72,99,111,110,102,105,103,45,100,105,114,79,105,110,115,116,97,108,108,97,116, +105,111,110,45,110,97,109,101,6,10,10,108,105,110,107,115,46,114,107,116,100, +71,97,100,100,111,110,45,100,105,114,71,102,115,45,99,104,97,110,103,101,67, +101,114,114,111,114,66,114,111,111,116,73,115,116,97,116,105,99,45,114,111,111, +116,6,0,0,6,1,1,47,5,3,46,122,111,6,40,40,114,101,109,111,118, +105,110,103,32,115,117,102,102,105,120,32,109,97,107,101,115,32,112,97,116,104, +32,101,108,101,109,101,110,116,32,101,109,112,116,121,6,10,10,103,105,118,101, +110,32,112,97,116,104,5,1,95,6,21,21,40,111,114,47,99,32,115,116,114, +105,110,103,63,32,98,121,116,101,115,63,41,6,36,36,99,97,110,110,111,116, +32,97,100,100,32,97,32,115,117,102,102,105,120,32,116,111,32,97,32,114,111, +111,116,32,112,97,116,104,58,32,68,102,105,110,105,115,104,5,11,80,76,84, +67,79,76,76,69,67,84,83,1,20,99,111,108,108,101,99,116,115,45,115,101, +97,114,99,104,45,100,105,114,115,6,8,8,99,111,108,108,101,99,116,115,27, +248,22,181,15,194,28,192,192,28,248,22,156,7,194,27,248,22,140,16,195,28, +192,192,248,22,141,16,195,11,0,21,35,114,120,34,94,91,92,92,93,91,92, +92,93,91,63,93,91,92,92,93,34,0,6,35,114,120,34,47,34,0,22,35, +114,120,34,91,47,92,92,93,91,46,32,93,43,91,47,92,92,93,42,36,34, +0,19,35,114,120,34,91,32,46,93,43,40,91,47,92,92,93,42,41,36,34, +86,94,28,28,248,22,182,15,23,195,2,10,28,248,22,181,15,23,195,2,10, +28,248,22,156,7,23,195,2,28,248,22,140,16,23,195,2,10,248,22,141,16, +23,195,2,11,12,250,22,185,11,2,41,2,42,23,197,2,28,28,248,22,182, +15,23,195,2,249,22,172,9,248,22,183,15,23,197,2,2,43,249,22,172,9, +247,22,183,8,2,43,27,28,248,22,156,7,23,196,2,23,195,2,248,22,168, +8,248,22,186,15,23,197,2,28,249,22,178,16,2,79,23,195,2,28,248,22, +156,7,195,248,22,189,15,195,194,86,94,23,195,1,27,248,22,131,8,23,195, +1,249,22,190,15,248,22,171,8,250,22,186,16,2,80,28,249,22,178,16,2, +81,23,201,2,23,199,1,250,22,186,16,2,82,23,202,1,2,44,80,144,47, +40,41,2,43,28,248,22,156,7,194,248,22,189,15,194,193,0,28,35,114,120, +34,94,92,92,92,92,92,92,92,92,91,63,93,92,92,92,92,85,78,67,92, +92,92,92,34,86,95,28,28,28,248,22,181,15,23,195,2,10,28,248,22,156, +7,23,195,2,28,248,22,140,16,23,195,2,10,248,22,141,16,23,195,2,11, +10,248,22,182,15,23,195,2,12,252,22,185,11,2,6,2,45,39,23,199,2, +23,200,2,28,28,28,248,22,181,15,23,196,2,10,28,248,22,156,7,23,196, +2,28,248,22,140,16,23,196,2,10,248,22,141,16,23,196,2,11,10,248,22, +182,15,23,196,2,12,252,22,185,11,2,6,2,45,40,23,199,2,23,200,2, +27,28,248,22,182,15,23,196,2,248,22,183,15,23,196,2,247,22,184,15,86, +95,28,28,248,22,142,16,23,196,2,10,249,22,172,9,247,22,184,15,23,195, +2,12,253,22,187,11,2,6,6,54,54,112,97,116,104,32,105,115,32,110,111, +116,32,99,111,109,112,108,101,116,101,32,97,110,100,32,110,111,116,32,116,104, +101,32,112,108,97,116,102,111,114,109,39,115,32,99,111,110,118,101,110,116,105, +111,110,2,46,23,201,2,6,24,24,112,108,97,116,102,111,114,109,32,99,111, +110,118,101,110,116,105,111,110,32,116,121,112,101,247,22,184,15,28,249,22,172, +9,28,248,22,182,15,23,199,2,248,22,183,15,23,199,2,247,22,184,15,23, +195,2,12,253,22,187,11,2,6,6,37,37,103,105,118,101,110,32,112,97,116, +104,115,32,117,115,101,32,100,105,102,102,101,114,101,110,116,32,99,111,110,118, +101,110,116,105,111,110,115,2,46,23,201,2,6,9,9,114,111,111,116,32,112, +97,116,104,23,202,2,27,27,248,22,146,16,28,248,22,142,16,23,199,2,23, +198,1,248,22,143,16,23,199,1,86,94,28,28,248,22,182,15,23,194,2,10, +28,248,22,181,15,23,194,2,10,28,248,22,156,7,23,194,2,28,248,22,140, +16,23,194,2,10,248,22,141,16,23,194,2,11,12,250,22,185,11,2,41,2, +42,23,196,2,28,28,248,22,182,15,23,194,2,249,22,172,9,248,22,183,15, +23,196,2,2,43,249,22,172,9,247,22,183,8,2,43,27,28,248,22,156,7, +23,195,2,23,194,2,248,22,168,8,248,22,186,15,23,196,2,28,249,22,178, +16,2,79,23,195,2,28,248,22,156,7,194,248,22,189,15,194,193,86,94,23, +194,1,27,248,22,131,8,23,195,1,249,22,190,15,248,22,171,8,250,22,186, +16,2,80,28,249,22,178,16,2,81,23,201,2,23,199,1,250,22,186,16,2, +82,23,202,1,2,44,80,144,50,40,41,2,43,28,248,22,156,7,193,248,22, +189,15,193,192,27,248,22,186,15,23,195,2,28,249,22,172,9,23,197,2,66, +117,110,105,120,28,249,22,153,8,194,5,1,47,28,248,22,182,15,198,197,248, +22,189,15,198,249,22,135,16,199,249,22,190,15,249,22,156,8,248,22,186,15, +200,40,198,86,94,23,194,1,28,249,22,172,9,23,197,2,2,43,249,22,135, +16,23,200,1,249,22,190,15,28,249,22,178,16,0,27,35,114,120,34,94,92, +92,92,92,92,92,92,92,91,63,93,92,92,92,92,91,97,45,122,93,58,34, +23,199,2,251,22,157,8,2,47,250,22,156,8,203,43,44,5,1,92,249,22, +156,8,202,45,28,249,22,178,16,2,84,23,199,2,249,22,157,8,2,47,249, +22,156,8,200,43,28,249,22,178,16,2,84,23,199,2,249,22,157,8,2,47, +249,22,156,8,200,43,28,249,22,178,16,0,14,35,114,120,34,94,92,92,92, +92,92,92,92,92,34,23,199,2,249,22,157,8,5,4,85,78,67,92,249,22, +156,8,200,41,28,249,22,178,16,0,12,35,114,120,34,94,91,97,45,122,93, +58,34,198,249,22,157,8,250,22,156,8,201,39,40,249,22,156,8,200,41,12, +198,12,32,86,88,148,8,36,42,56,11,72,102,111,117,110,100,45,101,120,101, +99,222,33,89,32,87,88,148,8,36,43,61,11,66,110,101,120,116,222,33,88, +27,248,22,144,16,23,196,2,28,249,22,174,9,23,195,2,23,197,1,11,28, +248,22,140,16,23,194,2,27,249,22,135,16,23,197,1,23,196,1,28,23,197, +2,90,144,42,11,89,146,42,39,11,248,22,138,16,23,197,2,86,95,23,195, +1,23,194,1,27,28,23,202,2,27,248,22,144,16,23,199,2,28,249,22,174, +9,23,195,2,23,200,2,11,28,248,22,140,16,23,194,2,250,2,86,23,205, +2,23,206,2,249,22,135,16,23,200,2,23,198,1,250,2,86,23,205,2,23, +206,2,23,196,1,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,181, +15,23,196,2,27,249,22,135,16,23,198,2,23,205,2,28,28,248,22,130,16, +193,10,248,22,129,16,193,192,11,11,28,23,193,2,192,86,94,23,193,1,28, +23,203,2,11,27,248,22,144,16,23,200,2,28,249,22,174,9,194,23,201,1, +11,28,248,22,140,16,193,250,2,86,205,206,249,22,135,16,200,197,250,2,86, +205,206,195,192,86,94,23,194,1,28,23,196,2,90,144,42,11,89,146,42,39, +11,248,22,138,16,23,197,2,86,95,23,195,1,23,194,1,27,28,23,201,2, +27,248,22,144,16,23,199,2,28,249,22,174,9,23,195,2,23,200,2,11,28, +248,22,140,16,23,194,2,250,2,86,23,204,2,23,205,2,249,22,135,16,23, +200,2,23,198,1,250,2,86,23,204,2,23,205,2,23,196,1,11,28,23,193, +2,192,86,94,23,193,1,27,28,248,22,181,15,23,196,2,27,249,22,135,16, +23,198,2,23,204,2,28,28,248,22,130,16,193,10,248,22,129,16,193,192,11, +11,28,23,193,2,192,86,94,23,193,1,28,23,202,2,11,27,248,22,144,16, +23,200,2,28,249,22,174,9,194,23,201,1,11,28,248,22,140,16,193,250,2, +86,204,205,249,22,135,16,200,197,250,2,86,204,205,195,192,28,23,193,2,90, +144,42,11,89,146,42,39,11,248,22,138,16,23,199,2,86,95,23,195,1,23, +194,1,27,28,23,198,2,251,2,87,23,198,2,23,203,2,23,201,2,23,202, +2,11,28,23,193,2,192,86,94,23,193,1,27,28,248,22,181,15,195,27,249, +22,135,16,197,200,28,28,248,22,130,16,193,10,248,22,129,16,193,192,11,11, +28,192,192,28,198,11,251,2,87,198,203,201,202,194,32,90,88,148,8,36,43, +60,11,2,50,222,33,91,28,248,22,91,23,197,2,11,27,249,22,135,16,248, +22,143,16,248,22,84,23,201,2,23,196,2,28,248,22,129,16,23,194,2,250, +2,86,197,198,195,86,94,23,193,1,27,248,22,173,20,23,199,1,28,248,22, +91,23,194,2,11,27,249,22,135,16,248,22,143,16,248,22,84,23,198,2,23, +198,2,28,248,22,129,16,23,194,2,250,2,86,199,200,195,86,94,23,193,1, +27,248,22,173,20,23,196,1,28,248,22,91,23,194,2,11,27,249,22,135,16, +248,22,143,16,248,22,84,23,198,2,23,200,2,28,248,22,129,16,23,194,2, +250,2,86,201,202,195,86,94,23,193,1,27,248,22,173,20,23,196,1,28,248, +22,91,23,194,2,11,27,249,22,135,16,248,22,143,16,248,22,84,197,201,28, +248,22,129,16,193,250,2,86,203,204,195,251,2,90,203,204,205,248,22,173,20, +198,86,95,28,28,248,22,181,15,23,195,2,10,28,248,22,156,7,23,195,2, +28,248,22,140,16,23,195,2,10,248,22,141,16,23,195,2,11,12,250,22,185, +11,2,7,2,48,23,197,2,28,28,23,195,2,28,28,248,22,181,15,23,196, +2,10,28,248,22,156,7,23,196,2,28,248,22,140,16,23,196,2,10,248,22, +141,16,23,196,2,11,248,22,140,16,23,196,2,11,10,12,250,22,185,11,2, +7,6,45,45,40,111,114,47,99,32,35,102,32,40,97,110,100,47,99,32,112, +97,116,104,45,115,116,114,105,110,103,63,32,114,101,108,97,116,105,118,101,45, +112,97,116,104,63,41,41,23,198,2,28,28,248,22,140,16,23,195,2,90,144, +42,11,89,146,42,39,11,248,22,138,16,23,198,2,249,22,172,9,194,2,49, +11,27,249,22,178,8,247,22,177,8,5,4,80,65,84,72,27,28,23,194,2, +249,80,143,43,44,249,22,168,8,23,198,1,7,63,9,86,94,23,194,1,9, +27,28,249,22,172,9,247,22,183,8,2,43,249,22,83,248,22,190,15,5,1, +46,23,196,1,23,194,1,28,248,22,91,23,194,2,11,27,249,22,135,16,248, +22,143,16,248,22,84,23,198,2,23,200,2,28,248,22,129,16,23,194,2,250, +2,86,201,202,195,86,94,23,193,1,27,248,22,173,20,23,196,1,28,248,22, +91,23,194,2,11,27,249,22,135,16,248,22,143,16,248,22,84,23,198,2,23, +202,2,28,248,22,129,16,23,194,2,250,2,86,203,204,195,86,94,23,193,1, +27,248,22,173,20,23,196,1,28,248,22,91,23,194,2,11,27,249,22,135,16, +248,22,143,16,248,22,84,23,198,2,23,204,2,28,248,22,129,16,23,194,2, +250,2,86,205,206,195,86,94,23,193,1,27,248,22,173,20,23,196,1,28,248, +22,91,23,194,2,11,27,249,22,135,16,248,22,143,16,248,22,84,197,205,28, +248,22,129,16,193,250,2,86,23,15,23,16,195,251,2,90,23,15,23,16,23, +17,248,22,173,20,198,27,248,22,143,16,23,196,1,28,248,22,129,16,193,250, +2,86,198,199,195,11,250,80,144,42,43,42,196,197,11,250,80,144,42,43,42, +196,11,11,32,95,88,148,8,36,42,58,11,2,50,222,33,97,0,8,35,114, +120,35,34,92,34,34,27,249,22,174,16,23,197,2,23,198,2,28,23,193,2, +86,94,23,196,1,27,248,22,105,23,195,2,27,27,248,22,114,23,197,1,27, +249,22,174,16,23,201,2,23,196,2,28,23,193,2,86,94,23,194,1,27,248, +22,105,23,195,2,27,250,2,95,202,23,204,1,248,22,114,23,199,1,27,28, +249,22,172,9,247,22,183,8,2,43,250,22,186,16,2,96,23,198,1,2,51, +194,28,249,22,153,8,194,2,51,249,22,97,202,195,249,22,83,248,22,190,15, +195,195,86,95,23,199,1,23,193,1,27,28,249,22,172,9,247,22,183,8,2, +43,250,22,186,16,2,96,23,198,1,2,51,194,28,249,22,153,8,194,2,51, +249,22,97,200,9,249,22,83,248,22,190,15,195,9,27,28,249,22,172,9,247, +22,183,8,2,43,250,22,186,16,2,96,23,198,1,2,51,194,28,249,22,153, +8,194,2,51,249,22,97,198,195,249,22,83,248,22,190,15,195,195,86,95,23, +195,1,23,193,1,27,28,249,22,172,9,247,22,183,8,2,43,250,22,186,16, +2,96,23,200,1,2,51,196,28,249,22,153,8,194,2,51,249,22,97,196,9, +249,22,83,248,22,190,15,195,9,86,95,28,28,248,22,145,8,194,10,248,22, +156,7,194,12,250,22,185,11,2,8,6,21,21,40,111,114,47,99,32,98,121, +116,101,115,63,32,115,116,114,105,110,103,63,41,196,28,28,248,22,92,195,249, +22,4,22,181,15,196,11,12,250,22,185,11,2,8,6,14,14,40,108,105,115, +116,111,102,32,112,97,116,104,63,41,197,250,2,95,197,195,28,248,22,156,7, +197,248,22,170,8,197,196,28,28,248,22,0,23,195,2,249,22,48,23,196,2, +39,11,20,13,144,80,144,39,46,40,26,35,80,144,8,35,47,40,249,22,31, +11,80,144,8,37,46,40,22,148,15,10,22,149,15,10,22,150,15,10,22,151, +15,11,22,152,15,11,22,156,15,10,22,155,15,11,22,157,15,10,22,154,15, +10,22,158,15,10,22,153,15,11,22,159,15,10,22,160,15,10,22,161,15,10, +22,162,15,11,22,163,15,10,22,146,15,11,247,23,194,1,250,22,185,11,2, +9,2,52,23,197,1,86,94,28,28,248,22,181,15,23,195,2,10,28,248,22, +156,7,23,195,2,28,248,22,140,16,23,195,2,10,248,22,141,16,23,195,2, +11,12,250,22,185,11,23,196,2,2,48,23,197,2,28,248,22,140,16,23,195, +2,12,251,22,187,11,23,197,1,2,53,2,46,23,198,1,86,94,28,28,248, +22,181,15,23,195,2,10,28,248,22,156,7,23,195,2,28,248,22,140,16,23, +195,2,10,248,22,141,16,23,195,2,11,12,250,22,185,11,23,196,2,2,48, +23,197,2,28,248,22,140,16,23,195,2,12,251,22,187,11,23,197,1,2,53, +2,46,23,198,1,86,95,28,28,248,22,181,15,23,195,2,10,28,248,22,156, +7,23,195,2,28,248,22,140,16,23,195,2,10,248,22,141,16,23,195,2,11, +12,250,22,185,11,23,196,2,2,48,23,197,2,28,248,22,140,16,23,195,2, +86,94,23,194,1,12,251,22,187,11,23,197,2,2,53,2,46,23,198,1,249, +22,3,20,20,94,88,148,8,36,40,50,11,9,223,2,33,101,23,195,1,23, +197,1,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250,22, +185,11,23,196,1,2,54,23,197,1,86,94,28,28,248,22,181,15,23,194,2, +10,28,248,22,156,7,23,194,2,28,248,22,140,16,23,194,2,10,248,22,141, +16,23,194,2,11,12,250,22,185,11,2,15,2,48,23,196,2,28,248,22,140, +16,23,194,2,12,251,22,187,11,2,15,2,53,2,46,23,197,1,86,97,28, +28,248,22,181,15,23,196,2,10,28,248,22,156,7,23,196,2,28,248,22,140, +16,23,196,2,10,248,22,141,16,23,196,2,11,12,250,22,185,11,2,15,2, +48,23,198,2,28,248,22,140,16,23,196,2,12,251,22,187,11,2,15,2,53, +2,46,23,199,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222,33,104, +23,198,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12,250, +22,185,11,2,15,2,54,23,197,2,252,80,143,44,52,23,199,1,23,200,1, +23,201,1,11,11,86,94,28,28,248,22,181,15,23,194,2,10,28,248,22,156, +7,23,194,2,28,248,22,140,16,23,194,2,10,248,22,141,16,23,194,2,11, +12,250,22,185,11,2,17,2,48,23,196,2,28,248,22,140,16,23,194,2,12, +251,22,187,11,2,17,2,53,2,46,23,197,1,86,99,28,28,248,22,181,15, +23,197,2,10,28,248,22,156,7,23,197,2,28,248,22,140,16,23,197,2,10, +248,22,141,16,23,197,2,11,12,250,22,185,11,2,17,2,48,23,199,2,28, +248,22,140,16,23,197,2,12,251,22,187,11,2,17,2,53,2,46,23,200,2, +28,28,248,22,181,15,23,198,2,10,28,248,22,156,7,23,198,2,28,248,22, +140,16,23,198,2,10,248,22,141,16,23,198,2,11,12,250,22,185,11,2,17, +2,48,23,200,2,28,248,22,140,16,23,198,2,12,251,22,187,11,2,17,2, +53,2,46,23,201,2,249,22,3,32,0,88,148,8,36,40,49,11,9,222,33, +106,23,200,2,28,28,248,22,0,23,195,2,249,22,48,23,196,2,40,11,12, +250,22,185,11,2,17,2,54,23,197,2,252,80,143,44,52,23,199,1,23,202, +1,23,203,1,23,201,1,23,200,1,27,248,22,158,16,2,55,28,248,22,142, +16,23,194,2,248,22,145,16,23,194,1,28,248,22,141,16,23,194,2,90,144, +42,11,89,146,42,39,11,248,22,138,16,249,22,143,16,250,80,144,49,43,42, +248,22,158,16,2,56,11,11,248,22,158,16,2,57,86,95,23,195,1,23,194, +1,248,22,145,16,249,22,143,16,23,199,1,23,196,1,27,250,80,144,44,43, +42,248,22,158,16,2,56,23,197,1,10,28,23,193,2,248,22,145,16,23,194, +1,11,249,80,144,41,55,40,39,80,144,41,8,40,42,27,248,22,158,16,2, +58,28,248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248,22,141,16, +23,194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22,143,16,250, +80,144,49,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2,57,86,95, +23,195,1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23,196,1,27, +250,80,144,44,43,42,248,22,158,16,2,56,23,197,1,10,28,23,193,2,248, +22,145,16,23,194,1,11,249,80,144,41,55,40,40,80,144,41,8,41,42,27, +20,13,144,80,144,40,46,40,26,35,80,144,8,36,47,40,249,22,31,11,80, +144,8,38,46,40,22,148,15,10,22,149,15,10,22,150,15,10,22,151,15,11, +22,152,15,11,22,156,15,10,22,155,15,11,22,157,15,10,22,154,15,10,22, +158,15,10,22,153,15,11,22,159,15,10,22,160,15,10,22,161,15,10,22,162, +15,11,22,163,15,10,22,146,15,11,247,22,151,6,28,248,22,152,2,193,192, +11,27,28,23,195,2,249,22,135,16,23,197,1,6,11,11,99,111,110,102,105, +103,46,114,107,116,100,86,94,23,195,1,11,27,28,23,194,2,28,248,22,129, +16,23,195,2,249,22,143,6,23,196,1,80,144,43,8,42,42,11,11,28,192, +192,21,17,1,0,250,22,161,2,23,196,1,2,59,247,22,174,8,250,22,161, +2,195,2,59,247,22,174,8,28,248,22,156,7,23,195,2,27,248,22,189,15, +23,196,1,28,248,22,142,16,23,194,2,192,249,22,143,16,23,195,1,27,247, +80,144,43,54,42,28,23,193,2,192,86,94,23,193,1,247,22,159,16,28,248, +22,145,8,23,195,2,27,248,22,190,15,23,196,1,28,248,22,142,16,23,194, +2,192,249,22,143,16,23,195,1,27,247,80,144,43,54,42,28,23,193,2,192, +86,94,23,193,1,247,22,159,16,28,248,22,181,15,23,195,2,28,248,22,142, +16,23,195,2,193,249,22,143,16,23,196,1,27,247,80,144,42,54,42,28,23, +193,2,192,86,94,23,193,1,247,22,159,16,193,27,248,22,158,16,2,55,28, +248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248,22,141,16,23,194, +2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22,143,16,250,80,144, +49,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2,57,86,95,23,195, +1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23,196,1,27,250,80, +144,44,43,42,248,22,158,16,2,56,23,197,1,10,28,23,193,2,248,22,145, +16,23,194,1,11,28,248,22,142,16,23,195,2,193,249,22,143,16,23,196,1, +27,249,80,144,44,55,40,39,80,144,44,8,43,42,28,23,193,2,192,86,94, +23,193,1,247,22,159,16,28,248,22,142,16,23,195,2,248,22,145,16,23,195, +1,28,248,22,141,16,23,195,2,90,144,42,11,89,146,42,39,11,248,22,138, +16,249,22,143,16,250,80,144,48,43,42,248,22,158,16,2,56,11,11,248,22, +158,16,2,57,86,95,23,195,1,23,194,1,248,22,145,16,249,22,143,16,23, +200,1,23,196,1,27,250,80,144,43,43,42,248,22,158,16,2,56,23,198,1, +10,28,23,193,2,248,22,145,16,23,194,1,11,28,248,22,91,23,196,2,9, +28,248,22,84,23,196,2,249,22,83,27,248,22,172,20,23,199,2,28,248,22, +156,7,23,194,2,27,248,22,189,15,23,195,1,28,248,22,142,16,23,194,2, +192,249,22,143,16,23,195,1,27,247,80,144,46,54,42,28,23,193,2,192,86, +94,23,193,1,247,22,159,16,28,248,22,145,8,23,194,2,27,248,22,190,15, +23,195,1,28,248,22,142,16,23,194,2,192,249,22,143,16,23,195,1,27,247, +80,144,46,54,42,28,23,193,2,192,86,94,23,193,1,247,22,159,16,28,248, +22,181,15,23,194,2,28,248,22,142,16,23,194,2,192,249,22,143,16,23,195, +1,27,247,80,144,45,54,42,28,23,193,2,192,86,94,23,193,1,247,22,159, +16,192,27,248,22,173,20,23,199,1,28,248,22,91,23,194,2,9,28,248,22, +84,23,194,2,249,22,83,248,80,144,45,60,42,248,22,172,20,23,197,2,27, +248,22,173,20,23,197,1,28,248,22,91,23,194,2,9,28,248,22,84,23,194, +2,249,22,83,248,80,144,48,60,42,248,22,172,20,23,197,2,249,80,144,49, +8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,202,2,249,80, +144,49,8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,199,2, +27,248,22,173,20,23,197,1,28,248,22,91,23,194,2,9,28,248,22,84,23, +194,2,249,22,83,248,80,144,48,60,42,248,22,172,20,23,197,2,249,80,144, +49,8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,202,2,249, +80,144,49,8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,196, +2,27,248,22,173,20,23,199,1,28,248,22,91,23,194,2,9,28,248,22,84, +23,194,2,249,22,83,248,80,144,45,60,42,248,22,172,20,23,197,2,27,248, +22,173,20,23,197,1,28,248,22,91,23,194,2,9,28,248,22,84,23,194,2, +249,22,83,248,80,144,48,60,42,248,22,172,20,23,197,2,249,80,144,49,8, +44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,202,2,249,80,144, +49,8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,199,2,27, +248,22,173,20,23,197,1,28,248,22,91,23,194,2,9,28,248,22,84,23,194, +2,249,22,83,248,80,144,48,60,42,248,22,172,20,23,197,2,249,80,144,49, +8,44,42,23,204,1,248,22,173,20,23,198,1,249,22,97,23,202,2,249,80, +144,49,8,44,42,23,204,1,248,22,173,20,23,198,1,27,250,22,161,2,23, +198,1,23,199,1,11,28,192,249,80,144,42,8,44,42,198,194,196,27,248,22, +158,16,2,58,28,248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248, +22,141,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22, +143,16,250,80,144,49,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2, +57,86,95,23,195,1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23, +196,1,27,250,80,144,44,43,42,248,22,158,16,2,56,23,197,1,10,28,23, +193,2,248,22,145,16,23,194,1,11,27,248,80,144,41,58,42,249,80,144,43, +55,40,40,80,144,43,8,45,42,27,27,250,22,161,2,23,198,2,72,108,105, +110,107,115,45,102,105,108,101,11,27,28,23,194,2,23,194,1,86,94,23,194, +1,249,22,135,16,27,250,22,161,2,23,202,2,71,115,104,97,114,101,45,100, +105,114,11,28,192,192,249,22,135,16,64,117,112,6,5,5,115,104,97,114,101, +2,60,28,248,22,156,7,23,194,2,27,248,22,189,15,23,195,1,28,248,22, +142,16,23,194,2,192,249,22,143,16,23,195,1,27,247,80,144,47,54,42,28, +23,193,2,192,86,94,23,193,1,247,22,159,16,28,248,22,145,8,23,194,2, +27,248,22,190,15,23,195,1,28,248,22,142,16,23,194,2,192,249,22,143,16, +23,195,1,27,247,80,144,47,54,42,28,23,193,2,192,86,94,23,193,1,247, +22,159,16,28,248,22,181,15,23,194,2,28,248,22,142,16,23,194,2,192,249, +22,143,16,23,195,1,27,247,80,144,46,54,42,28,23,193,2,192,86,94,23, +193,1,247,22,159,16,192,250,22,97,248,22,93,11,28,247,22,166,16,28,247, +22,167,16,248,22,93,250,22,135,16,248,22,158,16,2,61,250,22,161,2,23, +204,2,2,59,247,22,174,8,2,60,9,9,28,247,22,167,16,250,80,144,47, +8,23,42,23,200,1,1,18,108,105,110,107,115,45,115,101,97,114,99,104,45, +102,105,108,101,115,248,22,93,23,200,1,9,248,22,177,13,23,194,1,249,22, +14,80,144,41,8,26,41,28,248,22,133,13,23,197,2,86,94,23,196,1,32, +0,88,148,8,36,39,44,11,9,222,11,20,20,94,88,148,8,36,39,46,11, +9,223,3,33,124,23,196,1,32,126,88,148,39,40,59,11,2,50,222,33,127, +90,144,42,11,89,146,42,39,11,248,22,138,16,23,197,1,86,95,23,195,1, +23,194,1,28,248,22,181,15,23,194,2,28,248,22,130,16,23,194,2,249,22, +148,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11, +89,146,42,39,11,248,22,138,16,23,197,1,86,95,23,195,1,23,194,1,28, +248,22,181,15,23,194,2,28,248,22,130,16,23,194,2,249,22,148,6,23,195, +1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39, +11,248,22,138,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,181,15, +23,194,2,28,248,22,130,16,23,194,2,249,22,148,6,23,195,1,32,0,88, +148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,138, +16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,181,15,23,194,2,28, +248,22,130,16,23,194,2,249,22,148,6,23,195,1,32,0,88,148,8,36,39, +44,11,9,222,11,248,2,126,23,194,1,11,11,11,11,32,128,2,88,148,8, +36,40,58,11,2,50,222,33,129,2,27,249,22,166,6,8,128,128,23,196,2, +28,248,22,151,7,23,194,2,9,249,22,83,23,195,1,27,249,22,166,6,8, +128,128,23,199,2,28,248,22,151,7,23,194,2,9,249,22,83,23,195,1,27, +249,22,166,6,8,128,128,23,202,2,28,248,22,151,7,23,194,2,9,249,22, +83,23,195,1,27,249,22,166,6,8,128,128,23,205,2,28,248,22,151,7,23, +194,2,9,249,22,83,23,195,1,248,2,128,2,23,206,1,27,249,22,166,6, +8,128,128,23,196,2,28,248,22,145,8,23,194,2,28,249,22,135,4,248,22, +150,8,23,196,2,8,128,128,249,22,1,22,157,8,249,22,83,23,197,1,27, +249,22,166,6,8,128,128,23,201,2,28,248,22,151,7,23,194,2,9,249,22, +83,23,195,1,27,249,22,166,6,8,128,128,23,204,2,28,248,22,151,7,23, +194,2,9,249,22,83,23,195,1,27,249,22,166,6,8,128,128,23,207,2,28, +248,22,151,7,23,194,2,9,249,22,83,23,195,1,27,249,22,166,6,8,128, +128,23,210,2,28,248,22,151,7,23,194,2,9,249,22,83,23,195,1,248,2, +128,2,23,211,1,192,192,248,22,136,6,23,194,1,20,13,144,80,144,40,8, +28,40,80,144,40,8,46,42,27,28,249,22,128,9,248,22,183,8,2,62,41, +90,144,42,11,89,146,42,39,11,248,22,138,16,23,198,2,86,95,23,195,1, +23,194,1,28,248,22,181,15,23,194,2,28,248,22,130,16,23,194,2,249,22, +148,6,23,195,1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11, +89,146,42,39,11,248,22,138,16,23,197,1,86,95,23,195,1,23,194,1,28, +248,22,181,15,23,194,2,28,248,22,130,16,23,194,2,249,22,148,6,23,195, +1,32,0,88,148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39, +11,248,22,138,16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,181,15, +23,194,2,28,248,22,130,16,23,194,2,249,22,148,6,23,195,1,32,0,88, +148,8,36,39,44,11,9,222,11,90,144,42,11,89,146,42,39,11,248,22,138, +16,23,197,1,86,95,23,195,1,23,194,1,28,248,22,181,15,23,194,2,28, +248,22,130,16,23,194,2,249,22,148,6,23,195,1,32,0,88,148,8,36,39, +44,11,9,222,11,248,2,126,23,194,1,11,11,11,11,11,28,248,22,129,16, +23,195,2,27,28,249,22,128,9,248,22,183,8,2,62,41,249,22,148,6,23, +197,2,32,0,88,148,8,36,39,44,11,9,222,11,11,86,94,28,23,194,2, +248,22,150,6,23,195,1,86,94,23,194,1,12,249,22,83,27,248,22,191,5, +23,199,1,250,22,44,22,35,88,148,39,39,8,24,11,9,223,3,33,130,2, +20,20,94,88,148,8,36,39,46,11,9,223,3,33,131,2,23,196,1,194,249, +22,83,11,194,28,28,23,195,2,28,248,22,85,23,196,2,248,22,170,9,249, +22,179,14,39,248,22,173,20,23,199,2,11,11,194,86,94,23,195,1,249,22, +12,20,20,94,88,148,8,32,39,61,16,4,39,8,128,80,8,240,0,64,0, +0,39,9,224,2,3,33,132,2,23,196,1,80,144,41,8,26,41,27,248,22, +170,9,194,28,192,192,248,22,170,9,248,22,84,195,86,95,28,248,22,154,12, +23,198,2,27,247,22,146,12,28,249,22,136,12,23,195,2,2,63,251,22,142, +12,23,197,1,2,63,250,22,140,8,6,42,42,101,114,114,111,114,32,114,101, +97,100,105,110,103,32,99,111,108,108,101,99,116,105,111,110,32,108,105,110,107, +115,32,102,105,108,101,32,126,115,58,32,126,97,23,203,2,248,22,150,12,23, +206,2,247,22,27,12,12,28,23,193,2,250,22,159,2,80,144,45,8,25,41, +23,198,1,249,22,83,23,198,1,21,17,0,0,86,95,23,195,1,23,193,1, +12,28,248,22,154,12,23,198,2,86,94,23,197,1,248,23,195,1,247,22,141, +2,196,88,148,39,40,58,8,240,0,0,0,2,9,226,0,2,1,3,33,135, +2,20,20,94,248,22,151,6,23,194,2,28,248,22,151,7,248,22,151,6,23, +195,1,12,248,22,181,11,6,30,30,101,120,112,101,99,116,101,100,32,97,32, +115,105,110,103,108,101,32,83,45,101,120,112,114,101,115,115,105,111,110,248,22, +136,6,23,194,1,28,248,22,92,193,28,28,249,22,131,4,41,248,22,96,195, +10,249,22,131,4,42,248,22,96,195,28,28,248,22,156,7,248,22,84,194,10, +28,249,22,172,9,2,64,248,22,172,20,195,10,249,22,172,9,2,65,248,22, +172,20,195,28,27,248,22,105,194,28,248,22,181,15,193,10,28,248,22,156,7, +193,28,248,22,140,16,193,10,248,22,141,16,193,11,27,248,22,91,248,22,107, +195,28,192,192,248,22,187,16,248,22,114,195,11,11,11,11,28,248,22,130,16, +249,22,135,16,23,196,2,23,198,2,27,248,22,71,248,22,185,15,23,198,1, +250,22,159,2,23,198,2,23,196,2,249,22,83,23,199,1,250,22,161,2,23, +203,1,23,201,1,9,12,250,22,159,2,23,197,1,23,198,1,249,22,83,23, +198,1,23,201,1,28,28,248,22,91,248,22,107,23,197,2,10,249,22,178,16, +248,22,114,23,198,2,247,22,174,8,27,248,22,145,16,249,22,143,16,248,22, +105,23,200,2,23,198,1,28,249,22,172,9,248,22,172,20,23,199,2,2,65, +86,94,23,196,1,249,22,3,20,20,94,88,148,8,36,40,56,11,9,224,3, +2,33,140,2,23,196,1,248,22,148,16,23,196,1,28,249,22,172,9,248,22, +172,20,23,199,2,2,64,86,94,23,196,1,86,94,28,250,22,161,2,23,197, +2,11,11,12,250,22,159,2,23,197,2,11,9,249,22,167,2,23,196,2,20, +20,95,88,148,8,36,41,53,11,9,224,3,2,33,141,2,23,195,1,23,196, +1,27,248,22,71,248,22,172,20,23,199,1,250,22,159,2,23,198,2,23,196, +2,249,22,83,248,22,132,2,23,200,1,250,22,161,2,23,203,1,23,201,1, +9,12,250,22,159,2,23,196,1,23,197,1,248,22,98,23,199,1,27,28,28, +23,194,2,248,22,170,9,248,22,84,23,196,2,10,9,27,249,22,191,5,23, +198,2,68,98,105,110,97,114,121,250,22,44,22,35,88,148,8,36,39,47,11, +9,223,3,33,137,2,20,20,94,88,148,8,36,39,46,11,9,223,3,33,138, +2,23,196,1,86,94,28,28,248,22,92,23,194,2,249,22,4,32,0,88,148, +8,36,40,48,11,9,222,33,139,2,23,195,2,11,12,248,22,181,11,6,18, +18,105,108,108,45,102,111,114,109,101,100,32,99,111,110,116,101,110,116,27,247, +22,141,2,27,90,144,42,11,89,146,42,39,11,248,22,138,16,23,201,2,192, +86,96,249,22,3,20,20,94,88,148,8,36,40,57,11,9,224,2,3,33,142, +2,23,195,1,23,197,1,249,22,167,2,195,88,148,8,36,41,51,11,9,223, +3,33,143,2,250,22,159,2,80,144,47,8,25,41,23,200,1,249,22,83,23, +201,1,198,193,20,13,144,80,144,40,8,28,40,250,80,144,43,8,47,42,23, +198,2,23,196,2,11,27,250,22,161,2,80,144,44,8,25,41,23,197,2,21, +143,11,17,0,0,27,248,22,84,23,195,2,27,249,80,144,45,8,27,42,23, +198,2,23,196,2,28,249,22,174,9,23,195,2,23,196,1,248,22,173,20,195, +86,94,23,195,1,20,13,144,80,144,43,8,28,40,250,80,144,46,8,47,42, +23,201,1,23,199,2,23,196,2,27,20,20,95,88,148,8,36,39,55,8,240, +0,0,0,2,9,225,5,4,1,33,144,2,23,194,1,23,197,1,28,249,22, +48,23,195,2,39,20,13,144,80,144,44,46,40,26,35,80,144,8,40,47,40, +249,22,31,11,80,144,8,42,46,40,22,148,15,10,22,149,15,10,22,150,15, +10,22,151,15,11,22,152,15,11,22,156,15,10,22,155,15,11,22,157,15,10, +22,154,15,10,22,158,15,10,22,153,15,11,22,159,15,10,22,160,15,10,22, +161,15,10,22,162,15,11,22,163,15,10,22,146,15,11,247,23,193,1,250,22, +185,11,2,9,2,52,23,196,1,248,22,8,20,20,94,88,148,39,40,8,49, +16,4,8,128,6,8,128,104,8,240,0,128,0,0,39,9,224,1,2,33,145, +2,23,195,1,0,7,35,114,120,34,47,43,34,28,248,22,156,7,23,195,2, +27,249,22,176,16,2,147,2,23,197,2,28,23,193,2,28,249,22,131,4,248, +22,104,23,196,2,248,22,185,3,248,22,159,7,23,199,2,249,22,7,250,22, +178,7,23,200,1,39,248,22,104,23,199,1,23,198,1,249,22,7,250,22,178, +7,23,200,2,39,248,22,104,23,199,2,249,22,83,249,22,178,7,23,201,1, +248,22,106,23,200,1,23,200,1,86,94,23,193,1,249,22,7,23,197,1,23, +198,1,90,144,42,11,89,146,42,39,11,248,22,138,16,23,198,1,86,94,23, +195,1,28,249,22,172,9,23,195,2,2,49,86,94,23,193,1,249,22,7,23, +196,1,23,200,1,27,249,22,83,23,197,1,23,201,1,28,248,22,156,7,23, +195,2,27,249,22,176,16,2,147,2,23,197,2,28,23,193,2,28,249,22,131, +4,248,22,104,23,196,2,248,22,185,3,248,22,159,7,23,199,2,249,22,7, +250,22,178,7,23,200,1,39,248,22,104,23,199,1,23,196,1,249,22,7,250, +22,178,7,23,200,2,39,248,22,104,23,199,2,249,22,83,249,22,178,7,23, +201,1,248,22,106,23,200,1,23,198,1,86,94,23,193,1,249,22,7,23,197, +1,23,196,1,90,144,42,11,89,146,42,39,11,248,22,138,16,23,198,1,86, +94,23,195,1,28,249,22,172,9,23,195,2,2,49,86,94,23,193,1,249,22, +7,23,196,1,23,198,1,249,80,144,48,8,31,42,194,249,22,83,197,199,28, +248,22,91,23,196,2,9,28,248,22,84,23,196,2,28,248,22,152,2,248,22, +172,20,23,197,2,250,22,97,249,22,2,22,132,2,250,22,161,2,248,22,172, +20,23,204,2,23,202,2,9,250,22,161,2,248,22,172,20,23,202,2,11,9, +27,248,22,173,20,23,200,1,28,248,22,91,23,194,2,9,28,248,22,84,23, +194,2,28,248,22,152,2,248,22,172,20,23,195,2,250,22,97,249,22,2,22, +132,2,250,22,161,2,248,22,172,20,23,202,2,23,206,2,9,250,22,161,2, +248,22,172,20,23,200,2,11,9,249,80,144,48,8,48,42,23,203,1,248,22, +173,20,23,199,1,27,248,80,144,45,8,30,42,248,22,172,20,23,196,2,250, +22,97,250,22,161,2,23,199,2,23,205,2,9,250,22,161,2,23,199,1,11, +9,249,80,144,49,8,48,42,23,204,1,248,22,173,20,23,200,1,249,22,97, +247,22,162,16,249,80,144,47,8,48,42,23,202,1,248,22,173,20,23,198,1, +27,248,80,144,41,8,30,42,248,22,172,20,23,198,2,250,22,97,250,22,161, +2,23,199,2,23,201,2,9,250,22,161,2,23,199,1,11,9,27,248,22,173, +20,23,201,1,28,248,22,91,23,194,2,9,28,248,22,84,23,194,2,28,248, +22,152,2,248,22,172,20,23,195,2,250,22,97,249,22,2,22,132,2,250,22, +161,2,248,22,172,20,23,202,2,23,207,2,9,250,22,161,2,248,22,172,20, +23,200,2,11,9,249,80,144,49,8,48,42,23,204,1,248,22,173,20,23,199, +1,27,248,80,144,46,8,30,42,248,22,172,20,23,196,2,250,22,97,250,22, +161,2,23,199,2,23,206,2,9,250,22,161,2,23,199,1,11,9,249,80,144, +50,8,48,42,23,205,1,248,22,173,20,23,200,1,249,22,97,247,22,162,16, +249,80,144,48,8,48,42,23,203,1,248,22,173,20,23,198,1,249,22,97,247, +22,162,16,27,248,22,173,20,23,199,1,28,248,22,91,23,194,2,9,28,248, +22,84,23,194,2,28,248,22,152,2,248,22,172,20,23,195,2,250,22,97,249, +22,2,22,132,2,250,22,161,2,248,22,172,20,23,202,2,23,205,2,9,250, +22,161,2,248,22,172,20,23,200,2,11,9,249,80,144,47,8,48,42,23,202, +1,248,22,173,20,23,199,1,27,248,80,144,44,8,30,42,248,22,172,20,23, +196,2,250,22,97,250,22,161,2,23,199,2,23,204,2,9,250,22,161,2,23, +199,1,11,9,249,80,144,48,8,48,42,23,203,1,248,22,173,20,23,200,1, +249,22,97,247,22,162,16,249,80,144,46,8,48,42,23,201,1,248,22,173,20, +23,198,1,32,150,2,88,148,8,36,40,50,11,2,50,222,33,151,2,28,248, +22,91,248,22,85,23,195,2,248,22,93,27,248,22,172,20,195,28,248,22,181, +15,193,248,22,185,15,193,192,250,22,94,27,248,22,172,20,23,198,2,28,248, +22,181,15,193,248,22,185,15,193,192,2,67,248,2,150,2,248,22,173,20,23, +198,1,250,22,140,8,6,7,7,10,32,126,97,32,126,97,6,1,1,32,23, +196,1,249,22,140,8,6,6,6,10,32,32,32,126,97,248,22,135,2,23,196, +1,32,154,2,88,148,39,41,51,11,68,102,105,108,116,101,114,222,33,155,2, +28,248,22,91,23,195,2,9,28,248,23,194,2,248,22,84,23,196,2,249,22, +83,248,22,172,20,23,197,2,249,2,154,2,23,197,1,248,22,173,20,23,199, +1,249,2,154,2,23,195,1,248,22,173,20,23,197,1,28,248,22,91,23,201, +2,86,95,23,200,1,23,199,1,28,23,201,2,28,197,249,22,135,16,202,199, +200,86,95,23,201,1,23,198,1,27,28,248,22,91,23,198,2,2,66,249,22, +1,22,179,7,248,2,150,2,23,200,2,248,23,199,1,251,22,140,8,6,70, +70,99,111,108,108,101,99,116,105,111,110,32,110,111,116,32,102,111,117,110,100, +10,32,32,99,111,108,108,101,99,116,105,111,110,58,32,126,115,10,32,32,105, +110,32,99,111,108,108,101,99,116,105,111,110,32,100,105,114,101,99,116,111,114, +105,101,115,58,126,97,126,97,28,248,22,91,23,203,1,28,248,22,181,15,23, +202,2,248,22,185,15,23,202,1,23,201,1,250,22,179,7,28,248,22,181,15, +23,205,2,248,22,185,15,23,205,1,23,204,1,2,67,23,201,2,249,22,1, +22,179,7,249,22,2,32,0,88,148,8,36,40,48,11,9,222,33,152,2,27, +248,22,96,23,206,2,27,248,22,96,247,22,162,16,28,249,22,132,4,249,22, +187,3,23,198,2,23,197,2,44,23,206,2,249,22,97,247,22,162,16,248,22, +93,249,22,140,8,6,50,50,46,46,46,32,91,126,97,32,97,100,100,105,116, +105,111,110,97,108,32,108,105,110,107,101,100,32,97,110,100,32,112,97,99,107, +97,103,101,32,100,105,114,101,99,116,111,114,105,101,115,93,249,22,187,3,23, +201,1,23,200,1,28,249,22,5,22,134,2,23,202,2,250,22,140,8,6,49, +49,10,32,32,32,115,117,98,45,99,111,108,108,101,99,116,105,111,110,58,32, +126,115,10,32,32,105,110,32,112,97,114,101,110,116,32,100,105,114,101,99,116, +111,114,105,101,115,58,126,97,23,201,1,249,22,1,22,179,7,249,22,2,32, +0,88,148,8,36,40,48,11,9,222,33,153,2,249,2,154,2,22,134,2,23, +209,1,86,95,23,200,1,23,198,1,2,66,27,248,22,84,23,202,2,27,28, +248,22,181,15,23,195,2,249,22,135,16,23,196,1,23,199,2,248,22,135,2, +23,195,1,28,28,248,22,181,15,248,22,172,20,23,204,2,248,22,130,16,23, +194,2,10,27,250,22,1,22,135,16,23,197,1,23,202,2,28,28,248,22,91, +23,200,2,10,248,22,130,16,23,194,2,28,23,201,2,28,28,250,80,144,45, +8,32,42,195,203,204,10,27,28,248,22,181,15,202,248,22,185,15,202,201,19, +248,22,159,7,23,195,2,27,28,249,22,135,4,23,196,4,43,28,249,22,162, +7,6,4,4,46,114,107,116,249,22,178,7,23,199,2,249,22,187,3,23,200, +4,43,249,22,179,7,250,22,178,7,23,200,1,39,249,22,187,3,23,201,4, +43,6,3,3,46,115,115,86,94,23,195,1,11,86,94,23,195,1,11,28,23, +193,2,250,80,144,48,8,32,42,198,23,196,1,23,15,11,2,28,200,249,22, +135,16,194,202,192,26,8,80,144,50,8,49,42,204,205,206,23,15,23,16,23, +17,248,22,173,20,23,19,28,23,19,23,19,200,192,26,8,80,144,50,8,49, +42,204,205,206,23,15,23,16,23,17,248,22,173,20,23,19,23,19,26,8,80, +144,49,8,49,42,203,204,205,206,23,15,23,16,248,22,173,20,23,18,23,18, +90,144,41,11,89,146,41,39,11,249,80,144,43,8,31,42,23,199,1,23,200, +1,27,248,22,71,28,248,22,181,15,195,248,22,185,15,195,194,27,27,247,22, +163,16,28,248,22,91,23,194,2,9,28,248,22,84,23,194,2,28,248,22,152, +2,248,22,172,20,23,195,2,250,22,97,249,22,2,22,132,2,250,22,161,2, +248,22,172,20,23,202,2,23,203,2,9,250,22,161,2,248,22,172,20,23,200, +2,11,9,249,80,144,49,8,48,42,23,200,1,248,22,173,20,23,199,1,27, +248,80,144,46,8,30,42,248,22,172,20,23,196,2,250,22,97,250,22,161,2, +23,199,2,23,202,2,9,250,22,161,2,23,199,1,11,9,249,80,144,50,8, +48,42,23,201,1,248,22,173,20,23,200,1,249,22,97,247,22,162,16,249,80, +144,48,8,48,42,23,199,1,248,22,173,20,23,198,1,26,8,80,144,51,8, +49,42,200,202,203,205,23,16,23,17,200,11,32,158,2,88,148,8,36,42,59, +11,2,50,222,33,159,2,28,248,22,136,4,23,196,2,86,94,23,195,1,19, +248,22,150,8,23,195,2,19,248,22,150,8,23,196,2,249,22,191,15,27,251, +22,157,8,250,22,156,8,23,205,2,39,23,204,4,2,51,249,22,156,8,23, +204,1,23,202,4,2,68,28,248,22,136,4,248,22,150,8,23,195,2,86,94, +23,193,1,251,22,187,11,2,37,2,69,2,70,202,192,28,248,22,182,15,198, +248,22,183,15,198,247,22,184,15,2,2,27,248,22,185,3,23,197,1,28,249, +22,172,9,8,46,249,22,151,8,23,198,2,23,197,2,27,248,22,184,3,23, +195,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,205,2,39,23,204, +1,2,71,249,22,156,8,23,204,1,23,202,1,2,68,28,248,22,136,4,248, +22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70, +202,192,28,248,22,182,15,198,248,22,183,15,198,247,22,184,15,250,2,158,2, +196,197,195,248,22,129,16,27,250,22,135,16,23,200,1,23,202,1,23,199,1, +28,249,22,172,9,23,197,2,66,115,97,109,101,192,28,248,22,140,16,23,196, +2,249,22,135,16,194,196,249,80,144,46,42,42,23,195,1,23,197,1,249,22, +5,20,20,96,88,148,39,40,54,47,9,226,5,4,2,6,33,160,2,23,199, +1,23,195,1,23,197,1,23,196,1,27,248,22,129,16,249,22,135,16,23,198, +2,23,199,2,28,23,193,2,192,86,94,23,193,1,28,23,197,1,27,90,144, +41,11,89,146,41,39,11,250,80,144,46,8,34,42,23,202,2,2,68,2,37, +27,248,22,187,15,23,196,1,27,250,2,158,2,23,197,2,23,204,1,248,22, +150,8,23,198,1,28,248,22,182,15,195,249,22,135,16,196,194,192,27,247,22, +164,16,249,22,5,20,20,96,88,148,39,40,51,47,9,226,5,6,2,3,33, +161,2,23,196,1,23,195,1,23,199,1,247,22,165,16,11,86,95,28,28,248, +22,182,15,23,194,2,10,28,248,22,181,15,23,194,2,10,28,248,22,156,7, +23,194,2,28,248,22,140,16,23,194,2,10,248,22,141,16,23,194,2,11,12, +252,22,185,11,23,200,2,2,42,39,23,198,2,23,199,2,28,28,248,22,156, +7,23,195,2,10,248,22,145,8,23,195,2,86,94,23,194,1,12,252,22,185, +11,23,200,2,2,72,40,23,198,2,23,199,1,90,144,42,11,89,146,42,39, +11,248,22,138,16,23,197,2,86,94,23,195,1,86,94,28,23,193,2,86,95, +23,198,1,23,196,1,12,250,22,188,11,23,201,1,2,73,23,199,1,249,22, +7,23,195,1,23,196,1,32,164,2,88,148,8,36,46,61,11,2,74,222,33, +165,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,203,2,39,23,207, +1,23,205,1,249,23,203,1,23,202,1,23,208,1,28,248,22,156,7,23,204, +2,249,22,171,8,23,205,1,8,63,23,203,1,28,248,22,136,4,248,22,150, +8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70,201,192, +28,248,22,182,15,197,248,22,183,15,197,247,22,184,15,32,166,2,88,148,8, +36,45,8,24,11,2,50,222,33,167,2,28,248,22,136,4,23,199,2,86,95, +23,198,1,23,194,1,19,248,22,150,8,23,195,2,19,248,22,150,8,23,196, +2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,205,2,39,23,204,4, +2,51,249,23,206,1,23,204,1,23,202,4,28,248,22,156,7,23,207,2,249, +22,171,8,23,208,1,8,63,23,206,1,28,248,22,136,4,248,22,150,8,23, +195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70,204,192,28,248, +22,182,15,200,248,22,183,15,200,247,22,184,15,2,2,27,248,22,185,3,23, +200,1,28,249,22,172,9,8,46,249,22,151,8,23,198,2,23,197,2,27,248, +22,184,3,23,195,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,205, +2,39,23,204,1,23,203,1,249,23,206,1,23,204,1,23,202,1,28,248,22, +156,7,23,207,2,249,22,171,8,23,208,1,8,63,23,206,1,28,248,22,136, +4,248,22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69, +2,70,204,192,28,248,22,182,15,200,248,22,183,15,200,247,22,184,15,28,248, +22,136,4,23,194,2,86,95,23,195,1,23,193,1,19,248,22,150,8,23,196, +2,19,248,22,150,8,23,197,2,249,22,191,15,27,251,22,157,8,250,22,156, +8,23,206,2,39,23,204,4,2,51,249,23,207,1,23,205,1,23,202,4,28, +248,22,156,7,23,208,2,249,22,171,8,23,209,1,8,63,23,207,1,28,248, +22,136,4,248,22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37, +2,69,2,70,205,192,28,248,22,182,15,201,248,22,183,15,201,247,22,184,15, +2,2,27,248,22,185,3,23,195,1,28,249,22,172,9,8,46,249,22,151,8, +23,199,2,23,197,2,27,248,22,184,3,23,195,2,249,22,191,15,27,251,22, +157,8,250,22,156,8,23,206,2,39,23,204,1,23,204,1,249,23,207,1,23, +205,1,23,202,1,28,248,22,156,7,23,208,2,249,22,171,8,23,209,1,8, +63,23,207,1,28,248,22,136,4,248,22,150,8,23,195,2,86,94,23,193,1, +251,22,187,11,2,37,2,69,2,70,205,192,28,248,22,182,15,201,248,22,183, +15,201,247,22,184,15,28,248,22,136,4,193,254,2,164,2,201,203,204,205,248, +22,150,8,202,2,51,248,22,150,8,202,27,248,22,185,3,194,28,249,22,172, +9,8,46,249,22,151,8,199,196,254,2,164,2,202,204,205,206,199,203,248,22, +184,3,200,253,2,166,2,201,202,203,204,205,198,90,144,41,11,89,146,41,39, +11,86,95,28,28,248,22,182,15,23,199,2,10,28,248,22,181,15,23,199,2, +10,28,248,22,156,7,23,199,2,28,248,22,140,16,23,199,2,10,248,22,141, +16,23,199,2,11,12,252,22,185,11,23,200,2,2,42,39,23,203,2,23,204, +2,28,28,248,22,156,7,23,200,2,10,248,22,145,8,23,200,2,12,252,22, +185,11,23,200,2,2,72,40,23,203,2,23,204,2,90,144,42,11,89,146,42, +39,11,248,22,138,16,23,202,2,86,94,23,195,1,86,94,28,192,12,250,22, +188,11,23,201,1,2,73,23,204,2,249,22,7,194,195,27,248,22,187,15,23, +196,1,27,19,248,22,150,8,23,196,2,28,248,22,136,4,23,194,4,86,94, +23,199,1,19,248,22,150,8,23,197,2,19,248,22,150,8,23,198,2,249,22, +191,15,27,251,22,157,8,250,22,156,8,23,207,2,39,23,204,4,2,51,249, +23,211,1,23,206,1,23,202,4,28,248,22,156,7,23,212,2,249,22,171,8, +23,213,1,8,63,23,211,1,28,248,22,136,4,248,22,150,8,23,195,2,86, +94,23,193,1,251,22,187,11,2,37,2,69,2,70,23,17,192,28,248,22,182, +15,205,248,22,183,15,205,247,22,184,15,2,2,27,248,22,185,3,23,195,4, +28,249,22,172,9,8,46,249,22,151,8,23,200,2,23,197,2,27,248,22,184, +3,23,195,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,207,2,39, +23,204,1,23,208,1,249,23,211,1,23,206,1,23,202,1,28,248,22,156,7, +23,212,2,249,22,171,8,23,213,1,8,63,23,211,1,28,248,22,136,4,248, +22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70, +23,17,192,28,248,22,182,15,205,248,22,183,15,205,247,22,184,15,28,248,22, +136,4,23,194,2,86,95,23,200,1,23,193,1,254,2,164,2,23,203,2,23, +208,1,23,209,1,23,210,1,248,22,150,8,23,204,2,2,51,248,22,150,8, +23,204,1,27,248,22,185,3,23,195,1,28,249,22,172,9,8,46,249,22,151, +8,23,201,2,23,197,2,254,2,164,2,23,204,1,23,209,1,23,210,1,23, +211,1,23,200,2,23,208,1,248,22,184,3,23,201,1,253,2,166,2,23,203, +1,23,207,1,23,208,1,23,209,1,23,210,1,23,199,1,2,28,248,22,182, +15,195,249,22,135,16,196,194,192,32,169,2,88,148,8,36,43,61,11,2,50, +222,33,170,2,28,248,22,136,4,23,197,2,86,94,23,196,1,19,248,22,150, +8,23,195,2,35,248,22,150,8,23,196,2,249,22,191,15,27,251,22,157,8, +250,22,156,8,23,205,1,39,23,204,4,2,51,2,51,28,248,22,156,7,23, +205,2,249,22,171,8,23,206,1,8,63,23,204,1,28,248,22,136,4,248,22, +150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70,202, +192,28,248,22,182,15,198,248,22,183,15,198,247,22,184,15,2,27,248,22,185, +3,23,198,1,28,249,22,172,9,8,46,249,22,151,8,23,198,2,23,197,2, +35,248,22,184,3,23,195,2,249,22,191,15,27,251,22,157,8,250,22,156,8, +23,205,1,39,23,204,1,2,51,2,51,28,248,22,156,7,23,205,2,249,22, +171,8,23,206,1,8,63,23,204,1,28,248,22,136,4,248,22,150,8,23,195, +2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70,202,192,28,248,22, +182,15,198,248,22,183,15,198,247,22,184,15,28,248,22,136,4,23,194,2,86, +94,23,193,1,19,248,22,150,8,23,196,2,35,248,22,150,8,23,197,2,249, +22,191,15,27,251,22,157,8,250,22,156,8,23,206,1,39,23,204,4,2,51, +2,51,28,248,22,156,7,23,206,2,249,22,171,8,23,207,1,8,63,23,205, +1,28,248,22,136,4,248,22,150,8,23,195,2,86,94,23,193,1,251,22,187, +11,2,37,2,69,2,70,203,192,28,248,22,182,15,199,248,22,183,15,199,247, +22,184,15,2,27,248,22,185,3,23,195,1,28,249,22,172,9,8,46,249,22, +151,8,23,199,2,23,197,2,35,248,22,184,3,23,195,2,249,22,191,15,27, +251,22,157,8,250,22,156,8,23,206,1,39,23,204,1,2,51,2,51,28,248, +22,156,7,23,206,2,249,22,171,8,23,207,1,8,63,23,205,1,28,248,22, +136,4,248,22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2, +69,2,70,203,192,28,248,22,182,15,199,248,22,183,15,199,247,22,184,15,251, +2,169,2,198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248, +22,182,15,23,196,2,10,28,248,22,181,15,23,196,2,10,28,248,22,156,7, +23,196,2,28,248,22,140,16,23,196,2,10,248,22,141,16,23,196,2,11,12, +252,22,185,11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,156,7, +23,197,2,10,248,22,145,8,23,197,2,12,252,22,185,11,2,37,2,72,40, +23,200,2,23,201,2,90,144,42,11,89,146,42,39,11,248,22,138,16,23,199, +2,86,94,23,195,1,86,94,28,192,12,250,22,188,11,2,37,2,73,23,201, +2,249,22,7,194,195,27,248,22,187,15,23,196,1,27,251,2,169,2,23,198, +2,23,201,1,23,202,1,248,22,150,8,23,199,1,28,248,22,182,15,195,249, +22,135,16,196,194,192,2,51,252,80,144,44,8,35,42,2,37,2,51,32,0, +88,148,8,36,41,46,11,9,222,33,172,2,198,199,32,174,2,88,148,8,36, +43,60,11,2,50,222,33,177,2,32,175,2,88,148,8,36,45,60,11,2,74, +222,33,176,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,203,2,39, +23,206,1,23,204,1,249,22,156,8,23,202,1,23,207,1,28,248,22,156,7, +23,203,2,249,22,171,8,23,204,1,8,63,23,202,1,28,248,22,136,4,248, +22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70, +200,192,28,248,22,182,15,196,248,22,183,15,196,247,22,184,15,28,248,22,136, +4,23,197,2,86,94,23,196,1,19,248,22,150,8,23,195,2,19,248,22,150, +8,23,196,2,249,22,191,15,27,251,22,157,8,250,22,156,8,23,205,2,39, +23,204,4,2,51,249,22,156,8,23,204,1,23,202,4,28,248,22,156,7,23, +205,2,249,22,171,8,23,206,1,8,63,23,204,1,28,248,22,136,4,248,22, +150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37,2,69,2,70,202, +192,28,248,22,182,15,198,248,22,183,15,198,247,22,184,15,2,2,27,248,22, +185,3,23,198,1,28,249,22,172,9,8,46,249,22,151,8,23,198,2,23,197, +2,27,248,22,184,3,23,195,2,249,22,191,15,27,251,22,157,8,250,22,156, +8,23,205,2,39,23,204,1,2,71,249,22,156,8,23,204,1,23,202,1,28, +248,22,156,7,23,205,2,249,22,171,8,23,206,1,8,63,23,204,1,28,248, +22,136,4,248,22,150,8,23,195,2,86,94,23,193,1,251,22,187,11,2,37, +2,69,2,70,202,192,28,248,22,182,15,198,248,22,183,15,198,247,22,184,15, +28,248,22,136,4,193,253,2,175,2,199,200,201,248,22,150,8,200,2,51,248, +22,150,8,200,27,248,22,185,3,194,28,249,22,172,9,8,46,249,22,151,8, +198,196,253,2,175,2,200,201,202,198,2,71,248,22,184,3,199,251,2,174,2, +198,199,200,196,90,144,41,11,89,146,41,39,11,86,95,28,28,248,22,182,15, +23,196,2,10,28,248,22,181,15,23,196,2,10,28,248,22,156,7,23,196,2, +28,248,22,140,16,23,196,2,10,248,22,141,16,23,196,2,11,12,252,22,185, +11,2,37,2,42,39,23,200,2,23,201,2,28,28,248,22,156,7,23,197,2, +10,248,22,145,8,23,197,2,12,252,22,185,11,2,37,2,72,40,23,200,2, +23,201,2,90,144,42,11,89,146,42,39,11,248,22,138,16,23,199,2,86,94, +23,195,1,86,94,28,192,12,250,22,188,11,2,37,2,73,23,201,2,249,22, +7,194,195,27,248,22,187,15,23,196,1,27,251,2,174,2,23,198,2,23,201, +1,23,202,1,248,22,150,8,23,199,1,28,248,22,182,15,195,249,22,135,16, +196,194,192,252,80,144,44,8,35,42,2,37,2,71,22,156,8,198,199,249,247, +22,179,5,23,195,1,11,249,247,22,179,5,194,11,28,248,22,91,23,195,2, +9,27,27,248,22,84,23,197,2,28,248,22,142,16,23,194,2,248,22,145,16, +23,194,1,28,248,22,141,16,23,194,2,90,144,42,11,89,146,42,39,11,248, +22,138,16,249,22,143,16,250,80,144,50,43,42,248,22,158,16,2,56,11,11, +248,22,158,16,2,57,86,95,23,195,1,23,194,1,248,22,145,16,249,22,143, +16,23,199,1,23,196,1,27,250,80,144,45,43,42,248,22,158,16,2,56,23, +197,1,10,28,23,193,2,248,22,145,16,23,194,1,11,28,23,193,2,249,22, +83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16,27,248,22,173,20, +23,199,1,28,248,22,91,23,194,2,9,27,248,80,144,45,56,42,248,22,84, +23,196,2,28,23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1, +247,22,159,16,248,80,144,47,8,50,42,248,22,173,20,23,198,1,86,94,23, +193,1,248,80,144,45,8,50,42,248,22,173,20,23,196,1,86,94,23,193,1, +27,248,22,173,20,23,197,1,28,248,22,91,23,194,2,9,27,248,80,144,43, +56,42,248,22,84,23,196,2,28,23,193,2,249,22,83,248,22,145,16,249,22, +143,16,23,198,1,247,22,159,16,248,80,144,45,8,50,42,248,22,173,20,23, +198,1,86,94,23,193,1,248,80,144,43,8,50,42,248,22,173,20,23,196,1, +28,248,22,91,23,195,2,9,27,27,248,22,84,23,197,2,28,248,22,142,16, +23,194,2,248,22,145,16,23,194,1,28,248,22,141,16,23,194,2,90,144,42, +11,89,146,42,39,11,248,22,138,16,249,22,143,16,250,80,144,50,43,42,248, +22,158,16,2,56,11,11,248,22,158,16,2,57,86,95,23,195,1,23,194,1, +248,22,145,16,249,22,143,16,23,199,1,23,196,1,27,250,80,144,45,43,42, +248,22,158,16,2,56,23,197,1,10,28,23,193,2,248,22,145,16,23,194,1, +11,28,23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247,22, +159,16,27,248,22,173,20,23,199,1,28,248,22,91,23,194,2,9,27,248,80, +144,45,56,42,248,22,84,23,196,2,28,23,193,2,249,22,83,248,22,145,16, +249,22,143,16,23,198,1,247,22,159,16,248,80,144,47,8,51,42,248,22,173, +20,23,198,1,86,94,23,193,1,248,80,144,45,8,51,42,248,22,173,20,23, +196,1,86,94,23,193,1,27,248,22,173,20,23,197,1,28,248,22,91,23,194, +2,9,27,248,80,144,43,56,42,248,22,84,23,196,2,28,23,193,2,249,22, +83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16,248,80,144,45,8, +51,42,248,22,173,20,23,198,1,86,94,23,193,1,248,80,144,43,8,51,42, +248,22,173,20,23,196,1,27,248,22,158,16,2,58,28,248,22,142,16,23,194, +2,248,22,145,16,23,194,1,28,248,22,141,16,23,194,2,90,144,42,11,89, +146,42,39,11,248,22,138,16,249,22,143,16,250,80,144,49,43,42,248,22,158, +16,2,56,11,11,248,22,158,16,2,57,86,95,23,195,1,23,194,1,248,22, +145,16,249,22,143,16,23,199,1,23,196,1,27,250,80,144,44,43,42,248,22, +158,16,2,56,23,197,1,10,28,23,193,2,248,22,145,16,23,194,1,11,28, +248,22,91,23,195,2,9,27,27,248,22,84,23,197,2,28,248,22,142,16,23, +194,2,248,22,145,16,23,194,1,28,248,22,141,16,23,194,2,90,144,42,11, +89,146,42,39,11,248,22,138,16,249,22,143,16,250,80,144,50,43,42,248,22, +158,16,2,56,11,11,248,22,158,16,2,57,86,95,23,195,1,23,194,1,248, +22,145,16,249,22,143,16,23,199,1,23,196,1,27,250,80,144,45,43,42,248, +22,158,16,2,56,23,197,1,10,28,23,193,2,248,22,145,16,23,194,1,11, +28,23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247,22,159, +16,27,248,22,173,20,23,199,1,28,248,22,91,23,194,2,9,27,27,248,22, +84,23,196,2,28,248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248, +22,141,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22, +143,16,250,80,144,54,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2, +57,86,95,23,195,1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23, +196,1,27,250,80,144,49,43,42,248,22,158,16,2,56,23,197,1,10,28,23, +193,2,248,22,145,16,23,194,1,11,28,23,193,2,249,22,83,248,22,145,16, +249,22,143,16,23,198,1,247,22,159,16,27,248,22,173,20,23,198,1,28,248, +22,91,23,194,2,9,27,248,80,144,49,56,42,248,22,84,23,196,2,28,23, +193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16,248, +80,144,51,8,53,42,248,22,173,20,23,198,1,86,94,23,193,1,248,80,144, +49,8,53,42,248,22,173,20,23,196,1,86,94,23,193,1,27,248,22,173,20, +23,196,1,28,248,22,91,23,194,2,9,27,248,80,144,47,56,42,248,22,84, +23,196,2,28,23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1, +247,22,159,16,248,80,144,49,8,53,42,248,22,173,20,23,198,1,86,94,23, +193,1,248,80,144,47,8,53,42,248,22,173,20,23,196,1,86,94,23,193,1, +27,248,22,173,20,23,197,1,28,248,22,91,23,194,2,9,27,27,248,22,84, +23,196,2,28,248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248,22, +141,16,23,194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22,143, +16,250,80,144,52,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2,57, +86,95,23,195,1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23,196, +1,27,250,80,144,47,43,42,248,22,158,16,2,56,23,197,1,10,28,23,193, +2,248,22,145,16,23,194,1,11,28,23,193,2,249,22,83,248,22,145,16,249, +22,143,16,23,198,1,247,22,159,16,27,248,22,173,20,23,198,1,28,248,22, +91,23,194,2,9,27,248,80,144,47,56,42,248,22,84,23,196,2,28,23,193, +2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16,248,80, +144,49,8,53,42,248,22,173,20,23,198,1,86,94,23,193,1,248,80,144,47, +8,53,42,248,22,173,20,23,196,1,86,94,23,193,1,27,248,22,173,20,23, +196,1,28,248,22,91,23,194,2,9,27,248,80,144,45,56,42,248,22,84,23, +196,2,28,23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247, +22,159,16,248,80,144,47,8,53,42,248,22,173,20,23,198,1,86,94,23,193, +1,248,80,144,45,8,53,42,248,22,173,20,23,196,1,27,247,22,166,16,27, +248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44,41,28,23,196, +2,27,249,22,178,8,247,22,177,8,2,75,28,192,249,22,168,8,194,7,63, +2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1, +250,22,135,16,248,22,158,16,2,61,250,22,161,2,23,205,1,2,59,247,22, +174,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,50,42,250,22,97, +9,248,22,93,248,22,158,16,2,55,9,28,193,249,22,83,195,194,192,27,247, +22,166,16,27,248,80,144,42,58,42,247,80,144,42,57,42,249,80,144,43,44, +41,28,23,196,2,27,249,22,178,8,247,22,177,8,2,75,28,192,249,22,168, +8,194,7,63,2,66,2,66,250,80,144,46,8,23,42,23,198,2,2,76,27, +28,23,200,1,250,22,135,16,248,22,158,16,2,61,250,22,161,2,23,205,1, +2,59,247,22,174,8,2,77,86,94,23,199,1,11,27,248,80,144,49,8,51, +42,250,22,97,23,207,1,248,22,93,248,22,158,16,2,55,9,28,193,249,22, +83,195,194,192,27,247,22,166,16,27,248,80,144,42,58,42,249,80,144,44,55, +40,40,80,144,44,8,52,42,249,80,144,43,44,41,28,23,196,2,27,249,22, +178,8,247,22,177,8,2,75,28,192,249,22,168,8,194,7,63,2,66,2,66, +250,80,144,46,8,23,42,23,198,2,2,76,27,28,23,200,1,250,22,135,16, +248,22,158,16,2,61,250,22,161,2,23,205,1,2,59,247,22,174,8,2,77, +86,94,23,199,1,11,27,27,250,22,97,23,207,1,248,22,93,248,22,158,16, +2,55,23,208,1,28,248,22,91,23,194,2,9,27,27,248,22,84,23,196,2, +28,248,22,142,16,23,194,2,248,22,145,16,23,194,1,28,248,22,141,16,23, +194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,249,22,143,16,250,80, +144,60,43,42,248,22,158,16,2,56,11,11,248,22,158,16,2,57,86,95,23, +195,1,23,194,1,248,22,145,16,249,22,143,16,23,199,1,23,196,1,27,250, +80,144,55,43,42,248,22,158,16,2,56,23,197,1,10,28,23,193,2,248,22, +145,16,23,194,1,11,28,23,193,2,249,22,83,248,22,145,16,249,22,143,16, +23,198,1,247,22,159,16,27,248,22,173,20,23,198,1,28,248,22,91,23,194, +2,9,27,248,80,144,55,56,42,248,22,84,23,196,2,28,23,193,2,249,22, +83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16,248,80,144,57,8, +53,42,248,22,173,20,23,198,1,86,94,23,193,1,248,80,144,55,8,53,42, +248,22,173,20,23,196,1,86,94,23,193,1,27,248,22,173,20,23,196,1,28, +248,22,91,23,194,2,9,27,248,80,144,53,56,42,248,22,84,23,196,2,28, +23,193,2,249,22,83,248,22,145,16,249,22,143,16,23,198,1,247,22,159,16, +248,80,144,55,8,53,42,248,22,173,20,23,198,1,86,94,23,193,1,248,80, +144,53,8,53,42,248,22,173,20,23,196,1,28,193,249,22,83,195,194,192,27, +20,13,144,80,144,40,46,40,26,9,80,144,49,47,40,249,22,31,11,80,144, +51,46,40,22,155,15,10,22,162,15,10,22,163,15,10,22,164,15,10,248,22, +151,6,23,196,2,28,248,22,151,7,23,194,2,12,86,94,248,22,180,9,23, +194,1,27,20,13,144,80,144,41,46,40,26,9,80,144,50,47,40,249,22,31, +11,80,144,52,46,40,22,155,15,10,22,162,15,10,22,163,15,10,22,164,15, +10,248,22,151,6,23,197,2,28,248,22,151,7,23,194,2,12,86,94,248,22, +180,9,23,194,1,27,20,13,144,80,144,42,46,40,26,9,80,144,51,47,40, +249,22,31,11,80,144,53,46,40,22,155,15,10,22,162,15,10,22,163,15,10, +22,164,15,10,248,22,151,6,23,198,2,28,248,22,151,7,23,194,2,12,86, +94,248,22,180,9,23,194,1,248,80,144,43,8,54,42,197,86,94,249,22,142, +7,247,22,175,5,23,196,2,248,22,166,6,249,22,139,4,39,249,22,187,3, +28,23,198,2,23,198,1,86,94,23,198,1,39,23,199,1,27,248,22,128,6, +28,23,198,2,86,95,23,197,1,23,196,1,23,198,1,86,94,23,198,1,27, +250,80,144,45,43,42,248,22,158,16,2,56,11,11,27,248,22,142,4,23,199, +1,27,28,23,194,2,23,194,1,86,94,23,194,1,39,27,248,22,142,4,23, +202,1,249,22,143,6,23,198,1,20,20,95,88,148,8,36,39,51,11,9,224, +3,2,33,190,2,23,195,1,23,196,1,248,80,144,41,8,54,42,193,145,39, +9,20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2,2, +29,11,11,11,11,11,11,11,9,9,11,11,11,10,46,80,143,39,39,20,121, +145,2,1,54,16,40,2,3,2,4,2,5,2,6,2,7,2,8,2,9,30, +2,11,1,20,112,97,114,97,109,101,116,101,114,105,122,97,116,105,111,110,45, +107,101,121,11,6,30,2,11,1,23,101,120,116,101,110,100,45,112,97,114,97, +109,101,116,101,114,105,122,97,116,105,111,110,11,4,2,12,2,13,2,14,2, +15,2,16,2,17,2,18,30,2,11,1,19,99,97,99,104,101,45,99,111,110, +102,105,103,117,114,97,116,105,111,110,11,1,2,19,2,20,2,21,2,22,2, +23,2,24,2,25,2,26,2,27,2,28,2,29,30,2,11,1,21,101,120,99, +101,112,116,105,111,110,45,104,97,110,100,108,101,114,45,107,101,121,11,3,2, +30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2,40, +16,0,40,42,39,16,0,39,16,19,2,13,2,14,2,12,2,25,2,4,2, +35,2,23,2,24,2,19,2,29,2,33,2,21,2,22,2,31,2,27,2,30, +2,32,2,36,2,28,58,11,11,11,16,17,2,9,2,17,2,15,2,40,2, +16,2,7,2,26,2,39,2,18,2,20,2,38,2,5,2,34,2,8,2,37, +2,3,2,6,16,17,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11, +11,11,16,17,2,9,2,17,2,15,2,40,2,16,2,7,2,26,2,39,2, +18,2,20,2,38,2,5,2,34,2,8,2,37,2,3,2,6,56,56,40,12, +11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39, +39,16,51,20,15,16,2,32,0,88,148,8,36,40,48,11,2,3,222,33,78, +80,144,39,39,40,20,15,16,2,249,22,158,7,7,92,7,92,80,144,39,40, +40,20,15,16,2,88,148,8,36,40,57,41,2,5,223,0,33,83,80,144,39, +41,40,20,15,16,2,88,148,8,36,41,61,41,2,6,223,0,33,85,80,144, +39,42,40,20,15,16,2,20,26,96,2,7,88,148,8,36,42,8,24,8,32, +9,223,0,33,92,88,148,8,36,41,50,55,9,223,0,33,93,88,148,8,36, +40,49,55,9,223,0,33,94,80,144,39,43,40,20,15,16,2,27,248,22,170, +16,248,22,170,8,27,28,249,22,172,9,247,22,183,8,2,43,6,1,1,59, +6,1,1,58,250,22,140,8,6,14,14,40,91,94,126,97,93,42,41,126,97, +40,46,42,41,23,196,2,23,196,1,88,148,8,36,41,51,11,2,8,223,0, +33,98,80,144,39,44,40,20,15,16,2,88,148,39,40,8,44,8,128,6,2, +9,223,0,33,99,80,144,39,45,40,20,15,16,2,32,0,88,148,8,36,41, +50,11,2,12,222,33,100,80,144,39,48,40,20,15,16,2,32,0,88,148,8, +36,42,51,11,2,13,222,33,102,80,144,39,49,40,20,15,16,2,32,0,88, +148,8,36,41,49,11,2,14,222,33,103,80,144,39,50,40,20,15,16,2,88, +148,39,42,53,8,128,128,2,15,223,0,33,105,80,144,39,51,40,20,15,16, +2,88,148,39,44,55,8,128,128,2,17,223,0,33,107,80,144,39,53,40,20, +15,16,2,88,148,39,39,56,55,9,223,0,33,108,80,144,39,8,40,42,20, +15,16,2,88,148,39,39,47,16,4,39,40,8,128,4,39,2,18,223,0,33, +109,80,144,39,54,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,110, +80,144,39,8,41,42,20,15,16,2,88,148,39,39,47,16,4,39,40,8,128, +8,39,2,20,223,0,33,111,80,144,39,57,40,20,15,16,2,88,148,8,36, +39,8,44,8,128,6,9,223,0,33,112,80,144,39,8,42,42,20,15,16,2, +88,148,8,36,40,50,16,4,39,39,8,128,16,39,2,21,223,0,33,113,80, +144,39,58,40,20,15,16,2,20,28,143,32,0,88,148,39,40,48,11,2,22, +222,33,114,32,0,88,148,39,40,48,11,2,22,222,33,115,80,144,39,59,40, +20,15,16,2,88,148,8,36,40,50,8,240,0,128,0,0,2,23,223,0,33, +116,80,144,39,60,40,20,15,16,2,88,148,39,39,56,55,9,223,0,33,117, +80,144,39,8,43,42,20,15,16,2,88,148,8,36,40,51,16,4,39,40,8, +128,32,39,2,24,223,0,33,118,80,144,39,61,40,20,15,16,2,88,148,39, +40,56,55,2,19,223,0,33,119,80,144,39,56,40,20,15,16,2,88,148,8, +36,41,58,16,4,8,240,0,128,0,0,8,32,8,128,64,39,2,50,223,0, +33,120,80,144,39,8,44,42,20,15,16,2,88,148,8,36,42,52,16,4,39, +39,8,128,64,39,2,25,223,0,33,121,80,144,39,8,23,40,20,15,16,2, +88,148,39,39,56,55,9,223,0,33,122,80,144,39,8,45,42,20,15,16,2, +88,148,8,36,39,57,16,4,8,240,0,128,0,0,8,137,2,8,128,128,39, +2,26,223,0,33,123,80,144,39,8,24,40,20,15,16,2,247,22,143,2,80, +144,39,8,25,40,20,15,16,2,248,22,16,67,115,116,97,109,112,80,144,39, +8,26,40,20,15,16,2,88,148,39,40,49,8,240,0,0,0,4,9,223,0, +33,125,80,144,39,8,46,42,20,15,16,2,88,148,39,41,51,16,4,39,8, +128,80,8,240,0,64,0,0,39,2,29,223,0,33,133,2,80,144,39,8,27, +40,20,15,16,2,32,0,88,148,8,36,40,48,11,2,30,222,33,134,2,80, +144,39,8,29,40,20,15,16,2,88,148,8,36,42,48,8,240,0,0,0,2, +74,109,97,107,101,45,104,97,110,100,108,101,114,223,0,33,136,2,80,144,39, +8,47,42,20,15,16,2,88,148,39,40,47,16,4,8,128,6,8,128,104,8, +240,0,128,0,0,39,2,31,223,0,33,146,2,80,144,39,8,30,40,20,15, +16,2,88,148,39,41,59,16,2,39,8,240,0,128,0,0,2,32,223,0,33, +148,2,80,144,39,8,31,40,20,15,16,2,88,148,8,36,41,61,16,4,39, +8,240,0,64,0,0,39,40,2,50,223,0,33,149,2,80,144,39,8,48,42, +20,15,16,2,88,148,39,47,8,33,16,4,39,39,40,41,67,99,108,111,111, +112,223,0,33,156,2,80,144,39,8,49,42,20,15,16,2,88,148,39,44,8, +25,16,4,39,8,240,0,192,0,0,39,42,2,16,223,0,33,157,2,80,144, +39,52,40,20,15,16,2,88,148,39,42,58,16,4,47,39,43,39,2,33,223, +0,33,162,2,80,144,39,8,32,40,20,15,16,2,32,0,88,148,39,42,53, +11,2,35,222,33,163,2,80,144,39,8,34,40,20,15,16,2,32,0,88,148, +8,36,44,8,27,11,2,36,222,33,168,2,80,144,39,8,35,40,20,15,16, +2,20,28,143,32,0,88,148,8,36,41,55,11,2,37,222,33,171,2,88,148, +8,100,41,52,16,4,39,39,47,39,2,37,223,0,33,173,2,80,144,39,8, +36,40,20,15,16,2,20,28,143,32,0,88,148,8,36,41,55,11,2,34,222, +33,178,2,88,148,8,100,41,52,16,4,39,39,47,39,2,34,223,0,33,179, +2,80,144,39,8,33,40,20,15,16,2,20,28,143,32,0,88,148,39,40,47, +11,2,38,222,33,180,2,32,0,88,148,39,40,47,11,2,38,222,33,181,2, +80,144,39,8,37,40,20,15,16,2,88,148,8,36,40,58,16,4,55,41,39, +43,2,50,223,0,33,182,2,80,144,39,8,50,42,20,15,16,2,88,148,8, +36,40,58,16,4,55,41,39,47,2,50,223,0,33,183,2,80,144,39,8,51, +42,20,15,16,2,88,148,39,39,56,55,9,223,0,33,184,2,80,144,39,8, +52,42,20,15,16,2,88,148,8,36,40,8,23,16,4,55,41,39,8,32,2, +50,223,0,33,185,2,80,144,39,8,53,42,20,15,16,2,20,26,96,2,39, +88,148,39,39,60,16,4,8,32,8,140,2,39,43,9,223,0,33,186,2,88, +148,39,40,61,16,4,8,32,8,140,2,39,47,9,223,0,33,187,2,88,148, +39,41,8,30,16,4,8,48,8,139,2,39,8,48,9,223,0,33,188,2,80, +144,39,8,38,40,20,15,16,2,88,148,8,36,40,60,16,4,8,128,6,39, +39,8,64,2,50,223,0,33,189,2,80,144,39,8,54,42,20,15,16,2,88, +148,8,36,42,56,16,4,55,39,39,8,64,2,40,223,0,33,191,2,80,144, +39,8,39,40,95,29,94,2,10,70,35,37,107,101,114,110,101,108,11,29,94, +2,10,71,35,37,109,105,110,45,115,116,120,11,2,11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 19823); + } + { + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,54,46,52,46,48,46,50,84,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,15,0,0,0,1,0,0,8,0,23,0, +48,0,65,0,83,0,105,0,128,0,149,0,171,0,180,0,189,0,196,0,205, +0,212,0,0,0,248,1,0,0,3,1,5,105,110,115,112,48,76,35,37,112, +108,97,99,101,45,115,116,114,117,99,116,1,23,115,116,114,117,99,116,58,84, +72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,78,84,72,45,112,108, +97,99,101,45,99,104,97,110,110,101,108,79,84,72,45,112,108,97,99,101,45, +99,104,97,110,110,101,108,63,1,20,84,72,45,112,108,97,99,101,45,99,104, +97,110,110,101,108,45,114,101,102,1,21,84,72,45,112,108,97,99,101,45,99, +104,97,110,110,101,108,45,115,101,116,33,1,19,84,72,45,112,108,97,99,101, +45,99,104,97,110,110,101,108,45,105,110,1,20,84,72,45,112,108,97,99,101, +45,99,104,97,110,110,101,108,45,111,117,116,249,80,143,41,42,23,196,1,39, +249,80,143,41,42,23,196,1,39,249,80,143,41,42,195,39,249,80,143,41,42, +23,196,1,40,249,80,143,41,42,195,40,145,39,9,20,121,145,2,1,39,16, +1,11,16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11,11,11, +9,9,11,11,11,10,48,80,143,39,39,20,121,145,2,1,39,16,7,2,3, +2,4,2,5,2,6,2,7,2,8,2,9,16,0,40,42,39,16,0,39,16, +2,2,6,2,7,41,11,11,11,16,5,2,4,2,8,2,9,2,5,2,3, +16,5,11,11,11,11,11,16,5,2,4,2,8,2,9,2,5,2,3,44,44, +40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0,16, +0,39,39,16,3,20,15,16,6,253,22,129,11,2,4,11,41,39,11,248,22, +93,249,22,83,22,178,10,88,148,39,40,48,47,9,223,9,33,10,80,144,39, +39,40,80,144,39,40,40,80,144,39,41,40,80,144,39,42,40,80,144,39,43, +40,20,15,16,2,20,28,143,88,148,39,40,48,47,9,223,0,33,11,88,148, +39,40,48,47,9,223,0,33,12,80,144,39,44,40,20,15,16,2,20,28,143, +88,148,39,40,48,47,9,223,0,33,13,88,148,39,40,48,47,9,223,0,33, +14,80,144,39,45,40,93,29,94,67,113,117,111,116,101,70,35,37,107,101,114, +110,101,108,11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 576); + } + { + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,54,46,52,46,48,46,50,84,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,100,0,0,0,1,0,0,8,0,15,0, +26,0,53,0,59,0,73,0,86,0,112,0,129,0,151,0,159,0,171,0,186, +0,202,0,220,0,241,0,253,0,13,1,36,1,60,1,72,1,103,1,108,1, +113,1,131,1,137,1,142,1,151,1,156,1,162,1,167,1,171,1,186,1,193, +1,198,1,202,1,207,1,214,1,225,1,232,1,240,1,87,2,122,2,225,2, +4,3,98,3,133,3,227,3,6,4,29,11,59,11,110,11,185,11,201,11,217, +11,231,11,247,11,66,12,82,12,98,12,114,12,189,12,96,13,112,13,187,13, +182,14,62,15,137,15,44,16,57,16,210,16,138,17,181,17,7,18,140,18,201, +18,209,18,220,18,254,19,101,20,129,20,142,20,63,21,70,21,230,21,250,21, +94,22,116,22,126,22,140,22,178,22,21,23,25,23,32,23,238,23,157,32,210, +32,234,32,2,33,0,0,51,37,0,0,3,1,5,105,110,115,112,48,68,35, +37,98,111,111,116,72,100,108,108,45,115,117,102,102,105,120,1,25,100,101,102, +97,117,108,116,45,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101, +100,67,113,117,111,116,101,29,94,2,5,70,35,37,112,97,114,97,109,122,11, +29,94,2,5,69,35,37,117,116,105,108,115,11,1,24,45,109,111,100,117,108, +101,45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101,78,114,101, +103,105,115,116,101,114,45,122,111,45,112,97,116,104,1,20,100,101,102,97,117, +108,116,45,114,101,97,100,101,114,45,103,117,97,114,100,69,67,65,67,72,69, +45,78,73,45,112,97,116,104,45,99,97,99,104,101,76,112,97,116,104,45,99, +97,99,104,101,45,103,101,116,77,112,97,116,104,45,99,97,99,104,101,45,115, +101,116,33,79,45,108,111,97,100,105,110,103,45,102,105,108,101,110,97,109,101, +1,19,45,108,111,97,100,105,110,103,45,112,114,111,109,112,116,45,116,97,103, +73,45,112,114,101,118,45,114,101,108,116,111,77,45,112,114,101,118,45,114,101, +108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114,101,108,97,116,105, +118,101,45,115,116,114,105,110,103,1,22,102,111,114,109,97,116,45,115,111,117, +114,99,101,45,108,111,99,97,116,105,111,110,73,111,114,105,103,45,112,97,114, +97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108,101,45, +110,97,109,101,45,114,101,115,111,108,118,101,114,66,98,111,111,116,66,115,101, +97,108,79,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100,5, +4,46,114,107,116,66,115,97,109,101,6,6,6,110,97,116,105,118,101,5,3, +46,122,111,67,105,108,111,111,112,66,108,111,111,112,65,108,105,98,6,12,12, +109,111,100,117,108,101,45,112,97,116,104,63,68,115,117,98,109,111,100,6,2, +2,46,46,6,1,1,46,66,102,105,108,101,68,112,108,97,110,101,116,6,8, +8,109,97,105,110,46,114,107,116,6,4,4,46,114,107,116,69,105,103,110,111, +114,101,100,27,252,22,135,16,28,249,22,172,9,23,201,2,2,27,86,94,23, +199,1,23,200,1,28,248,22,140,16,23,200,2,249,22,135,16,23,202,1,23, +201,1,249,80,144,50,45,42,23,202,1,23,201,1,23,203,1,2,28,247,22, +184,8,249,80,144,50,46,42,23,203,1,80,144,50,39,41,27,250,22,153,16, +196,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,83,195,194, +11,249,22,5,20,20,96,88,148,8,36,40,57,8,129,3,9,226,5,4,3, +6,33,42,23,199,1,23,196,1,23,197,1,23,195,1,27,252,22,135,16,28, +249,22,172,9,23,201,2,2,27,86,94,23,199,1,23,200,1,28,248,22,140, +16,23,200,2,249,22,135,16,23,202,1,23,201,1,249,80,144,50,45,42,23, +202,1,23,201,1,23,203,1,2,28,247,22,184,8,249,80,144,50,46,42,23, +203,1,80,144,50,39,41,27,250,22,153,16,196,11,32,0,88,148,8,36,39, +44,11,9,222,11,28,192,249,22,83,195,194,11,249,22,5,20,20,96,88,148, +8,36,40,57,8,129,3,9,226,5,4,3,6,33,44,23,199,1,23,196,1, +23,197,1,23,195,1,27,250,22,135,16,28,249,22,172,9,23,199,2,2,27, +86,94,23,197,1,23,198,1,28,248,22,140,16,23,198,2,249,22,135,16,23, +200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1,23,201,1,249, +80,144,48,46,42,23,201,1,2,29,27,250,22,153,16,196,11,32,0,88,148, +8,36,39,44,11,9,222,11,28,192,249,22,83,195,194,11,249,22,5,20,20, +96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33,46,23,199,1, +23,196,1,23,197,1,23,195,1,27,250,22,135,16,28,249,22,172,9,23,199, +2,2,27,86,94,23,197,1,23,198,1,28,248,22,140,16,23,198,2,249,22, +135,16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1,23, +201,1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,153,16,196,11,32, +0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,83,195,194,11,249,22, +5,20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33,48, +23,199,1,23,196,1,23,197,1,23,195,1,86,95,28,248,80,144,40,43,42, +23,195,2,12,250,22,185,11,2,25,6,12,12,112,97,116,104,45,115,116,114, +105,110,103,63,23,197,2,28,28,23,195,2,28,248,22,67,23,196,2,10,28, +248,22,92,23,196,2,28,249,22,133,4,248,22,96,23,198,2,40,28,28,248, +22,67,248,22,84,23,197,2,10,248,22,170,9,248,22,172,20,23,197,2,249, +22,4,22,67,248,22,173,20,23,198,2,11,11,11,10,12,250,22,185,11,2, +25,6,71,71,40,111,114,47,99,32,35,102,32,115,121,109,98,111,108,63,32, +40,99,111,110,115,47,99,32,40,111,114,47,99,32,35,102,32,115,121,109,98, +111,108,63,41,32,40,110,111,110,45,101,109,112,116,121,45,108,105,115,116,111, +102,32,115,121,109,98,111,108,63,41,41,41,23,197,2,27,28,23,196,2,247, +22,130,5,11,27,28,23,194,2,250,22,161,2,80,143,44,44,248,22,135,17, +247,22,148,14,11,11,27,28,23,194,2,250,22,161,2,248,22,85,23,198,2, +23,198,2,11,11,28,23,193,2,86,96,23,197,1,23,195,1,23,194,1,20, +13,144,80,144,42,41,40,250,80,144,45,42,40,249,22,31,11,80,144,47,41, +40,22,131,5,248,22,105,23,197,2,27,248,22,114,23,195,2,20,13,144,80, +144,43,41,40,250,80,144,46,42,40,249,22,31,11,80,144,48,41,40,22,180, +5,28,248,22,181,15,23,197,2,23,196,1,86,94,23,196,1,247,22,159,16, +249,247,22,178,5,248,22,172,20,23,197,1,23,201,1,86,94,23,193,1,27, +28,248,22,142,16,23,199,2,23,198,2,27,247,22,180,5,28,192,249,22,143, +16,23,201,2,194,23,199,2,90,144,42,11,89,146,42,39,11,248,22,138,16, +23,202,1,86,94,23,195,1,90,144,41,11,89,146,41,39,11,28,23,204,2, +27,248,22,186,15,23,198,2,19,248,22,150,8,194,28,28,249,22,135,4,23, +195,4,43,249,22,153,8,2,26,249,22,156,8,197,249,22,187,3,23,199,4, +43,11,249,22,7,23,200,2,248,22,190,15,249,22,157,8,250,22,156,8,201, +39,249,22,187,3,23,203,4,43,5,3,46,115,115,249,22,7,23,200,2,11, +2,249,22,7,23,198,2,11,27,28,249,22,172,9,23,196,2,23,199,2,23, +199,2,249,22,135,16,23,198,2,23,196,2,27,28,23,196,2,28,249,22,172, +9,23,198,2,23,200,1,23,200,1,86,94,23,200,1,249,22,135,16,23,199, +2,23,198,2,86,95,23,200,1,23,198,1,11,27,28,249,22,172,9,23,200, +2,70,114,101,108,97,116,105,118,101,86,94,23,198,1,2,27,23,198,1,27, +247,22,164,16,27,247,22,165,16,27,250,22,153,16,23,201,2,11,32,0,88, +148,8,36,39,44,11,9,222,11,27,28,23,194,2,249,22,83,23,201,2,23, +196,1,86,94,23,194,1,11,27,28,23,199,2,28,23,194,2,11,27,250,22, +153,16,23,203,2,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249, +22,83,23,202,2,194,11,11,27,28,23,195,2,23,195,2,23,194,2,27,28, +23,196,2,23,196,2,248,22,170,9,23,196,2,27,28,23,205,2,28,23,196, +2,86,94,23,197,1,23,196,2,248,22,170,9,23,198,1,86,94,23,197,1, +11,27,28,23,195,2,27,249,22,5,88,148,39,40,51,8,129,3,9,226,24, +15,12,11,33,43,23,203,2,27,28,23,198,2,11,193,28,192,192,28,193,28, +23,198,2,28,249,22,135,4,248,22,85,196,248,22,85,23,201,2,193,11,11, +11,11,28,23,193,2,86,105,23,213,1,23,212,1,23,206,1,23,205,1,23, +204,1,23,203,1,23,201,1,23,200,1,23,197,1,23,196,1,23,195,1,23, +194,1,20,13,144,80,144,60,41,40,250,80,144,8,24,42,40,249,22,31,11, +80,144,8,26,41,40,22,131,5,11,20,13,144,80,144,60,41,40,250,80,144, +8,24,42,40,249,22,31,11,80,144,8,26,41,40,22,180,5,28,248,22,181, +15,23,206,2,23,205,1,86,94,23,205,1,247,22,159,16,249,247,22,169,16, +248,22,84,23,196,1,23,218,1,86,94,23,193,1,27,28,23,195,2,27,249, +22,5,88,148,39,40,51,8,129,3,9,226,25,17,13,12,33,45,23,204,2, +27,28,23,200,2,11,193,28,192,192,28,193,28,199,28,249,22,135,4,248,22, +85,196,248,22,85,202,193,11,11,11,86,94,23,198,1,11,28,23,193,2,86, +103,23,214,1,23,213,1,23,207,1,23,206,1,23,205,1,23,202,1,23,201, +1,23,197,1,23,196,1,23,195,1,20,13,144,80,144,61,41,40,250,80,144, +8,25,42,40,249,22,31,11,80,144,8,27,41,40,22,131,5,23,207,1,20, +13,144,80,144,61,41,40,250,80,144,8,25,42,40,249,22,31,11,80,144,8, +27,41,40,22,180,5,28,248,22,181,15,23,207,2,23,206,1,86,94,23,206, +1,247,22,159,16,249,247,22,169,16,248,22,84,23,196,1,23,219,1,86,94, +23,193,1,27,28,23,197,2,27,249,22,5,20,20,94,88,148,39,40,51,8, +128,3,9,226,26,17,14,13,33,47,23,210,1,23,205,2,27,28,23,200,2, +11,193,28,192,192,28,193,28,23,200,2,28,249,22,135,4,248,22,85,196,248, +22,85,23,203,2,193,11,11,11,86,94,23,207,1,11,28,23,193,2,86,101, +23,208,1,23,206,1,23,205,1,23,203,1,23,202,1,23,198,1,23,197,1, +23,196,1,86,94,27,248,22,84,23,195,2,28,23,215,2,250,22,159,2,248, +22,85,23,219,1,23,219,1,250,22,93,23,199,1,11,23,211,2,12,20,13, +144,80,144,8,23,41,40,250,80,144,8,26,42,40,249,22,31,11,80,144,8, +28,41,40,22,131,5,11,20,13,144,80,144,8,23,41,40,250,80,144,8,26, +42,40,249,22,31,11,80,144,8,28,41,40,22,180,5,28,248,22,181,15,23, +208,2,23,207,1,86,94,23,207,1,247,22,159,16,249,247,22,178,5,248,22, +172,20,23,196,1,23,220,1,86,94,23,193,1,27,28,23,197,1,27,249,22, +5,20,20,95,88,148,39,40,51,8,128,3,9,226,27,19,15,14,33,49,23, +207,1,23,212,1,23,206,1,27,28,23,201,2,11,193,28,192,192,28,193,28, +200,28,249,22,135,4,248,22,85,196,248,22,85,203,193,11,11,11,86,97,23, +209,1,23,204,1,23,203,1,23,199,1,11,28,23,193,2,86,95,23,207,1, +23,198,1,86,94,27,248,22,84,23,195,2,28,23,216,2,250,22,159,2,248, +22,85,23,220,1,23,220,1,250,22,93,23,199,1,23,213,2,23,212,2,12, +20,13,144,80,144,8,24,41,40,250,80,144,8,27,42,40,249,22,31,11,80, +144,8,29,41,40,22,131,5,23,209,1,20,13,144,80,144,8,24,41,40,250, +80,144,8,27,42,40,249,22,31,11,80,144,8,29,41,40,22,180,5,28,248, +22,181,15,23,209,2,23,208,1,86,94,23,208,1,247,22,159,16,249,247,22, +178,5,248,22,172,20,23,196,1,23,221,1,86,96,23,216,1,23,215,1,23, +193,1,28,28,248,22,81,23,220,2,248,22,172,20,23,220,2,10,27,28,23, +199,2,86,94,23,207,1,23,208,1,86,94,23,208,1,23,207,1,28,28,248, +22,81,23,221,2,248,22,170,9,248,22,129,16,23,195,2,11,12,20,13,144, +80,144,8,25,41,40,250,80,144,8,28,42,40,249,22,31,11,80,144,8,30, +41,40,22,131,5,28,23,223,2,28,23,202,1,11,23,196,2,86,94,23,202, +1,11,20,13,144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22,31, +11,80,144,8,30,41,40,22,180,5,28,248,22,181,15,23,210,2,23,209,1, +86,94,23,209,1,247,22,159,16,249,247,22,178,5,23,195,1,23,222,1,12, +28,23,194,2,250,22,159,2,248,22,85,23,198,1,23,196,1,250,22,93,23, +201,1,23,202,1,23,203,1,12,27,249,22,128,9,80,144,42,50,41,249,22, +130,4,248,22,190,3,248,22,176,2,200,8,128,8,27,28,193,248,22,179,2, +194,11,28,192,27,249,22,103,198,195,28,192,248,22,85,193,11,11,27,249,22, +130,4,248,22,190,3,248,22,176,2,23,199,2,8,128,8,27,249,22,128,9, +80,144,43,50,41,23,196,2,250,22,129,9,80,144,44,50,41,23,197,1,248, +22,178,2,249,22,83,249,22,83,23,204,1,23,205,1,27,28,23,200,2,248, +22,179,2,200,11,28,192,192,9,32,54,88,149,8,38,42,54,11,2,30,39, +223,3,33,69,32,55,88,149,8,38,42,53,11,2,30,39,223,3,33,68,32, +56,88,148,8,36,40,53,11,2,31,222,33,67,32,57,88,149,8,38,42,53, +11,2,30,39,223,3,33,58,28,249,22,131,4,23,197,2,23,195,4,248,22, +93,194,28,249,22,139,9,7,47,249,22,160,7,23,198,2,23,199,2,249,22, +83,250,22,178,7,23,199,2,39,23,200,2,248,2,56,249,22,178,7,23,199, +1,248,22,184,3,23,201,1,250,2,57,23,196,4,196,248,22,184,3,198,32, +59,88,149,8,38,42,55,11,2,30,39,223,3,33,66,32,60,88,149,8,38, +42,54,11,2,30,39,223,3,33,63,32,61,88,149,8,38,42,53,11,2,30, +39,223,3,33,62,28,249,22,131,4,23,197,2,23,195,4,248,22,93,194,28, +249,22,139,9,7,47,249,22,160,7,23,198,2,23,199,2,249,22,83,250,22, +178,7,23,199,2,39,23,200,2,248,2,56,249,22,178,7,23,199,1,248,22, +184,3,23,201,1,250,2,61,23,196,4,196,248,22,184,3,198,28,249,22,131, +4,23,197,2,23,195,4,248,22,93,194,28,249,22,139,9,7,47,249,22,160, +7,23,198,2,23,199,2,249,22,83,250,22,178,7,23,199,2,39,23,200,2, +27,249,22,178,7,23,199,1,248,22,184,3,23,201,1,19,248,22,159,7,23, +195,2,250,2,61,23,196,4,23,197,1,39,2,27,248,22,184,3,23,197,1, +28,249,22,131,4,23,195,2,23,196,4,248,22,93,195,28,249,22,139,9,7, +47,249,22,160,7,23,199,2,23,197,2,249,22,83,250,22,178,7,23,200,2, +39,23,198,2,248,2,56,249,22,178,7,23,200,1,248,22,184,3,23,199,1, +250,2,60,23,197,4,197,248,22,184,3,196,32,64,88,149,8,38,42,53,11, +2,30,39,223,3,33,65,28,249,22,131,4,23,197,2,23,195,4,248,22,93, +194,28,249,22,139,9,7,47,249,22,160,7,23,198,2,23,199,2,249,22,83, +250,22,178,7,23,199,2,39,23,200,2,248,2,56,249,22,178,7,23,199,1, +248,22,184,3,23,201,1,250,2,64,23,196,4,196,248,22,184,3,198,28,249, +22,131,4,23,197,2,23,195,4,248,22,93,194,28,249,22,139,9,7,47,249, +22,160,7,23,198,2,23,199,2,249,22,83,250,22,178,7,23,199,2,39,23, +200,2,27,249,22,178,7,23,199,1,248,22,184,3,23,201,1,19,248,22,159, +7,23,195,2,250,2,60,23,196,4,23,197,1,39,2,27,248,22,184,3,23, +197,1,28,249,22,131,4,23,195,2,23,196,4,248,22,93,195,28,249,22,139, +9,7,47,249,22,160,7,23,199,2,23,197,2,249,22,83,250,22,178,7,23, +200,2,39,23,198,2,27,249,22,178,7,23,200,1,248,22,184,3,23,199,1, +19,248,22,159,7,23,195,2,250,2,64,23,196,4,23,197,1,39,2,27,248, +22,184,3,23,195,1,28,249,22,131,4,23,195,2,23,197,4,248,22,93,196, +28,249,22,139,9,7,47,249,22,160,7,23,200,2,23,197,2,249,22,83,250, +22,178,7,23,201,2,39,23,198,2,248,2,56,249,22,178,7,23,201,1,248, +22,184,3,23,199,1,250,2,59,23,198,4,198,248,22,184,3,196,19,248,22, +159,7,23,195,2,28,249,22,131,4,39,23,195,4,248,22,93,194,28,249,22, +139,9,7,47,249,22,160,7,23,198,2,39,249,22,83,250,22,178,7,23,199, +2,39,39,27,249,22,178,7,23,199,1,40,19,248,22,159,7,23,195,2,250, +2,57,23,196,4,23,197,1,39,2,28,249,22,131,4,40,23,195,4,248,22, +93,194,28,249,22,139,9,7,47,249,22,160,7,23,198,2,40,249,22,83,250, +22,178,7,23,199,2,39,40,248,2,56,249,22,178,7,23,199,1,41,250,2, +59,23,196,4,196,41,2,28,249,22,131,4,23,197,2,23,195,4,248,22,93, +194,28,249,22,139,9,7,47,249,22,160,7,23,198,2,23,199,2,249,22,83, +250,22,178,7,23,199,2,39,23,200,2,248,2,56,249,22,178,7,23,199,1, +248,22,184,3,23,201,1,250,2,55,23,196,4,196,248,22,184,3,198,28,249, +22,131,4,23,197,2,23,195,4,248,22,93,194,28,249,22,139,9,7,47,249, +22,160,7,23,198,2,23,199,2,249,22,83,250,22,178,7,23,199,2,39,23, +200,2,27,249,22,178,7,23,199,1,248,22,184,3,23,201,1,19,248,22,159, +7,23,195,2,250,2,55,23,196,4,23,197,1,39,2,27,248,22,184,3,23, +197,1,28,249,22,131,4,23,195,2,23,196,4,248,22,93,195,28,249,22,139, +9,7,47,249,22,160,7,23,199,2,23,197,2,249,22,83,250,22,178,7,23, +200,2,39,23,198,2,248,2,56,249,22,178,7,23,200,1,248,22,184,3,23, +199,1,250,2,54,23,197,4,197,248,22,184,3,196,32,70,88,148,39,40,58, +11,2,31,222,33,71,28,248,22,91,248,22,85,23,195,2,249,22,7,9,248, +22,172,20,23,196,1,90,144,41,11,89,146,41,39,11,27,248,22,173,20,23, +197,2,28,248,22,91,248,22,85,23,195,2,249,22,7,9,248,22,172,20,195, +90,144,41,11,89,146,41,39,11,27,248,22,173,20,196,28,248,22,91,248,22, +85,23,195,2,249,22,7,9,248,22,172,20,195,90,144,41,11,89,146,41,39, +11,248,2,70,248,22,173,20,196,249,22,7,249,22,83,248,22,172,20,199,196, +195,249,22,7,249,22,83,248,22,172,20,199,196,195,249,22,7,249,22,83,248, +22,172,20,23,200,1,23,197,1,23,196,1,27,19,248,22,159,7,23,196,2, +250,2,54,23,196,4,23,198,1,39,2,28,23,195,1,192,28,248,22,91,248, +22,85,23,195,2,249,22,7,9,248,22,172,20,23,196,1,27,248,22,173,20, +23,195,2,90,144,41,11,89,146,41,39,11,28,248,22,91,248,22,85,23,197, +2,249,22,7,9,248,22,172,20,23,198,1,27,248,22,173,20,23,197,2,90, +144,41,11,89,146,41,39,11,28,248,22,91,248,22,85,23,197,2,249,22,7, +9,248,22,172,20,197,90,144,41,11,89,146,41,39,11,248,2,70,248,22,173, +20,198,249,22,7,249,22,83,248,22,172,20,201,196,195,249,22,7,249,22,83, +248,22,172,20,23,203,1,196,195,249,22,7,249,22,83,248,22,172,20,23,201, +1,23,197,1,23,196,1,248,22,147,12,252,22,165,10,248,22,166,4,23,200, +2,248,22,162,4,23,200,2,248,22,163,4,23,200,2,248,22,164,4,23,200, +2,248,22,165,4,23,200,1,28,24,194,2,12,20,13,144,80,144,39,41,40, +80,143,39,59,89,146,40,40,10,249,22,133,5,21,94,2,32,6,19,19,112, +108,97,110,101,116,47,114,101,115,111,108,118,101,114,46,114,107,116,1,27,112, +108,97,110,101,116,45,109,111,100,117,108,101,45,110,97,109,101,45,114,101,115, +111,108,118,101,114,12,27,28,23,195,2,28,249,22,172,9,23,197,2,80,143, +42,55,86,94,23,195,1,80,143,40,56,27,248,22,156,5,23,197,2,27,28, +248,22,81,23,195,2,248,22,172,20,23,195,1,23,194,1,28,248,22,181,15, +23,194,2,90,144,42,11,89,146,42,39,11,248,22,138,16,23,197,1,86,95, +20,18,144,11,80,143,45,55,199,20,18,144,11,80,143,45,56,192,192,11,86, +94,23,195,1,11,28,23,193,2,192,86,94,23,193,1,27,247,22,180,5,28, +23,193,2,192,86,94,23,193,1,247,22,159,16,90,144,42,11,89,146,42,39, +11,248,22,138,16,23,198,2,86,95,23,195,1,23,193,1,28,249,22,174,16, +0,11,35,114,120,34,91,46,93,115,115,36,34,248,22,186,15,23,197,1,249, +80,144,44,61,42,23,199,1,2,26,196,249,80,144,41,57,42,195,10,249,22, +12,23,196,1,80,144,41,54,41,86,96,28,248,22,154,5,23,196,2,12,250, +22,185,11,2,22,6,21,21,114,101,115,111,108,118,101,100,45,109,111,100,117, +108,101,45,112,97,116,104,63,23,198,2,28,28,23,196,2,248,22,149,14,23, +197,2,10,12,250,22,185,11,2,22,6,20,20,40,111,114,47,99,32,35,102, +32,110,97,109,101,115,112,97,99,101,63,41,23,199,2,28,24,193,2,248,24, +194,1,23,196,2,86,94,23,193,1,12,27,250,22,161,2,80,144,44,44,41, +248,22,135,17,247,22,148,14,11,27,28,23,194,2,23,194,1,86,94,23,194, +1,27,249,22,83,247,22,141,2,247,22,141,2,86,94,250,22,159,2,80,144, +46,44,41,248,22,135,17,247,22,148,14,195,192,86,94,250,22,159,2,248,22, +84,23,197,2,23,200,2,70,100,101,99,108,97,114,101,100,28,23,198,2,27, +28,248,22,81,248,22,156,5,23,200,2,248,22,155,5,248,22,84,248,22,156, +5,23,201,1,23,198,1,27,250,22,161,2,80,144,47,44,41,248,22,135,17, +23,204,1,11,28,23,193,2,27,250,22,161,2,248,22,85,23,198,1,23,198, +2,11,28,23,193,2,250,22,159,2,248,22,173,20,23,200,1,23,198,1,23, +196,1,12,12,12,86,94,251,22,142,12,247,22,146,12,67,101,114,114,111,114, +6,69,69,100,101,102,97,117,108,116,32,109,111,100,117,108,101,32,110,97,109, +101,32,114,101,115,111,108,118,101,114,32,99,97,108,108,101,100,32,119,105,116, +104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,32,40,100,101, +112,114,101,99,97,116,101,100,41,11,251,24,197,1,23,198,1,23,199,1,23, +200,1,10,32,81,88,148,39,41,50,11,78,102,108,97,116,116,101,110,45,115, +117,98,45,112,97,116,104,222,33,84,32,82,88,148,39,43,57,11,2,31,222, +33,83,28,248,22,91,23,197,2,28,248,22,91,195,192,249,22,83,194,248,22, +98,197,28,249,22,174,9,248,22,84,23,199,2,2,35,28,248,22,91,23,196, +2,86,95,23,196,1,23,195,1,250,22,181,11,2,22,6,37,37,116,111,111, +32,109,97,110,121,32,34,46,46,34,115,32,105,110,32,115,117,98,109,111,100, +117,108,101,32,112,97,116,104,58,32,126,46,115,250,22,94,2,34,28,249,22, +174,9,23,201,2,2,36,23,199,1,28,248,22,181,15,23,200,2,23,199,1, +249,22,93,28,248,22,67,23,202,2,2,5,2,37,23,201,1,23,200,1,251, +2,82,196,197,248,22,85,199,248,22,173,20,200,251,2,82,196,197,249,22,83, +248,22,172,20,202,200,248,22,173,20,200,251,2,82,196,197,9,197,27,250,22, +179,7,27,28,23,199,2,28,247,22,134,12,248,80,144,47,58,42,23,200,2, +11,11,28,192,192,6,29,29,115,116,97,110,100,97,114,100,45,109,111,100,117, +108,101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,6,2,2,58,32, +250,22,185,16,0,7,35,114,120,34,92,110,34,23,203,1,249,22,140,8,6, +23,23,10,32,32,102,111,114,32,109,111,100,117,108,101,32,112,97,116,104,58, +32,126,115,10,23,202,2,248,22,177,13,28,23,196,2,251,22,185,12,23,198, +1,247,22,27,248,22,93,23,201,1,23,199,1,86,94,23,196,1,250,22,148, +13,23,197,1,247,22,27,23,198,1,32,86,88,148,8,36,40,53,11,69,115, +115,45,62,114,107,116,222,33,87,19,248,22,159,7,194,28,249,22,135,4,23, +195,4,42,28,249,22,172,9,7,46,249,22,160,7,197,249,22,187,3,23,199, +4,42,28,28,249,22,172,9,7,115,249,22,160,7,197,249,22,187,3,23,199, +4,41,249,22,172,9,7,115,249,22,160,7,197,249,22,187,3,23,199,4,40, +11,249,22,179,7,250,22,178,7,198,39,249,22,187,3,23,200,4,42,2,40, +193,193,193,2,28,249,22,162,7,194,2,36,2,27,28,249,22,162,7,194,2, +35,64,117,112,192,0,8,35,114,120,34,91,46,93,34,32,90,88,148,8,36, +40,50,11,2,31,222,33,91,28,248,22,91,23,194,2,9,250,22,94,6,4, +4,10,32,32,32,248,22,185,15,248,22,106,23,198,2,248,2,90,248,22,173, +20,23,198,1,28,249,22,174,9,248,22,85,23,200,2,23,197,1,28,249,22, +172,9,248,22,172,20,23,200,1,23,196,1,251,22,181,11,2,22,6,41,41, +99,121,99,108,101,32,105,110,32,108,111,97,100,105,110,103,10,32,32,97,116, +32,112,97,116,104,58,32,126,97,10,32,32,112,97,116,104,115,58,126,97,23, +200,1,249,22,1,22,179,7,248,2,90,248,22,98,23,201,1,12,12,247,23, +193,1,250,22,160,4,11,196,195,20,13,144,80,144,49,53,41,249,22,83,249, +22,83,23,198,1,23,202,1,23,195,1,20,13,144,80,144,49,41,40,252,80, +144,54,42,40,249,22,31,11,80,144,56,41,40,22,130,5,23,201,2,22,132, +5,248,28,23,208,2,20,20,94,88,148,8,36,40,49,11,9,223,15,33,94, +23,208,1,86,94,23,208,1,22,7,28,248,22,67,23,207,2,23,206,1,28, +28,248,22,81,23,207,2,249,22,172,9,248,22,172,20,23,209,2,2,32,11, +23,206,1,86,94,23,206,1,28,248,22,154,5,23,203,2,27,248,22,156,5, +23,204,2,28,248,22,67,193,249,22,93,2,5,194,192,23,202,2,249,247,22, +179,5,23,201,1,27,248,22,71,248,22,185,15,23,202,1,28,23,204,2,28, +250,22,161,2,248,22,172,20,23,202,1,23,202,1,11,249,22,83,11,205,249, +22,83,194,205,192,86,96,28,248,22,164,5,23,196,2,12,28,248,22,158,4, +23,198,2,250,22,183,11,11,6,15,15,98,97,100,32,109,111,100,117,108,101, +32,112,97,116,104,23,200,2,250,22,185,11,2,22,2,33,23,198,2,28,28, +23,196,2,248,22,154,5,23,197,2,10,12,250,22,185,11,2,22,6,31,31, +40,111,114,47,99,32,35,102,32,114,101,115,111,108,118,101,100,45,109,111,100, +117,108,101,45,112,97,116,104,63,41,23,199,2,28,28,23,197,2,248,22,158, +4,23,198,2,10,12,250,22,185,11,2,22,6,17,17,40,111,114,47,99,32, +35,102,32,115,121,110,116,97,120,63,41,23,200,2,28,28,248,22,81,23,196, +2,249,22,172,9,248,22,172,20,23,198,2,2,5,11,86,97,23,198,1,23, +197,1,23,196,1,23,193,1,248,22,155,5,248,22,105,23,197,1,28,28,248, +22,81,23,196,2,28,249,22,172,9,248,22,172,20,23,198,2,2,34,28,248, +22,81,248,22,105,23,197,2,249,22,172,9,248,22,109,23,198,2,2,5,11, +11,11,86,97,23,198,1,23,197,1,23,196,1,23,193,1,248,22,155,5,249, +2,81,248,22,122,23,199,2,248,22,107,23,199,1,28,28,248,22,81,23,196, +2,28,249,22,172,9,248,22,172,20,23,198,2,2,34,28,28,249,22,174,9, +248,22,105,23,198,2,2,36,10,249,22,174,9,248,22,105,23,198,2,2,35, +28,23,196,2,27,248,22,156,5,23,198,2,28,248,22,67,193,10,28,248,22, +81,193,248,22,67,248,22,172,20,194,11,11,11,11,11,86,96,23,198,1,23, +197,1,23,193,1,27,248,22,156,5,23,198,1,248,22,155,5,249,2,81,28, +248,22,81,23,197,2,248,22,172,20,23,197,2,23,196,2,27,28,249,22,174, +9,248,22,105,23,203,2,2,35,248,22,173,20,200,248,22,107,200,28,248,22, +81,23,198,2,249,22,97,248,22,173,20,199,194,192,28,28,248,22,81,23,196, +2,249,22,172,9,248,22,172,20,23,198,2,2,38,11,86,94,248,80,144,41, +8,28,42,23,194,2,253,24,199,1,23,201,1,23,202,1,23,203,1,23,204, +1,11,80,143,46,59,28,28,248,22,81,23,196,2,28,249,22,172,9,248,22, +172,20,23,198,2,2,34,28,248,22,81,248,22,105,23,197,2,249,22,172,9, +248,22,109,23,198,2,2,38,11,11,11,86,94,248,80,144,41,8,28,42,23, +194,2,253,24,199,1,248,22,105,23,202,2,23,202,1,23,203,1,23,204,1, +248,22,107,23,202,1,80,143,46,59,86,94,23,193,1,27,88,148,8,36,40, +57,8,240,0,0,8,0,1,19,115,104,111,119,45,99,111,108,108,101,99,116, +105,111,110,45,101,114,114,225,2,5,3,33,85,27,28,248,22,81,23,198,2, +28,249,22,172,9,2,34,248,22,172,20,23,200,2,27,248,22,105,23,199,2, +28,28,249,22,174,9,23,195,2,2,36,10,249,22,174,9,23,195,2,2,35, +86,94,23,193,1,28,23,199,2,27,248,22,156,5,23,201,2,28,248,22,81, +193,248,22,172,20,193,192,250,22,181,11,2,22,6,45,45,110,111,32,98,97, +115,101,32,112,97,116,104,32,102,111,114,32,114,101,108,97,116,105,118,101,32, +115,117,98,109,111,100,117,108,101,32,112,97,116,104,58,32,126,46,115,23,201, +2,192,23,197,2,23,197,2,27,28,248,22,81,23,199,2,28,249,22,172,9, +2,34,248,22,172,20,23,201,2,27,28,28,28,249,22,174,9,248,22,105,23, +202,2,2,36,10,249,22,174,9,248,22,105,23,202,2,2,35,23,200,2,11, +27,248,22,156,5,23,202,2,27,28,249,22,174,9,248,22,105,23,204,2,2, +35,248,22,173,20,23,202,1,248,22,107,23,202,1,28,248,22,81,23,195,2, +249,2,81,248,22,172,20,23,197,2,249,22,97,248,22,173,20,23,199,1,23, +197,1,249,2,81,23,196,1,23,195,1,249,2,81,2,36,28,249,22,174,9, +248,22,105,23,204,2,2,35,248,22,173,20,23,202,1,248,22,107,23,202,1, +28,248,22,81,193,248,22,173,20,193,11,86,94,23,198,1,11,86,94,23,198, +1,11,27,28,248,22,67,23,196,2,27,248,80,144,46,51,42,249,22,83,23, +199,2,248,22,135,17,247,22,148,14,28,23,193,2,192,86,94,23,193,1,90, +144,41,11,89,146,41,39,11,249,80,144,49,57,42,248,22,74,23,201,2,11, +27,28,248,22,91,23,195,2,2,39,249,22,179,7,23,197,2,2,40,252,80, +144,53,8,23,42,23,205,1,28,248,22,91,23,200,2,23,200,1,86,94,23, +200,1,248,22,84,23,200,2,28,248,22,91,23,200,2,86,94,23,199,1,9, +248,22,85,23,200,1,23,198,1,10,28,248,22,156,7,23,196,2,86,94,23, +196,1,27,248,80,144,46,8,29,42,23,202,2,27,248,80,144,47,51,42,249, +22,83,23,200,2,23,197,2,28,23,193,2,192,86,94,23,193,1,90,144,41, +11,89,146,41,39,11,249,80,144,50,57,42,23,201,2,11,28,248,22,91,23, +194,2,86,94,23,193,1,249,22,135,16,23,198,1,248,2,86,23,197,1,250, +22,1,22,135,16,23,199,1,249,22,97,249,22,2,32,0,88,148,8,36,40, +47,11,9,222,33,88,23,200,1,248,22,93,248,2,86,23,201,1,28,248,22, +181,15,23,196,2,86,94,23,196,1,248,80,144,45,8,30,42,248,22,145,16, +28,248,22,142,16,23,198,2,23,197,2,249,22,143,16,23,199,2,248,80,144, +49,8,29,42,23,205,2,28,249,22,172,9,248,22,84,23,198,2,2,32,27, +248,80,144,46,51,42,249,22,83,23,199,2,248,22,135,17,247,22,148,14,28, +23,193,2,192,86,94,23,193,1,90,144,41,11,89,146,41,39,11,249,80,144, +49,57,42,248,22,105,23,201,2,11,27,28,248,22,91,248,22,107,23,201,2, +28,248,22,91,23,195,2,249,22,178,16,2,89,23,197,2,11,10,27,28,23, +194,2,248,2,86,23,197,2,28,248,22,91,23,196,2,2,39,28,249,22,178, +16,2,89,23,198,2,248,2,86,23,197,2,249,22,179,7,23,198,2,2,40, +27,28,23,195,1,86,94,23,197,1,249,22,97,28,248,22,91,248,22,107,23, +205,2,21,93,6,5,5,109,122,108,105,98,249,22,1,22,97,249,22,2,80, +144,56,8,31,42,248,22,107,23,208,2,23,198,1,28,248,22,91,23,197,2, +86,94,23,196,1,248,22,93,23,198,1,86,94,23,197,1,23,196,1,252,80, +144,55,8,23,42,23,207,1,248,22,84,23,199,2,248,22,173,20,23,199,1, +23,199,1,10,86,94,23,196,1,28,249,22,172,9,248,22,172,20,23,198,2, +2,37,248,80,144,45,8,30,42,248,22,145,16,249,22,143,16,248,22,147,16, +248,22,105,23,201,2,248,80,144,49,8,29,42,23,205,2,12,86,94,28,28, +248,22,181,15,23,194,2,10,248,22,187,8,23,194,2,12,28,23,201,2,250, +22,183,11,69,114,101,113,117,105,114,101,249,22,140,8,6,17,17,98,97,100, +32,109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2,248,22,84, +23,199,2,6,0,0,23,204,2,250,22,185,11,2,22,2,33,23,198,2,27, +28,248,22,187,8,23,195,2,249,22,128,9,23,196,2,39,249,22,145,16,248, +22,146,16,23,197,2,11,27,28,248,22,187,8,23,196,2,249,22,128,9,23, +197,2,40,248,80,144,47,8,24,42,23,195,2,90,144,42,11,89,146,42,39, +11,28,248,22,187,8,23,199,2,250,22,7,2,41,249,22,128,9,23,203,2, +41,2,41,248,22,138,16,23,198,2,86,95,23,195,1,23,193,1,27,28,248, +22,187,8,23,200,2,249,22,128,9,23,201,2,42,249,80,144,52,61,42,23, +197,2,5,0,27,28,248,22,187,8,23,201,2,249,22,128,9,23,202,2,43, +248,22,155,5,23,200,2,27,250,22,161,2,80,144,55,44,41,248,22,135,17, +247,22,148,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1,27,249,22, +83,247,22,141,2,247,22,141,2,86,94,250,22,159,2,80,144,57,44,41,248, +22,135,17,247,22,148,14,195,192,27,28,23,204,2,248,22,155,5,249,22,83, +248,22,156,5,23,200,2,23,207,2,23,196,2,86,95,28,23,212,2,28,250, +22,161,2,248,22,84,23,198,2,195,11,86,96,23,211,1,23,204,1,23,194, +1,12,27,251,22,31,11,80,144,59,53,41,9,28,248,22,15,80,144,60,54, +41,80,144,59,54,41,247,22,17,27,248,22,135,17,247,22,148,14,86,94,249, +22,3,88,148,8,36,40,57,11,9,226,13,12,2,3,33,92,23,196,2,248, +28,248,22,15,80,144,58,54,41,32,0,88,148,39,40,45,11,9,222,33,93, +80,144,57,8,32,42,20,20,98,88,148,39,39,8,25,8,240,12,64,0,0, +9,233,18,21,14,15,12,11,7,6,4,1,2,33,95,23,195,1,23,194,1, +23,197,1,23,207,1,23,214,1,86,96,23,211,1,23,204,1,23,194,1,12, +28,28,248,22,187,8,23,204,1,86,94,23,212,1,11,28,23,212,1,28,248, +22,156,7,23,206,2,10,28,248,22,67,23,206,2,10,28,248,22,81,23,206, +2,249,22,172,9,248,22,172,20,23,208,2,2,32,11,11,249,80,144,56,52, +42,28,248,22,156,7,23,208,2,249,22,83,23,209,1,248,80,144,59,8,29, +42,23,215,1,86,94,23,212,1,249,22,83,23,209,1,248,22,135,17,247,22, +148,14,252,22,189,8,23,209,1,23,208,1,23,206,1,23,204,1,23,203,1, +12,192,86,96,20,18,144,11,80,143,39,59,248,80,144,40,8,27,40,249,22, +31,11,80,144,42,41,40,248,22,129,5,80,144,40,60,41,248,22,179,5,80, +144,40,40,42,248,22,147,15,80,144,40,48,42,20,18,144,11,80,143,39,59, +248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,20,18,144,11,80, +143,39,59,248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,145,39, +9,20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2,2, +29,11,11,11,11,11,11,11,9,9,11,11,11,10,41,80,143,39,39,20,121, +145,2,1,44,16,28,2,3,2,4,30,2,6,1,20,112,97,114,97,109,101, +116,101,114,105,122,97,116,105,111,110,45,107,101,121,11,6,30,2,6,1,23, +101,120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116,105, +111,110,11,4,30,2,7,74,112,97,116,104,45,115,116,114,105,110,103,63,42, +196,15,2,8,30,2,7,73,114,101,114,111,111,116,45,112,97,116,104,44,196, +16,30,2,7,77,112,97,116,104,45,97,100,100,45,115,117,102,102,105,120,44, +196,12,2,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2, +18,2,19,2,20,2,21,2,22,30,2,7,1,19,112,97,116,104,45,114,101, +112,108,97,99,101,45,115,117,102,102,105,120,44,196,14,30,2,7,75,102,105, +110,100,45,99,111,108,45,102,105,108,101,49,196,4,30,2,7,78,110,111,114, +109,97,108,45,99,97,115,101,45,112,97,116,104,42,196,11,2,23,2,24,30, +2,6,76,114,101,112,97,114,97,109,101,116,101,114,105,122,101,11,7,16,0, +40,42,39,16,0,39,16,16,2,15,2,16,2,8,2,12,2,17,2,18,2, +11,2,4,2,10,2,3,2,20,2,13,2,14,2,9,2,19,2,22,55,11, +11,11,16,3,2,23,2,21,2,24,16,3,11,11,11,16,3,2,23,2,21, +2,24,42,42,40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16, +0,16,0,16,0,39,39,16,24,20,15,16,2,248,22,183,8,71,115,111,45, +115,117,102,102,105,120,80,144,39,39,40,20,15,16,2,88,148,39,41,8,39, +8,189,3,2,4,223,0,33,50,80,144,39,40,40,20,15,16,2,32,0,88, +148,8,36,44,55,11,2,9,222,33,51,80,144,39,47,40,20,15,16,2,20, +28,143,32,0,88,148,8,36,40,45,11,2,10,222,192,32,0,88,148,8,36, +40,45,11,2,10,222,192,80,144,39,48,40,20,15,16,2,247,22,144,2,80, +144,39,44,40,20,15,16,2,8,128,8,80,144,39,49,40,20,15,16,2,249, +22,188,8,8,128,8,11,80,144,39,50,40,20,15,16,2,88,148,8,36,40, +53,8,128,32,2,13,223,0,33,52,80,144,39,51,40,20,15,16,2,88,148, +8,36,41,57,8,128,32,2,14,223,0,33,53,80,144,39,52,40,20,15,16, +2,247,22,79,80,144,39,53,40,20,15,16,2,248,22,16,76,109,111,100,117, +108,101,45,108,111,97,100,105,110,103,80,144,39,54,40,20,15,16,2,11,80, +143,39,55,20,15,16,2,11,80,143,39,56,20,15,16,2,32,0,88,148,39, +41,60,11,2,19,222,33,72,80,144,39,57,40,20,15,16,2,32,0,88,148, +8,36,40,52,11,2,20,222,33,73,80,144,39,58,40,20,15,16,2,11,80, +143,39,59,20,15,16,2,88,149,8,34,40,48,8,240,4,0,16,0,1,21, +112,114,101,112,45,112,108,97,110,101,116,45,114,101,115,111,108,118,101,114,33, +40,224,1,0,33,74,80,144,39,8,28,42,20,15,16,2,88,148,39,40,53, +8,240,0,0,3,0,69,103,101,116,45,100,105,114,223,0,33,75,80,144,39, +8,29,42,20,15,16,2,88,148,39,40,52,8,240,0,0,64,0,74,112,97, +116,104,45,115,115,45,62,114,107,116,223,0,33,76,80,144,39,8,30,42,20, +15,16,2,88,148,8,36,40,48,8,240,0,0,4,0,9,223,0,33,77,80, +144,39,8,31,42,20,15,16,2,88,148,39,40,48,8,240,0,128,0,0,9, +223,0,33,78,80,144,39,8,32,42,20,15,16,2,27,11,20,19,143,39,90, +144,40,10,89,146,40,39,10,20,26,96,2,22,88,148,8,36,41,57,8,32, +9,224,2,1,33,79,88,148,39,42,52,11,9,223,0,33,80,88,148,39,43, +8,32,16,4,8,240,44,240,0,0,8,240,220,241,0,0,40,39,9,224,2, +1,33,96,207,80,144,39,60,40,20,15,16,2,88,148,39,39,48,16,2,8, +134,8,8,176,32,2,23,223,0,33,97,80,144,39,8,25,40,20,15,16,2, +20,28,143,88,148,8,36,39,48,16,2,43,8,144,32,2,24,223,0,33,98, +88,148,8,36,39,48,16,2,43,8,144,32,2,24,223,0,33,99,80,144,39, +8,26,40,96,29,94,2,5,70,35,37,107,101,114,110,101,108,11,29,94,2, +5,71,35,37,109,105,110,45,115,116,120,11,2,7,2,6,9,9,9,39,9, 0}; - EVAL_ONE_SIZED_STR((char *)expr, 19824); + EVAL_ONE_SIZED_STR((char *)expr, 9765); } { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,54,46,51,46,48,46,49,48,84,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,1,0,0,8,0,23, -0,48,0,65,0,83,0,105,0,128,0,149,0,171,0,180,0,189,0,196,0, -205,0,212,0,0,0,248,1,0,0,3,1,5,105,110,115,112,48,76,35,37, -112,108,97,99,101,45,115,116,114,117,99,116,1,23,115,116,114,117,99,116,58, -84,72,45,112,108,97,99,101,45,99,104,97,110,110,101,108,78,84,72,45,112, -108,97,99,101,45,99,104,97,110,110,101,108,79,84,72,45,112,108,97,99,101, -45,99,104,97,110,110,101,108,63,1,20,84,72,45,112,108,97,99,101,45,99, -104,97,110,110,101,108,45,114,101,102,1,21,84,72,45,112,108,97,99,101,45, -99,104,97,110,110,101,108,45,115,101,116,33,1,19,84,72,45,112,108,97,99, -101,45,99,104,97,110,110,101,108,45,105,110,1,20,84,72,45,112,108,97,99, -101,45,99,104,97,110,110,101,108,45,111,117,116,249,80,143,41,42,23,196,1, -39,249,80,143,41,42,23,196,1,39,249,80,143,41,42,195,39,249,80,143,41, -42,23,196,1,40,249,80,143,41,42,195,40,145,39,9,20,121,145,2,1,39, -16,1,11,16,0,20,27,15,56,9,2,2,2,2,29,11,11,11,11,11,11, -11,9,9,11,11,11,10,48,80,143,39,39,20,121,145,2,1,39,16,7,2, -3,2,4,2,5,2,6,2,7,2,8,2,9,16,0,40,42,39,16,0,39, -16,2,2,6,2,7,41,11,11,11,16,5,2,4,2,8,2,9,2,5,2, -3,16,5,11,11,11,11,11,16,5,2,4,2,8,2,9,2,5,2,3,44, -44,40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11,16,0,16,0, -16,0,39,39,16,3,20,15,16,6,253,22,191,10,2,4,11,41,39,11,248, -22,91,249,22,81,22,176,10,88,148,39,40,48,47,9,223,9,33,10,80,144, -39,39,40,80,144,39,40,40,80,144,39,41,40,80,144,39,42,40,80,144,39, -43,40,20,15,16,2,20,28,143,88,148,39,40,48,47,9,223,0,33,11,88, -148,39,40,48,47,9,223,0,33,12,80,144,39,44,40,20,15,16,2,20,28, -143,88,148,39,40,48,47,9,223,0,33,13,88,148,39,40,48,47,9,223,0, -33,14,80,144,39,45,40,93,29,94,67,113,117,111,116,101,70,35,37,107,101, -114,110,101,108,11,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 577); - } - { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,54,46,51,46,48,46,49,48,84,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,100,0,0,0,1,0,0,8,0,15, -0,26,0,53,0,59,0,73,0,86,0,112,0,129,0,151,0,159,0,171,0, -186,0,202,0,220,0,241,0,253,0,13,1,36,1,60,1,72,1,103,1,108, -1,113,1,131,1,137,1,142,1,151,1,156,1,162,1,167,1,171,1,186,1, -193,1,198,1,202,1,207,1,214,1,225,1,232,1,240,1,87,2,122,2,225, -2,4,3,98,3,133,3,227,3,6,4,29,11,59,11,110,11,185,11,201,11, -217,11,231,11,247,11,66,12,82,12,98,12,114,12,189,12,96,13,112,13,187, -13,182,14,62,15,137,15,44,16,57,16,210,16,138,17,181,17,7,18,140,18, -201,18,209,18,220,18,254,19,101,20,129,20,142,20,63,21,70,21,230,21,250, -21,94,22,116,22,126,22,140,22,178,22,21,23,25,23,32,23,238,23,157,32, -210,32,234,32,2,33,0,0,51,37,0,0,3,1,5,105,110,115,112,48,68, -35,37,98,111,111,116,72,100,108,108,45,115,117,102,102,105,120,1,25,100,101, -102,97,117,108,116,45,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108, -101,100,67,113,117,111,116,101,29,94,2,5,70,35,37,112,97,114,97,109,122, -11,29,94,2,5,69,35,37,117,116,105,108,115,11,1,24,45,109,111,100,117, -108,101,45,104,97,115,104,45,116,97,98,108,101,45,116,97,98,108,101,78,114, -101,103,105,115,116,101,114,45,122,111,45,112,97,116,104,1,20,100,101,102,97, -117,108,116,45,114,101,97,100,101,114,45,103,117,97,114,100,69,67,65,67,72, -69,45,78,73,45,112,97,116,104,45,99,97,99,104,101,76,112,97,116,104,45, -99,97,99,104,101,45,103,101,116,77,112,97,116,104,45,99,97,99,104,101,45, -115,101,116,33,79,45,108,111,97,100,105,110,103,45,102,105,108,101,110,97,109, -101,1,19,45,108,111,97,100,105,110,103,45,112,114,111,109,112,116,45,116,97, -103,73,45,112,114,101,118,45,114,101,108,116,111,77,45,112,114,101,118,45,114, -101,108,116,111,45,100,105,114,1,21,115,112,108,105,116,45,114,101,108,97,116, -105,118,101,45,115,116,114,105,110,103,1,22,102,111,114,109,97,116,45,115,111, -117,114,99,101,45,108,111,99,97,116,105,111,110,73,111,114,105,103,45,112,97, -114,97,109,122,1,29,115,116,97,110,100,97,114,100,45,109,111,100,117,108,101, -45,110,97,109,101,45,114,101,115,111,108,118,101,114,66,98,111,111,116,66,115, -101,97,108,79,108,111,97,100,47,117,115,101,45,99,111,109,112,105,108,101,100, -5,4,46,114,107,116,66,115,97,109,101,6,6,6,110,97,116,105,118,101,5, -3,46,122,111,67,105,108,111,111,112,66,108,111,111,112,65,108,105,98,6,12, -12,109,111,100,117,108,101,45,112,97,116,104,63,68,115,117,98,109,111,100,6, -2,2,46,46,6,1,1,46,66,102,105,108,101,68,112,108,97,110,101,116,6, -8,8,109,97,105,110,46,114,107,116,6,4,4,46,114,107,116,69,105,103,110, -111,114,101,100,27,252,22,133,16,28,249,22,170,9,23,201,2,2,27,86,94, -23,199,1,23,200,1,28,248,22,138,16,23,200,2,249,22,133,16,23,202,1, -23,201,1,249,80,144,50,45,42,23,202,1,23,201,1,23,203,1,2,28,247, -22,182,8,249,80,144,50,46,42,23,203,1,80,144,50,39,41,27,250,22,151, -16,196,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,81,195, -194,11,249,22,5,20,20,96,88,148,8,36,40,57,8,129,3,9,226,5,4, -3,6,33,42,23,199,1,23,196,1,23,197,1,23,195,1,27,252,22,133,16, -28,249,22,170,9,23,201,2,2,27,86,94,23,199,1,23,200,1,28,248,22, -138,16,23,200,2,249,22,133,16,23,202,1,23,201,1,249,80,144,50,45,42, -23,202,1,23,201,1,23,203,1,2,28,247,22,182,8,249,80,144,50,46,42, -23,203,1,80,144,50,39,41,27,250,22,151,16,196,11,32,0,88,148,8,36, -39,44,11,9,222,11,28,192,249,22,81,195,194,11,249,22,5,20,20,96,88, -148,8,36,40,57,8,129,3,9,226,5,4,3,6,33,44,23,199,1,23,196, -1,23,197,1,23,195,1,27,250,22,133,16,28,249,22,170,9,23,199,2,2, -27,86,94,23,197,1,23,198,1,28,248,22,138,16,23,198,2,249,22,133,16, -23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1,23,201,1, -249,80,144,48,46,42,23,201,1,2,29,27,250,22,151,16,196,11,32,0,88, -148,8,36,39,44,11,9,222,11,28,192,249,22,81,195,194,11,249,22,5,20, -20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33,46,23,199, -1,23,196,1,23,197,1,23,195,1,27,250,22,133,16,28,249,22,170,9,23, -199,2,2,27,86,94,23,197,1,23,198,1,28,248,22,138,16,23,198,2,249, -22,133,16,23,200,1,23,199,1,249,80,144,48,45,42,23,200,1,23,199,1, -23,201,1,249,80,144,48,46,42,23,201,1,2,29,27,250,22,151,16,196,11, -32,0,88,148,8,36,39,44,11,9,222,11,28,192,249,22,81,195,194,11,249, -22,5,20,20,96,88,148,8,36,40,55,8,128,3,9,226,5,4,3,6,33, -48,23,199,1,23,196,1,23,197,1,23,195,1,86,95,28,248,80,144,40,43, -42,23,195,2,12,250,22,183,11,2,25,6,12,12,112,97,116,104,45,115,116, -114,105,110,103,63,23,197,2,28,28,23,195,2,28,248,22,65,23,196,2,10, -28,248,22,90,23,196,2,28,249,22,131,4,248,22,94,23,198,2,40,28,28, -248,22,65,248,22,82,23,197,2,10,248,22,168,9,248,22,170,20,23,197,2, -249,22,4,22,65,248,22,171,20,23,198,2,11,11,11,10,12,250,22,183,11, -2,25,6,71,71,40,111,114,47,99,32,35,102,32,115,121,109,98,111,108,63, -32,40,99,111,110,115,47,99,32,40,111,114,47,99,32,35,102,32,115,121,109, -98,111,108,63,41,32,40,110,111,110,45,101,109,112,116,121,45,108,105,115,116, -111,102,32,115,121,109,98,111,108,63,41,41,41,23,197,2,27,28,23,196,2, -247,22,128,5,11,27,28,23,194,2,250,22,159,2,80,143,44,44,248,22,133, -17,247,22,146,14,11,11,27,28,23,194,2,250,22,159,2,248,22,83,23,198, -2,23,198,2,11,11,28,23,193,2,86,96,23,197,1,23,195,1,23,194,1, -20,13,144,80,144,42,41,40,250,80,144,45,42,40,249,22,31,11,80,144,47, -41,40,22,129,5,248,22,103,23,197,2,27,248,22,112,23,195,2,20,13,144, -80,144,43,41,40,250,80,144,46,42,40,249,22,31,11,80,144,48,41,40,22, -178,5,28,248,22,179,15,23,197,2,23,196,1,86,94,23,196,1,247,22,157, -16,249,247,22,176,5,248,22,170,20,23,197,1,23,201,1,86,94,23,193,1, -27,28,248,22,140,16,23,199,2,23,198,2,27,247,22,178,5,28,192,249,22, -141,16,23,201,2,194,23,199,2,90,144,42,11,89,146,42,39,11,248,22,136, -16,23,202,1,86,94,23,195,1,90,144,41,11,89,146,41,39,11,28,23,204, -2,27,248,22,184,15,23,198,2,19,248,22,148,8,194,28,28,249,22,133,4, -23,195,4,43,249,22,151,8,2,26,249,22,154,8,197,249,22,185,3,23,199, -4,43,11,249,22,7,23,200,2,248,22,188,15,249,22,155,8,250,22,154,8, -201,39,249,22,185,3,23,203,4,43,5,3,46,115,115,249,22,7,23,200,2, -11,2,249,22,7,23,198,2,11,27,28,249,22,170,9,23,196,2,23,199,2, -23,199,2,249,22,133,16,23,198,2,23,196,2,27,28,23,196,2,28,249,22, -170,9,23,198,2,23,200,1,23,200,1,86,94,23,200,1,249,22,133,16,23, -199,2,23,198,2,86,95,23,200,1,23,198,1,11,27,28,249,22,170,9,23, -200,2,70,114,101,108,97,116,105,118,101,86,94,23,198,1,2,27,23,198,1, -27,247,22,162,16,27,247,22,163,16,27,250,22,151,16,23,201,2,11,32,0, -88,148,8,36,39,44,11,9,222,11,27,28,23,194,2,249,22,81,23,201,2, -23,196,1,86,94,23,194,1,11,27,28,23,199,2,28,23,194,2,11,27,250, -22,151,16,23,203,2,11,32,0,88,148,8,36,39,44,11,9,222,11,28,192, -249,22,81,23,202,2,194,11,11,27,28,23,195,2,23,195,2,23,194,2,27, -28,23,196,2,23,196,2,248,22,168,9,23,196,2,27,28,23,205,2,28,23, -196,2,86,94,23,197,1,23,196,2,248,22,168,9,23,198,1,86,94,23,197, -1,11,27,28,23,195,2,27,249,22,5,88,148,39,40,51,8,129,3,9,226, -24,15,12,11,33,43,23,203,2,27,28,23,198,2,11,193,28,192,192,28,193, -28,23,198,2,28,249,22,133,4,248,22,83,196,248,22,83,23,201,2,193,11, -11,11,11,28,23,193,2,86,105,23,213,1,23,212,1,23,206,1,23,205,1, -23,204,1,23,203,1,23,201,1,23,200,1,23,197,1,23,196,1,23,195,1, -23,194,1,20,13,144,80,144,60,41,40,250,80,144,8,24,42,40,249,22,31, -11,80,144,8,26,41,40,22,129,5,11,20,13,144,80,144,60,41,40,250,80, -144,8,24,42,40,249,22,31,11,80,144,8,26,41,40,22,178,5,28,248,22, -179,15,23,206,2,23,205,1,86,94,23,205,1,247,22,157,16,249,247,22,167, -16,248,22,82,23,196,1,23,218,1,86,94,23,193,1,27,28,23,195,2,27, -249,22,5,88,148,39,40,51,8,129,3,9,226,25,17,13,12,33,45,23,204, -2,27,28,23,200,2,11,193,28,192,192,28,193,28,199,28,249,22,133,4,248, -22,83,196,248,22,83,202,193,11,11,11,86,94,23,198,1,11,28,23,193,2, -86,103,23,214,1,23,213,1,23,207,1,23,206,1,23,205,1,23,202,1,23, -201,1,23,197,1,23,196,1,23,195,1,20,13,144,80,144,61,41,40,250,80, -144,8,25,42,40,249,22,31,11,80,144,8,27,41,40,22,129,5,23,207,1, -20,13,144,80,144,61,41,40,250,80,144,8,25,42,40,249,22,31,11,80,144, -8,27,41,40,22,178,5,28,248,22,179,15,23,207,2,23,206,1,86,94,23, -206,1,247,22,157,16,249,247,22,167,16,248,22,82,23,196,1,23,219,1,86, -94,23,193,1,27,28,23,197,2,27,249,22,5,20,20,94,88,148,39,40,51, -8,128,3,9,226,26,17,14,13,33,47,23,210,1,23,205,2,27,28,23,200, -2,11,193,28,192,192,28,193,28,23,200,2,28,249,22,133,4,248,22,83,196, -248,22,83,23,203,2,193,11,11,11,86,94,23,207,1,11,28,23,193,2,86, -101,23,208,1,23,206,1,23,205,1,23,203,1,23,202,1,23,198,1,23,197, -1,23,196,1,86,94,27,248,22,82,23,195,2,28,23,215,2,250,22,157,2, -248,22,83,23,219,1,23,219,1,250,22,91,23,199,1,11,23,211,2,12,20, -13,144,80,144,8,23,41,40,250,80,144,8,26,42,40,249,22,31,11,80,144, -8,28,41,40,22,129,5,11,20,13,144,80,144,8,23,41,40,250,80,144,8, -26,42,40,249,22,31,11,80,144,8,28,41,40,22,178,5,28,248,22,179,15, -23,208,2,23,207,1,86,94,23,207,1,247,22,157,16,249,247,22,176,5,248, -22,170,20,23,196,1,23,220,1,86,94,23,193,1,27,28,23,197,1,27,249, -22,5,20,20,95,88,148,39,40,51,8,128,3,9,226,27,19,15,14,33,49, -23,207,1,23,212,1,23,206,1,27,28,23,201,2,11,193,28,192,192,28,193, -28,200,28,249,22,133,4,248,22,83,196,248,22,83,203,193,11,11,11,86,97, -23,209,1,23,204,1,23,203,1,23,199,1,11,28,23,193,2,86,95,23,207, -1,23,198,1,86,94,27,248,22,82,23,195,2,28,23,216,2,250,22,157,2, -248,22,83,23,220,1,23,220,1,250,22,91,23,199,1,23,213,2,23,212,2, -12,20,13,144,80,144,8,24,41,40,250,80,144,8,27,42,40,249,22,31,11, -80,144,8,29,41,40,22,129,5,23,209,1,20,13,144,80,144,8,24,41,40, -250,80,144,8,27,42,40,249,22,31,11,80,144,8,29,41,40,22,178,5,28, -248,22,179,15,23,209,2,23,208,1,86,94,23,208,1,247,22,157,16,249,247, -22,176,5,248,22,170,20,23,196,1,23,221,1,86,96,23,216,1,23,215,1, -23,193,1,28,28,248,22,79,23,220,2,248,22,170,20,23,220,2,10,27,28, -23,199,2,86,94,23,207,1,23,208,1,86,94,23,208,1,23,207,1,28,28, -248,22,79,23,221,2,248,22,168,9,248,22,191,15,23,195,2,11,12,20,13, -144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22,31,11,80,144,8, -30,41,40,22,129,5,28,23,223,2,28,23,202,1,11,23,196,2,86,94,23, -202,1,11,20,13,144,80,144,8,25,41,40,250,80,144,8,28,42,40,249,22, -31,11,80,144,8,30,41,40,22,178,5,28,248,22,179,15,23,210,2,23,209, -1,86,94,23,209,1,247,22,157,16,249,247,22,176,5,23,195,1,23,222,1, -12,28,23,194,2,250,22,157,2,248,22,83,23,198,1,23,196,1,250,22,91, -23,201,1,23,202,1,23,203,1,12,27,249,22,190,8,80,144,42,50,41,249, -22,128,4,248,22,188,3,248,22,174,2,200,8,128,8,27,28,193,248,22,177, -2,194,11,28,192,27,249,22,101,198,195,28,192,248,22,83,193,11,11,27,249, -22,128,4,248,22,188,3,248,22,174,2,23,199,2,8,128,8,27,249,22,190, -8,80,144,43,50,41,23,196,2,250,22,191,8,80,144,44,50,41,23,197,1, -248,22,176,2,249,22,81,249,22,81,23,204,1,23,205,1,27,28,23,200,2, -248,22,177,2,200,11,28,192,192,9,32,54,88,149,8,38,42,54,11,2,30, -39,223,3,33,69,32,55,88,149,8,38,42,53,11,2,30,39,223,3,33,68, -32,56,88,148,8,36,40,53,11,2,31,222,33,67,32,57,88,149,8,38,42, -53,11,2,30,39,223,3,33,58,28,249,22,129,4,23,197,2,23,195,4,248, -22,91,194,28,249,22,137,9,7,47,249,22,158,7,23,198,2,23,199,2,249, -22,81,250,22,176,7,23,199,2,39,23,200,2,248,2,56,249,22,176,7,23, -199,1,248,22,182,3,23,201,1,250,2,57,23,196,4,196,248,22,182,3,198, -32,59,88,149,8,38,42,55,11,2,30,39,223,3,33,66,32,60,88,149,8, -38,42,54,11,2,30,39,223,3,33,63,32,61,88,149,8,38,42,53,11,2, -30,39,223,3,33,62,28,249,22,129,4,23,197,2,23,195,4,248,22,91,194, -28,249,22,137,9,7,47,249,22,158,7,23,198,2,23,199,2,249,22,81,250, -22,176,7,23,199,2,39,23,200,2,248,2,56,249,22,176,7,23,199,1,248, -22,182,3,23,201,1,250,2,61,23,196,4,196,248,22,182,3,198,28,249,22, -129,4,23,197,2,23,195,4,248,22,91,194,28,249,22,137,9,7,47,249,22, -158,7,23,198,2,23,199,2,249,22,81,250,22,176,7,23,199,2,39,23,200, -2,27,249,22,176,7,23,199,1,248,22,182,3,23,201,1,19,248,22,157,7, -23,195,2,250,2,61,23,196,4,23,197,1,39,2,27,248,22,182,3,23,197, -1,28,249,22,129,4,23,195,2,23,196,4,248,22,91,195,28,249,22,137,9, -7,47,249,22,158,7,23,199,2,23,197,2,249,22,81,250,22,176,7,23,200, -2,39,23,198,2,248,2,56,249,22,176,7,23,200,1,248,22,182,3,23,199, -1,250,2,60,23,197,4,197,248,22,182,3,196,32,64,88,149,8,38,42,53, -11,2,30,39,223,3,33,65,28,249,22,129,4,23,197,2,23,195,4,248,22, -91,194,28,249,22,137,9,7,47,249,22,158,7,23,198,2,23,199,2,249,22, -81,250,22,176,7,23,199,2,39,23,200,2,248,2,56,249,22,176,7,23,199, -1,248,22,182,3,23,201,1,250,2,64,23,196,4,196,248,22,182,3,198,28, -249,22,129,4,23,197,2,23,195,4,248,22,91,194,28,249,22,137,9,7,47, -249,22,158,7,23,198,2,23,199,2,249,22,81,250,22,176,7,23,199,2,39, -23,200,2,27,249,22,176,7,23,199,1,248,22,182,3,23,201,1,19,248,22, -157,7,23,195,2,250,2,60,23,196,4,23,197,1,39,2,27,248,22,182,3, -23,197,1,28,249,22,129,4,23,195,2,23,196,4,248,22,91,195,28,249,22, -137,9,7,47,249,22,158,7,23,199,2,23,197,2,249,22,81,250,22,176,7, -23,200,2,39,23,198,2,27,249,22,176,7,23,200,1,248,22,182,3,23,199, -1,19,248,22,157,7,23,195,2,250,2,64,23,196,4,23,197,1,39,2,27, -248,22,182,3,23,195,1,28,249,22,129,4,23,195,2,23,197,4,248,22,91, -196,28,249,22,137,9,7,47,249,22,158,7,23,200,2,23,197,2,249,22,81, -250,22,176,7,23,201,2,39,23,198,2,248,2,56,249,22,176,7,23,201,1, -248,22,182,3,23,199,1,250,2,59,23,198,4,198,248,22,182,3,196,19,248, -22,157,7,23,195,2,28,249,22,129,4,39,23,195,4,248,22,91,194,28,249, -22,137,9,7,47,249,22,158,7,23,198,2,39,249,22,81,250,22,176,7,23, -199,2,39,39,27,249,22,176,7,23,199,1,40,19,248,22,157,7,23,195,2, -250,2,57,23,196,4,23,197,1,39,2,28,249,22,129,4,40,23,195,4,248, -22,91,194,28,249,22,137,9,7,47,249,22,158,7,23,198,2,40,249,22,81, -250,22,176,7,23,199,2,39,40,248,2,56,249,22,176,7,23,199,1,41,250, -2,59,23,196,4,196,41,2,28,249,22,129,4,23,197,2,23,195,4,248,22, -91,194,28,249,22,137,9,7,47,249,22,158,7,23,198,2,23,199,2,249,22, -81,250,22,176,7,23,199,2,39,23,200,2,248,2,56,249,22,176,7,23,199, -1,248,22,182,3,23,201,1,250,2,55,23,196,4,196,248,22,182,3,198,28, -249,22,129,4,23,197,2,23,195,4,248,22,91,194,28,249,22,137,9,7,47, -249,22,158,7,23,198,2,23,199,2,249,22,81,250,22,176,7,23,199,2,39, -23,200,2,27,249,22,176,7,23,199,1,248,22,182,3,23,201,1,19,248,22, -157,7,23,195,2,250,2,55,23,196,4,23,197,1,39,2,27,248,22,182,3, -23,197,1,28,249,22,129,4,23,195,2,23,196,4,248,22,91,195,28,249,22, -137,9,7,47,249,22,158,7,23,199,2,23,197,2,249,22,81,250,22,176,7, -23,200,2,39,23,198,2,248,2,56,249,22,176,7,23,200,1,248,22,182,3, -23,199,1,250,2,54,23,197,4,197,248,22,182,3,196,32,70,88,148,39,40, -58,11,2,31,222,33,71,28,248,22,89,248,22,83,23,195,2,249,22,7,9, -248,22,170,20,23,196,1,90,144,41,11,89,146,41,39,11,27,248,22,171,20, -23,197,2,28,248,22,89,248,22,83,23,195,2,249,22,7,9,248,22,170,20, -195,90,144,41,11,89,146,41,39,11,27,248,22,171,20,196,28,248,22,89,248, -22,83,23,195,2,249,22,7,9,248,22,170,20,195,90,144,41,11,89,146,41, -39,11,248,2,70,248,22,171,20,196,249,22,7,249,22,81,248,22,170,20,199, -196,195,249,22,7,249,22,81,248,22,170,20,199,196,195,249,22,7,249,22,81, -248,22,170,20,23,200,1,23,197,1,23,196,1,27,19,248,22,157,7,23,196, -2,250,2,54,23,196,4,23,198,1,39,2,28,23,195,1,192,28,248,22,89, -248,22,83,23,195,2,249,22,7,9,248,22,170,20,23,196,1,27,248,22,171, -20,23,195,2,90,144,41,11,89,146,41,39,11,28,248,22,89,248,22,83,23, -197,2,249,22,7,9,248,22,170,20,23,198,1,27,248,22,171,20,23,197,2, -90,144,41,11,89,146,41,39,11,28,248,22,89,248,22,83,23,197,2,249,22, -7,9,248,22,170,20,197,90,144,41,11,89,146,41,39,11,248,2,70,248,22, -171,20,198,249,22,7,249,22,81,248,22,170,20,201,196,195,249,22,7,249,22, -81,248,22,170,20,23,203,1,196,195,249,22,7,249,22,81,248,22,170,20,23, -201,1,23,197,1,23,196,1,248,22,145,12,252,22,163,10,248,22,164,4,23, -200,2,248,22,160,4,23,200,2,248,22,161,4,23,200,2,248,22,162,4,23, -200,2,248,22,163,4,23,200,1,28,24,194,2,12,20,13,144,80,144,39,41, -40,80,143,39,59,89,146,40,40,10,249,22,131,5,21,94,2,32,6,19,19, -112,108,97,110,101,116,47,114,101,115,111,108,118,101,114,46,114,107,116,1,27, -112,108,97,110,101,116,45,109,111,100,117,108,101,45,110,97,109,101,45,114,101, -115,111,108,118,101,114,12,27,28,23,195,2,28,249,22,170,9,23,197,2,80, -143,42,55,86,94,23,195,1,80,143,40,56,27,248,22,154,5,23,197,2,27, -28,248,22,79,23,195,2,248,22,170,20,23,195,1,23,194,1,28,248,22,179, -15,23,194,2,90,144,42,11,89,146,42,39,11,248,22,136,16,23,197,1,86, -95,20,18,144,11,80,143,45,55,199,20,18,144,11,80,143,45,56,192,192,11, -86,94,23,195,1,11,28,23,193,2,192,86,94,23,193,1,27,247,22,178,5, -28,23,193,2,192,86,94,23,193,1,247,22,157,16,90,144,42,11,89,146,42, -39,11,248,22,136,16,23,198,2,86,95,23,195,1,23,193,1,28,249,22,172, -16,0,11,35,114,120,34,91,46,93,115,115,36,34,248,22,184,15,23,197,1, -249,80,144,44,61,42,23,199,1,2,26,196,249,80,144,41,57,42,195,10,249, -22,12,23,196,1,80,144,41,54,41,86,96,28,248,22,152,5,23,196,2,12, -250,22,183,11,2,22,6,21,21,114,101,115,111,108,118,101,100,45,109,111,100, -117,108,101,45,112,97,116,104,63,23,198,2,28,28,23,196,2,248,22,147,14, -23,197,2,10,12,250,22,183,11,2,22,6,20,20,40,111,114,47,99,32,35, -102,32,110,97,109,101,115,112,97,99,101,63,41,23,199,2,28,24,193,2,248, -24,194,1,23,196,2,86,94,23,193,1,12,27,250,22,159,2,80,144,44,44, -41,248,22,133,17,247,22,146,14,11,27,28,23,194,2,23,194,1,86,94,23, -194,1,27,249,22,81,247,22,139,2,247,22,139,2,86,94,250,22,157,2,80, -144,46,44,41,248,22,133,17,247,22,146,14,195,192,86,94,250,22,157,2,248, -22,82,23,197,2,23,200,2,70,100,101,99,108,97,114,101,100,28,23,198,2, -27,28,248,22,79,248,22,154,5,23,200,2,248,22,153,5,248,22,82,248,22, -154,5,23,201,1,23,198,1,27,250,22,159,2,80,144,47,44,41,248,22,133, -17,23,204,1,11,28,23,193,2,27,250,22,159,2,248,22,83,23,198,1,23, -198,2,11,28,23,193,2,250,22,157,2,248,22,171,20,23,200,1,23,198,1, -23,196,1,12,12,12,86,94,251,22,140,12,247,22,144,12,67,101,114,114,111, -114,6,69,69,100,101,102,97,117,108,116,32,109,111,100,117,108,101,32,110,97, -109,101,32,114,101,115,111,108,118,101,114,32,99,97,108,108,101,100,32,119,105, -116,104,32,116,104,114,101,101,32,97,114,103,117,109,101,110,116,115,32,40,100, -101,112,114,101,99,97,116,101,100,41,11,251,24,197,1,23,198,1,23,199,1, -23,200,1,10,32,81,88,148,39,41,50,11,78,102,108,97,116,116,101,110,45, -115,117,98,45,112,97,116,104,222,33,84,32,82,88,148,39,43,57,11,2,31, -222,33,83,28,248,22,89,23,197,2,28,248,22,89,195,192,249,22,81,194,248, -22,96,197,28,249,22,172,9,248,22,82,23,199,2,2,35,28,248,22,89,23, -196,2,86,95,23,196,1,23,195,1,250,22,179,11,2,22,6,37,37,116,111, -111,32,109,97,110,121,32,34,46,46,34,115,32,105,110,32,115,117,98,109,111, -100,117,108,101,32,112,97,116,104,58,32,126,46,115,250,22,92,2,34,28,249, -22,172,9,23,201,2,2,36,23,199,1,28,248,22,179,15,23,200,2,23,199, -1,249,22,91,28,248,22,65,23,202,2,2,5,2,37,23,201,1,23,200,1, -251,2,82,196,197,248,22,83,199,248,22,171,20,200,251,2,82,196,197,249,22, -81,248,22,170,20,202,200,248,22,171,20,200,251,2,82,196,197,9,197,27,250, -22,177,7,27,28,23,199,2,28,247,22,132,12,248,80,144,47,58,42,23,200, -2,11,11,28,192,192,6,29,29,115,116,97,110,100,97,114,100,45,109,111,100, -117,108,101,45,110,97,109,101,45,114,101,115,111,108,118,101,114,6,2,2,58, -32,250,22,183,16,0,7,35,114,120,34,92,110,34,23,203,1,249,22,138,8, -6,23,23,10,32,32,102,111,114,32,109,111,100,117,108,101,32,112,97,116,104, -58,32,126,115,10,23,202,2,248,22,175,13,28,23,196,2,251,22,183,12,23, -198,1,247,22,27,248,22,91,23,201,1,23,199,1,86,94,23,196,1,250,22, -146,13,23,197,1,247,22,27,23,198,1,32,86,88,148,8,36,40,53,11,69, -115,115,45,62,114,107,116,222,33,87,19,248,22,157,7,194,28,249,22,133,4, -23,195,4,42,28,249,22,170,9,7,46,249,22,158,7,197,249,22,185,3,23, -199,4,42,28,28,249,22,170,9,7,115,249,22,158,7,197,249,22,185,3,23, -199,4,41,249,22,170,9,7,115,249,22,158,7,197,249,22,185,3,23,199,4, -40,11,249,22,177,7,250,22,176,7,198,39,249,22,185,3,23,200,4,42,2, -40,193,193,193,2,28,249,22,160,7,194,2,36,2,27,28,249,22,160,7,194, -2,35,64,117,112,192,0,8,35,114,120,34,91,46,93,34,32,90,88,148,8, -36,40,50,11,2,31,222,33,91,28,248,22,89,23,194,2,9,250,22,92,6, -4,4,10,32,32,32,248,22,183,15,248,22,104,23,198,2,248,2,90,248,22, -171,20,23,198,1,28,249,22,172,9,248,22,83,23,200,2,23,197,1,28,249, -22,170,9,248,22,170,20,23,200,1,23,196,1,251,22,179,11,2,22,6,41, -41,99,121,99,108,101,32,105,110,32,108,111,97,100,105,110,103,10,32,32,97, -116,32,112,97,116,104,58,32,126,97,10,32,32,112,97,116,104,115,58,126,97, -23,200,1,249,22,1,22,177,7,248,2,90,248,22,96,23,201,1,12,12,247, -23,193,1,250,22,158,4,11,196,195,20,13,144,80,144,49,53,41,249,22,81, -249,22,81,23,198,1,23,202,1,23,195,1,20,13,144,80,144,49,41,40,252, -80,144,54,42,40,249,22,31,11,80,144,56,41,40,22,128,5,23,201,2,22, -130,5,248,28,23,208,2,20,20,94,88,148,8,36,40,49,11,9,223,15,33, -94,23,208,1,86,94,23,208,1,22,7,28,248,22,65,23,207,2,23,206,1, -28,28,248,22,79,23,207,2,249,22,170,9,248,22,170,20,23,209,2,2,32, -11,23,206,1,86,94,23,206,1,28,248,22,152,5,23,203,2,27,248,22,154, -5,23,204,2,28,248,22,65,193,249,22,91,2,5,194,192,23,202,2,249,247, -22,177,5,23,201,1,27,248,22,69,248,22,183,15,23,202,1,28,23,204,2, -28,250,22,159,2,248,22,170,20,23,202,1,23,202,1,11,249,22,81,11,205, -249,22,81,194,205,192,86,96,28,248,22,162,5,23,196,2,12,28,248,22,156, -4,23,198,2,250,22,181,11,11,6,15,15,98,97,100,32,109,111,100,117,108, -101,32,112,97,116,104,23,200,2,250,22,183,11,2,22,2,33,23,198,2,28, -28,23,196,2,248,22,152,5,23,197,2,10,12,250,22,183,11,2,22,6,31, -31,40,111,114,47,99,32,35,102,32,114,101,115,111,108,118,101,100,45,109,111, -100,117,108,101,45,112,97,116,104,63,41,23,199,2,28,28,23,197,2,248,22, -156,4,23,198,2,10,12,250,22,183,11,2,22,6,17,17,40,111,114,47,99, -32,35,102,32,115,121,110,116,97,120,63,41,23,200,2,28,28,248,22,79,23, -196,2,249,22,170,9,248,22,170,20,23,198,2,2,5,11,86,97,23,198,1, -23,197,1,23,196,1,23,193,1,248,22,153,5,248,22,103,23,197,1,28,28, -248,22,79,23,196,2,28,249,22,170,9,248,22,170,20,23,198,2,2,34,28, -248,22,79,248,22,103,23,197,2,249,22,170,9,248,22,107,23,198,2,2,5, -11,11,11,86,97,23,198,1,23,197,1,23,196,1,23,193,1,248,22,153,5, -249,2,81,248,22,120,23,199,2,248,22,105,23,199,1,28,28,248,22,79,23, -196,2,28,249,22,170,9,248,22,170,20,23,198,2,2,34,28,28,249,22,172, -9,248,22,103,23,198,2,2,36,10,249,22,172,9,248,22,103,23,198,2,2, -35,28,23,196,2,27,248,22,154,5,23,198,2,28,248,22,65,193,10,28,248, -22,79,193,248,22,65,248,22,170,20,194,11,11,11,11,11,86,96,23,198,1, -23,197,1,23,193,1,27,248,22,154,5,23,198,1,248,22,153,5,249,2,81, -28,248,22,79,23,197,2,248,22,170,20,23,197,2,23,196,2,27,28,249,22, -172,9,248,22,103,23,203,2,2,35,248,22,171,20,200,248,22,105,200,28,248, -22,79,23,198,2,249,22,95,248,22,171,20,199,194,192,28,28,248,22,79,23, -196,2,249,22,170,9,248,22,170,20,23,198,2,2,38,11,86,94,248,80,144, -41,8,28,42,23,194,2,253,24,199,1,23,201,1,23,202,1,23,203,1,23, -204,1,11,80,143,46,59,28,28,248,22,79,23,196,2,28,249,22,170,9,248, -22,170,20,23,198,2,2,34,28,248,22,79,248,22,103,23,197,2,249,22,170, -9,248,22,107,23,198,2,2,38,11,11,11,86,94,248,80,144,41,8,28,42, -23,194,2,253,24,199,1,248,22,103,23,202,2,23,202,1,23,203,1,23,204, -1,248,22,105,23,202,1,80,143,46,59,86,94,23,193,1,27,88,148,8,36, -40,57,8,240,0,0,8,0,1,19,115,104,111,119,45,99,111,108,108,101,99, -116,105,111,110,45,101,114,114,225,2,5,3,33,85,27,28,248,22,79,23,198, -2,28,249,22,170,9,2,34,248,22,170,20,23,200,2,27,248,22,103,23,199, -2,28,28,249,22,172,9,23,195,2,2,36,10,249,22,172,9,23,195,2,2, -35,86,94,23,193,1,28,23,199,2,27,248,22,154,5,23,201,2,28,248,22, -79,193,248,22,170,20,193,192,250,22,179,11,2,22,6,45,45,110,111,32,98, -97,115,101,32,112,97,116,104,32,102,111,114,32,114,101,108,97,116,105,118,101, -32,115,117,98,109,111,100,117,108,101,32,112,97,116,104,58,32,126,46,115,23, -201,2,192,23,197,2,23,197,2,27,28,248,22,79,23,199,2,28,249,22,170, -9,2,34,248,22,170,20,23,201,2,27,28,28,28,249,22,172,9,248,22,103, -23,202,2,2,36,10,249,22,172,9,248,22,103,23,202,2,2,35,23,200,2, -11,27,248,22,154,5,23,202,2,27,28,249,22,172,9,248,22,103,23,204,2, -2,35,248,22,171,20,23,202,1,248,22,105,23,202,1,28,248,22,79,23,195, -2,249,2,81,248,22,170,20,23,197,2,249,22,95,248,22,171,20,23,199,1, -23,197,1,249,2,81,23,196,1,23,195,1,249,2,81,2,36,28,249,22,172, -9,248,22,103,23,204,2,2,35,248,22,171,20,23,202,1,248,22,105,23,202, -1,28,248,22,79,193,248,22,171,20,193,11,86,94,23,198,1,11,86,94,23, -198,1,11,27,28,248,22,65,23,196,2,27,248,80,144,46,51,42,249,22,81, -23,199,2,248,22,133,17,247,22,146,14,28,23,193,2,192,86,94,23,193,1, -90,144,41,11,89,146,41,39,11,249,80,144,49,57,42,248,22,72,23,201,2, -11,27,28,248,22,89,23,195,2,2,39,249,22,177,7,23,197,2,2,40,252, -80,144,53,8,23,42,23,205,1,28,248,22,89,23,200,2,23,200,1,86,94, -23,200,1,248,22,82,23,200,2,28,248,22,89,23,200,2,86,94,23,199,1, -9,248,22,83,23,200,1,23,198,1,10,28,248,22,154,7,23,196,2,86,94, -23,196,1,27,248,80,144,46,8,29,42,23,202,2,27,248,80,144,47,51,42, -249,22,81,23,200,2,23,197,2,28,23,193,2,192,86,94,23,193,1,90,144, -41,11,89,146,41,39,11,249,80,144,50,57,42,23,201,2,11,28,248,22,89, -23,194,2,86,94,23,193,1,249,22,133,16,23,198,1,248,2,86,23,197,1, -250,22,1,22,133,16,23,199,1,249,22,95,249,22,2,32,0,88,148,8,36, -40,47,11,9,222,33,88,23,200,1,248,22,91,248,2,86,23,201,1,28,248, -22,179,15,23,196,2,86,94,23,196,1,248,80,144,45,8,30,42,248,22,143, -16,28,248,22,140,16,23,198,2,23,197,2,249,22,141,16,23,199,2,248,80, -144,49,8,29,42,23,205,2,28,249,22,170,9,248,22,82,23,198,2,2,32, -27,248,80,144,46,51,42,249,22,81,23,199,2,248,22,133,17,247,22,146,14, -28,23,193,2,192,86,94,23,193,1,90,144,41,11,89,146,41,39,11,249,80, -144,49,57,42,248,22,103,23,201,2,11,27,28,248,22,89,248,22,105,23,201, -2,28,248,22,89,23,195,2,249,22,176,16,2,89,23,197,2,11,10,27,28, -23,194,2,248,2,86,23,197,2,28,248,22,89,23,196,2,2,39,28,249,22, -176,16,2,89,23,198,2,248,2,86,23,197,2,249,22,177,7,23,198,2,2, -40,27,28,23,195,1,86,94,23,197,1,249,22,95,28,248,22,89,248,22,105, -23,205,2,21,93,6,5,5,109,122,108,105,98,249,22,1,22,95,249,22,2, -80,144,56,8,31,42,248,22,105,23,208,2,23,198,1,28,248,22,89,23,197, -2,86,94,23,196,1,248,22,91,23,198,1,86,94,23,197,1,23,196,1,252, -80,144,55,8,23,42,23,207,1,248,22,82,23,199,2,248,22,171,20,23,199, -1,23,199,1,10,86,94,23,196,1,28,249,22,170,9,248,22,170,20,23,198, -2,2,37,248,80,144,45,8,30,42,248,22,143,16,249,22,141,16,248,22,145, -16,248,22,103,23,201,2,248,80,144,49,8,29,42,23,205,2,12,86,94,28, -28,248,22,179,15,23,194,2,10,248,22,185,8,23,194,2,12,28,23,201,2, -250,22,181,11,69,114,101,113,117,105,114,101,249,22,138,8,6,17,17,98,97, -100,32,109,111,100,117,108,101,32,112,97,116,104,126,97,28,23,198,2,248,22, -82,23,199,2,6,0,0,23,204,2,250,22,183,11,2,22,2,33,23,198,2, -27,28,248,22,185,8,23,195,2,249,22,190,8,23,196,2,39,249,22,143,16, -248,22,144,16,23,197,2,11,27,28,248,22,185,8,23,196,2,249,22,190,8, -23,197,2,40,248,80,144,47,8,24,42,23,195,2,90,144,42,11,89,146,42, -39,11,28,248,22,185,8,23,199,2,250,22,7,2,41,249,22,190,8,23,203, -2,41,2,41,248,22,136,16,23,198,2,86,95,23,195,1,23,193,1,27,28, -248,22,185,8,23,200,2,249,22,190,8,23,201,2,42,249,80,144,52,61,42, -23,197,2,5,0,27,28,248,22,185,8,23,201,2,249,22,190,8,23,202,2, -43,248,22,153,5,23,200,2,27,250,22,159,2,80,144,55,44,41,248,22,133, -17,247,22,146,14,11,27,28,23,194,2,23,194,1,86,94,23,194,1,27,249, -22,81,247,22,139,2,247,22,139,2,86,94,250,22,157,2,80,144,57,44,41, -248,22,133,17,247,22,146,14,195,192,27,28,23,204,2,248,22,153,5,249,22, -81,248,22,154,5,23,200,2,23,207,2,23,196,2,86,95,28,23,212,2,28, -250,22,159,2,248,22,82,23,198,2,195,11,86,96,23,211,1,23,204,1,23, -194,1,12,27,251,22,31,11,80,144,59,53,41,9,28,248,22,15,80,144,60, -54,41,80,144,59,54,41,247,22,17,27,248,22,133,17,247,22,146,14,86,94, -249,22,3,88,148,8,36,40,57,11,9,226,13,12,2,3,33,92,23,196,2, -248,28,248,22,15,80,144,58,54,41,32,0,88,148,39,40,45,11,9,222,33, -93,80,144,57,8,32,42,20,20,98,88,148,39,39,8,25,8,240,12,64,0, -0,9,233,18,21,14,15,12,11,7,6,4,1,2,33,95,23,195,1,23,194, -1,23,197,1,23,207,1,23,214,1,86,96,23,211,1,23,204,1,23,194,1, -12,28,28,248,22,185,8,23,204,1,86,94,23,212,1,11,28,23,212,1,28, -248,22,154,7,23,206,2,10,28,248,22,65,23,206,2,10,28,248,22,79,23, -206,2,249,22,170,9,248,22,170,20,23,208,2,2,32,11,11,249,80,144,56, -52,42,28,248,22,154,7,23,208,2,249,22,81,23,209,1,248,80,144,59,8, -29,42,23,215,1,86,94,23,212,1,249,22,81,23,209,1,248,22,133,17,247, -22,146,14,252,22,187,8,23,209,1,23,208,1,23,206,1,23,204,1,23,203, -1,12,192,86,96,20,18,144,11,80,143,39,59,248,80,144,40,8,27,40,249, -22,31,11,80,144,42,41,40,248,22,191,4,80,144,40,60,41,248,22,177,5, -80,144,40,40,42,248,22,145,15,80,144,40,48,42,20,18,144,11,80,143,39, -59,248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,20,18,144,11, -80,143,39,59,248,80,144,40,8,27,40,249,22,31,11,80,144,42,41,40,145, -39,9,20,121,145,2,1,39,16,1,11,16,0,20,27,15,56,9,2,2,2, -2,29,11,11,11,11,11,11,11,9,9,11,11,11,10,41,80,143,39,39,20, -121,145,2,1,44,16,28,2,3,2,4,30,2,6,1,20,112,97,114,97,109, -101,116,101,114,105,122,97,116,105,111,110,45,107,101,121,11,6,30,2,6,1, -23,101,120,116,101,110,100,45,112,97,114,97,109,101,116,101,114,105,122,97,116, -105,111,110,11,4,30,2,7,74,112,97,116,104,45,115,116,114,105,110,103,63, -42,196,15,2,8,30,2,7,73,114,101,114,111,111,116,45,112,97,116,104,44, -196,16,30,2,7,77,112,97,116,104,45,97,100,100,45,115,117,102,102,105,120, -44,196,12,2,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17, -2,18,2,19,2,20,2,21,2,22,30,2,7,1,19,112,97,116,104,45,114, -101,112,108,97,99,101,45,115,117,102,102,105,120,44,196,14,30,2,7,75,102, -105,110,100,45,99,111,108,45,102,105,108,101,49,196,4,30,2,7,78,110,111, -114,109,97,108,45,99,97,115,101,45,112,97,116,104,42,196,11,2,23,2,24, -30,2,6,76,114,101,112,97,114,97,109,101,116,101,114,105,122,101,11,7,16, -0,40,42,39,16,0,39,16,16,2,15,2,16,2,8,2,12,2,17,2,18, -2,11,2,4,2,10,2,3,2,20,2,13,2,14,2,9,2,19,2,22,55, -11,11,11,16,3,2,23,2,21,2,24,16,3,11,11,11,16,3,2,23,2, -21,2,24,42,42,40,12,11,11,16,0,16,0,16,0,39,39,11,12,11,11, -16,0,16,0,16,0,39,39,16,24,20,15,16,2,248,22,181,8,71,115,111, -45,115,117,102,102,105,120,80,144,39,39,40,20,15,16,2,88,148,39,41,8, -39,8,189,3,2,4,223,0,33,50,80,144,39,40,40,20,15,16,2,32,0, -88,148,8,36,44,55,11,2,9,222,33,51,80,144,39,47,40,20,15,16,2, -20,28,143,32,0,88,148,8,36,40,45,11,2,10,222,192,32,0,88,148,8, -36,40,45,11,2,10,222,192,80,144,39,48,40,20,15,16,2,247,22,142,2, -80,144,39,44,40,20,15,16,2,8,128,8,80,144,39,49,40,20,15,16,2, -249,22,186,8,8,128,8,11,80,144,39,50,40,20,15,16,2,88,148,8,36, -40,53,8,128,32,2,13,223,0,33,52,80,144,39,51,40,20,15,16,2,88, -148,8,36,41,57,8,128,32,2,14,223,0,33,53,80,144,39,52,40,20,15, -16,2,247,22,77,80,144,39,53,40,20,15,16,2,248,22,16,76,109,111,100, -117,108,101,45,108,111,97,100,105,110,103,80,144,39,54,40,20,15,16,2,11, -80,143,39,55,20,15,16,2,11,80,143,39,56,20,15,16,2,32,0,88,148, -39,41,60,11,2,19,222,33,72,80,144,39,57,40,20,15,16,2,32,0,88, -148,8,36,40,52,11,2,20,222,33,73,80,144,39,58,40,20,15,16,2,11, -80,143,39,59,20,15,16,2,88,149,8,34,40,48,8,240,4,0,16,0,1, -21,112,114,101,112,45,112,108,97,110,101,116,45,114,101,115,111,108,118,101,114, -33,40,224,1,0,33,74,80,144,39,8,28,42,20,15,16,2,88,148,39,40, -53,8,240,0,0,3,0,69,103,101,116,45,100,105,114,223,0,33,75,80,144, -39,8,29,42,20,15,16,2,88,148,39,40,52,8,240,0,0,64,0,74,112, -97,116,104,45,115,115,45,62,114,107,116,223,0,33,76,80,144,39,8,30,42, -20,15,16,2,88,148,8,36,40,48,8,240,0,0,4,0,9,223,0,33,77, -80,144,39,8,31,42,20,15,16,2,88,148,39,40,48,8,240,0,128,0,0, -9,223,0,33,78,80,144,39,8,32,42,20,15,16,2,27,11,20,19,143,39, -90,144,40,10,89,146,40,39,10,20,26,96,2,22,88,148,8,36,41,57,8, -32,9,224,2,1,33,79,88,148,39,42,52,11,9,223,0,33,80,88,148,39, -43,8,32,16,4,8,240,44,240,0,0,8,240,220,241,0,0,40,39,9,224, -2,1,33,96,207,80,144,39,60,40,20,15,16,2,88,148,39,39,48,16,2, -8,134,8,8,176,32,2,23,223,0,33,97,80,144,39,8,25,40,20,15,16, -2,20,28,143,88,148,8,36,39,48,16,2,43,8,144,32,2,24,223,0,33, -98,88,148,8,36,39,48,16,2,43,8,144,32,2,24,223,0,33,99,80,144, -39,8,26,40,96,29,94,2,5,70,35,37,107,101,114,110,101,108,11,29,94, -2,5,71,35,37,109,105,110,45,115,116,120,11,2,7,2,6,9,9,9,39, -9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 9766); - } - { - SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,8,54,46,51,46,48,46,49,48,84,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,1,0,0,8,0,18, -0,24,0,38,0,52,0,64,0,84,0,98,0,113,0,126,0,131,0,135,0, -147,0,231,0,238,0,8,1,0,0,199,1,0,0,3,1,5,105,110,115,112, -48,71,35,37,98,117,105,108,116,105,110,67,113,117,111,116,101,29,94,2,3, -70,35,37,107,101,114,110,101,108,11,29,94,2,3,70,35,37,101,120,112,111, -98,115,11,29,94,2,3,68,35,37,98,111,111,116,11,29,94,2,3,76,35, -37,112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,3,70,35,37, -112,97,114,97,109,122,11,29,94,2,3,71,35,37,110,101,116,119,111,114,107, -11,29,94,2,3,69,35,37,117,116,105,108,115,11,38,11,93,2,12,36,12, -0,39,38,13,93,143,16,3,39,2,14,2,2,39,36,14,1,150,40,143,2, -15,16,4,2,4,39,39,2,1,143,2,15,16,4,2,5,39,39,2,1,143, -2,15,16,4,2,6,39,39,2,1,143,2,15,16,4,2,7,39,39,2,1, -143,2,15,16,4,2,8,39,39,2,1,143,2,15,16,4,2,9,39,39,2, -1,143,2,15,16,4,2,10,39,39,2,1,16,0,38,15,143,2,14,2,11, -18,143,16,2,143,10,16,3,9,2,11,2,13,143,11,16,3,9,9,2,13, -16,3,9,9,9,145,39,9,20,121,145,2,1,39,16,1,11,16,0,20,27, -15,56,9,2,2,2,2,29,11,11,11,11,11,11,11,9,9,11,11,11,33, -16,39,80,143,39,39,20,121,145,2,1,39,16,0,16,0,40,42,39,16,0, -39,16,0,39,11,11,11,16,0,16,0,16,0,39,39,40,12,11,11,16,0, -16,0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,0,104, -2,4,2,5,29,94,2,3,71,35,37,102,111,114,101,105,103,110,11,29,94, -2,3,70,35,37,117,110,115,97,102,101,11,29,94,2,3,71,35,37,102,108, -102,120,110,117,109,11,2,6,2,7,2,8,2,9,2,10,29,94,2,3,69, -35,37,112,108,97,99,101,11,29,94,2,3,71,35,37,102,117,116,117,114,101, -115,11,9,9,9,39,9,0}; - EVAL_ONE_SIZED_STR((char *)expr, 532); + SHARED_OK static MZCOMPILED_STRING_FAR unsigned char expr[] = {35,126,7,54,46,52,46,48,46,50,84,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,17,0,0,0,1,0,0,8,0,18,0, +24,0,38,0,52,0,64,0,84,0,98,0,113,0,126,0,131,0,135,0,147, +0,231,0,238,0,8,1,0,0,199,1,0,0,3,1,5,105,110,115,112,48, +71,35,37,98,117,105,108,116,105,110,67,113,117,111,116,101,29,94,2,3,70, +35,37,107,101,114,110,101,108,11,29,94,2,3,70,35,37,101,120,112,111,98, +115,11,29,94,2,3,68,35,37,98,111,111,116,11,29,94,2,3,76,35,37, +112,108,97,99,101,45,115,116,114,117,99,116,11,29,94,2,3,70,35,37,112, +97,114,97,109,122,11,29,94,2,3,71,35,37,110,101,116,119,111,114,107,11, +29,94,2,3,69,35,37,117,116,105,108,115,11,38,11,93,2,12,36,12,0, +39,38,13,93,143,16,3,39,2,14,2,2,39,36,14,1,150,40,143,2,15, +16,4,2,4,39,39,2,1,143,2,15,16,4,2,5,39,39,2,1,143,2, +15,16,4,2,6,39,39,2,1,143,2,15,16,4,2,7,39,39,2,1,143, +2,15,16,4,2,8,39,39,2,1,143,2,15,16,4,2,9,39,39,2,1, +143,2,15,16,4,2,10,39,39,2,1,16,0,38,15,143,2,14,2,11,18, +143,16,2,143,10,16,3,9,2,11,2,13,143,11,16,3,9,9,2,13,16, +3,9,9,9,145,39,9,20,121,145,2,1,39,16,1,11,16,0,20,27,15, +56,9,2,2,2,2,29,11,11,11,11,11,11,11,9,9,11,11,11,33,16, +39,80,143,39,39,20,121,145,2,1,39,16,0,16,0,40,42,39,16,0,39, +16,0,39,11,11,11,16,0,16,0,16,0,39,39,40,12,11,11,16,0,16, +0,16,0,39,39,11,12,11,11,16,0,16,0,16,0,39,39,16,0,104,2, +4,2,5,29,94,2,3,71,35,37,102,111,114,101,105,103,110,11,29,94,2, +3,70,35,37,117,110,115,97,102,101,11,29,94,2,3,71,35,37,102,108,102, +120,110,117,109,11,2,6,2,7,2,8,2,9,2,10,29,94,2,3,69,35, +37,112,108,97,99,101,11,29,94,2,3,71,35,37,102,117,116,117,114,101,115, +11,9,9,9,39,9,0}; + EVAL_ONE_SIZED_STR((char *)expr, 531); } diff --git a/racket/src/racket/src/fun.c b/racket/src/racket/src/fun.c index 889cc2008e..a4a5d09bd3 100644 --- a/racket/src/racket/src/fun.c +++ b/racket/src/racket/src/fun.c @@ -182,7 +182,9 @@ static Scheme_Object *procedure_to_method(int argc, Scheme_Object *argv[]); static Scheme_Object *procedure_equal_closure_p(int argc, Scheme_Object *argv[]); static Scheme_Object *procedure_specialize(int argc, Scheme_Object *argv[]); static Scheme_Object *chaperone_procedure(int argc, Scheme_Object *argv[]); +static Scheme_Object *unsafe_chaperone_procedure(int argc, Scheme_Object *argv[]); static Scheme_Object *impersonate_procedure(int argc, Scheme_Object *argv[]); +static Scheme_Object *unsafe_impersonate_procedure(int argc, Scheme_Object *argv[]); static Scheme_Object *chaperone_procedure_star(int argc, Scheme_Object *argv[]); static Scheme_Object *impersonate_procedure_star(int argc, Scheme_Object *argv[]); static Scheme_Object *primitive_p(int argc, Scheme_Object *argv[]); @@ -608,11 +610,21 @@ scheme_init_fun (Scheme_Env *env) "chaperone-procedure", 2, -1), env); + scheme_add_global_constant("unsafe-chaperone-procedure", + scheme_make_prim_w_arity(unsafe_chaperone_procedure, + "unsafe-chaperone-procedure", + 2, -1), + env); scheme_add_global_constant("impersonate-procedure", scheme_make_prim_w_arity(impersonate_procedure, "impersonate-procedure", 2, -1), env); + scheme_add_global_constant("unsafe-impersonate-procedure", + scheme_make_prim_w_arity(unsafe_impersonate_procedure, + "unsafe-impersonate-procedure", + 2, -1), + env); scheme_add_global_constant("chaperone-procedure*", scheme_make_prim_w_arity(chaperone_procedure_star, "chaperone-procedure*", @@ -3465,7 +3477,7 @@ static Scheme_Object *procedure_specialize(int argc, Scheme_Object *argv[]) static Scheme_Object *do_chaperone_procedure(const char *name, const char *whating, int is_impersonator, int pass_self, - int argc, Scheme_Object *argv[]) + int argc, Scheme_Object *argv[], int is_unsafe) { Scheme_Chaperone *px; Scheme_Object *val = argv[0], *orig, *naya, *r, *app_mark; @@ -3476,8 +3488,13 @@ static Scheme_Object *do_chaperone_procedure(const char *name, const char *whati if (!SCHEME_PROCP(val)) scheme_wrong_contract(name, "procedure?", 0, argc, argv); - if (!SCHEME_FALSEP(argv[1]) && !SCHEME_PROCP(argv[1])) - scheme_wrong_contract(name, "(or/c procedure? #f)", 1, argc, argv); + if (is_unsafe) { + if (!SCHEME_PROCP(argv[1])) + scheme_wrong_contract(name, "procedure?", 1, argc, argv); + } else { + if (!SCHEME_FALSEP(argv[1]) && !SCHEME_PROCP(argv[1])) + scheme_wrong_contract(name, "(or/c procedure? #f)", 1, argc, argv); + } orig = get_or_check_arity(val, -1, NULL, 1); if (SCHEME_FALSEP(argv[1])) @@ -3524,16 +3541,35 @@ static Scheme_Object *do_chaperone_procedure(const char *name, const char *whati px->props = props; /* Put the procedure along with known-good arity (to speed checking; - initialized to -1) in a vector. An odd-sized vector makes the - chaperone recognized as a procedure chaperone, and a size of 5 - (instead of 3) indicates that the wrapper procedure accepts a - "self" argument: */ + initialized to -1) in a vector. + + Vector of odd size for redirects means a procedure chaperone, + vector with even slots means a structure chaperone. + A size of 5 (instead of 3) indicates that the wrapper + procedure accepts a "self" argument + + If the known-good arity is a boolean, this means the chaperone + wrapper defers directly to SCHEME_VEC_ELES(r)[0], instead of + following the actual chaperone procedure. + + If the boolean is #f, that means the interposition proc was #f + originally and SCHEME_VEC_ELES(r)[0] is the original procedure. + + If the boolean is #t, that means that this chaperone was created + via unsafe-{chaperone,impersonate}-procedure. + */ r = scheme_make_vector((pass_self ? 5 : 3), scheme_make_integer(-1)); - SCHEME_VEC_ELS(r)[0] = argv[1]; + + if (SCHEME_FALSEP(argv[1])) + SCHEME_VEC_ELS(r)[0] = argv[0]; + else + SCHEME_VEC_ELS(r)[0] = argv[1]; + if (is_unsafe) + SCHEME_VEC_ELS(r)[1] = scheme_true; + if (SCHEME_FALSEP(argv[1])) + SCHEME_VEC_ELS(r)[1] = scheme_false; SCHEME_VEC_ELS(r)[2] = app_mark; - /* Vector of odd size for redirects means a procedure chaperone, - vector with even slots means a structure chaperone. */ px->redirects = r; if (is_impersonator) @@ -3544,22 +3580,32 @@ static Scheme_Object *do_chaperone_procedure(const char *name, const char *whati static Scheme_Object *chaperone_procedure(int argc, Scheme_Object *argv[]) { - return do_chaperone_procedure("chaperone-procedure", "chaperoning", 0, 0, argc, argv); + return do_chaperone_procedure("chaperone-procedure", "chaperoning", 0, 0, argc, argv, 0); +} + +static Scheme_Object *unsafe_chaperone_procedure(int argc, Scheme_Object *argv[]) +{ + return do_chaperone_procedure("unsafe-chaperone-procedure", "chaperoning", 0, 0, argc, argv, 1); } static Scheme_Object *impersonate_procedure(int argc, Scheme_Object *argv[]) { - return do_chaperone_procedure("impersonate-procedure", "impersonating", 1, 0, argc, argv); + return do_chaperone_procedure("impersonate-procedure", "impersonating", 1, 0, argc, argv, 0); +} + +static Scheme_Object *unsafe_impersonate_procedure(int argc, Scheme_Object *argv[]) +{ + return do_chaperone_procedure("unsafe-impersonate-procedure", "impersonating", 1, 0, argc, argv, 1); } static Scheme_Object *chaperone_procedure_star(int argc, Scheme_Object *argv[]) { - return do_chaperone_procedure("chaperone-procedure*", "chaperoning", 0, 1, argc, argv); + return do_chaperone_procedure("chaperone-procedure*", "chaperoning", 0, 1, argc, argv, 0); } static Scheme_Object *impersonate_procedure_star(int argc, Scheme_Object *argv[]) { - return do_chaperone_procedure("impersonate-procedure*", "impersonating", 1, 1, argc, argv); + return do_chaperone_procedure("impersonate-procedure*", "impersonating", 1, 1, argc, argv, 0); } static Scheme_Object *apply_chaperone_k(void) @@ -3741,7 +3787,7 @@ Scheme_Object *scheme_apply_chaperone(Scheme_Object *o, int argc, Scheme_Object checks & 0x2 => no tail; checks == 0x3 => no tail or multiple */ { Scheme_Chaperone *px; - Scheme_Object *v, *a[1], *a2[MAX_QUICK_CHAP_ARGV], **argv2, *post, *result_v, *orig_obj, *app_mark, *self_proc; + Scheme_Object *v, *a[1], *a2[MAX_QUICK_CHAP_ARGV], **argv2, *post, *result_v, *orig_obj, *app_mark, *self_proc, *simple_call; int c, i, need_restore = 0; int need_pop_mark; Scheme_Cont_Frame_Data cframe; @@ -3767,9 +3813,10 @@ Scheme_Object *scheme_apply_chaperone(Scheme_Object *o, int argc, Scheme_Object self_proc = o; } - if (SCHEME_FALSEP(SCHEME_VEC_ELS(px->redirects)[0])) { + if (SCHEME_BOOLP(SCHEME_VEC_ELS(px->redirects)[1])) { + simple_call = SCHEME_VEC_ELS(px->redirects)[0]; /* no redirection procedure */ - if (SCHEME_CHAPERONEP(px->prev)) { + if (SCHEME_CHAPERONEP(simple_call)) { /* communicate `self_proc` to the next layer: */ scheme_current_thread->self_for_proc_chaperone = self_proc; } @@ -3777,16 +3824,16 @@ Scheme_Object *scheme_apply_chaperone(Scheme_Object *o, int argc, Scheme_Object /* cannot return a tail call */ MZ_CONT_MARK_POS -= 2; if (checks & 0x1) { - v = _scheme_apply(px->prev, argc, argv); - } else if (SAME_TYPE(SCHEME_TYPE(px->prev), scheme_native_closure_type)) { - v = _apply_native(px->prev, argc, argv); + v = _scheme_apply(simple_call, argc, argv); + } else if (SAME_TYPE(SCHEME_TYPE(simple_call), scheme_native_closure_type)) { + v = _apply_native(simple_call, argc, argv); } else { - v = _scheme_apply_multi(px->prev, argc, argv); + v = _scheme_apply_multi(simple_call, argc, argv); } MZ_CONT_MARK_POS += 2; return v; } else - return _scheme_tail_apply(px->prev, argc, argv); + return _scheme_tail_apply(simple_call, argc, argv); } if (argv == MZ_RUNSTACK) { diff --git a/racket/src/racket/src/jitcall.c b/racket/src/racket/src/jitcall.c index ffeabfd26c..1d51cc9790 100644 --- a/racket/src/racket/src/jitcall.c +++ b/racket/src/racket/src/jitcall.c @@ -111,16 +111,22 @@ static jit_insn *generate_proc_struct_retry(mz_jit_state *jitter, int num_rands, CHECK_LIMIT(); mz_patch_branch(ref2); - /* check for a procedure impersonator that just keeps properties */ + /* check for a procedure impersonator that just keeps properties + or is the result of unsafe-{impersonate,chaperone}-procedure */ ref2 = jit_bnei_i(jit_forward(), JIT_R1, scheme_proc_chaperone_type); jit_ldxi_p(JIT_R1, JIT_V1, &((Scheme_Chaperone *)0x0)->redirects); refz6 = mz_bnei_t(jit_forward(), JIT_R1, scheme_vector_type, JIT_R2); (void)jit_ldxi_l(JIT_R2, JIT_R1, &SCHEME_VEC_SIZE(0x0)); refz7 = jit_bmci_i(jit_forward(), JIT_R2, 0x1); - (void)jit_ldxi_l(JIT_R2, JIT_R1, &(SCHEME_VEC_ELS(0x0)[0])); - refz8 = jit_bnei_p(jit_forward(), JIT_R2, scheme_false); - /* Can extract the impersonated function and use it directly */ - jit_ldxi_p(JIT_V1, JIT_V1, &((Scheme_Chaperone *)0x0)->prev); + /* if &(SCHEME_VEC_ELS(0x0)[1]) is a boolean, we have the fast + path; it can only otherwise be a fixnum, so just check that */ + (void)jit_ldxi_l(JIT_R2, JIT_R1, &(SCHEME_VEC_ELS(0x0)[1])); + refz8 = jit_bmsi_ul(jit_forward(), JIT_R2, 0x1); + /* Position [0] in SCHEME_VEC_ELS contains either the + unwrapped function (if chaperone-procedure got #f + for the proc argument) or the unsafe-chaperone + replacement-proc argument; either way, just call it */ + jit_ldxi_p(JIT_V1, JIT_R1, &(SCHEME_VEC_ELS(0x0)[0])); (void)jit_jmpi(refagain); mz_patch_branch(refz1); diff --git a/racket/src/racket/src/schminc.h b/racket/src/racket/src/schminc.h index 2c50dd4b5c..c849650073 100644 --- a/racket/src/racket/src/schminc.h +++ b/racket/src/racket/src/schminc.h @@ -14,7 +14,7 @@ #define USE_COMPILED_STARTUP 1 -#define EXPECTED_PRIM_COUNT 1141 +#define EXPECTED_PRIM_COUNT 1143 #define EXPECTED_UNSAFE_COUNT 106 #define EXPECTED_FLFXNUM_COUNT 69 #define EXPECTED_EXTFL_COUNT 45 diff --git a/racket/src/racket/src/schnapp.inc b/racket/src/racket/src/schnapp.inc index c0d1e7f26e..28cabfdc34 100644 --- a/racket/src/racket/src/schnapp.inc +++ b/racket/src/racket/src/schnapp.inc @@ -63,9 +63,10 @@ Scheme_Object *PRIM_APPLY_NAME(Scheme_Object *rator, if ((t == scheme_proc_chaperone_type) && SCHEME_VECTORP(((Scheme_Chaperone *)rator)->redirects) && (SCHEME_VEC_SIZE(((Scheme_Chaperone *)rator)->redirects) & 0x1)) { - if (SCHEME_FALSEP(SCHEME_VEC_ELS(((Scheme_Chaperone *)rator)->redirects)[0])) { - /* No redirection proc (i.e, chaperone is just for properties) */ - rator = ((Scheme_Chaperone *)rator)->prev; + if (SCHEME_BOOLP(SCHEME_VEC_ELS(((Scheme_Chaperone *)rator)->redirects)[1])) { + /* No redirection proc, i.e, chaperone is just for + properties or unsafe-chaperone-procedure result */ + rator = SCHEME_VEC_ELS(((Scheme_Chaperone *)rator)->redirects)[0]; t = _SCHEME_TYPE(rator); } else return scheme_apply_chaperone(rator, argc, argv, NULL, PRIM_CHECK_MULTI | (PRIM_CHECK_VALUE << 1)); diff --git a/racket/src/racket/src/schvers.h b/racket/src/racket/src/schvers.h index 9e553a66fd..8dd8456e98 100644 --- a/racket/src/racket/src/schvers.h +++ b/racket/src/racket/src/schvers.h @@ -13,12 +13,12 @@ consistently.) */ -#define MZSCHEME_VERSION "6.4.0.1" +#define MZSCHEME_VERSION "6.4.0.2" #define MZSCHEME_VERSION_X 6 #define MZSCHEME_VERSION_Y 4 #define MZSCHEME_VERSION_Z 0 -#define MZSCHEME_VERSION_W 1 +#define MZSCHEME_VERSION_W 2 #define MZSCHEME_VERSION_MAJOR ((MZSCHEME_VERSION_X * 100) + MZSCHEME_VERSION_Y) #define MZSCHEME_VERSION_MINOR ((MZSCHEME_VERSION_Z * 1000) + MZSCHEME_VERSION_W) diff --git a/racket/src/racket/src/struct.c b/racket/src/racket/src/struct.c index 979d9238ee..f05f09a7d6 100644 --- a/racket/src/racket/src/struct.c +++ b/racket/src/racket/src/struct.c @@ -2428,9 +2428,9 @@ int scheme_is_noninterposing_chaperone(Scheme_Object *o) if (SCHEME_VEC_SIZE(px->redirects) & 1) { /* procedure chaperone */ - if (SCHEME_TRUEP(SCHEME_VEC_ELS(px->redirects)[0])) - return 0; - return 1; + if (SCHEME_FALSEP(SCHEME_VEC_ELS(px->redirects)[1])) + return 1; + return 0; } if (SCHEME_TRUEP(SCHEME_VEC_ELS(px->redirects)[0]))